From 8f2f1060c2bf6f4ca0466d49d4f0dcd121483f1b Mon Sep 17 00:00:00 2001 From: ijun17 Date: Mon, 25 Nov 2024 20:52:54 +0900 Subject: [PATCH 01/58] =?UTF-8?q?refactor:=20=EB=94=94=EB=A0=89=ED=86=A0?= =?UTF-8?q?=EB=A6=AC=20=EA=B5=AC=EC=A1=B0=20=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: JunWoo Park --- FE/src/App.tsx | 12 +- FE/src/{pages => features/auth}/LoginPage.tsx | 368 +++++++++--------- FE/src/features/auth/index.ts | 1 + .../game}/components/AnswerModal.tsx | 2 +- .../{ => features/game}/components/Chat.tsx | 6 +- .../game}/components/GameHeader.tsx | 12 +- .../{ => features/game}/components/Modal.tsx | 0 .../game}/components/ParticipantDisplay.tsx | 4 +- .../{ => features/game}/components/Player.tsx | 10 +- .../game}/components/QuizHeader.tsx | 12 +- .../game}/components/QuizOptionBoard.tsx | 14 +- .../game}/components/QuizSetSearchList.tsx | 2 +- .../game}/components/QuizSettingModal.tsx | 4 +- .../game}/components/ResultModal.tsx | 142 +++---- FE/src/features/game/data/socketListener.ts | 132 +++++++ .../game/data}/store/useChatStore.ts | 9 - .../game/data}/store/usePlayerStore.ts | 68 ---- .../game/data}/store/useQuizStore.ts | 28 +- .../game/data}/store/useRoomStore.ts | 21 - FE/src/features/game/index.ts | 5 + FE/src/{ => features/game}/pages/GamePage.tsx | 18 +- .../game}/pages/GameSetupPage.tsx | 4 +- FE/src/{ => features/game}/pages/PinPage.tsx | 2 +- FE/src/{ => features/game}/utils/nickname.ts | 0 .../{ => features/game}/utils/serverTime.ts | 0 .../lobby}/GameLobbyPage.tsx | 156 ++++---- .../lobby}/LobbyList.tsx | 104 ++--- FE/src/features/lobby/index.ts | 1 + .../quiz}/QuizSetupPage.tsx | 0 FE/src/features/quiz/index.ts | 1 + FE/src/{pages => features/user}/MyPage.tsx | 208 +++++----- FE/src/features/user/index.ts | 1 + 32 files changed, 681 insertions(+), 666 deletions(-) rename FE/src/{pages => features/auth}/LoginPage.tsx (97%) create mode 100644 FE/src/features/auth/index.ts rename FE/src/{ => features/game}/components/AnswerModal.tsx (96%) rename FE/src/{ => features/game}/components/Chat.tsx (95%) rename FE/src/{ => features/game}/components/GameHeader.tsx (84%) rename FE/src/{ => features/game}/components/Modal.tsx (100%) rename FE/src/{ => features/game}/components/ParticipantDisplay.tsx (96%) rename FE/src/{ => features/game}/components/Player.tsx (89%) rename FE/src/{ => features/game}/components/QuizHeader.tsx (86%) rename FE/src/{ => features/game}/components/QuizOptionBoard.tsx (90%) rename FE/src/{ => features/game}/components/QuizSetSearchList.tsx (98%) rename FE/src/{ => features/game}/components/QuizSettingModal.tsx (96%) rename FE/src/{ => features/game}/components/ResultModal.tsx (91%) create mode 100644 FE/src/features/game/data/socketListener.ts rename FE/src/{ => features/game/data}/store/useChatStore.ts (67%) rename FE/src/{ => features/game/data}/store/usePlayerStore.ts (57%) rename FE/src/{ => features/game/data}/store/useQuizStore.ts (67%) rename FE/src/{ => features/game/data}/store/useRoomStore.ts (66%) create mode 100644 FE/src/features/game/index.ts rename FE/src/{ => features/game}/pages/GamePage.tsx (85%) rename FE/src/{ => features/game}/pages/GameSetupPage.tsx (96%) rename FE/src/{ => features/game}/pages/PinPage.tsx (96%) rename FE/src/{ => features/game}/utils/nickname.ts (100%) rename FE/src/{ => features/game}/utils/serverTime.ts (100%) rename FE/src/{pages => features/lobby}/GameLobbyPage.tsx (94%) rename FE/src/{components => features/lobby}/LobbyList.tsx (97%) create mode 100644 FE/src/features/lobby/index.ts rename FE/src/{pages => features/quiz}/QuizSetupPage.tsx (100%) create mode 100644 FE/src/features/quiz/index.ts rename FE/src/{pages => features/user}/MyPage.tsx (97%) create mode 100644 FE/src/features/user/index.ts diff --git a/FE/src/App.tsx b/FE/src/App.tsx index c5f01773..e8579a9d 100644 --- a/FE/src/App.tsx +++ b/FE/src/App.tsx @@ -1,12 +1,10 @@ import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; import { MainPage } from './pages/MainPage'; -import { GameSetupPage } from './pages/GameSetupPage'; -import { GamePage } from './pages/GamePage'; -import { QuizSetupPage } from './pages/QuizSetupPage'; -import { GameLobbyPage } from './pages/GameLobbyPage'; -import { LoginPage } from './pages/LoginPage'; -import { MyPage } from './pages/MyPage'; -import { PinPage } from './pages/PinPage'; +import { GameSetupPage, GamePage, PinPage } from './features/game'; +import { QuizSetupPage } from './features/quiz'; +import { GameLobbyPage } from './features/lobby'; +import { LoginPage } from './features/auth'; +import { MyPage } from './features/user'; function App() { return ( diff --git a/FE/src/pages/LoginPage.tsx b/FE/src/features/auth/LoginPage.tsx similarity index 97% rename from FE/src/pages/LoginPage.tsx rename to FE/src/features/auth/LoginPage.tsx index b7949929..393b0234 100644 --- a/FE/src/pages/LoginPage.tsx +++ b/FE/src/features/auth/LoginPage.tsx @@ -1,184 +1,184 @@ -import { HeaderBar } from '@/components/HeaderBar'; -import { useState } from 'react'; -import { useNavigate } from 'react-router-dom'; -import { login, signUp } from '@/api/rest/authApi'; - -export const LoginPage = () => { - const [isSignUp, setIsSignUp] = useState(false); - const navigate = useNavigate(); - - const handleLogin = async (email: string, password: string) => { - const response = await login(email, password); - if (response) { - console.log(response); - console.log(response.access_token); - localStorage.setItem('accessToken', response.access_token); - // 로그인 성공 시 메인 페이지로 이동 - navigate('/'); - } else { - alert('로그인에 실패했습니다. 이메일과 비밀번호를 확인해주세요.'); - } - }; - - return ( -
- - -
-
-
-
- setIsSignUp(false)} - > - 로그인 - - setIsSignUp(true)} - > - 회원가입 - -
-
setIsSignUp(!isSignUp)} - > -
-
-
- -
- {isSignUp ? ( - - ) : ( - - )} -
-
-
-
- ); -}; - -type LoginFormProps = { - handleLogin: (email: string, password: string) => void; -}; - -const LoginForm: React.FC = ({ handleLogin }) => { - const [email, setEmail] = useState(''); - const [password, setPassword] = useState(''); - - const onSubmit = () => { - if (!email || !password) { - alert('이메일과 비밀번호를 입력해주세요.'); - return; - } - handleLogin(email, password); - }; - - return ( -
-

로그인

-
- setEmail(e.target.value)} - className="w-full px-4 py-3 text-sm text-gray-300 bg-gray-700 rounded-md focus:ring-2 focus:ring-yellow-400 focus:outline-none" - /> -
-
- setPassword(e.target.value)} - className="w-full px-4 py-3 text-sm text-gray-300 bg-gray-700 rounded-md focus:ring-2 focus:ring-yellow-400 focus:outline-none" - /> -
- -

- - 비밀번호를 잊으셨나요? - -

-
- ); -}; - -type SignUpFormProps = { - setIsSignUp: (value: boolean) => void; // props 타입 정의 -}; - -const SignUpForm: React.FC = ({ setIsSignUp }) => { - const [email, setEmail] = useState(''); - const [password, setPassword] = useState(''); - const [nickname, setNickname] = useState(''); - - const handleSignUp = async () => { - if (!email || !password || !nickname) { - alert('모든 필드를 입력해주세요.'); - return; - } - - const result = await signUp({ email, password, nickname }); - - if (result) { - alert('회원가입에 성공했습니다!'); - setIsSignUp(false); - } else { - alert('회원가입에 실패했습니다. 다시 시도해주세요.'); - } - }; - - return ( -
-

회원가입

-
- setNickname(e.target.value)} - /> -
-
- setEmail(e.target.value)} - /> -
-
- setPassword(e.target.value)} - /> -
- -
- ); -}; +import { HeaderBar } from '@/components/HeaderBar'; +import { useState } from 'react'; +import { useNavigate } from 'react-router-dom'; +import { login, signUp } from '@/api/rest/authApi'; + +export const LoginPage = () => { + const [isSignUp, setIsSignUp] = useState(false); + const navigate = useNavigate(); + + const handleLogin = async (email: string, password: string) => { + const response = await login(email, password); + if (response) { + console.log(response); + console.log(response.access_token); + localStorage.setItem('accessToken', response.access_token); + // 로그인 성공 시 메인 페이지로 이동 + navigate('/'); + } else { + alert('로그인에 실패했습니다. 이메일과 비밀번호를 확인해주세요.'); + } + }; + + return ( +
+ + +
+
+
+
+ setIsSignUp(false)} + > + 로그인 + + setIsSignUp(true)} + > + 회원가입 + +
+
setIsSignUp(!isSignUp)} + > +
+
+
+ +
+ {isSignUp ? ( + + ) : ( + + )} +
+
+
+
+ ); +}; + +type LoginFormProps = { + handleLogin: (email: string, password: string) => void; +}; + +const LoginForm: React.FC = ({ handleLogin }) => { + const [email, setEmail] = useState(''); + const [password, setPassword] = useState(''); + + const onSubmit = () => { + if (!email || !password) { + alert('이메일과 비밀번호를 입력해주세요.'); + return; + } + handleLogin(email, password); + }; + + return ( +
+

로그인

+
+ setEmail(e.target.value)} + className="w-full px-4 py-3 text-sm text-gray-300 bg-gray-700 rounded-md focus:ring-2 focus:ring-yellow-400 focus:outline-none" + /> +
+
+ setPassword(e.target.value)} + className="w-full px-4 py-3 text-sm text-gray-300 bg-gray-700 rounded-md focus:ring-2 focus:ring-yellow-400 focus:outline-none" + /> +
+ +

+ + 비밀번호를 잊으셨나요? + +

+
+ ); +}; + +type SignUpFormProps = { + setIsSignUp: (value: boolean) => void; // props 타입 정의 +}; + +const SignUpForm: React.FC = ({ setIsSignUp }) => { + const [email, setEmail] = useState(''); + const [password, setPassword] = useState(''); + const [nickname, setNickname] = useState(''); + + const handleSignUp = async () => { + if (!email || !password || !nickname) { + alert('모든 필드를 입력해주세요.'); + return; + } + + const result = await signUp({ email, password, nickname }); + + if (result) { + alert('회원가입에 성공했습니다!'); + setIsSignUp(false); + } else { + alert('회원가입에 실패했습니다. 다시 시도해주세요.'); + } + }; + + return ( +
+

회원가입

+
+ setNickname(e.target.value)} + /> +
+
+ setEmail(e.target.value)} + /> +
+
+ setPassword(e.target.value)} + /> +
+ +
+ ); +}; diff --git a/FE/src/features/auth/index.ts b/FE/src/features/auth/index.ts new file mode 100644 index 00000000..f772190e --- /dev/null +++ b/FE/src/features/auth/index.ts @@ -0,0 +1 @@ +export * from './LoginPage'; diff --git a/FE/src/components/AnswerModal.tsx b/FE/src/features/game/components/AnswerModal.tsx similarity index 96% rename from FE/src/components/AnswerModal.tsx rename to FE/src/features/game/components/AnswerModal.tsx index f979ebb8..e0a38370 100644 --- a/FE/src/components/AnswerModal.tsx +++ b/FE/src/features/game/components/AnswerModal.tsx @@ -1,5 +1,5 @@ import Lottie from 'lottie-react'; -import AnswerBg from '../assets/lottie/answer_background.json'; +import AnswerBg from '@/assets/lottie/answer_background.json'; import { useEffect, useState } from 'react'; type AnswerModalProps = { diff --git a/FE/src/components/Chat.tsx b/FE/src/features/game/components/Chat.tsx similarity index 95% rename from FE/src/components/Chat.tsx rename to FE/src/features/game/components/Chat.tsx index 4863a29e..04a56c02 100644 --- a/FE/src/components/Chat.tsx +++ b/FE/src/features/game/components/Chat.tsx @@ -1,7 +1,7 @@ import { socketService } from '@/api/socket'; -import { useChatStore } from '@/store/useChatStore'; -import { usePlayerStore } from '@/store/usePlayerStore'; -import { useRoomStore } from '@/store/useRoomStore'; +import { useChatStore } from '@/features/game/data/store/useChatStore'; +import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; +import { useRoomStore } from '@/features/game/data/store/useRoomStore'; import { Button } from '@mui/material'; import { useEffect, useRef, useState } from 'react'; diff --git a/FE/src/components/GameHeader.tsx b/FE/src/features/game/components/GameHeader.tsx similarity index 84% rename from FE/src/components/GameHeader.tsx rename to FE/src/features/game/components/GameHeader.tsx index a1a50cd9..7ebc847b 100644 --- a/FE/src/components/GameHeader.tsx +++ b/FE/src/features/game/components/GameHeader.tsx @@ -1,20 +1,20 @@ -import { ClipboardCopy } from './ClipboardCopy'; +import { ClipboardCopy } from '../../../components/ClipboardCopy'; import Card from '@mui/material/Card'; -import { QuizPreview } from './QuizPreview'; +import { QuizPreview } from '../../../components/QuizPreview'; import { useParams } from 'react-router-dom'; -import { useRoomStore } from '@/store/useRoomStore'; +import { useRoomStore } from '@/features/game/data/store/useRoomStore'; import { useState } from 'react'; import { QuizSettingModal } from './QuizSettingModal'; import { socketService } from '@/api/socket'; -import { usePlayerStore } from '@/store/usePlayerStore'; -import { useQuizeStore } from '@/store/useQuizStore'; +import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; +import { useQuizStore } from '@/features/game/data/store/useQuizStore'; export const GameHeader = () => { const { gameId } = useParams<{ gameId: string }>(); const isHost = usePlayerStore((state) => state.isHost); const gameTitle = useRoomStore((state) => state.title); const [isQuizModalOpen, setIsQuizModalOpen] = useState(false); - const { quizSetTitle, quizSetCategory } = useQuizeStore(); + const { quizSetTitle, quizSetCategory } = useQuizStore(); const pinNum = String(gameId); const linkURL = window.location.hostname + `/game/${gameId}`; diff --git a/FE/src/components/Modal.tsx b/FE/src/features/game/components/Modal.tsx similarity index 100% rename from FE/src/components/Modal.tsx rename to FE/src/features/game/components/Modal.tsx diff --git a/FE/src/components/ParticipantDisplay.tsx b/FE/src/features/game/components/ParticipantDisplay.tsx similarity index 96% rename from FE/src/components/ParticipantDisplay.tsx rename to FE/src/features/game/components/ParticipantDisplay.tsx index 48dc9f09..80ec4ed1 100644 --- a/FE/src/components/ParticipantDisplay.tsx +++ b/FE/src/features/game/components/ParticipantDisplay.tsx @@ -1,6 +1,6 @@ import GameState from '@/constants/gameState'; -import { usePlayerStore } from '@/store/usePlayerStore'; -import { useRoomStore } from '@/store/useRoomStore'; +import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; +import { useRoomStore } from '@/features/game/data/store/useRoomStore'; import { motion } from 'framer-motion'; type ParticipantDisplayProps = { diff --git a/FE/src/components/Player.tsx b/FE/src/features/game/components/Player.tsx similarity index 89% rename from FE/src/components/Player.tsx rename to FE/src/features/game/components/Player.tsx index ef0b2a76..e47035ba 100644 --- a/FE/src/components/Player.tsx +++ b/FE/src/features/game/components/Player.tsx @@ -1,9 +1,9 @@ import { useEffect, useRef, useState } from 'react'; -import AnswerEffect from '../assets/lottie/answer_effect.json'; -import FailEffect from '../assets/lottie/fail_effect2.json'; -import Character from '../assets/lottie/character3.json'; +import AnswerEffect from '../../../assets/lottie/answer_effect.json'; +import FailEffect from '../../../assets/lottie/fail_effect2.json'; +import Character from '../../../assets/lottie/character3.json'; import QuizState from '@/constants/quizState'; -import { useQuizeStore } from '@/store/useQuizStore'; +import { useQuizStore } from '@/features/game/data/store/useQuizStore'; import lottie from 'lottie-web'; @@ -18,7 +18,7 @@ type Props = { export const Player = ({ name, position, isCurrent, isAnswer, isAlive }: Props) => { const [showEffect, setShowEffect] = useState(false); const [effectData, setEffectData] = useState(AnswerEffect); - const quizState = useQuizeStore((state) => state.quizState); + const quizState = useQuizStore((state) => state.quizState); const [xPos, yPos] = position; // Lottie 요소를 렌더링할 DOM 요소에 대한 참조 diff --git a/FE/src/components/QuizHeader.tsx b/FE/src/features/game/components/QuizHeader.tsx similarity index 86% rename from FE/src/components/QuizHeader.tsx rename to FE/src/features/game/components/QuizHeader.tsx index f1290fac..57b8b9ac 100644 --- a/FE/src/components/QuizHeader.tsx +++ b/FE/src/features/game/components/QuizHeader.tsx @@ -1,18 +1,18 @@ -import { useQuizeStore } from '@/store/useQuizStore'; +import { useQuizStore } from '@/features/game/data/store/useQuizStore'; import { useEffect, useState } from 'react'; import AnswerModal from './AnswerModal'; import QuizState from '@/constants/quizState'; import Lottie from 'lottie-react'; -import quizLoading from '../assets/lottie/quiz_loading.json'; -import { getServerTimestamp } from '@/utils/serverTime'; +import quizLoading from '../../../assets/lottie/quiz_loading.json'; +import { getServerTimestamp } from '@/features/game/utils/serverTime'; export const QuizHeader = () => { - const currentQuiz = useQuizeStore((state) => state.currentQuiz); - const quizState = useQuizeStore((state) => state.quizState); + const currentQuiz = useQuizStore((state) => state.currentQuiz); + const quizState = useQuizStore((state) => state.quizState); const [seconds, setSeconds] = useState(0); const [isAnswerVisible, setIsAnswerVisible] = useState(false); const [limitTime, setLimitTime] = useState(0); - const answer = useQuizeStore((state) => state.currentAnswer); + const answer = useQuizStore((state) => state.currentAnswer); useEffect(() => { if (currentQuiz) { setSeconds((currentQuiz.endTime - getServerTimestamp()) / 1000); diff --git a/FE/src/components/QuizOptionBoard.tsx b/FE/src/features/game/components/QuizOptionBoard.tsx similarity index 90% rename from FE/src/components/QuizOptionBoard.tsx rename to FE/src/features/game/components/QuizOptionBoard.tsx index f7973641..90d461cd 100644 --- a/FE/src/components/QuizOptionBoard.tsx +++ b/FE/src/features/game/components/QuizOptionBoard.tsx @@ -1,10 +1,10 @@ -import { usePlayerStore } from '@/store/usePlayerStore'; +import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; +import { useRoomStore } from '@/features/game/data/store/useRoomStore'; +import { useQuizStore } from '@/features/game/data/store/useQuizStore'; import { Player } from './Player'; import { socketService } from '@/api/socket'; -import { useRoomStore } from '@/store/useRoomStore'; import { useEffect, useRef, useState } from 'react'; -import { useQuizeStore } from '@/store/useQuizStore'; -import { getServerTimestamp } from '@/utils/serverTime'; +import { getServerTimestamp } from '@/features/game/utils/serverTime'; const optionColors = [ '#FF9AA2', // pastel red @@ -23,10 +23,10 @@ export const QuizOptionBoard = () => { const currentPlayerId = usePlayerStore((state) => state.currentPlayerId); const gameId = useRoomStore((state) => state.gameId); const players = usePlayerStore((state) => state.players); - const currentQuiz = useQuizeStore((state) => state.currentQuiz); + const currentQuiz = useQuizStore((state) => state.currentQuiz); const choiceList = currentQuiz?.choiceList || []; - const quizState = useQuizeStore((state) => state.quizState); - const quizAnswer = useQuizeStore((state) => state.currentAnswer); + const quizState = useQuizStore((state) => state.quizState); + const quizAnswer = useQuizStore((state) => state.currentAnswer); const [selectedOption, setSelectedOption] = useState(currentQuiz?.choiceList.length); const [choiceListVisible, setChoiceListVisible] = useState(false); diff --git a/FE/src/components/QuizSetSearchList.tsx b/FE/src/features/game/components/QuizSetSearchList.tsx similarity index 98% rename from FE/src/components/QuizSetSearchList.tsx rename to FE/src/features/game/components/QuizSetSearchList.tsx index dde895d5..bb51ec2a 100644 --- a/FE/src/components/QuizSetSearchList.tsx +++ b/FE/src/features/game/components/QuizSetSearchList.tsx @@ -1,6 +1,6 @@ import { useInfiniteQuery } from '@tanstack/react-query'; import { useCallback, useEffect, useRef, useState } from 'react'; -import { QuizPreview } from './QuizPreview'; +import { QuizPreview } from '@/components/QuizPreview'; import { getQuizSetList } from '@/api/rest/quizApi'; // type Quiz = { diff --git a/FE/src/components/QuizSettingModal.tsx b/FE/src/features/game/components/QuizSettingModal.tsx similarity index 96% rename from FE/src/components/QuizSettingModal.tsx rename to FE/src/features/game/components/QuizSettingModal.tsx index 321a44c1..877b5095 100644 --- a/FE/src/components/QuizSettingModal.tsx +++ b/FE/src/features/game/components/QuizSettingModal.tsx @@ -1,8 +1,8 @@ import { useRef, useState } from 'react'; -import { QuizPreview } from './QuizPreview'; +import { QuizPreview } from '../../../components/QuizPreview'; import { socketService, useSocketEvent } from '@/api/socket'; import QuizSetSearchList from './QuizSetSearchList'; -import { useRoomStore } from '@/store/useRoomStore'; +import { useRoomStore } from '@/features/game/data/store/useRoomStore'; // type Quiz = { // id: string; diff --git a/FE/src/components/ResultModal.tsx b/FE/src/features/game/components/ResultModal.tsx similarity index 91% rename from FE/src/components/ResultModal.tsx rename to FE/src/features/game/components/ResultModal.tsx index 9019f5ef..7d0fef10 100644 --- a/FE/src/components/ResultModal.tsx +++ b/FE/src/features/game/components/ResultModal.tsx @@ -1,71 +1,71 @@ -import Lottie from 'lottie-react'; -import starBg from '../assets/lottie/star_bg.json'; -import { usePlayerStore } from '@/store/usePlayerStore'; -import { useRoomStore } from '@/store/useRoomStore'; - -type GameResultModalProps = { - isOpen: boolean; - onClose: () => void; - currentPlayerName: string; -}; - -export const ResultModal: React.FC = ({ - isOpen, - onClose, - currentPlayerName -}) => { - const gameMode = useRoomStore((state) => state.gameMode); - const players = usePlayerStore((state) => state.players); - const sortedPlayers = [...players].sort((a, b) => b.playerScore - a.playerScore); - - if (!isOpen) return null; - - return ( -
-
- - -
-

게임이 종료되었습니다.

- -
- {sortedPlayers.map((player, index) => ( -
- - {gameMode === 'RANKING' ? ( - {index + 1}등 - ) : player.isAlive ? ( - 생존 - ) : ( - 탈락 - )}{' '} - {player.playerName} - - {gameMode === 'RANKING' && ( - {player.playerScore}점 - )} -
- ))} -
- -
- -
-
-
-
- ); -}; +import Lottie from 'lottie-react'; +import starBg from '@/assets/lottie/star_bg.json'; +import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; +import { useRoomStore } from '@/features/game/data/store/useRoomStore'; + +type GameResultModalProps = { + isOpen: boolean; + onClose: () => void; + currentPlayerName: string; +}; + +export const ResultModal: React.FC = ({ + isOpen, + onClose, + currentPlayerName +}) => { + const gameMode = useRoomStore((state) => state.gameMode); + const players = usePlayerStore((state) => state.players); + const sortedPlayers = [...players].sort((a, b) => b.playerScore - a.playerScore); + + if (!isOpen) return null; + + return ( +
+
+ + +
+

게임이 종료되었습니다.

+ +
+ {sortedPlayers.map((player, index) => ( +
+ + {gameMode === 'RANKING' ? ( + {index + 1}등 + ) : player.isAlive ? ( + 생존 + ) : ( + 탈락 + )}{' '} + {player.playerName} + + {gameMode === 'RANKING' && ( + {player.playerScore}점 + )} +
+ ))} +
+ +
+ +
+
+
+
+ ); +}; diff --git a/FE/src/features/game/data/socketListener.ts b/FE/src/features/game/data/socketListener.ts new file mode 100644 index 00000000..afcfa1cf --- /dev/null +++ b/FE/src/features/game/data/socketListener.ts @@ -0,0 +1,132 @@ +import { socketService } from '@/api/socket'; +import { useChatStore } from './store/useChatStore'; +import { usePlayerStore } from './store/usePlayerStore'; +import { useQuizStore } from './store/useQuizStore'; +import { useRoomStore } from './store/useRoomStore'; +import GameState from '@/constants/gameState'; +import QuizState from '@/constants/quizState'; +import { getQuizSetDetail } from '@/api/rest/quizApi'; + +// chat +socketService.on('chatMessage', (data) => { + useChatStore.getState().addMessage(data); +}); + +socketService.on('disconnect', () => { + useChatStore.getState().reset(); +}); + +// player +socketService.on('joinRoom', (data) => { + const { addPlayers, setCurrentPlayerId } = usePlayerStore.getState(); + const newPlayers = data.players.map((player) => ({ + ...player, + playerScore: 0, + isAlive: true, + isAnswer: true + })); + addPlayers(newPlayers); + const socketId = socketService.getSocketId(); + if (newPlayers.length > 0 && newPlayers[0].playerId === socketId) { + setCurrentPlayerId(socketId); + } +}); + +socketService.on('updatePosition', (data) => { + usePlayerStore.getState().updatePlayerPosition(data.playerId, data.playerPosition); +}); + +socketService.on('endQuizTime', (data) => { + const { players, setPlayers } = usePlayerStore.getState(); + const { gameMode } = useRoomStore.getState(); + + setPlayers( + data.players.map((p) => { + const _p = players.find((e) => e.playerId === p.playerId); + return { + playerId: String(p.playerId), + playerName: _p?.playerName || '', + playerPosition: _p?.playerPosition || [0, 0], + playerScore: p.score, + isAnswer: p.isAnswer, + isAlive: _p?.isAlive || false + }; + }) + ); + + // 서바이벌 모드일 경우 3초 뒤에 탈락한 플레이어를 보이지 않게 한다. + if (gameMode === 'SURVIVAL') { + setTimeout(() => { + const { players, setPlayers } = usePlayerStore.getState(); + + setPlayers( + players.map((p) => { + return { + ...p, + isAlive: p.isAlive && p?.isAnswer + }; + }) + ); + }, 3000); + } +}); + +socketService.on('endGame', (data) => { + usePlayerStore.getState().setIsHost(data.hostId === socketService.getSocketId()); +}); + +socketService.on('exitRoom', (data) => { + usePlayerStore.getState().removePlayer(data.playerId); +}); + +socketService.on('disconnect', () => { + usePlayerStore.getState().reset(); +}); + +// Quiz + +// 진행 중인 퀴즈 설정 +socketService.on('startQuizTime', (data) => { + useQuizStore.getState().setQuizState(QuizState.START); + useQuizStore.getState().setCurrentQuiz(data); +}); +socketService.on('endQuizTime', (data) => { + useQuizStore.getState().setQuizState(QuizState.END); + useQuizStore.getState().setCurrentAnswer(Number(data.answer)); +}); + +socketService.on('endGame', () => { + useQuizStore.getState().resetQuiz(); +}); + +// TODO update 퀴즈 셋 시 퀴즈셋 받아오기 +socketService.on('updateRoomQuizset', async (data) => { + const res = await getQuizSetDetail(String(data.quizSetId)); + useQuizStore.getState().setQuizSet(String(res?.title), String(res?.category)); +}); + +socketService.on('disconnect', () => { + useQuizStore.getState().reset(); +}); + +// Room + +socketService.on('createRoom', (data) => { + useRoomStore.getState().updateRoom({ gameId: data.gameId }); +}); + +socketService.on('updateRoomOption', (data) => { + useRoomStore.getState().updateRoom(data); +}); + +socketService.on('startGame', () => { + useRoomStore.getState().setGameState(GameState.PROGRESS); +}); + +socketService.on('endGame', () => { + useRoomStore.getState().setGameState(GameState.END); +}); + +socketService.on('disconnect', () => { + useRoomStore.getState().reset(); +}); diff --git a/FE/src/store/useChatStore.ts b/FE/src/features/game/data/store/useChatStore.ts similarity index 67% rename from FE/src/store/useChatStore.ts rename to FE/src/features/game/data/store/useChatStore.ts index 16dca70d..aee801b9 100644 --- a/FE/src/store/useChatStore.ts +++ b/FE/src/features/game/data/store/useChatStore.ts @@ -1,4 +1,3 @@ -import { socketService } from '@/api/socket'; import { create } from 'zustand'; type Message = { @@ -21,11 +20,3 @@ export const useChatStore = create((set) => ({ }, reset: () => set({ messages: [] }) })); - -socketService.on('chatMessage', (data) => { - useChatStore.getState().addMessage(data); -}); - -socketService.on('disconnect', () => { - useChatStore.getState().reset(); -}); diff --git a/FE/src/store/usePlayerStore.ts b/FE/src/features/game/data/store/usePlayerStore.ts similarity index 57% rename from FE/src/store/usePlayerStore.ts rename to FE/src/features/game/data/store/usePlayerStore.ts index 8db68195..bacbc631 100644 --- a/FE/src/store/usePlayerStore.ts +++ b/FE/src/features/game/data/store/usePlayerStore.ts @@ -1,6 +1,4 @@ -import { socketService } from '@/api/socket'; import { create } from 'zustand'; -import { useRoomStore } from './useRoomStore'; type Player = { playerId: string; // socketId @@ -93,69 +91,3 @@ export const usePlayerStore = create((set) => ({ }, reset: () => set({ players: [], isHost: false, currentPlayerId: '', currentPlayerName: '' }) })); - -socketService.on('joinRoom', (data) => { - const { addPlayers, setCurrentPlayerId } = usePlayerStore.getState(); - const newPlayers = data.players.map((player) => ({ - ...player, - playerScore: 0, - isAlive: true, - isAnswer: true - })); - addPlayers(newPlayers); - const socketId = socketService.getSocketId(); - if (newPlayers.length > 0 && newPlayers[0].playerId === socketId) { - setCurrentPlayerId(socketId); - } -}); - -socketService.on('updatePosition', (data) => { - usePlayerStore.getState().updatePlayerPosition(data.playerId, data.playerPosition); -}); - -socketService.on('endQuizTime', (data) => { - const { players, setPlayers } = usePlayerStore.getState(); - const { gameMode } = useRoomStore.getState(); - - setPlayers( - data.players.map((p) => { - const _p = players.find((e) => e.playerId === p.playerId); - return { - playerId: String(p.playerId), - playerName: _p?.playerName || '', - playerPosition: _p?.playerPosition || [0, 0], - playerScore: p.score, - isAnswer: p.isAnswer, - isAlive: _p?.isAlive || false - }; - }) - ); - - // 서바이벌 모드일 경우 3초 뒤에 탈락한 플레이어를 보이지 않게 한다. - if (gameMode === 'SURVIVAL') { - setTimeout(() => { - const { players, setPlayers } = usePlayerStore.getState(); - - setPlayers( - players.map((p) => { - return { - ...p, - isAlive: p.isAlive && p?.isAnswer - }; - }) - ); - }, 3000); - } -}); - -socketService.on('endGame', (data) => { - usePlayerStore.getState().setIsHost(data.hostId === socketService.getSocketId()); -}); - -socketService.on('exitRoom', (data) => { - usePlayerStore.getState().removePlayer(data.playerId); -}); - -socketService.on('disconnect', () => { - usePlayerStore.getState().reset(); -}); diff --git a/FE/src/store/useQuizStore.ts b/FE/src/features/game/data/store/useQuizStore.ts similarity index 67% rename from FE/src/store/useQuizStore.ts rename to FE/src/features/game/data/store/useQuizStore.ts index 1d5c1895..419c0994 100644 --- a/FE/src/store/useQuizStore.ts +++ b/FE/src/features/game/data/store/useQuizStore.ts @@ -1,5 +1,3 @@ -import { getQuizSetDetail } from '@/api/rest/quizApi'; -import { socketService } from '@/api/socket'; import QuizState from '@/constants/quizState'; import { create } from 'zustand'; @@ -48,7 +46,7 @@ type QuizStore = { reset: () => void; }; -export const useQuizeStore = create((set) => ({ +export const useQuizStore = create((set) => ({ quizSetTitle: '', quizSetCategory: '', quizSets: [], @@ -80,27 +78,3 @@ export const useQuizeStore = create((set) => ({ quizState: QuizState.PROGRESS }) })); - -// 진행 중인 퀴즈 설정 -socketService.on('startQuizTime', (data) => { - useQuizeStore.getState().setQuizState(QuizState.START); - useQuizeStore.getState().setCurrentQuiz(data); -}); -socketService.on('endQuizTime', (data) => { - useQuizeStore.getState().setQuizState(QuizState.END); - useQuizeStore.getState().setCurrentAnswer(Number(data.answer)); -}); - -socketService.on('endGame', () => { - useQuizeStore.getState().resetQuiz(); -}); - -// TODO update 퀴즈 셋 시 퀴즈셋 받아오기 -socketService.on('updateRoomQuizset', async (data) => { - const res = await getQuizSetDetail(String(data.quizSetId)); - useQuizeStore.getState().setQuizSet(String(res?.title), String(res?.category)); -}); - -socketService.on('disconnect', () => { - useQuizeStore.getState().reset(); -}); diff --git a/FE/src/store/useRoomStore.ts b/FE/src/features/game/data/store/useRoomStore.ts similarity index 66% rename from FE/src/store/useRoomStore.ts rename to FE/src/features/game/data/store/useRoomStore.ts index 52d19453..ce688348 100644 --- a/FE/src/store/useRoomStore.ts +++ b/FE/src/features/game/data/store/useRoomStore.ts @@ -1,4 +1,3 @@ -import { socketService } from '@/api/socket'; import { create } from 'zustand'; import GameState from '@/constants/gameState'; @@ -45,23 +44,3 @@ export const useRoomStore = create((set) => ({ gameState: GameState.WAIT }) })); - -socketService.on('createRoom', (data) => { - useRoomStore.getState().updateRoom({ gameId: data.gameId }); -}); - -socketService.on('updateRoomOption', (data) => { - useRoomStore.getState().updateRoom(data); -}); - -socketService.on('startGame', () => { - useRoomStore.getState().setGameState(GameState.PROGRESS); -}); - -socketService.on('endGame', () => { - useRoomStore.getState().setGameState(GameState.END); -}); - -socketService.on('disconnect', () => { - useRoomStore.getState().reset(); -}); diff --git a/FE/src/features/game/index.ts b/FE/src/features/game/index.ts new file mode 100644 index 00000000..1a6b6440 --- /dev/null +++ b/FE/src/features/game/index.ts @@ -0,0 +1,5 @@ +import './data/socketListener.ts'; + +export * from './pages/GamePage.tsx'; +export * from './pages/GameSetupPage.tsx'; +export * from './pages/PinPage.tsx'; diff --git a/FE/src/pages/GamePage.tsx b/FE/src/features/game/pages/GamePage.tsx similarity index 85% rename from FE/src/pages/GamePage.tsx rename to FE/src/features/game/pages/GamePage.tsx index ed88712b..adce0f59 100644 --- a/FE/src/pages/GamePage.tsx +++ b/FE/src/features/game/pages/GamePage.tsx @@ -1,20 +1,20 @@ -import Chat from '@/components/Chat'; -import ParticipantDisplay from '@/components/ParticipantDisplay'; -import { QuizOptionBoard } from '@/components/QuizOptionBoard'; +import Chat from '@/features/game/components/Chat'; +import ParticipantDisplay from '@/features/game/components/ParticipantDisplay'; +import { QuizOptionBoard } from '@/features/game/components/QuizOptionBoard'; import { Modal } from '../components/Modal'; import { useState, useEffect } from 'react'; -import { GameHeader } from '@/components/GameHeader'; +import { GameHeader } from '@/features/game/components/GameHeader'; import { HeaderBar } from '@/components/HeaderBar'; import { socketService, useSocketException } from '@/api/socket'; import { useParams } from 'react-router-dom'; -import { useRoomStore } from '@/store/useRoomStore'; -import { QuizHeader } from '@/components/QuizHeader'; +import { useRoomStore } from '../data/store/useRoomStore'; +import { QuizHeader } from '@/features/game/components/QuizHeader'; import GameState from '@/constants/gameState'; -import { usePlayerStore } from '@/store/usePlayerStore'; -import { ResultModal } from '@/components/ResultModal'; +import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; +import { ResultModal } from '@/features/game/components/ResultModal'; import { ErrorModal } from '@/components/ErrorModal'; import { useNavigate } from 'react-router-dom'; -import { getRandomNickname } from '@/utils/nickname'; +import { getRandomNickname } from '@/features/game/utils/nickname'; export const GamePage = () => { const { gameId } = useParams<{ gameId: string }>(); diff --git a/FE/src/pages/GameSetupPage.tsx b/FE/src/features/game/pages/GameSetupPage.tsx similarity index 96% rename from FE/src/pages/GameSetupPage.tsx rename to FE/src/features/game/pages/GameSetupPage.tsx index a9308f0f..1dd42c97 100644 --- a/FE/src/pages/GameSetupPage.tsx +++ b/FE/src/features/game/pages/GameSetupPage.tsx @@ -12,8 +12,8 @@ import { useEffect, useState } from 'react'; import { socketService, useSocketEvent } from '@/api/socket'; import RoomConfig from '@/constants/roomConfig'; import { useNavigate } from 'react-router-dom'; -import { useRoomStore } from '@/store/useRoomStore'; -import { usePlayerStore } from '@/store/usePlayerStore'; +import { useRoomStore } from '@/features/game/data/store/useRoomStore'; +import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; import { TextInput } from '@/components/TextInput'; export const GameSetupPage = () => { const { updateRoom } = useRoomStore((state) => state); diff --git a/FE/src/pages/PinPage.tsx b/FE/src/features/game/pages/PinPage.tsx similarity index 96% rename from FE/src/pages/PinPage.tsx rename to FE/src/features/game/pages/PinPage.tsx index 2fb7cd53..639bf7ce 100644 --- a/FE/src/pages/PinPage.tsx +++ b/FE/src/features/game/pages/PinPage.tsx @@ -1,7 +1,7 @@ import { socketService } from '@/api/socket'; import { HeaderBar } from '@/components/HeaderBar'; import { TextInput } from '@/components/TextInput'; -import { getRandomNickname } from '@/utils/nickname'; +import { getRandomNickname } from '@/features/game/utils/nickname'; import { useEffect, useState } from 'react'; export const PinPage = () => { diff --git a/FE/src/utils/nickname.ts b/FE/src/features/game/utils/nickname.ts similarity index 100% rename from FE/src/utils/nickname.ts rename to FE/src/features/game/utils/nickname.ts diff --git a/FE/src/utils/serverTime.ts b/FE/src/features/game/utils/serverTime.ts similarity index 100% rename from FE/src/utils/serverTime.ts rename to FE/src/features/game/utils/serverTime.ts diff --git a/FE/src/pages/GameLobbyPage.tsx b/FE/src/features/lobby/GameLobbyPage.tsx similarity index 94% rename from FE/src/pages/GameLobbyPage.tsx rename to FE/src/features/lobby/GameLobbyPage.tsx index b532d75d..b92b289e 100644 --- a/FE/src/pages/GameLobbyPage.tsx +++ b/FE/src/features/lobby/GameLobbyPage.tsx @@ -1,78 +1,78 @@ -import { HeaderBar } from '@/components/HeaderBar'; -import { LobbyList } from '@/components/LobbyList'; -import { useState, useEffect, useCallback } from 'react'; -import { getRoomList } from '@/api/rest/roomApi'; - -type Room = { - title: string; - gameMode: string; - maxPlayerCount: number; - currentPlayerCount: number; - quizSetTitle: string; - gameId: string; -}; - -type Paging = { - nextCursor: string; - hasNextPage: boolean; -}; - -export const GameLobbyPage = () => { - const [rooms, setRooms] = useState([]); - const [paging, setPaging] = useState(null); - const [isLoading, setIsLoading] = useState(false); - - const loadRooms = useCallback( - async (cursor: string | null, take: number = 10) => { - if (isLoading) return; - if (paging && !paging.hasNextPage) return; - setIsLoading(true); - - try { - const response = await getRoomList(cursor ?? '', take); - if (response) { - setRooms((prevRooms) => { - const newRooms = response.roomList.filter( - (newRoom) => !prevRooms.some((room) => room.gameId === newRoom.gameId) - ); - return [...prevRooms, ...newRooms]; - }); - setPaging(response.paging); - } - } catch (error) { - console.error('Failed to load rooms:', error); - } finally { - setIsLoading(false); - } - }, - [isLoading] - ); - - useEffect(() => { - loadRooms(null); - }, [loadRooms]); - - const handleScroll = useCallback(() => { - if (isLoading || !paging?.hasNextPage) return; - - const { scrollTop, scrollHeight, clientHeight } = document.documentElement; - if (scrollHeight - scrollTop <= clientHeight + 200) { - loadRooms(paging?.nextCursor); - } - }, [paging, loadRooms, isLoading]); - - useEffect(() => { - window.addEventListener('scroll', handleScroll); - return () => { - window.removeEventListener('scroll', handleScroll); - }; - }, [handleScroll]); - - return ( -
- - - {isLoading &&
Loading...
} -
- ); -}; +import { HeaderBar } from '@/components/HeaderBar'; +import { LobbyList } from '@/features/lobby/LobbyList'; +import { useState, useEffect, useCallback } from 'react'; +import { getRoomList } from '@/api/rest/roomApi'; + +type Room = { + title: string; + gameMode: string; + maxPlayerCount: number; + currentPlayerCount: number; + quizSetTitle: string; + gameId: string; +}; + +type Paging = { + nextCursor: string; + hasNextPage: boolean; +}; + +export const GameLobbyPage = () => { + const [rooms, setRooms] = useState([]); + const [paging, setPaging] = useState(null); + const [isLoading, setIsLoading] = useState(false); + + const loadRooms = useCallback( + async (cursor: string | null, take: number = 10) => { + if (isLoading) return; + if (paging && !paging.hasNextPage) return; + setIsLoading(true); + + try { + const response = await getRoomList(cursor ?? '', take); + if (response) { + setRooms((prevRooms) => { + const newRooms = response.roomList.filter( + (newRoom) => !prevRooms.some((room) => room.gameId === newRoom.gameId) + ); + return [...prevRooms, ...newRooms]; + }); + setPaging(response.paging); + } + } catch (error) { + console.error('Failed to load rooms:', error); + } finally { + setIsLoading(false); + } + }, + [isLoading] + ); + + useEffect(() => { + loadRooms(null); + }, [loadRooms]); + + const handleScroll = useCallback(() => { + if (isLoading || !paging?.hasNextPage) return; + + const { scrollTop, scrollHeight, clientHeight } = document.documentElement; + if (scrollHeight - scrollTop <= clientHeight + 200) { + loadRooms(paging?.nextCursor); + } + }, [paging, loadRooms, isLoading]); + + useEffect(() => { + window.addEventListener('scroll', handleScroll); + return () => { + window.removeEventListener('scroll', handleScroll); + }; + }, [handleScroll]); + + return ( +
+ + + {isLoading &&
Loading...
} +
+ ); +}; diff --git a/FE/src/components/LobbyList.tsx b/FE/src/features/lobby/LobbyList.tsx similarity index 97% rename from FE/src/components/LobbyList.tsx rename to FE/src/features/lobby/LobbyList.tsx index 53225518..8bd771ac 100644 --- a/FE/src/components/LobbyList.tsx +++ b/FE/src/features/lobby/LobbyList.tsx @@ -1,52 +1,52 @@ -type Room = { - title: string; - gameMode: string; - maxPlayerCount: number; - currentPlayerCount: number; - quizSetTitle: string; - gameId: string; -}; - -type LobbyListProps = { - rooms: Room[]; -}; -import { useNavigate } from 'react-router-dom'; - -export const LobbyList: React.FC = ({ rooms }) => { - const navigate = useNavigate(); - - const handleJoinRoom = (gameId: string) => { - console.log(gameId, 'joinRoom click'); - navigate(`/game/${gameId}`); - }; - return ( -
-
-

대기실 목록

-
-
- {rooms.map((room) => ( -
-

{room.title}

-

{room.gameMode}

-

- {room.currentPlayerCount}/{room.maxPlayerCount} Players -

-

- Quiz: {room.quizSetTitle} -

- -
- ))} -
-
- ); -}; +type Room = { + title: string; + gameMode: string; + maxPlayerCount: number; + currentPlayerCount: number; + quizSetTitle: string; + gameId: string; +}; + +type LobbyListProps = { + rooms: Room[]; +}; +import { useNavigate } from 'react-router-dom'; + +export const LobbyList: React.FC = ({ rooms }) => { + const navigate = useNavigate(); + + const handleJoinRoom = (gameId: string) => { + console.log(gameId, 'joinRoom click'); + navigate(`/game/${gameId}`); + }; + return ( +
+
+

대기실 목록

+
+
+ {rooms.map((room) => ( +
+

{room.title}

+

{room.gameMode}

+

+ {room.currentPlayerCount}/{room.maxPlayerCount} Players +

+

+ Quiz: {room.quizSetTitle} +

+ +
+ ))} +
+
+ ); +}; diff --git a/FE/src/features/lobby/index.ts b/FE/src/features/lobby/index.ts new file mode 100644 index 00000000..3f03a0ff --- /dev/null +++ b/FE/src/features/lobby/index.ts @@ -0,0 +1 @@ +export * from './GameLobbyPage'; diff --git a/FE/src/pages/QuizSetupPage.tsx b/FE/src/features/quiz/QuizSetupPage.tsx similarity index 100% rename from FE/src/pages/QuizSetupPage.tsx rename to FE/src/features/quiz/QuizSetupPage.tsx diff --git a/FE/src/features/quiz/index.ts b/FE/src/features/quiz/index.ts new file mode 100644 index 00000000..34fe3ee0 --- /dev/null +++ b/FE/src/features/quiz/index.ts @@ -0,0 +1 @@ +export * from './QuizSetupPage'; diff --git a/FE/src/pages/MyPage.tsx b/FE/src/features/user/MyPage.tsx similarity index 97% rename from FE/src/pages/MyPage.tsx rename to FE/src/features/user/MyPage.tsx index b76b5d8a..786cbe51 100644 --- a/FE/src/pages/MyPage.tsx +++ b/FE/src/features/user/MyPage.tsx @@ -1,104 +1,104 @@ -import { HeaderBar } from '@/components/HeaderBar'; -import { useState } from 'react'; - -type QuizListProps = { - title: string; - quizzes: string[]; - activeTab: string; -}; - -export const MyPage: React.FC = () => { - const [activeTab, setActiveTab] = useState<'myQuizzes' | 'solvedQuizzes'>('myQuizzes'); - - const myQuizzes = ['퀴즈 1', '퀴즈 2', '퀴즈 3', '퀴즈 4']; // 예시 데이터 - const solvedQuizzes = ['퀴즈 A', '퀴즈 B', '퀴즈 C', '퀴즈 D']; // 예시 데이터 - - return ( -
- - -
-
- Profile -
-

닉네임

-
- -
-
- - -
- - {/* 리스트 */} -
- {activeTab === 'myQuizzes' ? ( - - ) : ( - - )} -
-
-
- ); -}; - -// 퀴즈 리스트 컴포넌트 -const QuizList: React.FC = ({ title, quizzes, activeTab }) => { - const handleEdit = (index: number) => { - console.log(index + '수정 클릭'); - }; - const handleDelete = (index: number) => { - console.log(index + '삭제 클릭'); - }; - return ( -
-

{title}

-
    - {quizzes.map((quiz, index) => ( -
  • - {quiz} -
    - {activeTab === 'myQuizzes' && ( - - )} - -
    -
  • - ))} -
-
- ); -}; +import { HeaderBar } from '@/components/HeaderBar'; +import { useState } from 'react'; + +type QuizListProps = { + title: string; + quizzes: string[]; + activeTab: string; +}; + +export const MyPage: React.FC = () => { + const [activeTab, setActiveTab] = useState<'myQuizzes' | 'solvedQuizzes'>('myQuizzes'); + + const myQuizzes = ['퀴즈 1', '퀴즈 2', '퀴즈 3', '퀴즈 4']; // 예시 데이터 + const solvedQuizzes = ['퀴즈 A', '퀴즈 B', '퀴즈 C', '퀴즈 D']; // 예시 데이터 + + return ( +
+ + +
+
+ Profile +
+

닉네임

+
+ +
+
+ + +
+ + {/* 리스트 */} +
+ {activeTab === 'myQuizzes' ? ( + + ) : ( + + )} +
+
+
+ ); +}; + +// 퀴즈 리스트 컴포넌트 +const QuizList: React.FC = ({ title, quizzes, activeTab }) => { + const handleEdit = (index: number) => { + console.log(index + '수정 클릭'); + }; + const handleDelete = (index: number) => { + console.log(index + '삭제 클릭'); + }; + return ( +
+

{title}

+
    + {quizzes.map((quiz, index) => ( +
  • + {quiz} +
    + {activeTab === 'myQuizzes' && ( + + )} + +
    +
  • + ))} +
+
+ ); +}; diff --git a/FE/src/features/user/index.ts b/FE/src/features/user/index.ts new file mode 100644 index 00000000..7780682b --- /dev/null +++ b/FE/src/features/user/index.ts @@ -0,0 +1 @@ +export * from './MyPage'; From 314f6905230c58619fb3b80cefd875f465f1f114 Mon Sep 17 00:00:00 2001 From: JunWoo Park <97427744+always97@users.noreply.github.com> Date: Mon, 25 Nov 2024 23:00:02 +0900 Subject: [PATCH 02/58] =?UTF-8?q?feat:=20=EA=B0=95=ED=87=B4=20=EA=B8=B0?= =?UTF-8?q?=EB=8A=A5=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/api/socket/socket.ts | 4 ++++ FE/src/api/socket/socketEventTypes.ts | 13 +++++++++++++ FE/src/constants/socketEvents.ts | 3 ++- .../features/game/components/ParticipantDisplay.tsx | 13 ++++++++++++- FE/src/features/game/data/socketListener.ts | 5 +++++ 5 files changed, 36 insertions(+), 2 deletions(-) diff --git a/FE/src/api/socket/socket.ts b/FE/src/api/socket/socket.ts index ad6e1b55..f06eca89 100644 --- a/FE/src/api/socket/socket.ts +++ b/FE/src/api/socket/socket.ts @@ -118,6 +118,10 @@ class SocketService { this.socket.emit(SocketEvents.JOIN_ROOM, { gameId, playerName }); } + kickRoom(gameId: string, kickPlayerId: string) { + this.socket.emit(SocketEvents.KICK_ROOM, { gameId, kickPlayerId }); + } + chatMessage(gameId: string, message: string) { this.socket.emit(SocketEvents.CHAT_MESSAGE, { gameId, message }); } diff --git a/FE/src/api/socket/socketEventTypes.ts b/FE/src/api/socket/socketEventTypes.ts index 857743b8..e91d7726 100644 --- a/FE/src/api/socket/socketEventTypes.ts +++ b/FE/src/api/socket/socketEventTypes.ts @@ -123,6 +123,14 @@ type ExitRoomEvent = { playerId: string; }; +type KickRoomRequest = { + gameId: string; + kickPlayerId: string; +}; +type KickRoomResponse = { + playerId: string; +}; + // 전체 소켓 이벤트 타입 맵 export type SocketDataMap = { chatMessage: { @@ -186,6 +194,11 @@ export type SocketDataMap = { }; }; + kickRoom: { + request: KickRoomRequest; + response: KickRoomResponse; + }; + connect: { request: null; response: null }; disconnect: { request: null; response: null }; }; diff --git a/FE/src/constants/socketEvents.ts b/FE/src/constants/socketEvents.ts index d7b3921a..738b4a4f 100644 --- a/FE/src/constants/socketEvents.ts +++ b/FE/src/constants/socketEvents.ts @@ -9,7 +9,8 @@ const SocketEvents = { STOP_GAME: 'stopGame', END_QUIZ_TIME: 'endQuizTime', START_QUIZ_TIME: 'startQuizTime', - UPDATE_SCORE: 'updateScore' + UPDATE_SCORE: 'updateScore', + KICK_ROOM: 'kickRoom' } as const; export default SocketEvents; diff --git a/FE/src/features/game/components/ParticipantDisplay.tsx b/FE/src/features/game/components/ParticipantDisplay.tsx index 80ec4ed1..fd981567 100644 --- a/FE/src/features/game/components/ParticipantDisplay.tsx +++ b/FE/src/features/game/components/ParticipantDisplay.tsx @@ -1,3 +1,4 @@ +import { socketService } from '@/api/socket'; import GameState from '@/constants/gameState'; import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; import { useRoomStore } from '@/features/game/data/store/useRoomStore'; @@ -14,6 +15,11 @@ const ParticipantDisplay: React.FC = ({ gameState }) => const currentPlayerId = usePlayerStore((state) => state.currentPlayerId); const isHost = usePlayerStore((state) => state.isHost); const gameMode = useRoomStore((state) => state.gameMode); + const gameId = useRoomStore((state) => state.gameId); + + const handleKick = (playerId: string) => { + socketService.kickRoom(gameId, playerId); + }; // 대기 모드일 때 참가자 목록 표시 const renderWaitingMode = () => ( @@ -25,7 +31,12 @@ const ParticipantDisplay: React.FC = ({ gameState }) => >
{i + 1 + '. ' + player.playerName}
{isHost && currentPlayerId !== player.playerId && ( - + )} ))} diff --git a/FE/src/features/game/data/socketListener.ts b/FE/src/features/game/data/socketListener.ts index afcfa1cf..18297bb7 100644 --- a/FE/src/features/game/data/socketListener.ts +++ b/FE/src/features/game/data/socketListener.ts @@ -127,6 +127,11 @@ socketService.on('endGame', () => { useRoomStore.getState().setGameState(GameState.END); }); +socketService.on('kickRoom', () => { + alert('강퇴당하였습니다.'); + // 메인페이지 or 로비로 이동시키기? +}); + socketService.on('disconnect', () => { useRoomStore.getState().reset(); }); From 9a55d18b0d7b351eda9bdc58e2d7d0144ea50faa Mon Sep 17 00:00:00 2001 From: ijun17 Date: Mon, 25 Nov 2024 23:50:37 +0900 Subject: [PATCH 03/58] =?UTF-8?q?feat:=20=EC=86=8C=EC=BC=93=20=EB=AA=A9=20?= =?UTF-8?q?=EC=9C=A0=ED=8B=B8=ED=95=A8=EC=88=98=20=EC=B6=94=EA=B0=80=20?= =?UTF-8?q?=EB=B0=8F=20=EC=84=B1=EB=8A=A5=20=EC=B8=A1=EC=A0=95=20=EB=8F=84?= =?UTF-8?q?=EA=B5=AC=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/api/socket/mocks/SocketMock.ts | 48 ++++++++++++++++++- .../mocks/socketMocks/SocketMockChat.ts | 24 ++-------- .../mocks/socketMocks/SocketMockLoadTest.ts | 35 +------------- .../socketMocks/SocketMockLoadTestWithQuiz.ts | 36 +------------- .../mocks/socketMocks/SocketMockNextQuiz.ts | 10 +--- .../mocks/socketMocks/SocketMockStartEnd.ts | 10 +--- .../mocks/socketMocks/SocketMockStartGame.ts | 10 +--- 7 files changed, 57 insertions(+), 116 deletions(-) diff --git a/FE/src/api/socket/mocks/SocketMock.ts b/FE/src/api/socket/mocks/SocketMock.ts index 21ec7c26..a4c5e326 100644 --- a/FE/src/api/socket/mocks/SocketMock.ts +++ b/FE/src/api/socket/mocks/SocketMock.ts @@ -159,7 +159,10 @@ export class SocketMock { * calculate() * progressQuiz() * updatePlayerPosition() - * chatMessage + * chatMessage() + * createDummyPlayer() + * chatRandom() + * moveRandom() */ getPlayer(id: string) { return this.players[id]; @@ -221,4 +224,47 @@ export class SocketMock { timestamp: 0 }); } + + createDummyPlayer(count: number) { + const playerCount = Object.keys(this.players).length; + this.addPlayers( + Array(count) + .fill(null) + .map((_, i) => ({ + playerId: String(playerCount + i + 1), + playerName: 'player' + playerCount + i, + playerPosition: [this.random(), this.random()] + })) + ); + } + + async chatRandom(testSec: number, chatPerSecPerPlyaer: number = 1) { + const playerCount = this.getPlayerList().length; + for (let j = 0; j < testSec; j++) { + for (const player of this.getPlayerList()) { + if (player.playerId === this.id) continue; + await this.delay(1 / playerCount / chatPerSecPerPlyaer); + this.chatMessage(player.playerId, 'message' + player.playerId); + } + } + } + + async moveRandom(testSec: number, movePerSecPerPlyaer: number = 1) { + const playerCount = this.getPlayerList().length; + for (let j = 0; j < testSec; j++) { + for (const player of this.getPlayerList()) { + if (player.playerId === this.id) continue; + await this.delay(1 / playerCount / movePerSecPerPlyaer); + this.updatePlayerPosition(player.playerId, [this.random(), this.random()]); + } + } + } + + async performenceTest(fnList: unknown[]) { + const start = performance.now(); + Promise.all(fnList).then(() => { + const end = performance.now(); + this.log(`PERFORMENCE: ${((end - start) / 1000).toFixed(2)}s`); + }); + } } diff --git a/FE/src/api/socket/mocks/socketMocks/SocketMockChat.ts b/FE/src/api/socket/mocks/socketMocks/SocketMockChat.ts index eb02a747..be39d282 100644 --- a/FE/src/api/socket/mocks/socketMocks/SocketMockChat.ts +++ b/FE/src/api/socket/mocks/socketMocks/SocketMockChat.ts @@ -3,26 +3,8 @@ import { SocketMock } from '../SocketMock'; export default class SocketMockChat extends SocketMock { constructor() { super(); - this.addPlayers( - Array(10) - .fill(null) - .map((_, i) => ({ - playerId: String(i + 1), - playerName: 'player' + i, - playerPosition: [i / 10, i / 10] - })) - ); - this.testChat(); - } - // 10명의 유저가 채팅을 보냄 - async testChat() { - const playerCount = this.getPlayerList().length; - const testTime = 5; - for (let j = 0; j < testTime; j++) { - for (const player of this.getPlayerList()) { - await this.delay(1 / playerCount); - this.chatMessage(player.playerId, 'message' + player.playerId); - } - } + this.createDummyPlayer(10); + + this.performenceTest([this.chatRandom(5, 1)]); } } diff --git a/FE/src/api/socket/mocks/socketMocks/SocketMockLoadTest.ts b/FE/src/api/socket/mocks/socketMocks/SocketMockLoadTest.ts index 46909307..dfc0e53d 100644 --- a/FE/src/api/socket/mocks/socketMocks/SocketMockLoadTest.ts +++ b/FE/src/api/socket/mocks/socketMocks/SocketMockLoadTest.ts @@ -3,38 +3,7 @@ import { SocketMock } from '../SocketMock'; export default class SocketMockLoadTest extends SocketMock { constructor() { super(); - this.addPlayers( - Array(100) - .fill(null) - .map((_, i) => ({ - playerId: String(i + 1), - playerName: 'player' + i, - playerPosition: [i / 10, i / 10] - })) - ); - this.testChat(); - this.testMove(); - } - - async testChat() { - const playerCount = this.getPlayerList().length; - const testTime = 10; - for (let j = 0; j < testTime; j++) { - for (const player of this.getPlayerList()) { - await this.delay(1 / playerCount); - this.chatMessage(player.playerId, 'message' + player.playerId); - } - } - } - - async testMove() { - const playerCount = this.getPlayerList().length; - const testTime = 10; - for (let j = 0; j < testTime; j++) { - for (const player of this.getPlayerList()) { - await this.delay(1 / playerCount); - this.updatePlayerPosition(player.playerId, [this.random(), this.random()]); - } - } + this.createDummyPlayer(100); + this.performenceTest([this.chatRandom(5, 1), this.moveRandom(5, 1)]); } } diff --git a/FE/src/api/socket/mocks/socketMocks/SocketMockLoadTestWithQuiz.ts b/FE/src/api/socket/mocks/socketMocks/SocketMockLoadTestWithQuiz.ts index 29b6eafc..96c2e017 100644 --- a/FE/src/api/socket/mocks/socketMocks/SocketMockLoadTestWithQuiz.ts +++ b/FE/src/api/socket/mocks/socketMocks/SocketMockLoadTestWithQuiz.ts @@ -3,40 +3,8 @@ import { SocketMock } from '../SocketMock'; export default class SocketMockLoadTestWithQuiz extends SocketMock { constructor() { super(); - this.addPlayers( - Array(100) - .fill(null) - .map((_, i) => ({ - playerId: String(i + 1), - playerName: 'player' + i, - playerPosition: [i / 10, i / 10] - })) - ); - this.testChat(); - this.testMove(); - this.testQuiz(); - } - - async testChat() { - const playerCount = this.getPlayerList().length; - const testTime = 10; - for (let j = 0; j < testTime; j++) { - for (const player of this.getPlayerList()) { - await this.delay(1 / playerCount); - this.chatMessage(player.playerId, 'message' + player.playerId); - } - } - } - - async testMove() { - const playerCount = this.getPlayerList().length; - const testTime = 10; - for (let j = 0; j < testTime; j++) { - for (const player of this.getPlayerList()) { - await this.delay(1 / playerCount); - this.updatePlayerPosition(player.playerId, [this.random(), this.random()]); - } - } + this.createDummyPlayer(100); + this.performenceTest([this.chatRandom(10, 1), this.moveRandom(10, 1), this.testQuiz()]); } async testQuiz() { diff --git a/FE/src/api/socket/mocks/socketMocks/SocketMockNextQuiz.ts b/FE/src/api/socket/mocks/socketMocks/SocketMockNextQuiz.ts index c34fadff..dfc3e588 100644 --- a/FE/src/api/socket/mocks/socketMocks/SocketMockNextQuiz.ts +++ b/FE/src/api/socket/mocks/socketMocks/SocketMockNextQuiz.ts @@ -3,15 +3,7 @@ import { SocketMock } from '../SocketMock'; export default class SocketMockNextQuiz extends SocketMock { constructor() { super(); - this.addPlayers( - Array(10) - .fill(null) - .map((_, i) => ({ - playerId: String(i + 1), - playerName: 'player' + i, - playerPosition: [i / 10, i / 10] - })) - ); + this.createDummyPlayer(10); this.test(); } diff --git a/FE/src/api/socket/mocks/socketMocks/SocketMockStartEnd.ts b/FE/src/api/socket/mocks/socketMocks/SocketMockStartEnd.ts index 0f68a011..c930ff16 100644 --- a/FE/src/api/socket/mocks/socketMocks/SocketMockStartEnd.ts +++ b/FE/src/api/socket/mocks/socketMocks/SocketMockStartEnd.ts @@ -3,15 +3,7 @@ import { SocketMock } from '../SocketMock'; export default class SocketMockStartEnd extends SocketMock { constructor() { super(); - this.addPlayers( - Array(10) - .fill(null) - .map((_, i) => ({ - playerId: String(i + 1), - playerName: 'player' + i, - playerPosition: [i / 10, i / 10] - })) - ); + this.createDummyPlayer(10); this.test(); } diff --git a/FE/src/api/socket/mocks/socketMocks/SocketMockStartGame.ts b/FE/src/api/socket/mocks/socketMocks/SocketMockStartGame.ts index fb20e695..39acec0f 100644 --- a/FE/src/api/socket/mocks/socketMocks/SocketMockStartGame.ts +++ b/FE/src/api/socket/mocks/socketMocks/SocketMockStartGame.ts @@ -3,15 +3,7 @@ import { SocketMock } from '../SocketMock'; export default class SocketMockStartGame extends SocketMock { constructor() { super(); - this.addPlayers( - Array(10) - .fill(null) - .map((_, i) => ({ - playerId: String(i + 1), - playerName: 'player' + i, - playerPosition: [i / 10, i / 10] - })) - ); + this.createDummyPlayer(10); this.test(); } From 40045671e022bf3e3d4cd3b35e1af1a955316df4 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Tue, 26 Nov 2024 00:16:01 +0900 Subject: [PATCH 04/58] =?UTF-8?q?test:=20200=EB=AA=85=20=ED=94=8C=EB=A0=88?= =?UTF-8?q?=EC=9D=B4=EC=96=B4=20=EC=9D=B4=EB=8F=99=20=EB=B6=80=ED=95=98=20?= =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/api/socket/mocks/SocketMock.ts | 2 +- .../mocks/socketMocks/SocketMockLoadTestOnlyMove.ts | 9 +++++++++ FE/src/api/socket/mocks/socketMocks/index.ts | 4 +++- 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 FE/src/api/socket/mocks/socketMocks/SocketMockLoadTestOnlyMove.ts diff --git a/FE/src/api/socket/mocks/SocketMock.ts b/FE/src/api/socket/mocks/SocketMock.ts index a4c5e326..866b73a1 100644 --- a/FE/src/api/socket/mocks/SocketMock.ts +++ b/FE/src/api/socket/mocks/SocketMock.ts @@ -232,7 +232,7 @@ export class SocketMock { .fill(null) .map((_, i) => ({ playerId: String(playerCount + i + 1), - playerName: 'player' + playerCount + i, + playerName: 'player' + (playerCount + i), playerPosition: [this.random(), this.random()] })) ); diff --git a/FE/src/api/socket/mocks/socketMocks/SocketMockLoadTestOnlyMove.ts b/FE/src/api/socket/mocks/socketMocks/SocketMockLoadTestOnlyMove.ts new file mode 100644 index 00000000..fbada483 --- /dev/null +++ b/FE/src/api/socket/mocks/socketMocks/SocketMockLoadTestOnlyMove.ts @@ -0,0 +1,9 @@ +import { SocketMock } from '../SocketMock'; + +export default class SocketMockLoadTestOnlyMove extends SocketMock { + constructor() { + super(); + this.createDummyPlayer(200); + this.performenceTest([this.moveRandom(5, 1)]); + } +} diff --git a/FE/src/api/socket/mocks/socketMocks/index.ts b/FE/src/api/socket/mocks/socketMocks/index.ts index 4313a95e..970cbf51 100644 --- a/FE/src/api/socket/mocks/socketMocks/index.ts +++ b/FE/src/api/socket/mocks/socketMocks/index.ts @@ -1,5 +1,6 @@ import SocketMockChat from './SocketMockChat'; import SocketMockLoadTest from './SocketMockLoadTest'; +import SocketMockLoadTestOnlyMove from './SocketMockLoadTestOnlyMove'; import SocketMockLoadTestWithQuiz from './SocketMockLoadTestWithQuiz'; import SocketMockNextQuiz from './SocketMockNextQuiz'; import SocketMockStartEnd from './SocketMockStartEnd'; @@ -11,7 +12,8 @@ const mockMap = { 'test-next-quiz': SocketMockNextQuiz, 'test-load': SocketMockLoadTest, 'test-load-with-quiz': SocketMockLoadTestWithQuiz, - 'test-start-end': SocketMockStartEnd + 'test-start-end': SocketMockStartEnd, + 'test-load-only-move': SocketMockLoadTestOnlyMove } as const; export default mockMap; From 6c94ccae4b18ffde6d8f309c7f67618bfd3e1ffd Mon Sep 17 00:00:00 2001 From: JunWoo Park <97427744+always97@users.noreply.github.com> Date: Tue, 26 Nov 2024 00:49:01 +0900 Subject: [PATCH 05/58] =?UTF-8?q?refactor:=20chat=20=EB=A6=AC=EB=A0=8C?= =?UTF-8?q?=EB=8D=94=EB=A7=81=EC=8B=9C=20GameHeader=EB=A6=AC=EB=A0=8C?= =?UTF-8?q?=EB=8D=94=EB=A7=81=20=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/components/Chat.tsx | 3 ++- FE/src/features/game/components/GameHeader.tsx | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/FE/src/features/game/components/Chat.tsx b/FE/src/features/game/components/Chat.tsx index 04a56c02..d6670ccb 100644 --- a/FE/src/features/game/components/Chat.tsx +++ b/FE/src/features/game/components/Chat.tsx @@ -4,10 +4,11 @@ import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; import { useRoomStore } from '@/features/game/data/store/useRoomStore'; import { Button } from '@mui/material'; import { useEffect, useRef, useState } from 'react'; +import { shallow } from 'zustand/shallow'; const Chat = () => { const gameId = useRoomStore((state) => state.gameId); - const currentPlayerId = usePlayerStore((state) => state.currentPlayerId); + const currentPlayerId = usePlayerStore((state) => state.currentPlayerId, shallow); const messages = useChatStore((state) => state.messages); const [inputValue, setInputValue] = useState(''); diff --git a/FE/src/features/game/components/GameHeader.tsx b/FE/src/features/game/components/GameHeader.tsx index 7ebc847b..6a8ae317 100644 --- a/FE/src/features/game/components/GameHeader.tsx +++ b/FE/src/features/game/components/GameHeader.tsx @@ -3,13 +3,13 @@ import Card from '@mui/material/Card'; import { QuizPreview } from '../../../components/QuizPreview'; import { useParams } from 'react-router-dom'; import { useRoomStore } from '@/features/game/data/store/useRoomStore'; -import { useState } from 'react'; +import React, { useState } from 'react'; import { QuizSettingModal } from './QuizSettingModal'; import { socketService } from '@/api/socket'; import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; import { useQuizStore } from '@/features/game/data/store/useQuizStore'; -export const GameHeader = () => { +export const GameHeader = React.memo(() => { const { gameId } = useParams<{ gameId: string }>(); const isHost = usePlayerStore((state) => state.isHost); const gameTitle = useRoomStore((state) => state.title); @@ -52,4 +52,4 @@ export const GameHeader = () => { setIsQuizModalOpen(false)} /> ); -}; +}); From 7f5b1bf206c7aae135428cbb7abbc4a861d6d56b Mon Sep 17 00:00:00 2001 From: JunWoo Park <97427744+always97@users.noreply.github.com> Date: Tue, 26 Nov 2024 00:49:53 +0900 Subject: [PATCH 06/58] =?UTF-8?q?refactor:=20shallow=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/components/Chat.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/FE/src/features/game/components/Chat.tsx b/FE/src/features/game/components/Chat.tsx index d6670ccb..04a56c02 100644 --- a/FE/src/features/game/components/Chat.tsx +++ b/FE/src/features/game/components/Chat.tsx @@ -4,11 +4,10 @@ import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; import { useRoomStore } from '@/features/game/data/store/useRoomStore'; import { Button } from '@mui/material'; import { useEffect, useRef, useState } from 'react'; -import { shallow } from 'zustand/shallow'; const Chat = () => { const gameId = useRoomStore((state) => state.gameId); - const currentPlayerId = usePlayerStore((state) => state.currentPlayerId, shallow); + const currentPlayerId = usePlayerStore((state) => state.currentPlayerId); const messages = useChatStore((state) => state.messages); const [inputValue, setInputValue] = useState(''); From f5fcbd34fd564e5a6a05911cf741656ec92ca67f Mon Sep 17 00:00:00 2001 From: ijun17 Date: Tue, 26 Nov 2024 01:58:00 +0900 Subject: [PATCH 07/58] =?UTF-8?q?refactor:=20=ED=94=8C=EB=A0=88=EC=9D=B4?= =?UTF-8?q?=EC=96=B4=20=EC=8A=A4=ED=86=A0=EC=96=B4=20=EB=A7=B5=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=EB=B0=94=EA=BF=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../game/components/ParticipantDisplay.tsx | 16 ++-- FE/src/features/game/components/Player.tsx | 40 ++++++---- .../game/components/QuizOptionBoard.tsx | 21 ++---- .../features/game/components/ResultModal.tsx | 4 +- FE/src/features/game/data/socketListener.ts | 4 +- .../game/data/store/usePlayerStore.ts | 74 +++++++++---------- 6 files changed, 78 insertions(+), 81 deletions(-) diff --git a/FE/src/features/game/components/ParticipantDisplay.tsx b/FE/src/features/game/components/ParticipantDisplay.tsx index 80ec4ed1..e90541a0 100644 --- a/FE/src/features/game/components/ParticipantDisplay.tsx +++ b/FE/src/features/game/components/ParticipantDisplay.tsx @@ -9,7 +9,7 @@ type ParticipantDisplayProps = { const ParticipantDisplay: React.FC = ({ gameState }) => { const players = usePlayerStore((state) => state.players); - const playerCount = usePlayerStore((state) => state.players.length); + const playerCount = usePlayerStore((state) => state.players.size); const maxPlayerCount = useRoomStore((state) => state.maxPlayerCount); const currentPlayerId = usePlayerStore((state) => state.currentPlayerId); const isHost = usePlayerStore((state) => state.isHost); @@ -18,7 +18,7 @@ const ParticipantDisplay: React.FC = ({ gameState }) => // 대기 모드일 때 참가자 목록 표시 const renderWaitingMode = () => (
- {players.map((player, i) => ( + {Array.from(players).map(([, player], i) => (
= ({ gameState }) => // 진행 모드일 때 랭킹 현황 표시 const renderProgressRankingMode = () => (
- {players - .sort((a, b) => b.playerScore - a.playerScore) // 점수 내림차순 - .map((player, i) => ( + {Array.from(players) + .sort(([, a], [, b]) => b.playerScore - a.playerScore) // 점수 내림차순 + .map(([, player], i) => ( = ({ gameState }) => // 진행 모드일 때 생존자 표시 const renderProgressSurvivalMode = () => (
- {players - .filter((player) => player.isAlive) - .map((player, i) => ( + {Array.from(players) + .filter(([, player]) => player.isAlive) + .map(([, player], i) => ( { +export const Player = ({ playerId, boardSize, isCurrent }: Props) => { + const gameState = useRoomStore((state) => state.gameState); const [showEffect, setShowEffect] = useState(false); const [effectData, setEffectData] = useState(AnswerEffect); const quizState = useQuizStore((state) => state.quizState); - const [xPos, yPos] = position; + const player = usePlayerStore((state) => state.players.get(playerId)); // Lottie 요소를 렌더링할 DOM 요소에 대한 참조 const effectRef = useRef(null); const characterRef = useRef(null); useEffect(() => { - if (quizState === QuizState.END) { - setEffectData(isAnswer ? AnswerEffect : FailEffect); + if (quizState === QuizState.END && player && gameState === 'PROGRESS') { + setEffectData(player.isAnswer ? AnswerEffect : FailEffect); setShowEffect(true); } - }, [quizState, isAnswer]); + }, [quizState, player, gameState]); // 효과가 끝난 후 5초 뒤에 효과 숨기기 useEffect(() => { @@ -71,13 +72,20 @@ export const Player = ({ name, position, isCurrent, isAnswer, isAlive }: Props) } }, []); + if (!player) return null; + + const [xPos, yPos] = [ + player.playerPosition[1] * boardSize[0], + player.playerPosition[0] * boardSize[1] + ]; + return (
e.preventDefault()} > @@ -98,7 +106,7 @@ export const Player = ({ name, position, isCurrent, isAnswer, isAlive }: Props) /> )} {/*
*/} -
{quizState === 'end' && !isAnswer ? '😭' : '😃'}
+
{quizState === 'end' && !player.isAnswer ? '😭' : '😃'}
- {name} + {player.playerName}
diff --git a/FE/src/features/game/components/QuizOptionBoard.tsx b/FE/src/features/game/components/QuizOptionBoard.tsx index 90d461cd..62761f56 100644 --- a/FE/src/features/game/components/QuizOptionBoard.tsx +++ b/FE/src/features/game/components/QuizOptionBoard.tsx @@ -31,6 +31,8 @@ export const QuizOptionBoard = () => { const [choiceListVisible, setChoiceListVisible] = useState(false); const handleClick: React.MouseEventHandler = (e) => { + const currentPlayer = players.get(currentPlayerId); + if (!currentPlayer || !currentPlayer.isAlive) return; const { pageX, pageY } = e; const { width, height, top, left } = e.currentTarget.getBoundingClientRect(); const x = (pageX - left - window.scrollX) / width; @@ -81,20 +83,15 @@ export const QuizOptionBoard = () => { >
{boardRect - ? players - .filter((player) => player.isAlive || player.playerId === currentPlayerId) - .map((player) => { + ? Array.from(players) + .filter(([, player]) => player.isAlive) + .map(([, player]) => { return ( ); }) @@ -121,9 +118,7 @@ export const QuizOptionBoard = () => { textShadow: '-1px 0 white, 0 1px white, 1px 0 white, 0 -1px white' }} > -
- {i + 1 + '. ' + option.content} -
+
{option.content}
))}
diff --git a/FE/src/features/game/components/ResultModal.tsx b/FE/src/features/game/components/ResultModal.tsx index 7d0fef10..47eee371 100644 --- a/FE/src/features/game/components/ResultModal.tsx +++ b/FE/src/features/game/components/ResultModal.tsx @@ -16,7 +16,7 @@ export const ResultModal: React.FC = ({ }) => { const gameMode = useRoomStore((state) => state.gameMode); const players = usePlayerStore((state) => state.players); - const sortedPlayers = [...players].sort((a, b) => b.playerScore - a.playerScore); + const sortedPlayers = [...players].sort(([, a], [, b]) => b.playerScore - a.playerScore); if (!isOpen) return null; @@ -34,7 +34,7 @@ export const ResultModal: React.FC = ({

게임이 종료되었습니다.

- {sortedPlayers.map((player, index) => ( + {[...sortedPlayers].map(([, player], index) => (
{ setPlayers( data.players.map((p) => { - const _p = players.find((e) => e.playerId === p.playerId); + const _p = players.get(p.playerId); return { playerId: String(p.playerId), playerName: _p?.playerName || '', @@ -60,7 +60,7 @@ socketService.on('endQuizTime', (data) => { const { players, setPlayers } = usePlayerStore.getState(); setPlayers( - players.map((p) => { + Array.from(players, ([, p]) => { return { ...p, isAlive: p.isAlive && p?.isAnswer diff --git a/FE/src/features/game/data/store/usePlayerStore.ts b/FE/src/features/game/data/store/usePlayerStore.ts index bacbc631..4b43857f 100644 --- a/FE/src/features/game/data/store/usePlayerStore.ts +++ b/FE/src/features/game/data/store/usePlayerStore.ts @@ -1,7 +1,7 @@ import { create } from 'zustand'; type Player = { - playerId: string; // socketId + playerId: string; playerName: string; playerPosition: [number, number]; // [x, y] 좌표 playerScore: number; @@ -13,11 +13,9 @@ type PlayerStore = { isHost: boolean; currentPlayerId: string; currentPlayerName: string; - players: Player[]; + players: Map; addPlayers: (players: Player[]) => void; updatePlayerPosition: (playerId: string, newPosition: [number, number]) => void; // 위치 업데이트 - updatePlayerScore: (playerId: string, newScore: number) => void; - updatePlayerAnswer: (playerId: string, newIsAnswer: boolean) => void; removePlayer: (playerId: string) => void; setCurrentPlayerId: (currentPlayerId: string) => void; setCurrentPlayerName: (currentPlayerName: string) => void; @@ -27,49 +25,41 @@ type PlayerStore = { reset: () => void; }; -export const usePlayerStore = create((set) => ({ +const initialPlayerState = { isHost: false, currentPlayerId: '', currentPlayerName: '', - players: [], - addPlayers: (players) => { - set((state) => ({ - players: [...state.players, ...players] - })); - }, + players: new Map() +} as const; - updatePlayerPosition: (playerId, newPosition) => { - set((state) => ({ - players: state.players.map((player) => - player.playerId === playerId ? { ...player, playerPosition: newPosition } : player - ) - })); - }, +export const usePlayerStore = create((set) => ({ + ...initialPlayerState, + addPlayers: (players) => { + set((state) => { + const newPlayers = new Map(state.players); + players.map((p) => newPlayers.set(p.playerId, p)); - updatePlayerScore: (playerId, newScore) => { - set((state) => ({ - players: state.players.map((player) => - player.playerId === playerId ? { ...player, playerScore: newScore } : player - ) - })); + return { players: newPlayers }; + }); }, - - updatePlayerAnswer: (playerId, newIsAnswer) => { - set((state) => ({ - players: state.players.map((player) => - player.playerId === playerId ? { ...player, isAnswer: newIsAnswer } : player - ) - })); + updatePlayerPosition: (playerId, newPosition) => { + set((state) => { + const targetPlayer = state.players.get(playerId); + if (targetPlayer) + state.players.set(playerId, { ...targetPlayer, playerPosition: newPosition }); + return { players: state.players }; + }); }, - setPlayers: (players: Player[]) => { - set(() => ({ players })); + const newPlayers = new Map(players.map((p) => [p.playerId, p])); + set(() => ({ players: newPlayers })); }, removePlayer: (playerId) => { - set((state) => ({ - players: state.players.filter((player) => player.playerId !== playerId) - })); + set((state) => { + state.players.delete(playerId); + return { players: new Map(state.players) }; + }); }, setCurrentPlayerId: (currentPlayerId) => { @@ -85,9 +75,13 @@ export const usePlayerStore = create((set) => ({ }, resetScore: () => { - set((state) => ({ - players: state.players.map((p) => ({ ...p, playerScore: 0, isAlive: true, isAnswer: true })) - })); + set((state) => { + state.players.forEach((value, key) => { + state.players.set(key, { ...value, playerScore: 0, isAlive: true, isAnswer: true }); + }); + return { players: new Map(state.players) }; + }); }, - reset: () => set({ players: [], isHost: false, currentPlayerId: '', currentPlayerName: '' }) + + reset: () => set(initialPlayerState) })); From e771b3a72dca22c7e4f7d8990b9e3e6c21dccd04 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Tue, 26 Nov 2024 02:28:23 +0900 Subject: [PATCH 08/58] =?UTF-8?q?feat:=20=ED=80=B4=EC=A6=88=20=EA=B2=80?= =?UTF-8?q?=EC=83=89=20=EB=AA=A8=EB=8B=AC=EC=97=90=EC=84=9C=20=ED=83=80?= =?UTF-8?q?=EC=9D=B4=ED=95=91=20=EC=8B=9C=20=EA=B2=80=EC=83=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../game/components/QuizSetSearchList.tsx | 10 ----- .../game/components/QuizSettingModal.tsx | 38 +++++++++---------- 2 files changed, 19 insertions(+), 29 deletions(-) diff --git a/FE/src/features/game/components/QuizSetSearchList.tsx b/FE/src/features/game/components/QuizSetSearchList.tsx index bb51ec2a..d002c307 100644 --- a/FE/src/features/game/components/QuizSetSearchList.tsx +++ b/FE/src/features/game/components/QuizSetSearchList.tsx @@ -3,16 +3,6 @@ import { useCallback, useEffect, useRef, useState } from 'react'; import { QuizPreview } from '@/components/QuizPreview'; import { getQuizSetList } from '@/api/rest/quizApi'; -// type Quiz = { -// id: string; -// quiz: string; -// limitTime: number; -// choiceList: { -// content: string; -// order: number; -// }[]; -// }; - type QuizSet = { id: string; title: string; diff --git a/FE/src/features/game/components/QuizSettingModal.tsx b/FE/src/features/game/components/QuizSettingModal.tsx index 877b5095..20083822 100644 --- a/FE/src/features/game/components/QuizSettingModal.tsx +++ b/FE/src/features/game/components/QuizSettingModal.tsx @@ -1,19 +1,9 @@ -import { useRef, useState } from 'react'; +import { useEffect, useRef, useState } from 'react'; import { QuizPreview } from '../../../components/QuizPreview'; import { socketService, useSocketEvent } from '@/api/socket'; import QuizSetSearchList from './QuizSetSearchList'; import { useRoomStore } from '@/features/game/data/store/useRoomStore'; -// type Quiz = { -// id: string; -// quiz: string; -// limitTime: number; -// choiceList: { -// content: string; -// order: number; -// }[]; -// }; - type QuizSet = { id: string; title: string; @@ -33,15 +23,22 @@ export const QuizSettingModal = ({ isOpen, onClose }: Props) => { const [searchParam, setSearchParam] = useState(''); const [quizCount, setQuizCount] = useState(0); const scrollRef = useRef(null); + const searchTimeoutRef = useRef>(null); - const handleSearch: React.FormEventHandler = (e) => { - e.preventDefault(); + // 타이핑 시 0.3초 뒤에 검색 + useEffect(() => { const trimedInputValue = inputValue.trim(); - if (trimedInputValue !== searchParam) { - setSearchParam(trimedInputValue); - if (scrollRef.current) scrollRef.current.scrollTop = 0; - } - }; + if (searchTimeoutRef.current) clearTimeout(searchTimeoutRef.current); + searchTimeoutRef.current = setTimeout(() => { + if (trimedInputValue !== searchParam) { + setSearchParam(trimedInputValue); + if (scrollRef.current) scrollRef.current.scrollTop = 0; + } + }, 300); + return () => { + if (searchTimeoutRef.current) clearTimeout(searchTimeoutRef.current); + }; + }); useSocketEvent('updateRoomQuizset', () => { onClose(); @@ -69,7 +66,10 @@ export const QuizSettingModal = ({ isOpen, onClose }: Props) => {
-
+ e.preventDefault()} + > Date: Tue, 26 Nov 2024 02:37:22 +0900 Subject: [PATCH 09/58] =?UTF-8?q?feat:=20=ED=94=8C=EB=A0=88=EC=9D=B4?= =?UTF-8?q?=EC=96=B4=20=EC=9D=B4=EB=A6=84=20=EC=9E=85=EB=A0=A5=20=EB=AA=A8?= =?UTF-8?q?=EB=8B=AC=EC=97=90=20=EC=B7=A8=EC=86=8C=20=EB=B2=84=ED=8A=BC=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/components/Modal.tsx | 9 --------- FE/src/features/game/pages/GamePage.tsx | 1 - 2 files changed, 10 deletions(-) diff --git a/FE/src/features/game/components/Modal.tsx b/FE/src/features/game/components/Modal.tsx index d6bfbe45..bd75eec6 100644 --- a/FE/src/features/game/components/Modal.tsx +++ b/FE/src/features/game/components/Modal.tsx @@ -5,7 +5,6 @@ type ModalProps = { title: string; placeholder?: string; initialValue?: string; - onClose: () => void; onSubmit: (value: string) => void; }; @@ -14,7 +13,6 @@ export const Modal: React.FC = ({ title, placeholder, initialValue = '', - onClose, onSubmit }) => { const [inputValue, setInputValue] = useState(initialValue); @@ -48,13 +46,6 @@ export const Modal: React.FC = ({ > 등록 - {/* 닉네임 등록 모달에서 취소버튼은 없어야할것같은데 일단 넣어둠 */} -
diff --git a/FE/src/features/game/pages/GamePage.tsx b/FE/src/features/game/pages/GamePage.tsx index adce0f59..3220f1bb 100644 --- a/FE/src/features/game/pages/GamePage.tsx +++ b/FE/src/features/game/pages/GamePage.tsx @@ -98,7 +98,6 @@ export const GamePage = () => { title="플레이어 이름 설정" placeholder="이름을 입력하세요" initialValue={getRandomNickname()} - onClose={() => setIsModalOpen(false)} onSubmit={handleNameSubmit} /> From 71015c53246783d329e7365c7fa0d7cc07133a1b Mon Sep 17 00:00:00 2001 From: ijun17 Date: Tue, 26 Nov 2024 02:46:41 +0900 Subject: [PATCH 10/58] =?UTF-8?q?feat:=20Answer=20=EB=AA=A8=EB=8B=AC=20?= =?UTF-8?q?=EB=B2=84=ED=8A=BC=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../features/game/components/AnswerModal.tsx | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/FE/src/features/game/components/AnswerModal.tsx b/FE/src/features/game/components/AnswerModal.tsx index e0a38370..67b3d9ba 100644 --- a/FE/src/features/game/components/AnswerModal.tsx +++ b/FE/src/features/game/components/AnswerModal.tsx @@ -4,28 +4,28 @@ import { useEffect, useState } from 'react'; type AnswerModalProps = { isOpen: boolean; - onClose: () => void; + // onClose: () => void; answer: number; }; -const AnswerModal: React.FC = ({ isOpen, onClose, answer }) => { - const [countdown, setCountdown] = useState(3); +const AnswerModal: React.FC = ({ isOpen, answer }) => { + // const [countdown, setCountdown] = useState(3); - useEffect(() => { - if (isOpen) { - setCountdown(3); // 모달이 열릴 때 카운트다운을 초기화 - const interval = setInterval(() => { - setCountdown((prev) => { - if (prev === 1) { - clearInterval(interval); - onClose(); // 0에 도달하면 모달 닫기 - } - return prev - 1; - }); - }, 1000); - return () => clearInterval(interval); // 모달이 닫히거나 언마운트될 때 타이머 정리 - } - }, [isOpen, onClose]); + // useEffect(() => { + // if (isOpen) { + // setCountdown(3); // 모달이 열릴 때 카운트다운을 초기화 + // const interval = setInterval(() => { + // setCountdown((prev) => { + // if (prev === 1) { + // clearInterval(interval); + // onClose(); // 0에 도달하면 모달 닫기 + // } + // return prev - 1; + // }); + // }, 1000); + // return () => clearInterval(interval); // 모달이 닫히거나 언마운트될 때 타이머 정리 + // } + // }, [isOpen, onClose]); if (!isOpen) return null; return ( @@ -46,12 +46,12 @@ const AnswerModal: React.FC = ({ isOpen, onClose, answer }) =>

{answer}

- + */}
); From 9da0701f5d05ba16660ff2e064e136434fb49946 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Tue, 26 Nov 2024 03:08:48 +0900 Subject: [PATCH 11/58] =?UTF-8?q?feat:=20=ED=80=B4=EC=A6=88=20=EC=98=B5?= =?UTF-8?q?=EC=85=98=20=EB=B3=B4=EB=93=9C=20=ED=84=B0=EC=B9=98=20=EC=9D=B4?= =?UTF-8?q?=EB=B2=A4=ED=8A=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../game/components/QuizOptionBoard.tsx | 39 ++++++++++++------- 1 file changed, 25 insertions(+), 14 deletions(-) diff --git a/FE/src/features/game/components/QuizOptionBoard.tsx b/FE/src/features/game/components/QuizOptionBoard.tsx index 62761f56..48d26f54 100644 --- a/FE/src/features/game/components/QuizOptionBoard.tsx +++ b/FE/src/features/game/components/QuizOptionBoard.tsx @@ -29,20 +29,6 @@ export const QuizOptionBoard = () => { const quizAnswer = useQuizStore((state) => state.currentAnswer); const [selectedOption, setSelectedOption] = useState(currentQuiz?.choiceList.length); const [choiceListVisible, setChoiceListVisible] = useState(false); - - const handleClick: React.MouseEventHandler = (e) => { - const currentPlayer = players.get(currentPlayerId); - if (!currentPlayer || !currentPlayer.isAlive) return; - const { pageX, pageY } = e; - const { width, height, top, left } = e.currentTarget.getBoundingClientRect(); - const x = (pageX - left - window.scrollX) / width; - const y = (pageY - top - window.scrollY) / height; - if (x > 1 || y > 1) return; - socketService.emit('updatePosition', { gameId, newPosition: [y, x] }); - const option = Math.round(x) + Math.floor(y * Math.ceil(choiceList.length / 2)) * 2; - setSelectedOption(option); - }; - const boardRef = useRef(null); const [boardRect, setBoardRect] = useState(null); @@ -75,10 +61,35 @@ export const QuizOptionBoard = () => { return () => clearInterval(interval); }, [choiceListVisible, currentQuiz]); + const handleMove = (pageX: number, pageY: number) => { + const currentPlayer = players.get(currentPlayerId); + if (!currentPlayer || !currentPlayer.isAlive) return; + if (!boardRect) return; + const { width, height, top, left } = boardRect; + const x = (pageX - left - window.scrollX) / width; + const y = (pageY - top - window.scrollY) / height; + if (x > 1 || y > 1) return; + socketService.emit('updatePosition', { gameId, newPosition: [y, x] }); + const option = Math.round(x) + Math.floor(y * Math.ceil(choiceList.length / 2)) * 2; + setSelectedOption(option); + }; + + const handleClick: React.MouseEventHandler = (e) => { + const { pageX, pageY } = e; + handleMove(pageX, pageY); + }; + + const handleTouchEnd: React.TouchEventHandler = (e) => { + e.preventDefault(); + const { pageX, pageY } = e.changedTouches[0]; + handleMove(pageX, pageY); + }; + return (
From cda3205e589a48104ae08f6f1d79b9518b372ecd Mon Sep 17 00:00:00 2001 From: ijun17 Date: Tue, 26 Nov 2024 03:09:41 +0900 Subject: [PATCH 12/58] =?UTF-8?q?style:=20AnswerModal=20=EB=B6=88=ED=95=84?= =?UTF-8?q?=EC=9A=94=ED=95=9C=20import=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/components/AnswerModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FE/src/features/game/components/AnswerModal.tsx b/FE/src/features/game/components/AnswerModal.tsx index 67b3d9ba..0e4d6fd5 100644 --- a/FE/src/features/game/components/AnswerModal.tsx +++ b/FE/src/features/game/components/AnswerModal.tsx @@ -1,6 +1,6 @@ import Lottie from 'lottie-react'; import AnswerBg from '@/assets/lottie/answer_background.json'; -import { useEffect, useState } from 'react'; +// import { useEffect, useState } from 'react'; type AnswerModalProps = { isOpen: boolean; From 9bed3078ae40f9353c0ab2021a054b80cdeb3adc Mon Sep 17 00:00:00 2001 From: ijun17 Date: Tue, 26 Nov 2024 03:10:11 +0900 Subject: [PATCH 13/58] =?UTF-8?q?refactor:=20=ED=80=B4=EC=A6=88=20?= =?UTF-8?q?=ED=97=A4=EB=8D=94=20=ED=94=84=EB=A1=9C=EA=B7=B8=EB=A0=88?= =?UTF-8?q?=EC=8A=A4=EB=B0=94=20=EC=B5=9C=EC=A0=81=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/components/QuizHeader.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/FE/src/features/game/components/QuizHeader.tsx b/FE/src/features/game/components/QuizHeader.tsx index 57b8b9ac..c9acfcc9 100644 --- a/FE/src/features/game/components/QuizHeader.tsx +++ b/FE/src/features/game/components/QuizHeader.tsx @@ -45,6 +45,7 @@ export const QuizHeader = () => { {Math.ceil((currentQuiz.startTime - getServerTimestamp()) / 1000)}
); + return (
@@ -58,7 +59,8 @@ export const QuizHeader = () => {
0.2 ? 'green' : 'brown' }} >
@@ -69,7 +71,7 @@ export const QuizHeader = () => {
setIsAnswerVisible(false)} + // onClose={() => setIsAnswerVisible(false)} answer={answer} />
From 4056fd5f307240d799c98e00eedb12e7e0bf3991 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Tue, 26 Nov 2024 04:00:11 +0900 Subject: [PATCH 14/58] =?UTF-8?q?feat:=20=ED=83=88=EB=9D=BD=EC=9E=90=20?= =?UTF-8?q?=EC=B1=84=ED=8C=85=20=EB=B0=98=ED=88=AC=EB=AA=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/components/Chat.tsx | 28 +++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/FE/src/features/game/components/Chat.tsx b/FE/src/features/game/components/Chat.tsx index 04a56c02..3afbb5c0 100644 --- a/FE/src/features/game/components/Chat.tsx +++ b/FE/src/features/game/components/Chat.tsx @@ -3,14 +3,14 @@ import { useChatStore } from '@/features/game/data/store/useChatStore'; import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; import { useRoomStore } from '@/features/game/data/store/useRoomStore'; import { Button } from '@mui/material'; -import { useEffect, useRef, useState } from 'react'; +import { ReactElement, useEffect, useRef, useState } from 'react'; const Chat = () => { const gameId = useRoomStore((state) => state.gameId); const currentPlayerId = usePlayerStore((state) => state.currentPlayerId); const messages = useChatStore((state) => state.messages); const [inputValue, setInputValue] = useState(''); - + const players = usePlayerStore((state) => state.players); const [myMessages, setMyMessages] = useState([]); const chatBottomRef = useRef(null); @@ -18,6 +18,7 @@ const Chat = () => { const [isAtBottom, setIsAtBottom] = useState(true); const [newMessage, setNewMessage] = useState(false); const [prevMessageCount, setPrevMessageCount] = useState(messages.length); + const [chatList, setChatList] = useState([]); const scrollToBottom = () => { if (chatBottomRef.current) { @@ -86,12 +87,28 @@ const Chat = () => { if (messages.length > prevMessageCount) { setNewMessage(true); // 새로운 메시지가 도착한 것으로 판단 setPrevMessageCount(messages.length); + setChatList([ + ...chatList, + ...messages.slice(prevMessageCount).map((e, i) => ( +
+ {e.playerName} + {e.message} +
+ )) + ]); } if (isAtBottom) { requestAnimationFrame(() => scrollToBottom()); } - }, [messages, isAtBottom, prevMessageCount]); + }, [messages, isAtBottom, prevMessageCount, chatList, players, currentPlayerId]); return (
@@ -105,12 +122,13 @@ const Chat = () => {
🎉 QuizGround에 오신 것을 환영합니다 🎉
- {messages.map((e, i) => ( + {/* {messages.map((e, i) => (
{e.playerName} {e.message}
- ))} + ))} */} + {chatList} {myMessages.map((e, i) => (
From b10cfec254e6626d17868a110899b3f4df1ca6f5 Mon Sep 17 00:00:00 2001 From: JunWoo Park <97427744+always97@users.noreply.github.com> Date: Wed, 27 Nov 2024 00:05:40 +0900 Subject: [PATCH 15/58] =?UTF-8?q?style:=20=EB=A9=94=EC=9D=B8=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=20=EB=94=94=EC=9E=90=EC=9D=B8=20=EA=B0=9C?= =?UTF-8?q?=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/assets/lottie/fail_effect.json | 1 - FE/src/assets/lottie/mainLottie.json | 1 + FE/src/features/game/utils/throttle.ts | 16 ++++ FE/src/pages/InfoCard.tsx | 31 +++++++ FE/src/pages/MainPage.tsx | 123 ++++++++++++++++++------- 5 files changed, 138 insertions(+), 34 deletions(-) delete mode 100644 FE/src/assets/lottie/fail_effect.json create mode 100644 FE/src/assets/lottie/mainLottie.json create mode 100644 FE/src/features/game/utils/throttle.ts create mode 100644 FE/src/pages/InfoCard.tsx diff --git a/FE/src/assets/lottie/fail_effect.json b/FE/src/assets/lottie/fail_effect.json deleted file mode 100644 index da4fa85d..00000000 --- a/FE/src/assets/lottie/fail_effect.json +++ /dev/null @@ -1 +0,0 @@ -{"nm":"Main Scene","ddd":0,"h":198,"w":198,"meta":{"g":"@lottiefiles/creator 1.31.1"},"layers":[{"ty":4,"nm":"x contornos","sr":1,"st":0,"op":103,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[99,99,0],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0,0],"t":0},{"s":[100,100],"t":90}],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[99,99],"ix":2},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":0},{"s":[360],"t":79.2001953125}],"ix":10},"sa":{"a":0,"k":90},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":0},{"s":[100],"t":30}],"ix":11}},"shapes":[{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 1","ix":1,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[-1.236,-0.433],[1.197,0.355]],"o":[[-0.506,1.032],[0.438,-1.172]],"v":[[1.227,-0.572],[-1.227,0.65]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.8,0.0549,0.0627],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[185.573,193.287],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 2","ix":2,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[-1.217,-0.233],[1.236,0.262]],"o":[[-0.382,1.122],[0.367,-1.149]],"v":[[1.168,-0.734],[-1.168,0.705]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.8,0.0549,0.0627],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[19.535,191.245],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 3","ix":3,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[2.84,-1.058],[-3.094,0.804]],"o":[[0.813,-3.087],[-1.052,2.849]],"v":[[-2.925,2.923],[2.925,-2.923]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.9804,0.1176,0.2039],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[61.698,122.481],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 4","ix":4,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[-4.719,2.914],[4.461,-3.159]],"o":[[-2.476,5.051],[2.241,-5.275]],"v":[[5.55,-5.827],[-5.55,5.827]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.8,0.0549,0.0627],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[185.814,25.058],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 5","ix":5,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[-5.636,2.689],[6.787,-5.491],[-2.001,1.813]],"o":[[-4.97,7.27],[0.306,-3.145],[4.439,-4.024]],"v":[[9.098,-9.296],[-9.098,9.296],[-4.249,2.746]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.8,0.0549,0.0627],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[60.381,151.579],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 6","ix":6,"cix":2,"np":4,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0.614,-2.541],[3.054,-0.981],[-0.128,4.234]],"o":[[-3.111,0.931],[0.655,-4.104],[1.279,1.756]],"v":[[2.646,-0.181],[-2.773,6.029],[0.215,-6.029]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.8,0.0549,0.0627],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[194.484,12.434],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 7","ix":7,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0.62,-2.446],[2.882,-0.896],[-0.998,3.946]],"o":[[-2.624,1.12],[0.998,-3.947],[0.632,2.023]],"v":[[2.204,0.103],[-2.824,5.919],[0.169,-5.919]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.8,0.0549,0.0627],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[193.238,184.225],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 8","ix":8,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[1.479,2.018],[-0.285,0.076],[-4.443,-0.821],[2.753,-0.463]],"o":[[0.293,-0.028],[4.673,0.067],[-2.511,2.204],[-2.535,-0.84]],"v":[[-6.882,-2.898],[-6.014,-3.053],[6.882,0.849],[-1.411,2.002]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.8,0.0549,0.0627],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[7.608,192.305],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 9","ix":9,"cix":2,"np":4,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[3.933,3.737],[-1.663,0.125],[-1.576,0.007],[-0.506,1.032],[-0.791,1.437],[-2.624,1.12],[5.529,-2.688]],"o":[[1.663,-0.123],[1.576,-0.01],[1.197,0.355],[1.496,-0.448],[2.882,-0.896],[0.423,5.993],[-4.446,2.163]],"v":[[-10.618,3.169],[-5.628,2.798],[-0.9,2.773],[1.553,1.551],[5.167,-1.02],[10.195,-6.836],[2.826,5.695]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.3098,0.0118,0.0196],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[185.247,191.164],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 10","ix":10,"cix":2,"np":4,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[-1.041,2.548],[-1.39,1.394],[-16.659,16.705],[-1.463,0.204],[1.512,-1.514],[13.741,-13.222],[3.441,-6.734],[0.293,-0.028]],"o":[[2.073,-0.555],[16.658,-16.706],[0.918,-0.92],[0.081,2.48],[-13.48,13.493],[-5.531,5.322],[-0.285,0.076],[-1.183,-2.62]],"v":[[-28.391,24.206],[-23.802,20.511],[26.155,-29.623],[29.285,-31.943],[26.06,-26.597],[-14.472,13.787],[-27.772,31.788],[-28.64,31.943]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.9804,0.1176,0.2039],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[29.366,157.463],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 11","ix":11,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[1.398,1.627],[-0.738,0.399],[-3.17,-3.651],[-8.033,-8.196],[-10.566,-10.866],[-4.28,-3.035],[1.663,-0.123],[2.54,2.59],[20.893,21.238]],"o":[[0.042,-0.794],[5.027,1.694],[7.552,8.696],[10.609,10.825],[3.698,3.803],[-1.663,0.125],[-3.314,-1.548],[-20.855,-21.274],[-1.501,-1.525]],"v":[[-40.142,-36.657],[-39.091,-38.513],[-28.03,-28.794],[-4.011,-4.111],[28.036,28.148],[40.142,38.143],[35.152,38.513],[26.757,31.91],[-35.935,-31.79]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.8,0.0549,0.0627],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[139.477,155.819],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 12","ix":12,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[2.34,-0.435],[-1.347,1.358],[-12.794,13.559],[-10.26,9.71],[-10.709,11.164],[-1.867,0.535],[-2.59,2.013],[-1.972,-1.078],[2.014,0.425],[4.5,-4.548],[33.272,-33.245]],"o":[[-0.069,-2.376],[13.13,-13.244],[9.708,-10.288],[11.239,-10.637],[1.213,-1.265],[3,-0.86],[1.972,1.076],[-1.291,1.66],[-5.956,-1.257],[-33.079,33.436],[-1.497,1.496]],"v":[[-62.326,56.679],[-59.053,51.93],[-19.663,12.203],[10.019,-18.082],[42.988,-50.712],[47.664,-53.405],[56.479,-56.679],[62.395,-53.448],[57.528,-52.098],[42.38,-47.087],[-57.296,52.787]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.9804,0.1176,0.2039],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[131.115,58.714],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 13","ix":13,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[-8.743,-7.948],[1.331,-0.431],[24.283,24.589],[0.592,2.305],[-2.113,-2.113],[-15.329,-15.983]],"o":[[-0.583,1.246],[-24.225,-24.645],[-1.687,-1.708],[3.106,0.611],[15.663,15.662],[8.172,8.521]],"v":[[39.575,37.242],[36.763,39.823],[-35.954,-34.074],[-39.575,-39.823],[-32.185,-35.021],[14.678,12.087]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.8,0.0549,0.0627],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[42.076,59.23],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 14","ix":14,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[3.612,2.004],[-1.08,1.06],[-17.322,-17.713],[-6.681,-8.082],[2.138,2.156],[21.022,21.156]],"o":[[1.08,-1.059],[17.432,17.603],[7.309,7.475],[-2.087,1.849],[-20.998,-21.179],[-2.78,-2.797]],"v":[[-38.632,-35.467],[-35.393,-38.644],[16.869,14.202],[38.632,36.795],[32.79,36.394],[-30.379,-26.969]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.9804,0.1176,0.2039],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[152.774,138.533],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 15","ix":15,"cix":2,"np":4,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[-23.241,-23.584],[1.486,-1.02],[8.951,9.629],[14.754,14.67],[4.03,-4.079],[0.177,-1.323],[1.785,-1.716],[-4.061,3.099],[-8.514,-8.613]],"o":[[0.025,2.074],[-8.669,-9.914],[-14.172,-15.246],[-5.191,-5.161],[-1.024,1.037],[-0.371,2.772],[-2.448,-5.073],[9.619,-7.341],[23.278,23.547]],"v":[[48.76,37.424],[45.863,41.574],[18.284,13.373],[-25.403,-31.205],[-40.395,-32.869],[-42.781,-29.175],[-46.691,-23.078],[-44.365,-34.862],[-20.975,-33.316]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.9804,0.1176,0.2039],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[48.784,41.877],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 16","ix":16,"cix":2,"np":4,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[-0.583,1.246],[-4.332,4.341],[0.025,2.074],[-1.481,1.479],[-22.76,23.014],[-4.482,1.221],[-0.804,-2.198],[3,-0.86],[1.213,-1.265],[11.239,-10.637],[9.708,-10.288],[13.13,-13.244],[-0.069,-2.376],[0.923,-1.853],[0.813,-3.087],[0.001,0.001],[0.918,-0.92],[16.658,-16.706],[2.073,-0.555],[-1.839,1.854],[-9.23,9.36],[-14.776,15.091],[-0.721,0.907]],"o":[[4.332,-4.34],[1.486,-1.02],[2.495,-0.081],[22.897,-22.879],[3.486,-3.525],[1.526,-0.416],[-2.59,2.013],[-1.867,0.535],[-10.709,11.164],[-10.26,9.71],[-12.794,13.559],[-1.347,1.358],[-1.854,0.923],[-3.094,0.804],[0,0],[-1.463,0.204],[-16.659,16.705],[-1.39,1.394],[-0.587,-3.145],[9.257,-9.334],[14.83,-15.038],[0.807,-0.824],[1.331,-0.431]],"v":[[-12.34,5.485],[0.657,-7.536],[3.553,-11.686],[8.69,-15.295],[77.267,-84.045],[89.417,-90.369],[93.603,-88.952],[84.788,-85.678],[80.112,-82.985],[47.143,-50.355],[17.461,-20.07],[-21.929,19.657],[-25.202,24.407],[-29.367,28.572],[-35.218,34.419],[-35.34,34.534],[-38.469,36.854],[-88.427,86.989],[-93.016,90.683],[-89.539,83.943],[-61.702,56.005],[-17.33,10.775],[-15.152,8.066]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.9765,0.5059,0.5647],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[93.991,90.986],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 17","ix":17,"cix":2,"np":4,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[1.08,-1.059],[3.96,-5.35],[0.042,-0.794],[1.103,-1.109],[21.98,-22.394],[3.991,-1.889],[3.652,3.253],[-2.511,2.204],[-1.293,0.4],[-0.382,1.122],[-0.774,0.779],[-9.177,9.339],[-4.97,7.27],[-10.096,10.122],[-25.565,25.704],[-1.208,1.364],[-2.476,5.051],[-0.093,0.266],[-3.111,0.931],[3.484,-3.507],[23.558,-23.775],[1.07,-1.258]],"o":[[-4.797,4.542],[-0.738,0.399],[-2.082,-0.434],[-22.122,22.254],[-3.19,3.25],[-4.312,2.04],[2.753,-0.463],[1.293,-0.402],[1.236,0.262],[1.017,-0.538],[9.226,-9.291],[6.787,-5.491],[10.142,-10.076],[25.602,-25.668],[1.284,-1.29],[4.461,-3.159],[0.138,-0.245],[3.054,-0.981],[0.547,5.344],[-23.587,23.747],[-1.159,1.169],[-1.08,1.06]],"v":[[12.415,-2.061],[-1.341,12.18],[-2.393,14.036],[-6.409,16.461],[-72.657,83.339],[-83.383,90.997],[-95.53,89.181],[-87.238,88.027],[-83.36,86.824],[-81.024,85.384],[-78.006,83.738],[-50.444,55.749],[-32.248,37.156],[-1.828,6.921],[74.905,-70.154],[78.537,-74.242],[89.637,-85.896],[89.985,-86.663],[95.404,-92.874],[89.593,-80.282],[18.877,-8.998],[15.654,-5.238]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.3098,0.0118,0.0196],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[101.727,105.126],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 18","ix":18,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[3.105,0.61],[-0.008,0.3],[-0.371,2.772],[-1.024,1.037],[-5.191,-5.161],[-14.172,-15.246],[-8.669,-9.914],[4.332,-4.34],[8.172,8.521],[15.663,15.662]],"o":[[-0.28,-0.106],[1.785,-1.716],[0.177,-1.323],[4.03,-4.079],[14.754,14.67],[8.951,9.629],[-4.332,4.34],[-8.743,-7.948],[-15.329,-15.983],[-2.113,-2.113]],"v":[[-45.864,-31.292],[-46.273,-31.901],[-42.363,-37.998],[-39.977,-41.693],[-24.985,-40.028],[18.702,4.55],[46.282,32.751],[33.284,45.772],[8.388,20.617],[-38.476,-26.491]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.9843,0.0863,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[48.366,50.7],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":0},{"s":[100],"t":90}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 19","ix":19,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[-2.087,1.849],[0.045,-1.471],[0.998,-3.946],[1.496,-0.448],[0.439,-1.17],[1.576,-0.008],[3.698,3.803],[10.609,10.825],[7.552,8.696],[5.028,1.694],[-4.797,4.542],[-2.78,-2.797],[-20.998,-21.179]],"o":[[1.07,0.722],[-0.998,3.946],[-0.791,1.438],[-1.236,-0.433],[-1.575,0.009],[-4.28,-3.033],[-10.566,-10.866],[-8.033,-8.196],[-3.17,-3.651],[3.961,-5.35],[3.612,2.004],[21.022,21.156],[2.138,2.156]],"v":[[44.487,26.815],[46.489,29.793],[43.495,41.63],[39.881,44.202],[37.427,45.422],[32.7,45.447],[20.594,35.455],[-11.453,3.196],[-35.472,-21.487],[-46.534,-31.207],[-32.777,-45.447],[-24.524,-36.949],[38.645,26.414]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.9843,0.0863,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[146.919,148.513],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":0},{"s":[100],"t":90}],"ix":7}}]},{"ty":"gr","bm":0,"hd":false,"mn":"ADBE Vector Group","nm":"Grupo 20","ix":20,"cix":2,"np":2,"it":[{"ty":"sh","bm":0,"hd":false,"mn":"ADBE Vector Shape - Group","nm":"Caminho 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[-1.291,1.66],[-0.395,-0.379],[0.654,-4.104],[0.138,-0.245],[2.243,-5.273],[1.284,-1.29],[25.602,-25.668],[10.142,-10.076],[4.439,-4.024],[0.307,-3.143],[9.226,-9.291],[1.017,-0.538],[0.368,-1.147],[1.292,-0.402],[4.672,0.067],[-5.531,5.322],[-13.48,13.493],[0.081,2.479],[0,0],[-1.052,2.848],[-1.854,0.923],[-1.497,1.496],[-33.079,33.436],[-5.956,-1.257]],"o":[[0.397,0.38],[-0.128,4.234],[-0.094,0.266],[-4.719,2.914],[-1.206,1.367],[-25.565,25.704],[-10.096,10.122],[-5.636,2.689],[-2.001,1.813],[-9.176,9.341],[-0.774,0.779],[-1.217,-0.233],[-1.293,0.402],[-4.443,-0.821],[3.441,-6.734],[13.741,-13.222],[1.512,-1.514],[0,0],[2.84,-1.058],[0.922,-1.854],[2.34,-0.435],[33.272,-33.245],[4.5,-4.548],[2.014,0.425]],"v":[[95.363,-93.944],[96.552,-92.806],[93.566,-80.746],[93.217,-79.98],[82.115,-68.327],[78.485,-64.237],[1.752,12.837],[-28.667,43.073],[-42.015,55.116],[-46.865,61.664],[-74.425,89.655],[-77.444,91.301],[-79.78,92.739],[-83.657,93.944],[-96.552,90.042],[-83.252,72.04],[-42.72,31.657],[-39.495,26.311],[-39.374,26.195],[-33.523,20.349],[-29.358,16.183],[-24.329,12.291],[75.348,-87.583],[90.496,-92.594]]},"ix":2}},{"ty":"fl","bm":0,"hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Preenchimento 1","c":{"a":0,"k":[0.9843,0.0863,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[98.147,99.21],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":0},{"s":[100],"t":90}],"ix":7}}]}],"ind":1}],"v":"5.7.0","fr":30,"op":100,"ip":0,"assets":[]} \ No newline at end of file diff --git a/FE/src/assets/lottie/mainLottie.json b/FE/src/assets/lottie/mainLottie.json new file mode 100644 index 00000000..9c93bf1c --- /dev/null +++ b/FE/src/assets/lottie/mainLottie.json @@ -0,0 +1 @@ +{"v":"5.7.8","fr":60,"ip":0,"op":240,"w":602,"h":648,"ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":4,"parent":2,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[533.96,408.23,0],"l":2},"a":{"a":0,"k":[533.96,408.23,0],"l":2},"s":{"a":0,"k":[100,100,100],"l":2}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":0,"k":{"i":[[559.79,404.94],[525.79,394.1],[507.08,412.84],[541.07,423.68]],"o":[[541.02,394.1],[507.14,404.94],[525.85,423.68],[559.73,412.84]],"v":[[550.41,399.52],[516.47,399.52],[516.46,418.26],[550.4,418.26]],"c":true}},"o":{"a":0,"k":100},"x":{"a":0,"k":0}}],"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[556.66,409.66]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[548.87,414.16]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[541.61,418.28]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.54,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[548.72,408.11]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[543.51,411.11]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.7,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.07,-0.92],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[541,412.5]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[528.41,419.76]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.54,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[550.73,400.81]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[545.09,404]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[539.25,407.44]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.61,410.63]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.35,416.62]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[520.79,418.03]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[545.86,397.42]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[537.19,402.43]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.7,405.59]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[529.4,406.92]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[527.1,408.25]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.54,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[524.26,409.96]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[521.61,411.42]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[518.78,413.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[540.11,394.67]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[537.02,396.46]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.93,398.24]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.37,399.65]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[520.77,405.77]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[515.47,408.83]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[530.09,394.32]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[521.95,398.95]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[516.47,402.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.63,403.82]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[510.98,405.29]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[510.98,405.29]},"a":{"a":0,"k":[510.98,405.29]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[554.01,411.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[551.7,412.45]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[546.22,415.62]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[543.91,416.95]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[539.3,419.61]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[537,420.94]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[553.93,405.1]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[551.41,406.48]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[546.21,409.49]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[538.3,414.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[535.79,415.51]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.54,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.09,417.13]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[530.58,418.51]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[547.65,402.59]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[542.34,405.65]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.54,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[536.17,409.22]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.09,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.39,411.91]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[529.18,413.18]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[526.44,414.83]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[543.02,399.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[539.84,400.96]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[534.36,404.13]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[516.12,414.59]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.54,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[528.63,401.3]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[526.07,402.71]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.33,404.36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[518.03,407.42]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[512.72,410.48]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[527.44,395.78]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[524.61,397.49]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[519.12,400.65]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[519.12,400.65]},"a":{"a":0,"k":[519.12,400.65]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.85},"o":{"x":0.17,"y":0.17},"t":0,"s":[532.28,408.85],"to":[-2.8,-1.78],"ti":[-1.56,-1.61]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.2},"t":99,"s":[536.76,404.87],"to":[0.01,0.01],"ti":[0.18,-0.33]},{"i":{"x":0.83,"y":0.82},"o":{"x":0.17,"y":0.16},"t":162,"s":[533.3,407.01],"to":[-0.78,1.42],"ti":[3.44,1.84]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.11},"t":231,"s":[533.22,409.4],"to":[-0.35,-0.19],"ti":[0.34,0.21]},{"t":241,"s":[532.19,408.79]}]},"a":{"a":0,"k":[533.96,407.51]},"s":{"a":0,"k":[150,150]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[50.46,28.24]},"p":{"a":0,"k":[0,0]},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.89,408.09]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":60},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":600,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.89},"o":{"x":0.17,"y":0.17},"t":0,"s":[600.25,355.92,0],"to":[-1.42,0.43,0],"ti":[0.04,0.72,0]},{"i":{"x":0.83,"y":0.68},"o":{"x":0.17,"y":0.37},"t":47,"s":[598.91,352.74,0],"to":[-0.02,-0.3,0],"ti":[-0.28,0.11,0]},{"i":{"x":0.83,"y":0.85},"o":{"x":0.17,"y":0.13},"t":86,"s":[598.28,352.09,0],"to":[1.93,-0.79,0],"ti":[-0.64,-0.36,0]},{"i":{"x":0.83,"y":0.81},"o":{"x":0.17,"y":0.2},"t":150,"s":[600.47,354.79,0],"to":[0.5,0.28,0],"ti":[0.36,-0.05,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.15},"t":193,"s":[600.72,353.11,0],"to":[-0.11,0.02,0],"ti":[0.8,-0.29,0]},{"t":241,"s":[600.21,355.93,0]}],"l":2},"a":{"a":0,"k":[547.58,417.23,0],"l":2},"s":{"a":0,"k":[216,216,100],"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.75,4.1],[4.13,-3.21],[-1.75,-4.1],[-4.13,3.21]],"o":[[4.43,-0.54],[0.72,-5.18],[-4.43,0.54],[-0.72,5.18]],"v":[[3.09,1.78],[2.42,-4.2],[-3.09,-1.78],[-2.42,4.2]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.22,0.636,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[583.04,437.82]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-9.43,-11.23],[-17.26,-5.3],[10.41,11.41],[15.3,3.05]],"o":[[-13,-12.66],[-14.32,-2.86],[10.41,11.41],[15.3,3.05]],"v":[[-9.43,-11.23],[-14.32,-2.86],[10.41,11.41],[15.3,3.05]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5833,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[570.22,430.61]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[570.22,430.61]},"a":{"a":0,"k":[570.22,430.61]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.89,-1.46],[-3.88,-8],[1.39,3.53]],"o":[[1.67,-2.12],[-5.48,0.82],[0.39,2.87]],"v":[[4.99,-0.62],[-4.97,-0.76],[2.12,4.3]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.774,0.8017,0.826,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[554.22,421.4]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-26.3,4.41],[7.7,15.25],[26.3,-4.41],[-7.7,-15.25]],"o":[[-7.53,15.25],[26.35,4.41],[7.53,-15.25],[-26.35,-4.41]],"v":[[-16.91,9.83],[17.02,9.83],[16.92,-9.83],[-17.03,-9.83]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[7.86,-15.92],[27.51,4.6],[-7.86,15.92],[-27.51,-4.6]],"o":[[27.46,-4.6],[8.04,15.92],[-27.46,4.6],[-8.04,-15.92]],"v":[[17.66,-10.26],[17.77,10.26],[-17.66,10.26],[-17.78,-10.26]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.9666,0.9809,0.9934,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.49,406.57]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[25.05,-9.82],[-29.63,16.51],[22.46,9.7]],"o":[[29.51,16.67],[-22.54,9.58],[25.05,-9.82]],"v":[[25.05,-9.82],[-25.03,-9.97],[25.05,-9.82]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.851,0.8784,0.902,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.48,416.47]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-21.3,0.93],[20.1,-7.61],[-23.37,-12.46]],"o":[[-5.59,-8.27],[23.37,-12.35],[-23.59,4.12]],"v":[[-17.03,-1.55],[23.94,7.45],[-23.94,7.38]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.49,401.4]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[24.48,4.27],[24.12,9.65],[-21.37,-9.19],[21.47,-16.1]],"o":[[24.48,4.27],[21.73,-9.07],[-28.27,-14.24],[24.48,4.27]],"v":[[24.48,4.27],[24.12,9.65],[-23.85,9.51],[24.48,4.27]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7853,0.8116,0.8347,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.35,402.16]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.35,402.16]},"a":{"a":0,"k":[533.35,402.16]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[45.6,26.39]},"p":{"a":0,"k":[0,0]},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1255,0.1529,0.1725,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.84,419.81]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":60},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":600,"st":0,"bm":0,"completed":true}]}],"layers":[{"ddd":0,"ind":6,"ty":3,"sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":0,"k":0},"p":{"a":0,"k":[304.04,378.5,0],"l":2},"a":{"a":0,"k":[50,50,0],"l":2},"s":{"a":0,"k":[219,219,100],"l":2}},"ao":0,"ip":0,"op":600,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":7,"ty":4,"parent":6,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[52.7,-30.11,0],"l":2},"a":{"a":0,"k":[502.74,392.4,0],"l":2},"s":{"a":0,"k":[100,100,100],"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"o":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"v":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":0,"s":[384.9,437.27],"to":[-1.11,-0.51],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":240,"s":[384.9,437.27],"to":[-1.11,-0.51],"ti":[1.11,0.51]},{"t":480,"s":[378.22,434.19]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":50,"s":[100]},{"i":{"x":[0.83],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":190,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":290,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":430,"s":[100]},{"t":480,"s":[0]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"o":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"v":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[412.81,441]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-17,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":43,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":103,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":163,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":223,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":283,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":343,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":403,"s":[30]},{"t":463,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.99,1.69],[-3.99,6.29],[-3.99,-1.69],[3.99,-6.29]],"o":[[3.99,1.69],[-3.99,6.29],[-3.99,-1.69],[3.99,-6.29]],"v":[[3.99,1.69],[-3.99,6.29],[-3.99,-1.69],[3.99,-6.29]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":-34,"s":[423.47,441.52],"to":[-3.44,2.01],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":86,"s":[402.81,453.56],"to":null,"ti":null},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":206,"s":[423.47,441.52],"to":[-3.44,2.01],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":326,"s":[402.81,453.56],"to":[0,0],"ti":[-3.44,2.01]},{"t":446,"s":[423.47,441.52]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-34,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":26,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":86,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":146,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":206,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":266,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":326,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":386,"s":[0]},{"t":446,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"o":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"v":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":0,"s":[421.38,429.86],"to":[-0.96,-0.67],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":240,"s":[421.38,429.86],"to":null,"ti":null},{"t":480,"s":[415.61,425.86]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":121,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":361,"s":[100]},{"t":480,"s":[0]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"o":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"v":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.776,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[417.56,419.9]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-75,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-15,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":45,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":105,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":165,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":225,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":285,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":345,"s":[30]},{"t":405,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.9,1.65],[-3.89,6.14],[-3.89,-1.65],[3.9,-6.14]],"o":[[3.9,1.65],[-3.89,6.14],[-3.89,-1.65],[3.9,-6.14]],"v":[[3.9,1.65],[-3.89,6.14],[-3.89,-1.65],[3.9,-6.14]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":0,"s":[413.45,400.02],"to":[0.67,0.48],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":240,"s":[413.45,400.02],"to":[0.67,0.48],"ti":[-0.67,-0.48]},{"t":480,"s":[417.45,402.87]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"t":480,"s":[0]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.96,1.25],[-2.96,4.67],[-2.96,-1.25],[2.96,-4.67]],"o":[[2.96,1.25],[-2.96,4.67],[-2.96,-1.25],[2.96,-4.67]],"v":[[2.96,1.25],[-2.96,4.67],[-2.96,-1.25],[2.96,-4.67]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":0,"s":[404.13,398.38],"to":[-0.95,0.69],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":120,"s":[398.43,402.49],"to":null,"ti":null},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":240,"s":[404.13,398.38],"to":[-0.95,0.69],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":360,"s":[398.43,402.49],"to":[0,0],"ti":[-0.95,0.69]},{"t":480,"s":[404.13,398.38]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":60,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":180,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":300,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":420,"s":[30]},{"t":480,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.02,0.43],[-1.02,1.61],[-1.02,-0.43],[1.02,-1.61]],"o":[[1.02,0.43],[-1.02,1.61],[-1.02,-0.43],[1.02,-1.61]],"v":[[1.02,0.43],[-1.02,1.61],[-1.02,-0.43],[1.02,-1.61]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[376.85,394.97]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-11,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":49,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":109,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":169,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":229,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":289,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":349,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":409,"s":[30]},{"t":469,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.04,0.86],[-2.04,3.22],[-2.04,-0.86],[2.04,-3.22]],"o":[[2.04,0.86],[-2.04,3.22],[-2.04,-0.86],[2.04,-3.22]],"v":[[2.04,0.86],[-2.04,3.22],[-2.04,-0.86],[2.04,-3.22]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":0,"s":[388.98,377.68],"to":[0.25,0.27],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":240,"s":[388.98,377.68],"to":null,"ti":null},{"t":480,"s":[390.46,379.28]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"t":480,"s":[0]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"o":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"v":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.776,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[431.34,409.91]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":60,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":180,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":300,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":420,"s":[30]},{"t":480,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"o":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"v":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[431.34,358.97]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-24,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":36,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":156,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":216,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":276,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":336,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":396,"s":[30]},{"t":456,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.37,1.42],[-3.36,5.31],[-3.36,-1.42],[3.37,-5.31]],"o":[[3.37,1.42],[-3.36,5.31],[-3.36,-1.42],[3.37,-5.31]],"v":[[3.37,1.42],[-3.36,5.31],[-3.36,-1.42],[3.37,-5.31]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[439.2,349.16]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-72,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-12,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":48,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":108,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":228,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":288,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":348,"s":[30]},{"t":408,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"o":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"v":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":0,"s":[477.39,363.03],"to":[-0.72,-0.48],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":240,"s":[477.39,363.03],"to":null,"ti":null},{"t":480,"s":[473.05,360.17]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"t":480,"s":[0]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"o":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"v":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[485.09,367.28]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"o":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"v":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":-60,"s":[483.91,387.69],"to":null,"ti":null},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":60,"s":[476.72,391.46],"to":null,"ti":null},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":180,"s":[483.91,387.69],"to":null,"ti":null},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":300,"s":[476.72,391.46],"to":null,"ti":null},{"t":420,"s":[483.91,387.69]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-60,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":180,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":300,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[30]},{"t":420,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"o":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"v":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.776,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[528.73,367.45]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-17,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":43,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":103,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":163,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":223,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":283,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":343,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":403,"s":[60]},{"t":463,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"o":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"v":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.6,359.32]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":60,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":180,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":300,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":420,"s":[60]},{"t":480,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"o":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"v":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.776,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":0,"s":[497.99,326.54],"to":[-0.46,-0.21],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":240,"s":[497.99,326.54],"to":[-0.46,-0.21],"ti":[0.46,0.21]},{"t":480,"s":[495.25,325.29]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"t":480,"s":[0]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"o":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"v":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":0,"s":[518.15,324.93],"to":[0.55,-0.28],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.17,"y":0},"t":120,"s":[521.46,323.22],"to":null,"ti":null},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":240,"s":[518.15,324.93],"to":[0.55,-0.28],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.17,"y":0},"t":360,"s":[521.46,323.22],"to":[0,0],"ti":[0.55,-0.28]},{"t":480,"s":[518.15,324.93]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":60,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":180,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":300,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":420,"s":[60]},{"t":480,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"o":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"v":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":0,"s":[526.37,312.35],"to":[0.59,0.21],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":240,"s":[526.37,312.35],"to":null,"ti":null},{"t":480,"s":[529.91,313.6]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"t":480,"s":[0]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"o":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"v":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":0,"s":[551.54,349.61],"to":[-1.03,-0.34],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":240,"s":[551.54,349.61],"to":[-1.03,-0.34],"ti":[1.03,0.34]},{"t":480,"s":[545.38,347.56]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"t":480,"s":[0]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"o":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"v":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":-139,"s":[595.35,352.76],"to":[-0.64,0.36],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":-19,"s":[591.52,354.93],"to":null,"ti":null},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":101,"s":[595.35,352.76],"to":null,"ti":null},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":221,"s":[591.52,354.92],"to":null,"ti":null},{"t":341,"s":[595.35,352.76]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-139,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-79,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-19,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":41,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":101,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":161,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":221,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":281,"s":[30]},{"t":341,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"o":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"v":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.776,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[593.27,394.62]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-148,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-88,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-28,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":32,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":92,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":152,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":212,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":272,"s":[60]},{"t":332,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[4.01,1.63],[-3.9,6.35],[-4.01,-1.63],[3.9,-6.35]],"o":[[4.01,1.63],[-3.9,6.35],[-4.01,-1.63],[3.9,-6.35]],"v":[[4.01,1.63],[-3.9,6.35],[-4.01,-1.63],[3.9,-6.35]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[578.74,412]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":60,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":180,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":300,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":420,"s":[60]},{"t":480,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.37,0.96],[-2.3,3.75],[-2.37,-0.96],[2.3,-3.74]],"o":[[2.37,0.96],[-2.3,3.75],[-2.37,-0.96],[2.3,-3.74]],"v":[[2.37,0.96],[-2.3,3.75],[-2.37,-0.96],[2.3,-3.74]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":0,"s":[586.98,415.21],"to":[1.08,-0.53],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":120,"s":[593.49,412.01],"to":null,"ti":null},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":240,"s":[586.98,415.21],"to":[1.08,-0.53],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":360,"s":[593.49,412.01],"to":[0,0],"ti":[1.08,-0.53]},{"t":480,"s":[586.98,415.21]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":60,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":180,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":300,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":420,"s":[30]},{"t":480,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"o":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"v":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.776,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[609.55,391.4]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":60,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":180,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":300,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":420,"s":[60]},{"t":480,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"o":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"v":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":-146,"s":[628.47,370.6],"to":[-0.46,-0.23],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":-26,"s":[625.73,369.23],"to":null,"ti":null},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":94,"s":[628.47,370.6],"to":[-0.46,-0.23],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":214,"s":[625.73,369.23],"to":[0,0],"ti":[-0.46,-0.23]},{"t":334,"s":[628.47,370.6]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-146,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-86,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-26,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":34,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":94,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":154,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":214,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":274,"s":[60]},{"t":334,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"o":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"v":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[618.07,406.57]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":60,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":180,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":300,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":420,"s":[30]},{"t":480,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"o":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"v":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[603.44,428.14]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-49,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":11,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":71,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":131,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":191,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":251,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":311,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":371,"s":[30]},{"t":431,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.73,1.15],[-2.73,4.31],[-2.73,-1.15],[2.73,-4.31]],"o":[[2.73,1.15],[-2.73,4.31],[-2.73,-1.15],[2.73,-4.31]],"v":[[2.73,1.15],[-2.73,4.31],[-2.73,-1.15],[2.73,-4.31]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":0,"s":[592.61,445.3],"to":[0.67,0.61],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":240,"s":[592.61,445.3],"to":null,"ti":null},{"t":480,"s":[596.61,448.95]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[0]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[100]},{"t":480,"s":[0]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"o":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"v":[[2.35,1],[-2.35,3.71],[-2.35,-0.99],[2.35,-3.71]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.776,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":-60,"s":[609.64,431.03],"to":[-0.95,0.59],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":60,"s":[603.93,434.57],"to":null,"ti":null},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":180,"s":[609.64,431.03],"to":[-0.95,0.59],"ti":[0,0]},{"i":{"x":0.4,"y":1},"o":{"x":0.6,"y":0},"t":300,"s":[603.93,434.57],"to":[0,0],"ti":[-0.95,0.59]},{"t":420,"s":[609.64,431.03]}]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-60,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":0,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":120,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":180,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":240,"s":[60]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":300,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":360,"s":[60]},{"t":420,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"o":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"v":[[1.18,0.5],[-1.18,1.86],[-1.18,-0.5],[1.18,-1.86]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[611.28,474.3]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":-12,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":48,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":168,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":228,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":288,"s":[30]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":348,"s":[100]},{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.6],"y":[0]},"t":408,"s":[30]},{"t":468,"s":[100]}]},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":600,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":8,"ty":4,"parent":6,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[79.29,95.28,0],"l":2},"a":{"a":0,"k":[529.33,517.79,0],"l":2},"s":{"a":0,"k":[100,100,100],"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[6.66,-0.77],[3.86,-12.72],[-8.2,-5.76],[-5.4,6.19],[6.66,-0.77]],"o":[[6.66,-0.77],[3.86,-12.72],[-8.2,-5.76],[-5.4,6.19],[6.66,-0.77]],"v":[[6.66,-0.77],[3.86,-12.72],[-8.2,-5.76],[-5.4,6.19],[6.66,-0.77]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[3.39,-14.73],[0.6,-26.69],[-11.46,-19.73],[-8.67,-7.77],[3.39,-14.73]],"o":[[3.39,-14.73],[0.6,-26.69],[-11.46,-19.73],[-8.67,-7.77],[3.39,-14.73]],"v":[[3.39,-14.73],[0.6,-26.69],[-11.46,-19.73],[-8.67,-7.77],[3.39,-14.73]],"c":true}},"_render":true},{"ind":2,"ty":"sh","ks":{"a":0,"k":{"i":[[13.19,27.18],[10.39,15.22],[-1.67,22.18],[1.13,34.14],[13.19,27.18]],"o":[[13.19,27.18],[10.39,15.22],[-1.67,22.18],[1.13,34.14],[13.19,27.18]],"v":[[13.19,27.18],[10.39,15.22],[-1.67,22.18],[1.13,34.14],[13.19,27.18]],"c":true}},"_render":true},{"ind":3,"ty":"sh","ks":{"a":0,"k":{"i":[[0.13,-28.7],[-2.67,-40.67],[-14.73,-33.71],[-11.93,-21.74],[0.13,-28.7]],"o":[[0.13,-28.7],[-2.67,-40.67],[-14.73,-33.71],[-11.93,-21.74],[0.13,-28.7]],"v":[[0.13,-28.7],[-2.67,-40.67],[-14.73,-33.71],[-11.93,-21.74],[0.13,-28.7]],"c":true}},"_render":true},{"ind":4,"ty":"sh","ks":{"a":0,"k":{"i":[[9.92,13.21],[7.12,1.24],[-4.93,8.2],[-2.13,20.17],[9.92,13.21]],"o":[[9.92,13.21],[7.12,1.24],[-4.93,8.2],[-2.13,20.17],[9.92,13.21]],"v":[[9.92,13.21],[7.12,1.24],[-4.93,8.2],[-2.13,20.17],[9.92,13.21]],"c":true}},"_render":true},{"ind":5,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.07,-50.95],[-3.41,-51.91],[18.78,43.04],[17.12,44],[13.66,29.19],[1.6,36.15],[5.06,50.96],[3.41,51.92],[-18.78,-43.04],[-17.13,-43.99],[-15.2,-35.72],[-3.14,-42.68]],"o":[[-5.07,-50.95],[-3.41,-51.91],[18.78,43.04],[17.12,44],[13.66,29.19],[1.6,36.15],[5.06,50.96],[3.41,51.92],[-18.78,-43.04],[-17.13,-43.99],[-15.2,-35.72],[-3.14,-42.68]],"v":[[-5.07,-50.95],[-3.41,-51.91],[18.78,43.04],[17.12,44],[13.66,29.19],[1.6,36.15],[5.06,50.96],[3.41,51.92],[-18.78,-43.04],[-17.13,-43.99],[-15.2,-35.72],[-3.14,-42.68]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[530.15,517.97]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[11.92,47.66],[10.28,47.29],[-11.91,-47.66],[-10.28,-47.29]],"o":[[11.92,47.66],[10.28,47.29],[-11.91,-47.66],[-10.28,-47.29]],"v":[[11.92,47.66],[10.28,47.29],[-11.91,-47.66],[-10.28,-47.29]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7447,0.7717,0.7953,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[521.64,522.23]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.01,0.66],[-1.64,0.29],[0.01,-0.66],[1.65,-0.29]],"o":[[-0.01,0.66],[-1.64,0.29],[0.01,-0.66],[1.65,-0.29]],"v":[[-0.01,0.66],[-1.64,0.29],[0.01,-0.66],[1.65,-0.29]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7439,0.8784,0.9961,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[511.37,474.27]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"o":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"v":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7439,0.8784,0.9961,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[520.16,478.59]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"o":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"v":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7439,0.8784,0.9961,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.43,492.57]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.01,0.66],[-1.65,0.3],[0.01,-0.66],[1.65,-0.3]],"o":[[-0.01,0.66],[-1.65,0.3],[0.01,-0.66],[1.65,-0.3]],"v":[[-0.01,0.66],[-1.65,0.3],[0.01,-0.66],[1.65,-0.3]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7439,0.8784,0.9961,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[525.09,466.35]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.79,4.32],[0.15,3.96],[-1.79,-4.32],[-0.15,-3.95]],"o":[[1.79,4.32],[0.15,3.96],[-1.79,-4.32],[-0.15,-3.95]],"v":[[1.79,4.32],[0.15,3.96],[-1.79,-4.32],[-0.15,-3.95]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7447,0.7717,0.7953,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[525.22,470.97]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.22,6.17],[0.58,5.8],[-2.22,-6.17],[-0.58,-5.8]],"o":[[2.22,6.17],[0.58,5.8],[-2.22,-6.17],[-0.58,-5.8]],"v":[[2.22,6.17],[0.58,5.8],[-2.22,-6.17],[-0.58,-5.8]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7447,0.7717,0.7953,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[528.06,483.11]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"o":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"v":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7439,0.8784,0.9961,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[526.69,506.54]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.22,6.16],[0.58,5.79],[-2.22,-6.16],[-0.58,-5.79]],"o":[[2.22,6.16],[0.58,5.79],[-2.22,-6.16],[-0.58,-5.79]],"v":[[2.22,6.16],[0.58,5.79],[-2.22,-6.16],[-0.58,-5.79]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7447,0.7717,0.7953,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.32,497.08]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"o":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"v":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7439,0.8784,0.9961,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[529.95,520.5]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.22,6.16],[0.58,5.79],[-2.22,-6.16],[-0.58,-5.79]],"o":[[2.22,6.16],[0.58,5.79],[-2.22,-6.16],[-0.58,-5.79]],"v":[[2.22,6.16],[0.58,5.79],[-2.22,-6.16],[-0.58,-5.79]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7447,0.7717,0.7953,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[534.59,511.04]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"o":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"v":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7439,0.8784,0.9961,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.22,534.48]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.22,6.17],[0.58,5.8],[-2.22,-6.17],[-0.58,-5.8]],"o":[[2.22,6.17],[0.58,5.8],[-2.22,-6.17],[-0.58,-5.8]],"v":[[2.22,6.17],[0.58,5.8],[-2.22,-6.17],[-0.58,-5.8]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7447,0.7717,0.7953,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[537.85,525.01]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"o":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"v":[[-5.21,3.66],[-6.85,3.3],[5.21,-3.66],[6.85,-3.3]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7439,0.8784,0.9961,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[536.49,548.44]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.22,6.16],[0.58,5.79],[-2.22,-6.16],[-0.58,-5.79]],"o":[[2.22,6.16],[0.58,5.79],[-2.22,-6.16],[-0.58,-5.79]],"v":[[2.22,6.16],[0.58,5.79],[-2.22,-6.16],[-0.58,-5.79]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7447,0.7717,0.7953,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[541.12,538.99]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.55,7.59],[0.91,7.22],[-2.55,-7.59],[-0.91,-7.22]],"o":[[2.55,7.59],[0.91,7.22],[-2.55,-7.59],[-0.91,-7.22]],"v":[[2.55,7.59],[0.91,7.22],[-2.55,-7.59],[-0.91,-7.22]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7447,0.7717,0.7953,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[544.72,554.38]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":600,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":9,"ty":4,"parent":6,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[47.68,-63.96,0],"l":2},"a":{"a":0,"k":[497.73,358.54,0],"l":2},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4,0.4],"y":[1,1,1]},"o":{"x":[0.6,0.6,0.6],"y":[0,0,0]},"t":0,"s":[100,100,100]},{"i":{"x":[0.4,0.4,0.4],"y":[1,1,1]},"o":{"x":[0.6,0.6,0.6],"y":[0,0,0]},"t":120,"s":[110,110,100]},{"t":240,"s":[100,100,100]}],"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[578.46,395.23]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-1,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":119,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":239,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":359,"s":[200,200]},{"t":479,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[502.22,316.71]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-16,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":104,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":224,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":344,"s":[200,200]},{"t":464,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.71,0.9],[1.32,0.55],[1.56,0.26],[-0.2,-0.76],[-0.71,-0.91],[-1.32,-0.55],[-1.56,-0.27],[0.21,0.75]],"o":[[0.96,0.76],[1.57,0.41],[1.31,0.12],[-0.46,-0.9],[-0.96,-0.76],[-1.57,-0.41],[-1.3,-0.12],[0.46,0.9]],"v":[[0.96,0.76],[1.32,0.55],[1.31,0.12],[-0.2,-0.76],[-0.96,-0.76],[-1.32,-0.55],[-1.3,-0.12],[0.21,0.75]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[1.85,0.58],[1.2,0.95],[0.78,1.12],[0.1,1.07],[-1.64,0.06],[-1.95,-0.18],[-1.85,-0.58],[-1.2,-0.95],[-0.78,-1.12],[-0.1,-1.07],[1.64,-0.06],[1.95,0.19]],"o":[[1.64,0.69],[1,1.07],[0.32,1.13],[-0.1,0.95],[-1.84,-0.06],[-1.95,-0.45],[-1.65,-0.69],[-1,-1.07],[-0.32,-1.12],[0.1,-0.95],[1.85,0.06],[1.95,0.45]],"v":[[1.64,0.69],[1.2,0.95],[0.55,1.12],[-0.1,0.95],[-1.64,0.06],[-1.95,-0.32],[-1.65,-0.69],[-1.2,-0.95],[-0.55,-1.12],[0.1,-0.95],[1.64,-0.06],[1.95,0.32]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[502.24,312.35]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-11,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":109,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":229,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":349,"s":[200,200]},{"t":469,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.62,337.5]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-6,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":114,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":234,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":354,"s":[200,200]},{"t":474,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[465.99,388.8]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-2,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":118,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":238,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":358,"s":[200,200]},{"t":478,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[435.33,395.5]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-9,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":111,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":231,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":351,"s":[200,200]},{"t":471,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[577.62,385.65]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-7,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":113,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":233,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":353,"s":[200,200]},{"t":473,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[452.47,399.05]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-20,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":100,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":220,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":340,"s":[200,200]},{"t":460,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[511.19,355.06]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-15,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":105,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":225,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":345,"s":[200,200]},{"t":465,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[442.28,355.96]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-14,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":106,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":226,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":346,"s":[200,200]},{"t":466,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[519.91,363.34]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":1,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":121,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":241,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":361,"s":[200,200]},{"t":481,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[535.89,387.93]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-16,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":104,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":224,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":344,"s":[200,200]},{"t":464,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[561.73,397.93]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-21,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":99,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":219,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":339,"s":[200,200]},{"t":459,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.7,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.07,-0.92],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.51,333.59]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-18,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":102,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":222,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":342,"s":[200,200]},{"t":462,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[472.88,403.96]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":6,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":126,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":246,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":366,"s":[200,200]},{"t":486,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[524.28,351.84]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-4,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":116,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":236,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":356,"s":[200,200]},{"t":476,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[486.42,342.8]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-24,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":96,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":216,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":336,"s":[200,200]},{"t":456,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[492.66,350.94]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-12,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":108,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":228,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":348,"s":[200,200]},{"t":468,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[509.51,322.5]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-2,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":118,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":238,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":358,"s":[200,200]},{"t":478,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[461.8,367.08]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-1,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":119,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":239,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":359,"s":[200,200]},{"t":479,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[443.96,401.65]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-23,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":97,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":217,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":337,"s":[200,200]},{"t":457,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[561.73,368.3]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-16,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":104,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":224,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":344,"s":[200,200]},{"t":464,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[428.08,378.54]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-1,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":119,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":239,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":359,"s":[200,200]},{"t":479,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.54,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[492.04,334.72]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-19,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":101,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":221,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":341,"s":[200,200]},{"t":461,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[465.99,380.66]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-16,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":104,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":224,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":344,"s":[200,200]},{"t":464,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.7,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.07,-0.92],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[554.24,358.84]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-20,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":100,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":220,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":340,"s":[200,200]},{"t":460,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[554.24,375.07]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":0,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":120,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":240,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":360,"s":[200,200]},{"t":480,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.09,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[453.85,369.69]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-2,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":118,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":238,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":358,"s":[200,200]},{"t":478,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[435.33,364.46]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-13,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":107,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":227,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":347,"s":[200,200]},{"t":467,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[451.1,350.72]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-4,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":116,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":236,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":356,"s":[200,200]},{"t":476,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[408.87,374.17]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-15,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":105,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":225,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":345,"s":[200,200]},{"t":465,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[586.59,370.59]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-4,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":116,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":236,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":356,"s":[200,200]},{"t":476,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[443.97,334.71]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":0,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":120,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":240,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":360,"s":[200,200]},{"t":480,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[494.34,355.06]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-12,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":108,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":228,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":348,"s":[200,200]},{"t":468,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.54,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[451.1,344.83]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-5,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":115,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":235,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":355,"s":[200,200]},{"t":475,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.42,0.7293,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[428.09,384.03]},"a":{"a":0,"k":[0,0]},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":-4,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":116,"s":[200,200]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":236,"s":[100,100]},{"i":{"x":[0.4,0.4],"y":[1,1]},"o":{"x":[0.6,0.6],"y":[0,0]},"t":356,"s":[200,200]},{"t":476,"s":[100,100]}]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":600,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":10,"ty":0,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[275,435,0],"l":2},"a":{"a":0,"k":[500,500,0],"l":2},"s":{"a":0,"k":[100,100,100],"l":2}},"ao":0,"w":1000,"h":1000,"ip":0,"op":600,"st":0,"bm":0,"completed":true,"layers":[{"ddd":0,"ind":1,"ty":4,"parent":2,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[533.96,408.23,0],"l":2},"a":{"a":0,"k":[533.96,408.23,0],"l":2},"s":{"a":0,"k":[100,100,100],"l":2}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":0,"k":{"i":[[559.79,404.94],[525.79,394.1],[507.08,412.84],[541.07,423.68]],"o":[[541.02,394.1],[507.14,404.94],[525.85,423.68],[559.73,412.84]],"v":[[550.41,399.52],[516.47,399.52],[516.46,418.26],[550.4,418.26]],"c":true}},"o":{"a":0,"k":100},"x":{"a":0,"k":0}}],"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[556.66,409.66]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[548.87,414.16]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[541.61,418.28]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.54,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[548.72,408.11]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[543.51,411.11]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.7,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.07,-0.92],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[541,412.5]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[528.41,419.76]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.54,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[550.73,400.81]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[545.09,404]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[539.25,407.44]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.61,410.63]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.35,416.62]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[520.79,418.03]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[545.86,397.42]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[537.19,402.43]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.7,405.59]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[529.4,406.92]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[527.1,408.25]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.54,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[524.26,409.96]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[521.61,411.42]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[518.78,413.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[540.11,394.67]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[537.02,396.46]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.93,398.24]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.37,399.65]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[520.77,405.77]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[515.47,408.83]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[530.09,394.32]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[521.95,398.95]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[516.47,402.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.63,403.82]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2419,0.438,0.5781,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[510.98,405.29]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[510.98,405.29]},"a":{"a":0,"k":[510.98,405.29]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[554.01,411.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[551.7,412.45]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[546.22,415.62]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[543.91,416.95]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[539.3,419.61]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[537,420.94]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[553.93,405.1]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[551.41,406.48]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[546.21,409.49]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[538.3,414.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[535.79,415.51]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.54,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.09,417.13]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[530.58,418.51]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[547.65,402.59]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[542.34,405.65]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.54,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[536.17,409.22]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.71,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.09,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.39,411.91]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.67],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[529.18,413.18]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[526.44,414.83]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[543.02,399.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[539.84,400.96]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[534.36,404.13]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[516.12,414.59]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.54,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[528.63,401.3]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.11,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[526.07,402.71]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.33,404.36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[518.03,407.42]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[512.72,410.48]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.31,0.11],[-1.45,-0.76],[1.72,0.66],[-0.89,-0.49]],"o":[[-1.91,-0.11],[-1.1,-0.91],[1.45,1.26],[-1.18,-0.46]],"v":[[-1.46,-0.01],[-1.2,-0.86],[1.65,0.78],[-1.11,-0.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[527.44,395.78]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.64,-0.18],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.07],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[524.61,397.49]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.73,1.2],[1.84,0.4],[-0.57,-1.35]],"o":[[1.2,0.63],[0.63,-0.19],[-2.07,-0.24]],"v":[[0.97,0.78],[1.32,0.13],[-1.31,-0.54]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[2.78,0.1],[-0.7,0.61],[-1.04,-1.1]],"o":[[0.65,1.7],[-2.55,-0.45],[-0.08,-1.05]],"v":[[1.66,0.71],[-1.63,0.08],[-0.54,-1.11]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.5,0.7667,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[519.12,400.65]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[519.12,400.65]},"a":{"a":0,"k":[519.12,400.65]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.83,"y":0.85},"o":{"x":0.17,"y":0.17},"t":0,"s":[532.28,408.85],"to":[-2.8,-1.78],"ti":[-1.56,-1.61]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.2},"t":99,"s":[536.76,404.87],"to":[0.01,0.01],"ti":[0.18,-0.33]},{"i":{"x":0.83,"y":0.82},"o":{"x":0.17,"y":0.16},"t":162,"s":[533.3,407.01],"to":[-0.78,1.42],"ti":[3.44,1.84]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.11},"t":231,"s":[533.22,409.4],"to":[-0.35,-0.19],"ti":[0.34,0.21]},{"t":241,"s":[532.19,408.79]}]},"a":{"a":0,"k":[533.96,407.51]},"s":{"a":0,"k":[150,150]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[50.46,28.24]},"p":{"a":0,"k":[0,0]},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2512,0.5379,0.7888,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.89,408.09]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":60},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":600,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.89},"o":{"x":0.17,"y":0.17},"t":0,"s":[600.25,355.92,0],"to":[-1.42,0.43,0],"ti":[0.04,0.72,0]},{"i":{"x":0.83,"y":0.68},"o":{"x":0.17,"y":0.37},"t":47,"s":[598.91,352.74,0],"to":[-0.02,-0.3,0],"ti":[-0.28,0.11,0]},{"i":{"x":0.83,"y":0.85},"o":{"x":0.17,"y":0.13},"t":86,"s":[598.28,352.09,0],"to":[1.93,-0.79,0],"ti":[-0.64,-0.36,0]},{"i":{"x":0.83,"y":0.81},"o":{"x":0.17,"y":0.2},"t":150,"s":[600.47,354.79,0],"to":[0.5,0.28,0],"ti":[0.36,-0.05,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.15},"t":193,"s":[600.72,353.11,0],"to":[-0.11,0.02,0],"ti":[0.8,-0.29,0]},{"t":241,"s":[600.21,355.93,0]}],"l":2},"a":{"a":0,"k":[547.58,417.23,0],"l":2},"s":{"a":0,"k":[216,216,100],"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.75,4.1],[4.13,-3.21],[-1.75,-4.1],[-4.13,3.21]],"o":[[4.43,-0.54],[0.72,-5.18],[-4.43,0.54],[-0.72,5.18]],"v":[[3.09,1.78],[2.42,-4.2],[-3.09,-1.78],[-2.42,4.2]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.22,0.636,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[583.04,437.82]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-9.43,-11.23],[-17.26,-5.3],[10.41,11.41],[15.3,3.05]],"o":[[-13,-12.66],[-14.32,-2.86],[10.41,11.41],[15.3,3.05]],"v":[[-9.43,-11.23],[-14.32,-2.86],[10.41,11.41],[15.3,3.05]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5833,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[570.22,430.61]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[570.22,430.61]},"a":{"a":0,"k":[570.22,430.61]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[2.89,-1.46],[-3.88,-8],[1.39,3.53]],"o":[[1.67,-2.12],[-5.48,0.82],[0.39,2.87]],"v":[[4.99,-0.62],[-4.97,-0.76],[2.12,4.3]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.774,0.8017,0.826,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[554.22,421.4]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-26.3,4.41],[7.7,15.25],[26.3,-4.41],[-7.7,-15.25]],"o":[[-7.53,15.25],[26.35,4.41],[7.53,-15.25],[-26.35,-4.41]],"v":[[-16.91,9.83],[17.02,9.83],[16.92,-9.83],[-17.03,-9.83]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[7.86,-15.92],[27.51,4.6],[-7.86,15.92],[-27.51,-4.6]],"o":[[27.46,-4.6],[8.04,15.92],[-27.46,4.6],[-8.04,-15.92]],"v":[[17.66,-10.26],[17.77,10.26],[-17.66,10.26],[-17.78,-10.26]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.9666,0.9809,0.9934,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.49,406.57]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[25.05,-9.82],[-29.63,16.51],[22.46,9.7]],"o":[[29.51,16.67],[-22.54,9.58],[25.05,-9.82]],"v":[[25.05,-9.82],[-25.03,-9.97],[25.05,-9.82]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.851,0.8784,0.902,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.48,416.47]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-21.3,0.93],[20.1,-7.61],[-23.37,-12.46]],"o":[[-5.59,-8.27],[23.37,-12.35],[-23.59,4.12]],"v":[[-17.03,-1.55],[23.94,7.45],[-23.94,7.38]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.49,401.4]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[24.48,4.27],[24.12,9.65],[-21.37,-9.19],[21.47,-16.1]],"o":[[24.48,4.27],[21.73,-9.07],[-28.27,-14.24],[24.48,4.27]],"v":[[24.48,4.27],[24.12,9.65],[-23.85,9.51],[24.48,4.27]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7853,0.8116,0.8347,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.35,402.16]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.35,402.16]},"a":{"a":0,"k":[533.35,402.16]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[45.6,26.39]},"p":{"a":0,"k":[0,0]},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1255,0.1529,0.1725,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.84,419.81]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":60},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":600,"st":0,"bm":0,"completed":true}]},{"ddd":0,"ind":11,"ty":4,"parent":6,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[57.54,13.24,0],"l":2},"a":{"a":0,"k":[507.58,435.74,0],"l":2},"s":{"a":0,"k":[100,100,100],"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.51,457.43]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[497.99,457.43]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.75,444.6]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-11,"s":[505.75,444.6],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":109,"s":[485.43,456.24],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":229,"s":[505.75,444.6],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":349,"s":[485.43,456.24],"to":null,"ti":null},{"t":469,"s":[505.75,444.6]}]},"a":{"a":0,"k":[505.75,444.6]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[496.06,447.35]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[480.54,447.35]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.3,434.52]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-32,"s":[488.3,434.52],"to":[-3.23,1.94],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":88,"s":[468.89,446.16],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":208,"s":[488.3,434.52],"to":[-3.23,1.94],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":328,"s":[468.89,446.16],"to":[0,0],"ti":[-3.23,1.94]},{"t":448,"s":[488.3,434.52]}]},"a":{"a":0,"k":[488.3,434.52]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[478.6,437.27]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[463.09,437.27]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[470.85,424.44]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-8,"s":[470.85,424.44],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":112,"s":[451.9,436.09],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":232,"s":[470.85,424.44],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":352,"s":[451.9,436.09],"to":null,"ti":null},{"t":472,"s":[470.85,424.44]}]},"a":{"a":0,"k":[470.85,424.44]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[461.15,427.2]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[445.64,427.2]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[453.39,414.37]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-3,"s":[453.39,414.37],"to":[-3.18,1.9],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":117,"s":[434.33,425.78],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":237,"s":[453.39,414.37],"to":[-3.18,1.9],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":357,"s":[434.33,425.78],"to":[0,0],"ti":[-3.18,1.9]},{"t":477,"s":[453.39,414.37]}]},"a":{"a":0,"k":[453.39,414.37]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.01,447.32]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[515.5,447.32]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.26,434.49]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-26,"s":[523.26,434.49],"to":[4.68,2.66],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":94,"s":[551.34,450.47],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":214,"s":[523.26,434.49],"to":[4.68,2.66],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":334,"s":[551.34,450.47],"to":[0,0],"ti":[4.68,2.66]},{"t":454,"s":[523.26,434.49]}]},"a":{"a":0,"k":[523.26,434.49]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.22,0.43,0.58,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.55,353.51]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[498.05,353.52]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.328,0.6715,0.972,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.86,340.75]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"o":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"v":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2024,0.4772,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[504.33,356.06]},"a":{"a":0,"k":[432.3,480.49]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.8,340.69]},"a":{"a":0,"k":[505.8,340.69]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[496.11,427.17]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[480.6,427.17]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.35,414.34]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.35,414.34]},"a":{"a":0,"k":[488.35,414.34]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.22,0.43,0.58,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[461.55,407.25]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[446.15,407.25]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.328,0.6715,0.972,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[453.85,394.47]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"o":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"v":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2024,0.4772,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[452.34,409.77]},"a":{"a":0,"k":[432.3,480.49]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[453.85,394.42]},"a":{"a":0,"k":[453.85,394.42]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[548.52,437.21]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.01,437.21]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[540.76,424.38]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-30,"s":[540.76,424.38],"to":[4.7,2.59],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":90,"s":[568.96,439.91],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":210,"s":[540.76,424.38],"to":[4.7,2.59],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":330,"s":[568.96,439.91],"to":[0,0],"ti":[4.7,2.59]},{"t":450,"s":[540.76,424.38]}]},"a":{"a":0,"k":[540.76,424.38]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.07,427.14]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[515.55,427.14]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.31,414.31]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.31,414.31]},"a":{"a":0,"k":[523.31,414.31]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.62,417.06]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[498.1,417.06]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.86,404.23]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.86,404.23]},"a":{"a":0,"k":[505.86,404.23]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.22,0.43,0.58,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[454.74,383.1]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[439.34,383.1]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.328,0.6715,0.972,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[447.04,370.38]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"o":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"v":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2024,0.4772,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[445.6,385.52]},"a":{"a":0,"k":[432.3,480.49]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[447.04,370.27]},"a":{"a":0,"k":[447.04,370.27]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.22,0.43,0.58,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[566,399.78]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[550.57,399.78]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.328,0.6715,0.972,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[558.27,387.01]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"o":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"v":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2024,0.4772,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[556.79,402.18]},"a":{"a":0,"k":[432.3,480.49]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[564.43,384.21]},"a":{"a":0,"k":[558.27,386.95]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[548.57,417.03]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.06,417.03]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[540.82,404.2]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-18,"s":[540.82,404.2],"to":[3.09,-1.84],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":102,"s":[559.37,393.18],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":222,"s":[540.82,404.2],"to":[3.09,-1.84],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":342,"s":[559.37,393.18],"to":[0,0],"ti":[3.09,-1.84]},{"t":462,"s":[540.82,404.2]}]},"a":{"a":0,"k":[540.82,404.2]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.12,406.95]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[515.61,406.95]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.36,394.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-5,"s":[523.36,394.12],"to":[3.22,-1.86],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":115,"s":[542.66,382.93],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":235,"s":[523.36,394.12],"to":[3.22,-1.86],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":355,"s":[542.66,382.93],"to":[0,0],"ti":[3.22,-1.86]},{"t":475,"s":[523.36,394.12]}]},"a":{"a":0,"k":[523.36,394.12]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.67,396.88]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[498.16,396.88]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.91,384.05]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-20,"s":[505.91,384.05],"to":[-3.79,-2.17],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":100,"s":[483.2,371.03],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":220,"s":[505.91,384.05],"to":[-3.79,-2.17],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":340,"s":[483.2,371.03],"to":[0,0],"ti":[-3.79,-2.17]},{"t":460,"s":[505.91,384.05]}]},"a":{"a":0,"k":[505.91,384.05]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.51,476.44]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[497.99,476.44]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.75,463.61]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.75,463.61]},"a":{"a":0,"k":[505.75,463.61]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[496.06,466.36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[480.54,466.36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.3,453.53]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-10,"s":[488.3,453.53],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":110,"s":[468.78,465.29],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":230,"s":[488.3,453.53],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":350,"s":[468.78,465.29],"to":null,"ti":null},{"t":470,"s":[488.3,453.53]}]},"a":{"a":0,"k":[488.3,453.53]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.22,0.43,0.58,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[441.35,477.76]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[425.95,477.76]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.328,0.6715,0.972,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[433.65,464.99]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"o":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"v":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2024,0.4772,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[433.65,464.93]},"a":{"a":0,"k":[433.65,464.93]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[461.15,446.21]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[445.64,446.21]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[453.39,433.38]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":0,"s":[453.39,433.38],"to":[-3.21,1.92],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":120,"s":[434.1,444.91],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":240,"s":[453.39,433.38],"to":[-3.21,1.92],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":358.67,"s":[434.1,444.91],"to":[0,0],"ti":[-3.21,1.92]},{"t":480,"s":[453.39,433.38]}]},"a":{"a":0,"k":[453.39,433.38]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.01,466.33]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[515.5,466.33]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.26,453.5]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.26,453.5]},"a":{"a":0,"k":[523.26,453.5]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.56,456.26]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[498.05,456.26]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.8,443.43]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.8,443.43]},"a":{"a":0,"k":[505.8,443.43]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[496.11,446.18]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[480.6,446.18]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.35,433.35]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.35,433.35]},"a":{"a":0,"k":[488.35,433.35]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.07,446.15]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[515.55,446.15]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.31,433.32]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.31,433.32]},"a":{"a":0,"k":[523.31,433.32]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.62,436.07]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[498.1,436.07]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.86,423.24]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.86,423.24]},"a":{"a":0,"k":[505.86,423.24]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[566.03,446.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[550.51,446.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[558.27,433.29]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-20,"s":[558.27,433.29],"to":[3.12,-1.83],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":100,"s":[576.99,422.33],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":220,"s":[558.27,433.29],"to":[3.12,-1.83],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":340,"s":[576.99,422.33],"to":[0,0],"ti":[3.12,-1.83]},{"t":460,"s":[558.27,433.29]}]},"a":{"a":0,"k":[558.27,433.29]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[548.57,436.04]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.06,436.04]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[540.82,423.21]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-28,"s":[540.82,423.21],"to":[3.14,-1.77],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":92,"s":[559.65,412.6],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":212,"s":[540.82,423.21],"to":[3.14,-1.77],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":332,"s":[559.65,412.6],"to":[0,0],"ti":[3.14,-1.77]},{"t":452,"s":[540.82,423.21]}]},"a":{"a":0,"k":[540.82,423.21]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.12,425.97]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[515.61,425.97]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.36,413.14]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.36,413.14]},"a":{"a":0,"k":[523.36,413.14]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.67,415.89]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[498.16,415.89]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.91,403.06]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.91,403.06]},"a":{"a":0,"k":[505.91,403.06]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.51,495.45]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[497.99,495.45]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.75,482.62]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-35,"s":[505.75,482.62],"to":[-3.41,2.06],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":85,"s":[485.32,494.95],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":205,"s":[505.75,482.62],"to":[-3.41,2.06],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":323.67,"s":[485.32,494.95],"to":[0,0],"ti":[-3.41,2.06]},{"t":445,"s":[505.75,482.62]}]},"a":{"a":0,"k":[505.75,482.62]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[496.06,485.38]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[480.54,485.38]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.23,472.52]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-7,"s":[488.23,472.52],"to":[-3.31,2.11],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":113,"s":[468.37,485.19],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":233,"s":[488.23,472.52],"to":[-3.31,2.11],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":351.67,"s":[468.37,485.19],"to":[0,0],"ti":[-3.31,2.11]},{"t":473,"s":[488.23,472.52]}]},"a":{"a":0,"k":[488.23,472.52]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[478.6,475.3]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[463.09,475.3]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[470.85,462.47]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-31,"s":[470.85,462.47],"to":[-3.31,2.07],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":89,"s":[450.98,474.91],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":209,"s":[470.85,462.47],"to":[-3.31,2.07],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":329,"s":[450.98,474.91],"to":[0,0],"ti":[-3.31,2.07]},{"t":449,"s":[470.85,462.47]}]},"a":{"a":0,"k":[470.85,462.47]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[461.15,465.23]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[445.64,465.23]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[453.39,452.4]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-2,"s":[453.39,452.4],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":118,"s":[434.22,465.07],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":238,"s":[453.39,452.4],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":358,"s":[434.22,465.07],"to":null,"ti":null},{"t":478,"s":[453.39,452.4]}]},"a":{"a":0,"k":[453.39,452.4]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.01,485.35]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[515.5,485.35]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.26,472.52]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.26,472.52]},"a":{"a":0,"k":[523.26,472.52]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.56,475.27]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[498.05,475.27]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.8,462.46]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.8,462.46]},"a":{"a":0,"k":[505.8,462.46]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[496.11,465.19]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[480.6,465.19]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.35,452.36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.35,452.36]},"a":{"a":0,"k":[488.35,452.36]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[478.66,455.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[463.14,455.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[470.9,442.29]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[470.9,442.29]},"a":{"a":0,"k":[470.9,442.29]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[548.52,475.24]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.01,475.24]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[540.76,462.41]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-24,"s":[540.76,462.41],"to":[6.79,4],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":96,"s":[581.52,486.38],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":216,"s":[540.76,462.41],"to":[6.79,4],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":336,"s":[581.52,486.38],"to":[0,0],"ti":[6.79,4]},{"t":456,"s":[540.76,462.41]}]},"a":{"a":0,"k":[540.76,462.41]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.07,465.16]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[515.55,465.16]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.31,452.38]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.31,452.38]},"a":{"a":0,"k":[523.31,452.38]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.62,455.09]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[498.1,455.09]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.94,442.34]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.94,442.34]},"a":{"a":0,"k":[505.94,442.34]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[496.16,445.01]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[480.65,445.01]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.41,432.22]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.41,432.22]},"a":{"a":0,"k":[488.41,432.22]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[566.03,465.13]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[550.51,465.13]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[558.27,452.3]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-15,"s":[558.27,452.3],"to":[6.74,3.9],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":105,"s":[598.68,475.7],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":225,"s":[558.27,452.3],"to":[6.74,3.9],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":345,"s":[598.68,475.7],"to":[0,0],"ti":[6.74,3.9]},{"t":465,"s":[558.27,452.3]}]},"a":{"a":0,"k":[558.27,452.3]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[548.57,455.06]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.06,455.06]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[540.82,442.23]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[540.82,442.23]},"a":{"a":0,"k":[540.82,442.23]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.12,444.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[515.61,444.98]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.36,432.15]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.36,432.15]},"a":{"a":0,"k":[523.36,432.15]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.67,434.9]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[498.16,434.9]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.91,422.07]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.91,422.07]},"a":{"a":0,"k":[505.91,422.07]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.22,0.43,0.58,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.51,526.91]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[497.99,526.91]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.328,0.6715,0.972,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.75,514.08]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"o":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"v":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2024,0.4772,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[72.16,49.09]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.75,514.08]},"a":{"a":0,"k":[505.75,514.08]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[496.06,504.39]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[480.54,504.39]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.3,491.56]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-36,"s":[488.3,491.56],"to":[-3.27,1.96],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":84,"s":[468.66,503.32],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":204,"s":[488.3,491.56],"to":[-3.27,1.96],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":322.67,"s":[468.66,503.32],"to":[0,0],"ti":[-3.27,1.96]},{"t":444,"s":[488.3,491.56]}]},"a":{"a":0,"k":[488.3,491.56]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[478.6,494.32]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[463.09,494.32]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[470.85,481.49]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-28,"s":[470.85,481.49],"to":[-3.25,1.9],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":92,"s":[451.33,492.9],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":212,"s":[470.85,481.49],"to":[-3.25,1.9],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":332,"s":[451.33,492.9],"to":[0,0],"ti":[-3.25,1.9]},{"t":452,"s":[470.85,481.49]}]},"a":{"a":0,"k":[470.85,481.49]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[461.15,484.24]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[445.64,484.24]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[453.39,471.41]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-34,"s":[453.39,471.41],"to":[-3.23,1.83],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":86,"s":[433.99,482.37],"to":null,"ti":null},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":206,"s":[453.39,471.41],"to":[-3.23,1.83],"ti":[0,0]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":326,"s":[433.99,482.37],"to":[0,0],"ti":[-3.23,1.83]},{"t":446,"s":[453.39,471.41]}]},"a":{"a":0,"k":[453.39,471.41]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.01,504.36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[515.5,504.36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.26,491.53]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.26,491.53]},"a":{"a":0,"k":[523.26,491.53]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.56,494.29]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[498.05,494.29]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.8,481.45]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.8,481.45]},"a":{"a":0,"k":[505.8,481.45]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[496.11,484.21]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[480.6,484.21]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.35,471.38]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.35,471.38]},"a":{"a":0,"k":[488.35,471.38]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[478.66,474.13]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[463.14,474.13]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[470.9,461.3]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[470.9,461.3]},"a":{"a":0,"k":[470.9,461.3]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.22,0.43,0.58,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[558.27,499.83]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[542.76,499.88]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.328,0.6715,0.972,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[550.57,487.11]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"o":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"v":[[433.47,470.45],[431.3,473.64],[429.02,486.14],[433.79,490.54],[435.58,488.14],[435.58,471.42]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2024,0.4772,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[116.72,21.92]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[550.51,487.05]},"a":{"a":0,"k":[550.51,487.05]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.07,484.18]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[515.55,484.18]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.31,471.35]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.31,471.35]},"a":{"a":0,"k":[523.31,471.35]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.62,474.1]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[498.1,474.1]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.86,461.27]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.86,461.27]},"a":{"a":0,"k":[505.86,461.27]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[496.16,464.03]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[480.65,464.03]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.41,451.2]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[488.41,451.2]},"a":{"a":0,"k":[488.41,451.2]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[566.03,484.15]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[550.51,484.15]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[558.27,471.32]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[558.27,471.32]},"a":{"a":0,"k":[558.27,471.32]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[548.57,474.07]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[533.06,474.07]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[540.82,461.24]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[540.82,461.24]},"a":{"a":0,"k":[540.82,461.24]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[531.12,463.99]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[515.61,463.99]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.36,451.16]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[523.36,451.16]},"a":{"a":0,"k":[523.36,451.16]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"o":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"v":[[7.76,3.87],[-7.76,12.83],[-7.76,-3.87],[7.76,-12.83]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.52,0.712,0.88,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[513.67,453.92]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"o":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"v":[[7.76,12.83],[-7.76,3.87],[-7.76,-12.83],[7.76,-3.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3015,0.4748,0.5985,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[498.16,453.92]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"o":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"v":[[0,8.96],[-15.51,0],[0,-8.96],[15.51,0]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.84,0.9253,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.91,441.09]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[505.91,441.09]},"a":{"a":0,"k":[505.91,441.09]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":600,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":12,"ty":4,"parent":6,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[138.31,93.41,0],"l":2},"a":{"a":0,"k":[588.35,515.91,0],"l":2},"s":{"a":0,"k":[100,100,100],"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.74,7.12],[-12.33,1.58],[2.74,-7.12],[12.33,-1.58]],"o":[[-2.74,7.12],[-12.33,1.58],[2.74,-7.12],[12.33,-1.58]],"v":[[-2.74,7.12],[-12.33,1.58],[2.74,-7.12],[12.33,-1.58]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.328,0.6715,0.972,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[590.66,513.88]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.54,-2.26],[-7.53,6.44],[-7.53,2.26],[7.54,-6.44]],"o":[[7.54,-2.26],[-7.53,6.44],[-7.53,2.26],[7.54,-6.44]],"v":[[7.54,-2.26],[-7.53,6.44],[-7.53,2.26],[7.54,-6.44]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.22,0.43,0.58,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[595.4,518.62]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[4.8,4.86],[-4.8,-0.68],[-4.8,-4.86],[4.8,0.68]],"o":[[4.8,4.86],[-4.8,-0.68],[-4.8,-4.86],[4.8,0.68]],"v":[[4.8,4.86],[-4.8,-0.68],[-4.8,-4.86],[4.8,0.68]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[583.13,520.2]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[6.91,-6.87],[-7.05,1.2],[2.77,6.87],[7.05,6.87]],"o":[[6.91,-6.87],[-7.05,1.2],[2.77,6.87],[7.05,6.87]],"v":[[6.91,-6.87],[-7.05,1.2],[2.77,6.87],[7.05,6.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1255,0.1529,0.1725,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[580.82,518.25]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":600,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":13,"ty":4,"parent":6,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-20.29,138.42,0],"l":2},"a":{"a":0,"k":[429.76,560.93,0],"l":2},"s":{"a":0,"k":[100,100,100],"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-3.54,9.21],[-15.95,2.05],[3.54,-9.21],[15.95,-2.05]],"o":[[-3.54,9.21],[-15.95,2.05],[3.54,-9.21],[15.95,-2.05]],"v":[[-3.54,9.21],[-15.95,2.05],[3.54,-9.21],[15.95,-2.05]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.328,0.6715,0.972,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[435.71,555.82]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-9.75,0.29],[-9.75,10.96],[9.75,-0.29],[9.75,-10.96]],"o":[[-9.75,0.29],[-9.75,10.96],[9.75,-0.29],[9.75,-10.96]],"v":[[-9.75,0.29],[-9.75,10.96],[9.75,-0.29],[9.75,-10.96]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.22,0.43,0.58,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[441.69,564.51]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[6.21,8.92],[-6.21,1.75],[-6.21,-8.92],[6.21,-1.75]],"o":[[6.21,8.92],[-6.21,1.75],[-6.21,-8.92],[6.21,-1.75]],"v":[[6.21,8.92],[-6.21,1.75],[-6.21,-8.92],[6.21,-1.75]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[425.85,566.44]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[12.57,-1.57],[7.84,-6.54],[-12.56,1.48],[0.14,8.82],[11.53,8.82],[8.01,-1.57]],"o":[[10.17,-4.02],[5.27,-8.82],[-12.56,1.48],[0.14,8.82],[11.53,8.82],[8.01,-1.57]],"v":[[12.57,-1.57],[5.27,-8.82],[-12.56,1.48],[0.14,8.82],[11.53,8.82],[8.01,-1.57]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1255,0.1529,0.1725,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[420.53,566.66]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":600,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":14,"ty":4,"parent":6,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[53.82,163.96,0],"l":2},"a":{"a":0,"k":[503.87,586.46,0],"l":2},"s":{"a":0,"k":[100,100,100],"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.41,5.69],[-9.86,0.23],[0.41,-5.69],[9.86,-0.23]],"o":[[-0.41,5.69],[-9.86,0.23],[0.41,-5.69],[9.86,-0.23]],"v":[[-0.41,5.69],[-9.86,0.23],[0.41,-5.69],[9.86,-0.23]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.328,0.6715,0.972,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[506.15,584.46]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.13,-0.9],[-5.13,5.02],[-5.13,0.9],[5.13,-5.02]],"o":[[5.13,-0.9],[-5.13,5.02],[-5.13,0.9],[5.13,-5.02]],"v":[[5.13,-0.9],[-5.13,5.02],[-5.13,0.9],[5.13,-5.02]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.22,0.43,0.58,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[510.76,589.13]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[4.72,4.79],[-4.72,-0.67],[-4.72,-4.79],[4.72,0.67]],"o":[[4.72,4.79],[-4.72,-0.67],[-4.72,-4.79],[4.72,0.67]],"v":[[4.72,4.79],[-4.72,-0.67],[-4.72,-4.79],[4.72,0.67]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[501.02,589.37]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.62,-7.19],[-7.62,1.61],[2.06,7.19],[6.28,7.19]],"o":[[7.62,-7.19],[-7.62,1.61],[2.06,7.19],[6.28,7.19]],"v":[[7.62,-7.19],[-7.62,1.61],[2.06,7.19],[6.28,7.19]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1255,0.1529,0.1725,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[499.41,587.02]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":600,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":15,"ty":4,"parent":6,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[152.35,122.64,0],"l":2},"a":{"a":0,"k":[602.39,545.15,0],"l":2},"s":{"a":0,"k":[100,100,100],"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.3,4.21],[-7.28,0.17],[0.3,-4.21],[7.28,-0.17]],"o":[[-0.3,4.21],[-7.28,0.17],[0.3,-4.21],[7.28,-0.17]],"v":[[-0.3,4.21],[-7.28,0.17],[0.3,-4.21],[7.28,-0.17]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.328,0.6715,0.972,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[604.06,543.68]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.79,-0.67],[-3.79,3.71],[-3.79,0.67],[3.79,-3.71]],"o":[[3.79,-0.67],[-3.79,3.71],[-3.79,0.67],[3.79,-3.71]],"v":[[3.79,-0.67],[-3.79,3.71],[-3.79,0.67],[3.79,-3.71]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.22,0.43,0.58,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[607.47,547.13]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.49,3.54],[-3.49,-0.49],[-3.49,-3.54],[3.49,0.5]],"o":[[3.49,3.54],[-3.49,-0.49],[-3.49,-3.54],[3.49,0.5]],"v":[[3.49,3.54],[-3.49,-0.49],[-3.49,-3.54],[3.49,0.5]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[600.3,547.31]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.63,-5.32],[-5.63,1.19],[1.52,5.32],[4.64,5.32]],"o":[[5.63,-5.32],[-5.63,1.19],[1.52,5.32],[4.64,5.32]],"v":[[5.63,-5.32],[-5.63,1.19],[1.52,5.32],[4.64,5.32]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1255,0.1529,0.1725,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[599.09,545.56]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":600,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":16,"ty":4,"parent":6,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-52.34,82.74,0],"l":2},"a":{"a":0,"k":[397.7,505.25,0],"l":2},"s":{"a":0,"k":[100,100,100],"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-2.74,7.12],[-12.33,1.58],[2.74,-7.12],[12.33,-1.58]],"o":[[-2.74,7.12],[-12.33,1.58],[2.74,-7.12],[12.33,-1.58]],"v":[[-2.74,7.12],[-12.33,1.58],[2.74,-7.12],[12.33,-1.58]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.328,0.6715,0.972,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[400.07,503.27]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.54,-2.26],[-7.53,6.44],[-7.53,2.26],[7.54,-6.44]],"o":[[7.54,-2.26],[-7.53,6.44],[-7.53,2.26],[7.54,-6.44]],"v":[[7.54,-2.26],[-7.53,6.44],[-7.53,2.26],[7.54,-6.44]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.22,0.43,0.58,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[404.64,507.9]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[4.8,4.86],[-4.8,-0.68],[-4.8,-4.86],[4.8,0.68]],"o":[[4.8,4.86],[-4.8,-0.68],[-4.8,-4.86],[4.8,0.68]],"v":[[4.8,4.86],[-4.8,-0.68],[-4.8,-4.86],[4.8,0.68]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0,0.5333,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[392.54,509.48]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[6.91,-6.87],[-7.05,1.2],[2.77,6.87],[7.05,6.87]],"o":[[6.91,-6.87],[-7.05,1.2],[2.77,6.87],[7.05,6.87]],"v":[[6.91,-6.87],[-7.05,1.2],[2.77,6.87],[7.05,6.87]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1255,0.1529,0.1725,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[390.16,507.59]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":600,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":17,"ty":4,"parent":6,"sr":1,"ks":{"o":{"a":0,"k":20},"r":{"a":0,"k":0},"p":{"a":0,"k":[22.23,92.72,0],"l":2},"a":{"a":0,"k":[0,0,0],"l":2},"s":{"a":0,"k":[100,100,100],"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":-19,"s":[{"i":[[6.42,-52.68],[-96.94,7],[-26.99,47.38],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[32.95,35.69],[96.94,-1.25]],"o":[[6.42,-52.68],[-96.94,7],[-26.99,47.38],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[32.95,35.69],[96.94,-1.25]],"v":[[6.42,-52.68],[-96.94,7],[-26.99,47.38],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[32.95,35.69],[96.94,-1.25]],"c":true}]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":101,"s":[{"i":[[14.41,-57.24],[-113.61,18.18],[-43.66,58.57],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[50.53,45.51],[122.51,4]],"o":[[14.41,-57.24],[-113.61,18.18],[-43.66,58.57],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[50.53,45.51],[122.51,4]],"v":[[14.41,-57.24],[-113.61,18.18],[-43.66,58.57],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[50.53,45.51],[122.51,4]],"c":true}]},{"i":{"x":0.55,"y":1},"o":{"x":0.75,"y":0},"t":221,"s":[{"i":[[6.42,-52.68],[-96.94,7],[-26.99,47.38],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[32.95,35.69],[96.94,-1.25]],"o":[[6.42,-52.68],[-96.94,7],[-26.99,47.38],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[32.95,35.69],[96.94,-1.25]],"v":[[6.42,-52.68],[-96.94,7],[-26.99,47.38],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[32.95,35.69],[96.94,-1.25]],"c":true}]},{"i":{"x":0.25,"y":1},"o":{"x":0.45,"y":0},"t":341,"s":[{"i":[[6.42,-52.68],[-113.61,18.18],[-43.66,58.57],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[32.95,35.69],[96.94,-1.25]],"o":[[6.42,-52.68],[-113.61,18.18],[-43.66,58.57],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[32.95,35.69],[96.94,-1.25]],"v":[[6.42,-52.68],[-113.61,18.18],[-43.66,58.57],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[32.95,35.69],[96.94,-1.25]],"c":true}]},{"t":461,"s":[{"i":[[6.42,-52.68],[-96.94,7],[-26.99,47.38],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[32.95,35.69],[96.94,-1.25]],"o":[[6.42,-52.68],[-96.94,7],[-26.99,47.38],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[32.95,35.69],[96.94,-1.25]],"v":[[6.42,-52.68],[-96.94,7],[-26.99,47.38],[2.92,47.38],[12.1,52.68],[27.45,52.68],[44.98,42.56],[32.95,35.69],[96.94,-1.25]],"c":true}]}]},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1255,0.1529,0.1725,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[23.52,5.59],[13.44,4.67],[24.14,-1.5],[34.2,-0.58]],"o":[[23.52,5.59],[13.44,4.67],[24.14,-1.5],[34.2,-0.58]],"v":[[23.52,5.59],[13.44,4.67],[24.14,-1.5],[34.2,-0.58]],"c":true}},"_render":true},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[47.11,0.61],[48.19,-1.38],[-31.42,-8.59],[-34.75,-6.93],[21.25,-1.77],[10.54,4.41],[-44.86,-0.61],[-48.19,1.04],[33.66,8.59],[34.75,6.6],[26.42,5.85],[37.09,-0.31]],"o":[[47.11,0.61],[48.19,-1.38],[-31.42,-8.59],[-34.75,-6.93],[21.25,-1.77],[10.54,4.41],[-44.86,-0.61],[-48.19,1.04],[33.66,8.59],[34.75,6.6],[26.42,5.85],[37.09,-0.31]],"v":[[47.11,0.61],[48.19,-1.38],[-31.42,-8.59],[-34.75,-6.93],[21.25,-1.77],[10.54,4.41],[-44.86,-0.61],[-48.19,1.04],[33.66,8.59],[34.75,6.6],[26.42,5.85],[37.09,-0.31]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1255,0.1529,0.1725,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[26.31,45.83]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":600,"st":0,"bm":0,"completed":true}],"markers":[],"__complete":true} \ No newline at end of file diff --git a/FE/src/features/game/utils/throttle.ts b/FE/src/features/game/utils/throttle.ts new file mode 100644 index 00000000..27e55dc9 --- /dev/null +++ b/FE/src/features/game/utils/throttle.ts @@ -0,0 +1,16 @@ +export const throttle = void>( + func: T, + limit: number +): ((...args: Parameters) => void) => { + let inThrottle = false; + + return (...args: Parameters): void => { + if (!inThrottle) { + func(...args); + inThrottle = true; + setTimeout(() => { + inThrottle = false; + }, limit); + } + }; +}; diff --git a/FE/src/pages/InfoCard.tsx b/FE/src/pages/InfoCard.tsx new file mode 100644 index 00000000..f7e4e285 --- /dev/null +++ b/FE/src/pages/InfoCard.tsx @@ -0,0 +1,31 @@ +import { Button } from '@mui/material'; +import { FC } from 'react'; +import { useNavigate } from 'react-router-dom'; + +type CardProps = { + title: string; + description: string; + path?: string; + action?: () => void; +}; + +export const InfoCard: FC = ({ title, description, path, action }) => { + const navigate = useNavigate(); + + return ( +
+

{title}

+

{description}

+ +
+ ); +}; diff --git a/FE/src/pages/MainPage.tsx b/FE/src/pages/MainPage.tsx index 4e4f13ae..96fa40fb 100644 --- a/FE/src/pages/MainPage.tsx +++ b/FE/src/pages/MainPage.tsx @@ -1,8 +1,11 @@ -import { HeaderBar } from '@/components/HeaderBar'; -import { Button } from '@mui/material'; +// import { HeaderBar } from '@/components/HeaderBar'; import { useNavigate } from 'react-router-dom'; -import { useState, useEffect } from 'react'; +import { useState, useEffect, FC } from 'react'; import { socketService } from '@/api/socket'; +import Lottie from 'lottie-react'; +import mainCube from '../assets/lottie/mainLottie.json'; +import { InfoCard } from './InfoCard'; + export const MainPage = () => { const navigate = useNavigate(); const [isLoggedIn, setIsLoggedIn] = useState(false); @@ -20,41 +23,95 @@ export const MainPage = () => { const handleQuizCreate = () => { if (isLoggedIn) navigate('/quiz/setup'); - else navigate('/login'); + else { + alert('로그인이 필요한 서비스 입니다.'); + navigate('/login'); + } + }; + + type ActionButtonProps = { + label: string; + navigatePath: string; }; + const ActionButton: FC = ({ label, navigatePath }) => { + return ( +
navigate(navigatePath)} + > + {label} +
+ ); + }; return ( -
- -
- -
- - - - - {isLoggedIn ? ( - - ) : ( - - )} +
+
+

QuizGround

+
+ +
+
+ + {/*소개 및 카드 섹션 */} +
+
+
+

퀴즈 게임을 시작해보세요!

+

+ 다양한 퀴즈와 함께 즐겁게 학습하고, 친구들과 경쟁해보세요. +
+ 지금 바로 퀴즈를 만들어보세요! +

+
+
+ +
+
+ +
+ {cardData.map((card, index) => ( + + ))}
); }; + +const cardData = [ + { + title: '게임방 만들기', + description: '새로운 퀴즈 방을 만들고 친구들과 함께 퀴즈를 풀어보세요.', + path: '/game/setup' + }, + { + title: '대기방 목록', + description: '현재 대기 중인 방 목록을 확인하고 대기실로 입장하세요.', + path: '/game/lobby' + }, + { + title: 'PIN으로 방 찾기', + description: '특정 PIN 번호로 방을 찾아서 바로 입장하세요.', + path: '/pin' + }, + { + title: '퀴즈 생성', + description: '퀴즈를 만들어 친구들과 함께 즐겨보세요.', + action: 'handleQuizCreate' // Navigate 대신 특정 핸들러 호출 + } +]; From 336d2a332ef289daf3e53a5138adb7808425c71f Mon Sep 17 00:00:00 2001 From: JunWoo Park <97427744+always97@users.noreply.github.com> Date: Wed, 27 Nov 2024 00:06:15 +0900 Subject: [PATCH 16/58] =?UTF-8?q?feat:=20=EA=B2=8C=EC=9E=84=EC=83=9D?= =?UTF-8?q?=EC=84=B1=ED=8E=98=EC=9D=B4=EC=A7=80=20=EB=94=94=EC=9E=90?= =?UTF-8?q?=EC=9D=B8=20=EA=B0=9C=EC=84=A0=20=EB=B0=8F=20=EC=B5=9C=EB=8C=80?= =?UTF-8?q?=EC=9D=B8=EC=9B=90=20=EC=84=A4=EC=A0=95=20ux=20=EA=B0=9C?= =?UTF-8?q?=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/pages/GameSetupPage.tsx | 180 +++++++++++-------- 1 file changed, 110 insertions(+), 70 deletions(-) diff --git a/FE/src/features/game/pages/GameSetupPage.tsx b/FE/src/features/game/pages/GameSetupPage.tsx index 1dd42c97..8831e445 100644 --- a/FE/src/features/game/pages/GameSetupPage.tsx +++ b/FE/src/features/game/pages/GameSetupPage.tsx @@ -1,13 +1,4 @@ -import { - Button, - Slider, - Switch, - FormControl, - FormLabel, - RadioGroup, - FormControlLabel, - Radio -} from '@mui/material'; +import { Button, Slider, Switch } from '@mui/material'; import { useEffect, useState } from 'react'; import { socketService, useSocketEvent } from '@/api/socket'; import RoomConfig from '@/constants/roomConfig'; @@ -60,76 +51,125 @@ export const GameSetupPage = () => { }; return ( -
-
- + QuizGround + +
+
+ {/* 뒤로가기 버튼 */} +
+ +
+ -
- 최대인원 - {maxPlayerCount} + +
+ 최대 인원 +
+ {RoomConfig.MIN_PLAYERS} + setMaxPlayerCount(newValue as number)} + className="flex-1 mx-4" + sx={{ + '& .MuiSlider-thumb': { + backgroundColor: '#1E40AF' // 파란색 슬라이더 thumb + } + }} + /> + {RoomConfig.MAX_PLAYERS} +
+
+ + { + const value = Number(e.target.value); + if (value >= RoomConfig.MIN_PLAYERS && value <= RoomConfig.MAX_PLAYERS) { + setMaxPlayerCount(value); + } + }} + className="w-16 text-right border border-gray-300 rounded-md px-2 py-1 focus:outline-none focus:ring-2 focus:ring-blue-500" + /> +
- setMaxPlayerCount(newValue as number)} - className="w-full mb-4" - sx={{ - '& .MuiSlider-thumb': { - backgroundColor: '#1E40AF' // 파란색 슬라이더 thumb - } - }} - /> - - - 게임 모드 선택 - - +
+ 게임 모드 선택 +
+ + +
+
+
+ 방 공개 여부 + setRoomPublic(newValue)} + sx={{ + '& .MuiSwitch-switchBase.Mui-checked': { + color: '#1E40AF' // 파란색 스위치 + }, + '& .MuiSwitch-track': { + backgroundColor: '#1E40AF' + } + }} + /> +
+
+ +
+ + 방 만들기 + +
); From 61093b62cf5b174e0ebde65b4694279825ef76cd Mon Sep 17 00:00:00 2001 From: ijun17 Date: Wed, 27 Nov 2024 00:40:16 +0900 Subject: [PATCH 17/58] =?UTF-8?q?fix:=20tailwind=20=EC=84=A4=EC=A0=95=20dr?= =?UTF-8?q?opShadow=EB=A5=BC=20boxShadow=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/tailwind.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FE/tailwind.config.js b/FE/tailwind.config.js index f0462dd8..377b0f98 100644 --- a/FE/tailwind.config.js +++ b/FE/tailwind.config.js @@ -33,7 +33,7 @@ export default { m: '1rem', s: '0.5rem' }, - dropShadow: { + boxShadow: { default: '0 4px 2px rgba(20, 33, 43, 0.02)' } } @@ -50,7 +50,7 @@ export default { '.component-popup': { borderRadius: theme('borderRadius.m'), backgroundColor: theme('backgroundColor.surface.default'), - dropShadow: theme('dropShadow.default') + boxShadow: theme('boxShadow.default') }, '.center': { display: 'flex', From 6ef6ac3395f60ff6e2865f2e514255aa83384beb Mon Sep 17 00:00:00 2001 From: ijun17 Date: Wed, 27 Nov 2024 00:41:19 +0900 Subject: [PATCH 18/58] =?UTF-8?q?design:=20=EA=B5=AD=EB=AF=BC=EC=97=B0?= =?UTF-8?q?=EA=B8=88=20=ED=8F=B0=ED=8A=B8=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/index.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/FE/src/index.css b/FE/src/index.css index ca11f3a7..c1a6024b 100644 --- a/FE/src/index.css +++ b/FE/src/index.css @@ -1,4 +1,10 @@ -@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css'); +@font-face { + font-family: 'NPSfontBold'; + src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2310@1.0/NPSfontBold.woff2') + format('woff2'); + font-weight: 700; + font-style: normal; +} @tailwind base; @tailwind components; @@ -6,7 +12,7 @@ @layer base { html { - font-family: 'Pretendard', ui-sans-serif, system-ui; + font-family: 'NPSfontBold', ui-sans-serif, system-ui; box-sizing: border-box; color: #5f6e76; } From 05793e68ffcc98775c215925de06f39cde2d9ffa Mon Sep 17 00:00:00 2001 From: ijun17 Date: Wed, 27 Nov 2024 00:49:32 +0900 Subject: [PATCH 19/58] =?UTF-8?q?feat:=20=EB=B3=80=EA=B2=BD=EB=90=9C=20API?= =?UTF-8?q?=20=EB=AA=85=EC=84=B8=EC=97=90=20=EB=94=B0=EB=9D=BC=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 --- FE/src/api/socket/mocks/SocketMock.ts | 43 ++++++++------ FE/src/api/socket/socket.ts | 63 +++++++++------------ FE/src/features/game/data/socketListener.ts | 41 ++++++++------ 3 files changed, 77 insertions(+), 70 deletions(-) diff --git a/FE/src/api/socket/mocks/SocketMock.ts b/FE/src/api/socket/mocks/SocketMock.ts index 866b73a1..924f0d75 100644 --- a/FE/src/api/socket/mocks/SocketMock.ts +++ b/FE/src/api/socket/mocks/SocketMock.ts @@ -6,8 +6,27 @@ type SocketEvent = keyof SocketDataMap; export class SocketMock { private listenerSet: Record void)[]> = {}; private onAnyListenerList: ((event: string, ...args: unknown[]) => void)[] = []; + initialrized: Promise; constructor() { - console.log(`Mock WebSocket 연결`); + console.log(`%c Mock WebSocket 연결`, 'color:yellow; font-weight:bold;'); + this.initialrized = new Promise((resolve) => { + this.delay(0).then(() => { + resolve(); + }); + }); + this.initialrized.then(() => { + const currentPlayer = { + playerId: this.id, + playerName: 'Me', + playerPosition: [0.5, 0.5] as [number, number] + }; + this.emitServer('joinRoom', { players: [currentPlayer] }); + this.addPlayers([currentPlayer]); + this.emitServer('selfId', { playerId: this.id }); + this.emitServer('setPlayerName', { playerId: this.id, playerName: 'Me' }); + }); + + // } } /** @@ -28,12 +47,10 @@ export class SocketMock { this.onAnyListenerList.push(listener); } emit(event: T, data: SocketDataMap[T]['request']) { - //여기서 서버에 데이터 전송 + console.log(`%c SERVER_SOCKET[${event}]`, 'background:blue; color:white', data); switch (event) { case SocketEvents.CHAT_MESSAGE: return this.handleChat(data as SocketDataMap[typeof SocketEvents.CHAT_MESSAGE]['request']); - case SocketEvents.JOIN_ROOM: - return this.handleJoin(data as SocketDataMap[typeof SocketEvents.JOIN_ROOM]['request']); case SocketEvents.UPDATE_POSITION: return this.handlePosition( data as SocketDataMap[typeof SocketEvents.UPDATE_POSITION]['request'] @@ -119,18 +136,6 @@ export class SocketMock { await this.delay(0.1); this.chatMessage(this.id, data.message); } - private async handleJoin(data: SocketDataMap[typeof SocketEvents.JOIN_ROOM]['request']) { - if (this.getPlayer(this.id)) return; - await this.delay(0.1); - const currentPlayer: (typeof this.players)[string] = { - playerId: this.id, - playerName: data.playerName, - playerPosition: [0.5, 0.5] - }; - this.emitServer(SocketEvents.JOIN_ROOM, { players: this.getPlayerList() }); - this.emitServer(SocketEvents.JOIN_ROOM, { players: [currentPlayer] }); - this.addPlayers([currentPlayer]); - } private async handlePosition( data: SocketDataMap[typeof SocketEvents.UPDATE_POSITION]['request'] ) { @@ -172,6 +177,7 @@ export class SocketMock { } addPlayers(players: Array) { players.forEach((p) => (this.players[p.playerId] = p)); + this.emitServer('joinRoom', { players }); } setQuiz(quiz: string, quizSecond: number, choiceList: string[]) { const COUNT_DOWN_TIME = 3000; @@ -225,7 +231,8 @@ export class SocketMock { }); } - createDummyPlayer(count: number) { + async createDummyPlayer(count: number) { + await this.initialrized; const playerCount = Object.keys(this.players).length; this.addPlayers( Array(count) @@ -239,6 +246,7 @@ export class SocketMock { } async chatRandom(testSec: number, chatPerSecPerPlyaer: number = 1) { + await this.initialrized; const playerCount = this.getPlayerList().length; for (let j = 0; j < testSec; j++) { for (const player of this.getPlayerList()) { @@ -250,6 +258,7 @@ export class SocketMock { } async moveRandom(testSec: number, movePerSecPerPlyaer: number = 1) { + await this.initialrized; const playerCount = this.getPlayerList().length; for (let j = 0; j < testSec; j++) { for (const player of this.getPlayerList()) { diff --git a/FE/src/api/socket/socket.ts b/FE/src/api/socket/socket.ts index f06eca89..5d8db204 100644 --- a/FE/src/api/socket/socket.ts +++ b/FE/src/api/socket/socket.ts @@ -42,20 +42,20 @@ class SocketService { this.handlers = []; } - async connect() { + async connect(header: { 'create-room'?: string; 'game-id'?: string }) { if (this.isActive()) return; - this.socket = io(this.url) as SocketInterface; - await new Promise((resolve, reject) => { - this.socket.on('connect', () => resolve()); - this.socket.on('error', () => reject()); - }); - this.initHandler(); - return; - } - - async connectMock(gameId: keyof typeof mockMap) { - if (this.isActive()) return; - this.socket = new mockMap[gameId]() as SocketInterface; + const gameId = header['game-id']; + if (gameId && gameId in mockMap) { + // mock과 연결 + this.socket = new mockMap[gameId as keyof typeof mockMap]() as SocketInterface; + } else { + // 소켓 연결 + this.socket = io(this.url, { query: header }) as SocketInterface; + await new Promise((resolve, reject) => { + this.socket.on('connect', () => resolve()); + this.socket.on('error', () => reject()); + }); + } this.initHandler(); } @@ -70,27 +70,13 @@ class SocketService { } disconnect() { - this.socket.disconnect(); + if (this.isActive()) this.socket.disconnect(); } isActive() { return this.socket && this.socket.connected; } - getSocketId() { - return this.socket.id; - } - - // deprecated - onPermanently( - event: T, - callback: (data: SocketDataMap[T]['response']) => void - ) { - const handler = () => this.socket.on(event, callback); - this.handlers.push(handler); - if (this.isActive()) handler(); - } - on(event: T, callback: (data: SocketDataMap[T]['response']) => void) { if (this.isActive()) this.socket.on(event, callback); if (!this.handlerMap[event]) this.handlerMap[event] = []; @@ -107,15 +93,22 @@ class SocketService { this.socket.emit(event, data); } - async createRoom(payload: SocketDataMap['createRoom']['request']) { - await this.connect(); - this.socket.emit(SocketEvents.CREATE_ROOM, payload); + async createRoom(option: { + title: string; + gameMode: 'RANKING' | 'SURVIVAL'; + maxPlayerCount: number; + isPublic: boolean; + }) { + this.disconnect(); + await this.connect({ + 'create-room': Object.entries(option) + .map(([key, value]) => key + '=' + value) + .join(';') + }); } - async joinRoom(gameId: string, playerName: string) { - if (gameId in mockMap) this.connectMock(gameId as keyof typeof mockMap); - else if (!this.isActive()) await this.connect(); - this.socket.emit(SocketEvents.JOIN_ROOM, { gameId, playerName }); + async joinRoom(gameId: string) { + await this.connect({ 'game-id': gameId }); } kickRoom(gameId: string, kickPlayerId: string) { diff --git a/FE/src/features/game/data/socketListener.ts b/FE/src/features/game/data/socketListener.ts index e4336a6a..30f71214 100644 --- a/FE/src/features/game/data/socketListener.ts +++ b/FE/src/features/game/data/socketListener.ts @@ -6,30 +6,24 @@ import { useRoomStore } from './store/useRoomStore'; import GameState from '@/constants/gameState'; import QuizState from '@/constants/quizState'; import { getQuizSetDetail } from '@/api/rest/quizApi'; +import { getEmoji } from '../utils/emoji'; // chat socketService.on('chatMessage', (data) => { useChatStore.getState().addMessage(data); }); -socketService.on('disconnect', () => { - useChatStore.getState().reset(); -}); - // player socketService.on('joinRoom', (data) => { - const { addPlayers, setCurrentPlayerId } = usePlayerStore.getState(); + const { addPlayers } = usePlayerStore.getState(); const newPlayers = data.players.map((player) => ({ ...player, playerScore: 0, isAlive: true, - isAnswer: true + isAnswer: true, + emoji: getEmoji() })); addPlayers(newPlayers); - const socketId = socketService.getSocketId(); - if (newPlayers.length > 0 && newPlayers[0].playerId === socketId) { - setCurrentPlayerId(socketId); - } }); socketService.on('updatePosition', (data) => { @@ -49,7 +43,8 @@ socketService.on('endQuizTime', (data) => { playerPosition: _p?.playerPosition || [0, 0], playerScore: p.score, isAnswer: p.isAnswer, - isAlive: _p?.isAlive || false + isAlive: _p?.isAlive || false, + emoji: _p?.emoji || 'o' }; }) ); @@ -72,15 +67,24 @@ socketService.on('endQuizTime', (data) => { }); socketService.on('endGame', (data) => { - usePlayerStore.getState().setIsHost(data.hostId === socketService.getSocketId()); + usePlayerStore.getState().setIsHost(data.hostId === usePlayerStore.getState().currentPlayerId); }); socketService.on('exitRoom', (data) => { usePlayerStore.getState().removePlayer(data.playerId); }); -socketService.on('disconnect', () => { - usePlayerStore.getState().reset(); +socketService.on('selfId', (data) => { + const playerName = usePlayerStore.getState().players.get(data.playerId); + usePlayerStore.getState().setCurrentPlayerId(data.playerId); + usePlayerStore.getState().setCurrentPlayerName(String(playerName)); +}); + +socketService.on('setPlayerName', (data) => { + usePlayerStore.getState().setPlayerName(data.playerId, data.playerName); + if (data.playerId === usePlayerStore.getState().currentPlayerId) { + usePlayerStore.getState().setCurrentPlayerName(data.playerName); + } }); // Quiz @@ -105,10 +109,6 @@ socketService.on('updateRoomQuizset', async (data) => { useQuizStore.getState().setQuizSet(String(res?.title), String(res?.category)); }); -socketService.on('disconnect', () => { - useQuizStore.getState().reset(); -}); - // Room socketService.on('createRoom', (data) => { @@ -132,6 +132,11 @@ socketService.on('kickRoom', () => { // 메인페이지 or 로비로 이동시키기? }); +// 소켓 연결 해제시 초기화 + socketService.on('disconnect', () => { useRoomStore.getState().reset(); + usePlayerStore.getState().reset(); + useChatStore.getState().reset(); + useQuizStore.getState().reset(); }); From 55de08fd66869b55969ae857f4928ed29eeac282 Mon Sep 17 00:00:00 2001 From: JunWoo Park <97427744+always97@users.noreply.github.com> Date: Wed, 27 Nov 2024 00:49:37 +0900 Subject: [PATCH 20/58] =?UTF-8?q?style:=20PIN=ED=8E=98=EC=9D=B4=EC=A7=80?= =?UTF-8?q?=20=EB=94=94=EC=9E=90=EC=9D=B8=20=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/pages/PinPage.tsx | 75 ++++++++++++++----------- FE/src/features/lobby/GameLobbyPage.tsx | 2 +- FE/src/features/lobby/LobbyList.tsx | 38 ++++++++----- 3 files changed, 68 insertions(+), 47 deletions(-) diff --git a/FE/src/features/game/pages/PinPage.tsx b/FE/src/features/game/pages/PinPage.tsx index 639bf7ce..5220b195 100644 --- a/FE/src/features/game/pages/PinPage.tsx +++ b/FE/src/features/game/pages/PinPage.tsx @@ -1,14 +1,17 @@ import { socketService } from '@/api/socket'; -import { HeaderBar } from '@/components/HeaderBar'; +// import { HeaderBar } from '@/components/HeaderBar'; import { TextInput } from '@/components/TextInput'; import { getRandomNickname } from '@/features/game/utils/nickname'; import { useEffect, useState } from 'react'; +import { useNavigate } from 'react-router-dom'; export const PinPage = () => { const [nickname, setNickname] = useState(''); const [pin, setPin] = useState(''); const [errors, setErrors] = useState({ nickname: '', pin: '' }); + const navigate = useNavigate(); + useEffect(() => { setNickname(getRandomNickname()); }, []); @@ -35,40 +38,48 @@ export const PinPage = () => { }; return ( - <> - -
-
-

방 들어가기

+
+ {/* Header */} +
+

navigate('/')} + > + QuizGround +

+
+ +
+

PIN 번호로 입장

- { - setNickname(e.target.value); - if (errors.nickname) setErrors((prev) => ({ ...prev, nickname: '' })); - }} - error={errors.nickname} - /> + { + setNickname(e.target.value); + if (errors.nickname) setErrors((prev) => ({ ...prev, nickname: '' })); + }} + error={errors.nickname} + /> - { - setPin(e.target.value); - if (errors.pin) setErrors((prev) => ({ ...prev, pin: '' })); - }} - error={errors.pin} - /> + { + setPin(e.target.value); + if (errors.pin) setErrors((prev) => ({ ...prev, pin: '' })); + }} + error={errors.pin} + className="mt-4" + /> - -
+
- +
); }; diff --git a/FE/src/features/lobby/GameLobbyPage.tsx b/FE/src/features/lobby/GameLobbyPage.tsx index b92b289e..c16a2b16 100644 --- a/FE/src/features/lobby/GameLobbyPage.tsx +++ b/FE/src/features/lobby/GameLobbyPage.tsx @@ -45,7 +45,7 @@ export const GameLobbyPage = () => { setIsLoading(false); } }, - [isLoading] + [isLoading, paging] ); useEffect(() => { diff --git a/FE/src/features/lobby/LobbyList.tsx b/FE/src/features/lobby/LobbyList.tsx index 8bd771ac..3666d8e0 100644 --- a/FE/src/features/lobby/LobbyList.tsx +++ b/FE/src/features/lobby/LobbyList.tsx @@ -20,32 +20,42 @@ export const LobbyList: React.FC = ({ rooms }) => { navigate(`/game/${gameId}`); }; return ( -
-
-

대기실 목록

+
+
+

게임 대기실 목록

-
+
{rooms.map((room) => (

{room.title}

-

{room.gameMode}

-

- {room.currentPlayerCount}/{room.maxPlayerCount} Players -

-

- Quiz: {room.quizSetTitle} -

+ +
+

+ 게임 모드: {room.gameMode} +

+

+ 인원: {room.currentPlayerCount} / {room.maxPlayerCount} +

+

+ 퀴즈 세트: {room.quizSetTitle} +

+
))} + {!rooms.length && ( +
+ 현재 표시할 방이 없습니다. +
+ )}
); From aebbe885fdb42658a9c87f908eb49639acdf20a5 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Wed, 27 Nov 2024 00:50:09 +0900 Subject: [PATCH 21/58] =?UTF-8?q?feat:=2056=20=EC=A2=85=EB=A5=98=EC=9D=98?= =?UTF-8?q?=20=EC=9D=B4=EB=AA=A8=ED=8B=B0=EC=BD=98=20=EB=B0=98=ED=99=98?= =?UTF-8?q?=ED=95=98=EB=8A=94=20=ED=95=A8=EC=88=98=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/utils/emoji.ts | 37 +++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 FE/src/features/game/utils/emoji.ts diff --git a/FE/src/features/game/utils/emoji.ts b/FE/src/features/game/utils/emoji.ts new file mode 100644 index 00000000..6d0f96e3 --- /dev/null +++ b/FE/src/features/game/utils/emoji.ts @@ -0,0 +1,37 @@ +let emojiPool: string[] = []; +let front = 0; + +export function resetEmojiPool(stringSeed: string) { + initialSeed(stringSeed); + emojiPool = Array(56) + .fill(null) + .map((_, i) => getEmojiByNumber(i)) + .sort(() => seededRandom() - 0.5); +} + +export function getEmoji() { + return emojiPool[front++ % emojiPool.length]; +} +function getEmojiByNumber(n: number) { + const base = 0x1f600; // 😀 시작점 + const emojiCode = base + n; // n번째 이모지 + const emoji = String.fromCodePoint(emojiCode); + return emoji; +} + +let seed = 0; +function initialSeed(str: string) { + seed = 0; + for (let i = 0; i < str.length; i++) { + seed = (seed * 31 + str.charCodeAt(i)) & 0xffffffff; + } +} + +function seededRandom() { + const m = 0x80000000; + const a = 1103515245; + const c = 12345; + + seed = (a * seed + c) % m; + return seed / m; +} From a0a014a8476d4428bd7306d1a0c8cf2c6a9710e5 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Wed, 27 Nov 2024 00:52:43 +0900 Subject: [PATCH 22/58] =?UTF-8?q?feat:=20API=20=EB=AA=85=EC=84=B8=EC=97=90?= =?UTF-8?q?=20=EB=94=B0=EB=9D=BC=20=EC=86=8C=EC=BC=93=20=EC=9D=B4=EB=B2=A4?= =?UTF-8?q?=ED=8A=B8=20=ED=83=80=EC=9E=85=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/api/socket/socketEventTypes.ts | 82 +++++++++++++++++---------- 1 file changed, 52 insertions(+), 30 deletions(-) diff --git a/FE/src/api/socket/socketEventTypes.ts b/FE/src/api/socket/socketEventTypes.ts index e91d7726..2decce93 100644 --- a/FE/src/api/socket/socketEventTypes.ts +++ b/FE/src/api/socket/socketEventTypes.ts @@ -23,12 +23,12 @@ type UpdatePositionResponse = { }; // 게임방 생성 타입 -type CreateRoomRequest = { - title: string; - gameMode: 'RANKING' | 'SURVIVAL'; - maxPlayerCount: number; - isPublic: boolean; -}; +// type CreateRoomRequest = { +// title: string; +// gameMode: 'RANKING' | 'SURVIVAL'; +// maxPlayerCount: number; +// isPublic: boolean; +// }; type CreateRoomResponse = { gameId: string; // PIN @@ -63,10 +63,10 @@ type UpdateRoomQuizsetResponse = { }; // 게임방 입장 타입 -type JoinRoomRequest = { - gameId: string; - playerName: string; -}; +// type JoinRoomRequest = { +// gameId: string; +// playerName: string; +// }; type JoinRoomResponse = { players: Array<{ @@ -76,6 +76,19 @@ type JoinRoomResponse = { }>; }; +type getSelfIdResponse = { + playerId: string; +}; + +type setPlayerNameRequest = { + playerName: string; +}; + +type setPlayerNameResponse = { + playerId: string; + playerName: string; +}; + // 게임 시작 타입 type StartGameRequest = { gameId: string; @@ -83,14 +96,14 @@ type StartGameRequest = { type StartGameResponse = Record; // 빈 객체 -// 게임 정지 타입 -type StopGameRequest = { - gameId: string; -}; +// // 게임 정지 타입 +// type StopGameRequest = { +// gameId: string; +// }; -type StopGameResponse = { - status: string; -}; +// type StopGameResponse = { +// status: string; +// }; type EndGameRequest = { gameId: string; @@ -114,9 +127,9 @@ type StartQuizTimeEvent = { }; // 게임 점수 업데이트 타입 -type UpdateScoreEvent = { - scores: Map; // Map -}; +// type UpdateScoreEvent = { +// scores: Map; // Map +// }; // 게임방 퇴장 타입 type ExitRoomEvent = { @@ -127,6 +140,7 @@ type KickRoomRequest = { gameId: string; kickPlayerId: string; }; + type KickRoomResponse = { playerId: string; }; @@ -142,7 +156,7 @@ export type SocketDataMap = { response: UpdatePositionResponse; }; createRoom: { - request: CreateRoomRequest; + request: null; response: CreateRoomResponse; }; updateRoomOption: { @@ -154,17 +168,25 @@ export type SocketDataMap = { response: UpdateRoomQuizsetResponse; }; joinRoom: { - request: JoinRoomRequest; + request: null; response: JoinRoomResponse; }; + selfId: { + request: null; + response: getSelfIdResponse; + }; + setPlayerName: { + request: setPlayerNameRequest; + response: setPlayerNameResponse; + }; startGame: { request: StartGameRequest; response: StartGameResponse; }; - stopGame: { - request: StopGameRequest; - response: StopGameResponse; - }; + // stopGame: { + // request: StopGameRequest; + // response: StopGameResponse; + // }; endQuizTime: { request: null; response: EndQuizTimeEvent; @@ -173,10 +195,10 @@ export type SocketDataMap = { request: null; response: StartQuizTimeEvent; }; - updateScore: { - request: null; - response: UpdateScoreEvent; - }; + // updateScore: { + // request: null; + // response: UpdateScoreEvent; + // }; exitRoom: { request: null; response: ExitRoomEvent; From 790c5b5132e2ee231afc2b74ced31bc6e9be60a8 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Wed, 27 Nov 2024 00:53:05 +0900 Subject: [PATCH 23/58] =?UTF-8?q?style:=20=EC=86=8C=EC=BC=93=20=EC=9D=B4?= =?UTF-8?q?=EB=B2=A4=ED=8A=B8=20=ED=83=80=EC=9E=85=20=EB=B6=88=ED=95=84?= =?UTF-8?q?=EC=9A=94=ED=95=9C=20=EC=A3=BC=EC=84=9D=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/api/socket/socketEventTypes.ts | 36 --------------------------- 1 file changed, 36 deletions(-) diff --git a/FE/src/api/socket/socketEventTypes.ts b/FE/src/api/socket/socketEventTypes.ts index 2decce93..3846147f 100644 --- a/FE/src/api/socket/socketEventTypes.ts +++ b/FE/src/api/socket/socketEventTypes.ts @@ -22,14 +22,6 @@ type UpdatePositionResponse = { playerPosition: [number, number]; }; -// 게임방 생성 타입 -// type CreateRoomRequest = { -// title: string; -// gameMode: 'RANKING' | 'SURVIVAL'; -// maxPlayerCount: number; -// isPublic: boolean; -// }; - type CreateRoomResponse = { gameId: string; // PIN }; @@ -62,12 +54,6 @@ type UpdateRoomQuizsetResponse = { quizCount: number; }; -// 게임방 입장 타입 -// type JoinRoomRequest = { -// gameId: string; -// playerName: string; -// }; - type JoinRoomResponse = { players: Array<{ playerId: string; // socketId @@ -96,15 +82,6 @@ type StartGameRequest = { type StartGameResponse = Record; // 빈 객체 -// // 게임 정지 타입 -// type StopGameRequest = { -// gameId: string; -// }; - -// type StopGameResponse = { -// status: string; -// }; - type EndGameRequest = { gameId: string; }; @@ -126,11 +103,6 @@ type StartQuizTimeEvent = { startTime: number; //timestamp }; -// 게임 점수 업데이트 타입 -// type UpdateScoreEvent = { -// scores: Map; // Map -// }; - // 게임방 퇴장 타입 type ExitRoomEvent = { playerId: string; @@ -183,10 +155,6 @@ export type SocketDataMap = { request: StartGameRequest; response: StartGameResponse; }; - // stopGame: { - // request: StopGameRequest; - // response: StopGameResponse; - // }; endQuizTime: { request: null; response: EndQuizTimeEvent; @@ -195,10 +163,6 @@ export type SocketDataMap = { request: null; response: StartQuizTimeEvent; }; - // updateScore: { - // request: null; - // response: UpdateScoreEvent; - // }; exitRoom: { request: null; response: ExitRoomEvent; From b9c0dfc927cb9fbc11693d8ed0fac8c4d55b78bf Mon Sep 17 00:00:00 2001 From: ijun17 Date: Wed, 27 Nov 2024 00:54:56 +0900 Subject: [PATCH 24/58] =?UTF-8?q?feat:=20=ED=94=8C=EB=A0=88=EC=9D=B4?= =?UTF-8?q?=EC=96=B4=20=EC=9D=B4=EB=AA=A8=EC=A7=80=20=EB=A0=8C=EB=8D=94?= =?UTF-8?q?=EB=A7=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../game/components/ParticipantDisplay.tsx | 160 ++++++++++-------- FE/src/features/game/components/Player.tsx | 13 +- 2 files changed, 100 insertions(+), 73 deletions(-) diff --git a/FE/src/features/game/components/ParticipantDisplay.tsx b/FE/src/features/game/components/ParticipantDisplay.tsx index eed350f4..ae427bbc 100644 --- a/FE/src/features/game/components/ParticipantDisplay.tsx +++ b/FE/src/features/game/components/ParticipantDisplay.tsx @@ -3,6 +3,7 @@ import GameState from '@/constants/gameState'; import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; import { useRoomStore } from '@/features/game/data/store/useRoomStore'; import { motion } from 'framer-motion'; +import { useCallback, useMemo } from 'react'; type ParticipantDisplayProps = { gameState: keyof typeof GameState; @@ -10,105 +11,122 @@ type ParticipantDisplayProps = { const ParticipantDisplay: React.FC = ({ gameState }) => { const players = usePlayerStore((state) => state.players); - const playerCount = usePlayerStore((state) => state.players.size); const maxPlayerCount = useRoomStore((state) => state.maxPlayerCount); const currentPlayerId = usePlayerStore((state) => state.currentPlayerId); const isHost = usePlayerStore((state) => state.isHost); const gameMode = useRoomStore((state) => state.gameMode); const gameId = useRoomStore((state) => state.gameId); - const handleKick = (playerId: string) => { - socketService.kickRoom(gameId, playerId); - }; - - // 대기 모드일 때 참가자 목록 표시 - const renderWaitingMode = () => ( -
- {Array.from(players).map(([, player], i) => ( -
-
{i + 1 + '. ' + player.playerName}
- {isHost && currentPlayerId !== player.playerId && ( - - )} -
- ))} -
+ const handleKick = useCallback( + (playerId: string) => { + socketService.kickRoom(gameId, playerId); + }, + [gameId] ); - // 진행 모드일 때 랭킹 현황 표시 - const renderProgressRankingMode = () => ( -
- {Array.from(players) - .sort(([, a], [, b]) => b.playerScore - a.playerScore) // 점수 내림차순 - .map(([, player], i) => ( - ( +
+ {Array.from(players).map(([, player]) => ( +
-
{i + 1 + '. ' + player.playerName}
+
{player.emoji + ' ' + player.playerName}
+ {isHost && currentPlayerId !== player.playerId && ( + + )} +
+ ))} +
+ ), + [players, currentPlayerId, handleKick, isHost] + ); + + // 진행 모드일 때 랭킹 현황 표시 + const renderProgressRankingMode = useCallback( + () => ( +
+ {Array.from(players) + .sort(([, a], [, b]) => b.playerScore - a.playerScore) // 점수 내림차순 + .map(([, player]) => ( - {player.emoji + ' ' + player.playerName}
+ - {player.playerScore} - + + {player.playerScore} + +
- - ))} -
+ ))} +
+ ), + [players] ); // 진행 모드일 때 생존자 표시 - const renderProgressSurvivalMode = () => ( -
- {Array.from(players) - .filter(([, player]) => player.isAlive) - .map(([, player], i) => ( - -
- {i + 1 + '. ' + player.playerName} -
-
- ))} -
+ const renderProgressSurvivalMode = useCallback( + () => ( +
+ {Array.from(players) + .filter(([, player]) => player.isAlive) + .map(([, player]) => ( + +
+ {player.emoji + ' ' + player.playerName} +
+
+ ))} +
+ ), + [players] + ); + + const playerList = useMemo( + () => + gameState === GameState.WAIT + ? renderWaitingMode() + : gameMode === 'SURVIVAL' + ? renderProgressSurvivalMode() + : renderProgressRankingMode(), + [gameState, gameMode, renderProgressRankingMode, renderProgressSurvivalMode, renderWaitingMode] ); return (
{gameState === GameState.WAIT - ? `참가자 [${playerCount}/${maxPlayerCount}]` + ? `참가자 [${players.size}/${maxPlayerCount}]` : gameMode === 'SURVIVAL' ? '생존자' : `랭킹 현황`}
- {gameState === GameState.WAIT - ? renderWaitingMode() - : gameMode === 'SURVIVAL' - ? renderProgressSurvivalMode() - : renderProgressRankingMode()} + {playerList}
); }; diff --git a/FE/src/features/game/components/Player.tsx b/FE/src/features/game/components/Player.tsx index a0acfbbc..1d0ccd85 100644 --- a/FE/src/features/game/components/Player.tsx +++ b/FE/src/features/game/components/Player.tsx @@ -89,7 +89,13 @@ export const Player = ({ playerId, boardSize, isCurrent }: Props) => { }} onClick={(e) => e.preventDefault()} > -
+
{/* 정답 시 정답 이펙트 5초 켜졌다가 사라짐 */} {showEffect && (
{ /> )} {/*
*/} -
{quizState === 'end' && !player.isAnswer ? '😭' : '😃'}
+
+ {quizState === 'end' && !player.isAnswer ? '👻' : player.emoji} +
From 84968509b67a03d319f7fe19b58c818d459276aa Mon Sep 17 00:00:00 2001 From: ijun17 Date: Wed, 27 Nov 2024 00:55:24 +0900 Subject: [PATCH 25/58] =?UTF-8?q?feat:=20API=20=EB=AA=85=EC=84=B8=EC=97=90?= =?UTF-8?q?=20=EB=94=B0=EB=9D=BC=20GamePage=20=EC=A0=91=EA=B7=BC=20?= =?UTF-8?q?=EB=B0=A9=EB=B2=95=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/pages/GameSetupPage.tsx | 7 ++--- FE/src/features/game/pages/PinPage.tsx | 31 +++++--------------- 2 files changed, 10 insertions(+), 28 deletions(-) diff --git a/FE/src/features/game/pages/GameSetupPage.tsx b/FE/src/features/game/pages/GameSetupPage.tsx index 1dd42c97..ebc938d1 100644 --- a/FE/src/features/game/pages/GameSetupPage.tsx +++ b/FE/src/features/game/pages/GameSetupPage.tsx @@ -8,13 +8,14 @@ import { FormControlLabel, Radio } from '@mui/material'; -import { useEffect, useState } from 'react'; +import { useState } from 'react'; import { socketService, useSocketEvent } from '@/api/socket'; import RoomConfig from '@/constants/roomConfig'; import { useNavigate } from 'react-router-dom'; import { useRoomStore } from '@/features/game/data/store/useRoomStore'; import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; import { TextInput } from '@/components/TextInput'; + export const GameSetupPage = () => { const { updateRoom } = useRoomStore((state) => state); const setIsHost = usePlayerStore((state) => state.setIsHost); @@ -29,10 +30,6 @@ export const GameSetupPage = () => { navigate(`/game/${data.gameId}`); }); - useEffect(() => { - socketService.disconnect(); - }, []); - const handleTitleChange: React.ChangeEventHandler = (e) => { setTitle(e.target.value); setTitleError(''); diff --git a/FE/src/features/game/pages/PinPage.tsx b/FE/src/features/game/pages/PinPage.tsx index 639bf7ce..7f6de8e9 100644 --- a/FE/src/features/game/pages/PinPage.tsx +++ b/FE/src/features/game/pages/PinPage.tsx @@ -1,27 +1,22 @@ -import { socketService } from '@/api/socket'; +import { socketService, useSocketEvent } from '@/api/socket'; import { HeaderBar } from '@/components/HeaderBar'; import { TextInput } from '@/components/TextInput'; -import { getRandomNickname } from '@/features/game/utils/nickname'; -import { useEffect, useState } from 'react'; +import { useState } from 'react'; +import { useNavigate } from 'react-router-dom'; export const PinPage = () => { - const [nickname, setNickname] = useState(''); const [pin, setPin] = useState(''); const [errors, setErrors] = useState({ nickname: '', pin: '' }); + const navigate = useNavigate(); - useEffect(() => { - setNickname(getRandomNickname()); - }, []); + useSocketEvent('joinRoom', () => { + navigate(`/game/${pin}`); + }); const handleJoin = () => { const newErrors = { nickname: '', pin: '' }; let hasError = false; - if (!nickname.trim()) { - newErrors.nickname = '닉네임을 입력해주세요'; - hasError = true; - } - if (!pin.trim()) { newErrors.pin = '핀번호를 입력해주세요'; hasError = true; @@ -31,7 +26,7 @@ export const PinPage = () => { if (hasError) return; - socketService.joinRoom(pin, nickname); + socketService.joinRoom(pin); }; return ( @@ -41,16 +36,6 @@ export const PinPage = () => {

방 들어가기

- { - setNickname(e.target.value); - if (errors.nickname) setErrors((prev) => ({ ...prev, nickname: '' })); - }} - error={errors.nickname} - /> - Date: Wed, 27 Nov 2024 00:56:04 +0900 Subject: [PATCH 26/58] =?UTF-8?q?design:=20=EA=B2=8C=EC=9E=84=20=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=20=EB=94=94=EC=9E=90=EC=9D=B8=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/pages/GamePage.tsx | 40 +++++++++++++------------ 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/FE/src/features/game/pages/GamePage.tsx b/FE/src/features/game/pages/GamePage.tsx index 3220f1bb..b3dcfcf3 100644 --- a/FE/src/features/game/pages/GamePage.tsx +++ b/FE/src/features/game/pages/GamePage.tsx @@ -1,7 +1,7 @@ import Chat from '@/features/game/components/Chat'; import ParticipantDisplay from '@/features/game/components/ParticipantDisplay'; import { QuizOptionBoard } from '@/features/game/components/QuizOptionBoard'; -import { Modal } from '../components/Modal'; +import { NicknameModal } from '../components/NicknameModal'; import { useState, useEffect } from 'react'; import { GameHeader } from '@/features/game/components/GameHeader'; import { HeaderBar } from '@/components/HeaderBar'; @@ -15,16 +15,17 @@ import { ResultModal } from '@/features/game/components/ResultModal'; import { ErrorModal } from '@/components/ErrorModal'; import { useNavigate } from 'react-router-dom'; import { getRandomNickname } from '@/features/game/utils/nickname'; +import { resetEmojiPool } from '../utils/emoji'; export const GamePage = () => { const { gameId } = useParams<{ gameId: string }>(); const updateRoom = useRoomStore((state) => state.updateRoom); const gameState = useRoomStore((state) => state.gameState); const currentPlayerName = usePlayerStore((state) => state.currentPlayerName); - const setCurrentPlayerName = usePlayerStore((state) => state.setCurrentPlayerName); + // const setCurrentPlayerName = usePlayerStore((state) => state.setCurrentPlayerName); const setGameState = useRoomStore((state) => state.setGameState); const resetScore = usePlayerStore((state) => state.resetScore); - const [isModalOpen, setIsModalOpen] = useState(true); + // const [isModalOpen, setIsModalOpen] = useState(true); const [isErrorModalOpen, setIsErrorModalOpen] = useState(false); const [errorModalTitle, setErrorModalTitle] = useState(''); const [isResultOpen, setIsResultOpen] = useState(false); @@ -40,14 +41,16 @@ export const GamePage = () => { // }, []); useEffect(() => { - updateRoom({ gameId }); - }, [gameId, updateRoom]); + if (gameId) resetEmojiPool(gameId); + }, [gameId]); useEffect(() => { - if (gameId && currentPlayerName) { - socketService.joinRoom(gameId, currentPlayerName); - } - }, [gameId, currentPlayerName]); + if (gameId) socketService.joinRoom(gameId); + }, [gameId]); + + useEffect(() => { + updateRoom({ gameId }); + }, [gameId, updateRoom]); useEffect(() => { if (gameState === GameState.END) setIsResultOpen(true); @@ -58,25 +61,24 @@ export const GamePage = () => { setIsErrorModalOpen(true); }); - const handleNameSubmit = (name: string) => { - setCurrentPlayerName(name); - setIsModalOpen(false); // 이름이 설정되면 모달 닫기 - }; - const handleEndGame = () => { setGameState(GameState.WAIT); resetScore(); setIsResultOpen(false); }; + const handleSubmitNickname = (name: string) => { + socketService.emit('setPlayerName', { playerName: name }); + }; + return ( <>
-
+
{gameState === GameState.WAIT ? : }
-
+
@@ -93,12 +95,12 @@ export const GamePage = () => { onClose={handleEndGame} currentPlayerName={currentPlayerName} /> - Date: Wed, 27 Nov 2024 00:57:02 +0900 Subject: [PATCH 27/58] =?UTF-8?q?design:=20=EA=B2=8C=EC=9E=84=20=ED=97=A4?= =?UTF-8?q?=EB=8D=94=20=EB=B0=8F=20=ED=80=B4=EC=A6=88=20=ED=97=A4=EB=8D=94?= =?UTF-8?q?=20=EB=94=94=EC=9E=90=EC=9D=B8=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../features/game/components/GameHeader.tsx | 13 ++++++---- .../features/game/components/QuizHeader.tsx | 24 ++++++++++--------- 2 files changed, 21 insertions(+), 16 deletions(-) diff --git a/FE/src/features/game/components/GameHeader.tsx b/FE/src/features/game/components/GameHeader.tsx index 6a8ae317..561599ce 100644 --- a/FE/src/features/game/components/GameHeader.tsx +++ b/FE/src/features/game/components/GameHeader.tsx @@ -1,5 +1,4 @@ import { ClipboardCopy } from '../../../components/ClipboardCopy'; -import Card from '@mui/material/Card'; import { QuizPreview } from '../../../components/QuizPreview'; import { useParams } from 'react-router-dom'; import { useRoomStore } from '@/features/game/data/store/useRoomStore'; @@ -23,7 +22,7 @@ export const GameHeader = React.memo(() => { }; // 예시 return ( - +
@@ -31,9 +30,13 @@ export const GameHeader = React.memo(() => {
{gameTitle}
- +
+
+ +
+
{isHost && ( -
+
); }); diff --git a/FE/src/features/game/components/QuizHeader.tsx b/FE/src/features/game/components/QuizHeader.tsx index c9acfcc9..283f3777 100644 --- a/FE/src/features/game/components/QuizHeader.tsx +++ b/FE/src/features/game/components/QuizHeader.tsx @@ -33,7 +33,7 @@ export const QuizHeader = () => { if (!currentQuiz) return ( -
+
곧 퀴즈가 시작됩니다
@@ -41,13 +41,13 @@ export const QuizHeader = () => { if (currentQuiz.startTime > getServerTimestamp()) return ( -
+
{Math.ceil((currentQuiz.startTime - getServerTimestamp()) / 1000)}
); return ( -
+
{ {seconds <= 0 ? '종료' : seconds.toFixed(2)}
-
0.2 ? 'green' : 'brown' - }} - >
+ {seconds > 0 && ( +
0.2 ? 'green' : 'brown' + }} + >
+ )}
From afabfc7a50cb6dba39dba3665e79819a075c6ed1 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Wed, 27 Nov 2024 00:57:37 +0900 Subject: [PATCH 28/58] =?UTF-8?q?feat:=20=ED=94=8C=EB=A0=88=EC=9D=B4?= =?UTF-8?q?=EC=96=B4=20=EC=8A=A4=ED=86=A0=EC=96=B4=20emoji=20=EB=B0=8F=20s?= =?UTF-8?q?etPlayerName=20=ED=95=A8=EC=88=98=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/data/store/usePlayerStore.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/FE/src/features/game/data/store/usePlayerStore.ts b/FE/src/features/game/data/store/usePlayerStore.ts index 4b43857f..e03d2460 100644 --- a/FE/src/features/game/data/store/usePlayerStore.ts +++ b/FE/src/features/game/data/store/usePlayerStore.ts @@ -7,6 +7,7 @@ type Player = { playerScore: number; isAnswer: boolean; isAlive: boolean; + emoji: string; }; type PlayerStore = { @@ -22,6 +23,7 @@ type PlayerStore = { setIsHost: (isHost: boolean) => void; setPlayers: (players: Player[]) => void; resetScore: () => void; + setPlayerName: (playerId: string, playerName: string) => void; reset: () => void; }; @@ -83,5 +85,13 @@ export const usePlayerStore = create((set) => ({ }); }, + setPlayerName: (playerId, playerName) => { + set((state) => { + const targetPlayer = state.players.get(playerId); + if (targetPlayer) state.players.set(playerId, { ...targetPlayer, playerName }); + return { players: state.players }; + }); + }, + reset: () => set(initialPlayerState) })); From 4d401dc16135b24042c9143f15e6f1e9098284c8 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Wed, 27 Nov 2024 00:58:01 +0900 Subject: [PATCH 29/58] =?UTF-8?q?feat:=20=EA=B2=8C=EC=9E=84=20=EA=B2=B0?= =?UTF-8?q?=EA=B3=BC=20=EB=AA=A8=EB=8B=AC=EC=97=90=20=EC=9D=B4=EB=AA=A8?= =?UTF-8?q?=EC=A7=80=20=EB=A0=8C=EB=8D=94=EB=A7=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/components/ResultModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FE/src/features/game/components/ResultModal.tsx b/FE/src/features/game/components/ResultModal.tsx index 47eee371..f285c228 100644 --- a/FE/src/features/game/components/ResultModal.tsx +++ b/FE/src/features/game/components/ResultModal.tsx @@ -47,7 +47,7 @@ export const ResultModal: React.FC = ({ ) : ( 탈락 )}{' '} - {player.playerName} + {player.emoji + ' ' + player.playerName} {gameMode === 'RANKING' && ( {player.playerScore}점 From 955c604f2bdbd73a56b99d639316ba0959c084cd Mon Sep 17 00:00:00 2001 From: ijun17 Date: Wed, 27 Nov 2024 00:59:26 +0900 Subject: [PATCH 30/58] =?UTF-8?q?rename:=20=ED=94=8C=EB=A0=88=EC=9D=B4?= =?UTF-8?q?=EC=96=B4=20=EB=8B=89=EB=84=A4=EC=9E=84=20=EC=9E=85=EB=A0=A5=20?= =?UTF-8?q?=EB=AA=A8=EB=8B=AC=20=EC=BB=B4=ED=8F=AC=EB=84=8C=ED=8A=B8=20?= =?UTF-8?q?=EC=9D=B4=EB=A6=84=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../features/game/components/{Modal.tsx => NicknameModal.tsx} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename FE/src/features/game/components/{Modal.tsx => NicknameModal.tsx} (96%) diff --git a/FE/src/features/game/components/Modal.tsx b/FE/src/features/game/components/NicknameModal.tsx similarity index 96% rename from FE/src/features/game/components/Modal.tsx rename to FE/src/features/game/components/NicknameModal.tsx index bd75eec6..a065a4fd 100644 --- a/FE/src/features/game/components/Modal.tsx +++ b/FE/src/features/game/components/NicknameModal.tsx @@ -8,7 +8,7 @@ type ModalProps = { onSubmit: (value: string) => void; }; -export const Modal: React.FC = ({ +export const NicknameModal: React.FC = ({ isOpen, title, placeholder, From ba4b5e4e7befe16e08b882455b46b153a28abc81 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Wed, 27 Nov 2024 00:59:56 +0900 Subject: [PATCH 31/58] =?UTF-8?q?fix:=20=EC=A0=95=EB=8B=B5=20=EB=AA=A8?= =?UTF-8?q?=EB=8B=AC=203=EC=B4=88=20=EB=92=A4=EC=97=90=20=EB=8B=AB?= =?UTF-8?q?=ED=9E=88=EA=B2=8C=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../features/game/components/AnswerModal.tsx | 42 ++++++++----------- 1 file changed, 17 insertions(+), 25 deletions(-) diff --git a/FE/src/features/game/components/AnswerModal.tsx b/FE/src/features/game/components/AnswerModal.tsx index 0e4d6fd5..86f9203c 100644 --- a/FE/src/features/game/components/AnswerModal.tsx +++ b/FE/src/features/game/components/AnswerModal.tsx @@ -1,33 +1,31 @@ import Lottie from 'lottie-react'; import AnswerBg from '@/assets/lottie/answer_background.json'; -// import { useEffect, useState } from 'react'; +import { useEffect, useState } from 'react'; type AnswerModalProps = { isOpen: boolean; - // onClose: () => void; answer: number; }; const AnswerModal: React.FC = ({ isOpen, answer }) => { - // const [countdown, setCountdown] = useState(3); + const [countdown, setCountdown] = useState(3); - // useEffect(() => { - // if (isOpen) { - // setCountdown(3); // 모달이 열릴 때 카운트다운을 초기화 - // const interval = setInterval(() => { - // setCountdown((prev) => { - // if (prev === 1) { - // clearInterval(interval); - // onClose(); // 0에 도달하면 모달 닫기 - // } - // return prev - 1; - // }); - // }, 1000); - // return () => clearInterval(interval); // 모달이 닫히거나 언마운트될 때 타이머 정리 - // } - // }, [isOpen, onClose]); + useEffect(() => { + if (isOpen) { + setCountdown(3); + const interval = setInterval(() => { + setCountdown((prev: number) => { + if (prev === 1) { + clearInterval(interval); + } + return prev - 1; + }); + }, 1000); + return () => clearInterval(interval); + } + }, [isOpen]); - if (!isOpen) return null; + if (!isOpen || countdown <= 0) return null; return (
= ({ isOpen, answer }) => {

{answer}

- {/* */}
); From 8cf54bfd36f48b2774a83fae550271aa4ed28f97 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Wed, 27 Nov 2024 01:00:33 +0900 Subject: [PATCH 32/58] =?UTF-8?q?feat:=20=ED=80=B4=EC=A6=88=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EB=AA=A8=EB=8B=AC=EC=97=90=20=EA=B2=80=EC=83=89?= =?UTF-8?q?=EC=96=B4=EA=B0=80=20=EC=97=86=EC=96=B4=EB=8F=84=20=EA=B8=B0?= =?UTF-8?q?=EB=B3=B8=20=ED=80=B4=EC=A6=88=20=EB=A6=AC=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EB=B3=B4=EC=97=AC=EC=A3=BC=EA=B2=8C=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../game/components/QuizSetSearchList.tsx | 18 ++++++++++++++++-- .../game/components/QuizSettingModal.tsx | 6 ++---- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/FE/src/features/game/components/QuizSetSearchList.tsx b/FE/src/features/game/components/QuizSetSearchList.tsx index d002c307..6390adaa 100644 --- a/FE/src/features/game/components/QuizSetSearchList.tsx +++ b/FE/src/features/game/components/QuizSetSearchList.tsx @@ -65,8 +65,22 @@ const QuizSetSearchList = ({ onClick, search }: Params) => { return () => observer.disconnect(); }, [onIntersect]); - if (isLoading) return

Loading...

; - if (isError) return

Error fetching data.

; + if (isLoading) return; +
+

Loading...

+
; + if (isError) + return ( +
+

Error fetching data.

+
+ ); + if (data?.pages[0].data.length === 0) + return ( +
+ {search}와(과) 일치하는 검색결과가 없습니다 +
+ ); return ( <> diff --git a/FE/src/features/game/components/QuizSettingModal.tsx b/FE/src/features/game/components/QuizSettingModal.tsx index 20083822..6bfbf0dd 100644 --- a/FE/src/features/game/components/QuizSettingModal.tsx +++ b/FE/src/features/game/components/QuizSettingModal.tsx @@ -84,10 +84,8 @@ export const QuizSettingModal = ({ isOpen, onClose }: Props) => { ✕
-
- {searchParam && ( - - )} +
+
From 5b7b67a015900e29d4d8e411fbd10dc236c9839b Mon Sep 17 00:00:00 2001 From: JunWoo Park <97427744+always97@users.noreply.github.com> Date: Wed, 27 Nov 2024 01:02:20 +0900 Subject: [PATCH 33/58] =?UTF-8?q?style:=20=EA=B2=8C=EC=9E=84=20=EC=83=9D?= =?UTF-8?q?=EC=84=B1=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=ED=97=A4=EB=8D=94=20?= =?UTF-8?q?=ED=86=B5=EC=9D=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/pages/GameSetupPage.tsx | 6 +++--- FE/src/features/game/pages/PinPage.tsx | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/FE/src/features/game/pages/GameSetupPage.tsx b/FE/src/features/game/pages/GameSetupPage.tsx index 8831e445..7af7c194 100644 --- a/FE/src/features/game/pages/GameSetupPage.tsx +++ b/FE/src/features/game/pages/GameSetupPage.tsx @@ -51,15 +51,15 @@ export const GameSetupPage = () => { }; return ( -
-
+
+

navigate('/')} > QuizGround

-
+
{/* 뒤로가기 버튼 */}
diff --git a/FE/src/features/game/pages/PinPage.tsx b/FE/src/features/game/pages/PinPage.tsx index 5220b195..86842a72 100644 --- a/FE/src/features/game/pages/PinPage.tsx +++ b/FE/src/features/game/pages/PinPage.tsx @@ -39,10 +39,9 @@ export const PinPage = () => { return (
- {/* Header */}

navigate('/')} > QuizGround From 03c54fbc50da0ba565cb5fd6e92b37a6cef5a63e Mon Sep 17 00:00:00 2001 From: JunWoo Park <97427744+always97@users.noreply.github.com> Date: Wed, 27 Nov 2024 01:08:46 +0900 Subject: [PATCH 34/58] =?UTF-8?q?style:=20=EA=B2=8C=EC=9E=84=20=EC=83=9D?= =?UTF-8?q?=EC=84=B1=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=83=89=EC=83=81?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/pages/GameSetupPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FE/src/features/game/pages/GameSetupPage.tsx b/FE/src/features/game/pages/GameSetupPage.tsx index 7af7c194..07511f8b 100644 --- a/FE/src/features/game/pages/GameSetupPage.tsx +++ b/FE/src/features/game/pages/GameSetupPage.tsx @@ -51,7 +51,7 @@ export const GameSetupPage = () => { }; return ( -
+

Date: Wed, 27 Nov 2024 10:28:51 +0900 Subject: [PATCH 35/58] =?UTF-8?q?fix:=20=EC=86=8C=EC=BC=93=20=EC=9D=B4?= =?UTF-8?q?=EB=B2=A4=ED=8A=B8=20selfId=20=EC=97=90=EC=84=9C=20getSelfId?= =?UTF-8?q?=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/api/socket/mocks/SocketMock.ts | 2 +- FE/src/api/socket/socketEventTypes.ts | 2 +- FE/src/features/game/data/socketListener.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/FE/src/api/socket/mocks/SocketMock.ts b/FE/src/api/socket/mocks/SocketMock.ts index 924f0d75..902b247b 100644 --- a/FE/src/api/socket/mocks/SocketMock.ts +++ b/FE/src/api/socket/mocks/SocketMock.ts @@ -22,7 +22,7 @@ export class SocketMock { }; this.emitServer('joinRoom', { players: [currentPlayer] }); this.addPlayers([currentPlayer]); - this.emitServer('selfId', { playerId: this.id }); + this.emitServer('getSelfId', { playerId: this.id }); this.emitServer('setPlayerName', { playerId: this.id, playerName: 'Me' }); }); diff --git a/FE/src/api/socket/socketEventTypes.ts b/FE/src/api/socket/socketEventTypes.ts index 3846147f..409b4462 100644 --- a/FE/src/api/socket/socketEventTypes.ts +++ b/FE/src/api/socket/socketEventTypes.ts @@ -143,7 +143,7 @@ export type SocketDataMap = { request: null; response: JoinRoomResponse; }; - selfId: { + getSelfId: { request: null; response: getSelfIdResponse; }; diff --git a/FE/src/features/game/data/socketListener.ts b/FE/src/features/game/data/socketListener.ts index 30f71214..fedcb189 100644 --- a/FE/src/features/game/data/socketListener.ts +++ b/FE/src/features/game/data/socketListener.ts @@ -74,7 +74,7 @@ socketService.on('exitRoom', (data) => { usePlayerStore.getState().removePlayer(data.playerId); }); -socketService.on('selfId', (data) => { +socketService.on('getSelfId', (data) => { const playerName = usePlayerStore.getState().players.get(data.playerId); usePlayerStore.getState().setCurrentPlayerId(data.playerId); usePlayerStore.getState().setCurrentPlayerName(String(playerName)); From 8f41a693caa79f98f7873f74e4bfce36dcbbb39b Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:01:10 +0900 Subject: [PATCH 36/58] =?UTF-8?q?feat:=20=ED=85=8C=EC=9D=BC=20=EC=9C=88?= =?UTF-8?q?=EB=93=9C=20=EC=84=A4=EC=A0=95=20=EC=BB=A4=EC=84=9C,=20?= =?UTF-8?q?=EC=95=A0=EB=8B=88=EB=A9=94=EC=9D=B4=EC=85=98=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 --- FE/tailwind.config.js | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/FE/tailwind.config.js b/FE/tailwind.config.js index 377b0f98..879e72a9 100644 --- a/FE/tailwind.config.js +++ b/FE/tailwind.config.js @@ -34,8 +34,21 @@ export default { s: '0.5rem' }, boxShadow: { - default: '0 4px 2px rgba(20, 33, 43, 0.02)' - } + default: '0 4px 4px rgba(20, 33, 43, 0.04)' + }, + cursor: { + gameCursor: "url('/cursor.png') 32 32, auto", // 마우스 커서 + clickCursor: "url('/cursor.png') 32 32, auto" // 클릭 시 커서 + }, + keyframes: { + popup: { + '0%': { opacity: '0', transform: 'translateY(20px)' }, + '100%': { opacity: '1', transform: 'translateY(0)' }, + }, + }, + animation: { + popup: 'popup 0.5s ease-out', + }, } }, plugins: [ @@ -56,10 +69,11 @@ export default { display: 'flex', justifyContent: 'center', - alignItems: 'center', + alignItems: 'center' }, '.text-shadow': { - 'text-shadow': '0 -3px 0 #333, 0 6px 8px rgba(0,0,0,.4), 0 9px 10px rgba(0,0,0,.15), 0 30px 10px rgba(0,0,0,.18), 0 15px 10px rgba(0,0,0,.21)', + 'text-shadow': + '0 -3px 0 #333, 0 6px 8px rgba(0,0,0,.4), 0 9px 10px rgba(0,0,0,.15), 0 30px 10px rgba(0,0,0,.18), 0 15px 10px rgba(0,0,0,.21)' } }; addUtilities(newUtilities, ['responsive', 'hover']); From 6eeafd9d5cfc95d5811f80949bfb1973aa5a412e Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:01:23 +0900 Subject: [PATCH 37/58] =?UTF-8?q?feat:=20=EC=BB=A4=EC=84=9C=20=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/public/cursor.png | Bin 0 -> 2006 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 FE/public/cursor.png diff --git a/FE/public/cursor.png b/FE/public/cursor.png new file mode 100644 index 0000000000000000000000000000000000000000..eae3570aa1dfbe32933942824dbf080e44c97923 GIT binary patch literal 2006 zcmb7E3pA8z82)C){jSvH(uQ%FavPfDw!3H~Nug=8#Ws^$RAw-m)yYz^Vbye7CyX4# z>ZVYeqOFWELlY8`yTLT3h%u8(#eUYQqqc2N|M|ZEd*Anep7;6Q_q^v%@!ssNs-&X? z08sVVK=6g9{@hkT!8hSTYR#MzxWU&8fP*FgBqRbb4MPb+0Ag?eh)4i9oC5$&W!~{| z0suMYy@}`s0ki&+*#ODxP6@zN18fy!10xnNWck~*sF`qPcSyhrF2JyXVKo4BpnYR@ zc2?K1uD(yahS*romptkf*Y}MBqw2cB*A09zFnjQf%!yRA+tmPwatMGFP-(%)WhRx|5kwPML=jkv4*N0T|Fo3?Z zFgTC@1PNRE31;5?U)X1LKV0Aw`oAR>Mi$-y#^C^f<#TO;Hed1@=vG0ywrgy@SLbg& zmoZ__3(b`e$Hri;fjW+LhU<88Saw0h5bSMZ|F|rceY~Lm@xVCHXL;^v;q{CyU0Yks zdePV~rk&_s?b}e@HmYP^lUX9zai9%q={rBX#T!N%S0BylbJ^8Y+c~Cb!!4{F3QOz& z1}w9U_4k@z$*p9cx;U_9Un?9-ZHKy&nwK$*?qD(s~+CGo5JgZLtjVp-Mkf^ zUwCvV4@TZic4oVv5Sut}Uof;0!OiE7rrjF8t^Yhq!LfAavKm)2SGtyYc2N}yskA-w z{2n93ndx4p=c0+aL)LOLIXV5J;sCuMQ_8*Zw@(?)D$Zp^GN?RE&vWxUAFXBOhy!s` zk7QP`)yINrrR$Lq{I+ylr#_xDG!v-knlqE;e^WtoTbX#V?yxOe=yG(lGv)h+C4vJ6 zQ$9b$et|&vcbWoG7 zUbr~+pz1fSm2ou0h&MmtA(sns$*h!XIhG_cXM&X9mtMYvKP@jKLSm9J{gmVk8@!F0 zQbhV;cc#j@Uz}`=h#I!xHxyCfs6+fTjr?QojY`RBsY^?L%1kqkbh+Bmds3n3YK5G} zVqLUV)9x$Dmrbh*b7{j;>p+e%NU-xcT@6CwHRAb#r1n1-V?`0o3`!33bf%oXR|A(9 zUYbGLVj^dlk1LP$v=57tXa1gX%2IZNr0@yGzb*VdrbB|1-7F`*;y&2FyGn~W{72DitJV|jS=&u`>pvIv~}af4NE#85T& zM+*7*h6pjb>_u-sI{7*^Mf8AG@DRIkdA3`6=run@*_W=@lOpxr2}`23p+ybSM}8)# z3tkO}BXj*)CWE9ps>;vWW4t93ZY5ZsG0C%O)o_p%SQ+_5V2HJxlJB)>dTw=g=PjRr zXRn(|qwEu$4pqoq#{@{lE%gCf>;bdOT-hQmVhX;dhLE@G-o+j-A3^y(_50l-*Nj$w z>u%HSmHXS`6RHZ9P)EI0vz`zGM+)uCq+M^+k1=Sg9d!^KzuOhBMUwj~N5{^HCsWQ0 zQZKEimo$eOnHGH)ZyzVPqIXFuR55ULkAK%nok0?pisVPx{*yEPO~D#m>Xy6C^-HEh z`>jrHA6i3F^!VErx?0*wHMwHl)fc>CA3)>$Y zO(XB8euiT|FA{IQu^n=>=Qvv_Av8KUDj3k|bjz@az0rYWYOp0GDl}`vNe6;}hudaC Iu`B7w-(_E^{r~^~ literal 0 HcmV?d00001 From a666cc4d412d4e75ef2ed23e4cf12a3383b2205f Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:02:42 +0900 Subject: [PATCH 38/58] =?UTF-8?q?feat:=20=EB=A1=9C=EA=B3=A0=20=EB=B0=8F=20?= =?UTF-8?q?=EC=9D=B4=EB=AA=A8=EC=A7=80=20=ED=8F=B0=ED=8A=B8=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/index.css | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/FE/src/index.css b/FE/src/index.css index c1a6024b..577496db 100644 --- a/FE/src/index.css +++ b/FE/src/index.css @@ -1,18 +1,34 @@ +@import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap'); @font-face { font-family: 'NPSfontBold'; src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2310@1.0/NPSfontBold.woff2') format('woff2'); font-weight: 700; + font-style: bold; +} + +@font-face { + font-family: 'NPSfontBold'; + src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2310@1.0/NPSfontRegular.woff2') + format('woff2'); + font-weight: 400; font-style: normal; } +@font-face { + font-family: 'DNFBitBitv2'; + font-style: normal; + font-weight: 400; + src: url('//cdn.df.nexon.com/img/common/font/DNFBitBitv2.otf') format('opentype'); +} + @tailwind base; @tailwind components; @tailwind utilities; @layer base { html { - font-family: 'NPSfontBold', ui-sans-serif, system-ui; + font-family: 'NPSfontBold', 'Noto Color Emoji', ui-sans-serif, system-ui; box-sizing: border-box; color: #5f6e76; } @@ -45,3 +61,7 @@ box-shadow: none; background-color: transparent; } + +.font-logo { + font-family: 'DNFBitBitv2'; +} From d1451ff3c77f85a5e039af00f07984c21c146ae4 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:03:09 +0900 Subject: [PATCH 39/58] =?UTF-8?q?refactor:=20=EC=86=8C=EC=BC=93=20?= =?UTF-8?q?=ED=83=80=EC=9E=85=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/api/socket/socket.ts | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/FE/src/api/socket/socket.ts b/FE/src/api/socket/socket.ts index 5d8db204..1417bd72 100644 --- a/FE/src/api/socket/socket.ts +++ b/FE/src/api/socket/socket.ts @@ -29,17 +29,15 @@ type SocketInterface = { }; class SocketService { - private socket: SocketInterface; + private socket: SocketInterface | null; private url: string; - private handlers: (() => void)[]; private handlerMap: Partial< Record void)[]> > = {}; constructor(url: string) { - this.socket = io() as SocketInterface; + this.socket = null; this.url = url; - this.handlers = []; } async connect(header: { 'create-room'?: string; 'game-id'?: string }) { @@ -52,6 +50,7 @@ class SocketService { // 소켓 연결 this.socket = io(this.url, { query: header }) as SocketInterface; await new Promise((resolve, reject) => { + if (!this.socket) return; this.socket.on('connect', () => resolve()); this.socket.on('error', () => reject()); }); @@ -60,9 +59,10 @@ class SocketService { } initHandler() { - this.handlers.forEach((h) => h()); + if (!this.socket) return; + const socket = this.socket; Object.entries(this.handlerMap).forEach(([event, handlers]) => - handlers.forEach((h) => this.socket.on(event, h)) + handlers.forEach((h) => socket.on(event, h)) ); this.socket.onAny((eventName, ...args) => { console.log(`SOCKET[${eventName}]`, ...args); @@ -70,7 +70,7 @@ class SocketService { } disconnect() { - if (this.isActive()) this.socket.disconnect(); + if (this.socket && this.isActive()) this.socket.disconnect(); } isActive() { @@ -78,18 +78,19 @@ class SocketService { } on(event: T, callback: (data: SocketDataMap[T]['response']) => void) { - if (this.isActive()) this.socket.on(event, callback); + if (this.socket && this.isActive()) this.socket.on(event, callback); if (!this.handlerMap[event]) this.handlerMap[event] = []; this.handlerMap[event].push(callback); } off(event: T, callback: (data: SocketDataMap[T]['response']) => void) { if (!this.handlerMap[event]) return; - if (this.isActive()) this.socket.off(event, callback); + if (this.socket && this.isActive()) this.socket.off(event, callback); this.handlerMap[event] = this.handlerMap[event].filter((e) => e !== callback); } emit(event: T, data: SocketDataMap[T]['request']) { + if (!this.socket) return; this.socket.emit(event, data); } @@ -112,10 +113,12 @@ class SocketService { } kickRoom(gameId: string, kickPlayerId: string) { + if (!this.socket) return; this.socket.emit(SocketEvents.KICK_ROOM, { gameId, kickPlayerId }); } chatMessage(gameId: string, message: string) { + if (!this.socket) return; this.socket.emit(SocketEvents.CHAT_MESSAGE, { gameId, message }); } } From 93dbf0dc0bebfacad7e834c04e7d1eac1e5a5f87 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:03:35 +0900 Subject: [PATCH 40/58] =?UTF-8?q?feat:=20=EC=97=AC=EB=9F=AC=20=EB=A1=9C?= =?UTF-8?q?=ED=8B=B0=20=ED=8C=8C=EC=9D=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/assets/lottie/createQuiz.json | 1 + FE/src/assets/lottie/gameCreate.json | 1 + FE/src/assets/lottie/pin.json | 1 + FE/src/assets/lottie/refresh.json | 1 + FE/src/assets/lottie/watiRoom.json | 1 + 5 files changed, 5 insertions(+) create mode 100644 FE/src/assets/lottie/createQuiz.json create mode 100644 FE/src/assets/lottie/gameCreate.json create mode 100644 FE/src/assets/lottie/pin.json create mode 100644 FE/src/assets/lottie/refresh.json create mode 100644 FE/src/assets/lottie/watiRoom.json diff --git a/FE/src/assets/lottie/createQuiz.json b/FE/src/assets/lottie/createQuiz.json new file mode 100644 index 00000000..6df67485 --- /dev/null +++ b/FE/src/assets/lottie/createQuiz.json @@ -0,0 +1 @@ +{"v":"5.5.7","meta":{"g":"LottieFiles AE 0.1.20","a":"","k":"","d":"","tc":""},"fr":30,"ip":0,"op":240,"w":1600,"h":1200,"ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":3,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.33],"y":[0]},"t":20,"s":[0]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.33],"y":[0]},"t":47,"s":[-4]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.33],"y":[0]},"t":67,"s":[-4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.33],"y":[0]},"t":99,"s":[5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[-4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[-4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[5]},{"t":240,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.25,"y":1},"o":{"x":0.33,"y":0},"t":20,"s":[347.25,581.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.82},"o":{"x":0.17,"y":0},"t":47,"s":[352.75,563.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.92},"o":{"x":0.17,"y":0.16},"t":57,"s":[370.75,583.71,0],"to":null,"ti":null},{"i":{"x":0.67,"y":1},"o":{"x":0.17,"y":0.26},"t":67,"s":[382.25,555.21,0],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.75,"y":0},"t":97,"s":[352.75,557.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.82},"o":{"x":0.17,"y":0},"t":170,"s":[352.75,563.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.9},"o":{"x":0.17,"y":0.16},"t":180,"s":[370.75,583.71,0],"to":null,"ti":null},{"i":{"x":0.67,"y":1},"o":{"x":0.17,"y":0.24},"t":190,"s":[382.25,555.21,0],"to":null,"ti":null},{"i":{"x":0.67,"y":1},"o":{"x":0.75,"y":0},"t":213,"s":[352.75,557.71,0],"to":null,"ti":null},{"t":240,"s":[347.25,581.71,0]}]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":21,"ty":3,"parent":22,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[-60.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[-60.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-60.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[-60.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[-60.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[-60.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[-60.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[-60.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[-60.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[-60.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[-60.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[-59.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[-58.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[-57.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[-55.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[-53.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[-51.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[-49.81]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[-48.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[-47.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[-46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[-45.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-44.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[-43.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[-43.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[-42.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[-42.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[-42.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[-42.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[-42.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[-42.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[-42.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[-42.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[-42.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[-42.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[-44.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[-46.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[-49.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[-52.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[-55.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[-58.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[-61.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-65.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[-68.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[-71.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[-67.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[-63.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[-60.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[-56.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[-52.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[-49.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[-46.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[-43.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[-40.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[-38.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[-37.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[-36.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[-36.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[-35.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[-34.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[-33.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[-33.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[-32.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[-31.81]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[-31.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[-30.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[-29.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[-29.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[-28.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[-28.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[-27.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[-26.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[-26.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[-25.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[-25.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[-24.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[-24.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[-23.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[-23.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[-22.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[-22.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[-22.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[-21.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[-21.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[-21.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[-21.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[-21.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[-21.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[-21.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[-21.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[-21.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[-21.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[-21.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[-21.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[-22.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[-22.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[-22.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[-22.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[-23.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[-23.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[-23.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[-24.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[-24.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[-24.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[-25.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[-25.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[-25.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[-26.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[-26.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[-26.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[-27.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[-27.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[-27.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[-28.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[-28.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[-29.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[-29.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[-30.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[-30.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[-31.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[-31.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[-32.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[-33.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[-33.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[-34.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[-34.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[-35.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[-35.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[-35.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[-36.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[-36.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[-36.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[-37.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[-37.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[-37.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[-37.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[-38.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[-38.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[-38.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[-38.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[-38.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[-39.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[-39.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[-39.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[-39.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[-39.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[-39.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[-39.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[-40.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[-40.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[-40.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[-40.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[-40.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[-40.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[-40.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[-40.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[-40.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[-40.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[-42.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[-45.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[-47.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[-51.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[-54.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[-57.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[-60.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[-63.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[-67.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[-70.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[-66.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[-62.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[-59.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[-55.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[-52.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[-48.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[-45.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[-42.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[-40.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[-38.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[-36.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[-35.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[-34.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[-33.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[-32.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[-31.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[-30.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[-29.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[-28.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[-28.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[-27.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[-26.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[-26.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[-25.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[-25.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[-24.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[-24.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[-23.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[-23.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[-22.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[-22.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[-21.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[-21.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[-21.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[-22.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[-22.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[-23.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[-23.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[-24.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[-25.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[-25.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[-26.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[-28.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[-29.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[-30.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[-32.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[-33.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[-35.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[-38.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[-40.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[-43.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[-46.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[-49.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[-52.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[-55.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[-57.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[-58.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[-59.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[-60.34]},{"t":240,"s":[-60.66]}]},"p":{"a":0,"k":[13.69,-40.64,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":22,"ty":3,"parent":23,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[13.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[13.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[13.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[12.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[12.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[12.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[11.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[11.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[10.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[9.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[8.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[6.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[4.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[2.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[0.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[-1.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[-3.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[-5.81]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[-7.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[-9.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[-10.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[-11.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-12.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[-13.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[-14.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[-15.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[-16.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[-16.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[-17.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[-17.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[-18.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[-18.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[-18.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[-19.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[-19.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[-17.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[-14.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[-11.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[-7.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[-3.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[1.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[5.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[10.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[15.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[21.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[19.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[17.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[15.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[14.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[13.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[12.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[12.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[12.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[12.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[12.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[10.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[8.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[6.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[4.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[2.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[1.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[-0.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[-2.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[-3.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[-4.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[-5.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[-6.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[-7.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[-8.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[-8.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[-8.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[-8.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[-8.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[-9.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[-9.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[-10.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[-11.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[-11.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[-12.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[-12.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[-13.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[-13.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[-13.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[-13.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[-13.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[-13.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[-13.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[-13.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[-13.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[-13.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[-13.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[-13.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[-13.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[-13.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[-13.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[-12.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[-12.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[-12.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[-11.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[-11.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[-10.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[-10.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[-10.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[-9.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[-9.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[-9.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[-8.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[-8.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[-8.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[-8.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[-7.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[-7.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[-7.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[-7.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[-6.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[-6.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[-6.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[-6.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[-6.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[-5.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[-5.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[-5.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[-4.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[-4.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[-4.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[-4.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[-4.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[-4.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[-3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[-3.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[-3.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[-3.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[-3.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[-3.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[-3.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[-3.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[-3.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[-3.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[-3.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[-3.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[-3.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[-4.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[-4.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[-4.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[-4.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[-5.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[-5.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[-6.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[-6.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[-7.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[-8.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[-9.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[-11.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[-13.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[-14.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[-15.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[-16.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[-17.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[-16.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[-13.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[-10.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[-6.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[-2.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[1.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[6.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[11.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[16.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[21.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[19.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[17.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[16.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[14.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[14.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[13.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[13.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[13.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[13.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[14.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[12.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[9.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[7.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[5.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[3.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[1.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[-0.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[-2.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[-3.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[-5.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[-6.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[-7.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[-8.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[-10.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[-11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[-11.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[-12.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[-13.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[-13.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[-13.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[-13.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[-13.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[-13.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[-12.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[-12.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[-11.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[-10.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[-10.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[-9.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[-8.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[-8.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[-7.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[-6.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[-5.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[-4.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[-3.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[-2.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[-1.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[-0.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[0.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[2.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[3.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[5.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[7.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[9.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[10.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[11.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[12.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[13.02]},{"t":240,"s":[13.19]}]},"p":{"a":0,"k":[37.31,31.36,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":23,"ty":3,"parent":31,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[47.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[47.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[47.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[47.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[48.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[48.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[49.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[49.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[50.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[51.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[52.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[52.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[53.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[53.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[54.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[54.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[54.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[54.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[54.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[54.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[54.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[54.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[54.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[55.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[55.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[55.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[55.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[56.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[56.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[56.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[56.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[57.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[57.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[57.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[58.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[58.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[57.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[57.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[56.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[54.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[53.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[52.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[50.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[48.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[46.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[44.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[42.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[40.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[38.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[35.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[32.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[29.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[26.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[24.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[21.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[23.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[24.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[25.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[27.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[28.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[29.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[30.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[31.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[32.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[33.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[34.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[35.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[36.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[36.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[36.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[36.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[36.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[36.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[37.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[37.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[38.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[38.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[38.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[39.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[39.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[39.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[40.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[40.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[40.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[40.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[40.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[40.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[40.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[40.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[40.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[40.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[40.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[40]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[39.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[39.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[39.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[39.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[39.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[39.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[39.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[38.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[38.81]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[38.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[38.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[38.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[38.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[38.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[38.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[38.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[38.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[38.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[38.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[38.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[38.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[38.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[38.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[38.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[38.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[39.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[39.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[39.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[39.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[39.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[40.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[40.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[40.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[40.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[40.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[40.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[40.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[40.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[40.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[40.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[40.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[41.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[41.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[41.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[41.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[41.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[41.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[41.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[42.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[42.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[42.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[42.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[43.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[43.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[44.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[45.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[45.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[47.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[48.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[49.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[51.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[52.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[53.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[54.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[54.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[54.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[54.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[53.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[52.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[51.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[50.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[48.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[46.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[44.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[43.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[41.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[39.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[36.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[31.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[28.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[25.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[22.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[19.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[21.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[22.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[24.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[25.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[27.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[28.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[29.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[30.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[32.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[33.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[34.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[35.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[36.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[37.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[37.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[38.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[39.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[39.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[40.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[40.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[40.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[40.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[39.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[39.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[38.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[38.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[38.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[37.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[37.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[37.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[37.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[37.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[37.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[37.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[38.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[38.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[39.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[40.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[40.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[41.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[43.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[44.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[45.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[46.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[46.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[47.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[47.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[47.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[47.5]},{"t":240,"s":[47.47]}]},"p":{"a":0,"k":[55.33,22.19,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":24,"ty":4,"parent":25,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[48.04,39.77,0]},"a":{"a":0,"k":[12.03,12.12,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-8.49,6.21],[8.49,-1.08]],"o":[[-1.65,8.58],[6.61,-8.58]],"v":[[-8.49,6.21],[6.61,-8.58]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.7756,0.8904,0.9844,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":1.42},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[12.03,12.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":25,"ty":4,"parent":23,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[2.33,4.22,0]},"a":{"a":0,"k":[13.96,16,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-47.58,-26.47],[7.23,22.98],[33.96,10.98],[-22.02,-28.29]],"o":[[-28.84,-2.73],[15,30.25],[23.18,2.78],[-22.02,-28.29]],"v":[[-28.84,-2.73],[7.23,22.98],[23.82,3.26],[-22.02,-28.29]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2168,0.5943,0.9032,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[34.21,30.5]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":26,"ty":4,"parent":22,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-0.04,-1.89,0]},"a":{"a":0,"k":[12.53,36.87,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[15.03,-21.47],[9.98,9.35],[-15.03,14.56],[2.72,-25.62]],"o":[[15.03,-21.47],[-0.89,25.62],[-15.03,14.56],[2.72,-25.62]],"v":[[15.03,-21.47],[4.54,17.49],[-15.03,14.56],[2.72,-25.62]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.6314,0.6784,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[15.28,25.87]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":27,"ty":4,"parent":21,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-2.04,0.83,0]},"a":{"a":0,"k":[7.38,16.4,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-9.69,7],[-6.65,9.2],[0.67,10.71],[8.18,0.32],[9.69,-7],[6.65,-9.2],[-0.67,-10.71],[-8.18,-0.32]],"o":[[-6.65,9.2],[-3.61,11.4],[2.87,7.67],[10.38,-2.71],[6.65,-9.2],[3.61,-11.4],[-2.87,-7.67],[-10.38,2.72]],"v":[[-6.65,9.2],[-6.65,9.2],[2.87,7.67],[8.18,0.32],[6.65,-9.2],[6.65,-9.2],[-2.87,-7.67],[-8.18,-0.32]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.6314,0.6784,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[10.63,11.65]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":29,"ty":4,"parent":31,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[33.5,3.76,0]},"a":{"a":0,"k":[11.94,5.72,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[4.65,-5.47],[-12.49,-2.72],[11.69,1.91]],"o":[[-9.7,-4.01],[6.12,0.97],[11.69,1.91]],"v":[[-9.7,-4.01],[-1.54,-0.55],[11.69,1.91]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7756,0.8904,0.9844,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[11.94,5.72]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":30,"ty":4,"parent":31,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[54.69,73.89,0]},"a":{"a":0,"k":[11.34,39.69,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[11.09,-39.44],[4.85,-32.7],[0.92,26.83],[2.99,38.45],[10.54,32.78]],"o":[[11.09,-39.44],[-2.47,-3.14],[-3.74,39.42],[8.24,34.82],[10.87,29.09]],"v":[[11.09,-39.44],[4.85,-32.7],[-11.09,39.44],[7.97,34.79],[10.87,29.09]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1806,0.4549,0.6794,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[11.34,39.69]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":31,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.25,"y":1},"o":{"x":0.33,"y":0},"t":13,"s":[281.6,579.54,0],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.75,"y":0},"t":61,"s":[303.6,576.54,0],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.17,"y":0},"t":104,"s":[292.6,578.54,0],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.75,"y":0},"t":144,"s":[288.1,577.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":1},"o":{"x":0.17,"y":0},"t":187,"s":[302.6,577.54,0],"to":null,"ti":null},{"t":240,"s":[281.6,579.54,0]}]},"a":{"a":0,"k":[33.94,60.73,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-27.21,50.65],[-29.29,1.55],[-25.29,-57.18],[-8.74,-60.48],[-3.79,-58.81],[16.2,-55.01],[31.04,-37.34],[33.34,31.47]],"o":[[-32.71,16.38],[-29.97,-55.58],[-17.01,-59.56],[-6.17,-59.99],[9.38,-55.59],[30.64,-47.19],[32.86,-4.92],[29.82,60.48]],"v":[[-33.68,39.08],[-30.4,-18.07],[-17.01,-59.56],[-8.74,-60.48],[-1.25,-58.19],[23.84,-50.87],[31.02,-29.09],[33.69,43.4]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2168,0.5943,0.9032,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[33.94,60.73]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":32,"ty":4,"parent":36,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[17.85,39.03,0]},"a":{"a":0,"k":[2.83,1.21,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.98,0.61],[-2.58,-0.96],[-0.49,0.28]],"o":[[-1.09,0.96],[-2.58,-0.96],[2.58,-0.94]],"v":[[-1.09,0.96],[-2.58,-0.96],[2.58,-0.94]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3882,0.4471,0.4941,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[2.83,1.21]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":33,"ty":4,"parent":36,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[15.23,25.95,0]},"a":{"a":0,"k":[4.38,4.38,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[4.13,-2.14],[2.14,4.13],[-4.13,2.13],[-2.13,-4.13]],"o":[[4.01,2.36],[-2.36,4.01],[-4.01,-2.36],[2.36,-4.01]],"v":[[4.07,0.11],[-0.11,4.07],[-4.07,-0.11],[0.11,-4.07]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.6314,0.6784,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[4.38,4.38]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":34,"ty":4,"parent":36,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[7.83,20.51,0]},"a":{"a":0,"k":[22.85,21.58,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-22.6,-8.31],[-9.63,21.33],[8.79,13.51],[4.51,7.52],[10.58,2.5],[3.7,-2.37],[14.74,-2.05],[17.95,-14.88],[0.28,-26.33],[2.73,-19.61]],"o":[[-11.35,15.1],[5.17,19.67],[6.38,6.86],[3.95,4.5],[12.03,0.52],[3.99,-2.71],[22.57,-7.92],[11.59,-19.48],[11.3,-15.28],[-9.03,-15.67]],"v":[[-11.35,15.1],[1.73,20.06],[7.37,9.59],[4.22,5.99],[11.4,1.38],[3.81,-2.55],[15.51,-2.62],[13.72,-17.94],[7.82,-18.77],[-1.27,-18.27]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[22.85,21.58]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":35,"ty":4,"parent":31,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[36.29,-2.13,0]},"a":{"a":0,"k":[9.68,16,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.17,15.75],[-4.3,14.68],[-9.43,10.57],[-3.95,-10.63],[0.17,-15.75],[4.3,-14.68],[9.43,-10.57],[6.67,10.58]],"o":[[-3.36,14.93],[-7.5,13.86],[-8.61,7.38],[-3.12,-13.82],[3.36,-14.93],[7.5,-13.86],[8.61,-7.38],[5.85,13.77]],"v":[[-3.36,14.93],[-4.3,14.68],[-8.61,7.38],[-3.95,-10.63],[3.36,-14.93],[4.3,-14.68],[8.61,-7.38],[6.67,10.58]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.6314,0.6784,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[9.68,16.01]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":36,"ty":4,"parent":31,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":0,"s":[17]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":29.62,"s":[-18.15]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":55,"s":[0]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":90,"s":[17]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":119.08,"s":[-18.15]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":144,"s":[0]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":182,"s":[-18.15]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":208,"s":[0]},{"t":240,"s":[17]}]},"p":{"a":0,"k":[41.54,-4.15,0]},"a":{"a":0,"k":[14.53,38.97,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[14.02,-3.01],[5.08,20.97],[-14.02,1.59],[-7.73,-20.97]],"o":[[13.51,15.48],[-8.66,12.51],[-13.51,-16.9],[6.01,-12.51]],"v":[[13.77,6.24],[-1.79,16.74],[-13.77,-7.65],[-0.86,-16.74]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.6314,0.6784,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[14.28,21.22]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":37,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[-19.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[-19.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[-20.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[-20.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[-20.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[-20.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[-20.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[-20.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[-20.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[-20.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[-21.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[-21.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[-21.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[-21.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[-21.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-22.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[-22.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[-22.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[-22.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[-22.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[-21.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[-21.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[-21.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[-20.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[-19.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[-19.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[-18.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[-17.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[-16.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[-14.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[-13.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[-12.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[-11.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[-10.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[-9.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-8.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[-7.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[-6.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[-6.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[-5.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[-5.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[-4.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[-4.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[-3.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[-3.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[-2.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[-2.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[-2.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[-1.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[-1.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[-1.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[-1.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[-0.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[-0.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[-0.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-0.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[-0.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[-0.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[-0.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[-0.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[-0.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[-0.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[-0.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[-0.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[-0.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[-0.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[-0.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[-0.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[-0.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[-0.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[-1.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[-1.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[-1.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[-1.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[-2.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[-2.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[-3.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[-4.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[-4.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[-5.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[-6.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[-7.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[-8.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[-9.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[-10.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[-10.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[-11.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[-11.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[-11.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[-12.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[-12.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[-12.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[-12.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[-12.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[-12.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[-12.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[-12.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[-12.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[-12.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[-12.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[-12.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[-12.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[-12.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[-12.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[-12.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[-13.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[-13.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[-13.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[-13.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[-13.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[-13.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[-13.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[-13.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[-13.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[-13.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[-13.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[-13.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[-13.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[-14.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[-14.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[-14.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[-14.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[-14.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[-14.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[-14.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[-14.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[-14.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[-14.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[-14.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[-14.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[-14.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[-14.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[-14.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[-14.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[-14.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[-14.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[-14.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[-14.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[-14.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[-14.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[-14.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[-14.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[-14.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[-14.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[-14.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[-14.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[-14.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[-14.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[-14.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[-14.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[-14.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[-14.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[-13.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[-13.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[-13.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[-13.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[-13.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[-12.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[-12.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[-12.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[-11.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[-10.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[-9.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[-8.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[-7.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[-7.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[-6.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[-5.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[-5.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[-5.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[-4.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[-4.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[-4.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[-4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[-3.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[-3.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[-3.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[-3.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[-3.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[-3.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[-3.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[-3.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[-3.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[-3.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[-3.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[-3.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[-3.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[-3.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[-4.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[-4.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[-4.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[-5.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[-5.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[-6.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[-6.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[-6.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[-7.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[-8.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[-8.81]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[-9.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[-10.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[-10.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[-11.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[-12.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[-12.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[-13.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[-13.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[-14.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[-15.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[-15.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[-16.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[-16.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[-16.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[-17.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[-17.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[-18.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[-18.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[-18.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[-18.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[-19.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[-19.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[-19.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[-19.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[-19.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[-19.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[-19.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[-19.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[-19.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[-19.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[-19.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[-19.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[-19.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[-19.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[-19.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[-19.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[-19.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[-19.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":240,"s":[-19.96]},{"t":241,"s":[-19.96]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[267.2,618.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[267.2,618.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[267.2,618.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[267.19,618.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[267.19,618.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[267.22,618.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[267.32,618.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[267.49,618.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[267.75,618.14,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[268.09,618.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[268.53,618.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[269.08,617.96,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[269.75,617.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[270.53,617.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[271.42,617.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[272.4,617.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[273.46,617.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[274.55,617.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[275.65,617.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[276.73,616.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[277.78,616.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[278.77,616.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[279.71,616.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[280.59,616.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[281.4,616.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[282.15,616.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[282.85,616.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[283.49,616.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[284.08,616.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[284.62,616.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[285.12,615.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[285.58,615.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[285.99,615.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[286.38,615.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[286.73,615.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[287.05,615.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[287.34,615.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[287.6,615.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[287.84,615.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[288.05,615.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[288.25,615.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[288.42,615.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[288.57,615.58,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[288.71,615.56,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[288.83,615.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[288.93,615.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[289.02,615.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[289.09,615.52,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[289.15,615.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[289.19,615.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[289.23,615.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[289.24,615.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[289.25,615.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[289.24,615.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[289.24,615.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[289.22,615.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[289.19,615.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[289.15,615.52,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[289.1,615.52,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[289.03,615.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[288.95,615.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[288.86,615.56,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[288.74,615.58,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[288.61,615.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[288.45,615.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[288.27,615.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[288.04,615.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[287.78,615.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[287.45,615.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[287.06,615.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[286.57,615.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[285.95,616.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[285.18,616.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[284.25,616.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[283.24,616.49,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84,"s":[282.31,616.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85,"s":[281.53,616.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86,"s":[280.91,616.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87,"s":[280.42,616.96,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[280.02,617.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89,"s":[279.7,617.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90,"s":[279.44,617.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91,"s":[279.21,617.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[279.03,617.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[278.87,617.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[278.73,617.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[278.62,617.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96,"s":[278.52,617.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[278.45,617.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[278.38,617.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[278.33,617.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[278.29,617.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[278.26,617.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[278.24,617.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":103,"s":[278.23,617.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104,"s":[278.23,617.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105,"s":[278.19,617.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[278.09,617.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107,"s":[277.92,617.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108,"s":[277.72,617.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109,"s":[277.48,617.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110,"s":[277.23,617,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[276.97,616.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[276.71,616.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[276.47,616.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114,"s":[276.24,616.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[276.02,616.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116,"s":[275.82,616.52,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117,"s":[275.63,616.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[275.46,616.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[275.29,616.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120,"s":[275.14,616.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[275,616.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122,"s":[274.86,616.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[274.74,616.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124,"s":[274.63,616.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[274.52,616.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[274.43,616.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127,"s":[274.34,616.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128,"s":[274.26,616,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[274.19,615.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[274.13,615.95,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131,"s":[274.07,615.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132,"s":[274.01,615.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[273.96,615.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134,"s":[273.92,615.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135,"s":[273.88,615.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136,"s":[273.84,615.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[273.81,615.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[273.79,615.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139,"s":[273.77,615.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140,"s":[273.75,615.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141,"s":[273.74,615.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[273.73,615.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[273.72,615.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[273.72,615.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[273.73,615.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[273.74,615.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147,"s":[273.76,615.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148,"s":[273.8,615.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149,"s":[273.85,615.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[273.92,615.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[274.01,615.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152,"s":[274.11,615.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153,"s":[274.24,615.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[274.38,615.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155,"s":[274.56,615.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[274.77,615.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157,"s":[275.02,615.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158,"s":[275.31,615.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159,"s":[275.66,615.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[276.09,615.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[276.61,615.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162,"s":[277.26,615.96,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[278.06,616,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164,"s":[279.08,616.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165,"s":[280.31,616.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[281.65,616.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[282.88,616.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[283.9,616.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[284.71,616.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[285.36,616.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[285.88,616.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172,"s":[286.31,616.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173,"s":[286.66,616.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174,"s":[286.95,616.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[287.2,616.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[287.41,616.42,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177,"s":[287.58,616.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[287.73,616.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[287.86,616.44,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[287.96,616.44,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[288.05,616.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[288.11,616.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183,"s":[288.17,616.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184,"s":[288.21,616.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[288.23,616.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186,"s":[288.24,616.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187,"s":[288.25,616.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188,"s":[288.18,616.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189,"s":[288,616.48,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[287.76,616.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[287.47,616.52,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[287.16,616.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193,"s":[286.82,616.57,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194,"s":[286.46,616.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[286.08,616.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[285.69,616.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[285.28,616.7,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[284.86,616.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[284.43,616.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200,"s":[284,616.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[283.56,616.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202,"s":[283.11,616.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203,"s":[282.65,616.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204,"s":[282.2,616.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205,"s":[281.73,616.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206,"s":[281.27,617.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207,"s":[280.8,617.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208,"s":[280.33,617.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209,"s":[279.86,617.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210,"s":[279.38,617.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[278.91,617.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[278.43,617.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[277.96,617.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214,"s":[277.48,617.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215,"s":[277,617.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[276.52,617.39,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217,"s":[276.05,617.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218,"s":[275.58,617.47,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219,"s":[275.1,617.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[274.63,617.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[274.17,617.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222,"s":[273.7,617.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223,"s":[273.24,617.68,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[272.79,617.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[272.33,617.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[271.89,617.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227,"s":[271.44,617.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[271.01,617.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229,"s":[270.58,617.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230,"s":[270.17,617.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[269.76,618.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[269.37,618.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[268.99,618.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[268.63,618.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235,"s":[268.29,618.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236,"s":[267.98,618.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237,"s":[267.69,618.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238,"s":[267.45,618.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239,"s":[267.27,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":240,"s":[267.2,618.24,0],"to":null,"ti":null},{"t":241,"s":[267.2,618.24,0]}]},"a":{"a":0,"k":[55.11,7.87,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-7.5,20.25],[1.68,-47.74],[2.48,-61.72],[13.5,-82.75],[34.61,-56.09],[11.84,11.51]],"o":[[-5.81,3.01],[1.04,-55.53],[5.7,-73.12],[39.35,-72.22],[34.61,-56.09],[11.37,12.89]],"v":[[-5.81,3.01],[1.68,-47.74],[5.7,-73.12],[25.88,-77.71],[34.61,-56.09],[11.84,11.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[34.86,73.37]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":38,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[-21.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[-21.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[-21.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[-20.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[-20.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[-20.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[-20.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[-20.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[-19.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[-19.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[-18.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[-18.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[-17.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[-17.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[-16.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-15.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[-15.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[-14.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[-13.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[-12.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[-11.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[-10.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[-9.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[-8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[-6.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[-5.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[-4.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[-2.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[-1.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[-0.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[0.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[1.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[2.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[2.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[3.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[3.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[3.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[3.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[3.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[2.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[2.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[2.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[2.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[2.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[1.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[1.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[1.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[1.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[1.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[0.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[0.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[0.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[0.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[0.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[0.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[0.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[0.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[0.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[0.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[0.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[0.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[0.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[0.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[0.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[0.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[0.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[0.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[0.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[0.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[0.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[0.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[1.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[1.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[1.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[1.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[2.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[2.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[2.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[3.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[3.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[4.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[4.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[4.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[5.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[5.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[5.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[5.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[5.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[5.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[5.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[5.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[5.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[5.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[5.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[5.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[5.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[5.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[5.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[5.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[5.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[5.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[5.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[5.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[5.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[5.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[5.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[5.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[5.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[5.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[5.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[5.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[5.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[4.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[4.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[4.81]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[4.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[4.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[4.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[4.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[4.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[4.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[4.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[4.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[4.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[4.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[4.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[4.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[4.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[4.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[4.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[4.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[3.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[3.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[3.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[3.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[3.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[3.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[3.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[3.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[3.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[3.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[3.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[3.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[3.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[3.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[3.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[3.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[3.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[3.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[4.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[4.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[4.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[4.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[4.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[4.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[4.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[3.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[3.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[3.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[3.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[3.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[3.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[3.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[3.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[3.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[3.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[3.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[3.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[3.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[2.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[2.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[2.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[2.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[2.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[2.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[2.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[2.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[2.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[3.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[3.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[3.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[3.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[3.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[3.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[3.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[4.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[4.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[4.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[4.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[4.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[3.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[3.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[3.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[2.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[2.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[1.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[0.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[0.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[-0.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[-0.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[-1.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[-2.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[-3.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[-3.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[-4.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[-5.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[-6.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[-7.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[-7.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[-8.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[-9.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[-10.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[-11.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[-12.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[-13.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[-14.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[-15.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[-15.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[-16.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[-17.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[-18.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[-19.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[-19.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[-20.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[-20.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[-21.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[-21.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[-21.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[-21.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":240,"s":[-21.18]},{"t":241,"s":[-21.18]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[275.39,692.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[275.41,692.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[275.46,692.36,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[275.55,692.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[275.67,692.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[275.83,692.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[276.02,692.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[276.25,692.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[276.51,692.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[276.8,692.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[277.11,692.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[277.45,692.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[277.8,692.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[278.16,692.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[278.54,691.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[278.93,691.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[279.33,691.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[279.73,691.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[280.13,691.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[280.53,691.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[280.9,691.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[281.26,691.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[281.57,691.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[281.81,691.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[281.98,691.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[282.04,691.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[281.98,691.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[281.78,691.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[281.44,691.68,0],"to":[-0.13,-0.01,0],"ti":[0.18,0.02,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[280.97,691.63,0],"to":[-0.17,-0.02,0],"ti":[0.21,0.03,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[280.39,691.56,0],"to":[-0.2,-0.03,0],"ti":[0.22,0.04,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[279.74,691.46,0],"to":[-0.22,-0.04,0],"ti":[0.23,0.05,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[279.06,691.32,0],"to":[-0.22,-0.05,0],"ti":[0.22,0.06,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[278.39,691.17,0],"to":[-0.22,-0.06,0],"ti":[0.2,0.06,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[277.76,690.99,0],"to":[-0.2,-0.06,0],"ti":[0.18,0.06,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[277.17,690.8,0],"to":[-0.18,-0.06,0],"ti":[0.16,0.06,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[276.66,690.61,0],"to":[-0.16,-0.06,0],"ti":[0.14,0.06,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[276.21,690.42,0],"to":[-0.14,-0.06,0],"ti":[0.12,0.06,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[275.82,690.23,0],"to":[-0.12,-0.06,0],"ti":[0.1,0.06,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[275.49,690.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[275.2,689.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[274.9,689.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[274.62,689.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[274.35,689.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[274.08,689.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[273.83,689.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[273.59,688.98,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[273.36,688.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[273.15,688.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[272.95,688.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[272.76,688.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[272.58,688.44,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[272.42,688.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[272.28,688.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[272.15,688.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[272.04,688.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[271.95,688.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[271.88,688.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[271.82,688.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[271.77,688.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[271.75,688,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[271.75,688,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[271.75,688,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[271.76,688.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[271.79,688.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[271.84,688.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[271.9,688.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[271.97,688.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[272.06,688.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[272.18,688.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[272.31,688.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[272.46,688.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[272.64,688.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[272.83,688.57,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[273.06,688.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[273.32,688.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[273.62,688.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[273.96,689.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[274.34,689.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[274.79,689.65,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[275.3,689.94,0],"to":[0.18,0.11,0],"ti":[-0.2,-0.12,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[275.88,690.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[276.49,690.65,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[277.08,691,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84,"s":[277.56,691.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85,"s":[277.92,691.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86,"s":[278.19,691.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87,"s":[278.39,691.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[278.54,691.92,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89,"s":[278.65,691.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90,"s":[278.75,692.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91,"s":[278.82,692.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[278.89,692.14,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[278.94,692.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[278.98,692.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[279.02,692.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96,"s":[279.05,692.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[279.07,692.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[279.09,692.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[279.11,692.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[279.12,692.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[279.13,692.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[279.13,692.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":103,"s":[279.14,692.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104,"s":[279.14,692.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105,"s":[279.12,692.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[279.06,692.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107,"s":[278.98,692.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108,"s":[278.87,692.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109,"s":[278.74,692.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110,"s":[278.6,691.96,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[278.46,691.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[278.32,691.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[278.19,691.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114,"s":[278.06,691.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[277.94,691.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116,"s":[277.83,691.47,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117,"s":[277.72,691.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[277.62,691.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[277.52,691.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120,"s":[277.44,691.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[277.36,691.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122,"s":[277.28,691.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[277.21,691.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124,"s":[277.14,691.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[277.08,691,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[277.03,690.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127,"s":[276.98,690.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128,"s":[276.93,690.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[276.89,690.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[276.85,690.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131,"s":[276.82,690.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132,"s":[276.78,690.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[276.75,690.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134,"s":[276.73,690.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135,"s":[276.71,690.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136,"s":[276.68,690.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[276.67,690.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[276.65,690.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139,"s":[276.64,690.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140,"s":[276.63,690.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141,"s":[276.62,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[276.62,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[276.61,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[276.61,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[276.61,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[276.61,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147,"s":[276.62,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148,"s":[276.62,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149,"s":[276.62,690.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[276.63,690.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[276.64,690.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152,"s":[276.65,690.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153,"s":[276.66,690.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[276.67,690.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155,"s":[276.69,690.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[276.7,690.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157,"s":[276.72,690.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158,"s":[276.74,690.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159,"s":[276.76,690.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[276.78,690.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[276.81,690.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162,"s":[276.83,690.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[276.84,690.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164,"s":[276.84,690.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165,"s":[276.8,690.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[276.72,690.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[276.59,690.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[276.45,690.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[276.31,690.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[276.19,690.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[276.07,690.39,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172,"s":[275.96,690.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173,"s":[275.87,690.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174,"s":[275.79,690.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[275.72,690.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[275.65,690.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177,"s":[275.6,690.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[275.55,690.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[275.51,690.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[275.47,690.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[275.44,690.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[275.42,690.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183,"s":[275.4,690,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184,"s":[275.39,689.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[275.38,689.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186,"s":[275.37,689.98,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187,"s":[275.37,689.98,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188,"s":[275.42,690.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189,"s":[275.54,690.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[275.69,690.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[275.88,690.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[276.07,690.39,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193,"s":[276.26,690.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194,"s":[276.46,690.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[276.65,690.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[276.85,690.86,0],"to":[0.06,0.04,0],"ti":[-0.07,-0.04,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[277.03,690.97,0],"to":[0.08,0.04,0],"ti":[-0.1,-0.04,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[277.3,691.09,0],"to":[0.1,0.04,0],"ti":[-0.13,-0.04,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[277.66,691.21,0],"to":[0.13,0.04,0],"ti":[-0.14,-0.04,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200,"s":[278.07,691.33,0],"to":[0.14,0.04,0],"ti":[-0.15,-0.03,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[278.52,691.44,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202,"s":[278.96,691.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203,"s":[279.41,691.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204,"s":[279.84,691.7,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205,"s":[280.25,691.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206,"s":[280.63,691.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207,"s":[280.99,691.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208,"s":[281.31,691.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209,"s":[281.6,691.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210,"s":[281.85,691.92,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[282.07,691.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[282.24,691.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[282.37,691.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214,"s":[282.47,691.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215,"s":[282.51,691.92,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[282.52,691.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217,"s":[282.48,691.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218,"s":[282.4,691.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219,"s":[282.27,691.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[282.1,691.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[281.88,691.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222,"s":[281.62,691.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223,"s":[281.31,691.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[280.96,691.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[280.58,691.95,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[280.15,691.98,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227,"s":[279.69,692.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[279.2,692.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229,"s":[278.68,692.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230,"s":[278.15,692.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[277.61,692.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[277.08,692.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[276.58,692.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[276.14,692.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235,"s":[275.78,692.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236,"s":[275.54,692.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237,"s":[275.44,692.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238,"s":[275.42,692.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239,"s":[275.4,692.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":240,"s":[275.39,692.37,0],"to":null,"ti":null},{"t":241,"s":[275.39,692.37,0]}]},"a":{"a":0,"k":[37.61,80.36,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-20.66,69.77],[-33.83,63.73],[-23.42,13.77],[-0.75,-2],[11.34,11.76],[7.75,23.21]],"o":[[-26.27,73.12],[-27.86,41.03],[-5.81,3.01],[13.14,4.01],[10.87,13.14],[6.99,24.46]],"v":[[-20.66,69.77],[-34.61,59.91],[-5.81,3.01],[5.01,0.49],[11.34,11.76],[6.99,24.46]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[34.86,73.37]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":39,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[-37.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[-37.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[-37.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[-36.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[-36.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[-36.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[-36.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[-36.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[-35.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[-35.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[-34.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[-34.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[-33.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[-33.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[-32.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-31.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[-31.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[-30.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[-29.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[-28.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[-27.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[-26.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[-25.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[-24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[-22.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[-21.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[-20.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[-18.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[-17.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[-16.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[-15.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[-14.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[-13.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[-13.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[-12.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-12.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[-12.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[-12.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[-12.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[-13.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[-13.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[-13.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[-13.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[-13.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[-14.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[-14.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[-14.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[-14.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[-14.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[-15.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[-15.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[-15.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[-15.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[-15.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[-15.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-15.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[-15.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[-15.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[-15.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[-15.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[-15.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[-16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[-16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[-15.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[-15.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[-15.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[-15.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[-15.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[-15.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[-15.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[-15.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[-15.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[-15.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[-15.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[-14.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[-14.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[-14.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[-14.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[-13.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[-13.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[-13.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[-12.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[-12.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[-11.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[-11.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[-11.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[-10.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[-10.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[-10.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[-10.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[-10.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[-10.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[-10.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[-10.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[-10.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[-10.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[-10.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[-10.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[-10.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[-10.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[-10.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[-10.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[-10.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[-10.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[-10.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[-10.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[-10.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[-10.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[-10.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[-10.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[-10.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[-10.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[-10.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[-10.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[-10.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[-11.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[-11.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[-11.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[-11.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[-11.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[-11.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[-11.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[-11.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[-11.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[-11.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[-11.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[-11.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[-11.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[-11.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[-11.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[-11.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[-11.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[-11.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[-11.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[-12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[-12.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[-12.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[-12.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[-12.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[-12.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[-12.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[-12.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[-12.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[-12.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[-12.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[-12.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[-12.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[-12.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[-12.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[-12.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[-12.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[-12.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[-12.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[-12.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[-12.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[-12.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[-12.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[-12.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[-12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[-11.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[-11.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[-11.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[-11.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[-11.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[-11.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[-11.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[-12.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[-12.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[-12.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[-12.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[-12.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[-12.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[-12.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[-12.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[-12.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[-12.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[-12.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[-12.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[-12.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[-13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[-13.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[-13.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[-13.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[-13.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[-13.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[-13.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[-13.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[-13.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[-13.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[-12.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[-12.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[-12.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[-12.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[-12.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[-12.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[-12.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[-11.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[-11.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[-11.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[-11.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[-11.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[-12.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[-12.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[-12.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[-13.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[-13.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[-14.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[-15.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[-15.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[-16.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[-16.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[-17.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[-18.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[-19.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[-19.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[-20.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[-21.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[-22.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[-23.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[-23.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[-24.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[-25.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[-26.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[-27.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[-28.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[-29.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[-30.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[-31.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[-31.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[-32.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[-33.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[-34.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[-35.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[-35.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[-36.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[-36.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[-37.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[-37.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[-37.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[-37.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":240,"s":[-37.18]},{"t":241,"s":[-37.18]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[265.75,762.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[265.74,762.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[265.71,762.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[265.67,762.58,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[265.6,762.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[265.51,762.49,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[265.4,762.42,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[265.26,762.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[265.09,762.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[264.89,762.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[264.65,761.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[264.38,761.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[264.06,761.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[263.7,761.47,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[263.3,761.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[262.83,761.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[262.31,760.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[261.73,760.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[261.07,760.12,0],"to":[-0.23,-0.11,0],"ti":[0.26,0.13,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[260.33,759.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[259.5,759.37,0],"to":[-0.29,-0.14,0],"ti":[0.33,0.15,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[258.58,758.93,0],"to":[-0.33,-0.15,0],"ti":[0.37,0.17,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[257.54,758.45,0],"to":[-0.36,-0.17,0],"ti":[0.41,0.18,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[256.39,757.93,0],"to":[-0.4,-0.18,0],"ti":[0.45,0.2,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[255.11,757.35,0],"to":[-0.45,-0.2,0],"ti":[0.49,0.21,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[253.7,756.74,0],"to":[-0.49,-0.21,0],"ti":[0.53,0.23,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[252.16,756.07,0],"to":[-0.53,-0.23,0],"ti":[0.56,0.24,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[250.51,755.36,0],"to":[-0.56,-0.24,0],"ti":[0.58,0.25,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[248.78,754.63,0],"to":[-0.58,-0.24,0],"ti":[0.58,0.24,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[247.01,753.9,0],"to":[-0.58,-0.24,0],"ti":[0.56,0.23,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[245.29,753.19,0],"to":[-0.56,-0.23,0],"ti":[0.51,0.21,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[243.68,752.53,0],"to":[-0.51,-0.21,0],"ti":[0.44,0.18,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[242.25,751.95,0],"to":[-0.44,-0.18,0],"ti":[0.37,0.15,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[241.03,751.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[240.03,751.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[239.25,750.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[238.67,750.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[238.27,750.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[238.03,750.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[237.92,750.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[237.87,750.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[237.83,750.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[237.79,750.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[237.75,750.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[237.71,750.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[237.67,750.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[237.63,750.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[237.6,750.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[237.57,750.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[237.54,750.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[237.51,750.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[237.48,750.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[237.46,750.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[237.44,750.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[237.42,750.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[237.4,750.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[237.39,750.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[237.38,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[237.37,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[237.36,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[237.36,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[237.36,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[237.36,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[237.36,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[237.37,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[237.37,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[237.38,750.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[237.39,750.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[237.41,750.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[237.42,750.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[237.44,750.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[237.47,750.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[237.49,750.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[237.52,750.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[237.56,750.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[237.59,750.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[237.64,750.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[237.69,750.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[237.75,750.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[237.81,750.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[237.89,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[237.98,750.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[238.07,750.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[238.16,750.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84,"s":[238.23,750.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85,"s":[238.29,750.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86,"s":[238.33,750.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87,"s":[238.36,750.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[238.38,750.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89,"s":[238.4,750.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90,"s":[238.41,750.39,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91,"s":[238.42,750.39,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[238.43,750.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[238.44,750.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[238.45,750.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[238.45,750.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96,"s":[238.46,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[238.46,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[238.46,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[238.47,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[238.47,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[238.47,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[238.47,750.41,0],"to":null,"ti":null},{"i":{"x":0.85,"y":0.85},"o":{"x":0.16,"y":0.16},"t":103,"s":[238.47,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104,"s":[238.47,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105,"s":[238.47,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[238.46,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107,"s":[238.45,750.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108,"s":[238.43,750.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109,"s":[238.41,750.39,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110,"s":[238.39,750.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[238.37,750.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[238.35,750.36,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[238.33,750.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114,"s":[238.31,750.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[238.29,750.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116,"s":[238.27,750.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117,"s":[238.26,750.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[238.24,750.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[238.23,750.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120,"s":[238.21,750.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[238.2,750.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122,"s":[238.19,750.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[238.18,750.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124,"s":[238.17,750.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[238.16,750.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[238.15,750.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127,"s":[238.14,750.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128,"s":[238.14,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[238.13,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132,"s":[238.11,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[238.11,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134,"s":[238.11,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158,"s":[238.11,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159,"s":[238.11,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[238.11,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[238.08,750.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[238.06,750.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[238.04,750.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[238.02,750.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[238.01,750.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172,"s":[237.99,750.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173,"s":[237.98,750.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174,"s":[237.96,750.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[237.95,750.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[237.94,750.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177,"s":[237.94,750.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[237.93,750.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[237.92,750.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[237.92,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[237.91,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[237.91,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183,"s":[237.91,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184,"s":[237.9,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[237.9,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186,"s":[237.9,750.2,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187,"s":[237.9,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188,"s":[237.91,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189,"s":[237.93,750.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[237.95,750.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[237.98,750.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[238.01,750.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193,"s":[238.04,750.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194,"s":[238.06,750.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[238.15,750.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[238.36,750.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[238.81,750.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200,"s":[239.43,750.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[240.16,751.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202,"s":[240.96,751.42,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203,"s":[241.82,751.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204,"s":[242.71,752.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205,"s":[243.64,752.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206,"s":[244.58,752.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207,"s":[245.54,753.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208,"s":[246.51,753.68,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209,"s":[247.48,754.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210,"s":[248.46,754.49,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[249.43,754.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[250.39,755.3,0],"to":[0.32,0.14,0],"ti":[-0.32,-0.13,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[251.34,755.7,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214,"s":[252.29,756.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215,"s":[253.22,756.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[254.13,756.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217,"s":[255.02,757.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218,"s":[255.9,757.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219,"s":[256.76,758.07,0],"to":[0.28,0.13,0],"ti":[-0.27,-0.12,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[257.59,758.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[258.4,758.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222,"s":[259.17,759.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223,"s":[259.92,759.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[260.63,759.88,0],"to":[0.23,0.11,0],"ti":[-0.22,-0.11,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[261.31,760.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[261.95,760.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227,"s":[262.56,760.83,0],"to":[0.19,0.1,0],"ti":[-0.18,-0.09,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[263.12,761.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229,"s":[263.63,761.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230,"s":[264.1,761.65,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[264.51,761.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[264.88,762.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[265.18,762.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[265.43,762.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235,"s":[265.6,762.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236,"s":[265.71,762.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237,"s":[265.75,762.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238,"s":[265.75,762.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239,"s":[265.75,762.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":240,"s":[265.75,762.64,0],"to":null,"ti":null},{"t":241,"s":[265.75,762.64,0]}]},"a":{"a":0,"k":[10.47,10.64,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.91,6.97],[-10.22,4.14],[0.65,-10.39],[10.22,-4.14]],"o":[[-0.65,10.39],[-7.66,0.72],[0.65,-10.39],[10.22,-4.14]],"v":[[1.91,6.97],[-7.66,0.72],[0.65,-10.39],[10.22,-4.14]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.6314,0.6784,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[10.47,10.64]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":40,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[-51.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[-51.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[-51.81]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[-51.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[-51.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[-51.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[-50.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[-50.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[-50.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[-49.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[-48.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[-48.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[-47.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[-46.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-45.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[-44.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[-43.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[-42.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[-40.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[-38.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[-37.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[-35.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[-32.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[-30.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[-27.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[-24.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[-21.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[-18.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[-15.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[-12.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[-9.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[-7.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[-5.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[-3.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-2.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[-1.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[-0.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[-0.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[-0.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[-1.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[-2.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[-3.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[-4.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[-6.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[-7.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[-9.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[-11.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[-12.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[-14.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[-16.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[-18.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[-19.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[-21.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[-23.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[-25.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[-26.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[-28.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[-30.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[-31.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[-33.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[-35.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[-36.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[-38.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[-39.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[-41.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[-42.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[-43.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[-44.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[-46.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[-47.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[-48.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[-49.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[-49.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[-50.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[-51.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[-51.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[-51.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[-52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[-52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[-52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":240,"s":[-52]},{"t":241,"s":[-52]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[264.49,769.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[264.45,769.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[264.4,769.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[264.31,769.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[264.2,769.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[264.06,769.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[263.89,768.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[263.68,768.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[263.43,768.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[263.15,768.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[262.83,768.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[262.46,768.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[262.05,768.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[261.58,767.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[261.06,767.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[260.48,767.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[259.83,766.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[259.11,766.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[258.31,766.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[257.43,765.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[256.44,765.17,0],"to":[-0.34,-0.17,0],"ti":[0.38,0.19,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[255.36,764.64,0],"to":[-0.38,-0.19,0],"ti":[0.42,0.2,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[254.16,764.05,0],"to":[-0.42,-0.2,0],"ti":[0.46,0.22,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[252.86,763.42,0],"to":[-0.46,-0.22,0],"ti":[0.49,0.23,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[251.43,762.74,0],"to":[-0.49,-0.23,0],"ti":[0.53,0.25,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[249.89,762.02,0],"to":[-0.53,-0.24,0],"ti":[0.56,0.25,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[248.26,761.27,0],"to":[-0.56,-0.25,0],"ti":[0.57,0.25,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[246.56,760.5,0],"to":[-0.57,-0.25,0],"ti":[0.56,0.25,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[244.85,759.75,0],"to":[-0.56,-0.24,0],"ti":[0.53,0.23,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[243.19,759.04,0],"to":[-0.53,-0.23,0],"ti":[0.48,0.2,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[241.66,758.39,0],"to":[-0.48,-0.2,0],"ti":[0.42,0.17,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[240.31,757.83,0],"to":[-0.42,-0.17,0],"ti":[0.34,0.14,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[239.17,757.36,0],"to":[-0.34,-0.14,0],"ti":[0.27,0.11,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[238.24,756.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[237.53,756.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[237.01,756.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[236.67,756.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[236.48,756.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":103,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[236.6,756.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[237.01,756.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200,"s":[237.58,756.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[238.26,757,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202,"s":[239.01,757.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203,"s":[239.81,757.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204,"s":[240.66,757.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205,"s":[241.54,758.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206,"s":[242.44,758.72,0],"to":[0.3,0.13,0],"ti":[-0.31,-0.13,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207,"s":[243.36,759.11,0],"to":[0.31,0.13,0],"ti":[-0.31,-0.13,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208,"s":[244.29,759.51,0],"to":[0.31,0.14,0],"ti":[-0.31,-0.14,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209,"s":[245.23,759.92,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210,"s":[246.18,760.33,0],"to":[0.32,0.14,0],"ti":[-0.31,-0.14,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[247.12,760.76,0],"to":[0.32,0.14,0],"ti":[-0.31,-0.14,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[248.07,761.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[249.01,761.61,0],"to":[0.31,0.14,0],"ti":[-0.31,-0.14,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214,"s":[249.95,762.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215,"s":[250.87,762.48,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[251.79,762.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217,"s":[252.69,763.34,0],"to":[0.3,0.14,0],"ti":[-0.29,-0.14,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218,"s":[253.59,763.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219,"s":[254.47,764.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[255.33,764.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[256.17,765.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222,"s":[256.99,765.44,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223,"s":[257.79,765.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[258.55,766.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[259.29,766.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[260,766.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227,"s":[260.67,767.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[261.31,767.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229,"s":[261.9,767.95,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230,"s":[262.45,768.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[262.94,768.49,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[263.38,768.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[263.76,768.92,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[264.07,769.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235,"s":[264.3,769.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236,"s":[264.45,769.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237,"s":[264.5,769.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238,"s":[264.5,769.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239,"s":[264.5,769.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":240,"s":[264.5,769.31,0],"to":null,"ti":null},{"t":241,"s":[264.5,769.31,0]}]},"a":{"a":0,"k":[11.43,5.87,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.27,-11.81],[4.78,1.83],[12.68,10.04],[8.83,15.88],[1.95,14.33],[-6.23,1.37],[-7.94,-0.11],[-9.85,-0.43],[-15.63,-5.07],[-9.65,-12.19],[-5.51,-16.22]],"o":[[4.62,-8.76],[7.18,9.17],[10.54,12.95],[7.02,17.72],[0.7,12.72],[-6.23,1.37],[-7.94,-0.11],[-10.94,-2.92],[-14.09,-8.8],[-8.66,-13.09],[-0.11,-16.37]],"v":[[4.62,-8.76],[4.78,1.83],[10.54,12.95],[8.83,15.88],[0.7,12.72],[-6.23,1.37],[-7.94,-0.11],[-9.85,-0.43],[-14.62,-7.5],[-8.66,-13.09],[-3.91,-16.26]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[12.93,16.62]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":41,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[-14.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-14.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[-14.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[-14.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[-13.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[-13.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[-13.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[-13.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[-12.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[-12.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[-12.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[-11.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[-11.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[-10.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[-9.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[-9.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[-8.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[-8.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[-7.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[-7.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[-6.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-6.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[-5.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[-5.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[-5.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[-4.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[-4.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[-4.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[-3.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[-3.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[-3.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[-2.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[-2.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[-2.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[-1.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[-1.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[-1.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[-1.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[-1.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[-0.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[-0.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-0.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[-0.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[-0.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[-0.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[-0.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[-0.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[-0.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[-0.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[-0.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[-0.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[-0.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[-0.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[-0.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[-0.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[-0.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[-1.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[-1.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[-1.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[-1.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[-2.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[-2.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[-3.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[-3.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[-3.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[-4.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[-5.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[-6.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[-6.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[-7.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[-8.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[-8.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[-8.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[-9.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[-9.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[-9.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[-9.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[-9.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[-9.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[-9.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[-10.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[-10.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[-10.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[-10.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[-10.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[-10.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[-10.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[-10.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[-10.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[-10.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[-10.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[-10.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[-10.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[-10.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[-9.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[-9.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[-9.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[-9.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[-9.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[-9.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[-9.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[-8.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[-8.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[-8.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[-8.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[-8.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[-8.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[-8.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[-7.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[-7.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[-7.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[-7.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[-7.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[-7.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[-7.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[-7.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[-7.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[-6.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[-6.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[-6.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[-6.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[-6.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[-6.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[-6.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[-6.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[-6.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[-6.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[-6.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[-6.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[-6.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[-6.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[-6.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[-6.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[-6.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[-6.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[-6.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[-6.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[-6.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[-6.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[-6.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[-6.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[-6.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[-6.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[-6.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[-6.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[-6.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[-6.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[-6.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[-6.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[-6.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[-6.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[-6.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[-6.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[-6.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[-5.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[-5.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[-5.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[-5.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[-5.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[-5.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[-5.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[-5.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[-5.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[-5.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[-5.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[-5.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[-5.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[-5.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[-5.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[-5.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[-5.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[-5.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[-5.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[-5.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[-5.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[-5.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[-5.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[-5.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[-5.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[-6.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[-6.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[-6.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[-6.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[-6.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[-7.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[-7.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[-7.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[-7.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[-8.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[-8.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[-8.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[-8.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[-9.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[-9.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[-9.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[-9.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[-9.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[-10.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[-10.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[-10.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[-10.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[-10.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[-11.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[-11.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[-11.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[-11.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[-11.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[-12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[-12.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[-12.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[-12.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[-12.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[-12.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[-12.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[-13.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[-13.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[-13.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[-13.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[-13.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[-13.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[-13.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[-14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[-14.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[-14.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[-14.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":240,"s":[-14.24]},{"t":241,"s":[-14.24]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[290.94,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[291.04,606.14,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[291.21,606.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[291.47,606.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[291.81,606.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[292.26,605.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[292.81,605.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[293.48,605.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[294.26,605.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[295.15,605.57,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[296.13,605.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[297.18,605.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[298.27,605.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[299.37,604.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[300.45,604.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[301.5,604.67,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[302.5,604.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[303.43,604.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[304.31,604.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[305.13,604.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[305.88,604.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[306.57,603.96,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[307.21,603.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[307.81,603.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[308.35,603.7,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[308.85,603.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[309.31,603.57,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[309.73,603.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[310.12,603.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[310.47,603.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[310.79,603.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[311.08,603.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[311.35,603.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[311.59,603.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[311.8,603.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[312,603.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[312.17,603.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[312.33,603.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[312.47,603.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[312.59,603.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[312.7,603.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[312.78,603.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[312.86,603.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[312.92,603.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[312.96,603.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[312.99,603.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[313.01,603.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[313.01,603.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[313.01,603.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[313,603.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[312.98,603.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[312.95,603.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[312.91,603.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[312.86,603.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[312.79,603.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[312.71,603.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[312.62,603.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[312.5,603.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[312.37,603.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[312.21,603.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[312.02,603.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[311.79,603.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[311.52,603.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[311.2,603.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[310.8,603.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[310.31,603.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[309.69,603.67,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[308.91,603.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[307.97,603.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[306.96,604.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84,"s":[306.03,604.36,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85,"s":[305.25,604.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86,"s":[304.63,604.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87,"s":[304.13,604.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[303.74,604.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89,"s":[303.41,604.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90,"s":[303.15,604.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91,"s":[302.93,604.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[302.74,604.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[302.58,605,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[302.45,605.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[302.33,605.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96,"s":[302.24,605.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[302.16,605.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[302.09,605.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[302.04,605.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[302,605.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[301.97,605.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[301.95,605.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":103,"s":[301.94,605.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104,"s":[301.94,605.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105,"s":[301.9,605.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[301.8,605.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107,"s":[301.63,605.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108,"s":[301.43,604.95,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109,"s":[301.2,604.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110,"s":[300.95,604.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[300.69,604.7,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[300.43,604.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[300.19,604.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114,"s":[299.96,604.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[299.75,604.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116,"s":[299.54,604.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117,"s":[299.36,604.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[299.18,604.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[299.02,604.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120,"s":[298.86,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[298.72,604.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122,"s":[298.59,603.98,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[298.47,603.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124,"s":[298.36,603.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[298.26,603.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[298.16,603.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127,"s":[298.08,603.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128,"s":[298,603.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[297.93,603.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[297.86,603.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131,"s":[297.8,603.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132,"s":[297.75,603.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[297.7,603.67,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134,"s":[297.66,603.65,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135,"s":[297.62,603.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136,"s":[297.58,603.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[297.55,603.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[297.53,603.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139,"s":[297.51,603.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140,"s":[297.49,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141,"s":[297.48,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[297.47,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[297.46,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[297.46,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[297.47,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[297.48,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147,"s":[297.5,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148,"s":[297.54,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149,"s":[297.59,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[297.66,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[297.75,603.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152,"s":[297.85,603.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153,"s":[297.97,603.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[298.12,603.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155,"s":[298.3,603.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[298.51,603.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157,"s":[298.75,603.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158,"s":[299.05,603.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159,"s":[299.4,603.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[299.82,603.67,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[300.34,603.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162,"s":[300.99,603.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[301.8,603.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164,"s":[302.81,603.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165,"s":[304.04,603.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[305.37,603.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[306.61,603.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[307.63,603.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[308.44,603.96,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[309.09,603.98,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[309.61,604,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172,"s":[310.03,604.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173,"s":[310.39,604.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174,"s":[310.68,604.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[310.93,604.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[311.13,604.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177,"s":[311.31,604.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[311.46,604.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[311.58,604.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[311.69,604.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[311.77,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[311.84,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183,"s":[311.9,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184,"s":[311.93,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[311.96,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186,"s":[311.97,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187,"s":[311.97,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188,"s":[311.91,604.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189,"s":[311.73,604.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[311.49,604.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[311.2,604.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[310.88,604.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193,"s":[310.54,604.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194,"s":[310.18,604.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[309.8,604.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[309.41,604.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[309,604.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[308.58,604.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[308.15,604.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200,"s":[307.72,604.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[307.27,604.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202,"s":[306.83,604.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203,"s":[306.37,604.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204,"s":[305.91,604.68,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205,"s":[305.45,604.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206,"s":[304.99,604.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207,"s":[304.52,604.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208,"s":[304.05,604.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209,"s":[303.58,604.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210,"s":[303.1,604.96,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[302.63,605.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[302.15,605.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[301.68,605.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214,"s":[301.2,605.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215,"s":[300.72,605.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[300.25,605.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217,"s":[299.77,605.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218,"s":[299.3,605.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219,"s":[298.82,605.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[298.35,605.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[297.89,605.47,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222,"s":[297.42,605.52,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223,"s":[296.96,605.57,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[296.51,605.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[296.05,605.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[295.6,605.7,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227,"s":[295.16,605.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[294.73,605.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229,"s":[294.3,605.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230,"s":[293.88,605.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[293.47,605.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[293.08,605.95,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[292.7,605.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[292.34,606.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235,"s":[292,606.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236,"s":[291.69,606.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237,"s":[291.4,606.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238,"s":[291.16,606.14,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239,"s":[290.99,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":240,"s":[290.91,606.16,0],"to":null,"ti":null},{"t":241,"s":[290.91,606.16,0]}]},"a":{"a":0,"k":[20.12,1.52,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.76,26.47],[-20.12,-84.02],[-16.01,-99.53],[20.12,-75.98],[12.19,8.32]],"o":[[-10.46,6.02],[-20.12,-84.02],[21.87,-92.72],[20.12,-75.98],[12.19,8.32]],"v":[[-10.46,6.02],[-20.12,-84.02],[2.52,-96.2],[20.12,-75.98],[12.19,8.32]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[20.37,84.27]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":42,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[1.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[1.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[1.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[1.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[1.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[1.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[1.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[1.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[1.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[2.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[2.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[2.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[2.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[2.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[2.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[2.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[2.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[3.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[3.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[3.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[2.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[2.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[2.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[2.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[2.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[2.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[2.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[2.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[2.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[2.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[1.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[1.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[1.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[1.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[1.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[1.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[1.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[0.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[0.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[0.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[0.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[0.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[0.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[0.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[0.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[0.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[0.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[0.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[0.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[0.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[0.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[0.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[0.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[0.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[0.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[0.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[1.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[1.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[1.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[1.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[1.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[2.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[2.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[2.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[2.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[3.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[3.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[3.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[4.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[4.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[4.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[4.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[4.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[4.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[4.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[4.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[4.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[3.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[3.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[3.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[2.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[2.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[2.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[1.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[1.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[1.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[1.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[0.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[0.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[0.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[-0.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[-0.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[-0.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[-0.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[-1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[-1.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[-1.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[-1.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[-1.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[-1.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[-2.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[-2.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[-2.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[-2.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[-2.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[-2.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[-2.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[-2.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[-2.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[-3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[-3.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[-3.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[-3.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[-3.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[-3.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[-3.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[-3.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[-3.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[-3.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[-3.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[-2.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[-2.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[-2.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[-2.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[-2.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[-2.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[-2.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[-1.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[-1.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[-1.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[-1.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[-0.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[-0.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[0.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[0.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[1.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[2.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[2.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[3.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[3.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[3.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[4.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[4.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[4.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[4.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[4.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[4.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[4.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[4.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[4.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[4.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[4.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[4.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[4.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[5.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[5.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[5.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[5.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[5.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[5.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[5.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[5.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[5.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[5.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[5.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[4.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[4.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[4.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[4.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[4.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[4.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[4.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[4.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[4.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[4.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[4.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[4.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[4.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[4.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[4.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[4.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[4.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[4.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[3.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[3.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[3.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[3.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[3.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[3.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[3.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[3.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[3.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[2.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[2.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[2.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[2.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[2.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[2.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[2.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[2.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[2.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[1.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[1.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[1.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[1.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[1.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[1.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[1.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[1.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":240,"s":[1.2]},{"t":241,"s":[1.2]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[315.21,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[315.25,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[315.31,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[315.41,693.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[315.54,693.65,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[315.7,693.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[315.9,693.67,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[316.13,693.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[316.38,693.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[316.65,693.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[316.93,693.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[317.2,693.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[317.45,693.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[317.67,693.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[317.85,693.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[317.98,693.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[318.07,693.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[318.12,693.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[318.14,693.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[318.11,693.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[318.06,693.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[317.97,693.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[317.87,693.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[317.74,693.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[317.59,693.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[317.42,693.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[317.25,693.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[317.06,693.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[316.85,693.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[316.64,693.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[316.43,693.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[316.21,693.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[315.98,693.68,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[315.75,693.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[315.52,693.65,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[315.28,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[315.05,693.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[314.82,693.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[314.58,693.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[314.36,693.58,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[314.14,693.57,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[313.94,693.56,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[313.75,693.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[313.58,693.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[313.45,693.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[313.34,693.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[313.28,693.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[313.26,693.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[313.27,693.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[313.32,693.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[313.41,693.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[313.53,693.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[313.69,693.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[313.88,693.56,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[314.1,693.57,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[314.33,693.58,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[314.58,693.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[314.85,693.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[315.14,693.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[315.44,693.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[315.75,693.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[316.09,693.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[316.44,693.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[316.81,693.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[317.21,693.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[317.62,693.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[318.06,693.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[318.51,693.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[318.94,693.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[319.29,693.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84,"s":[319.54,694,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85,"s":[319.7,694.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86,"s":[319.79,694.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87,"s":[319.86,694.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[319.9,694.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89,"s":[319.93,694.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90,"s":[319.94,694.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91,"s":[319.96,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[319.97,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[319.97,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[319.98,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[319.98,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":103,"s":[319.99,694.05,0],"to":[0,0,0],"ti":[0.01,0,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105,"s":[319.93,694.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[319.73,694.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107,"s":[319.42,693.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108,"s":[319.02,693.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109,"s":[318.56,693.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110,"s":[318.05,693.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[317.51,693.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[316.97,693.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[316.43,693.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114,"s":[315.91,693.67,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[315.41,693.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116,"s":[314.92,693.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117,"s":[314.45,693.58,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[314,693.56,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[313.57,693.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120,"s":[313.15,693.52,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[312.75,693.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122,"s":[312.37,693.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[312,693.49,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124,"s":[311.65,693.48,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[311.32,693.47,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[311.01,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127,"s":[310.71,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128,"s":[310.43,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[310.17,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[309.92,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131,"s":[309.69,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132,"s":[309.48,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[309.28,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134,"s":[309.09,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135,"s":[308.93,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136,"s":[308.77,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[308.64,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[308.52,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139,"s":[308.42,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140,"s":[308.34,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141,"s":[308.28,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[308.24,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[308.22,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[308.21,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[308.22,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[308.24,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147,"s":[308.28,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148,"s":[308.34,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149,"s":[308.42,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[308.52,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[308.65,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152,"s":[308.8,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153,"s":[308.99,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[309.2,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155,"s":[309.44,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[309.73,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157,"s":[310.05,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158,"s":[310.43,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159,"s":[310.87,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[311.37,693.47,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[311.97,693.48,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162,"s":[312.67,693.51,0],"to":[0.26,0.01,0],"ti":[-0.3,-0.01,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[313.5,693.54,0],"to":[0.3,0.01,0],"ti":[-0.35,-0.02,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164,"s":[314.48,693.59,0],"to":[0.35,0.02,0],"ti":[-0.37,-0.02,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165,"s":[315.59,693.65,0],"to":[0.37,0.03,0],"ti":[-0.35,-0.03,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[316.71,693.73,0],"to":[0.35,0.03,0],"ti":[-0.29,-0.02,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[317.69,693.81,0],"to":[0.29,0.03,0],"ti":[-0.22,-0.02,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[318.45,693.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[319.03,693.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[319.48,693.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[319.83,694.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172,"s":[320.11,694.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173,"s":[320.33,694.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174,"s":[320.52,694.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[320.68,694.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[320.8,694.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177,"s":[320.91,694.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[321,694.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[321.08,694.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[321.14,694.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[321.19,694.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[321.24,694.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183,"s":[321.27,694.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184,"s":[321.29,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[321.3,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186,"s":[321.31,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187,"s":[321.31,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188,"s":[321.32,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189,"s":[321.32,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[321.33,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[321.34,694.21,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[321.34,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193,"s":[321.33,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194,"s":[321.32,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[321.3,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[321.28,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[321.24,694.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[321.2,694.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[321.16,694.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200,"s":[321.1,694.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[321.04,694.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202,"s":[320.97,694.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203,"s":[320.89,694.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204,"s":[320.8,694.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205,"s":[320.71,694.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206,"s":[320.61,694.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207,"s":[320.51,694.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208,"s":[320.39,694.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209,"s":[320.27,694.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210,"s":[320.15,694.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[320.02,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[319.88,694.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[319.74,694.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214,"s":[319.59,694,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215,"s":[319.43,693.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[319.27,693.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217,"s":[319.11,693.95,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218,"s":[318.94,693.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219,"s":[318.77,693.92,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[318.59,693.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[318.41,693.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222,"s":[318.23,693.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223,"s":[318.04,693.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[317.85,693.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[317.66,693.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[317.47,693.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227,"s":[317.27,693.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[317.08,693.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229,"s":[316.88,693.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230,"s":[316.68,693.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[316.49,693.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[316.3,693.7,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[316.11,693.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[315.93,693.68,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235,"s":[315.76,693.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236,"s":[315.6,693.65,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237,"s":[315.45,693.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238,"s":[315.33,693.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239,"s":[315.23,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":240,"s":[315.2,693.63,0],"to":null,"ti":null},{"t":241,"s":[315.2,693.63,0]}]},"a":{"a":0,"k":[20.37,92.02,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.76,78.62],[-8.13,83.93],[-18.79,35.7],[-8.26,-1.53],[11.69,7.82]],"o":[[1.77,84.02],[-11.5,58.68],[-10.46,6.02],[9.22,-0.24],[11.69,7.82]],"v":[[5.76,78.62],[-10.27,80.27],[-10.46,6.02],[0.5,-0.88],[11.69,7.82]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[20.37,84.27]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":43,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239.97,"s":[0]},{"t":240.97,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":103,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":240,"s":[310.79,772.69,0],"to":null,"ti":null},{"t":241,"s":[310.79,772.69,0]}]},"a":{"a":0,"k":[6.08,10.3,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.65,5.35],[-5.83,9.91],[-5.59,-10.05],[5.83,-9.91]],"o":[[5.59,10.05],[-5.77,5.21],[-5.59,-10.05],[5.83,-9.91]],"v":[[5.65,5.35],[-5.77,5.21],[-5.59,-10.05],[5.83,-9.91]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.6314,0.6784,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[6.08,10.3]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":44,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239.97,"s":[0]},{"t":240.97,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":103.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"t":240.97,"s":[311.24,768.06,0]}]},"a":{"a":0,"k":[9.17,-3.55,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-13.87,-8.65],[1.23,-7.57],[14.14,-12.2],[17.4,-6.48],[16.82,-1.22],[1.47,4.25],[-2.24,3.56],[-2.31,7.13],[-9.21,9.14],[-18.39,8.66],[-18.39,-6.55]],"o":[[-10.29,-9.5],[9.66,-8.71],[16.88,-9.3],[18.42,-4.46],[13.72,-0.02],[1.47,4.25],[-2.24,3.56],[-2.31,7.13],[-13.69,10.2],[-18.42,4.65],[-12.24,-7.89]],"v":[[-10.29,-9.5],[1.23,-7.57],[16.88,-9.3],[17.4,-6.48],[13.72,-0.02],[1.47,4.25],[-2.24,3.56],[-2.31,7.13],[-9.21,9.14],[-18.42,4.65],[-16.35,-7]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[18.67,10.45]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":45,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[288.29,782.7,0]},"a":{"a":0,"k":[62.69,14.04,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[62.44,-4.26],[6.99,-13.6],[-14.27,-6.83],[-40.83,-7.2],[-62.44,4.8],[-24.87,11.36],[-12.04,8.78],[29.14,13.61]],"o":[[32.33,-13.79],[-11.96,-7.77],[-26.69,-7.75],[-61.8,-0.75],[-41.69,11.37],[-12.78,8.52],[3.8,13.79],[61.52,3.64]],"v":[[47.38,-9.02],[-9.2,-8.62],[-16.14,-5.84],[-50.42,-4.25],[-51.86,8.15],[-13.48,8.25],[-11.25,9.03],[45.33,8.62]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[62.69,14.04]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":46,"ty":4,"parent":48,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[26.81,164.08,0]},"a":{"a":0,"k":[26.93,28.92,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[14.76,20.59],[5.4,28.33],[5.5,28.22],[18.94,12.17],[-1.57,-28.67],[-10.86,-18.1],[-10.77,-18.23],[-26.25,0.05],[-26.25,0.05],[-26.68,0.5]],"o":[[5.08,28.67],[5.5,28.21],[5.5,28.22],[26.68,1.14],[-11.17,-17.76],[-10.76,-18.22],[-10.77,-18.23],[-26.25,0.05],[-26.35,0.17],[-17.4,-6.69]],"v":[[5.2,28.57],[5.5,28.21],[5.5,28.22],[18.94,12.17],[-11.07,-17.87],[-10.76,-18.22],[-10.77,-18.23],[-26.25,0.05],[-26.25,0.05],[-26.56,0.4]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7756,0.8904,0.9844,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[26.93,28.92]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":47,"ty":4,"parent":48,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[99.26,98.7,0]},"a":{"a":0,"k":[72.55,84.64,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[57.65,-82.3],[69.03,-84.39],[-59.32,84.39],[-72.3,65.42]],"o":[[61.09,-82.37],[72.3,-71.4],[-63.91,70.39],[-72.3,65.42]],"v":[[57.65,-82.3],[72.3,-71.4],[-59.32,84.39],[-72.3,65.42]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2226,0.5506,0.8574,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[72.55,84.64]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":48,"ty":4,"parent":1,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-61.09,6.83,0]},"a":{"a":0,"k":[78.58,82.36,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-67.82,72.99],[57.66,-78.1],[73.29,-79.22],[-47.74,79.29]],"o":[[-78.33,82.11],[66.17,-82.11],[78.33,-65.97],[-57.3,63.33]],"v":[[-78.33,82.11],[57.66,-78.1],[78.33,-65.97],[-47.74,79.29]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.4431,0.502,0.9922,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[78.58,82.36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":49,"ty":4,"parent":48,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[17.1,177.54,0]},"a":{"a":0,"k":[39.43,43.97,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-8.24,41.81],[0.39,31.6],[0.49,31.49],[30.74,-4.26],[39.09,-28.49],[8.24,-41.81],[-30.44,3.91],[-30.44,3.92],[-30.64,4.14],[-32.34,21.44]],"o":[[0.29,31.72],[0.48,31.48],[0.49,31.49],[39.18,-14.23],[22.01,-43.72],[-0.19,-31.84],[-30.44,3.91],[-30.54,4.03],[-39.18,14.23],[-15.25,36.67]],"v":[[0.19,31.84],[0.48,31.48],[0.49,31.49],[30.74,-4.26],[30.55,-36.1],[-0.19,-31.84],[-30.44,3.91],[-30.44,3.92],[-30.74,4.26],[-23.79,29.06]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.4431,0.502,0.9922,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[39.43,43.97]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":51,"ty":4,"parent":48,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[177.65,-18.25,0]},"a":{"a":0,"k":[11.38,13.65,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[11.13,-13.4],[2.83,13.4],[-2.02,0.55]],"o":[[11.13,-13.4],[1.9,5.33],[-11.13,1.44]],"v":[[11.13,-13.4],[2.83,13.4],[-11.13,1.44]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[11.38,13.65]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":52,"ty":4,"parent":48,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[158.84,4,0]},"a":{"a":0,"k":[27.91,33.46,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.73,33.21],[27.66,-33.21],[-20.83,-2.59]],"o":[[13.98,22.11],[27.66,-33.21],[-27.66,12.8]],"v":[[13.98,22.11],[27.66,-33.21],[-20.83,-2.59]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7792,0.8901,0.9808,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[27.91,33.46]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[410.25,404.81,0]},"a":{"a":0,"k":[28.48,24.93,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"o":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"v":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5.53},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[28.48,24.93]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":240,"s":[0]},{"t":270,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"_render":true}],"ip":240,"op":1139,"st":240,"bm":0,"completed":true},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[411.73,402.39,0]},"a":{"a":0,"k":[28.22,39.04,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83,0.83],"y":[0.83,0.83,-15.67]},"o":{"x":[0.05,0.05,0.05],"y":[0,0,0]},"t":0,"s":[0,0,100]},{"t":15,"s":[100,100,100]}],"x":"var $bm_rt;\nvar enable, amp, freq, decay, n, t, v;\ntry {\n $bm_rt = enable = effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0001');\n if (enable == 0) {\n $bm_rt = value;\n } else {\n amp = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0003'), 2.5);\n freq = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0004'), 20);\n decay = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0005'), 20);\n n = 0, 0 < numKeys && (n = nearestKey(time).index, key(n).time > time && n--), t = 0 === n ? 0 : $bm_sub(time, key(n).time), $bm_rt = 0 < n ? (v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10))), $bm_sum(value, $bm_div($bm_mul($bm_mul($bm_div(v, 100), amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))))) : value;\n }\n} catch (err) {\n $bm_rt = value = value;\n}"}},"ao":0,"ef":[{"ty":5,"en":1,"ef":[{"ty":7,"v":{"a":0,"k":1}},{"ty":6,"v":0},{"ty":0,"v":{"a":0,"k":20,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"v":{"a":0,"k":20,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"v":{"a":0,"k":40,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":6,"v":0}]}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"o":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"v":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.4431,0.502,0.9922,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[28.22,39.04]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":899,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[529.23,411.78,0]},"a":{"a":0,"k":[45.63,13.88,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-43.15,-11.4],[43.15,11.4]],"o":[[-43.15,-11.4],[43.15,11.4]],"v":[[-43.15,-11.4],[43.15,11.4]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":4.96},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[45.63,13.88]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":5,"s":[0]},{"t":35,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"_render":true}],"ip":5,"op":889,"st":-10,"bm":0,"completed":true},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[557.83,453.77,0]},"a":{"a":0,"k":[74.92,21.47,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-72.43,-18.99],[72.44,18.99]],"o":[[-72.43,-18.99],[72.44,18.99]],"v":[[-72.43,-18.99],[72.44,18.99]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":4.96},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[74.92,21.47]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":15,"s":[0]},{"t":45,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"_render":true}],"ip":15,"op":899,"st":0,"bm":0,"completed":true}]},{"id":"comp_2","layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,998,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-105.5,1.5],[-159.24,-79.5],[-264.43,-165.45]],"o":[[-123.41,-25.5],[-220.29,-140.09],[-286.5,-178.12]],"v":[[-105.5,1.5],[-193.5,-113.5],[-286.5,-178.12]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.2226,0.5506,0.8574,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2},"lc":1,"lj":1,"ml":4,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"t":0,"s":[{"i":[[-284.33,-185.04],[-303.35,-181.13],[-301.86,-178.09],[-294.46,-168.33],[-285.75,-154.87],[-275.95,-137.39],[-264.23,-121.91],[-259.68,-119.49],[-259.19,-118.12],[-255.69,-116.37],[-249.94,-114.67],[-242.22,-112.1],[-233.11,-109.47],[-223.58,-107.45],[-213.49,-104.43],[-208.24,-99.55],[-203.07,-94.04],[-197.49,-70.41],[-198.6,-33.7],[-181.9,-13.18],[-153.35,-3.15],[-141.43,2.07],[-136.06,5.41],[-130.64,10.04],[-126.73,13.03],[-123.32,11.81],[-118.22,8.13],[-117.03,7.64],[-115.51,7.32],[-113.52,5.7],[-111.64,3.41],[-109.99,2.57],[-108.38,2.22],[-107.2,1.34],[-106.39,0.26],[-99.35,-3.72],[-87.36,-11.23],[-87.73,-13.55],[-89.68,-18.98],[-92.07,-34.89],[-91.06,-61.6],[-93.56,-78.19],[-97.64,-87.18],[-111.23,-100.23],[-136.56,-108.58],[-157.8,-114.33],[-173.54,-121.2],[-178.39,-125.04],[-180.47,-126.51],[-184.23,-130.44],[-188.03,-135.73],[-192.34,-141.4],[-196.67,-147.72],[-199.07,-152.11],[-200.42,-155.13],[-202.21,-157.36],[-204.37,-159.11],[-205.92,-161.68],[-206.57,-163.56],[-216.4,-174.05],[-223.77,-179.4]],"o":[[-303.67,-182.33],[-302.44,-179.01],[-297.58,-172.64],[-288.54,-159.45],[-279.58,-143.94],[-268.27,-126.38],[-259.83,-119.92],[-259.36,-118.58],[-257.47,-117.03],[-251.93,-115.18],[-245.41,-113.11],[-236.07,-110.28],[-227.58,-108.24],[-216.53,-105.55],[-210.2,-101.28],[-204.67,-95.93],[-197.19,-82.81],[-198.2,-45.85],[-190.22,-17.86],[-163.46,-5.83],[-143.4,1.11],[-137.76,4.22],[-132.02,8.53],[-127.99,12.29],[-124.96,13],[-119.95,9.38],[-117.53,7.73],[-116.02,7.43],[-114.2,6.5],[-112.24,4.16],[-110.55,2.71],[-108.91,2.33],[-107.5,1.71],[-106.64,0.61],[-103.92,-1.35],[-91.07,-8.66],[-87.14,-12.32],[-89,-16.88],[-92.04,-26.59],[-91.58,-52.4],[-92.49,-74.35],[-96.13,-84.61],[-104.19,-95.94],[-127.41,-106.55],[-151.78,-112.48],[-168.68,-118.69],[-177.66,-124.53],[-179.8,-126.03],[-182.71,-128.58],[-186.89,-134.02],[-190.75,-139.29],[-195.29,-145.61],[-198.61,-151.05],[-199.98,-154.15],[-201.53,-156.8],[-203.63,-158.51],[-205.64,-160.9],[-206.39,-163.01],[-211.97,-169.19],[-222.28,-177.82],[-241.07,-187.78]],"v":[[-304,-184],[-302.89,-180.07],[-301,-177],[-291.5,-163.89],[-283,-150],[-272.11,-131.88],[-260,-120],[-259.52,-119.03],[-259,-118],[-253.81,-115.78],[-248,-114],[-239.14,-111.19],[-231,-109],[-220.06,-106.5],[-212,-103],[-206.45,-97.74],[-202,-92],[-197.84,-58.13],[-194,-25],[-172.68,-9.51],[-146,0],[-139.6,3.14],[-134,7],[-129.31,11.17],[-125,13],[-121.63,10.59],[-118,8],[-116.53,7.54],[-115,7],[-112.88,4.93],[-111,3],[-109.45,2.45],[-108,2],[-106.92,0.97],[-106,0],[-95.21,-6.19],[-87,-13],[-88.37,-15.22],[-90,-20],[-91.83,-43.65],[-92,-70],[-94.85,-81.4],[-99,-89],[-119.32,-103.39],[-146,-111],[-163.24,-116.51],[-177,-124],[-179.1,-125.53],[-181,-127],[-185.56,-132.23],[-189,-137],[-193.81,-143.51],[-198,-150],[-199.53,-153.13],[-201,-156],[-202.92,-157.93],[-205,-160],[-206.16,-162.34],[-207,-164],[-221,-177],[-225,-180]],"c":true}],"h":1},{"t":1,"s":[{"i":[[-287.29,-185.2],[-303.91,-182.76],[-303.23,-181.42],[-297.7,-172.44],[-288.23,-158.74],[-283.57,-150.91],[-280.06,-144.87],[-274.01,-134.21],[-264.68,-122.66],[-260.68,-120.49],[-260.18,-119.12],[-259.4,-118.9],[-258.25,-119.11],[-257.68,-118.47],[-257.22,-117.11],[-250.96,-114.56],[-239.71,-111.86],[-227.97,-109.35],[-214.76,-105.69],[-209.21,-100.48],[-204.09,-94.97],[-197.92,-70.95],[-198.26,-33.32],[-188.34,-18.6],[-175.59,-11.12],[-156.63,-4.59],[-138.65,2.25],[-130.78,9.4],[-127.11,13.04],[-122.71,11.83],[-118.33,8.19],[-117.03,7.64],[-115.51,7.32],[-113.52,5.7],[-111.64,3.41],[-109.99,2.57],[-108.38,2.22],[-107.2,1.34],[-106.39,0.26],[-99.37,-3.71],[-87.32,-11.27],[-87.5,-13.53],[-88.94,-15.89],[-93.24,-37.52],[-92.29,-76.5],[-99.51,-90.15],[-104.54,-95.8],[-114.23,-102.29],[-129.67,-107.59],[-145.84,-111.59],[-162.1,-115.87],[-173.04,-121.16],[-179.72,-126.84],[-186.02,-132.76],[-190.67,-137.87],[-193.84,-142.73],[-196.27,-145.92],[-197.7,-148.29],[-198.66,-150.46],[-207.82,-164.51],[-224.61,-179.34]],"o":[[-304.05,-183.3],[-303.5,-181.82],[-300.83,-177.07],[-291.4,-163.27],[-284.79,-152.97],[-281.21,-146.86],[-276.66,-138.88],[-268.02,-126.1],[-260.84,-120.93],[-260.35,-119.59],[-259.77,-118.85],[-258.64,-119.04],[-257.82,-118.92],[-257.38,-117.57],[-254.36,-115.62],[-243.64,-112.68],[-232.83,-110.26],[-218.93,-107.07],[-211.17,-102.24],[-205.67,-96.84],[-198.04,-84.04],[-198.03,-45.59],[-191.55,-21.79],[-180.36,-13.26],[-163.31,-6.46],[-144.3,-0.23],[-131.97,7.63],[-128.35,12.11],[-124.29,12.99],[-119.73,9.44],[-117.53,7.73],[-116.02,7.43],[-114.2,6.5],[-112.24,4.16],[-110.55,2.71],[-108.91,2.33],[-107.5,1.71],[-106.64,0.61],[-103.96,-1.33],[-91.05,-8.69],[-87.03,-12.83],[-88.46,-15.06],[-93.59,-24.77],[-92.58,-63.39],[-97.99,-88],[-102.79,-94.05],[-109.64,-100],[-124.24,-106.09],[-140.3,-110.4],[-156.74,-114.32],[-170.43,-119.49],[-177.68,-124.84],[-184.19,-131.07],[-189.26,-136.16],[-192.95,-141.52],[-195.5,-144.93],[-197.38,-147.56],[-198.34,-149.74],[-203.51,-158.09],[-218.37,-175.13],[-248.71,-186.98]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-294.55,-167.85],[-286,-155],[-282.39,-148.89],[-279,-143],[-271.01,-130.15],[-261,-121],[-260.52,-120.04],[-260,-119],[-259.02,-118.97],[-258,-119],[-257.53,-118.02],[-257,-117],[-247.3,-113.62],[-236,-111],[-223.45,-108.21],[-213,-104],[-207.44,-98.66],[-203,-93],[-197.98,-58.27],[-194,-26],[-184.35,-15.93],[-170,-9],[-150.46,-2.41],[-134,6],[-129.57,10.75],[-125,13],[-121.22,10.63],[-118,8],[-116.53,7.54],[-115,7],[-112.88,4.93],[-111,3],[-109.45,2.45],[-108,2],[-106.92,0.97],[-106,0],[-95.21,-6.2],[-87,-13],[-87.98,-14.29],[-89,-16],[-92.91,-50.45],[-97,-86],[-101.15,-92.1],[-106,-97],[-119.24,-104.19],[-135,-109],[-151.29,-112.96],[-167,-118],[-175.36,-123],[-182,-129],[-187.64,-134.46],[-192,-140],[-194.67,-143.83],[-197,-147],[-198.02,-149.02],[-199,-151],[-213.09,-169.82],[-233,-182]],"c":true}],"h":1},{"t":2,"s":[{"i":[[-297.59,-185.55],[-299.95,-184.98],[-301.71,-185.22],[-303.9,-181.33],[-299.14,-175.74],[-297.16,-172.22],[-296.41,-169.6],[-295.03,-167.91],[-293.37,-166.5],[-290.18,-161.62],[-287.42,-155.5],[-285.09,-151.97],[-283.33,-150.58],[-282.27,-148.33],[-281.45,-145.77],[-275.9,-136.16],[-266.05,-123.83],[-261.68,-121.49],[-261.18,-120.12],[-260.4,-119.9],[-259.25,-120.11],[-258.68,-119.48],[-258.21,-118.11],[-256.59,-117.34],[-253.89,-116.34],[-242.28,-112.84],[-225.01,-109.51],[-218.49,-106.22],[-213.46,-105.03],[-203.43,-94.37],[-200.24,-59.51],[-196.26,-31.07],[-192.58,-22.71],[-185.02,-17.13],[-151.43,-5.69],[-128.79,12.78],[-119.05,8.9],[-106.99,0.73],[-101.99,-1.36],[-98.41,-5.07],[-94.78,-6.51],[-92.64,-8.56],[-86.83,-11.89],[-92.96,-43.27],[-95.67,-82.25],[-99.37,-90.14],[-109.66,-99.17],[-119.48,-105.02],[-162.78,-113.85],[-184.45,-129.67],[-193.64,-141.56],[-198.74,-149.03],[-201.7,-155.09],[-206.5,-160.02],[-208.4,-164.23],[-211.32,-166.15],[-211.79,-168.53],[-217.33,-173.59],[-220.71,-176.21],[-223.31,-178.6],[-271.64,-182.74]],"o":[[-299.35,-184.86],[-301.13,-185.16],[-304.33,-183.21],[-301.31,-177.6],[-297.46,-173.17],[-296.64,-170.44],[-295.6,-168.41],[-293.92,-166.95],[-291.22,-163.62],[-288.28,-157.56],[-285.67,-152.43],[-283.92,-151.04],[-282.54,-149.2],[-281.73,-146.62],[-278.63,-141],[-269.61,-127.57],[-261.84,-121.93],[-261.35,-120.59],[-260.77,-119.85],[-259.64,-120.04],[-258.82,-119.92],[-258.37,-118.57],[-257.39,-117.67],[-254.84,-116.68],[-248.02,-114.09],[-230.77,-110.56],[-219.64,-107.89],[-216.32,-105.26],[-208.31,-101.4],[-196.77,-78.68],[-198.37,-36.11],[-193.17,-25.51],[-189.6,-19.08],[-168.63,-8.46],[-136.38,3.12],[-124.51,13.12],[-111.82,4.39],[-103.07,-1.54],[-99.86,-2.74],[-96.08,-6.6],[-93.4,-7.37],[-87.07,-12.36],[-95.38,-28.09],[-93.03,-71.1],[-99.49,-88.85],[-104.28,-96.76],[-117.65,-103.41],[-138.48,-112.43],[-180.48,-127.1],[-191.21,-137.92],[-197.4,-147.05],[-201.2,-152.89],[-204.2,-158.76],[-208.66,-162.87],[-209.66,-165.84],[-212.32,-167.39],[-212.79,-170.76],[-219.9,-175.17],[-222.88,-177.54],[-243.26,-190.26],[-299.05,-185.09]],"v":[[-299,-185],[-300.54,-185.07],[-302,-185],[-302.61,-179.46],[-298,-174],[-296.9,-171.33],[-296,-169],[-294.48,-167.43],[-293,-166],[-289.23,-159.59],[-286,-153],[-284.5,-151.5],[-283,-150],[-282,-147.47],[-281,-145],[-272.76,-131.87],[-262,-122],[-261.52,-121.04],[-261,-120],[-260.02,-119.97],[-259,-120],[-258.53,-119.03],[-258,-118],[-255.72,-117.01],[-253,-116],[-236.52,-111.7],[-220,-108],[-218,-106],[-212,-104],[-202,-91],[-199,-44],[-194,-27],[-192,-22],[-181,-15],[-140,1],[-126,13],[-116,7],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-92,-9],[-89,-16],[-93,-60],[-99,-88],[-100,-91],[-115,-102],[-122,-106],[-175,-123],[-188,-134],[-196,-145],[-200,-151],[-203,-157],[-208,-162],[-209,-165],[-212,-167],[-212,-169],[-218,-174],[-222,-177],[-224,-179],[-298,-185]],"c":true}],"h":1},{"t":3,"s":[{"i":[[-297.58,-186.19],[-300.91,-184.98],[-302.85,-185.2],[-303.36,-180.3],[-297.87,-172.94],[-296.54,-171.09],[-296.33,-169.49],[-294.9,-167.74],[-293.36,-166.55],[-290.98,-162.83],[-288.61,-158.99],[-287.48,-156.75],[-286.71,-154.22],[-283.58,-149.08],[-279.93,-143.55],[-277.22,-139.02],[-274.88,-135.27],[-270.02,-128.72],[-263.47,-122.58],[-259.72,-120.02],[-257.63,-118.31],[-243.4,-113.74],[-220.57,-109.27],[-209.43,-101.69],[-202.99,-92.68],[-199.19,-73.85],[-200.44,-46.76],[-195.79,-28.4],[-185.74,-17.93],[-173,-11.9],[-158.38,-6.63],[-149.85,-3.71],[-143.67,-1.91],[-141.66,-0.47],[-141.2,0.85],[-140.02,1.43],[-138.38,1.73],[-133.44,6.33],[-126.62,13.96],[-123.79,12.12],[-114.52,6.32],[-110.2,3.42],[-105.13,-0.34],[-101.99,-1.36],[-98.44,-5.05],[-94.78,-6.51],[-86.25,-11.52],[-93.34,-24.87],[-90.5,-68.4],[-101.87,-92.82],[-103.49,-95.47],[-106.05,-96.34],[-108.14,-99.41],[-163.9,-112.01],[-182.16,-127.31],[-195.23,-143.13],[-208.81,-162.83],[-218.54,-174.44],[-222.58,-177.77],[-233.89,-183.31],[-267.64,-185.41]],"o":[[-300.24,-184.88],[-302.22,-185.14],[-304.43,-183.08],[-300.09,-175.23],[-296.62,-171.59],[-296.39,-170.04],[-295.47,-168.21],[-293.84,-166.91],[-291.92,-164.33],[-289.32,-160.16],[-287.62,-157.39],[-287.03,-155.17],[-284.86,-151.05],[-281.12,-145.33],[-278.03,-140.39],[-275.65,-136.46],[-272.04,-131.18],[-265.74,-124.42],[-260.41,-120.62],[-258.33,-118.87],[-251.11,-115.1],[-228.13,-110.83],[-212.19,-104.35],[-204.83,-95.85],[-199.22,-82.47],[-199.8,-56],[-198.17,-32.93],[-189.58,-20.9],[-177.81,-13.84],[-163.28,-8.29],[-152.01,-4.26],[-145.68,-2.54],[-141.81,-0.9],[-141.35,0.4],[-140.58,1.32],[-138.92,1.64],[-136.13,3.35],[-128.68,11.63],[-126.53,13.96],[-117.78,8.3],[-112.14,4.84],[-106.7,0.83],[-103.07,-1.54],[-99.55,-2.93],[-96.08,-6.6],[-88.75,-10.26],[-91.75,-20.48],[-96.71,-45.9],[-97.85,-87.18],[-103.49,-94.51],[-104.75,-96.79],[-107.83,-97.58],[-128.66,-113.62],[-180.76,-127.71],[-189.43,-133.28],[-204.41,-157.23],[-215.07,-171.02],[-222.35,-176.16],[-227.04,-180.25],[-251.2,-187.14],[-288.74,-184.85]],"v":[[-300,-185],[-301.57,-185.06],[-303,-185],[-301.73,-177.76],[-297,-172],[-296.46,-170.56],[-296,-169],[-294.37,-167.32],[-293,-166],[-290.15,-161.5],[-288,-158],[-287.25,-155.96],[-286,-153],[-282.35,-147.21],[-279,-142],[-276.43,-137.74],[-274,-134],[-267.88,-126.57],[-261,-121],[-259.03,-119.45],[-257,-118],[-235.77,-112.28],[-215,-106],[-207.13,-98.77],[-202,-90],[-199.5,-64.92],[-199,-38],[-192.68,-24.65],[-182,-16],[-168.14,-10.1],[-154,-5],[-147.76,-3.13],[-142,-1],[-141.51,-0.04],[-141,1],[-139.47,1.53],[-138,2],[-131.06,8.98],[-126,14],[-120.78,10.21],[-114,6],[-108.45,2.12],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-89,-16],[-94,-29],[-97,-85],[-103,-94],[-104,-96],[-107,-97],[-109,-100],[-180,-127],[-183,-128],[-201,-152],[-212,-167],[-222,-176],[-223,-178],[-237,-184],[-283,-185]],"c":true}],"h":1},{"t":4,"s":[{"i":[[-299.48,-185.27],[-300.63,-184.97],[-301.83,-185.16],[-304.06,-182.45],[-302.2,-179.25],[-295.85,-168.51],[-287.84,-157.21],[-278.61,-140.75],[-267.14,-125.29],[-257.97,-119.56],[-251.67,-116.83],[-245.59,-114.9],[-240.65,-113.39],[-232.1,-111.81],[-221.37,-109.7],[-213.12,-104.96],[-207.26,-98.95],[-202.93,-91.16],[-200.33,-80.71],[-199.88,-59.21],[-199.29,-34.09],[-195.79,-27.82],[-195.01,-27.01],[-194.58,-26.36],[-194.32,-25.41],[-188.2,-19.57],[-174.79,-12.71],[-160.2,-8.09],[-145.11,-3.47],[-140.79,-0.78],[-140.03,-0.03],[-137.89,1.82],[-134.6,4.4],[-132.4,6.7],[-130.74,8.97],[-129.18,11.31],[-127.77,14.06],[-124.04,12.29],[-114.1,5.69],[-108.79,2.21],[-105.03,-0.66],[-99.32,-3.48],[-87.09,-11.63],[-90,-16.99],[-89.7,-73.76],[-102.54,-93.43],[-108.22,-99.34],[-111.95,-101.37],[-118.89,-105.72],[-159.7,-115.52],[-176.25,-124.88],[-181.9,-127.14],[-188.58,-134.21],[-193.8,-139.42],[-196.67,-145.09],[-200.87,-149.33],[-203.78,-155.2],[-208.72,-162.44],[-219.41,-174.79],[-224.29,-178.57],[-280.88,-187.33]],"o":[[-300.21,-184.89],[-301.44,-185.1],[-303.7,-183.33],[-303.31,-180.41],[-298.68,-172.66],[-290.43,-160.78],[-282.04,-147.1],[-271.16,-129.85],[-259.89,-120.64],[-253.86,-117.65],[-247.26,-115.46],[-242.28,-113.87],[-235.66,-112.21],[-224.95,-110.55],[-215.5,-106.74],[-209,-101.07],[-204.26,-94.3],[-200.96,-84.36],[-199.23,-68.42],[-199.9,-42.05],[-196.04,-28.07],[-195.27,-27.29],[-194.67,-26.66],[-194.41,-25.74],[-191.8,-22.21],[-179.69,-14.81],[-165.39,-9.36],[-150.06,-5.15],[-141.02,-1.01],[-140.3,-0.29],[-139.09,0.87],[-135.65,3.59],[-133.04,5.96],[-131.26,8.2],[-129.8,10.28],[-128.17,13.2],[-127.25,14.2],[-117.47,8.04],[-110.28,3.29],[-106.17,0.23],[-101.13,-3.23],[-93.91,-7.02],[-86.77,-12.99],[-100.45,-37.9],[-101.3,-92.48],[-105.29,-96.8],[-110.83,-101.77],[-115.85,-103.71],[-139.18,-114.08],[-175.64,-123.86],[-179.3,-126.83],[-185.95,-130.3],[-192.29,-138.48],[-196.28,-142.69],[-199.07,-148.54],[-203.23,-152.83],[-206.63,-159.4],[-213.27,-168.01],[-223.9,-177.55],[-239.89,-188.06],[-300.11,-185.92]],"v":[[-300,-185],[-301.03,-185.04],[-302,-185],[-303.68,-181.43],[-301,-177],[-293.14,-164.65],[-286,-154],[-274.88,-135.3],[-262,-122],[-255.91,-118.6],[-249,-116],[-243.93,-114.39],[-239,-113],[-228.53,-111.18],[-218,-108],[-211.06,-103.02],[-206,-97],[-201.95,-87.76],[-200,-77],[-199.89,-50.63],[-196,-28],[-195.53,-27.55],[-195,-27],[-194.5,-26.05],[-194,-25],[-183.94,-17.19],[-170,-11],[-155.13,-6.62],[-141,-1],[-140.54,-0.53],[-140,0],[-136.77,2.7],[-134,5],[-131.83,7.45],[-130,10],[-128.67,12.26],[-128,14],[-120.76,10.16],[-113,5],[-107.48,1.22],[-103,-2],[-97,-5],[-87,-12],[-91,-19],[-101,-92],[-103,-94],[-110,-101],[-113,-102],[-122,-107],[-174,-123],[-178,-126],[-183,-128],[-191,-137],[-195,-141],[-198,-147],[-202,-151],[-205,-157],[-210,-164],[-223,-177],[-225,-179],[-299,-186]],"c":true}],"h":1},{"t":5,"s":[{"i":[[-299.48,-185.28],[-300.87,-184.98],[-302.97,-185.11],[-302.44,-177.99],[-295.37,-168.19],[-291.39,-161.71],[-288.13,-155.96],[-280.7,-142.79],[-269.33,-126.87],[-264.25,-123.33],[-263.35,-122.22],[-259.92,-120.52],[-253.96,-118.7],[-248.26,-116.55],[-242.79,-114.44],[-236.72,-113.29],[-230.07,-112.58],[-222.46,-110.03],[-215.46,-106.1],[-210.25,-102.01],[-206.03,-97.07],[-200.06,-73.53],[-200.85,-39.05],[-196.85,-30.19],[-194.28,-27.3],[-193.58,-26.08],[-193.34,-24.38],[-192.12,-23.51],[-190.47,-23.33],[-189.3,-22.11],[-188.43,-20.29],[-185.75,-18.8],[-182.17,-17.6],[-165.71,-10.86],[-142.26,-2.26],[-135.61,3],[-133.41,4.53],[-130.3,9.12],[-128.48,13.87],[-123.99,12.27],[-114,5.63],[-107.04,0.66],[-99.32,-3.48],[-87.09,-11.63],[-89.09,-15.47],[-93.25,-24.56],[-94.53,-62.58],[-104,-97.02],[-117.14,-105.26],[-155.95,-115.72],[-181.91,-128.28],[-194.29,-139.42],[-197.49,-143.26],[-199.11,-147.69],[-201.64,-149.52],[-202.48,-152.25],[-214.87,-170.31],[-225.35,-177.5],[-229.94,-181.53],[-236.3,-183.29],[-284.46,-187.07]],"o":[[-300.13,-184.93],[-302.29,-185.07],[-304.01,-181.64],[-298.12,-171.26],[-292.58,-163.73],[-289.17,-157.82],[-284.03,-148.85],[-273.35,-131.8],[-264.58,-123.72],[-263.63,-122.58],[-261.69,-121.17],[-256.05,-119.28],[-250.11,-117.33],[-244.6,-115.1],[-238.94,-113.5],[-232.29,-112.83],[-225.23,-111.23],[-217.58,-107.47],[-211.98,-103.48],[-207.27,-98.81],[-200.39,-85.75],[-200.29,-50.17],[-197.71,-31.29],[-195.14,-28.2],[-193.66,-26.64],[-193.42,-24.95],[-192.64,-23.6],[-191.04,-23.38],[-189.58,-22.71],[-188.72,-20.9],[-186.91,-19.25],[-183.38,-17.97],[-174.08,-13.47],[-149.8,-5.25],[-136.4,2.48],[-134.11,4.02],[-131.31,6.93],[-128.88,12.59],[-127.24,14.2],[-117.37,7.98],[-107.61,1.62],[-101.13,-3.23],[-93.91,-7.02],[-86.74,-13.11],[-92.76,-22.25],[-96.98,-36.68],[-97.31,-86.02],[-113.36,-103.23],[-136.64,-114.05],[-178.64,-125.19],[-190.24,-136.01],[-196.59,-142.9],[-198.83,-145.21],[-200.31,-149.46],[-202.62,-150.83],[-208.22,-160.49],[-223.82,-177.16],[-229.36,-179.77],[-232.79,-182.8],[-253.35,-187.74],[-300.11,-185.92]],"v":[[-300,-185],[-301.58,-185.03],[-303,-185],[-300.28,-174.63],[-294,-166],[-290.28,-159.76],[-287,-154],[-277.02,-137.29],[-265,-124],[-263.94,-122.95],[-263,-122],[-257.99,-119.9],[-252,-118],[-246.43,-115.82],[-241,-114],[-234.51,-113.06],[-228,-112],[-220.02,-108.75],[-214,-105],[-208.76,-100.41],[-205,-95],[-200.18,-61.85],[-198,-32],[-196,-29.2],[-194,-27],[-193.5,-25.51],[-193,-24],[-191.58,-23.44],[-190,-23],[-189.01,-21.5],[-188,-20],[-184.56,-18.39],[-181,-17],[-157.76,-8.05],[-137,2],[-134.86,3.51],[-133,5],[-129.59,10.85],[-128,14],[-120.68,10.12],[-113,5],[-103,-2],[-97,-5],[-87,-12],[-91,-19],[-94,-27],[-96,-75],[-110,-101],[-121,-107],[-171,-122],[-187,-133],[-196,-142],[-198,-144],[-200,-149],[-202,-150],[-203,-153],[-221,-175],[-228,-179],[-231,-182],[-239,-184],[-299,-186]],"c":true}],"h":1},{"t":6,"s":[{"i":[[-263.36,-186.27],[-280.49,-186.46],[-302.64,-186.26],[-303,-179.06],[-296.14,-170.21],[-295.53,-168.69],[-295.36,-166.63],[-294.1,-164.97],[-292.34,-163.57],[-288.67,-157.02],[-285.51,-150.62],[-282.3,-145.09],[-279.38,-140.4],[-277.46,-138.27],[-275.59,-135.78],[-272.38,-131.53],[-268.38,-127.06],[-263.17,-123.13],[-257.63,-120.04],[-251.73,-117.85],[-246.56,-116.42],[-237.58,-114.42],[-226.23,-112.25],[-219.17,-108.28],[-211.25,-104.32],[-209.47,-100.62],[-207.6,-98.98],[-203.33,-62.84],[-196.03,-28.57],[-187.75,-20.05],[-176.48,-15.58],[-154.24,-7.45],[-143.84,-3.8],[-140.85,-1.81],[-134.15,3.16],[-128.77,13.79],[-114.82,6.14],[-106.69,0.43],[-99.13,-3.6],[-85.44,-11.14],[-94.27,-25.16],[-92.29,-73.92],[-103.03,-92.64],[-106.64,-98.42],[-113.31,-102.97],[-121.85,-108.78],[-137.38,-112.54],[-172.72,-121.93],[-184.62,-130.89],[-189.09,-133.13],[-192.63,-137.33],[-200.32,-147.27],[-203.75,-151.63],[-203.77,-153.49],[-205.75,-154.64],[-207.74,-159.23],[-211.61,-164.28],[-218.72,-173.44],[-225.28,-176.9],[-229.5,-180.25],[-237.69,-184.21]],"o":[[-272.43,-185.84],[-295.6,-186.67],[-304.93,-182.45],[-298.6,-172.94],[-295.6,-169.38],[-295.41,-167.32],[-294.68,-165.43],[-292.92,-164.03],[-289.91,-159.46],[-286.47,-152.6],[-283.36,-146.9],[-280.31,-141.84],[-278.17,-139.13],[-276.17,-136.6],[-273.69,-133.25],[-269.73,-128.44],[-264.86,-124.36],[-259.56,-120.97],[-253.45,-118.39],[-248.28,-116.87],[-241.47,-115.04],[-229.96,-113.02],[-220.9,-110.19],[-214.62,-105.59],[-209.42,-102.39],[-208.41,-99.22],[-198.37,-83.85],[-199.75,-33.88],[-189.24,-22.4],[-182.11,-16.66],[-164.09,-11.21],[-145.55,-4.04],[-142.16,-2.2],[-137.92,0.99],[-129.19,9.7],[-126.19,14.5],[-108.25,2.02],[-101.44,-3.02],[-89.69,-9.79],[-91.41,-19.29],[-100.25,-48.45],[-101.64,-92.25],[-106.71,-97.78],[-111.57,-102.21],[-118.42,-106.09],[-130.55,-112.15],[-158.14,-117.93],[-184.17,-129.8],[-187.31,-133.05],[-191.23,-135.18],[-197.15,-142.86],[-202.15,-151.32],[-204.31,-152.46],[-204.14,-154.32],[-207.24,-156.82],[-210.37,-162.92],[-215.74,-169.39],[-222.89,-176.7],[-228.46,-178.93],[-234.04,-182.52],[-249.48,-187.03]],"v":[[-269,-186],[-288.05,-186.57],[-304,-184],[-300.8,-176],[-296,-170],[-295.47,-168.01],[-295,-166],[-293.51,-164.5],[-292,-163],[-287.57,-154.81],[-284,-148],[-281.3,-143.47],[-279,-140],[-276.81,-137.43],[-275,-135],[-271.06,-129.99],[-267,-126],[-261.36,-122.05],[-255,-119],[-250.01,-117.36],[-245,-116],[-233.77,-113.72],[-223,-111],[-217,-107],[-210,-103],[-209,-100],[-207,-98],[-201,-44],[-191,-24],[-186,-19],[-172,-14],[-148,-5],[-143,-3],[-140,-1],[-132,6],[-128,14],[-113,5],[-103,-2],[-97,-5],[-89,-16],[-95,-28],[-101,-91],[-104,-94],[-110,-101],[-115,-104],[-125,-110],[-143,-114],[-183,-129],[-186,-132],[-190,-134],[-194,-139],[-202,-151],[-204,-152],[-204,-154],[-206,-155],[-209,-161],[-213,-166],[-222,-176],[-227,-178],[-231,-181],[-241,-185]],"c":true}],"h":1},{"t":7,"s":[{"i":[[-263.7,-186.59],[-286.56,-186.44],[-302.61,-186.29],[-302.82,-178.89],[-296.18,-168.19],[-293.56,-164.99],[-290.67,-160.14],[-284.9,-150.12],[-277.6,-138.34],[-273.35,-132.55],[-270.99,-128.89],[-269.08,-127.58],[-267.33,-127.26],[-266.31,-126.07],[-265.44,-124.29],[-263.73,-123.41],[-260.88,-122.43],[-254.96,-119.87],[-247.14,-117.79],[-233.54,-114.46],[-218.21,-109.35],[-214.64,-106.42],[-214.25,-105.19],[-212.97,-104.6],[-211.39,-104.41],[-210.58,-103.11],[-210.23,-101.3],[-208.6,-99.94],[-206.92,-47.77],[-196.03,-29.03],[-195.64,-27.8],[-180.36,-16.94],[-141.89,-6.44],[-131.61,6.03],[-130.05,13.44],[-123.56,12.04],[-111.16,3.66],[-101.01,-2.37],[-87.2,-11.1],[-89.68,-16.5],[-94.19,-24.45],[-95.75,-57.01],[-100.77,-91.63],[-104.35,-96.17],[-121.07,-108.19],[-162.08,-118.97],[-182.01,-128.71],[-187.18,-131.33],[-199.69,-144.87],[-203.75,-150.63],[-203.77,-152.49],[-205.75,-153.64],[-205.77,-155.5],[-207.75,-156.63],[-207.77,-158.49],[-209.75,-159.66],[-219.8,-174.2],[-226.63,-178.75],[-228.49,-178.77],[-229.57,-180.77],[-233.26,-182.33]],"o":[[-280.25,-185.8],[-297.73,-186.69],[-304.73,-182.8],[-298.55,-171.59],[-294.72,-166.67],[-291.53,-161.73],[-287.35,-154.45],[-280.03,-142.07],[-274.1,-133.85],[-271.79,-130.07],[-269.67,-127.7],[-267.91,-127.36],[-266.59,-126.68],[-265.74,-124.88],[-264.54,-123.69],[-261.9,-122.78],[-257.39,-120.72],[-249.84,-118.4],[-239.18,-115.78],[-223.05,-111.24],[-214.76,-106.83],[-214.38,-105.6],[-213.52,-104.64],[-211.9,-104.48],[-210.72,-103.71],[-210.34,-101.91],[-209.42,-100.24],[-197.38,-82.37],[-197.06,-30.11],[-195.35,-28.32],[-190.78,-21.7],[-160.1,-9.6],[-133.27,4.96],[-128.8,10.51],[-126.44,14.1],[-116.85,7.58],[-104.57,-0.55],[-95.21,-6.17],[-86.47,-14.36],[-92.31,-20.57],[-98.81,-39.07],[-97.66,-79.89],[-104.66,-95.69],[-110.1,-103.51],[-142.82,-115.9],[-179.05,-126.13],[-185.8,-131.61],[-193.05,-136.13],[-202.15,-150.32],[-204.31,-151.46],[-204.14,-153.32],[-206.31,-154.45],[-206.15,-156.32],[-208.31,-157.46],[-208.14,-159.3],[-214.76,-166.49],[-226.32,-177.15],[-227.46,-179.31],[-229.36,-179.16],[-231.09,-181.59],[-246.07,-187.26]],"v":[[-276,-186],[-292.14,-186.57],[-304,-184],[-300.68,-175.24],[-296,-168],[-292.54,-163.36],[-290,-159],[-282.47,-146.1],[-275,-135],[-272.57,-131.31],[-270,-128],[-268.5,-127.47],[-267,-127],[-266.02,-125.48],[-265,-124],[-262.81,-123.09],[-260,-122],[-252.4,-119.14],[-244,-117],[-228.29,-112.85],[-215,-107],[-214.51,-106.01],[-214,-105],[-212.44,-104.54],[-211,-104],[-210.46,-102.51],[-210,-101],[-208,-99],[-197,-30],[-196,-29],[-195,-27],[-175,-15],[-134,4],[-131,7],[-127,14],[-122,11],[-107,1],[-97,-5],[-87,-12],[-90,-17],[-95,-27],[-97,-72],[-104,-95],[-105,-97],[-129,-111],[-174,-124],[-185,-131],[-188,-132],[-202,-150],[-204,-151],[-204,-153],[-206,-154],[-206,-156],[-208,-157],[-208,-159],[-210,-160],[-226,-177],[-227,-179],[-229,-179],[-230,-181],[-235,-183]],"c":true}],"h":1},{"t":8,"s":[{"i":[[-271.11,-186.61],[-292.12,-186.28],[-302.84,-185.91],[-303.52,-179.79],[-298.28,-172.45],[-297.03,-169.99],[-296.24,-167.4],[-294.98,-165.81],[-293.25,-164.45],[-292.1,-162.3],[-291.27,-160.46],[-287.9,-154.5],[-283.51,-146.4],[-280.51,-141.83],[-278.54,-139.58],[-277.57,-138.08],[-277.34,-136.42],[-273.35,-131.88],[-266.18,-125.38],[-263.39,-123.91],[-262.26,-124.12],[-261.68,-123.47],[-261.23,-122.11],[-259.64,-121.66],[-256.78,-121.29],[-247.97,-118.34],[-235.14,-115.11],[-222.6,-111.31],[-213.27,-105.53],[-209.31,-100.95],[-207.48,-97.98],[-202.79,-77.84],[-203.19,-44.7],[-197.23,-30.34],[-193.54,-26.33],[-144.84,-12.45],[-128.46,14.21],[-115.19,6.38],[-106.35,0.21],[-99.1,-3.62],[-94.16,-7.58],[-90.06,-9.35],[-90.84,-17.3],[-93.55,-22.08],[-95.48,-52.76],[-102.89,-94.09],[-163.72,-117.41],[-195.74,-139.33],[-202.82,-149.09],[-205.53,-152.26],[-207.15,-156.8],[-209.62,-158.59],[-210.32,-161.1],[-212.59,-162.56],[-213.31,-165.14],[-217.17,-168.04],[-219.86,-172.95],[-222.56,-173.8],[-223.67,-175.75],[-228.47,-178.49],[-235.58,-183.08]],"o":[[-287.7,-185.82],[-299.69,-186.32],[-304.87,-182.57],[-300.22,-174.74],[-297.4,-171.04],[-296.45,-168.17],[-295.6,-166.33],[-293.8,-164.87],[-292.47,-163.07],[-291.5,-160.99],[-289.4,-157.3],[-284.96,-149.05],[-281.24,-142.79],[-279.16,-140.22],[-277.64,-138.62],[-277.42,-136.98],[-275.51,-134.18],[-268.69,-127.48],[-263.76,-123.85],[-262.64,-124.04],[-261.81,-123.92],[-261.38,-122.57],[-260.5,-121.76],[-257.78,-121.42],[-252.14,-119.54],[-239.47,-116.12],[-226.46,-112.79],[-216,-107.68],[-210.07,-101.96],[-208.02,-98.96],[-202.94,-88.74],[-202.91,-55.82],[-199.62,-34.96],[-196.16,-28.76],[-175.57,-10.77],[-131.16,7.71],[-126.68,14.89],[-108.39,2.11],[-101.15,-3.21],[-95.69,-5.86],[-91.05,-9.62],[-82.82,-13.78],[-92.53,-19.78],[-101.14,-37.75],[-98.9,-84.33],[-120.77,-115.46],[-188,-132],[-199.73,-145.81],[-204.57,-151.93],[-206.86,-154.35],[-208.3,-158.43],[-210.73,-159.79],[-211.34,-162.45],[-213.72,-163.77],[-214.78,-166.98],[-219.6,-170.85],[-221.34,-174.31],[-223.29,-174.13],[-225.68,-177.29],[-231.53,-181.42],[-249.8,-188.5]],"v":[[-284,-186],[-295.91,-186.3],[-304,-184],[-301.87,-177.27],[-298,-172],[-296.74,-169.08],[-296,-167],[-294.39,-165.34],[-293,-164],[-291.8,-161.64],[-291,-160],[-286.43,-151.78],[-282,-144],[-279.83,-141.03],[-278,-139],[-277.49,-137.53],[-277,-136],[-271.02,-129.68],[-264,-124],[-263.02,-123.97],[-262,-124],[-261.53,-123.02],[-261,-122],[-258.71,-121.54],[-256,-121],[-243.72,-117.23],[-231,-114],[-219.3,-109.49],[-211,-103],[-208.66,-99.96],[-207,-97],[-202.85,-66.83],[-200,-36],[-197,-30],[-192,-25],[-133,5],[-129,14],[-113,5],[-103,-2],[-97,-5],[-92,-9],[-89,-10],[-92,-19],[-94,-23],[-98,-76],[-107,-99],[-183,-129],[-198,-143],[-204,-151],[-206,-153],[-208,-158],[-210,-159],[-211,-162],[-213,-163],[-214,-166],[-218,-169],[-221,-174],[-223,-174],[-224,-176],[-229,-179],[-238,-184]],"c":true}],"h":1},{"t":9,"s":[{"i":[[-271.64,-187.22],[-295.62,-186.13],[-302.94,-185.74],[-303.62,-179.28],[-298.07,-172.12],[-296.84,-169.82],[-295.41,-166.7],[-292.28,-161.39],[-289.63,-156.83],[-285.76,-150.04],[-282.08,-143.66],[-273.94,-132.57],[-259.74,-121.94],[-244.53,-117.42],[-229.75,-114.27],[-222.83,-111.67],[-219.77,-109.58],[-218.02,-108.57],[-216.38,-108.28],[-215.64,-107.42],[-215.25,-106.19],[-213.96,-105.6],[-212.39,-105.42],[-211.58,-104.09],[-211.24,-102.32],[-210.35,-101.36],[-209.3,-100.49],[-203.89,-85.31],[-203.99,-58.57],[-201.94,-42.87],[-198.87,-32.91],[-197.56,-31.36],[-197.34,-30.48],[-182.71,-19.32],[-152.1,-10.35],[-140.81,-3.43],[-136.02,1.13],[-132.02,7.58],[-129.08,13.97],[-124.4,12.53],[-114.11,5.69],[-109.04,2.36],[-104.68,-0.9],[-101.1,-3.01],[-98.05,-4.31],[-95.63,-6.08],[-93.08,-8.29],[-91.04,-9.4],[-89.53,-9.68],[-86.16,-13.22],[-90.58,-17.91],[-98.41,-36.1],[-97.59,-65.42],[-110.56,-104.11],[-152.28,-118.35],[-173.91,-125.19],[-184.46,-129.53],[-199.2,-143.53],[-217.86,-171.6],[-229.48,-179.05],[-232.3,-181.65]],"o":[[-292.4,-185.76],[-300.89,-186.12],[-305.09,-182.22],[-300.12,-174.23],[-297.38,-170.97],[-295.85,-167.68],[-293.21,-162.98],[-290.49,-158.32],[-286.97,-152.21],[-283.31,-145.77],[-277.82,-137.1],[-264.9,-124.99],[-249.66,-118.53],[-234.58,-115.29],[-224.19,-112.39],[-220.62,-110.27],[-218.58,-108.68],[-216.92,-108.37],[-215.76,-107.83],[-215.38,-106.6],[-214.52,-105.64],[-212.9,-105.49],[-211.71,-104.68],[-211.35,-102.91],[-210.7,-101.61],[-209.65,-100.8],[-204.89,-93.27],[-203.43,-67.95],[-202.76,-46.67],[-200,-35.99],[-197.63,-31.62],[-197.41,-30.79],[-192.16,-23.15],[-162.68,-12.93],[-142.55,-4.5],[-137.55,-0.62],[-133.23,5.1],[-129.94,12.02],[-127.85,14.43],[-117.53,8.16],[-110.7,3.56],[-106.03,0.13],[-102.08,-2.61],[-99.09,-3.86],[-96.34,-5.43],[-94,-7.51],[-91.53,-9.31],[-90.04,-9.58],[-86.12,-11.76],[-88.39,-16.29],[-97.36,-27.89],[-98.52,-54.87],[-100.92,-95.18],[-136.24,-115.69],[-169.93,-123.92],[-181.18,-127.99],[-191.7,-136.46],[-209.36,-158.16],[-227.98,-178.31],[-231.6,-180.37],[-246.45,-188.76]],"v":[[-289,-186],[-298.26,-186.12],[-304,-184],[-301.87,-176.76],[-298,-172],[-296.35,-168.75],[-295,-166],[-291.38,-159.86],[-288,-154],[-284.54,-147.9],[-281,-142],[-269.42,-128.78],[-254,-120],[-239.56,-116.35],[-226,-113],[-221.72,-110.97],[-219,-109],[-217.47,-108.47],[-216,-108],[-215.51,-107.01],[-215,-106],[-213.43,-105.54],[-212,-105],[-211.46,-103.5],[-211,-102],[-210,-101.08],[-209,-100],[-203.66,-76.63],[-203,-49],[-200.97,-39.43],[-198,-32],[-197.48,-31.08],[-197,-30],[-172.69,-16.13],[-145,-6],[-139.18,-2.03],[-134,4],[-130.98,9.8],[-129,14],[-120.97,10.34],[-113,5],[-107.53,1.25],[-103,-2],[-100.1,-3.44],[-97,-5],[-94.82,-6.79],[-92,-9],[-90.54,-9.49],[-89,-10],[-87.28,-14.75],[-92,-20],[-98.46,-45.49],[-99,-78],[-123.4,-109.9],[-167,-123],[-177.54,-126.59],[-186,-131],[-203,-149],[-226,-177],[-231,-180],[-233,-182]],"c":true}],"h":1},{"t":10,"s":[{"i":[[-270.96,-187],[-283.11,-187.06],[-302.91,-185.94],[-303.28,-178.8],[-296.62,-169.03],[-294.24,-164.75],[-292.51,-160.86],[-288.21,-153.63],[-281.64,-143.23],[-276.05,-135.75],[-269.12,-128.3],[-266.23,-126.33],[-265.36,-125.22],[-249.93,-119.09],[-224.78,-113.55],[-216.22,-108.27],[-212.59,-105.66],[-211.34,-103.68],[-210.52,-100.82],[-208.86,-98.55],[-207.37,-96.92],[-204.47,-85.67],[-204.28,-67.39],[-203.25,-51.38],[-200.92,-39.35],[-198.96,-34.29],[-197.71,-31.86],[-192.81,-26.6],[-184.82,-21.25],[-173.52,-16.88],[-160.57,-13.3],[-154.2,-11.03],[-150.05,-9.52],[-145.35,-6.7],[-141,-2.8],[-138.44,-1.12],[-136.38,-0.43],[-135.89,0.57],[-136.1,1.78],[-135.49,2.32],[-134.12,2.82],[-133.2,4.35],[-132.3,6.41],[-130,12.49],[-128.32,14.44],[-123.12,11.21],[-119.24,8.79],[-110.31,3.12],[-86.12,-10.92],[-87.07,-15.17],[-93.56,-21.48],[-93.96,-74.05],[-110.13,-102.64],[-132.29,-115.11],[-168.97,-122.29],[-183.73,-130.49],[-196.91,-140.42],[-207.52,-153.62],[-213.46,-163.35],[-224.68,-175.48],[-254.74,-188.79]],"o":[[-275.41,-186.84],[-296.86,-186.61],[-304.96,-182.29],[-299.1,-172.18],[-294.99,-166.31],[-293,-162.02],[-290.39,-157.26],[-283.83,-146.61],[-278.24,-138.6],[-271.49,-130.6],[-266.55,-126.72],[-265.63,-125.58],[-258.54,-121.07],[-233.05,-115.33],[-217.68,-109.19],[-213.67,-106.5],[-211.58,-104.52],[-210.81,-101.83],[-209.42,-99.09],[-207.83,-97.46],[-205.08,-91.22],[-204.07,-73.75],[-203.79,-56.21],[-201.82,-42.95],[-199.35,-35.36],[-198.13,-32.54],[-195.15,-28.73],[-187.65,-22.86],[-177.99,-18.23],[-164.81,-14.41],[-155.67,-11.52],[-151.39,-10.03],[-147.1,-8.05],[-142.3,-4.08],[-139.25,-1.4],[-137.01,-0.64],[-135.84,0.18],[-136.02,1.37],[-135.93,2.16],[-134.59,2.65],[-133.55,3.64],[-132.58,5.73],[-130.34,10.26],[-128.99,14.57],[-124.49,12.06],[-120.49,9.57],[-113.5,5.14],[-103.13,-1.47],[-85.96,-15.07],[-92.2,-20.04],[-104.36,-40.37],[-106.05,-98.08],[-119.83,-110.63],[-155.82,-120.92],[-181.56,-128.2],[-193.63,-137.09],[-204.66,-150.44],[-212.03,-159.77],[-220.21,-170.57],[-238.75,-184.79],[-269.75,-187.96]],"v":[[-271,-187],[-289.99,-186.83],[-304,-184],[-301.19,-175.49],[-296,-168],[-293.62,-163.38],[-292,-160],[-286.02,-150.12],[-280,-141],[-273.77,-133.18],[-267,-127],[-265.93,-125.95],[-265,-125],[-241.49,-117.21],[-219,-110],[-214.95,-107.39],[-212,-105],[-211.07,-102.76],[-210,-100],[-208.34,-98.01],[-207,-96],[-204.27,-79.71],[-204,-61],[-202.53,-47.17],[-200,-37],[-198.54,-33.42],[-197,-31],[-190.23,-24.73],[-182,-20],[-169.17,-15.64],[-157,-12],[-152.79,-10.53],[-149,-9],[-143.83,-5.39],[-140,-2],[-137.72,-0.88],[-136,0],[-135.96,0.97],[-136,2],[-135.04,2.48],[-134,3],[-132.89,5.04],[-132,7],[-129.49,13.53],[-126,13],[-121.8,10.39],[-118,8],[-107,1],[-86,-14],[-89,-17],[-95,-24],[-104,-94],[-113,-105],[-144,-118],[-179,-127],[-186,-132],[-202,-147],[-210,-157],[-215,-165],[-230,-179],[-269,-188]],"c":true}],"h":1},{"t":11,"s":[{"i":[[-131.45,2.01],[-124.65,12.25],[-117.87,8.29],[-110.85,3.83],[-105.2,0.23],[-99.35,-3.46],[-93.81,-7.11],[-85.92,-12.2],[-86.33,-14.9],[-90.89,-18.54],[-95.01,-24.49],[-97.72,-30.14],[-100.05,-44.08],[-99.54,-67.63],[-101.61,-86.3],[-109.3,-102.13],[-133.54,-115.16],[-174.4,-125.46],[-184.33,-130.88],[-186.2,-132.49],[-188.74,-133.78],[-191.52,-134.63],[-197.12,-139.74],[-203.21,-147.66],[-212.29,-160.52],[-224.95,-175.72],[-230.32,-178.51],[-230.81,-179.88],[-231.6,-180.1],[-232.74,-179.88],[-233.32,-180.52],[-233.79,-181.88],[-235.3,-182.6],[-238.11,-183.66],[-249.88,-187],[-270.56,-188.65],[-285.63,-187.45],[-303.11,-185.65],[-302.88,-178.21],[-295.46,-166.74],[-294.31,-164.66],[-293.7,-162.87],[-287.17,-151.55],[-279.9,-139.32],[-268.4,-127.75],[-249.82,-120.01],[-233.69,-116.14],[-221.85,-112.82],[-218.29,-110.15],[-217.39,-108.31],[-215.56,-107.21],[-213.4,-106.45],[-212.57,-105.08],[-212.25,-103.33],[-211.35,-102.36],[-210.3,-101.49],[-204.57,-80.17],[-204.12,-42.67],[-195.81,-29.42],[-186.85,-23.32],[-160.71,-14.37]],"o":[[-127.11,13.56],[-120.03,9.61],[-113.28,5.4],[-106.77,1.21],[-101.49,-2.1],[-96.6,-5.26],[-88.47,-10.58],[-85.38,-13.63],[-89.08,-17.36],[-93.64,-22.17],[-97.04,-28.47],[-99.78,-36.51],[-99.93,-59.63],[-100.45,-80.23],[-106.03,-97.25],[-120.59,-111.43],[-160.45,-122.18],[-183.73,-130.38],[-185.56,-131.93],[-187.73,-133.47],[-190.64,-134.36],[-194.76,-137.16],[-201.34,-144.99],[-208.56,-154.66],[-220.48,-171.05],[-230.16,-178.07],[-230.65,-179.41],[-231.23,-180.15],[-232.36,-179.96],[-233.18,-180.08],[-233.63,-181.42],[-234.5,-182.27],[-237.11,-183.29],[-243.35,-185.67],[-263.49,-188.49],[-279.07,-187.63],[-297.65,-186.46],[-304.9,-182.34],[-298.16,-170.41],[-294.21,-164.72],[-294.06,-163.73],[-289.72,-156.14],[-282.26,-143.14],[-273.49,-131.5],[-256.57,-122.01],[-238.02,-116.98],[-225.61,-114.06],[-218.59,-110.74],[-217.69,-108.93],[-216.36,-107.49],[-214.08,-106.69],[-212.7,-105.66],[-212.35,-103.91],[-211.7,-102.61],[-210.65,-101.79],[-205,-92.83],[-204.13,-55.09],[-198.39,-32.01],[-190.04,-25.07],[-173.48,-17.12],[-139.69,-4.8]],"v":[[-130,15],[-122.34,10.93],[-115.57,6.85],[-108,2],[-103.34,-0.93],[-97,-5],[-91.14,-8.85],[-86,-12],[-87.71,-16.13],[-92,-20],[-96.02,-26.48],[-98,-31],[-99.99,-51.85],[-100,-74],[-103.82,-91.77],[-114,-106],[-146.99,-118.67],[-183,-130],[-184.94,-131.4],[-187,-133],[-189.69,-134.07],[-192,-135],[-199.23,-142.36],[-205,-150],[-216.38,-165.78],[-230,-178],[-230.48,-178.96],[-231,-180],[-231.98,-180.03],[-233,-180],[-233.47,-180.97],[-234,-182],[-236.21,-182.95],[-239,-184],[-256.68,-187.75],[-276,-188],[-291.64,-186.96],[-304,-184],[-300.52,-174.31],[-295,-166],[-294.18,-164.19],[-292,-160],[-284.71,-147.34],[-278,-137],[-262.48,-124.88],[-242,-118],[-229.65,-115.1],[-219,-111],[-217.99,-109.54],[-217,-108],[-214.82,-106.95],[-213,-106],[-212.46,-104.5],[-212,-103],[-211,-102.08],[-210,-101],[-204.35,-67.63],[-200,-35],[-192.93,-27.24],[-184,-22],[-150.2,-9.59]],"c":true}],"h":1},{"t":12,"s":[{"i":[[-131.22,10.03],[-123.59,11.86],[-115.71,6.63],[-110.04,3.26],[-105.81,0.66],[-100.35,-3.39],[-93.42,-7.43],[-88.28,-10.87],[-84.97,-13.18],[-86.25,-15.54],[-91.38,-19.28],[-94.1,-22.98],[-96.4,-27.78],[-100.8,-44.09],[-100.13,-70.97],[-102.39,-85.89],[-106.1,-95.44],[-110.92,-102.6],[-117.95,-108.84],[-127.02,-113.52],[-137.83,-116.95],[-155.41,-121.22],[-174.61,-126.61],[-185.79,-131.83],[-192.02,-136.25],[-195.53,-139.23],[-197.59,-140.68],[-198.5,-141.65],[-198.64,-142.63],[-204.04,-148.3],[-211.15,-156.46],[-213.1,-159.59],[-212.89,-160.75],[-213.51,-161.32],[-214.87,-161.83],[-218.93,-167.67],[-225.39,-174.82],[-228.32,-176.51],[-228.83,-177.87],[-234.79,-181.64],[-244.31,-185.13],[-257.85,-187.89],[-275.31,-188.68],[-290.22,-187.27],[-303.24,-185.46],[-298.33,-169.96],[-295.24,-166.41],[-293.73,-163.26],[-285.27,-146.65],[-271.9,-130.76],[-267.41,-127.24],[-239.22,-118.91],[-222.57,-112.18],[-218.76,-110.55],[-217.5,-108.38],[-214.78,-107.84],[-213.49,-104.63],[-211.6,-102.98],[-209.14,-51.7],[-184.26,-22.21],[-142.09,-9.1]],"o":[[-126.48,13.55],[-118.21,8.4],[-111.63,4.18],[-107.13,1.5],[-102.64,-1.92],[-95.74,-6.14],[-89.79,-9.78],[-85.87,-12.57],[-84.81,-14.16],[-89.54,-18.1],[-93.15,-21.34],[-95.73,-26.2],[-100.23,-35.6],[-100.74,-61.77],[-101.34,-82.17],[-104.77,-92.53],[-108.69,-99.93],[-115.55,-107.05],[-123.6,-112.05],[-134.13,-115.97],[-148.6,-119.66],[-168.41,-124.69],[-183.28,-130.46],[-190.16,-134.73],[-194.73,-138.65],[-196.96,-140.25],[-198.42,-141.34],[-198.61,-142.3],[-201.47,-145.57],[-208.88,-153.75],[-213.16,-159.21],[-212.97,-160.36],[-213.07,-161.15],[-214.41,-161.65],[-216.98,-164.76],[-223.13,-172.7],[-228.15,-176.07],[-228.65,-177.41],[-231.88,-180.07],[-241,-184.17],[-252.45,-187.05],[-269.29,-188.71],[-284.85,-187.54],[-299.41,-186.23],[-305.35,-181.43],[-296.84,-166.65],[-294.26,-164.71],[-288.91,-154.87],[-277.19,-135.96],[-267.65,-128.84],[-255.79,-120.51],[-224.3,-113.71],[-220.15,-110.36],[-217.53,-109.66],[-216.03,-107.27],[-213.41,-106.37],[-212.41,-103.22],[-200.91,-85.5],[-194.26,-26.13],[-157.37,-12.98],[-132.61,5.74]],"v":[[-130,15],[-120.9,10.13],[-113,5],[-108.58,2.38],[-105,0],[-98.04,-4.77],[-91,-9],[-87.07,-11.72],[-85,-13],[-87.9,-16.82],[-92,-20],[-94.91,-24.59],[-97,-29],[-100.77,-52.93],[-101,-79],[-103.58,-89.21],[-107,-97],[-113.24,-104.82],[-120,-110],[-130.57,-114.75],[-142,-118],[-161.91,-122.95],[-180,-129],[-187.97,-133.28],[-194,-138],[-196.24,-139.74],[-198,-141],[-198.55,-141.97],[-199,-143],[-206.46,-151.02],[-213,-159],[-213.03,-159.98],[-213,-161],[-213.96,-161.49],[-215,-162],[-221.03,-170.18],[-228,-176],[-228.49,-176.96],[-229,-178],[-237.89,-182.9],[-248,-186],[-263.57,-188.3],[-281,-188],[-294.81,-186.75],[-304,-184],[-297,-167],[-295,-166],[-293,-162],[-281,-141],[-268,-129],[-267,-127],[-228,-115],[-221,-111],[-218,-110],[-217,-108],[-214,-107],[-213,-104],[-211,-102],[-200,-36],[-172,-18],[-135,2]],"c":true}],"h":1},{"t":13,"s":[{"i":[[-90.53,-8.67],[-90.66,-19.25],[-96.37,-26.1],[-101.23,-50.11],[-101.88,-87.48],[-107.29,-98.19],[-110.77,-102.68],[-116.56,-108.26],[-124.24,-112.82],[-129.32,-115.04],[-132.98,-116.65],[-150.89,-121.4],[-175.9,-126.74],[-185.31,-131.39],[-188.82,-134.22],[-191.31,-135.67],[-193.3,-136.47],[-194.36,-137.59],[-194.74,-138.81],[-196.01,-139.42],[-197.6,-139.64],[-204.07,-146.7],[-211.82,-158.15],[-218.88,-167.2],[-227.49,-176.33],[-231.86,-179.17],[-234.24,-180.53],[-240.7,-184.1],[-251.92,-187.6],[-265.18,-188.4],[-281.07,-187.43],[-294.06,-186.99],[-302.99,-185.97],[-303.5,-179.87],[-298.84,-170.51],[-289.91,-154.29],[-275.28,-133.5],[-267.4,-128.2],[-263.3,-125.56],[-253.89,-122.12],[-241,-119.1],[-230.33,-116.02],[-222.33,-112.52],[-218.29,-110.04],[-215.51,-108.52],[-214.45,-105.59],[-212.6,-103.88],[-207.55,-66.68],[-200.09,-36.24],[-197.67,-31.72],[-189.92,-26.88],[-188.3,-25.68],[-141.21,-14.44],[-130.83,15.09],[-128.39,14.16],[-124.72,12.78],[-122.37,10.25],[-120.51,10.23],[-119.38,8.24],[-114.67,6.01],[-108.75,2.12]],"o":[[-87.97,-17.44],[-94.86,-23.58],[-101.28,-37.87],[-101.52,-74.92],[-106.41,-96.85],[-109.47,-101.1],[-114.19,-106.35],[-121.58,-111.5],[-128.08,-114.46],[-131.77,-116.13],[-142.19,-119.78],[-167.74,-124.88],[-184.15,-130.53],[-187.64,-133.23],[-190.66,-135.44],[-192.64,-136.19],[-194.24,-137.18],[-194.61,-138.4],[-195.46,-139.35],[-197.08,-139.56],[-201.16,-142.87],[-209.4,-154.33],[-216.13,-163.79],[-224.55,-173.48],[-230.99,-178.66],[-233.48,-180.1],[-237.49,-182.55],[-247.92,-186.62],[-260.4,-188.43],[-275.52,-187.9],[-290.31,-186.76],[-300.39,-186.6],[-304.58,-182.86],[-300.63,-173.7],[-294.27,-162.28],[-280.41,-139.89],[-268.75,-129.17],[-264.67,-126.4],[-258.14,-123.32],[-245.32,-120.02],[-233.42,-117.01],[-224.79,-113.78],[-219.28,-110.53],[-216.4,-109.03],[-214.44,-107.43],[-213.44,-104.27],[-202.86,-89.68],[-204.22,-43.61],[-197.34,-33.29],[-195.51,-29.4],[-188.1,-25.14],[-167.01,-14.58],[-132.58,7.06],[-129.71,15.73],[-125.43,12.93],[-122.68,11.85],[-121.54,9.69],[-119.67,9.85],[-116.76,6.56],[-110.38,3.41],[-97.4,-5.14]],"v":[[-84,-15],[-92.76,-21.41],[-98,-30],[-101.37,-62.51],[-106,-96],[-108.38,-99.65],[-112,-104],[-119.07,-109.88],[-127,-114],[-130.54,-115.58],[-134,-117],[-159.31,-123.14],[-183,-130],[-186.48,-132.31],[-190,-135],[-191.97,-135.93],[-194,-137],[-194.49,-137.99],[-195,-139],[-196.55,-139.49],[-198,-140],[-206.74,-150.52],[-214,-161],[-221.71,-170.34],[-230,-178],[-232.67,-179.64],[-235,-181],[-244.31,-185.36],[-256,-188],[-270.35,-188.15],[-287,-187],[-297.23,-186.8],[-304,-184],[-302.07,-176.78],[-298,-169],[-285.16,-147.09],[-270,-130],[-266.03,-127.3],[-262,-125],[-249.61,-121.07],[-237,-118],[-227.56,-114.9],[-220,-111],[-217.34,-109.53],[-215,-108],[-214,-105],[-212,-103],[-205,-49],[-198,-34],[-197,-31],[-189,-26],[-187,-25],[-133,6],[-131,15],[-128,14],[-123,12],[-122,10],[-120,10],[-119,8],[-113,5],[-107,1]],"c":true}],"h":1},{"t":14,"s":[{"i":[[-131.17,4.07],[-125.04,12.67],[-117.49,8.12],[-114.68,6.48],[-114.2,5.12],[-110.79,3.25],[-105.92,0.75],[-100.82,-3.1],[-93.87,-7.16],[-91.68,-8.51],[-91.19,-9.88],[-90.39,-10.09],[-89.26,-9.88],[-88.68,-10.52],[-88.21,-11.88],[-86.75,-12.29],[-84.04,-12.8],[-85.98,-16.41],[-91.87,-21.9],[-92.52,-22.45],[-94.4,-24.2],[-97.2,-28.12],[-99.53,-32.57],[-102.58,-55.45],[-102.82,-90.22],[-108.73,-99.83],[-110.54,-101.44],[-113.66,-105.19],[-117.76,-109.24],[-121.08,-111.44],[-123.67,-113.35],[-129.46,-115.94],[-136.75,-118.34],[-156.46,-123.17],[-181.55,-129.4],[-189.03,-133.87],[-190.32,-135.55],[-192.74,-136.79],[-195.45,-137.57],[-202.8,-144.55],[-211.26,-156.36],[-222.26,-170.47],[-237.41,-182.65],[-257.49,-187.94],[-282.56,-187.81],[-302.68,-186.53],[-300.12,-173.8],[-293.55,-160.32],[-282.22,-142.77],[-273.08,-132.38],[-267.04,-128.48],[-255.32,-123.58],[-236.04,-119.12],[-219.13,-111.34],[-211.3,-102.05],[-207.24,-70.86],[-203.09,-39.19],[-200.63,-35.78],[-187.7,-25.27],[-167.23,-17.88],[-147.94,-11.82]],"o":[[-127.8,14.36],[-119.89,9.55],[-114.83,6.92],[-114.36,5.58],[-112.58,4.13],[-107.46,1.56],[-103.13,-1.52],[-96.18,-5.92],[-91.83,-8.07],[-91.36,-9.41],[-90.77,-10.15],[-89.64,-9.96],[-88.82,-10.08],[-88.37,-11.42],[-87.73,-12.15],[-84.91,-12.62],[-83.8,-13.96],[-90.02,-20.38],[-91.82,-21.86],[-93.81,-23.62],[-96.19,-26.58],[-98.87,-31.11],[-103.17,-43.59],[-102.41,-78.77],[-108.21,-99.36],[-109.9,-100.87],[-112.28,-103.57],[-116.4,-108.02],[-120.24,-110.76],[-122.79,-112.73],[-127.08,-115.02],[-134.29,-117.6],[-147.43,-121.47],[-173.52,-127.14],[-188.62,-133.35],[-189.88,-134.98],[-191.77,-136.5],[-194.59,-137.32],[-199.67,-140.87],[-208.6,-152.29],[-218.06,-165.39],[-231.94,-179.1],[-249.71,-187.03],[-273.91,-188.33],[-297.63,-186.17],[-305.99,-180.17],[-295.08,-164.76],[-287.08,-149.36],[-275.38,-135.04],[-268.42,-129.29],[-258.67,-124.4],[-242.77,-120.44],[-224.37,-115.03],[-213.22,-105.04],[-205.06,-87.42],[-205.55,-50.55],[-200.36,-36.34],[-194.55,-28.24],[-173.5,-19.93],[-156.22,-13.92],[-138.13,-2.42]],"v":[[-131,16],[-122.46,11.11],[-115,7],[-114.52,6.03],[-114,5],[-109.12,2.41],[-105,0],[-98.5,-4.51],[-92,-8],[-91.52,-8.96],[-91,-10],[-90.02,-10.03],[-89,-10],[-88.53,-10.97],[-88,-12],[-85.83,-12.46],[-84,-13],[-88,-18.4],[-91,-21],[-93.16,-23.04],[-95,-25],[-98.04,-29.62],[-100,-34],[-102.49,-67.11],[-108,-99],[-109.31,-100.35],[-111,-102],[-115.03,-106.61],[-119,-110],[-121.93,-112.08],[-125,-114],[-131.87,-116.77],[-139,-119],[-164.99,-125.15],[-188,-133],[-189.46,-134.43],[-191,-136],[-193.67,-137.06],[-196,-138],[-205.7,-148.42],[-214,-160],[-227.1,-174.78],[-244,-185],[-265.7,-188.13],[-290,-187],[-304,-184],[-298,-170],[-291,-156],[-278,-138],[-271,-131],[-264,-127],[-249,-122],[-230,-117],[-216,-108],[-210,-99],[-206,-56],[-201,-37],[-200,-35],[-179,-22],[-162,-16],[-145,-9]],"c":true}],"h":1},{"t":15,"s":[{"i":[[-90.63,-9.03],[-90.37,-20.08],[-97.28,-27.27],[-102.93,-49.36],[-102.93,-82.22],[-107.75,-97.28],[-113.86,-105],[-118.97,-109.81],[-123.36,-113.24],[-126.08,-114.66],[-127.53,-115.8],[-141.86,-120.7],[-161.9,-124.38],[-179.1,-129.54],[-194.32,-137.2],[-198.36,-140.59],[-198.74,-141.81],[-200.02,-142.41],[-201.6,-142.61],[-202.38,-143.58],[-202.86,-144.77],[-203.65,-145.82],[-204.64,-146.58],[-208.26,-151.11],[-212.46,-156.99],[-215.74,-160.89],[-218.58,-163.44],[-219.42,-165],[-219.68,-166.61],[-221.2,-168.02],[-223.45,-169.36],[-225.13,-171.77],[-226.39,-174.44],[-227.56,-175.11],[-228.78,-174.9],[-229.32,-175.5],[-229.84,-176.87],[-231.35,-177.78],[-233.51,-178.65],[-237.79,-182.98],[-244.5,-185.26],[-266.2,-189.38],[-302.15,-187.57],[-295.86,-165.57],[-292.5,-157.57],[-290.7,-155.18],[-279.45,-137.91],[-272.97,-133.68],[-270.87,-130.56],[-267.77,-129.45],[-263.01,-127.09],[-230.03,-118.81],[-217.93,-109.97],[-211.36,-101.65],[-209.94,-52.64],[-200.04,-35.06],[-165.49,-19.56],[-143.72,-8.14],[-131.94,6.15],[-123.13,11.63],[-110.91,3.51]],"o":[[-87.24,-17.95],[-95.39,-24.74],[-102.47,-38.5],[-103.17,-71.22],[-106.07,-94.03],[-111.64,-102.77],[-117.54,-108.43],[-121.88,-112.21],[-125.57,-114.26],[-127.06,-115.43],[-134.91,-119],[-155.35,-123.39],[-173.44,-127.44],[-189.54,-134.42],[-198.24,-140.18],[-198.61,-141.4],[-199.47,-142.35],[-201.09,-142.54],[-202.2,-143.19],[-202.71,-144.37],[-203.33,-145.53],[-204.31,-146.35],[-206.78,-149.12],[-211.1,-155.05],[-214.7,-159.92],[-217.68,-162.65],[-219.33,-164.45],[-219.6,-166.08],[-220.48,-167.59],[-222.68,-168.9],[-224.69,-170.8],[-225.98,-173.58],[-227.17,-175.16],[-228.37,-174.98],[-229.15,-175.07],[-229.66,-176.41],[-230.6,-177.46],[-232.81,-178.38],[-236.36,-180.7],[-241.42,-184.66],[-253.86,-188.04],[-278.56,-188.69],[-306.5,-179.17],[-293.85,-161.91],[-290.18,-155.15],[-286.2,-147.61],[-274.17,-133.27],[-271.18,-132.42],[-269.09,-129.42],[-264.47,-127.53],[-247.01,-121.27],[-219.49,-110.86],[-213.82,-105.71],[-204.08,-82.08],[-201.13,-37.5],[-190.88,-23.15],[-145.76,-9.97],[-134.96,1.61],[-127.14,14.87],[-114.9,6.39],[-98.76,-4.28]],"v":[[-83,-15],[-92.88,-22.41],[-99,-31],[-103.05,-60.29],[-105,-90],[-109.7,-100.02],[-116,-107],[-120.42,-111.01],[-125,-114],[-126.57,-115.04],[-128,-116],[-148.61,-122.04],[-168,-126],[-184.32,-131.98],[-198,-140],[-198.49,-140.99],[-199,-142],[-200.55,-142.48],[-202,-143],[-202.54,-143.97],[-203,-145],[-203.98,-146.08],[-205,-147],[-209.68,-153.08],[-214,-159],[-216.71,-161.77],[-219,-164],[-219.51,-165.54],[-220,-167],[-221.94,-168.46],[-224,-170],[-225.56,-172.68],[-227,-175],[-227.96,-175.04],[-229,-175],[-229.49,-175.96],[-230,-177],[-232.08,-178.08],[-234,-179],[-240,-184],[-247,-186],[-273,-189],[-304,-184],[-295,-164],[-291,-156],[-290,-154],[-275,-134],[-272,-133],[-270,-130],[-267,-129],[-260,-126],[-221,-112],[-217,-109],[-210,-98],[-202,-39],[-200,-35],[-152,-13],[-140,-4],[-132,16],[-119,9],[-107,1]],"c":true}],"h":1},{"t":16,"s":[{"i":[[-268.49,-188.68],[-288.67,-187.77],[-302.97,-186.05],[-304.15,-179.61],[-299.98,-171.84],[-295.96,-164.5],[-292.67,-159.14],[-289.85,-154.12],[-286.35,-147.89],[-283.07,-143.51],[-280.52,-140.15],[-279.5,-138.69],[-278.12,-138.15],[-275.74,-135.51],[-272.53,-133.08],[-264.56,-128.17],[-253.27,-123.82],[-243.49,-121.35],[-235.74,-119.01],[-228.97,-116.74],[-223.4,-114.95],[-220.31,-112.59],[-217.67,-109.74],[-213.57,-104.63],[-209.6,-96.57],[-207.15,-74.97],[-206.32,-46.17],[-184,-25.1],[-143.41,-11.95],[-136.05,0.91],[-134.51,5.25],[-132.8,11.44],[-131.86,16.08],[-124.19,11.72],[-116.52,7.68],[-114.4,5.24],[-108.92,3.24],[-105.84,-0.44],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-88.85,-10.18],[-87.18,-11.3],[-83.29,-15.1],[-90.1,-21.18],[-93.28,-22.18],[-94.41,-25.29],[-98.07,-29.17],[-102.07,-62.36],[-110.59,-101.91],[-116.27,-107.32],[-120.83,-112.67],[-134.11,-118.24],[-152.08,-123.64],[-171.15,-127.06],[-191.58,-135.76],[-209.57,-152.12],[-225.66,-174.14],[-232.64,-178.75],[-240.4,-183.59]],"o":[[-282.94,-187.75],[-298.69,-186.93],[-304.91,-182.19],[-301.68,-174.44],[-297.38,-166.93],[-293.61,-160.61],[-290.93,-156.18],[-287.56,-149.98],[-284.06,-144.68],[-281.3,-141.24],[-279.94,-138.86],[-278.59,-138.33],[-276.73,-136.47],[-273.64,-133.81],[-268.17,-130.01],[-257.11,-125.07],[-246.36,-122.09],[-238.17,-119.81],[-231.02,-117.27],[-225.16,-115.58],[-221.22,-113.47],[-218.53,-110.73],[-215.27,-107.09],[-210.73,-99.37],[-206.99,-85.38],[-206.81,-55.37],[-197.29,-29.38],[-157.06,-16.39],[-136.54,-0.22],[-135.04,3.64],[-133.37,9.15],[-132.05,14.91],[-130.08,17.17],[-118.02,7.72],[-114.66,6.85],[-111.45,3.46],[-106.18,1.47],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.16,-9.8],[-87.15,-11.82],[-81.39,-14.74],[-88.82,-19.42],[-91.81,-22.73],[-94.65,-23.74],[-97.02,-28.41],[-105.38,-43.52],[-105.09,-91.6],[-115.66,-107.76],[-119.19,-110.03],[-127.48,-116.74],[-146.06,-121.81],[-164.3,-126.45],[-184.12,-131.36],[-204.22,-145.03],[-220.3,-165.72],[-232.32,-177.14],[-236.6,-181.49],[-253.85,-188.86]],"v":[[-279,-188],[-293.68,-187.35],[-304,-184],[-302.91,-177.02],[-299,-170],[-294.79,-162.55],[-292,-158],[-288.7,-152.05],[-285,-146],[-282.19,-142.38],[-280,-139],[-279.05,-138.51],[-278,-138],[-274.69,-134.66],[-271,-132],[-260.83,-126.62],[-250,-123],[-240.83,-120.58],[-233,-118],[-227.06,-116.16],[-222,-114],[-219.42,-111.66],[-217,-109],[-212.15,-102],[-209,-94],[-206.98,-65.17],[-203,-40],[-170.53,-20.75],[-137,-1],[-135.54,2.27],[-134,7],[-132.42,13.18],[-132,16],[-120,9],[-115,7],[-114,5],[-107,2],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-88,-11],[-86,-12],[-87,-18],[-91,-22],[-94,-23],[-95,-26],[-99,-31],[-104,-81],[-115,-107],[-117,-108],[-123,-114],[-140,-120],[-158,-125],[-177,-129],[-196,-139],[-215,-159],[-232,-177],[-233,-179],[-244,-185]],"c":true}],"h":1},{"t":17,"s":[{"i":[[-85.46,-12.46],[-89.84,-20.67],[-96.95,-27.39],[-103.66,-45.36],[-103.94,-72.75],[-107.23,-93.88],[-114.92,-108.11],[-118.8,-110.66],[-119.6,-111.71],[-130.87,-118.15],[-150.07,-123.4],[-166.38,-127.19],[-179.54,-130.74],[-187.69,-134],[-192.37,-136.99],[-195.8,-138.8],[-198.46,-139.59],[-202.59,-143.41],[-207.84,-149.76],[-210.58,-152.87],[-212.44,-155.4],[-214.6,-157.84],[-216.36,-160.22],[-218.56,-162.94],[-220.4,-165.27],[-225.37,-171.04],[-232.53,-178.02],[-238.11,-181.57],[-245.42,-185.45],[-258.91,-188.67],[-278.69,-188.51],[-293.23,-187.8],[-302.95,-186.24],[-303.97,-180.31],[-300.78,-172.59],[-296.39,-164.17],[-291.68,-156.8],[-288.08,-150.71],[-285.79,-146.97],[-282.85,-143.1],[-279.91,-138.93],[-277.89,-137.31],[-275.73,-136.57],[-273.85,-134.65],[-272.53,-132.37],[-270.53,-131.29],[-267.82,-130.46],[-265.53,-128.94],[-263.58,-127.24],[-259.91,-126.14],[-254.7,-125.45],[-249.98,-124.04],[-245.43,-122.37],[-237.38,-120.5],[-227.78,-117.68],[-214.07,-105.68],[-209.16,-63.54],[-198.87,-33.92],[-131.26,-18.12],[-115.37,6.36],[-98.35,-4.16]],"o":[[-86.62,-18.72],[-95,-25],[-102.69,-37.49],[-104.29,-63],[-105.52,-88.08],[-111.93,-103.89],[-118.5,-110.31],[-119.35,-111.36],[-125.08,-115.7],[-143.36,-122],[-161.61,-126.07],[-175.35,-129.52],[-185.76,-133],[-191,-135.99],[-194.82,-138.5],[-197.62,-139.34],[-200.67,-141.28],[-206.18,-147.65],[-209.86,-151.92],[-211.87,-154.61],[-213.92,-156.98],[-215.82,-159.46],[-217.86,-162.05],[-219.83,-164.54],[-222.86,-168.28],[-230.21,-175.91],[-235.65,-180.1],[-242.99,-184.25],[-252.57,-187.92],[-271.97,-188.97],[-289,-187.68],[-300.2,-187.08],[-304.58,-182.76],[-302.07,-175.22],[-298.05,-167.02],[-293.21,-159.06],[-288.93,-152.23],[-286.51,-148.08],[-283.89,-144.64],[-280.86,-140.25],[-278.53,-137.52],[-276.49,-136.83],[-274.33,-135.47],[-272.95,-133.11],[-271.37,-131.56],[-268.75,-130.74],[-266.24,-129.58],[-264.19,-127.77],[-261.56,-126.41],[-256.48,-125.66],[-251.52,-124.6],[-246.94,-122.92],[-240.74,-121.15],[-230.9,-118.76],[-219.78,-112.84],[-206.59,-88.73],[-203.17,-37.88],[-167.06,-16.27],[-123.75,12.62],[-102.64,-1.79],[-89.98,-9.62]],"v":[[-82,-16],[-92.42,-22.83],[-99,-31],[-103.97,-54.18],[-105,-83],[-109.58,-98.89],[-118,-110],[-119.07,-111.01],[-120,-112],[-137.11,-120.07],[-157,-125],[-170.86,-128.36],[-183,-132],[-189.34,-135],[-194,-138],[-196.71,-139.07],[-199,-140],[-204.39,-145.53],[-209,-151],[-211.22,-153.74],[-213,-156],[-215.21,-158.65],[-217,-161],[-219.2,-163.74],[-221,-166],[-227.79,-173.48],[-234,-179],[-240.55,-182.91],[-247,-186],[-265.44,-188.82],[-285,-188],[-296.71,-187.44],[-304,-184],[-303.02,-177.76],[-300,-171],[-294.8,-161.61],[-290,-154],[-287.29,-149.4],[-285,-146],[-281.85,-141.68],[-279,-138],[-277.19,-137.07],[-275,-136],[-273.4,-133.88],[-272,-132],[-269.64,-131.01],[-267,-130],[-264.86,-128.36],[-263,-127],[-258.19,-125.9],[-253,-125],[-248.46,-123.48],[-244,-122],[-234.14,-119.63],[-225,-116],[-212,-101],[-206,-50],[-190,-29],[-133,17],[-107,1],[-94,-7]],"c":true}],"h":1},{"t":18,"s":[{"i":[[-86.28,-12.1],[-82.92,-17.33],[-86.37,-18.57],[-92.74,-23.34],[-99.73,-31.24],[-104.65,-48.76],[-104.87,-75.63],[-108.31,-95.02],[-115.68,-108.96],[-119.8,-111.66],[-120.6,-112.71],[-127.68,-117.11],[-139.79,-121.79],[-155.2,-125.7],[-170.83,-128.59],[-183.01,-132.28],[-191.38,-136.48],[-195.66,-138.7],[-198.26,-139.49],[-199.36,-140.55],[-199.8,-141.81],[-200.92,-142.43],[-202.6,-142.66],[-205.74,-145.91],[-208.84,-150.64],[-212.92,-155.28],[-216.93,-159.66],[-223.72,-168.13],[-233.45,-177.89],[-237.91,-180.6],[-239.51,-181.71],[-246.03,-185.32],[-256.02,-188.59],[-275.25,-189.6],[-302.7,-186.7],[-303.73,-178.62],[-298.62,-169.06],[-296.86,-166.09],[-295.4,-163.71],[-289.84,-153.89],[-283.41,-143.89],[-279.13,-138.83],[-277.14,-137.51],[-275.69,-136.5],[-275.15,-135.12],[-268.54,-130.22],[-253.31,-125.69],[-220.04,-114.93],[-209.74,-72.11],[-204.25,-41.35],[-198.63,-34.91],[-182.87,-26.64],[-147.98,-15.12],[-134.73,5.86],[-125.9,13.87],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.82,0.21],[-102.19,-1.22],[-97.09,-5.64]],"o":[[-81.98,-16.55],[-85.12,-18.34],[-89.87,-20.97],[-97.66,-28.47],[-103.97,-40.45],[-105.1,-66.36],[-106.72,-89.29],[-112.79,-104.85],[-119.5,-111.31],[-120.35,-112.36],[-124.04,-115.21],[-135.56,-120.4],[-149.78,-124.66],[-165.73,-127.67],[-179.82,-131.04],[-188.79,-135],[-194.78,-138.46],[-197.4,-139.22],[-199.21,-140.14],[-199.65,-141.39],[-200.37,-142.35],[-202.03,-142.58],[-204.57,-144.34],[-207.87,-149.06],[-211.45,-153.7],[-215.66,-158.26],[-220.74,-164.44],[-230.07,-174.86],[-237.41,-180.24],[-238.96,-181.33],[-243.02,-183.77],[-252.53,-187.73],[-264.9,-189.5],[-294.15,-188.2],[-304.92,-182.09],[-300.58,-172.1],[-297.41,-166.99],[-295.85,-164.45],[-292.14,-157.94],[-285.48,-146.86],[-279.81,-139.58],[-277.8,-137.8],[-275.86,-136.94],[-275.33,-135.59],[-272.32,-132.77],[-260.17,-126.19],[-232.31,-120.07],[-207.25,-91.79],[-207.46,-49.73],[-199.92,-36.83],[-189.71,-28.42],[-162.62,-19.84],[-135.02,-0.05],[-130.34,16.39],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.08,2.21],[-103.79,-1.8],[-99.02,-3.3],[-90.77,-9.76]],"v":[[-82,-15],[-84.02,-17.84],[-87,-19],[-95.2,-25.9],[-101,-34],[-104.88,-57.56],[-106,-84],[-110.55,-99.93],[-119,-111],[-120.07,-112.01],[-121,-113],[-131.62,-118.75],[-144,-123],[-160.46,-126.68],[-176,-130],[-185.9,-133.64],[-194,-138],[-196.53,-138.96],[-199,-140],[-199.51,-140.97],[-200,-142],[-201.48,-142.5],[-203,-143],[-206.8,-147.48],[-210,-152],[-214.29,-156.77],[-218,-161],[-226.89,-171.5],[-237,-180],[-238.44,-180.96],[-240,-182],[-249.28,-186.52],[-260,-189],[-284.7,-188.9],[-304,-184],[-302.15,-175.36],[-298,-168],[-296.36,-165.27],[-295,-163],[-287.66,-150.37],[-281,-141],[-278.46,-138.32],[-276,-137],[-275.51,-136.05],[-275,-135],[-266,-129],[-247,-124],[-214,-104],[-208,-55],[-202,-39],[-196,-33],[-175,-24],[-141,-7],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-101,-2],[-95,-7]],"c":true}],"h":1},{"t":19,"s":[{"i":[[-81.7,-14.89],[-85.97,-19.58],[-92.14,-23.45],[-97.07,-27.92],[-100.95,-33.6],[-104.56,-43.94],[-105.62,-57.41],[-105.69,-71.99],[-107.45,-88.94],[-112.67,-104.15],[-117.26,-109.52],[-120.36,-111.78],[-125.5,-115.74],[-130.57,-119.05],[-141.03,-122.82],[-153.75,-126.08],[-163.72,-128.24],[-172.19,-130.23],[-181,-132.48],[-189.59,-134.83],[-192.61,-136.53],[-193.71,-137.82],[-194.96,-138.39],[-196.47,-138.68],[-204.28,-144.4],[-213.24,-154.56],[-221.46,-164.92],[-230.28,-174.92],[-234.9,-178.38],[-237.15,-179.62],[-238.32,-180.52],[-238.79,-181.88],[-252.89,-187.75],[-279.13,-189.19],[-294.7,-187.42],[-303.34,-185.4],[-303.38,-176.6],[-295.81,-163.42],[-287.06,-148.53],[-271.69,-131.84],[-258.5,-126.72],[-247.53,-124],[-232.14,-119.37],[-218.88,-111.31],[-210.71,-94.13],[-209.6,-70.28],[-207.07,-49.07],[-199.15,-35.55],[-188.13,-29.44],[-176.33,-25.43],[-163.77,-21.15],[-151.25,-15.68],[-140.17,-6.28],[-133.95,9.49],[-124.43,12.28],[-111.34,3.78],[-101.82,-2.39],[-94.32,-6.95],[-91.68,-8.51],[-91.19,-9.88],[-87.04,-11.86]],"o":[[-83.62,-18.33],[-90.24,-22.14],[-95.56,-26.34],[-99.77,-31.55],[-103.66,-39.79],[-105.54,-52.75],[-105.69,-67.03],[-106.36,-82.87],[-110.61,-99.58],[-116.33,-108.63],[-119.28,-111.1],[-123.97,-114.46],[-128.81,-118.03],[-136.91,-121.53],[-149.45,-125.09],[-160.88,-127.62],[-169.38,-129.54],[-177.96,-131.81],[-186.82,-133.99],[-192.25,-136.12],[-193.34,-137.38],[-194.48,-138.3],[-195.96,-138.58],[-200.91,-141.37],[-210.45,-151],[-218.57,-161.21],[-227.31,-171.77],[-234.08,-177.82],[-236.44,-179.28],[-238.17,-180.08],[-238.63,-181.42],[-245.33,-185.66],[-269.79,-189.52],[-291.28,-187.72],[-300.73,-186.26],[-305.23,-181.39],[-298.67,-167.61],[-291.21,-155.36],[-277.29,-136.77],[-261.99,-127.72],[-251.28,-124.86],[-237.7,-121.22],[-222.73,-114.42],[-212.16,-101.23],[-209.43,-78.65],[-208.49,-55.04],[-202.4,-39.33],[-191.71,-30.97],[-180.44,-26.67],[-168.4,-22.81],[-155.2,-17.59],[-143.7,-10.03],[-135.3,3.48],[-128.76,15.14],[-115.72,6.6],[-104.41,-0.66],[-96.77,-5.53],[-91.83,-8.07],[-91.36,-9.42],[-89.19,-11.17],[-83.29,-13.72]],"v":[[-81,-17],[-88.11,-20.86],[-93.85,-24.9],[-98.42,-29.74],[-102,-36],[-105.05,-48.35],[-105.66,-62.22],[-106,-77],[-109.03,-94.26],[-115,-107],[-118.27,-110.31],[-122,-113],[-127.15,-116.88],[-133,-120],[-145.24,-123.95],[-158,-127],[-166.55,-128.89],[-175,-131],[-183.91,-133.23],[-192,-136],[-192.98,-136.96],[-194,-138],[-195.46,-138.48],[-197,-139],[-207.37,-147.7],[-216,-158],[-224.39,-168.34],[-233,-177],[-235.67,-178.83],[-238,-180],[-238.48,-180.97],[-239,-182],[-261.34,-188.64],[-289,-188],[-297.72,-186.84],[-304,-184],[-301.03,-172.11],[-295,-162],[-282.17,-142.65],[-265,-129],[-254.89,-125.79],[-244,-123],[-227.43,-116.9],[-216,-107],[-210.07,-86.39],[-209,-62],[-204.73,-44.2],[-195,-33],[-184.28,-28.06],[-172,-24],[-159.49,-19.37],[-149,-14],[-137.74,-1.4],[-133,18],[-120.07,9.44],[-107,1],[-99.29,-3.96],[-92,-8],[-91.52,-8.96],[-91,-10],[-85.17,-12.79]],"c":true}],"h":1},{"t":20,"s":[{"i":[[-84.26,-13.65],[-86.15,-20.29],[-93.04,-24.48],[-98.38,-29.57],[-105.47,-45.94],[-106.21,-72.56],[-108.28,-91.02],[-112.83,-103.74],[-115.56,-107.36],[-116.82,-107.76],[-117.41,-109.02],[-117.62,-110.6],[-119.39,-112.09],[-121.38,-112.72],[-122.32,-113.51],[-122.82,-114.88],[-124.74,-115.92],[-127.36,-116.71],[-128.32,-117.52],[-128.78,-118.89],[-134.41,-121.2],[-143.26,-123.26],[-165.89,-128.66],[-194.72,-137.3],[-202.02,-142.69],[-203.51,-143.6],[-206.51,-146.39],[-209.23,-150.01],[-212.35,-153.58],[-216.15,-157.01],[-223.91,-166.28],[-234.15,-177.18],[-247.49,-185.36],[-266.14,-189.97],[-282.63,-189.71],[-302.91,-186.38],[-303.91,-178.05],[-298.18,-167.23],[-290.6,-153.42],[-277.62,-137.08],[-272.68,-134.49],[-272.19,-133.12],[-269.32,-131.56],[-264.42,-129.55],[-252.05,-125.78],[-235.82,-122.27],[-219.85,-112.66],[-210.77,-94.22],[-209.46,-71.24],[-208.23,-49.96],[-205.48,-44.4],[-204.17,-43.27],[-203.65,-42.04],[-203.32,-40.43],[-195.92,-33.52],[-181.16,-27.75],[-154.31,-19.02],[-133.83,2.58],[-125.17,12.96],[-111.47,3.86],[-97.76,-4.78]],"o":[[-83.35,-18.83],[-91,-23.12],[-96.74,-27.7],[-104.11,-38.17],[-106.52,-63.14],[-107.37,-86.4],[-111.01,-99.69],[-115.15,-107.22],[-116.4,-107.63],[-117.35,-108.47],[-117.54,-110.09],[-118.7,-111.73],[-120.73,-112.59],[-122.16,-113.07],[-122.65,-114.41],[-123.81,-115.56],[-126.51,-116.49],[-128.18,-117.08],[-128.62,-118.43],[-131.53,-120.33],[-140.27,-122.67],[-155.28,-126.52],[-185.61,-134.06],[-201.51,-142.38],[-203.02,-143.3],[-205.4,-145.13],[-208.43,-148.83],[-211.03,-152.32],[-214.91,-155.92],[-220.59,-162.19],[-230.69,-173.77],[-241.92,-182.87],[-259.6,-188.9],[-275.17,-190.02],[-296.49,-187.89],[-305.07,-181.68],[-300.47,-170.82],[-294.29,-159.88],[-282.26,-142.02],[-272.83,-134.92],[-272.36,-133.58],[-270.86,-132.28],[-266.1,-130.2],[-257.63,-126.9],[-241.14,-123.47],[-224.72,-117.05],[-212.87,-101.24],[-209.35,-79.01],[-208.9,-56.72],[-205.89,-44.76],[-204.61,-43.65],[-203.74,-42.58],[-203.44,-40.97],[-200.09,-36.14],[-186.46,-29.32],[-165.15,-22.31],[-138.65,-6.58],[-129.94,15.78],[-115.94,7],[-102.38,-1.96],[-88.7,-10.63]],"v":[[-80,-17],[-88.57,-21.71],[-94.89,-26.09],[-100,-32],[-105.99,-54.54],[-107,-82],[-109.64,-95.35],[-115,-107],[-115.98,-107.49],[-117,-108],[-117.48,-109.55],[-118,-111],[-120.06,-112.34],[-122,-113],[-122.48,-113.96],[-123,-115],[-125.63,-116.2],[-128,-117],[-128.47,-117.98],[-129,-119],[-137.34,-121.94],[-146,-124],[-175.75,-131.36],[-201,-142],[-202.52,-142.99],[-204,-144],[-207.47,-147.61],[-210,-151],[-213.63,-154.75],[-217,-158],[-227.3,-170.03],[-238,-180],[-253.54,-187.13],[-272,-190],[-289.56,-188.8],[-304,-184],[-302.19,-174.44],[-297,-165],[-286.43,-147.72],[-273,-135],[-272.52,-134.03],[-272,-133],[-267.71,-130.88],[-263,-129],[-246.59,-124.62],[-231,-120],[-216.36,-106.95],[-210,-86],[-209.18,-63.98],[-206,-45],[-205.05,-44.02],[-204,-43],[-203.54,-41.5],[-203,-40],[-191.19,-31.42],[-176,-26],[-146.48,-12.8],[-135,18],[-120.55,9.98],[-107,1],[-93.23,-7.71]],"c":true}],"h":1},{"t":21,"s":[{"i":[[-135.81,4.5],[-125.53,13.2],[-112.49,4.51],[-103.23,-1.41],[-95.99,-6.06],[-87.71,-11.02],[-79.74,-16.56],[-82.43,-19.76],[-90.06,-22.39],[-93.44,-25.15],[-98.53,-30.42],[-106.1,-46.31],[-106.82,-75.48],[-111.08,-98.65],[-120.67,-112.9],[-124.9,-116.48],[-126.48,-116.68],[-129.7,-118.82],[-133.55,-121.4],[-148.42,-126.22],[-170.05,-130.17],[-184.28,-134],[-194.44,-137.63],[-199.33,-140.61],[-202.31,-143.48],[-203.95,-144.39],[-205.59,-144.66],[-212.21,-151.11],[-219.48,-161.04],[-226.29,-169.02],[-232.99,-176.23],[-235.92,-178.45],[-237.52,-178.66],[-238.69,-179.9],[-239.57,-181.72],[-244.07,-184.09],[-253.54,-187.21],[-263.96,-189.5],[-274.78,-190.49],[-288.36,-188.89],[-303.04,-186.12],[-304.37,-180.72],[-301.85,-175],[-299.31,-169.26],[-296.7,-164.23],[-292.53,-156.78],[-286.64,-147],[-278.45,-138.6],[-265.67,-130.01],[-257.04,-127.32],[-247.83,-125.81],[-238.57,-123.15],[-229.85,-120.09],[-227.43,-117.32],[-224.8,-116.69],[-216.71,-107.7],[-213.82,-58.79],[-204.03,-42.03],[-200.62,-37.91],[-184.77,-29.57],[-150.03,-18.04]],"o":[[-129.79,15.69],[-116.88,7.61],[-105.23,-0.13],[-98.61,-4.38],[-91.09,-9.24],[-82.03,-14.68],[-80.15,-18.82],[-87.39,-21.55],[-91.67,-23.44],[-96.87,-28.64],[-104.44,-37.83],[-107.29,-65.14],[-108.75,-92.7],[-117.04,-108.75],[-124.41,-116.39],[-125.93,-116.62],[-128.43,-117.87],[-132.27,-120.59],[-141.39,-124.63],[-162.74,-128.99],[-180.56,-132.94],[-191.22,-136.35],[-198.17,-139.63],[-201.4,-142.54],[-203.4,-144.31],[-205.04,-144.57],[-209.47,-147.84],[-217.22,-157.71],[-224.04,-166.4],[-230.76,-173.93],[-235.41,-178.37],[-236.97,-178.59],[-238.41,-179.29],[-239.27,-181.12],[-241.54,-182.99],[-250.07,-186.21],[-260.32,-188.75],[-271.19,-190.37],[-282.34,-189.33],[-298.71,-187.28],[-304.69,-182.47],[-302.94,-176.99],[-300.22,-171.15],[-297.55,-165.8],[-294.46,-160.28],[-288.62,-150.15],[-282.62,-142.09],[-269.98,-132.56],[-260.13,-127.91],[-250.89,-126.27],[-241.89,-124.11],[-232.55,-121.15],[-227.59,-118.76],[-226.08,-116.31],[-220.2,-112.7],[-206.9,-86.45],[-205.06,-43.11],[-201.87,-39.78],[-191.8,-31.49],[-164.58,-22.9],[-136.48,-2.54]],"v":[[-135,18],[-121.21,10.4],[-107,1],[-100.92,-2.89],[-93,-8],[-84.87,-12.85],[-80,-18],[-84.91,-20.65],[-91,-23],[-95.16,-26.89],[-99,-31],[-106.7,-55.73],[-108,-86],[-114.06,-103.7],[-124,-116],[-125.42,-116.55],[-127,-117],[-130.99,-119.71],[-135,-122],[-155.58,-127.6],[-177,-132],[-187.75,-135.18],[-197,-139],[-200.36,-141.58],[-203,-144],[-204.49,-144.48],[-206,-145],[-214.71,-154.41],[-222,-164],[-228.52,-171.47],[-235,-178],[-236.45,-178.52],[-238,-179],[-238.98,-180.51],[-240,-182],[-247.07,-185.15],[-257,-188],[-267.58,-189.94],[-278,-190],[-293.54,-188.09],[-304,-184],[-303.66,-178.85],[-301,-173],[-298.43,-167.53],[-296,-163],[-290.58,-153.46],[-285,-145],[-274.22,-135.58],[-263,-129],[-253.97,-126.8],[-245,-125],[-235.56,-122.15],[-228,-119],[-227,-117],[-224,-116],[-215,-104],[-205,-43],[-204,-42],[-198,-36],[-177,-27],[-143,-10]],"c":true}],"h":1},{"t":22,"s":[{"i":[[-80.91,-15.81],[-87.2,-21.7],[-96.9,-28.75],[-103.71,-37.99],[-107.56,-50.05],[-108.33,-60.56],[-108.31,-69.21],[-108.23,-77.9],[-108.61,-86.34],[-109.76,-92.8],[-111.67,-98.24],[-114.02,-103.09],[-116.35,-107.02],[-118.48,-110.17],[-120.54,-112.81],[-122.82,-115.05],[-125.74,-117.22],[-130.16,-119.85],[-134.95,-122.08],[-139.91,-123.89],[-145.15,-125.48],[-154.6,-127.94],[-166,-130.37],[-177.29,-132.93],[-184.68,-134.92],[-190.33,-136.32],[-193.31,-137.84],[-195.27,-139.63],[-200.69,-142.32],[-205.06,-145.24],[-211.79,-151.33],[-218.42,-157.94],[-222.35,-163.18],[-225.65,-167.53],[-233.54,-175.79],[-245.04,-184.48],[-258.3,-188.84],[-275.68,-190.64],[-289.13,-189.16],[-303.09,-185.99],[-304.32,-179.68],[-300.96,-172.03],[-293.18,-156.6],[-279.78,-139.16],[-274.68,-136.48],[-274.21,-135.12],[-266.45,-131.45],[-254.81,-128.03],[-242.46,-124.74],[-228.96,-119.88],[-221.76,-113],[-215.15,-104.41],[-211.2,-82.64],[-209.32,-50.89],[-185.77,-29.94],[-144.47,-16.45],[-136.94,2.07],[-135.88,13.94],[-121.04,10.27],[-99.73,-3.64],[-88.06,-10.95]],"o":[[-83.33,-19.75],[-93.98,-26.2],[-101.76,-34.64],[-106.61,-45.69],[-108.24,-57.74],[-108.36,-66.3],[-108.25,-75.01],[-108.41,-83.57],[-109.28,-90.91],[-110.95,-96.47],[-113.21,-101.55],[-115.59,-105.83],[-117.78,-109.16],[-119.86,-112],[-122.02,-114.33],[-124.68,-116.49],[-128.58,-118.98],[-133.34,-121.39],[-138.23,-123.33],[-143.36,-124.97],[-150.79,-127.05],[-162.2,-129.6],[-173.54,-132.04],[-182.77,-134.51],[-188.46,-135.83],[-192.68,-137.27],[-194.61,-139.02],[-198.91,-141.45],[-203.76,-144.22],[-209.33,-149.11],[-216.34,-155.75],[-221.28,-161.67],[-224.54,-166.11],[-230.02,-172.3],[-241.05,-181.88],[-252.95,-187.52],[-269.66,-190.4],[-283.84,-189.66],[-298.76,-187.32],[-304.84,-182.17],[-302.38,-174.61],[-297.04,-163.77],[-284.55,-144.29],[-274.82,-136.92],[-274.37,-135.58],[-270.3,-132.94],[-258.71,-128.99],[-247.48,-126.05],[-233.2,-121.65],[-224.44,-115.55],[-217.12,-107.44],[-211.54,-93.69],[-210.09,-61.24],[-199.79,-33.97],[-158.11,-21.19],[-137.75,-1.15],[-136,9.62],[-128.43,14.84],[-106.69,1.03],[-90.61,-9.55],[-83.21,-14.08]],"v":[[-79,-18],[-90.59,-23.95],[-99.33,-31.69],[-105.16,-41.84],[-108,-55],[-108.35,-63.43],[-108.28,-72.11],[-108.32,-80.73],[-109,-89],[-110.35,-94.64],[-112.44,-99.9],[-114.8,-104.46],[-117,-108],[-119.17,-111.09],[-121.28,-113.57],[-123.75,-115.77],[-127,-118],[-131.75,-120.62],[-136.59,-122.7],[-141.63,-124.43],[-147,-126],[-158.4,-128.77],[-169.77,-131.21],[-181,-134],[-186.57,-135.37],[-192,-137],[-193.96,-138.43],[-196,-140],[-202.22,-143.27],[-207,-147],[-214.07,-153.54],[-220,-160],[-223.45,-164.65],[-227,-169],[-237.29,-178.83],[-249,-186],[-263.98,-189.62],[-281,-190],[-293.95,-188.24],[-304,-184],[-303.35,-177.15],[-300,-170],[-288.87,-150.44],[-275,-137],[-274.52,-136.03],[-274,-135],[-262.58,-130.22],[-251,-127],[-237.83,-123.2],[-227,-118],[-219.44,-110.22],[-214,-101],[-210.64,-71.94],[-206,-45],[-171.94,-25.57],[-139,-4],[-136.47,5.84],[-136,19],[-113.87,5.65],[-93,-8],[-85.64,-12.52]],"c":true}],"h":1},{"t":23,"s":[{"i":[[-79.75,-14.67],[-88.71,-23.21],[-99.24,-30.9],[-108.38,-55.68],[-109.32,-93.87],[-115.33,-106.47],[-117.43,-109.31],[-123.5,-115.77],[-134.32,-122.19],[-149.05,-127.32],[-164.88,-131.08],[-180.17,-134.41],[-194.62,-138.7],[-201.78,-142.68],[-205.11,-145.32],[-206.95,-146.39],[-208.59,-146.66],[-211.18,-149.17],[-214.06,-152.97],[-217.44,-156.49],[-221.04,-159.89],[-222.75,-162.27],[-223.54,-164.43],[-225.23,-166.05],[-227.5,-167.42],[-229.96,-170.69],[-232.81,-174.9],[-235.46,-177],[-238.28,-178.45],[-240.47,-180.43],[-242.26,-182.56],[-253.22,-187.77],[-274.93,-190.97],[-290.77,-188.96],[-303.39,-186.11],[-304.68,-180.66],[-301.1,-173.46],[-292.8,-156.43],[-279.23,-139.12],[-268.94,-133.43],[-254.58,-128.55],[-234.99,-123.64],[-225.66,-116.52],[-217.16,-107.93],[-213.21,-68.74],[-206.44,-45.46],[-201.26,-39.47],[-197.37,-36.25],[-195.51,-36.23],[-194.43,-34.23],[-190.42,-32.55],[-157.77,-23.68],[-145.28,-12.59],[-135.69,5.43],[-131.48,16.53],[-118.9,9.01],[-109.32,2.49],[-104.47,-0.06],[-101.24,-3.2],[-94.32,-6.47],[-90.3,-10.13]],"o":[[-84.09,-21.26],[-96.29,-28.03],[-107.72,-43.49],[-109.18,-80.87],[-114.61,-105.32],[-116.74,-108.46],[-120.59,-113.17],[-130.36,-120.28],[-143.61,-125.78],[-159.68,-129.97],[-174.87,-133.31],[-190.05,-137.11],[-200.47,-141.77],[-204.1,-144.46],[-206.4,-146.31],[-208.04,-146.57],[-210.15,-147.94],[-213.14,-151.68],[-216.17,-155.29],[-219.88,-158.79],[-222.48,-161.55],[-223.28,-163.71],[-224.48,-165.59],[-226.74,-166.96],[-229.06,-169.24],[-231.84,-173.52],[-234.57,-176.53],[-237.32,-177.96],[-239.84,-179.65],[-241.68,-181.88],[-247.26,-185.54],[-267.06,-190.49],[-285.83,-189.66],[-299.55,-187.19],[-305.13,-182.94],[-302.67,-175.92],[-296.68,-163.61],[-284.08,-144.18],[-270.35,-133.82],[-259.33,-129.94],[-242.86,-125.3],[-227,-118.78],[-219.49,-110.85],[-210.54,-89.76],[-209.53,-53],[-203.45,-42.34],[-197.68,-37.85],[-196.54,-35.69],[-194.64,-35.84],[-192.82,-33.36],[-174.49,-26.4],[-146.23,-13.42],[-138.07,-3.64],[-133.62,19.15],[-123.68,11.72],[-111.45,4.43],[-105.74,0.19],[-101.82,-1.75],[-97.65,-5.5],[-90.85,-8.76],[-85.01,-13.67]],"v":[[-78,-19],[-92.5,-25.62],[-102,-35],[-108.78,-68.27],[-114,-104],[-116.03,-107.47],[-118,-110],[-126.93,-118.03],[-139,-124],[-154.37,-128.64],[-169,-132],[-185.11,-135.76],[-199,-141],[-202.94,-143.57],[-206,-146],[-207.49,-146.48],[-209,-147],[-212.16,-150.43],[-215,-154],[-218.66,-157.64],[-222,-161],[-223.01,-162.99],[-224,-165],[-225.99,-166.51],[-228,-168],[-230.9,-172.11],[-234,-176],[-236.39,-177.48],[-239,-179],[-241.07,-181.16],[-243,-183],[-260.14,-189.13],[-283,-190],[-295.16,-188.08],[-304,-185],[-303.68,-178.29],[-300,-171],[-288.44,-150.3],[-274,-136],[-265,-132],[-249,-127],[-229,-120],[-224,-115],[-215,-102],[-210,-55],[-206,-45],[-198,-38],[-197,-36],[-195,-36],[-194,-34],[-189,-32],[-148,-15],[-144,-11],[-137,19],[-129,15],[-114,6],[-107,1],[-103,-1],[-100,-4],[-92,-8],[-89,-11]],"c":true}],"h":1},{"t":24,"s":[{"i":[[-83.86,-13.37],[-88.42,-23.96],[-99.08,-30.98],[-108.11,-48.5],[-109.33,-73.76],[-111.55,-93.9],[-116.83,-108.34],[-121.87,-114.38],[-126.77,-118.61],[-136.33,-123.95],[-148.38,-127.85],[-158.62,-130.15],[-167.27,-131.44],[-185.27,-135.7],[-204.66,-144.22],[-213.72,-152.29],[-220.15,-158.9],[-227.38,-167.67],[-236.58,-177.46],[-240.32,-179.51],[-240.81,-180.88],[-242.26,-181.69],[-244.31,-182.6],[-256.82,-188.11],[-278.74,-189.94],[-293.33,-188.49],[-303.16,-186.55],[-303.87,-176.27],[-295.69,-162.15],[-293.22,-157.59],[-290.84,-152.88],[-288.16,-149.94],[-285.83,-146.97],[-282.01,-142.72],[-277.75,-139.23],[-271.52,-135.04],[-264.85,-131.96],[-258.65,-129.92],[-253.58,-128.45],[-244.7,-126.2],[-232.57,-122.5],[-229.25,-119.48],[-226.6,-117.49],[-220.84,-112.38],[-216.15,-104.64],[-212.24,-81.09],[-209.85,-50.2],[-204.58,-44.08],[-204.34,-42.37],[-201.17,-39.66],[-195.74,-36.95],[-190.32,-34.06],[-185.03,-31.75],[-174.93,-28.39],[-162.63,-24.64],[-145.04,-14.48],[-136.55,7.86],[-126.28,13.24],[-110.91,4.2],[-104.32,-1.16],[-100.18,-3.23]],"o":[[-83.63,-21.97],[-96.15,-28.47],[-106.45,-41.11],[-109.55,-64.82],[-110.38,-88.23],[-114.77,-103.96],[-120.49,-112.82],[-125.02,-117.27],[-132.64,-122.27],[-144.2,-126.74],[-155.74,-129.68],[-164.39,-131.03],[-177.7,-133.59],[-198.75,-141.01],[-211.39,-150.08],[-218.1,-156.7],[-224.59,-163.94],[-233.38,-174.43],[-240.17,-179.07],[-240.64,-180.41],[-241.6,-181.39],[-243.61,-182.3],[-250.45,-186.14],[-270.96,-190.01],[-289.49,-188.72],[-300.16,-187.41],[-305.78,-181.7],[-298.83,-166.5],[-294.05,-159.4],[-291.61,-154.33],[-288.99,-150.95],[-286.57,-147.95],[-283.39,-144.1],[-279.19,-140.28],[-273.6,-136.31],[-267.15,-132.86],[-260.35,-130.44],[-255.26,-128.92],[-249.16,-127.2],[-236.4,-123.85],[-230.2,-120.23],[-227.45,-118.11],[-223.01,-114.56],[-217.4,-107.42],[-212.32,-92.49],[-211,-59.95],[-204.66,-44.64],[-204.42,-42.94],[-202.8,-40.68],[-197.64,-37.8],[-192.05,-34.93],[-186.8,-32.46],[-179.11,-29.57],[-166.69,-25.93],[-150.51,-19.15],[-138.06,-0.97],[-131.32,16.39],[-116.07,7.15],[-104.85,0.25],[-101.8,-2.77],[-91.23,-9.03]],"v":[[-77,-19],[-92.28,-26.21],[-102,-35],[-108.83,-56.66],[-110,-83],[-113.16,-98.93],[-119,-111],[-123.45,-115.83],[-129,-120],[-140.26,-125.34],[-153,-129],[-161.51,-130.59],[-170,-132],[-192.01,-138.36],[-209,-148],[-215.91,-154.49],[-222,-161],[-230.38,-171.05],[-240,-179],[-240.48,-179.96],[-241,-181],[-242.94,-181.99],[-245,-183],[-263.89,-189.06],[-287,-189],[-296.74,-187.95],[-304,-185],[-301.35,-171.39],[-295,-161],[-292.42,-155.96],[-290,-152],[-287.36,-148.94],[-285,-146],[-280.6,-141.5],[-276,-138],[-269.34,-133.95],[-262,-131],[-256.95,-129.42],[-252,-128],[-240.55,-125.02],[-231,-121],[-228.35,-118.79],[-226,-117],[-219.12,-109.9],[-215,-101],[-211.62,-70.52],[-205,-45],[-204.5,-43.51],[-204,-42],[-199.41,-38.73],[-194,-36],[-188.56,-33.26],[-183,-31],[-170.81,-27.16],[-159,-23],[-141.55,-7.72],[-136,20],[-121.17,10.2],[-106,1],[-103,-2],[-99,-4]],"c":true}],"h":1},{"t":25,"s":[{"i":[[-77.4,-16.4],[-86.97,-23.77],[-97.8,-30.32],[-108.79,-48.98],[-109.98,-77.16],[-112.77,-96.87],[-118.05,-109.62],[-122.18,-114.47],[-125.16,-116.63],[-128.58,-119.48],[-130.36,-121.62],[-137.26,-125.01],[-147.7,-128.11],[-158.45,-130.86],[-169.5,-133.24],[-180.44,-135.38],[-191.57,-137.66],[-197.62,-140.37],[-201.66,-143.22],[-204.6,-144.67],[-207.38,-145.58],[-208.36,-146.55],[-208.8,-147.81],[-209.92,-148.43],[-211.58,-148.66],[-214.83,-151.73],[-218.77,-156.61],[-227.55,-167.17],[-240.05,-179.77],[-245.32,-182.52],[-245.79,-183.88],[-256.37,-188.13],[-278.54,-190.7],[-293.24,-189.03],[-303.4,-186.12],[-304.59,-179.67],[-301.2,-172.52],[-296.54,-161.66],[-289.12,-150.68],[-282.68,-143.26],[-278.07,-139.39],[-269.63,-134.25],[-258.9,-130.12],[-249.23,-127.71],[-240.63,-126.05],[-234.99,-123.56],[-229.4,-120.38],[-228.36,-119.58],[-227.42,-119.33],[-218.3,-108.94],[-213.58,-86.86],[-212.46,-67.25],[-210.1,-51.91],[-190.04,-33.64],[-151.09,-21.74],[-139.62,-4.26],[-137.65,12.06],[-127.24,14.27],[-111.98,4.19],[-99.06,-4.12],[-87.67,-11.58]],"o":[[-82.57,-22.11],[-94.58,-27.88],[-106.79,-40.65],[-110.38,-67.23],[-111.5,-91.81],[-116.05,-105.77],[-121.35,-113.66],[-124.09,-115.96],[-127.9,-118.67],[-129.81,-120.96],[-133.91,-123.7],[-144.15,-127.21],[-154.7,-130],[-165.85,-132.49],[-176.65,-134.8],[-187.9,-136.81],[-196.29,-139.51],[-200.31,-142.22],[-203.65,-144.38],[-206.46,-145.27],[-208.21,-146.14],[-208.65,-147.39],[-209.38,-148.36],[-211.02,-148.58],[-213.44,-150.18],[-217.49,-154.95],[-223.78,-162.29],[-235.69,-175.91],[-245.18,-182.08],[-245.63,-183.42],[-250.1,-186.28],[-270.59,-190.34],[-289.04,-189.71],[-300.42,-187.23],[-305.24,-182.66],[-302.57,-174.6],[-298.73,-166.07],[-291.73,-153.96],[-284.15,-144.82],[-279.64,-140.54],[-272.93,-135.94],[-262.61,-131.34],[-252.16,-128.18],[-243.46,-126.65],[-237.04,-124.61],[-231.17,-121.44],[-228.65,-119.66],[-227.75,-119.41],[-221.51,-114.76],[-214.34,-94.99],[-212.66,-72.8],[-211.18,-56.81],[-202.5,-37.77],[-164.34,-25.63],[-141.3,-8.29],[-137.8,5.91],[-132.5,17.43],[-116.98,7.65],[-102.97,-1.58],[-91.41,-9.12],[-81.86,-15.41]],"v":[[-77,-20],[-90.78,-25.83],[-101,-34],[-109.58,-58.11],[-111,-87],[-114.41,-101.32],[-120,-112],[-123.14,-115.22],[-127,-118],[-129.19,-120.22],[-131,-122],[-140.71,-126.11],[-151,-129],[-162.15,-131.68],[-173,-134],[-184.17,-136.09],[-195,-139],[-198.97,-141.3],[-203,-144],[-205.53,-144.97],[-208,-146],[-208.51,-146.97],[-209,-148],[-210.47,-148.51],[-212,-149],[-216.16,-153.34],[-220,-158],[-231.62,-171.54],[-245,-182],[-245.47,-182.97],[-246,-184],[-263.48,-189.24],[-286,-190],[-296.83,-188.13],[-304,-185],[-303.58,-177.14],[-301,-172],[-294.14,-157.81],[-286,-147],[-281.16,-141.9],[-276,-138],[-266.12,-132.8],[-255,-129],[-246.34,-127.18],[-238,-125],[-233.08,-122.5],[-229,-120],[-228.06,-119.49],[-227,-119],[-216.32,-101.97],[-213,-78],[-211.82,-62.03],[-208,-48],[-177.19,-29.63],[-144,-12],[-138.71,0.83],[-138,20],[-122.11,10.96],[-107,1],[-95.23,-6.62],[-84,-14]],"c":true}],"h":1},{"t":26,"s":[{"i":[[-80.23,-15.55],[-82.32,-22.77],[-89.74,-25.6],[-97.5,-30.79],[-104.45,-38.13],[-110.83,-58.72],[-111.53,-90.4],[-115.44,-103.04],[-118.31,-108.81],[-119.76,-111.48],[-120.82,-113.77],[-122.63,-115.68],[-126.76,-119.1],[-133.36,-123.48],[-141.67,-126.92],[-149.83,-129.59],[-156.83,-131.62],[-174.79,-134.59],[-197.23,-140.01],[-204.02,-143.85],[-205.42,-145.62],[-207.82,-146.83],[-210.39,-147.52],[-217.3,-153.93],[-225.62,-164.3],[-241.91,-181.28],[-272.23,-191.63],[-295.57,-188.79],[-303.39,-184.88],[-303.33,-175.05],[-296.67,-162.18],[-291.63,-153.85],[-283.32,-143.43],[-279.37,-140.86],[-277.64,-139.4],[-276.23,-138.33],[-275.35,-137.2],[-259.91,-131.13],[-235.69,-125.09],[-224.36,-116.25],[-218.25,-107.33],[-213.82,-87.32],[-212.56,-59.13],[-209.49,-51.42],[-208.13,-50.26],[-207.62,-48.63],[-207.42,-46.59],[-200.08,-39.55],[-184.5,-33.01],[-179.19,-31.5],[-177.27,-30.08],[-169.11,-27.85],[-156.85,-23.78],[-154.37,-21.51],[-153.59,-21.35],[-142.73,-12.14],[-138.53,9.97],[-128.05,14.73],[-112.2,4.33],[-101.65,-2.36],[-93.7,-7.27]],"o":[[-79.45,-21.72],[-87.46,-24.71],[-94.78,-28.72],[-102.34,-35.49],[-110.07,-48.51],[-111.56,-79.66],[-114.54,-100.88],[-117.33,-107],[-119.35,-110.6],[-120.49,-113.07],[-121.5,-114.63],[-125.26,-117.91],[-130.78,-122.02],[-138.8,-125.93],[-147.42,-128.78],[-154.54,-131.01],[-166.68,-133.34],[-190.07,-137.93],[-203.56,-143.29],[-204.95,-145.02],[-206.87,-146.57],[-209.58,-147.31],[-214.24,-150.53],[-222.99,-160.81],[-234.8,-174.71],[-260.63,-189.74],[-291.88,-189.6],[-301.33,-186.43],[-304.99,-179.96],[-299.17,-166.16],[-294.22,-157.89],[-286.18,-146.62],[-280.05,-141.41],[-278.17,-139.85],[-276.56,-138.73],[-275.62,-137.57],[-268.32,-133.08],[-243.6,-127.13],[-226.98,-118.83],[-219.99,-110.5],[-214.29,-96.76],[-212.96,-68.51],[-209.93,-51.79],[-208.59,-50.65],[-207.66,-49.33],[-207.49,-47.26],[-204.58,-42.55],[-190.04,-34.78],[-179.81,-31.96],[-177.92,-30.56],[-173.69,-28.96],[-160.7,-25.26],[-154.57,-21.59],[-153.87,-21.39],[-146.47,-17.12],[-138.76,1.41],[-133.45,18.06],[-117.43,7.86],[-104.3,-0.73],[-96.35,-5.63],[-85.92,-12.26]],"v":[[-76,-20],[-84.89,-23.74],[-92,-27],[-99.92,-33.14],[-106,-41],[-111.2,-69.19],[-114,-99],[-116.39,-105.02],[-119,-110],[-120.12,-112.27],[-121,-114],[-123.94,-116.79],[-128,-120],[-136.08,-124.71],[-145,-128],[-152.18,-130.3],[-159,-132],[-182.43,-136.26],[-203,-143],[-204.49,-144.43],[-206,-146],[-208.7,-147.07],[-211,-148],[-220.14,-157.37],[-228,-167],[-251.27,-185.51],[-288,-190],[-298.45,-187.61],[-304,-183],[-301.25,-170.61],[-296,-161],[-288.9,-150.24],[-281,-142],[-278.77,-140.36],[-277,-139],[-275.93,-137.95],[-275,-137],[-251.76,-129.13],[-230,-121],[-222.17,-113.37],[-217,-104],[-213.39,-77.92],[-210,-52],[-209.04,-51.04],[-208,-50],[-207.55,-47.94],[-207,-46],[-195.06,-37.17],[-180,-32],[-178.56,-31.03],[-177,-30],[-164.91,-26.55],[-155,-22],[-154.12,-21.45],[-153,-21],[-140.75,-5.36],[-139,21],[-122.74,11.3],[-107,1],[-99,-3.99],[-91,-9]],"c":true}],"h":1},{"t":27,"s":[{"i":[[-76.06,-17.14],[-83.36,-23.67],[-94.84,-29.23],[-97.95,-31.65],[-99.58,-32.63],[-109.4,-47.27],[-111.65,-77.01],[-113.94,-95.4],[-116.5,-106.11],[-118.74,-109.82],[-120.62,-111.43],[-123.48,-115.51],[-126.97,-118.54],[-131.11,-121.71],[-134.75,-124.87],[-139.92,-127.06],[-148.29,-129.24],[-171.92,-134.67],[-202.14,-142.28],[-210.63,-148.14],[-212.71,-149.72],[-215.68,-152.31],[-219.77,-155.64],[-221.78,-158.26],[-222.46,-160.32],[-224.22,-162.06],[-226.5,-163.42],[-231.39,-169.44],[-238.32,-176.79],[-241.32,-178.51],[-241.83,-179.87],[-247.1,-183.42],[-255.02,-187.11],[-270.62,-190.17],[-292.76,-189.37],[-300.42,-186.89],[-303.36,-184.56],[-304.49,-179.36],[-302.14,-172.49],[-292.11,-153.41],[-272.85,-136.09],[-250.02,-129.08],[-230.59,-122.4],[-219.42,-109.09],[-214.5,-91.04],[-214.54,-63.74],[-205.25,-44.7],[-196.3,-38.98],[-190.08,-35.41],[-156.33,-26.54],[-137.26,4.02],[-137.52,19.85],[-132.5,17.91],[-129.15,14.75],[-124.29,12.83],[-121.08,9.7],[-116.37,7.86],[-114.45,5.34],[-111.71,4.45],[-94.23,-7.68],[-84.07,-14.3]],"o":[[-78.94,-22.05],[-91.31,-27.26],[-97.41,-31.33],[-99.03,-32.3],[-106.83,-39.02],[-111.81,-66.27],[-113.44,-91.6],[-115.47,-102.65],[-118.18,-109.35],[-119.96,-110.86],[-122.5,-114.24],[-125.72,-117.66],[-129.73,-120.53],[-133.62,-123.88],[-137.28,-126.19],[-145.43,-128.58],[-160.85,-132.78],[-192.57,-139.42],[-209.77,-147.53],[-212.09,-149.24],[-214.3,-151.24],[-218.42,-154.51],[-221.55,-157.6],[-222.24,-159.62],[-223.47,-161.6],[-225.73,-162.97],[-229.23,-166.55],[-235.93,-174.57],[-241.15,-178.07],[-241.65,-179.41],[-244.59,-181.86],[-252.31,-186.04],[-262.99,-189.48],[-285.51,-190.11],[-298.99,-187.36],[-302.6,-185.49],[-304.67,-181.37],[-303.23,-174.92],[-296.93,-161.11],[-280.07,-140.9],[-257.23,-130.63],[-236.7,-124.97],[-222.17,-114.33],[-215.59,-97.45],[-213.15,-74.83],[-209.53,-49.97],[-199.23,-40.15],[-191.21,-36.63],[-173.77,-29.19],[-140.12,-8.23],[-137.65,22.32],[-134.29,18.05],[-129.66,16.18],[-126.48,13],[-121.96,11.33],[-118.37,7.94],[-114.57,6.73],[-113.21,4.41],[-103.02,-1.08],[-85.12,-13.12],[-80.36,-16.71]],"v":[[-75,-21],[-87.33,-25.46],[-97,-31],[-98.49,-31.97],[-100,-33],[-110.61,-56.77],[-113,-88],[-114.7,-99.03],[-118,-109],[-119.35,-110.34],[-121,-112],[-124.6,-116.58],[-129,-120],[-132.36,-122.8],[-135,-125],[-142.68,-127.82],[-151,-130],[-182.24,-137.04],[-209,-147],[-211.36,-148.69],[-213,-150],[-217.05,-153.41],[-221,-157],[-222.01,-158.94],[-223,-161],[-224.98,-162.51],[-227,-164],[-233.66,-172],[-241,-178],[-241.49,-178.96],[-242,-180],[-249.71,-184.73],[-258,-188],[-278.06,-190.14],[-297,-188],[-301.51,-186.19],[-304,-183],[-303.86,-177.14],[-301,-170],[-286.09,-147.16],[-264,-133],[-243.36,-127.02],[-226,-118],[-217.51,-103.27],[-214,-85],[-211,-54],[-203,-43],[-192,-37],[-189,-35],[-147,-16],[-140,21],[-136,19],[-131,17],[-128,14],[-123,12],[-120,9],[-115,7],[-114,5],[-111,4],[-87,-12],[-83,-15]],"c":true}],"h":1},{"t":28,"s":[{"i":[[-77.67,-17.85],[-82.29,-24.19],[-91.67,-27.61],[-95.24,-30.09],[-97.26,-32.45],[-100.58,-34.8],[-103.34,-37.01],[-105.51,-40.36],[-107.46,-43.85],[-111.53,-56.44],[-112.45,-76.46],[-114.3,-94.3],[-118.32,-106.99],[-125.72,-118.16],[-137.3,-126.1],[-166.19,-134.14],[-203.72,-142.22],[-211.92,-149.43],[-213.59,-149.66],[-223.45,-159.52],[-236,-174.9],[-241.62,-179.36],[-242.85,-179.9],[-244.86,-181.17],[-247.24,-182.53],[-248.63,-183.6],[-249.65,-184.82],[-267.57,-190.16],[-301.65,-188.8],[-303.38,-174.29],[-295.2,-158.92],[-289.61,-150.76],[-280.79,-142.25],[-277.68,-140.49],[-277.19,-139.12],[-272.61,-136.91],[-265.39,-134.64],[-251.97,-129.82],[-234.43,-124.2],[-230.08,-120.57],[-228.41,-120.34],[-225.38,-117.38],[-223.63,-114.06],[-221.02,-109.64],[-218.58,-104.72],[-216.66,-69.18],[-206.5,-47.38],[-188.24,-35.06],[-153.15,-24.83],[-140.72,-6.01],[-141.02,20.98],[-133.47,18.28],[-126.64,13.05],[-121.49,10.95],[-119.45,8.34],[-116.7,7.43],[-108.18,2.03],[-103.98,-0.33],[-95.53,-6.44],[-91.75,-9.52],[-87.33,-11.19]],"o":[[-78.45,-22.89],[-88.89,-26.55],[-94.61,-29.37],[-96.57,-31.63],[-99.4,-34.04],[-102.55,-36.28],[-104.78,-39.18],[-106.85,-42.69],[-110.55,-50.45],[-112.48,-69.44],[-113.39,-89.31],[-116.77,-103.15],[-122.57,-114.61],[-133.08,-123.91],[-152.58,-132.27],[-191.76,-139.11],[-211.38,-149.35],[-213.03,-149.58],[-219.21,-154.32],[-231.85,-169.81],[-241.2,-179.16],[-242.45,-179.73],[-243.99,-180.66],[-246.48,-182.1],[-248.3,-183.19],[-249.3,-184.41],[-255.24,-187.76],[-290.77,-190.68],[-305.28,-179.83],[-298.34,-163.84],[-292.22,-154.13],[-283.89,-144.82],[-277.83,-140.93],[-277.36,-139.58],[-275.17,-137.84],[-267.73,-135.31],[-258.51,-131.47],[-239.94,-126.18],[-230.62,-120.65],[-228.97,-120.42],[-226.32,-118.6],[-224.04,-115.11],[-221.98,-111.28],[-219.32,-106.36],[-212.82,-87.52],[-209.96,-50.02],[-197.35,-38.66],[-165.69,-27.6],[-143.83,-12.02],[-139.52,2.36],[-139.4,23.17],[-129.45,15.9],[-123.31,10.91],[-119.57,9.72],[-118.23,7.42],[-112.21,4.65],[-105.18,-0.76],[-99.65,-3.27],[-92.06,-8.58],[-89.61,-10.9],[-81.66,-14.64]],"v":[[-74,-21],[-85.59,-25.37],[-94,-29],[-95.9,-30.86],[-98,-33],[-101.56,-35.54],[-104,-38],[-106.18,-41.52],[-108,-45],[-112,-62.94],[-113,-84],[-115.53,-98.72],[-120,-110],[-129.4,-121.04],[-142,-128],[-178.97,-136.62],[-211,-149],[-212.47,-149.51],[-214,-150],[-227.65,-164.66],[-241,-179],[-242.04,-179.55],[-243,-180],[-245.67,-181.64],[-248,-183],[-248.96,-184],[-250,-185],[-279.17,-190.42],[-304,-183],[-300.86,-169.07],[-294,-157],[-286.75,-147.79],[-278,-141],[-277.52,-140.03],[-277,-139],[-270.17,-136.11],[-264,-134],[-245.96,-128],[-231,-121],[-229.53,-120.49],[-228,-120],[-224.71,-116.25],[-223,-113],[-220.17,-108],[-218,-103],[-211,-53],[-204,-45],[-179,-32],[-146,-15],[-140,-1],[-141,21],[-133,18],[-125,12],[-120,10],[-119,8],[-116,7],[-106,0],[-103,-1],[-93,-8],[-91,-10],[-86,-12]],"c":true}],"h":1},{"t":29,"s":[{"i":[[-73.39,-18.62],[-81.3,-24.58],[-90.55,-27.64],[-94.31,-30.11],[-96.27,-32.47],[-98,-33.43],[-99.6,-33.7],[-103.53,-37.27],[-108.01,-43.82],[-113.3,-62.44],[-114.58,-90.04],[-116.57,-100.56],[-117.42,-105.65],[-120.18,-110.66],[-124.25,-115.06],[-125.84,-117.49],[-126.59,-119.61],[-128.12,-120.69],[-130.42,-121.59],[-132.47,-123.14],[-134.18,-124.54],[-137.62,-126.28],[-141.06,-127.57],[-142.77,-128.29],[-144.3,-128.74],[-159.48,-133.49],[-181.73,-138.13],[-196.63,-141.86],[-207.12,-145.25],[-210.35,-147.54],[-210.78,-148.84],[-211.99,-149.43],[-213.61,-149.69],[-214.37,-150.58],[-214.78,-151.79],[-215.92,-152.43],[-217.6,-152.66],[-220.96,-155.85],[-225.43,-161.07],[-227.28,-163.16],[-242.65,-180.43],[-255.54,-187.5],[-277,-190.34],[-301.59,-188.88],[-300.7,-169.33],[-285.79,-145.06],[-278.42,-140.23],[-252.22,-131.39],[-234.32,-123.47],[-227.09,-119.17],[-224.57,-114.79],[-216.04,-95.27],[-214.64,-61.01],[-209.34,-51.55],[-193.68,-37.78],[-148.79,-24.31],[-140.45,8.45],[-118,8.04],[-92.11,-9.27],[-82.27,-14.15],[-80.47,-16.64]],"o":[[-77.77,-23.51],[-87.69,-26.64],[-93.68,-29.38],[-95.61,-31.66],[-97.45,-33.33],[-99.08,-33.61],[-101.77,-35.35],[-106.65,-41.5],[-112.26,-53.17],[-114.46,-80.87],[-116.35,-98.74],[-117.1,-104.02],[-118.8,-108.88],[-122.9,-113.75],[-125.55,-116.68],[-126.36,-118.95],[-127.42,-120.39],[-129.62,-121.29],[-131.89,-122.62],[-133.62,-124.1],[-136.34,-125.75],[-139.98,-127.19],[-142.37,-128.17],[-143.74,-128.57],[-152.12,-131.67],[-174.29,-136.72],[-192.82,-140.98],[-203.78,-143.99],[-210.21,-147.13],[-210.64,-148.4],[-211.44,-149.33],[-213.08,-149.61],[-214.23,-150.18],[-214.64,-151.38],[-215.37,-152.35],[-217.04,-152.58],[-219.24,-154.06],[-224.05,-159.35],[-226.66,-163.07],[-235.15,-172.4],[-253.74,-185.85],[-263.73,-190.3],[-291.66,-189.34],[-305.97,-178.18],[-294.24,-156.66],[-278.65,-141.84],[-266.52,-133.6],[-235.77,-124.96],[-229.03,-119.54],[-225.33,-117.28],[-218.16,-105.86],[-214.07,-72.03],[-210.78,-52.52],[-203.44,-42.06],[-165.77,-28.74],[-139.6,-1.6],[-129.02,16.08],[-99.74,-3.65],[-84.59,-13.86],[-80.55,-15.3],[-77.63,-18.78]],"v":[[-74,-22],[-84.49,-25.61],[-93,-29],[-94.96,-30.89],[-97,-33],[-98.54,-33.52],[-100,-34],[-105.09,-39.38],[-109,-46],[-113.88,-71.66],[-116,-97],[-116.83,-102.29],[-118,-107],[-121.54,-112.21],[-125,-116],[-126.1,-118.22],[-127,-120],[-128.87,-120.99],[-131,-122],[-133.05,-123.62],[-135,-125],[-138.8,-126.73],[-142,-128],[-143.26,-128.43],[-145,-129],[-166.88,-135.11],[-189,-140],[-200.21,-142.93],[-210,-147],[-210.49,-147.97],[-211,-149],[-212.54,-149.52],[-214,-150],[-214.5,-150.98],[-215,-152],[-216.48,-152.5],[-218,-153],[-222.5,-157.6],[-226,-162],[-228,-164],[-252,-185],[-257,-188],[-282,-190],[-304,-183],[-299,-166],[-279,-142],[-278,-140],[-241,-127],[-231,-121],[-226,-118],[-224,-114],[-215,-83],[-211,-53],[-209,-51],[-182,-34],[-143,-10],[-141,22],[-107,1],[-86,-13],[-81,-15],[-80,-17]],"c":true}],"h":1},{"t":30,"s":[{"i":[[-77.69,-16.84],[-78.47,-24.31],[-85.14,-26.17],[-90.6,-28.7],[-97.32,-32.35],[-103.18,-37.92],[-109.7,-46.41],[-114.51,-70.55],[-116.25,-103.45],[-122.58,-113.93],[-125.6,-116.46],[-126.41,-118.03],[-126.6,-119.6],[-127.59,-120.38],[-128.76,-120.85],[-130.63,-122.14],[-132.36,-123.6],[-133.77,-124.67],[-134.65,-125.8],[-144.99,-130.5],[-163.57,-134.77],[-186.3,-139.25],[-208.17,-146.46],[-220.78,-156.35],[-230.78,-166.62],[-236.88,-172.86],[-241.42,-176.73],[-246.43,-181.03],[-251.23,-185.15],[-262.02,-189.07],[-278.11,-191.29],[-290.31,-190.15],[-302.72,-186.13],[-303.73,-175.34],[-297,-162.66],[-291.07,-153.37],[-282.55,-143.53],[-272.67,-138.21],[-261.03,-134.24],[-250.86,-131.17],[-241.39,-128.08],[-235.5,-125.04],[-232.02,-121.88],[-229.46,-120.07],[-227.34,-119.37],[-226.58,-118.11],[-226.2,-116.29],[-225.76,-115.75],[-225.06,-115.07],[-224.3,-114.04],[-223.41,-112.42],[-222.51,-111.37],[-222.35,-110.59],[-216.76,-90.37],[-213.59,-56.01],[-207.68,-47.74],[-202.74,-44.12],[-191.22,-37.8],[-157.14,-28.19],[-139.24,6.49],[-106.47,0.53]],"o":[[-75.9,-23.48],[-83.09,-25.66],[-88.19,-27.53],[-95.16,-31.11],[-100.58,-35.47],[-107.74,-43.4],[-114.38,-59.33],[-115.44,-92.61],[-121.53,-112.95],[-124.61,-115.69],[-126.36,-117.48],[-126.53,-119.09],[-127.21,-120.2],[-128.36,-120.71],[-129.95,-121.59],[-131.83,-123.15],[-133.44,-124.27],[-134.37,-125.43],[-139.46,-128.62],[-157.05,-133.58],[-177.96,-137.52],[-201.4,-143.72],[-217.14,-153.04],[-227.6,-163.14],[-235.42,-171.49],[-239.88,-175.47],[-244.81,-179.45],[-249.64,-183.87],[-256.47,-187.67],[-272.84,-190.87],[-285.2,-190.58],[-299.07,-187.92],[-305.23,-180.01],[-299.62,-166.66],[-293.8,-157.36],[-285.44,-146.46],[-276.4,-139.84],[-264.98,-135.41],[-254.17,-132.13],[-244.47,-129.14],[-236.99,-126.1],[-233.02,-122.93],[-230.29,-120.39],[-227.98,-119.56],[-226.73,-118.71],[-226.32,-116.9],[-225.98,-115.97],[-225.3,-115.3],[-224.6,-114.58],[-223.71,-112.96],[-222.59,-111.57],[-222.39,-110.87],[-217.46,-102.36],[-214.82,-67.19],[-207.33,-49.28],[-206.02,-45.93],[-196.2,-39.92],[-171.41,-30.98],[-141.41,-10.42],[-123.96,12.69],[-84.19,-13.72]],"v":[[-73,-22],[-80.78,-24.99],[-87,-27],[-92.88,-29.91],[-98,-33],[-105.46,-40.66],[-111,-50],[-114.97,-81.58],[-121,-112],[-123.59,-114.81],[-126,-117],[-126.47,-118.56],[-127,-120],[-127.98,-120.54],[-129,-121],[-131.23,-122.64],[-133,-124],[-134.07,-125.05],[-135,-126],[-151.02,-132.04],[-170,-136],[-193.85,-141.49],[-213,-150],[-224.19,-159.74],[-234,-170],[-238.38,-174.17],[-243,-178],[-248.03,-182.45],[-253,-186],[-267.43,-189.97],[-281,-191],[-294.69,-189.04],[-304,-183],[-301.67,-171],[-296,-161],[-288.26,-149.92],[-280,-142],[-268.83,-136.81],[-257,-133],[-247.67,-130.15],[-239,-127],[-234.26,-123.98],[-231,-121],[-228.72,-119.82],[-227,-119],[-226.45,-117.5],[-226,-116],[-225.53,-115.53],[-225,-115],[-224,-113.5],[-223,-112],[-222.45,-111.12],[-222,-110],[-215.79,-78.78],[-208,-50],[-207,-47],[-201,-43],[-186,-36],[-149,-19],[-142,23],[-90,-10]],"c":true}],"h":1},{"t":31,"s":[{"i":[[-71.75,-20.84],[-83.15,-26.54],[-95.08,-31.81],[-101.14,-36.33],[-104.82,-39.57],[-114.05,-62.3],[-116.59,-103.22],[-123.35,-114.49],[-126.74,-117.65],[-127.41,-119.03],[-127.59,-120.6],[-128.59,-121.38],[-129.76,-121.85],[-131.63,-123.14],[-133.36,-124.6],[-134.77,-125.67],[-135.65,-126.8],[-160.81,-135.2],[-203.28,-142.47],[-214.6,-150.82],[-218.42,-153.45],[-219.63,-154.4],[-220.64,-154.7],[-228.78,-162.88],[-238.49,-175.04],[-242.94,-178.43],[-244.65,-178.73],[-245.64,-179.61],[-246.6,-180.7],[-256.65,-186.6],[-275.86,-191.25],[-291.55,-190.23],[-302.88,-185.84],[-304.44,-175.97],[-298.68,-165.81],[-295.42,-160.04],[-293.04,-155.39],[-288.09,-149.33],[-282.19,-144.54],[-271.24,-138.08],[-246.83,-130.46],[-235.47,-125.01],[-230.18,-121.18],[-217.39,-96.42],[-212.57,-51.52],[-159.97,-34.46],[-140.33,5.65],[-136.82,19.77],[-130.63,16.99],[-126.41,12.91],[-121.29,10.82],[-119.45,8.34],[-116.7,7.44],[-109.95,2.89],[-104.48,-1.1],[-99.39,-3.1],[-97.46,-5.66],[-94.73,-6.5],[-89.2,-11.1],[-85.7,-12.56],[-78.67,-17.12]],"o":[[-78.11,-24.88],[-91.63,-30],[-99.73,-35.3],[-103.68,-38.47],[-112.75,-49.19],[-115.97,-89.31],[-122.23,-113.41],[-125.6,-116.61],[-127.36,-118.48],[-127.52,-120.09],[-128.21,-121.21],[-129.36,-121.71],[-130.95,-122.59],[-132.83,-124.15],[-134.44,-125.27],[-135.37,-126.43],[-146.17,-132.96],[-189.36,-139.96],[-213.14,-149.85],[-217.24,-152.62],[-219.31,-154.3],[-220.3,-154.6],[-225.28,-158.61],[-235.38,-171.09],[-242.37,-178.31],[-244.08,-178.64],[-245.34,-179.26],[-246.27,-180.33],[-250.97,-183.97],[-269.09,-190.24],[-286.6,-190.81],[-299.69,-187.75],[-305.35,-179.57],[-301.11,-169.09],[-296.16,-161.59],[-293.86,-156.94],[-289.99,-151.3],[-284.18,-145.94],[-275.04,-139.51],[-257.43,-133.48],[-236.7,-126.19],[-231.69,-121.93],[-219.24,-110.22],[-214.79,-63.82],[-189.34,-33.85],[-141.86,-9.57],[-139.03,23.12],[-132.62,17.14],[-127.52,15.1],[-123.62,11.11],[-119.57,9.72],[-118.22,7.42],[-112.95,5.1],[-105.56,0.08],[-101.67,-2.81],[-97.56,-4.28],[-96.19,-6.61],[-91.82,-8.47],[-87.23,-12.58],[-81.54,-15.15],[-74.69,-19.92]],"v":[[-72,-23],[-87.39,-28.27],[-98,-34],[-102.41,-37.4],[-106,-41],[-115.01,-75.81],[-122,-113],[-124.47,-115.55],[-127,-118],[-127.46,-119.56],[-128,-121],[-128.98,-121.54],[-130,-122],[-132.23,-123.64],[-134,-125],[-135.07,-126.05],[-136,-127],[-175.09,-137.58],[-212,-149],[-215.92,-151.72],[-219,-154],[-219.97,-154.5],[-221,-155],[-232.08,-166.99],[-242,-178],[-243.51,-178.53],[-245,-179],[-245.96,-179.97],[-247,-181],[-262.87,-188.42],[-282,-191],[-295.62,-188.99],[-304,-183],[-302.77,-172.53],[-297,-163],[-294.64,-158.49],[-292,-154],[-286.14,-147.63],[-280,-143],[-265,-136],[-241,-128],[-233,-123],[-229,-120],[-216,-79],[-204,-45],[-148,-18],[-143,23],[-134,18],[-129,16],[-125,12],[-120,10],[-119,8],[-116,7],[-107,1],[-103,-2],[-98,-4],[-97,-6],[-94,-7],[-88,-12],[-85,-13],[-76,-19]],"c":true}],"h":1},{"t":32,"s":[{"i":[[-82.37,-14.14],[-87.47,-28.77],[-105.85,-39.49],[-113.87,-57.09],[-115.46,-76.14],[-116.89,-92.92],[-119.69,-105.73],[-122.91,-113.24],[-126.01,-117.97],[-127.36,-119.62],[-127.76,-120.76],[-128.9,-121.47],[-130.52,-121.67],[-131.7,-122.89],[-132.58,-124.7],[-134.73,-125.93],[-137.36,-126.71],[-138.32,-127.52],[-138.79,-128.88],[-141.52,-130.14],[-145.81,-131.59],[-156.16,-134.72],[-169.15,-137.11],[-180.18,-139.23],[-189.2,-141.34],[-201.52,-144.58],[-212.7,-149.72],[-226.39,-160.66],[-240.12,-175.1],[-246,-179.7],[-247.51,-180.61],[-248.97,-181.96],[-250.61,-183.76],[-260.34,-188.08],[-278.49,-191.2],[-292.32,-190.13],[-302.95,-185.68],[-304.62,-178.85],[-302.45,-174.27],[-300.74,-169.3],[-298.83,-164.43],[-292.5,-154.52],[-283.28,-145.2],[-269.19,-137.62],[-250.43,-132.15],[-238.8,-127.15],[-232.02,-122.03],[-223.95,-112.88],[-218.87,-99.74],[-216.9,-82],[-215.53,-64.55],[-212.85,-56.99],[-210.4,-51.55],[-207.23,-48.15],[-201.86,-45.09],[-178.87,-35.4],[-163.61,-30.8],[-161.36,-28.27],[-158.7,-27.43],[-139.22,-0.98],[-119.06,8.72]],"o":[[-79.8,-26.53],[-100.5,-35.25],[-112.64,-51.77],[-115.28,-69.28],[-116.29,-88.31],[-118.59,-101.63],[-121.9,-111.25],[-124.96,-116.59],[-127.23,-119.24],[-127.63,-120.38],[-128.38,-121.39],[-129.97,-121.61],[-131.42,-122.29],[-132.28,-124.09],[-133.8,-125.57],[-136.51,-126.5],[-138.18,-127.08],[-138.62,-128.43],[-140.12,-129.6],[-144.37,-131.14],[-151.83,-133.66],[-164.82,-136.44],[-177.08,-138.56],[-186.24,-140.62],[-197.17,-143.22],[-209.29,-147.83],[-221.58,-155.86],[-235.66,-170.28],[-245.49,-179.39],[-247.01,-180.31],[-248.41,-181.33],[-250.06,-183.17],[-254.59,-186.23],[-272.29,-190.57],[-287.59,-190.79],[-299.99,-187.57],[-304.89,-180.72],[-303.39,-175.63],[-301.32,-171.08],[-299.49,-165.98],[-295.37,-158.43],[-286.46,-147.91],[-275.22,-139.8],[-256.79,-133.79],[-241.54,-128.63],[-234.04,-123.84],[-226.52,-116.51],[-220.13,-104.5],[-217.13,-88.23],[-216.1,-70.16],[-213.65,-58.97],[-211.23,-53.28],[-208.8,-49.36],[-203.76,-46.02],[-190.84,-38.63],[-167.05,-31.33],[-161.66,-29.83],[-160.23,-27.42],[-142.82,-17.55],[-131.01,17.31],[-94.75,-6.84]],"v":[[-71,-23],[-93.98,-32.01],[-110,-47],[-114.58,-63.19],[-116,-84],[-117.74,-97.28],[-121,-109],[-123.93,-114.92],[-127,-119],[-127.49,-120],[-128,-121],[-129.43,-121.54],[-131,-122],[-131.99,-123.49],[-133,-125],[-135.62,-126.21],[-138,-127],[-138.47,-127.97],[-139,-129],[-142.94,-130.64],[-147,-132],[-160.49,-135.58],[-174,-138],[-183.21,-139.93],[-192,-142],[-205.4,-146.2],[-216,-152],[-231.02,-165.47],[-245,-179],[-246.5,-180],[-248,-181],[-249.51,-182.56],[-251,-184],[-266.31,-189.32],[-283,-191],[-296.16,-188.85],[-304,-183],[-304.01,-177.24],[-302,-173],[-300.11,-167.64],[-298,-163],[-289.48,-151.22],[-280,-143],[-262.99,-135.71],[-245,-130],[-236.42,-125.5],[-230,-120],[-222.04,-108.69],[-218,-94],[-216.5,-76.08],[-214,-60],[-212.04,-55.14],[-210,-51],[-205.5,-47.09],[-200,-44],[-169,-32],[-162,-30],[-161,-28],[-158,-27],[-144,24],[-107,1]],"c":true}],"h":1},{"t":33,"s":[{"i":[[-71.52,-21.78],[-79.27,-26.78],[-90.97,-31.23],[-101.19,-36.87],[-109.16,-44.6],[-114.49,-56.74],[-116.48,-72.3],[-117.26,-88.82],[-119.32,-104.48],[-122.07,-111.43],[-124.62,-115.63],[-127.58,-119.62],[-130.32,-122.55],[-134.41,-125.26],[-139.51,-128.4],[-144.97,-131.19],[-158.53,-135.78],[-176.02,-138.96],[-186.09,-140.63],[-192.1,-141.55],[-201.22,-144.01],[-212.54,-148.51],[-215.6,-150.54],[-216.68,-151.76],[-228.66,-162.4],[-244.85,-178.97],[-255.58,-185.82],[-262.32,-188.13],[-280.65,-191.14],[-302.23,-187.45],[-304.1,-175.82],[-298.31,-164.18],[-293.32,-156.07],[-287.1,-148.39],[-279.92,-143.6],[-272.02,-139.14],[-256.81,-134.11],[-239.07,-128.05],[-229,-119.6],[-222.11,-109.27],[-218.08,-87.47],[-215.09,-58.47],[-209.58,-52.07],[-209.34,-50.37],[-207.51,-48.79],[-203.99,-46.66],[-190.69,-39.96],[-170.09,-33.89],[-159.27,-28.63],[-152.83,-24.03],[-144.3,-10.68],[-143.02,13.71],[-131.3,16.86],[-113.01,4.85],[-100.95,-2.98],[-92.04,-9.03],[-87.42,-11.73],[-84.76,-12.53],[-82.54,-14.26],[-80.71,-16.53],[-76.51,-18.63]],"o":[[-75.16,-25.42],[-87.18,-29.69],[-97.97,-34.83],[-106.78,-41.76],[-113.19,-52.04],[-116.13,-66.87],[-117.04,-83.27],[-118.4,-99.42],[-121.41,-110.11],[-123.68,-114.19],[-126.57,-118.35],[-129.45,-121.72],[-132.73,-124.15],[-137.8,-127.39],[-143.1,-130.3],[-152.77,-134.3],[-170.16,-138.1],[-184.04,-140.36],[-190.12,-141.23],[-197.2,-142.76],[-208.89,-146.89],[-215.26,-150.16],[-216.31,-151.34],[-223.23,-156.66],[-239.47,-173.55],[-253.67,-184.75],[-259.91,-187.51],[-272.03,-190.42],[-295.75,-189.66],[-305.2,-179.98],[-300.66,-167.92],[-295.27,-159.12],[-289.23,-150.7],[-282.41,-145.28],[-274.72,-140.53],[-263.28,-135.84],[-244.71,-130.22],[-231.95,-122.71],[-224.08,-112.88],[-218.29,-97.99],[-216.48,-67.71],[-209.66,-52.64],[-209.42,-50.94],[-208.51,-49.46],[-205.25,-47.39],[-197.4,-42.27],[-177.04,-35.78],[-161.6,-29.86],[-154.88,-25.72],[-146.54,-17.04],[-142.54,4.69],[-137.55,20.68],[-119.03,8.94],[-103.93,-0.96],[-95,-7.01],[-88.28,-11.46],[-85.66,-12.27],[-83.19,-13.49],[-81.31,-15.77],[-78.5,-17.99],[-73.02,-20.53]],"v":[[-71,-24],[-83.23,-28.23],[-94.47,-33.03],[-103.98,-39.31],[-111,-48],[-115.31,-61.81],[-116.76,-77.79],[-117.83,-94.12],[-121,-109],[-122.88,-112.81],[-125.6,-116.99],[-128.52,-120.67],[-131,-123],[-136.1,-126.32],[-141.3,-129.35],[-147,-132],[-164.34,-136.94],[-182,-140],[-188.1,-140.93],[-194,-142],[-205.06,-145.45],[-215,-150],[-215.96,-150.94],[-217,-152],[-234.06,-167.97],[-251,-183],[-257.74,-186.67],[-266,-189],[-288.2,-190.4],[-304,-183],[-302.38,-171.87],[-297,-162],[-291.28,-153.38],[-285,-147],[-277.32,-142.07],[-269,-138],[-250.76,-132.16],[-235,-125],[-226.54,-116.24],[-221,-106],[-217.28,-77.59],[-210,-53],[-209.5,-51.51],[-209,-50],[-206.38,-48.09],[-203,-46],[-183.87,-37.87],[-164,-31],[-157.07,-27.17],[-151,-22],[-143.42,-2.99],[-144,24],[-125.17,12.9],[-107,1],[-97.98,-4.99],[-89,-11],[-86.54,-12],[-84,-13],[-81.93,-15.02],[-80,-17],[-74.77,-19.58]],"c":true}],"h":1},{"t":34,"s":[{"i":[[-69.91,-22.93],[-78.21,-27.4],[-89.03,-31.17],[-98.42,-35.3],[-106.57,-41.72],[-112.41,-50.64],[-115.31,-60.6],[-116.72,-71.81],[-117.6,-83.86],[-118.3,-90.72],[-118.92,-94.8],[-119.71,-98.82],[-120.65,-102.74],[-122.77,-109.94],[-125.75,-116.09],[-129.98,-121.12],[-134.11,-125.22],[-136.95,-128.34],[-142.93,-131.46],[-151.91,-134.1],[-173.87,-139.14],[-203.13,-144.64],[-214.59,-150.06],[-218.54,-153.85],[-220.58,-155.1],[-221.76,-154.89],[-222.31,-155.5],[-222.85,-156.88],[-230.36,-163.9],[-240.57,-174.41],[-249,-180.92],[-257.78,-187.16],[-275.93,-191.42],[-302.06,-187.89],[-303.97,-175.8],[-298.47,-162.53],[-296.3,-160.04],[-295.41,-158.43],[-292.39,-155.29],[-288.51,-151.44],[-281.85,-145.17],[-274.54,-140.39],[-263.65,-136.6],[-253.29,-134.12],[-246.07,-131.49],[-239.46,-128.44],[-237.26,-126.48],[-234.66,-124.54],[-225.04,-114.32],[-218.89,-93.97],[-217.51,-75.29],[-215.44,-60.4],[-191.95,-41.24],[-148.99,-26.28],[-143.57,-1.19],[-144.88,18.35],[-132.11,17.33],[-113.24,4.99],[-95.69,-6.11],[-78.98,-16.62],[-72.22,-20.97]],"o":[[-74.25,-25.94],[-85.6,-30.02],[-95.44,-33.81],[-103.98,-39.25],[-110.97,-47.66],[-114.59,-57.11],[-116.38,-67.95],[-117.32,-79.77],[-118.13,-89.36],[-118.69,-93.44],[-119.43,-97.49],[-120.32,-101.45],[-121.92,-107.34],[-124.69,-114.31],[-128.4,-119.49],[-133.13,-124.06],[-136.02,-127.36],[-140.23,-130.41],[-148.78,-133.3],[-163.81,-137.58],[-193.53,-142.68],[-213.06,-148.88],[-217.32,-152.54],[-220.2,-155.16],[-221.36,-154.97],[-222.14,-155.06],[-222.67,-156.41],[-226.83,-160.19],[-237.23,-171],[-246.11,-178.59],[-254.84,-185.21],[-265.9,-190.22],[-294.01,-190.26],[-304.98,-180.53],[-300.71,-166.8],[-296.6,-160.58],[-295.71,-158.97],[-293.63,-156.57],[-289.83,-152.72],[-284.08,-147.23],[-277.08,-141.75],[-267.26,-137.53],[-256.67,-134.89],[-248.59,-132.52],[-241.5,-129.45],[-238.18,-127.22],[-235.5,-125.14],[-228.6,-119.58],[-220.18,-101.52],[-217.54,-80.34],[-216.46,-65.32],[-206.95,-45.1],[-162.97,-31.83],[-143.63,-7.11],[-144.19,11.54],[-138.5,21.33],[-119.48,9.16],[-101.45,-2.56],[-84.46,-13.14],[-73.26,-20.5],[-70.54,-22.18]],"v":[[-70,-24],[-81.91,-28.71],[-92.24,-32.49],[-101.2,-37.28],[-109,-45],[-113.5,-53.87],[-115.85,-64.28],[-117.02,-75.79],[-118,-88],[-118.49,-92.08],[-119.18,-96.14],[-120.02,-100.13],[-121,-104],[-123.73,-112.12],[-127.07,-117.79],[-132,-123],[-135.06,-126.29],[-138,-129],[-145.85,-132.38],[-155,-135],[-183.7,-140.91],[-211,-148],[-215.96,-151.3],[-220,-155],[-220.97,-155.04],[-222,-155],[-222.49,-155.95],[-223,-157],[-233.8,-167.45],[-244,-177],[-251.92,-183.07],[-260,-188],[-284.97,-190.84],[-304,-183],[-302.34,-171.3],[-297,-161],[-296,-159.5],[-295,-158],[-291.11,-154.01],[-287,-150],[-279.46,-143.46],[-271,-139],[-260.16,-135.74],[-250,-133],[-243.79,-130.47],[-239,-128],[-236.38,-125.81],[-234,-124],[-222.61,-107.92],[-218,-85],[-216.99,-70.31],[-213,-56],[-177.46,-36.54],[-145,-12],[-143.88,5.17],[-145,25],[-125.8,13.24],[-107,1],[-90.07,-9.63],[-74,-20],[-71.38,-21.57]],"c":true}],"h":1},{"t":35,"s":[{"i":[[-70.22,-20.92],[-87.69,-30.95],[-107.51,-42.1],[-116.32,-61.42],[-118.3,-82.08],[-120,-97.46],[-122.62,-108.78],[-126.59,-117.24],[-130.92,-122.06],[-136.94,-127.74],[-142.52,-131.92],[-155.27,-136.57],[-173.11,-140.03],[-191.37,-142.92],[-208.67,-146.86],[-216.43,-151.2],[-221.3,-155.65],[-223.97,-157.43],[-225.63,-157.71],[-226.72,-158.89],[-227.61,-160.63],[-234.03,-166.68],[-243.45,-175.56],[-246.64,-178.41],[-247.6,-178.68],[-249.72,-180.72],[-252.04,-183.43],[-259.51,-187.33],[-271.16,-190.66],[-287.47,-191.31],[-302.6,-186.58],[-304.63,-178.62],[-302.12,-171.44],[-297.83,-161.87],[-295.81,-158.85],[-286.12,-147.86],[-281.39,-144.24],[-274.1,-141.28],[-256.47,-134.86],[-241.25,-130.07],[-235.38,-125.17],[-230.09,-120.42],[-227.25,-117.37],[-227.23,-115.51],[-225.23,-114.43],[-222.7,-108.28],[-219.79,-79.06],[-196.26,-43.47],[-153.5,-28.73],[-143.87,8.41],[-133.36,17.71],[-127,14.65],[-123.65,11.12],[-119.76,9.48],[-115.36,6.85],[-100.13,-3.81],[-92.96,-7.35],[-89.5,-11.04],[-85.77,-12.55],[-81.49,-15.07],[-78.65,-17.57]],"o":[[-79.18,-28.64],[-101.85,-37.68],[-114.92,-55.13],[-118.01,-74.89],[-119.44,-93.32],[-121.59,-105.19],[-125.38,-115.21],[-129.36,-120.66],[-135.18,-126.03],[-140.61,-130.69],[-149.72,-135.05],[-166.97,-139.06],[-185.03,-141.99],[-203.19,-145.36],[-214.78,-149.88],[-219.69,-154.09],[-223.41,-157.32],[-225.08,-157.62],[-226.42,-158.33],[-227.31,-160.04],[-230.8,-163.65],[-240.35,-172.63],[-246.34,-178.32],[-247.27,-178.59],[-248.95,-179.75],[-251.27,-182.56],[-255.93,-185.75],[-267.12,-189.79],[-280.92,-191.52],[-298.31,-188.84],[-304.82,-180.9],[-303.28,-173.89],[-299.88,-166.57],[-296.2,-160.16],[-291.41,-154.26],[-281.67,-145.85],[-278.11,-142.17],[-262.86,-136.64],[-245.57,-130.69],[-236.93,-127.32],[-230.86,-121.33],[-228.85,-117.68],[-226.69,-116.54],[-226.84,-114.64],[-223.81,-111.8],[-218.32,-94.09],[-212.34,-46.89],[-165.16,-33.02],[-142.76,-7.78],[-139.41,23.18],[-128.07,14.42],[-124.45,13],[-121.12,9.4],[-117.2,7.88],[-107.9,2.21],[-94.09,-7.56],[-90.64,-8.92],[-87.09,-12.58],[-82.98,-14.17],[-79.4,-16.37],[-75.21,-19.83]],"v":[[-69,-25],[-94.77,-34.31],[-112,-50],[-117.16,-68.16],[-119,-89],[-120.79,-101.33],[-124,-112],[-127.97,-118.95],[-133,-124],[-138.77,-129.21],[-145,-133],[-161.12,-137.81],[-179,-141],[-197.28,-144.14],[-213,-149],[-218.06,-152.65],[-223,-157],[-224.53,-157.52],[-226,-158],[-227.02,-159.46],[-228,-161],[-237.19,-169.66],[-246,-178],[-246.95,-178.5],[-248,-179],[-250.49,-181.64],[-253,-184],[-263.31,-188.56],[-275,-191],[-292.89,-190.07],[-304,-183],[-303.95,-176.25],[-301,-169],[-297,-161],[-295,-158],[-282,-146],[-281,-144],[-271,-140],[-249,-132],[-238,-128],[-234,-124],[-229,-118],[-227,-117],[-227,-115],[-225,-114],[-222,-106],[-217,-67],[-177,-37],[-148,-18],[-146,25],[-129,15],[-126,14],[-122,10],[-119,9],[-114,6],[-95,-7],[-92,-8],[-88,-12],[-85,-13],[-80,-16],[-78,-18]],"c":true}],"h":1},{"t":36,"s":[{"i":[[-71.46,-21.54],[-76.02,-28.08],[-87.54,-31.49],[-93.82,-34.54],[-97.68,-37.31],[-105.36,-41.78],[-112.3,-49.41],[-117.15,-62.44],[-118.56,-78.39],[-120.4,-96.77],[-124.78,-113.17],[-129.15,-120.41],[-132.96,-124.27],[-139.32,-129.51],[-146.01,-133.1],[-149.56,-134.51],[-150.74,-135.91],[-152.97,-136.46],[-156.07,-136.77],[-158.76,-137.64],[-161.25,-138.83],[-181.82,-141.66],[-194.23,-144.64],[-204.41,-145.68],[-212.26,-149.14],[-219.74,-153.83],[-223.17,-155.31],[-226.56,-158.77],[-238.77,-170.05],[-249.23,-181.11],[-254.76,-183.3],[-258.31,-186.69],[-264.25,-188.28],[-300.49,-191.92],[-302.32,-168.42],[-296.82,-160.82],[-294.24,-158.38],[-292.98,-155.11],[-285.66,-148.1],[-276.38,-142.82],[-265.32,-138.06],[-246.95,-133.32],[-240.4,-128.3],[-237.74,-127.52],[-221.19,-100.6],[-216.28,-59.46],[-209.2,-52.24],[-202.64,-46.84],[-182.78,-40.15],[-164.47,-34.05],[-160.43,-30.32],[-157.78,-29.62],[-153.98,-26.05],[-144.11,5.23],[-133.5,18.16],[-113.66,5.27],[-97.97,-5.15],[-92.96,-7.35],[-89.5,-11.04],[-85.77,-12.55],[-81.49,-15.07]],"o":[[-72,-26.83],[-83.79,-30.41],[-92.47,-33.64],[-96.42,-36.38],[-102.46,-39.82],[-110.28,-46.57],[-116.13,-57.49],[-118.37,-72.89],[-119.51,-90.43],[-123.03,-108.13],[-128.17,-119.02],[-131.55,-123.03],[-137.31,-127.96],[-143.67,-132.08],[-149.19,-134.06],[-150.33,-135.44],[-151.93,-136.32],[-155.04,-136.68],[-157.89,-137.22],[-160.44,-138.44],[-171.12,-141.1],[-192.77,-143.26],[-199.85,-145.79],[-209.42,-147.52],[-217.21,-151.59],[-221.76,-155.71],[-225.38,-157.14],[-234.19,-165.32],[-246.93,-177.77],[-253.19,-183.81],[-257.73,-184.98],[-260.52,-187.68],[-279.08,-192.15],[-305.82,-178.37],[-297.88,-163.79],[-295.85,-158.67],[-292.91,-156.31],[-290.19,-151.96],[-280.36,-144.59],[-268.34,-139.48],[-254.38,-134.56],[-240.62,-129.79],[-239.17,-127.38],[-223.11,-117.32],[-218.02,-70.73],[-209.68,-52.58],[-204.29,-48.8],[-192.55,-41.67],[-169.56,-35.41],[-160.6,-31.76],[-159.12,-29.34],[-155.78,-28.03],[-142.83,-14.03],[-139.91,22.88],[-120.27,9.7],[-102.84,-1.66],[-94.09,-7.56],[-90.64,-8.92],[-87.09,-12.58],[-82.98,-14.17],[-75.88,-18.56]],"v":[[-68,-25],[-79.9,-29.24],[-91,-33],[-95.12,-35.46],[-99,-38],[-107.82,-44.18],[-114,-53],[-117.76,-67.67],[-119,-84],[-121.72,-102.45],[-127,-117],[-130.35,-121.72],[-135,-126],[-141.5,-130.8],[-149,-134],[-149.95,-134.97],[-151,-136],[-154,-136.57],[-157,-137],[-159.6,-138.04],[-162,-139],[-191,-143],[-196,-145],[-208,-147],[-214,-150],[-221,-155],[-224,-156],[-228,-160],[-244,-175],[-252,-183],[-256,-184],[-259,-187],[-267,-189],[-304,-183],[-300,-166],[-296,-159],[-294,-158],[-292,-154],[-284,-147],[-272,-141],[-262,-137],[-241,-130],[-240,-128],[-237,-127],[-219,-80],[-212,-55],[-206,-50],[-201,-46],[-174,-37],[-161,-32],[-160,-30],[-157,-29],[-153,-25],[-147,26],[-127,14],[-107,1],[-95,-7],[-92,-8],[-88,-12],[-85,-13],[-80,-16]],"c":true}],"h":1},{"t":37,"s":[{"i":[[-68.6,-24.02],[-76.22,-28.86],[-88.45,-33.1],[-99.63,-38.17],[-108.78,-45],[-114.08,-52.82],[-117.06,-60.94],[-118.76,-69.9],[-119.73,-79.59],[-120.82,-91.99],[-122.96,-104.58],[-126.4,-115.24],[-130.3,-121.69],[-134.54,-126.82],[-151.08,-136.33],[-180.41,-142.36],[-200.42,-145.99],[-213.68,-150.16],[-220.92,-154.39],[-225.61,-157.94],[-232.42,-163.61],[-239.66,-170.86],[-248.11,-178.69],[-258.49,-186.64],[-277.97,-191.64],[-302.1,-187.82],[-304.58,-176.67],[-300.45,-166.46],[-295.11,-158.47],[-286.68,-149.12],[-282.71,-146.52],[-279.42,-144.69],[-274.23,-142.1],[-269.02,-139.67],[-256.16,-135.88],[-240.17,-130.04],[-233.64,-123.85],[-229.16,-118.94],[-222.76,-104.69],[-220.05,-83.58],[-217.98,-69.26],[-215.26,-59.32],[-213.56,-57.36],[-213.34,-56.46],[-202.81,-47.49],[-180.75,-40.41],[-166.96,-35.14],[-158.15,-29.86],[-146.44,-14.52],[-146.18,14.48],[-144.58,25.53],[-140.73,22.46],[-139.04,21.62],[-137.51,21.32],[-135.65,19.79],[-133.74,17.48],[-130.97,15.9],[-127.87,14.56],[-110.11,3.26],[-84.91,-12.8],[-73.45,-20.06]],"o":[[-72.06,-27.49],[-84.41,-31.66],[-96.06,-36.36],[-105.99,-42.49],[-112.72,-50.33],[-116.25,-58.13],[-118.31,-66.82],[-119.47,-76.28],[-120.35,-87.51],[-122.13,-100.52],[-125.1,-111.94],[-129.03,-119.78],[-133.06,-125.21],[-142.38,-133.15],[-170.1,-140.93],[-195.33,-144.91],[-209.6,-148.62],[-219.11,-153.17],[-224.17,-156.77],[-229.85,-161.18],[-237.33,-168.45],[-244.87,-175.61],[-254.93,-184.2],[-268.42,-190.48],[-294.81,-190.31],[-305.11,-180.19],[-302.26,-169.8],[-297.76,-161.91],[-289.57,-152.07],[-283.75,-147.17],[-280.54,-145.28],[-275.98,-143.01],[-270.75,-140.43],[-262.07,-137.36],[-245.21,-132.22],[-235.31,-125.38],[-230.57,-120.63],[-224.48,-111.15],[-220.54,-90.9],[-218.6,-73.1],[-216.31,-62.37],[-213.64,-57.63],[-213.41,-56.78],[-209.19,-50.78],[-188.59,-42.3],[-170.38,-36.71],[-160.84,-31.71],[-149.36,-22.27],[-144.86,3.85],[-146.21,26.3],[-141.84,23.6],[-139.53,21.71],[-138.03,21.43],[-136.28,20.55],[-134.38,18.25],[-132.03,16.37],[-128.89,15],[-118.65,8.66],[-93.24,-7.47],[-75.4,-19.05],[-70.05,-22.54]],"v":[[-68,-26],[-80.32,-30.26],[-92.25,-34.73],[-102.81,-40.33],[-111,-48],[-115.16,-55.48],[-117.69,-63.88],[-119.11,-73.09],[-120,-83],[-121.48,-96.25],[-124.03,-108.26],[-128,-118],[-131.68,-123.45],[-136,-128],[-160.59,-138.63],[-190,-144],[-205.01,-147.3],[-217,-152],[-222.54,-155.58],[-227,-159],[-234.88,-166.03],[-242,-173],[-251.52,-181.45],[-262,-188],[-286.39,-190.97],[-304,-183],[-303.42,-173.23],[-299,-164],[-292.34,-155.27],[-285,-148],[-281.63,-145.9],[-278,-144],[-272.49,-141.26],[-267,-139],[-250.68,-134.05],[-237,-127],[-232.1,-122.24],[-228,-117],[-221.65,-97.79],[-219,-76],[-217.15,-65.82],[-214,-58],[-213.49,-57.07],[-213,-56],[-195.7,-44.89],[-174,-38],[-163.9,-33.43],[-156,-28],[-145.65,-5.34],[-148,26],[-143.21,24.57],[-140,22],[-138.53,21.52],[-137,21],[-135.02,19.02],[-133,17],[-129.93,15.45],[-127,14],[-101.67,-2.11],[-77,-18],[-71.75,-21.3]],"c":true}],"h":1},{"t":38,"s":[{"i":[[-68.63,-21.65],[-78.56,-30.55],[-96.3,-36.25],[-101.59,-39.53],[-102.69,-40.77],[-106.53,-43.6],[-110.27,-47.37],[-111.51,-49.32],[-112.88,-49.81],[-113.1,-50.6],[-112.88,-51.74],[-113.52,-52.32],[-114.88,-52.79],[-116.19,-55.57],[-117.68,-59.92],[-120.21,-73.44],[-120.88,-93.49],[-123.84,-107.43],[-127.94,-117.17],[-132.16,-123.58],[-138.25,-129.21],[-140.32,-130.52],[-140.79,-131.88],[-156.24,-138.53],[-183.11,-143.54],[-204.88,-147.4],[-219.6,-152.99],[-231.5,-162.07],[-240.76,-172.01],[-245.89,-176.41],[-249.15,-178.32],[-251.82,-180.78],[-254.13,-183.47],[-271.46,-190.37],[-301.45,-189.6],[-304.68,-177.47],[-301.24,-169.38],[-297.23,-161.78],[-292.61,-154.64],[-289.98,-152.39],[-287.73,-151.58],[-284.86,-149.13],[-282.06,-146.61],[-277.87,-144.18],[-272.93,-141.71],[-259.08,-137.07],[-243.02,-130.97],[-236.15,-125.9],[-233.54,-123.19],[-232.49,-121.68],[-231.12,-121.17],[-226.38,-113.11],[-222.82,-99.96],[-219.16,-67.3],[-198.21,-45.86],[-164.34,-36.04],[-146.16,2.62],[-131.6,17.11],[-112.91,4.79],[-89.34,-10.14],[-78.7,-17.9]],"o":[[-72.41,-28.68],[-90.51,-34.34],[-101.25,-39.15],[-102.31,-40.34],[-104.89,-42.42],[-109.21,-46.08],[-111.07,-49.16],[-112.41,-49.65],[-113.15,-50.23],[-112.96,-51.36],[-113.08,-52.18],[-114.42,-52.63],[-115.6,-54.11],[-117.23,-58.47],[-119.77,-66.95],[-120.77,-86.71],[-122.62,-103.59],[-126.5,-114.22],[-130.29,-121.22],[-136.15,-127.57],[-140.17,-130.08],[-140.63,-131.42],[-147.93,-136.01],[-173.82,-142.3],[-199.08,-146.16],[-215.14,-150.81],[-228.11,-158.82],[-237.82,-168.67],[-244.81,-175.75],[-248.05,-177.7],[-251,-179.8],[-253.38,-182.62],[-260.48,-187.33],[-291.94,-191.51],[-305.05,-180.27],[-302.77,-172.02],[-298.67,-164.46],[-294.2,-156.87],[-290.61,-152.6],[-288.54,-151.88],[-285.83,-150.07],[-282.98,-147.4],[-279.41,-145.08],[-274.63,-142.49],[-265.07,-138.83],[-248.05,-133.14],[-237.38,-126.8],[-234.23,-124.1],[-232.93,-121.85],[-231.59,-121.35],[-228.22,-117.13],[-223.68,-104.53],[-220.05,-83.22],[-208.46,-50.09],[-175.55,-38.69],[-142.39,-17.97],[-140.36,22.7],[-118.52,8.97],[-98.53,-4.42],[-80.27,-16.14],[-73.62,-21.19]],"v":[[-67,-26],[-84.53,-32.45],[-101,-39],[-101.95,-39.94],[-103,-41],[-107.87,-44.84],[-111,-49],[-111.96,-49.48],[-113,-50],[-113.03,-50.98],[-113,-52],[-113.97,-52.47],[-115,-53],[-116.71,-57.02],[-118,-61],[-120.49,-80.08],[-122,-100],[-125.17,-110.82],[-129,-119],[-134.15,-125.57],[-140,-130],[-140.48,-130.97],[-141,-132],[-165.03,-140.41],[-192,-145],[-210.01,-149.11],[-224,-156],[-234.66,-165.37],[-244,-175],[-246.97,-177.05],[-250,-179],[-252.6,-181.7],[-255,-184],[-281.7,-190.94],[-304,-183],[-303.72,-174.74],[-300,-167],[-295.71,-159.32],[-291,-153],[-289.26,-152.14],[-287,-151],[-283.92,-148.27],[-281,-146],[-276.25,-143.34],[-271,-141],[-253.57,-135.11],[-239,-128],[-235.19,-125],[-233,-122],[-232.04,-121.51],[-231,-121],[-225.03,-108.82],[-222,-95],[-214,-59],[-186,-42],[-157,-30],[-148,27],[-125,13],[-107,1],[-82,-15],[-77,-19]],"c":true}],"h":1},{"t":39,"s":[{"i":[[-67.53,-22.77],[-85.12,-33.04],[-109.33,-45],[-119.96,-66.79],[-122.38,-93.77],[-125.17,-108.49],[-127.67,-117.62],[-129.7,-119.96],[-130.59,-121.57],[-133.12,-124.44],[-136.23,-128.28],[-137.92,-129.45],[-139.54,-129.66],[-142.73,-132.23],[-146.6,-135.34],[-159.63,-140.05],[-179.44,-143.01],[-199,-146.03],[-217.19,-151.13],[-223.27,-155.11],[-225.26,-157.45],[-227.75,-159.08],[-230.32,-160.4],[-236.72,-166.51],[-244.25,-174.58],[-248.58,-178.1],[-251.18,-179.39],[-253.46,-181.39],[-255.36,-183.62],[-270.38,-189.94],[-297.14,-190.55],[-305.04,-181.13],[-303.2,-172.83],[-298.25,-162.58],[-290.77,-153.35],[-282.12,-146.67],[-272.57,-142.28],[-265.94,-139.94],[-261.39,-138.46],[-253.03,-135.72],[-242.45,-131.39],[-237.4,-126.69],[-232.21,-121.65],[-226.16,-111.72],[-222.79,-97.07],[-220.38,-77.84],[-215.95,-61.17],[-212.59,-57.07],[-212.33,-55.35],[-211.11,-54.52],[-209.47,-54.33],[-207.87,-51.55],[-202.73,-48.84],[-191.35,-44.37],[-161.3,-35.35],[-147.1,8.52],[-141.54,23.29],[-128.38,15.1],[-123.66,11.42],[-102.73,-1.57],[-82.11,-15.09]],"o":[[-75.45,-30.29],[-102.06,-40.39],[-118.27,-58.41],[-122.01,-84.47],[-124.58,-104.94],[-126.71,-114.83],[-129.4,-119.42],[-130.29,-121.03],[-132,-123.05],[-135.23,-127.05],[-137.4,-129.37],[-138.99,-129.59],[-141.43,-131.06],[-145.31,-134.37],[-153.41,-138.54],[-172.64,-142.28],[-192.41,-144.96],[-211.39,-149.11],[-222.64,-154.38],[-224.58,-156.64],[-226.84,-158.62],[-229.49,-159.97],[-234.09,-163.73],[-241.8,-171.94],[-247.74,-177.65],[-250.31,-178.97],[-252.78,-180.58],[-254.75,-182.91],[-261.31,-187.17],[-288.3,-191.63],[-304.44,-183.72],[-304.42,-175.69],[-300.37,-166.15],[-293.45,-156.18],[-285.09,-148.52],[-275.86,-143.55],[-267.49,-140.46],[-262.89,-138.94],[-257.05,-137.02],[-245.73,-132.9],[-239.3,-128.37],[-233.86,-123.34],[-228.02,-115.94],[-223.55,-102.29],[-221.15,-84.5],[-217.78,-66.17],[-212.67,-57.65],[-212.42,-55.93],[-211.62,-54.6],[-210.03,-54.38],[-208.18,-53.43],[-205.12,-49.82],[-196.92,-46.02],[-173.87,-38.85],[-143.86,-15.41],[-144.61,26.49],[-133.87,18.32],[-124.4,12.63],[-113.27,4.72],[-87.44,-11.08],[-72.73,-21.09]],"v":[[-66,-27],[-93.59,-36.72],[-114,-52],[-120.99,-75.63],[-124,-102],[-125.94,-111.66],[-129,-119],[-129.99,-120.5],[-131,-122],[-134.17,-125.74],[-137,-129],[-138.45,-129.52],[-140,-130],[-144.02,-133.3],[-148,-136],[-166.14,-141.17],[-186,-144],[-205.2,-147.57],[-222,-154],[-223.93,-155.88],[-226,-158],[-228.62,-159.52],[-231,-161],[-239.26,-169.23],[-247,-177],[-249.44,-178.54],[-252,-180],[-254.11,-182.15],[-256,-184],[-279.34,-190.79],[-302,-186],[-304.73,-178.41],[-302,-170],[-295.85,-159.38],[-288,-151],[-278.99,-145.11],[-269,-141],[-264.41,-139.44],[-260,-138],[-249.38,-134.31],[-241,-130],[-235.63,-125.01],[-231,-120],[-224.86,-107],[-222,-91],[-219.08,-72.01],[-213,-58],[-212.51,-56.5],[-212,-55],[-210.57,-54.45],[-209,-54],[-207,-51],[-201,-48],[-187,-43],[-154,-27],[-149,27],[-138,21],[-125,13],[-123,11],[-94,-7],[-76,-19]],"c":true}],"h":1},{"t":40,"s":[{"i":[[-65.64,-24.51],[-76.28,-31.18],[-91.99,-36.64],[-104.83,-43.13],[-114.01,-51.41],[-120.39,-66.75],[-122.2,-87.06],[-124.48,-104.02],[-128.24,-115.84],[-139.51,-131.15],[-160.34,-140.12],[-180.95,-144.08],[-199.07,-146.6],[-216.6,-151.66],[-231.09,-160.47],[-237.94,-167.11],[-241.76,-171.91],[-244.23,-173.71],[-246.45,-174.53],[-251.22,-179.03],[-257.51,-184.73],[-273.66,-190.53],[-297.97,-189.77],[-305.15,-178],[-299.04,-163.82],[-294.7,-158.13],[-288.98,-151.75],[-287.05,-150.59],[-285.46,-150.34],[-283.53,-148.61],[-281.59,-146.33],[-278.79,-145.12],[-275.01,-144.3],[-273.44,-143.49],[-272.26,-142.1],[-261.21,-138.77],[-244.59,-133.49],[-241.36,-130.59],[-240.37,-130.31],[-233.57,-123.71],[-227.21,-113.25],[-222.59,-94.2],[-219.78,-68.65],[-214.75,-59.08],[-210.45,-54.12],[-202.67,-49.27],[-190.76,-45.22],[-179,-41.63],[-167.14,-37.75],[-163.42,-35.48],[-162.29,-34.22],[-160.99,-33.31],[-159.5,-32.39],[-148.24,-17.37],[-148.38,15.37],[-146.11,26.44],[-140.7,23.11],[-120.28,9.78],[-91.95,-8.44],[-78.35,-17.07],[-71.96,-21.68]],"o":[[-70.79,-29.36],[-86.88,-34.82],[-101.08,-40.92],[-111.29,-48.38],[-119.04,-60.47],[-121.97,-80.05],[-123.61,-99.35],[-126.8,-112.26],[-134.08,-126.33],[-152.64,-138.04],[-174.91,-143.28],[-193.03,-145.74],[-211.06,-149.43],[-226.62,-157.18],[-236.56,-165.41],[-240.54,-170.37],[-243.51,-173.44],[-245.7,-174.25],[-249.22,-176.91],[-255.37,-182.93],[-265.18,-188.64],[-290.06,-191.1],[-305.38,-182.84],[-301.98,-168.49],[-296.46,-160.26],[-290.96,-153.88],[-287.57,-150.67],[-286,-150.42],[-284.24,-149.44],[-282.21,-147.05],[-280.04,-145.46],[-276.28,-144.54],[-273.81,-143.94],[-272.66,-142.57],[-267.42,-140.27],[-249.8,-135.37],[-241.68,-130.69],[-240.71,-130.4],[-236.47,-127.09],[-228.94,-116.79],[-223.45,-103.12],[-220.75,-76.97],[-216.03,-61.02],[-211.97,-55.63],[-206.29,-50.91],[-194.9,-46.42],[-183.18,-42.76],[-170.98,-39.13],[-163.77,-35.87],[-162.68,-34.66],[-161.49,-33.61],[-159.99,-32.69],[-151.3,-26.06],[-146.78,3.34],[-148,27.38],[-142.46,24.3],[-129.8,16],[-101.35,-2.44],[-80.62,-15.48],[-74.02,-20.17],[-68.31,-24.14]],"v":[[-65,-27],[-81.58,-33],[-97,-39],[-108.06,-45.75],[-116,-55],[-121.18,-73.4],[-123,-94],[-125.64,-108.14],[-130,-119],[-146.07,-134.59],[-169,-142],[-186.99,-144.91],[-205,-148],[-221.61,-154.42],[-235,-164],[-239.24,-168.74],[-243,-173],[-244.97,-173.98],[-247,-175],[-253.3,-180.98],[-260,-186],[-281.86,-190.81],[-302,-186],[-303.56,-173.24],[-297,-161],[-292.83,-156],[-288,-151],[-286.53,-150.51],[-285,-150],[-282.87,-147.83],[-281,-146],[-277.54,-144.83],[-274,-144],[-273.05,-143.03],[-272,-142],[-255.51,-137.07],[-242,-131],[-241.04,-130.5],[-240,-130],[-231.26,-120.25],[-226,-110],[-221.67,-85.58],[-217,-63],[-213.36,-57.36],[-209,-53],[-198.79,-47.85],[-187,-44],[-174.99,-40.38],[-164,-36],[-163.05,-35.07],[-162,-34],[-160.49,-33],[-159,-32],[-147.51,-7.02],[-150,28],[-144.28,25.37],[-139,22],[-110.81,3.67],[-83,-14],[-76.18,-18.62],[-70,-23]],"c":true}],"h":1},{"t":41,"s":[{"i":[[-66.1,-23.14],[-79.62,-33.01],[-99.97,-40.23],[-108.64,-46.71],[-113.14,-50.71],[-115.53,-54.34],[-117.42,-57.72],[-121.01,-68.47],[-122.42,-84.32],[-123.75,-95.07],[-125.46,-102.46],[-127.01,-110.41],[-128.88,-117.91],[-130.83,-120.97],[-132.61,-122.42],[-137.3,-128.6],[-144.94,-134.51],[-153.33,-138.43],[-161.71,-141.19],[-169.42,-143.13],[-175.97,-144.68],[-187.12,-145.99],[-200.78,-147.07],[-211.94,-150.12],[-222,-154.84],[-226.65,-157.61],[-229.81,-159.99],[-235.94,-165.13],[-242.83,-170.96],[-251.16,-178.82],[-261.34,-186.53],[-278.39,-191.26],[-298.86,-188.94],[-304.98,-181.1],[-303.35,-172.01],[-299.99,-165.24],[-295.83,-159.01],[-291.95,-154.92],[-286.96,-151.43],[-285.68,-150.49],[-285.18,-149.12],[-284.4,-148.9],[-283.25,-149.11],[-282.41,-147.24],[-276.22,-145.3],[-267.6,-140.9],[-250.52,-136.45],[-244.01,-131.68],[-235.49,-125.25],[-224.12,-92.98],[-217.84,-62.92],[-215.67,-59.9],[-200.27,-49.07],[-181.68,-42.66],[-164.61,-37.5],[-160.83,-34.65],[-148.34,0.61],[-142.59,24.34],[-117.42,7.67],[-88.31,-10.54],[-76.82,-18.82]],"o":[[-72.14,-30.89],[-93.54,-37.68],[-106.82,-45.36],[-111.8,-49.39],[-114.82,-53.23],[-116.83,-56.59],[-120.05,-63.55],[-122.2,-78.85],[-123.26,-92.59],[-124.85,-100],[-126.57,-107.71],[-128.17,-115.52],[-130.27,-120.5],[-132,-121.93],[-135.07,-126.09],[-142.23,-132.8],[-150.73,-137.33],[-158.82,-140.36],[-167.18,-142.53],[-173.81,-144.2],[-182.48,-145.7],[-196.27,-146.67],[-208.19,-148.7],[-218.85,-153.19],[-225.5,-156.87],[-228.81,-159.17],[-233.53,-163.15],[-240.59,-169.04],[-247.99,-175.8],[-257.84,-184.18],[-270.71,-190.29],[-292.46,-190.59],[-304.3,-183.84],[-304.5,-175.18],[-301.32,-167.49],[-297.24,-161],[-293.73,-156.45],[-288.57,-152.41],[-285.84,-150.93],[-285.35,-149.59],[-284.77,-148.85],[-283.64,-149.04],[-282.65,-148.84],[-279.54,-145.58],[-270.36,-142.94],[-257.82,-137.5],[-245.19,-133.56],[-238.68,-128.1],[-223.19,-109.21],[-220.18,-71.55],[-215.3,-60.27],[-210.11,-52.41],[-186.48,-44.5],[-171.73,-39.13],[-161.31,-34.34],[-143.84,-21.38],[-146.01,26.77],[-128.06,14.86],[-97.92,-4.82],[-78.18,-17.19],[-71.72,-22.13]],"v":[[-65,-28],[-86.58,-35.35],[-105,-44],[-110.22,-48.05],[-114,-52],[-116.18,-55.46],[-118,-59],[-121.6,-73.66],[-123,-90],[-124.3,-97.54],[-126,-105],[-127.59,-112.97],[-130,-120],[-131.41,-121.45],[-133,-123],[-139.76,-130.7],[-148,-136],[-156.08,-139.4],[-165,-142],[-171.61,-143.66],[-178,-145],[-191.7,-146.33],[-205,-148],[-215.39,-151.66],[-224,-156],[-227.73,-158.39],[-231,-161],[-238.27,-167.08],[-245,-173],[-254.5,-181.5],[-265,-188],[-285.42,-190.92],[-302,-186],[-304.74,-178.14],[-302,-169],[-298.62,-163.12],[-295,-158],[-290.26,-153.66],[-286,-151],[-285.52,-150.04],[-285,-149],[-284.02,-148.97],[-283,-149],[-282,-147],[-273,-144],[-265,-140],[-246,-134],[-243,-131],[-233,-122],[-221,-76],[-216,-61],[-215,-59],[-191,-46],[-177,-41],[-162,-35],[-160,-34],[-150,28],[-139,22],[-107,1],[-80,-16],[-75,-20]],"c":true}],"h":1},{"t":42,"s":[{"i":[[-65.39,-23.98],[-85.58,-35.33],[-114.5,-50.06],[-122.77,-73.25],[-124.79,-96.44],[-126.78,-107.91],[-128.18,-115.06],[-130.08,-118.67],[-132.41,-121.07],[-134.1,-124.23],[-135.32,-127.25],[-138.55,-130.12],[-144.12,-133.6],[-145.32,-134.52],[-145.8,-135.88],[-161.99,-142.38],[-190.95,-146.53],[-212.98,-151.02],[-229.14,-158.87],[-240.7,-168.94],[-252.24,-179.69],[-256.77,-182.67],[-257.65,-183.79],[-272.39,-189.96],[-297.51,-190.21],[-304.93,-175.68],[-294.95,-158.23],[-290.71,-153.82],[-287.32,-151.88],[-284.91,-150],[-283.53,-148.31],[-275.8,-144.73],[-263.87,-141.4],[-251.76,-136.61],[-241.59,-130.32],[-231.02,-118.88],[-225.16,-101.38],[-222.28,-81.51],[-217.88,-63.53],[-214.37,-59.05],[-213.36,-57.35],[-211.41,-55.98],[-208,-54.63],[-205.22,-52.57],[-203.02,-50.45],[-199.89,-49.28],[-196.07,-48.35],[-185.6,-45.16],[-171.99,-40.84],[-163.49,-36.6],[-157.56,-31.81],[-148.87,-14.85],[-150.38,16.34],[-147.4,26.81],[-138.4,21.18],[-127.39,14.33],[-116.81,7.29],[-106.78,1.45],[-95.44,-6.09],[-83.53,-13.68],[-76.74,-18.87]],"o":[[-74.08,-32.3],[-105.79,-44.21],[-121.62,-65.78],[-124.35,-88.58],[-126.44,-105.39],[-127.64,-112.75],[-129.37,-117.88],[-131.6,-120.26],[-133.69,-123.1],[-134.92,-126.3],[-136.74,-128.82],[-142.24,-132.51],[-145.17,-134.08],[-145.63,-135.42],[-153.01,-140.11],[-180.95,-145.59],[-206.66,-149.08],[-224.22,-155.91],[-236.83,-165.1],[-248.4,-176.24],[-256.44,-182.27],[-257.37,-183.43],[-263.63,-187.36],[-289.33,-191.39],[-306.21,-182.06],[-299.3,-163.76],[-291.8,-154.63],[-288.47,-152.45],[-285.39,-150.59],[-283.98,-148.86],[-279.61,-146.03],[-267.92,-142.42],[-255.71,-138.45],[-244.69,-132.54],[-234.19,-123.69],[-226.51,-107.72],[-223.09,-88.24],[-219.67,-69.15],[-214.69,-59.63],[-213.71,-57.92],[-212.41,-56.42],[-209.2,-55.09],[-205.96,-53.35],[-203.75,-51.13],[-201.11,-49.6],[-197.37,-48.65],[-190.36,-46.49],[-176.42,-42.34],[-165.71,-37.94],[-159.41,-33.53],[-150.42,-23.52],[-148.85,5.08],[-148.99,29.31],[-141.61,23.47],[-130.8,16.3],[-120.01,9.26],[-109.83,3.09],[-100.32,-3.81],[-87.16,-11.53],[-78.27,-17.14],[-70.96,-22.62]],"v":[[-64,-28],[-95.68,-39.77],[-119,-60],[-123.56,-80.92],[-126,-103],[-127.21,-110.33],[-129,-117],[-130.84,-119.46],[-133,-122],[-134.51,-125.27],[-136,-128],[-140.39,-131.31],[-145,-134],[-145.48,-134.97],[-146,-136],[-171.47,-143.98],[-200,-148],[-218.6,-153.46],[-233,-162],[-244.55,-172.59],[-256,-182],[-257.07,-183.05],[-258,-184],[-280.86,-190.68],[-302,-186],[-302.12,-169.72],[-293,-156],[-289.59,-153.13],[-286,-151],[-284.45,-149.43],[-283,-148],[-271.86,-143.58],[-260,-140],[-248.22,-134.58],[-239,-128],[-228.76,-113.3],[-224,-94],[-220.98,-75.33],[-215,-60],[-214.04,-58.48],[-213,-57],[-210.31,-55.53],[-207,-54],[-204.49,-51.85],[-202,-50],[-198.63,-48.96],[-195,-48],[-181.01,-43.75],[-168,-39],[-161.45,-35.07],[-156,-30],[-148.86,-4.89],[-151,28],[-146,26],[-135,19],[-124,12],[-113,5],[-105,0],[-91,-9],[-80,-16],[-75,-20]],"c":true}],"h":1},{"t":43,"s":[{"i":[[-69.88,-22.43],[-74.3,-33],[-92.69,-38.55],[-101.06,-42.51],[-106.53,-45.55],[-112.65,-51.37],[-119.68,-60.35],[-123.28,-73.04],[-124.44,-87.97],[-127,-106.1],[-133.07,-123.4],[-136.63,-127.95],[-137.63,-129.62],[-138.89,-130.48],[-140.52,-130.67],[-141.71,-131.89],[-142.58,-133.69],[-154.2,-140.28],[-174.67,-144.95],[-196.79,-148.04],[-218.12,-152.58],[-225.02,-155.96],[-228.3,-157.55],[-231.15,-159.87],[-234.37,-163.52],[-235.95,-164.38],[-237.62,-164.67],[-242.85,-169.77],[-249.92,-177.41],[-252.95,-179.4],[-254.55,-179.66],[-256.39,-181.33],[-258.21,-183.48],[-260.01,-184.43],[-261.61,-184.76],[-264.85,-186.62],[-269.71,-188.38],[-285.33,-191.14],[-303.83,-186.71],[-304.7,-175.89],[-300.64,-166.42],[-299.49,-164.68],[-298.12,-164.18],[-298.23,-162.51],[-296.25,-161.33],[-293.76,-156.66],[-289.36,-153.98],[-286.14,-150.72],[-252.61,-138.7],[-237.57,-127.56],[-234.57,-123.79],[-225.66,-103.27],[-222.41,-73.01],[-211.09,-56.48],[-174.43,-44.81],[-162,-35.77],[-149.76,2.16],[-139.38,21.81],[-127.7,14.54],[-116.78,7.3],[-94.27,-7.1]],"o":[[-68.21,-30.98],[-86.54,-36.79],[-99.05,-41.48],[-104.8,-44.54],[-109.81,-48.69],[-117.58,-57.19],[-122.56,-68.31],[-124.22,-82.88],[-125.71,-99.4],[-130.67,-118.1],[-136.31,-127.39],[-137.29,-129.07],[-138.38,-130.39],[-139.96,-130.62],[-141.42,-131.29],[-142.29,-133.08],[-148.11,-137.81],[-167.48,-143.85],[-188.98,-147],[-211.36,-150.83],[-223.87,-155.43],[-227.24,-157.02],[-229.96,-158.61],[-233.35,-162.32],[-235.39,-164.3],[-237.06,-164.57],[-240.39,-167.06],[-247.61,-174.94],[-252.42,-179.32],[-254.01,-179.57],[-255.78,-180.59],[-257.6,-182.77],[-259.46,-184.3],[-261.09,-184.66],[-263.49,-185.93],[-267.95,-187.84],[-277.67,-190.53],[-298.41,-189.23],[-305.63,-179.44],[-302.21,-169.38],[-299.93,-164.84],[-298.59,-164.35],[-297.69,-163.54],[-297.86,-161.7],[-294.51,-159.01],[-291.09,-154.14],[-286.8,-152.14],[-271.75,-141.64],[-241.51,-130.39],[-235.39,-124.01],[-227.9,-114.49],[-222.67,-82.97],[-216.11,-60.13],[-194.95,-46.68],[-162.97,-36.23],[-144.14,-21.98],[-145.4,26.92],[-130.49,16.1],[-119.96,9.22],[-103.36,-0.86],[-77.67,-17.66]],"v":[[-63,-28],[-80.42,-34.89],[-98,-41],[-102.93,-43.52],[-107,-46],[-115.12,-54.28],[-121,-64],[-123.75,-77.96],[-125,-93],[-128.83,-112.1],[-136,-127],[-136.96,-128.51],[-138,-130],[-139.43,-130.55],[-141,-131],[-142,-132.48],[-143,-134],[-160.84,-142.07],[-182,-146],[-204.08,-149.44],[-223,-155],[-226.13,-156.49],[-229,-158],[-232.25,-161.1],[-235,-164],[-236.5,-164.47],[-238,-165],[-245.23,-172.35],[-252,-179],[-253.48,-179.49],[-255,-180],[-256.99,-182.05],[-259,-184],[-260.55,-184.54],[-262,-185],[-266.4,-187.23],[-272,-189],[-291.87,-190.19],[-305,-182],[-303.45,-172.64],[-300,-165],[-299.04,-164.52],[-298,-164],[-298,-162],[-296,-161],[-292,-155],[-288,-153],[-285,-150],[-245,-133],[-236,-125],[-234,-123],[-224,-92],[-218,-64],[-207,-54],[-164,-37],[-161,-35],[-152,29],[-135,19],[-124,12],[-113,5],[-85,-13]],"c":true}],"h":1},{"t":44,"s":[{"i":[[-151.31,-0.01],[-145.53,26.15],[-137.34,20.51],[-131.92,17.1],[-127.94,14.71],[-124.52,12.31],[-120.99,10.45],[-119.68,9.49],[-119.19,8.12],[-117.16,7.01],[-114,5.61],[-106.08,0.47],[-95.37,-6.48],[-91.68,-8.51],[-91.19,-9.88],[-88.84,-11.02],[-85.16,-12.26],[-82.71,-14],[-80.22,-16.16],[-77.48,-17.94],[-75.69,-18.69],[-74.68,-19.51],[-74.19,-20.88],[-69.87,-22.75],[-65.85,-30.02],[-101.83,-42.15],[-111.16,-49.26],[-124.13,-75.45],[-128.48,-112.12],[-134.54,-123.38],[-135.31,-126.2],[-142.75,-133.62],[-155.93,-140.92],[-196.28,-147.75],[-219.5,-154.25],[-227.39,-157.02],[-231.68,-160.99],[-235.04,-162.33],[-237.19,-165.34],[-241.68,-167.88],[-245.48,-172.66],[-252.43,-177.54],[-263.21,-186.52],[-302.33,-192.76],[-301.88,-169.45],[-290.09,-153.84],[-285.38,-150.25],[-278.94,-147.27],[-271.24,-144.68],[-267.51,-142.19],[-252.79,-138.46],[-244.68,-132.25],[-239.07,-129.12],[-237.67,-125.96],[-234.59,-123.86],[-233.43,-120.73],[-226.63,-104.42],[-222.29,-72.68],[-203.09,-51.82],[-175.21,-42.98],[-163.7,-38.29]],"o":[[-148.61,27.9],[-139.9,22.46],[-133.44,18],[-129.17,15.46],[-125.78,13.09],[-122.13,10.99],[-119.83,9.93],[-119.36,8.58],[-118.15,7.46],[-115.08,6.09],[-109.65,2.96],[-98.94,-4.25],[-91.83,-8.07],[-91.36,-9.41],[-90.01,-10.65],[-86.41,-11.83],[-83.35,-13.42],[-81.15,-15.37],[-78.14,-17.59],[-76.26,-18.49],[-74.83,-19.07],[-74.36,-20.41],[-72.22,-22.14],[-58.42,-30.38],[-85.75,-37.29],[-109.81,-48.66],[-122.69,-59.42],[-127.16,-102.31],[-132.57,-122.43],[-135.69,-124.91],[-138.29,-129.65],[-150.11,-138.15],[-177.11,-147.14],[-215.97,-152.41],[-225.25,-157.12],[-230.52,-158.93],[-233.87,-162.66],[-236.83,-163.58],[-239.58,-167.29],[-244.55,-170.31],[-249.38,-176.1],[-257.36,-182.14],[-278.24,-192.4],[-306.39,-176.4],[-295.17,-159.08],[-285.67,-151.85],[-282.63,-148.47],[-273.73,-145.01],[-268.63,-143.89],[-260.17,-139.51],[-245.72,-134.24],[-241.53,-129.91],[-237.24,-127.2],[-236.42,-124.17],[-233.42,-122.16],[-228.58,-112.54],[-223.41,-85.8],[-214.24,-56.32],[-183.17,-45.52],[-166.82,-38.95],[-144.44,-23.71]],"v":[[-152,29],[-142.71,24.31],[-135,19],[-130.54,16.28],[-127,14],[-123.33,11.65],[-120,10],[-119.52,9.04],[-119,8],[-116.12,6.55],[-113,5],[-102.51,-1.89],[-92,-8],[-91.52,-8.96],[-91,-10],[-87.62,-11.43],[-84,-13],[-81.93,-14.68],[-79,-17],[-76.87,-18.21],[-75,-19],[-74.52,-19.96],[-74,-21],[-68,-24],[-74,-33],[-109,-48],[-112,-50],[-126,-92],[-132,-121],[-135,-124],[-136,-127],[-145,-135],[-163,-143],[-210,-151],[-223,-156],[-229,-158],[-233,-162],[-236,-163],[-238,-166],[-243,-169],[-247,-174],[-254,-179],[-267,-188],[-305,-182],[-299,-165],[-286,-152],[-285,-150],[-276,-146],[-269,-144],[-267,-142],[-247,-135],[-243,-131],[-238,-128],[-237,-125],[-234,-123],[-233,-120],[-225,-95],[-219,-66],[-191,-48],[-169,-40],[-162,-37]],"c":true}],"h":1},{"t":45,"s":[{"i":[[-66.63,-23.8],[-70.2,-33.04],[-82.94,-36.59],[-91.18,-40.3],[-98.05,-43.16],[-103.41,-45.45],[-107.03,-47.27],[-111.6,-50.7],[-116.19,-54.78],[-118.51,-58.32],[-120.43,-61.73],[-124.01,-71.71],[-126.41,-86.89],[-128.22,-102.66],[-131.2,-117.45],[-133.92,-123.31],[-135.77,-124.69],[-136.42,-126.01],[-136.65,-127.6],[-142.87,-134.04],[-152.96,-140.4],[-174.49,-146.65],[-203.24,-149.88],[-215.38,-152.82],[-220.45,-154.35],[-225.15,-156.25],[-229.77,-158.24],[-231.35,-159.55],[-231.78,-160.83],[-232.99,-161.43],[-234.61,-161.69],[-235.55,-163.58],[-238.2,-164.31],[-247.98,-174.19],[-253.15,-177.31],[-259.07,-183.35],[-279.61,-192.18],[-303.52,-187.97],[-300.57,-165.64],[-291.52,-154.9],[-285.51,-151.92],[-281.34,-148.66],[-265.37,-142.49],[-250.51,-137.51],[-247.43,-134.32],[-244.79,-133.67],[-227.9,-111.51],[-222.78,-70.21],[-216.68,-61.76],[-212.84,-59.29],[-207.81,-54.92],[-196.87,-50.23],[-173.02,-44.37],[-162.04,-36],[-155.67,-30.01],[-153.73,7.9],[-122.1,10.67],[-99.72,-3.59],[-93.01,-8.69],[-86.03,-11.7],[-80.57,-15.93]],"o":[[-65.73,-31.49],[-78.8,-35.58],[-88.65,-39.22],[-95.88,-42.27],[-101.89,-44.82],[-105.98,-46.68],[-109.75,-49.31],[-114.82,-53.43],[-117.8,-57.2],[-119.83,-60.58],[-122.81,-67.02],[-125.81,-81.65],[-127.63,-97.44],[-130.01,-112.67],[-133.28,-122.71],[-135.16,-124.3],[-136.34,-125.46],[-136.58,-127.08],[-139.89,-131.34],[-149.41,-138.57],[-165.12,-145.21],[-193.55,-148.99],[-213.65,-152.4],[-218.77,-153.8],[-223.51,-155.63],[-228.27,-157.55],[-231.21,-159.13],[-231.63,-160.4],[-232.44,-161.33],[-234.08,-161.61],[-235.46,-162.36],[-236.75,-164.7],[-242.86,-168.3],[-251.77,-177.71],[-256.71,-180.2],[-269.25,-189.08],[-295.81,-190.34],[-306.19,-177.19],[-296.19,-161.07],[-287.78,-152.08],[-282.47,-150.06],[-272.77,-144.43],[-254.83,-138.37],[-247.59,-135.75],[-246.09,-133.32],[-233.18,-123.85],[-222.88,-82.92],[-216.32,-63.27],[-214.97,-59.84],[-209.2,-56.74],[-202.4,-52.16],[-183.88,-46.09],[-163.69,-38.56],[-157.29,-31.34],[-145.76,-12.1],[-137.16,21.17],[-103.35,-1.34],[-94.16,-7.19],[-88.97,-11.32],[-82.36,-14.05],[-72.82,-21.23]],"v":[[-62,-29],[-74.5,-34.31],[-86,-38],[-93.53,-41.29],[-100,-44],[-104.69,-46.07],[-108,-48],[-113.21,-52.07],[-117,-56],[-119.17,-59.45],[-121,-63],[-124.91,-76.68],[-127,-92],[-129.12,-107.67],[-133,-122],[-134.54,-123.8],[-136,-125],[-136.5,-126.54],[-137,-128],[-146.14,-136.31],[-157,-142],[-184.02,-147.82],[-212,-152],[-217.08,-153.31],[-222,-155],[-226.71,-156.9],[-231,-159],[-231.49,-159.97],[-232,-161],[-233.54,-161.52],[-235,-162],[-236,-164],[-239,-165],[-251,-177],[-254,-178],[-262,-185],[-290,-191],[-305,-182],[-299,-164],[-289,-153],[-284,-151],[-280,-148],[-259,-140],[-248,-136],[-247,-134],[-244,-133],[-225,-95],[-217,-64],[-216,-61],[-211,-58],[-206,-54],[-193,-49],[-166,-40],[-160,-34],[-154,-27],[-153,30],[-107,1],[-96,-6],[-91,-10],[-84,-13],[-79,-17]],"c":true}],"h":1},{"t":46,"s":[{"i":[[-154.07,9.63],[-150.99,29.25],[-146.88,27.4],[-145.68,26.49],[-145.18,25.12],[-144.4,24.9],[-143.25,25.12],[-142.68,24.49],[-142.19,23.12],[-140.03,21.94],[-136.91,20.59],[-118.64,8.6],[-93.58,-7.9],[-82.42,-14.83],[-80.26,-15.75],[-79.04,-16.7],[-77.42,-17.59],[-76.04,-18.7],[-74.42,-19.59],[-68.84,-23.51],[-61.56,-28.31],[-63.63,-30.79],[-70.77,-34.14],[-78.01,-36.71],[-84.51,-38.49],[-100.95,-44.73],[-117.79,-56.59],[-124.71,-71.36],[-126.33,-88.12],[-128.93,-105.74],[-134.06,-121.66],[-140.12,-130.59],[-148.38,-137.37],[-151.62,-139.6],[-152.65,-140.83],[-158.99,-143.3],[-168.83,-145.3],[-187.71,-148.63],[-212,-152.09],[-224.51,-156.41],[-231.98,-160.58],[-235.42,-163.02],[-237.38,-164.51],[-243.8,-169.92],[-252.51,-177.47],[-255.8,-179.66],[-256.6,-180.71],[-265.88,-186.52],[-283.84,-191.63],[-307.48,-178.47],[-290.63,-154.76],[-278.54,-147.77],[-267.94,-144.1],[-249.51,-137.41],[-245.75,-134.62],[-228.98,-113.1],[-224.37,-77.85],[-205.35,-54.17],[-163.05,-43.21],[-156.24,-31.38],[-154.41,-27.9]],"o":[[-152.55,29.8],[-148.15,28.05],[-145.84,26.93],[-145.35,25.59],[-144.77,24.85],[-143.64,25.04],[-142.84,24.93],[-142.36,23.59],[-141.07,22.39],[-137.95,21.04],[-126.85,14.06],[-102,-2.37],[-83.28,-14.46],[-80.9,-15.48],[-79.58,-16.4],[-77.96,-17.29],[-76.58,-18.4],[-74.96,-19.29],[-72.06,-21.86],[-63.59,-26.74],[-61.99,-29.97],[-68.01,-32.88],[-75.51,-35.97],[-82.51,-37.97],[-93.81,-41.68],[-112.94,-52.18],[-123.55,-66.3],[-126.1,-82.27],[-127.65,-99.67],[-132.14,-116.74],[-137.68,-127.91],[-145.47,-135.33],[-151.3,-139.19],[-152.3,-140.42],[-155.83,-142.4],[-165.5,-144.75],[-179.21,-147.58],[-204.1,-150.88],[-221.52,-155.12],[-229.74,-159.14],[-234.73,-162.51],[-236.74,-164.02],[-240.8,-167.19],[-249.66,-175.06],[-255.5,-179.31],[-256.35,-180.36],[-260.71,-183.7],[-277.45,-190.48],[-307.91,-189.16],[-295.84,-159.07],[-281.97,-149.59],[-271.07,-144.86],[-260.18,-141.2],[-246.35,-134.38],[-234.28,-125.15],[-224.31,-87.86],[-217.41,-59.58],[-182.41,-46.4],[-157.85,-31.67],[-155.24,-29.81],[-147,-11.5]],"v":[[-154,30],[-149.57,28.65],[-146,27],[-145.52,26.04],[-145,25],[-144.02,24.97],[-143,25],[-142.52,24.04],[-142,23],[-138.99,21.49],[-136,20],[-110.32,3.12],[-84,-14],[-81.66,-15.15],[-80,-16],[-78.5,-16.99],[-77,-18],[-75.5,-18.99],[-74,-20],[-66.21,-25.13],[-62,-30],[-65.82,-31.83],[-73,-35],[-80.26,-37.34],[-86,-39],[-106.95,-48.46],[-121,-62],[-125.41,-76.81],[-127,-94],[-130.53,-111.24],[-136,-125],[-142.8,-132.96],[-151,-139],[-151.96,-140.01],[-153,-141],[-162.24,-144.02],[-172,-146],[-195.9,-149.75],[-218,-154],[-227.12,-157.77],[-234,-162],[-236.08,-163.52],[-238,-165],[-246.73,-172.49],[-255,-179],[-256.07,-180.01],[-257,-181],[-271.66,-188.5],[-290,-191],[-300,-166],[-286,-152],[-274,-146],[-265,-143],[-247,-135],[-245,-134],[-226,-97],[-221,-69],[-196,-51],[-158,-32],[-156,-31],[-154,-27]],"c":true}],"h":1},{"t":47,"s":[{"i":[[-154.06,-0.83],[-152.08,30.31],[-149.68,28.39],[-147,26.74],[-144.01,24.65],[-140.37,22.51],[-136.47,20.45],[-135.04,19.3],[-133.43,18.41],[-132.36,17.54],[-131.54,17.35],[-125.75,13.44],[-117.56,8.15],[-114.68,6.48],[-114.2,5.12],[-110.62,3.16],[-105.93,0.76],[-98.19,-5.11],[-87.83,-11.56],[-81.73,-15.27],[-77.39,-17.62],[-76.04,-18.7],[-74.42,-19.59],[-68.72,-23.64],[-60.74,-28.64],[-64.23,-31.73],[-82.22,-38.33],[-118.31,-52.68],[-126.77,-86.18],[-130.35,-110.24],[-136.55,-125.81],[-143.04,-134.39],[-190.11,-148.4],[-227.07,-156.46],[-233.57,-161.68],[-236.23,-162.42],[-248.22,-173.32],[-254.3,-178.46],[-257.07,-179.32],[-260.24,-182.84],[-264.22,-184.51],[-268.43,-186.83],[-274.55,-189.66],[-302.91,-190.05],[-303.36,-173.63],[-296.05,-160.05],[-290.68,-156.25],[-285.87,-151.51],[-273.63,-147.13],[-262.65,-142.06],[-251.62,-138.55],[-247.85,-135.81],[-245.82,-134.64],[-230.55,-114.44],[-226.45,-90.43],[-223.05,-77.07],[-220.65,-67.39],[-204.95,-54.97],[-186.74,-49.6],[-169.59,-43.53],[-167.18,-41.7]],"o":[[-152.99,30.61],[-150.42,29.2],[-148,27.42],[-145.01,25.36],[-141.88,23.28],[-137.66,21.09],[-135.58,19.6],[-133.97,18.71],[-132.59,17.61],[-131.84,17.4],[-128.47,15.36],[-120.3,9.84],[-114.83,6.92],[-114.36,5.58],[-112.4,4.03],[-107.38,1.53],[-101.53,-2.83],[-91.34,-9.48],[-83.28,-14.46],[-78.78,-16.85],[-76.58,-18.4],[-74.96,-19.29],[-72.1,-21.82],[-63.05,-27.05],[-60.99,-29.95],[-73.11,-35.8],[-103.83,-45.87],[-127.17,-76.53],[-128.77,-102.17],[-133.44,-121.01],[-141.01,-131.62],[-160.22,-148.53],[-219.43,-154.56],[-233.41,-160.24],[-234.86,-162.65],[-242.62,-167.23],[-253.8,-177.62],[-255.86,-179.65],[-259.52,-181.1],[-262.92,-184.6],[-267.56,-186.59],[-273.63,-188.54],[-286.95,-192.53],[-306.34,-178.48],[-298.83,-164.73],[-292.78,-156.78],[-287.16,-153.63],[-280.22,-148.19],[-265.29,-143.98],[-256.19,-139.47],[-249.16,-136.2],[-246.32,-134.35],[-236.24,-127.08],[-226.66,-98.53],[-224.44,-80.12],[-220.91,-70.8],[-214.37,-58.29],[-191.55,-50.52],[-178.72,-46.89],[-167.15,-41.18],[-144.77,-28.38]],"v":[[-154,30],[-151.25,29.75],[-149,28],[-146.01,26.05],[-143,24],[-139.02,21.8],[-136,20],[-134.5,19.01],[-133,18],[-132.1,17.47],[-131,17],[-123.02,11.64],[-115,7],[-114.52,6.03],[-114,5],[-109,2.35],[-105,0],[-94.77,-7.29],[-84,-14],[-80.26,-16.06],[-77,-18],[-75.5,-18.99],[-74,-20],[-65.89,-25.34],[-61,-30],[-67,-33],[-87,-40],[-124,-68],[-128,-96],[-132,-116],[-139,-129],[-145,-136],[-212,-153],[-233,-160],[-234,-162],[-237,-163],[-253,-177],[-255,-179],[-258,-180],[-262,-184],[-265,-185],[-272,-188],[-276,-190],[-305,-183],[-301,-169],[-294,-158],[-289,-155],[-285,-151],[-268,-145],[-260,-141],[-250,-137],[-247,-135],[-245,-134],[-228,-104],[-225,-83],[-222,-74],[-219,-65],[-196,-52],[-182,-48],[-168,-42],[-166,-41]],"c":true}],"h":1},{"t":48,"s":[{"i":[[-71.19,-21.39],[-84.11,-39.5],[-119.03,-55.18],[-127.16,-77.79],[-129.1,-96.05],[-132.79,-115.77],[-140.95,-132.5],[-145.93,-136.44],[-147.52,-136.66],[-148.69,-137.9],[-149.57,-139.72],[-152.01,-141.04],[-155.79,-142.48],[-159.66,-144.11],[-163.71,-145.6],[-170.86,-147.44],[-179.79,-148.55],[-202.13,-151.35],[-227.42,-156.96],[-242.29,-167.07],[-253.26,-177.24],[-261.19,-182.99],[-268.31,-187.35],[-284.04,-191.04],[-303.81,-187.02],[-305.24,-177.82],[-301.67,-168.55],[-295.73,-160.67],[-288.44,-154.65],[-286.68,-153.49],[-286.19,-152.12],[-282.86,-150.42],[-277.55,-148.64],[-260.53,-142.11],[-241.91,-131.28],[-237.41,-124.37],[-236.2,-123.33],[-231.61,-114.16],[-227.93,-99.31],[-226.07,-87.73],[-224.66,-78.33],[-222.66,-72.49],[-219.93,-68.39],[-218.19,-65.48],[-217.28,-63.29],[-212.2,-59.3],[-202.93,-54.77],[-176.9,-48.42],[-163.98,-38.94],[-157.53,-33.01],[-155.65,6.67],[-151.51,28.8],[-143.27,25.22],[-139.85,22.82],[-136.85,20.82],[-133.85,18.82],[-132.08,17.7],[-120.19,9.34],[-114.4,5.24],[-106.86,1.52],[-98.65,-4.29]],"o":[[-70.6,-36.16],[-108.33,-49.01],[-126.11,-72.02],[-128.65,-89.81],[-131.06,-109.02],[-137.73,-127.51],[-145.42,-136.36],[-146.98,-136.59],[-148.41,-137.29],[-149.27,-139.12],[-150.87,-140.55],[-154.48,-142.01],[-158.31,-143.56],[-162.36,-145.13],[-167.97,-146.92],[-176.77,-148.26],[-192.67,-150.36],[-219.5,-154.65],[-238.41,-163.7],[-249.72,-173.84],[-258.78,-181.32],[-265.96,-186.01],[-275.89,-190.28],[-298,-189.41],[-305.65,-180.8],[-303.24,-171.7],[-298.26,-163.34],[-290.82,-156.32],[-286.83,-153.92],[-286.36,-152.58],[-284.58,-151.1],[-279.34,-149.19],[-268.08,-144.72],[-247.44,-135.39],[-237.81,-124.7],[-236.61,-123.68],[-233.4,-118.76],[-228.88,-104.44],[-226.48,-91.07],[-225.16,-81.36],[-223.44,-74.04],[-220.9,-69.67],[-218.55,-66.33],[-217.55,-63.95],[-215.24,-61.17],[-206.05,-56.11],[-190.28,-49.72],[-165.72,-41.61],[-159.36,-34.41],[-147.9,-14.07],[-152.8,32.16],[-147.12,26.49],[-141.16,23.2],[-138.16,21.2],[-135.16,19.2],[-132.19,17.22],[-125.62,13.52],[-114.66,6.85],[-110.85,3.1],[-102.01,-2.43],[-83.6,-14.03]],"v":[[-60,-30],[-96.22,-44.25],[-124,-67],[-127.91,-83.8],[-130,-102],[-135.26,-121.64],[-145,-136],[-146.45,-136.52],[-148,-137],[-148.98,-138.51],[-150,-140],[-153.24,-141.53],[-157,-143],[-161.01,-144.62],[-165,-146],[-173.81,-147.85],[-183,-149],[-210.82,-153],[-234,-161],[-246.01,-170.45],[-257,-180],[-263.57,-184.5],[-270,-188],[-291.02,-190.23],[-305,-183],[-304.24,-174.76],[-300,-166],[-293.27,-158.49],[-287,-154],[-286.52,-153.03],[-286,-152],[-281.1,-149.81],[-276,-148],[-253.99,-138.75],[-238,-125],[-237.01,-124.02],[-236,-123],[-230.25,-109.3],[-227,-94],[-225.61,-84.55],[-224,-76],[-221.78,-71.08],[-219,-67],[-217.87,-64.71],[-217,-63],[-209.13,-57.71],[-201,-54],[-168,-43],[-162,-37],[-156,-30],[-155,30],[-150,28],[-142,24],[-139,22],[-136,20],[-133,18],[-131,17],[-115,7],[-114,5],[-105,0],[-96,-6]],"c":true}],"h":1},{"t":49,"s":[{"i":[[-157.66,5.15],[-144.45,25.26],[-129.54,15.95],[-118.82,8.89],[-110.15,3.02],[-104.33,-0.52],[-100.43,-2.59],[-99.04,-3.7],[-97.42,-4.59],[-96.04,-5.7],[-94.42,-6.59],[-93.04,-7.7],[-91.42,-8.59],[-90.04,-9.7],[-88.42,-10.59],[-87.37,-11.48],[-86.59,-11.65],[-81.32,-14.98],[-74.38,-19.85],[-65.94,-25.08],[-59.77,-29.86],[-64.22,-33.74],[-79.03,-38.96],[-93.11,-43.87],[-108.45,-50.47],[-114.93,-55.16],[-118.16,-58.05],[-127.41,-76.74],[-131.42,-110.87],[-140.96,-131.73],[-155.08,-142.37],[-185.82,-150.18],[-222.23,-154.14],[-235.7,-161.74],[-239.69,-165.01],[-243.81,-168.08],[-247.78,-171],[-254.26,-176.67],[-262.08,-183.41],[-279.01,-190.11],[-303.24,-188.89],[-303.5,-170.73],[-290.08,-155.42],[-282.88,-150.97],[-274.01,-147.17],[-264.72,-143.95],[-255.06,-140.77],[-250.89,-138.06],[-249.41,-136.28],[-244.72,-132.89],[-240.15,-127.94],[-238.41,-125.09],[-237.29,-123.48],[-234.54,-118.75],[-231.78,-112.5],[-228.86,-102.06],[-226.86,-90.55],[-225.18,-80.76],[-223.28,-72.38],[-213.03,-60.4],[-170.35,-49.04]],"o":[[-149.68,28.29],[-134.38,19.09],[-121.74,10.89],[-113.02,4.96],[-105.86,0.27],[-101.61,-1.95],[-99.58,-3.4],[-97.96,-4.29],[-96.58,-5.4],[-94.96,-6.29],[-93.58,-7.4],[-91.96,-8.29],[-90.58,-9.4],[-88.96,-10.29],[-87.57,-11.41],[-86.87,-11.6],[-83.38,-13.55],[-76.82,-18.13],[-68.8,-23.4],[-61.42,-28.31],[-60.21,-32.01],[-73.63,-37.22],[-87.39,-41.89],[-103.64,-48.16],[-113.6,-54.14],[-117.21,-57.12],[-125.2,-66.06],[-130.52,-99.15],[-137.67,-126.79],[-149.67,-139.52],[-173.46,-149.36],[-210.21,-152.57],[-234.36,-160.74],[-238.36,-163.88],[-242.43,-167.08],[-246.49,-170.04],[-251.72,-174.22],[-259.43,-181.27],[-269.89,-187.66],[-295.69,-190.72],[-306.71,-177.27],[-295.19,-159.8],[-285.63,-152.38],[-277.07,-148.36],[-267.94,-144.81],[-258.28,-141.93],[-251.43,-138.67],[-249.88,-136.86],[-246.65,-134.42],[-241.47,-129.65],[-238.76,-125.6],[-237.67,-124.03],[-235.65,-120.75],[-232.61,-114.62],[-229.68,-105.79],[-227.45,-94.45],[-225.54,-83.57],[-224.05,-75.17],[-219.79,-65.89],[-193.29,-51.28],[-145.99,-18.35]],"v":[[-155,31],[-139.41,22.18],[-125,13],[-115.92,6.93],[-107,1],[-102.97,-1.24],[-100,-3],[-98.5,-4],[-97,-5],[-95.5,-5.99],[-94,-7],[-92.5,-7.99],[-91,-9],[-89.5,-9.99],[-88,-11],[-87.12,-11.54],[-86,-12],[-79.07,-16.55],[-71,-22],[-63.68,-26.69],[-60,-31],[-68.93,-35.48],[-82,-40],[-98.38,-46.01],[-112,-53],[-116.07,-56.14],[-119,-59],[-128.96,-87.95],[-135,-120],[-145.31,-135.62],[-162,-145],[-198.02,-151.37],[-233,-160],[-237.03,-162.81],[-241,-166],[-245.15,-169.06],[-249,-172],[-256.85,-178.97],[-265,-185],[-287.35,-190.41],[-305,-183],[-299.35,-165.27],[-288,-154],[-279.98,-149.66],[-271,-146],[-261.5,-142.94],[-252,-139],[-250.38,-137.46],[-249,-136],[-243.1,-131.27],[-239,-126],[-238.04,-124.56],[-237,-123],[-233.57,-116.69],[-231,-110],[-228.16,-98.26],[-226,-86],[-224.61,-77.97],[-222,-70],[-210,-59],[-160,-36]],"c":true}],"h":1},{"t":50,"s":[{"i":[[-157.91,2.85],[-153.6,31.15],[-151.06,28.58],[-147.04,26.59],[-142.57,24.55],[-141.04,23.3],[-139.43,22.41],[-138.04,21.3],[-136.43,20.41],[-135.04,19.3],[-133.43,18.41],[-132.36,17.54],[-131.54,17.35],[-123.42,11.96],[-111.38,3.8],[-104.33,-0.52],[-100.43,-2.59],[-99.04,-3.7],[-97.42,-4.59],[-96.04,-5.7],[-94.42,-6.59],[-93.04,-7.7],[-91.42,-8.59],[-90.04,-9.7],[-88.42,-10.59],[-87.37,-11.48],[-86.59,-11.65],[-81.38,-14.94],[-74.48,-19.79],[-59.65,-28.64],[-63,-32.45],[-75.2,-38.68],[-88.05,-43.25],[-98.69,-46],[-104.95,-49.91],[-112.16,-52.64],[-122.3,-62.85],[-130.18,-90.2],[-133.8,-114.22],[-142.65,-134.05],[-162.86,-146.95],[-181.02,-150.5],[-217.78,-151.99],[-241.87,-166.5],[-246.32,-170.48],[-249.18,-171.33],[-254.6,-177.18],[-262.11,-181.82],[-265.31,-184.63],[-311.49,-195.35],[-300.18,-167.7],[-287.3,-154.05],[-256.29,-141.85],[-248.47,-135.35],[-245.8,-134.73],[-243.69,-131.88],[-240.83,-129.14],[-229.53,-94.91],[-222.71,-70.48],[-200.51,-55.4],[-165.51,-44.76]],"o":[[-154.57,31.61],[-151.84,29.64],[-148.75,27.32],[-143.95,25.21],[-141.58,23.6],[-139.97,22.71],[-138.58,21.6],[-136.97,20.71],[-135.58,19.6],[-133.97,18.71],[-132.59,17.61],[-131.84,17.4],[-127.23,14.56],[-115.49,6.58],[-105.86,0.27],[-101.61,-1.95],[-99.58,-3.4],[-97.96,-4.29],[-96.58,-5.4],[-94.96,-6.29],[-93.58,-7.4],[-91.96,-8.29],[-90.58,-9.4],[-88.96,-10.29],[-87.57,-11.41],[-86.87,-11.6],[-83.39,-13.55],[-76.92,-18.06],[-66.47,-24.88],[-60.17,-32.16],[-70.22,-36.18],[-86.56,-42.63],[-95.51,-45.89],[-103.05,-47.89],[-109.54,-52.35],[-117.92,-56.9],[-130,-77.09],[-133.04,-108.71],[-138.99,-127.87],[-154.94,-143.13],[-176.12,-149.92],[-200.07,-152.88],[-237.4,-162.31],[-245.76,-169.61],[-247.8,-171.61],[-252.62,-174.15],[-259.39,-180.82],[-264.6,-183.37],[-279.09,-191.99],[-303.03,-170.1],[-293.05,-157.38],[-268.3,-145.77],[-248.55,-136.7],[-247.07,-134.3],[-244.18,-133.25],[-242.21,-130],[-229.69,-113.82],[-223.16,-74.27],[-215.14,-59.51],[-177.65,-48.01],[-147.19,-17.29]],"v":[[-156,31],[-152.72,30.4],[-150,28],[-145.5,25.9],[-142,24],[-140.5,23.01],[-139,22],[-137.5,21.01],[-136,20],[-134.5,19.01],[-133,18],[-132.1,17.47],[-131,17],[-119.46,9.27],[-107,1],[-102.97,-1.24],[-100,-3],[-98.5,-4],[-97,-5],[-95.5,-5.99],[-94,-7],[-92.5,-7.99],[-91,-9],[-89.5,-9.99],[-88,-11],[-87.12,-11.54],[-86,-12],[-79.15,-16.5],[-71,-22],[-60,-31],[-66,-34],[-79,-40],[-93,-45],[-101,-47],[-107,-51],[-114,-54],[-124,-66],[-132,-102],[-136,-120],[-148,-138],[-172,-149],[-185,-151],[-233,-160],[-245,-169],[-247,-171],[-250,-172],[-257,-179],[-264,-183],[-266,-185],[-304,-173],[-299,-166],[-278,-150],[-249,-137],[-248,-135],[-245,-134],[-243,-131],[-240,-128],[-224,-77],[-221,-68],[-190,-52],[-159,-35]],"c":true}],"h":1},{"t":51,"s":[{"i":[[-159.93,6.87],[-139.76,22.3],[-115.9,6.7],[-99.56,-3.92],[-87.61,-11.37],[-83.68,-13.51],[-83.19,-14.88],[-82.39,-15.09],[-81.26,-14.88],[-80.68,-15.51],[-80.18,-16.88],[-79.4,-17.1],[-78.25,-16.89],[-77.68,-17.51],[-77.19,-18.88],[-74.12,-20.46],[-69.54,-22.48],[-68.04,-23.7],[-66.42,-24.59],[-65.36,-25.44],[-64.49,-25.66],[-59.25,-30.6],[-64.06,-34.54],[-70.62,-37.66],[-75.57,-39.5],[-82.5,-41.93],[-88.78,-44.19],[-93.66,-45.73],[-97.81,-46.54],[-106.19,-50.19],[-114.65,-55.89],[-119.1,-59.89],[-121.5,-62.31],[-128.96,-78.48],[-131.81,-105.56],[-135.81,-119.68],[-139.98,-128.93],[-143.78,-133.68],[-149.5,-139.9],[-153.79,-141.32],[-157.18,-144.61],[-212.58,-149.04],[-241.98,-165.73],[-264.71,-186.13],[-303.47,-190.27],[-300.17,-167.98],[-297.6,-162.79],[-292.49,-158.67],[-290.37,-156.25],[-278.48,-150.62],[-257.99,-143.03],[-250.23,-136.95],[-244.1,-132.66],[-241.61,-129.79],[-231.52,-108.14],[-225.68,-73.88],[-214.66,-62.43],[-193.62,-53.87],[-175.7,-48.98],[-170.81,-45.47],[-160.61,-37.72]],"o":[[-147.55,27.2],[-123.93,12.05],[-103.51,-1.24],[-91.61,-8.99],[-83.83,-13.07],[-83.36,-14.41],[-82.77,-15.15],[-81.64,-14.96],[-80.84,-15.07],[-80.35,-16.41],[-79.77,-17.15],[-78.64,-16.96],[-77.83,-17.07],[-77.36,-18.42],[-75.85,-19.72],[-70.97,-21.84],[-68.58,-23.4],[-66.96,-24.29],[-65.62,-25.37],[-64.8,-25.59],[-59.97,-28.83],[-61.29,-33.46],[-68.84,-36.91],[-73.99,-38.96],[-80.11,-41.08],[-86.83,-43.48],[-92.25,-45.46],[-96.44,-46.27],[-102.86,-48.49],[-112.08,-53.89],[-118.1,-58.98],[-120.8,-61.55],[-127.06,-69.95],[-131.33,-96.28],[-134.57,-116.21],[-138.52,-126.04],[-142.62,-131.69],[-146.78,-136.94],[-152.12,-141.83],[-156.52,-142.86],[-180.53,-155.72],[-238.44,-162.83],[-255.17,-175.62],[-289.45,-191.91],[-306.1,-174.33],[-297.35,-164.1],[-295.41,-159.93],[-290.68,-157.85],[-284.8,-152.51],[-265.98,-145.57],[-250.79,-138.66],[-247.09,-134.52],[-242.36,-130.04],[-234.06,-119.99],[-227.12,-86.96],[-217.85,-65.71],[-201.96,-55.8],[-180.88,-49.63],[-171.41,-46.68],[-164.83,-42.01],[-148.09,-15.09]],"v":[[-156,32],[-131.84,17.18],[-107,1],[-95.59,-6.46],[-84,-13],[-83.52,-13.96],[-83,-15],[-82.02,-15.03],[-81,-15],[-80.52,-15.96],[-80,-17],[-79.02,-17.03],[-78,-17],[-77.52,-17.96],[-77,-19],[-72.55,-21.15],[-69,-23],[-67.5,-23.99],[-66,-25],[-65.08,-25.52],[-64,-26],[-60.27,-32.03],[-67,-36],[-72.31,-38.31],[-77,-40],[-84.66,-42.71],[-91,-45],[-95.05,-46],[-99,-47],[-109.14,-52.04],[-117,-58],[-119.95,-60.72],[-122,-63],[-130.15,-87.38],[-134,-114],[-137.16,-122.86],[-141,-130],[-145,-135],[-151,-141],[-155,-142],[-158,-145],[-235,-161],[-245,-168],[-277,-189],[-305,-181],[-298,-165],[-297,-162],[-291,-158],[-290,-156],[-272,-148],[-253,-140],[-249,-136],[-243,-131],[-241,-129],[-229,-96],[-221,-69],[-210,-60],[-185,-51],[-172,-47],[-170,-45],[-158,-33]],"c":true}],"h":1},{"t":52,"s":[{"i":[[-159.45,0.23],[-154.66,31.91],[-151.82,29.46],[-149.11,28.11],[-146.76,27.34],[-145.68,26.49],[-145.19,25.12],[-144.4,24.91],[-143.26,25.12],[-142.68,24.49],[-142.18,23.12],[-140.51,23.23],[-139.37,21.25],[-137.51,21.23],[-136.37,19.25],[-134.51,19.23],[-133.38,17.25],[-126.1,14.06],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.82,0.21],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.07,-13.65],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.39,-18.76],[-70.08,-21.96],[-66.85,-24.18],[-58.55,-29.38],[-65.37,-35.56],[-88.42,-44.92],[-109.46,-51.57],[-120.6,-60.65],[-131.87,-94.11],[-134.29,-113.47],[-141.97,-130.55],[-151.09,-140.85],[-164.17,-147.57],[-215.91,-150.53],[-242.87,-166.64],[-255.87,-177.02],[-280.47,-193.14],[-306.1,-181.07],[-293.93,-159.4],[-262.8,-146.36],[-242.65,-131.01],[-230.24,-98.46],[-225.31,-74.74],[-217.52,-66.16],[-214.88,-63.6],[-192.62,-55.39],[-179.64,-49.66],[-172.96,-48.11],[-168.37,-44.04],[-163.4,-40.65]],"o":[[-155.75,32.19],[-152.69,30.55],[-149.98,28.43],[-147.5,27.56],[-145.83,26.93],[-145.36,25.59],[-144.77,24.85],[-143.64,25.04],[-142.84,24.93],[-142.35,23.59],[-141.54,22.69],[-139.68,22.85],[-138.54,20.69],[-136.68,20.85],[-135.54,18.69],[-133.67,18.85],[-130.69,15.52],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.08,2.21],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-86.76,-11.46],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-74.94,-20.3],[-68.16,-23.8],[-62.94,-27.93],[-59.16,-32.94],[-81.2,-42.42],[-102.24,-49.88],[-115.76,-57.6],[-130.64,-74.69],[-134.45,-109.74],[-137.22,-123.93],[-149.46,-138.81],[-160.11,-145.81],[-191.75,-155.75],[-240.14,-163.71],[-251.01,-172.77],[-267.53,-185.43],[-305.03,-187.83],[-300.17,-165.64],[-277.35,-147.95],[-247.37,-135.85],[-232.5,-114.31],[-225.94,-80.59],[-221.41,-68.42],[-215.27,-64.44],[-205.24,-56.99],[-181.35,-51.42],[-175.41,-47.95],[-169.6,-46.21],[-164.88,-41.38],[-147.55,-21.96]],"v":[[-157,31],[-153.68,31.23],[-151,29],[-148.3,27.83],[-146,27],[-145.52,26.04],[-145,25],[-144.02,24.97],[-143,25],[-142.52,24.04],[-142,23],[-140,23],[-139,21],[-137,21],[-136,19],[-134,19],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-69,-23],[-66,-25],[-59,-32],[-71,-38],[-97,-48],[-112,-54],[-123,-64],[-134,-107],[-135,-116],[-146,-135],[-155,-143],[-169,-149],[-237,-162],[-246,-169],[-260,-180],[-295,-190],[-303,-173],[-289,-156],[-252,-139],[-239,-125],[-227,-85],[-223,-71],[-216,-65],[-214,-63],[-183,-52],[-178,-49],[-171,-47],[-167,-43],[-162,-39]],"c":true}],"h":1},{"t":53,"s":[{"i":[[-161.49,4.06],[-152.27,30.34],[-146.02,26.29],[-131.62,17],[-113.58,5.22],[-99.65,-3.86],[-87.5,-11.42],[-83.68,-13.51],[-83.19,-14.88],[-82.39,-15.09],[-81.26,-14.88],[-80.68,-15.51],[-80.18,-16.88],[-79.4,-17.1],[-78.25,-16.89],[-77.68,-17.51],[-77.19,-18.88],[-74.13,-20.45],[-69.57,-22.46],[-68.04,-23.7],[-66.42,-24.59],[-65.04,-25.7],[-63.42,-26.59],[-62.36,-27.44],[-61.49,-27.66],[-58.1,-31.76],[-65.33,-36.19],[-78.86,-42.39],[-90.58,-46.06],[-102.19,-50.1],[-110.08,-53.12],[-112.7,-55.27],[-115.28,-56.49],[-119.48,-59.95],[-122.11,-63.83],[-123.65,-65.64],[-124.7,-66.51],[-130.79,-82.68],[-134.39,-110.91],[-145.65,-136.62],[-170.14,-150.1],[-201.47,-154.1],[-230.26,-158.27],[-239.21,-163.35],[-242.17,-165.44],[-252.85,-173.43],[-259.54,-178.56],[-262.15,-180.18],[-267.7,-184.83],[-289.56,-191.54],[-304.15,-172.43],[-292.37,-159.25],[-278.28,-150.99],[-257.48,-143.37],[-252.85,-139.81],[-240.06,-127.63],[-232.52,-106.75],[-229.23,-89.91],[-219.97,-65.95],[-197.76,-56.83],[-167.38,-47.56]],"o":[[-154.51,31.44],[-148.03,27.76],[-137.57,20.89],[-119.62,9.16],[-103.65,-1.14],[-91.57,-9],[-83.83,-13.07],[-83.36,-14.41],[-82.77,-15.15],[-81.64,-14.96],[-80.84,-15.07],[-80.35,-16.41],[-79.77,-17.15],[-78.64,-16.96],[-77.83,-17.07],[-77.36,-18.42],[-75.85,-19.73],[-70.99,-21.82],[-68.58,-23.4],[-66.96,-24.29],[-65.58,-25.4],[-63.96,-26.29],[-62.62,-27.37],[-61.79,-27.59],[-57.94,-30.16],[-61.79,-34.77],[-74.82,-40.86],[-86.74,-44.99],[-98.89,-49.04],[-107.78,-52.14],[-111.81,-54.78],[-114.44,-56.13],[-118.18,-58.54],[-121.45,-62.6],[-123.3,-65.39],[-124.35,-66.2],[-129.1,-73.72],[-133.44,-101.27],[-140.33,-129.32],[-160.55,-147.01],[-191.1,-153.46],[-221.05,-156.5],[-238.13,-162.62],[-241.23,-164.76],[-247.47,-168.98],[-257.31,-177.07],[-260.84,-179.8],[-265.08,-182.99],[-276.48,-189.3],[-310.31,-184.46],[-295.14,-161.54],[-283.44,-153.27],[-266.41,-146.11],[-254.16,-140.2],[-246.46,-133.69],[-233.69,-113.83],[-229.96,-95.4],[-224.89,-72.59],[-204.63,-58.33],[-179.38,-50.99],[-148.26,-18.9]],"v":[[-157,32],[-150.15,29.05],[-144,25],[-125.62,13.08],[-107,1],[-95.61,-6.43],[-84,-13],[-83.52,-13.96],[-83,-15],[-82.02,-15.03],[-81,-15],[-80.52,-15.96],[-80,-17],[-79.02,-17.03],[-78,-17],[-77.52,-17.96],[-77,-19],[-72.56,-21.14],[-69,-23],[-67.5,-23.99],[-66,-25],[-64.5,-25.99],[-63,-27],[-62.08,-27.52],[-61,-28],[-59.95,-33.26],[-69,-38],[-82.8,-43.69],[-96,-48],[-104.98,-51.12],[-111,-54],[-113.57,-55.7],[-116,-57],[-120.46,-61.28],[-123,-65],[-124,-65.92],[-125,-67],[-132.12,-91.98],[-137,-119],[-153.1,-141.81],[-182,-152],[-211.26,-155.3],[-237,-162],[-240.22,-164.05],[-243,-166],[-256,-176],[-260,-179],[-263,-181],[-270,-186],[-297,-189],[-298,-165],[-289,-157],[-271,-148],[-255,-141],[-252,-139],[-237,-121],[-231,-100],[-228,-85],[-210,-61],[-192,-55],[-161,-38]],"c":true}],"h":1},{"t":54,"s":[{"i":[[-294.31,-189.17],[-295.32,-188.95],[-295.83,-188.97],[-296.34,-189.02],[-296.84,-189.03],[-301.04,-187.76],[-304.29,-184.16],[-305.02,-179.29],[-303.8,-173.82],[-299.33,-165.5],[-291.52,-158.46],[-282.22,-153.4],[-273.27,-149.65],[-264.91,-146.34],[-257.75,-142.8],[-252.37,-139.11],[-241.5,-128.18],[-232.9,-108.2],[-229.45,-92.21],[-227.15,-80.96],[-225.09,-75.54],[-223.5,-71.72],[-219.19,-67.07],[-212.72,-63.89],[-199.96,-58.29],[-183.47,-53.35],[-175.09,-49.75],[-170.52,-47.5],[-165.2,-42.46],[-159.07,-34.9],[-155.61,-16.2],[-159.08,10.04],[-158.72,26.98],[-155.54,32.34],[-149.71,29.01],[-145.09,25.7],[-117.96,8.16],[-83.44,-14.44],[-65.85,-25.15],[-57.87,-30.42],[-59.88,-33.51],[-68.24,-38.74],[-77.33,-42.43],[-85.22,-44.41],[-104.1,-50.97],[-124.49,-64.75],[-131.37,-81.75],[-133.13,-97.47],[-136.71,-115.8],[-143.92,-132.38],[-150.63,-140.11],[-156.35,-144.62],[-184.54,-153.05],[-226.8,-156.49],[-242.15,-165.09],[-246.55,-168.94],[-251.43,-172.4],[-256.41,-175.79],[-264.58,-181.99],[-275.64,-188.03],[-286.57,-189.79]],"o":[[-295.16,-188.96],[-295.65,-188.95],[-296.17,-189],[-296.67,-189.03],[-299.31,-188.58],[-303.53,-185.55],[-305.03,-181.03],[-304.4,-175.69],[-301.44,-168.44],[-294.37,-160.51],[-285.45,-154.9],[-276.06,-150.73],[-267.69,-147.46],[-259.82,-143.99],[-254.03,-140.36],[-245.55,-133.58],[-235.18,-115.49],[-230.12,-96.23],[-227.96,-84.58],[-225.58,-76.92],[-224.05,-72.93],[-221.33,-68.62],[-214.88,-64.7],[-205.48,-60.12],[-188.96,-54.91],[-176.83,-50.5],[-171.94,-48.25],[-167.66,-44.76],[-160.9,-37.53],[-155.31,-24.72],[-157.49,1.18],[-158.95,23.06],[-157.01,31.62],[-151.41,30.16],[-146.55,26.78],[-129.74,15.89],[-94.81,-7],[-68.92,-23.69],[-60.32,-28.51],[-58.01,-32.14],[-65,-36.81],[-74.23,-41.48],[-82.83,-43.9],[-95.6,-47.85],[-118.54,-59.43],[-130.31,-76.77],[-132.79,-92.11],[-135,-109.36],[-141.17,-127.31],[-148.95,-138.3],[-154.33,-143.27],[-170.64,-152.05],[-212.62,-155.27],[-240.63,-163.87],[-245.11,-167.63],[-249.73,-171.26],[-254.77,-174.67],[-261.26,-179.47],[-271.77,-186.27],[-283.16,-189.7],[-292.14,-189.52]],"v":[[-295,-189],[-295.49,-188.95],[-296,-188.99],[-296.51,-189.03],[-297,-189],[-302.29,-186.65],[-304.66,-182.6],[-304.71,-177.49],[-303,-172],[-296.85,-163],[-288.48,-156.68],[-279,-152],[-270.48,-148.55],[-262,-145],[-255.89,-141.58],[-251,-138],[-238.34,-121.84],[-231,-100],[-228.71,-88.4],[-226,-78],[-224.57,-74.23],[-223,-71],[-217.03,-65.89],[-211,-63],[-194.46,-56.6],[-178,-51],[-173.52,-49],[-170,-47],[-163.05,-39.99],[-158,-32],[-156.55,-7.51],[-159,18],[-157.86,29.3],[-153,31],[-148.13,27.9],[-144,25],[-106.39,0.58],[-70,-23],[-63.09,-26.83],[-58,-32],[-62.44,-35.16],[-71,-40],[-80.08,-43.17],[-87,-45],[-111.32,-55.2],[-128,-72],[-132.08,-86.93],[-134,-103],[-138.94,-121.56],[-147,-136],[-152.48,-141.69],[-159,-146],[-198.58,-154.16],[-239,-163],[-243.63,-166.36],[-248,-170],[-253.1,-173.53],[-258,-177],[-268.18,-184.13],[-280,-189],[-289.35,-189.65]],"c":true}],"h":1},{"t":55,"s":[{"i":[[-294.3,-189.17],[-301.22,-187.37],[-304.57,-183.65],[-304.51,-175.65],[-300.69,-168.94],[-297.7,-164.68],[-295.61,-162.24],[-291.54,-159.11],[-287.97,-156.56],[-284.13,-154.42],[-280.27,-152.58],[-271.79,-149.21],[-260.4,-145.03],[-256.79,-142.78],[-256.03,-142.03],[-254.25,-140.46],[-251.82,-138.67],[-248.33,-135.7],[-245.56,-132.24],[-244.49,-130.68],[-243.12,-130.18],[-243.23,-128.51],[-241.24,-127.41],[-236.96,-118.52],[-231.95,-103.25],[-230.24,-89.45],[-221.59,-69.64],[-188.74,-56.63],[-158.78,-39.36],[-157.33,-4.66],[-161.3,38.95],[-150.85,29.82],[-139.16,22.15],[-126.76,14.69],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-88.85,-10.18],[-83.08,-14.06],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-57.86,-28.46],[-64.75,-37],[-115.28,-51.93],[-133.9,-106.44],[-143.95,-130.94],[-155.98,-145.1],[-186.25,-154.05],[-226.03,-156.88],[-243.18,-166.14],[-259.55,-177.99],[-267.33,-183.59],[-280.39,-189.5]],"o":[[-298.93,-188.05],[-304.04,-185.18],[-305.41,-178.43],[-302.15,-170.91],[-298.39,-165.81],[-296.31,-162.89],[-292.81,-160.08],[-289.12,-157.35],[-285.5,-155.13],[-281.52,-153.15],[-275.59,-150.44],[-264.2,-146.5],[-257.03,-143.02],[-256.29,-142.29],[-255.09,-141.12],[-252.62,-139.23],[-249.55,-136.83],[-246.33,-133.4],[-244.93,-130.84],[-243.59,-130.35],[-242.69,-129.54],[-242.84,-127.65],[-239.05,-123.64],[-233.93,-110.58],[-229.94,-94.22],[-226.6,-76.42],[-204.27,-58.36],[-166.8,-46.11],[-155.79,-18.6],[-158.82,12.38],[-152.16,30.2],[-145.93,25.1],[-133.35,18.2],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.16,-9.8],[-85.82,-13.09],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-70.61,-22.96],[-58.07,-33.82],[-90.45,-49.34],[-135.28,-81.91],[-141.69,-127.59],[-149.32,-138.95],[-172.8,-153.2],[-212.42,-156],[-240.22,-163.5],[-253.28,-172.79],[-266.6,-182.37],[-272.06,-186.51],[-289.35,-190.47]],"v":[[-295,-189],[-302.63,-186.28],[-305,-181],[-303.33,-173.28],[-300,-168],[-297,-163.79],[-294,-161],[-290.33,-158.23],[-287,-156],[-282.83,-153.78],[-279,-152],[-267.99,-147.85],[-257,-143],[-256.54,-142.53],[-256,-142],[-253.43,-139.84],[-251,-138],[-247.33,-134.55],[-245,-131],[-244.04,-130.52],[-243,-130],[-243,-128],[-241,-127],[-236,-116],[-231,-99],[-229,-85],[-216,-66],[-177,-51],[-157,-27],[-158,3],[-153,31],[-150,29],[-136,20],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-88,-11],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-58,-32],[-71,-40],[-126,-68],[-140,-123],[-146,-134],[-162,-148],[-199,-155],[-237,-162],[-246,-168],[-266,-182],[-268,-184],[-285,-190]],"c":true}],"h":1},{"t":56,"s":[{"i":[[-294.23,-189.18],[-301.22,-187.39],[-304.59,-183.64],[-304.67,-177.43],[-302.33,-172.65],[-301.61,-170.63],[-301.41,-168.61],[-297.31,-163.92],[-290.21,-158.75],[-284.58,-155.35],[-277.75,-151.74],[-273.7,-150.27],[-269.97,-149.43],[-259.03,-144.02],[-246.69,-134.02],[-240.01,-123.47],[-235,-112.37],[-232.78,-103.39],[-231.67,-94.74],[-229.32,-85.56],[-225.95,-75.99],[-224.56,-74.36],[-224.34,-73.46],[-208.96,-62.18],[-178.54,-53.89],[-166.97,-45.14],[-161.17,-38.69],[-160.82,1.18],[-158.93,31.21],[-154.52,31.43],[-135.62,19.48],[-119.91,9.87],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-88.85,-10.18],[-83.08,-14.06],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-57.99,-28.31],[-75.21,-42.92],[-106.99,-52.95],[-114.95,-57.96],[-123.57,-64.67],[-133.07,-109.01],[-153.32,-142.71],[-163.88,-148.54],[-182.99,-154.07],[-215.64,-156.5],[-240.76,-162.9],[-246.15,-167.18],[-249.15,-169.18],[-252.78,-172.01],[-263.02,-180.01],[-279.89,-189.33]],"o":[[-298.92,-188.07],[-304.05,-185.17],[-305.26,-179.36],[-303.21,-174.08],[-301.65,-171.32],[-301.48,-169.27],[-299.71,-166.05],[-292.56,-160.28],[-286.95,-156.73],[-279.98,-152.85],[-274.96,-150.56],[-271.2,-149.71],[-263.94,-146.76],[-250.41,-137.65],[-242.01,-127.03],[-236.5,-116.13],[-233.19,-106.27],[-232.01,-97.63],[-230.34,-89.32],[-227.12,-78.9],[-224.64,-74.63],[-224.41,-73.78],[-218.69,-65.73],[-188.89,-56.26],[-169.39,-47.05],[-162.86,-40.97],[-153.23,-20.37],[-159.8,23.27],[-156.27,33.47],[-142.17,24.42],[-124.83,12.62],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.16,-9.8],[-85.82,-13.09],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-70.7,-22.91],[-58.01,-36.62],[-93.98,-49.49],[-113.92,-56.95],[-118.73,-61.58],[-137.44,-83.73],[-145.17,-134.74],[-162.2,-147.85],[-174.95,-152.46],[-203.94,-156.24],[-232.04,-160.46],[-244.84,-166.8],[-247.84,-168.8],[-251.51,-171.45],[-259.04,-177.11],[-273.09,-186.05],[-289.7,-190.41]],"v":[[-295,-189],[-302.63,-186.28],[-305,-181],[-303.94,-175.76],[-302,-172],[-301.54,-169.95],[-301,-168],[-294.94,-162.1],[-289,-158],[-282.28,-154.1],[-276,-151],[-272.45,-149.99],[-269,-149],[-254.72,-140.83],[-244,-130],[-238.26,-119.8],[-234,-109],[-232.4,-100.51],[-231,-92],[-228.22,-82.23],[-225,-75],[-224.49,-74.07],[-224,-73],[-198.92,-59.22],[-172,-49],[-164.92,-43.05],[-160,-36],[-160,19],[-158,32],[-152,30],[-127,14],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-88,-11],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-58,-32],[-84,-46],[-114,-57],[-115,-58],[-126,-68],[-142,-128],[-159,-146],[-168,-150],[-192,-155],[-226,-159],[-244,-166],[-247,-168],[-250,-170],[-254,-173],[-268,-183],[-286,-190]],"c":true}],"h":1},{"t":57,"s":[{"i":[[-277.18,-193.17],[-301.22,-187.4],[-304.59,-183.63],[-303.21,-171.76],[-294.52,-161.43],[-288.35,-157.12],[-279.54,-153.13],[-270.03,-149.34],[-258.83,-144.75],[-256.36,-142.59],[-255.37,-142.31],[-244.63,-131.43],[-235.23,-110.74],[-231.99,-97.06],[-230.69,-89.37],[-228.68,-83.32],[-226.46,-78.9],[-225.61,-76.63],[-225.41,-74.6],[-220.83,-69.7],[-212.27,-64.89],[-206.38,-62.58],[-200.86,-60.58],[-194.21,-58.52],[-186.7,-56.02],[-179.78,-53.58],[-173,-50.95],[-171.36,-49.57],[-170.44,-49.33],[-164.01,-43.17],[-158.52,-31.27],[-158.1,-12.21],[-161.27,12.24],[-160.38,23.68],[-158.49,31.62],[-154.29,31.3],[-134.18,18.56],[-119.73,9.7],[-113.16,5.32],[-106.71,0.14],[-102.19,-1.22],[-97.21,-5.56],[-78.59,-16.77],[-57.02,-30.74],[-62.1,-36.14],[-64.63,-38.75],[-66.49,-38.77],[-67.58,-40.77],[-70.6,-41.45],[-74.05,-43.63],[-96.28,-50.56],[-112.66,-57.87],[-118.76,-61.06],[-124.61,-66.22],[-134.86,-115.47],[-146.39,-135.17],[-156.26,-145.26],[-168.1,-150.89],[-190.45,-155.24],[-230.98,-158.59],[-248.52,-169.28]],"o":[[-298.92,-188.08],[-304.05,-185.17],[-305.69,-176.54],[-297.62,-164.2],[-291.33,-158.8],[-282.46,-154.29],[-274.12,-150.71],[-262.39,-146.36],[-256.68,-142.69],[-255.71,-142.4],[-249.02,-137.06],[-237.74,-118.27],[-232.39,-99.62],[-231.13,-91.93],[-229.45,-85.11],[-227.19,-80.21],[-225.66,-77.33],[-225.49,-75.26],[-223.45,-71.75],[-215.24,-66.27],[-208.19,-63.29],[-202.71,-61.22],[-196.61,-59.26],[-189.26,-56.9],[-182.28,-54.35],[-175.13,-51.88],[-171.64,-49.66],[-170.76,-49.41],[-166.75,-46.54],[-159.9,-35.54],[-157.21,-20.58],[-160.12,4.2],[-160.89,20.37],[-159.18,29.31],[-156.24,33.37],[-142.83,24.8],[-124.86,12.64],[-116.54,6.65],[-108.24,2.31],[-103.79,-1.8],[-98.66,-3.54],[-86.55,-12.51],[-66.68,-24.5],[-56.99,-32.3],[-64.32,-37.15],[-65.46,-39.31],[-67.35,-39.16],[-69.34,-41.74],[-73.19,-42.47],[-85.57,-48.15],[-110.78,-56.28],[-117.54,-60.98],[-122.64,-63.99],[-138.32,-83.83],[-145.79,-133.29],[-147.26,-136.35],[-162.61,-149.29],[-180.46,-154.4],[-215.65,-157.05],[-245.8,-166.49],[-262.48,-178.94]],"v":[[-295,-189],[-302.64,-186.28],[-305,-181],[-300.41,-167.98],[-294,-161],[-285.4,-155.7],[-277,-152],[-266.21,-147.85],[-257,-143],[-256.04,-142.5],[-255,-142],[-241.18,-124.85],[-233,-102],[-231.56,-94.49],[-230,-87],[-227.94,-81.76],[-226,-78],[-225.55,-75.95],[-225,-74],[-218.04,-67.98],[-210,-64],[-204.54,-61.9],[-199,-60],[-191.74,-57.71],[-184,-55],[-177.46,-52.73],[-172,-50],[-171.06,-49.49],[-170,-49],[-161.95,-39.36],[-158,-27],[-159.11,-4.01],[-161,18],[-159.78,26.49],[-158,32],[-152,30],[-127,14],[-119,9],[-111,4],[-105,-1],[-101,-2],[-95,-7],[-69,-23],[-57,-32],[-64,-37],[-65,-39],[-67,-39],[-68,-41],[-72,-42],[-75,-44],[-105,-54],[-116,-60],[-120,-62],[-126,-68],[-145,-132],[-147,-136],[-159,-147],[-172,-152],[-201,-156],[-243,-165],[-251,-171]],"c":true}],"h":1},{"t":58,"s":[{"i":[[-293.12,-189.17],[-300.7,-187.56],[-304.56,-183.74],[-304.57,-175.69],[-299.8,-168.04],[-295.66,-163.77],[-291.78,-160.75],[-286.99,-156.9],[-280.28,-153.95],[-275.21,-151.95],[-271.26,-150.59],[-257.86,-143.49],[-243.89,-129.86],[-238,-116.71],[-235.09,-105.22],[-230.35,-86.99],[-221.99,-71.06],[-212.35,-65.47],[-205.28,-62.74],[-197.45,-60.26],[-189.58,-57.88],[-176.5,-53.02],[-164.34,-43.74],[-158.44,-24.99],[-160.53,-0.9],[-161.26,10.63],[-161.24,18.72],[-160.04,26.78],[-158.19,32.9],[-156.18,32.41],[-151.22,30.13],[-150.79,29.78],[-150.03,29.03],[-146.36,26.23],[-140.23,22.83],[-136.75,20.23],[-134.05,17.67],[-129.86,15.36],[-125.58,13.56],[-123.31,11.45],[-120.85,9.55],[-115.85,6.4],[-109.4,2.54],[-99.45,-3.84],[-87.16,-11.7],[-78.61,-17.07],[-71.5,-21.38],[-57.06,-30.66],[-64.91,-39.93],[-81.57,-46.68],[-108.26,-55.59],[-123.44,-64.4],[-124.81,-67.58],[-128.26,-70.81],[-133.51,-125.95],[-166.13,-150.06],[-177.65,-154.37],[-188.73,-155.59],[-229.5,-158.34],[-255.06,-173.19],[-274.02,-187.15]],"o":[[-298.17,-188.2],[-303.89,-185.33],[-305.42,-178.42],[-301.76,-170.5],[-297.02,-164.89],[-293.04,-161.69],[-289.1,-158.18],[-282.58,-154.78],[-276.58,-152.41],[-272.55,-151.04],[-263.66,-147.06],[-247.97,-134.89],[-239.2,-120.35],[-235.94,-109.15],[-232.11,-93.71],[-225.29,-75.67],[-214.71,-66.6],[-207.64,-63.54],[-200.16,-61.07],[-192.16,-58.67],[-181.58,-55.15],[-167.88,-47.31],[-158.93,-32.79],[-159.24,-9.04],[-161.14,8.02],[-161.31,15.98],[-160.7,23.83],[-158.79,31.32],[-157.82,33.09],[-152.88,30.93],[-151.02,30.01],[-150.29,29.29],[-148.5,27.56],[-142.23,23.86],[-137.73,21.15],[-134.92,18.5],[-131.57,16.08],[-126.87,14.1],[-124.14,12.17],[-121.67,10.14],[-117.9,7.63],[-111.6,3.85],[-103.12,-1.48],[-91.47,-8.95],[-80.61,-15.89],[-74.06,-19.82],[-66.41,-24.68],[-56.95,-33.18],[-75.81,-45.42],[-97.26,-52.73],[-119.76,-62.71],[-125.31,-66.32],[-125.64,-69.42],[-142.28,-93.44],[-159.83,-148.06],[-175.28,-153.08],[-184.66,-155.68],[-209.71,-157.62],[-248.7,-167.79],[-267.75,-181.98],[-285.63,-190.23]],"v":[[-294,-189],[-302.29,-186.45],[-305,-181],[-303.16,-173.09],[-298,-166],[-294.35,-162.73],[-291,-160],[-284.78,-155.84],[-278,-153],[-273.88,-151.5],[-270,-150],[-252.92,-139.19],[-241,-124],[-236.97,-112.93],[-234,-101],[-227.82,-81.33],[-217,-68],[-210,-64.5],[-203,-62],[-194.81,-59.47],[-187,-57],[-172.19,-50.16],[-162,-39],[-158.84,-17.02],[-161,6],[-161.29,13.31],[-161,21],[-159.41,29.05],[-158,33],[-154.53,31.67],[-151,30],[-150.54,29.53],[-150,29],[-144.3,25.04],[-139,22],[-135.83,19.37],[-133,17],[-128.37,14.73],[-125,13],[-122.49,10.79],[-120,9],[-113.72,5.13],[-107,1],[-95.46,-6.39],[-82,-15],[-76.34,-18.45],[-69,-23],[-57,-32],[-71,-43],[-85,-48],[-117,-61],[-125,-66],[-125,-68],[-129,-72],[-155,-144],[-172,-152],[-181,-155],[-193,-156],[-241,-164],[-262,-178],[-281,-189]],"c":true}],"h":1},{"t":59,"s":[{"i":[[-287,-190.29],[-304.07,-184.94],[-303.72,-173.94],[-300.19,-168.52],[-299.19,-166.23],[-296.85,-164.24],[-292.49,-161.47],[-291.36,-160.53],[-290.54,-160.35],[-288.87,-158.99],[-287.31,-157.18],[-281.25,-154.26],[-272.58,-151.21],[-267.32,-148.75],[-263.32,-146.76],[-250.46,-137.3],[-239.24,-119],[-233.1,-95.91],[-225.38,-73.45],[-198.33,-61.39],[-166.86,-49.6],[-163.5,2.57],[-158.43,32.79],[-151.37,30.22],[-150.07,29.07],[-141.71,23.82],[-134.68,18.08],[-126.2,14.15],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.82,0.21],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.27,-13.52],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.26,-22.2],[-57.16,-30.14],[-74.27,-45.48],[-111.97,-56.64],[-123.95,-65.94],[-134.5,-115.23],[-150.65,-137.53],[-151.27,-140.2],[-156.41,-144.18],[-174.86,-154.43],[-216.27,-156.64],[-233.94,-162.25],[-240.93,-164.02],[-254.3,-172.51],[-261.04,-176.33],[-263.14,-179.42],[-267.98,-181.8]],"o":[[-300.96,-187.72],[-305.45,-178.05],[-300.59,-169.41],[-299.49,-166.93],[-298.36,-165.25],[-293.92,-162.35],[-291.59,-160.61],[-290.84,-160.4],[-289.46,-159.65],[-287.79,-157.75],[-284.21,-155.4],[-275.43,-152.16],[-268.66,-149.37],[-264.65,-147.45],[-255.59,-142.3],[-242.29,-125.65],[-234.66,-104.68],[-228.46,-80.29],[-210.4,-63.84],[-176.55,-54.27],[-154.33,-22.25],[-161.62,23.14],[-157.72,33.14],[-151.04,30.03],[-146.88,26.01],[-136.32,20.2],[-130.2,15.2],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.08,2.21],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.19,-11.18],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.85,-21.67],[-67.99,-24.28],[-55.95,-36.49],[-98.08,-54.09],[-122.27,-65.03],[-141.02,-83.07],[-149.3,-137.45],[-151.7,-138.93],[-153.58,-142.72],[-166.27,-151.13],[-199.65,-158.27],[-232.2,-160.54],[-238.61,-163.95],[-249.73,-168.19],[-259.88,-176.65],[-262.83,-177.58],[-265.8,-181.21],[-276.67,-186.95]],"v":[[-294,-189],[-304.76,-181.49],[-301,-170],[-299.84,-167.73],[-299,-166],[-295.39,-163.29],[-292,-161],[-291.1,-160.47],[-290,-160],[-288.33,-158.37],[-287,-157],[-278.34,-153.21],[-270,-150],[-265.98,-148.1],[-262,-146],[-246.37,-131.48],[-237,-112],[-230.78,-88.1],[-220,-70],[-187.44,-57.83],[-162,-39],[-162,19],[-158,33],[-151,30],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-57,-31],[-84,-49],[-121,-64],[-125,-67],[-149,-137],[-151,-138],[-152,-141],[-159,-146],[-185,-156],[-230,-160],[-236,-163],[-243,-165],[-259,-176],[-262,-177],[-264,-180],[-270,-183]],"c":true}],"h":1},{"t":60,"s":[{"i":[[-280.1,-190.71],[-299.98,-187.87],[-304.46,-184.37],[-302.98,-171.73],[-290.7,-159.93],[-285.67,-157.34],[-281.19,-155.52],[-278.33,-154.32],[-275.8,-153.36],[-270.44,-150.64],[-264.61,-146.92],[-261.11,-145.18],[-258.67,-144.48],[-254.2,-140.93],[-248.89,-135.34],[-246.25,-131.46],[-243.85,-127.7],[-239.44,-117.49],[-231.58,-81.58],[-175.72,-63.61],[-160.63,-35.31],[-161.69,-2.54],[-162.02,31.34],[-150.94,29.9],[-141.62,23.76],[-134.53,17.98],[-126.13,14.08],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.24,-13.55],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.4,-22.1],[-66.29,-25.5],[-57.03,-30.85],[-62.1,-38.25],[-89.27,-51.28],[-115.04,-59.17],[-119.03,-62.31],[-127.22,-69.59],[-137.46,-106.23],[-144.94,-127.72],[-147.85,-135.32],[-154.51,-142.13],[-157.57,-145.6],[-160,-146.34],[-162.73,-149.27],[-217.08,-154.6],[-248.42,-168.51],[-255.74,-173.45]],"o":[[-297.25,-188.43],[-303.59,-185.84],[-306.13,-177.01],[-295.27,-163.19],[-287.32,-158.08],[-282.6,-156.06],[-279.17,-154.64],[-276.64,-153.68],[-272.64,-151.93],[-266.43,-148.13],[-262.02,-145.44],[-259.43,-144.7],[-256.26,-142.76],[-250.52,-137.22],[-247.08,-132.61],[-244.63,-129.01],[-240.79,-121.54],[-233.91,-100.22],[-209.91,-59.91],[-162.83,-39.84],[-158.5,-20.74],[-162.6,10.8],[-157.42,33.24],[-146.97,26.1],[-136.14,20.08],[-130.18,15.19],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.01,-11.3],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.86,-21.66],[-68.34,-24.05],[-62.46,-28],[-56.52,-33.4],[-78.09,-48.41],[-106.42,-57.23],[-118.76,-62.73],[-123.42,-65.41],[-138.97,-85.47],[-143.74,-125.24],[-147.11,-132.39],[-151.26,-140.31],[-157.45,-144.34],[-158.82,-146.76],[-162.25,-147.83],[-184.12,-161.5],[-242.79,-164.45],[-253.99,-171.73],[-267.51,-181.54]],"v":[[-293,-189],[-301.78,-186.85],[-305,-182],[-299.12,-167.46],[-289,-159],[-284.13,-156.7],[-280,-155],[-277.48,-154],[-275,-153],[-268.43,-149.38],[-263,-146],[-260.27,-144.94],[-258,-144],[-252.36,-139.08],[-248,-134],[-245.44,-130.23],[-243,-126],[-238,-113],[-224,-74],[-164,-42],[-160,-31],[-162,2],[-158,33],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-68,-42],[-100,-55],[-118,-62],[-120,-63],[-129,-72],[-143,-123],[-146,-130],[-149,-137],[-157,-144],[-158,-146],[-161,-147],[-164,-150],[-239,-163],[-251,-170],[-258,-175]],"c":true}],"h":1},{"t":61,"s":[{"i":[[-297.27,-188.28],[-305.66,-181.69],[-300.52,-169.75],[-282.58,-156.12],[-256.27,-143.97],[-248.43,-133.67],[-244.93,-128.73],[-240.44,-119.34],[-236.22,-106.34],[-232.77,-92.53],[-228.62,-79.22],[-223.06,-73.13],[-217.66,-69.87],[-206.94,-65.11],[-193.76,-61.63],[-184.48,-58.53],[-177.66,-56],[-173.9,-53.35],[-171.11,-50.09],[-167.68,-46.78],[-164.8,-43.45],[-159.65,-22.88],[-163.56,10.5],[-160.93,26.25],[-158.91,32.65],[-150.56,29.54],[-142.02,24.03],[-134.58,18.02],[-126.1,14.06],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.94,0.3],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.21,-13.56],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.26,-22.2],[-66.26,-25.52],[-57.04,-30.83],[-63.2,-40.05],[-89.43,-51.84],[-116.32,-60.43],[-126.7,-69.08],[-139.41,-106.71],[-147.63,-134.53],[-150.38,-138.25],[-161.21,-147.64],[-166.3,-151.65],[-204.37,-157.35],[-240.59,-164.24],[-266.06,-181.08],[-282.31,-188.7]],"o":[[-304.4,-185.56],[-303.72,-173.78],[-291.7,-160.14],[-264.87,-148.04],[-249.72,-135.31],[-246.04,-130.38],[-242.08,-123.42],[-237.51,-110.8],[-233.71,-97.41],[-230.23,-83.43],[-224.73,-74.44],[-219.53,-70.84],[-211.31,-66.54],[-198.16,-62.65],[-186.91,-59.28],[-179.86,-56.89],[-174.84,-54.3],[-172.03,-51.24],[-168.78,-47.8],[-165.69,-44.6],[-159.36,-33.62],[-161.74,-0.82],[-161.48,23.18],[-159.65,30.99],[-157.06,33.36],[-146.78,25.92],[-136.48,20.31],[-130.69,15.52],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-107.86,2.07],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.18,-11.19],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.85,-21.67],[-68.54,-23.93],[-62.54,-27.95],[-56.38,-33.69],[-78.71,-49.58],[-107.54,-58.35],[-122.27,-66.14],[-138.77,-84.44],[-145.52,-127.08],[-150.62,-137.65],[-154.15,-142.82],[-165.6,-150.37],[-180.85,-158.84],[-231.85,-161.26],[-257.95,-173.09],[-280.1,-186.86],[-288.96,-189.88]],"v":[[-298,-188],[-304.69,-177.73],[-298,-167],[-273.73,-152.08],[-251,-137],[-247.24,-132.03],[-244,-127],[-238.97,-115.07],[-235,-102],[-231.5,-87.98],[-226,-76],[-221.3,-71.99],[-216,-69],[-202.55,-63.88],[-189,-60],[-182.17,-57.71],[-176,-55],[-172.96,-52.29],[-170,-49],[-166.68,-45.69],[-164,-42],[-160.69,-11.85],[-162,20],[-160.29,28.62],[-158,33],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-68,-43],[-101,-56],[-119,-63],[-129,-72],[-144,-122],[-150,-137],[-151,-139],[-165,-150],[-167,-152],[-223,-160],[-246,-167],[-278,-186],[-284,-189]],"c":true}],"h":1},{"t":62,"s":[{"i":[[-287.87,-191.81],[-305.33,-182.8],[-302.1,-171.76],[-289.42,-159.88],[-271.44,-152.1],[-257.75,-143.29],[-246.97,-131.62],[-241.71,-120.75],[-237.45,-106.98],[-233.34,-92.27],[-228.33,-78.66],[-221.87,-72.31],[-214.92,-68.81],[-189.82,-61.26],[-162.87,-45.44],[-160.9,-15.73],[-164.26,6.41],[-162.79,21.49],[-158.86,32.7],[-155.67,32.3],[-150.28,29.27],[-146.38,26.2],[-140.52,23.03],[-136.64,20.16],[-133.79,17.51],[-130.12,15.52],[-125.55,13.53],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.88,0.25],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.21,-13.56],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.36,-22.13],[-66.29,-25.5],[-57.04,-30.84],[-65.51,-42.4],[-84.85,-51.31],[-122.19,-62.54],[-137.97,-91.73],[-146.41,-131.87],[-158.56,-146.38],[-167.15,-151.43],[-176.76,-155.19],[-207.52,-158.3],[-243.36,-165.6],[-253.14,-170.47],[-255.34,-172.58],[-260.39,-174.92],[-264.54,-179.01],[-268.23,-180.52]],"o":[[-303.52,-185.92],[-304.62,-175.72],[-294.94,-163.08],[-277.67,-154.39],[-262.02,-146.73],[-250.22,-135.74],[-243.24,-124.76],[-238.82,-111.86],[-234.67,-97.44],[-230.16,-82.88],[-224.17,-73.9],[-217.25,-69.76],[-201.88,-63.29],[-170.31,-52.33],[-160.02,-23.43],[-163.02,-0.81],[-163.86,16.64],[-160.29,29.52],[-157.53,33.17],[-152.04,30.35],[-148.37,27.44],[-142.46,24],[-137.74,21.15],[-134.66,18.34],[-131.85,16.26],[-126.97,14.16],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-107.96,2.14],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.18,-11.19],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.65,-21.78],[-68.34,-24.05],[-62.46,-28.01],[-56.25,-34.23],[-75.66,-48.28],[-105.25,-58],[-136.43,-81.62],[-142.27,-115.58],[-155.46,-143.04],[-164.19,-150.12],[-174.11,-154.27],[-193.1,-159.28],[-234.24,-161.44],[-252.05,-170.6],[-254.6,-171.37],[-257.86,-174.2],[-263.41,-176.94],[-266.88,-180.6],[-276.23,-185.49]],"v":[[-298,-188],[-304.97,-179.26],[-299,-168],[-283.54,-157.14],[-266,-149],[-253.99,-139.52],[-245,-128],[-240.26,-116.3],[-236,-102],[-231.75,-87.57],[-226,-76],[-219.56,-71.04],[-213,-68],[-180.07,-56.8],[-161,-31],[-161.96,-8.27],[-164,13],[-161.54,25.5],[-158,33],[-153.86,31.33],[-150,29],[-144.42,25.1],[-139,22],[-135.65,19.25],[-133,17],[-128.55,14.84],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-70,-45],[-90,-53],[-130,-73],[-140,-103],[-153,-140],[-161,-148],[-171,-153],[-180,-156],[-222,-160],[-251,-170],[-254,-171],[-256,-173],[-262,-176],[-266,-180],[-269,-181]],"c":true}],"h":1},{"t":63,"s":[{"i":[[-282.26,-193.86],[-305.28,-182.76],[-302.13,-171.59],[-289.26,-159.97],[-271.39,-152.04],[-257.86,-143.63],[-248.28,-133.08],[-242.47,-121.56],[-238.34,-108.61],[-234.51,-94.83],[-230.13,-82.11],[-226.84,-77.62],[-224.8,-76.36],[-223.69,-75.5],[-223.15,-74.12],[-218.48,-70.98],[-210.71,-67.58],[-193.15,-62.65],[-172.47,-54.14],[-165.85,-44.96],[-162.47,-37.85],[-161.8,-16.69],[-165.57,11.02],[-162.13,25.94],[-158.21,32.93],[-155.64,32.3],[-150.28,29.27],[-146.38,26.2],[-140.52,23.03],[-136.64,20.16],[-133.79,17.51],[-130.09,15.5],[-125.55,13.53],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.88,0.25],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.21,-13.56],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.36,-22.13],[-66.29,-25.5],[-57.04,-30.84],[-64.66,-41.75],[-68.01,-43.33],[-79.4,-49.64],[-113.86,-60.46],[-138.51,-89.05],[-147.27,-130.99],[-162.9,-149.62],[-203.43,-158.05],[-247.44,-166.75]],"o":[[-303.46,-185.97],[-304.61,-175.57],[-294.81,-163.2],[-277.55,-154.39],[-261.73,-146.59],[-251.14,-136.87],[-244.05,-125.51],[-239.61,-113.12],[-235.7,-99.52],[-231.73,-86.13],[-227.44,-78.19],[-225.52,-76.7],[-223.86,-75.94],[-223.33,-74.59],[-221.12,-72.43],[-213.27,-68.55],[-201.17,-64.33],[-178.8,-57.56],[-167.11,-46.78],[-163.52,-40.49],[-160.52,-25.95],[-164.33,1.79],[-163.52,22.72],[-159.47,31.05],[-157.5,33.16],[-152.03,30.35],[-148.37,27.44],[-142.46,24],[-137.74,21.15],[-134.66,18.34],[-131.82,16.24],[-126.96,14.15],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-107.96,2.14],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.18,-11.19],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.65,-21.78],[-68.34,-24.05],[-62.46,-28.01],[-56.35,-33.78],[-66.82,-43.76],[-74.33,-47.59],[-97.65,-56.17],[-135.59,-75.25],[-144.47,-119.7],[-157.78,-145.68],[-185.92,-160.58],[-237.42,-162.7],[-266.44,-178.4]],"v":[[-298,-188],[-304.94,-179.17],[-299,-168],[-283.4,-157.18],[-266,-149],[-254.5,-140.25],[-246,-129],[-241.04,-117.34],[-237,-104],[-233.12,-90.48],[-228,-79],[-226.18,-77.16],[-224,-76],[-223.51,-75.05],[-223,-74],[-215.87,-69.76],[-209,-67],[-185.98,-60.11],[-168,-48],[-164.69,-42.72],[-162,-35],[-163.07,-7.45],[-164,20],[-160.8,28.49],[-158,33],[-153.83,31.32],[-150,29],[-144.42,25.1],[-139,22],[-135.65,19.25],[-133,17],[-128.52,14.83],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-66,-43],[-69,-44],[-86,-52],[-122,-66],[-142,-107],[-153,-139],[-170,-153],[-225,-161],[-256,-172]],"c":true}],"h":1},{"t":64,"s":[{"i":[[-287.73,-190.83],[-301.68,-186.41],[-304.64,-183.56],[-303.51,-173.53],[-293.09,-163.39],[-282.61,-157.32],[-271.61,-153.05],[-267.66,-150.47],[-267.21,-149.15],[-266.03,-148.57],[-264.37,-148.25],[-250.02,-135.08],[-239.14,-109.41],[-234.04,-92.01],[-230.06,-81.62],[-220.13,-72.17],[-205.52,-67.42],[-185.72,-61.04],[-167.71,-49.4],[-166.43,-4.24],[-163.66,23.22],[-158.19,32.94],[-152.89,30.9],[-150.85,29.82],[-142.13,24.11],[-134.48,17.95],[-126.1,14.05],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.28,-13.52],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.26,-22.2],[-65.72,-25.87],[-57.12,-30.51],[-63.53,-41.89],[-70.83,-46.36],[-127.32,-59.52],[-142.64,-110.08],[-150.11,-133.73],[-160.74,-148.08],[-165.61,-151.76],[-177.25,-156.55],[-230.12,-159.14],[-249.6,-168.62],[-255.76,-171.23],[-257.55,-173.67],[-260.27,-174.5],[-265.8,-179.1],[-269.3,-180.56]],"o":[[-299.87,-187.12],[-304.07,-184.63],[-305.96,-177.83],[-297.07,-166.31],[-286.56,-159.05],[-275.14,-154.33],[-267.8,-150.89],[-267.36,-149.6],[-266.59,-148.69],[-264.92,-148.35],[-255.44,-142.12],[-241.87,-118.73],[-235,-95.7],[-231.56,-84.97],[-224.62,-74.7],[-210.58,-68.53],[-193.36,-63.59],[-172.9,-53.94],[-157.86,-26.16],[-164.79,16.63],[-162.55,26.21],[-156.34,33.5],[-152.16,30.2],[-146.72,25.86],[-136.59,20.38],[-130.63,15.48],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-86.99,-11.31],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.85,-21.67],[-68.54,-23.93],[-62.08,-28.25],[-56.39,-33.42],[-68.76,-45.53],[-97.13,-60.79],[-141.66,-95.79],[-147.63,-127.79],[-154.66,-141.59],[-165.34,-150.15],[-170.29,-154.67],[-203.39,-162.18],[-247.91,-167.34],[-253.29,-170.74],[-257.42,-172.26],[-258.81,-174.61],[-263.18,-176.47],[-267.78,-180.58],[-276.96,-185.37]],"v":[[-297,-188],[-302.88,-185.52],[-305,-182],[-300.29,-169.92],[-291,-162],[-278.88,-155.82],[-268,-151],[-267.51,-150.03],[-267,-149],[-265.47,-148.46],[-264,-148],[-245.94,-126.9],[-236,-99],[-232.8,-88.49],[-228,-79],[-215.36,-70.35],[-201,-66],[-179.31,-57.49],[-165,-43],[-165,14],[-163,25],[-158,33],[-153,31],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-68,-45],[-72,-47],[-137,-84],[-146,-122],[-152,-137],[-165,-150],[-166,-152],[-184,-158],[-245,-166],[-252,-170],[-257,-172],[-258,-174],[-261,-175],[-267,-180],[-270,-181]],"c":true}],"h":1},{"t":65,"s":[{"i":[[-282.13,-192.41],[-301.65,-186.43],[-304.65,-183.53],[-304.67,-177.09],[-300.26,-170.42],[-287.27,-159.89],[-266.32,-150.34],[-260.05,-145.35],[-258.42,-144.37],[-255.39,-141.21],[-252.78,-137.02],[-251.36,-135.36],[-250.3,-134.46],[-244.92,-124.72],[-239.78,-108.96],[-235.05,-93.31],[-229.43,-80.58],[-220.18,-72.73],[-208.66,-69.16],[-195.79,-65.02],[-181.91,-59.68],[-173.72,-54.39],[-167.07,-47.24],[-162.27,-24.06],[-166.66,10.83],[-161.94,26.82],[-157.39,32.85],[-153.86,31.6],[-145.86,26.19],[-135.35,19.46],[-122.73,11.38],[-114.55,6.25],[-108.03,2.33],[-105.77,0.77],[-105.05,0.05],[-104.37,-0.49],[-103.59,-0.65],[-92.89,-7.93],[-80.9,-15.14],[-77.85,-17.18],[-74.85,-19.18],[-66.71,-24.51],[-56.14,-30.98],[-64.95,-42.77],[-107.53,-58.21],[-121.95,-66.96],[-125.69,-69.93],[-136.55,-81.39],[-141.55,-101.67],[-145.19,-114.6],[-146.8,-125.82],[-150.82,-132.78],[-153.74,-140.29],[-165.68,-151.87],[-179.04,-156.88],[-197.74,-160.65],[-220.34,-160.91],[-238.91,-164.96],[-246.26,-166.27],[-250.42,-169.12],[-255.73,-171.23]],"o":[[-299.83,-187.16],[-304.07,-184.62],[-305.54,-179.63],[-302.03,-172.49],[-294.12,-163.48],[-273.37,-153.32],[-260.59,-145.67],[-258.97,-144.7],[-256.5,-142.7],[-253.53,-138.36],[-251.71,-135.63],[-250.66,-134.77],[-247.03,-129.49],[-241.3,-114.45],[-236.58,-98.27],[-231.47,-84.47],[-223.85,-74.65],[-212.59,-69.99],[-200.83,-66.67],[-186.32,-61.52],[-176.44,-56.52],[-169.04,-49.75],[-161.44,-35.47],[-164.88,-0.91],[-163.24,23.9],[-159.01,31.3],[-155.93,33.01],[-148.83,28.19],[-139.73,22.27],[-126.85,14.01],[-116.78,7.59],[-110.18,3.62],[-105.99,0.99],[-105.3,0.3],[-104.57,-0.41],[-103.87,-0.6],[-97.43,-4.31],[-85.87,-12.34],[-79.16,-16.8],[-76.16,-18.8],[-70.56,-23.3],[-57.74,-30.53],[-61.18,-39.84],[-82.32,-55.43],[-120.92,-65.95],[-123.64,-68.57],[-132.93,-75.85],[-141.41,-94.5],[-143.59,-111.96],[-146.86,-121.59],[-148.7,-130.86],[-153.21,-137.27],[-158.35,-146.52],[-174.4,-156.16],[-191.04,-159.59],[-212.36,-161.36],[-233.22,-162.74],[-244.02,-166.68],[-249.24,-167.52],[-253.51,-170.84],[-267.51,-178.32]],"v":[[-297,-188],[-302.86,-185.52],[-305,-182],[-303.35,-174.79],[-299,-169],[-280.32,-156.61],[-261,-146],[-259.51,-145.03],[-258,-144],[-254.46,-139.79],[-252,-136],[-251.01,-135.06],[-250,-134],[-243.11,-119.58],[-238,-103],[-233.26,-88.89],[-227,-78],[-216.38,-71.36],[-205,-68],[-191.06,-63.27],[-179,-58],[-171.38,-52.07],[-166,-45],[-163.58,-12.48],[-164,21],[-160.47,29.06],[-156,33],[-151.34,29.9],[-144,25],[-131.1,16.74],[-119,9],[-112.36,4.94],[-106,1],[-105.53,0.53],[-105,0],[-104.12,-0.55],[-103,-1],[-88,-11],[-80,-16],[-77,-18],[-74,-20],[-63,-27],[-59,-36],[-68,-45],[-121,-66],[-122,-67],[-127,-71],[-139,-88],[-143,-109],[-146,-118],[-148,-129],[-152,-135],[-155,-142],[-170,-154],[-184,-158],[-205,-161],[-228,-162],[-242,-166],[-248,-167],[-252,-170],[-257,-172]],"c":true}],"h":1},{"t":66,"s":[{"i":[[-294.04,-188.85],[-301.98,-186.48],[-304.6,-183.79],[-304.42,-177.37],[-299.62,-168.54],[-297.44,-166.89],[-296.21,-167.1],[-295.68,-166.49],[-295.18,-165.12],[-291.23,-162.64],[-285.72,-159.89],[-278.65,-156.58],[-269.27,-152.22],[-266.27,-149.46],[-263.72,-147.52],[-259.16,-144.22],[-255.08,-140.57],[-252.07,-136.29],[-249.74,-133.1],[-245.29,-125.32],[-240.92,-113.88],[-238.21,-104.26],[-236.08,-94.79],[-230.59,-82.81],[-220.68,-73.97],[-202.74,-67.68],[-182.6,-61.44],[-170.08,-51.36],[-163.27,-36.65],[-163.23,-21.91],[-164.7,-11.34],[-165.86,-0.08],[-166.51,11.47],[-163.8,22.75],[-157.56,32.83],[-153.86,31.62],[-145.91,26.22],[-118.14,8.28],[-82.98,-14.73],[-65.5,-25.42],[-58.28,-30.26],[-58.97,-35.95],[-65.39,-44],[-70.56,-47.6],[-74.75,-49.39],[-89.54,-55.53],[-111.08,-62.5],[-120.79,-66.91],[-124.48,-69.89],[-128.21,-71.4],[-137.01,-82.92],[-142.74,-102.66],[-151.3,-136.23],[-160.34,-147.2],[-177.9,-158.22],[-218,-160.74],[-242.12,-165.91],[-248.49,-167.34],[-259.77,-174.42],[-269.42,-179.42],[-276.88,-185.12]],"o":[[-300.17,-187.08],[-304.19,-184.84],[-305.36,-180.35],[-301.55,-171.46],[-297.84,-166.84],[-296.63,-167.02],[-295.84,-166.93],[-295.35,-165.59],[-293.12,-163.7],[-287.53,-160.74],[-282.01,-157.97],[-272.28,-153.7],[-267.17,-150.2],[-264.55,-148.13],[-260.87,-145.44],[-256.27,-141.79],[-252.95,-137.49],[-250.47,-134.1],[-247.08,-129.13],[-242.21,-117.7],[-238.92,-107.61],[-236.79,-97.84],[-232.99,-86.83],[-224.43,-76.38],[-209.95,-69.46],[-189.07,-63.67],[-173.7,-54.78],[-164.87,-42.29],[-162.88,-25.49],[-164.14,-14.84],[-165.35,-4.06],[-166.43,7.69],[-165.52,18.33],[-159.82,30],[-155.9,33.01],[-148.86,28.23],[-130.15,16.15],[-94.56,-7.16],[-68.36,-24.04],[-60.46,-28.54],[-57.77,-33.44],[-62.78,-41.23],[-69.18,-46.9],[-73.34,-48.84],[-82.25,-53.03],[-103.95,-60.27],[-119.3,-65.97],[-123.38,-68.87],[-126.9,-71.65],[-132.63,-74.78],[-141.73,-92.89],[-147.16,-122.91],[-158.8,-145.43],[-171.44,-155.69],[-202.86,-162.23],[-236.77,-163.77],[-246.83,-167.69],[-255.35,-170.36],[-266.8,-178.71],[-274.87,-182.76],[-285.25,-188.6]],"v":[[-297,-188],[-303.08,-185.66],[-305,-182],[-302.99,-174.41],[-298,-167],[-297.04,-166.95],[-296,-167],[-295.51,-166.04],[-295,-165],[-289.38,-161.69],[-284,-159],[-275.46,-155.14],[-268,-151],[-265.41,-148.79],[-263,-147],[-257.71,-143],[-254,-139],[-251.27,-135.19],[-249,-132],[-243.75,-121.51],[-240,-111],[-237.5,-101.05],[-235,-92],[-227.51,-79.6],[-216,-72],[-195.91,-65.67],[-178,-58],[-167.47,-46.82],[-163,-29],[-163.68,-18.37],[-165,-8],[-166.14,3.81],[-166,15],[-161.81,26.37],[-156,33],[-151.36,29.92],[-144,25],[-106.35,0.56],[-70,-23],[-62.98,-26.98],[-58,-32],[-60.87,-38.59],[-68,-46],[-71.95,-48.22],[-76,-50],[-96.74,-57.9],[-117,-65],[-122.08,-67.89],[-126,-71],[-129,-72],[-138,-85],[-145,-113],[-156,-142],[-164,-150],[-189,-160],[-232,-163],[-245,-167],[-250,-168],[-264,-177],[-272,-181],[-279,-186]],"c":true}],"h":1},{"t":67,"s":[{"i":[[-292.7,-188.73],[-301.63,-186.7],[-304.56,-184.01],[-304.95,-178.54],[-301.74,-172.15],[-293.54,-164.06],[-281.45,-157.75],[-274.4,-154.36],[-268.75,-151.72],[-267.36,-150.55],[-266.51,-150.35],[-263.14,-147.66],[-258.59,-142.73],[-253.67,-137.35],[-249.85,-132.5],[-242.65,-115.75],[-234.73,-90.13],[-228.65,-80.63],[-225.23,-77.73],[-223.09,-76.4],[-221.51,-75.28],[-207.75,-69.56],[-186.69,-63.91],[-172.62,-55.01],[-164.7,-40.61],[-164.01,-20.24],[-167.19,2.69],[-165.6,19.02],[-159.07,31.69],[-154.41,31.79],[-153.54,30.36],[-152.4,29.9],[-151.25,30.12],[-150.68,29.48],[-150.2,28.12],[-146.89,26.42],[-142.6,24.58],[-141.04,23.3],[-139.43,22.41],[-138.04,21.3],[-136.43,20.41],[-135.04,19.3],[-133.43,18.41],[-128.33,14.33],[-120.85,10.18],[-114.66,6.32],[-108.19,2.43],[-105.77,0.77],[-105.05,0.05],[-101.49,-2.05],[-81.31,-15.8],[-58.56,-28.64],[-64.86,-43.92],[-108.55,-60.62],[-130.97,-74.78],[-136.28,-80.77],[-145.02,-126.33],[-167.7,-153.45],[-211.73,-160.75],[-250.64,-168.95],[-273.5,-183.39]],"o":[[-299.6,-187.2],[-304.11,-185.11],[-305.33,-180.47],[-303.15,-174.38],[-297.32,-166.69],[-285.61,-159.59],[-276.53,-155.25],[-270.51,-152.6],[-267.61,-150.62],[-266.81,-150.41],[-264.6,-149.05],[-260.14,-144.5],[-255.25,-139.1],[-250.97,-134.05],[-245.29,-124.44],[-237.38,-98.6],[-229.79,-82.01],[-226.38,-78.49],[-223.59,-76.75],[-222.05,-75.66],[-214.9,-71.6],[-193.64,-65.71],[-176.52,-58.71],[-166.71,-45.97],[-163.17,-28.33],[-166.02,-4.73],[-166.82,13.18],[-161.73,28.27],[-154.89,32.11],[-153.73,30.92],[-152.77,29.85],[-151.64,30.04],[-150.83,29.92],[-150.36,28.58],[-148.59,27.14],[-143.9,25.14],[-141.58,23.6],[-139.97,22.71],[-138.58,21.6],[-136.97,20.71],[-135.58,19.6],[-133.97,18.71],[-130.9,15.99],[-123.3,11.42],[-116.81,7.61],[-110.35,3.74],[-105.99,0.99],[-105.3,0.3],[-103.38,-1.55],[-89.06,-9.94],[-66.39,-25.3],[-57.26,-36.41],[-85.92,-57.92],[-129.16,-72.57],[-134.99,-80.38],[-146.5,-98.31],[-160.21,-146.62],[-187.87,-163.16],[-243.43,-165.6],[-266.58,-177.72],[-284.81,-187.93]],"v":[[-296,-188],[-302.87,-185.91],[-305,-182],[-304.05,-176.46],[-300,-170],[-289.58,-161.83],[-278,-156],[-272.46,-153.48],[-268,-151],[-267.09,-150.48],[-266,-150],[-261.64,-146.08],[-257,-141],[-252.32,-135.7],[-249,-131],[-240.02,-107.18],[-231,-84],[-227.52,-79.56],[-224,-77],[-222.57,-76.03],[-221,-75],[-200.7,-67.63],[-181,-61],[-169.66,-50.49],[-164,-35],[-165.02,-12.48],[-167,8],[-163.67,23.65],[-156,32],[-154.07,31.35],[-153,30],[-152.02,29.97],[-151,30],[-150.52,29.03],[-150,28],[-145.4,25.78],[-142,24],[-140.5,23.01],[-139,22],[-137.5,21.01],[-136,20],[-134.5,19.01],[-133,18],[-125.81,12.88],[-119,9],[-112.51,5.03],[-106,1],[-105.53,0.53],[-105,0],[-100,-3],[-70,-23],[-58,-32],[-71,-48],[-123,-69],[-134,-79],[-137,-82],[-156,-141],[-173,-156],[-233,-164],[-258,-173],[-280,-186]],"c":true}],"h":1},{"t":68,"s":[{"i":[[-282.14,-190.1],[-300.66,-187.12],[-304.48,-184.35],[-304.7,-178.31],[-301.26,-171.51],[-295.83,-166.12],[-290.47,-163.29],[-280.6,-157.79],[-267.48,-150.82],[-252.4,-136.05],[-242.22,-112.87],[-235.26,-91.91],[-227.08,-78.25],[-216.2,-72.88],[-204.32,-69.29],[-192.87,-65.73],[-182.28,-61.42],[-175.86,-57.43],[-170.7,-52.13],[-164.84,-29.21],[-168.39,6.52],[-164.69,22.12],[-157.86,31.8],[-154.41,31.8],[-153.53,30.36],[-152.4,29.9],[-151.25,30.12],[-150.68,29.48],[-150.2,28.12],[-146.89,26.42],[-142.6,24.58],[-141.04,23.3],[-139.43,22.41],[-138.04,21.3],[-136.43,20.41],[-135.04,19.3],[-133.43,18.41],[-128.16,14.17],[-120.82,10.16],[-115.07,6.59],[-108.59,2.69],[-105.77,0.77],[-105.05,0.05],[-103.31,-1.29],[-100.75,-2.53],[-89.66,-9.8],[-75.75,-19.34],[-58.49,-29.02],[-58.93,-33.86],[-68.32,-46.84],[-76.39,-52.24],[-100.02,-59.79],[-119.33,-67.96],[-127.22,-71.42],[-136.75,-81.62],[-144.14,-102.52],[-149.79,-129.49],[-165.13,-151.55],[-174.34,-155.92],[-211.33,-161.76],[-251.42,-168.92]],"o":[[-298.42,-187.44],[-303.69,-185.57],[-305.32,-180.55],[-302.67,-173.78],[-298.1,-167.73],[-292.01,-163.9],[-285.36,-160.13],[-271.66,-153.14],[-257.04,-142.36],[-244.99,-121.3],[-237.21,-97.53],[-230.19,-82.27],[-219.79,-74.23],[-208.47,-70.41],[-196.72,-67.02],[-185.65,-62.93],[-177.77,-58.61],[-172.33,-54.19],[-164.64,-40.96],[-166.71,-5.47],[-166.51,17.97],[-160.37,29.04],[-154.89,32.12],[-153.73,30.92],[-152.77,29.85],[-151.64,30.04],[-150.83,29.92],[-150.36,28.58],[-148.59,27.14],[-143.9,25.14],[-141.58,23.6],[-139.97,22.71],[-138.58,21.6],[-136.97,20.71],[-135.58,19.6],[-133.97,18.71],[-130.75,15.84],[-123.2,11.33],[-117.03,7.75],[-110.85,4.06],[-105.99,0.99],[-105.3,0.3],[-104.19,-0.77],[-101.59,-2.16],[-94.28,-6.63],[-80.4,-16.15],[-65.44,-25.9],[-57.97,-32.2],[-63.71,-43.43],[-75.57,-50.87],[-87.05,-57.29],[-114.82,-65.08],[-124.87,-71.04],[-132.91,-75.64],[-143.06,-93.89],[-147.91,-119.71],[-155.15,-140.35],[-171.02,-155.28],[-192.3,-163.24],[-241.53,-165.39],[-269.77,-178.79]],"v":[[-295,-188],[-302.17,-186.34],[-305,-182],[-303.69,-176.04],[-300,-170],[-293.92,-165.01],[-290,-163],[-276.13,-155.46],[-264,-148],[-248.69,-128.67],[-239,-103],[-232.72,-87.09],[-223,-76],[-212.34,-71.64],[-200,-68],[-189.26,-64.33],[-180,-60],[-174.1,-55.81],[-169,-49],[-165.78,-17.34],[-167,15],[-162.53,25.58],[-156,32],[-154.07,31.36],[-153,30],[-152.02,29.97],[-151,30],[-150.52,29.03],[-150,28],[-145.4,25.78],[-142,24],[-140.5,23.01],[-139,22],[-137.5,21.01],[-136,20],[-134.5,19.01],[-133,18],[-125.68,12.75],[-119,9],[-112.96,5.33],[-106,1],[-105.53,0.53],[-105,0],[-102.45,-1.73],[-100,-3],[-85.03,-12.97],[-70,-23],[-58,-32],[-60,-36],[-74,-50],[-78,-53],[-109,-63],[-123,-70],[-128,-72],[-139,-86],[-146,-111],[-153,-136],[-169,-154],[-177,-157],[-230,-164],[-259,-173]],"c":true}],"h":1},{"t":69,"s":[{"i":[[-289.38,-192.28],[-303.43,-185.09],[-304.37,-181.4],[-300.57,-170.85],[-290.57,-163.42],[-277.53,-156.54],[-264.06,-148.86],[-251,-133.9],[-241.83,-111.33],[-236.15,-93.88],[-230.35,-81.72],[-224.99,-77.71],[-221.82,-76.41],[-212.63,-72.5],[-199.14,-68.93],[-194.19,-67.5],[-192.26,-66.09],[-184.46,-63.45],[-175.83,-58.27],[-171.29,-52.88],[-168.65,-48.57],[-165.24,-29.13],[-168.76,2.07],[-165.96,19.34],[-158.17,31.86],[-152.4,30.73],[-145.17,25.4],[-137.45,20.51],[-130.81,16.82],[-128.68,15.49],[-128.18,14.12],[-127.4,13.9],[-126.25,14.12],[-125.68,13.49],[-125.18,12.12],[-124.4,11.9],[-123.25,12.12],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-112.24,5.19],[-105.75,0.72],[-101.49,-2.05],[-81.1,-15.93],[-58.47,-29.21],[-59.14,-34.03],[-65.96,-44.49],[-92.22,-58],[-124.54,-70.36],[-131.87,-75.87],[-142.06,-119.69],[-159.64,-143.52],[-160.3,-146.2],[-164.9,-150.4],[-182.53,-160.63],[-218.09,-162.3],[-252.23,-169.41],[-265.24,-176.37]],"o":[[-302.24,-185.89],[-304.49,-182.85],[-303.29,-174.39],[-294.22,-165.36],[-282.75,-159.11],[-268.19,-151.41],[-255.08,-140.48],[-244.38,-119.32],[-237.48,-98.51],[-232.59,-85.48],[-226.08,-78.25],[-222.86,-76.78],[-217.06,-74.03],[-203.67,-69.95],[-194.81,-67.96],[-192.92,-66.57],[-187.8,-64.56],[-178.48,-60.3],[-172.21,-54.09],[-169.51,-50.11],[-164.86,-39.41],[-167.19,-8.39],[-167.63,13.91],[-161.23,28.31],[-154.32,32.03],[-147.83,27.41],[-140.05,22.11],[-132.83,17.87],[-128.84,15.93],[-128.35,14.59],[-127.77,13.85],[-126.64,14.04],[-125.84,13.93],[-125.35,12.59],[-124.77,11.85],[-123.64,12.04],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-116.34,6.3],[-109.36,2.43],[-103.38,-1.55],[-89.45,-9.7],[-65.37,-25.95],[-58.04,-31.78],[-62.36,-41.41],[-80.56,-56.57],[-114.49,-65.53],[-130.43,-75.17],[-150.44,-94.49],[-158.31,-143.46],[-160.69,-144.92],[-162.24,-148.4],[-173.02,-156.61],[-203.96,-164.56],[-242.61,-165.29],[-262.08,-174.63],[-275.2,-182.27]],"v":[[-300,-187],[-303.96,-183.97],[-304,-179],[-297.39,-168.11],[-288,-162],[-272.86,-153.97],[-261,-146],[-247.69,-126.61],[-239,-103],[-234.37,-89.68],[-227,-79],[-223.92,-77.24],[-221,-76],[-208.15,-71.22],[-195,-68],[-193.55,-67.04],[-192,-66],[-181.47,-61.87],[-173,-55],[-170.4,-51.5],[-168,-47],[-166.21,-18.76],[-168,10],[-163.59,23.82],[-155,32],[-150.12,29.07],[-143,24],[-135.14,19.19],[-129,16],[-128.52,15.04],[-128,14],[-127.02,13.97],[-126,14],[-125.52,13.04],[-125,12],[-124.02,11.97],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-111,4],[-105,0],[-100,-3],[-70,-23],[-58,-32],[-60,-36],[-69,-47],[-107,-63],[-129,-74],[-133,-77],[-158,-143],[-160,-144],[-161,-147],[-167,-152],[-190,-162],[-232,-164],[-259,-173],[-268,-178]],"c":true}],"h":1},{"t":70,"s":[{"i":[[-292.76,-189.55],[-299.96,-186.96],[-301.66,-187.22],[-305.22,-182.89],[-302.53,-174.01],[-292.16,-164.38],[-287.37,-161.76],[-271.91,-153.6],[-263.95,-148.78],[-257.73,-141.26],[-254.6,-137.92],[-242.02,-106.4],[-227.7,-79.88],[-215.83,-73.56],[-209.34,-72.69],[-199.07,-69.31],[-183.7,-63.6],[-177.31,-59.21],[-165.28,-32.91],[-168.7,19.93],[-156.65,31.92],[-154.05,30.7],[-151.51,30.23],[-150.4,28.24],[-143.28,25.23],[-139.85,22.82],[-136.85,20.82],[-133.85,18.82],[-132.08,17.7],[-113.64,5.25],[-91.53,-9.6],[-83.38,-14.75],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.39,-18.76],[-70.05,-21.99],[-66.85,-24.18],[-59.52,-28.85],[-65.61,-44.71],[-69.19,-47.36],[-73.35,-52.03],[-91.37,-58.97],[-109.87,-65.4],[-126.36,-71.94],[-141.3,-88.69],[-146.86,-106.98],[-148.4,-117.44],[-151.19,-124.52],[-154.26,-136.48],[-159.86,-143.53],[-163.5,-148.87],[-166.7,-151.75],[-174.28,-157.19],[-207.23,-162.56],[-237.15,-165.86],[-246.92,-168.33],[-254.87,-170.03],[-261.44,-174.51],[-270.2,-178.44],[-275.07,-182.47]],"o":[[-299.38,-186.84],[-301.1,-187.15],[-304.45,-185.38],[-304.25,-177.2],[-297.41,-167.92],[-288.73,-162.19],[-279.24,-157.25],[-265.81,-149.13],[-259.8,-145.36],[-255.43,-138.25],[-246.07,-124.95],[-231.53,-83.06],[-217.14,-75.17],[-211.96,-72.37],[-203.41,-70.94],[-188.76,-65.98],[-178.27,-59.78],[-165.1,-47.96],[-168.79,7.71],[-158.75,30.3],[-153.79,32.27],[-152.54,29.69],[-150.66,29.85],[-146.97,26.14],[-141.16,23.2],[-138.16,21.2],[-135.16,19.2],[-132.19,17.22],[-121.39,10.78],[-99.55,-3.77],[-83.67,-13.15],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-74.57,-20.53],[-68.16,-23.8],[-62.95,-27.92],[-58.28,-36.32],[-68.68,-47.65],[-71.77,-49.41],[-81.55,-56.84],[-105.35,-63.37],[-123.25,-70.57],[-138.31,-82.65],[-145.59,-101.91],[-148.59,-114.58],[-149.57,-122.42],[-153.39,-131.28],[-157.64,-142.06],[-163.38,-148.08],[-166.27,-150.12],[-169.55,-154.13],[-188.54,-163.9],[-231.87,-164.35],[-245.7,-167.86],[-251.42,-169.78],[-259.49,-172.14],[-266.79,-177.62],[-273.99,-180.55],[-281.75,-186.27]],"v":[[-299,-187],[-300.53,-187.05],[-302,-187],[-304.74,-180.05],[-300,-171],[-290,-163],[-286,-161],[-267,-150],[-263,-148],[-256,-139],[-254,-137],[-236,-93],[-219,-76],[-214,-73],[-207,-72],[-195,-68],[-180,-61],[-176,-58],[-167,-13],[-160,29],[-156,32],[-153,30],[-151,30],[-150,28],[-142,24],[-139,22],[-136,20],[-133,18],[-131,17],[-107,1],[-84,-13],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-69,-23],[-66,-25],[-59,-32],[-68,-47],[-70,-48],[-75,-53],[-101,-62],[-114,-67],[-132,-77],[-144,-97],[-148,-112],[-149,-120],[-152,-127],[-157,-141],[-161,-145],[-166,-150],[-167,-152],[-176,-158],[-227,-164],[-242,-167],[-249,-169],[-257,-171],[-264,-176],[-273,-180],[-276,-183]],"c":true}],"h":1},{"t":71,"s":[{"i":[[-295.54,-188.39],[-299.65,-186.39],[-301.35,-183.57],[-302.75,-179.55],[-302.71,-175.26],[-298.12,-169.97],[-284.21,-159.63],[-268.05,-148.3],[-256.66,-139.94],[-252.9,-134.23],[-249.16,-126.7],[-246.02,-118.66],[-243.05,-110.05],[-239.58,-100.17],[-235.43,-90.95],[-230.12,-83.21],[-223.02,-77.34],[-214.47,-73.87],[-202.52,-70.16],[-190.47,-66.68],[-182.47,-64.28],[-180.79,-62.95],[-176.71,-58.62],[-171.93,-52.84],[-168.36,-47.33],[-166.46,-36.98],[-167.1,-22.01],[-168.89,-6.85],[-169.62,7.08],[-168.27,14.22],[-165.71,20.55],[-161.82,26.69],[-156.87,30.74],[-148.6,27.32],[-118.65,8.43],[-82.97,-14.74],[-59.12,-31.21],[-59.08,-32.76],[-59.85,-35.16],[-61.08,-38.24],[-62.53,-41.22],[-65.26,-45.27],[-69.14,-48.96],[-73.5,-51.77],[-78.3,-54.18],[-86.74,-57.94],[-101.44,-63.57],[-116.52,-69.18],[-127.04,-73.37],[-131.48,-76.4],[-135.58,-80.05],[-138.94,-84.28],[-146.44,-101.98],[-151.37,-128.28],[-160.41,-143.61],[-171.81,-155.88],[-185.65,-157.72],[-235.12,-164.52],[-256.43,-171.15],[-270.84,-179.78],[-282.44,-185.63]],"o":[[-299.19,-186.92],[-300.73,-184.71],[-302.36,-180.99],[-302.93,-176.69],[-301.22,-172.62],[-289.61,-163.48],[-273.43,-152.04],[-259.67,-142.25],[-254.34,-136.65],[-250.31,-129.26],[-247.01,-121.4],[-244.03,-112.99],[-240.8,-103.52],[-236.9,-93.89],[-232.04,-85.61],[-225.61,-79.07],[-217.82,-75.04],[-206.82,-71.44],[-194.34,-67.79],[-184.53,-64.93],[-181.72,-63.83],[-178.29,-60.35],[-173.53,-54.87],[-169.35,-49.08],[-166.83,-41.71],[-166.6,-27.13],[-168.25,-11.87],[-169.58,2.63],[-168.78,12.36],[-166.73,18.32],[-163.25,24.74],[-158.62,29.69],[-154.71,31.04],[-130.57,16.01],[-94.85,-6.95],[-65.11,-26.87],[-58.97,-32.22],[-59.52,-34.23],[-60.63,-37.17],[-62.03,-40.26],[-64.08,-43.77],[-67.79,-47.86],[-72,-50.91],[-76.65,-53.4],[-82.65,-56.28],[-96.13,-61.59],[-111.63,-67.36],[-124.22,-72.18],[-129.87,-75.23],[-134.33,-78.81],[-137.88,-82.78],[-144.5,-93.35],[-149.87,-119.45],[-156.25,-138.67],[-168.18,-152.21],[-172.34,-156.21],[-217.04,-161.87],[-251.01,-168.51],[-266.34,-176.79],[-278.17,-183.69],[-291.12,-187.98]],"v":[[-299,-187],[-300.19,-185.55],[-301.85,-182.28],[-302.84,-178.12],[-302,-174],[-293.86,-166.72],[-278.82,-155.83],[-263.86,-145.27],[-256,-139],[-251.61,-131.74],[-248.09,-124.05],[-245.02,-115.83],[-242,-107],[-238.24,-97.03],[-233.74,-88.28],[-227.86,-81.14],[-220,-76],[-210.65,-72.66],[-198.43,-68.97],[-187.5,-65.81],[-182,-64],[-179.54,-61.65],[-175.12,-56.74],[-170.64,-50.96],[-168,-46],[-166.53,-32.05],[-167.68,-16.94],[-169.23,-2.11],[-169,11],[-167.5,16.27],[-164.48,22.64],[-160.22,28.19],[-155,31],[-139.58,21.67],[-106.75,0.74],[-74.04,-20.81],[-59,-32],[-59.3,-33.5],[-60.24,-36.17],[-61.56,-39.25],[-63,-42],[-66.52,-46.57],[-70.57,-49.93],[-75.08,-52.58],[-80,-55],[-91.43,-59.77],[-106.53,-65.47],[-120.37,-70.68],[-128,-74],[-132.9,-77.6],[-136.73,-81.41],[-140,-86],[-148.16,-110.72],[-155,-136],[-164.3,-147.91],[-172,-156],[-201.34,-159.8],[-245,-167],[-261.38,-173.97],[-275,-182],[-286.78,-186.8]],"c":true}],"h":1},{"t":72,"s":[{"i":[[-285.53,-192.29],[-299.96,-186.96],[-301.66,-187.22],[-305.02,-183.85],[-303.4,-177.75],[-299.01,-170.15],[-295.81,-168.74],[-291.72,-165.02],[-288.18,-162.68],[-281.98,-159.59],[-274.11,-156.07],[-272.04,-154.3],[-270.42,-153.41],[-266.72,-150.13],[-261.54,-145.73],[-252.73,-134.1],[-245.33,-116.61],[-240.21,-101.21],[-235.46,-89.08],[-226.19,-79.98],[-202.62,-72.02],[-185.9,-66.74],[-182.43,-63.32],[-179.8,-62.69],[-171.81,-54.3],[-167.04,-27.47],[-170.31,-2.74],[-167.49,19.4],[-157.92,30.94],[-146.03,26.64],[-129.59,14.97],[-122.37,10.25],[-120.51,10.23],[-119.38,8.24],[-112.24,5.19],[-104.06,-1.05],[-89.21,-10.65],[-83.38,-14.75],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.39,-18.76],[-70.05,-21.99],[-66.85,-24.18],[-60.65,-27.93],[-64.08,-44.38],[-85.76,-58.96],[-119.49,-69.14],[-134.05,-78.01],[-136.33,-82.04],[-139.41,-84.14],[-140.57,-87.27],[-149.15,-114.62],[-155.16,-135.49],[-160.24,-142.57],[-165.28,-150.46],[-169.03,-152.32],[-173.07,-156.56],[-198.67,-164.5],[-244.59,-165.66],[-255.72,-170.47]],"o":[[-299.38,-186.85],[-301.1,-187.15],[-304.32,-185.47],[-304.56,-179.99],[-300.1,-171.28],[-296.86,-168.88],[-292.88,-165.93],[-289.38,-163.4],[-284.92,-160.8],[-276.58,-157.22],[-272.58,-154.6],[-270.97,-153.71],[-268.45,-151.52],[-263.27,-147.24],[-255.81,-139.29],[-247.48,-122.76],[-241.48,-105.67],[-237.2,-92.92],[-229.3,-81.37],[-212.82,-73.65],[-190.29,-67.7],[-182.59,-64.75],[-181.08,-62.31],[-174.97,-58.51],[-166.19,-40.95],[-168.55,-9.33],[-169.87,6.87],[-162.01,25.12],[-152.76,31.02],[-133.99,18.74],[-122.68,11.85],[-121.54,9.69],[-119.67,9.85],[-116.34,6.3],[-107.88,1.01],[-95.65,-6.41],[-83.67,-13.15],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-74.57,-20.53],[-68.16,-23.8],[-62.67,-28.19],[-59.24,-36.7],[-76.03,-55.6],[-105.92,-65.6],[-130.06,-75.98],[-136.77,-80.79],[-137.58,-83.83],[-140.58,-85.84],[-147.31,-98.65],[-154.15,-130.72],[-157.66,-140.25],[-163.94,-147.66],[-167.83,-152.74],[-172.46,-154.72],[-185.94,-162.89],[-227.44,-165.5],[-254.67,-170.31],[-267.56,-175.38]],"v":[[-299,-187],[-300.53,-187.05],[-302,-187],[-304.79,-181.92],[-302,-175],[-297.94,-169.51],[-294,-167],[-290.55,-164.21],[-287,-162],[-279.28,-158.4],[-273,-155],[-271.5,-154],[-270,-153],[-264.99,-148.69],[-260,-144],[-250.11,-128.43],[-243,-110],[-238.7,-97.07],[-233,-86],[-222,-78],[-194,-69],[-183,-65],[-182,-63],[-179,-62],[-170,-50],[-168,-16],[-170,4],[-165,22],[-154,31],[-142,24],[-123,12],[-122,10],[-120,10],[-119,8],[-111,4],[-101,-3],[-84,-13],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-69,-23],[-66,-25],[-60,-32],[-69,-49],[-95,-62],[-127,-74],[-136,-80],[-137,-83],[-140,-85],[-141,-88],[-153,-127],[-157,-139],[-162,-145],[-167,-152],[-170,-153],[-176,-158],[-213,-165],[-254,-170],[-257,-171]],"c":true}],"h":1},{"t":73,"s":[{"i":[[-285.75,-192.13],[-301.42,-186.28],[-303.57,-185.64],[-305.03,-181.47],[-302.47,-175.04],[-297.16,-169.02],[-291.34,-165.22],[-286.33,-162.26],[-278.64,-158.06],[-267.75,-150.91],[-257.07,-140.34],[-245.85,-114.65],[-232.87,-83.63],[-217.79,-77.06],[-206.39,-73.75],[-202.16,-72.81],[-199.61,-72.19],[-189.69,-68.71],[-177.58,-61.28],[-171.9,-53.55],[-168.42,-45.06],[-167.86,-23.68],[-171.14,3.04],[-168.39,15.54],[-164.11,23.57],[-160.26,27.6],[-154.75,30.98],[-151.19,29.89],[-143.9,25.25],[-126.99,14.08],[-106.35,0.41],[-95.35,-6.64],[-86.63,-11.81],[-83.68,-13.51],[-83.19,-14.88],[-81.2,-15.95],[-77.93,-17.4],[-70.5,-21.92],[-60.41,-29.15],[-60.17,-32.89],[-62.13,-38.04],[-67.33,-47.79],[-76.51,-54.72],[-86.55,-59.68],[-95.13,-63.08],[-113.27,-68.24],[-134.58,-77.64],[-137.5,-83.31],[-138.88,-83.85],[-141.72,-87.81],[-144.16,-93.68],[-147.73,-104.56],[-150.83,-117.51],[-156.17,-133.34],[-159.03,-141.5],[-163.84,-146.68],[-171.8,-155.15],[-187.72,-162.83],[-209.25,-164.64],[-243.89,-167.41],[-255.61,-170.44]],"o":[[-300.39,-186.46],[-303.01,-185.87],[-305.05,-183.45],[-303.74,-177.26],[-299.49,-170.91],[-293.09,-166.17],[-289.01,-163.73],[-281.15,-159.43],[-271.97,-153.74],[-260.3,-144.21],[-249.16,-126.58],[-237.7,-93.18],[-221.6,-78.43],[-210.19,-74.72],[-202.86,-72.97],[-200.54,-72.43],[-194.39,-70.57],[-181.28,-64.07],[-173.44,-56.02],[-169.39,-48.07],[-166.79,-33.2],[-170.04,-5.56],[-169.59,12.51],[-165.66,21.07],[-162.13,26.11],[-156.57,30.04],[-153.24,31.02],[-146.52,27],[-134.57,19.13],[-112.88,4.73],[-98.29,-4.73],[-89.53,-10.18],[-83.83,-13.07],[-83.36,-14.41],[-82.23,-15.5],[-79.04,-16.9],[-74.54,-19.6],[-63.43,-26.7],[-59.86,-31.62],[-61.31,-36.1],[-65.08,-44.68],[-73.05,-52.81],[-83.74,-58.39],[-92.25,-62.02],[-104.73,-66.17],[-128.2,-73.97],[-137.06,-83.14],[-138.41,-83.67],[-140.65,-85.97],[-143.48,-91.67],[-146.56,-100.3],[-149.87,-113.16],[-153.59,-128.13],[-158.99,-138.98],[-161.25,-144.93],[-169.46,-152.72],[-180.22,-160.02],[-202.28,-165.17],[-228.66,-165.54],[-253.64,-170.52],[-267.59,-175.23]],"v":[[-299,-187],[-302.22,-186.08],[-304,-185],[-304.39,-179.37],[-301,-173],[-295.12,-167.6],[-291,-165],[-283.74,-160.84],[-277,-157],[-264.03,-147.56],[-254,-135],[-241.77,-103.91],[-225,-80],[-213.99,-75.89],[-203,-73],[-201.35,-72.62],[-199,-72],[-185.48,-66.39],[-175,-58],[-170.65,-50.81],[-168,-42],[-168.95,-14.62],[-170,10],[-167.03,18.31],[-163,25],[-158.41,28.82],[-154,31],[-148.86,28.45],[-142,24],[-119.93,9.4],[-101,-3],[-92.44,-8.41],[-84,-13],[-83.52,-13.96],[-83,-15],[-80.12,-16.42],[-77,-18],[-66.97,-24.31],[-60,-31],[-60.74,-34.5],[-63,-40],[-70.19,-50.3],[-81,-57],[-89.4,-60.85],[-98,-64],[-120.73,-71.11],[-137,-83],[-137.95,-83.49],[-139,-84],[-142.6,-89.74],[-145,-96],[-148.8,-108.86],[-152,-122],[-158,-137],[-160,-143],[-166,-149],[-175,-157],[-195,-164],[-217,-165],[-252,-170],[-257,-171]],"c":true}],"h":1},{"t":74,"s":[{"i":[[-292.57,-188.65],[-303.05,-185.35],[-304.66,-181.65],[-298.95,-170.24],[-285.39,-161.95],[-279.5,-158.81],[-273.32,-155.68],[-270.64,-153.42],[-270.25,-152.19],[-269,-151.58],[-267.4,-151.33],[-258.89,-142.19],[-249.23,-123.96],[-241.51,-101.89],[-231.61,-83.59],[-207.31,-74.97],[-180.56,-65.5],[-173.27,-55.56],[-170.5,-50.59],[-168.37,-27.98],[-171.61,8.02],[-165.44,21.2],[-155.52,31.02],[-151.99,30.1],[-146.43,27.2],[-145.68,26.49],[-145.18,25.12],[-144.4,24.9],[-143.25,25.12],[-142.68,24.49],[-142.19,23.12],[-139.97,21.9],[-136.82,20.53],[-131.25,16.82],[-125.11,12.95],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-112.13,5.09],[-104.43,-0.81],[-89.7,-9.65],[-74.12,-20.14],[-69.37,-23.75],[-67.51,-23.77],[-66.34,-25.75],[-64.49,-25.78],[-63.26,-27.76],[-61.37,-27.67],[-61.96,-36.16],[-79.55,-58.61],[-122.28,-71.06],[-143.08,-88.96],[-153.12,-130.1],[-161.69,-142.58],[-162.48,-145.25],[-180.68,-161.46],[-235.91,-163.64],[-272.89,-179.81]],"o":[[-301.22,-186.02],[-304.77,-183.16],[-302.76,-174.02],[-290.27,-164.21],[-281.09,-159.48],[-275.62,-156.91],[-270.76,-153.83],[-270.38,-152.6],[-269.55,-151.66],[-267.92,-151.41],[-262.77,-147.46],[-252.11,-130.44],[-243.95,-109.85],[-235.33,-88.76],[-217.28,-76.97],[-188.95,-69.24],[-174.27,-57.01],[-171.39,-52.35],[-167.31,-40.49],[-170.52,-3.73],[-168.18,17.2],[-159.11,28.11],[-153.52,31],[-148.45,28.2],[-145.84,26.93],[-145.35,25.59],[-144.77,24.85],[-143.64,25.04],[-142.84,24.93],[-142.36,23.59],[-141.06,22.38],[-137.85,20.97],[-133.45,18.34],[-127.08,14.12],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-116.54,6.42],[-107.81,0.95],[-94.7,-7.02],[-79.77,-16.1],[-69.68,-22.15],[-68.54,-24.31],[-66.7,-24.14],[-65.57,-26.31],[-63.75,-26.11],[-62.64,-28.34],[-58.43,-30.26],[-68.15,-53.09],[-109.01,-68.27],[-138.37,-82.02],[-151.79,-109.97],[-160.23,-142.4],[-162.62,-143.83],[-170.09,-156.18],[-214.24,-167.86],[-263.9,-173.89],[-284.64,-185.94]],"v":[[-298,-187],[-303.91,-184.25],[-304,-179],[-294.61,-167.23],[-282,-160],[-277.56,-157.86],[-271,-154],[-270.51,-153.01],[-270,-152],[-268.46,-151.49],[-267,-151],[-255.5,-136.32],[-247,-118],[-238.42,-95.33],[-226,-81],[-198.13,-72.11],[-175,-58],[-172.33,-53.96],[-170,-49],[-169.44,-15.86],[-169,15],[-162.27,24.66],[-153,31],[-150.22,29.15],[-146,27],[-145.52,26.04],[-145,25],[-144.02,24.97],[-143,25],[-142.52,24.04],[-142,23],[-138.91,21.44],[-136,20],[-129.17,15.47],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-111,4],[-101,-3],[-83,-14],[-70,-22],[-69,-24],[-67,-24],[-66,-26],[-64,-26],[-63,-28],[-61,-28],[-63,-39],[-96,-64],[-131,-77],[-146,-96],[-160,-142],[-162,-143],[-163,-146],[-194,-164],[-256,-171],[-279,-183]],"c":true}],"h":1},{"t":75,"s":[{"i":[[-295.59,-187.7],[-303.06,-185.37],[-304.65,-181.62],[-300.83,-173.26],[-293.07,-166.71],[-282.92,-160.57],[-274.28,-156.43],[-270.64,-153.43],[-270.21,-152.2],[-269.08,-151.57],[-267.41,-151.34],[-264.28,-148.24],[-260.11,-142.58],[-257.5,-138.86],[-255.47,-135.82],[-247.63,-117.61],[-236.98,-89.53],[-229.89,-83.43],[-226.12,-81.55],[-203.92,-74.04],[-176.31,-62.95],[-169.26,-31.28],[-172.61,7.44],[-165.33,21.67],[-155.49,29.99],[-150.14,29],[-143.31,24.49],[-139.25,21.68],[-136.92,19.6],[-133.5,17.76],[-129.82,16.53],[-128.39,15.45],[-127.34,14.26],[-126,13.29],[-124.52,12.36],[-115.99,6.63],[-104.31,-0.88],[-91.25,-9.32],[-76.94,-18.8],[-69.98,-23.07],[-66.87,-24.41],[-63.63,-26.6],[-61.28,-28.98],[-61.04,-33.76],[-63.82,-41.78],[-73.95,-55],[-93.85,-63.72],[-113.24,-69.85],[-130.3,-76.98],[-136.95,-81.95],[-148.94,-104.08],[-154.65,-123.85],[-158.86,-139.76],[-161.3,-142.82],[-166.81,-149.16],[-170.33,-153.85],[-177.02,-158.87],[-196.18,-165.49],[-224.52,-165.73],[-265.13,-175.24],[-283.48,-184.65]],"o":[[-301.24,-186.06],[-304.77,-183.15],[-303.29,-176.16],[-295.72,-168.54],[-286.54,-162.36],[-276.79,-157.61],[-270.78,-153.83],[-270.35,-152.62],[-269.62,-151.65],[-267.97,-151.42],[-265.73,-149.95],[-261.48,-144.55],[-258.26,-139.95],[-256.1,-136.79],[-250.89,-127.84],[-240.68,-98.45],[-231.08,-84.16],[-227.41,-82.13],[-215.02,-76.06],[-184.57,-67.49],[-168.21,-44.25],[-171.46,-5.44],[-168.08,18.17],[-159.03,27.57],[-151.99,30.01],[-145.8,26.25],[-140.04,22.38],[-137.69,20.29],[-134.84,18.24],[-130.99,16.9],[-128.71,15.82],[-127.7,14.66],[-126.49,13.62],[-125.01,12.66],[-120.08,9.32],[-108.1,1.53],[-96.03,-6.17],[-81.71,-15.64],[-71.04,-22.62],[-67.89,-23.97],[-64.74,-25.86],[-61.9,-28.16],[-60.63,-31.37],[-62.63,-38.97],[-68.53,-50.63],[-86.61,-61.54],[-106.84,-67.86],[-124.97,-74.41],[-135.16,-80.95],[-146.59,-91.62],[-152.99,-119.86],[-157.47,-132.53],[-161.82,-142.85],[-163.62,-146.73],[-169.32,-153.03],[-174.68,-156.85],[-183.51,-162.56],[-214.45,-167.09],[-252.1,-168.32],[-279.04,-182.71],[-291.95,-187.18]],"v":[[-298,-187],[-303.92,-184.26],[-304,-179],[-298.27,-170.9],[-292,-166],[-279.86,-159.09],[-271,-154],[-270.49,-153.03],[-270,-152],[-268.53,-151.49],[-267,-151],[-262.88,-146.39],[-259,-141],[-256.8,-137.83],[-255,-135],[-244.15,-108.03],[-232,-85],[-228.65,-82.78],[-225,-81],[-194.25,-70.76],[-172,-53],[-170.36,-18.36],[-169,16],[-162.18,24.62],[-153,30],[-147.97,27.62],[-141,23],[-138.47,20.98],[-136,19],[-132.25,17.33],[-129,16],[-128.04,15.05],[-127,14],[-125.5,12.98],[-124,12],[-112.05,4.08],[-101,-3],[-86.48,-12.48],[-72,-22],[-68.94,-23.52],[-66,-25],[-62.76,-27.38],[-61,-30],[-61.84,-36.36],[-65,-44],[-80.28,-58.27],[-101,-66],[-119.11,-72.13],[-134,-80],[-138,-83],[-152,-116],[-156,-128],[-161,-142],[-162,-144],[-168,-151],[-172,-155],[-179,-160],[-202,-166],[-238,-167],[-274,-180],[-288,-186]],"c":true}],"h":1},{"t":76,"s":[{"i":[[-293.42,-190.25],[-301.87,-185.69],[-302.64,-185.49],[-303.61,-175.97],[-290.66,-166.03],[-285.51,-162.85],[-280.35,-159.78],[-276.2,-157.39],[-272,-154.78],[-270.09,-153.14],[-268.6,-151.5],[-265.87,-149.17],[-264.53,-147.18],[-263.5,-145.69],[-262.12,-145.15],[-259.65,-141.94],[-256.75,-137.31],[-248.37,-117.44],[-236.21,-88.48],[-218.17,-78.9],[-200.34,-74.03],[-191.89,-70.64],[-187.86,-68.44],[-185.63,-67.62],[-183.59,-67.42],[-179.12,-63.54],[-173.96,-56.19],[-169.67,-34.86],[-173.25,-2.69],[-169.46,15.18],[-161.36,24.9],[-151.96,29.77],[-145.16,25.69],[-139.28,21.7],[-136.89,19.58],[-133.52,17.77],[-129.82,16.53],[-127.34,14.75],[-124.85,12.58],[-115.89,6.57],[-104.11,-1.01],[-91.25,-9.32],[-76.98,-18.78],[-69.7,-23.22],[-66.8,-24.38],[-63.85,-26.61],[-62.37,-29.16],[-66.03,-45.88],[-68.31,-50.2],[-82.17,-59.31],[-103.93,-68.04],[-120.94,-73.45],[-137.55,-82.18],[-144.89,-91.93],[-151.34,-112.26],[-159.28,-135.72],[-163.68,-146.22],[-174.23,-156.28],[-183.25,-162.34],[-217.91,-165.97],[-264.57,-174.85]],"o":[[-301.55,-185.69],[-302.42,-185.59],[-306.28,-180.45],[-295.8,-168.76],[-287.33,-163.96],[-282.02,-160.77],[-277.7,-158.25],[-273.35,-155.65],[-270.54,-153.64],[-269.12,-152.07],[-266.6,-149.83],[-264.83,-147.85],[-263.94,-145.86],[-262.59,-145.33],[-260.78,-143.53],[-257.64,-138.83],[-251.52,-128.2],[-240.72,-97.58],[-224,-80.89],[-206.34,-75.47],[-193.46,-71.42],[-189.09,-69.15],[-186.33,-67.66],[-184.26,-67.49],[-181.14,-65.7],[-175.53,-58.79],[-169.3,-45.52],[-171.65,-13.45],[-171.28,10.99],[-164.5,22.14],[-154.13,29.42],[-147.47,27.9],[-140.09,22.41],[-137.69,20.29],[-134.86,18.26],[-131,16.91],[-128.16,15.46],[-125.68,13.31],[-120.09,9.32],[-107.91,1.4],[-96.01,-6.18],[-81.74,-15.62],[-70.8,-22.78],[-67.7,-24.02],[-64.66,-26.03],[-62.7,-28.18],[-60.8,-36.93],[-68.7,-48.75],[-72.8,-55.45],[-95.32,-65.37],[-116.98,-71.66],[-132.69,-79.37],[-143.4,-89.82],[-150.49,-102.36],[-155.82,-128.67],[-163.05,-143.03],[-167.6,-151.51],[-179.19,-159.36],[-198.15,-167.98],[-251.59,-168.27],[-283.49,-184.21]],"v":[[-301,-186],[-302.15,-185.64],[-303,-185],[-299.7,-172.36],[-289,-165],[-283.76,-161.81],[-279,-159],[-274.77,-156.52],[-271,-154],[-269.6,-152.6],[-268,-151],[-265.35,-148.51],[-264,-146],[-263.05,-145.51],[-262,-145],[-258.65,-140.38],[-256,-136],[-244.54,-107.51],[-229,-84],[-212.25,-77.19],[-195,-72],[-190.49,-69.89],[-187,-68],[-184.94,-67.56],[-183,-67],[-177.32,-61.16],[-173,-54],[-170.66,-24.16],[-172,6],[-166.98,18.66],[-158,27],[-149.72,28.84],[-141,23],[-138.49,20.99],[-136,19],[-132.26,17.34],[-129,16],[-126.51,14.03],[-124,12],[-111.9,3.98],[-101,-3],[-86.49,-12.47],[-72,-22],[-68.7,-23.62],[-66,-25],[-63.28,-27.39],[-62,-31],[-68,-48],[-69,-51],[-88,-62],[-111,-70],[-126,-76],[-142,-88],[-146,-94],[-154,-122],[-162,-141],[-165,-148],[-177,-158],[-185,-163],[-233,-167],[-277,-181]],"c":true}],"h":1},{"t":77,"s":[{"i":[[-300.04,-186.53],[-302.13,-185.71],[-303.72,-185.5],[-304.68,-182.16],[-302.54,-176.14],[-297.01,-169.99],[-291.56,-166.71],[-281.17,-160.41],[-265.4,-149.45],[-261.59,-144.05],[-261.34,-142.46],[-259.65,-140.58],[-257.39,-138.64],[-255.14,-134.26],[-252.86,-128],[-245.87,-109.17],[-233.84,-86.16],[-223.36,-81.45],[-217.89,-79.59],[-199.37,-74.46],[-178.85,-64.63],[-170.15,-35.5],[-173.52,4.39],[-168.38,16.45],[-161.55,23.52],[-159.36,25.45],[-158.5,25.66],[-153.91,29.13],[-149.97,28.86],[-143.15,24.59],[-137.81,21.17],[-117.53,7.88],[-94.82,-7.11],[-81.74,-15.25],[-77.42,-17.6],[-76.04,-18.7],[-74.42,-19.59],[-69.18,-23.39],[-62.54,-27.78],[-62.03,-33.43],[-64.25,-40.03],[-66.5,-45.87],[-69.02,-50.87],[-87.07,-63.12],[-122.59,-73.22],[-136.25,-81.92],[-141.63,-87.15],[-150.35,-103.85],[-156.35,-129.95],[-164.06,-145.27],[-172.61,-155.42],[-177.33,-158.52],[-180.48,-160.26],[-187.18,-163.29],[-195.61,-165.51],[-212.94,-167.14],[-233.77,-167.25],[-248.51,-169.14],[-258.24,-171.97],[-271.24,-178.17],[-285.99,-186.25]],"o":[[-301.52,-185.71],[-303.23,-185.6],[-304.66,-183.84],[-303.62,-178.31],[-299.48,-171.88],[-293.05,-167.4],[-286.97,-163.68],[-270.39,-153.29],[-261.67,-144.57],[-261.42,-143],[-260.46,-141.25],[-258.12,-139.27],[-255.95,-136.26],[-253.59,-130.13],[-248.69,-118.34],[-238.44,-93.08],[-225.17,-82.15],[-219.72,-80.17],[-207.7,-76.4],[-184.95,-68.58],[-169.89,-49.19],[-171.97,-8.71],[-170.35,13.95],[-163.97,21.24],[-159.61,25.37],[-158.8,25.59],[-155.17,27.96],[-151.31,29.58],[-145,25.75],[-139.56,22.3],[-125.12,12.93],[-102.38,-2.14],[-83.28,-14.46],[-78.81,-16.82],[-76.58,-18.4],[-74.96,-19.29],[-71.91,-22],[-64.5,-26.28],[-61.66,-31.41],[-63.33,-37.73],[-65.74,-43.93],[-68.14,-49.33],[-76.28,-59.25],[-110.23,-70.1],[-134.19,-80.34],[-139.97,-85.33],[-147.93,-95.63],[-154.57,-121.02],[-161.5,-141.31],[-169.61,-152.32],[-176.34,-157.89],[-179.4,-159.7],[-184.63,-162.28],[-192.67,-164.9],[-206.06,-167.02],[-226.8,-167.26],[-244.89,-168.4],[-255.18,-170.92],[-266.49,-175.05],[-280.99,-183.77],[-295.63,-187.45]],"v":[[-301,-186],[-302.68,-185.66],[-304,-185],[-304.15,-180.24],[-301,-174],[-295.03,-168.69],[-292,-167],[-275.78,-156.85],[-262,-145],[-261.51,-143.53],[-261,-142],[-258.88,-139.93],[-257,-138],[-254.36,-132.19],[-252,-126],[-242.15,-101.13],[-227,-83],[-221.54,-80.81],[-216,-79],[-192.16,-71.52],[-175,-58],[-171.06,-22.1],[-171,12],[-166.18,18.85],[-160,25],[-159.08,25.52],[-158,26],[-152.61,29.36],[-147,27],[-141.36,23.45],[-136,20],[-109.95,2.87],[-84,-14],[-80.28,-16.04],[-77,-18],[-75.5,-18.99],[-74,-20],[-66.84,-24.83],[-62,-30],[-62.68,-35.58],[-65,-42],[-67.32,-47.6],[-70,-52],[-98.65,-66.61],[-132,-79],[-138.11,-83.62],[-143,-89],[-152.46,-112.43],[-160,-138],[-166.83,-148.8],[-175,-157],[-178.36,-159.11],[-182,-161],[-189.93,-164.1],[-199,-166],[-219.87,-167.2],[-241,-168],[-251.85,-170.03],[-261,-173],[-276.11,-180.97],[-292,-187]],"c":true}],"h":1},{"t":78,"s":[{"i":[[-300.31,-186.46],[-301.86,-185.7],[-302.72,-185.58],[-304.28,-179.8],[-301.01,-175.34],[-294.52,-168.48],[-284.77,-162.74],[-279.47,-159.31],[-275.74,-156.56],[-274.05,-155.61],[-272.41,-155.33],[-266.87,-150.21],[-259.85,-141.1],[-248.94,-116.37],[-234.48,-86.19],[-221.32,-81.17],[-217.26,-80.39],[-195.23,-74.25],[-172.64,-57.89],[-171.22,-26.27],[-173.93,4.39],[-169.33,15.26],[-164.9,20.31],[-159.74,24.93],[-153.05,29.08],[-148.11,27.94],[-142.27,23.48],[-136.04,19.45],[-130.43,15.91],[-118.39,8.19],[-105,-0.48],[-97.1,-5.46],[-91.75,-8.88],[-86.1,-12.44],[-81.15,-15.52],[-77.48,-17.94],[-75.69,-18.69],[-74.68,-19.51],[-74.19,-20.88],[-71.99,-22.07],[-69.01,-23.33],[-65.71,-25.4],[-63.4,-27.65],[-62.97,-33.58],[-65.16,-44.27],[-68.56,-50.06],[-73.92,-56.11],[-97.3,-66.86],[-138.85,-81.34],[-152.52,-107.96],[-156.42,-126.25],[-160.18,-133.98],[-161.91,-141.04],[-164.56,-144.41],[-172.97,-155.73],[-178.63,-159.75],[-180.49,-159.77],[-181.56,-161.78],[-184.65,-162.86],[-235.96,-165.35],[-283.39,-187.51]],"o":[[-301.5,-185.67],[-302.47,-185.66],[-304.52,-181.88],[-302.52,-176.53],[-297.63,-170.86],[-288.09,-164.42],[-280.85,-160.28],[-276.92,-157.45],[-274.6,-155.69],[-272.96,-155.43],[-269.44,-152.91],[-262.07,-144.3],[-252.2,-128.27],[-240.08,-95.33],[-222.69,-81.48],[-218.6,-80.63],[-205.66,-76.81],[-178.72,-64.8],[-169.76,-36.97],[-173.31,-5.59],[-170.38,13.61],[-166.59,18.61],[-161.72,23.14],[-155.41,27.9],[-149.72,28.95],[-144.38,25.21],[-138.08,20.75],[-132.21,17.03],[-123.39,11.43],[-109.2,2.23],[-98.97,-4.27],[-93.48,-7.76],[-87.78,-11.43],[-82.79,-14.48],[-78.14,-17.59],[-76.26,-18.49],[-74.83,-19.07],[-74.36,-20.41],[-72.98,-21.65],[-70,-22.9],[-66.76,-24.83],[-64.03,-26.82],[-62.64,-30.2],[-64.23,-40.62],[-66.85,-47.75],[-72.1,-54.24],[-83.12,-63.68],[-125.17,-75.69],[-149.97,-99.47],[-156.24,-121.53],[-158.6,-132.8],[-161.9,-138.24],[-163.26,-143.46],[-168.86,-150.16],[-178.32,-158.15],[-179.46,-160.31],[-181.36,-160.16],[-182.79,-162.4],[-203.17,-170.18],[-268.74,-175.07],[-300.3,-186.96]],"v":[[-301,-186],[-302.17,-185.68],[-303,-185],[-303.4,-178.17],[-300,-174],[-291.3,-166.45],[-282,-161],[-278.19,-158.38],[-275,-156],[-273.51,-155.52],[-272,-155],[-264.47,-147.26],[-258,-138],[-244.51,-105.85],[-224,-82],[-219.96,-80.9],[-216,-80],[-186.97,-69.53],[-171,-46],[-172.27,-15.93],[-171,12],[-167.96,16.93],[-163,22],[-157.58,26.42],[-151,29],[-146.24,26.57],[-140,22],[-134.13,18.24],[-129,15],[-113.8,5.21],[-101,-3],[-95.29,-6.61],[-90,-10],[-84.45,-13.46],[-79,-17],[-76.87,-18.21],[-75,-19],[-74.52,-19.96],[-74,-21],[-70.99,-22.49],[-68,-24],[-64.87,-26.11],[-63,-29],[-63.6,-37.1],[-66,-46],[-70.33,-52.15],[-75,-57],[-111.23,-71.27],[-146,-93],[-155,-117],[-158,-131],[-161,-136],[-163,-143],[-165,-145],[-178,-158],[-179,-160],[-181,-160],[-182,-162],[-185,-163],[-255,-171],[-299,-187]],"c":true}],"h":1},{"t":79,"s":[{"i":[[-294.15,-190.53],[-302.1,-185.71],[-303.81,-185.52],[-304.32,-180.4],[-301,-174.21],[-298.35,-171.57],[-295.79,-170.57],[-292.99,-168.25],[-291.28,-166.18],[-290,-165.57],[-288.38,-165.22],[-284.47,-162.93],[-279.27,-159.79],[-277.36,-158.43],[-276.32,-157.22],[-274.3,-156.01],[-271.74,-154.65],[-259.61,-140.16],[-248.32,-113.86],[-243.6,-102.46],[-241.55,-97.57],[-240.53,-96.36],[-240.35,-95.54],[-236.01,-89.86],[-228.96,-85.35],[-224.19,-82.94],[-221.92,-81.32],[-218.78,-80.55],[-214.99,-80.27],[-202.31,-76.44],[-187.6,-71.53],[-176.84,-63.06],[-174.85,-17.59],[-171.02,12.67],[-163.15,22.47],[-152.27,29.69],[-138.14,21.02],[-129.01,15.5],[-121.98,10.89],[-119.38,8.24],[-114.86,6.13],[-88.39,-10.84],[-63.59,-26.25],[-64.11,-41.61],[-71.53,-53.72],[-78.18,-59.32],[-102.59,-69.27],[-129.49,-77.59],[-132.82,-80.3],[-137.44,-84.75],[-142.19,-87.11],[-144.14,-90.8],[-154.89,-130.28],[-174.09,-156.51],[-177.52,-157.78],[-178.63,-159.75],[-180.49,-159.77],[-181.57,-161.77],[-190.82,-165],[-241.18,-167.27],[-267.12,-176.2]],"o":[[-301.44,-185.71],[-303.28,-185.62],[-304.82,-182.8],[-302.41,-176.11],[-299.2,-172.04],[-296.64,-170.84],[-293.85,-169.16],[-291.71,-166.76],[-290.56,-165.71],[-288.91,-165.32],[-286.33,-164.03],[-280.94,-160.81],[-277.7,-158.81],[-276.67,-157.63],[-275.18,-156.43],[-272.58,-155.12],[-264.45,-148.24],[-251.55,-122.97],[-244.33,-104.42],[-242.21,-99.03],[-240.61,-96.59],[-240.4,-95.84],[-238.03,-91.93],[-231.47,-86.57],[-224.97,-83.53],[-222.66,-81.83],[-220.04,-80.67],[-216.26,-80.35],[-207.1,-78.13],[-192.68,-72.71],[-181.65,-65.83],[-168.48,-39.36],[-173.55,6.21],[-165.46,20.65],[-151.62,29.51],[-141.74,23.5],[-131.47,16.73],[-124.56,12.17],[-119.67,9.85],[-117.14,6.81],[-98.79,-3.64],[-69.8,-22.67],[-62.35,-29.94],[-67.19,-48.76],[-75.91,-57.52],[-91.13,-67.03],[-118.75,-74.55],[-132.85,-80.82],[-136.44,-82.45],[-140.42,-87.13],[-143.68,-88.75],[-156.1,-107.48],[-168.69,-150.47],[-176.4,-158.31],[-178.32,-158.15],[-179.46,-160.31],[-181.36,-160.16],[-185.82,-164.06],[-213.04,-170.3],[-262.86,-173.37],[-278.94,-181.68]],"v":[[-301,-186],[-302.69,-185.67],[-304,-185],[-303.36,-178.26],[-300,-173],[-297.49,-171.21],[-295,-170],[-292.35,-167.51],[-291,-166],[-289.45,-165.45],[-288,-165],[-282.7,-161.87],[-278,-159],[-277.02,-158.03],[-276,-157],[-273.44,-155.56],[-271,-154],[-255.58,-131.57],[-245,-106],[-242.91,-100.74],[-241,-97],[-240.47,-96.1],[-240,-95],[-233.74,-88.21],[-226,-84],[-223.42,-82.39],[-221,-81],[-217.52,-80.45],[-214,-80],[-196,-74],[-186,-70],[-174,-55],[-174,-2],[-168,17],[-159,25],[-146,26],[-135,19],[-127,14],[-120,10],[-119,8],[-113,5],[-74,-20],[-63,-28],[-66,-46],[-73,-55],[-81,-61],[-114,-73],[-132,-80],[-134,-81],[-139,-86],[-143,-88],[-145,-92],[-167,-148],[-176,-158],[-178,-158],[-179,-160],[-181,-160],[-182,-162],[-195,-166],[-258,-172],[-271,-178]],"c":true}],"h":1},{"t":80,"s":[{"i":[[-300.34,-186.43],[-301.87,-185.71],[-302.72,-185.58],[-302.31,-175.24],[-288.21,-165.28],[-283.24,-162.39],[-279.32,-159.92],[-271.96,-154.39],[-264.32,-145.92],[-262.49,-142.68],[-261.12,-142.19],[-260.32,-140.74],[-259.31,-138.52],[-256.78,-133.84],[-253.96,-127.27],[-252.06,-123.08],[-250.42,-120.06],[-249.24,-116.31],[-248.47,-112.15],[-247.12,-109.13],[-245.48,-106.08],[-240.56,-96.14],[-231.87,-86.76],[-222.16,-82.54],[-213.61,-79.71],[-202.81,-77.09],[-191.06,-73.84],[-187.01,-71.16],[-185.44,-69.37],[-181.26,-65.77],[-177.07,-60.94],[-174.16,-55],[-172.26,-47.52],[-172.69,-26.34],[-175.06,3.73],[-167.37,17.73],[-153.76,28.15],[-147.21,27.16],[-141.15,23.4],[-132.84,17.85],[-125.4,12.58],[-120.91,9.85],[-117.95,8.6],[-105.45,-0.21],[-93.71,-7.62],[-83.19,-14.12],[-70.79,-21.88],[-64.79,-26.07],[-64.53,-38.29],[-76.17,-58.18],[-85.64,-63.34],[-100.16,-70.2],[-109.61,-72.61],[-134.93,-80.65],[-153.1,-108.77],[-164.54,-143.72],[-172.76,-153.78],[-196.36,-168.02],[-228.29,-168.46],[-256.26,-171.21],[-283.58,-186.77]],"o":[[-301.5,-185.67],[-302.48,-185.66],[-305.46,-179.86],[-293.68,-167.95],[-284.58,-163.18],[-280.61,-160.76],[-275.05,-156.93],[-266.59,-148.89],[-262.92,-142.83],[-261.58,-142.36],[-260.66,-141.48],[-259.64,-139.26],[-257.8,-135.95],[-254.85,-129.49],[-252.6,-124.05],[-250.96,-121.08],[-249.5,-117.73],[-248.72,-113.52],[-247.62,-110.09],[-246.05,-107.12],[-242.87,-100.26],[-235.06,-89.39],[-225.11,-83.68],[-216.42,-80.56],[-207.03,-77.92],[-194.82,-75.05],[-187.54,-71.72],[-185.96,-69.98],[-182.97,-67.3],[-178.31,-62.59],[-175.03,-57.24],[-172.77,-50.14],[-171.16,-36.7],[-174.64,-6.12],[-170.99,13.41],[-158.75,25.1],[-148.88,27.96],[-143.35,24.88],[-135.65,19.81],[-127.72,14.23],[-121.93,10.3],[-118.92,9],[-111.64,4.61],[-96.39,-5.9],[-85.56,-12.85],[-75.41,-19.46],[-65.82,-25.66],[-62.99,-32.75],[-69.48,-54.15],[-84.86,-63.53],[-93.14,-66.97],[-107.68,-72.52],[-123.86,-76.57],[-151.41,-97.71],[-160.09,-132.49],[-171.47,-151.69],[-182.82,-163.68],[-218.25,-169.49],[-247.15,-169.63],[-276.55,-178.52],[-300.29,-187.02]],"v":[[-301,-186],[-302.17,-185.69],[-303,-185],[-298,-171.6],[-286,-164],[-281.92,-161.57],[-278,-159],[-269.27,-151.64],[-263,-143],[-262.04,-142.52],[-261,-142],[-259.98,-140],[-259,-138],[-255.82,-131.66],[-253,-125],[-251.51,-122.08],[-250,-119],[-248.98,-114.91],[-248,-111],[-246.58,-108.12],[-245,-105],[-237.81,-92.76],[-228,-85],[-219.29,-81.55],[-211,-79],[-198.82,-76.07],[-188,-72],[-186.48,-70.57],[-185,-69],[-179.78,-64.18],[-176,-59],[-173.46,-52.57],[-172,-45],[-173.67,-16.23],[-172,11],[-163.06,21.42],[-150,28],[-145.28,26.02],[-139,22],[-130.28,16.04],[-123,11],[-119.91,9.43],[-117,8],[-101,-3],[-90,-10],[-79,-17],[-68,-24],[-64,-29],[-66,-43],[-84,-63],[-87,-64],[-106,-72],[-111,-73],[-143,-89],[-157,-122],[-170,-150],[-174,-155],[-211,-169],[-237,-169],[-264,-174],[-299,-187]],"c":true}],"h":1},{"t":81,"s":[{"i":[[-299.4,-186.31],[-300.63,-185.96],[-301.8,-186.16],[-304.78,-181.05],[-300.65,-174.83],[-297.37,-171.59],[-292.75,-168.72],[-291.36,-167.54],[-290.53,-167.35],[-282.95,-162.38],[-275.69,-157.19],[-270.85,-152.98],[-269,-150.24],[-266.92,-147.85],[-265.39,-146.51],[-258.68,-136.39],[-251.81,-120.02],[-244.3,-102.24],[-235.54,-90.09],[-223.91,-84.13],[-210.5,-80.31],[-189.92,-73.42],[-174.26,-57.77],[-172.88,-33.25],[-175.93,-8.13],[-173.89,5.63],[-170.94,12.53],[-169.43,14.92],[-168.31,16.65],[-163.1,21.24],[-151.17,28.12],[-147.65,27.55],[-145.02,25.68],[-140.2,22.53],[-134.66,19.05],[-129.95,16.08],[-126.14,13.71],[-124.36,12.42],[-123.33,11.21],[-120.94,9.88],[-117.91,8.58],[-112.51,4.92],[-105.69,-0.02],[-101.03,-2.76],[-97.43,-5.08],[-89.08,-10.58],[-78.59,-17.67],[-66.26,-24.01],[-69.32,-50.81],[-88.25,-66.05],[-138.33,-80.77],[-154.72,-110.34],[-159.6,-125.88],[-163.04,-139.25],[-166.71,-143.62],[-167.49,-146.26],[-176.96,-157.49],[-182.33,-161.59],[-189.29,-164.66],[-226.39,-167.97],[-278.74,-184.87]],"o":[[-300.23,-185.88],[-301.42,-186.1],[-304.95,-183.64],[-302.63,-176.65],[-299,-172.73],[-294.25,-169.58],[-291.6,-167.61],[-290.83,-167.41],[-285.86,-164.28],[-277.87,-158.83],[-271.6,-153.86],[-269.55,-151.17],[-267.48,-148.35],[-265.87,-146.93],[-261.28,-141.13],[-253.95,-125.84],[-246.78,-107.44],[-238.68,-93.57],[-228.16,-85.73],[-215.08,-81.42],[-197.54,-76.53],[-178.28,-64.04],[-171.91,-41.43],[-174.89,-16.6],[-174.67,2.86],[-172.03,10.46],[-169.78,14.34],[-168.7,16.07],[-166.76,18.43],[-155.3,26.09],[-148.38,27.97],[-145.96,26.41],[-142.12,23.76],[-136.47,20.18],[-131.38,16.98],[-127.33,14.45],[-124.7,12.81],[-123.68,11.62],[-121.98,10.35],[-118.9,9],[-114.91,6.68],[-107.9,1.57],[-102.32,-1.97],[-98.58,-4.31],[-92.54,-8.24],[-82.11,-15.29],[-70.14,-23.16],[-62.19,-36.89],[-79.66,-63.14],[-119.74,-76.63],[-152.68,-101.88],[-158.19,-122],[-162.39,-134.1],[-165.19,-143.36],[-167.62,-144.82],[-171.89,-152.67],[-181.6,-160.37],[-187.89,-165.03],[-210.08,-170.59],[-269.01,-172.38],[-299.25,-187.14]],"v":[[-300,-186],[-301.02,-186.03],[-302,-186],[-303.7,-178.85],[-300,-174],[-295.81,-170.58],[-292,-168],[-291.1,-167.47],[-290,-167],[-280.41,-160.61],[-273,-155],[-270.2,-152.07],[-268,-149],[-266.4,-147.39],[-265,-146],[-256.32,-131.11],[-249,-113],[-241.49,-97.9],[-232,-88],[-219.5,-82.78],[-206,-79],[-184.1,-68.73],[-173,-49],[-173.89,-24.92],[-175,0],[-172.96,8.05],[-170,14],[-169.06,15.49],[-168,17],[-159.2,23.66],[-149,28],[-146.8,26.98],[-144,25],[-138.34,21.35],[-133,18],[-128.64,15.27],[-125,13],[-124.02,12.02],[-123,11],[-119.92,9.44],[-117,8],[-110.2,3.24],[-104,-1],[-99.81,-3.54],[-96,-6],[-85.59,-12.93],[-75,-20],[-65,-28],[-72,-54],[-100,-70],[-148,-95],[-157,-118],[-161,-130],[-165,-143],[-167,-144],[-168,-147],[-181,-160],[-183,-162],[-194,-166],[-246,-170],[-298,-187]],"c":true}],"h":1},{"t":82,"s":[{"i":[[-299.41,-186.3],[-300.63,-185.96],[-301.8,-186.16],[-303.76,-184.31],[-304.26,-181.43],[-303.23,-178.15],[-301.37,-176.59],[-295.66,-169.85],[-286.5,-164.65],[-274.79,-156.29],[-263.6,-144.37],[-255.82,-128.83],[-246.9,-106.15],[-240.74,-95.87],[-235.56,-90.71],[-233.68,-89.48],[-233.21,-88.12],[-230.38,-86.71],[-227.01,-85.43],[-219.2,-82.75],[-209.1,-80.87],[-187.44,-73.29],[-173.36,-53.44],[-174.05,-25.46],[-176.09,0.33],[-173.17,8.95],[-170.81,12.9],[-164.45,19.81],[-152.09,27.12],[-145.64,26.12],[-140.13,22.38],[-133.46,18.15],[-126.63,14.02],[-124.36,12.42],[-123.33,11.21],[-120.94,9.88],[-117.85,8.54],[-112.49,4.91],[-105.7,-0.01],[-101.08,-2.74],[-97.29,-5.16],[-92.09,-8.45],[-84.87,-12.84],[-79.4,-16.42],[-74.17,-20.24],[-69.67,-22.92],[-65.4,-25.85],[-64.86,-33.59],[-67.53,-46.97],[-70.24,-52.9],[-94.45,-68.69],[-141.48,-83.98],[-157.92,-125.33],[-165.97,-142.09],[-171.13,-149.81],[-174.95,-155.74],[-178.18,-158.37],[-192.1,-167.1],[-243.23,-168.13],[-272.24,-178.46],[-290.31,-186.01]],"o":[[-300.24,-185.88],[-301.41,-186.1],[-303.13,-185.1],[-304.33,-182.48],[-303.79,-178.85],[-302.02,-177.01],[-298.66,-172.27],[-289.58,-166.03],[-279.24,-159.86],[-266.97,-148.55],[-258.62,-136.01],[-249.96,-113.9],[-242.46,-98.27],[-237.3,-92.09],[-233.82,-89.92],[-233.37,-88.58],[-231.62,-87.24],[-228.07,-85.81],[-222.65,-83.56],[-212.43,-81.4],[-195.51,-77.06],[-176.37,-61.48],[-172.76,-34.37],[-175.72,-8.11],[-173.76,7.75],[-171.7,11.52],[-168.16,16.5],[-156.42,25.12],[-147.32,26.93],[-142.04,23.85],[-135.9,19.64],[-128.83,15.33],[-124.7,12.81],[-123.68,11.62],[-122.02,10.37],[-118.86,8.97],[-114.89,6.67],[-107.9,1.57],[-102.43,-1.91],[-98.51,-4.37],[-94.41,-7.03],[-87.32,-11.35],[-81.32,-15.05],[-75.83,-19.01],[-71.47,-21.99],[-66.64,-24.85],[-64.34,-28.86],[-66.45,-42.65],[-69.31,-50.85],[-81.95,-66.06],[-126.13,-78.77],[-157.68,-110.64],[-164.66,-140.49],[-169.13,-147.97],[-175.2,-154.56],[-178.03,-157.63],[-183.52,-162.49],[-216.3,-171.56],[-267.1,-174.67],[-283.75,-183.53],[-299.24,-187.16]],"v":[[-300,-186],[-301.02,-186.03],[-302,-186],[-304.04,-183.39],[-304,-180],[-302.62,-177.58],[-301,-176],[-292.62,-167.94],[-284,-163],[-270.88,-152.42],[-261,-140],[-252.89,-121.37],[-244,-101],[-239.02,-93.98],[-234,-90],[-233.53,-89.03],[-233,-88],[-229.23,-86.26],[-226,-85],[-215.81,-82.07],[-206,-80],[-181.9,-67.38],[-173,-42],[-174.88,-16.79],[-174,7],[-172.43,10.24],[-170,14],[-160.44,22.47],[-149,27],[-143.84,24.99],[-138,21],[-131.15,16.74],[-125,13],[-124.02,12.02],[-123,11],[-119.9,9.43],[-117,8],[-110.2,3.24],[-104,-1],[-99.79,-3.55],[-96,-6],[-89.71,-9.9],[-83,-14],[-77.62,-17.71],[-73,-21],[-68.15,-23.88],[-65,-27],[-65.65,-38.12],[-68,-48],[-73,-56],[-108,-73],[-150,-98],[-164,-139],[-167,-144],[-173,-152],[-177,-157],[-179,-159],[-197,-168],[-261,-173],[-278,-181],[-298,-187]],"c":true}],"h":1},{"t":83,"s":[{"i":[[-292.98,-189.53],[-300.94,-185.96],[-302.77,-186.23],[-304.26,-184.64],[-304.33,-181.96],[-300.45,-173.91],[-289.99,-167.34],[-284.71,-163.59],[-280.24,-159.92],[-274.19,-155.52],[-268.17,-149.59],[-266.49,-146.68],[-265.12,-146.18],[-264.9,-145.4],[-265.11,-144.25],[-264.49,-143.68],[-263.12,-143.19],[-262.91,-142.39],[-263.12,-141.26],[-262.48,-140.68],[-261.12,-140.21],[-257.18,-132.46],[-252.17,-119.99],[-248.97,-111.58],[-246.08,-104.1],[-244.17,-101.01],[-242.37,-99.57],[-240.66,-96.49],[-238.78,-92.76],[-237.43,-91.67],[-236.07,-91.05],[-231.05,-87.61],[-209.04,-81.72],[-181.36,-70.07],[-182.75,-7.68],[-161.63,20.89],[-150,27.13],[-145.63,25.7],[-138.73,22.14],[-134.27,17.82],[-128.66,15.06],[-111.6,4.65],[-104.93,-0.46],[-98.9,-4.12],[-86.52,-11.81],[-75.42,-19.6],[-67,-24.03],[-66.17,-43.76],[-72.11,-54.05],[-75.12,-58.58],[-79.03,-62.33],[-96.32,-70.26],[-129.6,-79.6],[-154.74,-106.92],[-163.52,-137.52],[-169.75,-147.25],[-177.39,-157.92],[-182.65,-161.75],[-223.76,-168.72],[-262.72,-174.34],[-270.44,-176.35]],"o":[[-300.3,-185.85],[-302.17,-186.16],[-303.85,-185.16],[-304.5,-183.04],[-303.45,-176.73],[-293.72,-169.21],[-286.34,-164.87],[-281.66,-161.11],[-276.6,-157.22],[-269.97,-151.7],[-266.93,-146.84],[-265.59,-146.35],[-264.85,-145.77],[-265.04,-144.64],[-264.92,-143.83],[-263.58,-143.36],[-262.85,-142.76],[-263.04,-141.64],[-262.92,-140.83],[-261.58,-140.37],[-259.1,-136.71],[-253.72,-124.1],[-249.93,-114.29],[-247.04,-106.49],[-244.73,-101.48],[-242.98,-100.06],[-241.27,-97.86],[-239.42,-93.94],[-237.9,-91.9],[-236.52,-91.25],[-232.85,-88.91],[-219.17,-82.88],[-189.66,-75.17],[-168.37,-40.07],[-169.07,16.1],[-152.65,25.1],[-146.32,26.89],[-141.21,22.84],[-135.5,20.02],[-130.7,15.51],[-118.93,8.84],[-105.28,0.53],[-100.7,-2.91],[-92.02,-8.58],[-79.67,-16.07],[-69.54,-23],[-64.4,-31.71],[-70.07,-52.36],[-74.91,-57.05],[-78.14,-60.86],[-87.42,-68.12],[-115.94,-76.45],[-150.63,-93.92],[-161.24,-128.42],[-167.92,-145.71],[-174.55,-153.97],[-182.31,-160.14],[-198.64,-173.24],[-255.13,-171.67],[-268.86,-176.72],[-279.12,-179.96]],"v":[[-300,-186],[-301.55,-186.06],[-303,-186],[-304.38,-183.84],[-304,-180],[-297.08,-171.56],[-288,-166],[-283.18,-162.35],[-279,-159],[-272.08,-153.61],[-267,-147],[-266.04,-146.52],[-265,-146],[-264.97,-145.02],[-265,-144],[-264.04,-143.52],[-263,-143],[-262.97,-142.02],[-263,-141],[-262.03,-140.52],[-261,-140],[-255.45,-128.28],[-251,-117],[-248.01,-109.04],[-245,-102],[-243.57,-100.54],[-242,-99],[-240.04,-95.22],[-238,-92],[-236.98,-91.46],[-236,-91],[-227,-86],[-201,-79],[-177,-60],[-172,11],[-155,24],[-148,27],[-143,24],[-137,21],[-133,17],[-127,14],[-106,1],[-104,-1],[-96,-6],[-83,-14],[-73,-21],[-66,-27],[-69,-50],[-73,-55],[-77,-60],[-80,-63],[-105,-73],[-139,-86],[-159,-121],[-167,-144],[-171,-149],[-182,-160],[-183,-162],[-248,-171],[-267,-176],[-272,-177]],"c":true}],"h":1},{"t":84,"s":[{"i":[[-298.13,-185.96],[-301.29,-185.43],[-303.47,-185.11],[-303.47,-177.65],[-294.93,-170.65],[-290.6,-167.7],[-287.54,-165.96],[-285.36,-164.43],[-284.32,-163.22],[-282.31,-161.98],[-279.76,-160.59],[-274.61,-156.17],[-269.46,-150.04],[-266.99,-146.91],[-265.35,-145.52],[-256.99,-129.78],[-246.36,-104.22],[-240.1,-95.4],[-236.92,-91.77],[-233.64,-89.4],[-230.25,-88.38],[-228.44,-87.49],[-227.26,-86.09],[-220.75,-84.29],[-211.85,-82.78],[-203.25,-80.15],[-195.77,-76.89],[-191.81,-75.21],[-188.55,-74.39],[-179.69,-64.75],[-181.95,-12],[-170.35,12.65],[-164.45,18.48],[-149.59,27.19],[-140.83,22.52],[-138.01,21.65],[-134.3,17.84],[-128.25,14.8],[-117.73,8.32],[-106.49,0.44],[-101.99,-1.36],[-98.41,-5.07],[-94.78,-6.51],[-82.45,-14.7],[-68.13,-23.47],[-68.92,-49.42],[-89.43,-68.48],[-114,-77],[-132.34,-82.31],[-138.69,-87.13],[-147.36,-93.36],[-150.75,-97.62],[-152.42,-100.95],[-160.86,-128.88],[-172.12,-150.55],[-180.49,-159.74],[-195.08,-168.28],[-228.18,-169.85],[-261.47,-173.4],[-283.82,-183.4],[-296.16,-185.95]],"o":[[-300.05,-185.38],[-303,-185.3],[-305.51,-180.82],[-298.18,-172.56],[-291.83,-168.47],[-288.45,-166.44],[-285.7,-164.81],[-284.67,-163.63],[-283.18,-162.43],[-280.6,-161.06],[-276.63,-158.15],[-271.03,-152.12],[-267.57,-147.4],[-265.89,-145.97],[-260.56,-138.42],[-249.89,-112.68],[-241.14,-96.77],[-237.99,-92.9],[-234.77,-89.96],[-231.39,-88.61],[-228.81,-87.94],[-227.67,-86.56],[-223.82,-84.9],[-214.76,-83.23],[-206.12,-81.21],[-198.08,-77.99],[-193.03,-75.52],[-189.57,-74.65],[-183.75,-71.01],[-169.43,-41.93],[-172.93,10.69],[-165.92,17.08],[-158.26,22.32],[-145.03,26.86],[-139.07,21.42],[-135.53,20.06],[-130.89,15.64],[-121.81,10.68],[-110.83,4.03],[-103.07,-1.54],[-99.86,-2.74],[-96.08,-6.6],[-87.35,-11.13],[-71.33,-22.11],[-64.83,-33.8],[-77.88,-64.83],[-108.36,-74.79],[-125.97,-80.99],[-137.75,-85.44],[-144.34,-90.91],[-149.15,-97.33],[-151.83,-99.29],[-158.52,-112.09],[-168.34,-145.07],[-178.85,-158.61],[-191.27,-166.11],[-212.6,-171.51],[-252.53,-171.62],[-276.94,-178.74],[-294.41,-186.14],[-297.56,-187.7]],"v":[[-298,-186],[-302.14,-185.37],[-304,-184],[-300.83,-175.1],[-294,-170],[-289.52,-167.07],[-286,-165],[-285.02,-164.03],[-284,-163],[-281.45,-161.52],[-279,-160],[-272.82,-154.15],[-268,-148],[-266.44,-146.44],[-265,-145],[-253.44,-121.23],[-242,-98],[-239.04,-94.15],[-236,-91],[-232.52,-89.01],[-229,-88],[-228.05,-87.02],[-227,-86],[-217.76,-83.76],[-209,-82],[-200.66,-79.07],[-194,-76],[-190.69,-74.93],[-188,-74],[-178,-61],[-174,8],[-168,15],[-162,20],[-147,27],[-140,22],[-137,21],[-133,17],[-127,14],[-114,6],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-76,-19],[-67,-27],[-71,-53],[-103,-73],[-120,-79],[-137,-85],[-140,-88],[-149,-97],[-151,-98],[-153,-102],[-166,-140],[-175,-154],[-186,-163],[-199,-169],[-244,-171],[-269,-176],[-290,-185],[-297,-187]],"c":true}],"h":1},{"t":85,"s":[{"i":[[-298.45,-187.82],[-302.49,-184.66],[-303.26,-184.16],[-303.87,-183.5],[-304.09,-182.48],[-302.35,-177.88],[-296.81,-171.87],[-290.51,-166.96],[-286.18,-164.12],[-284.8,-163.24],[-281.45,-161.13],[-277.76,-158.8],[-275.18,-157.13],[-273.55,-155.66],[-270.68,-152.36],[-268.31,-149.41],[-259.72,-133.99],[-243.99,-100.21],[-239.39,-95.22],[-224.4,-86.21],[-213.78,-83.53],[-202.61,-81.18],[-201.44,-80.49],[-200.26,-79.09],[-197.49,-78.31],[-194.1,-77.57],[-189.56,-75.01],[-184.53,-70.81],[-176.37,-45.67],[-176.44,2.54],[-170.51,12.83],[-159.33,21.43],[-152.79,24.4],[-147.76,26.04],[-140.36,23.12],[-126.63,14.41],[-124.54,12.72],[-122.72,10.49],[-108.68,1.83],[-69.74,-22.24],[-68.36,-24.12],[-68.31,-26.13],[-66.71,-35.75],[-69.89,-51.46],[-75.94,-59.87],[-83.87,-65.68],[-89.85,-69.21],[-96.59,-72.18],[-107.15,-75.59],[-118.49,-78.83],[-136.52,-87.58],[-153.88,-101.79],[-157.34,-112.19],[-167.1,-142.07],[-173.54,-151.22],[-185.68,-163.75],[-206.24,-170.61],[-239.67,-170.94],[-258.92,-173.4],[-271.29,-176.73],[-280.51,-181.47]],"o":[[-302.23,-184.82],[-303,-184.34],[-303.69,-183.75],[-304.07,-182.87],[-303.62,-179.99],[-298.95,-173.83],[-292.6,-168.44],[-287.31,-164.8],[-285.63,-163.76],[-282.71,-161.93],[-278.97,-159.57],[-275.86,-157.58],[-274.42,-156.56],[-271.68,-153.56],[-268.99,-150.28],[-265.47,-145.64],[-248.98,-111.28],[-242.94,-97.86],[-230.12,-89.39],[-217.98,-84.44],[-206.1,-81.91],[-201.81,-80.94],[-200.66,-79.56],[-198.69,-78.53],[-195.19,-77.84],[-191.29,-76.11],[-186.18,-72.36],[-177.65,-62.69],[-175.77,-13.05],[-173.6,9.36],[-163.38,18.86],[-154.66,23.63],[-149.34,25.6],[-145.29,25.92],[-131.03,17.37],[-125.18,13.47],[-123.32,11.23],[-121.56,9.7],[-82.77,-14.14],[-68.46,-23.55],[-68.28,-25.4],[-66.76,-30.52],[-68.28,-46.22],[-73.5,-57.53],[-81.12,-63.94],[-87.81,-68.12],[-94.25,-71.24],[-103.16,-74.42],[-114.82,-77.79],[-128.58,-82.18],[-149.17,-97.38],[-154.79,-103.4],[-163.5,-131.53],[-170.2,-147.34],[-181.28,-159.42],[-196.15,-169.39],[-228,-171.38],[-254.02,-172.28],[-267.55,-175.62],[-274.79,-178.06],[-292.35,-186.35]],"v":[[-302,-185],[-302.74,-184.5],[-303.48,-183.96],[-303.97,-183.18],[-304,-182],[-300.65,-175.85],[-294.7,-170.15],[-288.91,-165.88],[-286,-164],[-283.76,-162.59],[-280.21,-160.35],[-276.81,-158.19],[-275,-157],[-272.62,-154.61],[-269.84,-151.32],[-268,-149],[-254.35,-122.63],[-243,-98],[-234.75,-92.3],[-220,-85],[-209.94,-82.72],[-202,-81],[-201.05,-80.03],[-200,-79],[-196.34,-78.07],[-193,-77],[-187.87,-73.69],[-183,-69],[-176.07,-29.36],[-175,6],[-166.95,15.84],[-156,23],[-151.06,25],[-147,26],[-135.7,20.25],[-126,14],[-123.93,11.97],[-122,10],[-95.73,-6.16],[-69,-23],[-68.32,-24.76],[-68,-27],[-67.49,-40.99],[-72,-55],[-78.53,-61.9],[-86,-67],[-92.05,-70.23],[-99,-73],[-110.99,-76.69],[-122,-80],[-142.84,-92.48],[-154,-102],[-160.42,-121.86],[-170,-147],[-177.41,-155.32],[-188,-165],[-217.12,-170.99],[-251,-172],[-263.24,-174.51],[-272,-177],[-286.43,-183.91]],"c":true}],"h":1},{"t":86,"s":[{"i":[[-301.33,-185.53],[-304.12,-182.29],[-302.95,-178.19],[-297.43,-172.55],[-289.1,-166.68],[-287.22,-165.33],[-286.37,-164.24],[-284.23,-163.2],[-281.72,-162.53],[-280.12,-160.95],[-278.76,-158.66],[-276.45,-157.07],[-273.77,-155.82],[-272.89,-154.44],[-273.1,-153.21],[-272.49,-152.68],[-271.12,-152.16],[-268.32,-148.46],[-264.94,-143.58],[-257.4,-129.19],[-248.65,-107.88],[-245.49,-101.68],[-244.12,-101.18],[-244.23,-99.5],[-242.25,-98.29],[-229.92,-88.68],[-185.46,-77.62],[-183.51,-12.45],[-172.11,10.79],[-164.89,16.2],[-160.52,20.25],[-155.92,21.19],[-147.04,26.23],[-143.26,24.16],[-140.96,23.65],[-137.48,19.95],[-133.79,18.49],[-129.36,15.85],[-126.66,13.42],[-111.77,4.77],[-104.93,-0.46],[-101.99,-1.36],[-98.65,-4.91],[-94.78,-6.51],[-89.52,-10.4],[-69.25,-21.79],[-67.28,-36.77],[-76.73,-62.72],[-84.59,-67.76],[-93.08,-71.51],[-120.68,-79.67],[-138.94,-87.95],[-152.59,-100.2],[-157.6,-109.95],[-167.26,-142.59],[-181.06,-159.71],[-186.48,-163.05],[-191.55,-166.04],[-199.15,-169.66],[-248.59,-170.24],[-285.75,-186.58]],"o":[[-303.65,-183.69],[-303.77,-179.53],[-300.38,-174.96],[-291.79,-168.41],[-287.54,-165.71],[-286.64,-164.59],[-285.12,-163.44],[-282.52,-162.75],[-280.49,-161.62],[-279.26,-159.47],[-277.31,-157.41],[-274.68,-156.28],[-272.84,-154.83],[-273.02,-153.63],[-272.93,-152.85],[-271.59,-152.34],[-269.6,-150.17],[-265.99,-145.16],[-260.57,-136.25],[-251.44,-115.01],[-245.93,-101.84],[-244.59,-101.35],[-243.69,-100.56],[-243.88,-98.73],[-235.71,-90.46],[-202.61,-81.31],[-170.37,-43.48],[-173.96,8.25],[-167.49,15.62],[-161.23,18.48],[-157.67,21.66],[-151.21,23.19],[-144.91,25.99],[-142.09,23.44],[-138.6,22.05],[-135.07,18.4],[-131.2,16.88],[-127.4,14.63],[-117.71,7.68],[-105.28,0.53],[-103.07,-1.54],[-99.46,-2.99],[-96.08,-6.6],[-91.37,-8.63],[-82.95,-14.58],[-67.01,-27.55],[-69.51,-52.9],[-84.35,-66.16],[-88.76,-70.17],[-108.79,-77.47],[-135.7,-85.98],[-149.62,-95.11],[-156.33,-108.76],[-164.03,-126.82],[-178.28,-156.98],[-184.98,-162.31],[-190.32,-165.44],[-196.52,-167.99],[-220.51,-173.6],[-276.52,-177.88],[-301.29,-185.95]],"v":[[-302,-185],[-303.95,-180.91],[-302,-177],[-294.61,-170.48],[-288,-166],[-286.93,-164.96],[-286,-164],[-283.37,-162.98],[-281,-162],[-279.69,-160.21],[-278,-158],[-275.57,-156.67],[-273,-155],[-272.96,-154.04],[-273,-153],[-272.04,-152.51],[-271,-152],[-267.15,-146.81],[-264,-142],[-254.42,-122.1],[-246,-102],[-245.04,-101.51],[-244,-101],[-244,-99],[-242,-98],[-220,-86],[-179,-63],[-175,6],[-170,13],[-162,18],[-159,21],[-154,22],[-145,26],[-143,24],[-140,23],[-136,19],[-133,18],[-128,15],[-126,13],[-106,1],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-87,-12],[-68,-25],[-68,-42],[-84,-66],[-85,-68],[-97,-73],[-131,-84],[-142,-90],[-156,-108],[-158,-111],[-176,-154],[-183,-161],[-188,-164],[-194,-167],[-201,-170],[-266,-175],[-300,-186]],"c":true}],"h":1},{"t":87,"s":[{"i":[[-295.62,-190.02],[-303.88,-182.88],[-303.8,-179.21],[-299.99,-174.73],[-294.31,-170.98],[-283.11,-162.99],[-271.96,-153.47],[-267.28,-146.21],[-265.02,-141.87],[-262.7,-137.99],[-260.52,-135.05],[-253.34,-117.9],[-241.72,-95.58],[-235.68,-92.48],[-235.21,-91.12],[-227.05,-87.65],[-214.52,-84.94],[-196.24,-79.83],[-181.49,-68.94],[-176.78,-41.82],[-179.47,-6.1],[-176.4,2.84],[-174.46,5.18],[-170.46,11.9],[-164.05,16.87],[-155.51,21.46],[-146.89,25.15],[-141.46,23.77],[-137.3,19.84],[-134.98,18.57],[-133.4,18.25],[-131.19,16.9],[-128.68,15.43],[-127.36,14.42],[-126.33,13.21],[-118.36,8.32],[-108.65,2.73],[-105.64,0.44],[-105.23,-0.83],[-104.04,-1.43],[-102.35,-1.78],[-99.34,-3.81],[-95.85,-6.47],[-92.96,-7.35],[-89.61,-10.96],[-85.77,-12.55],[-81.49,-15.07],[-70.17,-21.71],[-68.43,-45.05],[-73.03,-54.26],[-75.73,-60.67],[-84.48,-67.05],[-90.68,-71.4],[-99.4,-73.79],[-109.82,-78.05],[-144.59,-87.83],[-157.15,-107.39],[-161.59,-120.79],[-175.59,-158.24],[-220.28,-171.08],[-265.81,-175.02]],"o":[[-303.23,-184.03],[-304.17,-180.47],[-301.83,-176.24],[-296.23,-172.1],[-287.62,-166.01],[-275.28,-156.72],[-268.02,-147.52],[-265.78,-143.38],[-263.44,-138.97],[-261.24,-136.03],[-256.48,-126.86],[-245.96,-102.26],[-235.82,-92.92],[-235.37,-91.58],[-231.29,-88.93],[-218.66,-85.66],[-203,-81.86],[-185.49,-73.37],[-176.05,-53.77],[-178.49,-17.99],[-176.92,2.25],[-175.17,4.3],[-171.94,9.71],[-166.52,15.48],[-158.32,19.88],[-149.8,24.09],[-143.06,24.85],[-138.58,21.26],[-135.53,18.7],[-133.91,18.35],[-132.1,17.44],[-129.48,15.9],[-127.7,14.81],[-126.68,13.62],[-122.03,10.45],[-111.67,4.46],[-105.78,0.86],[-105.37,-0.4],[-104.61,-1.29],[-102.9,-1.68],[-100.67,-2.83],[-96.93,-5.64],[-94.09,-7.56],[-90.72,-8.87],[-87.09,-12.58],[-82.98,-14.17],[-76.08,-18.44],[-67.15,-30.18],[-71.33,-52.88],[-74.99,-57.78],[-78.85,-64.52],[-89.49,-69.83],[-95.19,-73.45],[-106.68,-76.24],[-128.06,-83.5],[-154.52,-102.79],[-160.65,-116.12],[-168.73,-142.06],[-203.29,-173.15],[-252.6,-172.59],[-279.93,-180.16]],"v":[[-302,-185],[-304.02,-181.68],[-303,-178],[-298.11,-173.41],[-293,-170],[-279.19,-159.86],[-269,-149],[-266.53,-144.79],[-264,-140],[-261.97,-137.01],[-260,-134],[-249.65,-110.08],[-236,-93],[-235.52,-92.03],[-235,-91],[-222.86,-86.65],[-211,-84],[-190.87,-76.6],[-179,-62],[-177.64,-29.9],[-177,2],[-175.79,3.57],[-174,6],[-168.49,13.69],[-160,19],[-152.66,22.78],[-145,25],[-140.02,22.51],[-136,19],[-134.45,18.46],[-133,18],[-130.34,16.4],[-128,15],[-127.02,14.02],[-126,13],[-115.01,6.39],[-106,1],[-105.51,0.02],[-105,-1],[-103.47,-1.55],[-102,-2],[-98.14,-4.73],[-95,-7],[-92,-8],[-88,-12],[-85,-13],[-80,-16],[-69,-25],[-71,-52],[-74,-56],[-76,-61],[-88,-69],[-92,-72],[-103,-75],[-113,-79],[-152,-99],[-159,-112],[-163,-125],[-190,-166],[-240,-172],[-274,-178]],"c":true}],"h":1},{"t":88,"s":[{"i":[[-301.34,-185.51],[-303.79,-179.17],[-294.48,-171.01],[-292.23,-169.33],[-291.38,-168.29],[-290.05,-167.59],[-288.47,-167.34],[-286.76,-165.84],[-284.78,-163.58],[-282.3,-161.97],[-279.73,-160.65],[-275.7,-156.77],[-271.63,-151.39],[-270.49,-149.68],[-269.12,-149.19],[-268.32,-147.73],[-267.37,-145.59],[-265.54,-142.6],[-263.58,-139.08],[-256.02,-121.59],[-243.39,-96.88],[-236.68,-93.48],[-236.21,-92.12],[-212.7,-86.15],[-191.09,-77.53],[-181.33,-67.25],[-178.26,-36.04],[-177.83,2.08],[-171.09,10.96],[-164.87,15.32],[-147.25,25.31],[-138.88,21.45],[-121.39,10.38],[-109.13,3.04],[-105.46,-0.65],[-102.7,-1.56],[-96.69,-5.95],[-92.96,-7.35],[-89.55,-11],[-84.46,-13.12],[-76.34,-19.15],[-71.78,-21.22],[-69.37,-34.96],[-71.09,-52.15],[-74.64,-57.42],[-96.17,-74.2],[-133.84,-85.11],[-149.53,-96.56],[-154.28,-101.86],[-161.78,-120.98],[-167.91,-135.45],[-169.32,-141.51],[-172.21,-144.62],[-175.29,-151.65],[-179.17,-155.98],[-183.04,-160.1],[-192.72,-166.7],[-198.47,-169.83],[-205.84,-171.53],[-252.6,-171.4],[-288.7,-186.14]],"o":[[-305.3,-182.41],[-298.38,-173.47],[-292.54,-169.68],[-291.65,-168.64],[-290.57,-167.67],[-289.01,-167.42],[-287.37,-166.55],[-285.46,-164.35],[-283.18,-162.39],[-280.57,-161.09],[-277.38,-158.57],[-272.82,-153.18],[-270.92,-149.83],[-269.58,-149.36],[-268.63,-148.43],[-267.69,-146.31],[-266.25,-143.81],[-264.21,-140.24],[-259.33,-131.15],[-248.06,-104.45],[-236.82,-93.92],[-236.37,-92.58],[-226.11,-86.48],[-194.57,-80.26],[-183.43,-69.21],[-174.91,-51.59],[-179.71,-8.38],[-172.03,9.19],[-168,13.9],[-158.4,19.11],[-142.72,24.88],[-128.21,14.72],[-112.39,4.74],[-105.56,0.71],[-104.23,-1.58],[-99.34,-3.66],[-94.09,-7.56],[-90.72,-8.87],[-86.68,-12.85],[-79.63,-16.02],[-73.09,-21.72],[-67.76,-25.24],[-70.61,-46.84],[-73.26,-56.52],[-82.3,-69.75],[-122.37,-82.14],[-146.59,-92.75],[-152.86,-101.2],[-160.25,-111.3],[-166.01,-132.83],[-169.77,-139.8],[-170.5,-144.1],[-174.45,-148.54],[-177.77,-155.05],[-183.14,-160.87],[-190.46,-165.54],[-197.38,-168.11],[-201.51,-170.8],[-228.27,-174.88],[-278.36,-178.62],[-301.28,-185.98]],"v":[[-302,-185],[-301.08,-176.32],[-293,-170],[-291.94,-168.98],[-291,-168],[-289.53,-167.5],[-288,-167],[-286.11,-165.1],[-284,-163],[-281.44,-161.53],[-279,-160],[-274.26,-154.97],[-271,-150],[-270.04,-149.52],[-269,-149],[-268,-147.02],[-267,-145],[-264.87,-141.42],[-263,-138],[-252.04,-113.02],[-237,-94],[-236.52,-93.03],[-236,-92],[-203,-83],[-186,-72],[-180,-64],[-179,-22],[-173,8],[-170,12],[-162,17],[-144,25],[-135,19],[-116,7],[-106,1],[-105,-1],[-102,-2],[-95,-7],[-92,-8],[-88,-12],[-83,-14],[-74,-21],[-71,-22],[-70,-41],[-73,-56],[-75,-58],[-112,-79],[-142,-90],[-152,-100],[-155,-103],[-165,-130],[-169,-138],[-170,-143],[-173,-146],[-177,-154],[-180,-157],[-187,-163],[-197,-168],[-199,-170],[-209,-172],[-269,-176],[-300,-186]],"c":true}],"h":1},{"t":89,"s":[{"i":[[-301.39,-185.48],[-303.02,-184.4],[-304.29,-182.9],[-299.9,-175.3],[-290.21,-168.06],[-287.08,-165.57],[-285.41,-165.34],[-283.5,-163.59],[-281.69,-161.59],[-277.61,-158.07],[-273.74,-153.63],[-272.49,-151.68],[-271.12,-151.18],[-268.37,-147.16],[-264.91,-141.68],[-257.19,-125.04],[-247.47,-103.1],[-241.22,-96.28],[-238.45,-94.28],[-223.29,-88.07],[-200.17,-83.51],[-193.66,-79.47],[-193.21,-78.15],[-192.01,-77.57],[-190.38,-77.29],[-180.35,-65.62],[-178.33,-40.61],[-179.46,-24.42],[-180.09,-15.6],[-178.84,-2.72],[-173.61,7.4],[-168.67,12.19],[-164.76,14.97],[-158.36,18.34],[-150.71,21.06],[-145.91,23.03],[-144.04,24.11],[-140.59,22.99],[-135.86,19.2],[-132.33,17.22],[-129.83,16.51],[-127.54,14.74],[-125.7,12.45],[-121.17,10.72],[-118.9,8.52],[-115.02,5.76],[-111.71,4.45],[-106.29,-0.04],[-102.7,-1.56],[-86.42,-12],[-72.25,-21.08],[-73.26,-57.69],[-121.77,-79.09],[-145.25,-93.5],[-150.79,-97.18],[-153.38,-100.2],[-159.54,-111.38],[-167.97,-136.02],[-192.9,-171.16],[-247.04,-172.52],[-289.31,-185.46]],"o":[[-302.38,-184.7],[-303.98,-183.5],[-302.79,-178.27],[-293.61,-170.2],[-287.62,-165.65],[-285.97,-165.42],[-284.15,-164.29],[-282.27,-162.24],[-279.24,-159.51],[-274.86,-155.14],[-272.93,-151.84],[-271.59,-151.35],[-269.66,-149.07],[-265.99,-143.47],[-260.21,-132.99],[-250.83,-110.1],[-242.25,-97.14],[-239.33,-94.85],[-231.21,-89.82],[-207.78,-84.92],[-193.8,-79.89],[-193.36,-78.6],[-192.57,-77.68],[-190.92,-77.38],[-183.44,-72.06],[-177.8,-49.89],[-179.17,-27.36],[-179.93,-18.53],[-179.79,-7.17],[-175.75,4.56],[-169.79,11.2],[-166.16,14.07],[-160.76,17.31],[-153.33,20.22],[-146.64,22.47],[-144.61,23.84],[-141.91,23.89],[-137.57,20.64],[-133.16,17.46],[-130.67,16.74],[-128.19,15.51],[-126.3,13.21],[-123.49,11.03],[-119.32,9.58],[-116,6.84],[-113.22,4.41],[-108.63,2.49],[-104.23,-1.58],[-94.01,-6.97],[-74.94,-19.74],[-65.49,-36.85],[-92.54,-79.3],[-143.96,-91.68],[-149.53,-97.16],[-152.64,-99.97],[-157.84,-105.91],[-165.75,-128.08],[-180.2,-160.24],[-230.13,-174.26],[-277.83,-177.62],[-301.25,-186.06]],"v":[[-302,-185],[-303.5,-183.95],[-304,-182],[-296.75,-172.75],[-288,-166],[-286.53,-165.49],[-285,-165],[-282.88,-162.91],[-281,-161],[-276.24,-156.6],[-273,-152],[-272.04,-151.51],[-271,-151],[-267.18,-145.32],[-264,-140],[-254.01,-117.57],[-243,-98],[-240.27,-95.56],[-238,-94],[-215.53,-86.5],[-194,-80],[-193.51,-79.03],[-193,-78],[-191.47,-77.47],[-190,-77],[-179.08,-57.75],[-179,-30],[-179.7,-21.47],[-180,-13],[-177.3,0.92],[-171,10],[-167.42,13.13],[-163,16],[-155.85,19.28],[-148,22],[-145.26,23.43],[-143,24],[-139.08,21.81],[-134,18],[-131.5,16.98],[-129,16],[-126.92,13.97],[-125,12],[-120,10],[-118,8],[-114,5],[-111,4],[-105,-1],[-102,-2],[-79,-17],[-71,-24],[-78,-63],[-141,-90],[-147,-95],[-152,-99],[-154,-101],[-162,-118],[-172,-144],[-215,-173],[-262,-175],[-300,-186]],"c":true}],"h":1},{"t":90,"s":[{"i":[[-297.28,-188.68],[-304.2,-180.81],[-299.1,-174.36],[-288.28,-167.18],[-276.58,-157.37],[-272.56,-152.03],[-271.39,-149.86],[-270.49,-148.68],[-269.12,-148.18],[-268.9,-147.4],[-269.11,-146.25],[-268.48,-145.68],[-267.12,-145.2],[-265.98,-142.86],[-264.55,-139.06],[-261.58,-133.36],[-258.01,-126.29],[-254.78,-118.14],[-251.3,-109.36],[-246.58,-103.71],[-241.76,-97.17],[-236.39,-93.7],[-230.25,-90.7],[-220.28,-88.12],[-208.76,-86.15],[-195.01,-80],[-188.78,-76.61],[-186.67,-73.79],[-182.09,-67.99],[-185.49,-14.25],[-169.42,12.03],[-158.71,17.22],[-143.71,24.21],[-137.42,20.2],[-130.49,16.91],[-126.45,12.93],[-121.37,10.84],[-118.9,8.52],[-115.02,5.76],[-111.71,4.45],[-105.07,-0.07],[-93.91,-7.81],[-85.66,-11.99],[-81.64,-15.9],[-75.93,-18.35],[-71.32,-22.18],[-70.5,-48.39],[-78.63,-64.07],[-104.96,-78.24],[-131.15,-86.36],[-147.59,-95.22],[-156.41,-104.34],[-162.67,-118.49],[-167.79,-130.83],[-170.38,-140.71],[-174.07,-146.51],[-183.54,-160.7],[-190.48,-165.05],[-201.41,-170.78],[-236.66,-172.66],[-274.76,-177.58]],"o":[[-304.4,-183.13],[-301.55,-176.42],[-292.74,-170.24],[-280.2,-160.74],[-273.12,-152.85],[-271.7,-150.54],[-270.93,-148.84],[-269.59,-148.35],[-268.85,-147.77],[-269.04,-146.64],[-268.92,-145.83],[-267.58,-145.37],[-266.46,-144.08],[-265.03,-140.35],[-262.82,-135.72],[-259.17,-128.65],[-255.88,-121.46],[-252.49,-112.09],[-248.2,-106.12],[-243.36,-99.23],[-238.26,-94.85],[-232.38,-91.63],[-224.15,-88.79],[-212.58,-86.8],[-198.49,-83],[-190.12,-76.34],[-187.2,-75.37],[-184.1,-70.77],[-173.84,-45.44],[-174.72,7.63],[-160.5,16.8],[-153.83,19.45],[-140.85,23.86],[-132.44,17],[-127.44,15.05],[-123.59,11.09],[-119.32,9.58],[-116,6.84],[-113.22,4.41],[-107.18,1.57],[-97.1,-5.07],[-87.67,-11.86],[-82.54,-13.89],[-78.75,-17.83],[-73.06,-20.36],[-69.05,-27.96],[-74.72,-59.54],[-91.8,-75.52],[-125.36,-84.12],[-144.74,-92.49],[-154.56,-102.77],[-161.31,-112.53],[-165.97,-127.73],[-170.18,-137.1],[-172.55,-145.13],[-178.49,-153.58],[-188.98,-164.31],[-196,-168.49],[-221.69,-175.2],[-262.64,-174.67],[-284.74,-182.18]],"v":[[-302,-185],[-302.87,-178.61],[-297,-173],[-284.24,-163.96],[-274,-154],[-272.13,-151.28],[-271,-149],[-270.04,-148.52],[-269,-148],[-268.97,-147.02],[-269,-146],[-268.03,-145.52],[-267,-145],[-265.5,-141.6],[-264,-138],[-260.37,-131.01],[-257,-124],[-253.64,-115.12],[-250,-108],[-244.97,-101.47],[-240,-96],[-234.38,-92.66],[-228,-90],[-216.43,-87.46],[-205,-85],[-191,-77],[-188,-76],[-186,-73],[-181,-65],[-177,3],[-162,16],[-157,18],[-142,24],[-134,18],[-129,16],[-125,12],[-120,10],[-118,8],[-114,5],[-111,4],[-102,-2],[-89,-11],[-84,-13],[-80,-17],[-75,-19],[-71,-23],[-73,-55],[-82,-67],[-118,-82],[-137,-89],[-152,-100],[-158,-107],[-165,-125],[-169,-134],[-172,-144],[-175,-148],[-187,-163],[-192,-166],[-207,-172],[-254,-174],[-280,-180]],"c":true}],"h":1},{"t":91,"s":[{"i":[[-298.4,-187.78],[-303.77,-183.3],[-303.56,-181.02],[-302.69,-179.05],[-302.3,-177.36],[-300.66,-176.01],[-297.9,-174.8],[-286.82,-165.57],[-272.5,-151.92],[-266.04,-140.59],[-262.12,-132.31],[-256.84,-121.24],[-250.26,-108.43],[-246.64,-102.8],[-244.58,-99.59],[-243.12,-98.59],[-241.29,-98.23],[-239.23,-96.43],[-237.03,-94.48],[-232.52,-92.47],[-227.05,-90.57],[-218.99,-88.57],[-208.99,-86.67],[-202.54,-84.85],[-197.83,-82.04],[-191.9,-78.72],[-186.58,-74.37],[-179.17,-49.19],[-181.9,-7.95],[-172.31,8.96],[-157.98,17.07],[-149.24,20.74],[-143.46,23.13],[-137.88,21.25],[-130.19,15.76],[-127.54,13.96],[-125.56,12.36],[-123.22,11.16],[-120.62,10.39],[-119.65,9.45],[-119.23,8.17],[-116.7,7.44],[-110.08,2.97],[-104.53,-1.07],[-99.39,-3.1],[-97.46,-5.66],[-94.73,-6.5],[-88.2,-10.99],[-72.7,-20.5],[-72.33,-27.51],[-73.1,-56.58],[-81.93,-67.16],[-101.48,-78.12],[-136.37,-87.44],[-164.83,-124.97],[-175.64,-149.58],[-180.44,-155.11],[-188.34,-163.65],[-208.55,-173.26],[-246.66,-173.55],[-274.58,-178.79]],"o":[[-303.24,-184.04],[-303.93,-181.79],[-302.79,-179.62],[-302.44,-177.92],[-301.46,-176.36],[-298.88,-175.23],[-292.07,-169.61],[-277.04,-156.72],[-267.48,-143.44],[-263.36,-135.03],[-258.96,-125.77],[-252.49,-112.57],[-247.34,-104.01],[-245.26,-100.59],[-243.72,-98.72],[-241.9,-98.34],[-239.96,-97.19],[-237.76,-95.07],[-234.24,-93.19],[-228.92,-91.16],[-222.25,-89.23],[-212.36,-87.29],[-204.12,-85.58],[-199.39,-83.08],[-193.86,-79.79],[-188.26,-76.01],[-178.98,-62.97],[-180.64,-21.68],[-176.07,5.43],[-163.27,14.78],[-151.25,19.68],[-145.34,22.47],[-140.54,22.87],[-132.71,17.69],[-128.26,14.53],[-126.19,12.88],[-124.16,11.46],[-121.45,10.62],[-119.78,9.86],[-119.37,8.6],[-118.22,7.42],[-113.11,5.2],[-105.64,0.13],[-101.67,-2.81],[-97.56,-4.28],[-96.19,-6.61],[-90.55,-9.33],[-81.68,-15.09],[-71.46,-23.15],[-71.12,-43.98],[-79.79,-65.88],[-93.31,-75.1],[-122.91,-84.6],[-161.12,-104.3],[-173.3,-143.91],[-179.24,-153.33],[-186.3,-161.72],[-197.51,-169.53],[-230.81,-175.2],[-269.03,-177.12],[-288.06,-183.43]],"v":[[-302,-185],[-303.85,-182.54],[-303,-180],[-302.57,-178.48],[-302,-177],[-299.77,-175.62],[-297,-174],[-281.93,-161.15],[-269,-146],[-264.7,-137.81],[-261,-130],[-254.66,-116.9],[-248,-105],[-245.95,-101.69],[-244,-99],[-242.51,-98.46],[-241,-98],[-238.49,-95.75],[-236,-94],[-230.72,-91.82],[-225,-90],[-215.68,-87.93],[-206,-86],[-200.97,-83.96],[-196,-81],[-190.08,-77.37],[-185,-72],[-179.91,-35.44],[-178,1],[-167.79,11.87],[-153,19],[-147.29,21.61],[-142,23],[-135.3,19.47],[-129,15],[-126.87,13.42],[-125,12],[-122.33,10.89],[-120,10],[-119.51,9.02],[-119,8],[-116,7],[-107,1],[-103,-2],[-98,-4],[-97,-6],[-94,-7],[-85,-13],[-72,-22],[-72,-32],[-77,-62],[-86,-70],[-111,-81],[-146,-94],[-172,-141],[-177,-151],[-183,-158],[-192,-166],[-217,-174],[-262,-176],[-281,-181]],"c":true}],"h":1},{"t":92,"s":[{"i":[[-301.43,-185.44],[-303.87,-180.91],[-299.03,-174.93],[-294.96,-171.71],[-290.31,-169.05],[-288.63,-167.42],[-288.23,-166.21],[-287.08,-165.57],[-285.41,-165.34],[-280.99,-161.29],[-275.73,-155.1],[-272.35,-150.64],[-270.69,-147.22],[-269,-144.82],[-267.28,-143.53],[-264.31,-137.65],[-261.02,-130.26],[-253.87,-114.61],[-242.65,-97.77],[-230.92,-91.93],[-219.6,-89.87],[-208.09,-87.05],[-197.42,-83.47],[-194.65,-81.46],[-194.22,-80.16],[-192.99,-79.58],[-191.4,-79.34],[-187.26,-75.28],[-182.84,-68.37],[-179.77,-43.11],[-182.1,-5.68],[-173.63,7.33],[-165.28,13.36],[-155.44,18.11],[-143.36,22.24],[-136.11,20.15],[-126.66,13.69],[-117.35,7.73],[-108.86,2.19],[-99.22,-4.17],[-89.26,-11.02],[-84.35,-13.73],[-81.76,-14.5],[-80.65,-15.56],[-80.23,-16.83],[-77.74,-17.48],[-71.85,-27.11],[-74.41,-55.34],[-78.52,-64.39],[-94.87,-76.39],[-121.41,-84.47],[-140.38,-92.1],[-153.39,-100.05],[-164.24,-117.73],[-171.33,-140.23],[-177.08,-148.51],[-179.04,-153.65],[-186.95,-161.44],[-193.84,-167.91],[-234.71,-172.63],[-288.04,-184.68]],"o":[[-304.36,-183.2],[-301.21,-176.78],[-296.55,-172.69],[-291.84,-169.9],[-288.77,-167.81],[-288.36,-166.62],[-287.62,-165.65],[-285.97,-165.42],[-282.88,-163.24],[-277.42,-157.22],[-273,-151.78],[-271.19,-148.36],[-269.61,-145.31],[-267.84,-143.94],[-265.55,-140.27],[-262.05,-132.65],[-257.04,-121.48],[-246.67,-102.76],[-234.62,-92.99],[-223.41,-90.37],[-212.13,-88.06],[-200.74,-84.76],[-194.79,-81.87],[-194.36,-80.6],[-193.54,-79.66],[-191.92,-79.42],[-189.09,-77.35],[-184.14,-70.8],[-178.47,-56.02],[-181.59,-17.94],[-175.74,5.15],[-168.4,11.43],[-159.51,16.25],[-147.37,21.11],[-139.03,21.8],[-129.93,16.09],[-120.67,9.88],[-111.44,3.88],[-102.84,-1.66],[-92.43,-8.85],[-85.22,-13.48],[-82.62,-14.24],[-80.78,-15.14],[-80.37,-16.4],[-79.17,-17.62],[-71.86,-21.58],[-72.13,-49.08],[-78.09,-61.96],[-83.79,-71.11],[-111.94,-82.64],[-135.74,-89.74],[-149.78,-97.04],[-160.94,-110.41],[-169.72,-132.18],[-175.59,-148.09],[-178.85,-151.37],[-182.32,-158.26],[-191.51,-164.92],[-211.47,-176.79],[-276.86,-176.74],[-301.22,-186.13]],"v":[[-302,-185],[-302.54,-178.85],[-298,-174],[-293.4,-170.81],[-289,-168],[-288.5,-167.02],[-288,-166],[-286.53,-165.49],[-285,-165],[-279.2,-159.26],[-274,-153],[-271.77,-149.5],[-270,-146],[-268.42,-144.38],[-267,-143],[-263.18,-135.15],[-260,-128],[-250.27,-108.69],[-238,-95],[-227.16,-91.15],[-216,-89],[-204.42,-85.9],[-195,-82],[-194.51,-81.03],[-194,-80],[-192.45,-79.5],[-191,-79],[-185.7,-73.04],[-182,-66],[-180.68,-30.52],[-177,3],[-171.01,9.38],[-162,15],[-151.4,19.61],[-141,22],[-133.02,18.12],[-124,12],[-114.4,5.81],[-107,1],[-95.82,-6.51],[-86,-13],[-83.49,-13.98],[-81,-15],[-80.51,-15.98],[-80,-17],[-77,-18],[-72,-39],[-77,-60],[-79,-65],[-102,-79],[-131,-88],[-144,-94],[-157,-105],[-167,-125],[-175,-147],[-178,-150],[-180,-155],[-189,-163],[-196,-169],[-259,-175],[-300,-186]],"c":true}],"h":1},{"t":93,"s":[{"i":[[-301.48,-185.4],[-304.16,-181.46],[-299.93,-175.75],[-295.04,-171.57],[-290.98,-168.77],[-284.38,-163.71],[-277.81,-157.6],[-269.02,-145.25],[-261.38,-130.12],[-255.28,-116.72],[-249.52,-105.94],[-244.29,-100.2],[-239.7,-96.38],[-236.1,-94.56],[-230.94,-92.58],[-225.26,-91.21],[-219.04,-90.48],[-208.99,-87.97],[-196.54,-83.48],[-189.74,-76.99],[-183.01,-68.3],[-179.88,-47.26],[-182.99,-20.16],[-181.48,-8.7],[-180.35,-4.15],[-179.1,-1.27],[-177.26,0.66],[-176.57,2],[-176.31,3.61],[-169.31,10.42],[-156.66,16.31],[-147.25,19.87],[-141.03,22.1],[-138.15,21.22],[-133.73,18.09],[-130.36,15.85],[-128.51,14.33],[-124.24,12.8],[-122.46,10.34],[-119.71,9.45],[-110.03,3.63],[-104.31,-1.19],[-99.69,-2.9],[-97.46,-5.65],[-94.74,-6.48],[-91.56,-9.01],[-76.04,-17.19],[-72.88,-33.09],[-75.26,-60.23],[-88.37,-73.08],[-97.07,-77.11],[-145.21,-88.45],[-174.38,-157.06],[-192.63,-166.75],[-194.49,-166.77],[-195.65,-168.75],[-199.29,-169.48],[-202.48,-171.83],[-206.91,-172.52],[-237.88,-173.9],[-289.01,-184.02]],"o":[[-304.19,-183.33],[-302.03,-177.67],[-296.55,-172.68],[-292.26,-169.62],[-286.73,-165.41],[-279.92,-159.81],[-271.83,-149.94],[-263.8,-135.34],[-257.02,-120.75],[-251.53,-109.32],[-245.94,-101.76],[-241.17,-97.51],[-237.63,-95.26],[-232.76,-93.22],[-227.24,-91.47],[-221.16,-90.71],[-213.72,-89.23],[-200.4,-85.09],[-192.48,-79.59],[-185,-71.35],[-179.39,-56.43],[-181.68,-29.12],[-181.8,-10.37],[-180.75,-5.59],[-179.73,-2.1],[-177.87,0.11],[-176.67,1.44],[-176.4,3.08],[-172.98,7.77],[-161.15,14.69],[-149.73,18.82],[-142.89,21.51],[-139.28,21.93],[-135.37,19.3],[-131.1,16.44],[-129.06,14.79],[-126.3,12.92],[-122.56,11.72],[-121.21,9.41],[-114.57,6.17],[-104.87,0.26],[-101.48,-2.94],[-97.56,-4.29],[-96.17,-6.62],[-92.76,-7.87],[-84.14,-13.75],[-72.31,-25.98],[-73.21,-52.27],[-83.22,-69.92],[-94.54,-76.35],[-120.25,-87.79],[-169.41,-121.66],[-192.32,-165.15],[-193.46,-167.31],[-195.31,-167.14],[-197.82,-170.28],[-201.38,-170.11],[-204.54,-172.49],[-222.47,-176.11],[-272.18,-176.24],[-301.17,-186.21]],"v":[[-302,-185],[-303.09,-179.56],[-298,-174],[-293.65,-170.59],[-290,-168],[-282.15,-161.76],[-275,-154],[-266.41,-140.29],[-259,-125],[-253.41,-113.02],[-247,-103],[-242.73,-98.86],[-239,-96],[-234.43,-93.89],[-229,-92],[-223.21,-90.96],[-217,-90],[-204.69,-86.53],[-195,-82],[-187.37,-74.17],[-182,-65],[-180.78,-38.19],[-182,-12],[-181.12,-7.15],[-180,-3],[-178.49,-0.58],[-177,1],[-176.49,2.54],[-176,4],[-165.23,12.56],[-152,18],[-145.07,20.69],[-140,22],[-136.76,20.26],[-132,17],[-129.71,15.32],[-128,14],[-123,12],[-122,10],[-119,9],[-106,1],[-103,-2],[-98,-4],[-97,-6],[-94,-7],[-90,-10],[-74,-22],[-73,-40],[-80,-66],[-92,-75],[-99,-78],[-158,-106],[-192,-165],[-193,-167],[-195,-167],[-196,-169],[-201,-170],[-203,-172],[-209,-173],[-254,-175],[-300,-186]],"c":true}],"h":1},{"t":94,"s":[{"i":[[-300.26,-185.43],[-302.11,-184.75],[-303.89,-184.48],[-303.47,-180.41],[-299.18,-175.1],[-297.08,-173.57],[-295.41,-173.34],[-293.7,-171.52],[-293.11,-169.9],[-290.69,-168.24],[-288.53,-167.41],[-287.64,-166.41],[-287.26,-165.19],[-285.99,-164.58],[-284.4,-164.35],[-281.26,-161.27],[-277.57,-156.25],[-276.49,-154.68],[-275.12,-154.18],[-268.11,-142.74],[-259.68,-124.72],[-251.86,-109.24],[-241.47,-98.12],[-231.42,-93.75],[-223.05,-91.71],[-212.06,-89.29],[-200.17,-85.84],[-196.66,-83.46],[-196.21,-82.16],[-195.01,-81.57],[-193.38,-81.29],[-189.11,-77.55],[-184.92,-71.25],[-187.66,-15.55],[-169.48,9.77],[-155.65,16.68],[-139.46,22.05],[-138.29,20.5],[-132.26,17.8],[-129.39,14.91],[-123.89,12.58],[-120.98,9.64],[-116.59,8],[-114.45,5.34],[-111.71,4.45],[-94.24,-7.68],[-84.07,-14.3],[-79.12,-16.21],[-75.81,-19.23],[-73.91,-54.67],[-128.19,-82.83],[-156.5,-103.57],[-167.18,-123.58],[-172.34,-135.36],[-175.1,-144.51],[-179.26,-149.8],[-181.01,-154.71],[-185.97,-160.04],[-199.8,-170.74],[-241.72,-174.02],[-287.31,-183.96]],"o":[[-301.41,-184.76],[-303.34,-184.61],[-304.38,-182.36],[-300.87,-176.77],[-297.62,-173.65],[-295.97,-173.42],[-293.9,-172.07],[-293.31,-170.43],[-291.42,-168.53],[-289.24,-167.67],[-287.76,-166.82],[-287.39,-165.6],[-286.54,-164.66],[-284.92,-164.42],[-282.73,-162.89],[-278.68,-157.95],[-276.93,-154.84],[-275.59,-154.35],[-271.27,-148.62],[-262.32,-130.79],[-254.63,-113.93],[-245.28,-101.33],[-234.14,-94.64],[-225.87,-92.28],[-216.22,-90.12],[-204.03,-87.15],[-196.8,-83.88],[-196.36,-82.6],[-195.57,-81.68],[-193.92,-81.38],[-190.9,-79.42],[-186.12,-73.46],[-176.81,-51.43],[-173.98,6.46],[-160.41,14.29],[-149.84,18.78],[-137.39,21.82],[-134.32,17.9],[-129.84,16.27],[-126.48,13],[-121.85,11.26],[-118.59,8.08],[-114.57,6.73],[-113.21,4.41],[-103.24,-0.94],[-85.12,-13.12],[-81.2,-16.17],[-76.35,-18.17],[-70.95,-29.83],[-88.52,-84.6],[-153.02,-99.74],[-164.32,-114.3],[-170.55,-133.65],[-174.41,-140.5],[-177.56,-149.03],[-180.97,-152.57],[-183.27,-157.64],[-193.85,-167.64],[-224.91,-177.66],[-276.96,-177.46],[-299.64,-186.31]],"v":[[-301,-185],[-302.73,-184.68],[-304,-184],[-302.17,-178.59],[-298,-174],[-296.52,-173.49],[-295,-173],[-293.51,-170.98],[-292,-169],[-289.97,-167.95],[-288,-167],[-287.51,-166.01],[-287,-165],[-285.45,-164.5],[-284,-164],[-279.97,-159.61],[-277,-155],[-276.04,-154.52],[-275,-154],[-265.21,-136.76],[-257,-119],[-248.57,-105.28],[-237,-96],[-228.64,-93.02],[-220,-91],[-208.05,-88.22],[-197,-84],[-196.51,-83.03],[-196,-82],[-194.47,-81.47],[-193,-81],[-187.62,-75.5],[-184,-69],[-178,0],[-163,13],[-152,18],[-139,22],[-136,19],[-131,17],[-128,14],[-123,12],[-120,9],[-115,7],[-114,5],[-111,4],[-87,-12],[-83,-15],[-78,-17],[-75,-21],[-77,-61],[-149,-97],[-159,-107],[-170,-132],[-173,-137],[-177,-148],[-180,-151],[-182,-156],[-188,-162],[-208,-173],[-262,-176],[-298,-186]],"c":true}],"h":1},{"t":95,"s":[{"i":[[-300.54,-185.26],[-302.11,-184.76],[-303.9,-184.48],[-302.68,-178.9],[-295.83,-172.55],[-292.84,-170.61],[-289.71,-168.57],[-287.44,-166.6],[-286.12,-165.1],[-284.16,-163.67],[-280.62,-160.85],[-278.57,-158.07],[-278.26,-156.34],[-277.08,-155.3],[-275.32,-154.43],[-274.9,-153.41],[-275.11,-152.24],[-274.49,-151.68],[-273.12,-151.18],[-272.9,-150.4],[-273.11,-149.25],[-272.48,-148.68],[-271.12,-148.2],[-270.53,-146.68],[-270.34,-144.66],[-269.06,-142.87],[-267.28,-141.54],[-265.92,-138.48],[-264.64,-134.42],[-258.15,-120.14],[-247.04,-101.94],[-242.03,-98.57],[-240.34,-98.2],[-238.18,-96.86],[-235.61,-95.24],[-229.39,-93.19],[-220.64,-91.51],[-203.48,-87.46],[-187.74,-76.87],[-181.55,-48.95],[-184.55,-11.59],[-179.47,-1.39],[-178.17,-0.28],[-163.15,12.63],[-150.52,17.82],[-140.7,21.14],[-129.51,15.61],[-105.16,0.1],[-85.68,-12.24],[-74.68,-19.78],[-76.07,-60.53],[-84.82,-71.1],[-96.23,-78.19],[-103.62,-81.52],[-137.45,-89.46],[-167.12,-122.29],[-185.95,-161.32],[-201.62,-171.15],[-238.36,-174.41],[-280.11,-180.63],[-299.14,-186.28]],"o":[[-301.41,-184.77],[-303.35,-184.61],[-304.51,-181.62],[-298.34,-174.36],[-293.98,-171.33],[-290.7,-169.23],[-288.13,-167.3],[-286.43,-165.5],[-285.09,-164.25],[-281.92,-161.97],[-278.69,-158.65],[-278.36,-156.91],[-277.67,-155.58],[-275.91,-154.72],[-274.84,-153.79],[-275.03,-152.64],[-274.93,-151.84],[-273.59,-151.35],[-272.85,-150.77],[-273.04,-149.64],[-272.92,-148.83],[-271.58,-148.36],[-270.61,-147.35],[-270.39,-145.33],[-269.67,-143.35],[-267.87,-141.96],[-266.35,-139.77],[-265.06,-135.8],[-261.38,-127.17],[-250.98,-107.52],[-242.61,-98.72],[-240.9,-98.31],[-239.12,-97.49],[-236.42,-95.74],[-232.31,-93.94],[-223.55,-91.98],[-210.36,-89.53],[-192.17,-81.13],[-180.52,-61.4],[-183.56,-24.04],[-179.88,-1.75],[-178.61,-0.66],[-172.89,8.22],[-151.63,16.11],[-146.07,19.41],[-136.16,20.77],[-112.31,4.58],[-89.13,-10.2],[-74.07,-19.85],[-73.33,-47.95],[-82.69,-69.74],[-93.38,-77.03],[-102.38,-80.52],[-120,-87.25],[-163.33,-107.08],[-179.42,-150.38],[-197.19,-168.78],[-223.34,-177.44],[-269.92,-176.84],[-291.63,-184.09],[-300.88,-185.71]],"v":[[-301,-185],[-302.73,-184.68],[-304,-184],[-300.51,-176.63],[-295,-172],[-291.77,-169.92],[-289,-168],[-286.93,-166.05],[-286,-165],[-283.04,-162.82],[-279,-159],[-278.47,-157.49],[-278,-156],[-276.49,-155.01],[-275,-154],[-274.96,-153.02],[-275,-152],[-274.04,-151.52],[-273,-151],[-272.97,-150.02],[-273,-149],[-272.03,-148.52],[-271,-148],[-270.46,-146.01],[-270,-144],[-268.46,-142.42],[-267,-141],[-265.49,-137.14],[-264,-133],[-254.57,-113.83],[-243,-99],[-241.47,-98.44],[-240,-98],[-237.3,-96.3],[-235,-95],[-226.47,-92.59],[-218,-91],[-197.82,-84.29],[-185,-71],[-182.55,-36.49],[-180,-2],[-179.04,-1.02],[-178,0],[-152,16],[-150,18],[-139,21],[-127,14],[-91,-9],[-83,-14],[-74,-34],[-80,-66],[-89,-74],[-101,-80],[-105,-82],[-150,-98],[-174,-138],[-193,-166],[-208,-173],[-259,-176],[-288,-183],[-300,-186]],"c":true}],"h":1},{"t":96,"s":[{"i":[[-300.63,-185.21],[-301.48,-184.82],[-302.42,-184.72],[-303.33,-184.6],[-303.95,-184.24],[-304,-182.18],[-302.49,-179.22],[-300.09,-176.47],[-297.63,-174.39],[-293.21,-171.45],[-287.46,-166.58],[-282.02,-161.13],[-277.28,-155.67],[-269.92,-144.72],[-262.34,-128.88],[-254.69,-113.52],[-245.17,-101.41],[-236.75,-96.86],[-229.54,-94.51],[-221.74,-92.64],[-213.67,-90.76],[-203.29,-87.51],[-194.17,-82.39],[-187.56,-75.16],[-181.69,-49.25],[-184.42,-11.85],[-175.35,4.08],[-162.02,12.4],[-155.79,14.71],[-152.13,15.61],[-146.26,17.89],[-139.75,20.15],[-133.58,18.5],[-124.8,12.8],[-108.8,2.36],[-91.11,-9.47],[-77.22,-18.19],[-75.3,-26.91],[-74.74,-40.99],[-74.7,-49.75],[-76.18,-57.21],[-79.06,-62.3],[-83.96,-70.39],[-91.81,-76.89],[-114.46,-85.75],[-143.88,-94.15],[-157.7,-104.79],[-165.24,-116.2],[-171.57,-130.86],[-178.41,-147],[-184.56,-156.16],[-189.92,-162.11],[-193.84,-165.92],[-196.15,-168.48],[-203.16,-172.03],[-215.96,-175.6],[-236.55,-176.51],[-263.73,-176.51],[-281.32,-180.42],[-292.75,-184.56],[-298.86,-185.35]],"o":[[-301.2,-184.88],[-302.09,-184.74],[-303.04,-184.65],[-303.79,-184.39],[-304.19,-183.14],[-303.15,-180.22],[-300.96,-177.34],[-298.43,-174.99],[-295.14,-172.85],[-289.38,-168.31],[-283.79,-162.99],[-278.77,-157.47],[-272.71,-149.71],[-264.74,-134.31],[-257.31,-118.48],[-248.62,-104.98],[-238.97,-97.82],[-232.03,-95.21],[-224.39,-93.23],[-216.38,-91.4],[-206.91,-88.84],[-196.92,-84.29],[-189.49,-77.83],[-181.23,-62.33],[-183.29,-24.02],[-179.09,0.38],[-166.81,10.09],[-156.98,14.41],[-153.37,15.31],[-148.64,16.81],[-141.82,19.55],[-136.18,19.85],[-127.89,14.97],[-114.75,6.34],[-96.98,-5.54],[-79.32,-16.99],[-75.21,-23.16],[-74.89,-37.87],[-74.65,-46.94],[-75.41,-55.06],[-78.01,-60.83],[-82.05,-67.7],[-88.84,-74.99],[-104.27,-83.17],[-134.27,-91.24],[-154.58,-101.44],[-163.03,-112.17],[-169.36,-125.11],[-176.09,-141.81],[-182.85,-153.85],[-188.1,-160.29],[-193.01,-164.92],[-195.41,-167.7],[-199.43,-170.48],[-211.42,-174.59],[-227.68,-176.76],[-254.57,-176.39],[-276.94,-178.89],[-289.22,-183.26],[-297.79,-185.24],[-300.27,-185.33]],"v":[[-301,-185],[-301.78,-184.78],[-302.73,-184.68],[-303.56,-184.49],[-304,-184],[-303.57,-181.2],[-301.72,-178.28],[-299.26,-175.73],[-297,-174],[-291.29,-169.88],[-285.62,-164.79],[-280.39,-159.3],[-276,-154],[-267.33,-139.52],[-259.82,-123.68],[-251.66,-109.25],[-241,-99],[-234.39,-96.04],[-226.96,-93.87],[-219.06,-92.02],[-211,-90],[-200.1,-85.9],[-191.83,-80.11],[-186,-72],[-182.49,-36.64],[-181,-4],[-171.08,7.08],[-158,14],[-154.58,15.01],[-151,16],[-144.04,18.72],[-138,20],[-130.74,16.74],[-122,11],[-102.89,-1.59],[-84,-14],[-76.22,-20.67],[-75,-35],[-74.7,-43.97],[-75,-52],[-77.1,-59.02],[-80,-64],[-86.4,-72.69],[-96,-79],[-124.36,-88.49],[-151,-99],[-160.37,-108.48],[-167,-120],[-173.83,-136.33],[-181,-151],[-186.33,-158.22],[-192,-164],[-194.63,-166.81],[-197,-169],[-207.29,-173.31],[-220,-176],[-245.56,-176.45],[-272,-178],[-285.27,-181.84],[-296,-185],[-299.56,-185.34]],"c":true}],"h":1},{"t":97,"s":[{"i":[[-302.71,-184.29],[-303.95,-181.64],[-301.03,-177.19],[-295.99,-172.79],[-291.58,-169.5],[-288.09,-166.44],[-283.62,-162.2],[-279.31,-157.61],[-267,-137.34],[-252.57,-107.72],[-242.87,-100.23],[-240.68,-98.29],[-224.37,-93.35],[-202.84,-88.9],[-192.26,-81.2],[-186.94,-74.18],[-183.24,-50.37],[-184.26,-9.39],[-174.07,4.82],[-160.29,12.43],[-154.01,14.69],[-150.89,15.69],[-142.68,18.72],[-135.51,19.46],[-130.22,16.22],[-127.13,13.8],[-123.16,11.08],[-119.2,8.68],[-116.67,7.33],[-114.63,6.38],[-109.61,3.02],[-104.63,-0.96],[-101.75,-2.66],[-99.66,-3.57],[-93.67,-7.5],[-86.67,-12.24],[-80.69,-15.99],[-77.62,-18.52],[-76.57,-22.35],[-76.22,-29.3],[-75.74,-53.15],[-85.94,-73.71],[-106.12,-84],[-128.22,-89.69],[-140.32,-94.18],[-147.23,-98.01],[-150.78,-99.74],[-153.5,-100.62],[-159.39,-106.17],[-165.54,-116],[-172.66,-131.61],[-180.52,-148.76],[-188.44,-160.45],[-195.33,-166.8],[-201.04,-170.4],[-204.31,-172.73],[-221.58,-176.42],[-252.77,-175.94],[-278.22,-179.64],[-295.84,-184.87],[-301.96,-184.91]],"o":[[-304.03,-182.96],[-302.45,-178.75],[-297.8,-174.21],[-292.87,-170.43],[-289.57,-167.76],[-285.11,-163.66],[-280.72,-159.17],[-271.47,-147.98],[-257.56,-117.21],[-243.78,-101.08],[-241.32,-98.83],[-232.2,-94.66],[-209.69,-90.48],[-194.54,-83.36],[-188.46,-76.61],[-182.61,-64.17],[-184.06,-22.98],[-177.93,1.6],[-165.26,10.24],[-155.06,14.34],[-151.92,15.36],[-145.68,17.48],[-137.6,19.71],[-131.4,17.07],[-128.08,14.58],[-124.56,11.99],[-120.48,9.43],[-117.36,7.64],[-115.31,6.7],[-111.55,4.5],[-106.15,0.29],[-102.42,-2.37],[-100.37,-3.26],[-96.08,-5.88],[-88.96,-10.68],[-82.13,-15.23],[-78.43,-17.64],[-76.71,-20.7],[-76.33,-26.65],[-75.02,-43.8],[-81.2,-68.11],[-99.02,-81.66],[-120.72,-88.02],[-137.71,-92.92],[-145.08,-96.72],[-149.78,-99.43],[-152.64,-100.34],[-156.87,-103.17],[-163.72,-112.58],[-170.15,-125.47],[-177.84,-143.25],[-186.53,-157.8],[-192.85,-164.95],[-199.89,-169.53],[-203.25,-171.99],[-212.45,-175.95],[-241.74,-176.42],[-271.55,-177.71],[-290.37,-183.22],[-301.61,-185.02],[-302.52,-184.54]],"v":[[-303,-184],[-303.2,-180.19],[-299.42,-175.7],[-294.43,-171.61],[-291,-169],[-286.6,-165.05],[-282.17,-160.69],[-278,-156],[-262.28,-127.27],[-245,-102],[-242.1,-99.53],[-240,-98],[-217.03,-91.91],[-197,-85],[-190.36,-78.9],[-186,-72],[-183.65,-36.67],[-180,-2],[-169.66,7.53],[-156,14],[-152.97,15.03],[-150,16],[-140.14,19.21],[-133,18],[-129.15,15.4],[-126,13],[-121.82,10.25],[-118,8],[-115.99,7.02],[-114,6],[-107.88,1.66],[-103,-2],[-101.06,-2.96],[-99,-4],[-91.31,-9.09],[-84,-14],[-79.56,-16.82],[-77,-20],[-76.45,-24.5],[-76,-32],[-78.47,-60.63],[-93,-78],[-113.42,-86.01],[-135,-92],[-142.7,-95.45],[-149,-99],[-151.71,-100.04],[-154,-101],[-161.55,-109.38],[-167,-119],[-175.25,-137.43],[-184,-154],[-190.64,-162.7],[-199,-169],[-202.15,-171.19],[-205,-173],[-231.66,-176.42],[-264,-177],[-284.29,-181.43],[-301,-185],[-302.24,-184.73]],"c":true}],"h":1},{"t":98,"s":[{"i":[[-302.43,-184.57],[-303.6,-180.1],[-298.22,-175.19],[-296.95,-173.98],[-295.5,-172.44],[-293.56,-171.11],[-291.5,-170.44],[-286.73,-165.98],[-280.96,-159.41],[-270.62,-144.28],[-261.32,-123.83],[-255.61,-114.4],[-251.87,-110.1],[-250.2,-107.57],[-249.48,-105.48],[-248.07,-104.27],[-246.46,-103.35],[-244.66,-101.78],[-243.24,-100.14],[-235.98,-96.82],[-225.21,-94.73],[-210.87,-91.33],[-196.19,-85.15],[-186.25,-72.5],[-183.8,-53.7],[-184.63,-36.43],[-185.53,-21.56],[-184.13,-12.24],[-181.69,-4.72],[-180.3,-3.04],[-179.41,-1.42],[-178.6,-0.37],[-178.3,0.64],[-170.29,7.02],[-152.83,14.32],[-142.87,17.84],[-136.43,20.05],[-134.59,19.15],[-130.36,15.87],[-125.06,12.43],[-119.62,8.92],[-113.94,5.56],[-108.66,2.06],[-105.79,0.36],[-103.79,-0.49],[-101.14,-3.27],[-94.35,-6.45],[-90.44,-10.03],[-82.6,-13.83],[-77.64,-25.13],[-76.14,-55.94],[-115.17,-85.92],[-146.56,-98.09],[-154.06,-101.29],[-165.5,-115.69],[-173.29,-131.03],[-178.78,-146.69],[-181.3,-149.82],[-202.44,-175.08],[-246.59,-176.29],[-289.26,-184.7]],"o":[[-304.74,-182.25],[-300.34,-176.57],[-297.45,-174.51],[-295.98,-172.94],[-294.31,-171.4],[-292.16,-170.64],[-288.74,-168.02],[-282.84,-161.68],[-274.21,-151.12],[-264.17,-130.64],[-256.92,-116.1],[-253.08,-111.4],[-250.46,-108.33],[-249.71,-106.14],[-248.59,-104.59],[-247.01,-103.64],[-245.29,-102.46],[-243.63,-100.62],[-239.62,-97.96],[-228.77,-95.21],[-216.52,-92.76],[-200.7,-87.53],[-188.6,-77.65],[-183.85,-60.52],[-184.12,-41.4],[-185.34,-26.51],[-184.78,-15.13],[-182.58,-7.04],[-180.6,-3.58],[-179.71,-1.97],[-178.7,-0.69],[-178.4,0.3],[-175.37,4.1],[-159.02,12.12],[-145.65,16.82],[-138.25,19.45],[-135.67,19.97],[-131.94,17.1],[-127,13.72],[-121.37,10.03],[-115.86,6.78],[-110.34,3.2],[-106.39,0.61],[-104.48,-0.19],[-102.02,-1.63],[-97.59,-5.54],[-90.99,-8.66],[-86.66,-12.57],[-75.67,-18.9],[-76.25,-46.7],[-87.36,-83.62],[-141.3,-94.8],[-151.83,-101.02],[-162.09,-107.37],[-170.98,-127.14],[-177.04,-139.73],[-181.82,-149.85],[-190.19,-164.79],[-234.43,-178.06],[-275.18,-178.07],[-302.21,-185.03]],"v":[[-303,-184],[-301.97,-178.34],[-298,-175],[-296.46,-173.46],[-295,-172],[-292.86,-170.88],[-291,-170],[-284.78,-163.83],[-279,-157],[-267.39,-137.46],[-258,-118],[-254.35,-112.9],[-251,-109],[-249.96,-106.85],[-249,-105],[-247.54,-103.95],[-246,-103],[-244.14,-101.2],[-243,-100],[-232.38,-96.01],[-222,-94],[-205.78,-89.43],[-193,-82],[-185.05,-66.51],[-184,-46],[-184.99,-31.47],[-185,-17],[-183.35,-9.64],[-181,-4],[-180,-2.5],[-179,-1],[-178.5,-0.03],[-178,1],[-164.66,9.57],[-148,16],[-140.56,18.65],[-136,20],[-133.27,18.13],[-129,15],[-123.21,11.23],[-118,8],[-112.14,4.38],[-107,1],[-105.14,0.09],[-103,-1],[-100,-4],[-92,-8],[-89,-11],[-81,-15],[-77,-35],[-79,-63],[-136,-93],[-150,-100],[-155,-102],[-169,-123],[-175,-135],[-181,-149],[-182,-151],[-223,-177],[-258,-177],[-301,-185]],"c":true}],"h":1},{"t":99,"s":[{"i":[[-300.27,-186.72],[-303.87,-181.86],[-302.46,-178.5],[-300.85,-177.29],[-298.56,-176.52],[-295.54,-173.49],[-292.47,-170.66],[-290.69,-169.5],[-290.14,-168.12],[-285.09,-163.72],[-279.21,-156.69],[-277.49,-153.68],[-276.12,-153.18],[-275.9,-152.4],[-276.11,-151.25],[-275.48,-150.68],[-274.12,-150.2],[-272.97,-147.85],[-271.65,-144.17],[-268.58,-138.4],[-265.19,-131.36],[-259.07,-119.15],[-249.57,-105.61],[-245.68,-103.49],[-245.17,-102.12],[-230.85,-96.04],[-206.19,-91.68],[-194.82,-83.97],[-187.99,-75.34],[-184.55,-53.1],[-186.06,-14.27],[-181.98,-5.32],[-179.66,-2.83],[-172.74,4.23],[-160.94,10.61],[-154.71,12.7],[-151.19,13.59],[-145.19,16.07],[-137.8,19.12],[-131.93,16.85],[-121.26,9.85],[-109.81,2.8],[-104.28,-0.18],[-101.08,-3.31],[-94.29,-6.49],[-90.26,-10.15],[-86.24,-12.18],[-77.69,-19.67],[-76.35,-50.5],[-78.72,-57.94],[-79.33,-63.54],[-87.02,-74.63],[-93.95,-79.84],[-141.45,-91.95],[-169.98,-123.61],[-180.14,-146.12],[-191.36,-163.58],[-196.2,-167.38],[-218.19,-177.19],[-255.26,-176.76],[-279.12,-180.77]],"o":[[-303.89,-183.11],[-303.15,-179.56],[-301.57,-177.53],[-299.34,-176.78],[-296.55,-174.66],[-293.5,-171.49],[-290.86,-169.94],[-290.33,-168.59],[-287.49,-165.87],[-280.95,-159.12],[-277.93,-153.84],[-276.59,-153.35],[-275.85,-152.77],[-276.04,-151.64],[-275.92,-150.83],[-274.58,-150.36],[-273.4,-149.02],[-272.1,-145.43],[-269.73,-140.72],[-266.3,-133.72],[-261.79,-124.6],[-252.97,-109.66],[-245.85,-103.93],[-245.35,-102.59],[-239.01,-97.69],[-214.45,-93.03],[-197.57,-86.56],[-190.03,-78.36],[-184.01,-65.96],[-185.57,-27.26],[-182.64,-6.16],[-180.49,-3.66],[-176.27,1.42],[-165.07,8.82],[-155.87,12.4],[-152.37,13.29],[-147.79,14.76],[-140.19,18.25],[-133.92,18.86],[-125.08,12.53],[-113.9,5.67],[-105.86,0.27],[-102.01,-1.63],[-97.49,-5.6],[-91.1,-8.59],[-87.76,-11.83],[-76.04,-18.94],[-76.73,-42.39],[-77.19,-56.29],[-79.7,-61.71],[-81.68,-68.7],[-91.8,-77.94],[-112.7,-90.5],[-165.65,-111.69],[-177.26,-140.14],[-186.03,-156.18],[-195.97,-166.64],[-205.04,-174.3],[-243.19,-178.66],[-274.03,-178.59],[-291.09,-183.79]],"v":[[-303,-184],[-303.51,-180.71],[-302,-178],[-300.1,-177.04],[-298,-176],[-294.52,-172.49],[-291,-170],[-290.51,-169.05],[-290,-168],[-283.02,-161.42],[-278,-154],[-277.04,-153.52],[-276,-153],[-275.97,-152.02],[-276,-151],[-275.03,-150.52],[-274,-150],[-272.53,-146.64],[-271,-143],[-267.44,-136.06],[-264,-129],[-256.02,-114.41],[-246,-104],[-245.51,-103.04],[-245,-102],[-222.65,-94.53],[-200,-88],[-192.42,-81.17],[-187,-73],[-185.06,-40.18],[-183,-7],[-181.23,-4.49],[-179,-2],[-168.91,6.52],[-157,12],[-153.54,13],[-150,14],[-142.69,17.16],[-136,19],[-129,15],[-118,8],[-107,1],[-103,-1],[-100,-4],[-92,-8],[-89,-11],[-85,-13],[-77,-36],[-77,-55],[-79,-59],[-80,-65],[-89,-76],[-96,-81],[-155,-103],[-175,-135],[-183,-151],[-195,-166],[-197,-168],[-232,-178],[-268,-178],[-284,-182]],"c":true}],"h":1},{"t":100,"s":[{"i":[[-302.45,-184.54],[-303.58,-183.62],[-304.28,-182.63],[-300.57,-177.02],[-292.98,-170.82],[-286.45,-164.73],[-280.65,-158.31],[-271.57,-143.86],[-261.42,-123.65],[-255.32,-113.41],[-251.34,-107.28],[-249.1,-105.58],[-247.31,-105.24],[-245.48,-103.54],[-243.55,-101.3],[-234.24,-97.47],[-220.4,-95.1],[-209.41,-92.17],[-200.02,-88.38],[-195.36,-84.71],[-192.78,-81.03],[-191.35,-79.36],[-190.3,-78.49],[-184.82,-56.63],[-186.85,-17.26],[-181.65,-4.73],[-178.63,-1.69],[-174.83,2.21],[-169.6,6.21],[-165.85,7.76],[-162.38,8.43],[-159.48,9.88],[-157.03,11.63],[-151.13,13.51],[-144.37,15.16],[-139.58,17.11],[-136.21,19.01],[-133.95,18.4],[-130.36,15.86],[-125.73,12.99],[-121.32,10.59],[-119.41,8.24],[-116.36,6.83],[-109,3.3],[-105.83,-0.41],[-102.08,-2.28],[-98.49,-4],[-94.9,-7.41],[-88.45,-10.45],[-79.52,-15.95],[-78.21,-30.38],[-77.61,-55.87],[-91.05,-79.01],[-118.33,-89.47],[-149.96,-99.08],[-172.12,-127.08],[-190.66,-163.83],[-205.47,-172.5],[-213.62,-175.67],[-246.64,-176.74],[-292.76,-184.45]],"o":[[-303.19,-183.81],[-304.12,-183.03],[-302.83,-179.36],[-295.65,-172.75],[-288.63,-166.82],[-282.46,-160.47],[-275.11,-150.54],[-264.72,-130.42],[-256.65,-115.77],[-252.67,-109.17],[-249.69,-105.71],[-247.91,-105.35],[-246.21,-104.38],[-244.15,-101.99],[-238.79,-98.67],[-225.05,-95.68],[-212.9,-93.23],[-202.97,-89.74],[-196.46,-85.95],[-193.52,-82.25],[-191.7,-79.61],[-190.65,-78.79],[-184.65,-69.25],[-185.92,-30.63],[-182.58,-5.89],[-179.67,-2.63],[-176.53,0.6],[-171.37,5.01],[-166.91,7.54],[-163.59,8.2],[-160.22,9.32],[-157.89,11.04],[-153.44,12.93],[-146.59,14.63],[-140.98,16.36],[-137.2,18.44],[-135.02,18.97],[-131.61,16.84],[-127.32,13.94],[-122.73,11.31],[-119.65,9.84],[-117.38,7.06],[-112.08,4.22],[-106.18,1.47],[-104.15,-1.61],[-99.74,-3.84],[-96.13,-5.58],[-92.12,-9.23],[-83.72,-13.44],[-77.82,-19.4],[-77.8,-47.24],[-81.84,-71.48],[-107.86,-87.45],[-136.78,-94.86],[-167.13,-113.08],[-182.67,-150.68],[-205.27,-172.55],[-211.75,-174.58],[-229.34,-179.46],[-279.29,-179.11],[-302.19,-185.08]],"v":[[-303,-184],[-303.85,-183.33],[-304,-182],[-298.11,-174.88],[-291,-169],[-284.46,-162.6],[-279,-156],[-268.15,-137.14],[-258,-118],[-254,-111.29],[-250,-106],[-248.5,-105.46],[-247,-105],[-244.82,-102.76],[-243,-101],[-229.64,-96.58],[-216,-94],[-206.19,-90.95],[-198,-87],[-194.44,-83.48],[-192,-80],[-191,-79.08],[-190,-78],[-185.37,-43.63],[-183,-7],[-180.66,-3.68],[-178,-1],[-173.1,3.61],[-168,7],[-164.72,7.98],[-161,9],[-158.69,10.46],[-156,12],[-148.86,14.07],[-142,16],[-138.39,17.78],[-136,19],[-132.78,17.62],[-129,15],[-124.23,12.15],[-120,10],[-119,8],[-115,6],[-107,2],[-105,-1],[-101,-3],[-97,-5],[-94,-8],[-86,-12],[-79,-17],[-78,-39],[-79,-61],[-99,-83],[-127,-92],[-156,-104],[-177,-138],[-201,-170],[-210,-174],[-215,-176],[-264,-178],[-301,-185]],"c":true}],"h":1},{"t":101,"s":[{"i":[[-299.3,-187.7],[-303.77,-183.09],[-303.5,-181.73],[-299.48,-176.41],[-293.92,-170.85],[-290.69,-168.19],[-288.49,-167.44],[-287.31,-165.86],[-286.52,-163.55],[-283.86,-160.94],[-280.84,-158.12],[-273.63,-147.44],[-265.54,-131.95],[-260.48,-121.63],[-256.68,-114.05],[-250.84,-107.47],[-243.94,-102.02],[-233.93,-97.95],[-221.15,-95.98],[-204.33,-91.08],[-191.84,-80.99],[-184.67,-54.44],[-187.46,-16.14],[-180.59,-3.32],[-175.03,1.59],[-165.26,7.55],[-152.28,12.55],[-142.33,15.96],[-135.03,18.1],[-130.92,16.68],[-124.79,12.54],[-122.63,11.24],[-120.56,10.36],[-117.93,8.37],[-114.91,5.57],[-113.39,4.91],[-112.26,5.12],[-111.41,3.24],[-108.41,1.9],[-96.24,-6.09],[-91.38,-9.76],[-80.84,-14.42],[-79.42,-28.31],[-77.53,-46.91],[-84.83,-74.3],[-94.2,-79.87],[-97.83,-83.38],[-102.28,-85.3],[-145.02,-95.23],[-163.37,-110.38],[-166.75,-114.63],[-166.77,-116.49],[-168.76,-117.6],[-170.99,-122.96],[-175.62,-132.78],[-180.24,-143.64],[-190.49,-159.86],[-199.71,-169.55],[-214.89,-177.1],[-249.66,-177.84],[-276.78,-179.6]],"o":[[-303.52,-183.48],[-303.76,-182.22],[-301.27,-178.49],[-295.8,-172.59],[-291.45,-168.47],[-289.21,-167.68],[-287.55,-166.58],[-286.79,-164.35],[-284.94,-161.87],[-281.81,-159.06],[-276.61,-152.47],[-268.09,-137.18],[-261.64,-124.36],[-258,-116.47],[-253.12,-109.71],[-246.26,-103.62],[-238.1,-98.96],[-225.46,-96.46],[-209.91,-93.33],[-195.29,-84.9],[-183.94,-67.12],[-186.43,-28.95],[-182.08,-5.11],[-177.07,0.03],[-169.37,5.52],[-156.71,11.06],[-145.32,14.91],[-137.19,17.55],[-133.03,17.91],[-126.8,13.99],[-123.35,11.56],[-121.23,10.64],[-118.97,9.33],[-115.89,6.48],[-113.76,4.85],[-112.64,5.04],[-111.65,4.84],[-109.33,2.04],[-102.56,-1.84],[-91.67,-8.15],[-88.25,-11.77],[-78.48,-18.85],[-78.54,-40.14],[-79.09,-63.76],[-92.49,-80.13],[-97.32,-81.83],[-100.75,-84.92],[-120.81,-92.88],[-160.42,-107.79],[-165.15,-114.32],[-167.31,-115.46],[-167.15,-117.34],[-170.09,-119.82],[-173.96,-128.95],[-178.54,-139.58],[-186.1,-154.83],[-198.2,-167.06],[-205.62,-173.29],[-233.63,-179.48],[-270.83,-179.55],[-290.36,-182.66]],"v":[[-303,-184],[-303.76,-182.66],[-303,-181],[-297.64,-174.5],[-292,-169],[-289.95,-167.94],[-288,-167],[-287.05,-165.1],[-286,-163],[-282.84,-160],[-280,-157],[-270.86,-142.31],[-263,-127],[-259.24,-119.05],[-255,-112],[-248.55,-105.54],[-242,-101],[-229.69,-97.2],[-217,-95],[-199.81,-87.99],[-189,-76],[-185.55,-41.69],[-183,-7],[-178.83,-1.64],[-173,3],[-160.99,9.3],[-148,14],[-139.76,16.76],[-134,18],[-128.86,15.34],[-124,12],[-121.93,10.94],[-120,10],[-116.91,7.42],[-114,5],[-113.01,4.98],[-112,5],[-111,3],[-107,1],[-92,-8],[-91,-10],[-80,-16],[-79,-34],[-78,-52],[-91,-79],[-96,-81],[-99,-84],[-104,-86],[-157,-105],[-165,-114],[-167,-115],[-167,-117],[-169,-118],[-172,-125],[-177,-136],[-182,-147],[-196,-165],[-202,-171],[-222,-178],[-264,-179],[-283,-181]],"c":true}],"h":1},{"t":102,"s":[{"i":[[-300.17,-185.63],[-303.96,-183.15],[-303.66,-182.12],[-303.19,-181.26],[-295.61,-172.71],[-282.67,-160.28],[-267.22,-134.02],[-252.89,-107.78],[-230.5,-97.72],[-205.04,-92.43],[-192.66,-82.47],[-186.59,-69.08],[-186.6,-46.7],[-188.09,-18.04],[-175.52,1.42],[-154.1,10.56],[-141.36,15.23],[-134.1,18.11],[-129.52,16.26],[-121.96,10.28],[-114.86,5.94],[-108.07,2.35],[-103.95,-0.61],[-101.02,-3.33],[-99.39,-4.09],[-98.26,-3.88],[-97.68,-4.51],[-97.19,-5.88],[-95.82,-6.61],[-93.71,-7.54],[-88.35,-10.66],[-80.54,-15.66],[-79.14,-22.83],[-79.12,-37.35],[-78.84,-50.12],[-79.98,-62.06],[-81.5,-65.57],[-82.87,-66.75],[-83.41,-68.37],[-83.61,-70.36],[-96.16,-83.14],[-123.4,-92.48],[-136.07,-96.28],[-142.46,-98.49],[-150.3,-101.48],[-157.97,-106.27],[-161.79,-109.37],[-164.33,-111.24],[-166.43,-114.04],[-168.27,-117.77],[-173.02,-126.29],[-178.27,-137.38],[-185.18,-151.59],[-195.77,-166.09],[-200.32,-168.51],[-200.82,-169.88],[-204.99,-172.44],[-211.63,-175.57],[-228.26,-178.38],[-258.65,-178.2],[-283.27,-181.64]],"o":[[-304,-183.55],[-303.79,-182.43],[-303.36,-181.53],[-299.77,-176.57],[-287.06,-164.56],[-271.78,-144.63],[-257.78,-115.59],[-239.23,-99.5],[-213.4,-94.19],[-195.87,-86.18],[-188.03,-73.92],[-185.06,-55.93],[-188.12,-27.76],[-181.22,-2.86],[-161.96,8.13],[-144.31,13.93],[-136.26,17.33],[-131.78,17.88],[-124.61,12.46],[-117.33,7.27],[-110.23,3.48],[-104.94,0.31],[-101.99,-2.43],[-99.77,-4.15],[-98.64,-3.96],[-97.83,-4.07],[-97.36,-5.41],[-96.47,-6.34],[-94.44,-7.21],[-91.33,-9.08],[-82.96,-13.95],[-79.33,-18.65],[-79.03,-32.17],[-78.85,-45.59],[-79.4,-58.35],[-81.07,-65.2],[-82.4,-66.35],[-83.35,-67.69],[-83.54,-69.7],[-88.46,-78.39],[-113.63,-90.18],[-133.84,-95.54],[-140.38,-97.76],[-147.31,-100.1],[-155.63,-104.57],[-160.88,-108.74],[-163.52,-110.61],[-165.8,-112.91],[-167.67,-116.47],[-171.14,-122.6],[-176.59,-133.68],[-182.29,-145.79],[-191.92,-161.74],[-200.16,-168.07],[-200.65,-169.41],[-202.67,-171.16],[-209.47,-174.65],[-219.43,-178.03],[-247.87,-178.47],[-276.43,-179.57],[-295.14,-184.66]],"v":[[-304,-184],[-303.87,-182.79],[-303.51,-181.82],[-303,-181],[-291.33,-168.63],[-279,-155],[-262.5,-124.81],[-245,-103],[-221.95,-95.95],[-200,-89],[-190.34,-78.2],[-186,-64],[-187.36,-37.23],[-184,-9],[-168.74,4.77],[-147,13],[-138.81,16.28],[-133,18],[-127.06,14.36],[-120,9],[-112.55,4.71],[-106,1],[-102.97,-1.52],[-100,-4],[-99.02,-4.03],[-98,-4],[-97.52,-4.96],[-97,-6],[-95.13,-6.91],[-93,-8],[-85.65,-12.3],[-80,-17],[-79.09,-27.5],[-79,-41],[-79.12,-54.23],[-81,-65],[-81.95,-65.96],[-83,-67],[-83.47,-69.03],[-84,-71],[-104.89,-86.66],[-132,-95],[-138.22,-97.02],[-144,-99],[-152.96,-103.03],[-160,-108],[-162.66,-109.99],[-165,-112],[-167.05,-115.26],[-169,-119],[-174.8,-129.98],[-180,-141],[-188.55,-156.67],[-200,-168],[-200.48,-168.96],[-201,-170],[-207.23,-173.54],[-213,-176],[-238.06,-178.42],[-269,-179],[-289.2,-183.15]],"c":true}],"h":1},{"t":103,"s":[{"i":[[-296.68,-186.99],[-303.9,-182.77],[-303.28,-181.39],[-296.21,-173.44],[-283.73,-161.35],[-268.61,-135.57],[-253.89,-108.78],[-239.79,-101],[-228.48,-97.77],[-216.85,-95.57],[-205.29,-92.94],[-201.11,-90.24],[-199.61,-88.5],[-195.25,-84.76],[-191.01,-79.3],[-186.5,-56.3],[-189.25,-22.28],[-185.3,-11.94],[-183.4,-9.73],[-179.77,-3.6],[-174.22,1.18],[-160.72,7.83],[-143.95,13.29],[-136.16,16.07],[-132.85,17.09],[-128.55,15.51],[-121.02,10.28],[-113.64,5.76],[-106.24,1.19],[-100.89,-3.3],[-93.89,-7.15],[-91.68,-8.51],[-91.18,-9.88],[-90.4,-10.1],[-89.25,-9.88],[-88.68,-10.51],[-88.19,-11.88],[-84.98,-13.47],[-81.42,-15.04],[-80.63,-19],[-81.14,-26.48],[-80.65,-33.62],[-80.05,-40.01],[-80.11,-56.38],[-84.1,-71.38],[-91.22,-79.45],[-98.23,-83.63],[-108.5,-88.44],[-120.78,-92.81],[-130.4,-95.55],[-138.35,-98.06],[-146.67,-100.79],[-154.71,-103.58],[-157.35,-105.53],[-157.82,-106.83],[-160.16,-107.31],[-177.98,-137.24],[-189.04,-155.32],[-198.17,-167.64],[-216.49,-177.93],[-253.01,-178.11]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.1,-177.01],[-288.03,-165.61],[-273.16,-146.18],[-258.97,-116.87],[-243.3,-102.36],[-232.38,-98.7],[-220.95,-96.1],[-209.02,-93.99],[-201.56,-90.74],[-200.14,-89.12],[-196.99,-86.36],[-192.26,-81.23],[-185.88,-67.66],[-188.19,-33.61],[-185.85,-12.57],[-184.08,-10.51],[-181.16,-5.69],[-176.3,-0.16],[-166.24,5.69],[-149.57,11.64],[-137.48,15.52],[-133.84,16.86],[-130.79,16.87],[-123.66,12.22],[-116.52,7.42],[-108.5,2.65],[-103.2,-1.73],[-96.24,-6.01],[-91.84,-8.07],[-91.35,-9.41],[-90.77,-10.15],[-89.64,-9.96],[-88.83,-10.07],[-88.36,-11.41],[-86.52,-12.96],[-82.43,-14.51],[-80.56,-17.01],[-80.92,-23.73],[-80.87,-31.37],[-80.23,-37.94],[-79.81,-49.94],[-82.25,-67.1],[-89.11,-77.63],[-95.78,-82.45],[-104.61,-86.78],[-116.58,-91.45],[-127.73,-94.77],[-135.71,-97.19],[-143.81,-100],[-152.12,-102.58],[-157.19,-105.12],[-157.66,-106.39],[-158.76,-107.71],[-172.08,-117.1],[-186.7,-153.09],[-194.2,-162.39],[-208.02,-173.7],[-239.63,-180.08],[-282.58,-180.13]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-292.12,-169.53],[-280,-156],[-263.79,-126.22],[-246,-104],[-236.08,-99.85],[-225,-97],[-212.93,-94.78],[-202,-91],[-200.63,-89.68],[-199,-88],[-193.75,-83],[-190,-77],[-187.35,-44.95],[-186,-13],[-184.69,-11.23],[-183,-9],[-178.04,-1.88],[-171,3],[-155.15,9.74],[-139,15],[-135,16.46],[-132,17],[-126.1,13.86],[-119,9],[-111.07,4.21],[-105,0],[-98.56,-4.66],[-92,-8],[-91.52,-8.96],[-91,-10],[-90.02,-10.03],[-89,-10],[-88.52,-10.96],[-88,-12],[-83.71,-13.99],[-81,-16],[-80.77,-21.36],[-81,-29],[-80.44,-35.78],[-80,-42],[-81.18,-61.74],[-87,-75],[-93.5,-80.95],[-101,-85],[-112.54,-89.95],[-125,-94],[-133.06,-96.37],[-141,-99],[-149.4,-101.68],[-157,-105],[-157.51,-105.96],[-158,-107],[-161,-108],[-185,-150],[-191,-158],[-202,-170],[-228,-179],[-266,-179]],"c":true}],"h":1},{"t":104,"s":[{"i":[[-296.73,-186.94],[-303.9,-182.77],[-303.28,-181.39],[-296,-173.12],[-283.57,-160.88],[-279.23,-154.07],[-276.88,-149.53],[-274.64,-145.89],[-272.53,-142.98],[-264.9,-127.65],[-252.82,-108.61],[-246.39,-104.91],[-245.26,-105.12],[-244.68,-104.47],[-244.22,-103.11],[-242.63,-102.61],[-239.92,-102.3],[-237.37,-101.35],[-234.79,-100.21],[-222.23,-97.67],[-204.68,-93.57],[-201.36,-90.58],[-200.41,-90.32],[-193.15,-82.75],[-187.43,-67.45],[-187.42,-43.1],[-187.69,-14.75],[-174.47,1.02],[-154.56,8.37],[-141.35,13.5],[-133.59,17.13],[-128.22,15.4],[-121.63,10.06],[-115.25,6.02],[-108.88,2.2],[-103.45,-1.34],[-97.3,-5.5],[-90.63,-9.45],[-82.4,-14.18],[-81.45,-18.62],[-81.26,-29.47],[-80.25,-50.59],[-84.34,-71.07],[-88.41,-75.92],[-88.66,-77.64],[-91.02,-79.77],[-94.85,-82.24],[-101.32,-86.29],[-109.45,-90.16],[-118.79,-93],[-128.14,-95.21],[-141.6,-99.08],[-156.22,-105.41],[-159.92,-108.43],[-161.58,-108.66],[-169.16,-117.46],[-182.28,-143.86],[-195.66,-165.04],[-200.7,-168.75],[-210.27,-175.17],[-250.73,-178.28]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.22,-177.18],[-287.68,-164.97],[-280.04,-155.55],[-277.65,-151.05],[-275.37,-146.91],[-273.22,-143.93],[-268.24,-135.09],[-257.19,-114.41],[-246.76,-104.85],[-245.64,-105.04],[-244.82,-104.92],[-244.38,-103.57],[-243.42,-102.71],[-240.88,-102.41],[-238.22,-101.74],[-235.65,-100.58],[-228.89,-98.63],[-210.13,-95.14],[-201.65,-90.67],[-200.74,-90.41],[-196.19,-87.02],[-188.77,-72.96],[-186.33,-53.48],[-188.11,-23.74],[-179.93,-2.67],[-161.78,6.54],[-144.3,11.94],[-135.99,16.1],[-130.4,16.87],[-123.83,11.99],[-117.57,7.42],[-110.91,3.41],[-105.3,-0.09],[-99.45,-4.05],[-93.68,-7.86],[-84.99,-12.61],[-81.57,-15.88],[-81.3,-25.41],[-80.33,-42.06],[-82.26,-65.1],[-88.33,-75.35],[-88.58,-77.07],[-89.84,-78.9],[-93.53,-81.45],[-98.59,-84.71],[-106.74,-89.01],[-115.47,-92.14],[-125.13,-94.53],[-135.99,-97.37],[-151.72,-103.1],[-159.38,-108.36],[-161.02,-108.58],[-166.31,-112.54],[-177.83,-131.31],[-191.18,-158.07],[-200.27,-167.12],[-203.9,-171.42],[-231.17,-181.53],[-285.17,-180.94]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-291.84,-169.04],[-281,-157],[-278.44,-152.56],[-276,-148],[-273.93,-144.91],[-272,-142],[-261.04,-121.03],[-247,-105],[-246.01,-104.98],[-245,-105],[-244.53,-104.02],[-244,-103],[-241.75,-102.51],[-239,-102],[-236.51,-100.97],[-234,-100],[-216.18,-96.4],[-202,-91],[-201.05,-90.49],[-200,-90],[-190.96,-77.85],[-187,-62],[-187.76,-33.42],[-184,-9],[-168.12,3.78],[-147,11],[-138.67,14.8],[-132,17],[-126.02,13.7],[-120,9],[-113.08,4.72],[-107,1],[-101.45,-2.69],[-95,-7],[-87.81,-11.03],[-82,-15],[-81.37,-22.01],[-81,-33],[-81.26,-57.85],[-88,-75],[-88.49,-76.5],[-89,-78],[-92.27,-80.61],[-96,-83],[-104.03,-87.65],[-112,-91],[-121.96,-93.77],[-131,-96],[-146.66,-101.09],[-159,-108],[-160.47,-108.51],[-162,-109],[-172,-122],[-188,-153],[-200,-167],[-201,-169],[-213,-176],[-273,-180]],"c":true}],"h":1},{"t":105,"s":[{"i":[[-297.29,-187.09],[-303.9,-182.77],[-303.28,-181.39],[-298.34,-175.77],[-289.99,-168.27],[-287.33,-164.83],[-286.51,-162.64],[-284.07,-160.07],[-280.73,-157.12],[-278.86,-153.72],[-277.59,-150.04],[-272.84,-141.76],[-266.78,-131.3],[-262.5,-123.03],[-258.65,-115.95],[-254.73,-111.83],[-250.53,-108.5],[-249.36,-107.53],[-248.54,-107.35],[-246.95,-106.04],[-245.3,-104.15],[-238.03,-101.47],[-226.67,-99.79],[-212.56,-96.32],[-199.65,-89.89],[-192.44,-81.15],[-188.48,-70.87],[-187.89,-53.03],[-189.97,-30.54],[-186.83,-13.71],[-179.44,-3.45],[-167.04,4.05],[-151.65,9],[-140.33,13.47],[-132.28,17.13],[-130,16.34],[-126.05,13.69],[-122.63,11.42],[-119.63,9.4],[-113.41,5.6],[-106.11,1.06],[-100.84,-3.32],[-93.75,-7.21],[-91.68,-8.51],[-91.18,-9.88],[-89.51,-9.77],[-88.37,-11.75],[-85.16,-12.19],[-82.56,-26.25],[-80.35,-52.65],[-83.1,-67.92],[-86.18,-71.74],[-88.5,-77.39],[-98.14,-85.24],[-123.35,-94.6],[-155.71,-103.93],[-162.24,-109.38],[-186.54,-162.13],[-204.58,-171.77],[-215.91,-177.31],[-253.37,-178.72]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-301.1,-178.39],[-292.79,-170.72],[-287.57,-165.51],[-286.8,-163.39],[-285.2,-161.01],[-281.83,-158.13],[-279.32,-154.96],[-277.99,-151.26],[-274.95,-145.37],[-268.76,-134.73],[-263.68,-125.55],[-259.99,-118.23],[-256.21,-113.07],[-251.88,-109.54],[-249.59,-107.61],[-248.84,-107.4],[-247.55,-106.71],[-245.82,-104.76],[-241.69,-102.33],[-230.52,-100.2],[-217.73,-97.87],[-203.51,-92.33],[-194.45,-84.21],[-189.46,-74.48],[-187.16,-60.26],[-189.3,-38.17],[-188.36,-17.99],[-182.37,-6.44],[-171.71,2.05],[-157.01,7.53],[-143.44,11.9],[-134.75,16.08],[-130.97,17],[-127.53,14.69],[-123.82,12.22],[-120.54,10.01],[-116.35,7.32],[-108.28,2.47],[-103.21,-1.71],[-96.1,-6.07],[-91.84,-8.07],[-91.35,-9.41],[-90.54,-10.31],[-88.68,-10.14],[-86.81,-12.8],[-79.66,-16.03],[-81.65,-45.39],[-81.49,-62.07],[-84.45,-71.05],[-88.18,-74.8],[-92.33,-82.07],[-112.81,-92.15],[-141.64,-99.67],[-161.65,-109.62],[-178.53,-122.75],[-204.35,-170.16],[-208.56,-173.99],[-234,-181.33],[-286.06,-181.1]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-295.57,-173.25],[-288,-166],[-287.06,-164.11],[-286,-162],[-282.95,-159.1],[-280,-156],[-278.43,-152.49],[-277,-149],[-270.8,-138.25],[-265,-128],[-261.25,-120.63],[-257,-114],[-253.31,-110.68],[-250,-108],[-249.1,-107.47],[-248,-107],[-246.39,-105.4],[-245,-104],[-234.27,-100.84],[-223,-99],[-208.03,-94.32],[-197,-87],[-190.95,-77.81],[-188,-67],[-188.59,-45.6],[-189,-23],[-184.6,-10.08],[-176,-1],[-162.02,5.79],[-146,11],[-137.54,14.77],[-131,17],[-128.77,15.52],[-125,13],[-121.59,10.72],[-119,9],[-110.85,4.03],[-105,0],[-98.47,-4.69],[-92,-8],[-91.52,-8.96],[-91,-10],[-89,-10],[-88,-12],[-84,-13],[-82,-38],[-81,-58],[-84,-70],[-87,-73],[-89,-78],[-104,-88],[-132,-97],[-161,-109],[-163,-110],[-204,-170],[-205,-172],[-219,-178],[-271,-180]],"c":true}],"h":1},{"t":106,"s":[{"i":[[-296.94,-186.6],[-303.9,-182.77],[-303.28,-181.39],[-297.9,-175.28],[-287.37,-164.64],[-272.18,-139.5],[-256.86,-112.09],[-249.68,-108.49],[-249.18,-107.12],[-248.4,-106.9],[-247.25,-107.11],[-246.68,-106.47],[-246.22,-105.11],[-242.91,-103.75],[-237.58,-102.43],[-232.08,-100.88],[-226.61,-99.34],[-216.86,-97.52],[-205.9,-94.79],[-202.14,-92.23],[-200.53,-90.43],[-197.21,-87.66],[-194.97,-84.7],[-193.24,-81.61],[-192.27,-79.62],[-188.93,-60.14],[-190.55,-25.83],[-186.61,-13.91],[-183.5,-9.54],[-182.58,-8.08],[-182.34,-6.38],[-179.09,-3.46],[-173.04,-0.05],[-160.29,5.6],[-143.3,10.94],[-134.87,14.44],[-131.7,16.05],[-128.36,15.13],[-123.9,12.4],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-112.1,5.05],[-105.75,0.72],[-104.18,-0.3],[-93.12,-7.55],[-83.83,-13.68],[-82.31,-33.26],[-81.96,-63.41],[-86.32,-71.77],[-88.54,-77.4],[-139.96,-94.99],[-161.53,-110.65],[-164.2,-111.3],[-177.38,-131.36],[-196.8,-165.95],[-207.69,-173.37],[-245.53,-178.78]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.97,-178.21],[-291.11,-168.5],[-277.24,-150.7],[-261.99,-120.19],[-249.84,-108.93],[-249.35,-107.59],[-248.77,-106.85],[-247.64,-107.04],[-246.82,-106.92],[-246.38,-105.57],[-244.62,-104.28],[-239.39,-102.82],[-234.03,-101.46],[-228.37,-99.82],[-220.91,-98.13],[-209.35,-95.85],[-202.63,-92.77],[-201.09,-91.06],[-198.22,-88.56],[-195.58,-85.73],[-193.6,-82.3],[-192.57,-80.27],[-188.66,-71.22],[-189.87,-37.44],[-187.61,-15.64],[-184.56,-10.86],[-182.66,-8.63],[-182.42,-6.95],[-180.82,-4.68],[-175.2,-1.14],[-165.89,3.63],[-148.99,9.26],[-136.27,13.67],[-132.59,15.63],[-129.91,15.93],[-125.35,13.37],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-116.63,6.48],[-109.36,2.43],[-104.15,-0.82],[-97.31,-4.38],[-85.05,-12.99],[-81.64,-19.8],[-81.68,-53.21],[-84.32,-69.88],[-88.2,-75.16],[-102.5,-95.5],[-161.45,-109.3],[-162.92,-111.69],[-173.96,-119.87],[-189.11,-153.76],[-207.68,-172.65],[-224.88,-181.83],[-283.95,-180.96]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-294.51,-171.89],[-284,-160],[-267.08,-129.85],[-250,-109],[-249.52,-108.04],[-249,-107],[-248.02,-106.97],[-247,-107],[-246.53,-106.02],[-246,-105],[-241.15,-103.28],[-236,-102],[-230.23,-100.35],[-225,-99],[-213.1,-96.69],[-203,-93],[-201.62,-91.65],[-200,-90],[-196.39,-86.7],[-194,-83],[-192.9,-80.94],[-192,-79],[-189.4,-48.79],[-188,-17],[-185.58,-12.38],[-183,-9],[-182.5,-7.51],[-182,-6],[-177.15,-2.3],[-171,1],[-154.64,7.43],[-138,13],[-133.73,15.04],[-131,16],[-126.85,14.25],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-111,4],[-105,0],[-103,-1],[-88,-11],[-83,-16],[-82,-43],[-84,-69],[-87,-73],[-89,-78],[-161,-109],[-162,-111],[-165,-112],[-184,-144],[-205,-171],[-211,-175],[-267,-180]],"c":true}],"h":1},{"t":107,"s":[{"i":[[-298.02,-186.94],[-303.9,-182.77],[-303.28,-181.39],[-299.49,-177.01],[-293.45,-171.6],[-290.91,-168.41],[-289.63,-165.77],[-286.69,-162.45],[-283.11,-158.63],[-280.42,-154.48],[-278.57,-150.98],[-275.61,-146.01],[-272.01,-139.98],[-265.51,-126.63],[-255.53,-112.04],[-250.68,-109.49],[-250.17,-108.12],[-248.23,-106.84],[-245.29,-105.13],[-231.29,-101.12],[-209.01,-96.75],[-199.24,-89.3],[-194.11,-83.45],[-189.52,-58.89],[-190.95,-20.79],[-176.16,-1.94],[-152.52,7.2],[-138.97,12.58],[-131.03,16.08],[-128.25,15.1],[-123.53,12.24],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-114.97,6.2],[-108.69,2.08],[-100.8,-2.23],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-88.85,-10.18],[-86.95,-11.32],[-83.62,-21.82],[-81.96,-45.82],[-85.13,-70.05],[-96.45,-85.59],[-119.84,-95.1],[-130.34,-98.54],[-139.64,-99.91],[-160.48,-109.11],[-171.31,-119.14],[-174.42,-124.03],[-179.67,-133.67],[-184.96,-142.06],[-194.22,-161.86],[-202.48,-168.68],[-204.2,-170.43],[-246.23,-178.71]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-301.52,-178.96],[-295.46,-173.33],[-291.34,-169.28],[-290.05,-166.66],[-287.88,-163.64],[-284.3,-159.95],[-281.14,-155.74],[-279.14,-152.1],[-276.86,-148.03],[-273.19,-141.99],[-268.24,-132.61],[-259.15,-116.35],[-250.85,-109.93],[-250.35,-108.59],[-249.33,-107.52],[-246.21,-105.65],[-239.03,-102.24],[-216.28,-98.37],[-201.43,-91.08],[-195.58,-85.49],[-188.79,-71.74],[-190.6,-33.41],[-182.64,-6.04],[-161.1,4.68],[-142.21,11.04],[-133.38,15.1],[-129.74,15.98],[-125.15,13.23],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-117.12,6.8],[-110.95,3.76],[-104.82,-0.39],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.16,-9.8],[-87.25,-11.72],[-83.05,-14.12],[-82.69,-38.65],[-82.08,-61.5],[-91.2,-80.54],[-110.05,-92.67],[-128.69,-97.45],[-135.38,-99.93],[-152.05,-103.94],[-169.37,-116.98],[-173.48,-122.81],[-177.71,-129.53],[-183.09,-140.04],[-190.75,-152.87],[-201.47,-168.43],[-203.99,-169.61],[-223.19,-184.04],[-286.8,-181.83]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-297.48,-175.17],[-292,-170],[-290.48,-167.53],[-289,-165],[-285.49,-161.2],[-282,-157],[-279.78,-153.29],[-278,-150],[-274.4,-144],[-271,-138],[-262.33,-121.49],[-251,-110],[-250.51,-109.04],[-250,-108],[-247.22,-106.24],[-245,-105],[-223.79,-99.75],[-204,-93],[-197.41,-87.39],[-193,-81],[-190.06,-46.15],[-186,-12],[-168.63,1.37],[-145,10],[-136.18,13.84],[-130,16],[-126.7,14.16],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-113,5],[-107,1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-88,-11],[-86,-12],[-83,-33],[-82,-51],[-88,-75],[-103,-89],[-127,-97],[-132,-99],[-143,-101],[-166,-114],[-173,-122],[-175,-125],[-182,-138],[-186,-144],[-201,-168],[-203,-169],[-205,-171],[-276,-181]],"c":true}],"h":1},{"t":108,"s":[{"i":[[-298.34,-186.87],[-303.9,-182.77],[-303.28,-181.39],[-298.75,-176.05],[-291.32,-168.83],[-284.75,-160.49],[-278.77,-151.2],[-269.22,-132.4],[-257.32,-113.4],[-251.68,-110.49],[-251.17,-109.12],[-244.63,-105.46],[-232.32,-101.92],[-220.3,-99.75],[-207.93,-96.85],[-205.37,-94.51],[-204.59,-94.35],[-197.08,-87.89],[-190.51,-74.14],[-189.68,-58.46],[-191.17,-39.13],[-190.39,-26.02],[-187.93,-14.97],[-186.52,-13.36],[-186.35,-12.57],[-173.45,-0.99],[-144.74,8.38],[-133.89,13.75],[-130.44,16.02],[-128.59,15.11],[-123.47,12.21],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-115.97,6.43],[-111.6,4.58],[-107.73,1.27],[-102.52,-2.03],[-94.42,-6.71],[-84.84,-13.39],[-84.36,-27.54],[-82.45,-52.44],[-90.4,-80.83],[-100.75,-87.44],[-102.56,-89.77],[-105.57,-90.44],[-109.04,-92.62],[-120.62,-95.47],[-135.8,-100.39],[-152.5,-104.64],[-159,-109.33],[-161.54,-110.7],[-165.06,-113.38],[-173.51,-120.91],[-183.42,-139.17],[-200.13,-167.31],[-217.06,-177.44],[-256.95,-179.61]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-301.09,-178.38],[-293.87,-171.27],[-286.86,-163.39],[-280.7,-154.39],[-272.81,-140.45],[-261.47,-118.87],[-251.85,-110.93],[-251.35,-109.59],[-248.22,-107],[-236.68,-102.92],[-224.83,-100.33],[-211.84,-98.01],[-205.57,-94.59],[-204.87,-94.39],[-200.33,-91.82],[-192.17,-79.05],[-189.34,-64.64],[-190.59,-45.7],[-190.92,-30.29],[-188.89,-18.36],[-186.6,-13.58],[-186.4,-12.86],[-181.83,-5.18],[-154.9,5.79],[-135.42,12.74],[-131.4,15.39],[-130.11,16.01],[-125.27,13.22],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-117.67,7.14],[-112.93,5.15],[-109.47,2.53],[-104.25,-1.02],[-98.24,-4.76],[-87.72,-11.02],[-82.95,-19.23],[-83.68,-43.61],[-84.31,-71.13],[-98.54,-87.2],[-102.36,-88.16],[-104.4,-90.72],[-108.19,-91.47],[-115.07,-95.02],[-130.89,-98.39],[-146.48,-103.7],[-158.04,-107.54],[-160.63,-110.42],[-163.66,-112.1],[-170.43,-116.94],[-180.26,-131.98],[-193.02,-157.48],[-213.97,-176.18],[-238.45,-182.24],[-285.96,-181.84]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-296.31,-173.66],[-289,-166],[-282.73,-157.44],[-277,-148],[-265.35,-125.63],[-252,-111],[-251.51,-110.04],[-251,-109],[-240.65,-104.19],[-228,-101],[-216.07,-98.88],[-206,-95],[-205.12,-94.45],[-204,-94],[-194.62,-83.47],[-190,-70],[-190.14,-52.08],[-191,-33],[-189.64,-22.19],[-187,-14],[-186.46,-13.11],[-186,-12],[-164.18,2.4],[-137,12],[-132.65,14.57],[-130,16],[-126.93,14.16],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-114.45,5.79],[-111,4],[-105.99,0.13],[-101,-3],[-91.07,-8.87],[-84,-16],[-84,-36],[-83,-58],[-97,-86],[-102,-88],[-103,-90],[-107,-91],[-110,-93],[-126,-97],[-141,-102],[-157,-107],[-160,-110],[-162,-111],[-166,-114],[-176,-125],[-187,-146],[-209,-173],[-224,-179],[-275,-181]],"c":true}],"h":1},{"t":109,"s":[{"i":[[-296.97,-186.29],[-303.89,-182.77],[-303.32,-181.36],[-295.71,-172.97],[-285.98,-161.49],[-278.51,-149.7],[-272.16,-137.91],[-265.04,-124.8],[-256.55,-113.6],[-252.68,-111.49],[-252.17,-110.12],[-244.41,-105.98],[-229.74,-102.07],[-216.85,-99.4],[-205.29,-95.62],[-194.99,-85.03],[-190.15,-67.57],[-190.86,-44.77],[-191.07,-21.02],[-182.06,-7.39],[-167.26,1.12],[-157.2,4.4],[-148.16,6.78],[-139.51,10.71],[-130.71,15.11],[-125.93,13.78],[-119.94,9.23],[-111.69,3.93],[-103.54,-1.4],[-96.92,-5.51],[-91.65,-8.82],[-87.47,-11.69],[-85.43,-13.75],[-84.4,-19.79],[-84.22,-33.39],[-83.64,-56.47],[-88.22,-75.94],[-93.48,-81.92],[-95.01,-84.24],[-98.52,-86.73],[-101.67,-88.25],[-104.24,-90.05],[-105.48,-91.75],[-107.4,-92.47],[-109.58,-92.85],[-119.99,-96.24],[-135.69,-100.44],[-143.63,-102.88],[-147.51,-104.46],[-152.05,-105.95],[-156.74,-107.35],[-158.95,-108.82],[-160.42,-110.64],[-162.77,-111.78],[-165.42,-112.55],[-172.56,-119.5],[-180.58,-132.57],[-191.27,-152.55],[-206.75,-172.43],[-229.88,-180.52],[-259.2,-180.39]],"o":[[-303.98,-183.35],[-303.56,-181.78],[-299.21,-176.72],[-289.09,-165.35],[-280.67,-153.5],[-274.25,-141.91],[-267.51,-129.5],[-259.56,-116.85],[-252.85,-111.93],[-252.35,-110.59],[-248.79,-107.7],[-234.89,-103.16],[-220.95,-100.09],[-209.01,-97.16],[-197.92,-89.74],[-191.11,-73.94],[-189.82,-53.26],[-191.48,-28.65],[-185.93,-10.95],[-172.72,-1.35],[-159.87,3.76],[-151.35,5.91],[-142.65,8.9],[-133.54,13.81],[-127.71,14.92],[-122.04,10.94],[-114.67,5.88],[-106.12,0.29],[-98.85,-4.35],[-93.33,-7.74],[-88.51,-11.07],[-85.93,-13.03],[-84.54,-16.35],[-84.24,-28.31],[-83.53,-48],[-85.99,-70.45],[-92.98,-81.05],[-94.5,-83.52],[-97.44,-86.1],[-100.64,-87.8],[-103.75,-89.42],[-105.11,-91.21],[-106.61,-92.29],[-108.88,-92.74],[-114.89,-94.77],[-130.39,-99.08],[-142.37,-102.4],[-146.2,-103.91],[-150.43,-105.52],[-155.2,-106.86],[-158.49,-108.25],[-159.92,-110.02],[-161.81,-111.5],[-164.57,-112.3],[-169.52,-115.71],[-178.09,-127.93],[-187.15,-144.58],[-201.07,-166.47],[-221.28,-179.58],[-248.84,-180.93],[-283.51,-181.77]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-292.4,-169.16],[-283,-157],[-276.38,-145.81],[-270,-134],[-262.3,-120.83],[-253,-112],[-252.51,-111.04],[-252,-110],[-239.65,-104.57],[-225,-101],[-212.93,-98.28],[-202,-93],[-193.05,-79.48],[-190,-61],[-191.17,-36.71],[-188,-15],[-177.39,-4.37],[-162,3],[-154.27,5.16],[-145,8],[-136.52,12.26],[-129,15],[-123.99,12.36],[-118,8],[-108.9,2.11],[-101,-3],[-95.12,-6.63],[-90,-10],[-86.7,-12.36],[-85,-15],[-84.32,-24.05],[-84,-38],[-84.81,-63.46],[-92,-80],[-93.99,-82.72],[-96,-85],[-99.58,-87.26],[-103,-89],[-104.68,-90.63],[-106,-92],[-108.14,-92.6],[-110,-93],[-125.19,-97.66],[-141,-102],[-144.92,-103.4],[-149,-105],[-153.63,-106.41],[-158,-108],[-159.43,-109.42],[-161,-111],[-163.67,-112.04],[-166,-113],[-175.33,-123.72],[-183,-137],[-196.17,-159.51],[-214,-176],[-239.36,-180.73],[-270,-181]],"c":true}],"h":1},{"t":110,"s":[{"i":[[-299.02,-186.75],[-303.89,-182.77],[-303.31,-181.36],[-297.15,-174.45],[-287.02,-162.55],[-274.75,-141.29],[-260.09,-116.04],[-250.01,-109.6],[-243.43,-106.8],[-232.02,-103.67],[-219.29,-101.39],[-213.35,-99.18],[-210.92,-97.42],[-207.81,-96.25],[-204.58,-95.41],[-200.63,-92],[-196.85,-86.53],[-193.6,-79.99],[-191.29,-71.65],[-190.87,-56.62],[-192.57,-37.46],[-190.35,-21.01],[-184.2,-10.8],[-176.86,-4.75],[-169.98,-0.78],[-160.19,2.59],[-148.43,5.69],[-139.96,9.67],[-130.31,15.05],[-125.97,13.73],[-119.65,9.05],[-111.55,3.84],[-103.7,-1.3],[-96.95,-5.49],[-91.62,-8.84],[-87.41,-11.71],[-85.39,-13.73],[-85.09,-17.11],[-86.03,-24.05],[-85.77,-30.91],[-85.08,-36.99],[-84.65,-56.77],[-88.56,-76.3],[-92.43,-80.92],[-92.66,-82.6],[-96.7,-86.37],[-104.38,-90.71],[-115.67,-95.73],[-129.33,-99.77],[-137.12,-101.94],[-141.5,-103.53],[-150.11,-105.97],[-160.43,-109.49],[-162.96,-111.7],[-164.57,-112.59],[-165.64,-113.42],[-166.58,-113.67],[-180.43,-130.79],[-199.98,-166.75],[-218.13,-178.07],[-258.24,-180.32]],"o":[[-303.99,-183.34],[-303.55,-181.78],[-300.39,-177.92],[-290.47,-166.76],[-279.2,-150.77],[-265.19,-123.93],[-252.04,-110.7],[-245.7,-107.65],[-236.37,-104.47],[-223.48,-102.13],[-214.14,-99.72],[-211.74,-98.03],[-209.02,-96.55],[-205.59,-95.68],[-202.21,-93.74],[-197.95,-88.4],[-194.71,-82.66],[-191.89,-74.48],[-190.34,-62.89],[-191.99,-43.91],[-191.5,-25.36],[-186.7,-13.73],[-179.12,-6.36],[-172.29,-1.96],[-164.22,1.49],[-152.3,4.69],[-143.31,7.64],[-133.46,13.37],[-127.89,14.96],[-121.85,10.78],[-114.45,5.74],[-106.18,0.32],[-98.89,-4.33],[-93.32,-7.75],[-88.47,-11.09],[-85.87,-13.02],[-84.82,-15.58],[-85.69,-21.35],[-85.98,-28.91],[-85.32,-34.94],[-84.63,-48.37],[-86.62,-70.74],[-92.35,-80.37],[-92.58,-82.04],[-94.51,-84.77],[-101.63,-89.34],[-111.25,-94.1],[-124.7,-98.57],[-135.62,-101.43],[-140.06,-103],[-146.14,-104.97],[-157.25,-108.23],[-162.42,-111.4],[-164.03,-112.29],[-165.34,-113.33],[-166.26,-113.59],[-174.61,-119.94],[-193.58,-154.9],[-215.08,-175.86],[-238.53,-184.69],[-289.19,-182.71]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-293.81,-170.61],[-284,-158],[-269.97,-132.61],[-254,-112],[-247.86,-108.63],[-241,-106],[-227.75,-102.9],[-215,-100],[-212.55,-98.61],[-210,-97],[-206.7,-95.97],[-204,-95],[-199.29,-90.2],[-196,-85],[-192.75,-77.24],[-191,-69],[-191.43,-50.26],[-192,-31],[-188.53,-17.37],[-181,-8],[-174.57,-3.35],[-168,0],[-156.24,3.64],[-145,7],[-136.71,11.52],[-129,15],[-123.91,12.26],[-118,8],[-108.86,2.08],[-101,-3],[-95.13,-6.62],[-90,-10],[-86.64,-12.37],[-85,-15],[-85.39,-19.23],[-86,-27],[-85.55,-32.93],[-85,-39],[-85.64,-63.75],[-92,-80],[-92.5,-81.48],[-93,-83],[-99.16,-87.85],[-107,-92],[-120.18,-97.15],[-134,-101],[-138.59,-102.47],[-143,-104],[-153.68,-107.1],[-162,-111],[-163.49,-112],[-165,-113],[-165.95,-113.5],[-167,-114],[-186,-141],[-212,-174],[-221,-179],[-280,-182]],"c":true}],"h":1},{"t":111,"s":[{"i":[[-298.68,-186.82],[-303.9,-182.77],[-303.29,-181.39],[-299.34,-176.53],[-292.45,-169.01],[-286.14,-160.85],[-280.77,-152.1],[-272,-135.69],[-259.75,-116.15],[-251.06,-110.6],[-244.67,-107.89],[-239.94,-106.24],[-237.1,-105.23],[-231.15,-103.91],[-224.86,-102.39],[-220.61,-101.67],[-217.05,-101.33],[-214.41,-100.21],[-211.97,-98.44],[-208.79,-97.25],[-205.61,-96.43],[-201.05,-92.38],[-195.81,-84.87],[-191.5,-62.18],[-193.37,-27.52],[-188,-15.31],[-183.94,-10.79],[-180.01,-7.43],[-175.26,-3.64],[-168.91,-0.96],[-160.7,1.08],[-150.63,4.51],[-138.15,9.36],[-131.95,12.94],[-128.89,15.06],[-125.75,13.7],[-119.53,8.97],[-113.98,5.44],[-108.48,1.95],[-102.16,-2.15],[-94.09,-7.06],[-91.68,-8.51],[-91.18,-9.88],[-88.47,-11.31],[-85.14,-12.65],[-85.23,-14.82],[-85.94,-23.21],[-85.74,-37.45],[-84.75,-54.01],[-86.34,-67.56],[-90.61,-79.55],[-100.43,-89.76],[-143.02,-103.1],[-162.29,-111.32],[-165.15,-113.18],[-167.17,-114.35],[-185.45,-139.88],[-196.78,-158.9],[-207.21,-170.93],[-219.78,-178.3],[-259.13,-180.8]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-301.36,-178.78],[-294.88,-171.64],[-288,-163.55],[-282.53,-155.12],[-275.63,-143.11],[-264.06,-122.21],[-252.98,-111.66],[-246.91,-108.72],[-240.88,-106.63],[-238.05,-105.54],[-233.47,-104.47],[-226.84,-102.87],[-221.84,-101.75],[-218.22,-101.46],[-215.17,-100.74],[-212.81,-99.06],[-209.99,-97.54],[-206.61,-96.7],[-203.15,-94.69],[-197.38,-87.47],[-191.07,-73.91],[-192.65,-38.98],[-189.28,-17.17],[-185.33,-12.12],[-181.63,-8.86],[-176.82,-4.82],[-171.56,-1.75],[-163.48,0.46],[-154.8,3.09],[-142.3,7.65],[-133.26,11.91],[-129.77,14.51],[-127.49,14.97],[-121.77,10.71],[-115.99,6.72],[-110.22,3.06],[-104.86,-0.37],[-96.78,-5.49],[-91.84,-8.07],[-91.35,-9.41],[-89.9,-10.74],[-86.09,-12.27],[-85.01,-12.97],[-85.7,-19.94],[-86.11,-31.45],[-85.05,-48.73],[-85.29,-62.53],[-89.01,-76.07],[-96.35,-85.54],[-121.73,-100.25],[-159.72,-110.15],[-163.84,-112.8],[-166.69,-114.66],[-177.91,-122.74],[-194.47,-155.19],[-202.8,-167.3],[-217.06,-177.24],[-240.77,-183.24],[-288.92,-182.8]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-297.11,-174.09],[-290,-166],[-284.33,-157.98],[-279,-149],[-268.03,-128.95],[-255,-113],[-248.99,-109.66],[-242,-107],[-238.99,-105.89],[-236,-105],[-229,-103.39],[-223,-102],[-219.42,-101.56],[-216,-101],[-213.61,-99.64],[-211,-98],[-207.7,-96.98],[-205,-96],[-199.22,-89.92],[-195,-83],[-192.08,-50.58],[-190,-19],[-186.67,-13.72],[-183,-10],[-178.42,-6.13],[-174,-3],[-166.19,-0.25],[-158,2],[-146.46,6.08],[-135,11],[-130.86,13.73],[-128,15],[-123.76,12.2],[-118,8],[-112.1,4.25],[-107,1],[-99.47,-3.82],[-92,-8],[-91.52,-8.96],[-91,-10],[-87.28,-11.79],[-85,-13],[-85.46,-17.38],[-86,-26],[-85.39,-43.09],[-85,-58],[-87.67,-71.81],[-92,-81],[-107,-93],[-157,-109],[-163,-112],[-166,-114],[-168,-115],[-192,-151],[-199,-162],[-212,-174],[-227,-180],[-277,-182]],"c":true}],"h":1},{"t":112,"s":[{"i":[[-297.75,-186.52],[-303.9,-182.77],[-303.29,-181.39],[-298.55,-175.45],[-290.83,-166.97],[-287.31,-162.69],[-285.76,-159.17],[-284.02,-156.69],[-282.38,-154.67],[-281.31,-152.4],[-280.49,-149.86],[-279.46,-148.66],[-278.15,-148.21],[-277.57,-147.06],[-277.16,-145.31],[-275.16,-141.59],[-272.73,-137.27],[-267.27,-127.59],[-259.03,-116.01],[-255.25,-113.33],[-254.35,-112.22],[-250.51,-110.26],[-244.8,-108.62],[-223.13,-103.05],[-200.09,-93.09],[-192.53,-62.46],[-193.78,-25.69],[-182.91,-9.85],[-168.38,-1.57],[-157.05,2.17],[-147.09,4.83],[-138.41,8.93],[-129.6,14.05],[-126.52,13.66],[-124.37,11.88],[-121.03,9.94],[-117.81,8.51],[-112.42,4.87],[-105.6,-0.07],[-101.01,-2.77],[-97.32,-5.15],[-86.89,-11.24],[-86.83,-20.33],[-83.58,-64.71],[-96.09,-86.22],[-100.08,-88.32],[-103.46,-92.13],[-123.42,-99.43],[-152.98,-106.86],[-162.74,-113.18],[-167.96,-115.18],[-176.48,-123.05],[-179.06,-128.52],[-181.66,-130.55],[-182.59,-133.32],[-185.96,-139.21],[-193.23,-152.39],[-203.16,-165.75],[-217.21,-177.92],[-230.52,-181.68],[-259.83,-181.19]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-301.13,-178.46],[-293.4,-169.7],[-287.93,-163.85],[-286.22,-160.34],[-284.58,-157.36],[-282.92,-155.34],[-281.56,-153.22],[-280.77,-150.72],[-279.89,-148.8],[-278.6,-148.36],[-277.74,-147.65],[-277.28,-145.88],[-276.05,-143.21],[-273.51,-138.63],[-269.75,-132.08],[-261.91,-119.55],[-255.57,-113.72],[-254.63,-112.58],[-252.36,-110.95],[-246.73,-109.1],[-232.84,-104.5],[-206.76,-97.34],[-191.89,-74.86],[-193.48,-37.87],[-186.97,-13.31],[-173.61,-3.98],[-160.5,1.26],[-150.34,3.95],[-141.61,6.91],[-132.41,12.5],[-127.08,13.97],[-125.16,12.62],[-122.13,10.44],[-118.87,8.98],[-114.87,6.65],[-107.78,1.5],[-102.36,-1.95],[-98.49,-4.37],[-91.8,-8.72],[-85.64,-15.11],[-87.94,-44.12],[-91.45,-81.01],[-98.8,-88.74],[-102.57,-90.16],[-112.76,-97.38],[-142.48,-104.54],[-162.05,-111.54],[-165.58,-115.03],[-171.52,-117.98],[-178.92,-126.18],[-180.28,-130.43],[-182.57,-131.76],[-184.33,-136.22],[-190.03,-146.24],[-199.29,-162.48],[-214.59,-175.79],[-227.5,-180.67],[-244.95,-183.56],[-286.33,-182.7]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-295.97,-172.57],[-289,-165],[-286.77,-161.52],[-285,-158],[-283.47,-156.02],[-282,-154],[-281.04,-151.56],[-280,-149],[-279.03,-148.51],[-278,-148],[-277.43,-146.47],[-277,-145],[-274.33,-140.11],[-272,-136],[-264.59,-123.57],[-256,-114],[-254.94,-112.95],[-254,-112],[-248.62,-109.68],[-243,-108],[-214.95,-100.19],[-196,-84],[-193,-50.16],[-189,-17],[-178.26,-6.91],[-164,0],[-153.69,3.06],[-144,6],[-135.41,10.72],[-128,14],[-125.84,13.14],[-123,11],[-119.95,9.46],[-117,8],[-110.1,3.18],[-104,-1],[-99.75,-3.57],[-96,-6],[-86,-14],[-87,-24],[-90,-78],[-98,-88],[-101,-89],[-105,-93],[-133,-102],[-161,-111],[-164,-114],[-169,-116],[-178,-125],[-180,-130],[-182,-131],[-183,-134],[-187,-141],[-196,-157],[-208,-170],[-225,-180],[-233,-182],[-274,-182]],"c":true}],"h":1},{"t":113,"s":[{"i":[[-299.65,-186.71],[-303.91,-182.76],[-303.25,-181.41],[-299.5,-176.12],[-293.14,-168.78],[-284.57,-156.84],[-275.46,-141.35],[-272.28,-135.34],[-271.41,-132.7],[-270.46,-131.65],[-269.16,-131.21],[-268.57,-130.04],[-268.22,-128.35],[-264.46,-122.84],[-258.4,-115.93],[-255.15,-113.82],[-252.79,-112.45],[-250.18,-110.86],[-247.61,-109.24],[-241.79,-107.27],[-233.49,-105.48],[-224.06,-103.77],[-213.89,-101.35],[-209.48,-99.22],[-206.83,-97.57],[-203.66,-95.13],[-201.48,-92.07],[-200.49,-90.68],[-199.12,-90.19],[-198.28,-88.71],[-197.19,-86.41],[-193.03,-66.01],[-194.7,-31.86],[-191.13,-21.08],[-189.02,-17.02],[-188.58,-16.36],[-188.32,-15.41],[-173.27,-4.04],[-142.81,5.64],[-129.71,14.17],[-120.28,9.08],[-114.81,6.5],[-106.39,0.38],[-98.63,-4.29],[-86.76,-11.38],[-86.61,-19.09],[-85.16,-52.69],[-91.88,-80.17],[-96.86,-86.92],[-133.98,-102.72],[-154.07,-109.23],[-163.28,-112.28],[-169.73,-117.89],[-177.96,-126.02],[-180.87,-129.86],[-181.3,-130.91],[-195.18,-155.64],[-207.93,-170.62],[-211.64,-173.75],[-231.75,-182.25],[-269.69,-182.11]],"o":[[-304.03,-183.31],[-303.52,-181.81],[-301.42,-178.48],[-295.35,-171.27],[-287.85,-161.91],[-278.38,-146.56],[-272.57,-136.25],[-271.7,-133.57],[-270.88,-131.8],[-269.6,-131.36],[-268.71,-130.61],[-268.32,-128.91],[-266.51,-125.62],[-260.41,-117.99],[-256.01,-114.34],[-253.54,-112.88],[-251.12,-111.49],[-248.42,-109.74],[-244.54,-108.03],[-236.26,-105.99],[-227.62,-104.35],[-217.2,-102.27],[-210.32,-99.68],[-207.74,-98.16],[-204.67,-96.09],[-202.07,-93.12],[-200.92,-90.83],[-199.58,-90.36],[-198.68,-89.5],[-197.53,-87.17],[-192.93,-77.34],[-193.91,-43.27],[-191.87,-22.57],[-189.71,-18.31],[-188.67,-16.65],[-188.41,-15.74],[-182.61,-8.1],[-153.36,2.84],[-131.36,12.03],[-125.32,13.9],[-116.05,6.4],[-110.46,3.8],[-100.71,-2.9],[-91.64,-8.82],[-85.89,-14.37],[-88.76,-35.03],[-88.15,-74.34],[-96.15,-85.41],[-110.22,-99.61],[-152.69,-108.52],[-159.27,-111.29],[-168.18,-115.38],[-175.44,-123.19],[-180.04,-129.06],[-181.78,-130.82],[-188.53,-142.15],[-204.89,-167.54],[-211.32,-172.14],[-220.22,-179.7],[-255.57,-183.84],[-290.71,-183.52]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-297.43,-173.69],[-291,-166],[-281.48,-151.7],[-273,-137],[-271.99,-134.46],[-271,-132],[-270.03,-131.51],[-269,-131],[-268.45,-129.47],[-268,-128],[-262.43,-120.42],[-257,-115],[-254.34,-113.35],[-252,-112],[-249.3,-110.3],[-247,-109],[-239.02,-106.63],[-231,-105],[-220.63,-103.02],[-211,-100],[-208.61,-98.69],[-206,-97],[-202.86,-94.12],[-201,-91],[-200.04,-90.52],[-199,-90],[-197.91,-87.94],[-197,-86],[-193.47,-54.64],[-192,-23],[-190.42,-19.69],[-189,-17],[-188.49,-16.05],[-188,-15],[-163.32,-0.6],[-135,10],[-127,14],[-117,7],[-114,6],[-104,-1],[-96,-6],[-86,-14],[-87,-22],[-87,-66],[-95,-84],[-98,-88],[-151,-108],[-156,-110],[-166,-114],[-172,-120],[-180,-129],[-181,-130],[-182,-132],[-202,-164],[-211,-172],[-212,-174],[-243,-183],[-283,-183]],"c":true}],"h":1},{"t":114,"s":[{"i":[[-299.67,-186.74],[-303.91,-182.76],[-303.25,-181.41],[-301.25,-178.65],[-298.03,-175.25],[-296.22,-172.67],[-295.43,-170.54],[-293.66,-168.83],[-291.47,-167.61],[-290.37,-165.85],[-289.35,-163.49],[-281.22,-150.56],[-270.67,-131.1],[-265.26,-124.05],[-262.42,-121.56],[-261.59,-119.97],[-261.41,-118.4],[-260.43,-117.67],[-259.07,-117.05],[-255.35,-114.35],[-250.17,-110.84],[-233.37,-106.2],[-211.2,-100.91],[-206.08,-96.57],[-204.41,-96.34],[-200.92,-92.69],[-197.7,-86.71],[-194.09,-69.29],[-195.27,-40.23],[-192.37,-24.15],[-187.71,-15.76],[-181.54,-9.95],[-173.71,-5.14],[-158.6,0.45],[-140.88,6.28],[-132.3,11.34],[-127.97,14.03],[-124.5,12.73],[-118.61,8.02],[-115.97,6.57],[-114.4,6.25],[-110.33,3.5],[-105.19,-0.31],[-101.03,-2.76],[-97.33,-5.12],[-91.53,-8.79],[-86.35,-12.74],[-87.71,-18.76],[-86.89,-50.08],[-91.27,-80.53],[-101.93,-91.07],[-104.59,-93.76],[-136.73,-104.18],[-162.88,-112.39],[-171.61,-119.72],[-179.1,-126.52],[-186.36,-137.44],[-196.58,-154.63],[-200.75,-160.65],[-220.18,-181.25],[-268.36,-182.15]],"o":[[-304.03,-183.31],[-303.52,-181.81],[-302.24,-179.78],[-299.15,-176.38],[-296.5,-173.4],[-295.68,-171.24],[-294.43,-169.28],[-292.18,-168],[-290.7,-166.6],[-289.7,-164.29],[-284.88,-157.26],[-274.12,-137.48],[-266.3,-125.03],[-263.32,-122.32],[-261.64,-120.52],[-261.48,-118.91],[-260.9,-117.9],[-259.52,-117.25],[-257.01,-115.68],[-251.93,-111.93],[-241.52,-107.5],[-218.21,-102.91],[-206.62,-96.65],[-204.97,-96.42],[-202.32,-94.58],[-198.61,-88.76],[-194.2,-78.17],[-194.63,-50.31],[-193.52,-27.52],[-189.47,-18.27],[-183.94,-11.88],[-176.42,-6.58],[-164.91,-1.44],[-146.59,4.31],[-134.07,10.08],[-129.25,13.32],[-126.2,13.97],[-120.71,9.76],[-116.52,6.7],[-114.91,6.35],[-112.23,4.9],[-106.81,0.89],[-102.37,-1.95],[-98.51,-4.34],[-93.85,-7.42],[-87.77,-11.45],[-86.15,-13.45],[-88.76,-34.13],[-87.17,-69.98],[-98.07,-88.4],[-104.35,-92.16],[-117.95,-101.49],[-156.27,-110.78],[-169.69,-116.71],[-176.47,-124.36],[-184.12,-133.08],[-192.36,-147.81],[-199.14,-160.31],[-209.75,-173.27],[-251.59,-184.17],[-291.92,-183.62]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-300.2,-177.52],[-297,-174],[-295.95,-171.96],[-295,-170],[-292.92,-168.42],[-291,-167],[-290.04,-165.07],[-289,-163],[-277.67,-144.02],[-267,-126],[-264.29,-123.19],[-262,-121],[-261.54,-119.44],[-261,-118],[-259.98,-117.46],[-259,-117],[-253.64,-113.14],[-248,-110],[-225.79,-104.56],[-207,-97],[-205.52,-96.49],[-204,-96],[-199.77,-90.72],[-197,-85],[-194.36,-59.8],[-194,-31],[-190.92,-21.21],[-186,-14],[-178.98,-8.26],[-171,-4],[-152.59,2.38],[-136,9],[-130.78,12.33],[-127,14],[-122.61,11.25],[-117,7],[-115.44,6.46],[-114,6],[-108.57,2.19],[-104,-1],[-99.77,-3.55],[-96,-6],[-89.65,-10.12],[-86,-14],[-88,-23],[-87,-58],[-96,-86],[-104,-92],[-105,-94],[-151,-109],[-167,-115],[-174,-122],[-181,-129],[-189,-142],[-199,-160],[-201,-161],[-239,-183],[-282,-183]],"c":true}],"h":1},{"t":115,"s":[{"i":[[-298.72,-186.65],[-298.6,-174.92],[-286.74,-160.37],[-276.72,-142.43],[-268.51,-127.06],[-264.35,-122.42],[-260.99,-119.92],[-257.78,-116.69],[-254.89,-113.55],[-247.76,-110.11],[-235.27,-106.96],[-223.78,-104.71],[-212.27,-101.93],[-207.65,-98.89],[-205.64,-96.57],[-198.95,-88.74],[-194.41,-73.73],[-194.3,-50.48],[-194.33,-26.19],[-179.9,-8.96],[-152.61,0.46],[-141.46,4.97],[-136.56,7.07],[-134.65,8.54],[-134.22,9.84],[-133.01,10.43],[-131.39,10.69],[-129.62,12.55],[-128.28,14.01],[-124.53,12.75],[-118.59,8.01],[-115.97,6.57],[-114.4,6.25],[-110.33,3.5],[-105.19,-0.31],[-101.07,-2.73],[-97.28,-5.15],[-91.58,-8.76],[-87.4,-12.38],[-87.22,-17.01],[-88.85,-25.9],[-88.84,-40.6],[-87.66,-57.89],[-89.58,-72.64],[-94.74,-84.68],[-100.88,-90.67],[-106.87,-94.84],[-129.05,-103.54],[-160.89,-111.7],[-170.03,-117.88],[-171.3,-119.45],[-173.41,-120.79],[-175.63,-121.65],[-177.01,-123.41],[-178.43,-126.28],[-179.61,-127.65],[-180.7,-128.63],[-192.12,-146.06],[-208.6,-171.14],[-223.34,-179.76],[-261.06,-182.08]],"o":[[-301.98,-179.23],[-290.98,-165.49],[-279.71,-148.4],[-271.12,-131.76],[-265.35,-123.21],[-262.16,-120.78],[-258.84,-117.92],[-255.81,-114.51],[-251.37,-111.38],[-239.71,-107.9],[-227.64,-105.24],[-216.09,-103.05],[-208.33,-99.6],[-206.31,-97.37],[-201.49,-92.88],[-195.4,-79.17],[-193.38,-59.38],[-194.77,-33.88],[-187.34,-13.19],[-162.53,-2.14],[-142.94,4.44],[-138.27,6.29],[-134.79,8.12],[-134.36,9.4],[-133.56,10.33],[-131.92,10.61],[-129.98,11.8],[-128.77,13.65],[-126.24,14],[-120.71,9.76],[-116.52,6.7],[-114.91,6.35],[-112.23,4.9],[-106.81,0.89],[-102.43,-1.91],[-98.5,-4.35],[-93.63,-7.57],[-88.47,-11.16],[-86.8,-14.8],[-88.25,-22.56],[-89.26,-34.41],[-88.04,-52.34],[-88.46,-67.56],[-92.72,-81.2],[-98.95,-89],[-104.85,-93.6],[-118.1,-100.94],[-150.44,-108.92],[-169.63,-117.41],[-170.86,-118.9],[-172.59,-120.46],[-174.93,-121.38],[-176.55,-122.52],[-177.95,-125.29],[-179.26,-127.33],[-180.33,-128.3],[-187.32,-136.75],[-202.76,-163.26],[-220.46,-178],[-242.28,-184.82],[-289.33,-183.53]],"v":[[-304,-184],[-294.79,-170.2],[-283,-154],[-273.92,-137.1],[-266,-124],[-263.25,-121.6],[-260,-119],[-256.8,-115.6],[-254,-113],[-243.73,-109],[-231,-106],[-219.94,-103.88],[-209,-100],[-206.98,-98.13],[-205,-96],[-197.17,-83.96],[-194,-68],[-194.53,-42.18],[-191,-20],[-171.22,-5.55],[-144,4],[-139.87,5.63],[-135,8],[-134.51,8.97],[-134,10],[-132.46,10.52],[-131,11],[-129.2,13.1],[-127,14],[-122.62,11.26],[-117,7],[-115.44,6.46],[-114,6],[-108.57,2.19],[-104,-1],[-99.78,-3.54],[-96,-6],[-90.02,-9.96],[-87,-14],[-87.74,-19.78],[-89,-29],[-88.44,-46.47],[-88,-62],[-91.15,-76.92],[-97,-87],[-102.87,-92.13],[-109,-96],[-139.74,-106.23],[-169,-117],[-170.44,-118.39],[-172,-120],[-174.17,-121.09],[-176,-122],[-177.48,-124.35],[-179,-127],[-179.97,-127.97],[-181,-129],[-197.44,-154.66],[-217,-176],[-228,-181],[-279,-183]],"c":true}],"h":1},{"t":116,"s":[{"i":[[-303.2,-184.56],[-303.91,-182.76],[-303.24,-181.42],[-300.54,-177.39],[-295.02,-170.66],[-289.86,-163.6],[-285.51,-156.51],[-277.77,-142.9],[-269.46,-128],[-265.36,-123.44],[-261.96,-120.89],[-258.7,-117.62],[-255.8,-114.48],[-248,-110.91],[-234.67,-108.02],[-223.32,-105.33],[-214.07,-102.06],[-203.01,-94.72],[-195.66,-80.12],[-194.95,-55.49],[-195.17,-27.38],[-186.47,-14.5],[-174.49,-7.06],[-156.85,-0.96],[-139.87,5.01],[-131.75,10.52],[-127.23,14.05],[-124.73,12.8],[-119.11,9.07],[-117.19,7.9],[-114.68,6.43],[-110.33,3.5],[-105.19,-0.31],[-101.04,-2.75],[-97.3,-5.14],[-91.62,-8.75],[-87.36,-12.43],[-87.27,-15.55],[-88.71,-20.32],[-89.78,-36.81],[-88.14,-60.11],[-90.64,-74.69],[-95.32,-84.2],[-97.42,-86.92],[-97.66,-88.62],[-102.58,-92.39],[-122.36,-102.18],[-165.15,-112.65],[-180.98,-128.16],[-189.24,-141.21],[-190.3,-142.91],[-193.37,-145.95],[-194.27,-149.71],[-197.41,-153.04],[-197.76,-155.47],[-199.75,-156.62],[-201.23,-159.91],[-209.75,-171.09],[-214.64,-174.75],[-234.77,-183.25],[-286.4,-184.93]],"o":[[-304.04,-183.3],[-303.51,-181.82],[-302.03,-179.31],[-297.03,-173.06],[-291.36,-165.84],[-286.94,-158.93],[-280.79,-148.65],[-272.11,-132.58],[-266.38,-124.24],[-263.15,-121.77],[-259.8,-118.88],[-256.7,-115.42],[-251.92,-112.15],[-239.38,-108.84],[-226.79,-106.3],[-216.96,-103.21],[-206.93,-98.41],[-197.38,-85.57],[-194.11,-65.8],[-195.48,-36.28],[-189.48,-17.72],[-178.98,-9.17],[-162.91,-2.71],[-145.33,2.9],[-133.39,8.99],[-128.67,13.05],[-126.43,14.02],[-121.08,10.33],[-118.1,8.44],[-115.48,6.9],[-112.23,4.9],[-106.81,0.89],[-102.39,-1.93],[-98.49,-4.36],[-93.69,-7.53],[-88.45,-11.2],[-86.91,-14.39],[-88.17,-18.52],[-90.2,-29],[-88.75,-52.36],[-89.48,-70.84],[-93.56,-81.37],[-97.34,-86.36],[-97.58,-88.05],[-99.29,-90.44],[-113.11,-99.4],[-146.51,-108.57],[-177.86,-124.55],[-186.43,-136.08],[-190.78,-142.82],[-191.59,-144.92],[-194.78,-148.3],[-195.6,-152.05],[-198.3,-154.49],[-198.15,-156.33],[-200.72,-158.12],[-205.8,-166.4],[-214.32,-173.14],[-223.15,-180.65],[-264.6,-185.25],[-302.38,-185.01]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-298.79,-175.23],[-293,-168],[-288.4,-161.26],[-284,-154],[-274.94,-137.74],[-267,-125],[-264.25,-122.6],[-261,-120],[-257.7,-116.52],[-255,-114],[-243.69,-109.88],[-230,-107],[-220.14,-104.27],[-212,-101],[-200.19,-90.14],[-195,-74],[-195.21,-45.88],[-192,-22],[-182.72,-11.84],[-169,-5],[-151.09,0.97],[-135,8],[-130.21,11.78],[-126,14],[-122.91,11.57],[-119,9],[-116.34,7.4],[-114,6],[-108.57,2.19],[-104,-1],[-99.76,-3.55],[-96,-6],[-90.04,-9.97],[-87,-14],[-87.72,-17.04],[-89,-22],[-89.26,-44.58],[-89,-67],[-92.1,-78.03],[-97,-86],[-97.5,-87.49],[-98,-89],[-105,-94],[-133,-105],[-173,-120],[-185,-134],[-190,-142],[-191,-144],[-194,-147],[-195,-151],[-198,-154],[-198,-156],[-200,-157],[-202,-161],[-214,-173],[-215,-175],[-246,-184],[-301,-185]],"c":true}],"h":1},{"t":117,"s":[{"i":[[-298.46,-185.99],[-303.91,-182.76],[-303.23,-181.42],[-298.19,-173.9],[-289.95,-164.1],[-287.25,-159.36],[-286.47,-156.77],[-285.45,-155.65],[-284.17,-155.22],[-283.57,-154.04],[-283.22,-152.35],[-281.16,-148.93],[-278.79,-144.49],[-275.48,-138.42],[-271.54,-132.2],[-268.12,-127.23],[-265.13,-123.16],[-254.87,-114.66],[-237.4,-108.71],[-221.88,-105.33],[-210.09,-101.48],[-203.16,-95.13],[-198.82,-87.48],[-195.42,-62.93],[-195.93,-28.28],[-190.78,-19.79],[-190.03,-19.03],[-187.11,-16.1],[-182.18,-12.28],[-166.1,-4.71],[-143.37,2.89],[-137.03,6.36],[-135.5,6.68],[-131.99,9.72],[-127.46,14.03],[-124.69,12.78],[-119.06,9.04],[-117.19,7.9],[-114.68,6.43],[-113.37,5.42],[-112.33,4.21],[-104.46,-0.57],[-92.96,-7.78],[-87.31,-12.24],[-88.29,-15.87],[-87.09,-69.6],[-95.47,-85.26],[-106.84,-96.5],[-144.61,-108.18],[-164.38,-114.63],[-167.62,-117.71],[-170.27,-118.52],[-172.21,-120.4],[-175.2,-121.33],[-183.04,-129.79],[-192.87,-145.27],[-196.76,-150.59],[-198.22,-153.75],[-210.91,-171.46],[-220.83,-178.43],[-254.31,-184]],"o":[[-304.04,-183.3],[-303.51,-181.82],[-300.96,-177.35],[-292.68,-167.28],[-287.52,-160.23],[-286.73,-157.63],[-285.87,-155.79],[-284.6,-155.37],[-283.71,-154.61],[-283.32,-152.91],[-282.02,-150.43],[-279.55,-145.95],[-276.71,-140.57],[-272.9,-134.24],[-269.05,-128.65],[-266.16,-124.49],[-259.68,-117.55],[-243.73,-110.24],[-226.08,-106.09],[-213.88,-103.03],[-204.99,-97.39],[-200.07,-90.18],[-194.7,-75.04],[-196.03,-39.56],[-191.02,-20.03],[-190.29,-19.29],[-188.52,-17.46],[-183.94,-13.51],[-173.91,-7.41],[-150.83,0.44],[-137.53,6.27],[-136.02,6.57],[-133.51,7.95],[-128.97,12.76],[-126.41,14.01],[-121.01,10.29],[-118.1,8.44],[-115.48,6.9],[-113.7,5.81],[-112.68,4.61],[-108.48,1.82],[-96.7,-5.37],[-87.92,-11.56],[-87.5,-14.4],[-93.53,-39.07],[-94.33,-83.64],[-99.56,-90.96],[-125.48,-105.54],[-161.33,-114.2],[-167.36,-116.19],[-168.8,-118.6],[-171.96,-119.63],[-173.79,-121.6],[-179.39,-124.84],[-189.73,-139.29],[-195.16,-150.35],[-197.69,-152.19],[-204.53,-163.89],[-219.69,-177.09],[-232.97,-184.31],[-286.31,-184]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-295.43,-170.59],[-288,-161],[-286.99,-158.5],[-286,-156],[-285.03,-155.51],[-284,-155],[-283.45,-153.47],[-283,-152],[-280.35,-147.44],[-278,-143],[-274.19,-136.33],[-270,-130],[-267.14,-125.86],[-264,-122],[-249.3,-112.45],[-230,-107],[-217.88,-104.18],[-207,-99],[-201.61,-92.66],[-198,-85],[-195.73,-51.24],[-191,-20],[-190.53,-19.54],[-190,-19],[-185.52,-14.81],[-180,-11],[-158.46,-2.14],[-138,6],[-136.52,6.46],[-135,7],[-130.48,11.24],[-126,14],[-122.85,11.54],[-119,9],[-116.34,7.4],[-114,6],[-113.02,5.01],[-112,4],[-100.58,-2.97],[-90,-10],[-87.41,-13.32],[-89,-19],[-94,-83],[-96,-86],[-112,-99],[-158,-113],[-167,-116],[-168,-118],[-171,-119],[-173,-121],[-176,-122],[-186,-134],[-195,-150],[-197,-151],[-199,-155],[-218,-176],[-222,-179],[-272,-184]],"c":true}],"h":1},{"t":118,"s":[{"i":[[-298.35,-186.2],[-303.91,-182.76],[-303.23,-181.42],[-301.62,-178.87],[-299.56,-176.6],[-298.55,-175.08],[-298.34,-173.45],[-297.43,-172.63],[-296.2,-172.22],[-295.55,-171.08],[-295.34,-169.45],[-294.43,-168.63],[-293.2,-168.22],[-292.54,-167.09],[-292.34,-165.48],[-291.43,-164.64],[-290.18,-164.24],[-289.57,-163.02],[-289.26,-161.37],[-284.3,-153.69],[-278.07,-142.52],[-274.87,-137.33],[-273.34,-135.53],[-272.25,-133.31],[-271.45,-130.63],[-268.85,-127.47],[-265.11,-124.11],[-261.45,-120.21],[-258.19,-116.72],[-242.28,-110.54],[-217.01,-105.66],[-209.58,-100.83],[-207.61,-98.55],[-205.42,-96.62],[-203.55,-94.74],[-196.33,-72.39],[-196.96,-32.14],[-186.82,-15.38],[-173.85,-8.87],[-162.66,-4.57],[-153.08,-1.06],[-145.55,1.64],[-140.88,3.96],[-135.43,5.97],[-128.89,14.01],[-119.11,9.07],[-115.36,6.85],[-112.67,4.41],[-95.92,-5.57],[-87.22,-11.32],[-88.16,-16.82],[-89.76,-45.48],[-93.07,-78.73],[-97.63,-88.53],[-131.82,-105.97],[-167.06,-116.64],[-190.79,-140.14],[-210.23,-170.53],[-222.87,-178.43],[-229.62,-181.61],[-255.36,-184]],"o":[[-304.04,-183.3],[-303.51,-181.82],[-302.34,-179.82],[-300.23,-177.26],[-298.63,-175.61],[-298.41,-174],[-297.83,-172.77],[-296.62,-172.36],[-295.63,-171.61],[-295.41,-170],[-294.83,-168.77],[-293.62,-168.35],[-292.62,-167.6],[-292.4,-166.03],[-291.84,-164.77],[-290.6,-164.38],[-289.69,-163.59],[-289.35,-161.92],[-286.51,-157.43],[-280.08,-146.24],[-275.45,-138.06],[-273.81,-136.06],[-272.52,-134.25],[-271.71,-131.5],[-270.04,-128.67],[-266.38,-125.19],[-262.6,-121.6],[-259.24,-117.77],[-250.78,-112.21],[-225.4,-107.26],[-210.27,-101.56],[-208.25,-99.33],[-206.15,-97.25],[-204.12,-95.36],[-196.6,-85.32],[-196.51,-45.81],[-190.14,-18.2],[-178.67,-10.72],[-165.87,-5.79],[-156.26,-2.21],[-147.36,0.91],[-142.31,3.16],[-137.55,5.81],[-130.86,9.27],[-126.84,14],[-117.2,7.88],[-113.4,5.63],[-104.97,-0.35],[-89.38,-10.46],[-87.02,-11.93],[-92.18,-32.02],[-90.21,-70.46],[-97.11,-85.99],[-107.71,-101.58],[-158.69,-113.84],[-183.53,-128.73],[-203.72,-161.41],[-221.54,-178.49],[-228.64,-180.62],[-242.32,-185.21],[-285.79,-184]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-300.93,-178.07],[-299,-176],[-298.48,-174.54],[-298,-173],[-297.02,-172.49],[-296,-172],[-295.48,-170.54],[-295,-169],[-294.02,-168.49],[-293,-168],[-292.47,-166.56],[-292,-165],[-291.02,-164.51],[-290,-164],[-289.46,-162.47],[-289,-161],[-282.19,-149.96],[-276,-139],[-274.34,-136.69],[-273,-135],[-271.98,-132.41],[-271,-130],[-267.61,-126.33],[-264,-123],[-260.34,-118.99],[-257,-116],[-233.84,-108.9],[-211,-102],[-208.92,-100.08],[-207,-98],[-204.77,-95.99],[-203,-94],[-196.42,-59.1],[-192,-22],[-182.75,-13.05],[-169,-7],[-159.46,-3.39],[-150,0],[-143.93,2.4],[-139,5],[-134,7],[-126,14],[-119,9],[-114,6],[-112,4],[-90,-10],[-87,-12],[-89,-20],[-90,-59],[-96,-84],[-98,-89],[-149,-111],[-173,-121],[-198,-152],[-218,-176],[-227,-180],[-231,-182],[-271,-184]],"c":true}],"h":1},{"t":119,"s":[{"i":[[-298.77,-186.67],[-303.92,-182.76],[-303.21,-181.43],[-299.88,-175.94],[-293.87,-168.66],[-285.37,-155.18],[-276.26,-137.87],[-268.59,-127.02],[-261.13,-119.96],[-258.68,-118.48],[-258.21,-117.12],[-242.33,-111.42],[-215.56,-105.16],[-208.97,-100.33],[-207.46,-99.42],[-197.8,-82.98],[-198.55,-49.51],[-195.66,-30.85],[-192.02,-22.36],[-189.03,-18.6],[-186.17,-16.53],[-184.68,-15.49],[-184.18,-14.12],[-171.62,-7.83],[-150.24,-1.83],[-141.59,2.26],[-137.72,4.58],[-132.69,8.3],[-126.78,13.06],[-122.69,11.83],[-118.35,8.2],[-117.03,7.64],[-115.51,7.32],[-113.56,5.73],[-111.66,3.43],[-109.99,2.57],[-108.38,2.22],[-107.2,1.34],[-106.39,0.26],[-99.35,-3.71],[-87.4,-11.19],[-87.39,-13.18],[-88.65,-15.97],[-91.67,-33.12],[-90.17,-58.99],[-92.32,-74.12],[-95.97,-84.23],[-100.69,-91.39],[-108.69,-98.28],[-117.99,-102.76],[-127.84,-106.09],[-144.99,-110.35],[-165.45,-115.82],[-171.96,-119.96],[-174.15,-121.18],[-176.17,-122.35],[-190.6,-139.22],[-209.43,-170.59],[-217.62,-175.75],[-220.96,-177.42],[-256.24,-183.93]],"o":[[-304.06,-183.29],[-303.49,-181.82],[-301.7,-178.35],[-295.96,-171.09],[-288.49,-160.99],[-279.25,-143.62],[-271.02,-130.04],[-263.64,-121.98],[-258.82,-118.92],[-258.37,-117.58],[-251.55,-113.34],[-224.34,-107.33],[-209.49,-100.62],[-207.96,-99.73],[-199.53,-92.23],[-197.31,-61.63],[-196.65,-34.17],[-193.34,-24.95],[-189.94,-19.59],[-187.14,-17.07],[-184.84,-15.93],[-184.35,-14.59],[-178.5,-10.16],[-157.49,-3.67],[-142.98,1.46],[-138.96,3.82],[-134.8,6.27],[-128.69,11.7],[-124.27,12.98],[-119.73,9.44],[-117.53,7.73],[-116.02,7.43],[-114.23,6.52],[-112.27,4.18],[-110.55,2.71],[-108.91,2.33],[-107.5,1.71],[-106.64,0.61],[-103.9,-1.37],[-91.1,-8.62],[-87.07,-12.69],[-88.19,-14.82],[-91.58,-24.63],[-90.96,-50.3],[-91.34,-70.26],[-94.64,-81.1],[-98.59,-88.75],[-105.74,-96.15],[-114.82,-101.47],[-124.5,-105.08],[-137.76,-108.94],[-158.83,-113.79],[-170.91,-118.95],[-172.84,-120.8],[-175.69,-122.66],[-184.68,-129],[-202.54,-158.62],[-217.33,-174.15],[-219.16,-176.75],[-236.92,-186.31],[-286.92,-184.03]],"v":[[-304,-184],[-303.7,-182.29],[-303,-181],[-297.92,-173.51],[-292,-166],[-282.31,-149.4],[-273,-133],[-266.11,-124.5],[-259,-119],[-258.52,-118.03],[-258,-117],[-233.33,-109.38],[-210,-101],[-208.46,-100.03],[-207,-99],[-197.56,-72.31],[-197,-37],[-194.5,-27.9],[-191,-21],[-188.08,-17.83],[-185,-16],[-184.51,-15.04],[-184,-14],[-164.55,-5.75],[-144,1],[-140.27,3.04],[-137,5],[-130.69,10],[-125,13],[-121.21,10.63],[-118,8],[-116.53,7.54],[-115,7],[-112.92,4.96],[-111,3],[-109.45,2.45],[-108,2],[-106.92,0.97],[-106,0],[-95.22,-6.17],[-87,-13],[-87.79,-14],[-89,-17],[-91.31,-41.71],[-91,-67],[-93.48,-77.61],[-97,-86],[-103.21,-93.77],[-112,-100],[-121.25,-103.92],[-131,-107],[-151.91,-112.07],[-171,-119],[-172,-120],[-175,-122],[-177,-123],[-196,-148],[-217,-174],[-218,-176],[-222,-178],[-277,-184]],"c":true}],"h":1},{"t":120,"s":[{"i":[[-284.45,-185.09],[-303.35,-181.13],[-301.86,-178.09],[-294.47,-168.3],[-285.75,-154.77],[-275.87,-137.36],[-264.27,-121.93],[-259.68,-119.49],[-259.19,-118.12],[-256,-116.57],[-249.99,-114.71],[-240.17,-111.69],[-228.18,-109.16],[-219.61,-106.57],[-212.6,-103.58],[-211.36,-102.58],[-210.41,-102.32],[-199.54,-87.92],[-198.14,-58.62],[-197.82,-40.87],[-196.23,-29.95],[-190.27,-19.65],[-178.81,-12.15],[-174.44,-10.49],[-173.26,-9.1],[-164.9,-6.49],[-152.85,-3.31],[-149.23,-1.72],[-147.67,-1.26],[-144.63,0.26],[-141.44,2.67],[-140.04,3.43],[-138.35,3.78],[-133.44,7.69],[-126.9,13.03],[-123.32,11.81],[-118.22,8.13],[-117.03,7.64],[-115.51,7.32],[-113.52,5.7],[-111.64,3.41],[-109.99,2.57],[-108.38,2.22],[-107.2,1.34],[-106.39,0.26],[-87.72,-9.46],[-89.37,-17.95],[-90.12,-53.19],[-97.34,-87.34],[-109.08,-99.07],[-162.19,-111.07],[-177.13,-123.31],[-184.53,-130.29],[-186.97,-134.68],[-191.55,-139.86],[-194.23,-144.85],[-197.29,-147.87],[-198.28,-151.73],[-201.2,-154.75],[-213.88,-172.43],[-223.77,-179.4]],"o":[[-303.67,-182.33],[-302.44,-179.01],[-297.6,-172.66],[-288.55,-159.35],[-279.48,-143.89],[-268.26,-126.37],[-259.83,-119.92],[-259.36,-118.58],[-257.76,-117.21],[-252.11,-115.31],[-244.08,-112.61],[-232.22,-109.96],[-222.31,-107.53],[-214.76,-104.59],[-211.65,-102.67],[-210.74,-102.41],[-202.47,-96.12],[-197.38,-69.18],[-197.95,-44.65],[-196.96,-33.52],[-193.36,-23.08],[-182.99,-14.19],[-174.81,-10.94],[-173.66,-9.57],[-169.23,-7.59],[-156.71,-4.36],[-149.64,-1.84],[-148.24,-1.43],[-145.91,-0.57],[-142.39,1.89],[-140.61,3.29],[-138.91,3.68],[-135.74,5.42],[-129.02,11.49],[-124.96,13],[-119.95,9.38],[-117.53,7.73],[-116.02,7.43],[-114.2,6.5],[-112.24,4.16],[-110.55,2.71],[-108.91,2.33],[-107.5,1.71],[-106.64,0.61],[-101.85,-2.71],[-87.28,-11.63],[-94.08,-33.18],[-93.35,-82.09],[-106.55,-96.55],[-130.78,-109.75],[-175.78,-123.72],[-180.5,-125.97],[-187.04,-133.21],[-189.57,-138.02],[-193.9,-143.33],[-195.82,-147.23],[-198.79,-150.26],[-199.76,-154.35],[-207.56,-164.73],[-222.28,-177.82],[-240.94,-187.71]],"v":[[-304,-184],[-302.89,-180.07],[-301,-177],[-291.51,-163.83],[-283,-150],[-272.07,-131.87],[-260,-120],[-259.52,-119.03],[-259,-118],[-254.06,-115.94],[-248,-114],[-236.2,-110.83],[-224,-108],[-217.18,-105.58],[-212,-103],[-211.05,-102.49],[-210,-102],[-198.46,-78.55],[-198,-48],[-197.39,-37.2],[-195,-27],[-186.63,-16.92],[-175,-11],[-174.05,-10.03],[-173,-9],[-160.81,-5.43],[-150,-2],[-148.74,-1.57],[-147,-1],[-143.51,1.07],[-141,3],[-139.47,3.55],[-138,4],[-131.23,9.59],[-125,13],[-121.63,10.59],[-118,8],[-116.53,7.54],[-115,7],[-112.88,4.93],[-111,3],[-109.45,2.45],[-108,2],[-106.92,0.97],[-106,0],[-87,-13],[-90,-20],[-92,-70],[-103,-93],[-113,-101],[-175,-123],[-178,-124],[-186,-132],[-188,-136],[-193,-142],[-195,-146],[-198,-149],[-199,-153],[-202,-156],[-221,-177],[-225,-180]],"c":true}],"h":1},{"t":121,"s":[{"i":[[-287.1,-185.2],[-303.91,-182.76],[-303.23,-181.42],[-299.96,-175.97],[-294.82,-168.69],[-288.03,-158.37],[-281.07,-146.65],[-273.98,-134.2],[-264.64,-122.64],[-260.68,-120.49],[-260.18,-119.12],[-259.4,-118.9],[-258.25,-119.11],[-257.68,-118.48],[-257.21,-117.11],[-255.59,-116.36],[-252.66,-115.24],[-241.19,-111.96],[-223.97,-108.5],[-218.44,-106.5],[-217.24,-105.11],[-210.77,-101.87],[-204.53,-95.82],[-200.54,-87.58],[-198.3,-78.18],[-197.97,-57.57],[-197.91,-31.93],[-189.05,-19.11],[-175.9,-11.22],[-156.66,-4.62],[-138.65,2.25],[-130.78,9.4],[-127.11,13.04],[-122.71,11.83],[-118.33,8.19],[-117.03,7.64],[-115.51,7.32],[-113.52,5.7],[-111.64,3.41],[-109.99,2.57],[-108.38,2.22],[-107.2,1.34],[-106.39,0.26],[-99.37,-3.71],[-87.32,-11.27],[-87.81,-14.35],[-90.66,-18.98],[-93.48,-40.59],[-92.58,-75.5],[-111.85,-101.19],[-152.78,-112.92],[-172.39,-120.31],[-179.37,-126.51],[-189.37,-135.79],[-195.65,-144.92],[-198.16,-150.69],[-203.27,-156.55],[-206.19,-161.88],[-212.68,-168.9],[-219.78,-176.6],[-229.02,-180.74]],"o":[[-304.05,-183.3],[-303.5,-181.82],[-301.56,-178.38],[-296.59,-171.13],[-290.49,-162.29],[-283.31,-150.54],[-276.66,-138.87],[-267.97,-126.08],[-260.84,-120.93],[-260.35,-119.59],[-259.77,-118.85],[-258.64,-119.04],[-257.82,-118.92],[-257.38,-117.57],[-256.51,-116.74],[-253.67,-115.61],[-246.95,-113.21],[-229.69,-109.6],[-218.82,-106.94],[-217.65,-105.58],[-213.5,-103.46],[-206.28,-98.05],[-201.64,-90.49],[-198.86,-81.42],[-197.26,-67.1],[-198.29,-39.98],[-192.35,-22.5],[-180.83,-13.47],[-163.33,-6.5],[-144.32,-0.25],[-131.97,7.63],[-128.35,12.11],[-124.29,12.99],[-119.73,9.44],[-117.53,7.73],[-116.02,7.43],[-114.2,6.5],[-112.24,4.16],[-110.55,2.71],[-108.91,2.33],[-107.5,1.71],[-106.64,0.61],[-103.96,-1.33],[-91.05,-8.69],[-86.98,-13.11],[-89.65,-17.29],[-93.94,-28.84],[-92.8,-63.92],[-100.31,-94.7],[-136.25,-110.35],[-168.41,-119.42],[-177.53,-123.64],[-186.3,-133.06],[-193.86,-142.98],[-197.93,-148.43],[-200.59,-154.48],[-205.74,-160.05],[-209.96,-167.13],[-218.04,-173.9],[-224.39,-179.51],[-248.74,-186.99]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-298.28,-173.55],[-293,-166],[-285.67,-154.46],[-279,-143],[-270.98,-130.14],[-261,-121],[-260.52,-120.04],[-260,-119],[-259.02,-118.97],[-258,-119],[-257.53,-118.02],[-257,-117],[-254.63,-115.98],[-252,-115],[-235.44,-110.78],[-219,-107],[-218.05,-106.04],[-217,-105],[-208.53,-99.96],[-203,-93],[-199.7,-84.5],[-198,-75],[-198.13,-48.77],[-195,-27],[-184.94,-16.29],[-170,-9],[-150.49,-2.44],[-134,6],[-129.57,10.75],[-125,13],[-121.22,10.63],[-118,8],[-116.53,7.54],[-115,7],[-112.88,4.93],[-111,3],[-109.45,2.45],[-108,2],[-106.92,0.97],[-106,0],[-95.21,-6.2],[-87,-13],[-88.73,-15.82],[-91,-20],[-93.14,-52.26],[-96,-84],[-122,-105],[-165,-118],[-175,-122],[-182,-129],[-192,-140],[-197,-147],[-199,-152],[-205,-159],[-207,-163],[-216,-172],[-222,-178],[-233,-182]],"c":true}],"h":1},{"t":122,"s":[{"i":[[-264.96,-185],[-276.89,-185.17],[-303.21,-185.03],[-303.97,-180.8],[-300.05,-176.08],[-297.1,-171.86],[-292.76,-166.16],[-291.2,-163.31],[-290.43,-160.73],[-288.88,-158.64],[-287.23,-157.41],[-285.65,-154.14],[-283.52,-148.92],[-282.01,-146.82],[-280.34,-145.59],[-278.58,-141.94],[-276.86,-137.32],[-274.39,-133.89],[-271.09,-130.29],[-266.8,-125.39],[-261.91,-121.22],[-247.77,-114.5],[-226.31,-109.91],[-219.44,-107.5],[-218.24,-106.11],[-215.93,-105.34],[-212.71,-104.5],[-207.98,-100.25],[-202.69,-92.63],[-199.18,-79.99],[-199.13,-60.53],[-198.94,-45.65],[-198.04,-34.07],[-194.74,-28.33],[-192.65,-22.8],[-185.18,-17.26],[-144.5,-3.69],[-128.6,12.79],[-119.39,9.12],[-107.13,0.81],[-101.99,-1.36],[-98.59,-4.95],[-94.78,-6.51],[-92.64,-8.56],[-88.09,-12.04],[-92.88,-46.77],[-99.08,-92.39],[-112.36,-100.6],[-119.57,-105.05],[-163.18,-114.15],[-184.57,-129.81],[-193.64,-141.56],[-198.69,-148.93],[-201.7,-155.09],[-206.54,-160.07],[-208.4,-164.23],[-211.32,-166.15],[-211.79,-168.53],[-217.33,-173.59],[-219.2,-175.43],[-247.68,-186.85]],"o":[[-267.53,-184.91],[-294.73,-185.23],[-304.95,-182.76],[-301.53,-177.46],[-298.72,-174.02],[-294.12,-167.93],[-291.48,-164.2],[-290.67,-161.58],[-289.52,-159.19],[-287.74,-157.75],[-286.38,-155.93],[-284.22,-150.63],[-282.59,-147.27],[-280.89,-145.98],[-279.15,-143.53],[-277.44,-138.83],[-275.34,-134.99],[-272.26,-131.54],[-268.34,-127.03],[-263.58,-122.49],[-254.62,-116.55],[-233.62,-111.18],[-219.82,-107.94],[-218.65,-106.58],[-217.07,-105.59],[-213.74,-104.79],[-210.13,-102.68],[-204.26,-95.23],[-199.87,-85.97],[-198.81,-67.27],[-198.92,-49.87],[-198.5,-37.75],[-196.6,-29.81],[-193.07,-25.33],[-189.51,-18.96],[-165.2,-6.47],[-130.04,9.75],[-124.69,13.1],[-110.95,3.85],[-103.07,-1.54],[-99.55,-2.93],[-96.08,-6.6],[-93.4,-7.37],[-85.03,-13.75],[-95.92,-30.77],[-93.15,-78.32],[-109.57,-100.17],[-117.37,-103.26],[-138.16,-112.31],[-180.37,-127.02],[-191.21,-137.92],[-197.54,-147.26],[-201.2,-152.89],[-204.31,-158.92],[-208.66,-162.87],[-209.66,-165.84],[-212.32,-167.39],[-212.79,-170.76],[-218.99,-174.61],[-229.83,-183.04],[-263.75,-185.96]],"v":[[-265,-185],[-285.81,-185.2],[-304,-184],[-302.75,-179.13],[-300,-176],[-295.61,-169.89],[-292,-165],[-290.94,-162.45],[-290,-160],[-288.31,-158.2],[-287,-157],[-284.93,-152.38],[-283,-148],[-281.45,-146.4],[-280,-145],[-278.01,-140.39],[-276,-136],[-273.32,-132.71],[-270,-129],[-265.19,-123.94],[-260,-120],[-240.7,-112.84],[-220,-108],[-219.05,-107.04],[-218,-106],[-214.83,-105.07],[-212,-104],[-206.12,-97.74],[-202,-91],[-199,-73.63],[-199,-54],[-198.72,-41.7],[-197,-31],[-194,-27],[-192,-22],[-181,-15],[-133,7],[-126,13],[-116,7],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-92,-9],[-91,-19],[-93,-61],[-108,-99],[-115,-102],[-122,-106],[-175,-123],[-188,-134],[-196,-145],[-200,-151],[-203,-157],[-208,-162],[-209,-165],[-212,-167],[-212,-169],[-218,-174],[-220,-176],[-263,-186]],"c":true}],"h":1},{"t":123,"s":[{"i":[[-297.45,-186.25],[-300.91,-184.98],[-302.85,-185.2],[-303.39,-180.36],[-297.95,-173.02],[-296.54,-171.09],[-296.33,-169.49],[-294.88,-167.72],[-293.3,-166.46],[-290.99,-162.86],[-288.77,-159.25],[-287.56,-156.87],[-286.71,-154.22],[-283.56,-149.04],[-279.94,-143.56],[-277.22,-139.02],[-274.92,-135.32],[-270.01,-128.7],[-263.47,-122.58],[-253.85,-117.18],[-240.86,-113.13],[-221.75,-108.56],[-207.06,-99.76],[-199.15,-76.23],[-200.43,-46.72],[-196.99,-30.87],[-190.59,-21.09],[-175.53,-12.55],[-150.11,-4.8],[-141.86,-0.45],[-139.76,0.54],[-134.38,5.33],[-126.94,13.93],[-123.79,12.12],[-114.52,6.32],[-110.2,3.42],[-105.13,-0.34],[-103.03,-1.36],[-101.5,-1.68],[-99.64,-3.23],[-97.72,-5.53],[-95.99,-6.43],[-94.39,-6.76],[-91.19,-8.81],[-87.13,-12.22],[-87.31,-14.12],[-89.42,-14.9],[-90.85,-20.61],[-93.68,-27.36],[-90.81,-69.21],[-101,-91.54],[-105.28,-96.05],[-109.71,-100.18],[-140.88,-111.73],[-168.89,-119.26],[-178.63,-125.95],[-182.2,-127.33],[-208.63,-169.97],[-222.58,-177.77],[-233.92,-183.32],[-267.02,-185.47]],"o":[[-300.24,-184.88],[-302.22,-185.14],[-304.41,-183.1],[-300.16,-175.32],[-296.62,-171.59],[-296.39,-170.04],[-295.48,-168.24],[-293.79,-166.83],[-291.86,-164.24],[-289.45,-160.37],[-287.7,-157.52],[-287.06,-155.23],[-284.84,-151.01],[-281.1,-145.31],[-278.01,-140.36],[-275.68,-136.5],[-272.02,-131.15],[-265.73,-124.41],[-257.67,-118.86],[-245.44,-114.32],[-228.22,-110.18],[-211.17,-103.35],[-199.68,-85.87],[-199.52,-56.65],[-198.44,-34.58],[-193.06,-24.13],[-183.22,-15.15],[-158.97,-7.38],[-142.48,-0.72],[-140.5,0.18],[-137.16,2.12],[-129.27,11.24],[-126.53,13.96],[-117.78,8.3],[-112.14,4.84],[-106.7,0.83],[-103.53,-1.27],[-102.01,-1.56],[-100.27,-2.47],[-98.36,-4.76],[-96.54,-6.3],[-94.91,-6.66],[-92.88,-7.7],[-88.32,-11.07],[-86.85,-13.92],[-88.59,-14.61],[-91.12,-18.11],[-92.19,-24.09],[-96.01,-46.41],[-97.71,-86.81],[-103.98,-95.9],[-109.29,-98.92],[-123.67,-109.02],[-162.16,-117.74],[-176.34,-123.25],[-180.79,-127.6],[-195.59,-138.52],[-222.35,-176.16],[-227.01,-180.23],[-250.72,-187.03],[-288.27,-184.8]],"v":[[-300,-185],[-301.57,-185.06],[-303,-185],[-301.77,-177.84],[-297,-172],[-296.46,-170.56],[-296,-169],[-294.34,-167.27],[-293,-166],[-290.22,-161.62],[-288,-158],[-287.31,-156.05],[-286,-153],[-282.33,-147.18],[-279,-142],[-276.45,-137.76],[-274,-134],[-267.87,-126.55],[-261,-121],[-249.64,-115.75],[-236,-112],[-216.46,-105.95],[-204,-94],[-199.33,-66.44],[-199,-38],[-195.02,-27.5],[-188,-19],[-167.25,-9.96],[-143,-1],[-141.18,-0.14],[-139,1],[-131.83,8.29],[-126,14],[-120.78,10.21],[-114,6],[-108.45,2.12],[-104,-1],[-102.52,-1.46],[-101,-2],[-99,-3.99],[-97,-6],[-95.45,-6.54],[-94,-7],[-89.76,-9.94],[-87,-13],[-87.95,-14.36],[-90,-16],[-91,-21],[-94,-30],[-97,-85],[-102,-93],[-108,-98],[-111,-101],[-156,-116],[-174,-122],[-180,-127],[-183,-128],[-222,-176],[-223,-178],[-237,-184],[-282,-185]],"c":true}],"h":1},{"t":124,"s":[{"i":[[-299.48,-185.27],[-300.63,-184.97],[-301.83,-185.16],[-304.17,-182.74],[-302.51,-179.76],[-298.18,-172.07],[-295.32,-167.97],[-293.09,-165.04],[-291.32,-163.53],[-289.44,-159.88],[-287.73,-155.27],[-285.44,-151.71],[-282.73,-148.26],[-280.65,-144.31],[-278.79,-140.22],[-272.91,-131.72],[-264.99,-123.93],[-252.44,-117.2],[-236.68,-113.41],[-217.5,-107.31],[-203.8,-94.68],[-199.4,-73.38],[-200.68,-50.64],[-198.98,-37.64],[-196,-28.05],[-194.58,-26.36],[-194.32,-25.41],[-187.93,-19.32],[-174.57,-12.63],[-159.53,-7.81],[-144.62,-3.21],[-140.65,-0.45],[-140.22,0.84],[-139.01,1.43],[-137.39,1.7],[-135.09,3.63],[-132.38,6.43],[-130.84,8.58],[-129.25,10.56],[-127.4,13.91],[-125.24,12.44],[-112.69,4.47],[-98.61,-4.13],[-89.44,-9.76],[-87.63,-13.76],[-90.92,-18.92],[-92.49,-21.52],[-95.45,-38.69],[-94.19,-65.56],[-96.63,-81.02],[-101.46,-92.11],[-104.27,-96.24],[-110.15,-100.28],[-118.83,-105.69],[-159.63,-115.48],[-176.52,-125.06],[-181.91,-127.15],[-197.45,-145.61],[-213.48,-167.81],[-222.69,-177.6],[-279.82,-187.41]],"o":[[-300.21,-184.89],[-301.44,-185.1],[-303.67,-183.36],[-303.59,-180.94],[-299.27,-173.84],[-296.2,-169.14],[-293.68,-165.52],[-291.92,-164.04],[-290.07,-161.49],[-288.26,-156.77],[-286.33,-152.83],[-283.64,-149.42],[-281.25,-145.7],[-279.42,-141.58],[-275.41,-135],[-267.69,-126.18],[-257.35,-119],[-242.1,-114.41],[-223.84,-110.22],[-207.48,-99.54],[-199.55,-81.31],[-199.96,-58.04],[-199.73,-41.37],[-197.12,-30.98],[-194.67,-26.66],[-194.41,-25.74],[-191.64,-22.01],[-179.4,-14.63],[-164.97,-9.2],[-149.35,-4.81],[-140.79,-0.87],[-140.36,0.4],[-139.56,1.33],[-137.92,1.61],[-136.15,2.67],[-133.2,5.51],[-131.47,7.8],[-129.73,9.96],[-127.78,13.19],[-126.13,13.54],[-117.63,7.54],[-103.18,-1.36],[-91.38,-8.63],[-87.56,-12.32],[-90.17,-17.91],[-92.08,-20.72],[-95.36,-29.91],[-94.87,-56.51],[-95.4,-76.72],[-99.66,-88.72],[-103.63,-94.77],[-106.71,-98.78],[-115.94,-103.77],[-139.22,-114.1],[-175.51,-123.79],[-179.7,-127.09],[-191.6,-134.71],[-207.55,-160.88],[-221.36,-175.21],[-241.09,-188.79],[-300.11,-185.92]],"v":[[-300,-185],[-301.03,-185.04],[-302,-185],[-303.88,-181.84],[-301,-177],[-297.19,-170.6],[-294,-166],[-292.5,-164.54],[-291,-163],[-288.85,-158.32],[-287,-154],[-284.54,-150.57],[-282,-147],[-280.03,-142.95],[-278,-139],[-270.3,-128.95],[-262,-122],[-247.27,-115.81],[-231,-112],[-212.49,-103.43],[-202,-89],[-199.68,-65.71],[-200,-44],[-198.05,-34.31],[-195,-27],[-194.5,-26.05],[-194,-25],[-183.66,-16.98],[-170,-11],[-154.44,-6.31],[-141,-1],[-140.51,-0.03],[-140,1],[-138.46,1.52],[-137,2],[-134.15,4.57],[-132,7],[-130.29,9.27],[-129,11],[-126.77,13.72],[-123,11],[-107.93,1.55],[-94,-7],[-88.5,-11.04],[-89,-16],[-91.5,-19.82],[-93,-23],[-95.16,-47.6],[-95,-73],[-98.15,-84.87],[-103,-94],[-105,-97],[-113,-102],[-122,-107],[-174,-123],[-178,-126],[-183,-128],[-203,-154],[-219,-173],[-225,-179],[-299,-186]],"c":true}],"h":1},{"t":125,"s":[{"i":[[-299.48,-185.28],[-300.87,-184.98],[-302.97,-185.11],[-302.43,-178],[-295.37,-168.19],[-291.41,-161.71],[-288.05,-155.79],[-280.7,-142.89],[-269.29,-126.85],[-262.96,-122.53],[-260.31,-120.65],[-252.09,-117.18],[-239.95,-113.95],[-226.89,-110.79],[-216.58,-106.94],[-212.6,-104],[-210.42,-102.43],[-201.09,-80.98],[-201.44,-40.49],[-196.85,-30.19],[-194.28,-27.3],[-193.58,-26.08],[-193.34,-24.38],[-189.77,-21.31],[-183.22,-18.11],[-176.65,-14.79],[-170.11,-11.73],[-162.93,-9.58],[-155.42,-7.91],[-146.85,-4.34],[-138.87,0.49],[-135.61,3],[-133.41,4.53],[-130.3,9.12],[-128.48,13.87],[-123.98,12.26],[-113.98,5.62],[-107.04,0.66],[-99.32,-3.48],[-87.09,-11.63],[-90,-17.14],[-93.23,-24.51],[-94.4,-63.68],[-98.61,-83.8],[-99.66,-89.14],[-101.63,-91.37],[-105.77,-97.52],[-112.1,-101.84],[-124.39,-109.18],[-156.56,-116.16],[-181.51,-127.9],[-194.2,-139.29],[-197.49,-143.26],[-199.22,-147.86],[-201.64,-149.52],[-202.48,-152.25],[-214.95,-170.37],[-225.35,-177.5],[-229.96,-181.53],[-236.23,-183.28],[-285.5,-186.99]],"o":[[-300.13,-184.93],[-302.29,-185.07],[-304,-181.66],[-298.12,-171.27],[-292.63,-163.81],[-289.12,-157.7],[-284.05,-148.97],[-273.32,-131.83],[-263.8,-123.2],[-261.21,-121.25],[-255.86,-118.46],[-244.13,-114.93],[-231.1,-111.82],[-219.63,-108.35],[-213.38,-104.54],[-211.12,-102.95],[-202.37,-94.23],[-200.62,-54.11],[-197.71,-31.29],[-195.14,-28.2],[-193.66,-26.63],[-193.42,-24.95],[-191.66,-22.5],[-185.55,-19.11],[-178.84,-15.92],[-172.28,-12.7],[-165.47,-10.12],[-157.91,-8.47],[-149.91,-5.83],[-141.32,-1.18],[-136.4,2.48],[-134.11,4.02],[-131.31,6.93],[-128.88,12.59],[-127.24,14.2],[-117.35,7.97],[-107.61,1.62],[-101.13,-3.23],[-93.91,-7.02],[-86.73,-13.17],[-92.52,-21.81],[-97.05,-36.9],[-96.7,-81.39],[-100.37,-87.84],[-100.15,-90.37],[-104.49,-96.26],[-111.09,-101.61],[-119.78,-106.53],[-142.9,-114.27],[-175.86,-123.25],[-190.19,-135.97],[-196.59,-142.9],[-198.78,-145.14],[-200.31,-149.46],[-202.62,-150.83],[-208.29,-160.59],[-223.82,-177.16],[-229.5,-179.85],[-232.76,-182.79],[-253.39,-187.75],[-300.11,-185.92]],"v":[[-300,-185],[-301.58,-185.03],[-303,-185],[-300.28,-174.64],[-294,-166],[-290.26,-159.7],[-287,-154],[-277.01,-137.36],[-265,-124],[-262.08,-121.89],[-259,-120],[-248.11,-116.06],[-236,-113],[-223.26,-109.57],[-214,-105],[-211.86,-103.48],[-210,-102],[-200.85,-67.54],[-198,-32],[-196,-29.2],[-194,-27],[-193.5,-25.51],[-193,-24],[-187.66,-20.21],[-181,-17],[-174.46,-13.74],[-168,-11],[-160.42,-9.03],[-153,-7],[-144.08,-2.76],[-137,2],[-134.86,3.51],[-133,5],[-129.59,10.85],[-128,14],[-120.67,10.12],[-113,5],[-103,-2],[-97,-5],[-87,-12],[-91,-19],[-94,-27],[-96,-76],[-100,-87],[-100,-90],[-102,-92],[-109,-100],[-114,-103],[-131,-111],[-167,-120],[-187,-133],[-196,-142],[-198,-144],[-200,-149],[-202,-150],[-203,-153],[-221,-175],[-228,-179],[-231,-182],[-239,-184],[-299,-186]],"c":true}],"h":1},{"t":126,"s":[{"i":[[-262.61,-186.23],[-279.41,-186.48],[-302.66,-186.22],[-304.2,-182.49],[-303.12,-180.28],[-300.66,-175.78],[-296.65,-171.02],[-295.53,-168.69],[-295.36,-166.63],[-294.02,-164.83],[-292.35,-163.6],[-286.15,-152.74],[-278.09,-139.14],[-272.36,-131.49],[-268.39,-127.06],[-263.22,-123.2],[-257.46,-119.98],[-251.69,-117.82],[-246.58,-116.42],[-237.46,-114.4],[-226.21,-112.24],[-221.12,-109.96],[-218,-107.59],[-214.3,-105.58],[-210.63,-103.67],[-209.58,-102.1],[-209.24,-100.31],[-208.35,-99.36],[-207.3,-98.49],[-201.77,-82.15],[-202.16,-53.42],[-198.42,-32.58],[-189.43,-21.59],[-180.26,-16.61],[-172.56,-13.89],[-155.01,-8.2],[-135.79,1],[-129.7,9.94],[-128.42,13.88],[-123.8,12.29],[-113.91,5.57],[-109.05,2.37],[-104.85,-0.79],[-99.13,-3.6],[-85.43,-11.13],[-94.27,-25.08],[-92.14,-73.64],[-103.06,-92.69],[-105.32,-97.26],[-129.1,-111.31],[-166.72,-120.8],[-175.53,-124.77],[-189.59,-133.59],[-200.32,-147.28],[-203.75,-151.63],[-203.77,-153.49],[-205.75,-154.63],[-207.86,-159.37],[-219.52,-174.03],[-228.28,-179.66],[-237.77,-184.23]],"o":[[-271.08,-185.87],[-295.2,-186.66],[-304.4,-183.34],[-303.56,-180.95],[-302.08,-177.77],[-297.95,-172.4],[-295.6,-169.38],[-295.41,-167.32],[-294.59,-165.28],[-292.9,-163.99],[-288.85,-157.67],[-280.77,-143.47],[-273.66,-133.21],[-269.72,-128.42],[-264.99,-124.46],[-259.46,-120.96],[-253.4,-118.36],[-248.27,-116.85],[-241.35,-115.03],[-229.89,-113.01],[-222.12,-110.66],[-219.06,-108.42],[-215.73,-106.25],[-211.75,-104.29],[-209.71,-102.7],[-209.34,-100.91],[-208.7,-99.61],[-207.65,-98.8],[-202.69,-90.94],[-201.51,-63.39],[-200.2,-37.53],[-193.03,-24.61],[-182.73,-17.67],[-175.18,-14.72],[-162.61,-10.45],[-141.6,-2.47],[-130.49,8],[-128.66,12.88],[-127.09,14.25],[-117.21,7.95],[-110.62,3.51],[-106.16,0.22],[-101.44,-3.02],[-89.63,-9.84],[-91.39,-19.26],[-99.84,-47.42],[-101.54,-92.06],[-104.71,-94.99],[-112.67,-105.26],[-157.38,-118.33],[-174.35,-123.11],[-183.29,-128.67],[-197.12,-142.82],[-202.15,-151.32],[-204.31,-152.46],[-204.15,-154.32],[-207.3,-156.94],[-212.88,-166.57],[-226.53,-178.68],[-233.89,-182.42],[-249.25,-186.98]],"v":[[-268,-186],[-287.3,-186.57],[-304,-184],[-303.88,-181.72],[-303,-180],[-299.3,-174.09],[-296,-170],[-295.47,-168.01],[-295,-166],[-293.46,-164.41],[-292,-163],[-283.46,-148.1],[-275,-135],[-271.04,-129.96],[-267,-126],[-261.34,-122.08],[-255,-119],[-249.98,-117.34],[-245,-116],[-233.67,-113.71],[-223,-111],[-220.09,-109.19],[-217,-107],[-213.03,-104.94],[-210,-103],[-209.46,-101.5],[-209,-100],[-208,-99.08],[-207,-98],[-201.64,-72.77],[-201,-44],[-195.72,-28.59],[-185,-19],[-177.72,-15.66],[-170,-13],[-148.3,-5.33],[-132,6],[-129.18,11.41],[-128,14],[-120.5,10.12],[-113,5],[-107.6,1.3],[-103,-2],[-97,-5],[-89,-16],[-95,-28],[-101,-91],[-104,-94],[-106,-98],[-148,-116],[-174,-123],[-176,-125],[-194,-139],[-202,-151],[-204,-152],[-204,-154],[-206,-155],[-209,-161],[-224,-177],[-231,-181],[-241,-185]],"c":true}],"h":1},{"t":127,"s":[{"i":[[-264.15,-186.56],[-289.43,-186.55],[-304.92,-184.66],[-301.01,-176.11],[-296.44,-168.46],[-293.56,-164.99],[-290.64,-160.1],[-284.91,-150.13],[-277.6,-138.33],[-273.36,-132.56],[-271.01,-128.92],[-269.08,-127.58],[-267.33,-127.26],[-266.31,-126.07],[-265.44,-124.29],[-263.28,-123.27],[-260.05,-122.52],[-257.24,-120.95],[-254.89,-119.33],[-241.95,-115.48],[-224.3,-111.2],[-218.63,-108.6],[-216.62,-108.4],[-213.42,-105.78],[-210.69,-101.9],[-208.06,-98.65],[-205.52,-95.3],[-206.12,-45.45],[-196.05,-29.06],[-195.64,-27.79],[-150.52,-11.99],[-136.68,0.41],[-128.21,13.94],[-114.82,6.14],[-106.47,0.28],[-99.17,-3.58],[-87.14,-11.38],[-91.52,-19.13],[-95.42,-52.99],[-100.8,-91.66],[-104.35,-96.17],[-127.84,-111.84],[-169.75,-120.93],[-183.62,-129.94],[-187.2,-131.33],[-194.12,-139.39],[-200.94,-147.66],[-203.75,-150.63],[-203.77,-152.49],[-205.75,-153.64],[-205.77,-155.49],[-207.75,-156.63],[-207.77,-158.49],[-209.75,-159.66],[-209.78,-161.51],[-211.75,-162.71],[-220.65,-174.59],[-226.63,-178.75],[-228.49,-178.77],[-229.57,-180.77],[-233.22,-182.32]],"o":[[-281.73,-185.73],[-301.03,-186.02],[-302.54,-178.88],[-297.96,-170.9],[-294.74,-166.69],[-291.51,-161.7],[-287.36,-154.46],[-280.03,-142.07],[-274.1,-133.85],[-271.81,-130.09],[-269.67,-127.7],[-267.91,-127.36],[-266.59,-126.68],[-265.74,-124.88],[-264.26,-123.51],[-261.18,-122.77],[-258.05,-121.53],[-255.66,-119.85],[-248.3,-116.87],[-229.96,-112.64],[-219.32,-108.65],[-217.28,-108.48],[-214.57,-107.07],[-211.48,-103.19],[-209.05,-99.75],[-206.29,-96.43],[-197.91,-76.29],[-197.04,-30.06],[-195.36,-28.33],[-184.6,-14.02],[-137.4,0.58],[-133.76,2.94],[-126.19,14.5],[-108.58,2.23],[-101.27,-3.13],[-95.33,-6.09],[-86.44,-14.51],[-99.46,-33.54],[-97.65,-79.78],[-104.66,-95.69],[-111.5,-105.28],[-157.38,-119],[-181.33,-127.28],[-185.79,-131.6],[-191.23,-134.69],[-199.06,-145.58],[-202.15,-150.32],[-204.31,-151.46],[-204.14,-153.32],[-206.31,-154.45],[-206.15,-156.32],[-208.31,-157.46],[-208.14,-159.31],[-210.31,-160.43],[-210.12,-162.27],[-216.43,-168.32],[-226.32,-177.15],[-227.46,-179.31],[-229.36,-179.16],[-231,-181.54],[-246.07,-187.25]],"v":[[-276,-186],[-295.23,-186.29],[-303,-180],[-299.48,-173.5],[-296,-168],[-292.54,-163.34],[-290,-159],[-282.47,-146.1],[-275,-135],[-272.59,-131.33],[-270,-128],[-268.5,-127.47],[-267,-127],[-266.02,-125.48],[-265,-124],[-262.23,-123.02],[-259,-122],[-256.45,-120.4],[-254,-119],[-235.96,-114.06],[-220,-109],[-217.95,-108.54],[-216,-108],[-212.45,-104.48],[-210,-101],[-207.18,-97.54],[-205,-94],[-197,-30],[-196,-29],[-195,-27],[-138,0],[-136,1],[-128,14],[-113,5],[-103,-2],[-97,-5],[-87,-12],[-92,-20],[-97,-72],[-104,-95],[-105,-97],[-145,-116],[-179,-126],[-185,-131],[-188,-132],[-197,-143],[-202,-150],[-204,-151],[-204,-153],[-206,-154],[-206,-156],[-208,-157],[-208,-159],[-210,-160],[-210,-162],[-212,-163],[-226,-177],[-227,-179],[-229,-179],[-230,-181],[-235,-183]],"c":true}],"h":1},{"t":128,"s":[{"i":[[-270.82,-186.58],[-291.43,-186.3],[-302.8,-185.96],[-302.86,-178.72],[-295.63,-167.05],[-286.31,-150.42],[-270.21,-128.18],[-259.78,-122.14],[-254.47,-119.75],[-241.3,-116.44],[-224.64,-112.79],[-215.86,-107.7],[-209.05,-100.77],[-203.02,-82.9],[-203.33,-53.2],[-200.33,-37.74],[-196.04,-30.11],[-194.59,-28.08],[-194.33,-26.35],[-193.14,-25.59],[-191.28,-25.22],[-190.31,-24.08],[-189.44,-22.29],[-186.78,-20.86],[-182.9,-19.42],[-167.79,-13.69],[-146.25,-6.59],[-140.64,-2.43],[-140.24,-1.18],[-138.99,-0.58],[-137.4,-0.35],[-135.38,1.58],[-132.64,4.96],[-130.14,9.81],[-128.99,14],[-124.39,12.54],[-114.1,5.69],[-109.04,2.36],[-104.68,-0.9],[-101.1,-3.01],[-98.05,-4.31],[-95.63,-6.08],[-93.08,-8.29],[-91.04,-9.4],[-89.53,-9.68],[-86.34,-13.14],[-89.98,-17.54],[-91.93,-20.69],[-94.67,-26.11],[-97.57,-41.34],[-97.1,-67.71],[-129.36,-111.89],[-168.46,-121.83],[-179.36,-126.81],[-193.37,-136.8],[-197.32,-143.03],[-200.38,-145.15],[-202.83,-150.33],[-206.66,-155.05],[-218.01,-171.55],[-232.92,-182.56]],"o":[[-286.78,-185.82],[-299.44,-186.37],[-304.8,-182.69],[-298.27,-170.89],[-290.7,-158.83],[-276.07,-135.09],[-261.29,-123.01],[-256.37,-120.51],[-247.23,-117.55],[-230,-114.06],[-218.59,-109.81],[-211.1,-103.18],[-203.86,-92.05],[-202.75,-63.47],[-201.56,-40.93],[-197.57,-32.33],[-194.67,-28.65],[-194.42,-26.93],[-193.75,-25.73],[-191.9,-25.33],[-190.59,-24.68],[-189.74,-22.88],[-188.08,-21.39],[-184.19,-19.87],[-175.42,-15.9],[-153.21,-9.04],[-140.77,-2.84],[-140.38,-1.6],[-139.54,-0.65],[-137.92,-0.43],[-136.31,0.6],[-133.55,3.76],[-130.89,7.81],[-129.18,12.91],[-127.84,14.44],[-117.52,8.16],[-110.7,3.56],[-106.03,0.13],[-102.08,-2.61],[-99.09,-3.86],[-96.34,-5.43],[-94,-7.51],[-91.53,-9.31],[-90.04,-9.58],[-86.35,-11.62],[-88.15,-16.1],[-91.1,-19.14],[-93.72,-24.18],[-97.27,-33.23],[-97.48,-58.57],[-101.54,-108.58],[-160.55,-119.91],[-175.46,-125.05],[-187.88,-131.93],[-197.72,-141.84],[-198.58,-144.83],[-202.11,-147.52],[-205.16,-153.65],[-211.89,-162.67],[-226.34,-176.67],[-248.49,-188.07]],"v":[[-283,-186],[-295.44,-186.33],[-304,-184],[-300.57,-174.8],[-295,-166],[-281.19,-142.76],[-263,-124],[-258.07,-121.32],[-252,-119],[-235.65,-115.25],[-221,-111],[-213.48,-105.44],[-208,-99],[-202.89,-73.18],[-202,-44],[-198.95,-35.03],[-195,-29],[-194.51,-27.5],[-194,-26],[-192.52,-25.46],[-191,-25],[-190.02,-23.48],[-189,-22],[-185.49,-20.36],[-182,-19],[-160.5,-11.37],[-141,-3],[-140.51,-2.02],[-140,-1],[-138.45,-0.5],[-137,0],[-134.46,2.67],[-132,6],[-129.66,11.36],[-129,14],[-120.95,10.35],[-113,5],[-107.53,1.25],[-103,-2],[-100.1,-3.44],[-97,-5],[-94.82,-6.79],[-92,-9],[-90.54,-9.49],[-89,-10],[-87.24,-14.62],[-91,-19],[-92.83,-22.43],[-95,-27],[-97.53,-49.95],[-98,-76],[-157,-119],[-171,-123],[-183,-129],[-197,-141],[-198,-144],[-201,-146],[-204,-152],[-208,-157],[-222,-174],[-237,-184]],"c":true}],"h":1},{"t":129,"s":[{"i":[[-270.68,-187.29],[-295.62,-186.13],[-302.94,-185.74],[-303.66,-179.55],[-298.27,-172.46],[-296.83,-169.81],[-295.45,-166.77],[-292.29,-161.41],[-289.45,-156.52],[-285.75,-150.02],[-282.1,-143.69],[-273.95,-132.61],[-259.73,-121.94],[-244.53,-117.42],[-229.84,-114.3],[-222.83,-111.67],[-219.77,-109.58],[-218.02,-108.57],[-216.38,-108.28],[-215.64,-107.42],[-215.25,-106.19],[-213.96,-105.6],[-212.39,-105.42],[-211.58,-104.09],[-211.24,-102.32],[-210.35,-101.36],[-209.3,-100.49],[-203.82,-85.23],[-204,-58.66],[-201.98,-43],[-198.92,-32.96],[-197.56,-31.36],[-197.34,-30.48],[-180.88,-18.58],[-146.2,-7.93],[-137.41,-0.52],[-133.95,3.53],[-131.03,8.84],[-129.16,13.94],[-124.4,12.53],[-114.11,5.69],[-109.04,2.36],[-104.68,-0.9],[-101.1,-3.01],[-98.05,-4.31],[-95.63,-6.08],[-93.08,-8.29],[-89.97,-10.04],[-86.03,-11.87],[-86.4,-13.95],[-89.84,-16.51],[-98.25,-34.8],[-97.47,-66.6],[-145.05,-113.15],[-180.75,-128.61],[-186.78,-131.08],[-191.76,-136.76],[-200.32,-145.15],[-217.74,-171.52],[-229.48,-179.05],[-232.3,-181.65]],"o":[[-292.4,-185.76],[-300.89,-186.12],[-305.03,-182.32],[-300.29,-174.62],[-297.36,-170.92],[-295.88,-167.73],[-293.31,-163.15],[-290.36,-158.09],[-286.95,-152.18],[-283.33,-145.78],[-277.84,-137.14],[-264.9,-125.01],[-249.61,-118.52],[-234.65,-115.31],[-224.19,-112.39],[-220.62,-110.27],[-218.58,-108.68],[-216.92,-108.37],[-215.76,-107.83],[-215.38,-106.6],[-214.52,-105.64],[-212.9,-105.49],[-211.71,-104.68],[-211.35,-102.91],[-210.7,-101.61],[-209.65,-100.8],[-204.82,-93.15],[-203.41,-67.99],[-202.77,-46.77],[-200.06,-36.1],[-197.63,-31.62],[-197.41,-30.79],[-191.78,-22.61],[-158.09,-11.24],[-138.44,-1.54],[-135.17,2.02],[-131.95,6.62],[-129.63,12.5],[-127.85,14.43],[-117.53,8.16],[-110.7,3.56],[-106.03,0.13],[-102.08,-2.61],[-99.09,-3.86],[-96.34,-5.43],[-94,-7.51],[-91.46,-9.35],[-87.26,-11.3],[-85.73,-13.2],[-88.46,-15.61],[-97.02,-25.74],[-98.48,-55.23],[-103.63,-116.49],[-178.22,-126.27],[-184.5,-130.93],[-190.08,-133.57],[-197.98,-142.98],[-209.43,-158.26],[-227.98,-178.31],[-231.6,-180.37],[-247.14,-189.12]],"v":[[-289,-186],[-298.26,-186.12],[-304,-184],[-301.97,-177.08],[-298,-172],[-296.36,-168.77],[-295,-166],[-291.32,-159.75],[-288,-154],[-284.54,-147.9],[-281,-142],[-269.43,-128.81],[-254,-120],[-239.59,-116.37],[-226,-113],[-221.72,-110.97],[-219,-109],[-217.47,-108.47],[-216,-108],[-215.51,-107.01],[-215,-106],[-213.43,-105.54],[-212,-105],[-211.46,-103.5],[-211,-102],[-210,-101.08],[-209,-100],[-203.61,-76.61],[-203,-49],[-201.02,-39.55],[-198,-32],[-197.48,-31.08],[-197,-30],[-169.48,-14.91],[-139,-2],[-136.29,0.75],[-133,5],[-130.33,10.67],[-129,14],[-120.97,10.34],[-113,5],[-107.53,1.25],[-103,-2],[-100.1,-3.44],[-97,-5],[-94.82,-6.79],[-92,-9],[-88.62,-10.67],[-86,-12],[-87.43,-14.78],[-91,-18],[-98.37,-45.01],[-99,-79],[-175,-125],[-183,-130],[-188,-132],[-194,-139],[-203,-149],[-226,-177],[-231,-180],[-233,-182]],"c":true}],"h":1},{"t":130,"s":[{"i":[[-270.96,-187],[-283.11,-187.06],[-302.91,-185.94],[-303.36,-178.65],[-296.63,-169.04],[-294.26,-164.78],[-292.53,-160.91],[-288.11,-153.44],[-281.74,-143.38],[-279.27,-139.66],[-278.34,-137.42],[-269.58,-128.55],[-252.59,-119.69],[-239.13,-116.72],[-229.02,-115.17],[-223.75,-112.93],[-220.08,-110.66],[-216.25,-108.29],[-212.58,-105.65],[-211.35,-103.68],[-210.44,-100.7],[-208.79,-98.44],[-207.36,-96.9],[-203.39,-74.93],[-202.94,-40.19],[-198.79,-32.82],[-198.01,-32.01],[-197.58,-31.36],[-197.32,-30.41],[-190.96,-24.53],[-177.66,-18.62],[-163.28,-13.99],[-148.88,-9.22],[-143.75,-5.92],[-141.8,-3.59],[-138.33,-1.18],[-136.66,0.53],[-135.49,2.32],[-134.12,2.82],[-130.89,14.25],[-126.1,13.06],[-120.49,9.58],[-110.31,3.12],[-86.12,-10.92],[-87.99,-15.13],[-90.47,-19.36],[-93.27,-21.88],[-94.12,-74.37],[-105.64,-95.41],[-123.18,-111.33],[-141.21,-117.3],[-168.69,-122.16],[-184.57,-130.35],[-193.18,-136.28],[-198.7,-143.33],[-202.34,-146.14],[-203.5,-149.28],[-204.87,-150.86],[-208.41,-155.83],[-222.62,-174.11],[-252.79,-188.9]],"o":[[-275.41,-186.84],[-296.86,-186.61],[-305.05,-182.13],[-299.15,-172.11],[-294.99,-166.33],[-293.03,-162.07],[-290.24,-157],[-283.87,-146.63],[-279.6,-140.45],[-278.64,-138.14],[-274.28,-132.46],[-258.74,-122.17],[-242.62,-117.13],[-232.33,-115.74],[-224.97,-113.6],[-221.31,-111.46],[-217.72,-109.21],[-213.69,-106.51],[-211.63,-104.58],[-210.76,-101.74],[-209.36,-98.99],[-207.79,-97.4],[-203.42,-87.08],[-203.15,-51.48],[-199.03,-33.06],[-198.28,-32.29],[-197.67,-31.66],[-197.41,-30.74],[-194.63,-26.98],[-182.48,-20.36],[-168.34,-15.38],[-153.55,-10.91],[-144.35,-6.63],[-142.48,-4.41],[-139.25,-1.7],[-137.04,-0.07],[-135.93,2.16],[-134.59,2.65],[-132.1,5.74],[-128.22,14.94],[-122.99,11.13],[-113.5,5.14],[-103.13,-1.47],[-85.93,-15.95],[-90.6,-17.38],[-91.96,-21.17],[-104.03,-38.33],[-104.26,-94.52],[-112.8,-106.93],[-139.04,-115.87],[-155.58,-120.92],[-181.39,-128.12],[-189.78,-133.89],[-196.94,-139.83],[-200.65,-145.84],[-203.61,-147.79],[-204.04,-150.06],[-207.22,-153.31],[-215.89,-166.02],[-239.04,-184.99],[-269.75,-187.96]],"v":[[-271,-187],[-289.99,-186.83],[-304,-184],[-301.26,-175.38],[-296,-168],[-293.64,-163.43],[-292,-160],[-285.99,-150.03],[-280,-141],[-278.95,-138.9],[-278,-137],[-264.16,-125.36],[-246,-118],[-235.73,-116.23],[-226,-114],[-222.53,-112.2],[-219,-110],[-214.97,-107.4],[-212,-105],[-211.06,-102.71],[-210,-100],[-208.29,-97.92],[-207,-96],[-203.27,-63.21],[-199,-33],[-198.53,-32.55],[-198,-32],[-197.5,-31.05],[-197,-30],[-186.72,-22.45],[-173,-17],[-158.41,-12.45],[-145,-7],[-143.11,-5.17],[-141,-3],[-137.68,-0.63],[-136,2],[-135.04,2.48],[-134,3],[-128,15],[-126,13],[-118,8],[-107,1],[-86,-14],[-89,-16],[-91,-20],[-94,-23],[-104,-94],[-106,-96],[-136,-115],[-144,-118],[-179,-127],[-187,-132],[-195,-138],[-200,-145],[-203,-147],[-204,-150],[-205,-151],[-210,-158],[-230,-179],[-269,-188]],"c":true}],"h":1},{"t":131,"s":[{"i":[[-132.89,-10.99],[-122.3,10.96],[-112.27,4.74],[-105.2,0.23],[-99.35,-3.46],[-93.81,-7.11],[-85.92,-12.2],[-86.33,-14.9],[-90.89,-18.54],[-98.91,-34.83],[-98.99,-62.85],[-102.71,-89.65],[-113.65,-106.06],[-123.85,-111.49],[-130.7,-114.24],[-150.53,-119.75],[-176.25,-126.44],[-184.38,-130.91],[-186.26,-132.53],[-188.82,-133.83],[-191.53,-134.64],[-195.29,-137.88],[-200.03,-142.88],[-201.44,-144.93],[-201.66,-146.52],[-202.89,-147.71],[-204.69,-148.58],[-205.1,-149.59],[-204.89,-150.75],[-205.51,-151.32],[-206.87,-151.83],[-213.55,-161.82],[-225.3,-175.88],[-230.32,-178.51],[-230.81,-179.88],[-231.6,-180.1],[-232.74,-179.88],[-233.32,-180.52],[-233.79,-181.88],[-235.35,-182.62],[-238.18,-183.68],[-249.88,-187],[-270.56,-188.65],[-285.63,-187.45],[-303.11,-185.65],[-302.88,-178.21],[-295.46,-166.74],[-294.31,-164.66],[-293.7,-162.87],[-287.17,-151.56],[-279.91,-139.33],[-268.46,-127.98],[-249.83,-119.72],[-234.38,-116.18],[-222.05,-112.95],[-217.79,-108.63],[-213.81,-106.9],[-212.5,-103.66],[-210.6,-101.98],[-208.25,-50.35],[-189.69,-24.64]],"o":[[-125.67,12.84],[-115.6,6.91],[-106.77,1.21],[-101.49,-2.1],[-96.6,-5.26],[-88.47,-10.58],[-85.38,-13.63],[-89.08,-17.36],[-97.42,-27.15],[-99.7,-52.68],[-100.63,-82.62],[-109.21,-101.37],[-121.49,-110.37],[-128.45,-113.42],[-141.4,-117.78],[-167.95,-124.08],[-183.75,-130.4],[-185.64,-131.98],[-187.8,-133.51],[-190.68,-134.39],[-193.53,-136.19],[-198.54,-141.22],[-201.36,-144.42],[-201.59,-145.98],[-202.29,-147.42],[-204.09,-148.29],[-205.16,-149.21],[-204.97,-150.36],[-205.07,-151.15],[-206.41,-151.65],[-210.15,-156.38],[-221.13,-171.57],[-230.16,-178.07],[-230.65,-179.41],[-231.23,-180.15],[-232.36,-179.96],[-233.18,-180.08],[-233.63,-181.42],[-234.51,-182.28],[-237.18,-183.32],[-243.35,-185.67],[-263.49,-188.49],[-279.07,-187.63],[-297.65,-186.46],[-304.9,-182.34],[-298.16,-170.41],[-294.21,-164.72],[-294.06,-163.73],[-289.72,-156.14],[-282.27,-143.15],[-273.8,-131.87],[-256.48,-121.91],[-238.85,-116.96],[-225.98,-114.17],[-218.18,-110.48],[-215.72,-106.98],[-212.4,-105.33],[-211.41,-102.22],[-200.01,-84.67],[-196.78,-29.01],[-162.97,-12.24]],"v":[[-130,15],[-118.95,8.94],[-108,2],[-103.34,-0.93],[-97,-5],[-91.14,-8.85],[-86,-12],[-87.71,-16.13],[-92,-20],[-99.31,-43.76],[-100,-75],[-105.96,-95.51],[-119,-109],[-126.15,-112.46],[-133,-115],[-159.24,-121.92],[-183,-130],[-185.01,-131.44],[-187,-133],[-189.75,-134.11],[-192,-135],[-196.92,-139.55],[-201,-144],[-201.52,-145.45],[-202,-147],[-203.49,-148],[-205,-149],[-205.03,-149.98],[-205,-151],[-205.96,-151.49],[-207,-152],[-217.34,-166.69],[-230,-178],[-230.48,-178.96],[-231,-180],[-231.98,-180.03],[-233,-180],[-233.47,-180.97],[-234,-182],[-236.26,-182.97],[-239,-184],[-256.68,-187.75],[-276,-188],[-291.64,-186.96],[-304,-184],[-300.52,-174.31],[-295,-166],[-294.18,-164.19],[-292,-160],[-284.72,-147.35],[-278,-137],[-262.47,-124.94],[-243,-118],[-230.18,-115.18],[-219,-111],[-217,-108],[-213,-106],[-212,-103],[-210,-101],[-200,-35],[-184,-22]],"c":true}],"h":1},{"t":132,"s":[{"i":[[-277.25,-187.18],[-290.27,-186.99],[-303.02,-185.87],[-303.42,-178.99],[-297.54,-169.93],[-291.67,-159.08],[-284.02,-145],[-276.38,-135.52],[-269.53,-129.69],[-267.68,-128.48],[-267.21,-127.12],[-254.53,-121.77],[-233.69,-116.98],[-224.67,-113.61],[-221.77,-111.58],[-220.01,-110.57],[-218.38,-110.29],[-213.58,-106.05],[-209.02,-98.76],[-204.65,-75.48],[-203.9,-42.7],[-191.56,-26.41],[-172.8,-18.28],[-156.75,-12.98],[-144.19,-7.56],[-138.78,-3.11],[-135.57,0.18],[-134.26,2.26],[-132.46,5.89],[-130.1,13.7],[-127.69,14.37],[-120.28,9.59],[-114.52,5.92],[-109.3,2.85],[-106.14,0.93],[-102.59,-1.71],[-98.95,-3.57],[-97.68,-4.51],[-97.19,-5.88],[-95.15,-6.99],[-92,-8.35],[-90.08,-9.61],[-88.48,-10.69],[-85.33,-14.53],[-90.81,-18.61],[-94.1,-23.08],[-96.72,-28.35],[-100.45,-46.96],[-100.89,-80.31],[-105.1,-94.53],[-108.91,-99.69],[-115.23,-106.75],[-118.59,-109.76],[-158.67,-121.07],[-181.41,-128.67],[-185.84,-132.28],[-190.86,-134.13],[-202.58,-146.65],[-221.24,-172.72],[-241.66,-184.49],[-254.58,-187.77]],"o":[[-285.01,-186.81],[-299.28,-186.52],[-304.9,-182.27],[-299.74,-172.82],[-294.15,-164.08],[-286.6,-149.54],[-278.86,-138.18],[-271.71,-131.28],[-267.83,-128.92],[-267.37,-127.58],[-261.43,-123.78],[-240.66,-118.37],[-226.03,-114.31],[-222.54,-112.24],[-220.57,-110.68],[-218.92,-110.38],[-215.56,-108.17],[-210.31,-101.34],[-204.7,-87.13],[-204.25,-53.26],[-196.66,-30.27],[-179.63,-20.42],[-161.4,-14.46],[-148.15,-9.53],[-139.99,-4.19],[-136.56,-0.92],[-134.78,1.31],[-133.1,4.54],[-130.25,11.26],[-128.82,15.26],[-122.26,10.88],[-116.41,7.11],[-110.72,3.63],[-107.01,1.5],[-103.87,-0.92],[-100.13,-3.03],[-97.84,-4.07],[-97.36,-5.41],[-96.14,-6.56],[-93.07,-7.88],[-90.58,-9.27],[-89.03,-10.32],[-84.92,-12.97],[-88.27,-17.35],[-92.99,-21.15],[-95.96,-26.67],[-100.01,-36.06],[-100.89,-69.09],[-104.15,-92.18],[-107.49,-98.28],[-114.05,-105.37],[-118.35,-108.16],[-134.02,-118.68],[-177.98,-128.08],[-184.99,-130.51],[-188.49,-133.92],[-197.32,-139.07],[-215.05,-162.54],[-238.65,-183.49],[-251.9,-186.59],[-265.04,-188.75]],"v":[[-281,-187],[-294.78,-186.76],[-304,-184],[-301.58,-175.9],[-297,-169],[-289.13,-154.31],[-281,-141],[-274.05,-133.4],[-268,-129],[-267.52,-128.03],[-267,-127],[-247.59,-120.07],[-228,-115],[-223.6,-112.92],[-221,-111],[-219.47,-110.47],[-218,-110],[-211.94,-103.69],[-208,-96],[-204.45,-64.37],[-200,-36],[-185.6,-23.41],[-166,-16],[-152.45,-11.26],[-141,-5],[-137.67,-2.01],[-135,1],[-133.68,3.4],[-132,7],[-129.46,14.48],[-124,12],[-118.34,8.35],[-113,5],[-108.15,2.17],[-105,0],[-101.36,-2.37],[-98,-4],[-97.52,-4.96],[-97,-6],[-94.11,-7.43],[-91,-9],[-89.55,-9.97],[-88,-11],[-86.8,-15.94],[-92,-20],[-95.03,-24.87],[-97,-29],[-100.67,-58.02],[-103,-88],[-106.29,-96.4],[-111,-102],[-118,-108],[-119,-110],[-175,-127],[-184,-130],[-187,-133],[-192,-135],[-206,-151],[-233,-180],[-249,-186],[-257,-188]],"c":true}],"h":1},{"t":133,"s":[{"i":[[-90.53,-8.67],[-90.42,-19.05],[-95.54,-25.03],[-101.35,-49.21],[-101.41,-86.5],[-107.32,-98.21],[-110.86,-102.77],[-117.05,-108.7],[-125.79,-113.73],[-146.91,-120.51],[-173.42,-126.63],[-183.97,-131.18],[-188.6,-133.11],[-191.89,-135.63],[-194.47,-138.6],[-196.01,-139.42],[-197.6,-139.64],[-199.28,-141.19],[-201.44,-143.35],[-202.44,-144.93],[-202.66,-146.52],[-203.88,-147.71],[-205.67,-148.59],[-208.52,-152.43],[-211.88,-157.54],[-219.14,-167.01],[-229.2,-177.56],[-239.73,-183.72],[-251.97,-187.6],[-265.26,-188.39],[-281.21,-187.42],[-294.97,-186.69],[-303.24,-185.47],[-303.63,-179.65],[-298.85,-170.53],[-294.51,-163.04],[-290.54,-156.9],[-283.65,-145.38],[-273.74,-132.48],[-267.39,-128.19],[-263.43,-125.62],[-253.94,-122.14],[-241.06,-119.12],[-224.64,-114.03],[-215.93,-108.95],[-214.45,-105.59],[-212.6,-103.88],[-207.6,-67.02],[-199.36,-33.54],[-194.03,-29.38],[-184.97,-23.86],[-167.34,-17.66],[-147.96,-10.22],[-136.03,-1.56],[-132.29,15.78],[-124.72,12.78],[-122.37,10.25],[-120.51,10.23],[-119.38,8.24],[-114.67,6.01],[-108.75,2.12]],"o":[[-87.9,-17.28],[-94.24,-22.93],[-101.4,-36.96],[-101.36,-73.99],[-106.4,-96.82],[-109.55,-101.18],[-114.41,-106.58],[-122.75,-112.27],[-137.7,-118.44],[-164.77,-124.6],[-182.41,-130.63],[-187.06,-132.42],[-190.9,-134.58],[-193.67,-137.64],[-195.46,-139.35],[-197.08,-139.56],[-198.57,-140.51],[-200.72,-142.6],[-202.36,-144.42],[-202.59,-145.98],[-203.29,-147.42],[-205.07,-148.3],[-207.33,-150.66],[-210.8,-155.87],[-216.05,-162.98],[-225.72,-174.3],[-235.99,-181.92],[-247.72,-186.56],[-260.4,-188.43],[-275.67,-187.89],[-291.1,-186.7],[-301.04,-186.07],[-304.7,-182.63],[-300.7,-173.6],[-296.24,-165.83],[-291.66,-158.57],[-286.79,-150.64],[-277.13,-136.3],[-268.68,-129.12],[-264.77,-126.43],[-258.16,-123.33],[-245.39,-120.04],[-230.02,-116.07],[-218.41,-109.96],[-214.44,-107.43],[-213.44,-104.27],[-202.85,-89.67],[-204.16,-43.15],[-196.08,-30.01],[-187.71,-25.09],[-173.21,-19.46],[-154.44,-12.99],[-138.89,-3.43],[-130.51,12.2],[-125.43,12.93],[-122.68,11.85],[-121.54,9.69],[-119.67,9.85],[-116.76,6.56],[-110.38,3.41],[-97.4,-5.14]],"v":[[-84,-15],[-92.33,-20.99],[-97,-28],[-101.36,-61.6],[-106,-96],[-108.44,-99.69],[-112,-104],[-119.9,-110.49],[-129,-115],[-155.84,-122.55],[-181,-130],[-185.51,-131.8],[-190,-134],[-192.78,-136.63],[-195,-139],[-196.55,-139.49],[-198,-140],[-200,-141.9],[-202,-144],[-202.52,-145.45],[-203,-147],[-204.47,-148.01],[-206,-149],[-209.66,-154.15],[-213,-159],[-222.43,-170.66],[-233,-180],[-243.72,-185.14],[-256,-188],[-270.46,-188.14],[-287,-187],[-298.01,-186.38],[-304,-184],[-302.17,-176.63],[-298,-169],[-293.09,-160.8],[-290,-156],[-280.39,-140.84],[-270,-130],[-266.08,-127.31],[-262,-125],[-249.66,-121.09],[-237,-118],[-220,-111],[-215,-108],[-214,-105],[-212,-103],[-205,-49],[-197,-31],[-192,-28],[-180,-22],[-160,-15],[-145,-8],[-133,6],[-128,14],[-123,12],[-122,10],[-120,10],[-119,8],[-113,5],[-107,1]],"c":true}],"h":1},{"t":134,"s":[{"i":[[-131.17,4.07],[-125.04,12.67],[-117.49,8.12],[-114.68,6.48],[-114.2,5.12],[-110.79,3.25],[-105.92,0.75],[-100.82,-3.1],[-93.87,-7.16],[-91.68,-8.51],[-91.19,-9.88],[-90.39,-10.09],[-89.26,-9.88],[-88.68,-10.52],[-88.21,-11.88],[-86.75,-12.29],[-84.04,-12.8],[-85.46,-15.74],[-90.78,-20.77],[-92.52,-22.46],[-94.45,-24.27],[-96.36,-26.92],[-97.64,-29.24],[-102.05,-50.76],[-102.65,-88.15],[-108.15,-98.82],[-110.36,-101.21],[-115.66,-107.22],[-124.06,-113.72],[-144.89,-120.67],[-173.11,-126.59],[-185.01,-131.89],[-190.44,-135.03],[-200.69,-142.82],[-210.64,-155.54],[-222.25,-170.46],[-237.39,-182.65],[-257.49,-187.94],[-282.56,-187.81],[-296.99,-186.47],[-303.34,-185.26],[-303.98,-179.52],[-299,-171.8],[-295.42,-164.94],[-292.29,-158.18],[-286.84,-149.37],[-280.11,-140.39],[-275.46,-135.11],[-272.04,-131.69],[-268.67,-129.49],[-265.36,-127.67],[-255.12,-123.53],[-236.01,-119.11],[-219.28,-111.5],[-210.18,-100.4],[-207.13,-69.56],[-203.23,-39.33],[-200.63,-35.78],[-187.64,-25.29],[-167.26,-17.89],[-147.94,-11.82]],"o":[[-127.8,14.36],[-119.89,9.55],[-114.83,6.92],[-114.36,5.58],[-112.58,4.13],[-107.46,1.56],[-103.13,-1.52],[-96.18,-5.92],[-91.83,-8.07],[-91.36,-9.41],[-90.77,-10.15],[-89.64,-9.96],[-88.82,-10.08],[-88.37,-11.42],[-87.73,-12.15],[-84.91,-12.62],[-83.82,-13.85],[-88.94,-19.2],[-91.79,-21.82],[-93.85,-23.69],[-95.79,-26.05],[-97.29,-28.51],[-101.98,-38.44],[-102.39,-75.62],[-107.47,-97.96],[-109.59,-100.44],[-113.13,-104.61],[-121.13,-111.78],[-135.34,-118.62],[-163.78,-124.65],[-183.03,-130.88],[-188.71,-133.97],[-196.87,-139.05],[-207.58,-151.06],[-218.05,-165.39],[-231.92,-179.09],[-249.71,-187.03],[-273.91,-188.33],[-293.81,-186.58],[-301.75,-185.81],[-304.98,-182.12],[-300.99,-174.37],[-296.53,-167.35],[-293.3,-160.35],[-289.04,-152.68],[-282.38,-143.23],[-276.69,-136.52],[-273.13,-132.7],[-269.73,-130.16],[-266.48,-128.25],[-258.94,-124.53],[-242.79,-120.45],[-224.1,-114.93],[-213.1,-104.91],[-204.84,-85.03],[-205.55,-50.59],[-200.36,-36.34],[-194.55,-28.24],[-173.46,-19.89],[-156.18,-13.91],[-138.13,-2.42]],"v":[[-131,16],[-122.46,11.11],[-115,7],[-114.52,6.03],[-114,5],[-109.12,2.41],[-105,0],[-98.5,-4.51],[-92,-8],[-91.52,-8.96],[-91,-10],[-90.02,-10.03],[-89,-10],[-88.53,-10.97],[-88,-12],[-85.83,-12.46],[-84,-13],[-87.2,-17.47],[-91,-21],[-93.18,-23.07],[-95,-25],[-96.82,-27.72],[-98,-30],[-102.22,-63.19],[-107,-97],[-108.87,-99.63],[-111,-102],[-118.39,-109.5],[-127,-115],[-154.33,-122.66],[-181,-130],[-186.86,-132.93],[-192,-136],[-204.14,-146.94],[-214,-160],[-227.08,-174.77],[-244,-185],[-265.7,-188.13],[-290,-187],[-299.37,-186.14],[-304,-184],[-302.49,-176.94],[-298,-170],[-294.36,-162.65],[-291,-156],[-284.61,-146.3],[-278,-138],[-274.3,-133.91],[-271,-131],[-267.57,-128.87],[-264,-127],[-249,-122],[-230,-117],[-216,-108],[-209,-97],[-206,-56],[-201,-37],[-200,-35],[-179,-22],[-162,-16],[-145,-9]],"c":true}],"h":1},{"t":135,"s":[{"i":[[-90.63,-9.03],[-91.85,-21.13],[-99.58,-31.12],[-102.43,-51.98],[-103.19,-86.07],[-106.4,-94.87],[-107.62,-97.23],[-110.23,-101.71],[-114.19,-105.31],[-120.05,-110.82],[-125.61,-114.96],[-142.46,-120.92],[-162.26,-124.46],[-179.19,-129.56],[-194.25,-137.15],[-198.36,-140.59],[-198.74,-141.81],[-200.02,-142.41],[-201.6,-142.61],[-202.79,-144.22],[-203.56,-146.46],[-205.93,-148.98],[-208.47,-151.14],[-210.69,-154.33],[-213.29,-157.06],[-218.33,-164.19],[-225.54,-173.49],[-228.81,-175.66],[-229.58,-176.67],[-233.32,-179.39],[-238.36,-182.17],[-245.28,-185.34],[-254.32,-187.53],[-263.66,-188.67],[-271.01,-189.11],[-283.07,-188.49],[-303.07,-185.79],[-303.19,-176.93],[-295.38,-164.69],[-293.8,-161.3],[-291.9,-156.94],[-290.51,-155.37],[-290.35,-154.59],[-284.99,-146.11],[-275.54,-134.56],[-269.3,-130.42],[-264.16,-126.83],[-256.63,-124.05],[-248.62,-121.68],[-237.82,-120.16],[-224.04,-114.23],[-217.89,-109.97],[-215.25,-107.29],[-207.8,-93.14],[-208.52,-50.6],[-201,-37],[-200.67,-35.9],[-183.17,-24.7],[-132.35,-7.56],[-123.13,11.63],[-110.91,3.51]],"o":[[-88.06,-18.32],[-97.61,-27.53],[-102.58,-41.45],[-102.74,-74.29],[-106.09,-94.26],[-107.17,-96.36],[-109.13,-100.3],[-112.76,-104.21],[-118.24,-109.09],[-123.73,-113.76],[-135.33,-119.19],[-155.92,-123.56],[-173.56,-127.49],[-189.53,-134.39],[-198.24,-140.18],[-198.61,-141.4],[-199.47,-142.35],[-201.09,-142.54],[-202.51,-143.49],[-203.31,-145.7],[-204.95,-148.16],[-207.69,-150.47],[-209.8,-153.3],[-212.43,-156.21],[-216.06,-160.69],[-223.07,-170.58],[-228.52,-175.32],[-229.35,-176.33],[-231.64,-178.31],[-236.67,-181.32],[-242.62,-184.32],[-251.13,-186.95],[-260.9,-188.37],[-268.71,-189.04],[-275.78,-188.85],[-296.71,-186.96],[-305.25,-181.58],[-298.26,-168.49],[-294.35,-162.83],[-292.58,-158.36],[-290.59,-155.57],[-290.39,-154.87],[-287.97,-150.58],[-278.78,-138.1],[-270.97,-131.75],[-265.89,-127.96],[-259.31,-124.96],[-251.28,-122.41],[-242.54,-120.1],[-228.74,-117.41],[-218.35,-110.05],[-216.88,-107.73],[-210.7,-101.84],[-205.43,-69.15],[-202.09,-38.17],[-200.3,-36.27],[-194.26,-27.27],[-152.46,-14.53],[-127.14,14.87],[-114.9,6.39],[-98.76,-4.28]],"v":[[-83,-15],[-94.73,-24.33],[-101,-36],[-102.58,-63.14],[-106,-94],[-106.78,-95.61],[-108,-98],[-111.49,-102.96],[-116,-107],[-121.89,-112.29],[-128,-116],[-149.19,-122.24],[-168,-126],[-184.36,-131.98],[-198,-140],[-198.49,-140.99],[-199,-142],[-200.55,-142.48],[-202,-143],[-203.05,-144.96],[-204,-147],[-206.81,-149.73],[-209,-152],[-211.56,-155.27],[-214,-158],[-220.7,-167.39],[-228,-175],[-229.08,-175.99],[-230,-177],[-235,-180.36],[-240,-183],[-248.2,-186.14],[-258,-188],[-266.18,-188.86],[-273,-189],[-289.89,-187.72],[-304,-184],[-300.73,-172.71],[-295,-164],[-293.19,-159.83],[-291,-156],[-290.45,-155.12],[-290,-154],[-281.88,-142.11],[-273,-133],[-267.6,-129.19],[-262,-126],[-253.95,-123.23],[-246,-121],[-234,-119],[-221,-112],[-217,-108],[-215,-107],[-207,-85],[-202,-38],[-201,-37],[-200,-35],[-172,-21],[-132,16],[-119,9],[-107,1]],"c":true}],"h":1},{"t":136,"s":[{"i":[[-268.39,-188.68],[-288.67,-187.77],[-302.97,-186.05],[-304.15,-179.61],[-299.98,-171.84],[-290.84,-154.75],[-277.01,-136.23],[-269.26,-130.57],[-266.9,-128.46],[-262.57,-126.71],[-256.89,-125.58],[-251.22,-123.65],[-245.86,-121.5],[-241.96,-120.6],[-238.91,-120.23],[-236.38,-119.45],[-233.97,-118.34],[-229.27,-116.9],[-223.48,-115.01],[-220.25,-112.55],[-217.64,-109.71],[-215.25,-107.03],[-212.76,-103.49],[-207.68,-82.22],[-206.73,-46.95],[-184,-25.1],[-143.41,-11.95],[-136.05,0.91],[-134.51,5.25],[-132.8,11.44],[-131.86,16.08],[-129.09,15.52],[-122.1,10.36],[-116.52,7.68],[-114.4,5.24],[-108.92,3.24],[-105.84,-0.44],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-88.85,-10.18],[-87.18,-11.3],[-83.29,-15.1],[-90.1,-21.18],[-93.28,-22.18],[-94.41,-25.29],[-98.07,-29.17],[-100.5,-33.64],[-102.33,-64.81],[-108.19,-96.88],[-113.6,-105.39],[-116.27,-107.32],[-121.32,-112.98],[-135.33,-119.1],[-184.6,-128.46],[-199.16,-140.31],[-210.58,-153.35],[-225.73,-174.17],[-232.64,-178.75],[-240.61,-183.67]],"o":[[-282.94,-187.75],[-298.69,-186.93],[-304.91,-182.19],[-301.68,-174.44],[-294.83,-162.14],[-281.93,-141.8],[-270.06,-131.34],[-267.68,-129.13],[-264.38,-127.17],[-258.83,-125.92],[-253.04,-124.4],[-247.64,-122.2],[-243,-120.73],[-239.91,-120.35],[-237.15,-119.78],[-234.8,-118.73],[-231.28,-117.4],[-225.37,-115.71],[-221.18,-113.44],[-218.48,-110.68],[-216.12,-108.03],[-213.57,-104.76],[-208.06,-94.25],[-207.02,-58.57],[-197.29,-29.38],[-157.06,-16.39],[-136.54,-0.22],[-135.04,3.64],[-133.37,9.15],[-132.05,14.91],[-131.04,16.59],[-124.62,12.4],[-118.02,7.72],[-114.66,6.85],[-111.45,3.46],[-106.18,1.47],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.16,-9.8],[-87.15,-11.82],[-81.39,-14.74],[-88.82,-19.42],[-91.81,-22.73],[-94.65,-23.74],[-97.02,-28.41],[-99.54,-32.06],[-105.13,-46.21],[-104.69,-87.65],[-111.58,-102.72],[-115.66,-107.76],[-119.19,-110.04],[-127.81,-116.94],[-161.63,-126.58],[-197.76,-140.71],[-206.48,-146.3],[-220.08,-165.51],[-232.32,-177.14],[-236.58,-181.48],[-254.05,-188.94]],"v":[[-279,-188],[-293.68,-187.35],[-304,-184],[-302.91,-177.02],[-299,-170],[-286.38,-148.27],[-271,-132],[-268.47,-129.85],[-266,-128],[-260.7,-126.31],[-255,-125],[-249.43,-122.92],[-244,-121],[-240.93,-120.47],[-238,-120],[-235.59,-119.09],[-233,-118],[-227.32,-116.3],[-222,-114],[-219.37,-111.61],[-217,-109],[-214.41,-105.9],[-212,-102],[-207.35,-70.4],[-203,-40],[-170.53,-20.75],[-137,-1],[-135.54,2.27],[-134,7],[-132.42,13.18],[-132,16],[-126.85,13.96],[-120,9],[-115,7],[-114,5],[-107,2],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-88,-11],[-86,-12],[-87,-18],[-91,-22],[-94,-23],[-95,-26],[-99,-31],[-101,-35],[-104,-81],[-110,-100],[-115,-107],[-117,-108],[-123,-114],[-142,-121],[-197,-140],[-200,-141],[-215,-159],[-232,-177],[-233,-179],[-244,-185]],"c":true}],"h":1},{"t":137,"s":[{"i":[[-85.46,-12.46],[-93.7,-23.28],[-102.94,-37.47],[-104.68,-58.17],[-104.39,-77.1],[-107.21,-93.91],[-114.87,-108.08],[-118.8,-110.66],[-119.6,-111.71],[-131.03,-118.14],[-150.58,-123.52],[-166.47,-127.18],[-179.4,-130.65],[-187.62,-134.01],[-192.43,-137.03],[-195.84,-138.81],[-198.38,-139.52],[-202.07,-142.68],[-206.67,-147.56],[-216.32,-159.96],[-229.46,-176.5],[-235.32,-179.52],[-235.79,-180.88],[-242.94,-184.46],[-256.37,-188.57],[-268.51,-189.25],[-280.09,-188.32],[-292.62,-187.76],[-302.94,-186.2],[-304.02,-179.99],[-299.92,-172.85],[-296.78,-166.18],[-293.88,-159.52],[-291.76,-156.3],[-289.55,-153.86],[-288.03,-151.14],[-287.34,-148.76],[-286.49,-147.68],[-285.12,-147.18],[-281.22,-141.53],[-276.12,-135.47],[-271.38,-132.08],[-268.02,-129.58],[-263.99,-127.59],[-259.61,-126.46],[-249.25,-123.77],[-235.48,-120.3],[-223.2,-114.64],[-213.67,-104.75],[-207.88,-81.9],[-207.76,-51.16],[-200.13,-35.83],[-188.27,-27.77],[-178.2,-23.83],[-169.9,-21.65],[-166.19,-20.5],[-164.26,-19.09],[-150.11,-14.98],[-131.79,2.67],[-115.37,6.36],[-98.35,-4.16]],"o":[[-88.73,-20.04],[-100.8,-32],[-104.73,-51.87],[-104.51,-70.78],[-105.53,-88.12],[-111.89,-103.89],[-118.5,-110.31],[-119.35,-111.36],[-124.99,-115.63],[-143.83,-122.09],[-161.77,-126.1],[-175.29,-129.45],[-185.66,-133],[-191,-136.02],[-194.9,-138.55],[-197.58,-139.3],[-200.48,-141.14],[-205.17,-145.88],[-212.34,-153.71],[-224.88,-171.36],[-235.18,-179.08],[-235.63,-180.42],[-239.01,-182.68],[-251.62,-187.41],[-264.71,-189.35],[-276.2,-188.74],[-288.15,-187.66],[-300.02,-187.03],[-304.81,-182.32],[-301.58,-175.26],[-297.83,-168.67],[-294.8,-161.6],[-292.49,-157.12],[-290.29,-154.67],[-288.36,-152.01],[-287.52,-149.51],[-286.93,-147.84],[-285.59,-147.35],[-282.91,-144.05],[-277.83,-137.24],[-272.62,-133.05],[-269.08,-130.35],[-265.43,-128.11],[-261.07,-126.76],[-254.01,-124.87],[-239.99,-121.49],[-227.37,-117.26],[-216.35,-108.38],[-208.24,-92.57],[-207.64,-61.2],[-203.24,-39.44],[-192.64,-29.99],[-181,-24.75],[-172.65,-22.28],[-166.81,-20.96],[-164.92,-19.57],[-158.27,-17.03],[-139.27,-4.59],[-123.75,12.62],[-102.64,-1.79],[-89.98,-9.62]],"v":[[-82,-16],[-97.25,-27.64],[-104,-46],[-104.59,-64.48],[-105,-83],[-109.55,-98.9],[-118,-110],[-119.07,-111.01],[-120,-112],[-137.43,-120.11],[-157,-125],[-170.88,-128.31],[-183,-132],[-189.31,-135.02],[-194,-138],[-196.71,-139.06],[-199,-140],[-203.62,-144.28],[-208,-149],[-220.6,-165.66],[-235,-179],[-235.47,-179.97],[-236,-181],[-247.28,-185.93],[-261,-189],[-272.35,-189],[-284,-188],[-296.32,-187.4],[-304,-184],[-302.8,-177.63],[-299,-171],[-295.79,-163.89],[-293,-158],[-291.03,-155.49],[-289,-153],[-287.78,-150.33],[-287,-148],[-286.04,-147.51],[-285,-147],[-279.52,-139.39],[-274,-134],[-270.23,-131.22],[-267,-129],[-262.53,-127.17],[-258,-126],[-244.62,-122.63],[-232,-119],[-219.78,-111.51],[-212,-101],[-207.76,-71.55],[-205,-44],[-196.38,-32.91],[-184,-26],[-175.43,-23.06],[-167,-21],[-165.55,-20.04],[-164,-19],[-147,-12],[-133,17],[-107,1],[-94,-7]],"c":true}],"h":1},{"t":138,"s":[{"i":[[-134.21,3.77],[-129.81,15.86],[-125.47,13.45],[-124.04,12.3],[-122.42,11.41],[-121.04,10.3],[-119.42,9.41],[-116.31,6.9],[-112.08,4.66],[-108.51,2.17],[-105.89,-0.41],[-103.69,-1.46],[-101.59,-1.61],[-99.12,-3.51],[-96.24,-6.19],[-90.14,-9.75],[-82.06,-14.37],[-83.58,-17.56],[-89.41,-20.56],[-97.48,-28.03],[-104.4,-43.1],[-105.34,-57.42],[-104.81,-69.3],[-106.02,-84.49],[-109.93,-98.49],[-113.47,-104.14],[-115.54,-106.39],[-116.41,-108.03],[-116.6,-109.6],[-117.58,-110.38],[-118.77,-110.86],[-119.8,-111.66],[-120.6,-112.71],[-127.38,-116.97],[-137.89,-120.79],[-154.49,-125.13],[-172.98,-129.09],[-182,-131.9],[-186.57,-133.38],[-192.75,-136.49],[-198.38,-140.75],[-205.11,-146.17],[-210.78,-152.26],[-236.03,-186.54],[-301.44,-189.33],[-298.13,-168.52],[-287.01,-147.94],[-282.06,-142.27],[-278.25,-138.02],[-275.3,-135.25],[-256.59,-125.79],[-239.36,-121.12],[-228.73,-118.6],[-221.96,-112.92],[-215.45,-106.63],[-209.66,-71.32],[-204.25,-41.35],[-194.59,-31.79],[-165.15,-20.92],[-154,-15.5],[-147.74,-13.32]],"o":[[-131.57,16.64],[-126.76,14.27],[-124.58,12.6],[-122.96,11.71],[-121.58,10.6],[-119.96,9.71],[-117.77,7.82],[-113.47,5.32],[-109.57,3.12],[-106.67,0.4],[-104.4,-1.4],[-102.29,-1.56],[-100,-2.66],[-97.24,-5.27],[-93.36,-8.07],[-84.49,-12.91],[-81.88,-16.27],[-87.35,-19.7],[-94.04,-23.97],[-102.66,-37.59],[-105.44,-53.27],[-105.03,-65.44],[-105.31,-78.99],[-108.34,-94.24],[-112.7,-103.2],[-114.89,-105.73],[-116.36,-107.48],[-116.53,-109.09],[-117.2,-110.2],[-118.37,-110.71],[-119.5,-111.31],[-120.35,-112.36],[-124.19,-115.32],[-134.24,-119.7],[-148.25,-123.84],[-166.85,-127.76],[-180.47,-131.46],[-185.05,-132.86],[-190.56,-135.12],[-196.66,-139.31],[-202.97,-144.3],[-209.01,-150.16],[-225.26,-170.13],[-270.25,-190.05],[-306.55,-178.69],[-290.8,-155.59],[-283.37,-143.17],[-278.45,-137.95],[-275.73,-136.88],[-267.33,-128.61],[-242.57,-122.1],[-232.89,-118.97],[-223.66,-115.63],[-217.24,-108.29],[-207.1,-91.52],[-207.46,-49.73],[-198.16,-35],[-178.95,-23.98],[-154.78,-16.48],[-150.88,-13.94],[-137.51,-5.58]],"v":[[-133,17],[-128.28,15.07],[-125,13],[-123.5,12.01],[-122,11],[-120.5,10.01],[-119,9],[-114.89,6.11],[-111,4],[-107.59,1.29],[-105,-1],[-102.99,-1.51],[-101,-2],[-98.18,-4.39],[-95,-7],[-87.32,-11.33],[-82,-15],[-85.46,-18.63],[-90,-21],[-100.07,-32.81],[-105,-49],[-105.19,-61.43],[-105,-73],[-107.18,-89.36],[-112,-102],[-114.18,-104.94],[-116,-107],[-116.47,-108.56],[-117,-110],[-117.97,-110.54],[-119,-111],[-120.07,-112.01],[-121,-113],[-130.81,-118.34],[-142,-122],[-160.67,-126.45],[-179,-131],[-183.53,-132.38],[-188,-134],[-194.71,-137.9],[-200,-142],[-207.06,-148.17],[-213,-155],[-260,-189],[-304,-184],[-295,-163],[-284,-144],[-281,-141],[-276,-137],[-275,-135],[-246,-123],[-236,-120],[-226,-117],[-220,-111],[-214,-104],[-208,-55],[-202,-39],[-189,-29],[-156,-17],[-153,-15],[-146,-12]],"c":true}],"h":1},{"t":139,"s":[{"i":[[-82.4,-12.78],[-91,-22.31],[-101.09,-32.73],[-105.64,-50.55],[-105.47,-71.72],[-107.58,-90.12],[-112.87,-104.39],[-117.23,-109.5],[-120.31,-111.75],[-123.47,-114.41],[-125.35,-116.63],[-128.39,-118.09],[-132.68,-119.49],[-142.5,-122.88],[-155.7,-126.04],[-172.38,-129.68],[-189.63,-134.66],[-196.29,-138.6],[-199.39,-141.53],[-200.95,-142.39],[-202.59,-142.66],[-205.64,-145.57],[-208.94,-149.83],[-212.27,-153.28],[-215.33,-156.12],[-216.39,-157.95],[-216.66,-159.58],[-219.51,-162.67],[-223.81,-166.61],[-226.04,-169.59],[-227.39,-172.31],[-230.06,-174.94],[-233.14,-176.61],[-234.32,-177.51],[-234.83,-178.87],[-242.32,-183.66],[-255.44,-188.51],[-275.08,-189.69],[-302.65,-186.86],[-303.45,-176.49],[-295.7,-164.23],[-293.4,-159.8],[-291.02,-154.6],[-285.03,-145.5],[-276.34,-136.05],[-270.95,-132.58],[-268.36,-130.67],[-259.56,-127.12],[-247.07,-124.15],[-231.65,-119.36],[-218.72,-111.08],[-210.21,-78.57],[-207.86,-49.41],[-202.26,-40.45],[-195.39,-32.46],[-179.23,-26.39],[-153.6,-17.44],[-134.49,1.34],[-115.67,6.55],[-96.63,-5.91],[-91.38,-9.76]],"o":[[-86.46,-19.69],[-98.32,-28.83],[-105.15,-43.94],[-105.8,-64.44],[-106.39,-84.42],[-110.82,-100.11],[-116.33,-108.63],[-119.23,-111.06],[-122.8,-113.59],[-124.75,-115.93],[-127.05,-117.6],[-131.21,-119.04],[-138.15,-121.61],[-151.27,-125.09],[-166.06,-128.36],[-184.16,-132.84],[-195.09,-137.59],[-198.44,-140.58],[-200.4,-142.31],[-202.04,-142.57],[-204.42,-144.16],[-207.9,-148.41],[-211.11,-152.22],[-214.38,-155.23],[-216.31,-157.4],[-216.57,-159.04],[-218.11,-161.37],[-222.37,-165.29],[-225.59,-168.69],[-226.94,-171.4],[-228.99,-174.14],[-232.14,-176.18],[-234.15,-177.07],[-234.65,-178.41],[-238.35,-181.41],[-250.86,-187.21],[-264.76,-189.51],[-294.03,-188.37],[-305.35,-181.12],[-298.63,-168.05],[-294.15,-161.5],[-291.84,-156.35],[-287.61,-149.22],[-279.39,-138.92],[-271.77,-133.24],[-269.24,-131.29],[-263.53,-128.29],[-251.33,-125.04],[-237.04,-121.32],[-222.49,-114.24],[-208.31,-95.47],[-208.61,-56.62],[-205.02,-42.68],[-197.71,-35.52],[-186.94,-27.31],[-164.81,-21.62],[-138.52,-6.16],[-124.52,12.28],[-101.82,-2.32],[-91.67,-8.15],[-87.38,-12.33]],"v":[[-81,-17],[-94.66,-25.57],[-103,-38],[-105.72,-57.5],[-106,-79],[-109.2,-95.11],[-115,-107],[-118.23,-110.28],[-122,-113],[-124.11,-115.17],[-126,-117],[-129.8,-118.56],[-134,-120],[-146.89,-123.99],[-160,-127],[-178.27,-131.26],[-194,-137],[-197.36,-139.59],[-200,-142],[-201.49,-142.48],[-203,-143],[-206.77,-146.99],[-210,-151],[-213.33,-154.26],[-216,-157],[-216.48,-158.49],[-217,-160],[-220.94,-163.98],[-225,-168],[-226.49,-170.5],[-228,-173],[-231.1,-175.56],[-234,-177],[-234.49,-177.96],[-235,-179],[-246.59,-185.44],[-260,-189],[-284.56,-189.03],[-304,-184],[-301.04,-172.27],[-295,-163],[-292.62,-158.07],[-290,-153],[-282.21,-142.21],[-273,-134],[-270.1,-131.93],[-267,-130],[-255.45,-126.08],[-243,-123],[-227.07,-116.8],[-216,-107],[-209,-62],[-206,-45],[-200,-38],[-193,-31],[-172,-24],[-149,-14],[-133,18],[-107,1],[-92,-8],[-91,-10]],"c":true}],"h":1},{"t":140,"s":[{"i":[[-88.53,-10.31],[-88.81,-21.67],[-97.57,-28.36],[-105.47,-45.97],[-106.22,-72.62],[-108.63,-92.37],[-113.89,-105.42],[-118.02,-110.35],[-120.81,-112.46],[-122.32,-113.51],[-122.82,-114.88],[-124.74,-115.92],[-127.36,-116.71],[-128.32,-117.52],[-128.78,-118.89],[-134.31,-121.17],[-143.11,-123.22],[-152.2,-125.78],[-161.25,-128.39],[-170.45,-130.21],[-180.03,-132.01],[-190.75,-136.1],[-200.66,-142.08],[-205.4,-145.74],[-208.37,-147.98],[-213.16,-154.3],[-220.62,-161.93],[-223.68,-166.31],[-226.11,-168.99],[-230.1,-173.52],[-234.67,-178.12],[-237.86,-180.17],[-240.24,-181.53],[-250.11,-186.44],[-266.82,-189.97],[-282.63,-189.71],[-302.91,-186.38],[-304.04,-178.7],[-298.64,-168.1],[-290.48,-152.99],[-277.92,-137.22],[-272.68,-134.49],[-272.19,-133.12],[-269.18,-131.48],[-264.31,-129.51],[-251.97,-125.74],[-235.68,-122.2],[-219.87,-112.55],[-210.71,-93.95],[-209.48,-70.26],[-207.82,-48.23],[-204.79,-42.82],[-204.01,-42.01],[-199.26,-36.47],[-195.37,-33.25],[-193.51,-33.23],[-192.43,-31.23],[-188.61,-29.62],[-156.58,-20.82],[-133.96,2.23],[-115.93,6.72]],"o":[[-85.03,-19.74],[-95.08,-25.98],[-104.11,-38.16],[-106.52,-63.2],[-107.43,-87.16],[-111.86,-101.5],[-117.11,-109.37],[-119.87,-111.9],[-122.16,-113.07],[-122.65,-114.41],[-123.81,-115.56],[-126.51,-116.49],[-128.18,-117.08],[-128.62,-118.43],[-131.51,-120.32],[-140.11,-122.62],[-149.07,-124.83],[-158.29,-127.55],[-167.19,-129.71],[-176.88,-131.36],[-186.92,-134.31],[-197.62,-139.99],[-204.22,-145],[-207.48,-147.23],[-210.59,-151.59],[-218.17,-159.47],[-222.87,-165.32],[-225.29,-168.15],[-228.51,-171.71],[-233.18,-176.72],[-236.99,-179.66],[-239.48,-181.1],[-244.95,-184.45],[-261.04,-189.2],[-275.17,-190.02],[-296.49,-187.89],[-304.97,-181.9],[-300.88,-171.8],[-294.02,-159.38],[-282.43,-141.91],[-272.83,-134.92],[-272.36,-133.58],[-270.77,-132.22],[-265.95,-130.12],[-257.62,-126.89],[-240.99,-123.4],[-224.77,-117.07],[-212.85,-100.99],[-209.32,-78.39],[-208.73,-55.17],[-205.04,-43.07],[-204.27,-42.29],[-201.45,-39.34],[-195.68,-34.85],[-194.54,-32.69],[-192.64,-32.84],[-190.76,-30.33],[-173.36,-23.73],[-138.45,-6.02],[-124.88,13.57],[-97.76,-4.91]],"v":[[-80,-17],[-91.95,-23.82],[-100,-32],[-105.99,-54.59],[-107,-82],[-110.24,-96.93],[-116,-108],[-118.94,-111.12],[-122,-113],[-122.48,-113.96],[-123,-115],[-125.63,-116.2],[-128,-117],[-128.47,-117.98],[-129,-119],[-137.21,-121.9],[-146,-124],[-155.25,-126.67],[-164,-129],[-173.66,-130.79],[-183,-133],[-194.18,-138.04],[-203,-144],[-206.44,-146.48],[-209,-149],[-215.66,-156.89],[-222,-164],[-224.49,-167.23],[-227,-170],[-231.64,-175.12],[-236,-179],[-238.67,-180.64],[-241,-182],[-255.58,-187.82],[-272,-190],[-289.56,-188.8],[-304,-184],[-302.46,-175.25],[-297,-165],[-286.46,-147.45],[-273,-135],[-272.52,-134.03],[-272,-133],[-267.56,-130.8],[-263,-129],[-246.48,-124.57],[-231,-120],[-216.36,-106.77],[-210,-86],[-209.11,-62.72],[-205,-43],[-204.53,-42.55],[-204,-42],[-196,-35],[-195,-33],[-193,-33],[-192,-31],[-187,-29],[-147,-13],[-135,18],[-107,1]],"c":true}],"h":1},{"t":141,"s":[{"i":[[-135.41,8.74],[-125.53,13.2],[-112.49,4.51],[-103.23,-1.41],[-95.99,-6.06],[-87.71,-11.01],[-79.72,-16.57],[-82,-18.81],[-88.08,-22.05],[-91.92,-24.53],[-97.83,-29.53],[-100.44,-32.85],[-102.44,-35.88],[-107.2,-51.87],[-107.1,-77.71],[-108.84,-90.51],[-111.17,-96.88],[-113.77,-103.6],[-116.72,-109.55],[-119.56,-112.42],[-122.67,-114.78],[-126.44,-117.17],[-132.07,-120.15],[-147.93,-125.77],[-169.84,-130.12],[-184.09,-133.93],[-194.27,-137.54],[-199.33,-140.61],[-202.31,-143.48],[-203.95,-144.39],[-205.59,-144.66],[-212.25,-151.15],[-219.59,-161.14],[-226.28,-169.02],[-233.04,-176.27],[-235.92,-178.45],[-237.52,-178.66],[-238.69,-179.9],[-239.57,-181.72],[-248.97,-186.09],[-269.34,-189.97],[-287.02,-189.4],[-303.2,-185.76],[-303.33,-176.55],[-296.37,-163.65],[-283.9,-140.46],[-273.38,-134.25],[-266.41,-131.34],[-256.43,-126.94],[-236.7,-123.45],[-218.5,-110.5],[-213.2,-57.5],[-204.03,-42.03],[-203.63,-40.79],[-195.92,-35.11],[-179.04,-27.21],[-166.64,-22.59],[-154.85,-19.44],[-150.45,-15.34],[-147.8,-14.69],[-139.8,-6.39]],"o":[[-129.79,15.69],[-116.88,7.61],[-105.23,-0.13],[-98.61,-4.38],[-91.1,-9.23],[-82.02,-14.68],[-79.96,-17.78],[-86.06,-20.94],[-89.76,-23.02],[-95.96,-27.79],[-99.72,-31.91],[-101.8,-34.84],[-106.4,-43.76],[-107.55,-68.84],[-108.25,-88.32],[-110.3,-94.79],[-112.91,-101.32],[-115.67,-107.72],[-118.47,-111.53],[-121.66,-114.05],[-124.65,-116.09],[-130.15,-119.2],[-140.75,-123.96],[-162.47,-128.85],[-180.45,-132.91],[-190.99,-136.24],[-198.17,-139.63],[-201.4,-142.54],[-203.4,-144.31],[-205.04,-144.57],[-209.46,-147.83],[-217.32,-157.81],[-224.01,-166.38],[-230.79,-173.96],[-235.41,-178.37],[-236.97,-178.59],[-238.41,-179.29],[-239.27,-181.12],[-243.3,-184.1],[-261.99,-189.02],[-280.42,-190.02],[-298.41,-187.27],[-305.15,-181.47],[-298.94,-167.64],[-289.88,-152.21],[-273.67,-135.85],[-270.41,-132.32],[-259.61,-128.66],[-245.29,-123.88],[-224.36,-117.09],[-207.38,-90.49],[-205.05,-43.1],[-203.36,-41.33],[-200.55,-36.95],[-185.03,-29.24],[-168.77,-23.98],[-160.23,-20.27],[-150.57,-16.73],[-149.08,-14.31],[-143.01,-10.54],[-135.73,3.53]],"v":[[-135,18],[-121.21,10.4],[-107,1],[-100.92,-2.89],[-93,-8],[-84.86,-12.85],[-80,-18],[-84.03,-19.87],[-88,-22],[-93.94,-26.16],[-99,-31],[-101.12,-33.84],[-103,-37],[-107.37,-60.36],[-108,-86],[-109.57,-92.65],[-112,-99],[-114.72,-105.66],[-118,-111],[-120.61,-113.24],[-123,-115],[-128.29,-118.19],[-134,-121],[-155.2,-127.31],[-177,-132],[-187.54,-135.08],[-197,-139],[-200.36,-141.58],[-203,-144],[-204.49,-144.48],[-206,-145],[-214.79,-154.48],[-222,-164],[-228.54,-171.49],[-235,-178],[-236.45,-178.52],[-238,-179],[-238.98,-180.51],[-240,-182],[-255.48,-187.55],[-276,-190],[-292.71,-188.34],[-304,-184],[-301.14,-172.1],[-296,-163],[-274,-136],[-273,-134],[-263,-130],[-253,-126],[-230,-120],[-216,-106],[-205,-43],[-204,-42],[-203,-40],[-192,-33],[-172,-25],[-165,-22],[-151,-17],[-150,-15],[-147,-14],[-138,-2]],"c":true}],"h":1},{"t":142,"s":[{"i":[[-82.81,-13.61],[-84.77,-20.74],[-91.04,-24.58],[-94.74,-27.01],[-97.36,-28.35],[-98.42,-29.89],[-98.76,-31.7],[-99.92,-32.69],[-101.71,-33.56],[-103.22,-36.26],[-104.64,-40.05],[-107.84,-55.32],[-107.83,-80.11],[-112.22,-100.93],[-122.39,-115.13],[-133.27,-121.45],[-143.16,-124.93],[-158.37,-128.76],[-175.49,-132.4],[-186.88,-135.92],[-194.11,-139.05],[-200.68,-142.31],[-205.03,-145.21],[-211.73,-151.28],[-218.42,-157.94],[-222.38,-163.16],[-225.78,-167.57],[-229.31,-171.6],[-232.78,-174.45],[-234.31,-175.5],[-234.85,-176.88],[-239.53,-180.65],[-246.58,-185.07],[-258.02,-188.86],[-274.75,-190.74],[-288.3,-189.22],[-302.98,-186.23],[-304.32,-179.68],[-300.96,-172.03],[-293.18,-156.6],[-279.78,-139.16],[-274.68,-136.48],[-274.21,-135.12],[-264.69,-130.65],[-250.03,-126.13],[-243.68,-124.62],[-239.95,-124.33],[-237.38,-123.16],[-234.96,-121.42],[-229.31,-118.84],[-224.79,-115.65],[-219.03,-109.99],[-214.78,-103.36],[-211.17,-82.15],[-209.76,-51.68],[-185.75,-29.9],[-144.45,-16.42],[-136.94,2.08],[-135.88,13.96],[-121.04,10.27],[-99.73,-3.64]],"o":[[-82.24,-19.45],[-89.17,-23.3],[-93.81,-26.58],[-96.52,-27.89],[-98.28,-29.29],[-98.66,-31.09],[-99.32,-32.41],[-101.12,-33.26],[-102.65,-34.98],[-104.22,-38.79],[-107.42,-47.52],[-108.04,-71.62],[-110.02,-94.87],[-118.4,-111.06],[-130.19,-119.98],[-139.75,-123.92],[-152.62,-127.57],[-169.8,-131.18],[-184.08,-134.89],[-191.9,-138],[-198.91,-141.46],[-203.74,-144.19],[-209.27,-149.06],[-216.31,-155.72],[-221.24,-161.62],[-224.65,-166.13],[-228.18,-170.38],[-231.61,-173.64],[-234.14,-175.06],[-234.67,-176.41],[-237.24,-178.86],[-244.2,-183.75],[-252.89,-187.5],[-268.94,-190.48],[-282.81,-189.61],[-298.39,-187.53],[-304.84,-182.17],[-302.38,-174.61],[-297.04,-163.77],[-284.55,-144.29],[-274.82,-136.92],[-274.37,-135.58],[-269.67,-132.59],[-254.87,-127.42],[-244.95,-124.71],[-241.18,-124.43],[-238.15,-123.7],[-235.79,-122.02],[-231.17,-119.76],[-226.12,-116.78],[-220.89,-112.06],[-215.98,-105.64],[-211.29,-92.81],[-210.41,-61.59],[-199.77,-33.95],[-158.09,-21.14],[-137.75,-1.15],[-136,9.64],[-128.43,14.84],[-106.69,1.03],[-88.22,-11.09]],"v":[[-79,-18],[-86.97,-22.02],[-93,-26],[-95.63,-27.45],[-98,-29],[-98.54,-30.49],[-99,-32],[-100.52,-32.98],[-102,-34],[-103.72,-37.52],[-105,-41],[-107.94,-63.47],[-109,-88],[-115.31,-106],[-127,-118],[-136.51,-122.69],[-147,-126],[-164.08,-129.97],[-181,-134],[-189.39,-136.96],[-196,-140],[-202.21,-143.25],[-207,-147],[-214.02,-153.5],[-220,-160],[-223.52,-164.65],[-227,-169],[-230.46,-172.62],[-234,-175],[-234.49,-175.95],[-235,-177],[-241.86,-182.2],[-249,-186],[-263.48,-189.67],[-280,-190],[-293.34,-188.38],[-304,-184],[-303.35,-177.15],[-300,-170],[-288.87,-150.44],[-275,-137],[-274.52,-136.03],[-274,-135],[-259.78,-129.04],[-246,-125],[-242.43,-124.53],[-239,-124],[-236.58,-122.59],[-234,-121],[-227.72,-117.81],[-223,-114],[-217.5,-107.81],[-214,-101],[-210.79,-71.87],[-206,-45],[-171.92,-25.52],[-139,-4],[-136.47,5.86],[-136,19],[-113.87,5.65],[-93,-8]],"c":true}],"h":1},{"t":143,"s":[{"i":[[-79.75,-14.67],[-88.7,-23.2],[-99.25,-30.91],[-108.37,-55.63],[-109.22,-93.66],[-115.29,-106.36],[-117.5,-109.38],[-123.5,-115.77],[-134.32,-122.19],[-159.6,-129.83],[-190.71,-136.65],[-201.67,-142.64],[-205.18,-145.37],[-206.95,-146.39],[-208.59,-146.66],[-212.06,-149.88],[-216.41,-155.04],[-219.38,-159.06],[-223.32,-162.97],[-228.17,-169.69],[-235.8,-177.54],[-240.36,-180.48],[-243.73,-182.29],[-247.26,-184.21],[-250.65,-185.59],[-252.56,-186.52],[-253.74,-187.92],[-258.03,-188.94],[-265.01,-189.83],[-272.02,-190.36],[-280.29,-190.32],[-290.77,-188.96],[-303.39,-186.11],[-304.69,-180.64],[-301.09,-173.43],[-285.44,-142.25],[-275.37,-136.25],[-273.51,-136.23],[-272.42,-134.23],[-268.47,-132.63],[-239.36,-126.3],[-225.75,-116.61],[-220.26,-111.89],[-213.77,-100.23],[-212.26,-71.04],[-207.23,-46.28],[-201.26,-39.47],[-197.37,-36.25],[-195.51,-36.23],[-194.43,-34.23],[-190.42,-32.55],[-157.77,-23.68],[-145.28,-12.59],[-135.69,5.43],[-131.48,16.53],[-118.9,9.01],[-109.32,2.49],[-104.47,-0.06],[-101.24,-3.2],[-94.32,-6.47],[-90.3,-10.13]],"o":[[-84.08,-21.25],[-96.28,-28.03],[-107.76,-43.55],[-109.1,-80.69],[-114.54,-105.17],[-116.77,-108.46],[-120.59,-113.17],[-130.36,-120.28],[-148.74,-127.76],[-180.58,-134.28],[-200.33,-141.7],[-204.1,-144.47],[-206.4,-146.31],[-208.04,-146.57],[-210.36,-148.11],[-215.09,-153.35],[-217.97,-157.57],[-222.05,-161.76],[-225.77,-166.67],[-233.19,-175.13],[-239.25,-179.83],[-242.6,-181.71],[-246.19,-183.66],[-249.49,-185.17],[-252.19,-186.06],[-253.33,-187.45],[-255.77,-188.52],[-262.65,-189.6],[-269.38,-190.2],[-277.48,-190.42],[-285.83,-189.66],[-299.55,-187.19],[-305.14,-182.92],[-302.66,-175.89],[-294.32,-158.34],[-275.68,-137.85],[-274.54,-135.69],[-272.64,-135.84],[-271.06,-133.49],[-255.17,-126.93],[-227.28,-118.96],[-221.85,-113.02],[-216.85,-106.77],[-210.49,-86.5],[-210.45,-56.6],[-203.45,-42.34],[-197.68,-37.85],[-196.54,-35.69],[-194.64,-35.84],[-192.82,-33.36],[-174.49,-26.4],[-146.23,-13.42],[-138.07,-3.64],[-133.62,19.15],[-123.68,11.72],[-111.45,4.43],[-105.74,0.19],[-101.82,-1.75],[-97.65,-5.5],[-90.85,-8.76],[-85.01,-13.67]],"v":[[-78,-19],[-92.49,-25.62],[-102,-35],[-108.73,-68.16],[-114,-104],[-116.03,-107.41],[-118,-110],[-126.93,-118.03],[-139,-124],[-170.09,-132.06],[-199,-141],[-202.89,-143.55],[-206,-146],[-207.49,-146.48],[-209,-147],[-213.58,-151.61],[-217,-156],[-220.72,-160.41],[-224,-164],[-230.68,-172.41],[-238,-179],[-241.48,-181.09],[-245,-183],[-248.38,-184.69],[-252,-186],[-252.94,-186.98],[-254,-188],[-260.34,-189.27],[-267,-190],[-274.75,-190.39],[-283,-190],[-295.16,-188.08],[-304,-185],[-303.67,-178.26],[-300,-171],[-276,-138],[-275,-136],[-273,-136],[-272,-134],[-267,-132],[-229,-120],[-224,-115],[-219,-110],[-213,-97],[-211,-61],[-206,-45],[-198,-38],[-197,-36],[-195,-36],[-194,-34],[-189,-32],[-148,-15],[-144,-11],[-137,19],[-129,15],[-114,6],[-107,1],[-103,-1],[-100,-4],[-92,-8],[-89,-11]],"c":true}],"h":1},{"t":144,"s":[{"i":[[-79.79,-14.64],[-88.43,-24.05],[-98.92,-30.76],[-108.13,-48.92],[-109.24,-74.94],[-111.63,-94.43],[-116.95,-108.48],[-123.87,-116.19],[-133.28,-122.4],[-143.64,-126.45],[-154.42,-129.17],[-164.98,-131.63],[-175.59,-134.16],[-186.62,-136.7],[-196.97,-139.49],[-203.38,-143.08],[-207.72,-146.89],[-210.68,-149.34],[-213.29,-151.32],[-222.61,-161.76],[-235.04,-176.71],[-244.03,-182.54],[-251.3,-186.41],[-257.25,-188.3],[-264.66,-189.78],[-279.95,-190.29],[-302.77,-187.28],[-303.79,-176.09],[-295.5,-161.83],[-293.22,-157.59],[-290.84,-152.88],[-288.17,-149.95],[-285.89,-147.05],[-282.01,-142.69],[-277.85,-139.3],[-271.58,-135.09],[-264.86,-131.99],[-254.96,-128.77],[-245.37,-126.11],[-237.86,-123.79],[-231.79,-121.76],[-229.32,-119.54],[-226.7,-117.57],[-217.52,-107.63],[-212.57,-87.36],[-211.23,-64.45],[-207.81,-48.01],[-204.58,-44.08],[-204.34,-42.37],[-201,-39.4],[-194.98,-36.02],[-184.43,-31.09],[-171.3,-26.52],[-162.12,-23.53],[-154.96,-21.24],[-150.46,-17.99],[-147.08,-14.16],[-141.47,-8.5],[-137.86,8.33],[-108.31,1.69],[-91.19,-9.53]],"o":[[-83.97,-22.17],[-95.9,-28.35],[-106.51,-41.2],[-109.5,-65.79],[-110.41,-88.94],[-114.9,-104.2],[-121.23,-113.74],[-129.9,-120.52],[-140.18,-125.37],[-150.76,-128.36],[-161.43,-130.8],[-172.05,-133.31],[-182.88,-135.95],[-193.66,-138.46],[-201.77,-141.88],[-206.36,-145.58],[-209.78,-148.68],[-212.43,-150.66],[-218.58,-156.4],[-230.84,-171.91],[-241.63,-181.08],[-248.86,-185.2],[-254.92,-187.66],[-262.12,-189.36],[-271.31,-190.4],[-295.67,-188.73],[-305.8,-181.67],[-298.65,-166.17],[-294.05,-159.4],[-291.61,-154.33],[-288.97,-150.93],[-286.63,-148.02],[-283.33,-144.04],[-279.27,-140.32],[-273.65,-136.35],[-267.19,-132.91],[-258.28,-129.72],[-248.51,-126.97],[-240.21,-124.41],[-233.65,-122.46],[-230.22,-120.25],[-227.56,-118.2],[-220.73,-112.7],[-213.44,-94.96],[-211.58,-71.19],[-209.35,-52.86],[-204.66,-44.64],[-204.42,-42.94],[-202.76,-40.64],[-197.11,-37.09],[-188.78,-32.83],[-175.69,-27.94],[-164.64,-24.16],[-157.28,-22.07],[-151.67,-19.16],[-148.17,-15.49],[-143.21,-10.01],[-137.14,1.79],[-123.01,11.35],[-92.88,-7.95],[-85.01,-13.67]],"v":[[-78,-19],[-92.16,-26.2],[-102,-35],[-108.81,-57.35],[-110,-84],[-113.27,-99.32],[-119,-111],[-126.89,-118.35],[-137,-124],[-147.2,-127.4],[-158,-130],[-168.52,-132.47],[-179,-135],[-190.14,-137.58],[-200,-141],[-204.87,-144.33],[-209,-148],[-211.55,-150],[-214,-152],[-226.72,-166.84],[-240,-180],[-246.44,-183.87],[-253,-187],[-259.68,-188.83],[-267,-190],[-287.81,-189.51],[-304,-185],[-301.22,-171.13],[-295,-161],[-292.42,-155.96],[-290,-152],[-287.4,-148.98],[-285,-146],[-280.64,-141.5],[-276,-138],[-269.38,-134],[-262,-131],[-251.74,-127.87],[-242,-125],[-235.75,-123.13],[-231,-121],[-228.44,-118.87],[-226,-117],[-215.48,-101.3],[-212,-78],[-210.29,-58.65],[-205,-45],[-204.5,-43.51],[-204,-42],[-199.05,-38.24],[-193,-35],[-180.06,-29.52],[-167,-25],[-159.7,-22.8],[-153,-20],[-149.31,-16.74],[-146,-13],[-140,-5],[-136,20],[-96,-6],[-89,-11]],"c":true}],"h":1},{"t":145,"s":[{"i":[[-77.4,-16.4],[-84.63,-22.57],[-92.57,-27.26],[-97.18,-30.34],[-100.29,-32.21],[-101.42,-33.92],[-101.75,-35.67],[-102.65,-36.64],[-103.7,-37.5],[-109.19,-52.28],[-110.17,-78.18],[-112.69,-96.63],[-118.01,-109.56],[-122.02,-114.35],[-124.81,-116.46],[-126.32,-117.51],[-126.83,-118.88],[-134.9,-123.6],[-148.32,-127.8],[-160.25,-130.82],[-170.73,-133.28],[-181.15,-135.4],[-191.83,-137.76],[-197.61,-140.35],[-201.58,-143.18],[-204.53,-144.62],[-207.27,-145.5],[-208.36,-146.55],[-208.8,-147.81],[-209.92,-148.43],[-211.59,-148.66],[-214.19,-150.97],[-217.57,-154.44],[-218.37,-155.94],[-218.67,-157.63],[-224.43,-163.82],[-232.35,-171.44],[-237.5,-176.72],[-241.36,-180.91],[-244.34,-182.63],[-247.11,-183.54],[-253.28,-186.66],[-262.37,-189.63],[-280.3,-190.41],[-302.83,-187.22],[-304.57,-179.72],[-301.2,-172.53],[-296.6,-161.87],[-289.04,-150.58],[-282.69,-143.25],[-278.12,-139.42],[-270.69,-134.93],[-262.38,-132.05],[-251.72,-128.09],[-240.68,-125.55],[-214.8,-106.08],[-213.37,-58],[-158.17,-31.47],[-137.29,4.12],[-116.96,7.38],[-91.34,-9.16]],"o":[[-81.35,-21.18],[-90.25,-25.61],[-96.03,-29.74],[-99.31,-31.58],[-101.3,-33.34],[-101.65,-35.09],[-102.3,-36.39],[-103.35,-37.2],[-107.86,-44.44],[-110.35,-69.15],[-111.43,-91.6],[-115.98,-105.61],[-121.11,-113.37],[-123.87,-115.9],[-126.15,-117.07],[-126.65,-118.41],[-130.74,-121.7],[-143.69,-126.65],[-156.64,-129.93],[-167.3,-132.5],[-177.49,-134.77],[-188.33,-136.89],[-196.32,-139.52],[-200.24,-142.18],[-203.64,-144.37],[-206.34,-145.19],[-208.21,-146.14],[-208.65,-147.39],[-209.38,-148.35],[-211.03,-148.58],[-212.9,-149.75],[-216.52,-153.31],[-218.29,-155.38],[-218.57,-157.07],[-221.76,-161.1],[-229.73,-168.99],[-236.31,-175.27],[-240.02,-179.54],[-243.54,-182.36],[-246.13,-183.22],[-250.6,-185.34],[-259.17,-188.8],[-271.38,-190.55],[-296.02,-188.74],[-305.22,-182.7],[-302.56,-174.63],[-298.83,-166.33],[-291.7,-154],[-284.13,-144.79],[-279.69,-140.57],[-273.25,-136.16],[-265.25,-132.88],[-255.07,-129.78],[-244.37,-125.93],[-222.27,-117.82],[-211.62,-74.14],[-196.99,-27.52],[-138.6,-4.58],[-127.01,14.85],[-98.94,-4.16],[-81.86,-15.41]],"v":[[-77,-20],[-87.44,-24.09],[-95,-29],[-98.24,-30.96],[-101,-33],[-101.54,-34.5],[-102,-36],[-103,-36.92],[-104,-38],[-109.77,-60.72],[-111,-87],[-114.33,-101.12],[-120,-112],[-122.94,-115.12],[-126,-117],[-126.49,-117.96],[-127,-119],[-139.3,-125.12],[-153,-129],[-163.77,-131.66],[-174,-134],[-184.74,-136.15],[-195,-139],[-198.92,-141.27],[-203,-144],[-205.43,-144.9],[-208,-146],[-208.51,-146.97],[-209,-148],[-210.48,-148.51],[-212,-149],[-215.35,-152.14],[-218,-155],[-218.47,-156.51],[-219,-158],[-227.08,-166.41],[-235,-174],[-238.76,-178.13],[-243,-182],[-245.23,-182.92],[-248,-184],[-256.23,-187.73],[-266,-190],[-288.16,-189.58],[-304,-185],[-303.57,-177.17],[-301,-172],[-294.15,-157.94],[-286,-147],[-281.19,-141.91],[-276,-138],[-267.97,-133.9],[-259,-131],[-248,-127],[-237,-124],[-213,-88],[-208,-48],[-144,-12],[-138,20],[-107,1],[-84,-14]],"c":true}],"h":1},{"t":146,"s":[{"i":[[-80.23,-15.55],[-88.6,-25.03],[-103.05,-35.56],[-110.47,-55.59],[-110.91,-81.68],[-114.64,-101.22],[-122.28,-114.4],[-125.64,-117.42],[-126.59,-117.68],[-128.87,-119.81],[-131.32,-122.62],[-134.18,-123.87],[-138.08,-124.72],[-139.56,-125.51],[-140.74,-126.91],[-160.25,-132.08],[-190.17,-137.7],[-199.68,-141.65],[-202.38,-142.68],[-204.08,-143.89],[-205.38,-145.59],[-207.87,-146.88],[-210.49,-147.61],[-215.36,-152.03],[-221.16,-159.01],[-226.25,-164.49],[-230.82,-169.54],[-232.98,-172.36],[-234.41,-174.42],[-235.91,-175.47],[-237.52,-175.66],[-238.71,-176.88],[-239.59,-178.67],[-241.48,-180.01],[-243.32,-180.69],[-244.32,-181.51],[-244.8,-182.88],[-248.11,-184.6],[-253.3,-186.39],[-264.24,-189.73],[-280.92,-190.73],[-295.57,-188.79],[-303.39,-184.88],[-297.5,-163.62],[-285.45,-144.74],[-278.29,-139.79],[-275.69,-137.4],[-252.97,-130.36],[-232.88,-122.84],[-229.85,-120.81],[-219.55,-110.82],[-215.01,-65.96],[-208.26,-50.51],[-207.83,-47.2],[-200.68,-40.2],[-179.32,-31.19],[-157.26,-24.16],[-154.18,-21.7],[-137.9,-1.05],[-117.41,7.67],[-96.39,-5.54]],"o":[[-82.57,-22.5],[-98.84,-31.56],[-109.52,-47.5],[-111.17,-72.68],[-112.75,-95.77],[-119.41,-110.53],[-125.34,-117.33],[-126.26,-117.59],[-127.96,-118.75],[-130.55,-121.74],[-132.89,-123.51],[-136.77,-124.47],[-139.19,-125.06],[-140.34,-126.43],[-149.92,-130.24],[-180.38,-135.81],[-198.74,-141.31],[-201.5,-142.33],[-203.64,-143.34],[-204.95,-145.01],[-206.87,-146.57],[-209.68,-147.39],[-213.28,-149.78],[-219.3,-156.65],[-224.59,-162.72],[-229.36,-167.9],[-232.53,-171.65],[-233.92,-173.75],[-235.4,-175.38],[-236.97,-175.61],[-238.42,-176.29],[-239.3,-178.07],[-240.81,-179.66],[-242.73,-180.52],[-244.17,-181.08],[-244.64,-182.42],[-246.46,-183.91],[-251.53,-185.85],[-259.54,-188.61],[-274.94,-190.79],[-291.88,-189.6],[-301.33,-186.43],[-305.99,-176.89],[-292.39,-154.7],[-279.1,-140.83],[-276.12,-138.46],[-265.54,-131.45],[-240.24,-126.07],[-231.16,-121.2],[-223.95,-115.16],[-211.58,-89.52],[-209.85,-51.59],[-207.31,-48.66],[-205.22,-43.42],[-188.75,-33.06],[-165.33,-26.4],[-154.15,-21.18],[-140.24,-13.42],[-127.89,15.13],[-101.61,-2.45],[-85.92,-12.26]],"v":[[-76,-20],[-93.72,-28.29],[-106,-41],[-110.82,-64.13],[-112,-90],[-117.03,-105.87],[-125,-117],[-125.95,-117.5],[-127,-118],[-129.71,-120.78],[-132,-123],[-135.48,-124.17],[-139,-125],[-139.95,-125.97],[-141,-127],[-170.32,-133.95],[-198,-141],[-200.59,-141.99],[-203,-143],[-204.52,-144.45],[-206,-146],[-208.78,-147.13],[-211,-148],[-217.33,-154.34],[-223,-161],[-227.8,-166.19],[-232,-171],[-233.45,-173.06],[-235,-175],[-236.44,-175.54],[-238,-176],[-239.01,-177.47],[-240,-179],[-242.1,-180.27],[-244,-181],[-244.48,-181.97],[-245,-183],[-249.82,-185.22],[-255,-187],[-269.59,-190.26],[-288,-190],[-298.45,-187.61],[-304,-183],[-296,-161],[-281,-142],[-277,-139],[-275,-137],[-243,-127],[-232,-122],[-229,-120],[-217,-104],[-210,-52],[-208,-50],[-207,-46],[-197,-38],[-170,-28],[-155,-22],[-153,-21],[-139,21],[-107,1],[-91,-9]],"c":true}],"h":1},{"t":147,"s":[{"i":[[-76.06,-17.14],[-79.69,-22.24],[-85.45,-24.26],[-90.07,-26.52],[-95.52,-29.53],[-101.16,-34.87],[-107.79,-43.42],[-112.01,-62.78],[-112.6,-88.03],[-115.84,-102.11],[-119.61,-109.93],[-121.76,-113.46],[-122.58,-115.53],[-125.01,-117.58],[-129.47,-120.49],[-130.64,-121.47],[-131.46,-121.65],[-133.12,-123.01],[-134.72,-124.85],[-139.86,-127.05],[-148.21,-129.23],[-163.01,-132.95],[-180.46,-136.58],[-192.03,-139.4],[-200.58,-141.76],[-206.74,-145.46],[-211.82,-150.05],[-214.47,-151.84],[-216.48,-152.52],[-218.76,-154.89],[-221.15,-158.03],[-223.98,-161.05],[-227.08,-163.95],[-231.55,-169.49],[-236.88,-176.27],[-239.58,-178.11],[-240.77,-177.89],[-241.65,-179.75],[-251.63,-186.11],[-288.42,-190.77],[-302.76,-186.03],[-299.79,-168.1],[-287.53,-146.67],[-271.01,-135.52],[-245.97,-128.52],[-215.58,-105.01],[-214.18,-62.74],[-205.31,-44.75],[-192.96,-36.51],[-156.44,-26.66],[-137.04,4.08],[-137.52,19.85],[-132.5,17.91],[-129.15,14.75],[-124.29,12.83],[-121.08,9.7],[-116.37,7.86],[-114.45,5.34],[-111.71,4.45],[-94.23,-7.68],[-84.07,-14.3]],"o":[[-77.47,-21.6],[-83.68,-23.56],[-88.06,-25.5],[-93.8,-28.54],[-98.52,-32.41],[-105.8,-40.38],[-111.46,-54.27],[-112.58,-79.67],[-114.78,-98.9],[-118.26,-107.63],[-121.47,-112.7],[-122.31,-114.88],[-123.53,-116.58],[-127.98,-119.53],[-130.41,-121.39],[-131.16,-121.6],[-132.52,-122.33],[-134.23,-124.27],[-137.25,-126.18],[-145.34,-128.57],[-157.03,-131.66],[-174.73,-135.41],[-188.99,-138.77],[-197.83,-140.9],[-204.83,-143.94],[-210.23,-148.52],[-213.73,-151.58],[-215.85,-152.31],[-217.94,-153.87],[-220.37,-156.97],[-222.94,-160.07],[-226.05,-162.99],[-229.86,-167.1],[-235.06,-174.07],[-239.19,-178.16],[-240.36,-177.97],[-241.31,-178.14],[-247.21,-183.74],[-267.82,-190.92],[-301.03,-186.7],[-306.1,-177.89],[-294.05,-158.18],[-276.39,-139.28],[-254.76,-129.68],[-222.15,-118],[-213.15,-74.29],[-209.48,-49.83],[-199.14,-40.09],[-173.87,-29.23],[-140.4,-8.55],[-137.65,22.32],[-134.29,18.05],[-129.66,16.18],[-126.48,13],[-121.96,11.33],[-118.37,7.94],[-114.57,6.73],[-113.21,4.41],[-103.02,-1.08],[-85.12,-13.12],[-80.36,-16.71]],"v":[[-75,-21],[-81.68,-22.9],[-87,-25],[-91.93,-27.53],[-96,-30],[-103.48,-37.62],[-109,-47],[-112.29,-71.22],[-114,-95],[-117.05,-104.87],[-121,-112],[-122.03,-114.17],[-123,-116],[-126.5,-118.55],[-130,-121],[-130.9,-121.53],[-132,-122],[-133.68,-123.64],[-135,-125],[-142.6,-127.81],[-151,-130],[-168.87,-134.18],[-186,-138],[-194.93,-140.15],[-203,-143],[-208.49,-146.99],[-213,-151],[-215.16,-152.08],[-217,-153],[-219.57,-155.93],[-222,-159],[-225.02,-162.02],[-228,-165],[-233.3,-171.78],[-239,-178],[-239.97,-178.04],[-241,-178],[-242,-180],[-258,-188],[-297,-188],[-304,-183],[-298,-165],[-282,-143],[-264,-133],[-238,-125],[-214,-85],[-211,-54],[-203,-43],[-189,-35],[-147,-16],[-140,21],[-136,19],[-131,17],[-128,14],[-123,12],[-120,9],[-115,7],[-114,5],[-111,4],[-87,-12],[-83,-15]],"c":true}],"h":1},{"t":148,"s":[{"i":[[-84.01,-13.11],[-82.95,-24.32],[-92.47,-28.4],[-98.39,-32.38],[-102.38,-36.63],[-103.51,-38.32],[-104.88,-38.83],[-111.46,-56.26],[-112.92,-89.11],[-116.95,-104.22],[-120.82,-111.24],[-127.41,-119.48],[-138.13,-126.45],[-166.23,-134.13],[-203.77,-142.27],[-211.92,-149.43],[-213.59,-149.66],[-220.99,-156.77],[-230.04,-167.87],[-236.34,-174.38],[-241.77,-179.18],[-244.86,-181.17],[-247.24,-182.53],[-248.63,-183.6],[-249.65,-184.82],[-264.07,-189.49],[-292.11,-190.2],[-304.48,-183.71],[-302.54,-174.63],[-298.98,-166.62],[-296.04,-161.68],[-294.57,-158.97],[-294.25,-157.41],[-289.42,-150.61],[-280.53,-142.14],[-277.68,-140.49],[-277.19,-139.12],[-272.63,-136.92],[-265.37,-134.63],[-263.22,-133.69],[-261.76,-133.25],[-252.76,-130.31],[-240.81,-126.23],[-234.7,-123.53],[-231.85,-121.79],[-230.08,-120.57],[-228.41,-120.34],[-225.91,-117.84],[-224.34,-114.76],[-223.49,-113.68],[-222.12,-113.19],[-221.22,-111.63],[-220.24,-109.5],[-214.95,-87.25],[-211.9,-52.45],[-195.58,-38.21],[-155.3,-27.79],[-139.28,3.48],[-135.21,18.37],[-129.65,16.03],[-114.12,5.56]],"o":[[-78.97,-22.87],[-89.7,-27.09],[-96.69,-31.07],[-101.23,-35.16],[-103.07,-38.15],[-104.41,-38.65],[-110,-45.95],[-112.92,-77.84],[-115.78,-101.35],[-119.47,-109.17],[-124.34,-116.5],[-134.31,-124.45],[-152.6,-132.24],[-191.82,-139.14],[-211.38,-149.35],[-213.03,-149.58],[-217.72,-153.09],[-227.15,-164.16],[-234.45,-172.54],[-239.99,-177.7],[-243.99,-180.66],[-246.48,-182.1],[-248.3,-183.19],[-249.3,-184.41],[-255.01,-187.64],[-282.61,-190.77],[-302.96,-186.15],[-304.26,-177.95],[-299.95,-168.53],[-297.02,-163.19],[-294.7,-159.51],[-294.35,-157.92],[-292.16,-154.03],[-283.61,-144.66],[-277.83,-140.93],[-277.36,-139.58],[-275.2,-137.86],[-267.72,-135.31],[-263.59,-133.81],[-262.3,-133.41],[-257.1,-131.7],[-244.61,-127.58],[-236.02,-124.14],[-232.61,-122.36],[-230.62,-120.65],[-228.97,-120.42],[-226.74,-118.95],[-224.71,-115.74],[-223.92,-113.83],[-222.58,-113.36],[-221.6,-112.38],[-220.55,-110.19],[-215.5,-99.77],[-213.15,-63.59],[-202.08,-41.71],[-173.77,-29.59],[-139.96,-6.7],[-136.78,22.09],[-131.62,16.15],[-120.76,10.45],[-95.6,-6.3]],"v":[[-74,-21],[-86.33,-25.7],[-95,-30],[-99.81,-33.77],[-103,-38],[-103.96,-38.49],[-105,-39],[-112.19,-67.05],[-115,-98],[-118.21,-106.69],[-122,-113],[-130.86,-121.97],[-142,-128],[-179.03,-136.63],[-211,-149],[-212.47,-149.51],[-214,-150],[-224.07,-160.47],[-233,-171],[-238.17,-176.04],[-243,-180],[-245.67,-181.64],[-248,-183],[-248.96,-184],[-250,-185],[-273.34,-190.13],[-298,-188],[-304.37,-180.83],[-301,-171],[-298,-164.91],[-295,-160],[-294.46,-158.44],[-294,-157],[-286.52,-147.63],[-278,-141],[-277.52,-140.03],[-277,-139],[-270.17,-136.12],[-264,-134],[-262.76,-133.55],[-261,-133],[-248.69,-128.95],[-238,-125],[-233.65,-122.95],[-231,-121],[-229.53,-120.49],[-228,-120],[-225.31,-116.79],[-224,-114],[-223.04,-113.52],[-222,-113],[-220.89,-110.91],[-220,-109],[-214.05,-75.42],[-206,-46],[-190,-36],[-146,-15],[-140,21],[-133,17],[-128,15],[-107,1]],"c":true}],"h":1},{"t":149,"s":[{"i":[[-73.39,-18.62],[-81.32,-24.47],[-90.61,-27.64],[-94.27,-30.09],[-96.12,-32.36],[-98,-33.43],[-99.6,-33.7],[-103.53,-37.27],[-108.01,-43.82],[-113.65,-67.31],[-115.12,-102.01],[-120.8,-111.94],[-122.53,-113.34],[-123.68,-115.31],[-124.66,-117.63],[-129.25,-121.76],[-138.01,-126.71],[-165.39,-134.82],[-203.82,-142.88],[-213.93,-150.49],[-216.31,-152.43],[-217.95,-153.64],[-219.6,-154.63],[-222.93,-158.26],[-226.67,-163.54],[-235.3,-172.69],[-247.8,-182.95],[-253.76,-186.05],[-256.27,-187.75],[-265.33,-189.75],[-279.38,-190.18],[-291.73,-189.39],[-302.8,-185.94],[-303.74,-175.43],[-297.19,-161.94],[-290.6,-152.23],[-281.21,-142.33],[-268.33,-135.76],[-251.86,-130.96],[-242.2,-127.79],[-236.25,-125.69],[-234.66,-124.47],[-234.2,-123.15],[-231.76,-122.55],[-230.5,-120.38],[-227.79,-119.8],[-225.58,-116.78],[-218.25,-104.53],[-216.73,-65.6],[-209.34,-51.55],[-185.45,-36.04],[-167.12,-28.85],[-159.98,-27.07],[-157.4,-24.3],[-154.76,-23.55],[-144.93,-14.78],[-140.57,10.17],[-118,8.04],[-92.11,-9.27],[-82.27,-14.15],[-80.47,-16.64]],"o":[[-77.77,-23.4],[-87.74,-26.59],[-93.71,-29.41],[-95.48,-31.56],[-97.45,-33.33],[-99.08,-33.61],[-101.77,-35.35],[-106.65,-41.5],[-113.34,-55.55],[-114.54,-90.54],[-120.28,-111.52],[-121.92,-112.85],[-123.35,-114.49],[-124.34,-116.88],[-126.75,-119.91],[-134.88,-125.16],[-151.73,-132.64],[-191.43,-139.94],[-213.03,-149.77],[-215.57,-151.82],[-217.39,-153.32],[-219.05,-154.3],[-221.6,-156.49],[-225.47,-161.79],[-231.4,-168.71],[-243.5,-179.81],[-252.87,-185.42],[-255.45,-187.21],[-260.39,-189.16],[-274.83,-190.26],[-286.83,-189.67],[-299.71,-187.52],[-305.14,-180.21],[-299.76,-166.3],[-293.74,-156.32],[-284.34,-145.24],[-273.65,-137.78],[-257.44,-132.35],[-244.32,-128.44],[-238.16,-126.41],[-234.81,-124.9],[-234.35,-123.6],[-233.15,-122.36],[-230.53,-121.66],[-229.04,-119.28],[-226.28,-118.28],[-221.35,-111.11],[-213.68,-84.26],[-210.78,-52.52],[-201.31,-38.63],[-168.87,-30.26],[-162.49,-26.99],[-157.63,-25.8],[-156.16,-23.37],[-149.13,-19.48],[-139.21,-0.64],[-129.02,16.08],[-99.74,-3.65],[-84.59,-13.86],[-80.55,-15.3],[-77.63,-18.78]],"v":[[-74,-22],[-84.53,-25.53],[-93,-29],[-94.88,-30.82],[-97,-33],[-98.54,-33.52],[-100,-34],[-105.09,-39.38],[-109,-46],[-114.09,-78.92],[-120,-111],[-121.36,-112.4],[-123,-114],[-124.01,-116.09],[-125,-118],[-132.07,-123.46],[-141,-128],[-178.41,-137.38],[-212,-149],[-214.75,-151.15],[-217,-153],[-218.5,-153.97],[-220,-155],[-224.2,-160.02],[-228,-165],[-239.4,-176.25],[-252,-185],[-254.6,-186.63],[-257,-188],[-270.08,-190],[-282,-190],[-295.72,-188.46],[-304,-183],[-301.75,-170.86],[-296,-160],[-287.47,-148.74],[-279,-141],[-262.88,-134.05],[-246,-129],[-240.18,-127.1],[-235,-125],[-234.51,-124.03],[-234,-123],[-231,-122],[-230,-120],[-227,-119],[-225,-116],[-217,-99],[-211,-53],[-209,-51],[-171,-31],[-165,-28],[-158,-26],[-157,-24],[-154,-23],[-143,-10],[-141,22],[-107,1],[-86,-13],[-81,-15],[-80,-17]],"c":true}],"h":1},{"t":150,"s":[{"i":[[-77.69,-16.84],[-78.54,-24.17],[-85.27,-26.22],[-90.6,-28.71],[-97.31,-32.34],[-100.9,-35.62],[-104.92,-39.51],[-113.54,-62.88],[-115.4,-101.92],[-122.58,-113.93],[-125.6,-116.46],[-126.41,-118.03],[-126.6,-119.6],[-127.59,-120.38],[-128.76,-120.85],[-129.8,-121.66],[-130.6,-122.71],[-142.1,-129.3],[-162.25,-134.49],[-186.47,-139.33],[-208.22,-146.49],[-218.64,-154.49],[-225.56,-161.43],[-228.95,-164.71],[-230.6,-165.58],[-231.73,-167.22],[-232.52,-169.46],[-236.32,-173.23],[-241.42,-176.81],[-243.37,-178.57],[-243.78,-179.8],[-244.91,-180.46],[-246.52,-180.66],[-249.85,-183.29],[-253.65,-186.43],[-263.77,-189.32],[-280.37,-190.3],[-293.01,-189.33],[-302.8,-185.92],[-303.89,-175.63],[-297.35,-163.23],[-290.28,-152.19],[-281.41,-143.04],[-274.94,-139.3],[-270.85,-137.67],[-267.1,-136.25],[-264.88,-135.3],[-249.36,-130.5],[-235.53,-125.69],[-231.78,-121.67],[-227.81,-119.88],[-226.4,-116.58],[-225.13,-115.14],[-223.81,-112.85],[-222.7,-111.18],[-219.13,-61.95],[-207.67,-47.72],[-203.01,-44.3],[-160.99,-32.54],[-139.78,1.92],[-106.47,0.53]],"o":[[-75.91,-23.31],[-83.22,-25.63],[-88.2,-27.54],[-95.16,-31.11],[-99.43,-34.37],[-103.64,-38.19],[-112.59,-50.17],[-114.95,-88.76],[-121.53,-112.95],[-124.61,-115.69],[-126.36,-117.48],[-126.53,-119.09],[-127.21,-120.2],[-128.36,-120.71],[-129.5,-121.31],[-130.35,-122.36],[-136.23,-126.81],[-155.11,-133.14],[-178.11,-137.58],[-201.52,-143.79],[-216.1,-152.28],[-223.37,-159.07],[-228.4,-164.42],[-230.05,-165.29],[-231.47,-166.49],[-232.26,-168.71],[-234.61,-171.82],[-239.72,-175.72],[-243.22,-178.17],[-243.65,-179.38],[-244.4,-180.38],[-245.97,-180.6],[-248.52,-182.07],[-252.42,-185.46],[-258.34,-188.42],[-274.79,-190.26],[-288.61,-189.62],[-300.11,-187.48],[-305.22,-180.02],[-299.96,-167.23],[-293.08,-156.17],[-284.45,-145.62],[-276.26,-139.96],[-272.23,-138.15],[-267.91,-136.6],[-265.58,-135.6],[-256.58,-132.5],[-239.7,-126.7],[-232.18,-123.45],[-229.67,-119.86],[-226.46,-118.42],[-225.96,-115.94],[-224.2,-114.16],[-222.18,-111.15],[-212.91,-94.7],[-207.34,-49.29],[-205.63,-45.54],[-185.13,-32.75],[-140.81,-9.75],[-123.96,12.69],[-84.19,-13.72]],"v":[[-73,-22],[-80.88,-24.9],[-87,-27],[-92.88,-29.91],[-98,-33],[-102.27,-36.91],[-106,-41],[-114.24,-75.82],[-121,-112],[-123.59,-114.81],[-126,-117],[-126.47,-118.56],[-127,-120],[-127.98,-120.54],[-129,-121],[-130.07,-122.01],[-131,-123],[-148.61,-131.22],[-170,-136],[-194,-141.56],[-213,-150],[-221,-156.78],[-228,-164],[-229.5,-165],[-231,-166],[-231.99,-167.96],[-233,-170],[-238.02,-174.47],[-243,-178],[-243.51,-178.97],[-244,-180],[-245.44,-180.53],[-247,-181],[-251.13,-184.37],[-255,-187],[-269.28,-189.79],[-284,-190],[-296.56,-188.4],[-304,-183],[-301.93,-171.43],[-296,-161],[-287.36,-148.9],[-278,-141],[-273.58,-138.73],[-269,-137],[-266.34,-135.92],[-264,-135],[-243,-128],[-233,-124],[-231,-121],[-227,-119],[-226,-116],[-225,-115],[-223,-112],[-222,-110],[-208,-50],[-207,-47],[-201,-43],[-149,-19],[-142,23],[-90,-10]],"c":true}],"h":1},{"t":151,"s":[{"i":[[-71.75,-20.84],[-83.2,-26.52],[-95.04,-31.79],[-101.14,-36.33],[-104.82,-39.57],[-112.25,-52.34],[-114.48,-73.85],[-116.01,-91.48],[-118.92,-104.18],[-121.02,-110.01],[-122.45,-114.14],[-123.85,-115.71],[-125.67,-116.62],[-127.69,-119.36],[-128.91,-121.33],[-131.63,-123.14],[-133.36,-124.6],[-134.76,-125.67],[-135.66,-126.81],[-153.11,-133.69],[-183.27,-138.81],[-198.83,-142.83],[-209.76,-146.81],[-211.64,-148.46],[-212.48,-148.65],[-214.92,-150.64],[-217.37,-153.46],[-219.4,-154.84],[-221.52,-155.58],[-229.17,-163.46],[-238.56,-175.1],[-244.3,-178.46],[-246.2,-180.4],[-268.52,-191.56],[-301.79,-188.63],[-300.36,-168.62],[-294.07,-156.78],[-284.37,-146.08],[-271.24,-138.08],[-246.83,-130.46],[-235.47,-125.01],[-225.24,-115.94],[-217.45,-78.89],[-212.27,-54.35],[-201.83,-43.45],[-158.55,-32.29],[-140.38,5.68],[-136.82,19.77],[-130.63,16.99],[-126.41,12.91],[-121.29,10.82],[-119.45,8.34],[-116.7,7.44],[-109.95,2.89],[-104.48,-1.1],[-99.39,-3.1],[-97.46,-5.66],[-94.73,-6.5],[-89.2,-11.1],[-85.7,-12.56],[-78.67,-17.12]],"o":[[-78.18,-24.88],[-91.63,-29.98],[-99.73,-35.3],[-103.68,-38.47],[-110.26,-46.16],[-114.36,-66.18],[-115.3,-86.64],[-117.82,-100.25],[-120.55,-108.44],[-121.97,-112.86],[-123.26,-115.41],[-125.05,-116.32],[-127.23,-118.44],[-128.53,-120.8],[-130.95,-122.59],[-132.83,-124.15],[-134.43,-125.27],[-135.38,-126.44],[-143.48,-131.28],[-173.01,-137.46],[-194.7,-141.68],[-206.36,-145.4],[-211.4,-148.38],[-212.18,-148.59],[-213.99,-149.66],[-216.61,-152.54],[-218.64,-154.55],[-220.84,-155.35],[-225.89,-159.41],[-235.5,-171.3],[-242.74,-178.62],[-245.69,-179.52],[-255.08,-187.04],[-291.58,-190.6],[-306.69,-176.13],[-295.31,-160.18],[-287.99,-148.61],[-275.04,-139.51],[-257.43,-133.48],[-236.7,-126.19],[-228.78,-119.56],[-216.09,-99.85],[-212.92,-59.34],[-207.49,-47.29],[-180.02,-32.4],[-141.8,-9.6],[-139.03,23.12],[-132.62,17.14],[-127.52,15.1],[-123.62,11.11],[-119.57,9.72],[-118.22,7.42],[-112.95,5.1],[-105.56,0.08],[-101.67,-2.81],[-97.56,-4.28],[-96.19,-6.61],[-91.82,-8.47],[-87.23,-12.58],[-81.54,-15.15],[-74.69,-19.92]],"v":[[-72,-23],[-87.42,-28.25],[-98,-34],[-102.41,-37.4],[-106,-41],[-113.3,-59.26],[-115,-82],[-116.92,-95.86],[-120,-107],[-121.5,-111.43],[-123,-115],[-124.45,-116.02],[-126,-117],[-128.11,-120.08],[-130,-122],[-132.23,-123.64],[-134,-125],[-135.07,-126.05],[-136,-127],[-163.06,-135.57],[-192,-141],[-202.6,-144.12],[-211,-148],[-211.91,-148.53],[-213,-149],[-215.77,-151.59],[-218,-154],[-220.12,-155.09],[-222,-156],[-232.33,-167.38],[-242,-178],[-245,-179],[-247,-181],[-282,-191],[-304,-183],[-297,-163],[-292,-154],[-280,-143],[-265,-136],[-241,-128],[-233,-123],[-223,-112],[-214,-64],[-210,-51],[-197,-41],[-148,-18],[-143,23],[-134,18],[-129,16],[-125,12],[-120,10],[-119,8],[-116,7],[-107,1],[-103,-2],[-98,-4],[-97,-6],[-94,-7],[-88,-12],[-85,-13],[-76,-19]],"c":true}],"h":1},{"t":152,"s":[{"i":[[-74.92,-19.32],[-87.51,-28.73],[-105.85,-39.5],[-113.87,-57.09],[-115.46,-76.14],[-116.89,-92.92],[-119.69,-105.73],[-122.91,-113.24],[-126.01,-117.97],[-127.36,-119.62],[-127.76,-120.76],[-128.9,-121.47],[-130.52,-121.67],[-131.7,-122.89],[-132.58,-124.7],[-134.73,-125.93],[-137.36,-126.71],[-138.32,-127.52],[-138.79,-128.88],[-142.14,-130.25],[-147.41,-131.47],[-163.03,-136.02],[-184.91,-140.66],[-194.8,-142.62],[-200.34,-143.42],[-204.92,-145.11],[-209.65,-147.27],[-212.09,-148.9],[-213.47,-150.65],[-215.87,-151.88],[-218.49,-152.61],[-222.08,-155.76],[-226.68,-160.68],[-234.37,-168.87],[-243.3,-178.31],[-250.91,-183.66],[-257.62,-187.5],[-267.94,-190.11],[-281.53,-191.07],[-301.9,-188.35],[-302.9,-175.54],[-299.65,-165.87],[-286.68,-147.48],[-264.26,-135.93],[-238.27,-128.13],[-233.83,-124.65],[-221.31,-109.21],[-217.7,-60.7],[-179.5,-36.16],[-157.97,-27.13],[-148.17,-19.34],[-141.02,8.61],[-137.61,20.59],[-122.92,10.69],[-113.25,5.77],[-110.9,3.52],[-107.12,1.04],[-104,-0.34],[-98.2,-5.1],[-94.73,-6.5],[-87.87,-11.21]],"o":[[-79.83,-26.48],[-100.52,-35.24],[-112.64,-51.77],[-115.28,-69.28],[-116.29,-88.31],[-118.59,-101.63],[-121.9,-111.25],[-124.96,-116.59],[-127.23,-119.24],[-127.63,-120.38],[-128.38,-121.39],[-129.97,-121.61],[-131.42,-122.29],[-132.28,-124.09],[-133.8,-125.57],[-136.51,-126.5],[-138.18,-127.08],[-138.62,-128.43],[-140.43,-129.77],[-145.63,-131.1],[-155.57,-134.19],[-177.7,-139.25],[-192.87,-142.41],[-198.53,-143.12],[-203.34,-144.47],[-208.08,-146.51],[-211.6,-148.33],[-213.02,-150.07],[-214.87,-151.57],[-217.68,-152.39],[-220.49,-154.17],[-225.17,-159.01],[-231.47,-165.47],[-240.28,-175.3],[-248.6,-182.16],[-255.42,-186.33],[-262.68,-189.32],[-277.37,-190.98],[-292.18,-190.59],[-305.79,-178.44],[-300.64,-169.17],[-293.33,-154.88],[-272.79,-138.16],[-248.78,-131.03],[-234.31,-124.34],[-225.4,-118.06],[-215.09,-81.78],[-201.49,-40.76],[-162.87,-29.29],[-151,-22.13],[-141.64,-6.27],[-140.28,24.18],[-128.36,14.96],[-115.75,6.22],[-111.32,4.58],[-107.86,1.76],[-105.18,-0.76],[-100.81,-2.45],[-96.19,-6.61],[-90.7,-9.23],[-79.76,-16.26]],"v":[[-71,-23],[-94.02,-31.98],[-110,-47],[-114.58,-63.19],[-116,-84],[-117.74,-97.28],[-121,-109],[-123.93,-114.92],[-127,-119],[-127.49,-120],[-128,-121],[-129.43,-121.54],[-131,-122],[-131.99,-123.49],[-133,-125],[-135.62,-126.21],[-138,-127],[-138.47,-127.97],[-139,-129],[-143.88,-130.68],[-149,-132],[-170.36,-137.63],[-191,-142],[-196.66,-142.87],[-202,-144],[-206.5,-145.81],[-211,-148],[-212.56,-149.49],[-214,-151],[-216.78,-152.13],[-219,-153],[-223.63,-157.38],[-228,-162],[-237.32,-172.09],[-247,-181],[-253.16,-185],[-259,-188],[-272.65,-190.54],[-283,-191],[-304,-183],[-302,-173],[-298,-163],[-280,-143],[-255,-133],[-235,-125],[-233,-124],[-219,-99],[-209,-50],[-167,-31],[-155,-25],[-146,-15],[-144,23],[-135,19],[-117,7],[-112,5],[-110,3],[-106,0],[-103,-1],[-97,-6],[-94,-7],[-85,-13]],"c":true}],"h":1},{"t":153,"s":[{"i":[[-72.03,-19.57],[-87.37,-29.4],[-107.37,-41.21],[-115.75,-64.42],[-116.96,-93.74],[-121.76,-110.25],[-128.66,-121.45],[-134.71,-125.57],[-139.9,-128.97],[-148.94,-133.01],[-159.9,-136.12],[-183.86,-140.54],[-210.84,-147.39],[-223.52,-157.13],[-232.38,-165.28],[-235.46,-168.91],[-235.66,-170.52],[-236.85,-171.72],[-238.64,-172.64],[-242.38,-176.33],[-247.33,-180.82],[-250.96,-183.43],[-254.11,-185.57],[-272.62,-191.02],[-301.88,-188.33],[-304.1,-175.82],[-298.31,-164.18],[-293.32,-156.07],[-287.1,-148.39],[-279.88,-143.57],[-272.02,-139.14],[-256.81,-134.11],[-239.07,-128.05],[-229,-119.6],[-222.11,-109.27],[-218.07,-87.49],[-215.07,-58.44],[-209.58,-52.08],[-209.34,-50.38],[-207.72,-49.02],[-204.96,-47.67],[-202.3,-45.6],[-199.9,-43.46],[-196.88,-42.23],[-193.18,-41.44],[-185.45,-38.65],[-175.59,-35.29],[-167.51,-32.5],[-160.7,-30],[-158.65,-28.46],[-158.21,-27.16],[-157,-26.57],[-155.39,-26.31],[-145.27,-14.33],[-142.78,12.21],[-131.3,16.86],[-113.01,4.85],[-100.95,-2.98],[-92.04,-9.03],[-85.53,-12.07],[-81.43,-16.05]],"o":[[-79.19,-26.79],[-101.46,-36.61],[-114.77,-55.05],[-116.85,-83.77],[-119.93,-105.78],[-126.13,-118.09],[-133.02,-124.34],[-138.15,-127.89],[-145.49,-131.71],[-156.15,-135.22],[-173.69,-139.09],[-202.43,-144.68],[-220.33,-154.49],[-229.54,-162.52],[-235.38,-168.4],[-235.61,-169.97],[-236.28,-171.4],[-238.03,-172.35],[-240.71,-174.67],[-245.69,-179.4],[-249.91,-182.64],[-253.06,-184.89],[-261.43,-189.1],[-292.85,-190.63],[-305.2,-179.98],[-300.66,-167.92],[-295.27,-159.12],[-289.23,-150.7],[-282.37,-145.25],[-274.71,-140.52],[-263.28,-135.84],[-244.71,-130.22],[-231.94,-122.71],[-224.09,-112.88],[-218.28,-98.02],[-216.46,-67.71],[-209.66,-52.63],[-209.42,-50.95],[-208.49,-49.43],[-205.95,-48.14],[-203.1,-46.37],[-200.7,-44.14],[-198.04,-42.51],[-194.45,-41.7],[-188.66,-39.75],[-178.92,-36.41],[-169.9,-33.25],[-162.9,-30.88],[-158.8,-28.88],[-158.36,-27.6],[-157.56,-26.67],[-155.92,-26.4],[-148.63,-20.94],[-142.34,2.24],[-137.55,20.68],[-119.03,8.94],[-103.93,-0.96],[-95,-7.01],[-87.57,-11.93],[-82.38,-13.99],[-77.01,-18.98]],"v":[[-71,-24],[-94.42,-33.01],[-111,-48],[-116.3,-74.09],[-119,-102],[-123.95,-114.17],[-131,-123],[-136.43,-126.73],[-142,-130],[-152.55,-134.12],[-164,-137],[-193.14,-142.61],[-217,-152],[-226.53,-159.83],[-235,-168],[-235.54,-169.44],[-236,-171],[-237.44,-172.03],[-239,-173],[-244.03,-177.87],[-249,-182],[-252.01,-184.16],[-255,-186],[-282.74,-190.82],[-304,-183],[-302.38,-171.87],[-297,-162],[-291.28,-153.38],[-285,-147],[-277.29,-142.05],[-269,-138],[-250.76,-132.16],[-235,-125],[-226.54,-116.24],[-221,-106],[-217.26,-77.6],[-210,-53],[-209.5,-51.51],[-209,-50],[-206.84,-48.58],[-204,-47],[-201.5,-44.87],[-199,-43],[-195.67,-41.96],[-192,-41],[-182.18,-37.53],[-172,-34],[-165.2,-31.69],[-159,-29],[-158.51,-28.03],[-158,-27],[-156.46,-26.48],[-155,-26],[-143.8,-6.04],[-144,24],[-125.17,12.9],[-107,1],[-97.98,-4.99],[-89,-11],[-84,-13],[-80,-17]],"c":true}],"h":1},{"t":154,"s":[{"i":[[-69.91,-22.93],[-80.23,-28.02],[-94.16,-33.16],[-105.89,-40.8],[-114.75,-56.85],[-117.22,-79.68],[-118.99,-96.51],[-121.67,-107.77],[-125.42,-116.25],[-129.53,-120.69],[-134.11,-125.22],[-136.95,-128.34],[-142.83,-131.42],[-151.78,-134.06],[-173.97,-139.2],[-203.53,-144.81],[-214.67,-150.1],[-218.55,-153.86],[-220.58,-155.1],[-221.76,-154.89],[-222.31,-155.5],[-222.85,-156.88],[-230.37,-163.89],[-240.62,-174.44],[-248.99,-180.93],[-257.73,-187.14],[-276.21,-191.42],[-302.13,-187.71],[-303.95,-175.85],[-298.47,-162.54],[-296.3,-160.04],[-295.41,-158.43],[-292.41,-155.31],[-288.48,-151.4],[-284.38,-147.27],[-281.01,-143.64],[-278.2,-142.22],[-275.03,-141.47],[-272.28,-140],[-269.85,-138.32],[-262.64,-136.06],[-252.98,-133.97],[-246.3,-131.62],[-240.75,-128.93],[-232.34,-123.3],[-224.3,-113.1],[-218.82,-92.43],[-216.83,-64.93],[-210.29,-52.03],[-203.16,-46.25],[-186.46,-39.06],[-163.13,-32.28],[-154.48,-26.02],[-151.04,-22.35],[-144.42,-9.03],[-144.22,15.66],[-132.11,17.33],[-113.24,4.99],[-95.69,-6.11],[-78.98,-16.62],[-72.22,-20.97]],"o":[[-75.2,-26.31],[-89.71,-31.44],[-102.25,-37.84],[-112.89,-50.26],[-116.92,-71.56],[-118.41,-92.37],[-120.62,-104.21],[-124.4,-114.4],[-127.98,-119.39],[-133.13,-124.06],[-136.02,-127.36],[-140.19,-130.39],[-148.63,-133.25],[-163.71,-137.55],[-193.88,-142.83],[-213.15,-148.92],[-217.38,-152.57],[-220.2,-155.16],[-221.36,-154.97],[-222.14,-155.06],[-222.67,-156.41],[-226.81,-160.17],[-237.27,-171.03],[-246.12,-178.6],[-254.79,-185.2],[-266.14,-190.31],[-294.2,-190.11],[-304.96,-180.58],[-300.7,-166.83],[-296.6,-160.58],[-295.71,-158.97],[-293.67,-156.61],[-289.81,-152.71],[-285.63,-148.7],[-282.08,-144.74],[-279.18,-142.48],[-276.12,-141.71],[-273.1,-140.59],[-270.65,-138.87],[-265.9,-136.83],[-256.18,-134.63],[-248.17,-132.41],[-242.59,-129.88],[-235.68,-126.25],[-226.65,-116.73],[-219.41,-101.46],[-217.53,-74.16],[-212.21,-54.16],[-205.77,-48.08],[-194.39,-41.17],[-170.83,-34.62],[-155.71,-27.1],[-152.14,-23.65],[-146.06,-15.86],[-143.5,6.73],[-138.5,21.33],[-119.48,9.16],[-101.45,-2.56],[-84.46,-13.14],[-73.26,-20.5],[-70.54,-22.18]],"v":[[-70,-24],[-84.97,-29.73],[-98.21,-35.5],[-109,-45],[-115.83,-64.2],[-118,-88],[-119.81,-100.36],[-123,-111],[-126.7,-117.82],[-132,-123],[-135.06,-126.29],[-138,-129],[-145.73,-132.33],[-155,-135],[-183.93,-141.01],[-211,-148],[-216.02,-151.33],[-220,-155],[-220.97,-155.04],[-222,-155],[-222.49,-155.95],[-223,-157],[-233.82,-167.46],[-244,-177],[-251.89,-183.06],[-260,-188],[-285.2,-190.77],[-304,-183],[-302.32,-171.34],[-297,-161],[-296,-159.5],[-295,-158],[-291.11,-154.01],[-287,-150],[-283.23,-146],[-280,-143],[-277.16,-141.96],[-274,-141],[-271.47,-139.43],[-269,-138],[-259.41,-135.35],[-250,-133],[-244.45,-130.75],[-239,-128],[-229.49,-120.01],[-223,-110],[-218.18,-83.3],[-213,-56],[-208.03,-50.06],[-201,-45],[-178.64,-36.84],[-157,-28],[-153.31,-24.84],[-150,-21],[-143.96,-1.15],[-145,25],[-125.8,13.24],[-107,1],[-90.07,-9.63],[-74,-20],[-71.38,-21.57]],"c":true}],"h":1},{"t":155,"s":[{"i":[[-70.22,-20.92],[-74.3,-26.44],[-80.98,-29.26],[-88.71,-31.86],[-96.8,-34.85],[-101.48,-38.82],[-106.79,-42.61],[-114.33,-54.06],[-117.48,-72.73],[-119.31,-93.72],[-123.64,-111.93],[-128.02,-119.14],[-131.31,-122.43],[-135.3,-126.39],[-138.12,-129.45],[-143.74,-132.34],[-152.8,-135.08],[-168.68,-139.15],[-187.91,-142.71],[-200.88,-145.32],[-210.36,-147.68],[-213.96,-149.81],[-215.37,-151.59],[-217.68,-152.76],[-220.35,-153.53],[-222.01,-154.91],[-223.4,-156.52],[-225.4,-158.05],[-227.48,-159.52],[-236.92,-169.22],[-249.4,-181.95],[-279.5,-192.56],[-306.14,-180.17],[-297.83,-161.87],[-295.81,-158.85],[-286.12,-147.86],[-281.39,-144.24],[-274.1,-141.28],[-256.47,-134.86],[-241.25,-130.07],[-235.38,-125.17],[-230.09,-120.42],[-227.25,-117.37],[-227.23,-115.51],[-225.23,-114.43],[-222.7,-108.28],[-219.76,-79.06],[-200.07,-44.55],[-162.33,-33.04],[-142.89,2.52],[-133.36,17.71],[-127,14.65],[-123.65,11.12],[-119.76,9.48],[-115.36,6.85],[-100.13,-3.81],[-92.96,-7.35],[-89.5,-11.04],[-85.77,-12.55],[-81.49,-15.07],[-78.65,-17.57]],"o":[[-71.81,-25.57],[-78.88,-28.29],[-85.55,-30.94],[-94.33,-33.82],[-99.58,-37.52],[-105.08,-41.37],[-112.09,-48.7],[-117.02,-66.07],[-118.48,-86.75],[-121.89,-106.31],[-127.11,-117.92],[-130.12,-121.39],[-134.24,-125.16],[-137.24,-128.53],[-141.09,-131.3],[-149.6,-134.23],[-162.22,-137.8],[-181.52,-141.61],[-197.45,-144.73],[-207.34,-146.79],[-213.53,-149.26],[-214.89,-150.97],[-216.75,-152.49],[-219.48,-153.28],[-221.56,-154.41],[-222.93,-155.97],[-224.66,-157.54],[-226.81,-159.04],[-232.97,-164.49],[-245.13,-177.95],[-263.85,-189.81],[-307.06,-186.91],[-299.88,-166.57],[-296.2,-160.16],[-291.41,-154.26],[-281.67,-145.85],[-278.11,-142.17],[-262.86,-136.64],[-245.57,-130.69],[-236.93,-127.32],[-230.86,-121.33],[-228.85,-117.68],[-226.69,-116.54],[-226.84,-114.64],[-223.81,-111.8],[-218.32,-94.1],[-212.86,-48.95],[-173.41,-35.88],[-142.34,-16.58],[-139.41,23.18],[-128.07,14.42],[-124.45,13],[-121.12,9.4],[-117.2,7.88],[-107.9,2.21],[-94.09,-7.56],[-90.64,-8.92],[-87.09,-12.58],[-82.98,-14.17],[-79.4,-16.37],[-75.21,-19.83]],"v":[[-69,-25],[-76.59,-27.37],[-83,-30],[-91.52,-32.84],[-98,-36],[-103.28,-40.1],[-108,-44],[-115.68,-60.07],[-118,-80],[-120.6,-100.01],[-126,-116],[-129.07,-120.26],[-133,-124],[-136.27,-127.46],[-139,-130],[-146.67,-133.28],[-156,-136],[-175.1,-140.38],[-194,-144],[-204.11,-146.06],[-213,-149],[-214.43,-150.39],[-216,-152],[-218.58,-153.02],[-221,-154],[-222.47,-155.44],[-224,-157],[-226.1,-158.55],[-228,-160],[-241.02,-173.59],[-255,-185],[-292,-190],[-301,-169],[-297,-161],[-295,-158],[-282,-146],[-281,-144],[-271,-140],[-249,-132],[-238,-128],[-234,-124],[-229,-118],[-227,-117],[-227,-115],[-225,-114],[-222,-106],[-217,-67],[-183,-39],[-155,-27],[-146,25],[-129,15],[-126,14],[-122,10],[-119,9],[-114,6],[-95,-7],[-92,-8],[-88,-12],[-85,-13],[-80,-16],[-78,-18]],"c":true}],"h":1},{"t":156,"s":[{"i":[[-71.46,-21.54],[-76.08,-28.02],[-87.28,-31.38],[-93.8,-34.54],[-97.66,-37.29],[-105.14,-41.73],[-111.58,-48.44],[-116.62,-60.18],[-118.43,-77.21],[-120.44,-96.76],[-124.8,-113.2],[-130.87,-122.27],[-140.88,-131.46],[-146.11,-133.77],[-149.76,-134.58],[-153.39,-136],[-156.93,-137.71],[-177.74,-141.68],[-206.68,-146.37],[-217.05,-151.76],[-220.39,-154.43],[-221.92,-155.43],[-223.59,-155.66],[-225.28,-157.22],[-227.34,-159.43],[-233.73,-165.12],[-241.43,-172.57],[-246.65,-177.81],[-250.47,-181.95],[-253.28,-183.48],[-255.38,-183.65],[-257.24,-185.06],[-258.48,-186.77],[-261.18,-187.71],[-265.55,-188.62],[-281.43,-191.3],[-302.26,-187.43],[-304.73,-178.56],[-302.33,-170.76],[-296.4,-159.76],[-287.21,-149.13],[-276.94,-142.64],[-245.19,-132.88],[-226.47,-116.05],[-220.2,-91.13],[-216.19,-59.38],[-209.2,-52.24],[-202.63,-46.85],[-188.76,-42.03],[-178.12,-37.73],[-166.71,-34.99],[-161.81,-31.47],[-149.11,-21.41],[-145.37,11.78],[-133.5,18.16],[-113.66,5.27],[-97.97,-5.15],[-92.96,-7.35],[-89.5,-11.04],[-85.77,-12.55],[-81.49,-15.07]],"o":[[-72.19,-26.83],[-83.63,-30.3],[-92.47,-33.64],[-96.39,-36.36],[-102.35,-39.76],[-109.75,-46.07],[-115.4,-55.32],[-118.13,-71.12],[-119.54,-90.41],[-123.07,-108.15],[-128.18,-119.05],[-137.22,-128.48],[-144.98,-133.48],[-148.5,-134.32],[-152.18,-135.4],[-155.77,-137.16],[-167.4,-140.49],[-197.38,-144.61],[-215.6,-150.79],[-219.45,-153.58],[-221.38,-155.35],[-223.03,-155.58],[-224.61,-156.51],[-226.64,-158.68],[-231.02,-162.59],[-238.93,-170.11],[-245.41,-176.34],[-249.18,-180.62],[-252.59,-183.41],[-254.68,-183.6],[-256.75,-184.42],[-258.1,-186.23],[-259.9,-187.4],[-264,-188.32],[-273.05,-190.58],[-296.03,-189.72],[-304.81,-180.93],[-303.49,-173.48],[-299.04,-163.94],[-290.48,-152.35],[-280.65,-144.78],[-259.83,-135.51],[-230.87,-122.16],[-220.6,-101.67],[-218.02,-70.92],[-209.68,-52.58],[-204.28,-48.8],[-194.49,-42.6],[-180.18,-39.45],[-171.89,-35.58],[-162.41,-32.68],[-155.48,-27.8],[-143.05,-5.86],[-139.91,22.88],[-120.27,9.7],[-102.84,-1.66],[-94.09,-7.56],[-90.64,-8.92],[-87.09,-12.58],[-82.98,-14.17],[-75.88,-18.56]],"v":[[-68,-25],[-79.86,-29.16],[-91,-33],[-95.1,-35.45],[-99,-38],[-107.44,-43.9],[-113,-51],[-117.38,-65.65],[-119,-84],[-121.75,-102.46],[-127,-117],[-134.05,-125.38],[-144,-133],[-147.3,-134.05],[-151,-135],[-154.58,-136.58],[-158,-138],[-187.56,-143.14],[-214,-150],[-218.25,-152.67],[-221,-155],[-222.47,-155.51],[-224,-156],[-225.96,-157.95],[-228,-160],[-236.33,-167.62],[-244,-175],[-247.91,-179.22],[-252,-183],[-253.98,-183.54],[-256,-184],[-257.67,-185.64],[-259,-187],[-262.59,-188.02],[-267,-189],[-288.73,-190.51],[-304,-183],[-304.11,-176.02],[-301,-168],[-293.44,-156.05],[-284,-147],[-273,-141],[-236,-126],[-224,-110],[-219,-80],[-212,-55],[-206,-50],[-201,-46],[-182,-40],[-176,-37],[-163,-33],[-161,-31],[-147,-16],[-147,26],[-127,14],[-107,1],[-95,-7],[-92,-8],[-88,-12],[-85,-13],[-80,-16]],"c":true}],"h":1},{"t":157,"s":[{"i":[[-68.6,-24.02],[-77.75,-29.43],[-90.8,-33.94],[-101.89,-39.31],[-110.74,-47.23],[-118.09,-64.29],[-120.5,-88.94],[-123.81,-111.8],[-130.5,-121.99],[-137,-128.1],[-139.32,-129.52],[-139.79,-130.88],[-164.63,-139.48],[-206.84,-146.36],[-220.82,-154.34],[-225.64,-157.96],[-232.43,-163.6],[-239.53,-170.75],[-248.23,-178.78],[-258.55,-186.67],[-277.55,-191.57],[-302.04,-187.98],[-304.6,-176.62],[-300.44,-166.44],[-294.39,-157.26],[-286.68,-149.12],[-282.71,-146.52],[-279.42,-144.69],[-276.26,-142.98],[-273.85,-141.37],[-260.12,-136.85],[-240.89,-130.72],[-233.46,-123.52],[-229.42,-118.38],[-226.46,-113.56],[-224.42,-110.13],[-220.44,-90.94],[-217.23,-62.65],[-209.17,-52.56],[-202.11,-46.98],[-192.6,-43.13],[-181.6,-40.21],[-173.14,-37.47],[-165.98,-35.02],[-161.17,-32.28],[-157.19,-29.54],[-155.69,-28.5],[-155.15,-27.12],[-146.12,-13.86],[-146.28,15.17],[-144.58,25.53],[-140.73,22.46],[-139.04,21.62],[-137.51,21.32],[-135.65,19.79],[-133.74,17.48],[-130.97,15.9],[-127.87,14.56],[-110.11,3.26],[-84.91,-12.8],[-73.45,-20.06]],"o":[[-73,-27.87],[-86.65,-32.46],[-98.42,-37.36],[-108.05,-44.25],[-116.45,-56.76],[-120.12,-80.38],[-122.34,-104.66],[-128.49,-119.44],[-134.75,-126.32],[-139.17,-129.08],[-139.63,-130.42],[-150.46,-137.05],[-192.82,-144.14],[-219,-153.11],[-224.14,-156.77],[-229.91,-161.23],[-237.24,-168.36],[-244.95,-175.69],[-255.02,-184.26],[-268.03,-190.33],[-294.55,-190.39],[-305.12,-180.15],[-302.25,-169.76],[-297.05,-160.7],[-289.21,-151.47],[-283.75,-147.17],[-280.54,-145.28],[-277.08,-143.55],[-274.64,-141.89],[-267.18,-138.49],[-246.98,-132.97],[-234.99,-125.08],[-230.67,-120.17],[-227.25,-114.74],[-225.04,-111.25],[-221.07,-101.12],[-218.52,-71.71],[-211.37,-54.82],[-204.54,-48.64],[-196.3,-44.28],[-185.25,-41.1],[-175.65,-38.21],[-168.3,-35.88],[-162.57,-33.26],[-158.48,-30.42],[-155.86,-28.94],[-155.33,-27.59],[-148.73,-21.7],[-144.9,4.57],[-146.21,26.3],[-141.84,23.6],[-139.53,21.71],[-138.03,21.43],[-136.28,20.55],[-134.38,18.25],[-132.03,16.37],[-128.89,15],[-118.65,8.66],[-93.24,-7.47],[-75.4,-19.05],[-70.05,-22.54]],"v":[[-68,-26],[-82.2,-30.94],[-94.61,-35.65],[-104.97,-41.78],[-113,-51],[-119.1,-72.33],[-121.42,-96.8],[-127,-117],[-132.62,-124.15],[-139,-129],[-139.48,-129.97],[-140,-131],[-178.72,-141.81],[-217,-152],[-222.48,-155.55],[-227,-159],[-234.83,-165.98],[-242,-173],[-251.63,-181.52],[-262,-188],[-286.05,-190.98],[-304,-183],[-303.42,-173.19],[-299,-164],[-291.8,-154.36],[-285,-148],[-281.63,-145.9],[-278,-144],[-275.45,-142.44],[-273,-141],[-253.55,-134.91],[-237,-127],[-232.06,-121.84],[-228,-116],[-225.75,-112.41],[-224,-109],[-219.48,-81.33],[-213,-57],[-206.86,-50.6],[-200,-46],[-188.93,-42.11],[-178,-39],[-170.72,-36.67],[-164,-34],[-159.82,-31.35],[-156,-29],[-155.51,-28.05],[-155,-27],[-145.51,-4.65],[-148,26],[-143.21,24.57],[-140,22],[-138.53,21.52],[-137,21],[-135.02,19.02],[-133,17],[-129.93,15.45],[-127,14],[-101.67,-2.11],[-77,-18],[-71.75,-21.3]],"c":true}],"h":1},{"t":158,"s":[{"i":[[-67.81,-23.83],[-78.38,-30.6],[-93.74,-35.51],[-107.12,-43.25],[-116.88,-58.09],[-120.4,-77.7],[-122.05,-96.45],[-125.16,-112.36],[-128.57,-119.61],[-132.05,-122.95],[-136.81,-128.01],[-142.08,-131.51],[-147.25,-134.34],[-150.84,-136.58],[-166.21,-140.99],[-189.6,-144.84],[-199.4,-146.34],[-204.48,-146.57],[-223.16,-155.15],[-242.8,-173.98],[-251.2,-180.88],[-254.39,-183.63],[-271.49,-190.39],[-301.46,-189.58],[-304.55,-176.79],[-300.92,-167.71],[-296.2,-159.94],[-288.94,-151.48],[-284.71,-148.3],[-282.01,-146.59],[-277.84,-144.18],[-272.78,-141.65],[-259.1,-137.08],[-243.04,-130.99],[-236.27,-126.02],[-233.59,-123.31],[-232.49,-121.68],[-231.12,-121.17],[-228.95,-117.7],[-226.68,-112.57],[-221.72,-93.64],[-217.94,-65.34],[-213.65,-58.04],[-213.32,-56.42],[-200.91,-47.01],[-174.65,-38.85],[-166.89,-35.36],[-165.5,-34.25],[-162.62,-33.05],[-158.87,-31.66],[-147.12,-16.73],[-147.03,14.59],[-140.08,22.38],[-128.3,15.05],[-118.74,8.93],[-109.96,2.89],[-98.35,-4.5],[-85.67,-12.57],[-80.31,-16.3],[-77.85,-18.45],[-73.21,-20.76]],"o":[[-72.84,-28.8],[-88.83,-33.95],[-102.88,-40.16],[-114.68,-52.5],[-119.74,-70.69],[-121.47,-90.77],[-123.89,-107.24],[-127.55,-118.38],[-130.83,-121.89],[-135.27,-126.5],[-140.22,-130.51],[-146.08,-133.55],[-149.63,-135.86],[-158.41,-139.32],[-181.81,-143.75],[-197.66,-146.3],[-202.81,-146.47],[-215.51,-149.66],[-236.81,-167.31],[-250,-179.81],[-253.39,-182.79],[-260.51,-187.35],[-291.96,-191.5],[-305.09,-180.18],[-302.47,-170.55],[-298.48,-163.2],[-291.43,-154.08],[-285.7,-149],[-282.86,-147.09],[-279.45,-145.1],[-274.5,-142.45],[-265.08,-138.84],[-248.08,-133.16],[-237.48,-126.87],[-234.33,-124.24],[-232.93,-121.85],[-231.59,-121.35],[-229.86,-119.41],[-227.36,-114.27],[-222.75,-103.47],[-219.31,-74.58],[-213.74,-58.58],[-213.44,-56.96],[-208.84,-50.59],[-183.82,-41.14],[-167.39,-35.74],[-165.94,-34.62],[-163.94,-33.47],[-160.09,-32.14],[-150.11,-25.03],[-145.58,3.07],[-144.18,24.85],[-132.14,17.48],[-121.76,10.99],[-112.84,4.89],[-102.76,-1.71],[-89.8,-9.93],[-81.14,-15.57],[-78.67,-17.73],[-75.31,-20.09],[-69.47,-22.62]],"v":[[-67,-26],[-83.6,-32.28],[-98.31,-37.84],[-111,-48],[-118.31,-64.39],[-121,-85],[-122.97,-101.85],[-127,-117],[-129.7,-120.75],[-133,-124],[-138.51,-129.26],[-145,-133],[-148.44,-135.1],[-152,-137],[-174.01,-142.37],[-196,-146],[-201.11,-146.41],[-206,-147],[-229.99,-161.23],[-249,-179],[-252.29,-181.83],[-255,-184],[-281.73,-190.94],[-304,-183],[-303.51,-173.67],[-300,-166],[-293.82,-157.01],[-287,-150],[-283.79,-147.69],[-281,-146],[-276.17,-143.31],[-271,-141],[-253.59,-135.12],[-239,-128],[-235.3,-125.13],[-233,-122],[-232.04,-121.51],[-231,-121],[-228.15,-115.98],[-226,-111],[-220.51,-84.11],[-214,-59],[-213.55,-57.5],[-213,-56],[-192.37,-44.08],[-168,-36],[-166.41,-34.99],[-165,-34],[-161.36,-32.6],[-158,-31],[-146.35,-6.83],[-148,27],[-136.11,19.93],[-125,13],[-115.79,6.91],[-107,1],[-94.07,-7.21],[-82,-15],[-79.49,-17.02],[-77,-19],[-71.34,-21.69]],"c":true}],"h":1},{"t":159,"s":[{"i":[[-67.53,-22.77],[-77.52,-30.71],[-92.3,-35.66],[-98.38,-38.9],[-100.25,-40.54],[-102.64,-41.69],[-105.43,-42.57],[-108.98,-45.62],[-113.02,-50.53],[-121.19,-73.43],[-123.75,-110.7],[-129.21,-120.19],[-129.98,-120.98],[-135.36,-126.46],[-145.16,-134.66],[-159.6,-140.05],[-179.32,-142.99],[-198.81,-145.99],[-217.15,-151.1],[-223.29,-155.11],[-225.18,-157.39],[-227.65,-159],[-230.3,-160.38],[-236.58,-166.42],[-244.32,-174.68],[-248.59,-178.09],[-251.18,-179.39],[-253.46,-181.39],[-255.36,-183.62],[-270.41,-189.96],[-297.14,-190.55],[-305.31,-178.77],[-300.07,-166.18],[-293.1,-156.43],[-284.48,-148.44],[-279.13,-145.39],[-274.79,-143.54],[-272.44,-142.49],[-271.26,-141.1],[-267.71,-139.92],[-262.48,-138.49],[-253.56,-135.73],[-242.72,-131.65],[-240.36,-129.59],[-239.37,-129.31],[-230.09,-119.97],[-224.22,-104.54],[-221.14,-83.06],[-216.89,-62.18],[-212.67,-55.7],[-209.95,-54.66],[-207.87,-51.55],[-202.73,-48.84],[-191.35,-44.37],[-161.22,-35.25],[-147.09,8.53],[-141.54,23.29],[-128.38,15.1],[-123.66,11.42],[-102.73,-1.57],[-82.11,-15.09]],"o":[[-72.12,-29.13],[-87.61,-33.98],[-97.76,-38.38],[-99.63,-39.98],[-101.67,-41.41],[-104.51,-42.27],[-107.47,-44.11],[-111.76,-48.84],[-120.06,-61.08],[-123.04,-98.24],[-128.97,-119.95],[-129.72,-120.71],[-132.28,-123.38],[-141.8,-132.11],[-153.44,-138.55],[-172.54,-142.27],[-192.24,-144.94],[-211.27,-149.07],[-222.7,-154.42],[-224.53,-156.6],[-226.75,-158.56],[-229.42,-159.91],[-233.92,-163.58],[-241.78,-171.97],[-247.75,-177.65],[-250.31,-178.97],[-252.78,-180.58],[-254.75,-182.91],[-261.34,-187.19],[-288.31,-191.64],[-305.28,-182.93],[-302.7,-170.39],[-295.86,-159.71],[-287.41,-150.79],[-280.49,-146.12],[-276.28,-144.1],[-272.81,-142.94],[-271.66,-141.57],[-269.47,-140.43],[-264.22,-138.95],[-257.7,-136.91],[-246.07,-133.1],[-240.68,-129.69],[-239.71,-129.4],[-233.49,-124.45],[-225.46,-110.02],[-221.69,-90.97],[-218.74,-68.67],[-212.35,-57.3],[-211.25,-54.21],[-208.18,-53.43],[-205.12,-49.82],[-196.92,-46.02],[-173.87,-38.85],[-143.87,-15.42],[-144.61,26.49],[-133.87,18.32],[-124.4,12.63],[-113.27,4.72],[-87.44,-11.08],[-72.73,-21.09]],"v":[[-66,-27],[-82.56,-32.34],[-97,-38],[-99,-39.44],[-101,-41],[-103.58,-41.98],[-106,-43],[-110.37,-47.23],[-114,-52],[-122.11,-85.84],[-129,-120],[-129.47,-120.45],[-130,-121],[-138.58,-129.28],[-148,-136],[-166.07,-141.16],[-186,-144],[-205.04,-147.53],[-222,-154],[-223.91,-155.85],[-226,-158],[-228.54,-159.45],[-231,-161],[-239.18,-169.19],[-247,-177],[-249.45,-178.53],[-252,-180],[-254.11,-182.15],[-256,-184],[-279.36,-190.8],[-302,-186],[-304.01,-174.58],[-298,-163],[-290.26,-153.61],[-282,-147],[-277.71,-144.75],[-273,-143],[-272.05,-142.03],[-271,-141],[-265.96,-139.43],[-261,-138],[-249.81,-134.42],[-241,-130],[-240.04,-129.5],[-239,-129],[-227.78,-115],[-223,-98],[-219.94,-75.86],[-213,-58],[-212,-55],[-209,-54],[-207,-51],[-201,-48],[-187,-43],[-154,-27],[-149,27],[-138,21],[-125,13],[-123,11],[-94,-7],[-76,-19]],"c":true}],"h":1},{"t":160,"s":[{"i":[[-65.61,-24.56],[-77.47,-31.66],[-96.76,-38.15],[-115.04,-52.01],[-121.96,-77.97],[-124.3,-102.26],[-128.9,-119.76],[-132.41,-123.64],[-132.68,-124.61],[-142.76,-133.83],[-163.82,-141.44],[-189.1,-145.4],[-213.43,-149.61],[-223.57,-155.32],[-228.35,-159.68],[-230.94,-161.42],[-232.52,-161.66],[-233.72,-162.87],[-234.61,-164.65],[-239.82,-169.53],[-246.56,-176],[-252.56,-180.94],[-258.22,-185.09],[-273.7,-190.55],[-297.97,-189.77],[-305.07,-181.19],[-303.25,-172.95],[-294.21,-156.86],[-275.87,-143.3],[-265.8,-139.94],[-261.46,-138.51],[-253.36,-136],[-243.62,-132.55],[-237.44,-126.69],[-231.29,-120.11],[-226.23,-110.34],[-223.69,-98.45],[-221.55,-82.97],[-218.63,-66.31],[-214.77,-59.13],[-210.43,-54.1],[-202.58,-49.17],[-190.81,-45.21],[-178.04,-41.22],[-164.72,-36.03],[-160.99,-33.31],[-159.5,-32.39],[-148.35,-17.71],[-148.15,14.55],[-146.16,26.83],[-141.46,22.95],[-133.4,17.67],[-122.97,11.34],[-119.68,9.49],[-119.19,8.12],[-117.09,6.97],[-113.97,5.58],[-109.14,2.48],[-104.61,-0.94],[-98.78,-3.83],[-77.89,-17.7]],"o":[[-70.84,-29.58],[-90.43,-35.94],[-110.31,-45.53],[-120.87,-68.24],[-123.6,-95.38],[-126.95,-114.45],[-132.32,-123.33],[-132.59,-124.27],[-137.1,-130.11],[-156.12,-139.5],[-180.38,-144.59],[-205.62,-147.9],[-221.9,-153.98],[-226.8,-158.17],[-230.43,-161.34],[-231.98,-161.58],[-233.41,-162.29],[-234.32,-164.05],[-237.55,-167.27],[-244.33,-173.89],[-250.7,-179.39],[-256.32,-183.79],[-265.21,-188.66],[-290.08,-191.11],[-304.44,-183.71],[-304.47,-175.81],[-299.02,-162.96],[-282.64,-147.04],[-267.32,-140.43],[-262.87,-138.97],[-257.05,-136.98],[-246.64,-133.79],[-239.79,-128.89],[-233.18,-122.31],[-227.64,-114.11],[-224.26,-102.51],[-222.24,-89.07],[-219.75,-71.59],[-216.05,-61.07],[-211.95,-55.64],[-206.18,-50.82],[-194.9,-46.37],[-182.93,-42.71],[-168.93,-37.89],[-161.49,-33.61],[-159.99,-32.69],[-151.53,-26.23],[-146.66,2.68],[-147.92,27.61],[-142.93,24.5],[-136.91,20],[-126.43,13.34],[-119.83,9.93],[-119.36,8.58],[-118.11,7.43],[-115.02,6.05],[-110.83,3.7],[-106.03,0.16],[-101.26,-3.14],[-88.13,-10.82],[-68.16,-24.23]],"v":[[-65,-27],[-83.95,-33.8],[-102,-41],[-117.95,-60.13],[-123,-89],[-125.62,-108.35],[-132,-123],[-132.5,-123.95],[-133,-125],[-149.44,-136.66],[-172,-143],[-197.36,-146.65],[-220,-153],[-225.19,-156.75],[-230,-161],[-231.46,-161.5],[-233,-162],[-234.02,-163.46],[-235,-165],[-242.08,-171.71],[-249,-178],[-254.44,-182.36],[-260,-186],[-281.89,-190.83],[-302,-186],[-304.77,-178.5],[-302,-170],[-288.42,-151.95],[-269,-141],[-264.33,-139.46],[-260,-138],[-250,-134.9],[-242,-131],[-235.31,-124.5],[-230,-118],[-225.24,-106.42],[-223,-94],[-220.65,-77.28],[-217,-63],[-213.36,-57.38],[-209,-53],[-198.74,-47.77],[-187,-44],[-173.49,-39.55],[-162,-34],[-160.49,-33],[-159,-32],[-147.51,-7.51],[-150,27],[-144.54,25.67],[-140,22],[-129.91,15.5],[-120,10],[-119.52,9.04],[-119,8],[-116.06,6.51],[-113,5],[-107.58,1.32],[-103,-2],[-97,-5],[-70,-23]],"c":true}],"h":1},{"t":161,"s":[{"i":[[-66.1,-23.14],[-73.64,-31],[-86.6,-35.26],[-99.96,-40.72],[-111.47,-48.6],[-113.51,-52.32],[-114.88,-52.83],[-120.76,-66.06],[-122.79,-90.66],[-126.83,-111.98],[-135.19,-126.98],[-140.05,-131.01],[-141.62,-132.74],[-160.28,-140.98],[-194.88,-146.67],[-212.43,-150.79],[-222.23,-154.31],[-232.19,-161.3],[-241.1,-170.35],[-250.44,-178.71],[-261.61,-186.64],[-278.32,-191.23],[-298.86,-188.94],[-304.96,-181.02],[-303.29,-171.88],[-300.84,-167.2],[-298.61,-164.98],[-296.88,-161.8],[-295.55,-158.65],[-292.37,-155.37],[-287.13,-151.51],[-285.68,-150.49],[-285.18,-149.12],[-284.4,-148.9],[-283.25,-149.11],[-282.68,-148.48],[-282.21,-147.12],[-276.37,-144.39],[-267.66,-141.92],[-260.57,-139.28],[-254.61,-136.61],[-251.3,-135.62],[-248.69,-135.33],[-247.05,-134.19],[-245.56,-132.35],[-243.29,-131.26],[-240.56,-130.43],[-236.33,-126.61],[-232.04,-120.72],[-225.31,-105.74],[-222.44,-83.83],[-217.84,-62.92],[-215.67,-59.9],[-186.56,-44.85],[-164.07,-36.98],[-160.85,-34.65],[-148.54,1.77],[-142.59,24.34],[-117.42,7.67],[-88.31,-10.54],[-76.82,-18.82]],"o":[[-69.33,-29.62],[-82.27,-33.83],[-95.23,-38.67],[-108.08,-45.69],[-113.07,-52.15],[-114.41,-52.65],[-119.12,-58.73],[-122.6,-82.02],[-124.98,-105.75],[-131.93,-122.6],[-139.49,-130.39],[-141.12,-132.19],[-149.59,-138.14],[-182.93,-145.24],[-208.82,-149.88],[-219.14,-153],[-228.89,-158.37],[-238.3,-167.29],[-246.89,-175.64],[-257.81,-184.21],[-270.64,-190.26],[-292.43,-190.57],[-304.32,-183.83],[-304.45,-175.04],[-301.53,-167.96],[-299.38,-165.71],[-297.35,-162.97],[-295.97,-159.64],[-294.05,-156.87],[-288.91,-152.69],[-285.84,-150.93],[-285.35,-149.59],[-284.77,-148.85],[-283.64,-149.04],[-282.83,-148.92],[-282.37,-147.58],[-279.29,-145.43],[-270.55,-142.64],[-262.76,-140.22],[-256.49,-137.47],[-252.21,-135.7],[-249.54,-135.43],[-247.52,-134.77],[-246.07,-132.98],[-244.26,-131.54],[-241.44,-130.71],[-238.05,-128.5],[-233.32,-122.72],[-227.1,-112.58],[-222.98,-91.36],[-220.18,-71.55],[-215.3,-60.27],[-207.56,-48.98],[-170.24,-38.55],[-161.3,-34.33],[-143.48,-21.26],[-146.01,26.77],[-128.06,14.86],[-97.92,-4.82],[-78.18,-17.19],[-71.72,-22.13]],"v":[[-65,-28],[-77.95,-32.41],[-91,-37],[-104.02,-43.21],[-113,-52],[-113.96,-52.49],[-115,-53],[-121.68,-74.04],[-124,-99],[-129.38,-117.29],[-139,-130],[-140.58,-131.6],[-142,-133],[-171.6,-143.11],[-205,-149],[-215.79,-151.9],[-225,-156],[-235.24,-164.29],[-244,-173],[-254.13,-181.46],[-265,-188],[-285.37,-190.9],[-302,-186],[-304.71,-178.03],[-302,-169],[-300.11,-166.45],[-298,-164],[-296.42,-160.72],[-295,-158],[-290.64,-154.03],[-286,-151],[-285.52,-150.04],[-285,-149],[-284.02,-148.97],[-283,-149],[-282.52,-148.03],[-282,-147],[-273.46,-143.51],[-265,-141],[-258.53,-138.38],[-253,-136],[-250.42,-135.53],[-248,-135],[-246.56,-133.59],[-245,-132],[-242.37,-130.98],[-240,-130],[-234.82,-124.66],[-231,-119],[-224.15,-98.55],[-221,-76],[-216,-61],[-215,-59],[-174,-40],[-162,-35],[-160,-34],[-150,28],[-139,22],[-107,1],[-80,-16],[-75,-20]],"c":true}],"h":1},{"t":162,"s":[{"i":[[-65.39,-23.98],[-77.87,-33.18],[-97.24,-39.92],[-109.06,-46.95],[-116.5,-55.12],[-123.35,-77.38],[-125.7,-110.05],[-130.83,-120.31],[-132.49,-122.23],[-136.36,-127.69],[-142.39,-132.82],[-145.32,-134.52],[-145.8,-135.88],[-149.77,-137.86],[-156.69,-140.26],[-169.12,-143.7],[-185.2,-146.19],[-196.54,-147.53],[-205.22,-148.31],[-211.67,-150.3],[-217.17,-153.18],[-220.98,-154.67],[-224.07,-155.48],[-227.99,-157.9],[-231.81,-161.03],[-236.01,-164.75],[-240.01,-169.08],[-241.92,-170.42],[-243.63,-170.66],[-248.12,-175.05],[-254.04,-180.79],[-256.77,-182.67],[-257.65,-183.79],[-272.23,-189.98],[-297.36,-190.35],[-304.94,-175.69],[-294.97,-158.25],[-290.3,-153.3],[-285.61,-149.99],[-276.39,-145.27],[-264.04,-141.46],[-253.54,-137.39],[-244.53,-132.43],[-240.83,-130.69],[-225.15,-106.14],[-220.4,-66.62],[-213.72,-57.72],[-210.95,-56.67],[-208.87,-53.55],[-199.24,-49.4],[-175.99,-42.69],[-159.07,-33.51],[-149.83,4.73],[-147.4,26.81],[-138.4,21.18],[-127.39,14.33],[-116.81,7.29],[-106.78,1.45],[-95.44,-6.09],[-83.53,-13.68],[-76.74,-18.87]],"o":[[-71,-30.97],[-90.99,-37.66],[-106.07,-44.64],[-114.28,-52.19],[-122.5,-66.61],[-124.95,-99.1],[-130.33,-119.69],[-131.91,-121.58],[-134.66,-125.52],[-140.22,-131.34],[-145.17,-134.08],[-145.63,-135.42],[-147.68,-136.98],[-154.28,-139.5],[-164.02,-142.6],[-179.71,-145.49],[-193.68,-147.37],[-202.31,-147.99],[-209.84,-149.46],[-215.34,-152.16],[-219.95,-154.43],[-223.04,-155.19],[-226.59,-156.89],[-230.6,-159.98],[-234.5,-163.22],[-238.76,-167.68],[-241.36,-170.34],[-243.06,-170.58],[-246.1,-172.9],[-252.09,-179],[-256.44,-182.27],[-257.37,-183.43],[-263.55,-187.31],[-289.13,-191.5],[-306.2,-182.07],[-299.32,-163.78],[-291.74,-154.56],[-287.23,-151.02],[-280.37,-146.78],[-268.23,-142.6],[-257.03,-138.92],[-247.29,-134.14],[-242.24,-130.29],[-229.19,-121.02],[-221.61,-79.59],[-214.38,-59.24],[-212.22,-56.22],[-209.18,-55.43],[-204.09,-50.54],[-185.73,-44.92],[-163.42,-36.89],[-144.75,-17.14],[-148.99,29.31],[-141.61,23.47],[-130.8,16.3],[-120.01,9.26],[-109.83,3.09],[-100.32,-3.81],[-87.16,-11.53],[-78.27,-17.14],[-70.96,-22.62]],"v":[[-64,-28],[-84.43,-35.42],[-103,-43],[-111.67,-49.57],[-118,-58],[-124.15,-88.24],[-130,-119],[-131.37,-120.94],[-133,-123],[-138.29,-129.51],[-145,-134],[-145.48,-134.97],[-146,-136],[-152.03,-138.68],[-159,-141],[-174.42,-144.6],[-191,-147],[-199.42,-147.76],[-208,-149],[-213.51,-151.23],[-219,-154],[-222.01,-154.93],[-225,-156],[-229.3,-158.94],[-233,-162],[-237.38,-166.22],[-241,-170],[-242.49,-170.5],[-244,-171],[-250.1,-177.02],[-256,-182],[-257.07,-183.05],[-258,-184],[-280.68,-190.74],[-302,-186],[-302.13,-169.74],[-293,-156],[-288.76,-152.16],[-284,-149],[-272.31,-143.93],[-260,-140],[-250.42,-135.76],[-243,-131],[-240,-130],[-223,-90],[-215,-60],[-213,-57],[-210,-56],[-208,-53],[-195,-48],[-168,-39],[-156,-30],[-151,28],[-146,26],[-135,19],[-124,12],[-113,5],[-105,0],[-91,-9],[-80,-16],[-75,-20]],"c":true}],"h":1},{"t":163,"s":[{"i":[[-69.88,-22.43],[-74.33,-32.94],[-92.69,-38.55],[-101.06,-42.51],[-106.53,-45.55],[-107.64,-46.43],[-108.56,-46.67],[-119.05,-58.53],[-123.89,-83.07],[-127,-106.11],[-133.07,-123.4],[-138.26,-129.46],[-141.54,-131.87],[-146.73,-135.99],[-151.45,-139],[-162.08,-142.67],[-175.37,-145.3],[-195.85,-148.15],[-217.91,-152.47],[-225.29,-156.09],[-228.35,-157.58],[-231.13,-159.86],[-234.39,-163.53],[-235.95,-164.38],[-237.62,-164.67],[-242.97,-169.87],[-249.82,-177.34],[-252.95,-179.4],[-254.54,-179.66],[-256.37,-181.3],[-258.27,-183.52],[-260.01,-184.43],[-261.61,-184.76],[-263.69,-185.96],[-265.82,-186.64],[-267.56,-187.52],[-268.74,-188.92],[-281.2,-191.18],[-299.2,-188.62],[-305.19,-180.42],[-302.48,-170.9],[-298.55,-163.52],[-294.22,-157.22],[-291.61,-154.99],[-288.93,-153.69],[-286.52,-151.59],[-284.74,-149.44],[-253.35,-139.25],[-237.75,-127.84],[-234.57,-123.79],[-225.76,-103.97],[-222.82,-72.37],[-211.67,-56.34],[-162.74,-43.96],[-154.24,-28.38],[-152.35,-24.79],[-151.52,11.52],[-139.38,21.81],[-127.7,14.54],[-116.78,7.3],[-94.27,-7.1]],"o":[[-68.24,-30.92],[-86.56,-36.76],[-99.05,-41.48],[-104.8,-44.54],[-107.36,-46.34],[-108.24,-46.59],[-115.61,-52],[-123.2,-74.07],[-125.71,-99.41],[-130.67,-118.11],[-137.24,-128.52],[-140.41,-131.13],[-145.25,-134.74],[-149.82,-138.12],[-157.9,-141.52],[-170.82,-144.56],[-187.64,-147.16],[-210.98,-150.81],[-224.11,-155.55],[-227.41,-157.11],[-229.93,-158.59],[-233.36,-162.33],[-235.39,-164.3],[-237.06,-164.57],[-240.56,-167.2],[-247.6,-174.94],[-252.42,-179.32],[-254.01,-179.57],[-255.73,-180.54],[-257.64,-182.79],[-259.46,-184.3],[-261.09,-184.66],[-263.03,-185.64],[-265.08,-186.46],[-267.19,-187.06],[-268.33,-188.45],[-274.35,-190.62],[-293.63,-190.18],[-304.7,-183.47],[-304.08,-174.14],[-299.94,-165.91],[-295.69,-159.18],[-292.39,-155.39],[-289.88,-154.14],[-287.15,-152.37],[-285.31,-150.12],[-272.88,-142.37],[-241.51,-130.39],[-235.39,-124.01],[-227.95,-114.56],[-222.71,-83.24],[-215.96,-60.46],[-193.52,-44.78],[-155.85,-28.67],[-153.38,-27.04],[-145.49,-9.31],[-145.4,26.92],[-130.49,16.1],[-119.96,9.22],[-103.36,-0.86],[-77.67,-17.66]],"v":[[-63,-28],[-80.45,-34.85],[-98,-41],[-102.93,-43.52],[-107,-46],[-107.94,-46.51],[-109,-47],[-121.12,-66.3],[-125,-93],[-128.83,-112.11],[-136,-127],[-139.34,-130.3],[-143,-133],[-148.28,-137.06],[-154,-140],[-166.45,-143.61],[-180,-146],[-203.41,-149.48],[-223,-155],[-226.35,-156.6],[-229,-158],[-232.24,-161.1],[-235,-164],[-236.5,-164.47],[-238,-165],[-245.29,-172.41],[-252,-179],[-253.48,-179.49],[-255,-180],[-257,-182.05],[-259,-184],[-260.55,-184.54],[-262,-185],[-264.38,-186.21],[-267,-187],[-267.94,-187.98],[-269,-189],[-287.42,-190.68],[-302,-186],[-304.63,-177.28],[-301,-168],[-297.12,-161.35],[-293,-156],[-290.75,-154.57],[-288,-153],[-285.92,-150.86],[-284,-149],[-245,-133],[-236,-125],[-234,-123],[-224,-92],[-218,-64],[-208,-54],[-156,-29],[-154,-28],[-152,-24],[-152,29],[-135,19],[-124,12],[-113,5],[-85,-13]],"c":true}],"h":1},{"t":164,"s":[{"i":[[-150.4,-2],[-145.53,26.15],[-137.34,20.51],[-131.92,17.1],[-127.94,14.71],[-124.52,12.31],[-120.99,10.45],[-119.68,9.49],[-119.19,8.12],[-117.16,7.01],[-114,5.61],[-106.08,0.47],[-95.37,-6.48],[-91.68,-8.51],[-91.19,-9.88],[-88.84,-11.02],[-85.16,-12.26],[-82.71,-14],[-80.22,-16.16],[-77.48,-17.94],[-75.69,-18.69],[-74.68,-19.51],[-74.19,-20.88],[-69.87,-22.75],[-64.92,-29.63],[-107.31,-44.01],[-124.36,-77.7],[-128.51,-112.19],[-136.97,-126.97],[-147.71,-136.87],[-172.08,-145.71],[-207.2,-148.5],[-221.46,-155.23],[-227.45,-157.05],[-231.68,-160.99],[-235.04,-162.33],[-238.84,-167.12],[-242.2,-168.33],[-245.4,-172.6],[-253.4,-178.47],[-256.01,-180.31],[-259.67,-184.19],[-263.3,-185.68],[-266.1,-187.65],[-302.51,-192.03],[-300.77,-167.73],[-290.41,-153.99],[-285.38,-150.25],[-278.76,-147.2],[-271.24,-144.68],[-267.51,-142.19],[-252.95,-138.55],[-244.61,-132.2],[-239.14,-129.19],[-237.67,-125.96],[-234.59,-123.86],[-233.43,-120.73],[-227.2,-108.07],[-223.13,-69.77],[-200.9,-50.88],[-171.87,-43.26]],"o":[[-148.61,27.9],[-139.9,22.46],[-133.44,18],[-129.17,15.46],[-125.78,13.09],[-122.13,10.99],[-119.83,9.93],[-119.36,8.58],[-118.15,7.46],[-115.08,6.09],[-109.65,2.96],[-98.94,-4.25],[-91.83,-8.07],[-91.36,-9.41],[-90.01,-10.65],[-86.41,-11.83],[-83.35,-13.42],[-81.15,-15.37],[-78.14,-17.59],[-76.26,-18.49],[-74.83,-19.07],[-74.36,-20.41],[-72.22,-22.14],[-58.7,-30.19],[-91.66,-39.56],[-123.47,-64.45],[-127.21,-102.56],[-133.46,-124.69],[-146.06,-136.06],[-163.13,-143.49],[-193.7,-148.83],[-220.35,-153.51],[-225.01,-157],[-230.52,-158.93],[-233.87,-162.66],[-237.83,-164.28],[-240.79,-168.6],[-244.7,-170.42],[-249.46,-176.16],[-255.77,-180.74],[-258.38,-181.96],[-261.85,-185.52],[-265.1,-186.51],[-279.12,-192.74],[-306.48,-176.01],[-295.44,-159.5],[-285.67,-151.85],[-282.82,-148.59],[-273.73,-145.01],[-268.63,-143.89],[-260.13,-139.5],[-245.84,-134.3],[-241.41,-129.82],[-237.24,-127.2],[-236.42,-124.17],[-233.42,-122.16],[-230,-114.93],[-222.59,-88.57],[-211.25,-55.16],[-182.23,-44.84],[-145.12,-25.39]],"v":[[-152,29],[-142.71,24.31],[-135,19],[-130.54,16.28],[-127,14],[-123.33,11.65],[-120,10],[-119.52,9.04],[-119,8],[-116.12,6.55],[-113,5],[-102.51,-1.89],[-92,-8],[-91.52,-8.96],[-91,-10],[-87.62,-11.43],[-84,-13],[-81.93,-14.68],[-79,-17],[-76.87,-18.21],[-75,-19],[-74.52,-19.96],[-74,-21],[-68,-24],[-74,-33],[-116,-55],[-126,-92],[-132,-121],[-140,-130],[-155,-140],[-181,-147],[-219,-153],[-223,-156],[-229,-158],[-233,-162],[-236,-163],[-240,-168],[-243,-169],[-247,-174],[-255,-180],[-257,-181],[-261,-185],[-264,-186],[-267,-188],[-305,-182],[-299,-165],[-286,-152],[-285,-150],[-276,-146],[-269,-144],[-267,-142],[-247,-135],[-243,-131],[-238,-128],[-237,-125],[-234,-123],[-233,-120],[-226,-103],[-216,-61],[-192,-48],[-164,-38]],"c":true}],"h":1},{"t":165,"s":[{"i":[[-66.63,-23.8],[-74.74,-34.3],[-94.81,-41.73],[-103.45,-45.47],[-106.96,-47.22],[-111.64,-50.73],[-116.18,-54.77],[-118.52,-58.32],[-120.41,-61.68],[-125.78,-81.61],[-129.15,-113.21],[-135.08,-125.38],[-139.51,-129.51],[-145.93,-135.78],[-153.42,-140.63],[-167.4,-145.08],[-184.26,-147.32],[-207.17,-150.55],[-229.19,-158.07],[-235.31,-162.99],[-237.4,-164.49],[-240.4,-167.29],[-243.77,-170.93],[-246.2,-172.67],[-248.44,-173.51],[-250.88,-175.89],[-253.31,-178.55],[-259,-182.41],[-266.78,-186.85],[-283.24,-191.13],[-303.62,-187.57],[-304.74,-176.27],[-300.69,-168.24],[-299.13,-165.01],[-298.33,-162.44],[-292.71,-156.33],[-280.25,-147.82],[-271.33,-144.18],[-264.18,-141.8],[-256.81,-139.34],[-249.8,-137.08],[-247.65,-135.46],[-247.22,-134.16],[-245.99,-133.58],[-244.4,-133.33],[-234.31,-122.7],[-226.42,-102.45],[-222.6,-70.01],[-216.68,-61.76],[-212.98,-59.38],[-207.82,-54.93],[-187.97,-48.26],[-169.51,-42.19],[-161.99,-35.96],[-155.55,-30.12],[-153.54,9.66],[-122.1,10.67],[-99.72,-3.59],[-93.01,-8.69],[-86.03,-11.7],[-80.57,-15.93]],"o":[[-67.83,-31.69],[-88.22,-39.33],[-101.97,-44.86],[-105.94,-46.65],[-109.8,-49.35],[-114.83,-53.44],[-117.82,-57.23],[-119.82,-60.55],[-124.71,-71.25],[-128,-102.58],[-133.82,-123.88],[-137.92,-128.19],[-143.72,-133.72],[-150.78,-139.24],[-162.02,-143.92],[-178.52,-146.78],[-198.58,-149.02],[-222.48,-155.08],[-234.61,-162.49],[-236.71,-163.99],[-239.26,-166.07],[-242.65,-169.71],[-245.48,-172.42],[-247.68,-173.22],[-249.97,-174.86],[-252.55,-177.73],[-256.61,-180.73],[-264.08,-185.47],[-275.18,-189.84],[-297.46,-190],[-305.64,-179.4],[-302.26,-170.69],[-299.47,-166.04],[-298.56,-163.22],[-296.08,-159.41],[-284.79,-150.53],[-273.74,-145.03],[-266.55,-142.57],[-259.42,-140.05],[-252,-137.85],[-247.79,-135.88],[-247.36,-134.6],[-246.55,-133.66],[-244.92,-133.42],[-238.35,-128.22],[-228.34,-109.81],[-223.2,-83.27],[-216.32,-63.27],[-214.95,-59.82],[-209.13,-56.69],[-197.22,-49.51],[-174.85,-43.49],[-163.72,-38.58],[-157.25,-31.3],[-146.15,-11.21],[-137.16,21.17],[-103.35,-1.34],[-94.16,-7.19],[-88.97,-11.32],[-82.36,-14.05],[-72.82,-21.23]],"v":[[-62,-29],[-81.48,-36.81],[-100,-44],[-104.7,-46.06],[-108,-48],[-113.24,-52.09],[-117,-56],[-119.17,-59.43],[-121,-63],[-126.89,-92.1],[-133,-122],[-136.5,-126.79],[-141,-131],[-148.35,-137.51],[-157,-142],[-172.96,-145.93],[-190,-148],[-214.83,-152.82],[-234,-162],[-236.01,-163.49],[-238,-165],[-241.53,-168.5],[-245,-172],[-246.94,-172.94],[-249,-174],[-251.71,-176.81],[-254,-179],[-261.54,-183.94],[-270,-188],[-290.35,-190.56],[-305,-182],[-303.5,-173.48],[-300,-167],[-298.85,-164.12],[-298,-162],[-288.75,-153.43],[-276,-146],[-268.94,-143.37],[-262,-141],[-254.41,-138.6],[-248,-136],[-247.51,-135.03],[-247,-134],[-245.46,-133.5],[-244,-133],[-231.33,-116.26],[-225,-94],[-217,-64],[-216,-61],[-211,-58],[-206,-54],[-179,-45],[-166,-40],[-160,-34],[-154,-27],[-153,30],[-107,1],[-96,-6],[-91,-10],[-84,-13],[-79,-17]],"c":true}],"h":1},{"t":166,"s":[{"i":[[-154.05,7.22],[-150.99,29.25],[-146.88,27.4],[-145.68,26.49],[-145.18,25.12],[-144.4,24.9],[-143.25,25.12],[-142.68,24.49],[-142.19,23.12],[-140.03,21.94],[-136.91,20.59],[-118.64,8.6],[-93.58,-7.9],[-82.42,-14.83],[-80.26,-15.75],[-79.04,-16.7],[-77.42,-17.59],[-76.04,-18.7],[-74.42,-19.59],[-68.84,-23.51],[-61.56,-28.31],[-63.49,-30.97],[-69.76,-33.13],[-80.76,-37.29],[-89.95,-40.48],[-98.09,-43.39],[-103.68,-45.27],[-106.25,-47.08],[-108.33,-49.51],[-111.21,-50.4],[-125.88,-78.03],[-132.2,-121.19],[-151.05,-139.99],[-164.66,-145.4],[-178.44,-147.24],[-205.15,-150.03],[-216.47,-153.84],[-229.33,-158.25],[-235,-162.23],[-239.19,-166.48],[-243.29,-168.45],[-245.18,-171.28],[-250.17,-174.52],[-258.89,-182.77],[-280.55,-191.97],[-303.8,-187.04],[-302.44,-170.07],[-291.37,-155.52],[-287.37,-152.25],[-285.51,-152.23],[-284.42,-150.24],[-277.97,-148.2],[-269.09,-144.16],[-249.95,-137.82],[-245.75,-134.62],[-228.9,-111.19],[-224.32,-74.78],[-195.43,-51.75],[-161.19,-39.07],[-156.24,-31.38],[-154.26,-27.59]],"o":[[-152.55,29.8],[-148.15,28.05],[-145.84,26.93],[-145.35,25.59],[-144.77,24.85],[-143.64,25.04],[-142.84,24.93],[-142.36,23.59],[-141.07,22.39],[-137.95,21.04],[-126.85,14.06],[-102,-2.37],[-83.28,-14.46],[-80.9,-15.48],[-79.58,-16.4],[-77.96,-17.29],[-76.58,-18.4],[-74.96,-19.29],[-72.06,-21.86],[-63.59,-26.74],[-62.1,-30.4],[-67.32,-32.33],[-77.29,-36.05],[-87.09,-39.51],[-96,-42.75],[-101.93,-44.64],[-105.59,-46.33],[-107.62,-48.67],[-109.9,-50.65],[-124.36,-60.46],[-129.89,-110.13],[-145.18,-136.1],[-162.21,-143.74],[-172.28,-147.35],[-194.62,-149.44],[-214.38,-152.08],[-224.21,-156.23],[-234.03,-161.77],[-237.97,-164.52],[-241.75,-168.63],[-244.84,-169.66],[-247.83,-173.59],[-255.65,-178.96],[-268.33,-187.9],[-296.78,-190.3],[-306.52,-177.88],[-296.85,-160.75],[-287.68,-153.85],[-286.54,-151.69],[-284.65,-151.84],[-281.56,-148.64],[-271.85,-145.73],[-259.38,-140.52],[-246.35,-134.38],[-233.24,-124.29],[-224.55,-85.39],[-213.06,-54.5],[-172.64,-44.25],[-157.85,-31.67],[-155.45,-30.15],[-146.76,-10.97]],"v":[[-154,30],[-149.57,28.65],[-146,27],[-145.52,26.04],[-145,25],[-144.02,24.97],[-143,25],[-142.52,24.04],[-142,23],[-138.99,21.49],[-136,20],[-110.32,3.12],[-84,-14],[-81.66,-15.15],[-80,-16],[-78.5,-16.99],[-77,-18],[-75.5,-18.99],[-74,-20],[-66.21,-25.13],[-62,-30],[-65.4,-31.65],[-72,-34],[-83.93,-38.4],[-94,-42],[-100.01,-44.01],[-105,-46],[-106.94,-47.88],[-109,-50],[-112,-51],[-128,-95],[-139,-129],[-160,-143],[-167,-146],[-184,-148],[-214,-152],[-217,-154],[-233,-161],[-236,-163],[-241,-168],[-244,-169],[-246,-172],[-252,-176],[-263,-185],[-290,-191],[-305,-183],[-300,-166],[-288,-154],[-287,-152],[-285,-152],[-284,-150],[-275,-147],[-266,-143],[-247,-135],[-245,-134],[-226,-94],[-220,-67],[-181,-47],[-158,-32],[-156,-31],[-154,-27]],"c":true}],"h":1},{"t":167,"s":[{"i":[[-155.23,4.37],[-152.08,30.31],[-149.68,28.39],[-147,26.74],[-144.01,24.65],[-140.37,22.51],[-136.47,20.45],[-135.04,19.3],[-133.43,18.41],[-132.36,17.54],[-131.54,17.35],[-125.75,13.44],[-117.56,8.15],[-114.68,6.48],[-114.2,5.12],[-110.62,3.16],[-105.93,0.76],[-98.19,-5.11],[-87.83,-11.56],[-81.73,-15.27],[-77.39,-17.62],[-76.04,-18.7],[-74.42,-19.59],[-68.72,-23.64],[-60.74,-28.64],[-61.8,-30.41],[-65.62,-32.37],[-73.87,-35.74],[-84.6,-39.17],[-118.2,-52.37],[-127.51,-94.46],[-139.68,-133.34],[-156.85,-143.16],[-162.71,-144.31],[-188.19,-149.75],[-207.74,-152.09],[-226.82,-156.31],[-233.57,-161.68],[-236.23,-162.42],[-249.85,-175.06],[-257.06,-179.33],[-260.25,-182.84],[-264.22,-184.51],[-267.64,-186.29],[-271.47,-188.84],[-302.52,-191.36],[-294.53,-158.17],[-288.29,-153.79],[-285.69,-151.4],[-273.67,-147.16],[-262.6,-142.01],[-251.44,-137.43],[-240.75,-129.88],[-238.68,-125.92],[-235.73,-123.13],[-227.7,-101.28],[-219.21,-62.91],[-190.81,-50.92],[-169.65,-43.58],[-164.31,-39.07],[-158.52,-34.28]],"o":[[-152.99,30.61],[-150.42,29.2],[-148,27.42],[-145.01,25.36],[-141.88,23.28],[-137.66,21.09],[-135.58,19.6],[-133.97,18.71],[-132.59,17.61],[-131.84,17.4],[-128.47,15.36],[-120.3,9.84],[-114.83,6.92],[-114.36,5.58],[-112.4,4.03],[-107.38,1.53],[-101.53,-2.83],[-91.34,-9.48],[-83.28,-14.46],[-78.78,-16.85],[-76.58,-18.4],[-74.96,-19.29],[-72.1,-21.82],[-63.05,-27.05],[-60.99,-29.97],[-64.11,-31.6],[-70.07,-34.41],[-81.14,-38.13],[-103.82,-45.78],[-128.4,-79.86],[-132.79,-121.06],[-153.29,-140.8],[-160.94,-144.76],[-175.97,-148.29],[-204.42,-151.47],[-219.53,-154.61],[-233.41,-160.24],[-234.86,-162.65],[-243.24,-167.7],[-255.86,-179.66],[-259.51,-181.08],[-262.92,-184.6],[-267.05,-186.28],[-270.38,-187.11],[-283.08,-192.43],[-307.81,-173.51],[-289.1,-154.83],[-286.12,-152.46],[-280.21,-148.19],[-265.24,-143.95],[-254.25,-138.76],[-244.75,-132.71],[-238.26,-127.2],[-236.88,-123.48],[-228.08,-111.26],[-222.43,-71.42],[-200.87,-52.3],[-178.58,-46.87],[-166.36,-40.43],[-160.7,-36.12],[-146.41,-16.12]],"v":[[-154,30],[-151.25,29.75],[-149,28],[-146.01,26.05],[-143,24],[-139.02,21.8],[-136,20],[-134.5,19.01],[-133,18],[-132.1,17.47],[-131,17],[-123.02,11.64],[-115,7],[-114.52,6.03],[-114,5],[-109,2.35],[-105,0],[-94.77,-7.29],[-84,-14],[-80.26,-16.06],[-77,-18],[-75.5,-18.99],[-74,-20],[-65.89,-25.34],[-61,-30],[-62.96,-31],[-67,-33],[-77.5,-36.94],[-87,-40],[-124,-68],[-130,-107],[-150,-139],[-159,-144],[-165,-145],[-200,-151],[-212,-153],[-233,-160],[-234,-162],[-237,-163],[-255,-179],[-258,-180],[-262,-184],[-265,-185],[-270,-187],[-272,-189],[-305,-183],[-291,-156],[-287,-153],[-285,-151],[-268,-145],[-260,-141],[-248,-135],[-239,-128],[-238,-125],[-235,-122],[-225,-86],[-209,-57],[-182,-48],[-168,-42],[-163,-38],[-157,-32]],"c":true}],"h":1},{"t":168,"s":[{"i":[[-71.19,-21.39],[-84.11,-39.5],[-119.03,-55.18],[-127.91,-81.25],[-130.45,-104.73],[-133.07,-115.93],[-134.96,-123.06],[-136.79,-125.9],[-138.58,-127.37],[-143.55,-133.85],[-152.78,-141.49],[-178.41,-149],[-216.59,-152.97],[-227.11,-157.64],[-228.5,-158.75],[-231.5,-160.05],[-234.92,-161.31],[-237.76,-163.5],[-239.99,-166.21],[-241.58,-167.1],[-242.76,-166.89],[-243.31,-167.5],[-243.85,-168.88],[-248.72,-172.89],[-255.62,-178.26],[-261.92,-183.04],[-267.87,-187.18],[-283.63,-191.08],[-303.7,-187.4],[-305.23,-179.96],[-303.62,-174.78],[-300.36,-166.83],[-295.11,-159.97],[-287.9,-153.86],[-279.25,-149.35],[-268.88,-145.22],[-259.1,-141.48],[-245.86,-134.09],[-235.28,-121.97],[-230.25,-109.78],[-227.71,-98.06],[-226.09,-87.83],[-224.69,-78.41],[-220.68,-69.5],[-217.75,-63.79],[-206.86,-56.13],[-177.54,-48.81],[-167.44,-41.33],[-164.8,-40.69],[-156.84,-32.29],[-155.87,7.68],[-151.51,28.8],[-143.27,25.22],[-139.85,22.82],[-136.85,20.82],[-133.85,18.82],[-132.08,17.7],[-120.19,9.34],[-114.4,5.24],[-106.86,1.52],[-98.65,-4.29]],"o":[[-70.6,-36.16],[-108.33,-49.01],[-126.69,-73.39],[-129.79,-96.93],[-132.59,-113.4],[-134.25,-120.76],[-136.25,-125.46],[-137.95,-126.85],[-140.91,-130.86],[-149.49,-139.17],[-165.62,-147.51],[-203.9,-151.73],[-226.61,-157.26],[-228.06,-158.38],[-230.29,-159.65],[-233.82,-160.88],[-237.01,-162.65],[-239.25,-165.28],[-241.2,-167.16],[-242.36,-166.97],[-243.14,-167.06],[-243.67,-168.41],[-246.41,-171.01],[-253.32,-176.51],[-259.99,-181.45],[-265.87,-185.9],[-275.53,-190.14],[-297.71,-189.71],[-305.42,-181.57],[-304.34,-176.56],[-301.8,-169.6],[-297.01,-162.02],[-290.52,-155.68],[-282.26,-150.69],[-272.34,-146.48],[-262.26,-142.72],[-250.47,-137.36],[-238.26,-126.4],[-231.39,-113.5],[-228.41,-102.06],[-226.5,-91.13],[-225.19,-81.47],[-222.92,-72.22],[-217.85,-65.28],[-214.2,-60.04],[-192.55,-50.47],[-167.58,-42.75],[-166.08,-40.31],[-160.06,-36.59],[-148.07,-11.88],[-152.8,32.16],[-147.12,26.49],[-141.16,23.2],[-138.16,21.2],[-135.16,19.2],[-132.19,17.22],[-125.62,13.52],[-114.66,6.85],[-110.85,3.1],[-102.01,-2.43],[-83.6,-14.03]],"v":[[-60,-30],[-96.22,-44.25],[-124,-67],[-128.85,-89.09],[-132,-111],[-133.66,-118.34],[-136,-125],[-137.37,-126.38],[-139,-128],[-146.52,-136.51],[-156,-143],[-191.16,-150.36],[-226,-157],[-227.58,-158.01],[-229,-159],[-232.66,-160.47],[-236,-162],[-238.5,-164.39],[-241,-167],[-241.97,-167.04],[-243,-167],[-243.49,-167.95],[-244,-169],[-251.02,-174.7],[-258,-180],[-263.9,-184.47],[-270,-188],[-290.67,-190.4],[-305,-183],[-304.79,-178.26],[-303,-173],[-298.69,-164.43],[-293,-158],[-285.08,-152.27],[-276,-148],[-265.57,-143.97],[-256,-140],[-242.06,-130.25],[-233,-117],[-229.33,-105.92],[-227,-94],[-225.64,-84.65],[-224,-76],[-219,-67],[-217,-63],[-204,-55],[-168,-43],[-167,-41],[-164,-40],[-155,-28],[-155,30],[-150,28],[-142,24],[-139,22],[-136,20],[-133,18],[-131,17],[-115,7],[-114,5],[-105,0],[-96,-6]],"c":true}],"h":1},{"t":169,"s":[{"i":[[-60.77,-29.03],[-74.28,-37.51],[-98,-45.22],[-118.04,-56.58],[-127.34,-77.14],[-130.11,-102.98],[-133.26,-115.28],[-135.48,-120.67],[-137.52,-125.44],[-139.75,-128.32],[-143.4,-133.41],[-146.24,-136.7],[-149.24,-138.96],[-151.45,-140.67],[-177.82,-149.3],[-221.28,-153.63],[-235.59,-161.68],[-239.62,-164.96],[-243.63,-167.94],[-247.72,-170.95],[-254.1,-176.55],[-262.05,-183.4],[-279.06,-190.12],[-303.25,-188.86],[-303.46,-170.76],[-290.02,-155.38],[-275.3,-147.44],[-257.61,-142.24],[-250.6,-137.89],[-249.41,-136.28],[-242.68,-131.02],[-235.67,-121.59],[-230.19,-107.88],[-227.13,-91.97],[-225.19,-80.83],[-223.29,-72.4],[-213.2,-60.16],[-192.8,-52.21],[-175.89,-46.77],[-163.18,-39.92],[-152.38,-16.63],[-156.37,18.85],[-144.53,25.31],[-129.46,15.9],[-118.78,8.87],[-110.03,2.94],[-104.31,-0.54],[-100.41,-2.6],[-99.04,-3.7],[-97.42,-4.59],[-96.04,-5.7],[-94.42,-6.59],[-93.04,-7.7],[-91.42,-8.59],[-90.04,-9.7],[-88.42,-10.59],[-87.37,-11.48],[-86.59,-11.65],[-80.86,-15.27],[-73.51,-20.4],[-66.65,-24.53]],"o":[[-66.53,-34.82],[-90.01,-42.71],[-112.01,-52.16],[-125.79,-69.14],[-129.5,-94.06],[-132.52,-113.19],[-134.74,-119.02],[-136.9,-124.28],[-138.95,-127.46],[-142.53,-132.06],[-145.25,-135.73],[-148.51,-138.38],[-150.7,-140.11],[-163.43,-147.74],[-206.75,-152.25],[-234.28,-160.7],[-238.26,-163.81],[-242.28,-166.96],[-246.35,-169.93],[-251.57,-174.1],[-259.34,-181.2],[-269.94,-187.68],[-295.72,-190.71],[-306.7,-177.32],[-295.12,-159.79],[-281.5,-149.57],[-263.36,-143.78],[-251.14,-138.5],[-249.73,-136.78],[-245.59,-133.72],[-237.72,-124.95],[-231.63,-112.9],[-227.95,-97.42],[-225.55,-83.63],[-224.06,-75.21],[-218.8,-64.05],[-200.2,-54.24],[-180.8,-48.31],[-167.08,-42.58],[-152.95,-27.3],[-154.09,6.45],[-149.8,28.36],[-134.37,19.08],[-121.77,10.9],[-112.91,4.89],[-105.85,0.26],[-101.59,-1.97],[-99.58,-3.4],[-97.96,-4.29],[-96.58,-5.4],[-94.96,-6.29],[-93.58,-7.4],[-91.96,-8.29],[-90.58,-9.4],[-88.96,-10.29],[-87.57,-11.41],[-86.87,-11.6],[-83.35,-13.57],[-75.94,-18.69],[-69.02,-23.26],[-62.53,-27.41]],"v":[[-60,-31],[-82.15,-40.11],[-105.01,-48.69],[-122,-63],[-128.42,-85.6],[-132,-111],[-134,-117.15],[-136,-122],[-138.24,-126.45],[-141,-130],[-144.33,-134.57],[-148,-138],[-149.97,-139.54],[-152,-141],[-192.28,-150.77],[-233,-160],[-236.93,-162.74],[-241,-166],[-244.99,-168.94],[-249,-172],[-256.72,-178.87],[-265,-185],[-287.39,-190.41],[-305,-183],[-299.29,-165.27],[-288,-154],[-269.33,-145.61],[-252,-139],[-250.17,-137.34],[-249,-136],[-240.2,-127.98],[-234,-118],[-229.07,-102.65],[-226,-86],[-224.63,-78.02],[-222,-70],[-206.7,-57.2],[-186,-50],[-171.49,-44.67],[-160,-36],[-153.24,-5.09],[-155,31],[-139.45,22.2],[-125,13],[-115.85,6.88],[-107,1],[-102.95,-1.25],[-100,-3],[-98.5,-4],[-97,-5],[-95.5,-5.99],[-94,-7],[-92.5,-7.99],[-91,-9],[-89.5,-9.99],[-88,-11],[-87.12,-11.54],[-86,-12],[-78.4,-16.98],[-71,-22],[-64.59,-25.97]],"c":true}],"h":1},{"t":170,"s":[{"i":[[-157.87,2.8],[-153.6,31.15],[-151.06,28.58],[-147.04,26.59],[-142.57,24.55],[-141.04,23.3],[-139.43,22.41],[-138.04,21.3],[-136.43,20.41],[-135.04,19.3],[-133.43,18.41],[-132.36,17.54],[-131.54,17.35],[-123.42,11.96],[-111.36,3.8],[-104.35,-0.5],[-100.5,-2.52],[-99.04,-3.7],[-97.42,-4.59],[-96.04,-5.7],[-94.42,-6.59],[-93.04,-7.7],[-91.42,-8.59],[-90.04,-9.7],[-88.42,-10.59],[-87.37,-11.48],[-86.59,-11.65],[-81.38,-14.94],[-74.48,-19.79],[-59.65,-28.64],[-63.13,-32.52],[-75.29,-38.71],[-88.42,-43.38],[-98.76,-46.03],[-105.07,-49.98],[-112.28,-52.72],[-122.19,-62.65],[-129.85,-97.52],[-136.42,-123.55],[-144.59,-135.48],[-163.08,-147],[-214.38,-150.2],[-239.12,-164.88],[-248.96,-171.57],[-254.11,-176.54],[-258.63,-179.38],[-260.62,-181.75],[-263.2,-182.5],[-265.31,-184.62],[-311.42,-195.13],[-300.21,-167.76],[-287.31,-154.06],[-256.16,-141.76],[-248.47,-135.35],[-245.8,-134.73],[-238.65,-125.86],[-233.89,-117.31],[-228.17,-90.54],[-216.86,-62.33],[-195.73,-53.82],[-165.48,-44.71]],"o":[[-154.57,31.61],[-151.84,29.64],[-148.75,27.32],[-143.95,25.21],[-141.58,23.6],[-139.97,22.71],[-138.58,21.6],[-136.97,20.71],[-135.58,19.6],[-133.97,18.71],[-132.59,17.61],[-131.84,17.4],[-127.24,14.56],[-115.48,6.58],[-105.85,0.26],[-101.67,-1.89],[-99.58,-3.4],[-97.96,-4.29],[-96.58,-5.4],[-94.96,-6.29],[-93.58,-7.4],[-91.96,-8.29],[-90.58,-9.4],[-88.96,-10.29],[-87.57,-11.41],[-86.87,-11.6],[-83.39,-13.55],[-76.92,-18.06],[-66.47,-24.88],[-60.17,-32.15],[-70.16,-36.15],[-85.45,-42.24],[-95.62,-45.93],[-102.96,-47.85],[-109.51,-52.33],[-117.74,-56.77],[-129.87,-76.84],[-134.25,-117.74],[-141.47,-132.26],[-154.83,-143.05],[-192.56,-153.61],[-236.35,-161.76],[-245.55,-169.62],[-253.52,-175.22],[-257.66,-179.28],[-260.33,-180.15],[-261.94,-182.6],[-264.6,-183.37],[-279.77,-192.48],[-303.13,-170.41],[-293.04,-157.36],[-268.25,-145.75],[-248.55,-136.7],[-247.07,-134.3],[-241.81,-131.07],[-235.36,-120.17],[-228.95,-104.43],[-222.16,-68.65],[-202.52,-55.32],[-177.65,-48.09],[-147.13,-17.19]],"v":[[-156,31],[-152.72,30.4],[-150,28],[-145.5,25.9],[-142,24],[-140.5,23.01],[-139,22],[-137.5,21.01],[-136,20],[-134.5,19.01],[-133,18],[-132.1,17.47],[-131,17],[-119.45,9.27],[-107,1],[-103.01,-1.19],[-100,-3],[-98.5,-4],[-97,-5],[-95.5,-5.99],[-94,-7],[-92.5,-7.99],[-91,-9],[-89.5,-9.99],[-88,-11],[-87.12,-11.54],[-86,-12],[-79.15,-16.5],[-71,-22],[-60,-31],[-66,-34],[-79,-40],[-93,-45],[-101,-47],[-107,-51],[-114,-54],[-124,-66],[-133,-112],[-139,-128],[-148,-138],[-172,-149],[-233,-160],[-242,-167],[-252,-174],[-256,-178],[-260,-180],[-261,-182],[-264,-183],[-266,-185],[-304,-173],[-299,-166],[-278,-150],[-249,-137],[-248,-135],[-245,-134],[-237,-123],[-233,-115],[-225,-79],[-208,-58],[-190,-52],[-159,-35]],"c":true}],"h":1},{"t":171,"s":[{"i":[[-159.71,7.57],[-139.76,22.3],[-115.9,6.7],[-99.56,-3.92],[-87.61,-11.37],[-83.68,-13.51],[-83.19,-14.88],[-82.39,-15.09],[-81.26,-14.88],[-80.68,-15.51],[-80.18,-16.88],[-79.4,-17.1],[-78.25,-16.89],[-77.68,-17.51],[-77.19,-18.88],[-74.12,-20.46],[-69.54,-22.48],[-68.04,-23.7],[-66.42,-24.59],[-62.91,-27.4],[-58.92,-30.31],[-61.1,-32.63],[-69.62,-37],[-80.54,-41.39],[-90.51,-44.74],[-96.65,-46.7],[-100.85,-47.52],[-104.01,-49.16],[-107,-51.47],[-110.67,-53.16],[-114.29,-54.46],[-120.14,-59.81],[-125.87,-69.02],[-129.53,-81.53],[-131.18,-97.64],[-134.78,-116.39],[-142.43,-132.43],[-147.53,-137.63],[-150.2,-140.41],[-152.26,-141.49],[-154.4,-141.66],[-156.17,-143.01],[-157.46,-144.74],[-213.97,-149.78],[-241.79,-165.6],[-263.25,-185.79],[-303.46,-190.35],[-300.17,-167.98],[-297.6,-162.79],[-292.49,-158.67],[-290.37,-156.25],[-271,-147.31],[-253.3,-139.33],[-244.16,-132.75],[-241.61,-129.79],[-231.56,-108.34],[-225.55,-73.75],[-217.73,-64.99],[-207.24,-58.76],[-187.29,-52.79],[-161.08,-40.41]],"o":[[-147.55,27.2],[-123.93,12.05],[-103.51,-1.24],[-91.61,-8.99],[-83.83,-13.07],[-83.36,-14.41],[-82.77,-15.15],[-81.64,-14.96],[-80.84,-15.07],[-80.35,-16.41],[-79.77,-17.15],[-78.64,-16.96],[-77.83,-17.07],[-77.36,-18.42],[-75.85,-19.72],[-70.97,-21.84],[-68.58,-23.4],[-66.96,-24.29],[-64.7,-26.25],[-60.02,-29.43],[-59.04,-31.38],[-66.39,-35.44],[-76.78,-40.01],[-87.4,-43.75],[-95.22,-46.44],[-99.46,-47.24],[-103.01,-48.42],[-106,-50.68],[-109.27,-52.67],[-113.18,-54.05],[-117.7,-57.05],[-124.22,-65.79],[-128.69,-76.45],[-130.78,-92.12],[-133.06,-109.93],[-139.46,-127.65],[-146.68,-136.68],[-149.29,-139.5],[-151.56,-141.41],[-153.68,-141.62],[-155.69,-142.39],[-157.05,-144.18],[-179.46,-155.21],[-238.25,-162.74],[-255.18,-175.63],[-289.04,-191.82],[-306.1,-174.33],[-297.35,-164.1],[-295.41,-159.93],[-290.68,-157.85],[-282.38,-150.88],[-256.48,-141.3],[-246.32,-133.93],[-242.36,-130.04],[-233.94,-119.84],[-227.13,-86.99],[-218.87,-66.77],[-210.61,-59.8],[-194.87,-54.6],[-169.61,-46.02],[-149.07,-12.72]],"v":[[-156,32],[-131.84,17.18],[-107,1],[-95.59,-6.46],[-84,-13],[-83.52,-13.96],[-83,-15],[-82.02,-15.03],[-81,-15],[-80.52,-15.96],[-80,-17],[-79.02,-17.03],[-78,-17],[-77.52,-17.96],[-77,-19],[-72.55,-21.15],[-69,-23],[-67.5,-23.99],[-66,-25],[-61.46,-28.42],[-59,-31],[-63.75,-34.03],[-72,-38],[-83.97,-42.57],[-94,-46],[-98.05,-46.97],[-102,-48],[-105.01,-49.92],[-108,-52],[-111.92,-53.6],[-115,-55],[-122.18,-62.8],[-127,-72],[-130.15,-86.82],[-132,-103],[-137.12,-122.02],[-146,-136],[-148.41,-138.57],[-151,-141],[-152.97,-141.55],[-155,-142],[-156.61,-143.6],[-158,-145],[-235,-161],[-245,-168],[-277,-189],[-305,-181],[-298,-165],[-297,-162],[-291,-158],[-290,-156],[-263,-144],[-249,-136],[-243,-131],[-241,-129],[-229,-96],[-221,-69],[-215,-63],[-202,-57],[-180,-50],[-157,-31]],"c":true}],"h":1},{"t":172,"s":[{"i":[[-159.42,0.27],[-152.64,29.91],[-147.52,27.69],[-145.38,25.25],[-143.51,25.23],[-142.37,23.25],[-140.51,23.23],[-139.37,21.25],[-137.51,21.23],[-136.37,19.25],[-134.51,19.23],[-133.38,17.25],[-126.1,14.06],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.82,0.21],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.07,-13.65],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.39,-18.76],[-70.08,-21.96],[-66.85,-24.18],[-58.55,-29.38],[-65.48,-35.67],[-80.72,-41.84],[-103.5,-48.66],[-111.95,-53.96],[-120.6,-60.65],[-131.29,-99.94],[-138.39,-125.88],[-144.41,-133.25],[-149.28,-139.72],[-155.77,-142.82],[-162.56,-147.12],[-189.27,-152.88],[-222.32,-156.46],[-236.74,-161.79],[-238.91,-163.3],[-244.25,-167.79],[-250.21,-172.46],[-254.85,-175.08],[-259.82,-179.51],[-280.99,-193.03],[-306.1,-181.07],[-293.92,-159.39],[-262.28,-146],[-233.68,-115.76],[-226.32,-75.72],[-219.68,-67.03],[-216.8,-64.58],[-200.76,-56.76],[-177.02,-50.41],[-168.53,-44.17],[-163.36,-40.61]],"o":[[-154.5,33.37],[-148.95,27.87],[-145.67,26.85],[-144.53,24.7],[-142.68,24.85],[-141.54,22.69],[-139.68,22.85],[-138.54,20.69],[-136.68,20.85],[-135.54,18.69],[-133.67,18.85],[-130.69,15.52],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.08,2.21],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-86.76,-11.46],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-74.94,-20.3],[-68.16,-23.8],[-62.94,-27.93],[-59.15,-32.9],[-75.85,-40.05],[-93.97,-46.53],[-110.92,-52.95],[-115.76,-57.6],[-132.23,-76.92],[-137.34,-120.56],[-142.04,-131.64],[-147.73,-136.91],[-152.72,-142.28],[-160.61,-145.38],[-176.2,-152.05],[-212.11,-154.89],[-232.34,-160.27],[-238.82,-163.78],[-242.57,-165.65],[-248.83,-170.95],[-253.11,-174.95],[-258.04,-177.64],[-269.76,-186.31],[-305.03,-187.83],[-300.18,-165.67],[-278.93,-149.05],[-239.61,-130.56],[-227.83,-89.13],[-219.29,-68.17],[-217,-65.38],[-209.7,-59.41],[-184.95,-51.78],[-169.56,-46.18],[-164.98,-41.46],[-147.59,-22.01]],"v":[[-157,31],[-151,29],[-146,27],[-145,25],[-143,25],[-142,23],[-140,23],[-139,21],[-137,21],[-136,19],[-134,19],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-69,-23],[-66,-25],[-59,-32],[-71,-38],[-84,-43],[-111,-53],[-112,-54],[-123,-64],[-136,-116],[-141,-130],[-146,-135],[-151,-141],[-158,-144],[-165,-148],[-202,-154],[-229,-159],[-238,-163],[-240,-164],[-246,-169],[-252,-174],[-256,-176],[-262,-181],[-295,-190],[-303,-173],[-289,-156],[-252,-139],[-230,-99],[-221,-70],[-218,-66],[-216,-64],[-192,-54],[-171,-47],[-167,-43],[-162,-39]],"c":true}],"h":1},{"t":173,"s":[{"i":[[-161.49,4.03],[-152.27,30.34],[-146.02,26.29],[-131.59,16.98],[-113.58,5.21],[-99.66,-3.85],[-87.49,-11.42],[-83.68,-13.51],[-83.19,-14.88],[-82.39,-15.09],[-81.26,-14.88],[-80.68,-15.51],[-80.18,-16.88],[-79.4,-17.1],[-78.25,-16.89],[-77.68,-17.51],[-77.19,-18.88],[-74.13,-20.45],[-69.57,-22.46],[-68.04,-23.7],[-66.42,-24.59],[-65.04,-25.7],[-63.42,-26.59],[-62.36,-27.44],[-61.49,-27.66],[-58.05,-31.72],[-65.22,-36.14],[-78.51,-42.17],[-91.33,-46.33],[-102.12,-50.07],[-110.07,-53.11],[-112.7,-55.27],[-115.28,-56.49],[-119.48,-59.95],[-122.11,-63.83],[-123.65,-65.64],[-124.7,-66.51],[-129.8,-78.19],[-132.88,-98.22],[-138.41,-123.56],[-152.47,-142.29],[-174.32,-151.12],[-198.69,-154.13],[-215.19,-155.72],[-227.4,-157.6],[-239.39,-163.59],[-252.73,-173.33],[-259.54,-178.56],[-262.15,-180.18],[-267.76,-184.86],[-303.11,-192.64],[-301.49,-169.21],[-292.37,-159.25],[-278.28,-150.99],[-257.48,-143.37],[-252.85,-139.81],[-240.06,-127.63],[-232.57,-106.86],[-229.23,-90.01],[-219.74,-65.83],[-170.83,-52.74]],"o":[[-154.51,31.44],[-148.03,27.76],[-137.55,20.88],[-119.6,9.15],[-103.66,-1.14],[-91.58,-8.99],[-83.83,-13.07],[-83.36,-14.41],[-82.77,-15.15],[-81.64,-14.96],[-80.84,-15.07],[-80.35,-16.41],[-79.77,-17.15],[-78.64,-16.96],[-77.83,-17.07],[-77.36,-18.42],[-75.85,-19.73],[-70.99,-21.82],[-68.58,-23.4],[-66.96,-24.29],[-65.58,-25.4],[-63.96,-26.29],[-62.62,-27.37],[-61.79,-27.59],[-57.94,-30.15],[-61.69,-34.72],[-74.1,-40.51],[-87.13,-45.08],[-98.83,-49.01],[-107.74,-52.12],[-111.81,-54.78],[-114.44,-56.13],[-118.18,-58.54],[-121.45,-62.6],[-123.3,-65.39],[-124.35,-66.2],[-128.11,-72.08],[-132.19,-91.26],[-135.67,-115.16],[-146.8,-137.12],[-166.72,-149.31],[-190.3,-153.54],[-210.99,-155.42],[-223.39,-156.81],[-234.58,-160.39],[-247.68,-169.12],[-257.31,-177.07],[-260.84,-179.8],[-265.12,-183.03],[-280.85,-191.52],[-305.98,-174.98],[-295.14,-161.54],[-283.44,-153.27],[-266.41,-146.11],[-254.16,-140.2],[-246.46,-133.69],[-233.66,-113.77],[-229.93,-95.34],[-224.96,-72.58],[-192.92,-52.53],[-148.19,-18.8]],"v":[[-157,32],[-150.15,29.05],[-144,25],[-125.59,13.07],[-107,1],[-95.62,-6.42],[-84,-13],[-83.52,-13.96],[-83,-15],[-82.02,-15.03],[-81,-15],[-80.52,-15.96],[-80,-17],[-79.02,-17.03],[-78,-17],[-77.52,-17.96],[-77,-19],[-72.56,-21.14],[-69,-23],[-67.5,-23.99],[-66,-25],[-64.5,-25.99],[-63,-27],[-62.08,-27.52],[-61,-28],[-59.87,-33.22],[-69,-38],[-82.82,-43.62],[-96,-48],[-104.93,-51.09],[-111,-54],[-113.57,-55.7],[-116,-57],[-120.46,-61.28],[-123,-65],[-124,-65.92],[-125,-67],[-130.99,-84.73],[-134,-105],[-142.6,-130.34],[-160,-146],[-182.31,-152.33],[-207,-155],[-219.29,-156.27],[-231,-159],[-243,-166],[-256,-176],[-260,-179],[-263,-181],[-270,-186],[-305,-181],[-298,-165],[-289,-157],[-271,-148],[-255,-141],[-252,-139],[-237,-121],[-231,-100],[-228,-85],[-210,-61],[-161,-38]],"c":true}],"h":1},{"t":174,"s":[{"i":[[-293.57,-189.35],[-295.66,-188.95],[-296.68,-189.06],[-303.92,-185.72],[-304.59,-175.64],[-297.08,-162.71],[-283.83,-154.1],[-273.27,-149.65],[-264.91,-146.34],[-257.75,-142.8],[-252.37,-139.11],[-241.48,-128.2],[-232.84,-108.2],[-229.48,-92.21],[-227.15,-80.96],[-225.09,-75.54],[-223.5,-71.72],[-219.19,-67.07],[-212.72,-63.89],[-199.96,-58.29],[-183.47,-53.35],[-175.09,-49.75],[-170.52,-47.5],[-166.32,-43.68],[-161.21,-38.28],[-156.27,-24.24],[-157.24,-3.2],[-158.83,14.55],[-158.31,31.16],[-155.51,32.21],[-153.25,31.13],[-149.71,29.01],[-145.09,25.7],[-117.96,8.16],[-83.44,-14.44],[-65.86,-25.15],[-57.85,-30.43],[-61.38,-34.53],[-72.65,-40.42],[-75.23,-41.37],[-77.14,-41.67],[-99.1,-49.28],[-123.87,-63.48],[-131.14,-81.22],[-133.08,-97.26],[-136.7,-115.77],[-143.87,-132.32],[-148.37,-137.79],[-150.35,-140.46],[-155.45,-143.87],[-163.27,-147.2],[-179.21,-152.66],[-202.47,-154.88],[-218.25,-156.76],[-229.43,-158.59],[-238.65,-162.89],[-245.8,-168.4],[-249.74,-171.1],[-252.28,-172.46],[-260.6,-179.05],[-273.78,-187.89]],"o":[[-295.31,-188.92],[-296.34,-189.02],[-301.62,-188.15],[-305.41,-179.47],[-300.67,-166.67],[-288.67,-156.43],[-276.06,-150.73],[-267.69,-147.46],[-259.82,-143.99],[-254.03,-140.36],[-245.56,-133.6],[-235.12,-115.5],[-230.15,-96.23],[-227.97,-84.57],[-225.58,-76.92],[-224.05,-72.93],[-221.33,-68.62],[-214.88,-64.7],[-205.48,-60.12],[-188.96,-54.91],[-176.83,-50.5],[-171.94,-48.25],[-168.22,-45.29],[-162.82,-40.18],[-157.15,-30.64],[-156.32,-10.52],[-158.42,7.97],[-158.77,26.15],[-156.38,32.4],[-153.94,31.58],[-151.41,30.16],[-146.55,26.78],[-129.74,15.89],[-94.81,-7],[-68.93,-23.68],[-60.32,-28.52],[-58.05,-32.57],[-68.68,-38.46],[-74.66,-41.28],[-76.46,-41.56],[-88.66,-46.04],[-116.71,-58],[-130.1,-76.34],[-132.63,-91.68],[-135.02,-109.36],[-141.13,-127.25],[-147.69,-136.81],[-149.7,-139.62],[-152.82,-142.52],[-160.68,-146.21],[-171.98,-151.22],[-194.46,-154.49],[-214.53,-156.46],[-225.7,-157.82],[-236,-161.19],[-243.55,-166.49],[-248.85,-170.62],[-251.46,-172.02],[-256.46,-175.6],[-269.26,-185.19],[-284.8,-190.79]],"v":[[-295,-189],[-296,-188.99],[-297,-189],[-304.66,-182.59],[-303,-172],[-292.87,-159.57],[-279,-152],[-270.48,-148.55],[-262,-145],[-255.89,-141.58],[-251,-138],[-238.3,-121.85],[-231,-100],[-228.73,-88.39],[-226,-78],[-224.57,-74.23],[-223,-71],[-217.03,-65.89],[-211,-63],[-194.46,-56.6],[-178,-51],[-173.52,-49],[-170,-47],[-164.57,-41.93],[-160,-36],[-156.29,-17.38],[-158,4],[-158.8,20.35],[-157,32],[-154.72,31.89],[-153,31],[-148.13,27.9],[-144,25],[-106.39,0.58],[-70,-23],[-63.09,-26.84],[-58,-32],[-65.03,-36.49],[-74,-41],[-75.85,-41.47],[-78,-42],[-107.9,-53.64],[-128,-72],[-131.89,-86.45],[-134,-103],[-138.92,-121.51],[-147,-136],[-149.03,-138.71],[-151,-141],[-158.06,-145.04],[-165,-148],[-186.84,-153.57],[-211,-156],[-221.97,-157.29],[-233,-160],[-241.1,-164.69],[-248,-170],[-250.6,-171.56],[-253,-173],[-264.93,-182.12],[-278,-189]],"c":true}],"h":1},{"t":175,"s":[{"i":[[-294.3,-189.17],[-301.22,-187.37],[-304.57,-183.65],[-304.5,-175.67],[-300.68,-168.93],[-297.7,-164.68],[-295.61,-162.24],[-291.54,-159.11],[-287.97,-156.56],[-284.19,-154.45],[-280.37,-152.63],[-271.82,-149.22],[-260.38,-145.02],[-256.79,-142.78],[-256.03,-142.03],[-254.25,-140.46],[-251.82,-138.67],[-248.07,-135.28],[-244.91,-131.19],[-242.6,-128.98],[-237.69,-119.46],[-234.72,-109.65],[-232.13,-104.56],[-230.07,-90.8],[-222.01,-69.92],[-211.33,-63.05],[-197.17,-58.6],[-159.54,-44.65],[-157.34,-4.67],[-161.65,39.29],[-150.85,29.82],[-139.16,22.15],[-126.76,14.69],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-88.85,-10.18],[-83.08,-14.06],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-57.86,-28.46],[-64.77,-37.09],[-115.3,-51.96],[-132.27,-107.96],[-143.79,-130.08],[-146.61,-136.47],[-158.49,-146.31],[-186.33,-154.05],[-226.06,-156.9],[-243.1,-166.05],[-259.35,-177.87],[-267.33,-183.59],[-280.39,-189.5]],"o":[[-298.93,-188.05],[-304.04,-185.18],[-305.41,-178.46],[-302.14,-170.91],[-298.39,-165.81],[-296.31,-162.89],[-292.81,-160.08],[-289.12,-157.35],[-285.5,-155.13],[-281.62,-153.19],[-275.63,-150.46],[-264.2,-146.5],[-257.03,-143.02],[-256.29,-142.29],[-255.09,-141.12],[-252.62,-139.23],[-249.37,-136.68],[-245.84,-132.53],[-243.41,-129.22],[-239.66,-124.16],[-234.89,-112.09],[-233.89,-106.58],[-230.18,-95.83],[-225.28,-75.07],[-213.55,-64.4],[-203.55,-59.54],[-175.84,-51.99],[-155.79,-18.59],[-158.62,10.15],[-152.16,30.2],[-145.93,25.1],[-133.35,18.2],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.16,-9.8],[-85.82,-13.09],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-70.61,-22.96],[-58.07,-33.72],[-90.59,-49.14],[-135.95,-82.92],[-141.76,-128.66],[-146.33,-134.11],[-150.12,-140.33],[-172.7,-153.15],[-212.41,-156],[-240.16,-163.47],[-253.32,-172.91],[-266.6,-182.37],[-272.06,-186.51],[-289.35,-190.47]],"v":[[-295,-189],[-302.63,-186.28],[-305,-181],[-303.32,-173.29],[-300,-168],[-297,-163.79],[-294,-161],[-290.33,-158.23],[-287,-156],[-282.9,-153.82],[-279,-152],[-268.01,-147.86],[-257,-143],[-256.54,-142.53],[-256,-142],[-253.43,-139.84],[-251,-138],[-246.96,-133.9],[-244,-130],[-242,-128],[-236,-115],[-234,-107],[-232,-104],[-228,-84],[-216,-66],[-209,-62],[-192,-57],[-157,-27],[-158,3],[-153,31],[-150,29],[-136,20],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-88,-11],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-58,-32],[-71,-40],[-126,-68],[-141,-127],[-145,-132],[-148,-138],[-162,-148],[-199,-155],[-237,-162],[-246,-168],[-266,-182],[-268,-184],[-285,-190]],"c":true}],"h":1},{"t":176,"s":[{"i":[[-292.87,-189.51],[-301.22,-187.39],[-304.59,-183.64],[-304.67,-177.46],[-302.34,-172.66],[-301.61,-170.63],[-301.41,-168.61],[-297.37,-164.1],[-289.99,-158.62],[-286.38,-156.52],[-282.34,-154.64],[-266.39,-147.44],[-247.97,-135.93],[-240.04,-123.5],[-234.99,-112.33],[-232.79,-103.44],[-231.67,-94.75],[-229.36,-85.96],[-225.79,-75.82],[-220.83,-70.54],[-214.62,-65.24],[-198.29,-59.11],[-176.53,-52.39],[-166.96,-45.13],[-161.17,-38.69],[-156.84,-18.84],[-160.36,10.39],[-159.56,24.75],[-158.34,31.71],[-154.52,31.43],[-135.62,19.48],[-119.91,9.87],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-88.85,-10.18],[-83.08,-14.06],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-57.98,-28.32],[-64.01,-36.92],[-79.97,-44.59],[-106.99,-52.95],[-114.95,-57.96],[-123.57,-64.67],[-133.1,-109.07],[-153.52,-143.55],[-196.64,-154.44],[-237.61,-162.35],[-254,-172.7],[-259.92,-178.17],[-263.01,-179.33],[-266.64,-183.17],[-274.14,-186.14],[-278.47,-188.85]],"o":[[-298.92,-188.07],[-304.05,-185.17],[-305.25,-179.38],[-303.21,-174.1],[-301.65,-171.32],[-301.48,-169.27],[-299.87,-166.3],[-292.43,-160.27],[-287.71,-157.2],[-283.69,-155.24],[-273.65,-150.48],[-253.55,-140.17],[-242.05,-127.09],[-236.51,-116.13],[-233.2,-106.31],[-232.02,-97.66],[-230.46,-89.8],[-227.02,-78.97],[-222.76,-72.67],[-216.76,-66.83],[-206.03,-61.17],[-183.54,-54.72],[-169.37,-47.03],[-162.85,-40.96],[-156.66,-28.29],[-158.69,0.5],[-159.89,21.64],[-158.79,29.78],[-156.27,33.47],[-142.17,24.42],[-124.83,12.62],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.16,-9.8],[-85.82,-13.09],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-70.71,-22.9],[-58.02,-34.49],[-74.99,-42.57],[-93.98,-49.49],[-113.92,-56.95],[-118.73,-61.58],[-138.23,-84.81],[-145.71,-135.89],[-176.2,-155.64],[-228.09,-158.6],[-249.22,-169.65],[-258.63,-176.24],[-261.88,-179.68],[-265.46,-180.98],[-271.17,-185.94],[-277.38,-187.11],[-283.96,-190.43]],"v":[[-295,-189],[-302.63,-186.28],[-305,-181],[-303.94,-175.78],[-302,-172],[-301.54,-169.95],[-301,-168],[-294.9,-162.18],[-289,-158],[-285.04,-155.88],[-281,-154],[-259.97,-143.81],[-244,-130],[-238.28,-119.82],[-234,-109],[-232.41,-100.55],[-231,-92],[-228.19,-82.47],[-225,-75],[-218.79,-68.68],[-212,-64],[-190.92,-56.92],[-172,-49],[-164.91,-43.05],[-160,-36],[-157.76,-9.17],[-160,19],[-159.17,27.27],[-158,32],[-152,30],[-127,14],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-88,-11],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-58,-32],[-70,-40],[-84,-46],[-114,-57],[-115,-58],[-126,-68],[-142,-128],[-160,-147],[-216,-157],[-245,-167],[-257,-175],[-261,-179],[-264,-180],[-268,-184],[-277,-187],[-279,-189]],"c":true}],"h":1},{"t":177,"s":[{"i":[[-291.89,-189.73],[-301.22,-187.4],[-304.59,-183.63],[-303.21,-171.75],[-294.52,-161.43],[-288.35,-157.12],[-279.54,-153.13],[-270.03,-149.34],[-258.83,-144.75],[-256.36,-142.59],[-255.37,-142.31],[-244.62,-131.44],[-235.26,-110.8],[-231.99,-97.09],[-230.67,-89.31],[-228.69,-83.31],[-226.46,-78.9],[-225.61,-76.63],[-225.41,-74.6],[-222.09,-70.76],[-216.49,-66.86],[-205.61,-61.55],[-191.82,-57.67],[-181.45,-54.24],[-173.19,-51.14],[-168.21,-46.57],[-163.25,-41.31],[-158.05,-24.66],[-159.45,2.97],[-160.26,18.52],[-159.15,31.08],[-156.27,32.59],[-153.32,30.75],[-142.89,24.51],[-130.99,16.54],[-124.07,12.23],[-119.39,9.38],[-116.31,6.9],[-112.08,4.66],[-106.78,0.19],[-102.19,-1.22],[-97.24,-5.54],[-78.54,-16.8],[-57.02,-30.74],[-59.66,-35.25],[-66.86,-38.82],[-69.97,-40.98],[-70.65,-41.34],[-95.7,-50.3],[-112.66,-57.86],[-118.76,-61.06],[-134.12,-86.24],[-142.91,-134.2],[-157.54,-144.79],[-158.61,-146.76],[-163.47,-149],[-171.43,-151.26],[-176.42,-153.87],[-180.39,-153.72],[-214.27,-155.93],[-261.25,-182.6]],"o":[[-298.92,-188.08],[-304.05,-185.17],[-305.7,-176.53],[-297.62,-164.19],[-291.33,-158.8],[-282.46,-154.29],[-274.12,-150.71],[-262.39,-146.36],[-256.68,-142.69],[-255.71,-142.4],[-248.99,-137.04],[-237.75,-118.32],[-232.41,-99.68],[-231.12,-91.9],[-229.46,-85.11],[-227.19,-80.21],[-225.66,-77.33],[-225.49,-75.26],[-223.85,-72.33],[-218.41,-68.03],[-210.2,-63.22],[-196.42,-58.78],[-184.61,-55.17],[-175.74,-52.23],[-170.08,-48.16],[-164.79,-43.14],[-158.83,-33.15],[-158.37,-6.6],[-160.19,13.73],[-159.74,27.2],[-157.11,32.72],[-154.38,31.61],[-147.14,27.24],[-134.81,19.16],[-125.88,13.29],[-120.83,10.27],[-117.77,7.82],[-113.47,5.32],[-108.13,2.24],[-103.79,-1.8],[-98.83,-3.43],[-86.63,-12.46],[-66.68,-24.5],[-57.02,-30.76],[-63.65,-38.23],[-68.88,-39.94],[-70.91,-41.87],[-82.1,-46.92],[-110.78,-56.3],[-117.54,-60.98],[-132.05,-71.09],[-140.1,-123.12],[-156.38,-145.32],[-158.34,-145.15],[-160.59,-147.99],[-168.44,-150.97],[-174.43,-152.12],[-178.59,-154.35],[-195.34,-156.32],[-252.36,-165.12],[-285.72,-190.04]],"v":[[-295,-189],[-302.64,-186.28],[-305,-181],[-300.41,-167.97],[-294,-161],[-285.4,-155.7],[-277,-152],[-266.21,-147.85],[-257,-143],[-256.04,-142.5],[-255,-142],[-241.19,-124.88],[-233,-102],[-231.55,-94.5],[-230,-87],[-227.94,-81.76],[-226,-78],[-225.55,-75.95],[-225,-74],[-220.25,-69.39],[-215,-66],[-201.02,-60.17],[-187,-56],[-178.6,-53.23],[-172,-50],[-166.5,-44.85],[-162,-39],[-158.21,-15.63],[-160,11],[-160,22.86],[-158,32],[-155.32,32.1],[-152,30],[-138.85,21.84],[-127,14],[-122.45,11.25],[-119,9],[-114.89,6.11],[-111,4],[-105,-1],[-101,-2],[-95,-7],[-69,-23],[-57,-32],[-62,-37],[-69,-40],[-70,-41],[-72,-42],[-105,-54],[-116,-60],[-120,-62],[-137,-104],[-156,-145],[-158,-145],[-159,-147],[-166,-150],[-174,-152],[-177,-154],[-182,-154],[-227,-159],[-279,-188]],"c":true}],"h":1},{"t":178,"s":[{"i":[[-273.32,-192.99],[-300.7,-187.56],[-304.56,-183.74],[-304.49,-175.66],[-299.66,-167.88],[-295.57,-163.66],[-291.77,-160.74],[-290.36,-159.53],[-289.54,-159.35],[-288,-158.07],[-286.45,-156.25],[-281.36,-153.89],[-273.45,-151.12],[-265.82,-147.68],[-258.73,-144.18],[-245.01,-132.1],[-235.44,-109.52],[-230.48,-88.84],[-225.32,-74.32],[-211.51,-64.21],[-191.63,-59.04],[-181.92,-55.56],[-175.57,-52.98],[-173.65,-51.45],[-173.22,-50.17],[-171.99,-49.58],[-170.4,-49.34],[-166.23,-45.42],[-161.86,-39.22],[-158.11,-18.65],[-162.05,11.18],[-160.05,26.48],[-158.15,32.93],[-156.18,32.41],[-151.22,30.13],[-150.79,29.78],[-150.03,29.03],[-146.36,26.23],[-140.23,22.83],[-136.75,20.23],[-134.05,17.67],[-126.16,14.12],[-121.69,10.1],[-111.8,4.08],[-92.31,-8.41],[-74,-19.75],[-57.06,-30.66],[-64.9,-39.96],[-77.79,-44.83],[-87.42,-49.15],[-109.24,-56.2],[-123.42,-64.39],[-124.81,-67.58],[-126.75,-68.7],[-135.04,-90.06],[-141.58,-121.84],[-146.27,-132.41],[-155.33,-144.44],[-166.8,-151.13],[-172.92,-152.4],[-224.3,-154.49]],"o":[[-298.17,-188.2],[-303.89,-185.33],[-305.41,-178.47],[-301.61,-170.36],[-296.93,-164.79],[-292.98,-161.63],[-290.59,-159.61],[-289.84,-159.4],[-288.52,-158.69],[-286.97,-156.85],[-283.88,-154.83],[-276.14,-152.03],[-268.45,-148.84],[-260.96,-145.35],[-249.79,-138.09],[-237.84,-117.82],[-231.57,-94.42],[-227.36,-78.79],[-217.69,-66.69],[-198.48,-60.39],[-184.14,-56.32],[-177.64,-53.89],[-173.79,-51.87],[-173.37,-50.6],[-172.54,-49.66],[-170.92,-49.42],[-168.05,-47.31],[-163.14,-41.38],[-157.59,-28.24],[-160.35,1.06],[-160.73,23.52],[-158.76,31.18],[-157.82,33.09],[-152.88,30.93],[-151.02,30.01],[-150.29,29.29],[-148.5,27.56],[-142.23,23.86],[-137.73,21.15],[-134.92,18.5],[-130.15,15.17],[-123.27,11.35],[-115.79,6.27],[-99.24,-3.97],[-79.23,-16.77],[-66.41,-24.68],[-56.95,-33.13],[-74.01,-44.5],[-84.45,-47.26],[-101.62,-53.81],[-119.68,-62.66],[-125.31,-66.32],[-125.12,-68.27],[-134.03,-77.44],[-138.53,-111.38],[-145.54,-131.92],[-151.57,-140.33],[-163.21,-148.76],[-170.79,-152.7],[-198.59,-159.83],[-259.2,-173.9]],"v":[[-294,-189],[-302.29,-186.45],[-305,-181],[-303.05,-173.01],[-298,-166],[-294.27,-162.65],[-291,-160],[-290.1,-159.47],[-289,-159],[-287.48,-157.46],[-286,-156],[-278.75,-152.96],[-271,-150],[-263.39,-146.51],[-257,-143],[-241.42,-124.96],[-233,-100],[-228.92,-83.81],[-222,-71],[-204.99,-62.3],[-186,-57],[-179.78,-54.73],[-174,-52],[-173.51,-51.03],[-173,-50],[-171.45,-49.5],[-170,-49],[-164.69,-43.4],[-161,-37],[-159.23,-8.8],[-161,21],[-159.41,28.83],[-158,33],[-154.53,31.67],[-151,30],[-150.54,29.53],[-150,29],[-144.3,25.04],[-139,22],[-135.83,19.37],[-133,17],[-125,13],[-120,9],[-107,1],[-82,-15],[-69,-23],[-57,-32],[-71,-43],[-81,-46],[-90,-50],[-117,-61],[-125,-66],[-125,-68],[-127,-69],[-137,-102],[-144,-128],[-148,-135],[-160,-147],[-169,-152],[-175,-153],[-245,-166]],"c":true}],"h":1},{"t":179,"s":[{"i":[[-287.03,-190.29],[-300.7,-187.59],[-304.56,-183.71],[-304.8,-177.05],[-302.57,-170.86],[-301.13,-169.29],[-299.32,-168.4],[-298.9,-167.42],[-299.11,-166.24],[-298.51,-165.7],[-297.11,-165.1],[-292.99,-161.43],[-287.07,-157.02],[-282.05,-154.46],[-273.94,-152.32],[-265.43,-148.36],[-261.35,-144.89],[-255.84,-142.66],[-249.24,-135.97],[-234.33,-96.78],[-223.29,-72.11],[-171.68,-60.12],[-163.55,1.25],[-158.09,32.96],[-151.37,30.22],[-150.07,29.07],[-141.71,23.82],[-134.68,18.08],[-126.2,14.15],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.82,0.21],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.27,-13.52],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.26,-22.2],[-57.16,-30.14],[-74.94,-45.48],[-110.98,-56.54],[-135.04,-87.97],[-143.63,-126.92],[-156.85,-145.9],[-177.67,-154.98],[-216.22,-156.63],[-234.07,-162.3],[-241.03,-164.05],[-250.96,-169.97],[-257.35,-174.78],[-261.04,-176.33],[-263.14,-179.42],[-267.89,-181.75]],"o":[[-298.17,-188.23],[-303.9,-185.33],[-305.26,-179.37],[-303.45,-172.79],[-301.73,-169.59],[-299.93,-168.7],[-298.84,-167.8],[-299.03,-166.64],[-298.95,-165.9],[-297.59,-165.3],[-294.96,-163.17],[-289.04,-158.35],[-283.77,-155.4],[-277.7,-152.55],[-268.55,-149.9],[-261.76,-146.31],[-258.44,-142.98],[-251.99,-139.65],[-237.06,-119.85],[-226.05,-76.13],[-200.94,-57.77],[-153.77,-21.04],[-161.7,22.47],[-157.72,33.14],[-151.04,30.03],[-146.88,26.01],[-136.32,20.2],[-130.2,15.2],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.08,2.21],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.19,-11.18],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.85,-21.67],[-67.99,-24.28],[-55.86,-36.98],[-98.39,-53.68],[-134.28,-72.41],[-140.72,-118.16],[-151.52,-141.16],[-170.87,-152.95],[-198.99,-158.41],[-231.98,-160.49],[-238.76,-164],[-247.17,-167.01],[-255.71,-173.15],[-259.88,-176.65],[-262.83,-177.58],[-265.74,-181.17],[-276.63,-186.93]],"v":[[-294,-189],[-302.3,-186.46],[-305,-181],[-304.13,-174.92],[-302,-170],[-300.53,-168.99],[-299,-168],[-298.96,-167.03],[-299,-166],[-298.05,-165.5],[-297,-165],[-291.02,-159.89],[-285,-156],[-281,-154],[-271,-151],[-263,-147],[-260,-144],[-255,-142],[-247,-133],[-228,-81],[-220,-70],[-162,-39],[-162,19],[-158,33],[-151,30],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-57,-31],[-85,-49],[-119,-62],[-139,-109],[-147,-133],[-165,-150],[-184,-156],[-230,-160],[-236,-163],[-243,-165],[-254,-172],[-259,-176],[-262,-177],[-264,-180],[-270,-183]],"c":true}],"h":1},{"t":180,"s":[{"i":[[-280.57,-190.65],[-299.98,-187.87],[-304.46,-184.37],[-303,-171.74],[-290.73,-159.95],[-285.68,-157.34],[-281.3,-155.57],[-278.25,-154.29],[-275.84,-153.38],[-270.41,-150.62],[-264.58,-146.9],[-261.22,-145.24],[-258.6,-144.43],[-252.45,-139.41],[-244.98,-129.79],[-239.9,-119.01],[-236.21,-106.54],[-233.84,-98.21],[-231.68,-92.19],[-229.36,-80.49],[-217.72,-69.22],[-199.64,-62.68],[-162.61,-48.84],[-161.5,-5.18],[-161.69,31.47],[-150.94,29.9],[-141.62,23.76],[-134.53,17.98],[-126.13,14.08],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.24,-13.55],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.4,-22.1],[-66.29,-25.5],[-57.03,-30.85],[-62.1,-38.28],[-78.88,-47.17],[-108.81,-56.27],[-117.95,-61.96],[-119.03,-62.31],[-127.22,-69.59],[-136.83,-118.99],[-151.47,-139.36],[-157.69,-145.33],[-179.92,-155.7],[-224.47,-157.43],[-248.48,-168.54],[-255.91,-173.56]],"o":[[-297.25,-188.43],[-303.59,-185.84],[-306.13,-177.01],[-295.3,-163.21],[-287.28,-158.05],[-282.69,-156.09],[-279.08,-154.6],[-276.63,-153.68],[-272.62,-151.92],[-266.39,-148.11],[-262.17,-145.53],[-259.44,-144.69],[-255.21,-142.02],[-247.34,-133.3],[-241.3,-122.74],[-237.36,-110.91],[-234.5,-100.12],[-232.43,-94.25],[-229.6,-85.51],[-223.8,-72.27],[-206.51,-63.94],[-178.78,-56.46],[-158.46,-20.46],[-162.71,12.29],[-157.42,33.24],[-146.97,26.1],[-136.14,20.08],[-130.18,15.19],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.01,-11.3],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.86,-21.66],[-68.34,-24.05],[-62.46,-28],[-56.54,-33.32],[-73.1,-45.21],[-95.46,-53.1],[-116.92,-60.95],[-118.76,-62.73],[-123.42,-65.41],[-141.31,-88.64],[-150.4,-138.57],[-155,-143.67],[-170.61,-153.32],[-207.04,-158.61],[-242.78,-164.45],[-253.99,-171.73],[-267.46,-181.5]],"v":[[-293,-189],[-301.78,-186.85],[-305,-182],[-299.15,-167.47],[-289,-159],[-284.18,-156.72],[-280,-155],[-277.44,-153.99],[-275,-153],[-268.4,-149.36],[-263,-146],[-260.33,-144.97],[-258,-144],[-249.9,-136.36],[-243,-126],[-238.63,-114.96],[-235,-102],[-233.13,-96.23],[-231,-90],[-227,-77],[-213,-67],[-194,-61],[-160,-31],[-162,2],[-158,33],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-68,-42],[-84,-49],[-117,-61],[-118,-62],[-120,-63],[-129,-72],[-150,-138],[-152,-140],[-162,-148],[-192,-157],[-239,-163],[-251,-170],[-258,-175]],"c":true}],"h":1},{"t":181,"s":[{"i":[[-289.67,-191.17],[-302.73,-170.41],[-286.9,-157.93],[-272.47,-151.87],[-252.89,-139.95],[-238.45,-112.6],[-230.54,-81.66],[-209.76,-66.1],[-193.78,-61.64],[-179.32,-56.99],[-171.97,-50.93],[-165.63,-44.94],[-165.11,1.05],[-159.82,32.31],[-150.56,29.54],[-142.02,24.03],[-134.58,18.02],[-126.1,14.06],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.94,0.3],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.21,-13.56],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.26,-22.2],[-66.26,-25.52],[-57.04,-30.84],[-62.83,-39.79],[-89.48,-51.91],[-116.15,-60.27],[-119.96,-63.3],[-127.47,-70.1],[-137.61,-110.71],[-149.56,-136.54],[-150.38,-138.25],[-161.07,-147.56],[-219.64,-156.5],[-247.89,-167.6],[-251.62,-170.75],[-253.48,-170.77],[-254.63,-172.75],[-256.49,-172.77],[-257.63,-174.75],[-259.49,-174.77],[-260.63,-176.75],[-262.49,-176.77],[-263.63,-178.75],[-265.49,-178.77],[-266.63,-180.75],[-268.49,-180.77],[-269.59,-182.76]],"o":[[-310.9,-183.09],[-292.86,-161.1],[-278.71,-153.88],[-257.74,-144.14],[-241.27,-123.43],[-232.63,-91.35],[-219.8,-68.27],[-198.52,-62.61],[-184.81,-58.56],[-173.79,-53.67],[-167.3,-46.35],[-154.68,-25.16],[-160.95,26.39],[-157.06,33.36],[-146.78,25.92],[-136.48,20.31],[-130.69,15.52],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-107.86,2.07],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.18,-11.19],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.85,-21.67],[-68.54,-23.93],[-62.55,-27.95],[-56.44,-33.5],[-78.32,-49.41],[-107.31,-58.24],[-119.8,-63.76],[-124.09,-66.06],[-140.77,-86.64],[-146.81,-131.86],[-150.62,-137.65],[-154.35,-143.06],[-182.64,-160.96],[-243.31,-165.67],[-251.33,-169.15],[-252.47,-171.3],[-254.32,-171.15],[-255.46,-173.31],[-257.32,-173.15],[-258.46,-175.31],[-260.32,-175.15],[-261.46,-177.31],[-263.32,-177.15],[-264.46,-179.31],[-266.32,-179.15],[-267.46,-181.31],[-269.35,-181.16],[-276.6,-186.8]],"v":[[-298,-188],[-297,-165],[-283,-156],[-267,-149],[-248,-133],[-235,-100],[-226,-76],[-203,-64],[-189,-60],[-176,-55],[-170,-49],[-164,-42],[-162,20],[-158,33],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-68,-43],[-101,-56],[-119,-63],[-121,-64],[-129,-72],[-146,-130],[-150,-137],[-151,-139],[-165,-150],[-239,-164],[-251,-169],[-252,-171],[-254,-171],[-255,-173],[-257,-173],[-258,-175],[-260,-175],[-261,-177],[-263,-177],[-264,-179],[-266,-179],[-267,-181],[-269,-181],[-270,-183]],"c":true}],"h":1},{"t":182,"s":[{"i":[[-287.8,-191.84],[-305.33,-182.8],[-302.1,-171.76],[-289.42,-159.88],[-271.44,-152.1],[-257.72,-143.28],[-246.99,-131.63],[-241.68,-120.77],[-237.41,-107.03],[-233.36,-92.27],[-228.26,-78.58],[-219.4,-70.76],[-206.67,-66.16],[-194.06,-62.46],[-180.75,-58.15],[-174.37,-53.05],[-169.46,-49.8],[-161.96,-38.81],[-164.43,1.93],[-160.19,32.22],[-150.56,29.54],[-142.05,24.05],[-134.58,18.02],[-126.1,14.06],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.88,0.25],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.21,-13.56],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.36,-22.13],[-66.29,-25.5],[-57.04,-30.84],[-65.58,-42.44],[-84.94,-51.36],[-115.74,-60.89],[-127.1,-69.06],[-128.33,-72.04],[-131.46,-74.13],[-133.95,-79.54],[-139.3,-97.74],[-144.93,-129.08],[-163.4,-149.9],[-176.82,-155.23],[-207.54,-158.3],[-243.24,-165.53],[-253.14,-170.47],[-255.34,-172.58],[-260.31,-174.87],[-264.63,-179.07],[-268.23,-180.52]],"o":[[-303.52,-185.92],[-304.62,-175.72],[-294.94,-163.08],[-277.67,-154.39],[-261.97,-146.71],[-250.23,-135.74],[-243.22,-124.75],[-238.77,-111.91],[-234.73,-97.48],[-230.12,-82.82],[-223.32,-72.94],[-211.08,-67.37],[-198.69,-63.64],[-185.09,-59.72],[-175.59,-55.19],[-170.97,-50.45],[-164.68,-43.91],[-159.11,-18.61],[-163.78,18.56],[-157.06,33.34],[-146.74,25.88],[-136.48,20.31],[-130.69,15.52],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-107.96,2.14],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.18,-11.19],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.65,-21.78],[-68.34,-24.05],[-62.46,-28.01],[-56.3,-34.05],[-75.55,-48.21],[-102.37,-57.01],[-125.53,-68.13],[-128.76,-70.79],[-129.57,-73.82],[-133.06,-76.7],[-138.22,-89.55],[-142.91,-117.44],[-155.6,-144.76],[-174,-154.22],[-193.29,-159.21],[-234.57,-161.48],[-252.05,-170.6],[-254.6,-171.37],[-257.98,-174.28],[-263.5,-177],[-266.88,-180.6],[-276.04,-185.37]],"v":[[-298,-188],[-304.97,-179.26],[-299,-168],[-283.54,-157.14],[-266,-149],[-253.97,-139.51],[-245,-128],[-240.23,-116.34],[-236,-102],[-231.74,-87.54],[-226,-76],[-215.24,-69.07],[-203,-65],[-189.58,-61.09],[-177,-56],[-173,-52],[-168,-48],[-161,-32],[-164,13],[-158,33],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-70,-45],[-90,-53],[-124,-67],[-128,-70],[-129,-73],[-132,-75],[-135,-82],[-141,-107],[-151,-138],[-171,-153],[-180,-156],[-222,-160],[-251,-170],[-254,-171],[-256,-173],[-262,-176],[-266,-180],[-269,-181]],"c":true}],"h":1},{"t":183,"s":[{"i":[[-296.29,-188.63],[-305.28,-182.72],[-302.04,-171.54],[-289.24,-159.84],[-271.49,-152.1],[-257.83,-143.58],[-248.23,-132.99],[-241.69,-119.71],[-237.09,-103.86],[-235.49,-98.19],[-234.07,-96.26],[-233.9,-94.69],[-234.14,-92.63],[-233.51,-91.19],[-232.1,-89.26],[-229.56,-82.7],[-225.18,-75.63],[-218.28,-71.01],[-210.79,-67.68],[-193.63,-62.72],[-172.87,-54.7],[-165.9,-45.04],[-162.47,-37.88],[-166.47,5.04],[-158.13,32.96],[-150.55,29.53],[-142.05,24.05],[-134.58,18.02],[-126.1,14.05],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.88,0.25],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.21,-13.56],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.36,-22.13],[-66.29,-25.5],[-57.04,-30.84],[-59.47,-36.6],[-66.36,-41.8],[-71.26,-46.6],[-75.67,-48.09],[-90.64,-53.86],[-115.66,-61.69],[-132.55,-76.12],[-140.7,-116.48],[-158.16,-146.17],[-172.21,-154.35],[-207.87,-158.31],[-259.94,-176.12],[-279.56,-187.34]],"o":[[-303.51,-185.95],[-304.54,-175.52],[-294.74,-163.04],[-277.62,-154.37],[-261.72,-146.59],[-251.09,-136.78],[-243.64,-124.78],[-238.41,-109.25],[-235.96,-98.81],[-234.55,-96.92],[-233.83,-95.38],[-234.05,-93.32],[-233.96,-91.81],[-232.58,-89.92],[-230.72,-85.64],[-226.79,-77.7],[-220.89,-72.42],[-213.24,-68.64],[-201.44,-64.12],[-179.34,-58.01],[-167.16,-46.85],[-163.55,-40.56],[-158.66,-14.63],[-162.53,25.42],[-157,33.32],[-146.74,25.88],[-136.48,20.31],[-130.63,15.48],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-107.96,2.14],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.18,-11.19],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.65,-21.78],[-68.34,-24.05],[-62.46,-28.01],[-56.62,-32.63],[-64.84,-41.77],[-69.98,-44.44],[-73.52,-47.82],[-84.26,-51.45],[-106.28,-59.11],[-127.35,-69.64],[-142.48,-95.92],[-151.42,-139.26],[-169.15,-153.38],[-192.89,-160.25],[-247.77,-164.22],[-277.48,-185.3],[-288.37,-189.73]],"v":[[-298,-188],[-304.91,-179.12],[-299,-168],[-283.43,-157.11],[-266,-149],[-254.46,-140.18],[-246,-129],[-240.05,-114.48],[-236,-99],[-235.02,-97.56],[-234,-96],[-233.98,-94.01],[-234,-92],[-233.04,-90.55],[-232,-89],[-228.17,-80.2],[-223,-74],[-215.76,-69.83],[-209,-67],[-186.49,-60.36],[-168,-48],[-164.73,-42.8],[-162,-35],[-163,23],[-158,33],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-63,-40],[-68,-43],[-72,-47],[-78,-49],[-97,-56],[-122,-66],[-135,-81],[-148,-132],[-164,-150],[-178,-156],[-226,-161],[-275,-184],[-282,-188]],"c":true}],"h":1},{"t":184,"s":[{"i":[[-287.75,-190.82],[-301.68,-186.41],[-304.64,-183.56],[-303.41,-173.46],[-292.89,-163.26],[-283.21,-157.7],[-271.96,-153.25],[-267.81,-150.79],[-267.02,-150.02],[-264.87,-148.4],[-261.48,-146.46],[-260.36,-145.58],[-259.42,-145.32],[-249.44,-134.9],[-241.09,-115.05],[-237.94,-104.45],[-236.41,-99.38],[-231.46,-85.04],[-220.7,-72.4],[-186.28,-63],[-163.12,-42.6],[-168.17,8.68],[-158.28,32.92],[-152.89,30.9],[-150.85,29.82],[-142.13,24.11],[-134.48,17.95],[-126.1,14.05],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.28,-13.52],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.26,-22.2],[-65.72,-25.87],[-57.12,-30.51],[-63.53,-41.89],[-70.83,-46.36],[-75.37,-48.25],[-125.86,-61.56],[-142.45,-109.69],[-150.08,-133.69],[-163.15,-150.39],[-193.31,-159.22],[-241.63,-164.06],[-255.77,-171.24],[-257.55,-173.67],[-260.27,-174.5],[-265.8,-179.1],[-269.3,-180.56]],"o":[[-299.87,-187.12],[-304.07,-184.63],[-305.96,-177.83],[-296.88,-166.18],[-286.98,-159.33],[-275.7,-154.67],[-268.05,-151.03],[-267.29,-150.28],[-266.14,-149.17],[-262.54,-147.04],[-260.65,-145.67],[-259.74,-145.41],[-253.4,-140.62],[-243.29,-122.11],[-238.48,-106.26],[-236.9,-101.01],[-233.86,-90.83],[-224.88,-75.82],[-202.25,-64.63],[-168.1,-50.62],[-160.34,-13.77],[-162.25,26.22],[-156.34,33.5],[-152.16,30.2],[-146.72,25.86],[-136.59,20.38],[-130.63,15.48],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-86.99,-11.31],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.85,-21.67],[-68.54,-23.93],[-62.08,-28.25],[-56.39,-33.42],[-68.76,-45.53],[-73.81,-47.99],[-101.35,-60.17],[-141.58,-93.25],[-147.68,-127.84],[-155.09,-142.34],[-178.79,-158.81],[-225.69,-160.94],[-253.47,-170.84],[-257.42,-172.26],[-258.81,-174.61],[-263.18,-176.47],[-267.78,-180.58],[-276.88,-185.32]],"v":[[-297,-188],[-302.88,-185.52],[-305,-182],[-300.14,-169.82],[-291,-162],[-279.45,-156.18],[-268,-151],[-267.55,-150.53],[-267,-150],[-263.71,-147.72],[-261,-146],[-260.05,-145.49],[-259,-145],[-246.37,-128.51],[-239,-108],[-237.42,-102.73],[-236,-98],[-228.17,-80.43],[-215,-70],[-176,-56],[-162,-31],[-163,24],[-158,33],[-153,31],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-68,-45],[-72,-47],[-77,-49],[-136,-82],[-146,-122],[-152,-137],[-168,-153],[-208,-160],[-252,-170],[-257,-172],[-258,-174],[-261,-175],[-267,-180],[-270,-181]],"c":true}],"h":1},{"t":185,"s":[{"i":[[-285.45,-191.42],[-301.97,-186.46],[-304.59,-183.81],[-304.7,-177.11],[-300.31,-170.48],[-287.17,-159.77],[-266.36,-150.37],[-260.05,-145.35],[-258.42,-144.37],[-255.43,-141.24],[-252.78,-137.02],[-251.36,-135.36],[-250.3,-134.46],[-245.04,-125.08],[-239.74,-109.73],[-235.28,-94.59],[-230.33,-81.8],[-220.63,-72.83],[-207.07,-68.25],[-187.53,-62.25],[-168.99,-51.25],[-163.08,-30.15],[-164.82,-2.59],[-165.26,8.05],[-164.79,17.97],[-161.9,26.85],[-157.33,32.86],[-154.72,32.1],[-150.33,29.21],[-139.38,22.16],[-123.48,11.85],[-114.75,6.38],[-108.24,2.46],[-105.77,0.77],[-105.05,0.05],[-104.37,-0.49],[-103.59,-0.65],[-97.76,-4.34],[-90.29,-9.56],[-85.16,-12.7],[-80.45,-15.57],[-79.04,-16.7],[-77.42,-17.59],[-76.04,-18.7],[-74.42,-19.59],[-68.03,-24.16],[-57.17,-30.87],[-57.42,-32.11],[-58.66,-35.41],[-75.28,-49.42],[-112.54,-61.11],[-121.95,-66.96],[-125.6,-69.86],[-140.67,-95.5],[-155.31,-146.77],[-175.41,-155.98],[-228.28,-158.02],[-252.51,-170.14],[-257.57,-172.1],[-259.55,-174.66],[-262.25,-175.48]],"o":[[-300.18,-187.06],[-304.18,-184.84],[-305.54,-179.62],[-302.08,-172.54],[-293.99,-163.33],[-273.35,-153.29],[-260.59,-145.67],[-258.97,-144.7],[-256.54,-142.73],[-253.55,-138.38],[-251.71,-135.63],[-250.66,-134.77],[-247.18,-129.71],[-241.32,-115.09],[-236.62,-99.44],[-232.14,-85.77],[-224.84,-75.21],[-211.75,-69.36],[-195.29,-64.63],[-174.38,-55.57],[-163.42,-39.61],[-163.78,-11.64],[-165.11,4.81],[-165.1,14.63],[-163.24,23.92],[-158.95,31.32],[-156.05,32.99],[-151.86,30.21],[-144.89,25.74],[-128.67,15.22],[-116.88,7.65],[-110.43,3.78],[-105.99,0.99],[-105.3,0.3],[-104.57,-0.41],[-103.87,-0.6],[-100.37,-2.56],[-92.72,-7.84],[-86.94,-11.67],[-81.92,-14.65],[-79.58,-16.4],[-77.96,-17.29],[-76.58,-18.4],[-74.96,-19.29],[-72.19,-21.73],[-60.52,-28.73],[-57.09,-31.4],[-58.21,-34.11],[-64.28,-45.28],[-96.31,-57.16],[-120.92,-65.95],[-123.56,-68.5],[-138.83,-80.67],[-147.83,-131.01],[-173.37,-155.66],[-201.62,-163.43],[-251.33,-168.61],[-255.66,-171.95],[-259.43,-173.27],[-260.83,-175.62],[-271.89,-182.19]],"v":[[-297,-188],[-303.08,-185.65],[-305,-182],[-303.39,-174.82],[-299,-169],[-280.26,-156.53],[-261,-146],[-259.51,-145.03],[-258,-144],[-254.49,-139.81],[-252,-136],[-251.01,-135.06],[-250,-134],[-243.18,-120.08],[-238,-104],[-233.71,-90.18],[-228,-79],[-216.19,-71.09],[-203,-67],[-180.96,-58.91],[-166,-45],[-163.43,-20.9],[-165,2],[-165.18,11.34],[-164,21],[-160.42,29.08],[-156,33],[-153.29,31.16],[-150,29],[-134.02,18.69],[-119,9],[-112.59,5.08],[-106,1],[-105.53,0.53],[-105,0],[-104.12,-0.55],[-103,-1],[-95.24,-6.09],[-88,-11],[-83.54,-13.68],[-80,-16],[-78.5,-16.99],[-77,-18],[-75.5,-18.99],[-74,-20],[-64.28,-26.45],[-57,-32],[-57.82,-33.11],[-59,-36],[-85,-53],[-121,-66],[-122,-67],[-127,-71],[-144,-112],[-170,-154],[-179,-157],[-250,-168],[-254,-171],[-259,-173],[-260,-175],[-263,-176]],"c":true}],"h":1},{"t":186,"s":[{"i":[[-292.22,-189.38],[-301.98,-186.48],[-304.6,-183.79],[-304.42,-177.37],[-299.62,-168.54],[-297.44,-166.89],[-296.21,-167.1],[-295.68,-166.49],[-295.18,-165.12],[-291.23,-162.65],[-285.72,-159.89],[-278.74,-156.63],[-269.25,-152.2],[-266.34,-149.51],[-263.83,-147.61],[-259.2,-144.2],[-255.15,-140.5],[-252.07,-136.54],[-249.91,-133.55],[-248.29,-130.68],[-247.28,-128.56],[-240.68,-110.19],[-231.37,-81.78],[-223.03,-74.94],[-217.71,-72.73],[-202.66,-67.55],[-182.25,-61.18],[-176.98,-57.31],[-175.5,-56.39],[-168.27,-49.14],[-163.15,-34.15],[-164.02,-12.32],[-166.96,8.34],[-163.87,22.56],[-157.66,32.82],[-153.86,31.62],[-145.91,26.22],[-118.14,8.28],[-82.98,-14.73],[-65.5,-25.42],[-58.28,-30.26],[-68.83,-46.2],[-103.74,-59.41],[-123.04,-68.84],[-128.21,-71.4],[-130.55,-73.53],[-143.13,-110.19],[-151.63,-136.2],[-155.53,-141.43],[-166.07,-152.52],[-182.81,-159.01],[-203.69,-161.62],[-226.82,-161.66],[-240.09,-165.06],[-252.24,-169.39],[-257.83,-172.28],[-262.87,-176.68],[-267.72,-178.28],[-270.94,-181.38],[-273.47,-181.76],[-274.59,-183.76]],"o":[[-300.17,-187.08],[-304.19,-184.84],[-305.36,-180.35],[-301.55,-171.46],[-297.84,-166.84],[-296.63,-167.02],[-295.84,-166.93],[-295.35,-165.59],[-293.12,-163.7],[-287.53,-160.74],[-282.12,-158.03],[-272.31,-153.71],[-267.17,-150.21],[-264.66,-148.21],[-260.88,-145.44],[-256.34,-141.73],[-252.86,-137.52],[-250.59,-134.56],[-248.65,-131.4],[-247.61,-129.26],[-243.24,-120.55],[-234.74,-90.8],[-224.68,-75.82],[-219.54,-73.39],[-210.04,-69.46],[-188.77,-63.41],[-177.49,-57.61],[-175.99,-56.69],[-171.19,-53.06],[-164.25,-39.68],[-162.79,-19.74],[-166.11,1.72],[-165.55,18.15],[-159.93,29.9],[-155.9,33.01],[-148.86,28.23],[-130.15,16.15],[-94.56,-7.16],[-68.36,-24.04],[-60.46,-28.54],[-57.12,-37.49],[-85.38,-55.61],[-121.64,-66.96],[-126.9,-71.65],[-129.47,-72.36],[-142.97,-86.51],[-150.49,-131.28],[-154.31,-140.49],[-158.92,-145.58],[-175.56,-157.29],[-195.87,-161.1],[-218.48,-162.38],[-236.92,-163.54],[-247.73,-167.53],[-256.2,-171.7],[-261.18,-174.34],[-266.27,-178.79],[-270.26,-179.71],[-272.5,-182.29],[-274.35,-182.16],[-281.07,-187.51]],"v":[[-297,-188],[-303.08,-185.66],[-305,-182],[-302.99,-174.41],[-298,-167],[-297.04,-166.95],[-296,-167],[-295.51,-166.04],[-295,-165],[-289.38,-161.69],[-284,-159],[-275.53,-155.17],[-268,-151],[-265.5,-148.86],[-263,-147],[-257.77,-142.96],[-254,-139],[-251.33,-135.55],[-249,-132],[-247.95,-129.97],[-247,-128],[-237.71,-100.5],[-226,-77],[-221.29,-74.16],[-216,-72],[-195.71,-65.48],[-178,-58],[-176.49,-57],[-175,-56],[-166.26,-44.41],[-163,-28],[-165.07,-5.3],[-166,15],[-161.9,26.23],[-156,33],[-151.36,29.92],[-144,25],[-106.35,0.56],[-70,-23],[-62.98,-26.98],[-58,-32],[-72,-48],[-117,-65],[-126,-71],[-129,-72],[-131,-74],[-149,-127],[-154,-140],[-156,-142],[-171,-155],[-189,-160],[-211,-162],[-234,-163],[-243,-166],[-255,-171],[-259,-173],[-265,-178],[-269,-179],[-272,-182],[-274,-182],[-275,-184]],"c":true}],"h":1},{"t":187,"s":[{"i":[[-289.04,-189.55],[-301.07,-186.91],[-304.54,-184.17],[-302.74,-173.43],[-291.28,-162.8],[-285.71,-159.58],[-279.83,-156.93],[-274.46,-154.39],[-268.74,-151.71],[-267.04,-150.3],[-265.42,-149.41],[-258.78,-142.93],[-250.37,-133.42],[-245.23,-122.98],[-240.61,-108.81],[-235.42,-93.1],[-227.9,-79.31],[-223.09,-76.4],[-221.51,-75.28],[-207.68,-69.52],[-186.75,-63.94],[-165.42,-46.39],[-167.39,-3.36],[-161.86,31.4],[-154.07,30.72],[-151.51,30.23],[-150.4,28.24],[-143.17,25.12],[-139.85,22.82],[-136.85,20.82],[-133.85,18.82],[-122.71,11.36],[-111.08,4.31],[-105.11,0.11],[-101.49,-2.05],[-81.19,-15.88],[-58.46,-29.25],[-68.38,-46.37],[-72.59,-49.76],[-77.02,-51.13],[-86.09,-55.73],[-94.29,-58.45],[-102.83,-60.03],[-107.48,-62.82],[-119.89,-65.98],[-131.78,-74.66],[-135.58,-79.32],[-140.6,-92.27],[-144.17,-105.09],[-148.73,-130.16],[-155.68,-139.57],[-156.39,-142.22],[-160.82,-147.33],[-166.02,-151.11],[-168.59,-153.76],[-190.33,-161.28],[-236.2,-162.02],[-257.64,-172.92],[-264.65,-176.17],[-267.95,-179.31],[-272.46,-181.12]],"o":[[-299.05,-187.32],[-303.81,-185.33],[-305.85,-178.03],[-295.45,-165.82],[-287.8,-160.62],[-281.73,-157.74],[-276.59,-155.29],[-270.54,-152.6],[-267.58,-150.6],[-265.97,-149.71],[-262.09,-146.22],[-252.92,-136.53],[-246.92,-127.33],[-242.08,-113.73],[-237.22,-98.7],[-230.76,-83.41],[-223.59,-76.75],[-222.05,-75.66],[-214.81,-71.55],[-193.65,-65.71],[-171.98,-56.39],[-162.36,-21.87],[-166.64,18.34],[-153.78,32.23],[-152.54,29.69],[-150.66,29.85],[-147.09,26.21],[-141.16,23.2],[-138.16,21.2],[-135.16,19.2],[-128.5,13.69],[-115.13,6.54],[-105.98,0.99],[-103.38,-1.55],[-89.2,-9.85],[-64.7,-26.37],[-57.09,-37.44],[-72.35,-48.16],[-74.34,-50.78],[-83.06,-53.77],[-91.96,-57.64],[-99.25,-60.05],[-106.38,-61.11],[-112.51,-64.57],[-125.69,-71.54],[-134.55,-78.84],[-138.89,-84.65],[-143.2,-101.04],[-147.08,-118.77],[-154.24,-139.41],[-156.66,-140.88],[-158.95,-145.49],[-165.73,-151.09],[-168.35,-152.16],[-177.31,-158.8],[-216.71,-163.05],[-252.13,-169.36],[-262.6,-175.99],[-267.11,-177.68],[-270.46,-180.96],[-280.27,-185.58]],"v":[[-296,-188],[-302.44,-186.12],[-305,-182],[-299.1,-169.62],[-290,-162],[-283.72,-158.66],[-278,-156],[-272.5,-153.5],[-268,-151],[-266.5,-150],[-265,-149],[-255.85,-139.73],[-249,-131],[-243.65,-118.35],[-239,-104],[-233.09,-88.26],[-224,-77],[-222.57,-76.03],[-221,-75],[-200.67,-67.61],[-181,-61],[-164,-35],[-167,8],[-156,32],[-153,30],[-151,30],[-150,28],[-142,24],[-139,22],[-136,20],[-133,18],[-119,9],[-106,1],[-105,0],[-100,-3],[-70,-23],[-58,-32],[-72,-48],[-73,-50],[-79,-52],[-90,-57],[-96,-59],[-106,-61],[-108,-63],[-122,-68],[-134,-78],[-136,-80],[-142,-97],[-145,-109],[-154,-139],[-156,-140],[-157,-143],[-163,-149],[-168,-152],[-169,-154],[-201,-162],[-247,-167],[-261,-175],[-266,-177],[-269,-180],[-274,-182]],"c":true}],"h":1},{"t":188,"s":[{"i":[[-294.79,-188.03],[-300.66,-187.12],[-304.48,-184.35],[-303.41,-174.32],[-293.17,-164.98],[-290.68,-163.48],[-290.2,-162.12],[-288.06,-160.94],[-284.94,-159.47],[-277.52,-156.03],[-268.34,-151.69],[-260.25,-145.36],[-252.15,-135.8],[-242.55,-112.42],[-230.15,-79.95],[-215.72,-72.67],[-203.8,-69.14],[-184.92,-63.25],[-168.04,-50.54],[-164.29,-23.06],[-168.49,5.9],[-164.96,21.89],[-158.34,31.75],[-154.41,31.8],[-153.53,30.36],[-152.4,29.9],[-151.25,30.12],[-150.68,29.48],[-150.2,28.12],[-146.89,26.42],[-142.6,24.58],[-141.04,23.3],[-139.43,22.41],[-138.04,21.3],[-136.43,20.41],[-135.04,19.3],[-133.43,18.41],[-128.16,14.17],[-120.82,10.16],[-115.07,6.59],[-108.59,2.69],[-105.77,0.77],[-105.05,0.05],[-103.31,-1.29],[-100.75,-2.53],[-81.5,-15.67],[-58.49,-29.02],[-59.01,-34.01],[-65.18,-43.99],[-79.7,-53.28],[-129.44,-67.43],[-144.01,-101.74],[-149.87,-129.67],[-165.75,-151.94],[-174.47,-155.97],[-182.62,-159.2],[-215.13,-162.23],[-251.56,-168.9],[-261.63,-175.13],[-266.66,-177.2],[-279.54,-186.26]],"o":[[-298.42,-187.44],[-303.69,-185.57],[-305.82,-178.33],[-297.09,-167.65],[-290.83,-163.92],[-290.36,-162.58],[-289.09,-161.46],[-285.99,-159.94],[-280.84,-157.43],[-271.27,-153.16],[-263.17,-147.96],[-254.74,-139.28],[-245.73,-124.45],[-234.77,-90.17],[-219.57,-74.1],[-207.84,-70.19],[-192.4,-65.73],[-172.74,-55.65],[-163.3,-33.01],[-166.89,-3.61],[-166.54,17.77],[-160.86,28.88],[-154.89,32.12],[-153.73,30.92],[-152.77,29.85],[-151.64,30.04],[-150.83,29.92],[-150.36,28.58],[-148.59,27.14],[-143.9,25.14],[-141.58,23.6],[-139.97,22.71],[-138.58,21.6],[-136.97,20.71],[-135.58,19.6],[-133.97,18.71],[-130.75,15.84],[-123.2,11.33],[-117.03,7.75],[-110.85,4.06],[-105.99,0.99],[-105.3,0.3],[-104.19,-0.77],[-101.59,-2.16],[-88.57,-10.26],[-65.44,-25.9],[-57.98,-32.11],[-62.73,-41.47],[-74.74,-51.52],[-108.5,-64],[-142.85,-93.47],[-147.83,-119.48],[-155.68,-141.42],[-170.96,-155.24],[-180.24,-158.32],[-199.69,-163.25],[-241.58,-165.38],[-260.67,-173.92],[-264.41,-176.9],[-274.02,-181.6],[-289.83,-189.03]],"v":[[-295,-188],[-302.17,-186.34],[-305,-182],[-300.25,-170.98],[-291,-164],[-290.52,-163.03],[-290,-162],[-287.03,-160.44],[-284,-159],[-274.39,-154.59],[-266,-150],[-257.49,-142.32],[-250,-132],[-238.66,-101.3],[-223,-76],[-211.78,-71.43],[-200,-68],[-178.83,-59.45],[-166,-43],[-165.59,-13.33],[-167,15],[-162.91,25.39],[-156,32],[-154.07,31.36],[-153,30],[-152.02,29.97],[-151,30],[-150.52,29.03],[-150,28],[-145.4,25.78],[-142,24],[-140.5,23.01],[-139,22],[-137.5,21.01],[-136,20],[-134.5,19.01],[-133,18],[-125.68,12.75],[-119,9],[-112.96,5.33],[-106,1],[-105.53,0.53],[-105,0],[-102.45,-1.73],[-100,-3],[-70,-23],[-58,-32],[-60,-36],[-69,-47],[-87,-56],[-139,-86],[-146,-111],[-153,-136],[-169,-154],[-177,-157],[-186,-160],[-230,-164],[-259,-173],[-263,-176],[-268,-178],[-286,-188]],"c":true}],"h":1},{"t":189,"s":[{"i":[[-299.24,-187.38],[-301.15,-186.68],[-302.6,-186.45],[-304.48,-177.06],[-293.57,-165.01],[-290.23,-163.02],[-287.24,-161.68],[-282.01,-158.68],[-275.87,-154.96],[-269.46,-151.66],[-265,-148.71],[-258.3,-142.62],[-252.29,-135.22],[-247.42,-125.74],[-241.85,-110.5],[-236.88,-95.35],[-230.28,-81.7],[-224.96,-77.67],[-221.86,-76.43],[-212.59,-72.42],[-199.37,-68.98],[-194.19,-67.5],[-192.26,-66.09],[-184.68,-63.45],[-175.76,-58.17],[-171.25,-52.85],[-168.65,-48.58],[-165.2,-28.59],[-168.62,3.26],[-165.98,19.67],[-158.24,31.85],[-147.35,26.79],[-132.61,17.63],[-128.37,14.25],[-126.51,14.23],[-125.37,12.25],[-123.51,12.23],[-122.37,10.25],[-120.51,10.23],[-119.38,8.24],[-112.24,5.19],[-105.75,0.72],[-101.49,-2.05],[-81.1,-15.93],[-58.47,-29.21],[-60.92,-38.08],[-68.12,-46.55],[-79.31,-54.55],[-89.19,-57.17],[-92.47,-58.5],[-130.5,-70.32],[-146.26,-121.53],[-163.37,-149.91],[-168.63,-153.75],[-170.49,-153.77],[-171.57,-155.77],[-177.21,-158.08],[-213.41,-161.86],[-252,-169.29],[-270.73,-179.75],[-283.61,-187.41]],"o":[[-300.6,-186.7],[-302.15,-186.55],[-306.45,-182.05],[-298.04,-168.53],[-291.11,-163.43],[-288.29,-162.14],[-284.07,-159.95],[-277.91,-156.19],[-271.21,-152.56],[-266.36,-149.74],[-260.66,-145.01],[-254.12,-137.72],[-249.24,-129.99],[-243.72,-116],[-238.49,-100.5],[-232.77,-85.95],[-226.03,-78.2],[-222.87,-76.78],[-216.91,-73.93],[-203.82,-69.95],[-194.81,-67.96],[-192.92,-66.57],[-188.05,-64.61],[-178.54,-60.23],[-172.18,-54.05],[-169.49,-50.11],[-164.89,-39.47],[-167.06,-7.22],[-167.61,14.25],[-161.3,28.48],[-153.63,32.06],[-137.1,20.21],[-128.68,15.85],[-127.54,13.69],[-125.68,13.85],[-124.54,11.69],[-122.68,11.85],[-121.54,9.69],[-119.67,9.85],[-116.34,6.3],[-109.36,2.43],[-103.38,-1.55],[-89.45,-9.7],[-65.37,-25.95],[-57.8,-33.19],[-65.36,-44.32],[-74.36,-51.37],[-86.04,-57.19],[-91.82,-58.38],[-112.92,-65.19],[-148.08,-100.69],[-157.8,-143.28],[-168.32,-152.15],[-169.46,-154.31],[-171.36,-154.16],[-174.23,-157.2],[-195.5,-164.14],[-242.04,-165.34],[-265.76,-176.58],[-280.18,-184.65],[-292.52,-188.97]],"v":[[-300,-187],[-301.65,-186.62],[-303,-186],[-301.26,-172.8],[-292,-164],[-289.26,-162.58],[-286,-161],[-279.96,-157.43],[-274,-154],[-267.91,-150.7],[-263,-147],[-256.21,-140.17],[-251,-133],[-245.57,-120.87],[-240,-105],[-234.83,-90.65],[-227,-79],[-223.92,-77.23],[-221,-76],[-208.2,-71.19],[-195,-68],[-193.55,-67.04],[-192,-66],[-181.61,-61.84],[-173,-55],[-170.37,-51.48],[-168,-47],[-166.13,-17.9],[-168,10],[-163.64,24.07],[-155,32],[-143,24],[-129,16],[-128,14],[-126,14],[-125,12],[-123,12],[-122,10],[-120,10],[-119,8],[-111,4],[-105,0],[-100,-3],[-70,-23],[-58,-32],[-63,-41],[-70,-48],[-83,-56],[-91,-58],[-94,-59],[-139,-85],[-155,-138],[-168,-152],[-169,-154],[-171,-154],[-172,-156],[-180,-159],[-231,-164],[-259,-173],[-277,-183],[-287,-188]],"c":true}],"h":1},{"t":190,"s":[{"i":[[-292.65,-189.6],[-299.96,-186.96],[-301.66,-187.22],[-305.21,-182.98],[-302.62,-174.12],[-295.58,-166.79],[-287.94,-162.07],[-279.13,-157.31],[-269.53,-151.85],[-265.77,-149.35],[-263.46,-148.38],[-260.13,-145.02],[-256.84,-140.1],[-255.36,-138.36],[-254.3,-137.46],[-247.74,-125.38],[-240,-104.66],[-237.09,-93.25],[-229.92,-81.58],[-218.41,-75.59],[-177.06,-66.08],[-170.74,-1.15],[-162.48,26.41],[-156.46,31.94],[-154.05,30.7],[-151.51,30.23],[-150.4,28.24],[-143.28,25.23],[-139.85,22.82],[-136.85,20.82],[-133.85,18.82],[-132.08,17.7],[-113.64,5.25],[-91.53,-9.6],[-83.38,-14.75],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.39,-18.76],[-70.05,-21.99],[-66.85,-24.18],[-59.52,-28.85],[-65.43,-44.54],[-69.19,-47.36],[-73.52,-52.16],[-83.75,-56.07],[-113.71,-66.21],[-128.43,-72.81],[-144.84,-99.05],[-150.32,-121.95],[-154.29,-136.53],[-159.65,-143.25],[-163.39,-148.82],[-166.7,-151.75],[-174.47,-157.28],[-216.11,-162.53],[-245.03,-167.59],[-254.99,-170.08],[-261.37,-174.47],[-270.29,-178.49],[-274.75,-182.29]],"o":[[-299.38,-186.84],[-301.1,-187.15],[-304.4,-185.42],[-304.32,-177.33],[-298.11,-168.75],[-290.5,-163.45],[-282.62,-159.14],[-272.59,-153.67],[-266.54,-149.66],[-264.23,-148.71],[-261.46,-146.73],[-257.82,-141.71],[-255.71,-138.63],[-254.66,-137.77],[-250.74,-132.05],[-242.37,-111.68],[-237.18,-96.7],[-234.49,-87.91],[-224.05,-76.75],[-197.27,-67.96],[-161.05,-32.16],[-167.15,18.69],[-158.8,30.26],[-153.79,32.27],[-152.54,29.69],[-150.66,29.85],[-146.97,26.14],[-141.16,23.2],[-138.16,21.2],[-135.16,19.2],[-132.19,17.22],[-121.39,10.78],[-99.55,-3.77],[-83.67,-13.15],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-74.57,-20.53],[-68.16,-23.8],[-62.95,-27.92],[-58.34,-35.94],[-68.68,-47.65],[-72,-49.59],[-78.64,-55.06],[-100.48,-62.22],[-125.27,-72.17],[-141.43,-82.65],[-149.05,-117.61],[-153.53,-131.58],[-157.68,-142.11],[-163.51,-148.25],[-166.27,-150.12],[-169.52,-154.1],[-190.69,-164.91],[-241.51,-165.85],[-251.66,-169.94],[-259.63,-172.2],[-266.72,-177.58],[-274.05,-180.59],[-281.58,-186.17]],"v":[[-299,-187],[-300.53,-187.05],[-302,-187],[-304.76,-180.15],[-300,-171],[-293.04,-165.12],[-286,-161],[-275.86,-155.49],[-267,-150],[-265,-149.03],[-263,-148],[-258.97,-143.37],[-256,-139],[-255.01,-138.06],[-254,-137],[-245.05,-118.53],[-238,-99],[-236,-91],[-228,-80],[-214,-74],[-169,-49],[-168,14],[-160,29],[-156,32],[-153,30],[-151,30],[-150,28],[-142,24],[-139,22],[-136,20],[-133,18],[-131,17],[-107,1],[-84,-13],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-69,-23],[-66,-25],[-59,-32],[-68,-47],[-70,-48],[-75,-53],[-89,-58],[-123,-71],[-130,-74],[-148,-113],[-152,-127],[-157,-141],[-161,-145],[-166,-150],[-167,-152],[-176,-158],[-235,-165],[-249,-169],[-257,-171],[-264,-176],[-273,-180],[-276,-183]],"c":true}],"h":1},{"t":191,"s":[{"i":[[-298.13,-187.35],[-299.96,-186.96],[-301.66,-187.22],[-305.07,-183.31],[-303.3,-176.31],[-298.43,-169.2],[-293.2,-165.8],[-273.85,-155.99],[-265.08,-148.88],[-259.71,-144.47],[-254.48,-137.21],[-245.25,-115.68],[-239.17,-100.86],[-236.42,-91.54],[-232.86,-87.2],[-230.71,-82.68],[-225.66,-79.91],[-216.12,-74.14],[-206.69,-72.76],[-195.38,-68.73],[-181.51,-63.8],[-169.71,-52.28],[-170.54,-1.13],[-164.9,22.22],[-159.45,27.87],[-156.63,31.91],[-154.03,30.68],[-151.51,30.23],[-150.4,28.24],[-143.27,25.22],[-139.85,22.82],[-136.85,20.82],[-133.85,18.82],[-132.08,17.7],[-115.13,6.2],[-90.86,-9.91],[-83.38,-14.75],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.39,-18.76],[-70.08,-21.96],[-66.85,-24.18],[-57.15,-29.44],[-67.55,-47.99],[-72.64,-51.75],[-124.43,-65.93],[-137.46,-83.29],[-139.4,-85.02],[-146.67,-103.89],[-151.36,-123.07],[-155.4,-137.92],[-160.37,-143.21],[-161.97,-146.86],[-169.59,-153.5],[-173.31,-156.62],[-188.86,-161.95],[-226.81,-163.67],[-249.42,-169],[-255.98,-170.54],[-278.5,-186.7]],"o":[[-299.38,-186.85],[-301.1,-187.15],[-304.42,-185.41],[-304.51,-178.76],[-300.33,-171.05],[-294.86,-166.57],[-282.69,-158.81],[-266.3,-150.49],[-260.66,-145.29],[-255.91,-138.97],[-247.03,-126.08],[-241.02,-103.08],[-236.82,-95.13],[-234.38,-87.9],[-231.03,-84.64],[-228.44,-80.51],[-219.34,-76.44],[-209.57,-72.32],[-199.94,-70.85],[-186.37,-65.17],[-173.41,-57.34],[-163.66,-30.07],[-168.32,14.9],[-161.53,27.15],[-157.48,29.41],[-153.81,32.31],[-152.54,29.69],[-150.66,29.85],[-146.89,26.09],[-141.16,23.2],[-138.16,21.2],[-135.16,19.2],[-132.19,17.22],[-120.99,10.52],[-100.64,-3.07],[-83.67,-13.15],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-74.48,-20.59],[-68.16,-23.8],[-60.23,-30.53],[-63.49,-43.54],[-72.32,-50.14],[-90.06,-63.66],[-137.63,-81.75],[-138.59,-84.78],[-145.02,-94.23],[-150.09,-118.74],[-154.55,-132.64],[-158.52,-142.82],[-162.13,-145.42],[-165.86,-151.19],[-172.6,-155.37],[-181.34,-160.99],[-212.43,-164.39],[-244.69,-166.83],[-253.59,-170.61],[-267.29,-175.64],[-295.43,-188.33]],"v":[[-299,-187],[-300.53,-187.05],[-302,-187],[-304.79,-181.04],[-302,-174],[-296.65,-167.89],[-292,-165],[-267,-151],[-264,-148],[-258,-142],[-253,-135],[-242,-106],[-238,-98],[-235,-89],[-232,-86],[-230,-82],[-224,-79],[-212,-73],[-204,-72],[-191,-67],[-178,-61],[-168,-46],[-169,10],[-163,25],[-158,29],[-156,32],[-153,30],[-151,30],[-150,28],[-142,24],[-139,22],[-136,20],[-133,18],[-131,17],[-107,1],[-84,-13],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-69,-23],[-66,-25],[-61,-38],[-72,-50],[-73,-52],[-137,-81],[-138,-84],[-140,-86],[-149,-114],[-153,-128],[-158,-142],[-161,-144],[-163,-148],[-172,-155],[-174,-157],[-199,-163],[-240,-166],[-252,-170],[-257,-171],[-292,-188]],"c":true}],"h":1},{"t":192,"s":[{"i":[[-285.94,-192.13],[-299.96,-186.96],[-301.66,-187.22],[-305.01,-183.89],[-303.43,-177.8],[-300.02,-171.54],[-298.57,-170.52],[-289.28,-163.74],[-274.5,-156.26],[-263.85,-147.58],[-254.41,-136.45],[-246.64,-118.67],[-236.96,-90.96],[-228.37,-81.19],[-220.46,-77.29],[-209.25,-73.44],[-198.14,-70.4],[-190.31,-67.88],[-184.53,-65.92],[-182.65,-64.46],[-182.22,-63.16],[-179.8,-62.69],[-171.88,-54.37],[-168.03,-20.7],[-170.07,-1.13],[-163.52,30.86],[-146.03,26.64],[-129.59,14.97],[-122.37,10.25],[-120.51,10.23],[-119.38,8.24],[-112.24,5.19],[-104.06,-1.05],[-89.21,-10.65],[-83.38,-14.75],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.39,-18.76],[-70.05,-21.99],[-66.85,-24.18],[-60.65,-27.93],[-71.59,-51.89],[-96.7,-62.6],[-121.76,-70.04],[-129.26,-75.71],[-134.78,-78.73],[-136.33,-82.04],[-139.41,-84.14],[-140.57,-87.27],[-148.64,-115.87],[-155.27,-132.19],[-156.92,-139.09],[-161.19,-143.7],[-162.79,-147.52],[-166.64,-151.68],[-169.03,-152.32],[-173.07,-156.56],[-198.6,-164.5],[-244.7,-165.71],[-255.72,-170.47]],"o":[[-299.38,-186.85],[-301.1,-187.15],[-304.3,-185.49],[-304.58,-180.04],[-300.74,-172.53],[-298.94,-170.54],[-294.03,-166.35],[-279.51,-158.69],[-267.39,-151.11],[-257.35,-140.25],[-249.66,-128.19],[-240.29,-100.05],[-230.64,-83.05],[-223.28,-78.31],[-212.93,-74.48],[-201.86,-71.4],[-192.29,-68.42],[-186.42,-66.63],[-182.79,-64.88],[-182.36,-63.6],[-181.08,-62.31],[-174.96,-58.5],[-165.2,-38.82],[-169.26,-4.59],[-169.78,12.33],[-152.76,31.02],[-133.99,18.74],[-122.68,11.85],[-121.54,9.69],[-119.67,9.85],[-116.34,6.3],[-107.88,1.01],[-95.65,-6.41],[-83.67,-13.15],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-74.57,-20.53],[-68.16,-23.8],[-62.67,-28.19],[-58.63,-40.52],[-86.21,-60.3],[-114.23,-68.38],[-128.16,-73.66],[-132.61,-78.2],[-136.76,-80.8],[-137.58,-83.83],[-140.58,-85.84],[-147.88,-99.61],[-153.55,-130.66],[-156.94,-136.34],[-158.35,-141.63],[-163.32,-146.4],[-163.34,-148.75],[-167.83,-152.74],[-172.51,-154.75],[-186.03,-162.93],[-227.03,-165.48],[-254.67,-170.31],[-267.55,-175.38]],"v":[[-299,-187],[-300.53,-187.05],[-302,-187],[-304.79,-181.96],[-302,-175],[-299.48,-171.04],[-298,-170],[-284.4,-161.21],[-270,-153],[-260.6,-143.92],[-253,-134],[-243.47,-109.36],[-233,-86],[-225.82,-79.75],[-217,-76],[-205.56,-72.42],[-194,-69],[-188.37,-67.25],[-183,-65],[-182.51,-64.03],[-182,-63],[-179,-62],[-170,-50],[-169,-8],[-170,2],[-154,31],[-142,24],[-123,12],[-122,10],[-120,10],[-119,8],[-111,4],[-101,-3],[-84,-13],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-69,-23],[-66,-25],[-60,-32],[-77,-55],[-107,-66],[-127,-73],[-131,-77],[-136,-80],[-137,-83],[-140,-85],[-141,-88],[-153,-129],[-156,-134],[-158,-141],[-163,-146],[-163,-148],[-167,-152],[-170,-153],[-176,-158],[-213,-165],[-254,-170],[-257,-171]],"c":true}],"h":1},{"t":193,"s":[{"i":[[-285.71,-192.15],[-304.5,-183.73],[-303.39,-176.4],[-297.19,-168.95],[-291.44,-165.28],[-286.32,-162.28],[-278.64,-158.06],[-267.72,-150.87],[-257.14,-140.35],[-248.94,-124.66],[-242.74,-107.43],[-236.91,-92.98],[-228.88,-81.79],[-221.35,-78.46],[-215.84,-76.61],[-201.75,-72.32],[-184.12,-65.99],[-174.29,-57.74],[-168.58,-46.35],[-167.89,-23.67],[-171.14,3.04],[-168.39,15.54],[-164.11,23.57],[-160.26,27.6],[-154.75,30.98],[-151.19,29.89],[-143.9,25.25],[-126.99,14.08],[-106.35,0.41],[-95.35,-6.64],[-86.63,-11.81],[-83.68,-13.51],[-83.19,-14.88],[-81.2,-15.95],[-77.93,-17.4],[-70.5,-21.92],[-60.41,-29.15],[-60.59,-35.23],[-64.35,-42.98],[-65.74,-45.43],[-66.72,-47.67],[-69.16,-49.79],[-73.47,-52.5],[-77.74,-55.94],[-83.5,-58.07],[-88.03,-59.96],[-90.93,-61.63],[-109.57,-67.04],[-134.43,-77.29],[-137.5,-83.31],[-138.88,-83.85],[-148.8,-108.35],[-161.49,-150.46],[-176.32,-157.52],[-176.78,-158.89],[-178.28,-159.59],[-181.14,-160.71],[-201.21,-164.57],[-234.9,-166.07],[-248.41,-168.81],[-255.05,-170.22]],"o":[[-302.81,-185.53],[-304.79,-179.17],[-299.47,-170.81],[-293.18,-166.18],[-289,-163.75],[-281.14,-159.44],[-271.9,-153.69],[-260.34,-144.2],[-251.33,-130.44],[-244.65,-113.15],[-238.97,-97.83],[-231.87,-84.96],[-223.18,-79.16],[-217.68,-77.19],[-208.19,-74.08],[-189.71,-68.28],[-177,-60.82],[-170.08,-50.51],[-166.81,-33.19],[-170.05,-5.56],[-169.59,12.51],[-165.66,21.07],[-162.13,26.11],[-156.57,30.04],[-153.24,31.02],[-146.52,27],[-134.57,19.13],[-112.88,4.73],[-98.29,-4.73],[-89.53,-10.18],[-83.83,-13.07],[-83.36,-14.41],[-82.23,-15.5],[-79.04,-16.9],[-74.54,-19.6],[-63.43,-26.7],[-59.67,-32.49],[-62.93,-40.48],[-65.38,-44.59],[-66.41,-46.97],[-67.67,-48.79],[-72.06,-51.64],[-75.99,-54.91],[-81.49,-57.52],[-87.07,-59.4],[-89.96,-61.08],[-99.61,-64.64],[-126.98,-73.37],[-137.06,-83.14],[-138.41,-83.67],[-146.81,-93.37],[-156.14,-136.89],[-176.18,-157.08],[-176.62,-158.43],[-177.46,-159.24],[-180.12,-160.33],[-190.26,-163.79],[-223.53,-165.71],[-246.13,-168.45],[-252.87,-169.7],[-267.4,-175.15]],"v":[[-299,-187],[-304.64,-181.45],[-301,-173],[-295.18,-167.57],[-291,-165],[-283.73,-160.86],[-277,-157],[-264.03,-147.53],[-254,-135],[-246.8,-118.9],[-241,-103],[-234.39,-88.97],[-225,-80],[-219.51,-77.82],[-214,-76],[-195.73,-70.3],[-180,-63],[-172.19,-54.12],[-168,-42],[-168.97,-14.62],[-170,10],[-167.03,18.31],[-163,25],[-158.41,28.82],[-154,31],[-148.86,28.45],[-142,24],[-119.93,9.4],[-101,-3],[-92.44,-8.41],[-84,-13],[-83.52,-13.96],[-83,-15],[-80.12,-16.42],[-77,-18],[-66.97,-24.31],[-60,-31],[-61.76,-37.85],[-65,-44],[-66.07,-46.2],[-67,-48],[-70.61,-50.71],[-74,-53],[-79.62,-56.73],[-86,-59],[-88.99,-60.52],[-92,-62],[-118.27,-70.2],[-137,-83],[-137.95,-83.49],[-139,-84],[-152.47,-122.62],[-176,-157],[-176.47,-157.98],[-177,-159],[-179.2,-159.96],[-182,-161],[-212.37,-165.14],[-244,-168],[-250.64,-169.26],[-257,-171]],"c":true}],"h":1},{"t":194,"s":[{"i":[[-292.42,-188.7],[-303.05,-185.36],[-304.67,-181.68],[-299,-170.29],[-285.46,-162],[-279.27,-158.67],[-273.11,-155.52],[-266.03,-149.65],[-256.76,-138.96],[-247.26,-117.66],[-235.79,-87.55],[-218.79,-77.12],[-198.18,-71.91],[-182.73,-65.45],[-171.69,-54.34],[-168.24,-27.52],[-172.11,6.53],[-165.19,21.65],[-155.31,31.01],[-151.99,30.1],[-146.43,27.2],[-145.68,26.49],[-145.18,25.12],[-144.4,24.9],[-143.25,25.12],[-142.68,24.49],[-142.19,23.12],[-139.97,21.9],[-136.82,20.53],[-131.25,16.82],[-125.11,12.95],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-116.05,6.48],[-111.57,4.54],[-107.76,1.27],[-102.71,-1.9],[-95.02,-6.67],[-86.35,-11.82],[-74.12,-20.14],[-69.37,-23.75],[-67.51,-23.77],[-66.34,-25.75],[-64.49,-25.78],[-63.26,-27.76],[-61.37,-27.67],[-61.1,-30.53],[-64.66,-45.13],[-114.16,-65.53],[-141.25,-86.72],[-151.16,-125.11],[-162.82,-145.42],[-174.87,-158],[-232.18,-162.11],[-269.27,-177.04],[-275.62,-181.72],[-278.42,-182.72]],"o":[[-301.22,-186.02],[-304.78,-183.19],[-302.76,-174.04],[-290.35,-164.27],[-280.97,-159.4],[-275.35,-156.73],[-269.15,-152.66],[-259.84,-142.8],[-250.61,-128.63],[-239.85,-97.12],[-225.44,-79.42],[-205.16,-73.36],[-187.63,-68.03],[-174.75,-58.6],[-166.93,-39.28],[-170.82,-4.61],[-168.03,17.64],[-158.82,28.33],[-153.52,31],[-148.45,28.2],[-145.84,26.93],[-145.35,25.59],[-144.77,24.85],[-143.64,25.04],[-142.84,24.93],[-142.36,23.59],[-141.06,22.38],[-137.85,20.97],[-133.45,18.34],[-127.08,14.12],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-117.77,7.21],[-112.95,5.15],[-109.41,2.47],[-104.42,-0.92],[-97.85,-5.01],[-89.27,-10.08],[-79.77,-16.1],[-69.68,-22.15],[-68.54,-24.31],[-66.7,-24.14],[-65.57,-26.31],[-63.75,-26.11],[-62.64,-28.34],[-60.67,-28.29],[-60.19,-34.84],[-77.08,-62.44],[-136.32,-80.62],[-151.1,-105.62],[-160.3,-142.46],[-167.29,-151.4],[-199.86,-170.07],[-262.56,-173.45],[-275.35,-180.18],[-276.66,-182.49],[-284.77,-185.82]],"v":[[-298,-187],[-303.92,-184.28],[-304,-179],[-294.67,-167.28],[-282,-160],[-277.31,-157.7],[-271,-154],[-262.94,-146.22],[-255,-136],[-243.55,-107.39],[-230,-83],[-211.97,-75.24],[-193,-70],[-178.74,-62.03],[-170,-49],[-169.53,-16.07],[-169,15],[-162,24.99],[-153,31],[-150.22,29.15],[-146,27],[-145.52,26.04],[-145,25],[-144.02,24.97],[-143,25],[-142.52,24.04],[-142,23],[-138.91,21.44],[-136,20],[-129.17,15.47],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-114.5,5.82],[-111,4],[-106.09,0.18],[-101,-3],[-92.15,-8.38],[-83,-14],[-70,-22],[-69,-24],[-67,-24],[-66,-26],[-64,-26],[-63,-28],[-61,-28],[-61,-31],[-66,-47],[-131,-77],[-144,-92],[-159,-140],[-164,-147],[-179,-160],[-256,-171],[-275,-180],[-276,-182],[-279,-183]],"c":true}],"h":1},{"t":195,"s":[{"i":[[-293.61,-188.27],[-300.15,-186.5],[-302.25,-186.22],[-303.62,-185.56],[-304.15,-177.99],[-294.89,-167.28],[-292.01,-165.57],[-290.37,-165.21],[-287.35,-163.61],[-283.32,-161.75],[-276.97,-157.84],[-269.46,-152.24],[-264.97,-148.2],[-260.29,-142.83],[-257.44,-138.79],[-255.47,-135.83],[-247.44,-117.07],[-237.26,-89.78],[-229.96,-83.51],[-226.13,-81.57],[-205.13,-74.56],[-177.83,-64.44],[-169.18,-32.43],[-172.33,8.1],[-167.42,18.57],[-163.35,22.72],[-154.81,29.77],[-146.24,26.4],[-139.25,21.68],[-136.92,19.6],[-133.5,17.76],[-129.82,16.53],[-128.39,15.45],[-127.34,14.26],[-126,13.29],[-124.52,12.36],[-116,6.63],[-104.32,-0.88],[-91.25,-9.32],[-76.94,-18.8],[-69.98,-23.07],[-66.87,-24.41],[-63.63,-26.6],[-61.28,-28.98],[-60.99,-33.82],[-63.78,-41.74],[-74.22,-55.21],[-94.47,-63.63],[-119.47,-71.66],[-140,-84.17],[-147.85,-99.19],[-150.89,-111.67],[-156.74,-132.71],[-168.56,-152.71],[-180.27,-160.21],[-188.49,-163.23],[-206.31,-165.83],[-230.29,-166.1],[-250.57,-169.13],[-263.99,-174.96],[-277.37,-182.2]],"o":[[-299.2,-186.65],[-301.67,-186.28],[-303.23,-185.86],[-305.96,-182.1],[-298.61,-170.58],[-292.57,-165.71],[-290.91,-165.32],[-288.69,-164.24],[-284.66,-162.37],[-279.74,-159.72],[-271.82,-154.09],[-266.57,-149.79],[-261.83,-144.72],[-258.2,-139.87],[-256.07,-136.77],[-250.56,-127.18],[-240.79,-98.37],[-231.15,-84.22],[-227.46,-82.18],[-215.71,-76.34],[-186.18,-68.61],[-168.51,-46.24],[-171.08,-5.26],[-168.49,17.22],[-164.85,21.33],[-157.43,28.32],[-149.21,28.81],[-140.04,22.38],[-137.69,20.29],[-134.84,18.24],[-130.99,16.9],[-128.71,15.82],[-127.7,14.66],[-126.49,13.62],[-125.01,12.66],[-120.08,9.32],[-108.11,1.53],[-96.03,-6.17],[-81.71,-15.64],[-71.04,-22.62],[-67.89,-23.97],[-64.74,-25.86],[-61.9,-28.16],[-60.6,-31.45],[-62.58,-38.97],[-68.74,-50.89],[-87.09,-61.57],[-110.97,-68.83],[-133.99,-79.34],[-146.4,-95.1],[-150.09,-107.48],[-154.21,-124.61],[-163.91,-146.77],[-177.77,-158.84],[-185.63,-162.4],[-198.92,-165.53],[-222,-166.12],[-245.32,-167.65],[-259.9,-172.79],[-272.06,-179.07],[-288.15,-186.8]],"v":[[-298,-187],[-300.91,-186.39],[-302.74,-186.04],[-304,-185],[-301.38,-174.29],[-293,-166],[-291.46,-165.44],[-290,-165],[-286,-162.99],[-282,-161],[-274.4,-155.97],[-268,-151],[-263.4,-146.46],[-259,-141],[-256.75,-137.78],[-255,-135],[-244.12,-107.72],[-232,-85],[-228.71,-82.85],[-225,-81],[-195.66,-71.58],[-173,-55],[-170.13,-18.85],[-169,16],[-166.13,19.95],[-162,24],[-152.01,29.29],[-141,23],[-138.47,20.98],[-136,19],[-132.25,17.33],[-129,16],[-128.04,15.05],[-127,14],[-125.5,12.98],[-124,12],[-112.05,4.08],[-101,-3],[-86.48,-12.48],[-72,-22],[-68.94,-23.52],[-66,-25],[-62.76,-27.38],[-61,-30],[-61.78,-36.4],[-65,-44],[-80.66,-58.39],[-102,-66],[-126.73,-75.5],[-144,-91],[-148.97,-103.33],[-152,-116],[-160.32,-139.74],[-175,-157],[-182.95,-161.3],[-192,-164],[-214.16,-165.97],[-239,-167],[-255.23,-170.96],[-268,-177],[-282.76,-184.5]],"c":true}],"h":1},{"t":196,"s":[{"i":[[-294.59,-189.6],[-301.87,-185.69],[-302.64,-185.49],[-304.5,-179.64],[-299.15,-171.42],[-295.68,-169.49],[-295.18,-168.12],[-293.26,-167.08],[-290.64,-166.29],[-289.68,-165.48],[-289.2,-164.12],[-285.69,-162.33],[-279.01,-159.46],[-277.68,-158.49],[-277.19,-157.12],[-276.39,-156.91],[-275.26,-157.12],[-274.68,-156.49],[-274.18,-155.12],[-273.4,-154.9],[-272.25,-155.11],[-271.68,-154.49],[-271.17,-153.12],[-267.47,-150.41],[-264.09,-147.43],[-261.56,-144.03],[-260.39,-141.86],[-259.49,-140.68],[-258.12,-140.19],[-257.32,-138.74],[-256.31,-136.52],[-248.25,-117.33],[-236.31,-88.55],[-222.44,-80.64],[-211.24,-76.92],[-177.12,-66.34],[-176.53,-0.36],[-163.05,23.74],[-159.77,26.49],[-151.45,29.46],[-145.37,25.25],[-143.51,25.23],[-142.37,23.25],[-137.9,21.24],[-104.73,-0.8],[-77.96,-17.08],[-74.85,-19.18],[-67.91,-23.47],[-62.67,-27.7],[-65.94,-45.79],[-70.12,-51.58],[-78.51,-58.21],[-104.62,-67.08],[-131.79,-78.33],[-140.56,-86.13],[-152.38,-128.93],[-173.16,-155.61],[-183.14,-162.29],[-230.65,-165.36],[-262.65,-174.33],[-276.38,-180.55]],"o":[[-301.55,-185.69],[-302.42,-185.59],[-304.67,-182.68],[-301.73,-174.01],[-295.84,-169.93],[-295.35,-168.59],[-294.19,-167.44],[-291.49,-166.51],[-289.83,-165.92],[-289.36,-164.58],[-287.93,-163.35],[-281.23,-160.38],[-277.84,-158.93],[-277.36,-157.59],[-276.76,-156.85],[-275.64,-157.04],[-274.84,-156.93],[-274.35,-155.59],[-273.77,-154.85],[-272.64,-155.04],[-271.85,-154.93],[-271.34,-153.59],[-268.92,-151.44],[-265.06,-148.4],[-262.12,-144.85],[-260.7,-142.54],[-259.92,-140.83],[-258.58,-140.36],[-257.66,-139.48],[-256.64,-137.26],[-251.34,-128.05],[-240.73,-97.57],[-226.07,-82.18],[-215.02,-78.01],[-191.73,-71.39],[-165.23,-33.03],[-168.76,16.51],[-160.04,25.59],[-153.21,30.89],[-145.68,26.85],[-144.54,24.69],[-142.67,24.85],[-140.08,21.74],[-114.55,6.07],[-82.13,-15.19],[-76.16,-18.8],[-71.55,-22.35],[-63.2,-27.25],[-60.86,-36.6],[-69.91,-50.05],[-75.45,-55.6],[-93.02,-65.66],[-124.64,-73.98],[-138.87,-84.68],[-154.31,-103.95],[-167,-150.41],[-179.39,-159.49],[-201.13,-169.11],[-256.28,-170.74],[-271.89,-178.94],[-284.4,-184.98]],"v":[[-301,-186],[-302.15,-185.64],[-303,-185],[-303.11,-176.82],[-296,-170],[-295.51,-169.04],[-295,-168],[-292.37,-166.79],[-290,-166],[-289.52,-165.03],[-289,-164],[-283.46,-161.35],[-278,-159],[-277.52,-158.04],[-277,-157],[-276.02,-156.97],[-275,-157],[-274.52,-156.04],[-274,-155],[-273.02,-154.97],[-272,-155],[-271.51,-154.04],[-271,-153],[-266.26,-149.4],[-263,-146],[-261.13,-143.28],[-260,-141],[-259.04,-140.52],[-258,-140],[-256.98,-138],[-256,-136],[-244.49,-107.45],[-229,-84],[-218.73,-79.32],[-208,-76],[-172,-52],[-169,16],[-161,25],[-159,27],[-146,27],[-145,25],[-143,25],[-142,23],[-136,20],[-84,-14],[-77,-18],[-74,-20],[-66,-25],[-62,-31],[-68,-48],[-72,-53],[-82,-60],[-116,-71],[-137,-83],[-142,-88],[-164,-146],[-177,-158],[-185,-163],[-248,-169],[-268,-177],[-279,-182]],"c":true}],"h":1},{"t":197,"s":[{"i":[[-300.18,-186.46],[-302.13,-185.71],[-303.72,-185.5],[-304.74,-182.01],[-302.52,-176.11],[-297.12,-170.05],[-291.83,-166.89],[-281.06,-160.35],[-265.45,-149.52],[-261.59,-144.05],[-261.34,-142.46],[-259.67,-140.6],[-257.41,-138.69],[-255.25,-134.69],[-252.81,-128.88],[-248.84,-118.57],[-244.76,-105.96],[-238.76,-94.08],[-229.94,-84.36],[-223.36,-81.45],[-217.91,-79.59],[-200.74,-74.98],[-181.35,-66.76],[-173.52,-55.35],[-170.27,-44.66],[-170.62,-23.04],[-172.96,4.55],[-169.33,15.24],[-164.99,21.13],[-159.96,25.48],[-153.5,29.98],[-151.38,29.65],[-148.17,27.73],[-143.15,24.59],[-137.81,21.17],[-117.53,7.88],[-94.8,-7.12],[-81.74,-15.25],[-77.42,-17.6],[-76.04,-18.7],[-74.42,-19.59],[-69.18,-23.39],[-62.54,-27.78],[-62.36,-35.85],[-66.39,-44.91],[-67.89,-48.03],[-68.75,-50.68],[-78.52,-59.12],[-99.52,-66.64],[-121.66,-73.92],[-139.38,-84.13],[-150.85,-105.93],[-155.92,-127.16],[-160.67,-138.44],[-167.64,-151.17],[-174.03,-155.32],[-176.13,-158.46],[-180.1,-160.07],[-192.21,-165.02],[-225.48,-166.4],[-277.36,-185.49]],"o":[[-301.52,-185.71],[-303.23,-185.6],[-304.73,-183.71],[-303.64,-178.22],[-299.46,-171.86],[-293.31,-167.57],[-286.84,-163.59],[-270.37,-153.31],[-261.67,-144.57],[-261.42,-143],[-260.46,-141.26],[-258.14,-139.32],[-256.1,-136.5],[-253.61,-130.88],[-250.22,-122.84],[-246.11,-110.13],[-241.29,-98.15],[-233.08,-87.18],[-225.15,-82.15],[-219.74,-80.17],[-208.31,-76.6],[-187.25,-70.06],[-175.13,-58.52],[-171.09,-48.42],[-169.39,-32.81],[-172.41,-4.36],[-170.34,13.17],[-166.66,19.22],[-162.21,23.74],[-155.6,28.6],[-152.29,30.03],[-149.32,28.5],[-145,25.75],[-139.56,22.3],[-125.13,12.94],[-102.36,-2.15],[-83.28,-14.46],[-78.81,-16.82],[-76.58,-18.4],[-74.96,-19.29],[-71.91,-22],[-64.5,-26.28],[-61.41,-32.4],[-64.85,-42.11],[-67.52,-46.94],[-68.51,-49.9],[-72.76,-55.8],[-91.9,-64.54],[-114.47,-71.36],[-134.12,-80.31],[-148.17,-95.95],[-154.66,-120.23],[-158.94,-135.65],[-164.55,-145.92],[-172.83,-155.73],[-175.82,-156.57],[-177.43,-159.27],[-187.59,-163.73],[-213.24,-168.05],[-265.77,-170.56],[-297.59,-187.44]],"v":[[-301,-186],[-302.68,-185.66],[-304,-185],[-304.19,-180.11],[-301,-174],[-295.22,-168.81],[-292,-167],[-275.72,-156.83],[-262,-145],[-261.51,-143.53],[-261,-142],[-258.9,-139.96],[-257,-138],[-254.43,-132.79],[-252,-127],[-247.48,-114.35],[-243,-102],[-235.92,-90.63],[-227,-83],[-221.55,-80.81],[-216,-79],[-193.99,-72.52],[-177,-61],[-172.3,-51.89],[-170,-41],[-171.51,-13.7],[-171,11],[-168,17.23],[-163,23],[-157.78,27.04],[-153,30],[-150.35,29.07],[-147,27],[-141.36,23.45],[-136,20],[-109.95,2.86],[-84,-14],[-80.28,-16.04],[-77,-18],[-75.5,-18.99],[-74,-20],[-66.84,-24.83],[-62,-30],[-63.61,-38.98],[-67,-46],[-68.2,-48.96],[-69,-51],[-85.21,-61.83],[-107,-69],[-127.89,-77.12],[-143,-89],[-153,-114],[-158,-133],[-162,-141],[-172,-155],[-175,-156],[-177,-159],[-182,-161],[-199,-166],[-241,-168],[-293,-187]],"c":true}],"h":1},{"t":198,"s":[{"i":[[-300.31,-186.46],[-301.86,-185.7],[-302.72,-185.58],[-304.29,-179.84],[-301.05,-175.39],[-294.54,-168.52],[-284.72,-162.71],[-279.45,-159.3],[-275.79,-156.6],[-274.05,-155.61],[-272.41,-155.33],[-267.22,-150.46],[-259.75,-140.94],[-249.19,-117.09],[-235.64,-87.56],[-220.7,-80.85],[-212.8,-78.75],[-200.47,-75.26],[-187.91,-70.05],[-178.1,-62.47],[-171.72,-51.24],[-171.21,-26.22],[-173.92,4.43],[-169.53,14.93],[-165.13,20.11],[-159.43,25.11],[-152.84,29.08],[-148.11,27.94],[-142.27,23.48],[-136.04,19.45],[-130.43,15.91],[-118.39,8.19],[-105,-0.48],[-97.1,-5.46],[-91.75,-8.88],[-86.1,-12.44],[-81.15,-15.52],[-77.48,-17.94],[-75.69,-18.69],[-74.68,-19.51],[-74.19,-20.88],[-70.02,-22.66],[-63.8,-26.31],[-66.28,-46.33],[-88.03,-64.62],[-123.43,-74.09],[-135.32,-82.66],[-138.53,-83.79],[-139.71,-85.75],[-151.72,-104.94],[-156.44,-126.4],[-160.18,-133.98],[-161.91,-141.04],[-164.56,-144.41],[-172.97,-155.73],[-178.63,-159.75],[-180.49,-159.77],[-181.56,-161.78],[-184.65,-162.86],[-235.94,-165.33],[-283.07,-187.52]],"o":[[-301.5,-185.67],[-302.47,-185.66],[-304.52,-181.89],[-302.56,-176.59],[-297.68,-170.92],[-288.06,-164.42],[-280.8,-160.25],[-276.94,-157.48],[-274.6,-155.69],[-272.96,-155.43],[-269.84,-153.24],[-262.17,-144.31],[-252.37,-128.55],[-240.82,-96.59],[-223.3,-81.72],[-215.45,-79.36],[-205.27,-76.73],[-191.79,-71.91],[-181.23,-65.35],[-173.34,-55.42],[-169.75,-36.93],[-173.3,-5.54],[-170.47,13.38],[-166.86,18.3],[-161.51,23.33],[-155.1,27.99],[-149.72,28.95],[-144.38,25.21],[-138.08,20.75],[-132.21,17.03],[-123.39,11.43],[-109.2,2.23],[-98.97,-4.27],[-93.48,-7.76],[-87.78,-11.43],[-82.79,-14.48],[-78.14,-17.59],[-76.26,-18.49],[-74.83,-19.07],[-74.36,-20.41],[-71.97,-22.31],[-65.52,-25.65],[-61.38,-34.44],[-74.69,-59.43],[-111.91,-72.11],[-133.83,-80.05],[-137.4,-84.32],[-139.27,-84.12],[-148.11,-92.86],[-156.18,-121.35],[-158.61,-132.8],[-161.9,-138.24],[-163.26,-143.46],[-168.96,-150.29],[-178.32,-158.15],[-179.46,-160.31],[-181.36,-160.16],[-182.79,-162.4],[-203.85,-170.45],[-270.6,-175.12],[-300.3,-186.96]],"v":[[-301,-186],[-302.17,-185.68],[-303,-185],[-303.42,-178.21],[-300,-174],[-291.3,-166.47],[-282,-161],[-278.2,-158.39],[-275,-156],[-273.51,-155.52],[-272,-155],[-264.7,-147.38],[-258,-138],[-245.01,-106.84],[-226,-83],[-218.08,-80.1],[-210,-78],[-196.13,-73.59],[-185,-68],[-175.72,-58.94],[-171,-46],[-172.25,-15.88],[-171,12],[-168.19,16.62],[-163,22],[-157.27,26.55],[-151,29],[-146.24,26.57],[-140,22],[-134.13,18.24],[-129,15],[-113.8,5.21],[-101,-3],[-95.29,-6.61],[-90,-10],[-84.45,-13.46],[-79,-17],[-76.87,-18.21],[-75,-19],[-74.52,-19.96],[-74,-21],[-68,-24],[-63,-29],[-68,-49],[-102,-69],[-132,-79],[-137,-84],[-139,-84],[-140,-86],[-155,-117],[-158,-131],[-161,-136],[-163,-143],[-165,-145],[-178,-158],[-179,-160],[-181,-160],[-182,-162],[-185,-163],[-256,-171],[-299,-187]],"c":true}],"h":1},{"t":199,"s":[{"i":[[-292.8,-191.42],[-302.1,-185.71],[-303.81,-185.52],[-304.5,-181.09],[-301.61,-174.94],[-298.35,-171.57],[-295.79,-170.57],[-293.4,-168.54],[-291.61,-166.4],[-290,-165.57],[-288.38,-165.22],[-284.47,-162.93],[-279.27,-159.79],[-277.36,-158.43],[-276.32,-157.22],[-274.3,-156],[-271.7,-154.6],[-265.79,-148.61],[-259.65,-139.04],[-256.61,-133.63],[-254.58,-130.26],[-247.95,-112.67],[-243.9,-101.91],[-241.24,-99.44],[-240.69,-96.35],[-234.09,-87.47],[-224.54,-83.26],[-213.8,-79.03],[-190.19,-74.01],[-178.41,-63.36],[-179.13,-10.47],[-168.13,16.49],[-162.8,22.69],[-152.21,29.65],[-138.26,21.1],[-127.97,14.72],[-116.49,7.12],[-88.16,-10.98],[-63.74,-25.82],[-64.69,-42.94],[-69.09,-49.75],[-85.04,-63.47],[-102.05,-69.11],[-108.47,-71.84],[-114.27,-73.07],[-124.45,-77],[-131.16,-79.2],[-132.82,-80.3],[-137.44,-84.75],[-142.24,-87.16],[-144.17,-90.84],[-155.15,-130.66],[-168.46,-149.28],[-174.96,-156.63],[-178.63,-159.75],[-180.49,-159.77],[-181.57,-161.77],[-184.59,-162.45],[-188.1,-164.7],[-224.19,-167.16],[-261.27,-172.95]],"o":[[-301.44,-185.71],[-303.28,-185.62],[-304.7,-183.11],[-302.96,-177],[-299.2,-172.04],[-296.64,-170.84],[-294.09,-169.34],[-292.16,-167.07],[-290.56,-165.71],[-288.91,-165.32],[-286.33,-164.03],[-280.94,-160.81],[-277.7,-158.81],[-276.67,-157.63],[-275.2,-156.45],[-272.55,-155.08],[-268.21,-151.59],[-261.51,-142.33],[-257.32,-134.75],[-255.24,-131.38],[-250.29,-120.92],[-244.01,-103.76],[-242.82,-99.63],[-240.25,-97.63],[-238.63,-92.34],[-229.31,-84.11],[-216.9,-80.54],[-202.49,-75.95],[-182.17,-66.33],[-165.09,-39.25],[-171.12,12.52],[-164.65,21.14],[-151.95,29.3],[-141.7,23.47],[-129.91,15.73],[-119.94,9.22],[-99.6,-3.15],[-70.42,-22.28],[-62.53,-29.38],[-66.75,-47.75],[-77.31,-59.45],[-98.87,-68.37],[-106.38,-70.08],[-111.41,-72.74],[-121.01,-75.37],[-129.44,-78.96],[-132.85,-80.82],[-136.44,-82.45],[-140.47,-87.17],[-143.67,-88.73],[-155.79,-107.04],[-167.42,-148.61],[-171.7,-153.6],[-178.32,-158.15],[-179.46,-160.31],[-181.36,-160.16],[-183.36,-162.74],[-187.13,-163.44],[-204.65,-170.24],[-250.47,-169.73],[-273.1,-178.08]],"v":[[-301,-186],[-302.69,-185.67],[-304,-185],[-303.73,-179.04],[-300,-173],[-297.49,-171.21],[-295,-170],[-292.78,-167.81],[-291,-166],[-289.45,-165.45],[-288,-165],[-282.7,-161.87],[-278,-159],[-277.02,-158.03],[-276,-157],[-273.43,-155.54],[-271,-154],[-263.65,-145.47],[-258,-136],[-255.92,-132.51],[-254,-129],[-245,-106],[-243,-100],[-241,-99],[-240,-95],[-232,-86],[-221,-82],[-210,-78],[-186,-70],[-176,-59],[-172,10],[-167,18],[-159,25],[-146,26],[-135,19],[-124,12],[-113,5],[-74,-20],[-63,-28],[-66,-46],[-71,-52],[-95,-67],[-106,-70],[-109,-72],[-117,-74],[-127,-78],[-132,-80],[-134,-81],[-139,-86],[-143,-88],[-145,-92],[-167,-148],[-169,-150],[-178,-158],[-179,-160],[-181,-160],[-182,-162],[-186,-163],[-189,-165],[-243,-169],[-266,-175]],"c":true}],"h":1},{"t":200,"s":[{"i":[[-296.37,-189.02],[-301.87,-185.71],[-302.72,-185.58],[-302.35,-175.2],[-288.24,-165.3],[-283.24,-162.39],[-279.32,-159.92],[-271.96,-154.39],[-264.32,-145.92],[-262.49,-142.68],[-261.12,-142.19],[-260.32,-140.74],[-259.31,-138.52],[-255.55,-131.67],[-251.03,-121.69],[-249.24,-116.3],[-248.47,-112.17],[-247.14,-109.17],[-245.49,-106.09],[-240.55,-96.13],[-231.86,-86.75],[-222.16,-82.54],[-213.61,-79.71],[-202.81,-77.09],[-191.06,-73.84],[-187.01,-71.16],[-185.44,-69.37],[-181.26,-65.77],[-177.07,-60.94],[-174.26,-55.26],[-172.27,-48.19],[-172.51,-27],[-175.12,3.59],[-167.37,17.77],[-153.8,28.17],[-147.18,27.15],[-141.16,23.41],[-132.84,17.85],[-125.4,12.58],[-120.91,9.85],[-117.95,8.6],[-111.43,4.25],[-103.22,-1.6],[-96.87,-5.6],[-91.85,-8.81],[-86.08,-12.46],[-81.09,-15.56],[-70.79,-21.88],[-64.79,-26.07],[-66.24,-45.67],[-79.28,-60.25],[-92.87,-66.9],[-109.69,-72.89],[-123.63,-76.5],[-138.83,-84.68],[-153.15,-108.92],[-164.53,-143.72],[-184.63,-164.31],[-221.21,-168.02],[-249.22,-170.96],[-273.62,-179.17]],"o":[[-301.5,-185.67],[-302.48,-185.66],[-305.48,-179.8],[-293.73,-167.95],[-284.58,-163.18],[-280.61,-160.76],[-275.05,-156.93],[-266.59,-148.89],[-262.92,-142.83],[-261.58,-142.36],[-260.66,-141.48],[-259.64,-139.26],[-257.28,-135.07],[-252.42,-124.98],[-249.51,-117.72],[-248.72,-113.52],[-247.65,-110.13],[-246.06,-107.15],[-242.87,-100.25],[-235.04,-89.38],[-225.11,-83.68],[-216.42,-80.56],[-207.03,-77.92],[-194.82,-75.05],[-187.54,-71.72],[-185.96,-69.98],[-182.97,-67.3],[-178.31,-62.59],[-175.12,-57.41],[-172.83,-50.65],[-170.94,-37.54],[-174.59,-6.43],[-170.97,13.44],[-158.78,25.14],[-148.85,27.95],[-143.34,24.88],[-135.65,19.81],[-127.72,14.23],[-121.93,10.3],[-118.92,9],[-114.32,6.3],[-105.88,0.3],[-98.69,-4.45],[-93.45,-7.78],[-87.78,-11.43],[-82.73,-14.53],[-75.41,-19.46],[-65.82,-25.66],[-62.57,-34.29],[-72.45,-57.42],[-90.34,-65.62],[-103.34,-70.57],[-119.42,-76.15],[-132.74,-80.55],[-151.23,-97.52],[-160.11,-132.56],[-177.81,-158.98],[-210.18,-169.87],[-243.67,-169.41],[-265.78,-174.56],[-287.6,-184.88]],"v":[[-301,-186],[-302.17,-185.69],[-303,-185],[-298.04,-171.58],[-286,-164],[-281.92,-161.57],[-278,-159],[-269.27,-151.64],[-263,-143],[-262.04,-142.52],[-261,-142],[-259.98,-140],[-259,-138],[-253.98,-128.32],[-250,-119],[-248.98,-114.91],[-248,-111],[-246.6,-108.16],[-245,-105],[-237.8,-92.75],[-228,-85],[-219.29,-81.55],[-211,-79],[-198.82,-76.07],[-188,-72],[-186.48,-70.57],[-185,-69],[-179.78,-64.18],[-176,-59],[-173.54,-52.95],[-172,-46],[-173.55,-16.71],[-172,11],[-163.08,21.46],[-150,28],[-145.26,26.02],[-139,22],[-130.28,16.04],[-123,11],[-119.91,9.43],[-117,8],[-108.66,2.28],[-101,-3],[-95.16,-6.69],[-90,-10],[-84.41,-13.49],[-79,-17],[-68,-24],[-64,-29],[-68,-49],[-87,-64],[-96,-68],[-116,-75],[-127,-78],[-143,-89],[-157,-122],[-170,-150],[-197,-167],[-237,-169],[-254,-172],[-283,-183]],"c":true}],"h":1},{"t":201,"s":[{"i":[[-299.4,-186.31],[-300.63,-185.96],[-301.8,-186.16],[-304.76,-181.03],[-300.61,-174.78],[-297.35,-171.54],[-292.81,-168.78],[-291.36,-167.53],[-290.54,-167.35],[-282.95,-162.43],[-275.67,-157.18],[-270.85,-152.98],[-269,-150.24],[-266.92,-147.85],[-265.39,-146.51],[-258.68,-136.39],[-251.81,-120.02],[-244.3,-102.24],[-235.54,-90.09],[-223.91,-84.12],[-210.49,-80.28],[-189.91,-73.45],[-174.25,-57.73],[-172.87,-33.21],[-175.93,-8.11],[-173.89,5.63],[-170.94,12.53],[-169.43,14.92],[-168.31,16.65],[-163.1,21.24],[-151.17,28.12],[-147.65,27.55],[-145.02,25.68],[-140.2,22.53],[-134.66,19.05],[-129.95,16.08],[-126.14,13.71],[-124.36,12.42],[-123.33,11.21],[-120.94,9.88],[-117.91,8.58],[-112.51,4.92],[-105.69,-0.02],[-101.03,-2.76],[-97.43,-5.08],[-89.08,-10.58],[-78.59,-17.67],[-70.38,-22.58],[-65.63,-26.01],[-65.97,-44.8],[-75.85,-58.71],[-92.79,-67.92],[-138.06,-80.39],[-155,-111.33],[-162.85,-139.49],[-177.53,-157.84],[-182.33,-161.59],[-189.17,-164.62],[-197.98,-167.64],[-228.63,-168.21],[-280.16,-185.03]],"o":[[-300.23,-185.88],[-301.42,-186.1],[-304.95,-183.64],[-302.59,-176.6],[-298.95,-172.65],[-294.28,-169.6],[-291.59,-167.61],[-290.84,-167.4],[-285.87,-164.34],[-277.85,-158.84],[-271.6,-153.86],[-269.55,-151.17],[-267.48,-148.35],[-265.87,-146.93],[-261.28,-141.13],[-253.95,-125.84],[-246.78,-107.44],[-238.68,-93.57],[-228.16,-85.73],[-215.08,-81.4],[-197.53,-76.58],[-178.27,-64.03],[-171.91,-41.41],[-174.89,-16.57],[-174.67,2.86],[-172.03,10.46],[-169.78,14.34],[-168.7,16.07],[-166.76,18.43],[-155.3,26.09],[-148.38,27.97],[-145.96,26.41],[-142.12,23.76],[-136.47,20.18],[-131.38,16.98],[-127.33,14.45],[-124.7,12.81],[-123.68,11.62],[-121.98,10.35],[-118.9,9],[-114.91,6.68],[-107.9,1.57],[-102.32,-1.97],[-98.58,-4.31],[-92.54,-8.24],[-82.11,-15.29],[-72.57,-21.58],[-66.91,-24.8],[-63.66,-32.26],[-70.62,-54.42],[-86.43,-65.47],[-119.25,-76.78],[-153.2,-102.65],[-160.08,-128.31],[-172.03,-152.88],[-181.6,-160.37],[-187.82,-164.98],[-196.28,-166.65],[-215.61,-170.75],[-269.61,-172.44],[-299.25,-187.14]],"v":[[-300,-186],[-301.02,-186.03],[-302,-186],[-303.68,-178.82],[-300,-174],[-295.82,-170.57],[-292,-168],[-291.1,-167.47],[-290,-167],[-280.4,-160.63],[-273,-155],[-270.2,-152.07],[-268,-149],[-266.4,-147.39],[-265,-146],[-256.32,-131.11],[-249,-113],[-241.49,-97.9],[-232,-88],[-219.49,-82.76],[-206,-79],[-184.09,-68.74],[-173,-49],[-173.88,-24.89],[-175,0],[-172.96,8.05],[-170,14],[-169.06,15.49],[-168,17],[-159.2,23.66],[-149,28],[-146.8,26.98],[-144,25],[-138.34,21.35],[-133,18],[-128.64,15.27],[-125,13],[-124.02,12.02],[-123,11],[-119.92,9.44],[-117,8],[-110.2,3.24],[-104,-1],[-99.81,-3.54],[-96,-6],[-85.59,-12.93],[-75,-20],[-68.65,-23.69],[-65,-28],[-68,-49],[-81,-62],[-99,-70],[-148,-95],[-157,-118],[-168,-147],[-181,-160],[-183,-162],[-194,-166],[-200,-168],[-246,-170],[-298,-187]],"c":true}],"h":1},{"t":202,"s":[{"i":[[-299.4,-186.31],[-300.63,-185.96],[-301.8,-186.16],[-304.26,-178.79],[-293.82,-169.59],[-287.91,-165.44],[-281.82,-161.32],[-278.29,-158.96],[-275.81,-157.68],[-264.08,-145.51],[-253.82,-124.15],[-248.2,-111.03],[-245.06,-105.03],[-241.83,-98.41],[-238.56,-92.43],[-234.64,-89.37],[-230.45,-87.74],[-225.99,-85.45],[-221.64,-83.51],[-212.99,-81.26],[-202.31,-79.16],[-197.34,-77.14],[-194.76,-75.33],[-189.62,-73.01],[-185.46,-70.3],[-180.93,-66.08],[-177.89,-61.8],[-173.46,-39.31],[-176.94,-2.4],[-173.17,8.95],[-170.81,12.9],[-164.45,19.81],[-152.09,27.12],[-145.64,26.12],[-140.13,22.38],[-133.46,18.15],[-126.63,14.02],[-124.36,12.42],[-123.33,11.21],[-120.94,9.88],[-117.85,8.54],[-112.49,4.91],[-105.7,-0.01],[-101.08,-2.74],[-97.29,-5.16],[-92.09,-8.45],[-84.87,-12.84],[-79.4,-16.42],[-74.17,-20.24],[-69.67,-22.92],[-65.41,-25.85],[-65.07,-35.13],[-68.93,-50.23],[-99.75,-70.49],[-143.43,-87.2],[-157.41,-133.17],[-176.87,-156.58],[-185.77,-163.34],[-197.42,-168.26],[-238.97,-166.82],[-281.97,-185.23]],"o":[[-300.23,-185.88],[-301.42,-186.1],[-306.1,-182.74],[-298.12,-172.21],[-290.24,-167.03],[-283.69,-162.59],[-279.13,-159.37],[-276.63,-158.12],[-268.42,-151.44],[-256.78,-131.87],[-249.17,-113.01],[-246.15,-107.04],[-242.8,-100.7],[-239.71,-94.28],[-235.91,-90],[-231.9,-88.24],[-227.41,-86.19],[-223.1,-84.11],[-216.58,-81.93],[-205.85,-79.87],[-198.21,-77.72],[-195.62,-75.95],[-191.39,-73.86],[-186.65,-71.23],[-182.23,-67.43],[-178.75,-63.26],[-172.74,-51.36],[-175.56,-14.83],[-173.76,7.75],[-171.7,11.52],[-168.16,16.5],[-156.42,25.12],[-147.32,26.93],[-142.04,23.85],[-135.9,19.64],[-128.83,15.33],[-124.7,12.81],[-123.68,11.62],[-122.02,10.37],[-118.86,8.97],[-114.89,6.67],[-107.9,1.57],[-102.43,-1.91],[-98.51,-4.37],[-94.41,-7.03],[-87.32,-11.35],[-81.32,-15.05],[-75.83,-19.01],[-71.46,-21.99],[-66.64,-24.85],[-64.33,-28.89],[-67.04,-45.46],[-81.29,-66.74],[-131.62,-80.67],[-160.92,-115.96],[-173.84,-154.73],[-183.99,-162.08],[-193.64,-166.43],[-221.1,-172.1],[-274.11,-176.67],[-299.25,-187.14]],"v":[[-300,-186],[-301.02,-186.03],[-302,-186],[-301.19,-175.5],[-293,-169],[-285.8,-164.01],[-280,-160],[-277.46,-158.54],[-275,-157],[-260.43,-138.69],[-250,-115],[-247.17,-109.04],[-244,-103],[-240.77,-96.35],[-237,-91],[-233.27,-88.8],[-229,-87],[-224.54,-84.78],[-220,-83],[-209.42,-80.57],[-199,-78],[-196.48,-76.54],[-194,-75],[-188.14,-72.12],[-184,-69],[-179.84,-64.67],[-177,-60],[-174.51,-27.07],[-174,7],[-172.43,10.24],[-170,14],[-160.44,22.47],[-149,27],[-143.84,24.99],[-138,21],[-131.15,16.74],[-125,13],[-124.02,12.02],[-123,11],[-119.9,9.43],[-117,8],[-110.2,3.24],[-104,-1],[-99.79,-3.55],[-96,-6],[-89.71,-9.9],[-83,-14],[-77.62,-17.71],[-73,-21],[-68.15,-23.89],[-65,-27],[-66,-40],[-71,-53],[-117,-76],[-150,-98],[-171,-151],[-180,-159],[-190,-165],[-202,-169],[-261,-173],[-298,-187]],"c":true}],"h":1},{"t":203,"s":[{"i":[[-294.72,-188.65],[-300.94,-185.96],[-302.77,-186.23],[-304.29,-178.63],[-293.75,-169.54],[-284.26,-163.07],[-273.62,-154.97],[-268.34,-149.5],[-264.94,-146.37],[-262.93,-142.88],[-261.55,-139.01],[-257.05,-130.19],[-251.54,-117.6],[-248.92,-111.48],[-247.51,-108.18],[-246.37,-105.88],[-245.27,-104.5],[-244.04,-101.71],[-242.72,-98.06],[-241.13,-96.29],[-239.32,-95.4],[-238.13,-93.45],[-237.44,-91.37],[-236.43,-90.89],[-235.23,-91.1],[-234.68,-90.49],[-234.19,-89.12],[-230.98,-87.48],[-218.4,-83.39],[-206.92,-79.92],[-197.49,-78.05],[-188.56,-73.15],[-185.29,-70.24],[-179.02,-64.66],[-182.75,-7.68],[-166.47,18.01],[-150.52,27.16],[-145.63,25.7],[-138.73,22.14],[-134.27,17.82],[-128.66,15.06],[-111.6,4.65],[-104.93,-0.46],[-98.96,-4.08],[-86.52,-11.81],[-75.42,-19.6],[-67.06,-23.85],[-67.01,-47.74],[-72.65,-54.63],[-73.32,-57.24],[-78.67,-61.47],[-97.67,-71.42],[-118.62,-76.65],[-146.22,-91.01],[-160.08,-132.29],[-168.96,-146.95],[-170.18,-149.15],[-183.58,-162.89],[-225.38,-168.87],[-262.72,-174.34],[-275.85,-179.22]],"o":[[-300.3,-185.85],[-302.17,-186.16],[-306.42,-182.61],[-297.96,-172.09],[-288.21,-165.58],[-276.97,-157.76],[-269.37,-150.31],[-266.13,-147.53],[-263.4,-144.13],[-262,-140.33],[-259.03,-134.39],[-253.31,-121.8],[-249.41,-112.63],[-247.96,-109.25],[-246.73,-106.38],[-245.63,-104.94],[-244.43,-102.94],[-243.18,-99.28],[-241.72,-96.58],[-239.93,-95.7],[-238.41,-94.26],[-237.64,-92.01],[-236.81,-90.84],[-235.64,-91.02],[-234.83,-90.92],[-234.36,-89.58],[-233.22,-88.5],[-224.72,-84.39],[-209.5,-81.1],[-200.58,-77.92],[-191.92,-75.7],[-185.73,-71.88],[-181.35,-66.91],[-168.36,-40.04],[-170.72,13.22],[-159.65,22.57],[-146.32,26.89],[-141.21,22.84],[-135.5,20.02],[-130.7,15.51],[-118.93,8.84],[-105.28,0.53],[-100.76,-2.88],[-92.02,-8.58],[-79.67,-16.07],[-69.57,-22.98],[-64.01,-32.87],[-71.25,-54.39],[-73.68,-55.73],[-75.53,-59.71],[-88.57,-67.98],[-111.78,-75.79],[-135.93,-83.02],[-160.39,-114.7],[-167.95,-145.92],[-169.8,-147.84],[-175.42,-154.61],[-203.37,-172.35],[-255.13,-171.67],[-272.52,-178.14],[-284.57,-182.95]],"v":[[-300,-186],[-301.55,-186.06],[-303,-186],[-301.13,-175.36],[-293,-169],[-280.62,-160.41],[-270,-151],[-267.23,-148.52],[-264,-145],[-262.47,-141.6],[-261,-138],[-255.18,-125.99],[-250,-114],[-248.44,-110.36],[-247,-107],[-246,-105.41],[-245,-104],[-243.61,-100.5],[-242,-97],[-240.53,-95.99],[-239,-95],[-237.89,-92.73],[-237,-91],[-236.03,-90.96],[-235,-91],[-234.52,-90.04],[-234,-89],[-230,-87],[-213,-82],[-204,-79],[-195,-77],[-186,-72],[-185,-70],[-177,-60],[-172,11],[-162,21],[-148,27],[-143,24],[-137,21],[-133,17],[-127,14],[-106,1],[-104,-1],[-96,-6],[-83,-14],[-73,-21],[-66,-27],[-71,-54],[-73,-55],[-74,-58],[-81,-63],[-106,-74],[-125,-79],[-151,-99],[-168,-146],[-169,-147],[-171,-150],[-188,-165],[-248,-171],[-267,-176],[-280,-181]],"c":true}],"h":1},{"t":204,"s":[{"i":[[-298.13,-185.96],[-301.29,-185.43],[-303.47,-185.11],[-303.47,-177.65],[-294.93,-170.65],[-290.6,-167.7],[-287.54,-165.96],[-285.36,-164.43],[-284.32,-163.22],[-276.83,-157.78],[-268.4,-149.41],[-264.68,-144.13],[-262.57,-140.97],[-256.12,-127.74],[-247.94,-107.06],[-244,-100.22],[-242.44,-97.55],[-236.11,-90.99],[-225.56,-86.29],[-214.79,-83.24],[-206.25,-80.73],[-203.03,-79.92],[-201.46,-80.14],[-200.44,-79.49],[-199.25,-78.1],[-195.1,-76.78],[-189.47,-75.01],[-183.85,-70.22],[-178.79,-62.75],[-174.77,-44.55],[-177.27,-15.45],[-175.81,2.05],[-170.53,12.47],[-160.07,21.62],[-145.35,25.33],[-138.01,21.65],[-134.26,17.82],[-130.74,16.4],[-128.11,14.71],[-117.67,8.28],[-106.54,0.47],[-101.99,-1.36],[-98.41,-5.07],[-94.78,-6.51],[-82.45,-14.7],[-68.13,-23.47],[-68.92,-49.42],[-89.43,-68.52],[-114.04,-77.01],[-134.9,-83.03],[-141.37,-88.66],[-156.56,-111.57],[-167.88,-145.17],[-175.33,-153.16],[-177.08,-157.12],[-180.68,-159.05],[-183.92,-162.34],[-219.74,-169.23],[-261.9,-173.55],[-283.59,-183.34],[-296.41,-186.26]],"o":[[-300.05,-185.38],[-303,-185.3],[-305.51,-180.82],[-298.18,-172.56],[-291.83,-168.47],[-288.45,-166.44],[-285.7,-164.81],[-284.67,-163.63],[-280.13,-160.32],[-270.97,-152.32],[-265.4,-145.14],[-263.27,-142.04],[-258.9,-134.71],[-250.64,-113.91],[-244.53,-101.2],[-242.96,-98.4],[-239.08,-93.35],[-229.35,-87.46],[-217.91,-84.13],[-208.95,-81.55],[-203.55,-79.85],[-201.98,-80.06],[-200.81,-79.94],[-199.66,-78.57],[-197.12,-77.27],[-191.28,-75.65],[-185.96,-72.6],[-180.27,-65.3],[-174.88,-54.07],[-175.97,-25.23],[-176.79,-2.43],[-172.68,9.51],[-163.94,19.05],[-145.98,28.23],[-139.07,21.42],[-135.65,20.13],[-132.13,16.44],[-128.8,15.35],[-121.98,10.79],[-110.62,3.9],[-103.07,-1.54],[-99.86,-2.74],[-96.08,-6.6],[-87.35,-11.13],[-71.33,-22.11],[-64.83,-33.8],[-77.85,-64.78],[-108.49,-74.81],[-126.19,-81.06],[-139.7,-87.63],[-154.63,-99.5],[-164.76,-136.33],[-173.63,-152.84],[-177.15,-155.44],[-178.92,-158.88],[-183.2,-160.86],[-200.95,-172.72],[-252.89,-171.65],[-277.16,-178.81],[-293.93,-186.02],[-297.56,-187.7]],"v":[[-298,-186],[-302.14,-185.37],[-304,-184],[-300.83,-175.1],[-294,-170],[-289.52,-167.07],[-286,-165],[-285.02,-164.03],[-284,-163],[-273.9,-155.05],[-266,-146],[-263.97,-143.08],[-262,-140],[-253.38,-120.83],[-245,-102],[-243.48,-99.31],[-242,-97],[-232.73,-89.23],[-221,-85],[-211.87,-82.4],[-204,-80],[-202.5,-79.99],[-201,-80],[-200.05,-79.03],[-199,-78],[-193.19,-76.21],[-188,-74],[-182.06,-67.76],[-178,-61],[-175.37,-34.89],[-177,-8],[-174.24,5.78],[-168,15],[-155,24],[-140,22],[-137,21],[-133,17],[-130,16],[-127,14],[-114,6],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-76,-19],[-67,-27],[-71,-53],[-103,-73],[-120,-79],[-138,-86],[-143,-90],[-162,-128],[-173,-152],[-176,-154],[-178,-158],[-182,-160],[-185,-163],[-244,-171],[-269,-176],[-290,-185],[-297,-187]],"c":true}],"h":1},{"t":205,"s":[{"i":[[-294.91,-190.64],[-304.17,-180.07],[-298.43,-172.95],[-295.14,-170.83],[-292.76,-169.47],[-290.45,-167.91],[-288.55,-166.34],[-287.22,-165.33],[-286.37,-164.24],[-284.32,-163.26],[-281.61,-162.45],[-280.13,-160.95],[-278.7,-158.59],[-277.05,-157.57],[-275.35,-157.27],[-273.39,-155.42],[-271.51,-152.68],[-269.99,-150.91],[-268.46,-149.61],[-263.63,-142.36],[-258.7,-131.79],[-255.2,-124.25],[-252.52,-119.12],[-251.54,-116.31],[-251.3,-113.67],[-248.38,-107.87],[-243.99,-100.19],[-242.5,-97.69],[-241.12,-97.15],[-228.86,-87.5],[-192.19,-79.83],[-176.12,-39.83],[-178.06,-1.33],[-162.66,19.85],[-148.52,26.07],[-135.33,19.01],[-127.27,14.82],[-123.45,10.99],[-119.76,9.48],[-115.36,6.85],[-106.42,0.4],[-101.99,-1.36],[-98.39,-5.09],[-94.78,-6.51],[-86.48,-12.46],[-81.96,-14.35],[-78.37,-18.08],[-70.49,-21.49],[-68.62,-25.26],[-67.69,-46.87],[-82.98,-65.62],[-136.08,-78.81],[-152.8,-100.76],[-162.22,-133.78],[-172.66,-149.16],[-174.4,-153.21],[-182.38,-160.82],[-187.53,-164.75],[-218.62,-169.96],[-260.41,-173.9],[-270.58,-176.46]],"o":[[-304.7,-182.85],[-301.03,-175.12],[-296.01,-171.34],[-293.52,-169.89],[-291.17,-168.49],[-289.14,-166.83],[-287.54,-165.71],[-286.64,-164.59],[-285.26,-163.53],[-282.5,-162.71],[-280.53,-161.65],[-279.22,-159.42],[-277.63,-157.69],[-275.92,-157.36],[-274.13,-156.33],[-272.08,-153.59],[-270.51,-151.35],[-268.97,-150.04],[-265.53,-145.71],[-260.21,-135.4],[-256.19,-126.19],[-253.36,-120.72],[-251.64,-117.22],[-251.37,-114.53],[-249.89,-110.53],[-245.43,-102.7],[-242.94,-97.86],[-241.59,-97.33],[-235.27,-90.12],[-204.47,-80.61],[-172.43,-56.53],[-177.43,-11.71],[-172.19,12.73],[-153.32,24.27],[-143.59,25.84],[-130.03,15.81],[-124.36,12.94],[-121.12,9.4],[-117.2,7.88],[-110.57,3.87],[-103.07,-1.54],[-99.55,-2.93],[-96.08,-6.6],[-90.91,-8.92],[-83.09,-14.56],[-79.62,-15.94],[-74.37,-20.77],[-67.92,-24.1],[-65.57,-33.83],[-75.26,-61.15],[-110.83,-79.03],[-151.39,-98.81],[-160.63,-115.36],[-170.64,-148.09],[-174.65,-151.9],[-177.29,-157],[-185.92,-162.42],[-201.16,-172.09],[-248.6,-171.57],[-268.31,-176.42],[-277.58,-179.11]],"v":[[-302,-185],[-302.6,-177.6],[-297,-172],[-294.33,-170.36],[-292,-169],[-289.8,-167.37],[-288,-166],[-286.93,-164.96],[-286,-164],[-283.41,-162.99],[-281,-162],[-279.67,-160.18],[-278,-158],[-276.48,-157.47],[-275,-157],[-272.73,-154.51],[-271,-152],[-269.48,-150.47],[-268,-149],[-261.92,-138.88],[-257,-128],[-254.28,-122.48],[-252,-118],[-251.45,-115.42],[-251,-113],[-246.91,-105.29],[-243,-98],[-242.05,-97.51],[-241,-97],[-220,-85],[-183,-69],[-177,-21],[-175,6],[-156,23],[-147,26],[-132,17],[-126,14],[-122,10],[-119,9],[-114,6],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-84,-14],[-81,-15],[-77,-19],[-69,-23],[-68,-27],[-72,-55],[-90,-69],[-150,-97],[-154,-103],[-170,-147],[-174,-151],[-175,-154],[-185,-162],[-188,-165],[-238,-171],[-267,-176],[-272,-177]],"c":true}],"h":1},{"t":206,"s":[{"i":[[-296.57,-189.3],[-304.13,-182.25],[-302.88,-178.19],[-301.71,-176.43],[-301.21,-175.25],[-300.11,-174.54],[-298.36,-174.34],[-293.79,-170.17],[-289.22,-166.75],[-287.22,-165.33],[-286.37,-164.24],[-284.28,-163.24],[-281.69,-162.51],[-280.09,-160.92],[-278.69,-158.59],[-276.45,-157.06],[-273.78,-155.82],[-272.39,-153.91],[-271.51,-151.59],[-269.86,-149.85],[-268.42,-148.57],[-260.66,-135.95],[-251.73,-115.63],[-246.2,-104.39],[-241.9,-97.98],[-234.47,-91.05],[-224.9,-87.32],[-185.66,-77.54],[-183.53,-12.91],[-168.98,14.34],[-147.75,26.32],[-143.26,24.16],[-140.96,23.65],[-137.48,19.95],[-133.79,18.49],[-129.36,15.85],[-126.66,13.42],[-111.24,4.42],[-104.93,-0.46],[-101.99,-1.36],[-98.65,-4.91],[-94.78,-6.51],[-89.52,-10.4],[-69.68,-21.05],[-68.72,-48.11],[-79.55,-64.03],[-105.4,-75.5],[-143.28,-88.11],[-153.25,-101.41],[-158.94,-115.79],[-163.77,-129.5],[-167.36,-140.8],[-171.2,-145.71],[-173.22,-150.89],[-176.14,-153.94],[-181.14,-159.29],[-190.59,-165.66],[-199.02,-169.63],[-248.33,-170.16],[-274.86,-179.01],[-280.61,-180.45]],"o":[[-303.69,-183.66],[-303.73,-179.52],[-301.85,-176.8],[-301.39,-175.65],[-300.68,-174.62],[-298.95,-174.4],[-295.68,-171.8],[-290.56,-167.65],[-287.54,-165.71],[-286.64,-164.59],[-285.18,-163.48],[-282.53,-162.75],[-280.49,-161.62],[-279.18,-159.41],[-277.31,-157.4],[-274.69,-156.27],[-272.63,-154.62],[-271.83,-152.39],[-270.4,-150.31],[-268.87,-148.98],[-264.04,-142.64],[-254.5,-122.45],[-247.5,-106.91],[-243.4,-99.93],[-237.02,-92.89],[-228.41,-88.27],[-201.91,-81.12],[-170.07,-43.51],[-173.91,8.41],[-164.55,18.06],[-144.91,25.99],[-142.09,23.44],[-138.6,22.05],[-135.07,18.4],[-131.2,16.88],[-127.4,14.63],[-118.06,7.9],[-105.28,0.53],[-103.07,-1.54],[-99.46,-2.99],[-96.08,-6.6],[-91.37,-8.63],[-81.76,-15.33],[-65.69,-32.78],[-73.65,-58.7],[-92.7,-72.81],[-129.61,-82.81],[-152.58,-100.41],[-157.65,-110.42],[-162.18,-125.57],[-166.39,-136.94],[-169.48,-144.94],[-172.84,-148.36],[-174.64,-152.91],[-180.14,-158.88],[-188.43,-164.41],[-196.54,-168],[-221.04,-173.7],[-269.61,-175.99],[-278.31,-180.61],[-285.96,-182.58]],"v":[[-302,-185],[-303.93,-180.89],[-302,-177],[-301.55,-176.04],[-301,-175],[-299.53,-174.47],[-298,-174],[-292.17,-168.91],[-288,-166],[-286.93,-164.96],[-286,-164],[-283.4,-162.99],[-281,-162],[-279.64,-160.16],[-278,-158],[-275.57,-156.67],[-273,-155],[-272.11,-153.15],[-271,-151],[-269.36,-149.41],[-268,-148],[-257.58,-129.2],[-249,-110],[-244.8,-102.16],[-240,-96],[-231.44,-89.66],[-220,-86],[-179,-63],[-175,6],[-167,16],[-145,26],[-143,24],[-140,23],[-136,19],[-133,18],[-128,15],[-126,13],[-106,1],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-87,-12],[-68,-26],[-71,-53],[-84,-67],[-117,-79],[-150,-97],[-155,-105],[-161,-122],[-165,-133],[-169,-144],[-172,-147],[-174,-152],[-177,-155],[-185,-162],[-194,-167],[-201,-170],[-266,-175],[-277,-180],[-282,-181]],"c":true}],"h":1},{"t":207,"s":[{"i":[[-295.82,-189.86],[-303.88,-182.88],[-303.8,-179.21],[-300.02,-174.81],[-294.25,-170.93],[-283.09,-163.02],[-272.08,-153.64],[-267.24,-146.13],[-264.95,-141.74],[-262.7,-138.01],[-260.55,-135.11],[-253.39,-117.94],[-241.81,-95.62],[-235.68,-92.48],[-235.21,-91.12],[-224.64,-86.95],[-207.68,-83.63],[-192.84,-77.81],[-181.21,-67.3],[-176.17,-41.67],[-179.85,-7.35],[-176.46,2.71],[-174.54,5.02],[-170.56,11.68],[-163.98,16.91],[-155.9,21.31],[-147.07,25.17],[-141.45,23.73],[-137.2,19.77],[-134.98,18.57],[-133.4,18.25],[-131.19,16.9],[-128.68,15.43],[-127.36,14.42],[-126.33,13.21],[-118.52,8.42],[-108.59,2.69],[-105.64,0.44],[-105.23,-0.83],[-104.04,-1.43],[-102.35,-1.78],[-99.34,-3.81],[-95.85,-6.47],[-92.96,-7.35],[-89.61,-10.96],[-85.77,-12.55],[-81.49,-15.07],[-70.17,-21.71],[-70.73,-53.63],[-74.18,-58.15],[-75.38,-60.24],[-84.64,-67.3],[-112.22,-77.95],[-146.68,-90.97],[-155.53,-103.86],[-161.45,-121.5],[-167.86,-137.67],[-174.14,-151.51],[-186.75,-164.25],[-220.04,-171.07],[-265.81,-175.02]],"o":[[-303.23,-184.03],[-304.17,-180.47],[-301.9,-176.35],[-296.2,-172.1],[-287.55,-165.95],[-275.35,-156.87],[-268.01,-147.51],[-265.71,-143.25],[-263.43,-138.95],[-261.26,-136.09],[-256.49,-126.88],[-246.05,-102.31],[-235.82,-92.92],[-235.37,-91.58],[-230.3,-88.38],[-213.33,-84.57],[-197.73,-80.16],[-184.57,-71.38],[-175.25,-53],[-178.47,-18.85],[-176.94,2.2],[-175.26,4.12],[-172.07,9.48],[-166.52,15.4],[-158.62,19.73],[-150.13,24.04],[-143.1,24.84],[-138.5,21.19],[-135.53,18.7],[-133.91,18.35],[-132.1,17.44],[-129.48,15.9],[-127.7,14.81],[-126.68,13.62],[-122.23,10.58],[-111.7,4.48],[-105.78,0.86],[-105.37,-0.4],[-104.61,-1.29],[-102.9,-1.68],[-100.67,-2.83],[-96.93,-5.64],[-94.09,-7.56],[-90.72,-8.87],[-87.09,-12.58],[-82.98,-14.17],[-76.08,-18.44],[-66.35,-32.42],[-73.8,-56.84],[-75.62,-59.65],[-79.07,-64.73],[-100.79,-75.44],[-135.27,-85.87],[-153.76,-101.65],[-160.23,-113.87],[-165.48,-133.34],[-172.3,-146.66],[-180.38,-159.13],[-203.58,-173.31],[-252.64,-172.59],[-280.41,-180.33]],"v":[[-302,-185],[-304.02,-181.68],[-303,-178],[-298.11,-173.46],[-293,-170],[-279.22,-159.95],[-269,-149],[-266.47,-144.69],[-264,-140],[-261.98,-137.05],[-260,-134],[-249.72,-110.13],[-236,-93],[-235.52,-92.03],[-235,-91],[-218.99,-85.76],[-203,-82],[-188.7,-74.59],[-179,-62],[-177.32,-30.26],[-177,2],[-175.86,3.42],[-174,6],[-168.54,13.54],[-160,19],[-153.02,22.68],[-145,25],[-139.97,22.46],[-136,19],[-134.45,18.46],[-133,18],[-130.34,16.4],[-128,15],[-127.02,14.02],[-126,13],[-115.11,6.45],[-106,1],[-105.51,0.02],[-105,-1],[-103.47,-1.55],[-102,-2],[-98.14,-4.73],[-95,-7],[-92,-8],[-88,-12],[-85,-13],[-80,-16],[-69,-25],[-73,-56],[-75,-59],[-76,-61],[-90,-70],[-124,-82],[-152,-99],[-157,-107],[-164,-129],[-170,-142],[-177,-155],[-190,-166],[-240,-172],[-274,-178]],"c":true}],"h":1},{"t":208,"s":[{"i":[[-301.34,-185.51],[-303.73,-179.08],[-294.29,-170.89],[-292.23,-169.33],[-291.38,-168.29],[-290.05,-167.59],[-288.47,-167.34],[-286.76,-165.84],[-284.78,-163.58],[-282.3,-161.97],[-279.73,-160.65],[-275.54,-156.59],[-271.56,-151.25],[-270.49,-149.68],[-269.12,-149.19],[-268.32,-147.73],[-267.31,-145.49],[-265.54,-142.6],[-263.58,-139.08],[-256.06,-121.77],[-243.24,-96.81],[-236.68,-93.48],[-236.21,-92.12],[-229.52,-89.22],[-217.07,-86.04],[-205.28,-82.94],[-195.39,-79.39],[-187.6,-74.09],[-180.91,-66.2],[-178.25,-36.14],[-177.83,2.08],[-171.09,10.96],[-164.87,15.32],[-147.25,25.31],[-138.88,21.45],[-121.43,10.4],[-109.18,3.08],[-105.46,-0.65],[-102.7,-1.56],[-96.69,-5.95],[-92.96,-7.35],[-89.55,-11],[-84.46,-13.12],[-76.34,-19.15],[-71.78,-21.22],[-70.46,-23.85],[-70.16,-50.28],[-74.64,-57.42],[-75.35,-60.15],[-123.95,-79.17],[-150.28,-97.07],[-162.66,-120.36],[-168.14,-139.21],[-175.6,-150.9],[-178.98,-156.66],[-185.92,-162.59],[-194.1,-167.12],[-198.47,-169.83],[-205.55,-171.48],[-253.47,-171.65],[-288.28,-186.15]],"o":[[-305.33,-182.39],[-298.21,-173.33],[-292.54,-169.68],[-291.65,-168.64],[-290.57,-167.67],[-289.01,-167.42],[-287.37,-166.55],[-285.46,-164.35],[-283.18,-162.39],[-280.57,-161.09],[-277.26,-158.47],[-272.69,-152.98],[-270.92,-149.83],[-269.58,-149.36],[-268.67,-148.48],[-267.64,-146.23],[-266.25,-143.81],[-264.21,-140.24],[-259.44,-131.37],[-247.96,-104.49],[-236.82,-93.92],[-236.37,-92.58],[-233.23,-90.45],[-221.44,-87.01],[-209.09,-84],[-198.44,-80.64],[-190.39,-76.49],[-182.86,-68.95],[-174.85,-51.57],[-179.72,-8.38],[-172.03,9.19],[-168,13.9],[-158.4,19.11],[-142.72,24.88],[-128.19,14.71],[-112.38,4.74],[-105.56,0.71],[-104.23,-1.58],[-99.34,-3.66],[-94.09,-7.56],[-90.72,-8.87],[-86.68,-12.85],[-79.63,-16.02],[-73.09,-21.72],[-70.23,-22.77],[-66.86,-32.8],[-73.26,-56.52],[-75.53,-58.84],[-88.65,-77.72],[-146.86,-92.91],[-158.96,-109.59],[-167.48,-134.27],[-171.56,-146.17],[-178.27,-154.91],[-182.14,-160.8],[-192.45,-166.45],[-197.38,-168.11],[-201.63,-170.84],[-227.59,-174.77],[-280.24,-179.15],[-301.28,-185.98]],"v":[[-302,-185],[-300.97,-176.21],[-293,-170],[-291.94,-168.98],[-291,-168],[-289.53,-167.5],[-288,-167],[-286.11,-165.1],[-284,-163],[-281.44,-161.53],[-279,-160],[-274.12,-154.79],[-271,-150],[-270.04,-149.52],[-269,-149],[-267.98,-146.98],[-267,-145],[-264.87,-141.42],[-263,-138],[-252.01,-113.13],[-237,-94],[-236.52,-93.03],[-236,-92],[-225.48,-88.12],[-213,-85],[-201.86,-81.79],[-193,-78],[-185.23,-71.52],[-180,-64],[-179,-22],[-173,8],[-170,12],[-162,17],[-144,25],[-135,19],[-116,7],[-106,1],[-105,-1],[-102,-2],[-95,-7],[-92,-8],[-88,-12],[-83,-14],[-74,-21],[-71,-22],[-70,-25],[-73,-56],[-75,-58],[-76,-61],[-142,-90],[-153,-101],[-166,-130],[-170,-143],[-177,-153],[-180,-158],[-190,-165],[-197,-168],[-199,-170],[-209,-172],[-269,-176],[-300,-186]],"c":true}],"h":1},{"t":209,"s":[{"i":[[-301.39,-185.48],[-303.02,-184.4],[-304.29,-182.9],[-299.85,-175.03],[-290.31,-168.15],[-287.08,-165.57],[-285.41,-165.34],[-283.72,-163.77],[-281.67,-161.57],[-277.36,-157.82],[-273.68,-153.51],[-272.49,-151.68],[-271.12,-151.18],[-265.63,-142.34],[-258.94,-128.39],[-252.11,-112.31],[-242.57,-97.06],[-237.68,-94.48],[-237.2,-93.12],[-228.81,-89.39],[-214.61,-86.27],[-196.43,-80.72],[-182.23,-69.41],[-177.71,-41.21],[-180.43,-5.13],[-174.6,6.9],[-168.99,13.24],[-166.56,14.72],[-163.77,15.56],[-160.54,17.28],[-155.91,19.22],[-150.4,21.76],[-145.29,24.08],[-139.76,22.44],[-133.84,17.63],[-132.04,16.57],[-130.35,16.22],[-115.11,6.46],[-96.52,-6.11],[-87.36,-11.77],[-84.68,-12.58],[-82.67,-14.18],[-80.8,-16.47],[-78.99,-17.43],[-77.39,-17.76],[-74.28,-19.66],[-71.7,-22.37],[-69.91,-28.38],[-69.75,-37.9],[-71.44,-50.69],[-76.48,-60.28],[-84.13,-67.88],[-92.37,-72.42],[-116.13,-80.31],[-151.27,-96.22],[-164.69,-127.73],[-173.92,-147.61],[-185.51,-162.28],[-199.84,-169.84],[-243.37,-171.88],[-287.77,-185.38]],"o":[[-302.38,-184.7],[-303.98,-183.5],[-302.69,-177.96],[-293.66,-170.13],[-287.62,-165.65],[-285.97,-165.42],[-284.39,-164.49],[-282.36,-162.31],[-279.02,-159.31],[-274.69,-154.91],[-272.93,-151.84],[-271.59,-151.35],[-268.15,-146.9],[-261.02,-133.08],[-254.58,-118.53],[-246.11,-101.57],[-237.83,-94.92],[-237.36,-93.58],[-233.26,-90.75],[-219.49,-87.15],[-202.81,-83.02],[-186.14,-73.92],[-176.75,-53.64],[-179.55,-16.96],[-176.36,4.53],[-170.92,11.26],[-167.42,14.44],[-164.73,15.28],[-161.84,16.67],[-157.58,18.56],[-152.25,20.71],[-146.92,23.44],[-142.09,23.88],[-135.63,19.32],[-132.61,16.71],[-130.9,16.32],[-121.6,10.77],[-102.57,-1.98],[-88.27,-11.47],[-85.57,-12.32],[-83.27,-13.44],[-81.43,-15.69],[-79.55,-17.3],[-77.91,-17.66],[-75.43,-18.98],[-72.41,-21.36],[-70.28,-25.67],[-69.64,-34.49],[-70.45,-46.55],[-74.46,-57.55],[-81.7,-65.92],[-89.47,-71.13],[-106.12,-78.41],[-140.48,-88.57],[-162.58,-115.53],[-171.15,-143.13],[-181.9,-158.98],[-196.02,-168.31],[-221.27,-174.65],[-277.64,-177.62],[-301.25,-186.06]],"v":[[-302,-185],[-303.5,-183.95],[-304,-182],[-296.75,-172.58],[-288,-166],[-286.53,-165.49],[-285,-165],[-283.04,-163.04],[-281,-161],[-276.02,-156.36],[-273,-152],[-272.04,-151.51],[-271,-151],[-263.32,-137.71],[-257,-124],[-249.11,-106.94],[-238,-95],[-237.52,-94.03],[-237,-93],[-224.15,-88.27],[-210,-85],[-191.28,-77.32],[-180,-63],[-178.63,-29.08],[-177,3],[-172.76,9.08],[-168,14],[-165.64,15],[-163,16],[-159.06,17.92],[-154,20],[-148.66,22.6],[-144,24],[-137.7,20.88],[-133,17],[-131.47,16.45],[-130,16],[-108.84,2.24],[-89,-11],[-86.46,-12.04],[-84,-13],[-82.05,-14.93],[-80,-17],[-78.45,-17.54],[-77,-18],[-73.34,-20.51],[-71,-24],[-69.77,-31.43],[-70,-41],[-72.95,-54.12],[-79,-63],[-86.8,-69.5],[-96,-74],[-127,-84],[-157,-106],[-169,-138],[-177,-152],[-192,-166],[-205,-171],[-262,-175],[-300,-186]],"c":true}],"h":1},{"t":210,"s":[{"i":[[-301.39,-185.48],[-303.03,-184.39],[-304.26,-182.92],[-301.02,-175.78],[-293.77,-171.09],[-284.19,-163.81],[-275.78,-156.33],[-272.68,-152.17],[-271.38,-149.83],[-270.49,-148.68],[-269.12,-148.18],[-268.9,-147.4],[-269.11,-146.25],[-268.48,-145.68],[-267.12,-145.2],[-265.9,-142.72],[-264.53,-139.03],[-261.56,-133.32],[-258.02,-126.28],[-254.71,-118.06],[-251.22,-109.27],[-246.58,-103.71],[-241.76,-97.17],[-235.52,-93.25],[-227.72,-89.76],[-220.19,-87.95],[-212.6,-86.72],[-191.61,-79.67],[-185.82,-14.91],[-169.41,12.03],[-157,18.08],[-143.14,24.14],[-137.07,19.98],[-130.62,16.99],[-126.25,12.81],[-121.42,10.88],[-118.9,8.52],[-115.02,5.76],[-111.71,4.45],[-106.42,0.07],[-102.7,-1.56],[-94.13,-7.67],[-72.31,-19.67],[-70.27,-47.79],[-78.01,-62.7],[-81.23,-65.31],[-88.91,-72.59],[-95.2,-74.23],[-102.22,-78.07],[-117.12,-82.11],[-138.48,-89.38],[-153.18,-100.03],[-163,-118.44],[-169.92,-140.18],[-174.71,-146.61],[-175.56,-149.3],[-183.87,-160.92],[-190.48,-165.05],[-201,-170.91],[-235.97,-172.61],[-286.64,-185.32]],"o":[[-302.4,-184.68],[-303.96,-183.51],[-302.88,-177.99],[-296.46,-172.33],[-287.55,-166.39],[-278.3,-158.77],[-273.24,-153],[-271.74,-150.59],[-270.93,-148.84],[-269.59,-148.35],[-268.85,-147.77],[-269.04,-146.64],[-268.92,-145.83],[-267.58,-145.37],[-266.39,-143.96],[-264.98,-140.26],[-262.8,-135.68],[-259.17,-128.62],[-255.85,-121.42],[-252.39,-111.98],[-248.2,-106.12],[-243.36,-99.23],[-237.91,-94.61],[-230.42,-90.82],[-222.65,-88.34],[-215.17,-87.14],[-200.52,-83.36],[-170.45,-54.49],[-174.69,7.69],[-159.38,17.4],[-151.38,20.67],[-140.96,23.87],[-132.37,16.95],[-127.25,14.93],[-123.54,11.06],[-119.32,9.58],[-116,6.84],[-113.22,4.41],[-108.22,2.23],[-104.22,-1.58],[-96.87,-5.22],[-83.31,-14.69],[-68.97,-28.15],[-74.76,-59.64],[-80.69,-65.79],[-85.19,-68.87],[-93.49,-74.68],[-99.69,-76.15],[-110.73,-80.92],[-130.14,-86.3],[-147.84,-94.8],[-160.71,-110.62],[-168.21,-133.31],[-173.19,-146.36],[-175.58,-147.78],[-179.03,-154.82],[-188.98,-164.31],[-195.41,-168.12],[-221.11,-175.28],[-274.22,-175.56],[-301.25,-186.06]],"v":[[-302,-185],[-303.49,-183.95],[-304,-182],[-298.74,-174.06],[-291,-169],[-281.24,-161.29],[-274,-154],[-272.21,-151.38],[-271,-149],[-270.04,-148.52],[-269,-148],[-268.97,-147.02],[-269,-146],[-268.03,-145.52],[-267,-145],[-265.44,-141.49],[-264,-138],[-260.37,-130.97],[-257,-124],[-253.55,-115.02],[-250,-108],[-244.97,-101.47],[-240,-96],[-232.97,-92.03],[-225,-89],[-217.68,-87.55],[-210,-86],[-186,-73],[-177,3],[-162,16],[-155,19],[-142,24],[-134,18],[-129,16],[-125,12],[-120,10],[-118,8],[-114,5],[-111,4],[-105,-1],[-102,-2],[-89,-11],[-71,-23],[-73,-55],[-80,-65],[-82,-66],[-92,-74],[-97,-75],[-105,-79],[-123,-84],[-143,-92],[-156,-104],[-166,-127],[-173,-146],[-175,-147],[-176,-150],[-187,-163],[-192,-166],[-206,-172],[-254,-174],[-300,-186]],"c":true}],"h":1},{"t":211,"s":[{"i":[[-301.43,-185.44],[-304.37,-181.74],[-300.91,-176.84],[-292.21,-169.34],[-281.66,-161.65],[-269.19,-147.07],[-259.83,-128.06],[-254.6,-116.52],[-250.12,-107.17],[-247.48,-104.23],[-245.7,-101.78],[-240.24,-96.21],[-232.59,-92.16],[-225.26,-89.86],[-219.77,-88.43],[-214,-87.31],[-207.74,-86.52],[-202.05,-84.53],[-195.43,-81.41],[-194.04,-80.3],[-192.42,-79.41],[-189.41,-76.64],[-185.81,-73.17],[-178.64,-48.85],[-182.11,-8.43],[-172.29,8.94],[-157.89,17.1],[-149.39,20.68],[-143.45,23.13],[-137.83,21.27],[-130.29,15.83],[-127.53,13.95],[-125.54,12.35],[-123.31,11.22],[-120.62,10.4],[-119.65,9.45],[-119.23,8.17],[-118.04,7.57],[-116.35,7.22],[-110.13,3],[-104.7,-0.96],[-99.51,-3.02],[-97.46,-5.66],[-94.73,-6.5],[-89.2,-11.1],[-85.7,-12.56],[-72.76,-20.36],[-72.3,-27.97],[-73.54,-58.54],[-127.01,-81.07],[-154.25,-101.05],[-165.24,-125.56],[-181.78,-160.3],[-190.63,-165.75],[-192.49,-165.77],[-193.57,-167.77],[-196.59,-168.45],[-200.1,-170.7],[-231.3,-172.99],[-267.12,-176.65],[-292.18,-185.13]],"o":[[-304.17,-183.32],[-302.75,-178.5],[-295.63,-171.77],[-285.22,-164.28],[-273.03,-153.04],[-262.59,-134.58],[-256.04,-119.94],[-251.64,-110.14],[-248.13,-105.09],[-246.26,-102.58],[-242.44,-98.13],[-235.31,-93.22],[-227.13,-90.4],[-221.58,-88.88],[-216.13,-87.55],[-209.8,-86.8],[-204.59,-85.57],[-197.48,-82.45],[-194.58,-80.6],[-192.97,-79.71],[-190.75,-77.81],[-186.94,-74.33],[-178.34,-62.39],[-180.53,-21.87],[-176.09,5.39],[-163.19,14.79],[-151.41,19.62],[-145.41,22.44],[-140.44,22.86],[-132.76,17.75],[-128.26,14.53],[-126.17,12.86],[-124.25,11.52],[-121.5,10.66],[-119.78,9.86],[-119.37,8.6],[-118.61,7.71],[-116.9,7.32],[-112.73,4.96],[-105.57,0.08],[-101.72,-2.78],[-97.56,-4.28],[-96.19,-6.61],[-91.82,-8.47],[-87.22,-12.58],[-81.67,-15.09],[-71.28,-23.56],[-70.82,-48.05],[-97.08,-82.08],[-150.01,-96.73],[-163.09,-113.75],[-174.38,-147.53],[-190.32,-164.15],[-191.46,-166.31],[-193.36,-166.16],[-195.36,-168.73],[-199.13,-169.45],[-214.97,-175.67],[-258.42,-174.54],[-284.38,-181.8],[-301.22,-186.13]],"v":[[-302,-185],[-303.56,-180.12],[-299,-175],[-288.72,-166.81],[-278,-158],[-265.89,-140.82],[-257,-122],[-253.12,-113.33],[-249,-106],[-246.87,-103.41],[-245,-101],[-237.77,-94.72],[-229,-91],[-223.42,-89.37],[-218,-88],[-211.9,-87.05],[-206,-86],[-199.76,-83.49],[-195,-81],[-193.5,-80],[-192,-79],[-188.18,-75.48],[-185,-72],[-179.58,-35.36],[-178,1],[-167.74,11.86],[-153,19],[-147.4,21.56],[-142,23],[-135.3,19.51],[-129,15],[-126.85,13.41],[-125,12],[-122.41,10.94],[-120,10],[-119.51,9.02],[-119,8],[-117.47,7.45],[-116,7],[-107,1],[-103,-2],[-98,-4],[-97,-6],[-94,-7],[-88,-12],[-85,-13],[-72,-22],[-72,-32],[-81,-66],[-146,-94],[-157,-105],[-170,-137],[-190,-164],[-191,-166],[-193,-166],[-194,-168],[-198,-169],[-201,-171],[-249,-174],[-275,-179],[-300,-186]],"c":true}],"h":1},{"t":212,"s":[{"i":[[-301.43,-185.44],[-303.77,-183.33],[-303.65,-180.99],[-301.34,-177.7],[-298.61,-174.56],[-294.89,-171.66],[-290.24,-169],[-288.63,-167.42],[-288.23,-166.21],[-287.08,-165.57],[-285.41,-165.34],[-279.89,-160.18],[-272.75,-151.48],[-269.06,-145.67],[-266.82,-140.46],[-265.08,-137.97],[-263.25,-136.51],[-262.53,-134.6],[-262.18,-132.45],[-255.72,-117.34],[-243.14,-98.06],[-230.7,-91.81],[-219.5,-89.83],[-204.41,-85.92],[-191.32,-78.82],[-185.63,-72.29],[-182.64,-67.82],[-179.78,-43.14],[-182.1,-5.67],[-170.56,9.99],[-155.67,17.24],[-144.35,21.9],[-139.88,21.83],[-133.79,18.13],[-129.32,15.83],[-120.24,9.94],[-109.32,2.48],[-99.36,-4.09],[-89.43,-10.91],[-84.35,-13.73],[-81.76,-14.5],[-80.65,-15.56],[-80.23,-16.83],[-79.02,-17.43],[-77.37,-17.74],[-73.07,-22.12],[-71.92,-33.07],[-74.28,-55.09],[-78.48,-64.33],[-98.97,-78.06],[-125.02,-85.8],[-140.24,-92.02],[-153.38,-100.03],[-163.33,-117.02],[-170.73,-138.54],[-179.59,-152.88],[-184.35,-160.45],[-188.37,-162.52],[-193.83,-167.91],[-234.34,-172.59],[-288.13,-184.69]],"o":[[-303.19,-184.09],[-304,-181.78],[-302.29,-178.92],[-299.51,-175.52],[-296.51,-172.66],[-291.75,-169.83],[-288.77,-167.81],[-288.36,-166.62],[-287.62,-165.65],[-285.97,-165.42],[-282.52,-162.94],[-275.01,-154.45],[-269.9,-147.45],[-267.52,-142.18],[-265.7,-138.47],[-263.85,-136.99],[-262.69,-135.38],[-262.28,-133.14],[-259.14,-125.06],[-247.72,-103.84],[-234.45,-92.89],[-223.22,-90.28],[-209.75,-87.52],[-195.2,-81.57],[-186.81,-73.64],[-183.55,-69.39],[-178.48,-56.06],[-181.59,-17.95],[-174.72,6.87],[-161.03,15.17],[-146.41,20.73],[-141.08,22.45],[-135.38,18.97],[-130.76,16.56],[-124.33,12.7],[-112.73,4.83],[-102.89,-1.63],[-92.63,-8.72],[-85.22,-13.48],[-82.62,-14.24],[-80.78,-15.14],[-80.37,-16.4],[-79.59,-17.31],[-77.92,-17.65],[-74.36,-19.84],[-71.85,-28.74],[-72.14,-49.34],[-78.06,-61.92],[-85.28,-73],[-118.23,-83.88],[-135.76,-89.75],[-149.82,-97.06],[-160.96,-110.43],[-168.56,-130.69],[-175.61,-148.18],[-182.59,-157.39],[-186.62,-162.58],[-191.46,-164.88],[-211.52,-176.82],[-276.44,-176.7],[-301.22,-186.13]],"v":[[-302,-185],[-303.89,-182.55],[-303,-180],[-300.43,-176.61],[-298,-174],[-293.32,-170.74],[-289,-168],[-288.5,-167.02],[-288,-166],[-286.53,-165.49],[-285,-165],[-277.45,-157.32],[-271,-149],[-268.29,-143.93],[-266,-139],[-264.47,-137.48],[-263,-136],[-262.4,-133.87],[-262,-132],[-251.72,-110.59],[-238,-95],[-226.96,-91.04],[-216,-89],[-199.81,-83.75],[-188,-75],[-184.59,-70.84],[-182,-66],[-180.68,-30.55],[-177,3],[-165.79,12.58],[-151,19],[-142.71,22.18],[-137,20],[-132.27,17.35],[-128,15],[-116.49,7.39],[-107,1],[-95.99,-6.41],[-86,-13],[-83.49,-13.98],[-81,-15],[-80.51,-15.98],[-80,-17],[-78.47,-17.54],[-77,-18],[-72.46,-25.43],[-72,-39],[-77,-60],[-79,-65],[-112,-82],[-131,-88],[-144,-94],[-157,-105],[-166,-124],[-174,-145],[-181,-155],[-186,-162],[-189,-163],[-196,-169],[-259,-175],[-300,-186]],"c":true}],"h":1},{"t":213,"s":[{"i":[[-301.48,-185.4],[-304.26,-181.64],[-300.24,-176.04],[-295.03,-171.57],[-290.87,-168.69],[-285.34,-164.51],[-277.95,-157.78],[-269.18,-145.52],[-261.44,-130.33],[-255.34,-116.77],[-249.5,-105.92],[-244.27,-100.18],[-239.7,-96.38],[-224.61,-90.96],[-201.25,-86.15],[-194.46,-81.73],[-191.24,-78.24],[-187.69,-74.79],[-184.68,-71.39],[-179.78,-51.33],[-183.1,-21.04],[-180.78,-5.82],[-177.37,1.14],[-173.85,5.95],[-171.75,7.75],[-168.92,10.02],[-167.55,11.68],[-161.69,14.78],[-153.09,17.97],[-142.35,21.54],[-136.11,19.59],[-130.36,15.85],[-128.51,14.33],[-126.21,13.16],[-123.62,12.4],[-122.65,11.45],[-122.23,10.17],[-119.71,9.45],[-110.2,3.74],[-104.31,-1.19],[-99.69,-2.9],[-97.46,-5.65],[-94.74,-6.48],[-91.56,-9.01],[-76.05,-17.19],[-72.84,-32.94],[-77.49,-65.85],[-115.56,-83.03],[-151.81,-97.51],[-170.12,-136.92],[-179.31,-150.95],[-182.38,-157.08],[-189.85,-164.03],[-192.63,-166.75],[-194.49,-166.77],[-195.65,-168.75],[-199.29,-169.48],[-202.48,-171.83],[-206.96,-172.53],[-238.35,-173.93],[-288.1,-183.86]],"o":[[-304.14,-183.37],[-302.31,-177.97],[-296.59,-172.72],[-292.17,-169.55],[-287.62,-166.12],[-280.51,-160.34],[-271.96,-150.11],[-263.92,-135.64],[-257.09,-120.81],[-251.55,-109.33],[-245.92,-101.74],[-241.16,-97.5],[-232.73,-92.63],[-208.86,-87.72],[-195.34,-82.61],[-192.41,-79.54],[-188.84,-75.84],[-185.61,-72.57],[-179.73,-61.31],[-181.46,-31.2],[-181.59,-8.64],[-178.66,-0.93],[-174.48,5.07],[-172.49,7.28],[-169.4,9.43],[-167.99,11.14],[-164.39,13.54],[-156.03,16.99],[-144.79,20.75],[-138.01,20.96],[-131.1,16.44],[-129.06,14.79],[-127.15,13.46],[-124.44,12.63],[-122.78,11.86],[-122.37,10.6],[-121.21,9.41],[-114.23,5.96],[-104.87,0.26],[-101.48,-2.94],[-97.56,-4.29],[-96.17,-6.62],[-92.76,-7.87],[-84.13,-13.75],[-72.32,-25.93],[-73.4,-57.63],[-99.96,-81.14],[-141.77,-92.05],[-166.48,-117.64],[-177.65,-150.14],[-181.33,-154.03],[-186.26,-161.67],[-192.32,-165.15],[-193.46,-167.31],[-195.31,-167.14],[-197.82,-170.28],[-201.38,-170.11],[-204.65,-172.53],[-222.28,-176.07],[-272.11,-176.23],[-301.17,-186.21]],"v":[[-302,-185],[-303.29,-179.81],[-298,-174],[-293.6,-170.56],[-290,-168],[-282.93,-162.43],[-275,-154],[-266.55,-140.58],[-259,-125],[-253.44,-113.05],[-247,-103],[-242.72,-98.84],[-239,-96],[-216.74,-89.34],[-196,-83],[-193.44,-80.64],[-190,-77],[-186.65,-73.68],[-184,-70],[-180.62,-41.26],[-182,-12],[-179.72,-3.38],[-176,3],[-173.17,6.61],[-170,9],[-168.46,10.58],[-167,12],[-158.86,15.88],[-150,19],[-140.18,21.25],[-132,17],[-129.71,15.32],[-128,14],[-125.33,12.89],[-123,12],[-122.51,11.02],[-122,10],[-119,9],[-106,1],[-103,-2],[-98,-4],[-97,-6],[-94,-7],[-90,-10],[-74,-22],[-73,-40],[-88,-73],[-130,-88],[-158,-106],[-177,-149],[-180,-152],[-184,-159],[-192,-165],[-193,-167],[-195,-167],[-196,-169],[-201,-170],[-203,-172],[-209,-173],[-254,-175],[-300,-186]],"c":true}],"h":1},{"t":214,"s":[{"i":[[-296.27,-187.73],[-302.11,-184.75],[-303.89,-184.48],[-304.04,-181.11],[-300.74,-177.81],[-294.04,-171.08],[-290.59,-168.97],[-287.64,-166.41],[-287.26,-165.19],[-285.99,-164.58],[-284.4,-164.35],[-280.51,-160.49],[-276.3,-154.77],[-273.15,-150.58],[-270.74,-147.31],[-261.55,-127.94],[-247.22,-101.4],[-239.39,-96.91],[-238.26,-97.12],[-237.68,-96.47],[-237.23,-95.11],[-235.65,-94.64],[-232.78,-94.25],[-227.27,-92.58],[-219.64,-90.63],[-202.52,-87.13],[-196.41,-82.31],[-193.77,-81.58],[-185.74,-73.26],[-187.65,-15.52],[-169.48,9.77],[-155.65,16.68],[-139.46,22.05],[-138.29,20.5],[-132.26,17.8],[-129.39,14.91],[-123.89,12.58],[-121.21,9.79],[-116.44,7.91],[-114.45,5.34],[-111.71,4.45],[-94.24,-7.68],[-84.07,-14.3],[-79.12,-16.21],[-75.82,-19.23],[-72.59,-35.73],[-75.8,-56.65],[-77.23,-61.7],[-121.5,-83.41],[-144.51,-95.17],[-149.83,-97.13],[-161.02,-109.85],[-166.62,-123.46],[-171.56,-133.53],[-175.21,-144.71],[-179.4,-150.04],[-181.13,-154.87],[-186.06,-160.13],[-200.56,-170.89],[-254.06,-173.88],[-278.7,-179.33]],"o":[[-301.41,-184.76],[-303.34,-184.61],[-304.42,-182.2],[-302.2,-178.91],[-295.5,-172.35],[-291.58,-169.39],[-287.76,-166.82],[-287.39,-165.6],[-286.54,-164.66],[-284.92,-164.42],[-282.11,-162.35],[-277.6,-156.7],[-274.03,-151.67],[-271.51,-148.39],[-265.44,-137.98],[-252.44,-109.65],[-239.76,-96.85],[-238.64,-97.04],[-237.81,-96.92],[-237.38,-95.57],[-236.51,-94.77],[-233.78,-94.38],[-229.7,-93.27],[-222.24,-91.26],[-210.17,-88.38],[-196.61,-83.78],[-195.14,-81.35],[-188.82,-77.86],[-176.81,-51.43],[-173.98,6.46],[-160.41,14.29],[-149.84,18.78],[-137.39,21.82],[-134.32,17.9],[-129.84,16.27],[-126.48,13],[-121.76,11.2],[-118.65,8.12],[-114.57,6.73],[-113.21,4.41],[-103.24,-0.94],[-85.12,-13.12],[-81.2,-16.17],[-76.35,-18.17],[-73.58,-24.09],[-73.34,-50.86],[-77.71,-60.38],[-89.44,-82.23],[-143.53,-93.72],[-147.68,-96.93],[-157.18,-102.58],[-165.88,-119.89],[-169.29,-130.32],[-174.62,-140.9],[-177.5,-148.92],[-180.92,-152.48],[-183.22,-157.58],[-194,-167.79],[-226.77,-177.45],[-274.79,-178.64],[-286.35,-181.56]],"v":[[-301,-185],[-302.73,-184.68],[-304,-184],[-303.12,-180.01],[-299,-176],[-292.81,-170.24],[-288,-167],[-287.51,-166.01],[-287,-165],[-285.45,-164.5],[-284,-164],[-279.05,-158.59],[-275,-153],[-272.33,-149.48],[-270,-146],[-256.99,-118.79],[-240,-97],[-239.01,-96.98],[-238,-97],[-237.53,-96.02],[-237,-95],[-234.72,-94.51],[-232,-94],[-224.76,-91.92],[-217,-90],[-197,-84],[-196,-82],[-193,-81],[-184,-69],[-178,0],[-163,13],[-152,18],[-139,22],[-136,19],[-131,17],[-128,14],[-123,12],[-120,9],[-115,7],[-114,5],[-111,4],[-87,-12],[-83,-15],[-78,-17],[-75,-21],[-73,-44],[-77,-59],[-78,-63],[-142,-93],[-146,-96],[-151,-98],[-164,-116],[-168,-127],[-173,-137],[-177,-148],[-180,-151],[-182,-156],[-188,-162],[-209,-173],[-272,-178],[-281,-180]],"c":true}],"h":1},{"t":215,"s":[{"i":[[-300.54,-185.26],[-302.11,-184.76],[-303.9,-184.48],[-302.69,-179],[-295.89,-172.59],[-291.69,-169.62],[-286.87,-165.72],[-284.35,-163.87],[-280.81,-161.06],[-278.57,-158.07],[-278.26,-156.34],[-277.08,-155.3],[-275.32,-154.43],[-274.9,-153.41],[-275.11,-152.24],[-274.49,-151.68],[-273.12,-151.18],[-272.9,-150.4],[-273.11,-149.25],[-272.48,-148.68],[-271.12,-148.19],[-270.53,-146.68],[-270.36,-144.64],[-269,-142.82],[-267.29,-141.53],[-265.92,-138.48],[-264.64,-134.41],[-257.42,-118.76],[-245.14,-100.98],[-238.24,-97.03],[-236.24,-96.38],[-234.44,-95.48],[-233.26,-94.08],[-231.08,-93.58],[-227.86,-93.21],[-208.53,-88.78],[-188.26,-78.28],[-181.56,-48.61],[-183.69,-9.78],[-179.03,-0.69],[-177.25,0.66],[-176.58,2.01],[-176.36,3.6],[-175.41,4.64],[-174.22,5.83],[-159.82,13.86],[-141.24,21.18],[-129.51,15.61],[-105.16,0.1],[-85.68,-12.24],[-74.68,-19.84],[-75.9,-60.29],[-85.04,-71.26],[-105.69,-81.9],[-150.8,-95.37],[-169.27,-127.2],[-185.21,-160.83],[-203.01,-172.06],[-238.36,-174.41],[-280.01,-180.6],[-299.04,-186.31]],"o":[[-301.41,-184.77],[-303.35,-184.61],[-304.5,-181.7],[-298.39,-174.44],[-293.5,-171.01],[-288.38,-166.98],[-285.2,-164.34],[-282.16,-162.23],[-278.69,-158.65],[-278.36,-156.91],[-277.67,-155.58],[-275.91,-154.72],[-274.84,-153.79],[-275.03,-152.64],[-274.93,-151.84],[-273.59,-151.35],[-272.85,-150.77],[-273.04,-149.64],[-272.92,-148.83],[-271.58,-148.36],[-270.6,-147.37],[-270.41,-145.32],[-269.61,-143.31],[-267.84,-141.94],[-266.35,-139.77],[-265.06,-135.8],[-260.85,-126.02],[-249.57,-106.24],[-238.86,-97.34],[-236.93,-96.55],[-234.81,-95.94],[-233.67,-94.55],[-232.15,-93.73],[-228.94,-93.32],[-217.4,-90.64],[-193.96,-82.6],[-180.96,-61.97],[-182.92,-22.52],[-179.66,-1.28],[-177.83,0.28],[-176.65,1.46],[-176.44,3.08],[-175.8,4.22],[-174.62,5.44],[-166.62,11.64],[-146.35,18.66],[-136.16,20.77],[-112.31,4.58],[-89.13,-10.2],[-74.08,-19.84],[-73.33,-48.07],[-82.64,-69.68],[-97.04,-79.56],[-133.67,-90.32],[-165.74,-115.88],[-179.09,-149.63],[-196.08,-168.04],[-222.02,-178.05],[-270.74,-176.9],[-291.07,-183.92],[-300.88,-185.71]],"v":[[-301,-185],[-302.73,-184.68],[-304,-184],[-300.54,-176.72],[-295,-172],[-290.03,-168.3],[-286,-165],[-283.26,-163.05],[-279,-159],[-278.47,-157.49],[-278,-156],[-276.49,-155.01],[-275,-154],[-274.96,-153.02],[-275,-152],[-274.04,-151.52],[-273,-151],[-272.97,-150.02],[-273,-149],[-272.03,-148.52],[-271,-148],[-270.47,-146],[-270,-144],[-268.42,-142.38],[-267,-141],[-265.49,-137.14],[-264,-133],[-253.49,-112.5],[-240,-98],[-237.58,-96.79],[-235,-96],[-234.05,-95.02],[-233,-94],[-230.01,-93.45],[-227,-93],[-201.24,-85.69],[-185,-71],[-182.24,-35.57],[-180,-2],[-178.43,-0.21],[-177,1],[-176.51,2.55],[-176,4],[-175.02,5.04],[-174,6],[-151,17],[-139,21],[-127,14],[-91,-9],[-83,-14],[-74,-34],[-80,-66],[-89,-74],[-116,-85],[-160,-108],[-174,-138],[-193,-166],[-206,-173],[-259,-176],[-288,-183],[-300,-186]],"c":true}],"h":1},{"t":216,"s":[{"i":[[-298.57,-186.38],[-301.48,-184.82],[-302.42,-184.72],[-303.33,-184.6],[-303.95,-184.24],[-304,-182.15],[-302.47,-179.18],[-300.05,-176.43],[-297.61,-174.37],[-293.19,-171.44],[-287.42,-166.59],[-281.99,-161.16],[-277.27,-155.69],[-270.16,-145.12],[-263,-130.56],[-256.05,-116.28],[-247.63,-104.05],[-238.06,-97.14],[-226.99,-93.71],[-214.93,-91.11],[-199.79,-86.13],[-188.33,-76.72],[-181.67,-49.3],[-184.33,-11.83],[-179.36,-1.06],[-175.32,3.78],[-172.24,6.34],[-169.88,7.41],[-166.15,9.98],[-162.19,12.53],[-157.55,14.16],[-152.66,15.41],[-146.07,17.99],[-139.76,20.16],[-133.57,18.5],[-124.86,12.84],[-111.04,3.82],[-98.36,-4.83],[-86.66,-12],[-76.55,-17.89],[-75.43,-22.23],[-75.11,-31.92],[-74.86,-45.99],[-76.67,-57.88],[-86.26,-73.45],[-107.05,-83.24],[-122.24,-87.88],[-131.87,-90.88],[-139.9,-93.93],[-146.08,-96.99],[-154.27,-101.84],[-161.16,-109.06],[-166.76,-119.28],[-171.19,-131.61],[-174.75,-139.61],[-178,-145.13],[-184.2,-156.32],[-194.24,-167.44],[-220.28,-175.69],[-260.31,-175.55],[-282.26,-181.11]],"o":[[-301.2,-184.88],[-302.09,-184.74],[-303.04,-184.65],[-303.79,-184.39],[-304.19,-183.12],[-303.14,-180.18],[-300.92,-177.3],[-298.39,-174.96],[-295.12,-172.84],[-289.34,-168.31],[-283.75,-163.02],[-278.75,-157.5],[-272.83,-149.78],[-265.25,-135.51],[-258.4,-120.94],[-250.66,-107.83],[-241.31,-98.74],[-230.9,-94.62],[-219.01,-91.95],[-204.87,-88.27],[-191.51,-80.36],[-181.26,-62.39],[-183.21,-24.03],[-180.45,-2.7],[-176.8,2.18],[-173.05,5.88],[-170.65,7.1],[-167.56,8.97],[-163.47,11.76],[-159.21,13.71],[-154.27,15.01],[-148.43,16.92],[-141.73,19.61],[-136.14,19.84],[-127.93,15],[-115.36,6.74],[-102.54,-1.96],[-90.39,-10.06],[-79.74,-15.92],[-75.62,-19.77],[-75.17,-28.3],[-74.77,-41.05],[-75.81,-54.41],[-81.23,-68.58],[-99.16,-80.78],[-119.05,-86.94],[-128.65,-89.85],[-137.61,-92.94],[-144.14,-95.96],[-151.44,-99.81],[-159.13,-106.46],[-165.17,-115.47],[-169.77,-127.35],[-173.74,-137.8],[-176.88,-143.28],[-181.58,-151.85],[-190.53,-164.11],[-208.13,-174.91],[-246.37,-176.01],[-276.48,-178.67],[-293.31,-184.96]],"v":[[-301,-185],[-301.78,-184.78],[-302.73,-184.68],[-303.56,-184.49],[-304,-184],[-303.57,-181.16],[-301.69,-178.24],[-299.22,-175.7],[-297,-174],[-291.26,-169.88],[-285.59,-164.8],[-280.37,-159.33],[-276,-154],[-267.7,-140.32],[-260.7,-125.75],[-253.35,-112.05],[-244,-101],[-234.48,-95.88],[-223,-92.83],[-211,-90],[-195.65,-83.24],[-186,-72],[-182.44,-36.66],[-181,-4],[-178.08,0.56],[-174,5],[-171.44,6.72],[-169,8],[-164.81,10.87],[-161,13],[-155.91,14.58],[-151,16],[-143.9,18.8],[-138,20],[-130.75,16.75],[-122,11],[-106.79,0.93],[-92,-9],[-83.2,-13.96],[-76,-19],[-75.3,-25.26],[-75,-35],[-75.33,-50.2],[-78,-61],[-92.71,-77.11],[-116,-86],[-125.45,-88.86],[-135,-92],[-142.02,-94.95],[-148,-98],[-156.7,-104.15],[-163,-112],[-168.27,-123.31],[-173,-136],[-175.81,-141.45],[-179,-147],[-187.36,-160.21],[-199,-170],[-233.33,-175.85],[-273,-178],[-287.79,-183.04]],"c":true}],"h":1},{"t":217,"s":[{"i":[[-302.43,-184.57],[-303.77,-180.27],[-298.57,-175.51],[-290.97,-168.97],[-281.42,-160.2],[-270.99,-145.97],[-262.52,-129.2],[-257.46,-118.42],[-253.4,-110.46],[-251.58,-108.36],[-251.32,-107.41],[-242.54,-99.46],[-225.9,-94.3],[-210.28,-90.57],[-197.8,-85.29],[-191.2,-79.68],[-186.93,-74.15],[-182.65,-48.79],[-185.05,-10.78],[-174.32,4.48],[-160.42,12.39],[-154.09,14.66],[-150.95,15.67],[-142.72,18.68],[-135.46,19.43],[-130.19,16.2],[-127.07,13.75],[-123.16,11.08],[-119.2,8.68],[-116.61,7.29],[-114.59,6.36],[-109.77,3.12],[-104.7,-0.91],[-101.7,-2.69],[-99.71,-3.54],[-93.75,-7.45],[-86.59,-12.29],[-80.78,-15.9],[-77.65,-18.44],[-76.44,-22.73],[-76.22,-29.45],[-75.71,-53.24],[-85.99,-73.71],[-106.12,-84.02],[-128.11,-89.61],[-140.24,-94.17],[-147.25,-98.03],[-150.93,-99.83],[-153.53,-100.65],[-162.87,-110.46],[-170.68,-128.44],[-175.56,-139.6],[-180.32,-148.2],[-186.94,-158.74],[-195.1,-166.66],[-201.23,-170.51],[-204.27,-172.71],[-221.52,-176.37],[-252.96,-175.96],[-277.61,-179.61],[-294.99,-184.85]],"o":[[-304.73,-182.27],[-300.68,-176.9],[-294.26,-171.62],[-284.56,-163.26],[-274.23,-151.37],[-265.13,-134.89],[-258.76,-121.44],[-254.78,-112.93],[-251.67,-108.65],[-251.41,-107.74],[-247.34,-102.32],[-231.82,-95.45],[-215.13,-91.93],[-201.62,-87.25],[-192.98,-81.35],[-188.17,-76.08],[-181.63,-61.9],[-184.37,-23.23],[-178.11,1.29],[-165.47,10.03],[-155.11,14.32],[-152.01,15.34],[-145.74,17.46],[-137.58,19.67],[-131.41,17.07],[-128.02,14.54],[-124.56,11.99],[-120.48,9.43],[-117.31,7.61],[-115.25,6.67],[-111.67,4.58],[-106.29,0.38],[-102.34,-2.42],[-100.38,-3.25],[-96.2,-5.8],[-88.94,-10.69],[-82.2,-15.18],[-78.51,-17.54],[-76.58,-21],[-76.26,-26.96],[-74.96,-43.89],[-81.23,-68.15],[-99.06,-81.71],[-120.64,-87.97],[-137.62,-92.91],[-145.06,-96.73],[-149.91,-99.51],[-152.74,-100.4],[-159.28,-104.99],[-168.57,-122.18],[-174.15,-136.75],[-178.65,-145.33],[-184.64,-155.41],[-192.17,-164.36],[-200.1,-169.66],[-203.32,-172.04],[-212.29,-175.88],[-241.86,-176.41],[-271.36,-177.69],[-289.42,-183.19],[-302.21,-185.03]],"v":[[-303,-184],[-302.23,-178.59],[-298,-175],[-287.76,-166.12],[-278,-156],[-268.06,-140.43],[-260,-124],[-256.12,-115.67],[-252,-109],[-251.49,-108.05],[-251,-107],[-237.18,-97.46],[-220,-93],[-205.95,-88.91],[-195,-83],[-189.68,-77.88],[-186,-72],[-183.51,-36.01],[-180,-2],[-169.89,7.26],[-156,14],[-153.05,15],[-150,16],[-140.15,19.17],[-133,18],[-129.11,15.37],[-126,13],[-121.82,10.25],[-118,8],[-115.93,6.98],[-114,6],[-108.03,1.75],[-103,-2],[-101.04,-2.97],[-99,-4],[-91.34,-9.07],[-84,-14],[-79.64,-16.72],[-77,-20],[-76.35,-24.84],[-76,-32],[-78.47,-60.7],[-93,-78],[-113.38,-85.99],[-135,-92],[-142.65,-95.45],[-149,-99],[-151.83,-100.11],[-154,-101],[-165.72,-116.32],[-173,-134],[-177.1,-142.47],[-182,-151],[-189.55,-161.55],[-199,-169],[-202.27,-171.28],[-205,-173],[-231.69,-176.39],[-264,-177],[-283.51,-181.4],[-301,-185]],"c":true}],"h":1},{"t":218,"s":[{"i":[[-302.43,-184.57],[-303.84,-180.44],[-298.83,-175.74],[-297.05,-174.07],[-295.57,-172.5],[-293.65,-171.19],[-291.55,-170.49],[-278.5,-156.84],[-264.72,-132.67],[-260.36,-122.88],[-259.26,-121.5],[-258.02,-118.7],[-256.6,-114.93],[-254.52,-112.28],[-251.74,-109.94],[-250.9,-108.42],[-251.11,-107.24],[-249.34,-105.08],[-245.63,-103.28],[-244.68,-102.49],[-244.17,-101.12],[-229.97,-95.19],[-204.78,-90.52],[-198.79,-86.78],[-198.04,-86.03],[-197.36,-85.58],[-196.41,-85.32],[-188.63,-77.17],[-183.12,-59.88],[-183.74,-41.08],[-185.69,-22.76],[-182.29,-6.03],[-173.07,4.59],[-162.37,10.56],[-151.87,14.69],[-143.24,17.77],[-136.79,20.08],[-134.61,19.14],[-130.3,15.84],[-124.95,12.36],[-119.69,8.96],[-110.21,3.29],[-99.24,-3.98],[-93.26,-7.84],[-90.23,-10.18],[-87.69,-11.71],[-85.62,-12.59],[-83.63,-13.72],[-81.53,-14.61],[-76.54,-24.81],[-76.51,-56.8],[-115.12,-85.75],[-146.55,-98.08],[-154.1,-101.32],[-165.9,-116.23],[-174.3,-133.16],[-180.89,-150.3],[-193.73,-165.99],[-212.43,-176.01],[-247.98,-176.12],[-289.69,-184.71]],"o":[[-304.67,-182.32],[-300.91,-177.15],[-297.52,-174.57],[-296.08,-173.04],[-294.37,-171.45],[-292.24,-170.71],[-284.14,-164],[-268.79,-141.18],[-260.74,-123.38],[-259.63,-121.94],[-258.48,-119.99],[-257.08,-116.18],[-255.4,-113.06],[-252.69,-110.72],[-250.84,-108.8],[-251.03,-107.64],[-250.52,-105.94],[-246.89,-103.76],[-244.85,-102.93],[-244.35,-101.59],[-238.33,-96.93],[-213.2,-91.98],[-199.02,-87.01],[-198.29,-86.29],[-197.65,-85.67],[-196.74,-85.41],[-191.81,-81.73],[-184.28,-66.24],[-182.89,-47.2],[-185.14,-28.86],[-184.26,-10.82],[-176.7,1.68],[-165.69,8.96],[-155.47,13.42],[-145.84,16.73],[-138.71,19.45],[-135.71,19.97],[-131.91,17.07],[-126.85,13.63],[-121.37,10.03],[-114.09,5.77],[-102.78,-1.59],[-94.39,-7],[-91.18,-9.43],[-88.38,-11.41],[-86.31,-12.3],[-84.36,-13.42],[-82.21,-14.32],[-76.44,-18.34],[-75.29,-46.04],[-87.33,-83.69],[-141.29,-94.84],[-151.73,-100.96],[-161.4,-106.84],[-171.21,-127.83],[-178.77,-143.24],[-187.73,-159.78],[-202.81,-171.58],[-235.07,-178.12],[-276.34,-178.19],[-302.21,-185.03]],"v":[[-303,-184],[-302.38,-178.8],[-298,-175],[-296.57,-173.55],[-295,-172],[-292.95,-170.95],[-291,-170],[-273.64,-149.01],[-261,-124],[-260,-122.41],[-259,-121],[-257.55,-117.44],[-256,-114],[-253.6,-111.5],[-251,-109],[-250.96,-108.03],[-251,-107],[-248.12,-104.42],[-245,-103],[-244.51,-102.04],[-244,-101],[-221.59,-93.58],[-199,-87],[-198.54,-86.53],[-198,-86],[-197.05,-85.49],[-196,-85],[-186.45,-71.71],[-183,-53],[-184.44,-34.97],[-185,-17],[-179.5,-2.17],[-169,7],[-158.92,11.99],[-148,16],[-140.97,18.61],[-136,20],[-133.26,18.11],[-129,15],[-123.16,11.19],[-118,8],[-106.49,0.85],[-96,-6],[-92.22,-8.64],[-89,-11],[-87,-12],[-85,-13],[-82.92,-14.02],[-81,-15],[-76,-34],[-79,-63],[-136,-93],[-150,-100],[-155,-102],[-169,-123],[-176,-137],[-185,-156],[-197,-168],[-223,-177],[-260,-177],[-301,-185]],"c":true}],"h":1},{"t":219,"s":[{"i":[[-302.45,-184.54],[-303.87,-181.86],[-302.46,-178.5],[-300.89,-177.33],[-298.61,-176.56],[-295.48,-173.46],[-292.4,-170.63],[-290.69,-169.5],[-290.14,-168.12],[-286.62,-165.05],[-282.36,-160.67],[-270.64,-142.88],[-258.26,-116.95],[-250.64,-107.14],[-247.28,-104.58],[-245.68,-103.49],[-245.17,-102.12],[-230.94,-96.07],[-206.13,-91.6],[-194.96,-84.25],[-188.18,-75.79],[-184.53,-53.06],[-186.06,-14.26],[-181.97,-5.35],[-179.58,-2.73],[-175.16,2.24],[-168.98,6.88],[-163.42,9.75],[-158.49,11.43],[-154.66,12.74],[-151.26,13.56],[-145.68,15.95],[-137.94,19.15],[-133.95,18.36],[-130.38,15.87],[-125.06,12.45],[-119.64,8.93],[-113.9,5.54],[-108.52,1.97],[-105.74,0.33],[-103.73,-0.53],[-101.97,-1.93],[-100.52,-3.67],[-97.3,-5.44],[-93.13,-7.26],[-91.05,-8.88],[-89.66,-10.56],[-87.74,-11.67],[-85.77,-12.49],[-77.72,-18.97],[-77.35,-58.04],[-84.33,-71.4],[-107.7,-85.83],[-146.94,-96.43],[-168.2,-118.44],[-181.08,-147.66],[-192.81,-164.88],[-199.48,-169.05],[-202.3,-171.65],[-243.01,-175.56],[-291.98,-184.4]],"o":[[-303.89,-183.11],[-303.15,-179.56],[-301.59,-177.55],[-299.4,-176.84],[-296.53,-174.64],[-293.41,-171.45],[-290.86,-169.94],[-290.33,-168.59],[-288.18,-166.46],[-283.71,-162.15],[-275.01,-151.65],[-262.27,-125.53],[-251.75,-108.35],[-248.41,-105.25],[-245.85,-103.93],[-245.35,-102.59],[-239.12,-97.78],[-214.44,-92.99],[-197.62,-86.6],[-190.25,-78.85],[-184,-65.93],[-185.56,-27.23],[-182.68,-6.23],[-180.42,-3.6],[-177.17,0.3],[-171.06,5.53],[-165.18,9.03],[-160.08,10.95],[-155.78,12.46],[-152.4,13.3],[-148.2,14.62],[-140.55,18.21],[-135.01,18.92],[-131.63,16.83],[-126.99,13.73],[-121.38,10.05],[-115.89,6.8],[-110.21,3.12],[-106.37,0.6],[-104.42,-0.23],[-102.46,-1.34],[-101,-3.09],[-98.73,-4.81],[-94.5,-6.66],[-91.47,-8.35],[-90.14,-9.98],[-88.36,-11.43],[-86.45,-12.21],[-76.03,-18.94],[-76.46,-48.89],[-81.18,-68.11],[-94.22,-81.03],[-130.97,-92.99],[-162.87,-109.42],[-176.41,-136.93],[-188.87,-159.29],[-197.98,-168.31],[-201.6,-170.37],[-218.65,-179.86],[-281.62,-179.33],[-302.19,-185.08]],"v":[[-303,-184],[-303.51,-180.71],[-302,-178],[-300.15,-177.08],[-298,-176],[-294.44,-172.45],[-291,-170],[-290.51,-169.05],[-290,-168],[-285.16,-163.6],[-281,-159],[-266.45,-134.2],[-253,-110],[-249.53,-106.2],[-246,-104],[-245.51,-103.04],[-245,-102],[-222.69,-94.53],[-200,-88],[-192.61,-81.55],[-187,-73],[-185.05,-40.15],[-183,-7],[-181.19,-4.47],[-179,-2],[-173.11,3.88],[-167,8],[-161.75,10.35],[-157,12],[-153.53,13.02],[-150,14],[-143.11,17.08],[-136,19],[-132.79,17.59],[-129,15],[-123.22,11.25],[-118,8],[-112.05,4.33],[-107,1],[-105.08,0.05],[-103,-1],[-101.48,-2.51],[-100,-4],[-95.9,-6.05],[-92,-8],[-90.6,-9.43],[-89,-11],[-87.1,-11.94],[-85,-13],[-77,-36],[-80,-65],[-87,-74],[-118,-89],[-155,-103],[-172,-127],[-186,-155],[-196,-167],[-201,-170],[-203,-172],[-268,-178],[-301,-185]],"c":true}],"h":1},{"t":220,"s":[{"i":[[-302.45,-184.54],[-303.64,-183.44],[-304.5,-181.66],[-298.48,-175.17],[-289.61,-168.58],[-284.66,-163.38],[-281.24,-158.64],[-273.3,-146.97],[-264.9,-130.62],[-257.64,-116.85],[-249.7,-105.79],[-242.89,-101.38],[-235.46,-97.71],[-228.07,-95.85],[-220.4,-94.57],[-210.61,-92.23],[-200.51,-88.7],[-195.35,-84.72],[-192.78,-81.02],[-191.35,-79.36],[-190.3,-78.49],[-184.81,-56.48],[-186.6,-16.6],[-181.71,-4.78],[-178.77,-1.84],[-174.87,2.19],[-169.8,6.04],[-162.04,9.72],[-152.51,12.79],[-146.93,14.59],[-143.19,15.56],[-136.39,18.31],[-132.37,17.13],[-125.73,12.99],[-121.32,10.59],[-119.68,9.48],[-119.21,8.12],[-117.53,7.24],[-115.68,6.42],[-112.13,4.49],[-108.09,2.71],[-106.29,1.13],[-105.41,-0.7],[-103.85,-1.63],[-101.54,-2.64],[-98.49,-4],[-94.9,-7.41],[-88.66,-10.31],[-78.68,-17.02],[-77.37,-56.91],[-83.93,-70.93],[-92.57,-79.3],[-140.78,-93.53],[-155.53,-104.65],[-158.2,-105.3],[-172.78,-128.56],[-190.48,-163.72],[-205.59,-172.54],[-213.44,-175.62],[-246.32,-176.56],[-292.11,-184.41]],"o":[[-303.14,-183.86],[-304.32,-182.34],[-301.43,-177.63],[-292.57,-170.64],[-285.79,-164.81],[-282.38,-160.3],[-276.35,-152.16],[-267.58,-136.2],[-260.04,-121.21],[-252.47,-109.14],[-245.16,-102.78],[-238.04,-98.85],[-230.63,-96.31],[-222.96,-94.98],[-214.35,-93.13],[-203.69,-90.01],[-196.46,-85.96],[-193.51,-82.25],[-191.7,-79.61],[-190.65,-78.79],[-184.76,-69.43],[-185.73,-30.07],[-182.57,-5.86],[-179.81,-2.77],[-176.47,0.67],[-171.54,4.88],[-165.03,8.58],[-155.78,11.83],[-148.09,14.31],[-144.48,15.22],[-137.95,17.5],[-133.59,18.12],[-127.32,13.94],[-122.73,11.31],[-119.83,9.92],[-119.37,8.58],[-118.19,7.53],[-116.28,6.68],[-113.59,5.14],[-109.38,3.28],[-106.59,1.73],[-105.71,-0.09],[-104.58,-1.3],[-102.33,-2.29],[-99.74,-3.84],[-96.13,-5.58],[-92.1,-9.24],[-78.52,-16.73],[-77.26,-42.03],[-80.24,-64.66],[-88.42,-75.61],[-116.65,-91.28],[-155.45,-103.3],[-156.92,-105.69],[-168.91,-114.7],[-182.75,-150.87],[-205.21,-172.52],[-211.73,-174.57],[-229.73,-179.55],[-280.19,-179.17],[-302.19,-185.08]],"v":[[-303,-184],[-303.98,-182.89],[-304,-181],[-295.53,-172.91],[-287,-166],[-283.52,-161.84],[-280,-157],[-270.44,-141.58],[-262,-125],[-255.06,-113],[-247,-104],[-240.47,-100.12],[-233,-97],[-225.52,-95.41],[-218,-94],[-207.15,-91.12],[-198,-87],[-194.43,-83.49],[-192,-80],[-191,-79.08],[-190,-78],[-185.27,-43.28],[-183,-7],[-180.76,-3.78],[-178,-1],[-173.2,3.53],[-168,7],[-158.91,10.78],[-149,14],[-145.71,14.91],[-142,16],[-134.99,18.22],[-129,15],[-124.23,12.15],[-120,10],[-119.52,9.03],[-119,8],[-116.9,6.96],[-115,6],[-110.76,3.88],[-107,2],[-106,0.52],[-105,-1],[-103.09,-1.96],[-101,-3],[-97,-5],[-94,-8],[-86,-12],[-78,-29],[-80,-64],[-84,-71],[-100,-83],[-155,-103],[-156,-105],[-159,-106],[-177,-138],[-201,-170],[-210,-174],[-215,-176],[-265,-178],[-301,-185]],"c":true}],"h":1},{"t":221,"s":[{"i":[[-299.3,-187.7],[-303.77,-183.09],[-303.5,-181.73],[-297.21,-174.23],[-288.58,-167.7],[-284.99,-163.54],[-283.58,-160.73],[-282.39,-159.35],[-281.3,-158.37],[-271.27,-142.83],[-259.06,-118.17],[-251.21,-108.45],[-247.25,-103.85],[-244.43,-102.33],[-241.04,-101.47],[-238.2,-99.93],[-235.92,-98.28],[-232.71,-97.52],[-229.07,-97.21],[-220.85,-95.7],[-210.27,-93.28],[-199.11,-88.06],[-190.93,-79.54],[-184.79,-51.76],[-186.96,-11.47],[-179.59,-3.07],[-179.34,-1.36],[-174.1,2.92],[-162.37,8.37],[-153.99,11.4],[-147.99,13.32],[-140.84,15.98],[-135.09,18.1],[-125.59,13.09],[-121.11,10.73],[-115.98,6.23],[-107.88,2.23],[-102.1,-2.63],[-98.51,-3.77],[-97.38,-5.75],[-94.31,-7.15],[-81.9,-13.58],[-79.42,-28.85],[-77.48,-46.51],[-84.78,-74.27],[-94.38,-79.99],[-98.06,-83.5],[-102.28,-85.3],[-144.96,-95.18],[-163.37,-110.38],[-166.75,-114.63],[-166.77,-116.49],[-168.76,-117.6],[-170.99,-122.96],[-175.62,-132.78],[-180.24,-143.64],[-190.49,-159.86],[-199.71,-169.55],[-214.89,-177.1],[-249.66,-177.84],[-276.78,-179.6]],"o":[[-303.52,-183.48],[-303.76,-182.22],[-300.17,-176.88],[-291.42,-169.64],[-285.45,-164.42],[-284.05,-161.69],[-282.74,-159.67],[-281.67,-158.7],[-275.49,-151.24],[-263.05,-126.29],[-252.58,-110.27],[-248.54,-105.24],[-245.41,-102.6],[-242.24,-101.77],[-238.99,-100.54],[-236.66,-98.8],[-233.92,-97.67],[-230.29,-97.29],[-224.46,-96.31],[-213.75,-94.18],[-202.65,-90.3],[-193.25,-82.68],[-183.56,-66.03],[-186.49,-24.49],[-179.67,-3.64],[-179.42,-1.93],[-177.16,0.98],[-166.7,6.61],[-156,10.74],[-149.99,12.69],[-143.3,14.93],[-136.74,17.56],[-132.23,17.84],[-122.7,11.11],[-117.82,8.58],[-110.84,3.04],[-104.3,-0.11],[-99.53,-4.3],[-97.67,-4.15],[-95.89,-6.71],[-88.39,-10.98],[-78.58,-21.3],[-78.57,-41.23],[-79.13,-64.01],[-92.17,-79.89],[-97.18,-81.74],[-100.75,-84.92],[-121.01,-92.95],[-160.42,-107.79],[-165.15,-114.32],[-167.31,-115.46],[-167.15,-117.34],[-170.09,-119.82],[-173.96,-128.95],[-178.54,-139.58],[-186.1,-154.83],[-198.2,-167.06],[-205.62,-173.29],[-233.63,-179.48],[-270.83,-179.55],[-290.36,-182.66]],"v":[[-303,-184],[-303.76,-182.66],[-303,-181],[-294.31,-171.93],[-286,-165],[-284.52,-162.61],[-283,-160],[-282.03,-159.03],[-281,-158],[-267.16,-134.56],[-254,-112],[-249.88,-106.84],[-246,-103],[-243.33,-102.05],[-240,-101],[-237.43,-99.36],[-235,-98],[-231.5,-97.41],[-228,-97],[-217.3,-94.94],[-207,-92],[-196.18,-85.37],[-189,-76],[-185.64,-38.13],[-180,-4],[-179.5,-2.5],[-179,-1],[-170.4,4.77],[-158,10],[-151.99,12.05],[-146,14],[-138.79,16.77],[-134,18],[-124,12],[-120,10],[-114,5],[-106,1],[-100,-4],[-98,-4],[-97,-6],[-93,-8],[-80,-18],[-79,-35],[-78,-52],[-91,-79],[-96,-81],[-99,-84],[-104,-86],[-157,-105],[-165,-114],[-167,-115],[-167,-117],[-169,-118],[-172,-125],[-177,-136],[-182,-147],[-196,-165],[-202,-171],[-222,-178],[-264,-179],[-283,-181]],"c":true}],"h":1},{"t":222,"s":[{"i":[[-300.18,-185.39],[-303.98,-183.35],[-303.81,-182.52],[-303.52,-181.82],[-303.14,-181.19],[-299.35,-176.5],[-292.85,-170.06],[-285.86,-163.23],[-279.05,-155.21],[-271.18,-142.12],[-263.93,-127.72],[-256.88,-114.98],[-248.53,-105.14],[-241.32,-101.09],[-235.12,-99.18],[-228.39,-97.83],[-221.37,-96.54],[-210.07,-93.55],[-199.14,-87.93],[-191.18,-79.76],[-186.54,-68.64],[-185.7,-52.12],[-187.39,-33.2],[-186.43,-14.65],[-175.58,1.54],[-154.02,10.65],[-141.44,15.19],[-134.11,18.11],[-129.52,16.26],[-121.96,10.28],[-114.86,5.94],[-108.07,2.35],[-103.95,-0.61],[-101.02,-3.33],[-99.39,-4.09],[-98.26,-3.88],[-97.68,-4.51],[-97.19,-5.88],[-95.82,-6.61],[-93.71,-7.54],[-88.35,-10.66],[-80.54,-15.66],[-79.41,-21.14],[-79.15,-32.68],[-78.73,-50.74],[-81.69,-67.19],[-103.1,-86.31],[-146.02,-97.69],[-157.36,-105.56],[-157.76,-106.82],[-159.01,-107.42],[-160.6,-107.65],[-168.07,-116.14],[-176.44,-132.52],[-185.23,-150.88],[-196.82,-166.57],[-203.26,-170.97],[-205.37,-172.68],[-223.68,-178.07],[-257,-178.08],[-281.33,-181.37]],"o":[[-304,-183.66],[-303.88,-182.78],[-303.63,-182.04],[-303.28,-181.39],[-301.31,-178.67],[-295.12,-172.2],[-288.22,-165.58],[-281.28,-158.04],[-273.87,-147.1],[-266.22,-132.43],[-259.26,-118.99],[-251.51,-108.05],[-243.23,-101.93],[-237.26,-99.72],[-230.68,-98.24],[-223.73,-96.98],[-214.33,-94.93],[-202.48,-90.05],[-193.49,-82.78],[-187.71,-72.7],[-185.33,-58.26],[-186.72,-39.59],[-187.24,-20.73],[-181.32,-2.78],[-161.93,8.25],[-144.38,13.88],[-136.3,17.3],[-131.78,17.88],[-124.61,12.46],[-117.33,7.27],[-110.23,3.48],[-104.94,0.31],[-101.99,-2.43],[-99.77,-4.15],[-98.64,-3.96],[-97.83,-4.07],[-97.36,-5.41],[-96.47,-6.34],[-94.44,-7.21],[-91.33,-9.08],[-82.96,-13.95],[-79.58,-18.05],[-79.19,-28.45],[-78.63,-43.89],[-80.26,-62.39],[-90.34,-81.46],[-130.95,-94.42],[-157.22,-105.15],[-157.63,-106.4],[-158.46,-107.34],[-160.08,-107.57],[-164.85,-111.38],[-173.87,-126.71],[-182.07,-144.59],[-192.6,-161.87],[-202.57,-170.38],[-204.66,-172.12],[-213.93,-177.03],[-245.21,-178.59],[-274.49,-179.42],[-294.18,-184.35]],"v":[[-304,-184],[-303.93,-183.07],[-303.72,-182.28],[-303.4,-181.61],[-303,-181],[-297.23,-174.35],[-290.54,-167.82],[-283.57,-160.64],[-277,-152],[-268.7,-137.28],[-261.6,-123.36],[-254.2,-111.51],[-245,-103],[-239.29,-100.41],[-232.9,-98.71],[-226.06,-97.41],[-219,-96],[-206.27,-91.8],[-196.31,-85.35],[-189.45,-76.23],[-186,-64],[-186.21,-45.85],[-187.32,-26.96],[-184,-9],[-168.75,4.9],[-147,13],[-138.87,16.25],[-133,18],[-127.06,14.36],[-120,9],[-112.55,4.71],[-106,1],[-102.97,-1.52],[-100,-4],[-99.02,-4.03],[-98,-4],[-97.52,-4.96],[-97,-6],[-95.13,-6.91],[-93,-8],[-85.65,-12.3],[-80,-17],[-79.3,-24.8],[-79,-36],[-79.49,-56.56],[-84,-71],[-117.02,-90.37],[-157,-105],[-157.49,-105.98],[-158,-107],[-159.55,-107.5],[-161,-108],[-170.97,-121.42],[-179,-138],[-188.92,-156.37],[-202,-170],[-203.96,-171.55],[-206,-173],[-234.45,-178.33],[-269,-179],[-287.75,-182.86]],"c":true}],"h":1},{"t":223,"s":[{"i":[[-296.68,-186.99],[-303.9,-182.77],[-303.28,-181.39],[-295.95,-173.31],[-282.26,-159.67],[-267.23,-133.09],[-252.95,-108.21],[-239.93,-101.05],[-228.68,-97.82],[-216.85,-95.56],[-205.25,-92.92],[-201.65,-90.46],[-201.21,-89.16],[-199.99,-88.58],[-198.4,-88.34],[-194.27,-84.26],[-189.81,-77.28],[-186.29,-54],[-189.03,-21.65],[-185.23,-11.73],[-183.37,-9.67],[-182.23,-7.13],[-181.48,-4.59],[-171.74,3.16],[-151.82,9.89],[-140.87,14.3],[-134.7,17.12],[-128.99,15.62],[-122.32,10.51],[-110.89,3.31],[-98.32,-4.18],[-91.72,-8.75],[-89,-11.34],[-86.69,-12.46],[-84.61,-12.62],[-80.97,-16.36],[-81.24,-24.7],[-80.65,-33.48],[-80.04,-40.06],[-80.68,-61.14],[-89.78,-79.19],[-96.32,-82.52],[-96.79,-83.88],[-100.91,-85.97],[-107.11,-88.3],[-126.18,-94.03],[-151.36,-101.46],[-158.36,-106.57],[-158.76,-107.82],[-160.01,-108.42],[-161.6,-108.66],[-164.27,-111.35],[-166.61,-115.14],[-167.51,-116.32],[-168.88,-116.82],[-170.23,-119.64],[-178.99,-137.08],[-191.83,-160.19],[-201.87,-170.7],[-218.22,-178.09],[-253.01,-178.11]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.07,-176.97],[-287.05,-164.65],[-271.75,-143.23],[-257.83,-115.58],[-243.35,-102.39],[-232.6,-98.76],[-220.97,-96.1],[-208.99,-93.97],[-201.8,-90.88],[-201.36,-89.6],[-200.54,-88.66],[-198.92,-88.42],[-196.11,-86.37],[-191.11,-79.71],[-185.52,-65.17],[-188.04,-32.24],[-185.79,-12.4],[-184.02,-10.37],[-182.49,-8.09],[-181.73,-5.39],[-177.58,0.21],[-158.86,8],[-143.26,12.99],[-136.58,16.36],[-131.08,16.87],[-124.61,12.44],[-115.23,5.9],[-102.43,-1.73],[-92.72,-7.83],[-89.86,-10.51],[-87.39,-12.4],[-85.3,-12.57],[-81.6,-14.51],[-80.79,-21.45],[-80.88,-31.2],[-80.23,-37.91],[-79.79,-52.54],[-85.67,-74.47],[-96.17,-82.08],[-96.63,-83.42],[-98.85,-85.07],[-105.04,-87.59],[-117.25,-92.05],[-143.24,-98.73],[-158.23,-106.16],[-158.62,-107.4],[-159.45,-108.34],[-161.08,-108.58],[-163.21,-110.03],[-165.97,-113.9],[-167.07,-116.16],[-168.41,-116.65],[-169.78,-118.13],[-175.43,-128.8],[-187.72,-154.33],[-200.18,-168.05],[-209.1,-175.11],[-239.63,-180.08],[-282.58,-180.13]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-291.5,-168.98],[-278,-153],[-262.53,-124.33],[-246,-104],[-236.27,-99.91],[-225,-97],[-212.92,-94.77],[-202,-91],[-201.51,-90.03],[-201,-89],[-199.45,-88.5],[-198,-88],[-192.69,-81.99],[-189,-75],[-187.16,-43.12],[-186,-13],[-184.62,-11.05],[-183,-9],[-181.98,-6.26],[-181,-4],[-165.3,5.58],[-146,12],[-138.72,15.33],[-133,17],[-126.8,14.03],[-120,9],[-106.66,0.79],[-94,-7],[-90.79,-9.63],[-88,-12],[-86,-12.51],[-84,-13],[-80.88,-18.91],[-81,-29],[-80.44,-35.69],[-80,-42],[-83.18,-67.81],[-96,-82],[-96.48,-82.97],[-97,-84],[-102.97,-86.78],[-109,-89],[-134.71,-96.38],[-158,-106],[-158.49,-106.98],[-159,-108],[-160.54,-108.5],[-162,-109],[-165.12,-112.62],[-167,-116],[-167.96,-116.48],[-169,-117],[-171,-121],[-183,-145],[-198,-166],[-204,-172],[-228,-179],[-266,-179]],"c":true}],"h":1},{"t":224,"s":[{"i":[[-297.58,-187.28],[-303.9,-182.77],[-303.28,-181.39],[-296.63,-173.86],[-284.64,-162.11],[-268.81,-135.98],[-254.27,-109.51],[-246.39,-104.91],[-245.26,-105.12],[-244.68,-104.47],[-244.23,-103.11],[-242.51,-102.58],[-239.77,-102.26],[-237.33,-101.33],[-234.82,-100.22],[-222.33,-97.69],[-204.7,-93.59],[-201.36,-90.58],[-200.41,-90.32],[-189.48,-76.68],[-187.68,-48.36],[-188.04,-24.05],[-184.69,-9.27],[-172.47,2.18],[-153.91,8.6],[-141.35,13.5],[-133.59,17.13],[-128.27,15.41],[-121.64,10.07],[-115.24,6.01],[-108.87,2.2],[-103.45,-1.34],[-97.3,-5.5],[-90.63,-9.45],[-82.41,-14.18],[-81.41,-18.89],[-81.27,-30.38],[-80.26,-51.34],[-84.37,-71.1],[-88.41,-75.92],[-88.66,-77.64],[-91.02,-79.77],[-94.85,-82.24],[-101.32,-86.29],[-109.45,-90.16],[-118.79,-93],[-128.14,-95.21],[-141.64,-99.11],[-156.93,-105.5],[-165.08,-112.54],[-171.36,-120.25],[-175.36,-127.73],[-178.54,-135.93],[-185.42,-149.73],[-196.38,-165.6],[-202.77,-170.08],[-207.12,-173.55],[-212.57,-175.8],[-221.07,-177.5],[-240.81,-179.46],[-266.45,-179.06]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.31,-177.31],[-288.8,-166.27],[-273.68,-146.73],[-259.11,-117.38],[-246.76,-104.85],[-245.64,-105.04],[-244.81,-104.92],[-244.38,-103.57],[-243.38,-102.71],[-240.71,-102.36],[-238.16,-101.72],[-235.66,-100.58],[-228.98,-98.64],[-210.19,-95.16],[-201.65,-90.67],[-200.74,-90.41],[-192.64,-84.25],[-187,-58.73],[-188.19,-30.17],[-186.29,-13.6],[-177.77,-0.87],[-160.55,6.91],[-144.3,11.94],[-135.99,16.1],[-130.45,16.87],[-123.87,12],[-117.55,7.41],[-110.9,3.41],[-105.3,-0.09],[-99.45,-4.05],[-93.67,-7.86],[-85,-12.61],[-81.53,-15.95],[-81.29,-26.11],[-80.32,-43.04],[-82.28,-65.37],[-88.33,-75.35],[-88.58,-77.07],[-89.84,-78.9],[-93.53,-81.45],[-98.59,-84.71],[-106.74,-89.01],[-115.47,-92.14],[-125.13,-94.53],[-135.92,-97.36],[-152.14,-103.18],[-162.65,-110.16],[-169.44,-117.58],[-174.35,-125.26],[-177.46,-133.06],[-182.23,-143.68],[-192.49,-160.69],[-201.21,-168.8],[-205.73,-172.45],[-210.03,-175.05],[-218.09,-177.02],[-232.34,-179.43],[-257.87,-179.27],[-287.36,-181.36]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-292.72,-170.06],[-281,-157],[-263.96,-126.68],[-247,-105],[-246.01,-104.98],[-245,-105],[-244.53,-104.02],[-244,-103],[-241.61,-102.47],[-239,-102],[-236.49,-100.96],[-234,-100],[-216.26,-96.42],[-202,-91],[-201.05,-90.49],[-200,-90],[-188.24,-67.71],[-188,-37],[-187.16,-18.83],[-182,-6],[-166.51,4.55],[-147,11],[-138.67,14.8],[-132,17],[-126.07,13.71],[-120,9],[-113.07,4.71],[-107,1],[-101.45,-2.69],[-95,-7],[-87.81,-11.03],[-82,-15],[-81.35,-22.5],[-81,-34],[-81.27,-58.35],[-88,-75],[-88.49,-76.5],[-89,-78],[-92.27,-80.61],[-96,-83],[-104.03,-87.65],[-112,-91],[-121.96,-93.77],[-131,-96],[-146.89,-101.14],[-160,-108],[-167.26,-115.06],[-173,-123],[-176.41,-130.39],[-180,-139],[-188.96,-155.21],[-200,-168],[-204.25,-171.26],[-208,-174],[-215.33,-176.41],[-224,-178],[-249.34,-179.36],[-275,-180]],"c":true}],"h":1},{"t":225,"s":[{"i":[[-296.99,-186.86],[-303.9,-182.77],[-303.28,-181.39],[-297.19,-174.24],[-286.57,-163.42],[-282.08,-157.48],[-279.63,-154.09],[-277.32,-150.28],[-274.76,-146.38],[-265.72,-128.73],[-253.7,-109.66],[-247.39,-105.91],[-246.26,-106.12],[-245.68,-105.47],[-245.22,-104.11],[-238.5,-101.56],[-227.6,-99.77],[-215.12,-96.77],[-203.55,-91.92],[-199.47,-88.92],[-197.47,-87.49],[-192.34,-81.19],[-188.49,-70.94],[-187.86,-53.4],[-189.83,-31.19],[-186.92,-14.12],[-179.58,-3.54],[-167.04,4.05],[-151.65,9],[-140.33,13.47],[-132.28,17.13],[-130,16.34],[-126.05,13.69],[-122.63,11.42],[-119.63,9.4],[-113.41,5.6],[-106.11,1.06],[-100.84,-3.32],[-93.75,-7.21],[-91.68,-8.51],[-91.18,-9.88],[-90.4,-10.1],[-89.25,-9.88],[-88.68,-10.51],[-88.18,-11.88],[-86.69,-12.45],[-84.58,-12.6],[-81.79,-17.42],[-81.25,-31.63],[-80.37,-52.84],[-83.1,-67.92],[-86.18,-71.74],[-88.5,-77.39],[-108.65,-90.43],[-152.8,-101.14],[-162.24,-109.38],[-176.42,-128.71],[-194.88,-165.89],[-204.58,-171.77],[-215.66,-177.26],[-250.66,-178.36]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.66,-177.78],[-290.15,-167.06],[-283.01,-158.68],[-280.39,-155.18],[-278.18,-151.59],[-275.61,-147.68],[-269.37,-136.65],[-257.88,-115.23],[-247.76,-105.85],[-246.64,-106.04],[-245.82,-105.92],[-245.38,-104.57],[-241.95,-102.42],[-231.33,-100.23],[-219.59,-98.06],[-207.1,-93.7],[-200.24,-89.43],[-198.09,-87.95],[-194.34,-84.22],[-189.41,-74.55],[-187.2,-60.55],[-189.17,-38.71],[-188.38,-18.59],[-182.52,-6.59],[-171.71,2.05],[-157.01,7.53],[-143.44,11.9],[-134.75,16.08],[-130.97,17],[-127.53,14.69],[-123.82,12.22],[-120.54,10.01],[-116.35,7.32],[-108.28,2.47],[-103.21,-1.71],[-96.1,-6.07],[-91.84,-8.07],[-91.35,-9.41],[-90.77,-10.15],[-89.64,-9.96],[-88.84,-10.07],[-88.35,-11.41],[-87.4,-12.4],[-85.28,-12.55],[-82.41,-14.11],[-81.21,-26.19],[-80.64,-44.49],[-81.49,-62.07],[-84.45,-71.05],[-88.18,-74.8],[-94.6,-84.83],[-131.91,-97.59],[-161.65,-109.62],[-171.13,-116.68],[-187.98,-152.1],[-204.35,-170.16],[-209.04,-174.25],[-235.01,-181.56],[-283.63,-180.9]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-293.67,-170.65],[-284,-160],[-281.23,-156.33],[-279,-153],[-276.46,-148.98],[-274,-145],[-261.8,-121.98],[-248,-106],[-247.02,-105.97],[-246,-106],[-245.53,-105.02],[-245,-104],[-234.92,-100.89],[-224,-99],[-211.11,-95.24],[-201,-90],[-198.78,-88.44],[-197,-87],[-190.88,-77.87],[-188,-67],[-188.52,-46.05],[-189,-24],[-184.72,-10.35],[-176,-1],[-162.02,5.79],[-146,11],[-137.54,14.77],[-131,17],[-128.77,15.52],[-125,13],[-121.59,10.72],[-119,9],[-110.85,4.03],[-105,0],[-98.47,-4.69],[-92,-8],[-91.52,-8.96],[-91,-10],[-90.02,-10.03],[-89,-10],[-88.52,-10.96],[-88,-12],[-85.99,-12.5],[-84,-13],[-81.5,-21.8],[-81,-37],[-81,-58],[-84,-70],[-87,-73],[-89,-78],[-117,-93],[-161,-109],[-163,-110],[-182,-140],[-204,-170],[-205,-172],[-219,-178],[-272,-180]],"c":true}],"h":1},{"t":226,"s":[{"i":[[-297.15,-186.59],[-303.9,-182.77],[-303.28,-181.39],[-297.68,-174.97],[-287.34,-164.6],[-277.81,-150.37],[-270.48,-135.68],[-264.9,-125.83],[-260.02,-118.27],[-257.65,-114.41],[-254.6,-112.59],[-251.97,-109.77],[-249.06,-106.63],[-235.08,-101.37],[-211.25,-96.68],[-197.78,-88.42],[-189.76,-75.28],[-188.83,-50.19],[-189.79,-19.65],[-185.46,-11.39],[-184.18,-10.29],[-183.66,-9.05],[-183.31,-7.38],[-180.17,-4.45],[-174.1,-1.15],[-163.37,4.18],[-149.38,9.39],[-139.37,13.3],[-132.2,16.09],[-128.36,15.14],[-123.95,12.43],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-116.09,6.5],[-111.55,4.53],[-108.87,2.39],[-105.38,0.36],[-104.37,-0.49],[-103.59,-0.65],[-97.68,-4.33],[-90.56,-9.27],[-85.48,-12.66],[-83.41,-14.84],[-82.13,-22.22],[-82.14,-38.08],[-81.84,-53.18],[-82.97,-66.18],[-86.32,-71.77],[-88.54,-77.4],[-108.62,-91.13],[-128.13,-97.19],[-138.49,-98.86],[-158.29,-106.97],[-164.16,-111.26],[-183.76,-146.62],[-208.14,-175.03],[-249.25,-178.99]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.76,-177.92],[-290.97,-168.31],[-280.57,-155.28],[-272.77,-140.57],[-266.64,-128.44],[-261.59,-120.74],[-258.6,-115.12],[-255.65,-113.15],[-252.94,-110.96],[-250.03,-107.6],[-242.95,-103.02],[-219.23,-98.2],[-201.66,-91.78],[-191.84,-80.17],[-187.69,-60.86],[-189.88,-29.58],[-185.87,-11.74],[-184.62,-10.66],[-183.75,-9.6],[-183.44,-7.94],[-181.87,-5.62],[-176.28,-2.21],[-167.93,2.23],[-154.09,7.76],[-142.27,12],[-134.34,15.34],[-129.88,15.92],[-125.39,13.39],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-117.82,7.24],[-112.96,5.15],[-110.18,3.21],[-106.47,0.97],[-104.57,-0.41],[-103.87,-0.6],[-100.15,-2.69],[-92.89,-7.62],[-86.53,-11.99],[-83.93,-14.09],[-82.31,-17.93],[-82.04,-32.29],[-81.86,-48.09],[-82.4,-62.23],[-84.32,-69.88],[-88.2,-75.16],[-95.48,-86.41],[-124.81,-95.81],[-134.65,-99.02],[-148.28,-102.04],[-162.82,-110.67],[-177.5,-122.98],[-199.65,-167.39],[-231.22,-181.98],[-283.49,-180.94]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-294.32,-171.64],[-284,-160],[-275.29,-145.47],[-268,-131],[-263.25,-123.28],[-259,-116],[-256.65,-113.78],[-254,-112],[-251,-108.69],[-248,-106],[-227.15,-99.78],[-206,-94],[-194.81,-84.3],[-189,-70],[-189.36,-39.88],[-186,-12],[-185.04,-11.02],[-184,-10],[-183.55,-8.49],[-183,-7],[-178.22,-3.33],[-172,0],[-158.73,5.97],[-145,11],[-136.85,14.32],[-131,16],[-126.87,14.26],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-114.52,5.83],[-111,4],[-107.67,1.68],[-105,0],[-104.12,-0.55],[-103,-1],[-95.29,-5.97],[-88,-11],[-84.71,-13.37],[-83,-16],[-82.09,-27.25],[-82,-43],[-82.12,-57.71],[-84,-69],[-87,-73],[-89,-78],[-122,-95],[-131,-98],[-142,-100],[-162,-110],[-165,-112],[-194,-160],[-218,-178],[-267,-180]],"c":true}],"h":1},{"t":227,"s":[{"i":[[-298.58,-187.07],[-303.9,-182.77],[-303.28,-181.39],[-296.82,-173.81],[-286.44,-163.38],[-276.42,-147.81],[-266.43,-128.33],[-260.61,-119.4],[-257.35,-115.38],[-253.15,-110.97],[-248.69,-106.9],[-232.59,-101.34],[-209.08,-96.8],[-202.98,-92.31],[-201.5,-91.39],[-194.59,-84.35],[-189.5,-70.35],[-189.24,-46.31],[-189.6,-18.39],[-176.16,-1.94],[-152.52,7.2],[-138.97,12.58],[-131.03,16.08],[-128.25,15.1],[-123.53,12.24],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-117,6.92],[-113.93,5.57],[-110.8,3.59],[-107.81,1.52],[-104.33,-0.52],[-100.43,-2.59],[-99.04,-3.7],[-97.42,-4.59],[-96.04,-5.7],[-94.42,-6.59],[-91.85,-8.18],[-88.85,-10.18],[-86.95,-11.32],[-84.64,-13.54],[-83.42,-24.47],[-81.87,-46.32],[-84.93,-68.26],[-88.21,-75.87],[-96.12,-84.59],[-124.77,-96.47],[-142.85,-101.9],[-153.16,-104.51],[-157.21,-107.54],[-161.64,-109.89],[-165.16,-112.26],[-180.98,-137.11],[-196.38,-163.81],[-207.99,-172.03],[-209.8,-173.3],[-251.24,-178.75]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.35,-177.36],[-289.87,-166.81],[-279.95,-154.39],[-269.66,-134.78],[-261.69,-120.96],[-258.45,-116.61],[-254.55,-112.52],[-250.22,-108.16],[-240.8,-102.69],[-216.73,-98.4],[-203.49,-92.61],[-201.99,-91.69],[-197.34,-88.18],[-190.67,-75.44],[-188.19,-56.36],[-189.95,-27.32],[-182.64,-6.04],[-161.1,4.68],[-142.21,11.04],[-133.38,15.1],[-129.74,15.98],[-125.15,13.23],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-118.04,7.38],[-114.95,6.01],[-111.89,4.33],[-108.76,2.18],[-105.86,0.27],[-101.61,-1.95],[-99.58,-3.4],[-97.96,-4.29],[-96.58,-5.4],[-94.96,-6.29],[-93.16,-7.8],[-90.16,-9.8],[-87.25,-11.72],[-84.87,-12.81],[-83.47,-16.22],[-82.63,-38.61],[-82.16,-59.03],[-87.48,-74.78],[-93.36,-82.01],[-110.74,-93.66],[-140.18,-100.92],[-149.44,-104.2],[-156.58,-106.3],[-160.18,-109.26],[-163.82,-111.67],[-175.18,-121.07],[-190.87,-155],[-202.92,-169.74],[-209.86,-173.83],[-228.74,-184.28],[-287,-181.87]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-293.35,-170.31],[-284,-160],[-273.04,-141.29],[-263,-123],[-259.53,-118],[-256,-114],[-251.68,-109.57],[-247,-106],[-224.66,-99.87],[-204,-93],[-202.49,-92],[-201,-91],[-192.63,-79.9],[-189,-65],[-189.6,-36.81],[-186,-12],[-168.63,1.37],[-145,10],[-136.18,13.84],[-130,16],[-126.7,14.16],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-115.98,6.46],[-113,5],[-109.78,2.88],[-107,1],[-102.97,-1.24],[-100,-3],[-98.5,-4],[-97,-5],[-95.5,-5.99],[-94,-7],[-91,-9],[-88,-11],[-86,-12],[-84,-15],[-83,-32],[-82,-52],[-86,-71],[-90,-78],[-100,-87],[-137,-100],[-146,-103],[-156,-106],[-158,-108],[-163,-111],[-166,-113],[-187,-148],[-201,-168],[-209,-173],[-211,-174],[-277,-181]],"c":true}],"h":1},{"t":228,"s":[{"i":[[-299.31,-187.11],[-303.9,-182.77],[-303.28,-181.39],[-297.26,-174.22],[-286.94,-163.2],[-274.02,-141.59],[-260.13,-116.06],[-253.42,-110.89],[-252.23,-111.1],[-251.68,-110.49],[-251.17,-109.12],[-241.81,-104.54],[-223.21,-100.16],[-211.76,-97.43],[-203.07,-93.71],[-197.21,-88.1],[-192.82,-80.42],[-189.73,-57.95],[-191.38,-24.39],[-185.6,-11.35],[-180.12,-5.96],[-177.68,-4.49],[-177.18,-3.12],[-176.4,-2.9],[-175.25,-3.11],[-174.68,-2.48],[-174.21,-1.12],[-169.46,0.97],[-161.66,3.08],[-156.87,4.89],[-153.32,6.57],[-149.41,7.66],[-145.29,8.52],[-138.61,11.74],[-131.28,16.07],[-128.54,15.11],[-123.49,12.22],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-115.97,6.43],[-111.6,4.58],[-107.73,1.27],[-102.52,-2.03],[-85.69,-10.79],[-84.34,-27.96],[-82.26,-54],[-98.62,-88.97],[-134.49,-99.91],[-145.22,-103.39],[-153.98,-105.45],[-158.99,-109.38],[-163.86,-111.12],[-173.38,-120.71],[-183.4,-139.13],[-200.3,-167.42],[-217.3,-177.5],[-256.43,-179.57]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.54,-177.62],[-290.46,-167.01],[-278.45,-151.06],[-264.86,-124.09],[-253.81,-110.84],[-252.64,-111.03],[-251.85,-110.93],[-251.35,-109.59],[-247.46,-106.46],[-229.69,-101.39],[-214.98,-98.33],[-205.81,-95.12],[-199.05,-90.39],[-194.09,-83.12],[-189.04,-69.26],[-190.9,-35.52],[-187.04,-13.62],[-182.15,-7.52],[-177.84,-4.93],[-177.35,-3.59],[-176.77,-2.85],[-175.64,-3.04],[-174.82,-2.92],[-174.37,-1.58],[-171.88,0.18],[-164.35,2.42],[-157.97,4.36],[-154.55,6],[-150.77,7.4],[-146.67,8.22],[-141.47,9.95],[-133.51,14.79],[-130.04,16],[-125.27,13.22],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-117.67,7.14],[-112.93,5.15],[-109.47,2.53],[-104.25,-1.02],[-95.49,-6.52],[-82.84,-19.59],[-83.62,-44.89],[-85.51,-80.29],[-124.8,-97.56],[-143.73,-102.48],[-150.26,-105.12],[-157.78,-107.4],[-161.51,-110.94],[-169.6,-115.53],[-180.19,-131.87],[-193.26,-157.94],[-213.86,-176.12],[-238.55,-182.27],[-287.27,-181.94]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-293.86,-170.61],[-284,-159],[-269.44,-132.84],[-254,-111],[-253.03,-110.96],[-252,-111],[-251.51,-110.04],[-251,-109],[-235.75,-102.96],[-218,-99],[-208.79,-96.28],[-201,-92],[-195.65,-85.61],[-192,-78],[-190.31,-46.74],[-188,-16],[-183.88,-9.44],[-178,-5],[-177.52,-4.04],[-177,-3],[-176.02,-2.97],[-175,-3],[-174.52,-2.03],[-174,-1],[-166.91,1.69],[-159,4],[-155.71,5.45],[-152,7],[-148.04,7.94],[-144,9],[-136.06,13.27],[-130,16],[-126.9,14.17],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-114.45,5.79],[-111,4],[-105.99,0.13],[-101,-3],[-84,-16],[-84,-36],[-83,-60],[-117,-95],[-142,-102],[-147,-104],[-157,-107],[-160,-110],[-165,-112],[-176,-125],[-187,-146],[-209,-173],[-224,-179],[-275,-181]],"c":true}],"h":1},{"t":229,"s":[{"i":[[-300.32,-185.16],[-303.96,-183.37],[-303.81,-182.53],[-303.54,-181.8],[-303.16,-181.18],[-298.35,-175.84],[-291.5,-168.17],[-285,-160.02],[-278.45,-149.63],[-272.11,-137.85],[-265.03,-124.74],[-256.54,-113.59],[-252.68,-111.49],[-252.17,-110.12],[-242.87,-105.45],[-224.98,-101.11],[-214.68,-98.6],[-207.47,-95.85],[-196.48,-87.03],[-190.08,-67.99],[-190.77,-44.07],[-190.71,-20.3],[-182.3,-7.6],[-167.65,0.86],[-156.97,4.57],[-148.15,6.86],[-138.58,10.94],[-130.49,15.1],[-126.07,13.75],[-119.79,9.14],[-111.61,3.89],[-103.62,-1.33],[-98.96,-4.34],[-96.07,-6.3],[-90.8,-9.38],[-84.48,-13.56],[-84.27,-16.6],[-85.01,-23.79],[-84.79,-29.92],[-84.1,-35.87],[-83.65,-56.47],[-88.24,-75.96],[-93.48,-81.92],[-95.01,-84.24],[-98.59,-87.03],[-101.53,-89.15],[-115.24,-95.54],[-135.71,-101.01],[-149.16,-105],[-159.41,-108.48],[-161.96,-110.7],[-163.57,-111.59],[-164.64,-112.42],[-165.58,-112.67],[-178.41,-127.8],[-192.65,-156.64],[-203.56,-168.66],[-211.82,-174.93],[-229.84,-180.48],[-259.31,-180.39],[-283.96,-182.75]],"o":[[-303.99,-183.67],[-303.87,-182.79],[-303.64,-182.03],[-303.3,-181.37],[-300.68,-178.38],[-293.76,-170.74],[-287.12,-162.81],[-280.65,-153.46],[-274.18,-141.83],[-267.51,-129.45],[-259.54,-116.82],[-252.85,-111.93],[-252.35,-110.59],[-248.38,-107.4],[-231.17,-102.31],[-217.44,-99.43],[-209.69,-96.81],[-200.44,-91.78],[-191.3,-75.14],[-189.92,-52.67],[-191.17,-27.89],[-185.97,-11.03],[-173.14,-1.66],[-159.64,3.89],[-151.23,6.06],[-141.84,9.15],[-132.91,13.92],[-127.93,14.93],[-122,10.85],[-114.55,5.81],[-106.14,0.33],[-99.92,-3.69],[-97.03,-5.64],[-93.31,-8.1],[-86.38,-12.11],[-84.01,-14.96],[-84.77,-21.02],[-84.99,-27.99],[-84.35,-33.86],[-83.53,-47.98],[-86.01,-70.46],[-92.98,-81.05],[-94.5,-83.52],[-97.58,-86.21],[-100.57,-88.5],[-108.64,-93.29],[-128.78,-99.41],[-145.2,-104.01],[-156.26,-107.24],[-161.42,-110.4],[-163.03,-111.29],[-164.34,-112.33],[-165.26,-112.59],[-173.34,-118.73],[-188.07,-146.76],[-200.9,-166.2],[-209.02,-173.03],[-221.18,-179.53],[-248.9,-180.91],[-277.3,-181.41],[-295.47,-184.62]],"v":[[-304,-184],[-303.92,-183.08],[-303.72,-182.28],[-303.42,-181.59],[-303,-181],[-296.05,-173.29],[-289.31,-165.49],[-283,-157],[-276.32,-145.73],[-270,-134],[-262.28,-120.78],[-253,-112],[-252.51,-111.04],[-252,-110],[-237.02,-103.88],[-220,-100],[-212.18,-97.71],[-206,-95],[-193.89,-81.08],[-190,-60],[-190.97,-35.98],[-188,-15],[-177.72,-4.63],[-162,3],[-154.1,5.32],[-145,8],[-135.74,12.43],[-129,15],[-124.04,12.3],[-118,8],[-108.88,2.11],[-101,-3],[-98,-4.99],[-95,-7],[-88.59,-10.74],[-84,-15],[-84.52,-18.81],[-85,-26],[-84.57,-31.89],[-84,-38],[-84.83,-63.46],[-92,-80],[-93.99,-82.72],[-96,-85],[-99.58,-87.76],[-103,-90],[-122.01,-97.47],[-142,-103],[-152.71,-106.12],[-161,-110],[-162.49,-110.99],[-164,-112],[-164.95,-112.5],[-166,-113],[-183.24,-137.28],[-199,-164],[-206.29,-170.84],[-214,-176],[-239.37,-180.69],[-270,-181],[-289.71,-183.68]],"c":true}],"h":1},{"t":230,"s":[{"i":[[-299.27,-186.69],[-303.89,-182.77],[-303.31,-181.36],[-295.07,-172.11],[-281.6,-155.41],[-277.27,-147.34],[-276.45,-144.8],[-273.33,-139.28],[-269.34,-132.32],[-263.57,-122.51],[-256.57,-113.71],[-250.01,-109.6],[-243.43,-106.8],[-234.18,-103.9],[-224.92,-101.64],[-219.74,-100.69],[-215.97,-100.31],[-213.35,-99.18],[-210.92,-97.42],[-207.81,-96.25],[-204.58,-95.41],[-200.63,-92],[-196.85,-86.53],[-193.6,-79.99],[-191.29,-71.65],[-190.87,-56.62],[-192.57,-37.43],[-190.33,-20.86],[-184.2,-10.8],[-177.92,-5.37],[-172.78,-1.81],[-162.62,2.01],[-149.24,5.39],[-139.96,9.67],[-130.31,15.05],[-125.97,13.73],[-119.65,9.05],[-111.55,3.84],[-103.7,-1.3],[-96.95,-5.49],[-91.62,-8.84],[-87.41,-11.71],[-85.39,-13.73],[-85.05,-17.16],[-86.03,-23.96],[-85.39,-39.38],[-84.38,-60.3],[-89.32,-76.5],[-92.34,-82.24],[-101.97,-89.52],[-125.63,-98.69],[-139.95,-103.04],[-158.94,-108.07],[-164.15,-112.19],[-166.17,-113.35],[-185.02,-139.36],[-195.67,-157.83],[-204.32,-169.34],[-208.62,-172.75],[-212.03,-174.46],[-253.71,-180.19]],"o":[[-303.99,-183.34],[-303.55,-181.78],[-299.52,-176.91],[-286.11,-161.36],[-277.55,-148.19],[-276.73,-145.65],[-274.65,-141.62],[-270.67,-134.63],[-265.78,-126.16],[-258.96,-116.29],[-252.04,-110.7],[-245.7,-107.65],[-237.47,-104.83],[-227.91,-102.3],[-221,-100.78],[-217.22,-100.45],[-214.14,-99.72],[-211.74,-98.03],[-209.02,-96.55],[-205.59,-95.68],[-202.21,-93.74],[-197.95,-88.4],[-194.71,-82.66],[-191.89,-74.48],[-190.34,-62.9],[-191.99,-43.89],[-191.48,-25.21],[-186.69,-13.65],[-179.53,-6.72],[-174.55,-2.92],[-167,0.81],[-153.74,4.29],[-143.31,7.64],[-133.46,13.37],[-127.89,14.96],[-121.85,10.78],[-114.45,5.74],[-106.18,0.32],[-98.89,-4.33],[-93.32,-7.75],[-88.47,-11.1],[-85.87,-13.02],[-84.79,-15.68],[-85.67,-21.3],[-85.95,-32.23],[-84.6,-53.41],[-85.93,-72.02],[-92.59,-80.77],[-96.38,-86.88],[-114.86,-95.88],[-137.11,-101.86],[-149.45,-106.04],[-162.84,-111.8],[-165.69,-113.66],[-176.98,-121.8],[-193.55,-154.54],[-201.43,-165.67],[-208.33,-171.15],[-209.95,-173.61],[-229.79,-184.35],[-288.89,-182.71]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-290.59,-166.74],[-278,-149],[-277,-146.49],[-276,-144],[-272,-136.95],[-268,-130],[-261.27,-119.4],[-254,-112],[-247.86,-108.63],[-241,-106],[-231.04,-103.1],[-222,-101],[-218.48,-100.57],[-215,-100],[-212.55,-98.61],[-210,-97],[-206.7,-95.97],[-204,-95],[-199.29,-90.2],[-196,-85],[-192.75,-77.24],[-191,-69],[-191.43,-50.25],[-192,-31],[-188.51,-17.26],[-181,-8],[-176.23,-4.14],[-171,-1],[-158.18,3.15],[-145,7],[-136.71,11.52],[-129,15],[-123.91,12.26],[-118,8],[-108.86,2.08],[-101,-3],[-95.13,-6.62],[-90,-10],[-86.64,-12.37],[-85,-15],[-85.36,-19.23],[-86,-27],[-85,-46.39],[-85,-65],[-92,-80],[-93,-83],[-107,-92],[-134,-101],[-143,-104],[-162,-111],[-165,-113],[-167,-114],[-191,-150],[-198,-161],[-208,-171],[-209,-173],[-213,-175],[-279,-182]],"c":true}],"h":1},{"t":231,"s":[{"i":[[-298.67,-186.82],[-303.9,-182.77],[-303.29,-181.39],[-299.34,-176.53],[-292.45,-169.01],[-286.15,-160.86],[-280.77,-152.08],[-272,-135.73],[-259.69,-116.11],[-254.25,-112.33],[-253.35,-111.22],[-249.84,-109.47],[-243.9,-107.67],[-237.98,-105.51],[-232.03,-103.43],[-225.47,-102.39],[-218.32,-101.71],[-214.53,-100.26],[-211.99,-98.45],[-208.87,-97.29],[-205.59,-96.42],[-201.05,-92.37],[-195.83,-84.87],[-191.17,-60.39],[-192.17,-23.17],[-182.98,-9.34],[-172.38,-2.78],[-160.74,1.51],[-149.42,4.71],[-140.14,9.07],[-129.36,15.1],[-125.73,13.7],[-119.54,8.98],[-114,5.46],[-108.47,1.94],[-102.16,-2.15],[-94.09,-7.06],[-91.68,-8.51],[-91.18,-9.88],[-88.47,-11.31],[-85.14,-12.65],[-85.18,-14.7],[-85.93,-22.23],[-85.71,-37],[-84.65,-54.75],[-86.45,-67.97],[-90.71,-79.66],[-92.42,-81.64],[-92.68,-82.59],[-99.11,-88.75],[-111.22,-94.64],[-118.15,-97.12],[-122.48,-98.55],[-149.9,-104.78],[-161.85,-112.25],[-166.78,-114.05],[-185.5,-139.96],[-196.85,-159],[-207.17,-170.9],[-219.78,-178.38],[-259.24,-180.81]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-301.36,-178.78],[-294.88,-171.64],[-288.02,-163.57],[-282.53,-155.12],[-275.66,-143.17],[-264.02,-122.19],[-254.57,-112.72],[-253.63,-111.58],[-251.64,-110.13],[-245.97,-108.23],[-239.97,-106.29],[-234.01,-104.08],[-227.81,-102.53],[-220.73,-101.98],[-215.28,-100.78],[-212.88,-99.09],[-210.07,-97.58],[-206.63,-96.71],[-203.14,-94.69],[-197.39,-87.46],[-190.83,-73.55],[-191.84,-35.2],[-185.79,-12.2],[-176.27,-4.63],[-164.52,0.41],[-153.18,3.66],[-143.96,6.77],[-132.84,13.23],[-127.45,14.96],[-121.77,10.71],[-116.02,6.74],[-110.23,3.06],[-104.86,-0.37],[-96.78,-5.49],[-91.84,-8.07],[-91.35,-9.41],[-89.9,-10.74],[-86.09,-12.27],[-84.96,-13.08],[-85.67,-19.27],[-86.13,-30.62],[-84.96,-49.06],[-85.34,-63.14],[-89.13,-76.23],[-92.33,-81.34],[-92.59,-82.26],[-95.5,-86.18],[-106.97,-92.98],[-116.66,-96.6],[-121.06,-98.1],[-136.03,-102.53],[-161.12,-110.58],[-164.74,-114.14],[-177.83,-122.68],[-194.41,-155.09],[-202.83,-167.34],[-217.04,-177.23],[-240.88,-183.12],[-288.97,-182.8]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-297.11,-174.09],[-290,-166],[-284.34,-157.99],[-279,-149],[-268.01,-128.96],[-255,-113],[-253.94,-111.95],[-253,-111],[-247.91,-108.85],[-242,-107],[-236,-104.79],[-230,-103],[-223.1,-102.18],[-216,-101],[-213.7,-99.67],[-211,-98],[-207.75,-96.99],[-205,-96],[-199.22,-89.92],[-195,-83],[-191.5,-47.79],[-188,-16],[-179.63,-6.98],[-168,-1],[-156.96,2.59],[-146,6],[-136.49,11.15],[-128,15],[-123.75,12.21],[-118,8],[-112.12,4.26],[-107,1],[-99.47,-3.82],[-92,-8],[-91.52,-8.96],[-91,-10],[-87.28,-11.79],[-85,-13],[-85.42,-16.99],[-86,-25],[-85.34,-43.03],[-85,-59],[-87.79,-72.1],[-92,-81],[-92.5,-81.95],[-93,-83],[-103.04,-90.87],[-115,-96],[-119.61,-97.61],[-124,-99],[-160,-110],[-163,-113],[-168,-115],[-192,-151],[-199,-162],[-212,-174],[-227,-180],[-277,-182]],"c":true}],"h":1},{"t":232,"s":[{"i":[[-298.01,-186.59],[-303.9,-182.77],[-303.29,-181.39],[-298.55,-175.45],[-290.83,-166.97],[-287.31,-162.69],[-285.76,-159.17],[-284.02,-156.69],[-282.38,-154.67],[-281.31,-152.4],[-280.49,-149.86],[-279.46,-148.66],[-278.15,-148.21],[-277.57,-147.06],[-277.16,-145.31],[-275.16,-141.59],[-272.73,-137.27],[-267.27,-127.59],[-259.03,-116.01],[-255.25,-113.33],[-254.35,-112.22],[-250.47,-110.24],[-244.8,-108.62],[-237.16,-106.08],[-228.11,-103.47],[-212.22,-99.61],[-198.77,-90.15],[-192.58,-62.59],[-193.65,-25.45],[-182.88,-9.75],[-168.44,-1.59],[-161.64,0.72],[-158.05,1.64],[-152.54,3.37],[-146.02,5.21],[-138.44,8.98],[-129.74,14.06],[-125.73,12.76],[-118.62,9.02],[-107.2,0.85],[-98.63,-4.29],[-86.89,-11.24],[-86.76,-19.12],[-87.09,-29.75],[-85.53,-68.12],[-92.75,-81.47],[-112.29,-96.68],[-130.4,-101.06],[-140.78,-104.06],[-160.78,-109.92],[-166.15,-114.18],[-176.64,-124.21],[-187.56,-140.96],[-194.46,-155.39],[-199.24,-161.83],[-206.02,-168.46],[-209.14,-172.35],[-213.74,-174.43],[-215.56,-176.77],[-227.98,-181.31],[-260.89,-181.25]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-301.13,-178.46],[-293.4,-169.7],[-287.93,-163.85],[-286.22,-160.34],[-284.58,-157.36],[-282.92,-155.34],[-281.56,-153.22],[-280.77,-150.72],[-279.89,-148.8],[-278.6,-148.36],[-277.74,-147.65],[-277.28,-145.88],[-276.05,-143.21],[-273.51,-138.63],[-269.75,-132.08],[-261.91,-119.55],[-255.57,-113.72],[-254.63,-112.58],[-252.32,-110.93],[-246.71,-109.08],[-240.36,-107.09],[-231.04,-104.27],[-218.34,-101.28],[-202.43,-94.05],[-192,-75.11],[-193.4,-37.76],[-186.91,-13.2],[-173.65,-3.94],[-162.86,0.41],[-159.23,1.34],[-154.78,2.76],[-148.16,4.59],[-141.57,6.95],[-132.52,12.53],[-126.17,13.94],[-121.26,9.88],[-112.74,5.3],[-100.71,-2.9],[-91.79,-8.72],[-85.52,-15.5],[-87.19,-26.05],[-86.55,-49.75],[-90.86,-79.89],[-100.73,-91.25],[-126.47,-101.07],[-137.58,-102.93],[-150.43,-106.87],[-164.84,-113.8],[-171.21,-119.03],[-182.95,-134.35],[-192.64,-149.89],[-198.1,-159.19],[-203.27,-166.8],[-208.84,-170.65],[-211.56,-174.18],[-215.36,-175.16],[-220.04,-179.09],[-245.85,-183.07],[-287.16,-182.75]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-295.97,-172.57],[-289,-165],[-286.77,-161.52],[-285,-158],[-283.47,-156.02],[-282,-154],[-281.04,-151.56],[-280,-149],[-279.03,-148.51],[-278,-148],[-277.43,-146.47],[-277,-145],[-274.33,-140.11],[-272,-136],[-264.59,-123.57],[-256,-114],[-254.94,-112.95],[-254,-112],[-248.59,-109.66],[-243,-108],[-234.1,-105.17],[-226,-103],[-207.33,-96.83],[-196,-84],[-192.99,-50.17],[-189,-17],[-178.26,-6.84],[-164,0],[-160.44,1.03],[-157,2],[-150.35,3.98],[-144,6],[-135.48,10.76],[-128,14],[-123,11],[-117,8],[-104,-1],[-96,-6],[-86,-14],[-87,-23],[-87,-33],[-90,-78],[-94,-83],[-123,-100],[-134,-102],[-144,-105],[-164,-113],[-167,-115],[-179,-128],[-191,-147],[-196,-157],[-201,-164],[-208,-170],[-210,-173],[-215,-175],[-216,-177],[-235,-182],[-274,-182]],"c":true}],"h":1},{"t":233,"s":[{"i":[[-299.81,-186.7],[-303.91,-182.76],[-303.25,-181.41],[-299.39,-175.97],[-293.01,-168.6],[-284.46,-156.69],[-275.47,-141.37],[-272.25,-135.28],[-271.43,-132.73],[-270.46,-131.65],[-269.16,-131.21],[-268.57,-130.04],[-268.22,-128.35],[-264.5,-122.83],[-258.57,-116.04],[-255.15,-113.82],[-252.79,-112.45],[-249.74,-110.79],[-246.5,-109.55],[-235.7,-106.31],[-221.2,-103.32],[-213.54,-100.89],[-208.16,-98.74],[-206.29,-97.15],[-205.39,-95.31],[-203.49,-94.16],[-201.43,-93.48],[-200.89,-92.44],[-201.1,-91.22],[-200.49,-90.68],[-199.12,-90.18],[-196.06,-84.68],[-193.34,-75.02],[-193.1,-56.29],[-194.34,-30.68],[-191.13,-21.08],[-189.02,-17.02],[-188.58,-16.36],[-188.32,-15.41],[-175.7,-5.09],[-150.81,2.64],[-136.88,9.31],[-128.6,14.1],[-120.28,9.08],[-114.81,6.5],[-106.39,0.38],[-98.63,-4.29],[-86.76,-11.41],[-86.66,-19.41],[-84.61,-64.52],[-115.17,-98.39],[-144.41,-105.14],[-152.37,-108.75],[-156.65,-109.42],[-167.87,-116.16],[-178.09,-125.78],[-184.37,-135.25],[-200.38,-167.21],[-211.64,-173.75],[-231.75,-182.25],[-269.13,-182.07]],"o":[[-304.03,-183.31],[-303.52,-181.81],[-301.39,-178.42],[-295.2,-171.06],[-287.72,-161.75],[-278.33,-146.5],[-272.53,-136.17],[-271.7,-133.56],[-270.88,-131.8],[-269.6,-131.36],[-268.71,-130.61],[-268.32,-128.91],[-266.47,-125.56],[-260.55,-118.07],[-256.01,-114.34],[-253.54,-112.88],[-250.73,-111.27],[-247.62,-109.93],[-240.6,-107.4],[-226,-104.27],[-215.46,-101.52],[-209.89,-99.5],[-206.59,-97.74],[-205.69,-95.93],[-204.27,-94.42],[-202.07,-93.69],[-200.84,-92.83],[-201.02,-91.63],[-200.93,-90.84],[-199.59,-90.35],[-197.39,-87.67],[-194.03,-78.36],[-192.18,-64.7],[-194.18,-39.28],[-191.87,-22.57],[-189.71,-18.31],[-188.67,-16.65],[-188.41,-15.74],[-183.05,-8.66],[-159.58,0.56],[-140.08,7.26],[-131.14,12.73],[-125.32,13.9],[-116.05,6.4],[-110.46,3.8],[-100.71,-2.9],[-91.8,-8.72],[-85.88,-14.42],[-89.21,-38.9],[-96.87,-92.91],[-137.93,-104.62],[-150.51,-107.17],[-154.76,-109.68],[-164.31,-112.72],[-175.54,-123.29],[-181.96,-132.32],[-192.77,-149.43],[-211.32,-172.14],[-220.22,-179.7],[-255.45,-183.83],[-290.13,-183.48]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-297.3,-173.52],[-291,-166],[-281.39,-151.59],[-273,-137],[-271.97,-134.42],[-271,-132],[-270.03,-131.51],[-269,-131],[-268.45,-129.47],[-268,-128],[-262.53,-120.45],[-257,-115],[-254.34,-113.35],[-252,-112],[-248.68,-110.36],[-245,-109],[-230.85,-105.29],[-217,-102],[-211.71,-100.19],[-207,-98],[-205.99,-96.54],[-205,-95],[-202.78,-93.93],[-201,-93],[-200.96,-92.03],[-201,-91],[-200.04,-90.51],[-199,-90],[-195.04,-81.52],[-193,-72],[-193.64,-47.78],[-192,-23],[-190.42,-19.69],[-189,-17],[-188.49,-16.05],[-188,-15],[-167.64,-2.27],[-143,6],[-134.01,11.02],[-127,14],[-117,7],[-114,6],[-104,-1],[-96,-6],[-86,-14],[-87,-22],[-90,-77],[-132,-103],[-150,-107],[-153,-109],[-158,-110],[-172,-120],[-180,-129],[-186,-138],[-211,-172],[-212,-174],[-243,-183],[-283,-183]],"c":true}],"h":1},{"t":234,"s":[{"i":[[-299.67,-186.74],[-303.91,-182.76],[-303.25,-181.41],[-301.25,-178.65],[-298.03,-175.25],[-296.26,-172.72],[-295.53,-170.67],[-293.75,-168.95],[-291.5,-167.66],[-287.39,-161.7],[-282.69,-152.98],[-273.69,-136.62],[-261.37,-118.94],[-254.66,-113.8],[-253.24,-112.13],[-237.46,-106.9],[-211.73,-101.4],[-206.08,-96.57],[-204.41,-96.34],[-199.24,-90.45],[-194.48,-78.62],[-193.28,-57.7],[-193.58,-30.65],[-190.76,-21.13],[-188.82,-17.88],[-187.57,-16.08],[-187.34,-14.4],[-184.61,-11.86],[-179.62,-8.94],[-164.24,-1.76],[-141.99,5.69],[-130.24,12.81],[-125.39,13.25],[-112.4,4.68],[-98.33,-4.31],[-91.65,-8.53],[-85.94,-12.16],[-86.24,-13.7],[-87.79,-19.61],[-88.22,-39.64],[-86.88,-62.96],[-88.79,-72.1],[-90.76,-78.49],[-94.38,-84.16],[-102.06,-91.12],[-104.32,-92.52],[-104.79,-93.88],[-108.93,-95.98],[-115.19,-98.34],[-128.48,-102.67],[-145.55,-107.16],[-156.62,-110.72],[-164.81,-113.61],[-171.48,-119.6],[-179.16,-126.6],[-193.19,-148.56],[-198.75,-157.63],[-198.77,-159.49],[-202.37,-163.17],[-221.75,-181.39],[-268.36,-182.15]],"o":[[-304.03,-183.31],[-303.52,-181.81],[-302.24,-179.78],[-299.15,-176.38],[-296.49,-173.39],[-295.78,-171.36],[-294.5,-169.37],[-292.25,-168.09],[-289.05,-164.46],[-284.22,-155.96],[-277.26,-143.4],[-265.75,-124.39],[-255.3,-114.48],[-253.64,-112.62],[-246.6,-108.45],[-220.03,-103.38],[-206.62,-96.65],[-204.97,-96.42],[-201.5,-93.89],[-195.73,-82.81],[-192.99,-67.38],[-193.57,-39.34],[-191.36,-22.7],[-189.49,-18.72],[-187.65,-16.63],[-187.42,-14.96],[-186.05,-12.89],[-181.4,-9.89],[-171.74,-4.35],[-149.36,3.27],[-132.05,11.18],[-126.91,13.85],[-117.23,7.83],[-102.95,-1.39],[-93.68,-7.2],[-87.78,-11.01],[-85.85,-12.39],[-87.21,-17.31],[-88.78,-30.91],[-87.27,-55.66],[-88.16,-69.86],[-90.09,-76.42],[-92.1,-81.35],[-99.36,-89.05],[-104.17,-92.08],[-104.63,-93.42],[-106.83,-95.06],[-113.1,-97.62],[-122.71,-101.09],[-139.9,-105.7],[-153.72,-109.92],[-162.17,-112.57],[-169.71,-116.71],[-176.51,-124.4],[-187.21,-137.12],[-197.15,-157.32],[-199.31,-158.46],[-199.57,-161.26],[-211.26,-174.79],[-251.59,-184.17],[-291.92,-183.62]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-300.2,-177.52],[-297,-174],[-296.02,-172.04],[-295,-170],[-293,-168.52],[-291,-167],[-285.8,-158.83],[-281,-150],[-269.72,-130.51],[-256,-115],[-254.15,-113.21],[-253,-112],[-228.75,-105.14],[-207,-97],[-205.52,-96.49],[-204,-96],[-197.48,-86.63],[-194,-75],[-193.42,-48.52],[-192,-25],[-190.13,-19.93],[-188,-17],[-187.5,-15.52],[-187,-14],[-183,-10.87],[-178,-8],[-156.8,0.75],[-136,9],[-128.58,13.33],[-122,11],[-107.67,1.64],[-94,-7],[-89.72,-9.77],[-86,-12],[-86.73,-15.5],[-88,-22],[-87.75,-47.65],[-88,-69],[-89.44,-74.26],[-91,-79],[-96.87,-86.61],[-104,-92],[-104.48,-92.97],[-105,-94],[-111.02,-96.8],[-117,-99],[-134.19,-104.19],[-151,-109],[-159.4,-111.65],[-167,-115],[-174,-122],[-181,-129],[-197,-157],[-199,-158],[-199,-160],[-203,-164],[-239,-183],[-282,-183]],"c":true}],"h":1},{"t":235,"s":[{"i":[[-297.05,-185.98],[-301.36,-178.34],[-295.4,-171.1],[-289.55,-163.57],[-284.47,-156.5],[-276.55,-142.15],[-268.52,-127.07],[-264.4,-122.49],[-260.94,-119.87],[-257.7,-116.61],[-254.88,-113.54],[-247.82,-110.14],[-235.28,-106.96],[-223.63,-104.68],[-212.28,-101.93],[-207.62,-98.87],[-205.63,-96.56],[-203.43,-94.61],[-201.55,-92.74],[-194.73,-77.39],[-195.28,-50.44],[-194.67,-33.89],[-192.54,-22.91],[-179.94,-8.93],[-152.62,0.45],[-141.46,4.97],[-136.56,7.07],[-134.65,8.54],[-134.22,9.84],[-133.01,10.43],[-131.39,10.69],[-129.57,14.01],[-120.19,9.02],[-114.81,6.5],[-106.39,0.38],[-98.57,-4.3],[-87.81,-10.76],[-87.64,-18.7],[-85.08,-65.55],[-100.12,-90.68],[-151.13,-105.32],[-176.75,-123.8],[-180.79,-128.79],[-182.19,-131.15],[-184.19,-134.15],[-186.19,-137.15],[-193.92,-149.39],[-197.75,-154.63],[-197.77,-156.49],[-199.75,-157.64],[-199.77,-159.5],[-201.75,-160.63],[-201.77,-162.49],[-203.75,-163.68],[-206.73,-168.78],[-209.57,-169.81],[-210.71,-171.75],[-215.43,-174.55],[-220.1,-178.6],[-226.07,-180.23],[-254.59,-182.69]],"o":[[-302.92,-180.79],[-297.61,-173.49],[-291.31,-165.82],[-286.13,-158.92],[-279.54,-148.11],[-271.04,-131.63],[-265.43,-123.31],[-262.15,-120.78],[-258.76,-117.84],[-255.76,-114.46],[-251.42,-111.41],[-239.74,-107.92],[-227.49,-105.21],[-216.02,-103.04],[-208.31,-99.59],[-206.28,-97.35],[-204.15,-95.25],[-202.12,-93.36],[-196.09,-85.42],[-194.32,-59.9],[-194.9,-37.68],[-193.49,-26.5],[-187.38,-13.16],[-162.56,-2.12],[-142.94,4.44],[-138.27,6.29],[-134.79,8.12],[-134.36,9.4],[-133.56,10.33],[-131.92,10.61],[-128.97,12.59],[-125.48,14],[-116.05,6.4],[-110.46,3.8],[-100.86,-2.82],[-91.26,-9.14],[-86.85,-14.61],[-91.11,-40.9],[-94.07,-84.32],[-121.27,-105.08],[-174.08,-120.32],[-180.13,-128.17],[-181.8,-129.84],[-183.8,-132.84],[-185.8,-135.84],[-191.2,-142.38],[-196.15,-154.32],[-198.31,-155.46],[-198.14,-157.31],[-200.31,-158.44],[-200.15,-160.32],[-202.31,-161.46],[-202.13,-163.29],[-205.32,-165.71],[-208.32,-170.31],[-210.27,-170.12],[-213.57,-174.18],[-219.32,-176.74],[-222.91,-179.86],[-240.43,-183.98],[-283.02,-183.26]],"v":[[-304,-184],[-299.49,-175.92],[-293,-168],[-287.84,-161.24],[-283,-154],[-273.8,-136.89],[-266,-124],[-263.28,-121.64],[-260,-119],[-256.73,-115.54],[-254,-113],[-243.78,-109.03],[-231,-106],[-219.82,-103.86],[-209,-100],[-206.95,-98.11],[-205,-96],[-202.78,-93.99],[-201,-92],[-194.52,-68.64],[-195,-41],[-194.08,-30.19],[-191,-20],[-171.25,-5.53],[-144,4],[-139.87,5.63],[-135,8],[-134.51,8.97],[-134,10],[-132.46,10.52],[-131,11],[-127,14],[-117,7],[-114,6],[-104,-1],[-96,-6],[-87,-14],[-88,-21],[-92,-80],[-105,-94],[-169,-117],[-180,-128],[-181,-129],[-183,-132],[-185,-135],[-187,-138],[-196,-154],[-198,-155],[-198,-157],[-200,-158],[-200,-160],[-202,-161],[-202,-163],[-204,-164],[-208,-170],[-210,-170],[-211,-172],[-218,-176],[-221,-179],[-229,-181],[-270,-183]],"c":true}],"h":1},{"t":236,"s":[{"i":[[-303.2,-184.56],[-303.91,-182.76],[-303.24,-181.42],[-300.19,-176.83],[-294.77,-170.33],[-288.08,-161.03],[-281.85,-150.36],[-278.27,-143.66],[-275.53,-138.56],[-274.51,-137.37],[-274.35,-136.6],[-272.16,-133.15],[-269.72,-130.07],[-263.86,-122.15],[-254.21,-113.51],[-239.84,-108.4],[-221.08,-104.95],[-205.19,-97.1],[-195.84,-81.78],[-194.56,-55.26],[-194.37,-26.79],[-185.66,-13.86],[-174.16,-7.04],[-156.94,-0.85],[-139.65,5.14],[-131.46,10.66],[-127.08,14.05],[-124.73,12.81],[-119.12,9.07],[-117.19,7.9],[-114.68,6.43],[-110.33,3.5],[-105.19,-0.31],[-101.04,-2.75],[-97.3,-5.14],[-91.63,-8.73],[-87.37,-12.4],[-87.29,-15.49],[-88.73,-20.32],[-89.86,-42.01],[-89.28,-72.41],[-93.5,-81.65],[-96.55,-85.52],[-97.42,-86.92],[-97.66,-88.62],[-99.79,-90.57],[-103.79,-93.2],[-119.58,-101.03],[-144.95,-107.26],[-169.88,-117.08],[-180.98,-128.16],[-189.24,-141.21],[-190.3,-142.91],[-193.37,-145.95],[-194.27,-149.71],[-197.3,-152.86],[-200.52,-158.9],[-209.79,-171.1],[-214.64,-174.75],[-234.77,-183.25],[-286.4,-184.93]],"o":[[-304.04,-183.3],[-303.51,-181.82],[-301.8,-178.92],[-296.67,-172.54],[-290.41,-164.59],[-283.8,-153.91],[-279.25,-145.63],[-276.41,-140.12],[-274.59,-137.57],[-274.39,-136.89],[-273.05,-134.36],[-270.49,-131],[-266.75,-125.64],[-257.59,-116.08],[-246.05,-109.67],[-227.35,-106.03],[-210.03,-100.71],[-198.1,-87.64],[-193.87,-65.86],[-194.81,-35.72],[-188.58,-16.83],[-178.45,-8.96],[-163.11,-2.67],[-145.21,3.05],[-133.17,9.13],[-128.42,13.12],[-126.42,14.02],[-121.08,10.33],[-118.1,8.44],[-115.48,6.9],[-112.23,4.9],[-106.81,0.89],[-102.39,-1.93],[-98.49,-4.36],[-93.7,-7.53],[-88.47,-11.16],[-86.92,-14.33],[-88.19,-18.48],[-90.47,-31.06],[-89.27,-62.69],[-92.47,-80.14],[-95.54,-84.34],[-97.34,-86.36],[-97.58,-88.05],[-98.64,-89.72],[-102.36,-92.31],[-111.6,-98.39],[-136.25,-105.46],[-159.12,-112.08],[-177.86,-124.55],[-186.43,-136.08],[-190.78,-142.82],[-191.59,-144.92],[-194.78,-148.3],[-195.66,-152.16],[-199.36,-156.22],[-205.86,-166.48],[-214.32,-173.14],[-223.15,-180.65],[-264.6,-185.25],[-302.38,-185.01]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-298.43,-174.69],[-293,-168],[-285.94,-157.47],[-280,-147],[-277.34,-141.89],[-275,-138],[-274.45,-137.13],[-274,-136],[-271.33,-132.07],[-269,-129],[-260.72,-119.11],[-251,-112],[-233.6,-107.21],[-216,-103],[-201.65,-92.37],[-195,-75],[-194.68,-45.49],[-191,-21],[-182.05,-11.41],[-169,-5],[-151.07,1.1],[-135,8],[-129.94,11.89],[-126,14],[-122.9,11.57],[-119,9],[-116.34,7.4],[-114,6],[-108.57,2.19],[-104,-1],[-99.76,-3.55],[-96,-6],[-90.05,-9.95],[-87,-14],[-87.74,-16.98],[-89,-22],[-89.57,-52.35],[-92,-79],[-94.52,-83],[-97,-86],[-97.5,-87.49],[-98,-89],[-101.08,-91.44],[-105,-94],[-127.92,-103.24],[-153,-110],[-173,-120],[-185,-134],[-190,-142],[-191,-144],[-194,-147],[-195,-151],[-198,-154],[-202,-161],[-214,-173],[-215,-175],[-246,-184],[-301,-185]],"c":true}],"h":1},{"t":237,"s":[{"i":[[-298.28,-185.98],[-303.91,-182.76],[-303.23,-181.42],[-299.31,-175.37],[-292.99,-167.76],[-288,-160.6],[-284.25,-154.22],[-279.63,-145.82],[-274.61,-136.57],[-268.95,-128.17],[-262.22,-120.93],[-258.58,-117.56],[-256.58,-115.35],[-244.21,-110.28],[-221.73,-105.73],[-215.44,-103.5],[-214.24,-102.11],[-211.93,-101.35],[-208.7,-100.5],[-204.75,-97.07],[-200.79,-91.5],[-195.43,-67.4],[-196.71,-29.59],[-190.78,-19.79],[-190.03,-19.03],[-187.1,-16.09],[-182.16,-12.27],[-172.57,-7.27],[-160.99,-3.37],[-150.91,0.3],[-143.17,3.92],[-139.05,5.68],[-135.74,6.53],[-131.99,9.73],[-127.53,14.03],[-124.69,12.78],[-119.06,9.04],[-117.19,7.9],[-114.68,6.43],[-113.37,5.42],[-112.33,4.21],[-104.45,-0.58],[-92.96,-7.78],[-87.31,-12.24],[-88.29,-15.87],[-90.79,-41.68],[-90.54,-76.3],[-94.53,-83.88],[-95.73,-85.63],[-106.69,-96.43],[-144.54,-108.16],[-164.49,-114.69],[-167.62,-117.71],[-170.27,-118.52],[-172.21,-120.4],[-175.2,-121.33],[-189.76,-139.9],[-198.51,-155.31],[-205.01,-163.72],[-215.06,-175.31],[-252.68,-184]],"o":[[-304.04,-183.3],[-303.51,-181.82],[-301.32,-177.99],[-295.15,-170.26],[-289.38,-162.74],[-285.44,-156.34],[-281.33,-149.04],[-276.28,-139.59],[-271.09,-130.95],[-264.51,-123.16],[-259.29,-118.38],[-257.22,-116.04],[-251.34,-112.16],[-229.41,-107.07],[-215.82,-103.94],[-214.65,-102.58],[-213.08,-101.59],[-209.74,-100.8],[-206.35,-98.82],[-201.96,-93.41],[-194.82,-80.11],[-196.37,-42.14],[-191.02,-20.03],[-190.29,-19.29],[-188.52,-17.46],[-183.92,-13.5],[-176.32,-8.83],[-164.9,-4.54],[-153.82,-0.91],[-145.58,2.71],[-140.18,5.41],[-136.83,6.24],[-133.47,7.96],[-129.02,12.76],[-126.41,14.01],[-121.01,10.29],[-118.1,8.44],[-115.48,6.9],[-113.7,5.81],[-112.68,4.61],[-108.47,1.82],[-96.7,-5.38],[-87.92,-11.56],[-87.5,-14.4],[-91.27,-29.03],[-90.43,-65.32],[-94.16,-83.32],[-95.31,-85.04],[-99.62,-91.04],[-125.68,-105.63],[-161.1,-114.12],[-167.36,-116.19],[-168.8,-118.6],[-171.96,-119.63],[-173.79,-121.6],[-182.73,-127.64],[-196.58,-151.33],[-202.69,-161.51],[-211.04,-170.63],[-231.84,-184.45],[-286.23,-184]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-297.23,-172.82],[-291,-165],[-286.72,-158.47],[-283,-152],[-277.96,-142.71],[-273,-134],[-266.73,-125.66],[-260,-119],[-257.9,-116.8],[-256,-115],[-236.81,-108.67],[-216,-104],[-215.05,-103.04],[-214,-102],[-210.83,-101.07],[-208,-100],[-203.36,-95.24],[-200,-90],[-195.9,-54.77],[-191,-20],[-190.53,-19.54],[-190,-19],[-185.51,-14.8],[-180,-11],[-168.74,-5.9],[-157,-2],[-148.24,1.51],[-141,5],[-137.94,5.96],[-135,7],[-130.5,11.25],[-126,14],[-122.85,11.54],[-119,9],[-116.34,7.4],[-114,6],[-113.02,5.01],[-112,4],[-100.57,-2.98],[-90,-10],[-87.41,-13.32],[-89,-19],[-90.61,-53.5],[-94,-83],[-94.92,-84.46],[-96,-86],[-112,-99],[-158,-113],[-167,-116],[-168,-118],[-171,-119],[-173,-121],[-176,-122],[-194,-147],[-201,-159],[-207,-166],[-220,-178],[-272,-184]],"c":true}],"h":1},{"t":238,"s":[{"i":[[-297.72,-186.1],[-303.91,-182.76],[-303.23,-181.42],[-299.93,-176.32],[-293.99,-168.82],[-284.95,-155],[-275.18,-137.84],[-268.17,-127.11],[-262.23,-119.65],[-259.03,-117.57],[-257.35,-117.22],[-256.37,-116.41],[-255.35,-115.19],[-247.21,-111.79],[-233.92,-109.17],[-220.25,-105.53],[-209.45,-100.18],[-205.48,-96.67],[-203.59,-94.79],[-196.43,-72.9],[-197.3,-33.66],[-184.23,-13.42],[-162.07,-4.43],[-146.55,0.82],[-136.15,5.53],[-130.36,10.78],[-127.46,14.01],[-124.7,12.77],[-119.06,9.04],[-117.19,7.9],[-114.68,6.43],[-113.37,5.42],[-112.33,4.21],[-104.46,-0.57],[-92.96,-7.78],[-89,-10.56],[-87.11,-11.66],[-87.3,-13.17],[-88.58,-18.41],[-90.78,-32.38],[-89.87,-52.21],[-90.87,-69.68],[-94.52,-81.34],[-100.12,-90.56],[-107.95,-96.92],[-117.74,-101.73],[-126.96,-105.13],[-143.2,-109.14],[-162.6,-114.11],[-170.29,-118.6],[-173.35,-121.5],[-176.2,-122.33],[-186.68,-134.86],[-194.3,-147.26],[-199.78,-155.81],[-204.44,-163.08],[-210.63,-169.93],[-213.71,-172.75],[-218.07,-175.88],[-223.77,-179.51],[-252.25,-184]],"o":[[-304.04,-183.3],[-303.51,-181.82],[-301.69,-178.65],[-296.08,-171.4],[-288.36,-160.83],[-278.36,-143.51],[-270.05,-130.03],[-264.25,-121.92],[-259.61,-117.71],[-257.91,-117.32],[-256.7,-116.81],[-255.7,-115.59],[-251.24,-112.96],[-238.55,-109.9],[-224.53,-106.94],[-212.71,-102.14],[-206.18,-97.27],[-204.18,-95.43],[-196.78,-85.57],[-196.69,-46.94],[-190.2,-17.7],[-170.17,-6.78],[-150.47,-0.45],[-139.38,3.8],[-131.38,9.27],[-128.4,13.14],[-126.42,14],[-121.02,10.29],[-118.1,8.44],[-115.48,6.9],[-113.7,5.81],[-112.68,4.61],[-108.48,1.82],[-96.7,-5.37],[-89.69,-10.23],[-87.7,-11.28],[-87.01,-11.96],[-88.09,-16.39],[-90.59,-26.03],[-90.42,-45.47],[-90.11,-64.76],[-93.08,-77.97],[-98.14,-87.85],[-105.02,-95.09],[-114.76,-100.42],[-123.84,-104.09],[-136.4,-107.84],[-156.3,-112.28],[-169.11,-117.6],[-172.4,-120.55],[-174.79,-122.6],[-182.41,-127.52],[-191.38,-142.14],[-198.16,-151.3],[-203.21,-160.73],[-208.24,-167.75],[-213.27,-171.12],[-216.38,-175.01],[-221.76,-178.02],[-237.9,-185.1],[-284.04,-184]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-298.01,-173.86],[-292,-166],[-281.65,-149.25],[-272,-133],[-266.21,-124.51],[-260,-118],[-258.47,-117.45],[-257,-117],[-256.03,-116],[-255,-115],[-242.88,-110.84],[-229,-108],[-216.48,-103.84],[-207,-98],[-204.83,-96.05],[-203,-94],[-196.56,-59.92],[-193,-24],[-177.2,-10.1],[-155,-2],[-142.97,2.31],[-133,8],[-129.38,11.96],[-126,14],[-122.86,11.53],[-119,9],[-116.34,7.4],[-114,6],[-113.02,5.01],[-112,4],[-100.58,-2.97],[-90,-10],[-88.35,-10.92],[-87,-12],[-87.69,-14.78],[-89,-20],[-90.6,-38.92],[-90,-59],[-91.97,-73.82],[-96,-84],[-102.57,-92.83],[-112,-99],[-120.79,-102.91],[-130,-106],[-149.75,-110.71],[-168,-117],[-171.35,-119.57],[-174,-122],[-177,-123],[-190,-140],[-195,-148],[-202,-159],[-206,-165],[-213,-171],[-214,-173],[-220,-177],[-225,-180],[-271,-184]],"c":true}],"h":1},{"t":239,"s":[{"i":[[-298.13,-186.65],[-303.92,-182.76],[-303.21,-181.43],[-299.93,-176.02],[-293.89,-168.7],[-285.39,-155.2],[-276.21,-137.8],[-268.61,-127.01],[-261.23,-120],[-258.68,-118.48],[-258.21,-117.12],[-242.3,-111.4],[-215.43,-105.06],[-208.97,-100.33],[-207.46,-99.42],[-197.86,-82.89],[-198.51,-49.18],[-195.87,-31.48],[-192.77,-22.81],[-190.36,-19.98],[-188.06,-16.87],[-177.96,-10.26],[-162.08,-4.71],[-149.45,-0.46],[-139.59,3.5],[-132.69,8.3],[-126.78,13.06],[-122.69,11.83],[-118.35,8.2],[-117.03,7.64],[-115.51,7.32],[-113.56,5.73],[-111.66,3.43],[-109.99,2.57],[-108.38,2.22],[-107.2,1.34],[-106.39,0.26],[-99.35,-3.71],[-87.4,-11.19],[-87.43,-13.38],[-88.75,-16.3],[-90.55,-22.23],[-91.91,-31.33],[-91.69,-45.45],[-90.5,-61.98],[-92.31,-74.55],[-95.88,-84.06],[-100.68,-91.39],[-108.67,-98.27],[-121.48,-103.93],[-136.95,-107.68],[-145.49,-109.98],[-150.45,-111.55],[-168.89,-117.02],[-174.15,-121.18],[-176.17,-122.35],[-190.61,-139.25],[-209.72,-169.34],[-218.86,-175.87],[-223.9,-178.71],[-256.39,-184.13]],"o":[[-304.06,-183.29],[-303.49,-181.82],[-301.73,-178.42],[-296.01,-171.16],[-288.53,-161.05],[-279.23,-143.58],[-271,-130.01],[-263.73,-122.01],[-258.82,-118.92],[-258.37,-117.58],[-251.59,-113.37],[-224.23,-107.25],[-209.49,-100.62],[-207.96,-99.73],[-199.61,-92.3],[-197.31,-61.33],[-196.73,-34.82],[-193.89,-25.47],[-191.08,-21.04],[-188.85,-17.89],[-182.92,-12.66],[-167.54,-6.29],[-153.16,-1.71],[-142.66,2.15],[-134.8,6.27],[-128.69,11.7],[-124.27,12.98],[-119.73,9.44],[-117.53,7.73],[-116.02,7.43],[-114.23,6.52],[-112.27,4.18],[-110.55,2.71],[-108.91,2.33],[-107.5,1.71],[-106.64,0.61],[-103.9,-1.37],[-91.1,-8.62],[-87.06,-12.73],[-88.28,-15.17],[-89.84,-19.32],[-91.58,-28.24],[-92.19,-39.71],[-90.84,-56.59],[-91.38,-70.77],[-94.57,-81.2],[-98.6,-88.76],[-105.72,-96.15],[-116.5,-102.34],[-131.7,-106.6],[-143.76,-109.46],[-148.83,-111.03],[-158.52,-113.89],[-172.84,-120.8],[-175.69,-122.66],[-184.88,-129.15],[-202.98,-159.34],[-218.06,-175.04],[-221.56,-178.45],[-241.11,-185.86],[-285.53,-183.93]],"v":[[-304,-184],[-303.7,-182.29],[-303,-181],[-297.97,-173.59],[-292,-166],[-282.31,-149.39],[-273,-133],[-266.17,-124.51],[-259,-119],[-258.52,-118.03],[-258,-117],[-233.26,-109.32],[-210,-101],[-208.46,-100.03],[-207,-99],[-197.59,-72.11],[-197,-37],[-194.88,-28.47],[-192,-22],[-189.61,-18.93],[-187,-16],[-172.75,-8.28],[-157,-3],[-146.06,0.84],[-137,5],[-130.69,10],[-125,13],[-121.21,10.63],[-118,8],[-116.53,7.54],[-115,7],[-112.92,4.96],[-111,3],[-109.45,2.45],[-108,2],[-106.92,0.97],[-106,0],[-95.22,-6.17],[-87,-13],[-87.85,-14.28],[-89,-17],[-91.06,-25.23],[-92,-34],[-91.27,-51.02],[-91,-67],[-93.44,-77.88],[-97,-86],[-103.2,-93.77],[-112,-100],[-126.59,-105.27],[-142,-109],[-147.16,-110.51],[-152,-112],[-172,-120],[-175,-122],[-177,-123],[-196,-148],[-218,-175],[-219,-176],[-227,-180],[-275,-184]],"c":true}],"h":1}]},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.0314,0.3412,0.6275,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[317.62,421.49]},"a":{"a":0,"k":[317.62,421.49]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":240,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[501,501,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-235,-347],[-227.1,-294.27],[-194.81,-225.71],[-175.11,-119.83]],"o":[[-232.37,-329.42],[-211.51,-245.63],[-179.32,-167.49],[-173,-96]],"v":[[-235,-347],[-219,-269],[-188.5,-202],[-173,-96]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2},"lc":1,"lj":1,"ml":4,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"t":0,"s":[{"i":[[-239.16,-379.85],[-242.07,-374.73],[-245.93,-362.01],[-249.58,-348.65],[-251.89,-339.57],[-253.21,-325.83],[-252.02,-294.55],[-248.85,-260.81],[-245.07,-235.38],[-241.47,-226.97],[-232.04,-212.04],[-221.22,-195.71],[-214.06,-185.1],[-211.31,-179.04],[-198.88,-151.23],[-183.9,-118.14],[-173.42,-96.07],[-169.85,-97.33],[-164.48,-105.88],[-159.55,-116.86],[-156.3,-125.23],[-153.77,-131.77],[-150.64,-141.23],[-148.2,-151.27],[-146.95,-161.58],[-147.31,-171],[-148.74,-179.83],[-150.86,-188.53],[-153.24,-197.14],[-156.46,-208.85],[-162.16,-227.7],[-168.52,-247.13],[-173.9,-261.27],[-191.83,-293.61],[-233.44,-371.51],[-236.49,-376.48]],"o":[[-240.9,-378.1],[-244.59,-366.69],[-248.43,-353],[-251.31,-341.94],[-252.96,-334.12],[-252.74,-306.05],[-250.08,-271.93],[-246.35,-242.53],[-243.55,-230.59],[-235.71,-217.7],[-224.8,-201.04],[-215.85,-187.74],[-213.84,-184.73],[-203.82,-162.3],[-188.92,-129.15],[-176.16,-101.6],[-171.56,-95.77],[-166.31,-102.39],[-161.1,-113.12],[-157.16,-122.92],[-154.9,-128.79],[-151.64,-137.99],[-148.92,-147.87],[-147.22,-158.13],[-147.04,-168.02],[-148.16,-176.91],[-150.09,-185.64],[-152.43,-194.27],[-154.95,-203.56],[-160.07,-220.92],[-166.39,-240.81],[-172.28,-257.36],[-177.61,-267.11],[-219.74,-345.82],[-235.66,-375.05],[-238.24,-378.88]],"v":[[-240,-380],[-243.33,-370.71],[-247.18,-357.5],[-250.44,-345.3],[-252,-339],[-252.98,-315.94],[-251.05,-283.24],[-247.6,-251.67],[-244,-232],[-238.59,-222.33],[-228.42,-206.54],[-218.54,-191.72],[-214,-185],[-207.56,-170.67],[-193.9,-140.19],[-180.03,-109.87],[-173,-96],[-168.08,-99.86],[-162.79,-109.5],[-158.35,-119.89],[-156,-126],[-152.71,-134.88],[-149.78,-144.55],[-147.71,-154.7],[-147,-165],[-147.73,-173.95],[-149.42,-182.74],[-151.64,-191.4],[-154,-200],[-158.26,-214.89],[-164.27,-234.25],[-170.4,-252.25],[-175,-263],[-205.79,-319.72],[-235,-374],[-237.37,-377.68]],"c":true}],"h":1},{"t":1,"s":[{"i":[[-236.65,-377.81],[-242.13,-375.23],[-244.23,-367.77],[-248.72,-351.95],[-253.51,-330.84],[-254.22,-312.14],[-252.6,-294.07],[-251.07,-275.67],[-249.86,-257.64],[-244.04,-230.94],[-230.57,-206.2],[-219.45,-191.73],[-212.15,-180.38],[-207.42,-170.33],[-203.99,-161.52],[-202.36,-157.9],[-201.18,-156.47],[-200.33,-153.48],[-199.55,-149.29],[-198.13,-146.19],[-196.46,-143],[-189.45,-128.97],[-174.53,-96.25],[-167.03,-101.28],[-158.94,-118.4],[-153.3,-132.32],[-149.43,-184.05],[-163.93,-241.34],[-177.38,-266.62],[-193.25,-289.71],[-199.45,-307.83],[-208.19,-327.58],[-213.02,-339.18],[-216.86,-344.13],[-218.49,-348.17],[-227.24,-361.1]],"o":[[-241.26,-377.59],[-243.62,-370.32],[-246.72,-358.78],[-252.12,-337.98],[-254.42,-318.11],[-253.32,-300.12],[-251.39,-281.85],[-250.31,-263.56],[-247.25,-240.59],[-235.7,-213.75],[-222.13,-195.29],[-214.47,-184.28],[-208.68,-173.32],[-205.08,-164.43],[-202.77,-158.41],[-201.57,-156.93],[-200.55,-154.84],[-199.83,-150.71],[-198.65,-147.19],[-197.04,-144.1],[-192.63,-134.72],[-183.31,-116.56],[-170.4,-95.58],[-162.03,-110.42],[-155.02,-127.69],[-142.21,-163.65],[-161.24,-226.11],[-172.34,-260.69],[-188.18,-281.55],[-198.75,-303.35],[-204.12,-320.4],[-212.98,-336.92],[-215.04,-342.95],[-218.6,-346.99],[-223.03,-355.48],[-233.81,-371.41]],"v":[[-240,-380],[-242.87,-372.77],[-245,-365],[-250.42,-344.96],[-254,-324],[-253.77,-306.13],[-252,-288],[-250.69,-269.62],[-249,-252],[-239.87,-222.34],[-225,-199],[-216.96,-188],[-210,-176],[-206.25,-167.38],[-203,-159],[-201.96,-157.41],[-201,-156],[-200.08,-152.09],[-199,-148],[-197.59,-145.15],[-196,-142],[-186,-122],[-173,-96],[-165,-105],[-157,-123],[-152,-136],[-157,-211],[-169,-253],[-182,-273],[-197,-299],[-201,-312],[-212,-335],[-214,-341],[-218,-346],[-219,-349],[-231,-367]],"c":true}],"h":1},{"t":2,"s":[{"i":[[-236.99,-377.23],[-242.14,-375.22],[-244.23,-367.8],[-248.7,-352.07],[-253.5,-331.03],[-254.17,-307.86],[-251.73,-281.76],[-248.99,-253.58],[-243.06,-227.17],[-238.23,-217.73],[-235.66,-213.88],[-234.3,-211.99],[-233.37,-210.51],[-226.45,-201.5],[-216.89,-189.04],[-207.71,-171.23],[-199.76,-150.9],[-193.06,-136.61],[-186.9,-123.86],[-180.35,-109.96],[-173.78,-96.13],[-167.58,-99.98],[-160.55,-114.76],[-158.72,-119.4],[-157.54,-123.71],[-155.72,-127.35],[-153.41,-130.86],[-152.17,-135.2],[-151.48,-140.26],[-150.01,-144.66],[-148.26,-148.59],[-151.76,-194.54],[-168.04,-252.87],[-185.4,-276.96],[-202.8,-317.8],[-224.47,-357.71]],"o":[[-241.27,-377.57],[-243.62,-370.34],[-246.7,-358.81],[-252.1,-338.18],[-254.56,-316.23],[-252.75,-290.63],[-250.21,-263.49],[-245.41,-235.41],[-239.15,-219.3],[-236.48,-215.02],[-234.61,-212.49],[-233.67,-211.01],[-229.76,-205.48],[-220.02,-193.28],[-210.58,-178.02],[-202.3,-157.66],[-194.86,-140.43],[-189.08,-128.33],[-182.71,-115.39],[-175.88,-100.32],[-170.55,-95.6],[-162.57,-109.57],[-159.2,-117.8],[-157.89,-122.36],[-156.51,-126.17],[-154.17,-129.69],[-152.43,-133.57],[-151.69,-138.54],[-150.62,-143.37],[-148.83,-147.27],[-143.4,-174.56],[-163.4,-234.56],[-180.34,-271.62],[-198.76,-299.38],[-217.17,-346.19],[-233.66,-372.19]],"v":[[-240,-380],[-242.88,-372.78],[-245,-365],[-250.4,-345.13],[-254,-324],[-253.46,-299.24],[-251,-273],[-247.2,-244.49],[-240,-221],[-237.36,-216.38],[-235,-213],[-233.99,-211.5],[-233,-210],[-223.24,-197.39],[-214,-184],[-205,-164.44],[-197,-145],[-191.07,-132.47],[-184,-118],[-178.12,-105.14],[-173,-96],[-165.08,-104.77],[-160,-116],[-158.3,-120.88],[-157,-125],[-154.94,-128.52],[-153,-132],[-151.93,-136.87],[-151,-142],[-149.42,-145.97],[-148,-150],[-158,-216],[-176,-265],[-189,-283],[-211,-334],[-231,-368]],"c":true}],"h":1},{"t":3,"s":[{"i":[[-238.4,-379.79],[-245.83,-362.69],[-253.34,-332.77],[-254.15,-311.05],[-252.5,-292.94],[-251.15,-274.51],[-249.86,-256.57],[-245.55,-235.09],[-236.64,-215.23],[-230.13,-206.27],[-225.49,-200.94],[-213.81,-183.24],[-202.08,-156.96],[-194.56,-140.44],[-188.54,-127.39],[-181.84,-112.85],[-173.73,-96.12],[-169.17,-97.82],[-165.03,-106.83],[-160.79,-115.56],[-155.87,-125.72],[-153.73,-131.5],[-152.39,-135.77],[-149.56,-145],[-147.24,-156.78],[-148.18,-182.45],[-156.62,-210.26],[-159.39,-219.91],[-159.72,-222.99],[-165.18,-238.58],[-168.59,-251.89],[-184.49,-275.61],[-203.06,-319.2],[-217.82,-346.94],[-225.75,-359.39],[-232.68,-370.31]],"o":[[-242.66,-372.06],[-251.17,-343.05],[-254.4,-317.08],[-253.2,-298.98],[-251.47,-280.73],[-250.34,-262.43],[-247.73,-242.73],[-240.01,-221.34],[-231.64,-208.05],[-227.06,-202.72],[-218.27,-191.51],[-205.72,-165.97],[-196.29,-144.24],[-190.68,-132.02],[-184.73,-119.29],[-176.34,-101.26],[-170.91,-95.66],[-166.23,-103.41],[-162.6,-111.95],[-157.42,-122.45],[-154.29,-129.87],[-152.79,-134.45],[-150.69,-141.11],[-147.84,-152.84],[-146.37,-172.07],[-153.3,-201.54],[-159.28,-218.92],[-159.61,-221.95],[-161.99,-231.09],[-168.33,-247.97],[-174.82,-265.65],[-199.49,-301.19],[-214.05,-341.07],[-223.48,-355.95],[-230.55,-367.09],[-236.3,-376.06]],"v":[[-240,-380],[-248.5,-352.87],[-254,-323],[-253.67,-305.02],[-252,-287],[-250.74,-268.47],[-249,-251],[-242.78,-228.21],[-233,-210],[-228.59,-204.49],[-224,-199],[-209.77,-174.6],[-198,-148],[-192.62,-136.23],[-186,-122],[-179.09,-107.06],[-173,-96],[-167.7,-100.62],[-164,-109],[-159.1,-119],[-155,-128],[-153.26,-132.98],[-152,-137],[-148.7,-148.92],[-147,-161],[-150.74,-192],[-159,-218],[-159.5,-220.93],[-160,-224],[-167,-244],[-170,-255],[-190,-285],[-211,-335],[-221,-352],[-228,-363],[-235,-374]],"c":true}],"h":1},{"t":4,"s":[{"i":[[-236.79,-378.81],[-243.42,-370.75],[-247.69,-356.09],[-251.26,-341.7],[-253.7,-326.95],[-254.15,-307.9],[-252.45,-287.24],[-249.84,-256.82],[-242.47,-225.72],[-235.04,-213.21],[-230.47,-206.89],[-224.03,-198.77],[-217,-189.41],[-208.22,-172.11],[-199.52,-149],[-191.91,-134],[-186.25,-122.84],[-174.3,-96.23],[-167.87,-101.2],[-159.63,-116.13],[-157.09,-125.16],[-154.39,-130.02],[-145.62,-159.18],[-154.4,-202.62],[-166.91,-249.85],[-176.89,-266.54],[-179.75,-269.62],[-181.2,-272.86],[-185.56,-277.94],[-189.54,-285.43],[-200.85,-308.19],[-205.56,-321.93],[-216.32,-342.84],[-221.76,-351.59],[-223.19,-354.68],[-230.37,-365.89]],"o":[[-241.83,-375.45],[-246.36,-361.07],[-250.16,-346.48],[-253.03,-331.94],[-254.42,-315.03],[-253.17,-294.01],[-251.11,-268.71],[-245.52,-235.33],[-236.56,-215.51],[-232,-208.9],[-226.53,-201.81],[-219.26,-192.56],[-210.96,-179.11],[-202.5,-157.05],[-193.53,-137.08],[-188.27,-126.88],[-181.6,-112.85],[-169.45,-95.37],[-162.57,-111.91],[-157.05,-122.24],[-155.73,-128.69],[-149.15,-143.35],[-148.24,-187.33],[-163.59,-233.33],[-174.58,-263.89],[-178.15,-269.33],[-180.84,-271.3],[-183.51,-276.14],[-188.75,-282.51],[-196.56,-297.8],[-205.59,-320.53],[-210.13,-333.03],[-220.16,-351.35],[-222.76,-353.31],[-227.28,-361.38],[-235.36,-373.69]],"v":[[-240,-380],[-244.89,-365.91],[-249,-351],[-252.14,-336.82],[-254,-322],[-253.66,-300.96],[-252,-281],[-247.68,-246.07],[-238,-218],[-233.52,-211.05],[-229,-205],[-221.65,-195.67],[-215,-186],[-205.36,-164.58],[-195,-140],[-190.09,-130.44],[-184,-118],[-173,-96],[-165,-107],[-158,-120],[-156,-128],[-154,-131],[-147,-174],[-159,-218],[-173,-261],[-178,-269],[-180,-270],[-182,-274],[-187,-280],[-191,-288],[-205,-319],[-206,-323],[-220,-351],[-222,-352],[-224,-356],[-233,-370]],"c":true}],"h":1},{"t":5,"s":[{"i":[[-236.84,-378.88],[-246.06,-362.29],[-253.58,-331.28],[-253.94,-306.73],[-252.4,-285.8],[-250.99,-265.24],[-248.3,-246.29],[-245.57,-235.19],[-243.1,-227.34],[-238.98,-219.67],[-234.06,-212.34],[-232.49,-209.68],[-231.12,-209.19],[-230.37,-207.75],[-229.42,-205.56],[-224.01,-198.69],[-216.91,-189.33],[-209.96,-176.1],[-203.93,-160.79],[-199.42,-150.18],[-195.49,-142.96],[-188.26,-127.16],[-173.81,-96.14],[-159.18,-118.74],[-145.19,-156.34],[-154.29,-203.74],[-165.33,-241.11],[-173.14,-260.97],[-179.65,-270.66],[-187.03,-280.86],[-205.57,-325.29],[-216.07,-344.55],[-219.41,-348.03],[-220.27,-351.72],[-223.34,-354.94],[-230.2,-365.63]],"o":[[-242.77,-371.65],[-251.46,-342.11],[-254.24,-313.58],[-253.02,-292.84],[-251.59,-272.1],[-249.35,-252.34],[-246.27,-238.02],[-243.98,-229.85],[-240.71,-222.25],[-235.66,-214.72],[-232.92,-209.83],[-231.58,-209.36],[-230.66,-208.47],[-229.75,-206.3],[-226.56,-201.78],[-219.19,-192.47],[-212.25,-181.2],[-205.8,-165.9],[-200.67,-152.7],[-196.83,-145.31],[-190.87,-133.78],[-180.92,-111.38],[-167.86,-95.09],[-150.37,-140],[-148.29,-188.35],[-162.32,-229.76],[-170.82,-255.91],[-177.53,-268.12],[-184.6,-277.71],[-199.84,-301.35],[-215.85,-343.51],[-217.48,-346.75],[-220.78,-350.28],[-221.54,-353.96],[-227.52,-361.64],[-235.34,-373.65]],"v":[[-240,-380],[-248.76,-352.2],[-254,-320],[-253.48,-299.79],[-252,-279],[-250.17,-258.79],[-247,-241],[-244.78,-232.52],[-242,-225],[-237.32,-217.2],[-233,-210],[-232.04,-209.52],[-231,-209],[-230.06,-207.02],[-229,-205],[-221.6,-195.58],[-215,-186],[-207.88,-171],[-202,-156],[-198.12,-147.75],[-194,-140],[-184,-118],[-173,-96],[-157,-124],[-147,-175],[-159,-219],[-169,-251],[-175,-264],[-182,-274],[-189,-284],[-215,-342],[-217,-346],[-220,-349],[-221,-353],[-224,-356],[-233,-370]],"c":true}],"h":1},{"t":6,"s":[{"i":[[-237.53,-379.24],[-242.11,-374.68],[-245.2,-366.76],[-246.44,-361.4],[-246.65,-357.35],[-247.89,-353.73],[-249.71,-350.19],[-254.03,-326.88],[-251.66,-288.51],[-250.8,-262.51],[-240.66,-221.13],[-228.07,-204.38],[-225.25,-201.36],[-220.28,-194.42],[-206.49,-166.53],[-196.85,-145.67],[-188.46,-127.57],[-174.29,-96.23],[-161.43,-113.73],[-148.21,-145],[-146.69,-171.47],[-154.31,-204.1],[-168.34,-253.13],[-178.39,-268.59],[-184.55,-277.44],[-195.56,-295.9],[-201.08,-309.55],[-203.82,-317.96],[-207.85,-325.24],[-210.65,-334.31],[-218.93,-348.4],[-222.76,-353.59],[-224.2,-356.73],[-228.82,-364.39],[-231.75,-367.62],[-233.33,-370.93]],"o":[[-241.01,-377.29],[-244.21,-369.41],[-246.37,-362.72],[-246.58,-358.71],[-247.29,-354.88],[-249.1,-351.39],[-252.43,-339.03],[-253.96,-301.51],[-250.62,-268.82],[-247.64,-236.81],[-230.15,-206.41],[-226.86,-201.68],[-222.33,-197.15],[-211.28,-180.93],[-199.13,-149.27],[-190.92,-133.87],[-181.62,-112.89],[-167.95,-95.11],[-154.7,-129.08],[-146.62,-163.37],[-148.16,-188.25],[-163.54,-233.45],[-177.12,-267.45],[-182.77,-275.13],[-191.98,-288.22],[-200.12,-306.65],[-203.18,-315.12],[-205.97,-323.5],[-210.14,-330.71],[-214.74,-342.45],[-221.16,-353.35],[-223.7,-355.21],[-226.98,-361.14],[-230.15,-367.33],[-232.69,-369.08],[-235.74,-374.76]],"v":[[-240,-380],[-243.16,-372.04],[-246,-364],[-246.51,-360.05],[-247,-356],[-248.5,-352.56],[-250,-349],[-254,-315],[-251,-276],[-250,-256],[-232,-209],[-227,-202],[-225,-201],[-218,-191],[-202,-156],[-194,-140],[-184,-118],[-173,-96],[-160,-117],[-147,-159],[-147,-175],[-159,-219],[-175,-264],[-180,-271],[-187,-281],[-199,-304],[-202,-312],[-205,-321],[-209,-328],[-212,-337],[-221,-353],[-223,-354],[-225,-358],[-230,-367],[-232,-368],[-234,-372]],"c":true}],"h":1},{"t":7,"s":[{"i":[[-236.98,-379.18],[-242.05,-374.83],[-245.15,-366.96],[-246.42,-361.48],[-246.67,-357.26],[-247.94,-353.55],[-249.7,-350.24],[-252.21,-338.55],[-254,-321.53],[-253.59,-308.75],[-252.18,-296.91],[-251.35,-275.74],[-249.52,-252.04],[-245.18,-234.5],[-239.24,-221.49],[-234.52,-213.99],[-231.18,-208.61],[-227.2,-203.21],[-223.22,-197.77],[-214.57,-186.42],[-211.58,-177.37],[-209.55,-173.33],[-190.32,-133.86],[-174.34,-96.24],[-159.11,-118.71],[-147.94,-148.31],[-148.82,-185.51],[-158.93,-216.22],[-166.27,-243.29],[-177.91,-268.64],[-189.39,-284.45],[-199.19,-304.59],[-203.86,-318.06],[-207.94,-325.54],[-210.74,-333.44],[-226.64,-359.98]],"o":[[-240.98,-377.35],[-244.14,-369.63],[-246.33,-362.84],[-246.59,-358.69],[-247.34,-354.68],[-249.12,-351.33],[-251.21,-344.03],[-253.6,-327.3],[-254,-312.55],[-252.68,-300.93],[-251.59,-284.22],[-250.31,-259.65],[-246.81,-239.51],[-241.39,-225.49],[-235.68,-215.94],[-232.27,-210.33],[-228.59,-205.08],[-224.52,-199.56],[-218.72,-191.23],[-211.41,-179.77],[-210.33,-174.4],[-200.87,-152.29],[-177.84,-105.93],[-168.03,-95.12],[-152.71,-134.77],[-145.06,-178.01],[-155.64,-207.52],[-163.3,-232.65],[-172.46,-260.77],[-186.04,-280.4],[-196.25,-296.41],[-203.13,-314.99],[-205.97,-323.49],[-210.07,-330.5],[-218.04,-348.29],[-235.1,-373.31]],"v":[[-240,-380],[-243.1,-372.23],[-246,-364],[-246.5,-360.08],[-247,-356],[-248.53,-352.44],[-250,-349],[-252.91,-332.93],[-254,-316],[-253.14,-304.84],[-252,-293],[-250.83,-267.69],[-248,-245],[-243.29,-229.99],[-237,-218],[-233.39,-212.16],[-230,-207],[-225.86,-201.39],[-222,-196],[-212,-181],[-211,-176],[-209,-172],[-181,-113],[-173,-96],[-157,-124],[-147,-158],[-153,-199],[-161,-224],[-169,-251],[-183,-276],[-192,-289],[-202,-312],[-205,-321],[-209,-328],[-212,-336],[-233,-370]],"c":true}],"h":1},{"t":8,"s":[{"i":[[-237.65,-378.93],[-243.17,-372.09],[-246.81,-359.41],[-250.18,-346.85],[-252.7,-334.24],[-253.42,-315.44],[-252.3,-294.46],[-251.58,-273.52],[-250.33,-253.24],[-247.62,-241.25],[-245.01,-233.42],[-243.26,-228.86],[-242.44,-225.93],[-241.47,-224.67],[-240.12,-224.22],[-238.38,-220.66],[-236.55,-216.22],[-234.24,-214.38],[-232.79,-211.09],[-228.61,-206.13],[-208.04,-166.31],[-188.33,-129.32],[-175.35,-96.41],[-166.86,-102.72],[-157.9,-121.76],[-143.72,-162.47],[-160.29,-220.71],[-168.3,-246.25],[-172.41,-260.33],[-187.81,-281.72],[-193.76,-291.59],[-195.54,-295.1],[-204.08,-315.96],[-210.28,-332.4],[-226.69,-360.05],[-234.33,-372.94]],"o":[[-241.76,-376.14],[-245.69,-363.73],[-249.08,-350.98],[-251.98,-338.48],[-253.52,-322.71],[-252.81,-301.31],[-251.66,-280.65],[-250.92,-259.81],[-248.37,-244.04],[-245.94,-235.94],[-243.54,-229.89],[-242.71,-226.88],[-241.91,-224.81],[-240.57,-224.38],[-239.1,-222.3],[-237.1,-217.62],[-235.85,-214.67],[-233.27,-212.87],[-230.43,-207.84],[-212.97,-185.42],[-192.86,-136.92],[-181.15,-113.87],[-169.18,-95.32],[-161.05,-115.48],[-150.07,-141.17],[-151.38,-200.98],[-166.97,-242.39],[-171.75,-255.91],[-179.71,-272.6],[-192.16,-291.35],[-194.59,-293.02],[-200.56,-304.82],[-208.46,-328.04],[-217.81,-348.19],[-233.59,-370.94],[-236.89,-377.03]],"v":[[-240,-380],[-244.43,-367.91],[-248,-355],[-251.08,-342.67],[-253,-330],[-253.11,-308.38],[-252,-288],[-251.25,-266.67],[-249,-247],[-246.78,-238.6],[-244,-231],[-242.99,-227.87],[-242,-225],[-241.02,-224.53],[-240,-224],[-237.74,-219.14],[-236,-215],[-234,-214],[-232,-210],[-227,-204],[-196,-143],[-184,-120],[-173,-96],[-164,-109],[-157,-124],[-148,-184],[-165,-236],[-170,-251],[-174,-263],[-192,-291],[-194,-292],[-196,-296],[-207,-324],[-212,-336],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":9,"s":[{"i":[[-237.7,-378.98],[-243.17,-372.08],[-246.82,-359.41],[-250.18,-346.85],[-252.7,-334.24],[-253.38,-315.56],[-252.23,-294.59],[-251.67,-273.54],[-250.35,-253.16],[-245.9,-235.83],[-238.9,-221.52],[-229.94,-208.27],[-220.65,-195.52],[-210.55,-176.07],[-200.73,-151.87],[-194.16,-139.71],[-191.03,-134.1],[-185.97,-124.41],[-175.27,-96.4],[-167.08,-102.23],[-148.56,-142.27],[-148.55,-186.81],[-157.75,-214.57],[-169.59,-255.54],[-180.7,-272.59],[-186.98,-282.94],[-188.3,-284.91],[-191.34,-287.9],[-192.27,-291.71],[-195.37,-294.81],[-197.97,-301.65],[-207.36,-326.05],[-221.57,-353.5],[-227.34,-362.98],[-231.67,-367.93],[-234.2,-372.72]],"o":[[-241.76,-376.13],[-245.7,-363.72],[-249.08,-350.98],[-251.98,-338.48],[-253.52,-322.76],[-252.74,-301.47],[-251.75,-280.7],[-250.98,-259.77],[-247.7,-241.07],[-241.5,-226.05],[-233.11,-212.5],[-223.71,-199.77],[-213.68,-183.64],[-204.07,-160.19],[-195.15,-141.41],[-192.1,-136.06],[-188.15,-128.2],[-181.25,-113.87],[-169.23,-95.33],[-156.81,-124.78],[-145.18,-178.54],[-155.46,-207.28],[-164.97,-235.19],[-178.54,-270.14],[-184.57,-278.33],[-188.78,-284.82],[-189.78,-287.21],[-192.78,-290.3],[-193.66,-294.17],[-197.27,-298.4],[-203.67,-314.68],[-215.84,-344.22],[-226.76,-361.11],[-229.45,-366.23],[-233.68,-371.07],[-236.79,-376.86]],"v":[[-240,-380],[-244.43,-367.9],[-248,-355],[-251.08,-342.67],[-253,-330],[-253.06,-308.51],[-252,-288],[-251.32,-266.65],[-249,-247],[-243.7,-230.94],[-236,-217],[-226.82,-204.02],[-218,-191],[-207.31,-168.13],[-196,-143],[-193.13,-137.88],[-190,-132],[-184,-120],[-173,-96],[-164,-109],[-147,-159],[-153,-200],[-160,-221],[-176,-266],[-183,-276],[-188,-284],[-189,-286],[-192,-289],[-193,-293],[-196,-296],[-199,-304],[-212,-336],[-226,-360],[-228,-364],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":10,"s":[{"i":[[-234.64,-374.11],[-248.24,-357.14],[-253.67,-315.98],[-252.65,-290.64],[-252.2,-276.66],[-250.06,-251.47],[-242.02,-226.41],[-234.97,-215.36],[-230.53,-209.13],[-221.21,-195.63],[-211.59,-178.16],[-206.32,-165.63],[-202.63,-157.35],[-199.5,-150.83],[-197.61,-146.95],[-194.43,-141.35],[-191.36,-133.84],[-188.15,-127.6],[-184.93,-122.1],[-180.1,-110.47],[-173.89,-96.16],[-169.02,-98.23],[-164,-108.66],[-159.21,-118.96],[-144.18,-159.92],[-159.09,-215.23],[-169.99,-252.29],[-185.82,-280.18],[-194.69,-294.98],[-198.4,-303.27],[-202.27,-311.08],[-206.39,-322.07],[-210.06,-329.88],[-212.03,-336.99],[-216.01,-342.15],[-220.58,-352.1]],"o":[[-244.65,-369.15],[-252.75,-330.56],[-252.8,-295.31],[-252.35,-281.31],[-251.55,-261.27],[-245.3,-234.04],[-236.46,-217.54],[-232.01,-211.15],[-224.91,-201.3],[-214.55,-184.06],[-207.51,-168.46],[-203.89,-160.08],[-200.2,-152.35],[-198.21,-148.13],[-195.49,-143.68],[-192.36,-136.43],[-189.18,-129.3],[-186.02,-124.01],[-182.4,-116.4],[-175.84,-100.35],[-171.02,-95.65],[-165.51,-104.73],[-161.44,-114.65],[-151.28,-138.88],[-149.49,-197.74],[-168.16,-244.06],[-178.91,-271.67],[-192.9,-292.24],[-198.11,-300.26],[-200.87,-309.02],[-205.02,-318.32],[-208.87,-328.11],[-212.03,-334.32],[-213.78,-340.61],[-219.12,-347.98],[-227.89,-363.86]],"v":[[-240,-380],[-250.49,-343.85],[-253,-300],[-252.5,-285.98],[-252,-272],[-247.68,-242.76],[-238,-220],[-233.49,-213.26],[-229,-207],[-217.88,-189.84],[-209,-172],[-205.1,-162.86],[-201,-154],[-198.86,-149.48],[-197,-146],[-193.39,-138.89],[-190,-131],[-187.09,-125.8],[-184,-120],[-177.97,-105.41],[-173,-96],[-167.27,-101.48],[-163,-111],[-158,-122],[-147,-180],[-165,-234],[-174,-261],[-191,-289],[-196,-297],[-200,-307],[-203,-313],[-208,-326],[-211,-332],[-213,-339],[-217,-344],[-223,-356]],"c":true}],"h":1},{"t":11,"s":[{"i":[[-237.77,-379.1],[-245.4,-364.93],[-252.34,-338.23],[-253.21,-319.38],[-252.26,-303.5],[-251.9,-287.08],[-252.32,-271.09],[-248.01,-238.84],[-238.85,-222.07],[-233.83,-213.56],[-227.45,-205.97],[-224.8,-200.18],[-221.66,-196.99],[-215.89,-188.01],[-210.06,-172.1],[-204.58,-160.26],[-194.58,-140.33],[-186.62,-126.48],[-184.74,-119.71],[-181.57,-115.33],[-179.73,-108.58],[-178.52,-105.13],[-168.2,-99.37],[-154.26,-130.26],[-148.65,-148.34],[-150.35,-194.17],[-166.5,-240.77],[-173.88,-262.54],[-181.32,-274.28],[-184.75,-278.62],[-186.23,-281.86],[-191.26,-290.23],[-195.63,-297.52],[-203.25,-313.06],[-214.63,-340.69],[-230.58,-366.92]],"o":[[-242.48,-373.06],[-250.33,-347.51],[-253.33,-324.38],[-252.68,-308.94],[-251.74,-292.54],[-252.19,-276.36],[-251.15,-252.26],[-241.99,-225.56],[-235.13,-215.9],[-230.05,-208.29],[-225.09,-202.77],[-223.22,-197.86],[-218.23,-191.87],[-211.39,-178.47],[-206.14,-163.02],[-198.74,-148.21],[-188.94,-128.84],[-184.4,-121.7],[-183.36,-116.53],[-179.9,-111.44],[-178.73,-106.42],[-170.98,-88.81],[-156.65,-125.19],[-149.98,-145.68],[-143.47,-177.68],[-163.4,-228.61],[-171.8,-256.25],[-178.65,-270.32],[-183.15,-278.33],[-185.83,-280.29],[-188.39,-285.06],[-194.59,-293.71],[-200.59,-306.49],[-210.3,-330.84],[-224.84,-358.39],[-236.66,-376.66]],"v":[[-240,-380],[-247.86,-356.22],[-253,-329],[-252.94,-314.16],[-252,-298],[-252.04,-281.72],[-252,-266],[-244,-230],[-237,-219],[-232,-211],[-226,-204],[-224,-199],[-221,-196],[-214,-184],[-207,-165],[-203,-157],[-190,-131],[-185,-123],[-184,-118],[-181,-114],[-179,-107],[-178,-104],[-163,-111],[-151,-142],[-148,-152],[-159,-217],[-170,-251],[-176,-266],[-183,-278],[-185,-279],[-187,-283],[-192,-291],[-197,-300],[-206,-320],[-220,-350],[-235,-374]],"c":true}],"h":1},{"t":12,"s":[{"i":[[-237.62,-378.87],[-245.33,-365.37],[-252.3,-338.36],[-253.2,-317.78],[-252.24,-301.46],[-251.94,-284.73],[-252.37,-268.13],[-249.31,-245.74],[-240.4,-224.1],[-231.84,-211.47],[-224.26,-200.55],[-216,-186.18],[-208.73,-168.92],[-198.29,-147.58],[-184.86,-121.85],[-177.84,-105.43],[-173.63,-96.11],[-169.21,-97.64],[-164.55,-107.5],[-160.58,-116.64],[-157.82,-124.28],[-156.49,-127.56],[-155.09,-128.74],[-154.06,-131.68],[-152.48,-136.5],[-150.91,-141.41],[-149.38,-146.47],[-145.71,-172.5],[-153.63,-203.77],[-168.94,-251.02],[-183.69,-277.7],[-189.48,-287.46],[-195.87,-296.87],[-202.91,-311.69],[-213.61,-339.28],[-230.34,-366.54]],"o":[[-242.42,-373.19],[-250.27,-347.96],[-253.33,-323.05],[-252.66,-306.99],[-251.75,-290.41],[-252.25,-273.59],[-251.36,-254.19],[-243.83,-230.69],[-234.46,-215.19],[-226.74,-204.15],[-218.63,-191.72],[-211.05,-174.78],[-202.61,-155.65],[-189.42,-130.68],[-179.53,-109.62],[-174.89,-98.67],[-170.94,-95.64],[-166.01,-103.57],[-161.67,-114],[-158.66,-121.78],[-156.94,-127.19],[-155.57,-128.34],[-154.57,-130.18],[-153.01,-134.84],[-151.47,-139.68],[-149.87,-144.8],[-145.65,-161.37],[-149.7,-193.7],[-164.47,-231.64],[-179.5,-271.92],[-188.11,-284.78],[-193.53,-291.68],[-200.6,-306.07],[-209.53,-328.48],[-223.9,-357.83],[-236.95,-377.11]],"v":[[-240,-380],[-247.8,-356.67],[-253,-328],[-252.93,-312.38],[-252,-296],[-252.1,-279.16],[-252,-263],[-246.57,-238.22],[-237,-219],[-229.29,-207.81],[-222,-197],[-213.52,-180.48],[-206,-163],[-193.86,-139.13],[-181,-113],[-176.37,-102.05],[-173,-96],[-167.61,-100.6],[-163,-111],[-159.62,-119.21],[-157,-127],[-156.03,-127.95],[-155,-129],[-153.53,-133.26],[-152,-138],[-150.39,-143.11],[-149,-148],[-147.71,-183.1],[-158,-215],[-176,-265],[-187,-283],[-190,-288],[-198,-301],[-205,-317],[-219,-349],[-235,-374]],"c":true}],"h":1},{"t":13,"s":[{"i":[[-237.41,-378.93],[-245.77,-364.32],[-252.42,-336.39],[-253.13,-315.76],[-252.21,-299.56],[-252.02,-283.01],[-252.45,-266.45],[-250.36,-250.27],[-245.6,-235.61],[-242.32,-228.02],[-239.96,-222.62],[-237.87,-219.74],[-235.48,-217.73],[-234.61,-216.29],[-234.16,-215.23],[-232.83,-213.14],[-231.47,-210.76],[-230.43,-209.36],[-229.22,-208.31],[-223.66,-200.18],[-216.82,-188.12],[-212.87,-178.88],[-210.2,-174.51],[-208.79,-169.84],[-198.87,-148.68],[-180.34,-112.44],[-176.48,-101.95],[-166.96,-101.82],[-154.75,-129.81],[-145.88,-161.33],[-156.22,-209.1],[-168.67,-247.14],[-191.64,-289.17],[-213.44,-342.89],[-225.33,-358.94],[-231.75,-370.66]],"o":[[-242.8,-372.62],[-250.58,-346.2],[-253.28,-320.98],[-252.6,-305.05],[-251.79,-288.53],[-252.35,-271.97],[-251.56,-255.71],[-247.38,-240.22],[-243.09,-229.96],[-240.76,-224.35],[-238.63,-220.37],[-236.3,-218.42],[-234.79,-216.68],[-234.3,-215.57],[-233.34,-214.01],[-231.89,-211.52],[-230.82,-209.7],[-229.63,-208.67],[-226.25,-204.12],[-218.95,-192.18],[-213.63,-180.89],[-211.89,-175.63],[-209.22,-172.01],[-203.15,-156.8],[-189.45,-129.94],[-176.5,-102.74],[-170.24,-89.6],[-158.87,-120.57],[-149.03,-146.85],[-146.23,-189.17],[-166.55,-237.89],[-178.23,-272.6],[-207.68,-321.5],[-224.76,-358.02],[-228.39,-363.75],[-236.3,-375.4]],"v":[[-240,-380],[-248.17,-355.26],[-253,-326],[-252.86,-310.41],[-252,-294],[-252.19,-277.49],[-252,-261],[-248.87,-245.24],[-244,-232],[-241.54,-226.18],[-239,-221],[-237.08,-219.08],[-235,-217],[-234.46,-215.93],[-234,-215],[-232.36,-212.33],[-231,-210],[-230.03,-209.01],[-229,-208],[-221.3,-196.18],[-215,-184],[-212,-176],[-210,-174],[-208,-168],[-193,-137],[-177,-104],[-176,-101],[-163,-111],[-152,-138],[-146,-171],[-163,-228],[-172,-256],[-199,-304],[-224,-357],[-226,-360],[-234,-373]],"c":true}],"h":1},{"t":14,"s":[{"i":[[-239.47,-380.17],[-245.95,-363.84],[-252.46,-334.91],[-253.07,-314.12],[-252.17,-298.38],[-252.06,-281.95],[-252.45,-265.19],[-249.24,-244.43],[-239.38,-223.51],[-230.93,-211.04],[-224.89,-202.07],[-217.28,-188.72],[-210.19,-172.9],[-203.85,-159.22],[-197.05,-146.61],[-188.68,-130.09],[-179.03,-106.99],[-170.89,-95.53],[-165,-106.36],[-159.64,-119.14],[-155.28,-130.69],[-152.12,-138.89],[-149.6,-146.46],[-146.04,-174.1],[-153.91,-206.13],[-161.63,-225.04],[-166.65,-238.86],[-172.94,-257.38],[-181.71,-275.37],[-190.97,-289.54],[-198.02,-301],[-203.92,-313.8],[-209.14,-327.58],[-219.02,-349.26],[-233.65,-372.48],[-239.15,-379.53]],"o":[[-242.97,-372.39],[-250.69,-345.1],[-253.24,-319.18],[-252.54,-303.72],[-251.83,-287.6],[-252.37,-270.74],[-251.3,-251.93],[-243.28,-230.22],[-232.98,-214.01],[-226.88,-205.07],[-219.93,-194.02],[-212.4,-178.16],[-206.07,-163.67],[-199.34,-150.7],[-191.92,-137.59],[-182.24,-114.79],[-173.14,-95.35],[-166.82,-101.04],[-161.25,-115.04],[-156.65,-126.96],[-153.07,-136.4],[-150.39,-143.92],[-145.84,-162.29],[-150.08,-196.02],[-159.81,-220.36],[-165.05,-234.29],[-170.59,-250.94],[-178.5,-269.6],[-188.46,-285.8],[-195.75,-297.15],[-202.1,-309.26],[-207.44,-322.96],[-214.7,-340.77],[-228.5,-365.11],[-239.16,-379.2],[-239.3,-380.02]],"v":[[-240,-380],[-248.32,-354.47],[-253,-324],[-252.81,-308.92],[-252,-293],[-252.21,-276.35],[-252,-260],[-246.26,-237.33],[-235,-217],[-228.9,-208.05],[-223,-199],[-214.84,-183.44],[-208,-168],[-201.59,-154.96],[-195,-143],[-185.46,-122.44],[-176,-101],[-168.86,-98.29],[-163,-111],[-158.15,-123.05],[-154,-134],[-151.26,-141.4],[-149,-149],[-148.06,-185.06],[-158,-216],[-163.34,-229.66],[-168,-243],[-175.72,-263.49],[-186,-282],[-193.36,-293.35],[-200,-305],[-205.68,-318.38],[-211,-332],[-223.76,-357.19],[-239,-379],[-239.23,-379.78]],"c":true}],"h":1},{"t":15,"s":[{"i":[[-238.95,-380.35],[-244.69,-367.71],[-249.99,-347.44],[-252.28,-326.03],[-252.18,-304.03],[-252.19,-290.41],[-253,-280.75],[-252.29,-262.37],[-248.08,-242.23],[-244.41,-232.75],[-242.01,-226.73],[-239.79,-223.59],[-237.45,-221.66],[-236.57,-220],[-236.24,-218.38],[-228.69,-207.29],[-217.79,-191.18],[-211.82,-176.97],[-207.78,-165.49],[-204.12,-158.69],[-200.93,-153.7],[-193.26,-139.26],[-183.65,-119.14],[-178.23,-106.2],[-173.71,-96.13],[-169.18,-97.71],[-164.45,-107.64],[-159.74,-118.98],[-156.96,-127.23],[-150.73,-142.09],[-156.03,-207.42],[-171.35,-254.34],[-183.13,-278.53],[-202.15,-308.88],[-210.15,-329.72],[-228.86,-366.63]],"o":[[-242.45,-373.99],[-248.47,-354.43],[-251.94,-333.01],[-252.4,-311.54],[-251.94,-293.53],[-252.72,-284.02],[-253,-270],[-249.83,-248.48],[-245.16,-234.88],[-242.84,-228.67],[-240.56,-224.26],[-238.23,-222.29],[-236.7,-220.56],[-236.34,-218.91],[-232.55,-212.45],[-221.31,-196.66],[-213.18,-180.97],[-209.12,-169.23],[-205.16,-160.34],[-202.01,-155.37],[-196.69,-145.94],[-186.74,-125.86],[-179.87,-110.38],[-175.15,-99.07],[-170.96,-95.64],[-165.93,-103.71],[-161.01,-115.62],[-157.71,-124.79],[-154.1,-135.49],[-139.82,-185.6],[-169.2,-245.18],[-178.32,-270.88],[-195.39,-297.33],[-208.72,-325.31],[-219.31,-350.87],[-239.32,-379.39]],"v":[[-240,-380],[-246.58,-361.07],[-251,-340],[-252.34,-318.79],[-252,-296],[-252.46,-287.21],[-253,-278],[-251.06,-255.43],[-246,-237],[-243.63,-230.71],[-241,-225],[-239.01,-222.94],[-237,-221],[-236.45,-219.46],[-236,-218],[-225,-201.97],[-215,-185],[-210.47,-173.1],[-206,-162],[-203.06,-157.03],[-200,-152],[-190,-132.56],[-181,-113],[-176.69,-102.63],[-173,-96],[-167.56,-100.71],[-163,-111],[-158.73,-121.88],[-156,-130],[-149,-149],[-166,-236],[-175,-263],[-188,-286],[-207,-321],[-212,-334],[-239,-379]],"c":true}],"h":1},{"t":16,"s":[{"i":[[-238.95,-380.35],[-247.27,-360.19],[-253.23,-325.15],[-252.69,-306.67],[-251.98,-298.67],[-252.43,-283.42],[-252.79,-264.92],[-251.05,-253.91],[-248.79,-246.49],[-246.5,-238.79],[-244.14,-231.26],[-241.48,-226.56],[-238.7,-223.09],[-232.79,-214.11],[-225.32,-202.92],[-215.74,-184.5],[-204.24,-159.43],[-191.89,-137.15],[-186.41,-126.26],[-184.63,-119.54],[-181.54,-115.31],[-179.4,-107.01],[-172.87,-95.98],[-161.44,-114.04],[-157.6,-125.51],[-145.6,-159.66],[-150.84,-197.88],[-163.7,-230.26],[-173.33,-260.28],[-184.13,-279.53],[-188.85,-288.18],[-193.08,-292.58],[-195.99,-298.18],[-202.78,-311.34],[-210.28,-329.72],[-229.37,-367.25]],"o":[[-243.91,-370.61],[-251.94,-337.46],[-252.95,-309.33],[-252.21,-301.33],[-252.04,-289.72],[-252.81,-271.02],[-251.65,-256.41],[-249.61,-248.95],[-247.18,-241.41],[-244.98,-233.71],[-242.38,-227.77],[-239.64,-224.23],[-235.37,-217.9],[-227.76,-206.62],[-218.89,-192.07],[-207.99,-166.11],[-195.22,-142.9],[-188.07,-129.02],[-184.34,-121.47],[-183.41,-116.55],[-179.74,-110.98],[-176.12,-99.98],[-167.86,-95.17],[-158.51,-122.12],[-151.72,-142.03],[-146.32,-185.5],[-158.8,-218.34],[-170.8,-251.29],[-179.77,-273.84],[-188.29,-286.01],[-190.93,-291.48],[-195.23,-295.9],[-200.18,-305.73],[-207.54,-323.49],[-220.11,-352.43],[-239.32,-379.39]],"v":[[-240,-380],[-249.6,-348.83],[-253,-312],[-252.45,-304],[-252,-296],[-252.62,-277.22],[-252,-259],[-250.33,-251.43],[-248,-244],[-245.74,-236.25],[-243,-229],[-240.56,-225.39],[-238,-222],[-230.27,-210.36],[-223,-199],[-213,-178],[-198,-148],[-189,-131],[-185,-123],[-184,-118],[-181,-114],[-178,-104],[-173,-96],[-160,-118],[-156,-130],[-146,-174],[-154,-206],[-168,-243],[-177,-268],[-187,-284],[-190,-290],[-194,-294],[-197,-300],[-205,-317],[-213,-336],[-239,-379]],"c":true}],"h":1},{"t":17,"s":[{"i":[[-232.92,-372.32],[-244.92,-367.03],[-251.34,-343.22],[-252.32,-322.68],[-251.86,-304.25],[-252.73,-282.94],[-253.13,-261.23],[-251.48,-253.52],[-250.19,-250.76],[-249.66,-248.02],[-249.29,-244.91],[-247.56,-240.54],[-244.79,-235.71],[-243.89,-233.05],[-244.17,-231.42],[-243.51,-230.46],[-242.19,-229.36],[-235.9,-218.63],[-225.67,-203.61],[-219.16,-191.83],[-213.78,-180.02],[-199.92,-153.03],[-182.39,-115.56],[-174.19,-96.19],[-162.26,-113.02],[-145.87,-155.76],[-151,-199.32],[-158.25,-216.98],[-166.13,-237.31],[-178.72,-270.95],[-189.01,-287.8],[-191.76,-290.61],[-192.55,-293.22],[-195.1,-297.45],[-200.82,-308.23],[-213.6,-337.71]],"o":[[-242.25,-373.92],[-249.47,-351.68],[-252.39,-328.55],[-252.05,-310.53],[-252.17,-290.57],[-253.22,-268.27],[-251.89,-254.39],[-250.64,-251.71],[-249.77,-249.07],[-249.43,-245.94],[-248.41,-242.18],[-245.75,-237.3],[-243.81,-233.59],[-244.07,-231.97],[-243.91,-230.78],[-242.64,-229.75],[-239.32,-223.83],[-229.08,-208.52],[-221.02,-195.57],[-215.54,-184.06],[-206.54,-163.69],[-187.22,-127.33],[-174.91,-99.26],[-167.39,-95.09],[-154.78,-130.76],[-146.12,-187.9],[-156.6,-212.86],[-163.53,-229.08],[-173.37,-259.21],[-186.64,-283.63],[-190.15,-290.33],[-192.58,-291.93],[-194.18,-296.04],[-198.48,-303.28],[-208.47,-325],[-224.91,-359.26]],"v":[[-240,-380],[-247.19,-359.35],[-252,-334],[-252.19,-316.6],[-252,-298],[-252.97,-275.6],[-252,-255],[-251.06,-252.62],[-250,-250],[-249.54,-246.98],[-249,-244],[-246.65,-238.92],[-244,-234],[-243.98,-232.51],[-244,-231],[-243.07,-230.11],[-242,-229],[-232.49,-213.58],[-223,-199],[-217.35,-187.95],[-212,-176],[-192,-137],[-178,-106],[-173,-96],[-161,-116],[-146,-173],[-155,-209],[-160,-221],[-169,-246],[-185,-281],[-190,-290],[-192,-291],[-193,-294],[-196,-299],[-203,-313],[-219,-348]],"c":true}],"h":1},{"t":18,"s":[{"i":[[-238.95,-380.35],[-245.21,-366.31],[-251.42,-341.7],[-252.23,-321.72],[-251.72,-304.03],[-252.73,-286.65],[-253.44,-269.67],[-250.38,-248.18],[-240.49,-225.73],[-233.03,-214.85],[-228.92,-209.48],[-227.61,-207.04],[-227.32,-205.53],[-223.84,-200.26],[-219.07,-193.28],[-217.31,-189.16],[-216.41,-186.01],[-212.7,-177.27],[-207.56,-166.89],[-201.69,-155.71],[-195.62,-143.21],[-190.09,-132.35],[-184.96,-121.72],[-174.57,-96.25],[-162.28,-112.95],[-145.48,-156.54],[-150.85,-199.02],[-157.22,-215.01],[-168.94,-243.89],[-181.96,-276.99],[-188.4,-287.68],[-190.76,-289.61],[-191.49,-292.19],[-195.5,-298.42],[-207.83,-324.44],[-229.33,-367.2]],"o":[[-242.5,-373.71],[-249.67,-350.3],[-252.37,-327.45],[-251.91,-310],[-252.26,-292.31],[-253.32,-275.33],[-252.39,-256.07],[-244.43,-233.01],[-234.57,-216.86],[-230.2,-211.16],[-227.7,-207.52],[-227.42,-206.04],[-225.56,-202.62],[-220.6,-195.59],[-217.6,-190.15],[-216.71,-187.09],[-214.42,-181.08],[-209.27,-170.18],[-203.63,-159.61],[-197.68,-147.51],[-191.61,-135.24],[-186.76,-125.59],[-180.9,-111.95],[-167.39,-95.09],[-154.49,-131.44],[-146.32,-186.4],[-155.61,-211.07],[-164.26,-230.78],[-176.73,-267.12],[-187.98,-286.56],[-189.15,-289.33],[-191.6,-290.96],[-193.69,-295.71],[-203.53,-312.21],[-220.28,-352.26],[-239.32,-379.39]],"v":[[-240,-380],[-247.44,-358.31],[-252,-333],[-252.07,-315.86],[-252,-298],[-253.03,-280.99],[-253,-264],[-247.41,-240.6],[-236,-219],[-231.62,-213],[-228,-208],[-227.52,-206.54],[-227,-205],[-222.22,-197.92],[-218,-191],[-217.01,-188.12],[-216,-185],[-210.99,-173.73],[-206,-164],[-199.69,-151.61],[-193,-138],[-188.43,-128.97],[-183,-117],[-173,-96],[-161,-116],[-146,-175],[-154,-207],[-159,-219],[-173,-256],[-187,-285],[-189,-289],[-191,-290],[-192,-293],[-197,-301],[-213,-336],[-239,-379]],"c":true}],"h":1},{"t":19,"s":[{"i":[[-235.73,-376.04],[-244.99,-367.04],[-251.32,-342.1],[-252.47,-321.03],[-252.73,-303.76],[-253.52,-273.6],[-249.34,-243.5],[-243.74,-231.82],[-239.91,-226.48],[-238.19,-223.23],[-237.43,-220.67],[-232.6,-215.38],[-229.7,-210.09],[-224.44,-200.81],[-220.23,-195.49],[-220.39,-192.81],[-217.62,-189.37],[-216.63,-184.54],[-213.72,-180.72],[-211.75,-173.63],[-210.52,-170.08],[-207.85,-167.4],[-205.79,-162.39],[-189.73,-133.7],[-174.43,-96.23],[-162.23,-113.08],[-153.51,-135.57],[-148.57,-151.75],[-147.26,-159.26],[-154.87,-208.22],[-172.96,-258.43],[-193.83,-294.67],[-209.71,-328.63],[-219.88,-350.3],[-223.76,-355.59],[-225.87,-360.23]],"o":[[-242.33,-374],[-249.49,-351.09],[-252.36,-326.65],[-252.66,-309.59],[-253.6,-285.35],[-251.39,-252.68],[-245.04,-233.83],[-241.18,-228.14],[-238.47,-224.15],[-237.67,-221.49],[-235.44,-217.59],[-230.19,-211.8],[-226.07,-204.43],[-221.79,-195.59],[-219.61,-194.18],[-219.31,-190.58],[-216.31,-186.48],[-215.4,-181.52],[-211.94,-176.47],[-210.75,-171.45],[-209.47,-167.9],[-206.18,-164.65],[-195.78,-144.88],[-179.18,-108.19],[-167.38,-95.09],[-156.85,-125.85],[-150.08,-148.47],[-147.64,-157.02],[-142.69,-189.77],[-169.88,-244.03],[-184.86,-283.19],[-205.56,-316.21],[-216.55,-343.57],[-222.16,-355.35],[-225.13,-357.92],[-230.92,-368.17]],"v":[[-240,-380],[-247.24,-359.07],[-252,-332],[-252.56,-315.31],[-253,-298],[-252.45,-263.14],[-246,-236],[-242.46,-229.98],[-239,-225],[-237.93,-222.36],[-237,-220],[-231,-213],[-229,-209],[-222,-196],[-220,-195],[-220,-192],[-217,-188],[-216,-183],[-213,-179],[-211,-172],[-210,-169],[-207,-166],[-205,-161],[-182,-115],[-173,-96],[-161,-116],[-151,-145],[-148,-155],[-147,-161],[-164,-230],[-179,-271],[-200,-306],[-214,-338],[-222,-355],[-224,-356],[-227,-362]],"c":true}],"h":1},{"t":20,"s":[{"i":[[-235.76,-376.1],[-245.12,-366.56],[-251.35,-341.69],[-252.48,-320.92],[-252.73,-303.18],[-253.54,-284.8],[-253.56,-266.39],[-249.88,-246.12],[-239.29,-224.58],[-230.89,-212.06],[-224.71,-203.16],[-219.73,-193.03],[-215.63,-181.84],[-213.11,-176.64],[-211.37,-174.83],[-210.3,-171.97],[-209.47,-168.91],[-207.59,-165.4],[-205.57,-161.98],[-202.7,-157.09],[-199.22,-151.17],[-192.66,-139.11],[-185.86,-123.95],[-179.91,-109.31],[-173.88,-96.14],[-162.28,-112.95],[-145.74,-157.26],[-156.43,-213.45],[-170.9,-248.99],[-180.77,-274.49],[-195.73,-298.31],[-207.41,-321.96],[-212.63,-334.96],[-219.88,-350.3],[-223.76,-355.59],[-225.78,-360.08]],"o":[[-242.44,-373.71],[-249.57,-350.54],[-252.36,-326.58],[-252.66,-309.22],[-253.26,-291.11],[-253.68,-272.44],[-252.23,-253.58],[-243.41,-231.62],[-233.03,-214.98],[-226.73,-206.15],[-221.17,-196.61],[-216.96,-185.65],[-213.67,-177.23],[-211.96,-175.44],[-210.56,-173.02],[-209.75,-169.92],[-208.3,-166.66],[-206.22,-163.06],[-203.84,-159],[-200.39,-153.17],[-194.98,-143.63],[-188.1,-129.27],[-181.97,-114.49],[-175.87,-100.14],[-167.39,-95.09],[-154.61,-131.16],[-146.3,-195.23],[-167.91,-240.06],[-177,-266.74],[-190.74,-290.72],[-203.74,-312.73],[-211.7,-331.98],[-216.51,-343.58],[-222.16,-355.35],[-225.14,-357.93],[-230.8,-367.97]],"v":[[-240,-380],[-247.35,-358.55],[-252,-332],[-252.57,-315.07],[-253,-297],[-253.61,-278.62],[-253,-261],[-246.64,-238.87],[-235,-218],[-228.81,-209.1],[-223,-200],[-218.35,-189.34],[-214,-178],[-212.53,-176.04],[-211,-174],[-210.02,-170.95],[-209,-168],[-206.9,-164.23],[-205,-161],[-201.55,-155.13],[-198,-149],[-190.38,-134.19],[-183,-117],[-177.89,-104.72],[-173,-96],[-161,-116],[-146,-175],[-164,-231],[-174,-258],[-186,-283],[-200,-306],[-210,-328],[-214,-338],[-222,-355],[-224,-356],[-227,-362]],"c":true}],"h":1},{"t":21,"s":[{"i":[[-238.34,-378.97],[-246,-364.5],[-251.64,-335.58],[-252.32,-314.07],[-252.83,-298.46],[-253.35,-270.81],[-249.45,-244.58],[-242.41,-230.31],[-235.94,-220.99],[-233.22,-216.32],[-232.44,-213.67],[-230.7,-211.57],[-228.54,-209.88],[-227.29,-207.45],[-226.42,-204.74],[-220.98,-194.72],[-214.44,-179.77],[-212.5,-174.44],[-211.11,-173.24],[-208.31,-167.24],[-204.5,-160.54],[-195.77,-145.25],[-186.43,-125.34],[-179.91,-109.38],[-173.83,-96.13],[-167.55,-99.71],[-161.59,-114.3],[-154.31,-134.45],[-145.8,-166.61],[-158.66,-216.32],[-172.88,-254.61],[-184.24,-281.34],[-192.34,-294.29],[-206.86,-320.03],[-223.39,-356.85],[-233.58,-372.93]],"o":[[-243.18,-372.71],[-250.23,-345.93],[-252.15,-319.09],[-252.66,-303.75],[-253.38,-281.02],[-251.39,-252.59],[-244.44,-233.57],[-238.16,-224.02],[-233.5,-217.24],[-232.69,-214.54],[-231.43,-212.13],[-229.26,-210.44],[-227.58,-208.33],[-226.71,-205.65],[-223.51,-199.59],[-216.45,-184.81],[-212.94,-174.82],[-211.58,-173.65],[-209.56,-169.72],[-205.78,-162.65],[-199.05,-151.33],[-189.46,-132.25],[-182,-114.56],[-175.82,-100.16],[-170.26,-95.55],[-163.22,-109.08],[-158.15,-124.14],[-148.13,-155.68],[-146.51,-200.69],[-170.46,-245.57],[-179.69,-272.92],[-190.7,-291.74],[-200.8,-308.08],[-217.55,-344.95],[-231.8,-369.77],[-236.39,-377.04]],"v":[[-240,-380],[-248.11,-355.21],[-252,-324],[-252.49,-308.91],[-253,-293],[-252.37,-261.7],[-246,-237],[-240.28,-227.17],[-234,-218],[-232.96,-215.43],[-232,-213],[-229.98,-211.01],[-228,-209],[-227,-206.55],[-226,-204],[-218.71,-189.77],[-213,-175],[-212.04,-174.05],[-211,-173],[-207.05,-164.94],[-203,-158],[-192.61,-138.75],[-183,-117],[-177.87,-104.77],[-173,-96],[-165.39,-104.39],[-161,-116],[-151.22,-145.06],[-146,-176],[-167,-237],[-176,-263],[-189,-289],[-194,-297],[-212,-332],[-230,-367],[-235,-375]],"c":true}],"h":1},{"t":22,"s":[{"i":[[-234.54,-374.44],[-245.42,-365.76],[-251.37,-339.9],[-252.42,-320.9],[-252.78,-306.68],[-253.49,-292.46],[-254.03,-278.43],[-252.54,-256.23],[-243.71,-232.69],[-236.18,-220.7],[-231.96,-214.65],[-229.84,-211.03],[-228.44,-208.75],[-226.84,-206.03],[-225.44,-203.75],[-219.83,-192.7],[-213.33,-176.67],[-209.18,-168.69],[-206.04,-163.74],[-196.56,-146.72],[-184.34,-120.64],[-174.6,-96.26],[-162.23,-112.63],[-155.64,-129.84],[-150.21,-146.8],[-147.77,-197.28],[-167.89,-237.64],[-176.09,-265.69],[-184.59,-281.87],[-187.76,-285.6],[-190.94,-292.89],[-194.08,-297.49],[-205.1,-316.07],[-216.32,-344.47],[-221.98,-353.98],[-222.3,-354.82]],"o":[[-242.73,-373.31],[-249.74,-349.06],[-252.28,-325.56],[-252.67,-311.46],[-253.22,-297.25],[-253.89,-283.05],[-253.94,-264.64],[-247.43,-240.26],[-237.7,-222.88],[-233.31,-216.59],[-230.37,-211.91],[-228.87,-209.46],[-227.37,-206.91],[-225.87,-204.46],[-222.17,-198.11],[-215.41,-181.98],[-210.16,-170.32],[-207.12,-165.4],[-200.89,-155.15],[-188.28,-129.47],[-178.68,-107.69],[-167.48,-95.1],[-158.28,-123.49],[-152.56,-141.41],[-143.36,-176.2],[-161.17,-226.13],[-174.92,-257.08],[-181.73,-277.69],[-186.15,-285.34],[-189.48,-288.42],[-193.55,-295.61],[-200.31,-307.74],[-213.08,-334.35],[-220.93,-352.88],[-222.82,-354.85],[-227.69,-363.9]],"v":[[-240,-380],[-247.58,-357.41],[-252,-330],[-252.54,-316.18],[-253,-302],[-253.69,-287.76],[-254,-274],[-249.99,-248.25],[-239,-225],[-234.74,-218.65],[-231,-213],[-229.35,-210.25],[-228,-208],[-226.35,-205.25],[-225,-203],[-217.62,-187.34],[-211,-172],[-208.15,-167.04],[-205,-162],[-192.42,-138.09],[-181,-113],[-173,-96],[-161,-116],[-154,-136],[-149,-152],[-156,-215],[-172,-249],[-180,-274],[-186,-285],[-188,-286],[-192,-294],[-195,-299],[-209,-325],[-221,-353],[-222,-354],[-223,-356]],"c":true}],"h":1},{"t":23,"s":[{"i":[[-235.14,-375.32],[-245.57,-365.45],[-251.46,-338.44],[-252.36,-318.52],[-252.75,-303.74],[-253.66,-288.98],[-254.28,-274.49],[-252.02,-255.77],[-245.41,-237.2],[-242.24,-231.29],[-241.43,-228.73],[-239.07,-225.23],[-235.87,-221.35],[-234.22,-218.33],[-233.51,-215.83],[-229.89,-212.49],[-228.01,-207.79],[-224.71,-203.39],[-221.55,-194.53],[-216.39,-185.18],[-215.26,-179.87],[-213.22,-177.49],[-212,-172.95],[-197.19,-150.64],[-183.27,-117.13],[-174.73,-95.62],[-162.83,-110.98],[-145.88,-157.96],[-164.27,-227.35],[-176.1,-265.58],[-182.74,-277.71],[-187.04,-287],[-192.98,-295.77],[-212.44,-334.22],[-221.77,-351.57],[-223.79,-356.9]],"o":[[-242.84,-373.23],[-249.88,-348.05],[-252.24,-323.4],[-252.61,-308.68],[-253.27,-293.98],[-254.16,-279.23],[-253.56,-262.92],[-247.94,-242.91],[-242.52,-232.17],[-241.7,-229.56],[-240.14,-226.55],[-236.94,-222.63],[-234.46,-219.16],[-233.74,-216.67],[-232.12,-213.55],[-228.16,-209.6],[-226.28,-204.72],[-222.18,-198.44],[-218.61,-187.83],[-214.63,-181.17],[-214.89,-178.64],[-212.22,-175.22],[-205.76,-160.76],[-187.89,-130.4],[-180.06,-109.24],[-168.2,-96.29],[-154.61,-130.92],[-146.19,-203.9],[-174.88,-257.06],[-180.91,-275.97],[-185.4,-282.54],[-191.12,-291.26],[-204.89,-314.86],[-220.16,-351.36],[-223.2,-354.24],[-229.1,-366.09]],"v":[[-240,-380],[-247.73,-356.75],[-252,-328],[-252.49,-313.6],[-253,-299],[-253.91,-284.1],[-254,-270],[-249.98,-249.34],[-243,-233],[-241.97,-230.42],[-241,-228],[-238.01,-223.93],[-235,-220],[-233.98,-217.5],[-233,-215],[-229,-211],[-227,-206],[-224,-202],[-220,-191],[-215,-182],[-215,-179],[-213,-177],[-211,-171],[-190,-135],[-182,-114],[-171,-96],[-162,-113],[-146,-176],[-172,-249],[-180,-274],[-184,-280],[-188,-288],[-195,-299],[-220,-351],[-222,-352],[-225,-359]],"c":true}],"h":1},{"t":24,"s":[{"i":[[-231.26,-370.75],[-245.6,-365.61],[-251.44,-337.74],[-252.34,-317.5],[-252.69,-302.96],[-254.67,-277.15],[-252.49,-255],[-245.6,-239.2],[-242.88,-231.58],[-237.72,-224.75],[-234.79,-218.29],[-232.52,-215.9],[-229.76,-212.02],[-228.4,-208.67],[-225.46,-204.88],[-222.68,-196.92],[-217.5,-186.36],[-211.41,-172.55],[-206.63,-165.06],[-203.01,-157.35],[-199.02,-151.73],[-194.61,-144.55],[-191.94,-137.12],[-187.46,-129.53],[-186.27,-123.88],[-183.31,-118.78],[-176.13,-95.47],[-162.87,-110.9],[-145.78,-158.44],[-156.06,-215.51],[-171.98,-248.13],[-180.93,-275.18],[-185.76,-282.59],[-187.79,-286.95],[-195.74,-300.35],[-211.38,-331.05]],"o":[[-242.88,-373.49],[-249.88,-347.73],[-252.25,-322.26],[-252.56,-307.84],[-253.66,-287.58],[-253.7,-263.93],[-249.51,-245.02],[-243.14,-234.28],[-240.4,-227.11],[-235.04,-220.46],[-233.58,-216.32],[-230.84,-213],[-228.44,-210.25],[-226.99,-206.29],[-223.31,-200.82],[-219.59,-189.72],[-213.53,-177.48],[-207.97,-166.05],[-204.21,-161.01],[-200.18,-152.64],[-195.93,-146.49],[-192.1,-139.02],[-190.11,-132.99],[-185.65,-125.15],[-185.6,-121.68],[-181.39,-113.92],[-168.24,-96.28],[-154.42,-131.36],[-146.23,-195.97],[-168.04,-240.39],[-178.12,-266.16],[-184.16,-282.35],[-187.13,-284.97],[-192.69,-295.28],[-206.02,-318.16],[-223.24,-356.28]],"v":[[-240,-380],[-247.74,-356.67],[-252,-327],[-252.45,-312.67],[-253,-298],[-254,-268],[-251,-250],[-244,-236],[-242,-230],[-236,-222],[-234,-217],[-232,-215],[-229,-211],[-228,-208],[-225,-204],[-221,-193],[-216,-183],[-209,-168],[-206,-164],[-201,-154],[-198,-150],[-193,-141],[-191,-135],[-186,-126],[-186,-123],[-183,-118],[-171,-96],[-162,-113],[-146,-177],[-164,-232],[-175,-257],[-184,-282],[-186,-283],[-189,-289],[-199,-306],[-217,-343]],"c":true}],"h":1},{"t":25,"s":[{"i":[[-235.88,-377.87],[-245.68,-365.36],[-251.42,-336.8],[-252.33,-316.15],[-252.65,-301.05],[-253.83,-285.74],[-254.44,-270.68],[-250.84,-250.6],[-240.08,-227.6],[-233.95,-217.93],[-230.83,-213.5],[-225.23,-202.95],[-218.71,-188.92],[-216.27,-182.93],[-215.43,-179.92],[-208.17,-166.65],[-196.04,-147.57],[-189.23,-132.48],[-184.81,-120.52],[-180.34,-109.38],[-172.91,-95.8],[-168.24,-98.86],[-163.89,-108.97],[-154.46,-133.78],[-145.22,-172.05],[-158.36,-218.25],[-177.08,-266.65],[-185.76,-282.58],[-189.79,-291.32],[-192.76,-294.6],[-194.7,-299.87],[-197.49,-303.21],[-206.59,-319.53],[-217.61,-345.73],[-224.98,-357.28],[-228.84,-365.79]],"o":[[-242.96,-373.46],[-249.91,-347.04],[-252.26,-321.12],[-252.53,-306.11],[-253.36,-290.9],[-254.37,-275.63],[-253.3,-258.56],[-244.23,-235.12],[-235.03,-219.43],[-231.85,-214.96],[-227.62,-207.74],[-220.77,-193.53],[-216.55,-183.97],[-215.71,-180.91],[-211.9,-172.37],[-200.24,-154.26],[-190.57,-135.97],[-186.35,-124.76],[-182.39,-114.47],[-175.6,-100.04],[-169.8,-96.12],[-165.29,-105.28],[-157.38,-123.83],[-147.44,-160.62],[-148.7,-203.23],[-172.68,-247.92],[-184.16,-282.35],[-188.01,-286.54],[-191.15,-294.34],[-194.33,-297.17],[-196.38,-302.62],[-202.75,-311.34],[-214.13,-336.05],[-223.01,-355.91],[-227.63,-361.75],[-233.84,-371]],"v":[[-240,-380],[-247.79,-356.2],[-252,-326],[-252.43,-311.13],[-253,-296],[-254.1,-280.69],[-254,-266],[-247.53,-242.86],[-236,-221],[-232.9,-216.45],[-230,-212],[-223,-198.24],[-217,-185],[-215.99,-181.92],[-215,-179],[-204.2,-160.46],[-192,-139],[-187.79,-128.62],[-183,-116],[-177.97,-104.71],[-171,-96],[-166.76,-102.07],[-163,-111],[-151,-147],[-147,-188],[-165,-232],[-184,-282],[-186,-283],[-191,-294],[-193,-295],[-196,-302],[-198,-304],[-210,-327],[-222,-354],[-226,-359],[-230,-367]],"c":true}],"h":1},{"t":26,"s":[{"i":[[-238.34,-378.97],[-243.52,-372.58],[-246.89,-358.43],[-250.69,-334.96],[-252.31,-305.9],[-253.84,-285.63],[-254.45,-270.79],[-249.02,-245.39],[-234.07,-219.3],[-227.01,-206.45],[-222.99,-198.23],[-219.54,-190.06],[-216.29,-181.75],[-208.14,-166.7],[-195.99,-147.67],[-189.27,-132.54],[-184.84,-120.67],[-180.57,-109.93],[-172.92,-95.82],[-170,-96.96],[-166.87,-101.39],[-161.97,-111.52],[-157.16,-125.22],[-151.86,-142.92],[-147.4,-162.74],[-148.13,-195.67],[-161.69,-226.36],[-170.56,-246.02],[-175.46,-258.52],[-180.69,-273.06],[-186.79,-286.19],[-192.3,-295.24],[-203.42,-312.71],[-210.19,-328.92],[-216.27,-340.34],[-229.05,-366.3]],"o":[[-242.08,-376.62],[-245.93,-363.49],[-249.79,-344.26],[-251.95,-315.78],[-253.37,-290.73],[-254.39,-275.66],[-252.99,-255.24],[-239.56,-227.42],[-228.51,-209.33],[-224.24,-200.9],[-220.64,-192.93],[-217.36,-184.47],[-211.9,-172.36],[-200.18,-154.35],[-190.6,-135.96],[-186.39,-124.9],[-182.61,-115.02],[-175.73,-100.33],[-170.82,-96.02],[-168.03,-99.65],[-163.89,-106.91],[-158.61,-120.67],[-153.91,-135.8],[-148.61,-156.39],[-145.79,-184],[-156.08,-216.85],[-168.83,-242.01],[-173.87,-254.27],[-178.79,-268.21],[-184.69,-282.05],[-190.66,-292.86],[-198.49,-305.3],[-209.07,-324.22],[-213.69,-336.8],[-223.16,-354.89],[-236.39,-377.04]],"v":[[-240,-380],[-244.73,-368.04],[-248,-353],[-251.32,-325.37],[-253,-296],[-254.11,-280.64],[-254,-266],[-244.29,-236.41],[-230,-212],[-225.63,-203.68],[-222,-196],[-218.45,-187.26],[-215,-179],[-204.16,-160.53],[-192,-139],[-187.83,-128.72],[-183,-116],[-178.15,-105.13],[-171,-96],[-169.02,-98.3],[-166,-103],[-160.29,-116.1],[-156,-129],[-150.23,-149.66],[-147,-168],[-152.11,-206.26],[-167,-238],[-172.21,-250.15],[-177,-263],[-182.69,-277.55],[-189,-290],[-194,-298],[-207,-320],[-212,-333],[-218,-344],[-235,-375]],"c":true}],"h":1},{"t":27,"s":[{"i":[[-234.93,-375.74],[-243.67,-372.31],[-246.93,-357.52],[-248.61,-350.31],[-249.87,-347.87],[-251.71,-329.7],[-252.43,-303.89],[-253.83,-284.69],[-254.49,-269.79],[-249.55,-246.61],[-236.06,-222.18],[-228.41,-208.46],[-223.54,-198.49],[-219.22,-188.21],[-214.85,-177.5],[-209.37,-168.05],[-202.96,-159.2],[-193.93,-143.26],[-185.08,-122.63],[-179.55,-107.9],[-173.43,-95.8],[-169.97,-96.95],[-166.89,-101.36],[-161.97,-111.52],[-157.03,-125.55],[-147.8,-157.85],[-154.66,-213.4],[-174.83,-256.37],[-185.55,-284.52],[-193.04,-295.38],[-195.73,-301.9],[-198.49,-305.22],[-207.89,-321.42],[-212.1,-332.89],[-214.58,-337.01],[-222.16,-353.51]],"o":[[-242.21,-376.54],[-246.04,-362.8],[-248.17,-351.12],[-249.46,-348.69],[-251.24,-338.26],[-252.3,-312.52],[-253.33,-289.8],[-254.41,-274.69],[-253.02,-255.51],[-241.07,-229.94],[-230.14,-211.71],[-225.11,-201.84],[-220.54,-191.71],[-216.38,-181.1],[-211.39,-170.95],[-205.15,-162.18],[-197.14,-149.69],[-187.9,-129.73],[-181.09,-112.75],[-175.72,-99.42],[-170.77,-96.02],[-168.03,-99.62],[-163.95,-106.75],[-158.51,-120.93],[-151.64,-143.53],[-144.9,-198.34],[-170.65,-245.26],[-182.39,-277.46],[-191.01,-293.69],[-195.37,-299.31],[-197.37,-304.61],[-203.48,-312.91],[-211.98,-330.07],[-213.31,-335.72],[-218.55,-346.28],[-230.02,-366.8]],"v":[[-240,-380],[-244.85,-367.55],[-248,-352],[-249.03,-349.5],[-250,-347],[-252.01,-321.11],[-253,-295],[-254.12,-279.69],[-254,-265],[-245.31,-238.27],[-232,-215],[-226.76,-205.15],[-222,-195],[-217.8,-184.66],[-213,-174],[-207.26,-165.12],[-201,-156],[-190.92,-136.49],[-182,-115],[-177.64,-103.66],[-171,-96],[-169,-98.28],[-166,-103],[-160.24,-116.23],[-156,-129],[-147,-169],[-165,-234],[-179,-268],[-190,-292],[-194,-297],[-197,-304],[-199,-306],[-211,-328],[-213,-335],[-215,-338],[-226,-360]],"c":true}],"h":1},{"t":28,"s":[{"i":[[-238.34,-378.97],[-244.92,-368.42],[-249.34,-345.63],[-250.41,-334.2],[-250.84,-326.72],[-252.8,-303.61],[-254.91,-273.76],[-249.54,-246.56],[-236.08,-222.32],[-228.33,-208.32],[-223.43,-198.38],[-219.22,-188.01],[-214.85,-177.42],[-209.42,-168.19],[-203.08,-159.39],[-197.23,-149.27],[-191.55,-137.36],[-188.38,-130.22],[-186.56,-124.87],[-185.49,-122.44],[-184.09,-121.26],[-183.38,-119.1],[-182.44,-116.1],[-179.76,-108.75],[-173.16,-95.81],[-163.78,-106.66],[-157.44,-125.11],[-147.81,-158.71],[-156.25,-216.25],[-174.05,-254.21],[-185.16,-283.37],[-191.04,-293.52],[-205.47,-316.18],[-210.95,-330.7],[-216.17,-340.08],[-229.23,-366.57]],"o":[[-242.75,-375.35],[-248.21,-353.56],[-250.24,-336.59],[-250.71,-329.26],[-251.59,-313.98],[-254.45,-283.5],[-253,-255.4],[-241.08,-230.02],[-230.12,-211.62],[-224.99,-201.7],[-220.55,-191.55],[-216.37,-180.94],[-211.37,-171],[-205.27,-162.39],[-199.21,-153.09],[-193.4,-141.4],[-189.09,-132.04],[-187.11,-126.64],[-185.94,-122.81],[-184.56,-121.66],[-183.66,-120.05],[-182.77,-117.13],[-181.43,-113.6],[-175.63,-99.86],[-168.95,-96.18],[-159.23,-117.73],[-151.66,-144.76],[-144.82,-200.37],[-170.81,-245.71],[-180.14,-272.36],[-190.27,-292.2],[-198.25,-304.65],[-210.96,-328.09],[-213.75,-336.83],[-222.99,-354.72],[-236.39,-377.04]],"v":[[-240,-380],[-246.57,-360.99],[-250,-339],[-250.56,-331.73],[-251,-324],[-253.63,-293.56],[-254,-265],[-245.31,-238.29],[-232,-215],[-226.66,-205.01],[-222,-195],[-217.8,-184.47],[-213,-174],[-207.34,-165.29],[-201,-156],[-195.32,-145.33],[-190,-134],[-187.74,-128.43],[-186,-123],[-185.03,-122.05],[-184,-121],[-183.08,-118.12],[-182,-115],[-177.7,-104.3],[-171,-96],[-162,-111],[-156,-130],[-147,-170],[-167,-238],[-177,-263],[-189,-290],[-192,-295],[-210,-326],[-212,-333],[-218,-344],[-235,-375]],"c":true}],"h":1},{"t":29,"s":[{"i":[[-230.23,-370.36],[-243.24,-372.97],[-246.99,-359.93],[-250.55,-338.39],[-252.31,-312.32],[-253.92,-294.6],[-255.06,-281.07],[-253.1,-259.69],[-243.45,-234.93],[-234.94,-220.15],[-228.82,-209.83],[-223.62,-198.44],[-218.75,-186.75],[-209.71,-169.68],[-197.3,-150.07],[-188.77,-131.46],[-182.71,-116.23],[-179.55,-108.1],[-176.91,-101.42],[-172.1,-95.65],[-167.74,-99.9],[-161.83,-111.8],[-157.13,-126.14],[-151.74,-144.87],[-147.42,-165.12],[-150.28,-204.47],[-170.28,-242.53],[-179.42,-268.54],[-186.5,-285.69],[-192.62,-296.13],[-197.76,-305.26],[-199.52,-308.32],[-200.88,-308.8],[-201.42,-310.04],[-201.76,-311.59],[-211.27,-329.91]],"o":[[-241.75,-376.75],[-245.86,-364.56],[-249.65,-346.99],[-251.88,-321.06],[-253.39,-299.32],[-254.75,-285.48],[-254.88,-268.22],[-247.39,-243.04],[-237.03,-223.48],[-230.84,-213.32],[-225.25,-202.32],[-220.37,-190.66],[-213.57,-175.64],[-201.58,-156.89],[-190.91,-136.59],[-184.66,-121.27],[-180.35,-110.39],[-177.83,-103.61],[-173.73,-96.45],[-169.1,-97.38],[-163.77,-106.98],[-158.52,-121.38],[-153.78,-137.56],[-148.56,-158.65],[-145.64,-189.95],[-162.6,-230.76],[-177.17,-262.19],[-184.09,-280.28],[-190.74,-293],[-196.13,-302.26],[-199.08,-308.17],[-200.42,-308.63],[-201.29,-309.49],[-201.66,-311.09],[-206.58,-319.9],[-221.67,-352.45]],"v":[[-240,-380],[-244.55,-368.76],[-248,-355],[-251.22,-329.73],[-253,-304],[-254.33,-290.04],[-255,-277],[-250.24,-251.37],[-239,-227],[-232.89,-216.73],[-227,-206],[-222,-194.55],[-217,-183],[-205.65,-163.28],[-193,-141],[-186.71,-126.37],[-181,-112],[-178.69,-105.86],[-176,-100],[-170.6,-96.51],[-166,-103],[-160.18,-116.59],[-156,-130],[-150.15,-151.76],[-147,-171],[-156.44,-217.61],[-175,-256],[-181.76,-274.41],[-189,-290],[-194.38,-299.19],[-199,-308],[-199.97,-308.48],[-201,-309],[-201.54,-310.56],[-202,-312],[-215,-338]],"c":true}],"h":1},{"t":30,"s":[{"i":[[-229.51,-369.78],[-243.24,-372.96],[-247.01,-359.93],[-249.34,-347.07],[-250.66,-334.27],[-253.84,-301.8],[-253.98,-260.94],[-246.39,-241.22],[-240.17,-229.76],[-234.55,-220.11],[-229.5,-211.12],[-222.73,-195.8],[-214.17,-176.47],[-203.67,-160.46],[-193.4,-142.32],[-186.16,-123.78],[-180.33,-108.42],[-173.26,-96.21],[-168.31,-98.89],[-164.39,-106.16],[-162.51,-110.75],[-154.97,-131.58],[-147.58,-163.77],[-146.84,-176.23],[-146.86,-185.51],[-147.64,-190.67],[-149.44,-196.75],[-150.92,-203.48],[-152.26,-210.14],[-153.82,-213.29],[-155.56,-215.12],[-161.21,-226.74],[-171.01,-245.46],[-179.04,-268.57],[-189.18,-290.69],[-208.81,-323.4]],"o":[[-241.73,-376.75],[-245.88,-364.56],[-248.76,-351.19],[-250.29,-338.62],[-252.1,-316.33],[-254.78,-274.1],[-248.3,-245.35],[-242.32,-233.43],[-236.3,-223.05],[-231.15,-214.14],[-225.14,-202.07],[-217.24,-183],[-206.97,-165.3],[-196.88,-148.97],[-187.99,-129.07],[-182.33,-113.45],[-175.1,-98.52],[-169.86,-96.4],[-165.14,-104.54],[-163.08,-109.27],[-158.43,-120.7],[-149.54,-153.12],[-146.91,-173.22],[-146.82,-182.37],[-147.17,-188.79],[-148.77,-194.65],[-150.54,-201.16],[-151.78,-207.97],[-153.29,-212.73],[-154.96,-214.49],[-159.05,-222.1],[-167.52,-238.64],[-176.95,-260.44],[-185.13,-283.86],[-200.93,-310.09],[-222.02,-352.43]],"v":[[-240,-380],[-244.56,-368.76],[-248,-355],[-249.81,-342.84],[-251,-330],[-254.31,-287.95],[-250,-250],[-244.35,-237.33],[-238,-226],[-232.85,-217.12],[-228,-208],[-219.98,-189.4],[-210,-170],[-200.27,-154.72],[-190,-134],[-184.24,-118.62],[-178,-104],[-171.56,-96.3],[-166,-103],[-163.74,-107.71],[-162,-112],[-152.26,-142.35],[-147,-172],[-146.83,-179.3],[-147,-187],[-148.2,-192.66],[-150,-199],[-151.35,-205.73],[-153,-212],[-154.39,-213.89],[-156,-216],[-164,-232],[-174,-253],[-182,-276],[-193,-297],[-215,-337]],"c":true}],"h":1},{"t":31,"s":[{"i":[[-233.61,-375.1],[-243.24,-372.94],[-247.06,-359.76],[-249.38,-346.63],[-250.62,-333.55],[-252.9,-310.96],[-255.33,-284.11],[-254.6,-269.66],[-252.91,-258.1],[-250.67,-251.79],[-247.79,-246.81],[-246.88,-244.05],[-247.13,-242.44],[-246.5,-241.44],[-245.11,-240.24],[-235.89,-222.55],[-224.34,-199.76],[-220.2,-190.5],[-218.83,-185.81],[-208.27,-167.35],[-195.99,-148.59],[-191.85,-138.03],[-187.02,-128.69],[-185.58,-121.64],[-182.15,-115.4],[-176.34,-95.44],[-167.39,-100.59],[-159.04,-118.31],[-155.46,-129.35],[-152.37,-145.6],[-147.33,-168.03],[-156.14,-218.32],[-174.01,-252.56],[-182.77,-278.62],[-195.39,-301.43],[-216.35,-340.1]],"o":[[-241.72,-376.81],[-245.91,-364.41],[-248.82,-350.85],[-250.28,-337.98],[-251.74,-320.15],[-254.7,-292.94],[-254.89,-273.36],[-253.6,-262.03],[-251.52,-253.38],[-248.8,-248.5],[-246.82,-244.58],[-247.04,-242.98],[-246.95,-241.82],[-245.59,-240.65],[-240.86,-231.25],[-228.12,-207.49],[-221.89,-191.63],[-219.19,-188.03],[-214.03,-175.3],[-199.83,-154.8],[-192.23,-140.3],[-189.58,-132.62],[-185.28,-124.09],[-183.98,-117.16],[-180.35,-110.76],[-170.43,-96.06],[-161.69,-110.48],[-156.45,-128.07],[-153.05,-138.07],[-149.14,-160.7],[-145.48,-201.2],[-169.85,-244.29],[-180.28,-270.27],[-190.74,-294.42],[-209.08,-323.93],[-228.62,-364]],"v":[[-240,-380],[-244.58,-368.68],[-248,-355],[-249.83,-342.3],[-251,-329],[-253.8,-301.95],[-255,-276],[-254.1,-265.85],[-252,-255],[-249.73,-250.14],[-247,-245],[-246.96,-243.51],[-247,-242],[-246.04,-241.05],[-245,-240],[-232,-215],[-222,-192],[-220,-190],[-218,-184],[-204,-161],[-193,-142],[-191,-136],[-186,-126],[-185,-120],[-182,-115],[-171,-96],[-166,-103],[-157,-126],[-155,-131],[-151,-152],[-147,-174],[-166,-237],[-177,-261],[-187,-287],[-200,-309],[-224,-355]],"c":true}],"h":1},{"t":32,"s":[{"i":[[-236.31,-377.99],[-243.38,-372.72],[-247.05,-358.99],[-249.34,-345.62],[-250.62,-332.44],[-253.81,-301.41],[-254.39,-263.98],[-247.43,-244.58],[-241.14,-231.81],[-237.01,-224.92],[-233.78,-220.46],[-226.26,-204.13],[-218.21,-182.65],[-211.08,-171.08],[-204.15,-162.32],[-197.57,-151.68],[-192.15,-139.82],[-189.19,-134.52],[-185.49,-122.44],[-175.22,-95.59],[-166.16,-101.84],[-162.2,-110.96],[-154.65,-135.11],[-149.62,-154.51],[-146.88,-190.09],[-151.83,-206.47],[-159.34,-223.63],[-172.08,-247.63],[-180.04,-270.56],[-186.38,-284.73],[-191.06,-295.76],[-194.68,-299.57],[-195.56,-302.3],[-202.44,-312.45],[-211.73,-330.97],[-225.71,-359.42]],"o":[[-241.85,-376.73],[-245.98,-363.85],[-248.78,-349.9],[-250.26,-336.89],[-252.12,-314.92],[-254.95,-275.94],[-249.36,-249.18],[-243.32,-235.9],[-238.12,-226.43],[-234.84,-221.93],[-229.15,-211.81],[-220.79,-189.56],[-213.25,-173.93],[-206.52,-165.28],[-199.74,-155.52],[-193.78,-143.82],[-190.89,-135.63],[-186.66,-127.52],[-181.93,-113.23],[-170.41,-96.06],[-163.28,-107.2],[-155.98,-126.68],[-151.14,-150.86],[-145.99,-174.85],[-150.09,-204.38],[-155.71,-218.51],[-168.57,-240.55],[-177.9,-262.32],[-184.38,-281.48],[-189.88,-291.79],[-193.24,-299.41],[-195.58,-300.77],[-199.17,-308.1],[-208.9,-323.93],[-220,-348.75],[-234.13,-373.07]],"v":[[-240,-380],[-244.68,-368.29],[-248,-354],[-249.8,-341.26],[-251,-328],[-254.38,-288.67],[-251,-254],[-245.37,-240.24],[-239,-228],[-235.93,-223.42],[-233,-219],[-223.52,-196.84],[-215,-177],[-208.8,-168.18],[-202,-159],[-195.67,-147.75],[-191,-136],[-189,-134],[-183,-116],[-171,-96],[-165,-104],[-161,-114],[-152,-147],[-149,-158],[-150,-204],[-152,-207],[-165,-234],[-175,-255],[-183,-278],[-188,-288],[-193,-299],[-195,-300],[-196,-303],[-205,-317],[-215,-338],[-231,-368]],"c":true}],"h":1},{"t":33,"s":[{"i":[[-228.97,-369.31],[-243.38,-372.71],[-247.05,-359],[-249.34,-345.63],[-250.62,-332.48],[-253.18,-309.24],[-255.74,-281.88],[-252.44,-258.21],[-244.63,-238.93],[-240.15,-230.49],[-237.61,-225.35],[-236.48,-223.68],[-235.11,-223.21],[-230.1,-212.95],[-223.86,-197.47],[-219.21,-186.59],[-214.63,-177.76],[-208.16,-167.55],[-200.99,-157.47],[-194.64,-145.69],[-188.23,-130.15],[-182.32,-113.34],[-173.7,-95.74],[-167.26,-99.84],[-161.44,-111.91],[-158.29,-120.91],[-155.77,-131.84],[-150.79,-151.77],[-146.84,-174.71],[-149.55,-201.15],[-160.67,-227.33],[-169.36,-242.72],[-175.42,-254.82],[-181.78,-276.87],[-194.68,-300.86],[-208.16,-323.07]],"o":[[-241.86,-376.7],[-245.98,-363.86],[-248.78,-349.89],[-250.26,-336.93],[-251.81,-318.55],[-255.14,-290.91],[-254.37,-265.5],[-247.57,-244.93],[-241.1,-232.31],[-238.41,-227.01],[-236.92,-223.82],[-235.57,-223.37],[-232.42,-218.21],[-225.82,-202.58],[-220.64,-189.72],[-216.2,-180.61],[-210.66,-171.06],[-203.32,-160.75],[-196.77,-150.12],[-190.37,-135.71],[-184.72,-120.46],[-176.81,-100.97],[-169.54,-96.14],[-163.21,-107.73],[-159.4,-116.99],[-156.47,-128.34],[-152.87,-143.67],[-147.78,-167.29],[-147.22,-191.73],[-156.28,-218.94],[-167.15,-238.81],[-173.49,-250.72],[-180.2,-267.44],[-189.47,-293.52],[-203.68,-315.73],[-219.86,-347.23]],"v":[[-240,-380],[-244.68,-368.28],[-248,-354],[-249.8,-341.28],[-251,-328],[-254.16,-300.07],[-255,-273],[-250,-251.57],[-242,-234],[-239.28,-228.75],[-237,-224],[-236.03,-223.53],[-235,-223],[-227.96,-207.76],[-222,-193],[-217.7,-183.6],[-213,-175],[-205.74,-164.15],[-199,-154],[-192.51,-140.7],[-186,-124],[-179.56,-107.15],[-171,-96],[-165.24,-103.78],[-161,-113],[-157.38,-124.62],[-155,-135],[-149.28,-159.53],[-147,-182],[-152.92,-210.04],[-165,-235],[-171.42,-246.72],[-177,-259],[-186,-286],[-199,-308],[-212,-331]],"c":true}],"h":1},{"t":34,"s":[{"i":[[-237.41,-380.01],[-240.93,-378.55],[-241.78,-377.52],[-244.59,-369.54],[-247.23,-357.22],[-249.27,-344.66],[-250.55,-331.53],[-253.27,-308.01],[-255.66,-280.96],[-251.25,-254.83],[-239.48,-230.01],[-234.46,-221.18],[-232.66,-217.36],[-226.57,-203.18],[-218.7,-183.4],[-213.6,-175.31],[-210.22,-170.73],[-205.87,-164.65],[-201.24,-158.07],[-195.53,-146.6],[-190.03,-136.78],[-186.03,-124.71],[-184.68,-118.74],[-181.08,-112.52],[-178.69,-104.92],[-173.87,-95.72],[-162.12,-110.2],[-156.71,-127.11],[-146.85,-165.8],[-152.38,-212.29],[-166.93,-237.96],[-177.73,-262.87],[-192.28,-297.09],[-208.27,-323.64],[-223.2,-355.9],[-232.86,-370.14]],"o":[[-240.54,-378.79],[-241.55,-377.91],[-243.48,-373.43],[-246.47,-361.44],[-248.75,-348.9],[-250.18,-335.98],[-251.94,-317.53],[-255.13,-289.72],[-254.26,-264.08],[-243.86,-237.8],[-235.13,-222.5],[-233.22,-218.61],[-229.22,-210.23],[-221.31,-189.77],[-214.74,-176.94],[-211.34,-172.2],[-207.5,-166.87],[-202.74,-160.25],[-197.47,-151.77],[-191.89,-138.55],[-187.37,-129.6],[-184.47,-120.61],[-183.2,-114.95],[-178.99,-107.64],[-175.31,-99.09],[-167.95,-96.29],[-157.87,-120.82],[-150.78,-150.97],[-147.15,-196.75],[-162.15,-230.9],[-175.21,-254.32],[-185.93,-285.76],[-203.93,-316.01],[-218.54,-343.91],[-231.04,-368.7],[-236.21,-375.6]],"v":[[-240,-379],[-241.24,-378.23],[-242,-377],[-245.53,-365.49],[-248,-353],[-249.72,-340.32],[-251,-327],[-254.2,-298.86],[-255,-273],[-247.55,-246.32],[-236,-224],[-233.84,-219.9],[-232,-216],[-223.94,-196.48],[-216,-179],[-212.47,-173.76],[-209,-169],[-204.3,-162.45],[-200,-156],[-193,-141],[-189,-134],[-185,-122],[-184,-117],[-180,-110],[-177,-102],[-171,-96],[-161,-113],[-155,-134],[-147,-181],[-158,-223],[-171,-246],[-181,-272],[-199,-308],[-212,-331],[-230,-367],[-234,-372]],"c":true}],"h":1},{"t":35,"s":[{"i":[[-237.42,-380],[-241.18,-378.37],[-241.7,-376.89],[-245.92,-362.09],[-250.04,-336.42],[-254.01,-300.88],[-254.37,-264.91],[-250.36,-253],[-249.36,-249.91],[-243.97,-238.44],[-235.36,-223.84],[-231.51,-215.36],[-229.72,-209.73],[-224.42,-196.76],[-217.19,-181.1],[-206.66,-165.63],[-194.69,-147.23],[-188.49,-130.98],[-184.52,-118.79],[-180.25,-107.96],[-173.24,-95.78],[-167.3,-99.72],[-161.54,-111.66],[-158.37,-120.42],[-155.88,-130.47],[-150.87,-150.45],[-146.91,-173.68],[-151.35,-209.02],[-161.04,-228.65],[-164.76,-233.59],[-168.8,-241.8],[-180.38,-271.62],[-194.44,-300.56],[-208.19,-323.62],[-223.33,-355.94],[-232.78,-370.01]],"o":[[-240.84,-378.67],[-241.62,-377.48],[-244.15,-369.63],[-248.87,-345.48],[-252.33,-313.93],[-255.03,-276.38],[-250.67,-254.04],[-249.7,-250.93],[-246.79,-243.52],[-238.25,-228.6],[-232.14,-217.24],[-230.3,-211.61],[-226.58,-202.21],[-219.73,-186.2],[-210.57,-170.52],[-198.72,-153.99],[-189.73,-134.83],[-185.88,-122.96],[-182.13,-112.81],[-175.81,-99.44],[-169.53,-96.14],[-163.3,-107.48],[-159.43,-116.93],[-156.59,-127.19],[-152.92,-142.36],[-147.87,-166.11],[-147.16,-193.91],[-157.45,-222.35],[-163.16,-233.35],[-167.07,-237.59],[-177.39,-258.18],[-189.41,-293.12],[-203.76,-315.76],[-218.85,-344.27],[-231.01,-368.68],[-236.05,-375.33]],"v":[[-240,-379],[-241.4,-377.92],[-242,-376],[-247.4,-353.78],[-251,-327],[-254.52,-288.63],[-251,-255],[-250.03,-251.96],[-249,-249],[-241.11,-233.52],[-233,-219],[-230.9,-213.48],[-229,-208],[-222.08,-191.48],[-214,-176],[-202.69,-159.81],[-191,-138],[-187.19,-126.97],[-183,-115],[-178.03,-103.7],[-171,-96],[-165.3,-103.6],[-161,-113],[-157.48,-123.8],[-155,-134],[-149.37,-158.28],[-147,-181],[-155,-217],[-163,-233],[-165,-234],[-171,-246],[-186,-285],[-199,-308],[-212,-331],[-230,-367],[-234,-372]],"c":true}],"h":1},{"t":36,"s":[{"i":[[-233.99,-374.42],[-242.24,-375.98],[-244.27,-368.8],[-247.68,-353.76],[-250.25,-333.96],[-253.46,-308.58],[-255.94,-281.08],[-254.33,-267.54],[-252.48,-258.6],[-250.69,-253.93],[-247.77,-248.82],[-245.64,-243.22],[-243.84,-237.63],[-241.1,-232.95],[-237.83,-228.59],[-233.37,-220.04],[-225.84,-199.16],[-222.53,-191.19],[-201.79,-162],[-192.54,-140.93],[-186.12,-122.83],[-175.27,-95.59],[-163.61,-107.3],[-157.43,-123.6],[-143.97,-179.07],[-155.14,-216.43],[-159.22,-225.53],[-162.43,-229.99],[-165.37,-237.1],[-169.11,-242.43],[-175.35,-253.09],[-178.72,-264.17],[-182.79,-277.38],[-193.55,-299.48],[-209.27,-324.87],[-220.05,-348.58]],"o":[[-241.36,-378.08],[-243.7,-371.34],[-246.56,-360.03],[-249.53,-340.72],[-251.99,-317.79],[-255.43,-290.23],[-254.84,-270.49],[-253.15,-261.59],[-251.56,-255.52],[-248.8,-250.58],[-246.22,-245.16],[-244.45,-239.46],[-242.18,-234.41],[-238.92,-230.04],[-235.24,-223.64],[-228.65,-209.57],[-222.71,-192.38],[-215.15,-174.52],[-193.39,-144.69],[-188.69,-131.11],[-182.9,-114.75],[-168.25,-96.26],[-159.32,-117.14],[-149.6,-153.2],[-151.96,-212.11],[-158.82,-223.6],[-161.01,-228.9],[-164.57,-233.79],[-167.8,-241.42],[-172.58,-248.57],[-178.5,-260.55],[-181.29,-271.85],[-189.16,-291.19],[-204.38,-317.15],[-217.13,-339.9],[-228.58,-364.59]],"v":[[-240,-380],[-242.97,-373.66],[-245,-366],[-248.61,-347.24],[-251,-327],[-254.44,-299.41],[-255,-272],[-253.74,-264.57],[-252,-257],[-249.75,-252.25],[-247,-247],[-245.04,-241.34],[-243,-236],[-240.01,-231.5],[-237,-227],[-232,-217],[-223,-193],[-222,-190],[-195,-148],[-191,-137],[-183,-115],[-171,-96],[-162,-111],[-156,-129],[-150,-204],[-158,-222],[-160,-227],[-163,-231],[-167,-240],[-170,-244],[-177,-257],[-180,-268],[-184,-280],[-200,-310],[-213,-332],[-224,-356]],"c":true}],"h":1},{"t":37,"s":[{"i":[[-238.34,-378.97],[-242.21,-376.06],[-244.27,-368.8],[-247.71,-353.57],[-250.23,-333.83],[-253.52,-308.49],[-255.94,-281.12],[-249.34,-250.9],[-232.67,-217.51],[-226.49,-202.94],[-223.23,-194.73],[-220.35,-187.86],[-218.04,-181.8],[-214.88,-176.9],[-211.13,-172.54],[-207.03,-166.81],[-203.04,-160.67],[-200.26,-156.56],[-197.65,-153.23],[-192.71,-142.34],[-187.68,-126.68],[-185.15,-120.44],[-183.33,-117.85],[-180.56,-109.51],[-173.73,-95.74],[-163.54,-107.47],[-157.46,-124.3],[-148.76,-159.71],[-156.02,-220.43],[-175.81,-255.43],[-184.3,-281.8],[-197.95,-307.48],[-205.41,-319.22],[-218.23,-344.9],[-231.3,-367.83],[-234.44,-374.18]],"o":[[-241.33,-378.16],[-243.68,-371.38],[-246.59,-359.91],[-249.53,-340.53],[-252.05,-317.67],[-255.47,-290.21],[-254.01,-262.4],[-238.68,-228.46],[-227.63,-205.82],[-224.29,-197.39],[-221.08,-189.95],[-218.83,-183.78],[-216.06,-178.38],[-212.41,-173.98],[-208.51,-168.97],[-204.29,-162.65],[-201.19,-157.69],[-198.49,-154.33],[-194.62,-147.5],[-189.24,-131.93],[-185.73,-121.26],[-183.94,-118.73],[-182.19,-114.89],[-176.33,-99.93],[-168.19,-96.27],[-159.12,-117.59],[-152.3,-144.46],[-145.79,-203.98],[-171.98,-247.83],[-182.21,-272.62],[-191.67,-298.13],[-203.79,-316.87],[-213.38,-333.13],[-226.95,-361.68],[-234.63,-372.97],[-236.39,-377.04]],"v":[[-240,-380],[-242.95,-373.72],[-245,-366],[-248.62,-347.05],[-251,-327],[-254.49,-299.35],[-255,-272],[-244.01,-239.68],[-229,-209],[-225.39,-200.17],[-222,-192],[-219.59,-185.82],[-217,-180],[-213.64,-175.44],[-210,-171],[-205.66,-164.73],[-202,-159],[-199.38,-155.44],[-197,-152],[-190.98,-137.14],[-186,-122],[-184.54,-119.58],[-183,-117],[-178.44,-104.72],[-171,-96],[-162,-111],[-156,-130],[-148,-171],[-168,-241],[-179,-264],[-188,-290],[-202,-314],[-207,-322],[-224,-356],[-234,-372],[-235,-375]],"c":true}],"h":1},{"t":38,"s":[{"i":[[-228.05,-366.82],[-242.21,-376.06],[-244.27,-368.8],[-247.68,-353.57],[-250.18,-333.82],[-253.62,-308.56],[-256.02,-281.11],[-251.85,-258.25],[-241.64,-235.36],[-234.73,-220.99],[-230.41,-210.46],[-227.41,-203.68],[-224.71,-198.75],[-222.64,-192.92],[-220.84,-186.66],[-219.17,-184.05],[-217.34,-182.59],[-216.2,-180.44],[-215.36,-178.56],[-209.85,-170.7],[-202.09,-160.51],[-191.78,-138.2],[-183.09,-116.35],[-181.68,-110.51],[-173.56,-95.75],[-164.32,-105.72],[-157.54,-124],[-146.05,-167.6],[-149.91,-199.54],[-152.66,-213.64],[-156.18,-219.36],[-161.96,-230.98],[-172.79,-248.88],[-186.1,-287.37],[-197.08,-305.91],[-206.51,-321.68]],"o":[[-241.33,-378.16],[-243.68,-371.38],[-246.59,-359.91],[-249.47,-340.52],[-252.11,-317.75],[-255.58,-290.23],[-254.28,-265.58],[-245.53,-243.14],[-236.27,-224.51],[-231.8,-213.97],[-228.31,-205.3],[-225.62,-200.4],[-223.22,-195.09],[-221.45,-188.71],[-219.75,-184.51],[-217.96,-183.09],[-216.52,-181.16],[-215.62,-179.14],[-212.56,-174.19],[-204.62,-163.86],[-195.04,-148.68],[-185.58,-121.08],[-181.17,-112.21],[-177.16,-100.44],[-168.74,-96.22],[-159.07,-117.65],[-150.57,-151.18],[-148.36,-195.33],[-152.15,-208.72],[-154.51,-218.29],[-160.01,-227.02],[-168.73,-242.17],[-182.63,-270.69],[-194.66,-303.03],[-203.07,-315.53],[-219.33,-344.88]],"v":[[-240,-380],[-242.95,-373.72],[-245,-366],[-248.58,-347.05],[-251,-327],[-254.6,-299.4],[-255,-272],[-248.69,-250.7],[-238,-228],[-233.27,-217.48],[-229,-207],[-226.51,-202.04],[-224,-197],[-222.04,-190.81],[-220,-185],[-218.57,-183.57],[-217,-182],[-215.91,-179.79],[-215,-178],[-207.24,-167.28],[-200,-157],[-187,-125],[-182,-114],[-181,-109],[-171,-96],[-162,-111],[-156,-130],[-148,-191],[-151,-204],[-154,-217],[-157,-221],[-165,-236],[-176,-256],[-193,-300],[-199,-309],[-210,-328]],"c":true}],"h":1},{"t":39,"s":[{"i":[[-238.34,-378.97],[-241.99,-376.7],[-243.3,-370.42],[-246.45,-358.96],[-249.29,-344.43],[-251.94,-324.98],[-254.58,-304.27],[-255.46,-286.22],[-254.66,-270.42],[-247.5,-246.9],[-231.59,-214.96],[-225.31,-198.48],[-221.61,-187.96],[-218.47,-182.6],[-215.79,-179.18],[-209.78,-170.76],[-202.05,-160.49],[-191.79,-138.24],[-176.1,-95.51],[-167.08,-100.19],[-159.12,-117.77],[-143.82,-191.86],[-161,-229.08],[-165.12,-237.55],[-168.16,-241.66],[-174.9,-254.43],[-178.38,-262.66],[-179.48,-265.56],[-188.07,-289.89],[-198.69,-309.29],[-202.6,-314.33],[-207.01,-323.64],[-212.03,-330.18],[-220.13,-348.48],[-231.19,-367.66],[-234.44,-374.18]],"o":[[-241.34,-378.49],[-242.97,-372.66],[-245.31,-363.49],[-248.44,-349.43],[-250.9,-332.09],[-253.78,-311.06],[-255.38,-292.26],[-255.1,-275.3],[-252.2,-257.67],[-237.19,-225.55],[-226.5,-202.25],[-222.87,-191.33],[-219.33,-183.76],[-216.7,-180.31],[-212.51,-174.26],[-204.55,-163.88],[-195.06,-148.58],[-184.02,-116.77],[-170.08,-96.09],[-161.31,-110.77],[-148.4,-154.33],[-156.95,-223.01],[-164.82,-235.35],[-166.83,-240.36],[-171.96,-247.72],[-177.77,-260.68],[-179.36,-264.77],[-184.06,-278.29],[-195.48,-303.58],[-201.37,-313.6],[-205.41,-319.02],[-210.18,-329],[-217.13,-339.71],[-226.98,-361.79],[-234.63,-372.97],[-236.39,-377.04]],"v":[[-240,-380],[-242.48,-374.68],[-244,-368],[-247.45,-354.2],[-250,-339],[-252.86,-318.02],[-255,-298],[-255.28,-280.76],[-254,-267],[-242.34,-236.22],[-228,-206],[-224.09,-194.91],[-220,-185],[-217.58,-181.46],[-215,-178],[-207.17,-167.32],[-200,-157],[-187,-125],[-171,-96],[-165,-104],[-157,-125],[-154,-216],[-164,-234],[-166,-239],[-169,-243],[-177,-259],[-179,-264],[-180,-267],[-193,-299],[-201,-313],[-203,-315],[-209,-327],[-213,-332],[-224,-356],[-234,-372],[-235,-375]],"c":true}],"h":1},{"t":40,"s":[{"i":[[-237.79,-378.77],[-242.06,-375.98],[-244.32,-368.65],[-247.6,-353.58],[-250.11,-333.76],[-253.8,-307.71],[-256.05,-280.71],[-250.08,-253.85],[-237.23,-226.44],[-230.75,-211.53],[-226.32,-201.21],[-222.77,-191.89],[-219.37,-183.43],[-217.3,-181.04],[-216.41,-179.42],[-213.78,-176.37],[-210.85,-172.13],[-206.7,-166.8],[-202.22,-161.02],[-196.17,-150.08],[-189.19,-133.15],[-183.19,-115.23],[-174.15,-95.7],[-167.6,-99.64],[-161.41,-111.07],[-158.35,-118.99],[-155.73,-129.02],[-148.24,-165.97],[-152.25,-213.29],[-162.99,-234.04],[-173.98,-251.42],[-182.67,-272.98],[-205.71,-319.08],[-225.73,-358.62],[-232.24,-368.98],[-233.5,-372.27]],"o":[[-241.15,-378.15],[-243.64,-371.23],[-246.55,-359.95],[-249.38,-340.48],[-252.27,-317.36],[-255.69,-289.39],[-253.72,-263.63],[-241.84,-235.25],[-232.34,-215.17],[-227.75,-204.55],[-223.84,-195.18],[-220.54,-186.02],[-217.6,-181.58],[-216.71,-179.97],[-214.86,-177.81],[-211.78,-173.53],[-208.34,-168.8],[-203.64,-162.91],[-198.58,-155.01],[-191.48,-139.16],[-185.62,-123.13],[-177.46,-101.51],[-169.9,-96.1],[-163.36,-107.12],[-159.49,-115.48],[-156.48,-125.76],[-151.45,-146.42],[-147.63,-196.45],[-160.94,-229.48],[-169.7,-245.1],[-180.43,-265.47],[-192.63,-302.98],[-220.72,-348.14],[-231.16,-368],[-233.61,-370.81],[-235.83,-375.7]],"v":[[-240,-380],[-242.85,-373.6],[-245,-366],[-248.49,-347.03],[-251,-327],[-254.74,-298.55],[-255,-273],[-245.96,-244.55],[-234,-219],[-229.25,-208.04],[-225,-198],[-221.65,-188.95],[-218,-182],[-217,-180.5],[-216,-179],[-212.78,-174.95],[-210,-171],[-205.17,-164.86],[-201,-159],[-193.83,-144.62],[-187,-127],[-180.32,-108.37],[-171,-96],[-165.48,-103.38],[-161,-112],[-157.42,-122.38],[-155,-132],[-148,-178],[-158,-224],[-166,-239],[-177,-258],[-185,-280],[-216,-339],[-230,-366],[-233,-370],[-234,-373]],"c":true}],"h":1},{"t":41,"s":[{"i":[[-228.73,-368.21],[-241.64,-377.66],[-242.47,-373.68],[-246.18,-359.69],[-249.1,-339.75],[-252.62,-316.61],[-256.06,-293.08],[-253.95,-267.45],[-244.08,-240.71],[-235.18,-221.61],[-228.8,-206.77],[-223.54,-193.56],[-217.84,-182.75],[-213.19,-175.9],[-209.44,-170.88],[-199.03,-155.41],[-189.14,-132.5],[-185.38,-121.63],[-184.58,-117.48],[-182.76,-113.56],[-180.5,-110.1],[-176.81,-101.5],[-172.94,-95.81],[-168.27,-98.67],[-163.42,-107.17],[-161.61,-111.58],[-157.85,-119.31],[-155.84,-130.34],[-152.59,-140.71],[-147.94,-171.09],[-154.38,-219.23],[-166.92,-240.65],[-172.47,-249.17],[-181,-268.05],[-190.22,-293.79],[-207.18,-322.34]],"o":[[-241.15,-378.82],[-242.29,-375.09],[-244.88,-366.06],[-248.29,-346.53],[-251.09,-324.82],[-255.11,-300.74],[-255.91,-276.6],[-248.04,-249.51],[-237.53,-226.72],[-230.82,-211.63],[-225.37,-197.68],[-219.77,-186.09],[-214.47,-177.71],[-210.67,-172.49],[-202.96,-162.41],[-192.12,-140.46],[-185.59,-122.89],[-184.88,-118.92],[-183.51,-114.76],[-181.26,-111.23],[-178.09,-104.84],[-174.24,-96.98],[-170.07,-96.09],[-164.95,-104.22],[-162.24,-109.5],[-159.74,-115.93],[-155.79,-125.84],[-154.22,-137.38],[-149.94,-155.47],[-148.1,-201.46],[-163.48,-235.4],[-170.72,-246.76],[-178.38,-260.1],[-187.16,-286.4],[-200.07,-312.58],[-221.94,-349.4]],"v":[[-240,-380],[-241.96,-376.38],[-243,-372],[-247.24,-353.11],[-250,-333],[-253.86,-308.68],[-256,-286],[-251,-258.48],[-240,-232],[-233,-216.62],[-227,-202],[-221.66,-189.83],[-216,-180],[-211.93,-174.19],[-208,-169],[-195.57,-147.94],[-186,-124],[-185.13,-120.28],[-184,-116],[-182.01,-112.4],[-180,-109],[-175.53,-99.24],[-171,-96],[-166.61,-101.45],[-163,-108],[-161,-113],[-157,-122],[-155,-134],[-152,-144],[-148,-182],[-161,-231],[-169,-244],[-174,-252],[-184,-277],[-194,-301],[-213,-333]],"c":true}],"h":1},{"t":42,"s":[{"i":[[-228.39,-368.07],[-245.15,-366.63],[-248.77,-342.26],[-252.63,-316.94],[-256.13,-293.39],[-251.76,-261.05],[-235.96,-224.42],[-230.17,-209.43],[-227.67,-203.67],[-225.18,-197.1],[-222.96,-190.94],[-219.64,-184.9],[-216.18,-180.62],[-214.57,-178],[-214.3,-176.39],[-212.59,-174.46],[-210.41,-172.54],[-209.61,-171.05],[-209.34,-169.42],[-206.15,-165.83],[-202.07,-161.62],[-199.97,-158.18],[-198.51,-154.99],[-192.84,-142.38],[-186.89,-124.29],[-175.45,-95.57],[-164,-106.09],[-154.02,-131.93],[-147.99,-171.65],[-154.31,-218.53],[-162.97,-235.31],[-167.06,-239.54],[-169.97,-245.27],[-180.21,-262.91],[-185.25,-280.1],[-203.38,-315.63]],"o":[[-243.27,-373.75],[-247.9,-350.89],[-251.06,-325],[-255.16,-301.14],[-255.78,-273.84],[-241.85,-236.34],[-231.08,-211.59],[-228.46,-205.47],[-225.95,-199.38],[-223.69,-192.88],[-220.8,-186.59],[-217.33,-181.92],[-214.67,-178.55],[-214.39,-176.92],[-213.38,-175.19],[-211.1,-173.14],[-209.69,-171.59],[-209.43,-169.97],[-207.62,-167.26],[-203.38,-163.01],[-200.46,-159.19],[-198.99,-156.08],[-194.9,-147.99],[-188.84,-130.54],[-182.42,-113.01],[-169.07,-96.18],[-156.88,-119.73],[-150.1,-155.32],[-148.03,-202],[-162.02,-232.9],[-164.87,-238.43],[-169.23,-242.9],[-175.6,-254.72],[-184.47,-275.27],[-192.84,-301.37],[-221.13,-347.28]],"v":[[-240,-380],[-246.52,-358.76],[-250,-333],[-253.9,-309.04],[-256,-286],[-246.81,-248.69],[-232,-214],[-229.32,-207.45],[-227,-202],[-224.43,-194.99],[-222,-189],[-218.49,-183.41],[-215,-179],[-214.48,-177.46],[-214,-176],[-211.84,-173.8],[-210,-172],[-209.52,-170.51],[-209,-169],[-204.77,-164.42],[-201,-160],[-199.48,-157.13],[-198,-154],[-190.84,-136.46],[-184,-117],[-171,-96],[-163,-108],[-152,-144],[-148,-182],[-161,-231],[-164,-237],[-168,-241],[-171,-247],[-183,-271],[-187,-285],[-212,-331]],"c":true}],"h":1},{"t":43,"s":[{"i":[[-238.14,-379.48],[-244.99,-366.8],[-248.73,-342.94],[-252.68,-317.93],[-256.08,-294.39],[-254.18,-269.67],[-246.56,-248.04],[-239.83,-232.7],[-233.38,-218.17],[-230.43,-209.53],[-227.88,-203.18],[-224.86,-195.49],[-221.43,-187.44],[-213.25,-175.28],[-202.62,-162.48],[-195.34,-148.36],[-189.55,-130.91],[-182.82,-113.18],[-173.38,-95.77],[-167.9,-98.93],[-162.64,-108.63],[-155.2,-128.42],[-149.49,-160.11],[-148.67,-176.82],[-148.68,-191.35],[-153.64,-214.99],[-160.15,-230.31],[-169.12,-243.75],[-173.13,-250.49],[-179.04,-261.09],[-185.08,-279.25],[-192.04,-296.32],[-197.79,-308.13],[-210.57,-329.36],[-225.56,-357.94],[-234.54,-374.48]],"o":[[-243.12,-373.83],[-247.79,-351.36],[-251.14,-325.99],[-255.15,-302.13],[-255.9,-277.9],[-249.51,-254.74],[-242.14,-237.61],[-235.45,-222.98],[-231.24,-211.69],[-228.75,-205.27],[-225.89,-198.27],[-222.63,-190.07],[-216.94,-179.79],[-206.09,-166.63],[-197.31,-153.4],[-191.46,-137.11],[-185.63,-120.29],[-176.7,-100.92],[-169.83,-96.11],[-164.31,-105.18],[-158.21,-118.11],[-150.85,-149.42],[-148.83,-172.15],[-148.59,-186.42],[-149.84,-204.66],[-158.24,-226.7],[-165.47,-239.08],[-172.27,-249.19],[-176.75,-256.75],[-183.71,-272.78],[-189.44,-292.3],[-196.67,-305.2],[-204.43,-318.38],[-220.88,-347.15],[-232.63,-369.72],[-237.46,-377.52]],"v":[[-240,-380],[-246.39,-359.08],[-250,-334],[-253.91,-310.03],[-256,-287],[-251.84,-262.21],[-244,-242],[-237.64,-227.84],[-232,-214],[-229.59,-207.4],[-227,-201],[-223.75,-192.78],[-220,-185],[-209.67,-170.96],[-200,-158],[-193.4,-142.74],[-187,-124],[-179.76,-107.05],[-171,-96],[-166.1,-102.05],[-162,-110],[-153.02,-138.92],[-149,-169],[-148.63,-181.62],[-149,-195],[-156,-221],[-163,-235],[-171,-247],[-174,-252],[-181,-266],[-187,-285],[-195,-302],[-199,-310],[-215,-337],[-231,-367],[-236,-376]],"c":true}],"h":1},{"t":44,"s":[{"i":[[-239.07,-379.74],[-242.78,-373.65],[-245.63,-362.96],[-247.62,-351.16],[-249.34,-338.45],[-251.29,-325.98],[-253.39,-314.03],[-255.18,-302.25],[-256.08,-290.74],[-251.66,-260.27],[-235.93,-224.32],[-230.12,-209.03],[-227.86,-203.11],[-224.84,-195.44],[-221.42,-187.32],[-213.1,-175.23],[-202.58,-162.41],[-195.34,-148.36],[-189.55,-130.91],[-182.76,-113.05],[-173.36,-95.8],[-168.96,-97.69],[-165.69,-103.74],[-154.56,-130.32],[-147.83,-178.85],[-155.42,-220.98],[-175.05,-253.69],[-183.21,-273.24],[-187.33,-285.78],[-196,-305.06],[-208.92,-326.77],[-219.29,-345.58],[-227.96,-361.94],[-232.67,-370.16],[-235.32,-375.29],[-237.26,-377.63]],"o":[[-241.54,-376.94],[-244.82,-366.66],[-247.03,-355.21],[-248.77,-342.78],[-250.59,-329.99],[-252.69,-318],[-254.64,-306.15],[-255.9,-294.54],[-255.7,-273.36],[-241.78,-235.75],[-230.94,-211.23],[-228.58,-204.97],[-225.89,-198.28],[-222.61,-189.96],[-216.81,-179.77],[-205.98,-166.55],[-197.31,-153.4],[-191.46,-137.11],[-185.58,-120.15],[-176.65,-100.88],[-170.11,-96.07],[-166.75,-101.53],[-159.15,-115.65],[-148.9,-161.93],[-150.15,-208.89],[-167.87,-243.38],[-181.79,-269.1],[-185.98,-281.58],[-192.04,-297.67],[-204.44,-319.61],[-216.31,-339.86],[-225.12,-356.62],[-231.76,-368.26],[-234.45,-373.67],[-236.73,-376.76],[-238.43,-379.12]],"v":[[-240,-380],[-243.8,-370.16],[-246.33,-359.09],[-248.19,-346.97],[-250,-334],[-251.99,-321.99],[-254.02,-310.09],[-255.54,-298.4],[-256,-287],[-246.72,-248.01],[-232,-214],[-229.35,-207],[-227,-201],[-223.73,-192.7],[-220,-185],[-209.54,-170.89],[-200,-158],[-193.4,-142.74],[-187,-124],[-179.71,-106.96],[-171,-96],[-167.85,-99.61],[-165,-105],[-151.73,-146.12],[-149,-194],[-161.65,-232.18],[-180,-265],[-184.59,-277.41],[-189,-290],[-200.22,-312.33],[-213,-334],[-222.2,-351.1],[-231,-367],[-233.56,-371.92],[-236,-376],[-237.85,-378.38]],"c":true}],"h":1},{"t":45,"s":[{"i":[[-238.14,-379.48],[-244.82,-367.09],[-248.67,-343.78],[-252.68,-319.44],[-256.04,-296.29],[-254.29,-270.93],[-245.18,-244.75],[-236.7,-224.87],[-230.67,-209.69],[-226.44,-197.8],[-221.51,-186.58],[-218.46,-183.28],[-216.57,-180.78],[-210.77,-173.23],[-203.15,-163.42],[-193.48,-144.2],[-184.84,-117.07],[-177.53,-102.29],[-172.3,-95.89],[-169.26,-97.55],[-165.56,-103.02],[-157.15,-121.46],[-151,-152.37],[-149.11,-172.78],[-148.65,-187.17],[-157.02,-226.12],[-177.36,-256.42],[-184.82,-277.48],[-192.21,-296.73],[-199.06,-311.69],[-202.5,-316.13],[-205.13,-320.49],[-208.13,-325.49],[-212.5,-332.34],[-225.6,-357.64],[-234.7,-374.64]],"o":[[-242.99,-373.96],[-247.67,-352],[-251.16,-327.29],[-255.12,-303.94],[-255.95,-279.55],[-248.91,-253.53],[-238.87,-230.03],[-232.61,-214.71],[-227.93,-202.01],[-223.23,-190.08],[-219.17,-184.13],[-217.16,-181.6],[-213.45,-176.51],[-205.62,-166.68],[-196.56,-152.91],[-187.62,-126.27],[-179.38,-105.6],[-173.99,-97.44],[-170.48,-96.04],[-166.8,-101.04],[-160.4,-112.03],[-152.45,-141.63],[-149.54,-167.94],[-148.67,-182.39],[-150.46,-212.07],[-170.56,-247.23],[-183.88,-272.7],[-189.23,-290.62],[-197.79,-307.44],[-201.38,-315.65],[-204.27,-319.19],[-207.27,-324.19],[-210.81,-330.12],[-220.25,-346.11],[-232.35,-369.33],[-237.46,-377.52]],"v":[[-240,-380],[-246.24,-359.55],[-250,-335],[-253.9,-311.69],[-256,-289],[-251.6,-262.23],[-241,-235],[-234.65,-219.79],[-229,-205],[-224.83,-193.94],[-220,-185],[-217.81,-182.44],[-216,-180],[-208.19,-169.95],[-201,-160],[-190.55,-135.24],[-181,-109],[-175.76,-99.87],[-171,-96],[-168.03,-99.3],[-165,-104],[-154.8,-131.55],[-150,-163],[-148.89,-177.59],[-149,-192],[-164,-237],[-182,-268],[-186,-281],[-196,-304],[-201,-315],[-203,-317],[-206,-322],[-209,-327],[-214,-335],[-231,-367],[-236,-376]],"c":true}],"h":1},{"t":46,"s":[{"i":[[-238.14,-379.48],[-244.93,-366.8],[-248.6,-342.82],[-252.84,-318.38],[-256.19,-295.44],[-254.03,-270.53],[-245.03,-244.63],[-237.56,-226.99],[-232.48,-215],[-229.7,-206.7],[-227.93,-200.06],[-224.87,-193.51],[-220.68,-185.71],[-218.44,-183.26],[-216.63,-180.85],[-210.64,-173.21],[-203,-163.41],[-193.66,-144.25],[-184.78,-117.94],[-175,-95.67],[-166.12,-102.05],[-157.04,-121.16],[-152.64,-137.51],[-150.54,-155.91],[-148.36,-181.68],[-159.43,-230.22],[-169.58,-245.34],[-179.14,-261.23],[-187.96,-286.48],[-198.19,-309.14],[-204.38,-319.35],[-210.85,-329.26],[-218.09,-344.58],[-224,-353.14],[-229.87,-365.72],[-234.96,-374.92]],"o":[[-243.13,-373.89],[-247.66,-351.26],[-251.25,-326.17],[-255.31,-303.02],[-255.77,-278.96],[-248.67,-253.36],[-239.32,-230.99],[-234.14,-219],[-230.23,-208.91],[-228.55,-202.27],[-226.28,-196.4],[-222.07,-188.16],[-219.13,-184.09],[-217.2,-181.64],[-213.39,-176.51],[-205.44,-166.66],[-196.77,-152.78],[-187.66,-126.83],[-179.08,-105.97],[-169.99,-96.08],[-160.61,-111.66],[-153.86,-134.93],[-151.1,-148.28],[-149.1,-172.13],[-150.57,-213.97],[-168.37,-244.6],[-174.53,-253.02],[-185.61,-276.56],[-193.68,-300.64],[-202.86,-317.22],[-208.29,-325.74],[-216.33,-338.81],[-221.92,-351.71],[-227.76,-360.15],[-233.42,-371.19],[-237.46,-377.52]],"v":[[-240,-380],[-246.3,-359.03],[-250,-334],[-254.08,-310.7],[-256,-288],[-251.35,-261.94],[-241,-235],[-235.85,-222.99],[-231,-211],[-229.12,-204.48],[-227,-198],[-223.47,-190.83],[-220,-185],[-217.82,-182.45],[-216,-180],[-208.04,-169.93],[-201,-160],[-190.66,-135.54],[-181,-110],[-171,-96],[-165,-104],[-155,-130],[-152,-142],[-150,-162],[-149,-191],[-168,-244],[-170,-246],[-182,-268],[-191,-294],[-201,-314],[-206,-322],[-213,-333],[-221,-350],[-225,-355],[-232,-369],[-236,-376]],"c":true}],"h":1},{"t":47,"s":[{"i":[[-235.83,-378.24],[-244.8,-367.09],[-248.64,-343.76],[-253.51,-315.3],[-256.43,-286.43],[-253.59,-270.35],[-250.75,-262.23],[-247.25,-251.92],[-243.43,-241.54],[-234.65,-218.29],[-223.15,-190.52],[-211.99,-174.98],[-203.27,-163.9],[-194.01,-144.79],[-184.69,-117.76],[-178.56,-104.49],[-172.95,-95.84],[-167.76,-98.96],[-163.37,-108.18],[-161.26,-112.26],[-158.34,-117.14],[-156.63,-122.1],[-155.34,-127.67],[-148.31,-167.31],[-154.11,-220.5],[-168.16,-244.15],[-179.77,-261.92],[-186.57,-280.5],[-190.93,-295.49],[-199.84,-312.66],[-211.31,-331.02],[-214.52,-337.32],[-215.88,-337.79],[-218.32,-343.22],[-221.79,-351.74],[-228.18,-364.1]],"o":[[-242.99,-373.96],[-247.63,-351.99],[-251.54,-325.09],[-255.95,-295.97],[-254.47,-273.48],[-251.74,-264.73],[-248.53,-255.65],[-244.69,-244.86],[-238.08,-228.27],[-227.19,-199.41],[-215.11,-178.78],[-206.08,-167.54],[-197.16,-153.41],[-187.77,-126.97],[-180.08,-108.07],[-174.99,-98.37],[-169.58,-96.12],[-164.66,-104.99],[-162.34,-110.44],[-159.26,-115.61],[-157.21,-120.01],[-155.69,-125.93],[-150.25,-147.56],[-150.24,-203.78],[-164.28,-238.95],[-175.9,-255.64],[-185.1,-275.25],[-189.48,-290.62],[-195.94,-306.4],[-207.53,-324.97],[-214.08,-337.18],[-215.42,-337.63],[-217.17,-340.1],[-220.63,-349.04],[-225.76,-355.88],[-233.87,-370.04]],"v":[[-240,-380],[-246.22,-359.54],[-250,-335],[-254.73,-305.64],[-255,-277],[-252.66,-267.54],[-250,-260],[-245.97,-248.39],[-242,-238],[-230.92,-208.85],[-218,-183],[-209.04,-171.26],[-201,-160],[-190.89,-135.88],[-181,-110],[-176.78,-101.43],[-171,-96],[-166.21,-101.98],[-163,-109],[-160.26,-113.94],[-158,-118],[-156.16,-124.01],[-155,-129],[-149.27,-185.55],[-161,-233],[-172.03,-249.9],[-183,-270],[-188.02,-285.56],[-193,-300],[-203.68,-318.82],[-214,-337],[-214.97,-337.47],[-216,-338],[-219.47,-346.13],[-223,-353],[-230,-366]],"c":true}],"h":1},{"t":48,"s":[{"i":[[-232.7,-372.32],[-244.98,-366.44],[-248.55,-342.55],[-253,-318.09],[-256.29,-295.1],[-253.77,-271.37],[-245.25,-247.32],[-236.77,-224.91],[-229.44,-204.65],[-226.24,-196.81],[-225.41,-193.76],[-224.18,-192.04],[-222.47,-190.72],[-221.29,-188.42],[-220.47,-185.69],[-219.43,-184.64],[-218.18,-184.24],[-217.57,-183.02],[-217.28,-181.38],[-216.42,-180.64],[-215.19,-180.25],[-214.6,-177.77],[-211.8,-174.99],[-209.09,-171.4],[-193.97,-144.62],[-177.42,-95.47],[-163.25,-107.08],[-148.93,-158.43],[-149.95,-195.8],[-159.07,-229.65],[-174.58,-253.61],[-185.43,-277.16],[-193.09,-298.69],[-196.76,-306.54],[-202.13,-316.35],[-216.26,-340.09]],"o":[[-243.21,-373.67],[-247.65,-350.88],[-251.35,-326.04],[-255.47,-302.62],[-255.65,-279.46],[-248.57,-255.3],[-239.3,-232.09],[-231.84,-211.2],[-226.54,-197.93],[-225.68,-194.72],[-224.69,-192.43],[-223.07,-191.19],[-221.56,-189.33],[-220.75,-186.6],[-219.84,-184.77],[-218.6,-184.38],[-217.68,-183.58],[-217.37,-181.92],[-216.83,-180.76],[-215.6,-180.38],[-214.35,-179.13],[-213.12,-175.86],[-209.88,-172.62],[-198.48,-157.79],[-185.5,-121.03],[-168.45,-96.21],[-152.83,-129.88],[-149.02,-187.49],[-153.65,-221.12],[-170.6,-247.6],[-182.41,-268.23],[-190.08,-293.16],[-195.1,-305.35],[-199.95,-312.74],[-210.85,-330.5],[-226.7,-359.73]],"v":[[-240,-380],[-246.32,-358.66],[-250,-334],[-254.23,-310.35],[-256,-288],[-251.17,-263.33],[-242,-239],[-234.31,-218.05],[-227,-199],[-225.96,-195.76],[-225,-193],[-223.63,-191.62],[-222,-190],[-221.02,-187.51],[-220,-185],[-219.02,-184.51],[-218,-184],[-217.47,-182.47],[-217,-181],[-216.01,-180.51],[-215,-180],[-214,-177],[-211,-174],[-208,-170],[-188,-128],[-171,-96],[-161,-112],[-149,-180],[-151,-203],[-167,-242],[-178,-260],[-188,-286],[-195,-305],[-197,-307],[-205,-321],[-221,-349]],"c":true}],"h":1},{"t":49,"s":[{"i":[[-237.41,-378.93],[-244.76,-367.03],[-248.51,-343.55],[-253.02,-319.49],[-256.31,-296.63],[-251.8,-265.12],[-237.5,-227.81],[-231.3,-209.76],[-227.54,-198.22],[-224.39,-192.23],[-221.77,-189.09],[-219.34,-185.59],[-217.47,-182.71],[-215.32,-179.75],[-212.8,-177.01],[-207.83,-170.62],[-202.47,-162.66],[-196.6,-150.48],[-190.44,-132.54],[-184.07,-115.56],[-173.75,-95.77],[-168.46,-98.51],[-163.34,-106.4],[-162.2,-108.7],[-161.31,-111.31],[-154.12,-132.35],[-148.98,-169.25],[-153.39,-219.27],[-176.77,-253.94],[-189.85,-291.77],[-200.62,-313.72],[-204.76,-319.59],[-206.72,-324.87],[-213.69,-334.89],[-225.5,-356.91],[-233.01,-371.96]],"o":[[-243.01,-374],[-247.51,-351.8],[-251.37,-327.17],[-255.5,-304.22],[-255.55,-277.97],[-242.77,-240.04],[-232.53,-213.89],[-228.81,-201.92],[-225.25,-193.44],[-222.64,-190.06],[-220.11,-186.73],[-218.02,-183.58],[-216.16,-180.74],[-213.64,-177.88],[-209.85,-173.29],[-204.15,-165.3],[-198.62,-155.71],[-192.51,-138.9],[-186.94,-123.18],[-177.47,-101.86],[-170.29,-96.06],[-164.99,-103.68],[-162.54,-107.8],[-161.59,-110.46],[-157.13,-120.47],[-150.04,-156.74],[-149.05,-200.34],[-166.72,-244.95],[-188.02,-282.05],[-196.68,-306.96],[-203.16,-319.35],[-206.2,-322.04],[-210.51,-331.17],[-221.01,-347.91],[-231.33,-367.39],[-236.3,-375.4]],"v":[[-240,-380],[-246.14,-359.42],[-250,-335],[-254.26,-311.85],[-256,-289],[-247.29,-252.58],[-234,-218],[-230.06,-205.84],[-226,-195],[-223.51,-191.14],[-221,-188],[-218.68,-184.58],[-217,-182],[-214.48,-178.81],[-212,-176],[-205.99,-167.96],[-201,-160],[-194.55,-144.69],[-188,-126],[-180.77,-108.71],[-171,-96],[-166.73,-101.09],[-163,-107],[-161.89,-109.58],[-161,-112],[-152.08,-144.54],[-149,-179],[-160,-232],[-184,-272],[-194,-301],[-203,-319],[-205,-320],[-208,-327],[-216,-339],[-230,-365],[-234,-373]],"c":true}],"h":1},{"t":50,"s":[{"i":[[-237.41,-378.93],[-245.25,-364.67],[-249.62,-337.13],[-253.6,-315.75],[-256.45,-295.29],[-253.59,-271.81],[-245.19,-247.45],[-236.4,-222.43],[-228.46,-199.23],[-223.98,-191.71],[-222.27,-190.36],[-221.57,-189.02],[-221.26,-187.37],[-217.38,-182.24],[-211.46,-175.57],[-209.55,-173.08],[-209.34,-171.45],[-208.43,-170.63],[-207.2,-170.22],[-206.55,-169.08],[-206.34,-167.47],[-205.44,-166.64],[-204.19,-166.21],[-203.54,-165.09],[-203.33,-163.49],[-197.23,-152.2],[-191,-132.8],[-180.56,-107.81],[-169.08,-97.2],[-148.25,-163.04],[-156.58,-225.58],[-178.53,-257.12],[-187.48,-284.32],[-201.23,-315.44],[-223.52,-353.36],[-233.06,-372.02]],"o":[[-243.19,-373.35],[-248.47,-346.55],[-252.13,-322.35],[-255.76,-302.22],[-255.5,-279.83],[-248.44,-255.62],[-238.92,-230.82],[-231.17,-206.64],[-224.6,-192.28],[-222.82,-190.75],[-221.69,-189.59],[-221.35,-187.92],[-219.4,-184.71],[-213.41,-177.67],[-209.63,-173.61],[-209.41,-172],[-208.83,-170.77],[-207.62,-170.36],[-206.63,-169.6],[-206.4,-168.02],[-205.84,-166.78],[-204.62,-166.35],[-203.62,-165.59],[-203.39,-164.04],[-199.48,-157.79],[-192.99,-139.7],[-185.77,-119.21],[-171.1,-92.35],[-152.18,-125.36],[-151.28,-211.47],[-169.36,-248.31],[-186.93,-279.04],[-193.91,-304.17],[-216.83,-340.65],[-231.33,-367.39],[-236.3,-375.4]],"v":[[-240,-380],[-246.86,-355.61],[-251,-329],[-254.68,-308.98],[-256,-288],[-251.01,-263.71],[-242,-239],[-233.78,-214.54],[-225,-193],[-223.4,-191.23],[-222,-190],[-221.46,-188.47],[-221,-187],[-215.4,-179.96],[-210,-174],[-209.48,-172.54],[-209,-171],[-208.02,-170.49],[-207,-170],[-206.47,-168.55],[-206,-167],[-205.03,-166.49],[-204,-166],[-203.46,-164.56],[-203,-163],[-195.11,-145.95],[-188,-125],[-177,-102],[-165,-104],[-150,-191],[-163,-237],[-185,-274],[-189,-289],[-209,-328],[-230,-365],[-234,-373]],"c":true}],"h":1},{"t":51,"s":[{"i":[[-235.24,-375.86],[-244.15,-368.09],[-248.58,-346.79],[-252.7,-324.39],[-255.78,-303.18],[-254.69,-276.13],[-245.57,-248.89],[-235.77,-220.39],[-225.65,-194.6],[-219.1,-184.99],[-216.86,-181.05],[-214.75,-178.94],[-212.53,-177.65],[-211.24,-175.7],[-210.4,-173.53],[-206.65,-168.83],[-202.15,-163.06],[-196.03,-150.5],[-190.3,-133.25],[-184.15,-116.2],[-173.95,-95.75],[-167.34,-99.88],[-161.19,-111.56],[-160.69,-114.37],[-156.71,-120.92],[-150.54,-149.2],[-151.81,-217.21],[-163.12,-238.61],[-165.66,-240.55],[-166.48,-243.25],[-176.68,-256.58],[-187.47,-282.64],[-200.47,-313.15],[-208.01,-327.37],[-211.18,-331.61],[-222.55,-351.95]],"o":[[-242.36,-374.45],[-247.26,-354.27],[-251.31,-331.8],[-254.94,-310.08],[-256.4,-285.68],[-249.27,-257.73],[-238.7,-229.84],[-229.25,-202.77],[-219.92,-186.47],[-217.57,-182.28],[-215.48,-179.37],[-213.28,-178.09],[-211.54,-176.43],[-210.67,-174.24],[-208.33,-170.8],[-203.56,-164.96],[-198.14,-155.88],[-192.11,-139.19],[-186.92,-124.07],[-177.66,-102.03],[-169.74,-96.11],[-163.06,-107.61],[-160.46,-113.26],[-158.9,-118.61],[-152.38,-133.62],[-148.21,-191.35],[-162.78,-236.35],[-164.27,-240.43],[-166.62,-241.83],[-171.96,-251.11],[-185.31,-273.4],[-194.25,-305.05],[-207.89,-325.48],[-209.79,-330.3],[-217.41,-342.12],[-230.6,-366.51]],"v":[[-240,-380],[-245.7,-361.18],[-250,-339],[-253.82,-317.23],[-256,-297],[-251.98,-266.93],[-242,-239],[-232.51,-211.58],[-221,-188],[-218.33,-183.64],[-216,-180],[-214.01,-178.51],[-212,-177],[-210.95,-174.97],[-210,-173],[-205.11,-166.89],[-201,-161],[-194.07,-144.84],[-188,-127],[-180.91,-109.11],[-171,-96],[-165.2,-103.75],[-161,-112],[-160,-116],[-156,-123],[-150,-159],[-162,-235],[-164,-240],[-166,-241],[-167,-244],[-181,-265],[-190,-291],[-207,-324],[-209,-329],[-212,-333],[-227,-360]],"c":true}],"h":1},{"t":52,"s":[{"i":[[-235.1,-375.64],[-244.64,-366.78],[-248.48,-344.13],[-253.03,-321.13],[-256.31,-298.56],[-253.64,-273.24],[-245.01,-247.56],[-239.23,-230.52],[-235.41,-217.93],[-232.48,-210.25],[-229.85,-204.85],[-227.29,-198.72],[-225.02,-192.68],[-223.45,-190.65],[-222.16,-190.22],[-221.55,-187.76],[-219.38,-186.5],[-218.61,-183.78],[-211.5,-176.26],[-207.79,-171.28],[-205.55,-168.78],[-203.81,-164.26],[-200.8,-160.59],[-193.15,-138.42],[-175.86,-95.58],[-163.95,-106.18],[-158.42,-118.86],[-147.23,-206.98],[-168.96,-246.41],[-173.49,-252.26],[-175.13,-256.64],[-178.05,-260.4],[-182.44,-267.37],[-187.37,-281.86],[-206.99,-324.28],[-223.88,-354.35]],"o":[[-242.9,-373.71],[-247.43,-351.99],[-251.38,-328.6],[-255.5,-306.11],[-255.63,-281.96],[-248.33,-256.04],[-240.52,-234.8],[-236.67,-222.08],[-233.31,-212.08],[-230.75,-206.64],[-228.03,-200.88],[-225.79,-194.62],[-223.87,-190.79],[-222.6,-190.36],[-221.36,-189.15],[-220.66,-186.53],[-218.34,-185.12],[-215.51,-179.82],[-208.77,-172.14],[-206.4,-169.02],[-204.09,-166.69],[-201.82,-161.14],[-195.43,-149.87],[-186.01,-119.83],[-169.21,-96.15],[-160.31,-113.16],[-146.09,-154.75],[-162.95,-239.01],[-172.59,-251.9],[-174.85,-254.23],[-176.85,-259.33],[-181.12,-265.58],[-186.22,-276.17],[-195.92,-308.87],[-220.62,-348.41],[-230.75,-366.79]],"v":[[-240,-380],[-246.04,-359.38],[-250,-336],[-254.27,-313.62],[-256,-291],[-250.98,-264.64],[-242,-239],[-237.95,-226.3],[-234,-214],[-231.62,-208.45],[-229,-203],[-226.54,-196.67],[-224,-191],[-223.03,-190.51],[-222,-190],[-221,-187],[-219,-186],[-218,-183],[-210,-174],[-207,-170],[-205,-168],[-203,-163],[-200,-159],[-188,-125],[-171,-96],[-163,-108],[-157,-123],[-160,-233],[-172,-251],[-174,-253],[-176,-258],[-179,-262],[-184,-271],[-189,-287],[-217,-342],[-227,-360]],"c":true}],"h":1},{"t":53,"s":[{"i":[[-236.78,-379.28],[-244.41,-367.7],[-247.99,-346.96],[-252.46,-324.12],[-256.54,-298.75],[-254.3,-276.96],[-248.92,-258.73],[-239.47,-228.79],[-226.42,-194.87],[-212.76,-177.01],[-202.44,-164.09],[-196.1,-149.18],[-190.61,-131.54],[-183.56,-114.31],[-173.27,-95.78],[-169.41,-97.29],[-166.64,-101.96],[-162.62,-108.86],[-159.33,-116.56],[-155.34,-127.46],[-152.65,-138.75],[-149.1,-177.68],[-156.25,-226.24],[-163.21,-238.71],[-165.48,-241.17],[-166.09,-242.61],[-165.88,-243.74],[-166.51,-244.32],[-167.88,-244.81],[-167.77,-246.49],[-169.75,-247.63],[-180.12,-262.41],[-190.9,-293.23],[-203.84,-319.5],[-225.89,-356.44],[-233.76,-370.59]],"o":[[-242.66,-374.47],[-247.07,-353.95],[-250.44,-332.49],[-255.51,-307.25],[-255.59,-283.35],[-250.97,-264.65],[-243.01,-241.11],[-231.17,-205.67],[-216.54,-181.22],[-205.71,-168.45],[-197.8,-154.41],[-192.51,-137.74],[-186.67,-121.67],[-176.86,-101.36],[-170.34,-96.06],[-167.56,-100.24],[-163.95,-106.33],[-160.31,-113.98],[-156.51,-123.83],[-153.4,-134.92],[-149.47,-159.56],[-152.49,-211.02],[-162.47,-237.88],[-164.71,-240.36],[-166.15,-242.24],[-165.96,-243.36],[-166.07,-244.16],[-167.41,-244.65],[-168.31,-245.46],[-168.14,-247.32],[-174.69,-254.93],[-188.9,-281.86],[-198.79,-312.02],[-217.22,-341.54],[-232.16,-370.35],[-235.95,-374.33]],"v":[[-240,-380],[-245.74,-360.82],[-249,-341],[-253.99,-315.68],[-256,-290],[-252.64,-270.8],[-247,-253],[-235.32,-217.23],[-220,-186],[-209.24,-172.73],[-200,-159],[-194.31,-143.46],[-188,-125],[-180.21,-107.84],[-171,-96],[-168.48,-98.77],[-166,-103],[-161.46,-111.42],[-158,-120],[-154.37,-131.19],[-152,-143],[-150.79,-194.35],[-162,-237],[-163.96,-239.53],[-166,-242],[-166.02,-242.98],[-166,-244],[-166.96,-244.48],[-168,-245],[-168,-247],[-170,-248],[-184,-271],[-195,-303],[-209,-328],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":54,"s":[{"i":[[-236.78,-379.28],[-244.61,-366.81],[-248.44,-344.14],[-253.15,-321.19],[-256.47,-298.7],[-253.61,-273.75],[-245.77,-248.26],[-238.27,-225.51],[-230.88,-204.9],[-225.21,-193.77],[-220.67,-187.19],[-217.17,-183],[-214.43,-180.58],[-213.57,-179],[-213.32,-177.39],[-207.91,-172.64],[-204.95,-166.5],[-201.83,-162.62],[-190.56,-130.51],[-174.79,-95.63],[-163.58,-106.89],[-150.94,-139.83],[-150.36,-207.1],[-165.25,-241.65],[-171.34,-252.05],[-174.4,-254.15],[-174.77,-256.5],[-176.75,-257.63],[-176.77,-259.49],[-178.76,-260.61],[-183.01,-270.16],[-187.29,-278.79],[-189.12,-286.26],[-203.6,-320.6],[-226.77,-358.41],[-233.76,-370.59]],"o":[[-242.88,-373.74],[-247.39,-352.01],[-251.42,-328.59],[-255.68,-306.24],[-255.47,-282.37],[-248.76,-256.69],[-240.59,-232.81],[-233.42,-211.56],[-226.62,-196.17],[-222.23,-189.27],[-218.21,-183.96],[-215.29,-181.31],[-213.67,-179.55],[-213.4,-177.92],[-210.87,-174.36],[-205.14,-168.81],[-203.07,-163.54],[-194.32,-147.99],[-181.74,-110.67],[-168.92,-96.2],[-155.84,-121.64],[-148.43,-180.24],[-160.4,-234.16],[-171.61,-250.89],[-172.58,-253.83],[-175.31,-255.44],[-175.15,-257.32],[-177.31,-258.46],[-177.15,-260.34],[-181.46,-264.96],[-185.9,-277.18],[-188.83,-283.57],[-195.53,-306.27],[-219.06,-345.26],[-232.16,-370.35],[-235.95,-374.33]],"v":[[-240,-380],[-246,-359.41],[-250,-336],[-254.41,-313.72],[-256,-291],[-251.18,-265.22],[-243,-240],[-235.85,-218.53],[-228,-199],[-223.72,-191.52],[-219,-185],[-216.23,-182.15],[-214,-180],[-213.49,-178.46],[-213,-177],[-206,-170],[-204,-165],[-201,-161],[-185,-118],[-171,-96],[-163,-108],[-150,-155],[-157,-225],[-171,-250],[-172,-253],[-175,-255],[-175,-257],[-177,-258],[-177,-260],[-179,-261],[-185,-275],[-188,-281],[-190,-289],[-212,-334],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":55,"s":[{"i":[[-236.77,-379.21],[-244.39,-367.33],[-248.4,-345.07],[-253.09,-322.47],[-256.3,-300.4],[-255.17,-284.28],[-252.19,-271.36],[-246.2,-250.37],[-238.51,-226.56],[-233.24,-210.63],[-228.72,-198.99],[-226.46,-195.66],[-225.16,-195.21],[-224.57,-194.03],[-224.25,-192.37],[-218.95,-186.32],[-216.54,-181.71],[-214.58,-179.73],[-204.24,-167.31],[-187.87,-122.67],[-174.38,-95.67],[-165.68,-104.5],[-163.23,-106.57],[-158.4,-117.26],[-149,-165.3],[-152.47,-212.19],[-173.63,-251.93],[-184.69,-272.31],[-191.52,-293.06],[-198.7,-310.69],[-204.09,-322.05],[-206.18,-325.15],[-207.3,-326.85],[-218.6,-344.07],[-229.61,-364.69],[-233.76,-370.59]],"o":[[-242.69,-374.04],[-247.24,-352.84],[-251.43,-329.77],[-255.52,-307.79],[-255.82,-288.6],[-253.35,-275.66],[-248.69,-258.58],[-241.11,-234.36],[-234.63,-214.88],[-230.29,-202.68],[-226.89,-195.8],[-225.6,-195.36],[-224.69,-194.59],[-224.34,-192.91],[-221.71,-188.61],[-216.37,-183.25],[-215.5,-180.35],[-208.99,-172.74],[-194.89,-149.1],[-178.56,-104.15],[-168.88,-96.21],[-164.84,-106.36],[-160.95,-110.79],[-149.12,-142.06],[-151.89,-201.05],[-161.96,-241.22],[-184.4,-271.74],[-189.39,-282.84],[-196.78,-306.59],[-202.3,-317.44],[-205.8,-323.84],[-207.81,-326.84],[-213.17,-336.47],[-226.37,-358.08],[-232.16,-370.35],[-235.87,-374.19]],"v":[[-240,-380],[-245.82,-360.08],[-250,-337],[-254.3,-315.13],[-256,-293],[-254.26,-279.97],[-251,-267],[-243.65,-242.36],[-236,-219],[-231.77,-206.66],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.46,-193.47],[-224,-192],[-217,-184],[-216,-181],[-214,-179],[-201,-161],[-181,-109],[-171,-96],[-165,-106],[-163,-107],[-157,-121],[-151,-190],[-156,-223],[-184,-271],[-185,-273],[-195,-302],[-201,-315],[-205,-323],[-207,-326],[-208,-328],[-223,-352],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":56,"s":[{"i":[[-236.67,-379.06],[-244.47,-366.99],[-248.46,-344.78],[-253.07,-322.79],[-256.3,-301.35],[-253.93,-276.61],[-246.58,-251.17],[-241.38,-234.88],[-237.31,-222.8],[-233.24,-210.66],[-228.78,-198.96],[-226.46,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.27,-192.38],[-222.18,-189.73],[-219.48,-186.72],[-217.33,-183.51],[-214.87,-180.09],[-209.16,-173.17],[-202.62,-164.37],[-195.22,-146.64],[-187.85,-124.14],[-180.74,-108.69],[-172.93,-95.81],[-163.71,-106.74],[-153.39,-129.04],[-150.27,-149],[-152,-217.64],[-166.57,-244.83],[-169.75,-248.63],[-180.7,-263.48],[-191.6,-292.99],[-202.84,-319.51],[-225.61,-355.83],[-233.76,-370.59]],"o":[[-242.74,-373.85],[-247.33,-352.45],[-251.41,-329.86],[-255.51,-308.53],[-255.64,-285.27],[-249.4,-259.55],[-242.73,-238.99],[-238.67,-226.79],[-234.6,-214.93],[-230.33,-202.67],[-226.88,-195.79],[-225.6,-195.36],[-224.68,-194.58],[-224.37,-192.92],[-223.19,-190.87],[-220.32,-187.66],[-218.15,-184.72],[-215.69,-181.2],[-211.6,-175.98],[-204.67,-167.37],[-197.79,-154.32],[-190.24,-131.55],[-183.28,-114.28],[-175.57,-99.45],[-169.26,-96.17],[-158.4,-116.15],[-151.16,-141.82],[-147.84,-185.23],[-163.96,-240.79],[-168.15,-248.32],[-174.75,-256.12],[-189.46,-282.88],[-198.52,-311.33],[-216.32,-341.7],[-232.16,-370.35],[-236.16,-374.68]],"v":[[-240,-380],[-245.9,-359.72],[-250,-337],[-254.29,-315.66],[-256,-294],[-251.67,-268.08],[-244,-243],[-240.03,-230.84],[-236,-219],[-231.78,-206.67],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.47,-193.47],[-224,-192],[-221.25,-188.69],[-219,-186],[-216.51,-182.36],[-214,-179],[-206.92,-170.27],[-201,-161],[-192.73,-139.09],[-185,-118],[-178.15,-104.07],[-171,-96],[-163,-108],[-152,-137],[-150,-153],[-162,-237],[-168,-248],[-170,-249],[-185,-273],[-195,-302],[-208,-328],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":57,"s":[{"i":[[-233.86,-373.35],[-244.39,-367.24],[-248.5,-345.55],[-252.97,-324.07],[-256.18,-303.09],[-254.09,-278.26],[-246.64,-252.55],[-240.2,-231.36],[-234.2,-213.03],[-230.3,-203.68],[-227.94,-197.56],[-226.46,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.26,-192.37],[-216.28,-182.25],[-204.69,-168.23],[-197.68,-152.65],[-191.77,-133.88],[-184.31,-115.77],[-173.33,-95.77],[-168.88,-98.21],[-165.33,-105.26],[-164.48,-106.32],[-163.12,-106.79],[-161.45,-110.35],[-159.6,-115.6],[-154.46,-128.75],[-149.54,-195.45],[-162.36,-237.63],[-181.71,-265.41],[-193.58,-300.54],[-199.33,-313.51],[-201.77,-315.57],[-203.72,-320.79],[-217.43,-343.19]],"o":[[-242.64,-373.96],[-247.32,-353.04],[-251.38,-331.02],[-255.37,-310.1],[-255.77,-286.98],[-249.53,-261.04],[-242.1,-237.85],[-236.25,-218.95],[-231.08,-205.9],[-228.73,-199.51],[-226.88,-195.79],[-225.6,-195.36],[-224.69,-194.59],[-224.35,-192.92],[-220.44,-186.89],[-208.41,-172.93],[-199.54,-158.21],[-193.79,-140.48],[-187.64,-123.64],[-177.15,-101.84],[-170.21,-96.08],[-166.44,-102.8],[-164.92,-106.18],[-163.58,-106.63],[-162.15,-108.55],[-160.18,-113.87],[-156.68,-122.42],[-147.33,-159.26],[-157.66,-228.99],[-173,-254.52],[-190.88,-285.93],[-198.97,-312.07],[-200.16,-315.36],[-203.15,-318.18],[-210.88,-333.18],[-228.14,-362.05]],"v":[[-240,-380],[-245.85,-360.14],[-250,-338],[-254.17,-317.09],[-256,-296],[-251.81,-269.65],[-244,-244],[-238.22,-225.16],[-232,-208],[-229.51,-201.6],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.46,-193.47],[-224,-192],[-212.34,-177.59],[-202,-163],[-195.74,-146.57],[-189,-127],[-180.73,-108.8],[-171,-96],[-167.66,-100.5],[-165,-106],[-164.03,-106.47],[-163,-107],[-160.81,-112.11],[-159,-117],[-153,-135],[-155,-218],[-167,-245],[-186,-275],[-198,-310],[-200,-315],[-202,-316],[-205,-323],[-223,-353]],"c":true}],"h":1},{"t":58,"s":[{"i":[[-233.47,-373.52],[-244.17,-367.91],[-248.44,-346.75],[-252.96,-325.2],[-256.18,-303.99],[-254.2,-280.05],[-246.83,-253.35],[-241.53,-235.23],[-238.25,-222.85],[-235.55,-215.31],[-232.78,-209.76],[-230.33,-203.74],[-228,-197.64],[-226.45,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.28,-192.38],[-223.42,-191.64],[-222.19,-191.25],[-221.57,-190],[-221.31,-188.39],[-218.66,-185.24],[-215.09,-181.37],[-209.51,-174.39],[-203.48,-165.87],[-191.27,-131.51],[-181.58,-111.14],[-172.36,-92.41],[-154.63,-125.29],[-149.68,-181.39],[-157.33,-229.2],[-165.1,-241.52],[-167.13,-246.69],[-180.41,-263.43],[-191.55,-292.71],[-213.99,-336.31]],"o":[[-242.45,-374.28],[-247.17,-354.14],[-251.37,-332.2],[-255.36,-311.1],[-255.78,-288.62],[-249.73,-262.42],[-242.65,-239.55],[-239.32,-226.88],[-236.41,-217.17],[-233.73,-211.6],[-231.08,-205.92],[-228.79,-199.6],[-226.87,-195.79],[-225.6,-195.36],[-224.68,-194.58],[-224.37,-192.92],[-223.83,-191.76],[-222.6,-191.38],[-221.67,-190.56],[-221.39,-188.92],[-219.86,-186.55],[-216.27,-182.65],[-211.77,-177.2],[-205.36,-168.73],[-194.6,-148.59],[-183.46,-114.68],[-172.43,-93.08],[-158.96,-114.72],[-148.39,-157.81],[-153.88,-215.07],[-163.67,-241.28],[-166.8,-244.31],[-173.74,-256.6],[-189.7,-282.81],[-201.93,-320.67],[-228.33,-361.28]],"v":[[-240,-380],[-245.67,-361.02],[-250,-339],[-254.16,-318.15],[-256,-297],[-251.96,-271.23],[-244,-244],[-240.42,-231.05],[-237,-219],[-234.64,-213.45],[-232,-208],[-229.56,-201.67],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.47,-193.47],[-224,-192],[-223.01,-191.51],[-222,-191],[-221.48,-189.46],[-221,-188],[-217.47,-183.94],[-214,-180],[-207.43,-171.56],[-202,-163],[-185,-118],[-181,-110],[-166,-103],[-152,-139],[-152,-200],[-163,-240],[-166,-243],[-168,-248],[-185,-273],[-195,-302],[-223,-352]],"c":true}],"h":1},{"t":59,"s":[{"i":[[-236.95,-379.17],[-244.12,-368.15],[-248.39,-347.5],[-252.96,-326.46],[-256.07,-305.67],[-254.81,-285.22],[-249.27,-262.13],[-242.31,-236.42],[-234.32,-210.66],[-228.81,-200.15],[-225.6,-195.8],[-224.57,-194.02],[-224.28,-192.38],[-223.42,-191.64],[-222.19,-191.25],[-221.63,-188.78],[-217.98,-186.16],[-216.54,-182.71],[-214.58,-180.73],[-205.04,-169.17],[-195.18,-142.01],[-175.38,-96.36],[-165.15,-104],[-151.03,-135.58],[-149.76,-177.95],[-153.68,-214.24],[-165.41,-243.84],[-182.62,-266.82],[-192.64,-296.24],[-204.08,-321.82],[-211.98,-333.28],[-214.65,-339.8],[-217.49,-343.21],[-223.25,-353.31],[-228.3,-363.03],[-232.85,-369.09]],"o":[[-242.42,-374.4],[-247.1,-354.69],[-251.42,-333.37],[-255.28,-312.61],[-255.93,-292.4],[-251.48,-270.09],[-244.66,-245.59],[-237.14,-218.96],[-230,-202],[-226.6,-197.06],[-224.68,-194.58],[-224.37,-192.92],[-223.83,-191.76],[-222.6,-191.38],[-221.33,-190.11],[-220.05,-186.82],[-216.37,-184.25],[-215.5,-181.35],[-209.55,-174.44],[-196.43,-151.69],[-186.9,-121.91],[-169.79,-95.52],[-157.13,-117.96],[-148.99,-164.16],[-152.25,-202.21],[-160.3,-235.69],[-176.13,-259.48],[-191.19,-286.75],[-199.37,-313.79],[-210.11,-331.84],[-214.36,-337.29],[-216.38,-342.62],[-220.57,-347.97],[-227.13,-359.29],[-231.09,-367.91],[-236,-374.32]],"v":[[-240,-380],[-245.61,-361.42],[-250,-340],[-254.12,-319.54],[-256,-299],[-253.14,-277.65],[-247,-254],[-239.73,-227.69],[-231,-204],[-227.71,-198.6],[-225,-195],[-224.47,-193.47],[-224,-192],[-223.01,-191.51],[-222,-191],[-221,-188],[-217,-185],[-216,-182],[-214,-180],[-202,-163],[-189,-127],[-173,-96],[-164,-106],[-150,-150],[-151,-190],[-157,-225],[-171,-252],[-187,-277],[-196,-305],[-209,-330],[-213,-335],[-216,-342],[-218,-344],[-225,-356],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":60,"s":[{"i":[[-236.44,-377.38],[-244.1,-367.7],[-248.49,-347.1],[-252.93,-326.78],[-256.07,-306.66],[-254.5,-283.19],[-248.19,-258.94],[-242.74,-238.78],[-237.81,-221.13],[-233.4,-209.45],[-229.41,-202.3],[-226.88,-197.84],[-225.6,-194.88],[-216.86,-183.64],[-204.69,-168.61],[-197.83,-152.77],[-191.63,-134.34],[-187.22,-123.36],[-183.69,-114.43],[-178.48,-104.41],[-173.26,-96.04],[-169.18,-97.8],[-164.71,-105.67],[-162.17,-110.16],[-159.79,-114.17],[-153.75,-128.32],[-150.6,-187.54],[-154.83,-217.51],[-159.44,-230.28],[-167.99,-248.02],[-182.26,-267.2],[-192.83,-294.36],[-199.9,-315.81],[-202.3,-318.82],[-209.09,-330.36],[-224.47,-355.45]],"o":[[-242.36,-374.15],[-247.17,-354.17],[-251.39,-333.45],[-255.27,-313.39],[-255.91,-291.48],[-250.64,-266.93],[-244.34,-244.97],[-239.48,-226.87],[-234.7,-212.31],[-230.76,-204.45],[-227.33,-198.9],[-226.02,-195.83],[-221.26,-188.58],[-208.57,-173.65],[-199.77,-158.35],[-193.76,-140.77],[-188.13,-125.9],[-185,-117.63],[-180.6,-108.14],[-174.81,-98.36],[-171.08,-95.71],[-166,-102.77],[-163.03,-108.83],[-160.55,-112.83],[-157.14,-120.35],[-146.17,-155.35],[-154.81,-212.88],[-157.09,-226.17],[-164.26,-241.78],[-177.16,-260.8],[-190.56,-284.5],[-197.69,-307.59],[-202.82,-318.85],[-206.17,-325.34],[-218.3,-345.05],[-232.82,-369.88]],"v":[[-240,-380],[-245.64,-360.94],[-250,-340],[-254.1,-320.09],[-256,-300],[-252.57,-275.06],[-246,-251],[-241.11,-232.82],[-236,-216],[-232.08,-206.95],[-228,-200],[-226.45,-196.84],[-225,-194],[-212.72,-178.65],[-202,-163],[-195.8,-146.77],[-189,-128],[-186.11,-120.5],[-182,-111],[-176.64,-101.39],[-173,-96],[-167.59,-100.29],[-164,-107],[-161.36,-111.5],[-159,-116],[-153,-131],[-154,-208],[-156,-222],[-161,-234],[-173,-255],[-186,-275],[-196,-303],[-202,-318],[-203,-320],[-212,-335],[-230,-365]],"c":true}],"h":1},{"t":61,"s":[{"i":[[-236.88,-379.08],[-243.99,-368],[-248.42,-348.07],[-252.96,-327.91],[-256.07,-307.52],[-254.94,-286.93],[-250.53,-267.12],[-245.81,-248.42],[-240.79,-230],[-235.3,-213.47],[-228.32,-199.71],[-223.31,-192.12],[-219.43,-187.73],[-212.41,-179.24],[-204.96,-168.81],[-198.69,-154.63],[-192.83,-135.89],[-187.99,-124.42],[-183.69,-115.49],[-178.61,-105.11],[-173.54,-96.08],[-169.09,-97.97],[-163.79,-106.49],[-157.4,-120.39],[-148.66,-171.83],[-161.5,-238.81],[-182.92,-268.11],[-192.68,-296.22],[-204.33,-322.11],[-212.22,-336.19],[-214.18,-339.15],[-218.76,-344.95],[-221.72,-351.82],[-225.95,-357.26],[-228.71,-363.79],[-232.95,-369.26]],"o":[[-242.28,-374.21],[-247.06,-354.92],[-251.42,-334.65],[-255.28,-314.34],[-255.92,-293.87],[-252.24,-273.56],[-247.42,-254.67],[-242.5,-236.08],[-237.39,-218.62],[-230.77,-204.02],[-224.59,-193.75],[-220.73,-189.11],[-215.18,-182.58],[-207.3,-172.36],[-200.53,-160.19],[-194.84,-142.48],[-189.15,-126.93],[-185.26,-118.71],[-180.58,-109.07],[-175.09,-98.62],[-171.19,-95.73],[-165.38,-103.36],[-159.97,-113.79],[-146.68,-148.08],[-155.09,-222.21],[-177.03,-261.28],[-191.39,-286.57],[-199.29,-313.71],[-210.34,-332.26],[-213.8,-337.84],[-217.01,-342.09],[-221.32,-349.2],[-224.03,-355.75],[-228.3,-361.15],[-231.03,-367.75],[-236.13,-374.53]],"v":[[-240,-380],[-245.52,-361.46],[-250,-341],[-254.12,-321.12],[-256,-301],[-253.59,-280.24],[-249,-261],[-244.16,-242.25],[-239,-224],[-233.04,-208.75],[-226,-196],[-222.02,-190.61],[-218,-186],[-209.85,-175.8],[-203,-165],[-196.77,-148.56],[-190,-129],[-186.63,-121.56],[-182,-112],[-176.85,-101.86],[-173,-96],[-167.24,-100.67],[-163,-108],[-156,-124],[-152,-198],[-172,-254],[-187,-277],[-196,-305],[-209,-330],[-213,-337],[-215,-340],[-220,-347],[-223,-354],[-227,-359],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":62,"s":[{"i":[[-236.88,-379.08],[-243.99,-368],[-248.43,-348.08],[-252.9,-328.25],[-256.05,-308.41],[-254.95,-287.91],[-250.52,-268.1],[-243.15,-237.68],[-231.71,-203.96],[-224.29,-193.55],[-221.89,-190.14],[-217.17,-184.45],[-211.32,-177.84],[-208.07,-173.34],[-205.72,-170.07],[-204.26,-167.73],[-203.33,-165.67],[-198.77,-154.48],[-192.82,-135.72],[-187.99,-124.42],[-183.72,-115.48],[-178.56,-105.18],[-173.46,-96.07],[-166.22,-101.68],[-156.67,-122.27],[-149.59,-147.61],[-150.21,-184.89],[-161.25,-238.47],[-182.72,-268.08],[-193.42,-298.07],[-210.22,-330.4],[-216.76,-341.61],[-218.89,-346.08],[-222.84,-352.03],[-227.65,-361.99],[-232.89,-369.15]],"o":[[-242.27,-374.21],[-247.07,-354.93],[-251.37,-334.79],[-255.24,-315.06],[-255.94,-294.86],[-252.24,-274.53],[-246.05,-250.19],[-235.98,-214.56],[-225.09,-194.74],[-222.69,-191.26],[-219.26,-186.78],[-213.2,-179.98],[-208.97,-174.56],[-206.45,-171.1],[-204.6,-168.4],[-203.63,-166.37],[-200.61,-160.12],[-194.87,-142.28],[-189.13,-126.93],[-185.29,-118.69],[-180.58,-109.14],[-175,-98.64],[-170.14,-95.55],[-159.49,-115.04],[-151.48,-135.67],[-148.95,-172.22],[-155.32,-222.38],[-176.92,-261.11],[-191.74,-286.88],[-201.88,-319.18],[-215.15,-341.34],[-218.08,-343.75],[-221.19,-350.06],[-226.22,-357.77],[-231.01,-367.72],[-236.13,-374.53]],"v":[[-240,-380],[-245.53,-361.46],[-250,-341],[-254.07,-321.65],[-256,-302],[-253.6,-281.22],[-249,-262],[-239.57,-226.12],[-226,-196],[-223.49,-192.41],[-221,-189],[-215.18,-182.21],[-210,-176],[-207.26,-172.22],[-205,-169],[-203.94,-167.05],[-203,-165],[-196.82,-148.38],[-190,-129],[-186.64,-121.56],[-182,-112],[-176.78,-101.91],[-173,-96],[-162.86,-108.36],[-156,-124],[-149.27,-159.92],[-152,-198],[-172,-254],[-187,-277],[-197,-307],[-215,-341],[-217,-342],[-220,-348],[-224,-354],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":63,"s":[{"i":[[-235.69,-377.19],[-244,-368.02],[-248.38,-348.08],[-252.96,-328.26],[-256.09,-308.38],[-254.88,-287.98],[-250.47,-268.07],[-245.88,-249],[-240.94,-230.11],[-233.34,-209],[-222.41,-191.46],[-215.08,-182.45],[-211.01,-177.4],[-208.12,-173.41],[-205.7,-170.04],[-204.26,-167.73],[-203.33,-165.67],[-198.8,-154.46],[-192.87,-135.7],[-185.45,-119.07],[-173.87,-96.14],[-165.73,-104.75],[-157.24,-120.3],[-149.33,-147.93],[-150.33,-182.03],[-155.02,-217.08],[-165.73,-245.24],[-182.61,-267.85],[-193.62,-293.74],[-196.92,-307.36],[-201.57,-315.16],[-208.83,-329.85],[-214.34,-337.96],[-216.13,-342.57],[-220.25,-349.09],[-228.27,-360.97]],"o":[[-242.31,-374.23],[-247.04,-354.95],[-251.41,-334.82],[-255.3,-315.04],[-255.9,-294.95],[-252.17,-274.54],[-247.41,-255.44],[-242.64,-236.33],[-236.39,-215.77],[-226.35,-196.84],[-216.58,-184.24],[-212.3,-179.03],[-209.02,-174.64],[-206.46,-171.11],[-204.6,-168.4],[-203.63,-166.37],[-200.61,-160.11],[-194.93,-142.26],[-188.22,-124.86],[-179.21,-106.28],[-168.58,-95.31],[-160.71,-114.16],[-151.33,-135.36],[-148.59,-170.47],[-153.57,-205.22],[-160.87,-236.56],[-176.22,-260.69],[-190.82,-284.97],[-196.89,-303.73],[-199.07,-312.62],[-206.24,-324.43],[-213.12,-336.82],[-215.83,-340.31],[-218.7,-346.79],[-224.34,-355.9],[-233.23,-369.65]],"v":[[-240,-380],[-245.52,-361.48],[-250,-341],[-254.13,-321.65],[-256,-302],[-253.53,-281.26],[-249,-262],[-244.26,-242.67],[-239,-224],[-229.85,-202.92],[-218,-186],[-213.69,-180.74],[-210,-176],[-207.29,-172.26],[-205,-169],[-203.94,-167.05],[-203,-165],[-196.86,-148.36],[-190,-129],[-182,-112],[-173,-96],[-164,-108],[-155,-126],[-149,-158],[-152,-194],[-158,-227],[-171,-253],[-187,-277],[-196,-301],[-198,-310],[-203,-318],[-212,-335],[-215,-339],[-217,-344],[-222,-352],[-230,-364]],"c":true}],"h":1},{"t":64,"s":[{"i":[[-236.95,-379.17],[-243.87,-368.3],[-248.48,-348.77],[-252.88,-329.47],[-256,-310.24],[-255.39,-293.29],[-252.78,-277.79],[-249.73,-264.15],[-246.08,-250.54],[-242.84,-236.66],[-239.38,-223.05],[-234.78,-210.77],[-228.39,-199.36],[-219.24,-187.51],[-208.86,-175.01],[-200.66,-158.65],[-193.71,-138.48],[-187.84,-125.2],[-183.7,-116.51],[-178.42,-105.47],[-173.57,-96.09],[-166.22,-102.85],[-150.11,-136.67],[-152.02,-197.15],[-158.91,-227.16],[-162.79,-240.55],[-166.01,-245.41],[-182.74,-267.76],[-195.8,-303.83],[-205.89,-325.32],[-209.76,-330.59],[-211.93,-335.17],[-217.74,-344.45],[-222.8,-352.01],[-227.82,-362.29],[-232.85,-369.08]],"o":[[-242.13,-374.41],[-247.05,-355.48],[-251.38,-335.85],[-255.19,-316.67],[-256,-298.9],[-253.78,-282.74],[-250.94,-268.88],[-247.3,-254.98],[-243.9,-241.38],[-240.58,-227.49],[-236.59,-214.84],[-230.68,-203.03],[-222.8,-191.5],[-212.27,-179.26],[-202.81,-164.41],[-196.11,-145.69],[-188.99,-127.7],[-185.19,-119.61],[-180.39,-109.67],[-175.01,-98.68],[-169.67,-95.44],[-156.22,-121.52],[-147.91,-173.05],[-156.59,-221.46],[-162.38,-236.87],[-164.68,-244.38],[-173.84,-257.94],[-193.59,-290.94],[-202.56,-318.59],[-208.15,-330.34],[-211.04,-332.76],[-215.63,-341.51],[-221.3,-350.04],[-226.26,-357.75],[-231.12,-367.9],[-236,-374.32]],"v":[[-240,-380],[-245.46,-361.89],[-250,-342],[-254.03,-323.07],[-256,-304],[-254.59,-288.01],[-252,-274],[-248.51,-259.57],[-245,-246],[-241.71,-232.07],[-238,-219],[-232.73,-206.9],[-226,-196],[-215.75,-183.39],[-206,-170],[-198.38,-152.17],[-190,-130],[-186.52,-122.4],[-182,-113],[-176.72,-102.08],[-173,-96],[-164,-107],[-149,-155],[-155,-213],[-161,-233],[-164,-243],[-167,-247],[-188,-279],[-200,-313],[-208,-330],[-210,-331],[-213,-337],[-220,-348],[-224,-354],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":65,"s":[{"i":[[-236.45,-377.5],[-243.25,-370.31],[-247.64,-353.99],[-251.48,-337.33],[-254.63,-320.9],[-255.06,-293.92],[-249.85,-266.05],[-245.69,-248.09],[-242.09,-233.28],[-239.62,-225.94],[-234.41,-208.67],[-229.32,-202.43],[-228.55,-199.76],[-224.38,-193.8],[-221.58,-190.73],[-208,-175.14],[-196.72,-144.41],[-185.53,-119.07],[-173.23,-96.04],[-166.07,-103.18],[-158.09,-117.47],[-156.02,-125.14],[-147.86,-154.01],[-156.99,-229.54],[-172.7,-255.54],[-176.46,-260.25],[-178.11,-264.71],[-180.63,-266.6],[-181.34,-269],[-183.65,-270.53],[-184.56,-273.3],[-194.19,-294.44],[-197.9,-309.31],[-202.47,-316.97],[-206.49,-326.27],[-223.49,-354.1]],"o":[[-241.68,-375.32],[-246.23,-359.65],[-250.16,-342.87],[-253.71,-326.34],[-255.88,-304.39],[-252.05,-274.75],[-246.89,-253.2],[-243.29,-238.13],[-240.48,-226.96],[-236.59,-216.42],[-230.75,-202.59],[-228.37,-201.16],[-226.18,-196.48],[-222.5,-191.35],[-215.16,-182.68],[-198.67,-156.16],[-187.83,-124.02],[-178.76,-105.51],[-169.89,-95.46],[-161.31,-111.97],[-155.98,-122.37],[-150.54,-140.54],[-150.52,-193.73],[-167.44,-249.7],[-175.61,-259.92],[-177.83,-262.18],[-179.29,-266.42],[-181.76,-267.82],[-182.29,-270.44],[-184.58,-271.77],[-190.09,-282.17],[-198.01,-306.08],[-200.08,-314.63],[-205.4,-322.77],[-214.75,-341.17],[-232.83,-369.73]],"v":[[-240,-380],[-244.74,-364.98],[-249,-348],[-252.59,-331.83],[-255,-316],[-253.55,-284.33],[-248,-258],[-244.49,-243.11],[-241,-229],[-239,-224],[-231,-203],[-229,-202],[-228,-199],[-223,-192],[-221,-190],[-204,-167],[-190,-129],[-182,-112],[-173,-96],[-164,-107],[-157,-120],[-155,-128],[-149,-171],[-165,-245],[-175,-259],[-177,-261],[-179,-266],[-181,-267],[-182,-270],[-184,-271],[-185,-274],[-197,-303],[-199,-312],[-204,-320],[-208,-329],[-230,-365]],"c":true}],"h":1},{"t":66,"s":[{"i":[[-237.01,-377.34],[-243.25,-370.36],[-247.57,-354.11],[-254.25,-326.5],[-251.91,-276.74],[-243.73,-235.52],[-227.97,-199.42],[-210.9,-178.64],[-198,-149.93],[-193.2,-138.51],[-193.27,-135.89],[-191.21,-133.49],[-190.71,-129.63],[-187.74,-125.55],[-175.15,-96.37],[-165.55,-103.23],[-159.55,-116.47],[-149.79,-141.55],[-149.97,-178.67],[-157.43,-225.51],[-164.02,-243.05],[-169.67,-250.97],[-172.16,-256.77],[-174.63,-258.6],[-175.32,-261.05],[-177.61,-262.58],[-180.63,-267.99],[-186.45,-275.83],[-195.72,-302.76],[-205.95,-325.45],[-209.76,-330.59],[-211.87,-335.06],[-217.87,-344.52],[-221.31,-351.48],[-223.76,-353.6],[-227.61,-362.02]],"o":[[-241.71,-375.31],[-246.17,-359.76],[-251.35,-337.98],[-256.67,-292.76],[-245.42,-247.3],[-235.77,-210.95],[-215.84,-184.76],[-202.31,-164],[-194.89,-139.63],[-192.66,-137.13],[-192.89,-134.63],[-190.27,-131.3],[-189.37,-126.54],[-184.37,-118.53],[-170.6,-95.59],[-160.46,-112.33],[-153.84,-129.5],[-147.53,-168.68],[-154.4,-207.72],[-163.18,-239.97],[-166.43,-247.85],[-171.88,-254.34],[-173.29,-258.42],[-175.75,-259.8],[-176.31,-262.43],[-180,-265.15],[-184.17,-273.19],[-193.66,-290.59],[-202.29,-318.49],[-208.16,-330.35],[-211.03,-332.78],[-215.55,-341.37],[-221.23,-350.01],[-222.15,-353.34],[-226.32,-357.87],[-232.68,-370.46]],"v":[[-240,-380],[-244.71,-365.06],[-249,-348],[-255,-316],[-248,-259],[-240,-224],[-221,-191],[-207,-172],[-195,-140],[-193,-138],[-193,-135],[-191,-133],[-190,-128],[-187,-124],[-173,-96],[-164,-106],[-158,-120],[-149,-151],[-152,-192],[-162,-237],[-165,-245],[-171,-253],[-173,-258],[-175,-259],[-176,-262],[-178,-263],[-182,-270],[-188,-279],[-200,-313],[-208,-330],[-210,-331],[-213,-337],[-220,-348],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":67,"s":[{"i":[[-236.99,-377.31],[-243.39,-370.14],[-247.62,-353.82],[-251.56,-337.3],[-254.63,-321.13],[-255.25,-297.55],[-251.6,-272.99],[-247.85,-255.48],[-244.12,-241.56],[-239.09,-222.44],[-231.61,-205.27],[-225.56,-196.68],[-221.47,-191.8],[-218.16,-187.46],[-215.76,-183.81],[-210.75,-177.72],[-204.31,-167.03],[-198.6,-150.97],[-189.81,-129.56],[-174.63,-96.28],[-169.95,-97.44],[-159.83,-115.82],[-149.91,-140.18],[-150.02,-179.79],[-159.44,-231.96],[-167.99,-248.33],[-170.13,-253.7],[-172.64,-255.53],[-173.48,-258.25],[-184.3,-271.65],[-194.92,-297.21],[-206.58,-327.19],[-217.54,-344.16],[-221.31,-351.48],[-223.76,-353.6],[-227.73,-362.22]],"o":[[-241.82,-375.22],[-246.29,-359.44],[-250.24,-342.74],[-253.75,-326.5],[-255.69,-306.3],[-253.2,-280.9],[-249.04,-260.2],[-245.39,-246.16],[-241.04,-229.05],[-234.38,-210.55],[-226.82,-198.28],[-222.88,-193.44],[-219.03,-188.81],[-216.52,-184.96],[-212.37,-180.19],[-206.76,-171.52],[-199.98,-157.01],[-193.22,-136.55],[-181.67,-113.38],[-171.1,-95.67],[-163.54,-105.86],[-153.9,-129.37],[-147.51,-165.97],[-155.11,-211.16],[-165.93,-247.17],[-169.72,-251.19],[-171.3,-255.45],[-173.62,-256.83],[-178.8,-265.88],[-192.47,-287.88],[-201.41,-315.75],[-214.18,-338.9],[-221.27,-349.98],[-222.15,-353.34],[-226.27,-357.71],[-232.71,-370.5]],"v":[[-240,-380],[-244.84,-364.79],[-249,-348],[-252.66,-331.9],[-255,-316],[-254.22,-289.22],[-250,-265],[-246.62,-250.82],[-243,-237],[-236.74,-216.49],[-228,-200],[-224.22,-195.06],[-220,-190],[-217.34,-186.21],[-215,-183],[-209,-175],[-203,-164],[-196,-144],[-185,-120],[-173,-96],[-168,-100],[-158,-120],[-149,-150],[-152,-192],[-165,-245],[-169,-250],[-171,-255],[-173,-256],[-174,-259],[-188,-279],[-198,-306],[-211,-334],[-220,-348],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":68,"s":[{"i":[[-236.99,-377.31],[-243.42,-370.23],[-247.54,-354.07],[-254.23,-326.7],[-253.73,-286.55],[-245.13,-243.24],[-240.54,-227.7],[-234.55,-207.71],[-230.7,-203.04],[-226,-198.25],[-223.97,-194.22],[-214.85,-184.1],[-211.25,-179.35],[-209.58,-175.28],[-207.24,-173.41],[-198.6,-149.52],[-189.48,-129.16],[-175.35,-96.4],[-164.98,-104.24],[-159.36,-116.89],[-147.32,-152.24],[-153.39,-200.49],[-161.84,-239.55],[-169.01,-250.49],[-171.05,-255.61],[-173.64,-257.52],[-174.45,-260.24],[-177.06,-263.68],[-182.3,-269.46],[-185.08,-275.55],[-188.24,-279.43],[-194.91,-299.45],[-212.76,-337.4],[-221.38,-351.62],[-223.76,-353.61],[-227.72,-362.21]],"o":[[-241.9,-375.19],[-246.24,-359.67],[-251.4,-338.05],[-256.26,-298.42],[-248.43,-258.32],[-241.59,-229.4],[-237.43,-217.93],[-230.23,-203.2],[-228.76,-200.14],[-223.95,-195.69],[-219.71,-188.86],[-212.86,-179.69],[-209.85,-177.4],[-208.84,-173.65],[-200.94,-162.53],[-192.13,-133.31],[-183.95,-117.66],[-170.14,-95.51],[-160.52,-112.23],[-151.07,-135.86],[-149.97,-186.54],[-158.82,-226.53],[-167.72,-250.32],[-170.93,-253.41],[-172.31,-257.45],[-174.64,-258.85],[-175.96,-262.32],[-179.73,-267.44],[-184.95,-273.42],[-187,-278.57],[-193.47,-290.18],[-203.28,-322.59],[-221.1,-350.76],[-222.15,-353.34],[-226.26,-357.65],[-232.71,-370.5]],"v":[[-240,-380],[-244.83,-364.95],[-249,-348],[-255,-316],[-251,-272],[-242,-231],[-240,-226],[-231,-204],[-230,-202],[-225,-197],[-223,-193],[-213,-180],[-211,-179],[-209,-174],[-207,-173],[-194,-138],[-187,-124],[-173,-96],[-164,-106],[-158,-120],[-149,-174],[-156,-213],[-167,-249],[-170,-252],[-172,-257],[-174,-258],[-175,-261],[-178,-265],[-184,-272],[-186,-277],[-189,-281],[-198,-308],[-220,-349],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":69,"s":[{"i":[[-234.31,-374.97],[-243.39,-370.44],[-247.52,-354.1],[-252.83,-331.88],[-255.73,-306.52],[-253,-281.54],[-247.65,-257],[-244.52,-240.79],[-242.19,-228.64],[-237.62,-216.38],[-230.98,-204.63],[-228.01,-200.68],[-226.49,-198.63],[-219.58,-189.99],[-210.46,-178.19],[-202.53,-162.49],[-195.25,-141.51],[-186.87,-122.83],[-173.98,-96.16],[-168.42,-100.1],[-161.34,-111.19],[-157.42,-122.32],[-153.69,-129.08],[-149.84,-142.49],[-150.88,-187.54],[-161.16,-238.13],[-169.28,-250.81],[-171.05,-255.59],[-173.64,-257.53],[-174.48,-260.25],[-185.35,-273.57],[-197.3,-304.27],[-208.9,-331.14],[-215.99,-341.36],[-220.71,-351.31],[-224.51,-356.34]],"o":[[-241.88,-375.39],[-246.21,-359.8],[-250.97,-339.87],[-255.22,-315.2],[-254.43,-289.55],[-249.61,-265.27],[-245.17,-244.97],[-243.03,-232.63],[-239.63,-220.82],[-233.3,-208.29],[-228.52,-201.36],[-227,-199.31],[-222.85,-193.89],[-213.38,-182.14],[-204.91,-168.73],[-197.71,-148.88],[-189.8,-128.93],[-180.09,-109.11],[-170.07,-95.52],[-164.12,-107.02],[-158.04,-118.12],[-155.35,-127.7],[-150.99,-136.57],[-146.29,-170.09],[-158.06,-223.23],[-167.66,-250.22],[-171.08,-253.78],[-172.3,-257.45],[-174.62,-258.83],[-179.81,-267.9],[-194.14,-291.46],[-204.14,-322.27],[-214.02,-339.71],[-219.42,-346.94],[-223.34,-355.54],[-230.28,-364.06]],"v":[[-240,-380],[-244.8,-365.12],[-249,-348],[-254.02,-323.54],[-255,-297],[-251.3,-273.41],[-246,-249],[-243.77,-236.71],[-241,-225],[-235.46,-212.34],[-229,-202],[-227.5,-199.99],[-226,-198],[-216.48,-186.07],[-208,-174],[-200.12,-155.68],[-192,-134],[-183,-115],[-173,-96],[-166,-104],[-160,-114],[-156,-126],[-153,-131],[-149,-149],[-155,-208],[-167,-249],[-170,-252],[-172,-257],[-174,-258],[-175,-261],[-189,-281],[-201,-314],[-213,-338],[-217,-343],[-223,-355],[-225,-357]],"c":true}],"h":1},{"t":70,"s":[{"i":[[-236.98,-377.29],[-243.45,-370.26],[-247.54,-354.14],[-252.56,-332.98],[-255.59,-308.84],[-252.89,-282.29],[-247.36,-254.23],[-245.62,-244.19],[-245.28,-240.23],[-239.32,-220.4],[-226.14,-197.3],[-218.35,-188.06],[-214.16,-183.63],[-210.54,-178.52],[-206.95,-172.87],[-201.51,-160.26],[-196.09,-143.01],[-191.19,-131.87],[-186.63,-123.33],[-181.03,-111.16],[-173.92,-96.15],[-170.07,-96.83],[-167.35,-102.77],[-164.08,-108],[-160.82,-113.27],[-152.78,-131.64],[-150.1,-180.58],[-160.27,-234.12],[-171.98,-256.79],[-177.24,-264.32],[-179.75,-266.64],[-184.94,-274.39],[-197.45,-305.31],[-215.98,-342.75],[-225.78,-357.08],[-228.7,-363.84]],"o":[[-241.93,-375.19],[-246.26,-359.74],[-250.76,-340.57],[-254.97,-317.12],[-254.46,-291.92],[-249.33,-263.44],[-245.73,-245.58],[-245.4,-241.51],[-242.76,-229.25],[-231.01,-204.42],[-219.77,-189.5],[-215.55,-185.13],[-211.81,-180.33],[-208.11,-174.79],[-203.46,-166.01],[-197.83,-148.76],[-192.62,-134.71],[-188.2,-126.18],[-183.57,-117.09],[-176.2,-100.69],[-171.14,-95.7],[-168.17,-100.37],[-165.17,-106.37],[-161.91,-111.45],[-156.18,-123.02],[-145.1,-163.33],[-157.98,-219.86],[-167.57,-250.92],[-176.46,-263.04],[-178.14,-266.32],[-182.71,-270.92],[-194.44,-291.06],[-208.83,-331.32],[-224.16,-355.86],[-228.27,-361.01],[-232.74,-370.56]],"v":[[-240,-380],[-244.85,-365],[-249,-348],[-253.77,-325.05],[-255,-300],[-251.11,-272.87],[-246,-247],[-245.51,-242.85],[-245,-239],[-235.17,-212.41],[-221,-191],[-216.95,-186.6],[-213,-182],[-209.32,-176.65],[-206,-171],[-199.67,-154.51],[-194,-138],[-189.69,-129.03],[-185,-120],[-178.62,-105.93],[-173,-96],[-169.12,-98.6],[-166,-105],[-163,-109.73],[-160,-115],[-151,-139],[-155,-205],[-165,-245],[-175,-261],[-178,-266],[-180,-267],[-187,-278],[-203,-318],[-223,-354],[-227,-359],[-230,-366]],"c":true}],"h":1},{"t":71,"s":[{"i":[[-235.8,-376.24],[-243.62,-369.94],[-247.49,-353.22],[-252.54,-332.53],[-255.56,-309.62],[-253.26,-285.05],[-248.51,-259.29],[-245.72,-244.67],[-243.56,-236.02],[-242.66,-229],[-236.72,-216.44],[-233.83,-208.37],[-230.1,-204.52],[-228.6,-200.79],[-226.59,-198.78],[-222.43,-192.83],[-218.67,-189.85],[-216.05,-185.49],[-212.2,-180.84],[-199.81,-154.59],[-194.21,-140.5],[-193.66,-136.51],[-190.66,-132.47],[-189.68,-127.56],[-186.73,-123.49],[-175.06,-96.33],[-165.93,-103.3],[-155.88,-124.07],[-150.97,-138.34],[-150.95,-186.77],[-162.77,-241.28],[-171.51,-255.77],[-183.78,-272.35],[-200.65,-316.72],[-212.55,-336.62],[-223.4,-354.57]],"o":[[-242.12,-375.08],[-246.31,-359.01],[-250.76,-339.73],[-254.94,-317.48],[-254.5,-293.41],[-250.26,-267.99],[-246.44,-247.91],[-244.28,-238.73],[-242.35,-231.67],[-240.29,-221.81],[-233.97,-210.94],[-232.1,-205.51],[-228.34,-202.1],[-227.48,-199.32],[-224.11,-195.51],[-220.34,-190.16],[-216.93,-187.66],[-213.69,-182.14],[-204.12,-168.48],[-195.89,-141.63],[-193.36,-138.49],[-192.36,-133.52],[-189.3,-129.45],[-188.46,-124.76],[-183.42,-116.69],[-169.8,-95.48],[-159.76,-115.3],[-152.09,-134.01],[-144.89,-167.56],[-159.44,-225.85],[-169.31,-253.43],[-178.16,-265.72],[-196.67,-295.74],[-210.36,-334.5],[-218.86,-346.98],[-231.66,-367.92]],"v":[[-240,-380],[-244.96,-364.47],[-249,-347],[-253.74,-325.01],[-255,-301],[-251.76,-276.52],[-247,-251],[-245,-241.7],[-243,-234],[-242,-227],[-235,-213],[-233,-207],[-229,-203],[-228,-200],[-226,-198],[-221,-191],[-218,-189],[-215,-184],[-211,-179],[-196,-142],[-194,-140],[-193,-135],[-190,-131],[-189,-126],[-186,-122],[-173,-96],[-163,-109],[-154,-129],[-150,-143],[-156,-210],[-168,-251],[-173,-258],[-188,-280],[-209,-332],[-214,-339],[-228,-362]],"c":true}],"h":1},{"t":72,"s":[{"i":[[-235.9,-376.39],[-243.63,-369.94],[-247.46,-353.21],[-251.62,-336.63],[-254.7,-320.5],[-254.55,-293.65],[-248.87,-263.64],[-245.58,-244.27],[-243.22,-231.85],[-239.8,-222.26],[-235.99,-214.99],[-234.22,-210.87],[-233.4,-207.65],[-232.45,-206.65],[-231.16,-206.22],[-230.57,-205.01],[-230.29,-203.38],[-227.63,-200.14],[-224.01,-196.26],[-222.33,-194.29],[-221.26,-193.34],[-220.6,-192.05],[-220.34,-190.43],[-217.65,-187.32],[-214.06,-183.52],[-200.62,-152.91],[-185.66,-121.28],[-174.46,-96.24],[-166.73,-102.62],[-149.07,-137.56],[-151.52,-192.24],[-163.91,-243.84],[-175.74,-262.58],[-186.38,-276.17],[-197.26,-304.02],[-219.23,-347.83]],"o":[[-242.15,-375.08],[-246.28,-359],[-250.27,-341.88],[-253.83,-325.94],[-255.62,-303.83],[-251.18,-273.55],[-246.22,-248.6],[-244.08,-235.9],[-241.05,-225.01],[-237.27,-217.24],[-234.52,-212.05],[-233.66,-208.67],[-232.87,-206.79],[-231.6,-206.36],[-230.68,-205.57],[-230.38,-203.92],[-228.87,-201.51],[-225.19,-197.51],[-222.69,-194.62],[-221.61,-193.65],[-220.69,-192.59],[-220.43,-190.97],[-218.87,-188.56],[-215.25,-184.81],[-202.41,-166.85],[-188.76,-127.13],[-178.39,-106.83],[-169.47,-95.43],[-155.94,-123.9],[-146.93,-176.37],[-159.58,-227.78],[-171.81,-258.05],[-182.44,-271.67],[-194.79,-291.68],[-208.79,-333.14],[-231.57,-367.77]],"v":[[-240,-380],[-244.96,-364.47],[-249,-347],[-252.73,-331.28],[-255,-315],[-252.87,-283.6],[-247,-253],[-244.83,-240.08],[-242,-228],[-238.53,-219.75],[-235,-213],[-233.94,-209.77],[-233,-207],[-232.03,-206.51],[-231,-206],[-230.47,-204.47],[-230,-203],[-226.41,-198.83],[-223,-195],[-221.97,-193.97],[-221,-193],[-220.52,-191.51],[-220,-190],[-216.45,-186.06],[-213,-182],[-191,-132],[-182,-114],[-173,-96],[-164,-108],[-148,-157],[-156,-212],[-169,-253],[-179,-267],[-189,-281],[-202,-316],[-228,-362]],"c":true}],"h":1},{"t":73,"s":[{"i":[[-238.95,-380.35],[-243.74,-369.53],[-247.58,-352.7],[-251.65,-336.56],[-254.72,-320.53],[-254.8,-300],[-251.87,-278.09],[-248.21,-253.35],[-242.04,-227.17],[-236.37,-214.4],[-232.3,-207.85],[-227.17,-200.52],[-221.66,-192.99],[-214.46,-183.96],[-207.86,-173.04],[-204.57,-165.54],[-202.75,-160.06],[-199.42,-151.36],[-194.73,-140.77],[-190.53,-131.15],[-186.13,-120.42],[-180.2,-108.52],[-173.31,-96.05],[-167.81,-99.39],[-161.9,-113.14],[-157.06,-122.86],[-151.85,-133.98],[-148.33,-150.71],[-151.99,-191.67],[-163.44,-242.99],[-175.65,-262.35],[-186.19,-276.8],[-197.18,-302.88],[-213.49,-339.53],[-221.59,-351.33],[-232.61,-371.23]],"o":[[-242.2,-374.93],[-246.43,-358.41],[-250.29,-341.79],[-253.87,-325.93],[-255.37,-307.71],[-253.05,-285.19],[-249.68,-262.77],[-244.38,-235.56],[-237.72,-216.98],[-233.66,-209.83],[-229.09,-203.28],[-223.45,-195.38],[-217.02,-187.44],[-209.87,-176.76],[-205.2,-167.26],[-203.35,-161.94],[-200.8,-154.72],[-196.38,-144.38],[-191.71,-134.19],[-187.74,-124.26],[-182.79,-113.49],[-175.46,-99.8],[-170.36,-95.57],[-163.58,-108.17],[-159.14,-118.87],[-153.41,-130.41],[-149.38,-142.76],[-146.28,-177.61],[-160.56,-228.16],[-171.64,-257.75],[-182.5,-271.87],[-194.26,-291.74],[-206.09,-326.48],[-220.37,-350.6],[-227.76,-361.38],[-239.32,-379.39]],"v":[[-240,-380],[-245.09,-363.97],[-249,-347],[-252.76,-331.24],[-255,-315],[-253.92,-292.59],[-251,-272],[-246.29,-244.45],[-239,-220],[-235.01,-212.12],[-231,-206],[-225.31,-197.95],[-220,-191],[-212.17,-180.36],[-206,-169],[-203.96,-163.74],[-202,-158],[-197.9,-147.87],[-193,-137],[-189.13,-127.7],[-184,-116],[-177.83,-104.16],[-173,-96],[-165.69,-103.78],[-161,-115],[-155.24,-126.64],[-151,-137],[-148,-155],[-157,-213],[-169,-253],[-179,-267],[-189,-282],[-201,-313],[-220,-350],[-222,-352],[-239,-379]],"c":true}],"h":1},{"t":74,"s":[{"i":[[-234.72,-374.76],[-243.53,-369.45],[-248.45,-352.28],[-252.56,-334.83],[-254.98,-316.89],[-254.17,-297.97],[-250.81,-278.43],[-248.44,-258.58],[-245.6,-239.81],[-240.34,-222.58],[-233,-208.21],[-223.53,-195.76],[-213.73,-183.66],[-207.65,-172.6],[-203.44,-161.9],[-199.4,-151.35],[-194.74,-140.79],[-191.46,-133.83],[-188.89,-128.87],[-183.55,-116.36],[-174.45,-96.24],[-167.81,-99.39],[-161.9,-113.14],[-157.06,-122.86],[-151.85,-133.98],[-147.67,-156.52],[-150.14,-185.64],[-153.63,-201.12],[-156.19,-211.64],[-163.77,-243.8],[-177.84,-265.2],[-181.75,-270.64],[-185.62,-275.94],[-189.28,-282.61],[-202.36,-319.44],[-220.48,-349.77]],"o":[[-241.8,-374.81],[-246.85,-358.19],[-251.32,-340.63],[-254.39,-322.95],[-255.02,-304.51],[-252.07,-284.93],[-249.14,-265.17],[-246.67,-245.9],[-242.34,-227.97],[-235.68,-212.7],[-226.92,-199.68],[-216.94,-187.75],[-209.18,-175.9],[-204.79,-165.6],[-200.78,-154.71],[-196.38,-144.39],[-192.27,-135.4],[-189.77,-130.57],[-186.57,-123.99],[-177.49,-102.48],[-170.36,-95.57],[-163.58,-108.17],[-159.14,-118.87],[-153.41,-130.41],[-148.35,-146.45],[-148.56,-176.12],[-152.79,-197.55],[-155.33,-208.17],[-160.46,-229.29],[-172.75,-259.96],[-180.14,-270.32],[-183.88,-273.72],[-188.42,-280.13],[-198.87,-301.17],[-215.14,-342.45],[-229.94,-364.88]],"v":[[-240,-380],[-245.19,-363.82],[-250,-346],[-253.48,-328.89],[-255,-311],[-253.12,-291.45],[-250,-272],[-247.55,-252.24],[-244,-234],[-238.01,-217.64],[-230,-204],[-220.24,-191.76],[-211,-179],[-206.22,-169.1],[-202,-158],[-197.89,-147.87],[-193,-137],[-190.61,-132.2],[-188,-127],[-180.52,-109.42],[-173,-96],[-165.69,-103.78],[-161,-115],[-155.24,-126.64],[-151,-137],[-148.12,-166.32],[-152,-194],[-154.48,-204.64],[-157,-215],[-170,-255],[-180,-270],[-182,-271],[-187,-278],[-190,-284],[-211,-335],[-225,-357]],"c":true}],"h":1},{"t":75,"s":[{"i":[[-237.41,-378.78],[-245.24,-363.75],[-251.62,-338.74],[-254.68,-310.51],[-252.25,-281.73],[-249.15,-258.85],[-245.51,-240.5],[-240.27,-223.32],[-233.02,-209.32],[-223.54,-196.44],[-213.8,-183.77],[-205.09,-166.91],[-196.82,-145.14],[-189.77,-130.45],[-184.29,-118.25],[-182.5,-113.44],[-181.11,-112.24],[-178.25,-105.72],[-173.55,-96.09],[-170.01,-97.29],[-165.27,-104.52],[-161.02,-113.21],[-157,-122.67],[-153.18,-132.19],[-148.46,-148.05],[-148.75,-178],[-157.59,-219.13],[-171.93,-257.85],[-187.14,-278.7],[-201.79,-319.03],[-211.52,-335.17],[-217.22,-345.58],[-224.74,-357.41],[-228.4,-363.68],[-230.76,-365.61],[-232.87,-370.12]],"o":[[-242.68,-371.88],[-249.71,-347.18],[-254.56,-320.14],[-253.53,-291.3],[-250.14,-265.35],[-246.83,-246.43],[-242.26,-228.66],[-235.65,-213.65],[-226.89,-200.55],[-216.99,-188.05],[-207.68,-173.33],[-199.66,-152.81],[-191.63,-134.07],[-186.1,-122.54],[-182.94,-113.82],[-181.58,-112.65],[-179.98,-109.67],[-175.04,-98.93],[-171.62,-95.78],[-166.83,-101.66],[-162.52,-109.88],[-158.26,-119.61],[-154.16,-129.28],[-150.22,-141.71],[-146.2,-172.27],[-155.17,-205.66],[-165.82,-247.79],[-183.61,-273.99],[-199.13,-300.9],[-210.33,-334.61],[-214.95,-341.09],[-222.44,-353.89],[-227.98,-362.56],[-229.15,-365.34],[-232.05,-367.68],[-236.06,-375.43]],"v":[[-240,-380],[-247.47,-355.46],[-253,-330],[-254.11,-300.9],[-251,-272],[-247.99,-252.64],[-244,-235],[-237.96,-218.48],[-230,-205],[-220.27,-192.24],[-211,-179],[-202.37,-159.86],[-193,-137],[-187.93,-126.49],[-183,-114],[-182.04,-113.05],[-181,-112],[-176.65,-102.32],[-173,-96],[-168.42,-99.47],[-164,-107],[-159.64,-116.41],[-156,-125],[-152,-136],[-148,-153],[-152,-192],[-161,-231],[-180,-269],[-190,-284],[-210,-334],[-212,-336],[-220,-350],[-227,-361],[-229,-365],[-231,-366],[-234,-372]],"c":true}],"h":1},{"t":76,"s":[{"i":[[-236.66,-377.76],[-243.59,-369.44],[-248.5,-352.23],[-252.58,-334.72],[-255.01,-316.93],[-254.54,-302.62],[-252.59,-288.84],[-249.47,-261.17],[-243.69,-229.2],[-238.21,-217.29],[-234.54,-210.56],[-232.51,-208.33],[-230.61,-205.83],[-226.29,-200.26],[-220.93,-193.06],[-219.49,-190.68],[-218.12,-190.18],[-216.79,-188.03],[-215.31,-185.33],[-211.89,-180.95],[-209.15,-174.43],[-205.62,-167.22],[-202.01,-159.74],[-198.52,-148.69],[-191.52,-133.12],[-174.9,-96.31],[-167.34,-101.58],[-151.56,-132.65],[-150.31,-187.91],[-165.3,-248.31],[-187.56,-278.77],[-203.76,-320.15],[-211.77,-334.58],[-214.81,-341.17],[-223.63,-354.91],[-229.36,-364.36]],"o":[[-241.84,-374.83],[-246.92,-358.14],[-251.32,-340.51],[-254.42,-322.93],[-254.99,-306.95],[-253.34,-293.57],[-250.63,-272.82],[-246,-239.36],[-239.44,-219.76],[-235.76,-212.69],[-233.2,-209.17],[-231.21,-206.66],[-228.33,-202.73],[-222.59,-195.42],[-219.93,-190.84],[-218.59,-190.35],[-217.38,-189.11],[-215.76,-186.13],[-213.06,-182.98],[-209.94,-176.67],[-206.86,-169.6],[-203.19,-162.29],[-199.24,-152.23],[-194.21,-138.22],[-186.06,-122.08],[-169.83,-95.49],[-158.75,-117.83],[-144.57,-171.85],[-160.71,-228.03],[-181.42,-271.94],[-199.52,-303.65],[-210.16,-334.35],[-213.73,-338.1],[-219.2,-347.94],[-227.87,-362.22],[-233.87,-371.6]],"v":[[-240,-380],[-245.26,-363.79],[-250,-346],[-253.5,-328.83],[-255,-311],[-253.94,-298.1],[-252,-284],[-247.74,-250.26],[-240,-221],[-236.99,-214.99],[-234,-210],[-231.86,-207.5],[-230,-205],[-224.44,-197.84],[-220,-191],[-219.04,-190.51],[-218,-190],[-216.27,-187.08],[-215,-185],[-210.91,-178.81],[-208,-172],[-204.4,-164.75],[-201,-157],[-197,-145],[-188,-126],[-173,-96],[-165,-106],[-149,-147],[-155,-206],[-176,-264],[-192,-288],[-210,-334],[-212,-335],[-216,-343],[-226,-359],[-231,-367]],"c":true}],"h":1},{"t":77,"s":[{"i":[[-236.68,-377.79],[-243.39,-371.14],[-246.66,-356.32],[-250.49,-341.98],[-253.67,-328.61],[-254.19,-304.3],[-250.93,-277.22],[-248.05,-252.84],[-243.45,-230.94],[-235.11,-212.77],[-224.32,-197.58],[-214.95,-185.05],[-208.77,-174.05],[-201.8,-157.47],[-193.71,-137.59],[-189.22,-128.42],[-186.08,-122.22],[-180.84,-110.96],[-173.68,-96.11],[-166.17,-102.26],[-156.61,-124.47],[-151.61,-137.7],[-146.99,-157.59],[-148.25,-177.66],[-153.98,-201.12],[-159.68,-224.19],[-165.48,-245.21],[-171.75,-258.24],[-178.64,-267.74],[-189.59,-283.05],[-203.76,-320.16],[-211.77,-334.57],[-213.07,-339.27],[-216.86,-344.13],[-224.22,-355.93],[-229.37,-364.39]],"o":[[-242.06,-375.73],[-245.69,-361.44],[-249.15,-346.42],[-252.75,-333.07],[-254.72,-313.94],[-252.29,-285.94],[-249.08,-260.87],[-245.24,-237.87],[-238.2,-218.23],[-228.17,-202.44],[-217.31,-188.53],[-210.68,-177.82],[-204.45,-164.17],[-196.43,-144.18],[-190.18,-130.31],[-187.17,-124.37],[-183.5,-116.91],[-175.93,-100.56],[-170.11,-95.53],[-159.41,-116.73],[-153.87,-131.4],[-148.18,-150.79],[-147.01,-170.35],[-151.74,-193.04],[-157.94,-216.58],[-163.45,-238.5],[-169.68,-254.88],[-176.23,-264.67],[-185,-276.53],[-199.62,-303.66],[-210.16,-334.36],[-212.93,-336.73],[-215.04,-342.95],[-220.55,-350.16],[-227.82,-362.14],[-233.77,-371.44]],"v":[[-240,-380],[-244.54,-366.29],[-248,-351],[-251.62,-337.53],[-254,-324],[-253.24,-295.12],[-250,-269],[-246.65,-245.36],[-241,-225],[-231.64,-207.61],[-220,-192],[-212.81,-181.43],[-207,-170],[-199.12,-150.83],[-191,-132],[-188.19,-126.4],[-185,-120],[-178.38,-105.76],[-173,-96],[-162.79,-109.5],[-156,-126],[-149.9,-144.24],[-147,-164],[-149.99,-185.35],[-156,-209],[-161.57,-231.34],[-168,-251],[-173.99,-261.46],[-181,-271],[-192,-288],[-210,-334],[-212,-335],[-214,-341],[-218,-346],[-226,-359],[-231,-367]],"c":true}],"h":1},{"t":78,"s":[{"i":[[-238.4,-379.79],[-243.07,-372.06],[-246.05,-359.22],[-247.51,-354.19],[-248.93,-352.26],[-249.39,-349.79],[-249.74,-346.21],[-250.62,-342.97],[-251.77,-340.14],[-254.17,-318.53],[-251.99,-287.09],[-249.36,-261.07],[-246.14,-238.74],[-237.87,-215],[-232.22,-208.65],[-227.08,-201.4],[-224.25,-198.32],[-222.62,-194.8],[-217.53,-190.23],[-216.23,-186.5],[-214.24,-185.41],[-212.71,-182.23],[-205.25,-165.53],[-193.69,-137.5],[-174.69,-96.27],[-157.21,-122.93],[-146.79,-151.32],[-152.58,-196.06],[-167.65,-251.52],[-186.93,-278.38],[-203.43,-319.42],[-211.77,-334.57],[-212.96,-339.07],[-216.88,-344.18],[-224.65,-357.9],[-232.67,-370.3]],"o":[[-241.8,-376.2],[-245.2,-363.57],[-247.04,-354.81],[-248.45,-352.92],[-249.27,-350.93],[-249.63,-347.43],[-250.23,-343.9],[-251.39,-341.09],[-253.93,-329.24],[-253.2,-297.46],[-250.04,-269.2],[-247.41,-245.84],[-242.21,-226.36],[-233.41,-210.34],[-228.9,-204.15],[-225.87,-198.7],[-223.25,-197.02],[-220.1,-191.55],[-215.69,-187.55],[-215.84,-185.65],[-213.37,-183.91],[-207.63,-173.45],[-198.4,-147.56],[-186.05,-122.05],[-167.23,-95.06],[-151.6,-137.15],[-147.21,-178.52],[-162.39,-233.68],[-181.07,-271.59],[-199.16,-301.27],[-210.16,-334.36],[-213.02,-336.94],[-214.93,-342.73],[-221.58,-351.84],[-230.56,-366.89],[-236.3,-376.06]],"v":[[-240,-380],[-244.14,-367.81],[-247,-355],[-247.98,-353.56],[-249,-352],[-249.51,-348.61],[-250,-345],[-251,-342.03],[-252,-339],[-253.68,-307.99],[-251,-278],[-248.39,-253.45],[-244,-232],[-235,-212],[-231,-207],[-226,-199],[-224,-198],[-222,-194],[-216,-188],[-216,-186],[-214,-185],[-212,-181],[-202,-157],[-188,-126],[-173,-96],[-156,-126],[-147,-165],[-157,-213],[-176,-264],[-191,-286],[-210,-334],[-212,-335],[-214,-341],[-218,-346],[-228,-363],[-235,-374]],"c":true}],"h":1},{"t":79,"s":[{"i":[[-236.65,-377.81],[-243.08,-372.03],[-246.08,-359.11],[-247.51,-354.19],[-248.93,-352.26],[-251.25,-342.8],[-253.67,-328.53],[-254.24,-312.11],[-252.64,-294.07],[-251.04,-275.67],[-249.87,-257.71],[-247.4,-244.04],[-244.03,-233.06],[-238.18,-218.27],[-228.63,-203.7],[-219.43,-191.7],[-212.19,-180.44],[-205.01,-164.12],[-201.36,-156.95],[-200.11,-150.57],[-196.93,-144.01],[-189.45,-128.97],[-174.56,-96.25],[-161.73,-113.13],[-151.79,-134.46],[-147.02,-173.61],[-159.43,-222.05],[-168.56,-252.81],[-178.67,-268.4],[-189.31,-282.91],[-198.16,-304.14],[-208.18,-327.55],[-213.02,-339.18],[-216.86,-344.13],[-218.49,-348.17],[-227.24,-361.1]],"o":[[-241.79,-376.22],[-245.22,-363.47],[-247.04,-354.81],[-248.45,-352.92],[-250.16,-347.54],[-253,-333.3],[-254.42,-318.08],[-253.35,-300.1],[-251.35,-281.81],[-250.3,-263.62],[-248.39,-248.01],[-245.22,-236.56],[-240.87,-223.67],[-232.07,-208.28],[-222.09,-195.23],[-214.49,-184.3],[-207.41,-170.76],[-202.54,-157.82],[-200.1,-153.67],[-198.3,-146.38],[-192.63,-134.72],[-183.31,-116.56],[-167.68,-95.14],[-156.82,-124.09],[-145.12,-158.81],[-155.03,-206.62],[-166.41,-244.89],[-174.6,-263.68],[-185.65,-278.04],[-196.26,-296.07],[-204.04,-320.41],[-212.98,-336.92],[-215.04,-342.95],[-218.6,-346.99],[-223.03,-355.48],[-233.81,-371.41]],"v":[[-240,-380],[-244.15,-367.75],[-247,-355],[-247.98,-353.56],[-249,-352],[-252.13,-338.05],[-254,-324],[-253.79,-306.11],[-252,-288],[-250.67,-269.64],[-249,-252],[-246.31,-240.3],[-243,-230],[-235.12,-213.28],[-225,-199],[-216.96,-188],[-210,-176],[-203,-159],[-201,-156],[-199,-148],[-196,-142],[-186,-122],[-173,-96],[-160,-117],[-150,-141],[-151,-190],[-164,-237],[-172,-259],[-182,-273],[-192,-288],[-201,-312],[-212,-335],[-214,-341],[-218,-346],[-219,-349],[-231,-367]],"c":true}],"h":1},{"t":80,"s":[{"i":[[-236.87,-376.92],[-242.16,-375.18],[-244.26,-367.68],[-248.72,-351.99],[-253.5,-331.04],[-254.2,-303.42],[-250.88,-274.61],[-246.29,-236.45],[-238.8,-218.07],[-235.32,-214.42],[-234.5,-211.73],[-227.32,-203.04],[-224.68,-197.89],[-219.05,-191.96],[-205.62,-166.98],[-200.2,-153.5],[-199,-149.19],[-189.22,-129.66],[-175.02,-96.33],[-161.47,-112.68],[-157.98,-122.64],[-153.85,-129.67],[-152,-138.34],[-148.56,-146.99],[-151.44,-191.89],[-165.93,-247.89],[-177.05,-265.87],[-182.48,-273.1],[-185.27,-277.97],[-197.08,-300.07],[-206.01,-322.73],[-213.16,-337.95],[-219.72,-350.67],[-221.3,-352.91],[-224.36,-355.99],[-227.36,-362.46]],"o":[[-241.27,-377.59],[-243.65,-370.22],[-246.72,-358.73],[-252.11,-338.15],[-254.76,-313.36],[-252.26,-284.04],[-248.65,-250.21],[-240.53,-222.41],[-236.76,-214.6],[-234.39,-213.19],[-231.3,-207],[-224.36,-199.16],[-221.82,-194.13],[-210.3,-179.31],[-201.89,-154.63],[-199.23,-151.13],[-192.92,-135.88],[-180.19,-111.28],[-168.58,-95.28],[-158.46,-119.48],[-155.97,-127.46],[-151.89,-135.06],[-150.22,-144.86],[-143.39,-174.61],[-162.51,-230.91],[-174.04,-262.74],[-180.99,-272.18],[-184.92,-276.15],[-192.63,-288.3],[-203.08,-316.79],[-210.8,-333.01],[-217.58,-345.81],[-221.78,-352.82],[-222.68,-355.05],[-226.66,-359.6],[-232.16,-369.88]],"v":[[-240,-380],[-242.9,-372.7],[-245,-365],[-250.41,-345.07],[-254,-324],[-253.23,-293.73],[-250,-265],[-242,-226],[-237,-215],[-235,-214],[-234,-211],[-225,-200],[-224,-197],[-217,-189],[-202,-155],[-200,-153],[-198,-147],[-183,-117],[-173,-96],[-160,-116],[-157,-125],[-153,-132],[-151,-142],[-148,-150],[-158,-215],[-172,-259],[-179,-269],[-184,-275],[-186,-279],[-201,-311],[-208,-327],[-216,-343],[-221,-352],[-222,-354],[-225,-357],[-229,-365]],"c":true}],"h":1},{"t":81,"s":[{"i":[[-238.4,-379.79],[-245.83,-362.69],[-253.34,-332.77],[-254.15,-311.01],[-252.5,-292.9],[-251.14,-274.47],[-249.86,-256.56],[-245.55,-235.09],[-236.66,-215.25],[-230.17,-206.34],[-225.45,-200.93],[-216.18,-187.51],[-206.56,-168.46],[-198.4,-148.48],[-189.83,-130.13],[-181.84,-112.85],[-173.73,-96.12],[-169.5,-97.43],[-165.42,-106],[-160.75,-115.63],[-155.9,-125.64],[-153.79,-131.21],[-152.43,-134.87],[-149.47,-143.89],[-147.24,-156.44],[-147.57,-180.11],[-155.13,-206.15],[-162.64,-232.77],[-170.59,-256.44],[-176.41,-265.71],[-179.81,-270.3],[-187.56,-280.83],[-203.39,-319.86],[-217.8,-346.91],[-225.74,-359.4],[-232.7,-370.35]],"o":[[-242.66,-372.06],[-251.17,-343.05],[-254.4,-317.05],[-253.2,-298.93],[-251.46,-280.69],[-250.34,-262.41],[-247.72,-242.72],[-240.02,-221.36],[-231.69,-208.12],[-227.04,-202.74],[-219.91,-193.53],[-209.51,-174.98],[-200.99,-154.41],[-192.82,-136.34],[-184.73,-119.29],[-176.34,-101.26],[-171.03,-95.68],[-166.69,-102.59],[-162.55,-112.06],[-157.43,-122.42],[-154.32,-129.77],[-152.84,-133.76],[-150.6,-139.67],[-147.79,-152.27],[-146.25,-171.03],[-152.01,-197.66],[-160.34,-224.05],[-167.76,-248.97],[-175.26,-264.06],[-178.69,-268.83],[-184.08,-276.39],[-199.77,-301.66],[-214.04,-341.05],[-223.48,-355.94],[-230.5,-366.98],[-236.3,-376.06]],"v":[[-240,-380],[-248.5,-352.87],[-254,-323],[-253.67,-304.97],[-252,-287],[-250.74,-268.44],[-249,-251],[-242.78,-228.23],[-233,-210],[-228.6,-204.54],[-224,-199],[-212.85,-181.24],[-204,-162],[-195.61,-142.41],[-186,-122],[-179.09,-107.06],[-173,-96],[-168.09,-100.01],[-164,-109],[-159.09,-119.02],[-155,-128],[-153.32,-132.48],[-152,-136],[-148.63,-148.08],[-147,-160],[-149.79,-188.88],[-158,-216],[-165.2,-240.87],[-174,-262],[-177.55,-267.27],[-181,-272],[-190,-285],[-211,-335],[-221,-352],[-228,-363],[-235,-374]],"c":true}],"h":1},{"t":82,"s":[{"i":[[-238.62,-379.46],[-243.35,-371],[-247.58,-356.54],[-252.67,-333.23],[-253.82,-304.6],[-251.18,-265.93],[-244.56,-229],[-235.41,-213.43],[-229.05,-205.67],[-222.84,-197.59],[-216.76,-189],[-208.22,-172.11],[-199.52,-149],[-191.92,-134],[-186.26,-122.82],[-180.37,-109.98],[-173.66,-96.12],[-168.26,-99.25],[-161.78,-112.25],[-153.25,-131.77],[-146.09,-162.09],[-149.82,-189.78],[-157.66,-212.81],[-164.82,-238.28],[-173.21,-261.25],[-178.76,-269.63],[-181.54,-273.52],[-182.7,-274.96],[-183.59,-276.57],[-186.32,-279.58],[-189.15,-283.57],[-198.02,-301.25],[-207.11,-326.17],[-218.25,-347.24],[-230.52,-366.42],[-235.83,-375.37]],"o":[[-241.81,-375.48],[-246.23,-361.53],[-251.26,-342.18],[-253.95,-314.44],[-251.9,-279.67],[-247.51,-240.59],[-237.38,-216.09],[-231.24,-208.22],[-224.96,-200.34],[-218.74,-191.93],[-210.96,-179.11],[-202.5,-157.05],[-193.54,-137.09],[-188.28,-126.86],[-182.79,-115.42],[-175.8,-100.33],[-170.87,-95.62],[-163.72,-107.57],[-157.21,-122.47],[-147.69,-151.57],[-147.74,-181.88],[-154.78,-205.25],[-162.47,-229.66],[-170.19,-254.08],[-177.74,-268.12],[-180.66,-272.33],[-182.4,-274.42],[-183.29,-276.03],[-185.25,-278.3],[-188.27,-282.22],[-194.72,-292.92],[-204.22,-317.87],[-214.24,-340.53],[-226.39,-360.18],[-235.03,-373.64],[-237.63,-378.28]],"v":[[-240,-380],[-244.79,-366.26],[-249,-351],[-253.31,-323.83],[-253,-294],[-249.34,-253.26],[-239,-219],[-233.33,-210.82],[-227,-203],[-220.79,-194.76],[-215,-186],[-205.36,-164.58],[-195,-140],[-190.1,-130.43],[-184,-118],[-178.09,-105.16],[-173,-96],[-165.99,-103.41],[-161,-114],[-150.47,-141.67],[-147,-173],[-152.3,-197.51],[-160,-221],[-167.51,-246.18],[-177,-267],[-179.71,-270.98],[-182,-274],[-182.99,-275.49],[-184,-277],[-187.29,-280.9],[-190,-285],[-201.12,-309.56],[-211,-334],[-222.32,-353.71],[-234,-372],[-236.73,-376.83]],"c":true}],"h":1},{"t":83,"s":[{"i":[[-236.89,-378.93],[-243.29,-371.18],[-247.6,-356.43],[-252.66,-333.4],[-253.79,-305.32],[-252.31,-286.26],[-251.3,-273.25],[-248.34,-246.2],[-238.85,-218.61],[-232.2,-209.5],[-229.88,-206.21],[-226.29,-201.54],[-222.24,-196.7],[-213.2,-182.22],[-203.85,-160.57],[-195.76,-142.69],[-187.44,-126.26],[-181.3,-112.34],[-173.91,-96.16],[-169.52,-97.36],[-165.44,-105.92],[-156.31,-124.91],[-147.85,-148.84],[-147.24,-180.39],[-155.84,-207.57],[-163.93,-235.36],[-171.66,-258.55],[-177.41,-267.7],[-180.82,-272.34],[-187,-280.81],[-205.6,-325.34],[-216.07,-344.55],[-219.41,-348.03],[-220.27,-351.72],[-223.34,-354.94],[-230.25,-365.71]],"o":[[-241.74,-375.72],[-246.22,-361.54],[-251.26,-342.24],[-253.93,-314.94],[-252.66,-290.63],[-251.63,-277.56],[-250.17,-257.14],[-242.68,-226.93],[-233.01,-210.65],[-230.64,-207.28],[-227.67,-203.18],[-223.57,-198.3],[-216.77,-189.19],[-206.73,-167.92],[-198.54,-148.31],[-190.21,-131.67],[-183.84,-118.51],[-176.33,-101.16],[-171.04,-95.65],[-166.72,-102.49],[-160.14,-117.24],[-150.17,-140.71],[-145.83,-170.61],[-152.25,-198.87],[-161.6,-226.58],[-168.96,-251.34],[-176.25,-266.03],[-179.7,-270.85],[-184.57,-277.64],[-199.77,-301.24],[-215.85,-343.51],[-217.48,-346.75],[-220.78,-350.28],[-221.54,-353.96],[-227.35,-361.37],[-235.15,-373.35]],"v":[[-240,-380],[-244.75,-366.36],[-249,-351],[-253.29,-324.17],[-253,-295],[-251.97,-281.91],[-251,-269],[-245.51,-236.56],[-234,-212],[-231.42,-208.39],[-229,-205],[-224.93,-199.92],[-221,-195],[-209.96,-175.07],[-201,-154],[-192.98,-137.18],[-185,-121],[-178.81,-106.75],[-173,-96],[-168.12,-99.93],[-164,-109],[-153.24,-132.81],[-147,-158],[-149.75,-189.63],[-159,-218],[-166.44,-243.35],[-175,-264],[-178.55,-269.28],[-182,-274],[-189,-284],[-215,-342],[-217,-346],[-220,-349],[-221,-353],[-224,-356],[-233,-370]],"c":true}],"h":1},{"t":84,"s":[{"i":[[-237.53,-379.25],[-246.59,-360.84],[-253.93,-328.08],[-253.45,-304.49],[-251.32,-284.68],[-250.38,-263.76],[-248.45,-244.46],[-238.47,-218.89],[-219.79,-194.35],[-208.22,-171.94],[-199.5,-148.95],[-191.9,-133.97],[-186.22,-122.76],[-180.21,-109.78],[-173.5,-96.09],[-167.02,-101.26],[-158.06,-121.4],[-152.41,-135.69],[-147.47,-153],[-147.06,-180.42],[-155.59,-205.85],[-163.47,-232.56],[-169.67,-253.55],[-178.19,-268.29],[-184.74,-277.72],[-195.49,-295.53],[-202.81,-312.85],[-204.37,-319.38],[-208,-325.69],[-210.6,-334.22],[-218.97,-348.5],[-222.75,-353.62],[-224.3,-356.89],[-228.79,-364.31],[-231.75,-367.62],[-233.18,-370.7]],"o":[[-243.12,-371.05],[-251.99,-339.36],[-254.04,-310.9],[-252.09,-291.38],[-250.66,-270.78],[-249.28,-250.6],[-244.07,-227.97],[-226.32,-202.09],[-210.97,-178.97],[-202.48,-156.93],[-193.54,-137.09],[-188.24,-126.8],[-182.71,-115.24],[-175.6,-100.21],[-170.48,-95.56],[-160.8,-114.18],[-154.68,-129.69],[-148.8,-147.34],[-145.77,-171.25],[-151.98,-197.72],[-161.38,-224.79],[-167.61,-246.94],[-173.8,-263.23],[-182.57,-274.84],[-192.08,-288.37],[-200.76,-308.25],[-204.54,-317.43],[-205.9,-323.32],[-210.34,-331.09],[-214.72,-342.41],[-221.15,-353.33],[-223.64,-355],[-227.06,-361.27],[-230.15,-367.33],[-232.71,-369.1],[-235.69,-374.68]],"v":[[-240,-380],[-249.29,-350.1],[-254,-317],[-252.77,-297.94],[-251,-278],[-249.83,-257.18],[-247,-239],[-232.4,-210.49],[-215,-186],[-205.35,-164.44],[-195,-140],[-190.07,-130.39],[-184,-118],[-177.91,-104.99],[-173,-96],[-163.91,-107.71],[-157,-124],[-150.61,-141.52],[-147,-158],[-149.52,-189.07],[-159,-217],[-165.54,-239.75],[-172,-259],[-180,-271],[-187,-281],[-199,-304],[-204,-316],[-205,-321],[-209,-328],[-212,-337],[-221,-353],[-223,-354],[-225,-358],[-230,-367],[-232,-368],[-234,-372]],"c":true}],"h":1},{"t":85,"s":[{"i":[[-237.62,-378.87],[-242.05,-374.83],[-245.15,-366.96],[-246.42,-361.48],[-246.67,-357.26],[-247.94,-353.55],[-249.7,-350.24],[-252.22,-338.55],[-254,-321.6],[-253.59,-308.76],[-252.19,-297.02],[-251.33,-275.76],[-249.48,-251.98],[-245.2,-234.49],[-239.24,-221.49],[-232.31,-210.15],[-224.59,-199.76],[-214.63,-186.51],[-210.14,-174.79],[-190.33,-133.88],[-174.34,-96.24],[-157.89,-121.81],[-148.05,-147.15],[-154.14,-200.54],[-164.96,-236.66],[-171.2,-257.68],[-177.99,-268.77],[-180.75,-271.62],[-182.25,-274.92],[-189.46,-284.58],[-199.18,-304.51],[-203.98,-318.43],[-207.94,-325.53],[-210.74,-333.44],[-226.68,-360.04],[-234.27,-372.84]],"o":[[-240.98,-377.35],[-244.14,-369.63],[-246.33,-362.84],[-246.59,-358.69],[-247.34,-354.68],[-249.12,-351.33],[-251.22,-343.99],[-253.61,-327.35],[-254,-312.5],[-252.69,-301.02],[-251.59,-284.27],[-250.28,-259.62],[-246.83,-239.5],[-241.41,-225.49],[-234.35,-213.87],[-227.07,-203.01],[-218.73,-191.24],[-210.76,-178.4],[-200.93,-152.24],[-177.84,-105.93],[-167.75,-95.07],[-152.69,-134.59],[-144.2,-186.89],[-163.08,-229.81],[-169.4,-250.48],[-175.39,-265.65],[-179.15,-271.33],[-181.72,-273.11],[-186.12,-280.51],[-196.41,-296.69],[-203.11,-314.96],[-205.99,-323.49],[-210.07,-330.5],[-218,-348.2],[-233.8,-371.26],[-236.95,-377.11]],"v":[[-240,-380],[-243.1,-372.23],[-246,-364],[-246.5,-360.08],[-247,-356],[-248.53,-352.44],[-250,-349],[-252.91,-332.95],[-254,-316],[-253.14,-304.89],[-252,-293],[-250.8,-267.69],[-248,-245],[-243.31,-229.99],[-237,-218],[-230,-207],[-222,-196],[-212,-181],[-209,-172],[-181,-113],[-173,-96],[-157,-124],[-147,-158],[-161,-223],[-167,-243],[-174,-263],[-179,-271],[-181,-272],[-183,-276],[-192,-289],[-202,-312],[-205,-321],[-209,-328],[-212,-336],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":86,"s":[{"i":[[-237.65,-378.93],[-245.09,-365.69],[-252.15,-339.53],[-253.46,-312.59],[-251.44,-284.34],[-250.7,-265.48],[-249.86,-252.31],[-246.68,-238.56],[-241.67,-225.69],[-239.62,-222.04],[-239.32,-220.52],[-230.47,-207.9],[-217.39,-190.62],[-209.66,-174.65],[-203.63,-159.7],[-196.07,-143.03],[-187.7,-125.89],[-180.14,-109.68],[-173.46,-96.08],[-166.62,-101.99],[-157.44,-122.91],[-152.62,-135.19],[-147.54,-152.68],[-147.53,-183.44],[-157.96,-212.49],[-161.77,-225.31],[-162.54,-230.45],[-164.61,-234.72],[-171.72,-259.02],[-178.49,-270.47],[-181.86,-274.34],[-194.63,-293.88],[-204.89,-318.18],[-210.12,-332.05],[-226.78,-360.2],[-234.33,-372.94]],"o":[[-242.27,-373.42],[-250.03,-348.75],[-253.74,-321.67],[-252.32,-293.92],[-250.77,-270.08],[-250.24,-256.6],[-248.09,-243.47],[-243.47,-229.67],[-239.71,-222.53],[-239.42,-221.03],[-235.02,-213.59],[-221.65,-196.41],[-211.85,-179.8],[-205.56,-164.6],[-198.72,-148.58],[-190.56,-131.68],[-182.66,-115.14],[-175.54,-100.15],[-170.4,-95.54],[-160.14,-115.68],[-154.84,-129.34],[-148.97,-146.85],[-145.55,-172.19],[-153.74,-203.59],[-161.5,-223.58],[-162.29,-228.74],[-163.42,-233.43],[-168.6,-247.7],[-177.1,-267.79],[-180.56,-272.63],[-189.18,-284.99],[-201.88,-310.67],[-208.49,-328.12],[-217.71,-347.98],[-233.59,-370.94],[-236.89,-377.03]],"v":[[-240,-380],[-247.56,-357.22],[-253,-330],[-252.89,-303.25],[-251,-275],[-250.47,-261.04],[-249,-248],[-245.07,-234.12],[-240,-223],[-239.52,-221.53],[-239,-220],[-226.06,-202.16],[-214,-184],[-207.61,-169.62],[-202,-156],[-193.32,-137.36],[-184,-118],[-177.84,-104.91],[-173,-96],[-163.38,-108.84],[-157,-124],[-150.79,-141.02],[-147,-158],[-150.63,-193.51],[-161,-222],[-162.03,-227.02],[-163,-232],[-165,-236],[-176,-266],[-179,-271],[-183,-276],[-199,-304],[-207,-324],[-212,-336],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":87,"s":[{"i":[[-237.62,-378.87],[-243.17,-372.08],[-246.82,-359.41],[-250.18,-346.85],[-252.7,-334.24],[-253.38,-315.55],[-252.23,-294.61],[-251.68,-273.6],[-250.36,-253.2],[-245.9,-235.83],[-238.89,-221.5],[-229.94,-208.26],[-220.65,-195.52],[-210.55,-176.09],[-200.73,-151.88],[-194.16,-139.71],[-191.03,-134.1],[-188.07,-128.2],[-184.99,-122.2],[-175.27,-96.4],[-166.86,-102.72],[-157.8,-121.99],[-148.09,-147.32],[-148.8,-187.18],[-157.6,-214.15],[-169.12,-254.78],[-180.72,-272.61],[-189.42,-284.67],[-192.27,-291.71],[-195.37,-294.81],[-197.91,-301.5],[-204.9,-318.2],[-219.23,-350.08],[-227.34,-362.98],[-231.59,-367.79],[-234.29,-372.86]],"o":[[-241.76,-376.13],[-245.7,-363.72],[-249.08,-350.98],[-251.98,-338.48],[-253.52,-322.75],[-252.74,-301.48],[-251.75,-280.75],[-250.98,-259.82],[-247.7,-241.08],[-241.49,-226.04],[-233.11,-212.5],[-223.7,-199.77],[-213.69,-183.65],[-204.07,-160.2],[-195.15,-141.41],[-192.1,-136.06],[-189.07,-130.1],[-186.02,-124.25],[-181.25,-113.87],[-169.18,-95.32],[-161.1,-115.37],[-152.69,-134.76],[-145.1,-176.55],[-155.21,-206.74],[-165.07,-235.48],[-178.54,-270.14],[-185.99,-280.44],[-192.77,-290.3],[-193.66,-294.17],[-197.2,-298.26],[-201.8,-310.41],[-211.8,-337.24],[-226.76,-361.11],[-229.43,-366.2],[-233.62,-370.97],[-236.95,-377.11]],"v":[[-240,-380],[-244.43,-367.9],[-248,-355],[-251.08,-342.67],[-253,-330],[-253.06,-308.52],[-252,-288],[-251.33,-266.71],[-249,-247],[-243.7,-230.94],[-236,-217],[-226.82,-204.02],[-218,-191],[-207.31,-168.14],[-196,-143],[-193.13,-137.88],[-190,-132],[-187.04,-126.23],[-184,-120],[-173,-96],[-164,-109],[-157,-124],[-147,-158],[-153,-200],[-160,-221],[-176,-266],[-183,-276],[-192,-289],[-193,-293],[-196,-296],[-199,-304],[-207,-324],[-226,-360],[-228,-364],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":88,"s":[{"i":[[-234.64,-374.1],[-245.39,-364.93],[-252.38,-338.25],[-253.3,-316.27],[-252.25,-297.23],[-251.64,-278.06],[-250.79,-259.63],[-248.14,-243.14],[-243.35,-228.39],[-239.83,-222.34],[-237.57,-219.91],[-236.91,-218.39],[-237.12,-217.26],[-236.49,-216.68],[-235.12,-216.18],[-235.23,-214.51],[-233.25,-213.35],[-217.28,-190.54],[-203.52,-157.85],[-191.02,-134.02],[-174.46,-96.26],[-166.97,-102.46],[-148.91,-141.79],[-156.84,-207.68],[-167.61,-243.88],[-171.97,-256.58],[-180.62,-273.28],[-188.85,-285.35],[-194.63,-294.89],[-198.4,-303.27],[-202.22,-310.96],[-206.45,-322.23],[-210.06,-329.88],[-212.06,-337.06],[-216.08,-342.28],[-220.57,-352.1]],"o":[[-242.45,-373.06],[-250.36,-347.53],[-253.42,-322.66],[-252.71,-303.56],[-251.74,-284.5],[-251.16,-265.63],[-249.22,-248.45],[-245.2,-233.11],[-240.54,-223.14],[-238.34,-220.73],[-236.85,-218.76],[-237.04,-217.64],[-236.93,-216.84],[-235.59,-216.35],[-234.69,-215.54],[-234.86,-213.68],[-224.35,-200.62],[-207.25,-167.3],[-195.39,-141.93],[-184.39,-119.47],[-169.32,-95.35],[-156.5,-125.48],[-143.53,-190.21],[-166.55,-239.01],[-170.59,-252.74],[-177.01,-267.54],[-186.65,-281.7],[-193.04,-292.48],[-198.11,-300.26],[-200.95,-309.22],[-204.91,-318.01],[-208.87,-328.11],[-211.96,-334.17],[-213.94,-340.93],[-219.19,-348.11],[-227.85,-363.81]],"v":[[-240,-380],[-247.87,-356.23],[-253,-329],[-253.01,-309.92],[-252,-291],[-251.4,-271.85],[-250,-254],[-246.67,-238.13],[-241,-224],[-239.08,-221.54],[-237,-219],[-236.97,-218.02],[-237,-217],[-236.04,-216.52],[-235,-216],[-235,-214],[-233,-213],[-211,-176],[-199,-149],[-186,-123],[-173,-96],[-164,-109],[-147,-159],[-165,-234],[-169,-248],[-174,-261],[-184,-278],[-191,-289],[-196,-297],[-200,-307],[-203,-313],[-208,-326],[-211,-332],[-213,-339],[-217,-344],[-223,-356]],"c":true}],"h":1},{"t":89,"s":[{"i":[[-237.4,-378.65],[-248.38,-356.65],[-253.77,-314.24],[-252.64,-287.43],[-252.28,-271.9],[-250.33,-250.89],[-244.08,-229.55],[-239.15,-221.21],[-235.93,-217.35],[-228.54,-206.96],[-219.63,-193.87],[-213.31,-181.23],[-208.9,-169.4],[-203.6,-158.14],[-197.08,-146.98],[-191.61,-136.37],[-186.13,-124.77],[-180.35,-111.02],[-173.94,-96.17],[-169.11,-97.67],[-164.53,-107.6],[-160.04,-116.49],[-157.01,-126.32],[-145.91,-156.15],[-151.68,-197.85],[-157.61,-215.12],[-170.76,-257.78],[-180.27,-272.93],[-184.57,-278.21],[-187.21,-282.8],[-196.93,-298.27],[-203.78,-315.4],[-214.63,-341.64],[-226.82,-361.16],[-230.75,-366.62],[-232.15,-369.69]],"o":[[-244.74,-369.02],[-252.89,-329.25],[-252.75,-292.72],[-252.4,-277.02],[-251.54,-258.86],[-246.6,-236.23],[-240.18,-222.53],[-237.03,-218.62],[-231.73,-211.27],[-222.5,-198.26],[-214.86,-185.03],[-210.33,-173.42],[-205.56,-161.65],[-199.36,-150.8],[-193.29,-139.74],[-188.03,-128.89],[-182.63,-116.93],[-176.01,-100.63],[-170.85,-95.62],[-165.95,-103.65],[-161.59,-114.14],[-157.38,-122.92],[-151.51,-140.92],[-146.08,-181.31],[-156.46,-211.03],[-165.2,-236.26],[-179.71,-272.13],[-182.91,-276.8],[-186.99,-281.24],[-192.44,-290.74],[-202.44,-310.35],[-210.12,-331.38],[-222.94,-356.13],[-229.15,-366.33],[-231.72,-368.11],[-235.21,-374.39]],"v":[[-240,-380],[-250.64,-342.95],[-253,-298],[-252.52,-282.22],[-252,-267],[-248.47,-243.56],[-241,-224],[-238.09,-219.91],[-235,-216],[-225.52,-202.61],[-217,-189],[-211.82,-177.32],[-207,-165],[-201.48,-154.47],[-195,-143],[-189.82,-132.63],[-184,-120],[-178.18,-105.82],[-173,-96],[-167.53,-100.66],[-163,-111],[-159,-119],[-156,-129],[-146,-170],[-155,-207],[-159,-219],[-179,-271],[-181,-274],[-186,-280],[-188,-284],[-200,-305],[-206,-321],[-220,-351],[-229,-366],[-231,-367],[-233,-371]],"c":true}],"h":1},{"t":90,"s":[{"i":[[-237.41,-378.93],[-245.51,-364.8],[-252.34,-337.89],[-253.21,-317.79],[-252.25,-301.62],[-251.95,-285],[-252.39,-268.34],[-247.6,-239.09],[-232.61,-211.77],[-225.75,-202.68],[-223.5,-200.75],[-222.24,-198.4],[-221.39,-195.67],[-219.91,-193.21],[-218.46,-190.87],[-214.34,-182.87],[-209.46,-172.35],[-206.67,-165.47],[-204.82,-159.65],[-199.72,-152.23],[-189.24,-130.97],[-177.95,-104.85],[-167.13,-101.66],[-158.68,-121.45],[-155.19,-128.49],[-153.02,-134.8],[-149.82,-144.74],[-153.09,-200.38],[-171.28,-256.92],[-181.15,-275.11],[-183.18,-278.15],[-187.66,-283.92],[-194.12,-293.48],[-212.07,-341.05],[-228.14,-363.11],[-233.16,-372.12]],"o":[[-242.6,-372.85],[-250.38,-347.32],[-253.34,-322.98],[-252.67,-307.11],[-251.75,-290.58],[-252.27,-273.87],[-251.05,-249.95],[-238.38,-220],[-226.5,-203.31],[-224.25,-201.4],[-222.54,-199.32],[-221.66,-196.58],[-220.42,-194.02],[-218.92,-191.63],[-216.12,-186.44],[-211.01,-175.83],[-207.38,-167.56],[-205.08,-161.97],[-202.47,-154.91],[-191.78,-137.32],[-180.82,-112.12],[-170.26,-89.65],[-160.19,-117.36],[-156.89,-127.37],[-154.07,-131.55],[-151.07,-140.93],[-140.96,-180.06],[-168.58,-243.55],[-179.26,-271.27],[-182.8,-276.84],[-186.22,-281.31],[-191.7,-290.2],[-206.29,-316.28],[-226.34,-360.13],[-231.37,-368.13],[-236.3,-375.4]],"v":[[-240,-380],[-247.95,-356.06],[-253,-328],[-252.94,-312.45],[-252,-296],[-252.11,-279.44],[-252,-263],[-242.99,-229.54],[-227,-204],[-225,-202.04],[-223,-200],[-221.95,-197.49],[-221,-195],[-219.42,-192.42],[-218,-190],[-212.68,-179.35],[-208,-169],[-206,-164],[-204,-158],[-198,-149],[-183,-117],[-176,-101],[-163,-111],[-157,-127],[-155,-129],[-152,-138],[-149,-148],[-163,-228],[-178,-269],[-182,-276],[-184,-279],[-189,-286],[-196,-297],[-224,-357],[-230,-366],[-234,-373]],"c":true}],"h":1},{"t":91,"s":[{"i":[[-237.41,-378.93],[-245.73,-364.33],[-252.43,-336.36],[-253.14,-315.76],[-252.22,-299.57],[-252.01,-283.01],[-252.45,-266.45],[-250.36,-250.27],[-245.59,-235.6],[-242.32,-228.02],[-239.96,-222.62],[-235.97,-218.46],[-234.31,-215.47],[-231.95,-211.52],[-229.44,-208.63],[-221.66,-196.6],[-213.56,-181.17],[-210.2,-174.51],[-208.81,-169.85],[-198.87,-148.67],[-180.34,-112.44],[-176.48,-101.95],[-167.06,-101.6],[-158.59,-121.74],[-155.19,-128.49],[-152.95,-135.02],[-149.77,-144.93],[-153.03,-200.22],[-173.23,-263.62],[-187.94,-284.31],[-190.74,-289.86],[-195.04,-295.27],[-197.87,-301.73],[-213.43,-342.88],[-225.33,-358.94],[-231.75,-370.66]],"o":[[-242.76,-372.65],[-250.56,-346.18],[-253.28,-320.97],[-252.61,-305.06],[-251.78,-288.53],[-252.34,-271.97],[-251.56,-255.72],[-247.37,-240.2],[-243.09,-229.96],[-240.76,-224.35],[-238.25,-219.74],[-234.57,-216.35],[-232.69,-213.02],[-230.63,-209.41],[-225.48,-203.04],[-216.16,-187.1],[-211.89,-175.63],[-209.26,-172.11],[-203.1,-156.85],[-189.45,-129.94],[-176.5,-102.74],[-170.27,-89.66],[-160.44,-116.92],[-156.89,-127.37],[-154.13,-131.33],[-150.93,-141.35],[-140.92,-180.22],[-169.97,-247.43],[-186.3,-282.92],[-190.34,-288.15],[-193.09,-293.85],[-197.23,-299.2],[-207.65,-321.45],[-224.76,-358.02],[-228.39,-363.75],[-236.3,-375.4]],"v":[[-240,-380],[-248.14,-355.25],[-253,-326],[-252.88,-310.41],[-252,-294],[-252.18,-277.49],[-252,-261],[-248.86,-245.24],[-244,-232],[-241.54,-226.18],[-239,-221],[-235,-217],[-234,-215],[-231,-210],[-229,-208],[-219,-192],[-212,-176],[-210,-174],[-208,-168],[-193,-137],[-177,-104],[-176,-101],[-163,-111],[-157,-127],[-155,-129],[-152,-138],[-149,-148],[-163,-228],[-185,-281],[-189,-286],[-192,-292],[-196,-297],[-199,-304],[-224,-357],[-226,-360],[-234,-373]],"c":true}],"h":1},{"t":92,"s":[{"i":[[-235.7,-376.02],[-245.92,-363.97],[-252.54,-335.02],[-253.04,-313.82],[-252.15,-297.52],[-252.1,-280.69],[-252.51,-264.24],[-239.31,-222.18],[-229.67,-207.97],[-227.36,-206.48],[-226.5,-203.73],[-221.65,-196.97],[-209.4,-169.01],[-199.97,-150.68],[-193.76,-141.36],[-180.83,-110.56],[-173.56,-96.1],[-160.69,-115.69],[-154.03,-131.8],[-151.5,-141.12],[-148.62,-149.48],[-147.26,-157.25],[-154.59,-205.88],[-170.88,-253.82],[-180.23,-273.08],[-183.75,-277.63],[-183.77,-279.49],[-185.75,-280.63],[-187.81,-285.19],[-192.01,-290.36],[-196.96,-300.75],[-205.77,-318.61],[-211.13,-333.82],[-219.84,-350.21],[-223.76,-355.6],[-225.85,-360.2]],"o":[[-242.9,-372.46],[-250.74,-345.25],[-253.21,-319.06],[-252.51,-303.05],[-251.84,-286.32],[-252.43,-269.65],[-250.2,-240.52],[-229.33,-209.12],[-228.69,-206.54],[-226.39,-205.19],[-223.74,-199.65],[-213.39,-182.06],[-201.4,-153.99],[-196.47,-144.14],[-187.28,-128.99],[-174.51,-98.04],[-168.01,-95.12],[-156.02,-127.6],[-151.51,-139.5],[-150.04,-146.61],[-147.64,-155.02],[-142.88,-186.1],[-166.96,-239.89],[-177.35,-268.24],[-182.15,-277.32],[-184.31,-278.46],[-184.15,-280.32],[-187.23,-282.83],[-190.2,-288.83],[-195.46,-296.1],[-201.94,-311.11],[-210.1,-329.06],[-215.41,-343.39],[-222.15,-355.34],[-225.17,-357.93],[-230.73,-367.87]],"v":[[-240,-380],[-248.33,-354.61],[-253,-324],[-252.77,-308.44],[-252,-292],[-252.26,-275.17],[-252,-259],[-230,-210],[-229,-207],[-227,-206],[-226,-203],[-220,-194],[-203,-157],[-198,-147],[-192,-138],[-176,-101],[-173,-96],[-159,-120],[-152,-138],[-151,-143],[-148,-153],[-147,-159],[-163,-229],[-175,-263],[-182,-277],[-184,-278],[-184,-280],[-186,-281],[-189,-287],[-193,-292],[-199,-305],[-208,-324],[-213,-338],[-222,-355],[-224,-356],[-227,-362]],"c":true}],"h":1},{"t":93,"s":[{"i":[[-238.95,-380.35],[-246,-363.73],[-252.5,-334.29],[-253.03,-312.9],[-252.11,-296.76],[-252.16,-279.93],[-252.53,-263.18],[-250.58,-249.98],[-246.51,-238.6],[-241.79,-228.23],[-236.08,-219.12],[-225.46,-203.27],[-214.3,-182.62],[-211.49,-174.44],[-210.1,-173.25],[-207.66,-167.16],[-204.43,-159.68],[-201.42,-153.86],[-198.93,-148.71],[-196.11,-144.06],[-192.88,-139.66],[-186.87,-126.74],[-178.47,-105.89],[-174.69,-98.3],[-173.37,-96.07],[-167.53,-99.77],[-161.62,-114.53],[-154.01,-133.22],[-145.75,-164.18],[-149.77,-195.9],[-162.88,-227.19],[-167.28,-240.87],[-176.34,-266.88],[-195.16,-295.38],[-207.21,-323.07],[-228.32,-365.97]],"o":[[-243,-372.34],[-250.75,-344.71],[-253.22,-318.02],[-252.47,-302.27],[-251.89,-285.59],[-252.48,-268.72],[-251.58,-253.93],[-248.05,-242.31],[-243.5,-231.42],[-238.08,-222.09],[-229.8,-209.71],[-217.71,-189.73],[-211.94,-174.82],[-210.57,-173.66],[-208.7,-169.82],[-205.53,-162.09],[-202.21,-155.51],[-199.78,-150.46],[-197.17,-145.48],[-193.96,-141.15],[-189.63,-133.54],[-181.29,-112.91],[-175.25,-99.52],[-173.75,-96.58],[-170.22,-95.51],[-163.23,-109.28],[-157.89,-123.39],[-147.94,-153.62],[-146.32,-184.55],[-158.04,-217.22],[-166.75,-238.12],[-172.04,-255.05],[-187.92,-285.54],[-204.39,-313.73],[-218.43,-349.49],[-239.32,-379.39]],"v":[[-240,-380],[-248.38,-354.22],[-253,-323],[-252.75,-307.59],[-252,-291],[-252.32,-274.33],[-252,-258],[-249.31,-246.15],[-245,-235],[-239.94,-225.16],[-234,-216],[-221.58,-196.5],[-212,-175],[-211.03,-174.05],[-210,-173],[-206.59,-164.63],[-203,-157],[-200.6,-152.16],[-198,-147],[-195.04,-142.6],[-192,-138],[-184.08,-119.82],[-176,-101],[-174.22,-97.44],[-173,-96],[-165.38,-104.53],[-161,-116],[-150.98,-143.42],[-146,-173],[-153.9,-206.56],[-166,-236],[-168,-243],[-182,-276],[-200,-305],[-211,-332],[-239,-379]],"c":true}],"h":1},{"t":94,"s":[{"i":[[-238.95,-380.35],[-247.27,-360.21],[-253.23,-325.14],[-252.7,-306.67],[-251.99,-298.67],[-252.32,-284.6],[-252.6,-267.68],[-248.7,-243.97],[-238.97,-222.9],[-233.45,-214.83],[-231.53,-212.57],[-229.4,-209.96],[-227.55,-206.78],[-224.37,-201.77],[-221.18,-195.22],[-218.32,-190.32],[-215.64,-186.45],[-213.92,-181.8],[-212.69,-176.66],[-210.57,-172.34],[-205.67,-162.93],[-196.75,-146.25],[-186.69,-125.38],[-174.27,-96.21],[-162.23,-113.08],[-145.63,-155.28],[-150.89,-198],[-157.25,-213.91],[-173.43,-265.54],[-188.11,-286.02],[-190.76,-288.61],[-191.55,-291.22],[-195.37,-297.05],[-202.82,-311.43],[-210.34,-329.86],[-229.35,-367.23]],"o":[[-243.9,-370.64],[-251.93,-337.46],[-252.95,-309.33],[-252.22,-301.33],[-252.02,-290.26],[-252.61,-273.31],[-250.96,-252.27],[-242.7,-229.29],[-234.19,-215.8],[-232.12,-213.22],[-230.13,-211.06],[-228.11,-207.81],[-225.53,-203.91],[-222.2,-197.43],[-219.25,-191.59],[-216.52,-187.75],[-214.32,-183.47],[-213.1,-178.4],[-211.43,-173.63],[-207.7,-165.55],[-199.77,-152.03],[-190.3,-133.93],[-181.32,-112.64],[-167.38,-95.09],[-154.7,-130.94],[-146.24,-184.73],[-155.57,-210.04],[-167.77,-238.46],[-186.83,-283.44],[-189.15,-288.33],[-191.58,-289.93],[-193.69,-294.92],[-200.23,-305.82],[-207.52,-323.44],[-220.1,-352.39],[-239.32,-379.39]],"v":[[-240,-380],[-249.6,-348.83],[-253,-312],[-252.46,-304],[-252,-296],[-252.47,-278.96],[-252,-262],[-245.7,-236.63],[-235,-217],[-232.79,-214.02],[-231,-212],[-228.76,-208.88],[-227,-206],[-223.28,-199.6],[-220,-193],[-217.42,-189.03],[-215,-185],[-213.51,-180.1],[-212,-175],[-210,-171],[-203,-158],[-194,-141],[-184,-119],[-173,-96],[-161,-116],[-146,-173],[-154,-206],[-159,-218],[-185,-281],[-189,-288],[-191,-289],[-192,-292],[-197,-300],[-205,-317],[-213,-336],[-239,-379]],"c":true}],"h":1},{"t":95,"s":[{"i":[[-238.95,-380.35],[-247.17,-360.54],[-253.07,-325.96],[-252.73,-308.35],[-251.98,-301.47],[-252.46,-288.34],[-253.35,-272.16],[-250.52,-250],[-242.25,-229.08],[-235.5,-218.38],[-230.67,-210.51],[-228.06,-206.97],[-226.34,-205.52],[-225.25,-203.4],[-224.45,-200.74],[-222.29,-197.37],[-219.76,-193.49],[-214.86,-183.01],[-209.33,-169.62],[-190.79,-136.64],[-184.63,-119.54],[-181.54,-115.31],[-179.27,-106.71],[-172.93,-95.99],[-162.23,-113.08],[-145.86,-155.6],[-148.7,-191.79],[-160.16,-220.73],[-168.78,-243.38],[-178.18,-271.56],[-186.41,-284.5],[-191.17,-289.72],[-193.98,-295.29],[-203.76,-313.14],[-210.09,-329.56],[-228.88,-366.65]],"o":[[-243.88,-370.81],[-251.76,-338.11],[-252.99,-310.62],[-252.23,-303.78],[-252.03,-293.76],[-253.12,-277.54],[-252.4,-258.21],[-245.45,-235.43],[-237.16,-221.13],[-232.25,-213.07],[-228.64,-207.46],[-226.91,-206],[-225.52,-204.27],[-224.72,-201.63],[-223.16,-198.62],[-220.59,-194.8],[-216.69,-187.46],[-211.18,-174.09],[-202.32,-155.75],[-184.35,-121.46],[-183.41,-116.55],[-179.78,-111.07],[-176.06,-99.84],[-167.38,-95.09],[-154.75,-130.82],[-146.07,-182.57],[-154.64,-210.43],[-166.38,-237.37],[-174.39,-260.1],[-185.23,-280.98],[-188.97,-288.54],[-193.27,-292.97],[-199.75,-305.02],[-208.74,-325.23],[-219.39,-351.18],[-239.32,-379.39]],"v":[[-240,-380],[-249.46,-349.32],[-253,-313],[-252.48,-306.06],[-252,-299],[-252.79,-282.94],[-253,-267],[-247.99,-242.72],[-239,-224],[-233.88,-215.73],[-229,-208],[-227.49,-206.49],[-226,-205],[-224.98,-202.51],[-224,-200],[-221.44,-196.08],[-219,-192],[-213.02,-178.55],[-207,-165],[-185,-123],[-184,-118],[-181,-114],[-178,-104],[-173,-96],[-161,-116],[-146,-173],[-151,-199],[-164,-231],[-171,-250],[-183,-278],[-188,-287],[-192,-291],[-195,-297],[-207,-321],[-212,-334],[-239,-379]],"c":true}],"h":1},{"t":96,"s":[{"i":[[-238.95,-380.35],[-245.21,-366.31],[-251.42,-341.7],[-252.23,-321.72],[-251.72,-304.03],[-252.73,-286.65],[-253.44,-269.67],[-251.75,-255.3],[-248.14,-242.9],[-244.01,-233.06],[-238.88,-223.88],[-231.04,-212.17],[-222.59,-199.02],[-216.95,-187.64],[-212.55,-177.41],[-203.74,-159.37],[-190.7,-134.36],[-185.47,-122.94],[-182.74,-117.8],[-179.44,-108.93],[-174.16,-96.19],[-167.5,-99.81],[-161.61,-114.54],[-159.37,-120.23],[-157.56,-126.15],[-156.49,-128.56],[-155.09,-129.74],[-154.04,-133],[-152.52,-138.24],[-149.08,-150.81],[-145.9,-169.39],[-156.66,-211.81],[-169.78,-248.85],[-192.09,-290.76],[-207.22,-323.11],[-228.41,-366.09]],"o":[[-242.5,-373.71],[-249.67,-350.3],[-252.37,-327.45],[-251.91,-310],[-252.26,-292.31],[-253.32,-275.33],[-252.68,-259.85],[-249.48,-246.82],[-245.57,-236.37],[-240.67,-226.81],[-234,-216.41],[-225.34,-203.48],[-218.42,-190.93],[-214.01,-180.87],[-207.89,-167.19],[-195.14,-142.96],[-186.35,-124.54],[-183.66,-119.57],[-181.11,-113.84],[-175.96,-100.11],[-170.19,-95.54],[-163.21,-109.31],[-160.09,-118.15],[-158.11,-124.22],[-156.94,-128.19],[-155.56,-129.33],[-154.53,-131.38],[-153.04,-136.43],[-150.63,-144.61],[-146.72,-163.2],[-146.44,-194.53],[-167.88,-239.62],[-179.09,-275.3],[-204.24,-314.16],[-218.46,-349.53],[-239.32,-379.39]],"v":[[-240,-380],[-247.44,-358.31],[-252,-333],[-252.07,-315.86],[-252,-298],[-253.03,-280.99],[-253,-264],[-250.61,-251.06],[-247,-240],[-242.34,-229.93],[-237,-221],[-228.19,-207.82],[-220,-194],[-215.48,-184.25],[-211,-174],[-199.44,-151.17],[-187,-126],[-184.57,-121.25],[-182,-116],[-177.7,-104.52],[-173,-96],[-165.35,-104.56],[-161,-116],[-158.74,-122.22],[-157,-128],[-156.02,-128.95],[-155,-130],[-153.54,-134.71],[-152,-140],[-147.9,-157],[-146,-174],[-164,-230],[-173,-258],[-200,-306],[-211,-332],[-239,-379]],"c":true}],"h":1},{"t":97,"s":[{"i":[[-238.95,-380.35],[-244.88,-367.27],[-251.3,-342.81],[-252.51,-321.7],[-252.72,-303.93],[-253.55,-285.37],[-253.51,-267.21],[-249.61,-245.29],[-239.47,-225.4],[-230.52,-211.59],[-223.2,-199.49],[-219.62,-192.05],[-217.63,-187.45],[-211.41,-173.91],[-202.41,-157.11],[-192.84,-139.32],[-185.18,-121.72],[-178.61,-106.34],[-173.36,-96.06],[-167.5,-99.81],[-161.61,-114.54],[-157.05,-125.82],[-152.25,-140.28],[-149.93,-148.42],[-148.29,-153.37],[-147.64,-157.07],[-147.13,-160.13],[-147.15,-190.16],[-162.21,-224.56],[-170.08,-245.68],[-174.38,-258.8],[-179.44,-271.35],[-185.57,-283.11],[-195.17,-298.42],[-204.46,-315.01],[-226.14,-363.32]],"o":[[-242.23,-374.12],[-249.41,-351.62],[-252.39,-327.49],[-252.67,-309.92],[-253.29,-291.77],[-253.66,-273.1],[-252.13,-253.09],[-243.28,-231.45],[-233.17,-215.6],[-225.54,-203.54],[-220.3,-193.58],[-218.29,-188.99],[-214.2,-179.6],[-205.51,-162.66],[-195.49,-144.71],[-187.68,-127.82],[-180.68,-110.81],[-174.95,-98.96],[-170.19,-95.54],[-163.21,-109.31],[-158.92,-120.92],[-153.71,-135.5],[-150.54,-146.73],[-148.81,-151.74],[-147.82,-156.01],[-147.29,-159.13],[-144.54,-177.38],[-155.99,-213.75],[-168.64,-241.28],[-172.95,-254.44],[-177.66,-267.29],[-183.4,-279.26],[-191.69,-292.91],[-201.55,-309.46],[-216.3,-342.91],[-239.32,-379.39]],"v":[[-240,-380],[-247.15,-359.45],[-252,-333],[-252.59,-315.81],[-253,-298],[-253.6,-279.24],[-253,-262],[-246.45,-238.37],[-236,-220],[-228.03,-207.56],[-221,-195],[-218.95,-190.52],[-217,-186],[-208.46,-168.29],[-199,-151],[-190.26,-133.57],[-182,-114],[-176.78,-102.65],[-173,-96],[-165.35,-104.56],[-161,-116],[-155.38,-130.66],[-151,-145],[-149.37,-150.08],[-148,-155],[-147.46,-158.1],[-147,-161],[-151.57,-201.95],[-167,-237],[-171.52,-250.06],[-176,-263],[-181.42,-275.31],[-188,-287],[-198.36,-303.94],[-207,-321],[-239,-379]],"c":true}],"h":1},{"t":98,"s":[{"i":[[-235.8,-376.17],[-245.15,-366.56],[-251.35,-341.7],[-252.48,-320.92],[-252.73,-303.18],[-253.54,-284.8],[-253.56,-266.39],[-249.35,-244.41],[-238.51,-224.38],[-232.41,-215.03],[-229.02,-209.69],[-225.52,-203.99],[-222.13,-198.27],[-217.77,-188.71],[-213.33,-177.04],[-211.36,-172.38],[-210.35,-169.71],[-209.16,-167.99],[-207.39,-166.65],[-206.25,-164.35],[-205.36,-161.63],[-196.63,-146.2],[-185.81,-124.22],[-179.42,-108.32],[-173.99,-96.16],[-162.28,-112.95],[-145.63,-157.15],[-156.38,-213.35],[-170.94,-248.97],[-180.73,-274.42],[-195.73,-298.31],[-207.41,-321.96],[-212.63,-334.96],[-219.88,-350.3],[-223.76,-355.59],[-225.78,-360.08]],"o":[[-242.48,-373.71],[-249.59,-350.56],[-252.36,-326.58],[-252.66,-309.22],[-253.26,-291.11],[-253.68,-272.44],[-252.09,-252.22],[-242.56,-230.49],[-233.65,-216.93],[-230.09,-211.41],[-226.71,-205.86],[-223.23,-200.2],[-219.36,-192.69],[-214.76,-180.88],[-211.68,-173.28],[-210.69,-170.59],[-209.71,-168.42],[-208,-167.11],[-206.56,-165.28],[-205.64,-162.52],[-200.48,-153.09],[-189.3,-131.77],[-181.17,-112.99],[-175.83,-99.91],[-167.39,-95.09],[-154.61,-131.14],[-146.42,-195.29],[-167.95,-240.15],[-177.02,-266.91],[-190.74,-290.72],[-203.74,-312.73],[-211.7,-331.98],[-216.51,-343.58],[-222.16,-355.35],[-225.14,-357.93],[-230.75,-367.9]],"v":[[-240,-380],[-247.37,-358.56],[-252,-332],[-252.57,-315.07],[-253,-297],[-253.61,-278.62],[-253,-261],[-245.95,-237.45],[-235,-219],[-231.25,-213.22],[-228,-208],[-224.38,-202.1],[-221,-196],[-216.26,-184.8],[-212,-174],[-211.02,-171.49],[-210,-169],[-208.58,-167.55],[-207,-166],[-205.94,-163.44],[-205,-161],[-192.96,-138.99],[-182,-115],[-177.62,-104.12],[-173,-96],[-161,-116],[-146,-175],[-164,-231],[-174,-258],[-186,-283],[-200,-306],[-210,-328],[-214,-338],[-222,-355],[-224,-356],[-227,-362]],"c":true}],"h":1},{"t":99,"s":[{"i":[[-238.34,-378.97],[-245.36,-366],[-251.45,-339.96],[-252.43,-319.03],[-252.77,-301.71],[-253.52,-284],[-253.56,-266.39],[-249.89,-246.33],[-239.25,-224.48],[-230.85,-212.05],[-224.68,-203.16],[-219.76,-193.02],[-215.63,-181.84],[-207.75,-165.76],[-196.07,-147.09],[-189.27,-132.95],[-184.86,-121.52],[-179.91,-109.31],[-173.88,-96.14],[-167.55,-99.71],[-161.59,-114.3],[-154.3,-134.44],[-145.8,-166.56],[-149.43,-198.33],[-162.85,-226.72],[-170.18,-245.64],[-174.37,-258.62],[-179.87,-272.43],[-186.65,-285.22],[-189.58,-289.63],[-190.79,-290.67],[-198.81,-304.33],[-209.01,-324.93],[-217.59,-344.7],[-226.66,-361.87],[-233.58,-372.93]],"o":[[-242.64,-373.52],[-249.77,-349.22],[-252.29,-324.68],[-252.67,-307.55],[-253.24,-290.05],[-253.68,-272.17],[-252.26,-253.84],[-243.38,-231.65],[-233.01,-214.97],[-226.68,-206.15],[-221.2,-196.6],[-216.98,-185.64],[-211.22,-171.46],[-200.18,-153.57],[-190.59,-136.19],[-186.4,-125.61],[-181.97,-114.49],[-175.87,-100.14],[-170.26,-95.55],[-163.22,-109.08],[-158.15,-124.15],[-148.13,-155.64],[-146.25,-188.22],[-157.73,-217.58],[-168.75,-241.33],[-172.99,-254.28],[-177.79,-267.82],[-184.29,-281.13],[-189.19,-289.3],[-190.39,-290.32],[-195.06,-297.62],[-205.79,-317.99],[-214.76,-338.51],[-223.54,-356.38],[-231.8,-369.77],[-236.39,-377.04]],"v":[[-240,-380],[-247.57,-357.61],[-252,-330],[-252.55,-313.29],[-253,-296],[-253.6,-278.08],[-253,-261],[-246.63,-238.99],[-235,-218],[-228.77,-209.1],[-223,-200],[-218.37,-189.33],[-214,-178],[-203.96,-159.66],[-192,-139],[-187.83,-129.28],[-183,-117],[-177.89,-104.72],[-173,-96],[-165.39,-104.39],[-161,-116],[-151.21,-145.04],[-146,-176],[-153.58,-207.96],[-167,-237],[-171.59,-249.96],[-176,-263],[-182.08,-276.78],[-189,-289],[-189.99,-289.98],[-191,-291],[-202.3,-311.16],[-212,-332],[-220.56,-350.54],[-230,-367],[-235,-375]],"c":true}],"h":1},{"t":100,"s":[{"i":[[-228.06,-367.23],[-245.32,-365.99],[-251.34,-340.61],[-252.45,-321.85],[-252.78,-307.63],[-253.48,-293.46],[-254.01,-279.45],[-252.62,-256.77],[-243.77,-232.8],[-236.18,-220.7],[-231.96,-214.65],[-229.84,-211.03],[-228.44,-208.75],[-226.84,-206.03],[-225.44,-203.75],[-219.83,-192.7],[-213.33,-176.67],[-209.18,-168.69],[-206.04,-163.74],[-196.56,-146.72],[-184.34,-120.64],[-178.24,-106.16],[-173.8,-96.13],[-167.54,-99.71],[-161.61,-114.32],[-154.25,-134.45],[-145.88,-166.73],[-148.7,-195.07],[-160.15,-222.42],[-167.75,-239.74],[-172.52,-252.6],[-179.02,-270.06],[-188.73,-288.78],[-194.32,-297.6],[-197.93,-303.17],[-207.31,-321.47]],"o":[[-242.65,-373.43],[-249.66,-349.58],[-252.31,-326.53],[-252.68,-312.4],[-253.23,-298.23],[-253.87,-284.07],[-253.98,-265.37],[-247.51,-240.48],[-237.7,-222.88],[-233.31,-216.59],[-230.37,-211.91],[-228.87,-209.46],[-227.37,-206.91],[-225.87,-204.46],[-222.17,-198.11],[-215.41,-181.98],[-210.16,-170.32],[-207.12,-165.4],[-200.89,-155.15],[-188.28,-129.47],[-179.84,-110.35],[-175.22,-99.05],[-170.24,-95.55],[-163.23,-109.09],[-158.06,-124.09],[-148.16,-155.77],[-146.12,-185.61],[-155.71,-213.48],[-165.99,-235.44],[-171.02,-248.32],[-176.16,-263.43],[-185.31,-282.74],[-193.11,-295.76],[-196.74,-301.31],[-203.74,-313.13],[-218.93,-348.32]],"v":[[-240,-380],[-247.49,-357.79],[-252,-331],[-252.57,-317.12],[-253,-303],[-253.68,-288.76],[-254,-275],[-250.07,-248.63],[-239,-225],[-234.74,-218.65],[-231,-213],[-229.35,-210.25],[-228,-208],[-226.35,-205.25],[-225,-203],[-217.62,-187.34],[-211,-172],[-208.15,-167.04],[-205,-162],[-192.42,-138.09],[-181,-113],[-176.73,-102.61],[-173,-96],[-165.39,-104.4],[-161,-116],[-151.21,-145.11],[-146,-176],[-152.2,-204.27],[-164,-231],[-169.39,-244.03],[-174,-257],[-182.17,-276.4],[-192,-294],[-195.53,-299.45],[-199,-305],[-211,-330]],"c":true}],"h":1},{"t":101,"s":[{"i":[[-227.99,-367.28],[-245.4,-365.81],[-251.36,-339.96],[-252.42,-320.96],[-252.79,-306.61],[-253.53,-292.06],[-254.11,-277.52],[-252.21,-256.36],[-244.83,-235.95],[-238.53,-224.95],[-233.61,-216.6],[-229.2,-209.78],[-224.91,-203.59],[-223.24,-200.36],[-222.35,-197.73],[-217.05,-185.92],[-209.8,-169.66],[-205.16,-161.8],[-202.9,-157.56],[-197.93,-149.05],[-191.98,-138.32],[-185.53,-122.35],[-174.66,-96.27],[-167.54,-99.71],[-161.61,-114.32],[-157.23,-126.54],[-152.39,-141.78],[-149.91,-150.47],[-148.3,-155.32],[-147.63,-159.07],[-147.12,-162.14],[-154.22,-209.39],[-171.04,-248.19],[-179.98,-274.22],[-194.9,-297.61],[-207.25,-321.53]],"o":[[-242.72,-373.33],[-249.72,-349.12],[-252.28,-325.65],[-252.67,-311.44],[-253.23,-297.05],[-253.97,-282.3],[-253.79,-264.38],[-247.73,-242.15],[-240.23,-227.9],[-235.22,-219.3],[-230.75,-211.98],[-226.28,-205.58],[-223.57,-201.24],[-222.63,-198.6],[-219.39,-191.59],[-212.25,-174.96],[-205.96,-163.27],[-203.63,-158.95],[-199.93,-152.4],[-193.95,-142.01],[-188.95,-131.71],[-178.38,-104.63],[-170.24,-95.55],[-163.23,-109.09],[-159.04,-121.4],[-153.91,-136.73],[-150.52,-148.81],[-148.8,-153.73],[-147.82,-158],[-147.28,-161.14],[-143.15,-190.8],[-168,-239.84],[-176.85,-265.5],[-189.32,-290.55],[-203.58,-313.26],[-219.08,-348.22]],"v":[[-240,-380],[-247.56,-357.47],[-252,-330],[-252.55,-316.2],[-253,-302],[-253.75,-287.18],[-254,-273],[-249.97,-249.25],[-242,-231],[-236.88,-222.12],[-232,-214],[-227.74,-207.68],[-224,-202],[-222.94,-199.48],[-222,-197],[-214.65,-180.44],[-207,-165],[-204.39,-160.38],[-202,-156],[-195.94,-145.53],[-190,-134],[-181.96,-113.49],[-173,-96],[-165.39,-104.4],[-161,-116],[-155.57,-131.63],[-151,-147],[-149.36,-152.1],[-148,-157],[-147.46,-160.1],[-147,-163],[-164,-231],[-174,-257],[-185,-283],[-199,-305],[-211,-330]],"c":true}],"h":1},{"t":102,"s":[{"i":[[-231.14,-370.79],[-245.66,-365.57],[-251.45,-337.54],[-252.34,-317.48],[-252.69,-302.91],[-253.74,-287.69],[-254.34,-272.62],[-251.29,-251.9],[-241.25,-228.84],[-235.23,-219.45],[-232.53,-215.92],[-230.84,-213.03],[-229.44,-210.75],[-227.46,-207.14],[-225.66,-203.29],[-221.55,-194.86],[-216.72,-183.77],[-208.18,-167.13],[-196.15,-147.58],[-189.16,-132.43],[-184.81,-120.53],[-180.32,-109.36],[-172.88,-95.81],[-167.6,-99.84],[-162.46,-111.89],[-154.15,-133.54],[-145.87,-167.73],[-148.65,-196.03],[-160.05,-223.78],[-171.98,-248.14],[-180.93,-275.18],[-185.76,-282.59],[-189.73,-291.29],[-196.77,-302.14],[-205.38,-318.35],[-214.17,-337.03]],"o":[[-242.93,-373.55],[-249.91,-347.57],[-252.25,-322.27],[-252.56,-307.8],[-253.32,-292.88],[-254.25,-277.56],[-253.42,-259.98],[-245.21,-236.33],[-236.22,-220.74],[-233.39,-217.04],[-231.37,-213.91],[-229.87,-211.46],[-228.13,-208.49],[-226.23,-204.54],[-223.19,-198.48],[-218.31,-187.51],[-211.85,-173.09],[-200.33,-154.38],[-190.5,-135.91],[-186.32,-124.74],[-182.38,-114.46],[-175.57,-100.03],[-169.62,-96.14],[-164.02,-107.71],[-158.21,-122.18],[-147.98,-156.32],[-146.13,-186.39],[-155.61,-214.73],[-168.05,-240.41],[-178.12,-266.16],[-184.16,-282.35],[-188.27,-286.93],[-194.37,-298.88],[-202.64,-312.3],[-211.07,-330.63],[-223.3,-356.27]],"v":[[-240,-380],[-247.78,-356.57],[-252,-327],[-252.45,-312.64],[-253,-298],[-253.99,-282.62],[-254,-268],[-248.25,-244.11],[-237,-222],[-234.31,-218.25],[-232,-215],[-230.35,-212.25],[-229,-210],[-226.84,-205.84],[-225,-202],[-219.93,-191.19],[-215,-180],[-204.25,-160.75],[-192,-139],[-187.74,-128.59],[-183,-116],[-177.95,-104.7],[-171,-96],[-165.81,-103.77],[-162,-113],[-151.06,-144.93],[-146,-177],[-152.13,-205.38],[-164,-232],[-175,-257],[-184,-282],[-186,-283],[-192,-295],[-199,-306],[-208,-324],[-217,-343]],"c":true}],"h":1},{"t":103,"s":[{"i":[[-235.88,-377.87],[-245.7,-365.37],[-251.43,-336.87],[-252.33,-316.15],[-252.65,-301.05],[-253.83,-285.74],[-254.44,-270.68],[-249.05,-245.28],[-234.13,-219.13],[-227.41,-207.27],[-224.13,-200.39],[-221.23,-194],[-218.88,-188.05],[-217.08,-184.37],[-215.43,-182.02],[-214.3,-178.69],[-213.48,-174.97],[-211.22,-171],[-207.86,-166.4],[-199.66,-152.7],[-185.78,-124.27],[-175.12,-95.58],[-168.53,-100.14],[-157.37,-125.07],[-147.84,-158.04],[-160.12,-220.79],[-174.41,-256.72],[-179.26,-272.24],[-190.8,-291.49],[-199.06,-307.02],[-200.3,-308.82],[-207.5,-320.58],[-212.93,-335.51],[-221.66,-352.8],[-225.76,-358.59],[-229.01,-365.97]],"o":[[-242.98,-373.43],[-249.92,-347.09],[-252.25,-321.12],[-252.52,-306.11],[-253.36,-290.9],[-254.37,-275.63],[-252.99,-255.22],[-239.62,-227.24],[-228.6,-209.58],[-225.18,-202.68],[-222.04,-195.97],[-219.65,-190.03],[-217.62,-185.11],[-215.99,-182.83],[-214.56,-179.95],[-213.76,-176.2],[-212.29,-172.56],[-209.01,-167.92],[-202.92,-158.42],[-191.18,-137.17],[-179.58,-109.05],[-169.43,-96.16],[-160.81,-114.56],[-151.54,-145.71],[-143.63,-198.1],[-172.27,-249.82],[-178.32,-267.7],[-184.71,-284.01],[-197.43,-302.34],[-200.82,-308.85],[-204.1,-315.22],[-212.17,-330.71],[-217.73,-345.94],[-224.16,-358.35],[-227.41,-361.4],[-233.84,-371]],"v":[[-240,-380],[-247.81,-356.23],[-252,-326],[-252.43,-311.13],[-253,-296],[-254.1,-280.69],[-254,-266],[-244.33,-236.26],[-230,-212],[-226.3,-204.98],[-223,-198],[-220.44,-192.01],[-218,-186],[-216.53,-183.6],[-215,-181],[-214.03,-177.44],[-213,-174],[-210.12,-169.46],[-207,-165],[-196,-146],[-182,-115],[-171,-96],[-167,-103],[-154,-137],[-147,-166],[-169,-242],[-177,-264],[-181,-276],[-196,-300],[-200,-308],[-201,-310],[-210,-326],[-215,-340],[-224,-358],[-226,-359],[-230,-367]],"c":true}],"h":1},{"t":104,"s":[{"i":[[-238.34,-378.97],[-243.52,-372.58],[-246.89,-358.43],[-250.69,-334.96],[-252.31,-305.9],[-253.84,-285.63],[-254.45,-270.79],[-249.02,-245.35],[-234.08,-219.33],[-225.2,-202.99],[-218.58,-188.89],[-216.29,-182.91],[-215.44,-179.97],[-208.18,-166.67],[-195.98,-147.66],[-189.25,-132.48],[-184.78,-120.5],[-180.52,-109.82],[-172.89,-95.83],[-170,-96.96],[-166.87,-101.39],[-161.97,-111.52],[-157.16,-125.22],[-142.68,-179.6],[-165.47,-231.33],[-176.87,-264.09],[-189.25,-289.53],[-195.13,-299.49],[-198.13,-304.49],[-201.13,-309.49],[-202.38,-312.86],[-218.61,-347.24],[-226.36,-362.01],[-230.11,-365.61],[-231.55,-369.23],[-234.04,-373.6]],"o":[[-242.08,-376.62],[-245.93,-363.49],[-249.79,-344.26],[-251.95,-315.78],[-253.37,-290.73],[-254.39,-275.66],[-252.98,-255.18],[-239.57,-227.42],[-227.66,-207.8],[-220.66,-193.53],[-216.56,-183.93],[-215.73,-180.93],[-211.94,-172.33],[-200.2,-154.33],[-190.61,-135.98],[-186.33,-124.74],[-182.57,-114.91],[-175.68,-100.28],[-170.82,-96.02],[-168.03,-99.65],[-163.89,-106.91],[-158.61,-120.67],[-148.37,-153.86],[-155.36,-216.78],[-175.11,-255.93],[-183.44,-280.69],[-194.27,-298.19],[-197.27,-303.19],[-200.27,-308.19],[-202.58,-312.01],[-210.84,-328.5],[-226.54,-360.93],[-227.93,-364.44],[-231.58,-367.9],[-233.14,-371.98],[-236.39,-377.04]],"v":[[-240,-380],[-244.73,-368.04],[-248,-353],[-251.32,-325.37],[-253,-296],[-254.11,-280.64],[-254,-266],[-244.3,-236.38],[-230,-212],[-222.93,-198.26],[-217,-185],[-216.01,-181.92],[-215,-179],[-204.19,-160.5],[-192,-139],[-187.79,-128.61],[-183,-116],[-178.1,-105.05],[-171,-96],[-169.02,-98.3],[-166,-103],[-160.29,-116.1],[-156,-129],[-151,-204],[-172,-248],[-180,-272],[-193,-296],[-196,-301],[-199,-306],[-202,-311],[-203,-314],[-226,-360],[-227,-363],[-231,-367],[-232,-370],[-235,-375]],"c":true}],"h":1},{"t":105,"s":[{"i":[[-238.34,-378.97],[-242.47,-375.91],[-244.12,-368.19],[-246.32,-361.15],[-248.61,-355.01],[-251.41,-334.42],[-252.38,-304.63],[-253.83,-284.69],[-254.49,-269.79],[-247.44,-240.83],[-228.56,-210.57],[-220.91,-193.49],[-216.77,-181.73],[-211.43,-171.5],[-205.07,-162.24],[-197.25,-149.47],[-189.04,-133.11],[-184.13,-120.01],[-180.36,-109.52],[-173.67,-96.89],[-168.69,-98.06],[-161.97,-111.52],[-157.03,-125.55],[-151.77,-143.48],[-147.4,-163.43],[-156.2,-215.31],[-173.88,-254.09],[-181.24,-276.44],[-185.5,-284.89],[-187.76,-286.59],[-188.52,-289.17],[-192.23,-295.13],[-205.79,-316.89],[-211.08,-330.96],[-216.31,-340.4],[-229.11,-366.39]],"o":[[-241.66,-378.06],[-243.7,-370.97],[-245.51,-363.14],[-247.87,-357.08],[-250.72,-344.11],[-252.24,-314.68],[-253.33,-289.8],[-254.41,-274.69],[-252.66,-252.05],[-235.39,-220.09],[-222.27,-197.38],[-218.16,-185.67],[-213.4,-174.63],[-207.27,-165.3],[-200.23,-154.67],[-191.65,-138.69],[-185.2,-123.49],[-181.71,-113.02],[-175.32,-99.86],[-170.36,-95.99],[-163.95,-106.75],[-158.51,-120.93],[-153.82,-136.27],[-148.56,-157.06],[-144.76,-200.33],[-170.7,-245.78],[-179.38,-269.8],[-184.69,-283.39],[-186.16,-286.35],[-188.59,-288.01],[-190.69,-292.93],[-199.65,-307.17],[-210.91,-327.98],[-213.7,-336.8],[-223.12,-354.92],[-236.39,-377.04]],"v":[[-240,-380],[-243.08,-373.44],[-245,-365],[-247.09,-359.12],[-249,-353],[-251.83,-324.55],[-253,-295],[-254.12,-279.69],[-254,-265],[-241.41,-230.46],[-224,-201],[-219.54,-189.58],[-215,-178],[-209.35,-168.4],[-203,-159],[-194.45,-144.08],[-187,-128],[-182.92,-116.51],[-178,-105],[-172.01,-96.44],[-166,-103],[-160.24,-116.23],[-156,-129],[-150.16,-150.27],[-147,-169],[-167,-238],[-177,-263],[-184,-282],[-186,-286],[-188,-287],[-189,-290],[-194,-298],[-210,-326],[-212,-333],[-218,-344],[-235,-375]],"c":true}],"h":1},{"t":106,"s":[{"i":[[-238.34,-378.97],[-243.72,-372.1],[-247,-357.47],[-248.79,-347.67],[-249.78,-341.24],[-250.41,-334.17],[-250.84,-326.68],[-252.82,-304.14],[-254.97,-274.42],[-249.98,-247.96],[-238.29,-226.74],[-234.22,-219.26],[-233.41,-216.72],[-231.31,-215.41],[-230.33,-212.62],[-222.93,-197.16],[-213.77,-175.26],[-202.95,-158.84],[-191.83,-140.62],[-186.24,-123.68],[-183.81,-116.63],[-177.33,-101.82],[-175.31,-99.42],[-169.14,-97.24],[-158.26,-122.53],[-147.81,-158.74],[-156.27,-216.26],[-173.96,-253.95],[-181.28,-276.53],[-185.5,-284.89],[-187.77,-286.58],[-190.81,-293.17],[-205.43,-316.1],[-211.12,-331.08],[-216.17,-340.08],[-229.22,-366.55]],"o":[[-242.22,-376.36],[-246.11,-362.65],[-248.4,-349.8],[-249.48,-343.39],[-250.24,-336.58],[-250.71,-329.22],[-251.58,-314.17],[-254.51,-284.26],[-253.08,-256.09],[-242.58,-233.29],[-234.51,-220.15],[-233.67,-217.55],[-232.78,-215.61],[-230.48,-214.3],[-225.52,-203.56],[-216.45,-182.07],[-207.06,-164.11],[-196.02,-146.85],[-187.61,-130.74],[-180.62,-111.49],[-176.58,-103.23],[-176.91,-100.77],[-170.8,-93.23],[-161.61,-111.04],[-151.55,-144.68],[-144.83,-200.34],[-170.97,-246.05],[-179.27,-269.75],[-184.69,-283.39],[-186.16,-286.35],[-189.76,-290.16],[-198.28,-304.69],[-210.9,-327.96],[-213.75,-336.83],[-223.01,-354.76],[-236.39,-377.04]],"v":[[-240,-380],[-244.91,-367.37],[-248,-352],[-249.13,-345.53],[-250,-339],[-250.56,-331.7],[-251,-324],[-253.66,-294.2],[-254,-265],[-246.28,-240.62],[-235,-221],[-233.94,-218.4],[-233,-216],[-231,-215],[-230,-212],[-219,-188],[-210,-169],[-199,-152],[-189,-134],[-185,-121],[-177,-104],[-177,-101],[-175,-99],[-166,-103],[-156,-130],[-147,-170],[-167,-238],[-177,-263],[-184,-282],[-186,-286],[-188,-287],[-192,-295],[-210,-326],[-212,-333],[-218,-344],[-235,-375]],"c":true}],"h":1},{"t":107,"s":[{"i":[[-235.39,-377.03],[-243.57,-372.58],[-246.93,-357.86],[-251.36,-333.87],[-251.69,-313.81],[-255.76,-277.91],[-252.45,-261.01],[-251.65,-253],[-247.41,-244.97],[-246.34,-239.84],[-244.38,-237.73],[-240.65,-229.88],[-229.35,-211.24],[-220.14,-189.64],[-213.73,-176.14],[-209.97,-170.52],[-207.84,-165.25],[-205.37,-163.39],[-204.67,-160.97],[-199.74,-154.99],[-198.4,-151.68],[-190.47,-136.17],[-186.19,-126.51],[-185.61,-121.71],[-182.68,-116.7],[-176,-95.5],[-167.69,-99.99],[-158.27,-122.29],[-147.85,-159.13],[-163.01,-225.6],[-180.69,-274.59],[-198.23,-304.59],[-209.42,-325.46],[-214.84,-336.39],[-217.68,-345.27],[-224.95,-357.97]],"o":[[-242.1,-376.65],[-245.98,-363.18],[-249.63,-343.09],[-252.33,-318.99],[-252.88,-295.48],[-253.77,-263.31],[-251.28,-255.82],[-250.05,-248.09],[-245.61,-241.18],[-245.82,-238.55],[-242.32,-233.77],[-234.63,-219.37],[-222.49,-196.4],[-215.41,-179.65],[-211.2,-171.55],[-208.13,-167.63],[-206.72,-163.59],[-204.24,-162.19],[-202.65,-158.05],[-198.44,-153.25],[-193.67,-143.69],[-187.89,-127.63],[-185.33,-124.19],[-184.29,-118.02],[-180.51,-111.27],[-170.49,-96.05],[-161.53,-110.97],[-151.55,-145.11],[-144.39,-207.45],[-178,-262.21],[-191.31,-295.4],[-206.84,-320.12],[-213.16,-333.48],[-217.33,-341.97],[-221.45,-353.07],[-231.97,-369.56]],"v":[[-240,-380],[-244.77,-367.88],[-248,-352],[-252,-324],[-252,-309],[-254,-265],[-252,-259],[-251,-251],[-246,-242],[-246,-239],[-244,-237],[-239,-227],[-226,-204],[-217,-183],[-212,-173],[-209,-169],[-207,-164],[-205,-163],[-204,-160],[-199,-154],[-198,-151],[-188,-128],[-186,-126],[-185,-120],[-182,-115],[-171,-96],[-166,-103],[-156,-130],[-147,-171],[-173,-250],[-186,-285],[-204,-315],[-212,-331],[-216,-339],[-219,-348],[-228,-363]],"c":true}],"h":1},{"t":108,"s":[{"i":[[-230.3,-370.33],[-243.23,-372.98],[-247.02,-359.9],[-250.52,-338.35],[-252.3,-312.35],[-253.89,-294.99],[-255.04,-281.97],[-253.44,-261.68],[-246.06,-241.94],[-235.36,-222.2],[-225.3,-202.61],[-222.5,-194.44],[-221.1,-193.25],[-219.02,-187.51],[-216.32,-179.51],[-212.44,-172.89],[-207.96,-167.26],[-206.59,-165.05],[-206.34,-163.46],[-204.7,-161.63],[-202.48,-159.74],[-200.76,-155.38],[-198.02,-150.89],[-189.85,-135.38],[-184.58,-119.97],[-175.2,-95.56],[-167.42,-100.47],[-163.03,-109.5],[-147.96,-156.87],[-165.85,-229.44],[-182.04,-278.71],[-191.93,-294.55],[-197.74,-306.23],[-201.49,-311.12],[-205.64,-317.44],[-212.42,-332.4]],"o":[[-241.72,-376.78],[-245.88,-364.53],[-249.62,-346.92],[-251.86,-321.06],[-253.37,-299.51],[-254.73,-286.22],[-254.91,-269.21],[-249.02,-248.04],[-239.21,-228.65],[-228.4,-209.18],[-222.94,-194.82],[-221.58,-193.66],[-219.86,-190.25],[-217.25,-182.14],[-213.96,-175.01],[-209.44,-169.01],[-206.67,-165.57],[-206.42,-164],[-205.46,-162.26],[-203.21,-160.37],[-201.09,-157.59],[-199.02,-152.24],[-193.1,-141.78],[-185.54,-124.22],[-182.12,-113.79],[-170.4,-96.06],[-164.28,-106.07],[-154.8,-129.52],[-144.8,-209.95],[-178.93,-267.42],[-188.79,-291.35],[-196.32,-301.86],[-200.4,-310.67],[-203.76,-315.04],[-210.09,-325.84],[-221.65,-352.4]],"v":[[-240,-380],[-244.56,-368.75],[-248,-355],[-251.19,-329.7],[-253,-304],[-254.31,-290.6],[-255,-278],[-251.23,-254.86],[-243,-236],[-231.88,-215.69],[-223,-195],[-222.04,-194.05],[-221,-193],[-218.14,-184.82],[-215,-177],[-210.94,-170.95],[-207,-166],[-206.51,-164.53],[-206,-163],[-203.95,-161],[-202,-159],[-200,-154],[-197,-149],[-187,-128],[-183,-116],[-171,-96],[-166,-103],[-162,-112],[-147,-173],[-175,-256],[-187,-288],[-194,-298],[-200,-310],[-202,-312],[-207,-320],[-215,-338]],"c":true}],"h":1},{"t":109,"s":[{"i":[[-233.61,-375.13],[-243.24,-372.94],[-247.06,-359.76],[-249.38,-346.63],[-250.62,-333.55],[-252.88,-310.98],[-255.3,-284.07],[-250.88,-251.55],[-235.77,-223.28],[-223.96,-198.58],[-213.87,-175.16],[-209.1,-167.73],[-207.51,-165.75],[-201.89,-157.5],[-194.78,-145.92],[-192.25,-139.99],[-191.44,-137.04],[-189.29,-132.45],[-186.43,-127.15],[-185.51,-123.9],[-185.3,-120.84],[-183.78,-117.41],[-182.09,-115.23],[-179.68,-107.82],[-173.64,-95.72],[-169.82,-97.09],[-166.77,-101.62],[-159.03,-118.34],[-155.39,-129.58],[-152.39,-145.48],[-147.33,-168.23],[-152.84,-212.49],[-165.02,-233.21],[-178.67,-270.5],[-195.61,-301.87],[-216.29,-339.98]],"o":[[-241.72,-376.81],[-245.91,-364.41],[-248.82,-350.85],[-250.28,-337.98],[-251.73,-320.19],[-254.66,-292.92],[-254.5,-262.41],[-241.52,-231.99],[-227.28,-206.75],[-217.25,-182.78],[-209.59,-168.35],[-208.05,-166.43],[-204.5,-161.29],[-197.03,-149.82],[-192.53,-140.97],[-191.7,-138.03],[-190.32,-134.38],[-187.34,-128.84],[-185.61,-124.98],[-185.35,-121.83],[-184.48,-118.55],[-182.58,-115.76],[-181.11,-112.71],[-175.94,-99.33],[-170.68,-96.03],[-167.87,-99.88],[-161.81,-110.48],[-156.56,-127.66],[-153.13,-137.79],[-149.08,-160.99],[-145.71,-196.66],[-162,-229.78],[-174.77,-251.84],[-190.83,-294.59],[-209.31,-324.13],[-228.54,-363.84]],"v":[[-240,-380],[-244.58,-368.68],[-248,-355],[-249.83,-342.3],[-251,-329],[-253.77,-301.95],[-255,-276],[-246.2,-241.77],[-231,-214],[-220.61,-190.68],[-210,-169],[-208.57,-167.08],[-207,-165],[-199.46,-153.66],[-193,-142],[-191.98,-139.01],[-191,-136],[-188.31,-130.65],[-186,-126],[-185.43,-122.86],[-185,-120],[-183.18,-116.58],[-182,-115],[-177.81,-103.57],[-171,-96],[-168.84,-98.49],[-166,-103],[-157,-126],[-155,-131],[-151,-152],[-147,-174],[-160,-226],[-167,-237],[-187,-287],[-200,-309],[-224,-355]],"c":true}],"h":1},{"t":110,"s":[{"i":[[-236.31,-377.99],[-243.37,-372.74],[-247.04,-359.02],[-250.46,-336.61],[-252.21,-309.64],[-254.12,-291.44],[-255.35,-277.56],[-254.11,-265.84],[-251.78,-256.29],[-247.43,-244.58],[-241.14,-231.81],[-237.01,-224.92],[-233.78,-220.46],[-226.27,-204.15],[-218.21,-182.66],[-211.08,-171.08],[-204.15,-162.32],[-193.31,-143.63],[-189.19,-134.52],[-185.49,-122.46],[-175.29,-95.58],[-167.96,-100.41],[-161.49,-113.12],[-156.36,-127.02],[-144.49,-179.46],[-151.83,-206.47],[-159.34,-223.63],[-172.08,-247.63],[-180.03,-270.55],[-186.36,-284.73],[-191.07,-295.78],[-194.68,-299.57],[-195.55,-302.29],[-202.36,-312.3],[-211.73,-330.96],[-225.71,-359.42]],"o":[[-241.85,-376.73],[-245.97,-363.89],[-249.61,-345.54],[-251.76,-318.66],[-253.44,-296.15],[-255.07,-282.14],[-254.73,-269.44],[-252.64,-259.26],[-249.36,-249.18],[-243.32,-235.9],[-238.12,-226.43],[-234.84,-221.93],[-229.16,-211.82],[-220.79,-189.57],[-213.25,-173.93],[-206.52,-165.28],[-197.49,-152.04],[-190.89,-135.63],[-186.62,-127.41],[-181.93,-113.22],[-169.3,-96.17],[-163.63,-108.35],[-158.04,-122.08],[-147.34,-160],[-150.09,-204.38],[-155.71,-218.51],[-168.57,-240.55],[-177.9,-262.32],[-184.39,-281.48],[-189.93,-291.84],[-193.24,-299.41],[-195.59,-300.78],[-199.3,-308.18],[-208.87,-323.88],[-220,-348.75],[-234.13,-373.07]],"v":[[-240,-380],[-244.67,-368.31],[-248,-354],[-251.11,-327.63],[-253,-301],[-254.6,-286.79],[-255,-273],[-253.38,-262.55],[-251,-254],[-245.37,-240.24],[-239,-228],[-235.93,-223.42],[-233,-219],[-223.53,-196.86],[-215,-177],[-208.8,-168.18],[-202,-159],[-191,-136],[-189,-134],[-183,-116],[-171,-96],[-166,-104],[-160,-117],[-155,-132],[-150,-204],[-152,-207],[-165,-234],[-175,-255],[-183,-278],[-188,-288],[-193,-299],[-195,-300],[-196,-303],[-205,-317],[-215,-338],[-231,-368]],"c":true}],"h":1},{"t":111,"s":[{"i":[[-228.97,-369.31],[-243.38,-372.72],[-247.05,-359.01],[-249.34,-345.63],[-250.62,-332.48],[-253.17,-309.21],[-255.73,-281.79],[-252.44,-258.22],[-244.63,-238.93],[-239.18,-228.89],[-234.98,-221.69],[-229.32,-211.04],[-223.64,-197.2],[-219.28,-186.56],[-214.68,-177.83],[-208.18,-167.57],[-200.99,-157.47],[-194.64,-145.69],[-188.23,-130.18],[-182.32,-113.34],[-173.7,-95.74],[-167.26,-99.84],[-161.44,-111.91],[-158.31,-120.92],[-155.78,-131.95],[-150.71,-151.75],[-146.84,-174.74],[-149.55,-201.15],[-160.67,-227.33],[-169.36,-242.72],[-175.42,-254.82],[-179.79,-267.69],[-183.89,-281.43],[-189.89,-293.48],[-196.82,-304.45],[-208.16,-323.06]],"o":[[-241.85,-376.71],[-245.97,-363.87],[-248.78,-349.89],[-250.26,-336.93],[-251.81,-318.56],[-255.14,-290.82],[-254.38,-265.5],[-247.56,-244.93],[-240.69,-231.55],[-236.33,-223.97],[-231.5,-215.69],[-225.4,-201.79],[-220.69,-189.64],[-216.27,-180.66],[-210.68,-171.09],[-203.33,-160.77],[-196.77,-150.1],[-190.37,-135.73],[-184.72,-120.46],[-176.81,-100.97],[-169.54,-96.14],[-163.21,-107.73],[-159.42,-116.95],[-156.49,-128.43],[-152.79,-143.63],[-147.74,-167.3],[-147.22,-191.73],[-156.28,-218.94],[-167.15,-238.81],[-173.49,-250.72],[-178.6,-263.22],[-182.44,-276.79],[-187.73,-289.75],[-194.44,-300.82],[-203.73,-315.72],[-219.86,-347.23]],"v":[[-240,-380],[-244.67,-368.29],[-248,-354],[-249.8,-341.28],[-251,-328],[-254.15,-300.01],[-255,-273],[-250,-251.58],[-242,-234],[-237.75,-226.43],[-234,-220],[-227.36,-206.41],[-222,-193],[-217.78,-183.61],[-213,-175],[-205.75,-164.17],[-199,-154],[-192.5,-140.71],[-186,-124],[-179.56,-107.15],[-171,-96],[-165.24,-103.78],[-161,-113],[-157.4,-124.67],[-155,-135],[-149.23,-159.53],[-147,-182],[-152.92,-210.04],[-165,-235],[-171.42,-246.72],[-177,-259],[-181.12,-272.24],[-186,-286],[-192.16,-297.15],[-199,-308],[-212,-331]],"c":true}],"h":1},{"t":112,"s":[{"i":[[-228.78,-369.44],[-243.4,-372.61],[-247.1,-358.9],[-249.31,-345.51],[-250.58,-332.43],[-253.26,-308.66],[-255.7,-281.35],[-250.83,-252.23],[-237.58,-227.08],[-228.51,-208.43],[-222.8,-194.32],[-219.34,-185.85],[-216.63,-179.66],[-215.51,-178.37],[-215.35,-177.59],[-211.1,-171.37],[-205.15,-163.55],[-203.49,-160.68],[-202.12,-160.19],[-201.32,-158.74],[-200.31,-156.52],[-195.51,-146.47],[-189.94,-136.56],[-186.05,-124.75],[-184.71,-118.81],[-180.94,-112.2],[-179.42,-107.01],[-177.69,-103.18],[-170.08,-96.39],[-157.29,-124.79],[-146.85,-167.18],[-152.37,-212.3],[-166.96,-238.01],[-177.65,-262.66],[-192.02,-296.73],[-208.04,-323.18]],"o":[[-241.85,-376.66],[-246.03,-363.73],[-248.77,-349.79],[-250.22,-336.83],[-251.92,-318.24],[-255.15,-290.22],[-254.04,-261.44],[-242.6,-235.05],[-230.61,-213.27],[-224.61,-198.96],[-220.28,-188.27],[-217.52,-181.54],[-215.59,-178.57],[-215.39,-177.87],[-213.27,-174.09],[-207.04,-166.1],[-203.92,-160.83],[-202.58,-160.36],[-201.66,-159.48],[-200.64,-157.26],[-197.34,-151.47],[-191.95,-138.72],[-187.4,-129.66],[-184.36,-120.31],[-183.04,-114.54],[-179.39,-108.58],[-178.4,-104.55],[-171.3,-92.19],[-161.21,-112.92],[-150.73,-151.17],[-147.17,-196.7],[-162.2,-230.99],[-175.25,-254.4],[-185.96,-285.82],[-203.75,-315.68],[-220.14,-347.07]],"v":[[-240,-380],[-244.71,-368.17],[-248,-354],[-249.76,-341.17],[-251,-328],[-254.21,-299.44],[-255,-273],[-246.72,-243.64],[-233,-218],[-226.56,-203.69],[-221,-190],[-218.43,-183.69],[-216,-179],[-215.45,-178.12],[-215,-177],[-209.07,-168.73],[-204,-161],[-203.04,-160.52],[-202,-160],[-200.98,-158],[-200,-156],[-193,-141],[-189,-134],[-185,-122],[-184,-117],[-180,-110],[-179,-106],[-177,-102],[-166,-104],[-155,-134],[-147,-181],[-158,-223],[-171,-246],[-181,-272],[-199,-308],[-212,-331]],"c":true}],"h":1},{"t":113,"s":[{"i":[[-237.43,-380],[-241.18,-378.37],[-241.7,-376.89],[-245.93,-362.05],[-250.04,-336.41],[-253.36,-308.13],[-255.81,-280.62],[-249.42,-250.4],[-232.76,-217.82],[-225.41,-201.46],[-222.78,-193.85],[-216.89,-181.27],[-214.64,-175.99],[-211.02,-172.48],[-209.63,-168.82],[-205.83,-165.08],[-204.67,-161.97],[-201.11,-158.72],[-199.44,-154.77],[-194.33,-145.72],[-186.52,-126.05],[-176.94,-95.43],[-162.13,-110.17],[-156.84,-126.61],[-144,-187.77],[-159.79,-225.95],[-173.64,-250.19],[-177.81,-259.48],[-180.87,-272.1],[-196.79,-304.28],[-207.81,-322.85],[-216.94,-341.49],[-223.11,-355.55],[-226.7,-359.6],[-227.6,-362.32],[-230.07,-366.47]],"o":[[-240.84,-378.67],[-241.62,-377.48],[-244.16,-369.6],[-248.87,-345.46],[-251.96,-317.57],[-255.29,-289.66],[-254.04,-261.73],[-238.78,-228.44],[-226.96,-204.22],[-223.19,-196.02],[-219.77,-186.72],[-214.46,-177.07],[-213.11,-173.62],[-209.34,-170.04],[-207.76,-166.37],[-204.33,-163.12],[-203.03,-159.59],[-199.42,-156.1],[-196.48,-149.65],[-189.36,-133.54],[-181.46,-113.03],[-168.02,-96.28],[-157.84,-120.91],[-148.23,-161.21],[-156.67,-220.48],[-169.32,-242.49],[-176.11,-258.37],[-180.19,-266.07],[-187.93,-291.63],[-205.32,-319.01],[-213.85,-334.31],[-221.85,-351.95],[-225.21,-359.38],[-227.56,-360.75],[-228.91,-364.53],[-233.43,-372]],"v":[[-240,-379],[-241.4,-377.92],[-242,-376],[-247.4,-353.75],[-251,-327],[-254.33,-298.89],[-255,-272],[-244.1,-239.42],[-229,-209],[-224,-198],[-222,-192],[-215,-178],[-214,-175],[-210,-171],[-209,-168],[-205,-164],[-204,-161],[-200,-157],[-199,-154],[-192,-140],[-183,-117],[-171,-96],[-161,-113],[-155,-134],[-153,-211],[-165,-235],[-176,-258],[-178,-260],[-183,-278],[-203,-315],[-210,-327],[-220,-348],[-225,-359],[-227,-360],[-228,-363],[-231,-368]],"c":true}],"h":1},{"t":114,"s":[{"i":[[-236.23,-379.01],[-242.24,-375.98],[-244.27,-368.8],[-247.68,-353.76],[-250.25,-333.96],[-253.46,-308.54],[-255.93,-281.05],[-249.26,-250.59],[-232.6,-217.96],[-224.48,-197.84],[-217.31,-181.98],[-214.64,-177.03],[-214.32,-175.5],[-212.78,-173.62],[-210.46,-171.64],[-207.08,-166.82],[-203.02,-160.64],[-200.9,-157.19],[-199.42,-154.68],[-198.4,-153.37],[-197.18,-152.35],[-192.74,-142.36],[-187.7,-126.73],[-183.65,-118.7],[-176.47,-95.48],[-163.06,-108.57],[-157.52,-123.34],[-148.8,-158.78],[-152.25,-212.13],[-172.49,-246.72],[-184.52,-281.79],[-197.05,-305.69],[-209.18,-326.56],[-218.7,-344.09],[-225.22,-359.23],[-231.71,-367.96]],"o":[[-241.36,-378.08],[-243.7,-371.34],[-246.56,-360.03],[-249.53,-340.72],[-251.99,-317.77],[-255.43,-290.18],[-253.95,-261.86],[-238.58,-228.64],[-226.83,-203.6],[-219.72,-187.03],[-214.73,-177.53],[-214.43,-176.01],[-213.55,-174.3],[-211.23,-172.29],[-208.57,-169],[-204.3,-162.64],[-201.44,-158.1],[-199.89,-155.48],[-198.81,-153.7],[-197.59,-152.7],[-194.64,-147.5],[-189.27,-131.98],[-185.47,-120.52],[-181.38,-112.78],[-167.85,-96.3],[-159.27,-117.25],[-152.32,-142.72],[-146.29,-193.91],[-165.04,-236.52],[-182.16,-270.89],[-192.78,-298.77],[-205.35,-318.95],[-215.68,-339.23],[-223.31,-353.93],[-229.17,-366],[-235.48,-373.94]],"v":[[-240,-380],[-242.97,-373.66],[-245,-366],[-248.61,-347.24],[-251,-327],[-254.44,-299.36],[-255,-272],[-243.92,-239.62],[-229,-209],[-222.1,-192.44],[-215,-178],[-214.54,-176.52],[-214,-175],[-212,-172.95],[-210,-171],[-205.69,-164.73],[-202,-159],[-200.4,-156.34],[-199,-154],[-198,-153.03],[-197,-152],[-191,-137.17],[-186,-122],[-183,-117],[-171,-96],[-162,-111],[-156,-129],[-148,-170],[-159,-225],[-177,-258],[-189,-291],[-201,-312],[-213,-334],[-221,-349],[-228,-364],[-233,-370]],"c":true}],"h":1},{"t":115,"s":[{"i":[[-233.39,-373.87],[-242.21,-376.06],[-244.27,-368.8],[-247.71,-353.63],[-250.27,-333.78],[-253.48,-308.45],[-255.95,-281.15],[-249.34,-250.88],[-232.68,-217.53],[-226.49,-202.94],[-223.23,-194.73],[-220.35,-187.86],[-218.04,-181.8],[-214.88,-176.9],[-211.13,-172.54],[-207.03,-166.81],[-203.04,-160.67],[-200.26,-156.56],[-197.65,-153.23],[-192.71,-142.34],[-187.68,-126.68],[-185.15,-120.44],[-183.33,-117.85],[-180.56,-109.51],[-173.73,-95.74],[-163.97,-106.5],[-157.49,-124.18],[-143.96,-186.65],[-154.3,-217.46],[-159.17,-224.78],[-164.04,-234.7],[-174.62,-252.13],[-178.81,-261.48],[-181.82,-273.99],[-213.41,-325.89],[-222.77,-352.52]],"o":[[-241.33,-378.16],[-243.68,-371.38],[-246.57,-359.99],[-249.56,-340.53],[-252.01,-317.62],[-255.45,-290.22],[-254,-262.36],[-238.68,-228.46],[-227.63,-205.82],[-224.29,-197.39],[-221.08,-189.95],[-218.83,-183.78],[-216.06,-178.38],[-212.41,-173.98],[-208.51,-168.97],[-204.29,-162.65],[-201.19,-157.69],[-198.49,-154.33],[-194.62,-147.5],[-189.24,-131.93],[-185.73,-121.26],[-183.94,-118.73],[-182.19,-114.89],[-176.33,-99.93],[-168.52,-96.24],[-158.99,-117.89],[-148.97,-157.49],[-153.78,-214.18],[-156.34,-221.97],[-162.9,-231.33],[-170.12,-244.93],[-177.11,-260.37],[-181.22,-268.14],[-193.24,-305.54],[-221.11,-351.36],[-227.51,-362.53]],"v":[[-240,-380],[-242.95,-373.72],[-245,-366],[-248.63,-347.08],[-251,-327],[-254.46,-299.33],[-255,-272],[-244.01,-239.67],[-229,-209],[-225.39,-200.17],[-222,-192],[-219.59,-185.82],[-217,-180],[-213.64,-175.44],[-210,-171],[-205.66,-164.73],[-202,-159],[-199.38,-155.44],[-197,-152],[-190.98,-137.14],[-186,-122],[-184.54,-119.58],[-183,-117],[-178.44,-104.72],[-171,-96],[-162,-111],[-156,-130],[-153,-212],[-155,-219],[-161,-228],[-166,-238],[-177,-260],[-179,-262],[-184,-280],[-221,-351],[-223,-353]],"c":true}],"h":1},{"t":116,"s":[{"i":[[-235.51,-377.72],[-242.21,-376.06],[-244.27,-368.8],[-247.68,-353.57],[-250.19,-333.82],[-253.59,-308.56],[-255.97,-281.12],[-253.64,-264.51],[-250.1,-254.81],[-244.78,-242.1],[-238.04,-228.29],[-229.94,-209.87],[-221.26,-188.64],[-216.22,-179.98],[-213.78,-176.14],[-205.61,-164.85],[-196.02,-150.19],[-189.56,-133.52],[-183.76,-116.02],[-179.19,-105.69],[-172.83,-95.82],[-168.19,-98.54],[-163.16,-108.36],[-157.54,-124],[-146.05,-167.6],[-154.98,-217.96],[-173.34,-248.37],[-181.06,-271.42],[-190.89,-296.3],[-197.49,-307.47],[-200.96,-311.31],[-201.76,-314.48],[-203.76,-315.59],[-205.16,-318.56],[-216.27,-339.44],[-226.48,-362.37]],"o":[[-241.33,-378.16],[-243.68,-371.38],[-246.59,-359.91],[-249.48,-340.53],[-252.1,-317.75],[-255.52,-290.25],[-254.58,-268.1],[-251.4,-257.86],[-247.01,-246.95],[-240.3,-232.77],[-232.81,-217.31],[-224.17,-195.54],[-217.08,-181.41],[-214.57,-177.35],[-209.1,-169.26],[-199.07,-155.32],[-191.43,-139.26],[-185.73,-121.9],[-181.03,-109.78],[-175.09,-98.71],[-169.86,-96.11],[-164.84,-104.66],[-159.07,-117.65],[-150.57,-151.18],[-149.2,-205.41],[-166.13,-238.05],[-180.26,-265.66],[-185.98,-285.56],[-196.1,-304.79],[-199.63,-309.7],[-202.3,-313.48],[-202.16,-315.35],[-204.87,-317.51],[-211.64,-329.61],[-223.25,-353.55],[-232.98,-369.16]],"v":[[-240,-380],[-242.95,-373.72],[-245,-366],[-248.58,-347.05],[-251,-327],[-254.56,-299.4],[-255,-272],[-252.52,-261.18],[-249,-252],[-242.54,-237.43],[-236,-224],[-227.06,-202.71],[-218,-183],[-215.39,-178.67],[-213,-175],[-202.34,-160.09],[-193,-143],[-187.64,-127.71],[-182,-112],[-177.14,-102.2],[-171,-96],[-166.52,-101.6],[-162,-111],[-156,-130],[-148,-191],[-160,-227],[-178,-260],[-183,-277],[-195,-303],[-198,-308],[-202,-313],[-202,-315],[-204,-316],[-206,-320],[-221,-349],[-229,-365]],"c":true}],"h":1},{"t":117,"s":[{"i":[[-238.34,-378.97],[-242.07,-375.94],[-244.31,-368.64],[-247.64,-353.68],[-250.14,-333.86],[-253.66,-308.67],[-256.02,-281.11],[-251.83,-258.24],[-241.59,-235.27],[-232.17,-215.39],[-224.33,-196.41],[-218.4,-183.46],[-212.4,-174.26],[-206.45,-166.33],[-201.45,-159.48],[-195.19,-147.57],[-189.32,-131.4],[-183.06,-114.03],[-173.73,-95.74],[-159.28,-116.19],[-152.94,-139.98],[-147.03,-199.46],[-161,-229.08],[-165.11,-237.57],[-170.37,-244.07],[-175.77,-256.34],[-178.38,-262.66],[-179.48,-265.56],[-188.07,-289.89],[-198.69,-309.29],[-202.6,-314.33],[-207.01,-323.64],[-212.03,-330.18],[-220.13,-348.48],[-231.19,-367.66],[-234.44,-374.18]],"o":[[-241.17,-378.12],[-243.64,-371.2],[-246.57,-360],[-249.42,-340.61],[-252.15,-317.87],[-255.59,-290.29],[-254.29,-265.61],[-245.49,-243.07],[-235,-221.94],[-226.84,-202.63],[-220.2,-186.83],[-214.5,-177.17],[-208.23,-168.6],[-203.07,-161.78],[-197.29,-152.37],[-191.21,-137.09],[-185.7,-121.41],[-177.08,-101.19],[-167.85,-96.3],[-154.72,-129.77],[-147.06,-173.39],[-156.95,-223.01],[-164.82,-235.34],[-167.8,-241.9],[-174,-250.6],[-177.77,-260.68],[-179.36,-264.77],[-184.06,-278.29],[-195.48,-303.58],[-201.37,-313.6],[-205.41,-319.02],[-210.18,-329],[-217.13,-339.71],[-226.98,-361.79],[-234.63,-372.97],[-236.39,-377.04]],"v":[[-240,-380],[-242.86,-373.57],[-245,-366],[-248.53,-347.15],[-251,-327],[-254.62,-299.48],[-255,-272],[-248.66,-250.66],[-238,-228],[-229.5,-209.01],[-222,-191],[-216.45,-180.31],[-210,-171],[-204.76,-164.06],[-200,-157],[-193.2,-142.33],[-187,-125],[-180.07,-107.61],[-171,-96],[-158,-120],[-151,-151],[-154,-216],[-164,-234],[-166,-239],[-172,-247],[-177,-259],[-179,-264],[-180,-267],[-193,-299],[-201,-313],[-203,-315],[-209,-327],[-213,-332],[-224,-356],[-234,-372],[-235,-375]],"c":true}],"h":1},{"t":118,"s":[{"i":[[-227.94,-366.82],[-242.06,-375.98],[-244.32,-368.65],[-247.63,-353.56],[-250.14,-333.81],[-253.68,-307.64],[-255.93,-280.63],[-253.62,-265.58],[-249.64,-253.97],[-243.35,-239.36],[-236.02,-223.65],[-230.77,-211.57],[-226.32,-201.21],[-223.62,-194.11],[-221.82,-188.58],[-214.04,-175.94],[-202.64,-161.54],[-195.51,-148.15],[-189.39,-131.67],[-183.07,-114.17],[-173.61,-95.75],[-169.31,-97.39],[-165.71,-102.67],[-160.21,-114.45],[-154.99,-131.46],[-150.17,-154.25],[-147.44,-179.71],[-150.01,-203.35],[-156.93,-222.33],[-166.44,-238.83],[-176.38,-255.56],[-183.13,-273.71],[-187.86,-289.38],[-199.93,-311.36],[-206.49,-322.47],[-209.04,-326.3]],"o":[[-241.15,-378.15],[-243.64,-371.23],[-246.56,-359.9],[-249.42,-340.51],[-252.22,-317.32],[-255.54,-289.29],[-254.55,-269.35],[-251.16,-257.89],[-245.85,-244.78],[-238.44,-228.79],[-232.36,-215.22],[-227.75,-204.57],[-224.21,-196.07],[-222.42,-190.36],[-217.97,-181.18],[-206.38,-166.12],[-197.56,-152.82],[-191.42,-137.58],[-185.76,-121.55],[-176.99,-101.27],[-170.45,-96.05],[-166.94,-100.7],[-162.46,-108.72],[-156.47,-125.82],[-151.95,-145.4],[-147.92,-171.4],[-148.55,-196.18],[-154.2,-216.42],[-163,-233.55],[-173.13,-249.83],[-181.45,-268.02],[-186.33,-284.39],[-193.79,-302.16],[-205.1,-319.79],[-208.61,-324.68],[-219.67,-345.08]],"v":[[-240,-380],[-242.85,-373.6],[-245,-366],[-248.53,-347.04],[-251,-327],[-254.61,-298.47],[-255,-273],[-252.39,-261.74],[-248,-250],[-240.9,-234.08],[-234,-219],[-229.26,-208.07],[-225,-198],[-223.02,-192.24],[-221,-187],[-210.21,-171.03],[-200,-157],[-193.47,-142.87],[-187,-125],[-180.03,-107.72],[-171,-96],[-168.12,-99.04],[-165,-104],[-158.34,-120.14],[-154,-136],[-149.04,-162.83],[-148,-188],[-152.11,-209.88],[-160,-228],[-169.79,-244.33],[-179,-262],[-184.73,-279.05],[-190,-294],[-204,-318],[-207,-323],[-210,-328]],"c":true}],"h":1},{"t":119,"s":[{"i":[[-228.63,-368.19],[-241.9,-376.18],[-244.33,-369.51],[-247.33,-355.9],[-249.22,-338.88],[-252.59,-316.83],[-256.05,-293.24],[-254.13,-267.86],[-244.39,-241.37],[-235.37,-222],[-228.79,-206.72],[-225.23,-197.09],[-222.93,-190.87],[-220.99,-186.9],[-219.49,-183.84],[-217.83,-181.66],[-215.48,-179.7],[-214.57,-178],[-214.24,-176.38],[-213.43,-175.36],[-212.23,-174.31],[-209.64,-170.7],[-206.17,-165.63],[-201.89,-161.38],[-198.97,-155.84],[-189.79,-131.55],[-175.42,-95.58],[-168.04,-100.3],[-158.94,-115.84],[-155.87,-130.21],[-152.59,-140.71],[-147.97,-171.08],[-162.06,-229.94],[-181.9,-270.6],[-190.35,-294.03],[-207.09,-322.16]],"o":[[-240.98,-378.18],[-243.58,-371.85],[-246.47,-361.46],[-248.7,-344.61],[-251.07,-324.96],[-255.09,-300.97],[-255.93,-276.67],[-248.36,-250.21],[-237.72,-227.14],[-230.9,-211.8],[-226.02,-199.41],[-223.69,-192.82],[-221.49,-187.98],[-219.99,-184.82],[-218.59,-182.3],[-216.27,-180.35],[-214.7,-178.56],[-214.34,-176.91],[-213.82,-175.71],[-212.63,-174.66],[-210.81,-172.39],[-207.32,-167.33],[-203.95,-162.52],[-199.8,-158.15],[-191.66,-141.99],[-182.45,-113.11],[-168.83,-96.21],[-162.36,-110.6],[-155.73,-126.05],[-154.22,-137.38],[-149.93,-155.48],[-148.1,-215.6],[-178.7,-260.69],[-187.91,-288.82],[-200.04,-312.53],[-221.99,-349.51]],"v":[[-240,-380],[-242.74,-374.02],[-245,-367],[-248.01,-350.25],[-250,-333],[-253.84,-308.9],[-256,-286],[-251.24,-259.03],[-240,-232],[-233.13,-216.9],[-227,-202],[-224.46,-194.96],[-222,-189],[-220.49,-185.86],[-219,-183],[-217.05,-181],[-215,-179],[-214.45,-177.46],[-214,-176],[-213.03,-175.01],[-212,-174],[-208.48,-169.02],[-205,-164],[-201,-160],[-198,-154],[-184,-117],[-171,-96],[-166,-104],[-157,-122],[-155,-134],[-152,-144],[-148,-182],[-174,-252],[-185,-280],[-194,-301],[-213,-333]],"c":true}],"h":1},{"t":120,"s":[{"i":[[-227.96,-366.87],[-245.27,-366.33],[-248.8,-342.03],[-252.62,-316.91],[-256.11,-293.36],[-251.9,-261.01],[-236.17,-224.16],[-229.68,-207.71],[-226.34,-197.97],[-222.08,-189.32],[-217.21,-181.8],[-213.24,-176],[-209.36,-170.79],[-204.24,-163.96],[-199.26,-156.4],[-192.76,-141.95],[-186.3,-121.9],[-180.31,-107.55],[-172.75,-95.83],[-168.29,-98.61],[-163.5,-107.04],[-157.71,-119.85],[-152.99,-138.07],[-150.04,-156.54],[-147.98,-176.77],[-148.72,-194.64],[-152.39,-213.88],[-156.13,-220.25],[-158.01,-226.14],[-170.88,-245.88],[-186.62,-287.54],[-197.18,-305.9],[-202.12,-315.89],[-205.67,-319.56],[-206.6,-322.32],[-209.01,-326.28]],"o":[[-243.37,-373.57],[-247.99,-350.56],[-251.07,-324.98],[-255.15,-301.1],[-255.81,-273.93],[-242.08,-236.12],[-230.76,-210.97],[-227.47,-201.2],[-223.72,-192.17],[-218.82,-184.14],[-214.56,-177.85],[-210.64,-172.47],[-206.11,-166.51],[-200.81,-158.91],[-195.11,-148.5],[-188.36,-128.65],[-182.69,-112.63],[-175.35,-99.15],[-170.04,-96.09],[-165.02,-104.09],[-159.97,-113.81],[-154.23,-131.98],[-151.05,-149.65],[-148.5,-170.09],[-148.02,-187.7],[-150.9,-207.73],[-154.57,-219.45],[-157.83,-223.66],[-164.22,-237.81],[-183.29,-270.42],[-194.6,-303.12],[-200.92,-312.26],[-204.25,-319.41],[-206.56,-320.75],[-208.08,-324.83],[-219.65,-344.77]],"v":[[-240,-380],[-246.63,-358.45],[-250,-333],[-253.88,-309.01],[-256,-286],[-246.99,-248.57],[-232,-214],[-228.57,-204.45],[-225,-195],[-220.45,-186.73],[-216,-180],[-211.94,-174.23],[-208,-169],[-202.53,-161.44],[-198,-154],[-190.56,-135.3],[-184,-116],[-177.83,-103.35],[-171,-96],[-166.65,-101.35],[-163,-108],[-155.97,-125.91],[-152,-144],[-149.27,-163.32],[-148,-182],[-149.81,-201.18],[-154,-218],[-157,-222],[-159,-228],[-176,-256],[-193,-300],[-199,-309],[-204,-319],[-206,-320],[-207,-323],[-210,-328]],"c":true}],"h":1},{"t":121,"s":[{"i":[[-238.14,-379.48],[-244.98,-366.84],[-248.73,-342.94],[-252.68,-317.92],[-256.08,-294.38],[-254.49,-271.46],[-248.15,-251.22],[-241.24,-235.42],[-233.61,-218.88],[-230.43,-209.53],[-227.88,-203.18],[-224.84,-195.44],[-221.45,-187.46],[-213.25,-175.29],[-202.63,-162.49],[-195.34,-148.36],[-189.56,-130.93],[-182.82,-113.18],[-173.38,-95.77],[-168.73,-98.22],[-164.41,-105.3],[-160.57,-113.05],[-156.9,-124.63],[-149.59,-157.48],[-149.56,-203.42],[-161.63,-231.73],[-166.24,-239.81],[-177.45,-257.12],[-183.84,-275.54],[-191.11,-294.54],[-197.79,-308.13],[-206.38,-321.79],[-211.15,-331.12],[-213.77,-333.58],[-223.69,-355.8],[-233.84,-373.75]],"o":[[-243.11,-373.87],[-247.79,-351.37],[-251.14,-325.98],[-255.15,-302.12],[-255.92,-279.1],[-250.61,-257.52],[-243.93,-240.98],[-236.08,-224.37],[-231.24,-211.69],[-228.75,-205.27],[-225.87,-198.22],[-222.63,-190.07],[-216.93,-179.79],[-206.1,-166.64],[-197.31,-153.4],[-191.47,-137.12],[-185.63,-120.3],[-176.69,-100.92],[-170.27,-96.07],[-165.8,-102.83],[-162.11,-109.23],[-157.96,-120.75],[-152.31,-141.77],[-148.21,-188.31],[-156.86,-224.1],[-165.77,-238.2],[-172.32,-249.27],[-182.96,-270.89],[-188.28,-288.78],[-196.67,-305.2],[-202.2,-314.93],[-210.55,-328.49],[-212.16,-333.36],[-219.35,-343.75],[-231.27,-367.5],[-237.46,-377.52]],"v":[[-240,-380],[-246.38,-359.11],[-250,-334],[-253.91,-310.02],[-256,-287],[-252.55,-264.49],[-246,-246],[-238.66,-229.9],[-232,-214],[-229.59,-207.4],[-227,-201],[-223.74,-192.76],[-220,-185],[-209.67,-170.96],[-200,-158],[-193.4,-142.74],[-187,-124],[-179.76,-107.05],[-171,-96],[-167.26,-100.53],[-164,-106],[-159.26,-116.9],[-156,-128],[-148.9,-172.89],[-154,-216],[-165,-237],[-167,-241],[-181,-266],[-185,-279],[-195,-302],[-199,-310],[-209,-326],[-212,-333],[-214,-334],[-229,-364],[-236,-376]],"c":true}],"h":1},{"t":122,"s":[{"i":[[-236.49,-377.4],[-244.93,-366.85],[-248.73,-342.92],[-252.71,-317.96],[-256.14,-294.46],[-251.7,-260.35],[-235.92,-224.28],[-230.12,-209.04],[-227.86,-203.1],[-224.84,-195.42],[-221.41,-187.3],[-213.08,-175.2],[-202.57,-162.4],[-195.34,-148.36],[-189.55,-130.91],[-182.76,-113.05],[-173.36,-95.8],[-168.96,-97.69],[-165.69,-103.74],[-154.56,-130.32],[-147.83,-178.85],[-150.55,-205.05],[-155.31,-221.4],[-163.47,-236.03],[-175.95,-254.43],[-181.9,-268.45],[-184.85,-279.48],[-188.64,-290.09],[-193.42,-299.95],[-198.47,-309.14],[-204.18,-317.98],[-206.7,-322.59],[-207.5,-325.19],[-208.94,-327.3],[-210.59,-329.3],[-224.04,-355.7]],"o":[[-243.06,-373.89],[-247.76,-351.36],[-251.14,-325.98],[-255.21,-302.2],[-255.74,-273.46],[-241.79,-235.76],[-230.95,-211.24],[-228.58,-204.97],[-225.88,-198.27],[-222.6,-189.94],[-216.79,-179.75],[-205.97,-166.52],[-197.31,-153.4],[-191.46,-137.11],[-185.58,-120.15],[-176.65,-100.88],[-170.11,-96.07],[-166.75,-101.53],[-159.15,-115.65],[-148.9,-161.93],[-149.39,-199.1],[-153.51,-216.2],[-159.5,-230.32],[-171.7,-248.09],[-180.72,-264.7],[-183.96,-275.84],[-187.18,-286.61],[-191.76,-296.76],[-196.63,-306.15],[-202.24,-315.05],[-206.45,-321.74],[-207.23,-324.31],[-208.4,-326.65],[-210.04,-328.62],[-217.88,-341.89],[-232.68,-370.63]],"v":[[-240,-380],[-246.35,-359.11],[-250,-334],[-253.96,-310.08],[-256,-287],[-246.75,-248.06],[-232,-214],[-229.35,-207],[-227,-201],[-223.72,-192.68],[-220,-185],[-209.52,-170.86],[-200,-158],[-193.4,-142.74],[-187,-124],[-179.71,-106.96],[-171,-96],[-167.85,-99.61],[-165,-105],[-151.73,-146.12],[-149,-194],[-152.03,-210.63],[-157,-225],[-167.59,-242.06],[-179,-261],[-182.93,-272.14],[-186,-283],[-190.2,-293.42],[-195,-303],[-200.35,-312.09],[-206,-321],[-206.96,-323.45],[-208,-326],[-209.49,-327.96],[-211,-330],[-230,-366]],"c":true}],"h":1},{"t":123,"s":[{"i":[[-237.51,-378.68],[-244.82,-367.09],[-248.67,-343.78],[-252.64,-319.7],[-256,-297.03],[-254.34,-271.65],[-245.18,-245.75],[-236.65,-225.5],[-230.71,-209.81],[-226.42,-197.76],[-221.5,-186.57],[-218.46,-183.28],[-216.57,-180.78],[-210.77,-173.23],[-203.15,-163.42],[-193.48,-144.2],[-184.84,-117.06],[-177.46,-102.13],[-172.31,-95.89],[-169.21,-97.63],[-165.47,-103.18],[-157,-121.75],[-150.91,-153.07],[-149.16,-173.76],[-148.63,-188.24],[-155.91,-223.41],[-176.46,-254.15],[-184.72,-276.13],[-187.58,-287.36],[-191.82,-297.4],[-196.86,-307.48],[-199.76,-310.59],[-203.42,-318.67],[-209.01,-327.53],[-213.94,-335.05],[-227.06,-361.48]],"o":[[-242.99,-373.96],[-247.67,-352],[-251.14,-327.44],[-255.07,-304.5],[-256,-280.28],[-248.93,-254.39],[-238.79,-230.85],[-232.61,-214.98],[-227.92,-201.97],[-223.21,-190.05],[-219.17,-184.13],[-217.16,-181.6],[-213.45,-176.51],[-205.62,-166.68],[-196.56,-152.92],[-187.62,-126.27],[-179.3,-105.44],[-173.96,-97.36],[-170.48,-96.04],[-166.71,-101.2],[-160.29,-112.22],[-152.31,-142.18],[-149.59,-168.89],[-148.68,-183.44],[-150.43,-211.58],[-168.93,-244.69],[-183.68,-272.2],[-186.67,-283.71],[-190.14,-293.92],[-195.18,-304.18],[-198.16,-310.35],[-202,-314.46],[-207.27,-324.34],[-212.26,-333.19],[-221.14,-348.27],[-235.13,-374.42]],"v":[[-240,-380],[-246.24,-359.55],[-250,-335],[-253.86,-312.1],[-256,-290],[-251.63,-263.02],[-241,-236],[-234.63,-220.24],[-229,-205],[-224.82,-193.9],[-220,-185],[-217.81,-182.44],[-216,-180],[-208.19,-169.95],[-201,-160],[-190.55,-135.23],[-181,-109],[-175.71,-99.75],[-171,-96],[-167.96,-99.42],[-165,-104],[-154.65,-131.97],[-150,-164],[-148.92,-178.6],[-149,-193],[-162.42,-234.05],[-182,-268],[-185.7,-279.92],[-189,-291],[-193.5,-300.79],[-198,-310],[-200,-311],[-205,-321],[-211,-331],[-215,-337],[-233,-371]],"c":true}],"h":1},{"t":124,"s":[{"i":[[-238.14,-379.48],[-244.93,-366.8],[-248.6,-342.82],[-252.84,-318.38],[-256.19,-295.44],[-251.49,-261.5],[-235.13,-222.08],[-229.65,-206.62],[-227.86,-199.94],[-224.85,-193.41],[-220.71,-185.74],[-218.44,-183.26],[-216.63,-180.85],[-210.64,-173.21],[-203,-163.41],[-193.78,-144.24],[-183.79,-115.64],[-173.94,-96.73],[-167.99,-98.78],[-160.88,-112.05],[-155.99,-125.69],[-153.85,-134.33],[-152.31,-139.83],[-150.6,-155.42],[-148.94,-203.75],[-163.47,-235.94],[-181.86,-266.18],[-188.01,-289.15],[-194.06,-300.22],[-199,-311.6],[-202.5,-316.13],[-205.13,-320.49],[-208.13,-325.49],[-212.49,-332.31],[-225.54,-357.54],[-234.56,-374.49]],"o":[[-243.13,-373.89],[-247.66,-351.26],[-251.25,-326.17],[-255.31,-303.02],[-255.67,-275.21],[-241.22,-234.93],[-230.22,-208.9],[-228.47,-202.14],[-226.24,-196.29],[-222.08,-188.14],[-219.13,-184.09],[-217.2,-181.64],[-213.39,-176.51],[-205.44,-166.66],[-197.14,-153.42],[-187.11,-125.35],[-176.2,-100.34],[-169.84,-95.95],[-162.88,-107.7],[-157.43,-121.04],[-154.44,-132.42],[-152.78,-138.04],[-151.06,-148.55],[-147.95,-184.29],[-158.23,-228.65],[-175.18,-254.18],[-187.63,-284.05],[-191.29,-297.16],[-197.77,-307.45],[-201.39,-315.66],[-204.27,-319.19],[-207.27,-324.19],[-210.86,-330.21],[-220.24,-346.13],[-232.58,-369.73],[-237.46,-377.52]],"v":[[-240,-380],[-246.3,-359.03],[-250,-334],[-254.08,-310.7],[-256,-288],[-246.35,-248.21],[-231,-211],[-229.06,-204.38],[-227,-198],[-223.46,-190.77],[-220,-185],[-217.82,-182.45],[-216,-180],[-208.04,-169.93],[-201,-160],[-190.45,-134.79],[-180,-108],[-171.89,-96.34],[-165,-104],[-159.16,-116.55],[-155,-130],[-153.31,-136.18],[-152,-142],[-150,-162],[-155,-220],[-168,-243],[-186,-279],[-190,-294],[-196,-304],[-201,-315],[-203,-317],[-206,-322],[-209,-327],[-214,-335],[-231,-367],[-236,-376]],"c":true}],"h":1},{"t":125,"s":[{"i":[[-237.51,-378.68],[-244.93,-366.81],[-248.58,-342.89],[-252.93,-318.15],[-256.32,-294.77],[-254.66,-275.24],[-249.78,-257.54],[-247.08,-251.05],[-245.44,-248.09],[-243.61,-242.78],[-241.84,-236.09],[-240.1,-232.38],[-238.36,-229.9],[-234.7,-220.23],[-230.38,-207.61],[-226.45,-197.42],[-221.34,-186.4],[-219.58,-184.36],[-219.32,-183.41],[-210.44,-174.05],[-206.81,-168.08],[-202.51,-162.58],[-188.31,-125.35],[-175,-95.67],[-163.42,-107.18],[-158.37,-117.91],[-152.12,-145.77],[-148.65,-182.27],[-155.69,-223.87],[-176.57,-253.93],[-188.8,-290.96],[-208.62,-325.06],[-215.77,-337.58],[-220.54,-350.43],[-223.3,-353.82],[-229.98,-366.16]],"o":[[-243.14,-373.87],[-247.65,-351.33],[-251.27,-326.01],[-255.45,-302.53],[-255.77,-281.47],[-251.67,-263.28],[-247.61,-252.01],[-245.99,-249.09],[-244.19,-244.99],[-242.44,-238.33],[-240.67,-233.19],[-238.95,-230.74],[-236.27,-224.68],[-231.76,-211.7],[-228.04,-201.47],[-223.11,-189.88],[-219.67,-184.65],[-219.41,-183.74],[-215.71,-178.79],[-207.06,-169.83],[-204.16,-164.56],[-193.38,-146.93],[-179.15,-106.11],[-168.81,-96.18],[-160.86,-112.15],[-152.8,-134.49],[-149.74,-169.59],[-151.56,-209.74],[-168.89,-246.57],[-187.25,-280.62],[-198.94,-312.78],[-214.16,-337.35],[-218.38,-342.27],[-223.82,-353.85],[-227.41,-360.74],[-235.13,-374.42]],"v":[[-240,-380],[-246.29,-359.07],[-250,-334],[-254.19,-310.34],[-256,-287],[-253.16,-269.26],[-248,-253],[-246.54,-250.07],[-245,-247],[-243.02,-240.56],[-241,-234],[-239.52,-231.56],[-238,-229],[-233.23,-215.97],[-229,-204],[-224.78,-193.65],[-220,-185],[-219.49,-184.05],[-219,-183],[-208,-171],[-206,-167],[-201,-160],[-181,-110],[-171,-96],[-163,-108],[-157,-122],[-151,-157],[-150,-195],[-161,-233],[-183,-270],[-193,-300],[-214,-337],[-216,-338],[-223,-353],[-224,-355],[-233,-371]],"c":true}],"h":1},{"t":126,"s":[{"i":[[-232.7,-372.32],[-245.03,-366.46],[-248.55,-342.55],[-253.01,-317.99],[-256.29,-295.04],[-253.82,-271.34],[-245.35,-247.37],[-239.11,-231.21],[-235.34,-219.7],[-233.37,-214.1],[-232.41,-211.03],[-231.06,-208.26],[-229.34,-205.85],[-227.59,-200.66],[-225.89,-194.7],[-222.82,-191.26],[-220.92,-186.35],[-218.36,-184.48],[-217.55,-181.76],[-215.38,-180.5],[-214.6,-177.77],[-211.8,-174.99],[-209.09,-171.4],[-193.97,-144.6],[-177.42,-95.47],[-163.24,-107.08],[-148.79,-159.18],[-149.86,-196.67],[-159.27,-229.96],[-174.58,-253.61],[-181.75,-266.04],[-184.7,-276.99],[-192.69,-297.37],[-196.76,-306.54],[-202.13,-316.36],[-216.26,-340.08]],"o":[[-243.26,-373.68],[-247.68,-350.89],[-251.36,-325.97],[-255.47,-302.53],[-255.65,-279.4],[-248.67,-255.32],[-240.45,-235.11],[-236.56,-223.51],[-233.67,-215.08],[-232.74,-212.07],[-231.64,-209.09],[-229.91,-206.65],[-228.14,-202.82],[-226.46,-196.6],[-224.45,-191.95],[-221,-188.47],[-219.69,-184.54],[-217.36,-183.15],[-216.66,-180.53],[-214.35,-179.13],[-213.12,-175.86],[-209.88,-172.62],[-198.49,-157.81],[-185.5,-121.03],[-168.47,-96.21],[-152.79,-129.99],[-149.07,-188.4],[-153.72,-221.39],[-170.6,-247.6],[-179.58,-262.95],[-184.66,-272.94],[-188.81,-289.68],[-195.1,-305.35],[-199.92,-312.7],[-210.87,-330.49],[-226.7,-359.73]],"v":[[-240,-380],[-246.36,-358.67],[-250,-334],[-254.24,-310.26],[-256,-288],[-251.25,-263.33],[-242,-239],[-237.84,-227.36],[-234,-216],[-233.05,-213.08],[-232,-210],[-230.48,-207.45],[-229,-205],[-227.02,-198.63],[-225,-193],[-222,-190],[-220,-185],[-218,-184],[-217,-181],[-215,-180],[-214,-177],[-211,-174],[-208,-170],[-188,-128],[-171,-96],[-161,-112],[-149,-181],[-151,-204],[-167,-242],[-178,-260],[-183,-269],[-186,-281],[-195,-305],[-197,-307],[-205,-321],[-221,-349]],"c":true}],"h":1},{"t":127,"s":[{"i":[[-237.41,-378.93],[-244.75,-367.03],[-248.57,-343.53],[-252.98,-319.44],[-256.31,-296.65],[-251.8,-265.15],[-237.5,-227.81],[-231.27,-209.65],[-227.52,-198.15],[-223.88,-191.4],[-220.09,-186.57],[-212.73,-176.4],[-203.49,-163.98],[-193.79,-144.62],[-184.86,-117.01],[-178.39,-103.69],[-172.7,-95.86],[-168.46,-98.51],[-163.34,-106.4],[-162.2,-108.7],[-161.31,-111.31],[-154.11,-132.36],[-148.98,-169.26],[-150.12,-199.76],[-156.69,-225.63],[-167.55,-243.96],[-180.39,-262.97],[-187.47,-281.97],[-191.92,-296.39],[-197,-307.16],[-201.81,-316.36],[-204.76,-319.59],[-206.72,-324.87],[-213.69,-334.89],[-225.5,-356.91],[-233.01,-371.96]],"o":[[-242.96,-374.01],[-247.55,-351.79],[-251.32,-327.11],[-255.47,-304.21],[-255.55,-278],[-242.78,-240.06],[-232.51,-213.82],[-228.78,-201.82],[-225.09,-193.11],[-221.39,-188.13],[-215.99,-180.66],[-206.48,-168.06],[-196.86,-153.36],[-187.79,-126.44],[-180.04,-107.01],[-174.72,-98.11],[-170.29,-96.06],[-164.99,-103.68],[-162.54,-107.8],[-161.59,-110.46],[-157.13,-120.48],[-150.04,-156.75],[-149.03,-189.69],[-153.96,-217.73],[-163.36,-238.47],[-176.07,-256.21],[-186.01,-277.03],[-190.43,-291.65],[-195.34,-303.98],[-200.23,-313.35],[-203.16,-319.35],[-206.2,-322.04],[-210.51,-331.17],[-221.01,-347.91],[-231.33,-367.39],[-236.3,-375.4]],"v":[[-240,-380],[-246.15,-359.41],[-250,-335],[-254.23,-311.83],[-256,-289],[-247.29,-252.6],[-234,-218],[-230.02,-205.73],[-226,-195],[-222.63,-189.76],[-219,-185],[-209.6,-172.23],[-201,-160],[-190.79,-135.53],[-181,-109],[-176.55,-100.9],[-171,-96],[-166.73,-101.09],[-163,-107],[-161.89,-109.58],[-161,-112],[-152.08,-144.56],[-149,-179],[-152.04,-208.74],[-160,-232],[-171.81,-250.08],[-184,-272],[-188.95,-286.81],[-194,-301],[-198.61,-310.25],[-203,-319],[-205,-320],[-208,-327],[-216,-339],[-230,-365],[-234,-373]],"c":true}],"h":1},{"t":128,"s":[{"i":[[-231.69,-372],[-244.3,-368.04],[-248.64,-346.81],[-252.59,-324.52],[-255.73,-303.15],[-254.15,-272.68],[-243.18,-242.62],[-235.25,-219.65],[-228.07,-198.52],[-223.98,-191.71],[-222.27,-190.36],[-221.57,-189.02],[-221.26,-187.37],[-217.34,-182.19],[-211.44,-175.55],[-209.68,-171.9],[-207.41,-170.44],[-206.68,-167.94],[-204.39,-166.42],[-200.98,-160.87],[-193.56,-141.35],[-189.08,-127.82],[-175.88,-95.58],[-167.7,-100.23],[-157.2,-121.04],[-150.18,-158.07],[-149.38,-187.01],[-159.62,-231.52],[-168.7,-245.54],[-171.63,-249.81],[-176.75,-256.81],[-187.85,-286.11],[-200.84,-314.07],[-205.27,-321.84],[-212.01,-332.83],[-218.58,-343.38]],"o":[[-242.47,-374.38],[-247.38,-354.26],[-251.22,-331.94],[-254.84,-310.12],[-256.56,-284.12],[-247.46,-251.93],[-237.47,-227.14],[-230.55,-205.34],[-224.6,-192.28],[-222.82,-190.75],[-221.69,-189.59],[-221.35,-187.92],[-219.37,-184.66],[-213.38,-177.63],[-209.27,-173.21],[-208.66,-170.55],[-206.25,-169.2],[-205.69,-166.57],[-202.21,-164.07],[-196.18,-151.7],[-189.9,-130.85],[-186.03,-119.86],[-169.93,-96.09],[-160.96,-111.2],[-150.76,-144.32],[-149.93,-179.02],[-151.68,-216.53],[-168.42,-244.63],[-170.56,-248.36],[-174.87,-255],[-185.1,-271.49],[-195.84,-306.1],[-204.99,-320.54],[-209.44,-328.47],[-216.58,-340.72],[-226.39,-357.77]],"v":[[-240,-380],[-245.84,-361.15],[-250,-339],[-253.72,-317.32],[-256,-297],[-250.81,-262.31],[-240,-234],[-232.9,-212.5],[-225,-193],[-223.4,-191.23],[-222,-190],[-221.46,-188.47],[-221,-187],[-215.36,-179.91],[-210,-174],[-209,-171],[-207,-170],[-206,-167],[-204,-166],[-200,-159],[-191,-134],[-188,-125],[-171,-96],[-166,-103],[-155,-129],[-150,-173],[-150,-195],[-168,-244],[-169,-246],[-173,-252],[-178,-259],[-193,-299],[-204,-319],[-206,-323],[-215,-338],[-220,-346]],"c":true}],"h":1},{"t":129,"s":[{"i":[[-230.97,-370.38],[-244.22,-368.06],[-248.57,-346.84],[-252.69,-324.54],[-255.77,-303.31],[-254.73,-276.15],[-245.66,-248.88],[-239.11,-230.46],[-235.34,-217.85],[-230.19,-204.46],[-223.09,-191.12],[-214.39,-179.04],[-204.49,-166.36],[-195.4,-147.92],[-187.75,-125.38],[-181.28,-109.9],[-173.36,-95.8],[-168.34,-98.56],[-163.79,-107.44],[-159.93,-115.03],[-155.7,-124.5],[-152.63,-137.21],[-150.25,-154.53],[-149.56,-189.88],[-156.92,-226.14],[-162.72,-236.66],[-163.55,-239.29],[-164.55,-240.35],[-165.83,-240.77],[-166.43,-241.98],[-166.74,-243.63],[-171.89,-250.73],[-178.98,-261.07],[-186.68,-278.82],[-193.11,-299.98],[-210.38,-329.23]],"o":[[-242.44,-374.4],[-247.29,-354.28],[-251.3,-331.89],[-254.92,-310.26],[-256.4,-285.71],[-249.36,-257.73],[-240.44,-234.78],[-236.56,-221.99],[-232.4,-209.4],[-225.54,-195.32],[-217.89,-183.36],[-207.69,-170.54],[-198.27,-155.48],[-190.13,-132.87],[-183.6,-115.75],[-176.16,-99.92],[-169.94,-96.09],[-165.27,-104.24],[-161.58,-111.78],[-156.99,-121.4],[-153.76,-131.44],[-150.88,-148.75],[-149.1,-175.3],[-153.47,-215.29],[-162.44,-235.77],[-163.27,-238.42],[-164.13,-240.21],[-165.4,-240.63],[-166.31,-241.41],[-166.64,-243.08],[-169.4,-247.45],[-176.68,-257.54],[-184.38,-271.58],[-191.05,-293.02],[-201.86,-318.21],[-224.17,-353.75]],"v":[[-240,-380],[-245.75,-361.17],[-250,-339],[-253.8,-317.4],[-256,-297],[-252.05,-266.94],[-242,-239],[-237.83,-226.22],[-234,-214],[-227.87,-199.89],[-221,-188],[-211.04,-174.79],[-202,-162],[-192.76,-140.4],[-185,-119],[-178.72,-104.91],[-171,-96],[-166.8,-101.4],[-163,-109],[-158.46,-118.21],[-155,-127],[-151.75,-142.98],[-150,-159],[-151.52,-202.58],[-162,-235],[-162.99,-237.54],[-164,-240],[-164.97,-240.49],[-166,-241],[-166.54,-242.53],[-167,-244],[-174.29,-254.14],[-181,-265],[-188.86,-285.92],[-196,-306],[-217,-341]],"c":true}],"h":1},{"t":130,"s":[{"i":[[-235.09,-375.63],[-244.75,-366.52],[-248.48,-343.2],[-253.18,-319.66],[-256.48,-296.87],[-253.46,-271.82],[-244.99,-246.44],[-239.29,-229.95],[-235.39,-217.85],[-232.46,-210.23],[-229.78,-204.74],[-226.06,-194.39],[-222.33,-190.44],[-221.55,-187.76],[-219.38,-186.5],[-218.59,-183.77],[-216.39,-182.52],[-215.61,-179.78],[-213.42,-178.45],[-212.69,-175.87],[-206.93,-170.67],[-203.95,-164.5],[-200.82,-160.64],[-193.16,-138.42],[-175.86,-95.58],[-166.53,-101.44],[-144.5,-203.56],[-163.28,-236.82],[-165.14,-241.68],[-177.32,-258.38],[-191.2,-296.14],[-203.56,-319.42],[-209.34,-327.96],[-211.12,-332.59],[-214.05,-336.49],[-223.31,-353.32]],"o":[[-243.02,-373.67],[-247.49,-351.28],[-251.44,-327.23],[-255.7,-304.48],[-255.47,-280.35],[-248.22,-254.87],[-240.59,-234.03],[-236.69,-221.86],[-233.32,-212.11],[-230.69,-206.55],[-227.06,-198.71],[-223.75,-190.58],[-221.36,-189.15],[-220.66,-186.53],[-218.35,-185.13],[-217.63,-182.52],[-215.34,-181.12],[-214.64,-178.54],[-212.28,-177.22],[-209.93,-172.38],[-204.14,-166.81],[-202.06,-161.53],[-195.43,-149.87],[-186.01,-119.82],[-170.51,-96.04],[-146.3,-135.16],[-161.64,-236.23],[-164.89,-239.46],[-171.69,-251.69],[-188.42,-281.21],[-199.89,-313.9],[-208.12,-326.82],[-210.83,-330.31],[-212.85,-335.36],[-219.44,-345.08],[-230.76,-366.81]],"v":[[-240,-380],[-246.12,-358.9],[-250,-335],[-254.44,-312.07],[-256,-289],[-250.84,-263.34],[-242,-238],[-237.99,-225.91],[-234,-214],[-231.58,-208.39],[-229,-203],[-224,-191],[-222,-190],[-221,-187],[-219,-186],[-218,-183],[-216,-182],[-215,-179],[-213,-178],[-212,-175],[-205,-168],[-203,-163],[-200,-159],[-188,-125],[-171,-96],[-165,-104],[-161,-235],[-164,-238],[-166,-243],[-182,-268],[-197,-308],[-207,-325],[-210,-329],[-212,-334],[-215,-338],[-227,-360]],"c":true}],"h":1},{"t":131,"s":[{"i":[[-235.48,-377.46],[-244.41,-367.7],[-247.99,-346.96],[-252.46,-324.12],[-256.54,-298.75],[-253.41,-272.52],[-244.92,-247.43],[-237.2,-224.02],[-230.08,-202.99],[-225.14,-193.89],[-222.59,-190.79],[-221.57,-189.02],[-221.28,-187.38],[-220.42,-186.64],[-219.19,-186.25],[-218.62,-183.78],[-211.6,-176.41],[-207.79,-171.28],[-205.55,-168.78],[-194.96,-142.43],[-175.59,-95.55],[-167.44,-100.65],[-160.43,-113.74],[-150.1,-150.43],[-151.88,-211.84],[-163.43,-240.32],[-168.95,-246.43],[-179.32,-261.31],[-189.5,-289.89],[-196.68,-308.07],[-199.77,-311.57],[-201.75,-316.8],[-211.48,-332.07],[-220.5,-350.39],[-226.79,-360.31],[-229.77,-363.58]],"o":[[-242.66,-374.47],[-247.07,-353.95],[-250.44,-332.49],[-255.51,-307.25],[-255.45,-281.05],[-248.15,-255.71],[-239.41,-231.53],[-232.54,-209.75],[-226.1,-195.25],[-223.39,-191.66],[-221.68,-189.58],[-221.37,-187.92],[-220.83,-186.76],[-219.6,-186.38],[-218.34,-185.12],[-215.58,-179.95],[-208.77,-172.14],[-206.4,-169.02],[-196.24,-155.49],[-185.37,-118.41],[-169.88,-96.11],[-162.3,-109.01],[-152.7,-133.67],[-149.88,-192.11],[-160.02,-232],[-167.62,-244.69],[-174.83,-255.24],[-187.9,-279.25],[-194.57,-303.1],[-198.16,-311.36],[-201.16,-314.16],[-206.86,-325.78],[-217.67,-342.5],[-225.63,-355.75],[-228.16,-363.35],[-233.12,-369.6]],"v":[[-240,-380],[-245.74,-360.82],[-249,-341],[-253.99,-315.68],[-256,-290],[-250.78,-264.12],[-242,-239],[-234.87,-216.89],[-227,-197],[-224.27,-192.78],[-222,-190],[-221.47,-188.47],[-221,-187],[-220.01,-186.51],[-219,-186],[-218,-183],[-210,-174],[-207,-170],[-205,-168],[-188,-125],[-171,-96],[-166,-103],[-158,-120],[-150,-169],[-158,-227],[-166,-243],[-170,-248],[-183,-269],[-193,-299],[-198,-311],[-200,-312],[-203,-319],[-215,-338],[-223,-353],[-228,-363],[-230,-364]],"c":true}],"h":1},{"t":132,"s":[{"i":[[-236.77,-379.25],[-244.64,-366.64],[-248.48,-343.96],[-253.09,-321],[-256.32,-298.96],[-254.1,-276.6],[-246.86,-251.53],[-238.58,-226.29],[-230.74,-203.67],[-227.03,-196.7],[-225.25,-195.34],[-224.57,-194.03],[-224.24,-192.36],[-222.24,-189.59],[-219.66,-186.71],[-218.57,-185.08],[-218.34,-183.41],[-216.72,-181.67],[-214.62,-179.77],[-204.28,-167.4],[-190.56,-130.51],[-174.79,-95.63],[-163.24,-107.55],[-150.89,-140.85],[-150.39,-205.81],[-163.5,-238.47],[-167.75,-244.63],[-167.77,-246.49],[-169.75,-247.64],[-171.65,-252.1],[-175.88,-257.28],[-182.1,-266.81],[-190.29,-291.48],[-202.7,-318.38],[-225.55,-355.69],[-233.76,-370.59]],"o":[[-242.9,-373.66],[-247.43,-351.79],[-251.43,-328.51],[-255.53,-306.22],[-255.66,-284.59],[-249.7,-260.08],[-241.22,-234.71],[-233.35,-210.77],[-227.65,-197.28],[-225.83,-195.73],[-224.7,-194.6],[-224.34,-192.91],[-223.16,-190.73],[-220.49,-187.57],[-218.65,-185.62],[-218.42,-183.97],[-217.41,-182.29],[-215.32,-180.42],[-209.17,-172.95],[-194.32,-147.99],[-181.74,-110.67],[-168.91,-96.2],[-155.44,-122.39],[-148.62,-181.84],[-159.78,-231.65],[-166.15,-244.32],[-168.31,-245.46],[-168.14,-247.32],[-171.18,-249.73],[-174.18,-255.66],[-179.44,-262.74],[-188.64,-281.28],[-197.6,-310.22],[-216.53,-340.86],[-232.16,-370.35],[-235.99,-374.39]],"v":[[-240,-380],[-246.04,-359.22],[-250,-336],[-254.31,-313.61],[-256,-292],[-251.9,-268.34],[-244,-243],[-235.97,-218.53],[-228,-198],[-226.43,-196.21],[-225,-195],[-224.45,-193.47],[-224,-192],[-221.36,-188.58],[-219,-186],[-218.49,-184.53],[-218,-183],[-216.02,-181.04],[-214,-179],[-201,-161],[-185,-118],[-171,-96],[-163,-108],[-150,-157],[-157,-224],[-166,-244],[-168,-245],[-168,-247],[-170,-248],[-173,-254],[-177,-259],[-184,-271],[-194,-301],[-208,-327],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":133,"s":[{"i":[[-236.78,-379.28],[-244.46,-367],[-248.45,-344.81],[-253.09,-322.46],[-256.3,-300.45],[-254.01,-277.51],[-246.64,-253.3],[-238.99,-228.32],[-231.76,-205.71],[-226.58,-195.95],[-222.22,-190.69],[-220.57,-188],[-220.3,-186.4],[-219.4,-185.36],[-218.29,-184.37],[-215.5,-180.83],[-212.22,-176.58],[-209.73,-173.68],[-207.51,-171.71],[-198.08,-154.62],[-188.62,-126.14],[-180.82,-108.74],[-172.9,-95.81],[-163.21,-107.61],[-158.46,-118.03],[-147.2,-204.22],[-174.93,-254.32],[-188.4,-281.94],[-193.11,-297.15],[-198.81,-310.9],[-204.06,-322.02],[-206.18,-325.15],[-207.3,-326.85],[-218.55,-343.99],[-229.63,-364.73],[-233.76,-370.59]],"o":[[-242.74,-373.84],[-247.32,-352.48],[-251.44,-329.74],[-255.52,-307.82],[-255.69,-285.36],[-249.48,-261.48],[-241.37,-236.72],[-234.19,-212.82],[-227.96,-197.86],[-223.71,-192.37],[-220.67,-188.55],[-220.39,-186.92],[-219.75,-185.67],[-218.67,-184.7],[-216.64,-182.29],[-213.29,-177.97],[-210.48,-174.32],[-208.25,-172.37],[-201.77,-163.8],[-191.51,-135.79],[-183.37,-114.34],[-175.58,-99.48],[-169.07,-96.19],[-160.77,-112.24],[-146.1,-151.57],[-166.72,-246.87],[-186.6,-275.78],[-191.63,-292.19],[-196.82,-306.67],[-202.35,-317.54],[-205.8,-323.84],[-207.81,-326.84],[-213.19,-336.5],[-226.31,-357.96],[-232.16,-370.35],[-235.95,-374.33]],"v":[[-240,-380],[-245.89,-359.74],[-250,-337],[-254.31,-315.14],[-256,-293],[-251.74,-269.49],[-244,-245],[-236.59,-220.57],[-229,-200],[-225.14,-194.16],[-221,-189],[-220.48,-187.46],[-220,-186],[-219.03,-185.03],[-218,-184],[-214.39,-179.4],[-211,-175],[-208.99,-173.02],[-207,-171],[-194.79,-145.2],[-185,-118],[-178.2,-104.11],[-171,-96],[-163,-108],[-157,-122],[-159,-230],[-184,-271],[-190,-287],[-195,-302],[-201,-315],[-205,-323],[-207,-326],[-208,-328],[-223,-352],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":134,"s":[{"i":[[-236.78,-379.28],[-244.39,-367.34],[-248.4,-345.06],[-253.06,-322.8],[-256.3,-301.32],[-254.04,-277.16],[-246.77,-251.77],[-241.39,-234.91],[-237.33,-222.87],[-233.22,-210.58],[-228.83,-199.04],[-225.32,-195.43],[-224.55,-192.76],[-219.94,-187.42],[-215.66,-181.09],[-204.17,-167.55],[-194.07,-139.89],[-182.58,-112.13],[-174.38,-95.67],[-163.75,-106.67],[-153.48,-128.52],[-150.36,-148.2],[-150.56,-201.16],[-156.97,-224.14],[-159.78,-233.52],[-165.66,-241.92],[-168.16,-247.72],[-173.17,-253.75],[-175.49,-256.26],[-177.23,-260.83],[-179.65,-262.54],[-180.56,-265.3],[-190.03,-290.23],[-202.79,-318.43],[-225.55,-355.69],[-233.76,-370.59]],"o":[[-242.69,-374.06],[-247.24,-352.84],[-251.41,-329.89],[-255.5,-308.52],[-255.65,-285.52],[-249.6,-260.28],[-242.73,-238.97],[-238.69,-226.85],[-234.56,-214.8],[-230.36,-202.7],[-226.75,-195.59],[-224.37,-194.16],[-222.43,-189.82],[-217.33,-183.48],[-209.08,-172.81],[-196.11,-150.9],[-186.01,-120.12],[-178.56,-104.15],[-169.33,-96.16],[-158.37,-116.21],[-151.05,-142.43],[-148.71,-174.81],[-155.81,-221.09],[-159.13,-230.15],[-162.51,-239.08],[-167.99,-245.53],[-170.28,-250.95],[-174.59,-255.9],[-176.79,-258.15],[-178.29,-262.44],[-180.58,-263.77],[-187.52,-276.47],[-197.45,-310.38],[-216.47,-340.94],[-232.16,-370.35],[-235.95,-374.33]],"v":[[-240,-380],[-245.82,-360.09],[-250,-337],[-254.28,-315.66],[-256,-294],[-251.82,-268.72],[-244,-243],[-240.04,-230.88],[-236,-219],[-231.79,-206.64],[-227,-196],[-225,-195],[-224,-192],[-219,-186],[-214,-179],[-201,-161],[-188,-125],[-181,-109],[-171,-96],[-163,-108],[-152,-137],[-150,-154],[-155,-218],[-158,-227],[-161,-236],[-167,-244],[-169,-249],[-174,-255],[-176,-257],[-178,-262],[-180,-263],[-181,-266],[-194,-301],[-208,-327],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":135,"s":[{"i":[[-233.81,-373.27],[-244.18,-367.89],[-248.44,-346.76],[-252.91,-325.19],[-256.1,-303.9],[-254.32,-279.87],[-246.89,-253.35],[-240.23,-231.45],[-234.24,-213.11],[-230.31,-203.7],[-227.98,-197.63],[-226.46,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.26,-192.37],[-216.32,-182.3],[-204.64,-168.14],[-195.62,-147.92],[-188.13,-124.75],[-180.11,-107.77],[-172.54,-95.85],[-168.79,-98.25],[-165.3,-105.32],[-164.48,-106.32],[-163.12,-106.79],[-160.11,-114.41],[-154.44,-128.75],[-149.47,-178.47],[-156.6,-227.32],[-166.05,-244.05],[-181.32,-264.29],[-193.62,-300.64],[-199.33,-313.51],[-201.77,-315.57],[-203.72,-320.8],[-217.35,-343.05]],"o":[[-242.46,-374.26],[-247.17,-354.14],[-251.36,-332.23],[-255.28,-311.02],[-255.88,-288.44],[-249.83,-262.32],[-242.11,-237.89],[-236.29,-219.06],[-231.07,-205.88],[-228.77,-199.57],[-226.88,-195.79],[-225.6,-195.36],[-224.69,-194.59],[-224.35,-192.92],[-220.5,-186.98],[-208.39,-172.88],[-198.3,-155.79],[-190.53,-132.4],[-182.84,-113.34],[-174.96,-99.02],[-170.14,-96.08],[-166.37,-102.87],[-164.92,-106.18],[-163.58,-106.63],[-161.48,-109.77],[-156.68,-122.42],[-148.53,-154.46],[-153.78,-213.48],[-163.49,-240.96],[-174.3,-256.55],[-190.82,-286.02],[-198.97,-312.07],[-200.16,-315.36],[-203.16,-318.16],[-210.89,-333.14],[-228.21,-362.18]],"v":[[-240,-380],[-245.67,-361.01],[-250,-339],[-254.09,-318.1],[-256,-297],[-252.08,-271.09],[-244,-244],[-238.26,-225.25],[-232,-208],[-229.54,-201.64],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.46,-193.47],[-224,-192],[-212.36,-177.59],[-202,-163],[-193.07,-140.16],[-185,-118],[-177.53,-103.39],[-171,-96],[-167.58,-100.56],[-165,-106],[-164.03,-106.47],[-163,-107],[-159,-117],[-153,-135],[-152,-199],[-162,-238],[-168,-247],[-186,-275],[-198,-310],[-200,-315],[-202,-316],[-205,-323],[-223,-353]],"c":true}],"h":1},{"t":136,"s":[{"i":[[-236.4,-377.32],[-244.17,-367.91],[-248.44,-346.75],[-252.96,-325.2],[-256.18,-303.99],[-254.2,-280.05],[-246.83,-253.35],[-241.53,-235.23],[-238.25,-222.85],[-235.55,-215.31],[-232.78,-209.76],[-230.33,-203.74],[-228,-197.64],[-226.45,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.28,-192.38],[-223.42,-191.64],[-222.19,-191.25],[-221.57,-190.01],[-221.3,-188.39],[-206.54,-171.84],[-191.27,-131.51],[-181.58,-111.14],[-172.36,-92.41],[-154.63,-125.29],[-149.76,-181.33],[-157.32,-229.18],[-165.1,-241.52],[-167.13,-246.69],[-180.39,-263.38],[-190.81,-289.11],[-195.36,-301.33],[-199.65,-315.55],[-204.02,-321.31],[-222.32,-351.73]],"o":[[-242.45,-374.28],[-247.17,-354.14],[-251.37,-332.2],[-255.36,-311.1],[-255.78,-288.62],[-249.73,-262.42],[-242.65,-239.55],[-239.32,-226.88],[-236.41,-217.17],[-233.73,-211.6],[-231.08,-205.92],[-228.79,-199.6],[-226.87,-195.79],[-225.6,-195.36],[-224.68,-194.58],[-224.37,-192.92],[-223.83,-191.76],[-222.6,-191.38],[-221.67,-190.56],[-221.39,-188.92],[-214.53,-179.71],[-194.6,-148.59],[-183.46,-114.68],[-172.43,-93.08],[-158.96,-114.72],[-148.38,-157.88],[-153.81,-215.07],[-163.67,-241.28],[-166.8,-244.31],[-173.73,-256.6],[-188.49,-280.29],[-194.03,-299.25],[-197.87,-307.91],[-203.61,-319.68],[-213.19,-337.1],[-232.89,-369.99]],"v":[[-240,-380],[-245.67,-361.02],[-250,-339],[-254.16,-318.15],[-256,-297],[-251.96,-271.23],[-244,-244],[-240.42,-231.05],[-237,-219],[-234.64,-213.45],[-232,-208],[-229.56,-201.67],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.47,-193.47],[-224,-192],[-223.01,-191.51],[-222,-191],[-221.48,-189.46],[-221,-188],[-202,-163],[-185,-118],[-181,-110],[-166,-103],[-152,-139],[-152,-200],[-163,-240],[-166,-243],[-168,-248],[-185,-273],[-193,-296],[-196,-303],[-202,-318],[-205,-323],[-230,-365]],"c":true}],"h":1},{"t":137,"s":[{"i":[[-236.47,-377.43],[-244.11,-368.14],[-248.4,-347.5],[-252.95,-326.42],[-256.07,-305.67],[-254.29,-281.57],[-246.79,-254.72],[-241.56,-235.82],[-238.29,-222.93],[-235.58,-215.35],[-232.89,-209.95],[-230.39,-203.95],[-228.01,-197.66],[-226.45,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.28,-192.38],[-223.42,-191.64],[-222.19,-191.25],[-221.57,-190],[-221.31,-188.39],[-216.12,-182.62],[-204.87,-168.7],[-197.15,-150.44],[-188.66,-125.9],[-174.07,-95.69],[-164.78,-105.59],[-151.11,-135.7],[-149.92,-176.29],[-153.77,-211.94],[-164.36,-241.62],[-181.46,-265.11],[-192.78,-294.2],[-199.57,-315.47],[-202.3,-318.82],[-221.72,-350.7]],"o":[[-242.41,-374.39],[-247.11,-354.7],[-251.42,-333.34],[-255.28,-312.59],[-255.9,-290.21],[-249.74,-263.82],[-242.67,-240.36],[-239.38,-227.11],[-236.38,-217.13],[-233.84,-211.76],[-231.14,-206.12],[-228.83,-199.72],[-226.87,-195.79],[-225.6,-195.36],[-224.68,-194.58],[-224.37,-192.92],[-223.83,-191.76],[-222.6,-191.38],[-221.67,-190.56],[-221.39,-188.92],[-218.9,-185.34],[-209.36,-174.28],[-198.91,-156.88],[-191.82,-134.49],[-180.68,-108.68],[-169.02,-96.2],[-157.46,-118.84],[-148.85,-162.78],[-152.16,-200.58],[-160.25,-234.13],[-175.12,-257.6],[-190.33,-284.44],[-197.8,-307.92],[-202.82,-318.85],[-211.89,-334.96],[-232.77,-369.79]],"v":[[-240,-380],[-245.61,-361.42],[-250,-340],[-254.12,-319.51],[-256,-299],[-252.02,-272.7],[-244,-245],[-240.47,-231.47],[-237,-219],[-234.71,-213.56],[-232,-208],[-229.61,-201.83],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.47,-193.47],[-224,-192],[-223.01,-191.51],[-222,-191],[-221.48,-189.46],[-221,-188],[-214,-180],[-202,-163],[-195,-144],[-185,-118],[-171,-96],[-164,-107],[-150,-149],[-151,-188],[-157,-223],[-170,-250],[-186,-275],[-196,-303],[-202,-318],[-203,-320],[-230,-365]],"c":true}],"h":1},{"t":138,"s":[{"i":[[-236.9,-379.12],[-242.73,-373.59],[-245.01,-362.38],[-250.58,-338.83],[-256.12,-308.14],[-254.3,-280.91],[-247.35,-254.57],[-240.55,-228.88],[-234.65,-213.84],[-230.01,-201.25],[-226.33,-197.44],[-225.55,-194.76],[-220.95,-189.44],[-211.44,-177.86],[-196.31,-145.67],[-185.37,-117.86],[-173.5,-96.07],[-165.41,-104.34],[-160.57,-112.33],[-153.75,-128.32],[-149.24,-170.44],[-153.84,-211.78],[-164.5,-241.24],[-169.75,-249.63],[-169.77,-251.49],[-171.75,-252.65],[-182.18,-267.04],[-192.47,-295.98],[-204.19,-321.99],[-211.77,-333.06],[-214.77,-339.96],[-218.84,-345.08],[-221.77,-351.91],[-224.5,-355.23],[-228.2,-362.86],[-232.89,-369.15]],"o":[[-241.72,-376.89],[-244.37,-366.33],[-248.02,-349.01],[-254.63,-318.39],[-255.88,-289.88],[-250.03,-263.26],[-242.74,-237.75],[-236.73,-217.08],[-231.22,-205.86],[-227.74,-197.58],[-225.37,-196.16],[-223.37,-191.75],[-216.26,-182.37],[-198.88,-160.12],[-187.26,-123.8],[-179.19,-105.28],[-169.16,-95.43],[-162.06,-110.66],[-157.14,-120.35],[-148.31,-147.72],[-152.24,-200.3],[-160.05,-233.83],[-168.15,-249.32],[-170.31,-250.46],[-170.14,-252.31],[-177.19,-260.22],[-190.68,-284.77],[-199.37,-313.61],[-210.05,-331.76],[-214.22,-336.94],[-217.14,-343.9],[-221.21,-349.01],[-223.35,-354.59],[-227.08,-359.21],[-230.99,-367.72],[-236.08,-374.45]],"v":[[-240,-380],[-243.55,-369.96],[-246,-358],[-252.61,-328.61],[-256,-299],[-252.17,-272.09],[-245,-246],[-238,-221],[-233,-210],[-228,-198],[-226,-197],[-225,-194],[-220,-188],[-208,-173],[-189,-128],[-182,-111],[-173,-96],[-164,-107],[-159,-116],[-153,-131],[-151,-188],[-157,-223],[-168,-249],[-170,-250],[-170,-252],[-172,-253],[-186,-275],[-196,-305],[-209,-330],[-213,-335],[-216,-342],[-220,-347],[-223,-354],[-225,-356],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":139,"s":[{"i":[[-236.88,-379.08],[-243.88,-368.38],[-248.39,-348.32],[-252.86,-328.18],[-256,-308.24],[-255.08,-288.19],[-250.66,-268.35],[-244.97,-246.08],[-238.44,-222.49],[-235.38,-214.65],[-234.32,-212.75],[-233.58,-210.3],[-233.31,-207.64],[-230.86,-203.18],[-226.94,-197.51],[-223.31,-192.12],[-219.43,-187.73],[-206.81,-172.42],[-195.42,-143.31],[-185.25,-117.62],[-173.27,-96.04],[-164.62,-104.9],[-157.4,-120.39],[-148.74,-171.58],[-161.48,-238.79],[-182.96,-267.98],[-190.61,-285.81],[-194.25,-300.37],[-204.35,-322.15],[-212.22,-336.19],[-214.18,-339.15],[-218.96,-345.27],[-221.68,-351.75],[-225.95,-357.26],[-228.72,-363.82],[-233.03,-369.39]],"o":[[-242.18,-374.47],[-246.99,-355.3],[-251.36,-334.81],[-255.18,-314.89],[-256,-295.02],[-252.41,-274.86],[-247,-254.33],[-240.69,-230.16],[-235.73,-215.27],[-234.68,-213.39],[-233.67,-211.23],[-233.39,-208.51],[-232.14,-205.18],[-228.26,-199.35],[-224.59,-193.75],[-220.73,-189.11],[-212.42,-179.24],[-197.74,-154.76],[-187.05,-123.35],[-178.92,-104.73],[-169.39,-95.46],[-159.97,-113.79],[-146.61,-148.26],[-154.99,-222.23],[-176.86,-261.03],[-188.95,-281.34],[-193.68,-295.08],[-199.28,-313.69],[-210.34,-332.26],[-213.8,-337.84],[-216.89,-341.98],[-221.38,-349.3],[-224.03,-355.75],[-228.32,-361.2],[-231,-367.7],[-236.13,-374.53]],"v":[[-240,-380],[-245.43,-361.84],[-250,-341],[-254.02,-321.53],[-256,-302],[-253.74,-281.53],[-249,-262],[-242.83,-238.12],[-236,-216],[-235.03,-214.02],[-234,-212],[-233.48,-209.4],[-233,-207],[-229.56,-201.27],[-226,-196],[-222.02,-190.61],[-218,-186],[-203,-165],[-189,-128],[-182,-111],[-173,-96],[-163,-108],[-156,-124],[-152,-198],[-172,-254],[-187,-277],[-192,-290],[-196,-305],[-209,-330],[-213,-337],[-215,-340],[-220,-347],[-223,-354],[-227,-359],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":140,"s":[{"i":[[-236.9,-379.12],[-243.99,-367.98],[-248.44,-348.07],[-252.89,-328.26],[-256.01,-308.47],[-255,-287.96],[-250.54,-268.15],[-243.18,-237.73],[-231.74,-204],[-224.25,-193.5],[-221.9,-190.14],[-217.23,-184.53],[-211.25,-177.74],[-206.39,-171.08],[-203.76,-166.55],[-195.57,-142.55],[-185.44,-118.94],[-173.91,-96.14],[-157.36,-120.48],[-148.81,-171.16],[-157.89,-230.06],[-167.46,-248.43],[-169.18,-251.15],[-172.01,-254.78],[-175.56,-259.54],[-177.18,-262.15],[-179.18,-265.15],[-181.18,-268.15],[-185.54,-273.96],[-194.97,-301.59],[-200.91,-315.78],[-214.85,-338.44],[-221.76,-351.88],[-225.95,-357.26],[-228.71,-363.79],[-232.89,-369.15]],"o":[[-242.28,-374.2],[-247.07,-354.92],[-251.38,-334.77],[-255.2,-315.1],[-255.98,-294.88],[-252.28,-274.59],[-246.06,-250.23],[-236.02,-214.61],[-225.05,-194.68],[-222.67,-191.23],[-219.36,-186.91],[-213.18,-179.95],[-208.04,-173.27],[-204.12,-167.68],[-198.21,-155.2],[-188.3,-124.86],[-179.17,-106.29],[-167.2,-95.09],[-147.09,-147.01],[-154.07,-213.78],[-165,-243.95],[-168.8,-249.84],[-171.45,-253.51],[-174.07,-257.31],[-176.8,-260.84],[-178.8,-263.84],[-180.8,-266.84],[-184.35,-271.45],[-192.05,-287.53],[-200.08,-313.52],[-207.15,-328.46],[-221.34,-349.22],[-224.03,-355.75],[-228.3,-361.15],[-231.01,-367.72],[-236.08,-374.45]],"v":[[-240,-380],[-245.53,-361.45],[-250,-341],[-254.04,-321.68],[-256,-302],[-253.64,-281.27],[-249,-262],[-239.6,-226.17],[-226,-196],[-223.46,-192.36],[-221,-189],[-215.21,-182.24],[-210,-176],[-205,-169],[-203,-165],[-190,-129],[-182,-112],[-173,-96],[-156,-124],[-152,-197],[-164,-242],[-168,-249],[-170,-252],[-173,-256],[-176,-260],[-178,-263],[-180,-266],[-182,-269],[-187,-277],[-199,-311],[-202,-318],[-220,-347],[-223,-354],[-227,-359],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":141,"s":[{"i":[[-235.72,-377.23],[-243.87,-368.26],[-248.47,-348.74],[-252.92,-329.14],[-256,-309.34],[-254.99,-288.82],[-250.47,-269.09],[-244.58,-243.28],[-236.79,-214.73],[-228.58,-199.43],[-220.38,-188.96],[-215.11,-182.48],[-211.02,-177.42],[-208.08,-173.34],[-205.63,-169.94],[-204.25,-167.73],[-203.38,-165.78],[-198.8,-154.46],[-192.87,-135.7],[-185.45,-119.07],[-173.87,-96.14],[-165.73,-104.75],[-157.24,-120.3],[-149.33,-147.93],[-150.33,-182.03],[-154.99,-217.07],[-165.72,-245.15],[-182.6,-267.82],[-193.62,-293.75],[-196.98,-307.45],[-203.36,-319.13],[-206.2,-325.58],[-210.45,-332.47],[-214.34,-337.96],[-216.13,-342.57],[-226.89,-358.56]],"o":[[-242.13,-374.39],[-247.04,-355.44],[-251.42,-335.72],[-255.21,-315.95],[-256,-295.77],[-252.22,-275.48],[-246.68,-253.42],[-239.63,-223.94],[-231.14,-203.2],[-223.2,-192.31],[-216.6,-184.27],[-212.32,-179.05],[-209.01,-174.62],[-206.38,-171],[-204.56,-168.34],[-203.66,-166.45],[-200.61,-160.11],[-194.93,-142.26],[-188.22,-124.86],[-179.21,-106.28],[-168.58,-95.31],[-160.71,-114.16],[-151.33,-135.36],[-148.59,-170.47],[-153.59,-205.34],[-160.92,-236.65],[-176.18,-260.7],[-190.78,-284.88],[-196.88,-303.69],[-199.69,-314.2],[-205.96,-323.67],[-208.48,-329.62],[-213.12,-336.82],[-215.83,-340.31],[-221.04,-350.62],[-233.19,-369.58]],"v":[[-240,-380],[-245.45,-361.85],[-250,-342],[-254.07,-322.54],[-256,-303],[-253.61,-282.15],[-249,-263],[-242.11,-233.61],[-233,-207],[-225.89,-195.87],[-218,-186],[-213.71,-180.76],[-210,-176],[-207.23,-172.17],[-205,-169],[-203.95,-167.09],[-203,-165],[-196.86,-148.36],[-190,-129],[-182,-112],[-173,-96],[-164,-108],[-155,-126],[-149,-158],[-152,-194],[-158,-227],[-171,-253],[-187,-277],[-196,-301],[-198,-310],[-205,-322],[-207,-327],[-212,-335],[-215,-339],[-217,-344],[-230,-364]],"c":true}],"h":1},{"t":142,"s":[{"i":[[-236.9,-379.12],[-243.88,-368.24],[-248.43,-348.82],[-252.95,-329.21],[-256.04,-309.37],[-254.92,-288.85],[-250.44,-269.05],[-244.67,-243.37],[-236.83,-214.53],[-223.35,-192.53],[-206.61,-172.63],[-198.87,-154.4],[-192.91,-135.69],[-187.98,-124.45],[-183.75,-115.52],[-178.54,-105.24],[-173.36,-96.06],[-169.31,-97.52],[-165.22,-105.72],[-156.59,-122.54],[-149.53,-146.4],[-149.02,-170.65],[-151.84,-193.38],[-155.16,-214.38],[-159.86,-233.37],[-163.32,-240.61],[-165.28,-243.77],[-170.33,-251.91],[-176.99,-261.22],[-185.68,-273.95],[-195.88,-304],[-208.81,-329.83],[-217.74,-344.45],[-222.8,-352.01],[-227.65,-361.99],[-232.89,-369.15]],"o":[[-242.17,-374.33],[-247.01,-355.49],[-251.43,-335.78],[-255.26,-316.01],[-255.95,-295.83],[-252.17,-275.46],[-246.76,-253.6],[-239.71,-223.84],[-229.05,-199.22],[-212.13,-179.24],[-200.66,-160.05],[-194.99,-142.22],[-189.1,-126.94],[-185.3,-118.74],[-180.61,-109.21],[-174.92,-98.67],[-170.95,-95.66],[-166.44,-102.55],[-160.08,-115.34],[-151.32,-138.07],[-148.6,-163.21],[-150.64,-185.74],[-153.98,-207.44],[-158.1,-227.34],[-162.68,-239.48],[-164.62,-242.76],[-168.08,-248.55],[-174.78,-258.24],[-182.55,-268.92],[-192.77,-289.4],[-203.98,-321.69],[-215.63,-341.51],[-221.3,-350.04],[-226.33,-357.88],[-231.01,-367.72],[-236.08,-374.45]],"v":[[-240,-380],[-245.45,-361.86],[-250,-342],[-254.11,-322.61],[-256,-303],[-253.54,-282.16],[-249,-263],[-242.19,-233.6],[-233,-207],[-217.74,-185.89],[-203,-165],[-196.93,-148.31],[-190,-129],[-186.64,-121.59],[-182,-112],[-176.73,-101.95],[-173,-96],[-167.88,-100.03],[-164,-108],[-153.96,-130.3],[-149,-156],[-149.83,-178.19],[-153,-201],[-156.63,-220.86],[-162,-238],[-163.97,-241.69],[-166,-245],[-172.56,-255.08],[-179,-264],[-188,-279],[-200,-313],[-213,-337],[-220,-348],[-224,-354],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":143,"s":[{"i":[[-235.43,-376.46],[-243.36,-369.91],[-247.73,-353.6],[-251.39,-337.61],[-254.45,-321.96],[-255.62,-298.97],[-251.64,-275.44],[-243.47,-236.82],[-234.16,-208.26],[-229.32,-202.43],[-228.55,-199.76],[-224.36,-193.78],[-221.58,-190.73],[-208.1,-175.33],[-196.84,-144.72],[-185.53,-119.18],[-173.47,-96.07],[-165.37,-104.46],[-158.38,-116.81],[-155.96,-125.28],[-152.59,-132.72],[-148.3,-163.89],[-154.29,-211.54],[-162.21,-239.7],[-172.67,-255.48],[-176.46,-260.25],[-178.18,-264.81],[-180.63,-266.6],[-181.34,-269],[-183.65,-270.53],[-184.56,-273.3],[-194.15,-294.32],[-197.9,-309.31],[-202.64,-317.3],[-206.41,-326.13],[-221.9,-350.57]],"o":[[-241.74,-375.12],[-246.35,-359.16],[-250.16,-342.88],[-253.53,-327.15],[-256.05,-307.5],[-253.41,-282.94],[-246.53,-252.26],[-236.68,-215.83],[-230.75,-202.59],[-228.37,-201.16],[-226.23,-196.55],[-222.5,-191.35],[-215.1,-182.61],[-198.6,-156.02],[-187.9,-124.16],[-178.96,-105.81],[-169.44,-95.43],[-161,-112.54],[-155.96,-122.41],[-154.19,-130.28],[-148.43,-148.84],[-151.86,-195.51],[-160,-232.25],[-167.45,-249.66],[-175.61,-259.92],[-177.9,-262.27],[-179.29,-266.42],[-181.76,-267.82],[-182.29,-270.44],[-184.58,-271.77],[-190.07,-282.13],[-198.01,-306.08],[-200.05,-314.56],[-205.59,-323.14],[-214.29,-340.34],[-231.54,-367.05]],"v":[[-240,-380],[-244.85,-364.53],[-249,-348],[-252.46,-332.38],[-255,-317],[-254.51,-290.95],[-250,-268],[-239,-223],[-231,-203],[-229,-202],[-228,-199],[-223,-192],[-221,-190],[-204,-167],[-190,-129],[-182,-112],[-173,-96],[-164,-107],[-157,-120],[-155,-128],[-152,-135],[-150,-179],[-158,-225],[-165,-245],[-175,-259],[-177,-261],[-179,-266],[-181,-267],[-182,-270],[-184,-271],[-185,-274],[-197,-303],[-199,-312],[-204,-320],[-208,-329],[-228,-361]],"c":true}],"h":1},{"t":144,"s":[{"i":[[-237.01,-377.34],[-246.28,-359.98],[-254.24,-326.01],[-251.86,-276.54],[-240.72,-222.51],[-224.85,-195.78],[-210.87,-178.61],[-197.98,-149.87],[-193.2,-138.51],[-193.27,-135.89],[-191.21,-133.49],[-190.71,-129.63],[-187.74,-125.55],[-174.99,-96.34],[-165.77,-103.73],[-157.89,-117.93],[-156.02,-125.14],[-152.62,-132.6],[-148.09,-157.44],[-152.51,-196.83],[-160.66,-236.41],[-169.68,-250.98],[-172.16,-256.77],[-174.63,-258.6],[-175.32,-261.05],[-177.61,-262.58],[-180.42,-267.68],[-186.34,-275.6],[-195.72,-302.76],[-205.95,-325.45],[-209.76,-330.59],[-211.87,-335.06],[-217.87,-344.52],[-221.31,-351.48],[-223.76,-353.6],[-227.61,-362.02]],"o":[[-243.35,-370.63],[-251.33,-337.71],[-256.7,-293.53],[-244.11,-241.33],[-230.59,-202.15],[-215.92,-184.69],[-202.46,-164.25],[-194.89,-139.63],[-192.66,-137.13],[-192.89,-134.63],[-190.27,-131.3],[-189.37,-126.54],[-184.1,-117.96],[-169.62,-95.42],[-161.42,-111.76],[-155.98,-122.37],[-154.18,-130.32],[-149.06,-146.4],[-149.79,-182.84],[-157.49,-223.19],[-166.48,-247.93],[-171.88,-254.34],[-173.29,-258.42],[-175.75,-259.8],[-176.31,-262.43],[-180.15,-265.31],[-183.96,-272.89],[-193.66,-290.59],[-202.29,-318.49],[-208.16,-330.35],[-211.03,-332.78],[-215.55,-341.37],[-221.23,-350.01],[-222.15,-353.34],[-226.32,-357.87],[-232.68,-370.46]],"v":[[-240,-380],[-249,-348],[-255,-316],[-248,-259],[-234,-209],[-221,-191],[-207,-172],[-195,-140],[-193,-138],[-193,-135],[-191,-133],[-190,-128],[-187,-124],[-173,-96],[-164,-107],[-157,-120],[-155,-128],[-152,-135],[-149,-171],[-155,-210],[-165,-245],[-171,-253],[-173,-258],[-175,-259],[-176,-262],[-178,-263],[-182,-270],[-188,-279],[-200,-313],[-208,-330],[-210,-331],[-213,-337],[-220,-348],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":145,"s":[{"i":[[-236.89,-377.17],[-243.28,-370.26],[-247.64,-353.76],[-251.56,-337.25],[-254.64,-321.06],[-254.5,-289.94],[-247.11,-255.4],[-244.35,-242.73],[-243.41,-237.64],[-240.4,-226.1],[-235.91,-213.66],[-230.16,-202.21],[-228.69,-199.97],[-219.33,-189.92],[-215.82,-184.08],[-207.32,-173.53],[-203.27,-163.11],[-194.69,-139.39],[-184.05,-118.07],[-174.93,-90.89],[-159.83,-115.82],[-149.91,-140.18],[-150.02,-179.79],[-156.48,-218.64],[-163.82,-242.87],[-168.2,-248.78],[-170.08,-253.63],[-172.65,-255.53],[-173.48,-258.25],[-184.26,-271.58],[-194.95,-297.22],[-206.57,-327.17],[-217.54,-344.16],[-221.31,-351.48],[-223.76,-353.6],[-227.73,-362.22]],"o":[[-241.71,-375.38],[-246.24,-359.45],[-250.25,-342.73],[-253.76,-326.42],[-255.95,-302.74],[-250.08,-266.28],[-244.64,-244.41],[-243.73,-239.35],[-241.7,-230.77],[-237.51,-217.54],[-232.54,-207.21],[-228.27,-200.23],[-225.02,-194.78],[-216.06,-185.82],[-211.49,-178.41],[-203.54,-166.15],[-198.35,-151.05],[-187.31,-123.32],[-175.13,-100.32],[-163.54,-105.86],[-153.9,-129.37],[-147.51,-165.95],[-154.33,-206.35],[-161.96,-236.31],[-166.67,-248.27],[-170.01,-251.54],[-171.3,-255.45],[-173.62,-256.83],[-178.83,-265.93],[-192.49,-287.92],[-201.39,-315.76],[-214.18,-338.9],[-221.27,-349.98],[-222.15,-353.34],[-226.27,-357.71],[-232.7,-370.49]],"v":[[-240,-380],[-244.76,-364.86],[-249,-348],[-252.66,-331.84],[-255,-316],[-252.29,-278.11],[-245,-246],[-244.04,-241.04],[-243,-236],[-238.95,-221.82],[-234,-210],[-229,-201],[-228,-199],[-217,-187],[-215,-183],[-205,-169],[-202,-160],[-189,-127],[-181,-112],[-168,-100],[-158,-120],[-149,-150],[-152,-192],[-160,-230],[-166,-247],[-169,-250],[-171,-255],[-173,-256],[-174,-259],[-188,-279],[-198,-306],[-211,-334],[-220,-348],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":146,"s":[{"i":[[-235.38,-375.62],[-243.42,-370.23],[-247.54,-354.07],[-251.51,-337.7],[-254.62,-321.35],[-255.31,-299.84],[-252.36,-279.26],[-248.26,-257.98],[-243.55,-237.08],[-241.44,-229.4],[-240.3,-226.95],[-234.55,-207.71],[-230.7,-203.04],[-226,-198.25],[-223.97,-194.22],[-214.85,-184.1],[-211.25,-179.35],[-209.58,-175.28],[-207.24,-173.41],[-198.6,-149.52],[-189.48,-129.16],[-175.35,-96.4],[-165.45,-103.4],[-159.41,-116.76],[-147.43,-153.66],[-153.35,-200.3],[-165.65,-249.89],[-178.64,-265.18],[-182,-269.57],[-194,-294.58],[-206.52,-327.08],[-217.82,-345.16],[-221.75,-350.63],[-221.77,-352.49],[-223.76,-353.61],[-225.9,-358.12]],"o":[[-241.9,-375.19],[-246.24,-359.67],[-250.2,-343.03],[-253.72,-326.86],[-255.63,-307.21],[-253.67,-285.86],[-249.73,-265.19],[-245.17,-243.93],[-241.79,-230.17],[-240.7,-227.79],[-237.43,-217.93],[-230.23,-203.2],[-228.76,-200.14],[-223.95,-195.69],[-219.71,-188.86],[-212.86,-179.69],[-209.85,-177.4],[-208.84,-173.65],[-200.94,-162.53],[-192.13,-133.31],[-183.95,-117.66],[-170.39,-95.55],[-160.56,-112.16],[-151.05,-135.91],[-149.93,-186.13],[-160.32,-233.75],[-177.9,-263.04],[-181.06,-268.41],[-189.93,-280.96],[-201.41,-315.75],[-214.42,-339.28],[-220.15,-350.32],[-222.31,-351.46],[-222.15,-353.34],[-225.04,-355.68],[-230.92,-366.71]],"v":[[-240,-380],[-244.83,-364.95],[-249,-348],[-252.61,-332.28],[-255,-316],[-254.49,-292.85],[-251,-272],[-246.71,-250.95],[-242,-231],[-241.07,-228.59],[-240,-226],[-231,-204],[-230,-202],[-225,-197],[-223,-193],[-213,-180],[-211,-179],[-209,-174],[-207,-173],[-194,-138],[-187,-124],[-173,-96],[-164,-106],[-158,-120],[-149,-174],[-156,-213],[-176,-261],[-180,-267],[-183,-271],[-198,-306],[-211,-334],[-220,-350],[-222,-351],[-222,-353],[-224,-354],[-227,-360]],"c":true}],"h":1},{"t":147,"s":[{"i":[[-234.31,-374.97],[-243.37,-370.45],[-247.49,-354.08],[-252.88,-331.89],[-255.73,-306.49],[-253,-281.55],[-247.65,-257],[-243.91,-238.5],[-240.41,-223.65],[-236.03,-213.28],[-230.61,-204.13],[-228.01,-200.68],[-226.49,-198.63],[-219.58,-189.99],[-210.45,-178.18],[-198.51,-149.04],[-186.87,-122.83],[-173.98,-96.16],[-167.77,-101.15],[-161,-111.9],[-157.3,-122.62],[-153.54,-129.49],[-150.79,-138.85],[-149.28,-174.31],[-152.93,-198.26],[-160.85,-237.75],[-169.2,-250.78],[-171.08,-255.63],[-173.65,-257.53],[-174.48,-260.25],[-185.36,-273.56],[-197.34,-304.93],[-211.3,-333.79],[-216.76,-342.6],[-218.94,-347.19],[-223.61,-355.14]],"o":[[-241.88,-375.41],[-246.18,-359.78],[-251.01,-339.89],[-255.24,-315.19],[-254.43,-289.56],[-249.61,-265.28],[-244.95,-243.92],[-241.64,-228.36],[-237.73,-216.71],[-232.47,-206.99],[-228.52,-201.36],[-227,-199.31],[-222.85,-193.9],[-213.38,-182.13],[-201.83,-163.48],[-189.8,-128.93],[-180.09,-109.11],[-169.86,-95.49],[-165.17,-105.34],[-157.93,-118.36],[-155.38,-127.6],[-151.38,-135.5],[-147.28,-157.21],[-152.22,-192.57],[-156.98,-220.02],[-167.69,-250.27],[-171.01,-253.54],[-172.3,-257.45],[-174.62,-258.83],[-179.81,-267.9],[-194.48,-292.18],[-204.83,-323.49],[-215.15,-342.34],[-218.05,-344.72],[-221.84,-352.16],[-230.28,-364.06]],"v":[[-240,-380],[-244.78,-365.11],[-249,-348],[-254.06,-323.54],[-255,-297],[-251.3,-273.42],[-246,-249],[-242.77,-233.43],[-239,-220],[-234.25,-210.13],[-229,-202],[-227.5,-199.99],[-226,-198],[-216.48,-186.06],[-208,-174],[-192,-134],[-183,-115],[-173,-96],[-166,-104],[-160,-114],[-156,-126],[-153,-131],[-150,-143],[-151,-185],[-154,-204],[-167,-249],[-170,-252],[-172,-257],[-174,-258],[-175,-261],[-189,-281],[-201,-314],[-215,-342],[-217,-343],[-220,-349],[-225,-357]],"c":true}],"h":1},{"t":148,"s":[{"i":[[-236.45,-377.5],[-243.52,-370.01],[-247.63,-353.75],[-251.56,-337.49],[-254.64,-321.42],[-255.16,-302.52],[-252.87,-285.24],[-251,-273.57],[-249.56,-264.06],[-246.9,-248.95],[-242.96,-230.75],[-236.91,-214.74],[-228.78,-200.65],[-225.1,-196.29],[-223.34,-195.42],[-222.22,-193.64],[-221.5,-191.61],[-220.08,-190.29],[-218.34,-189.43],[-217.22,-187.66],[-216.47,-185.61],[-203.93,-167.04],[-197.31,-145.34],[-192.43,-136.23],[-186.97,-121.9],[-173.52,-96.08],[-165.36,-104.65],[-153.37,-129.24],[-149.93,-179.72],[-160.78,-234.36],[-172.48,-256.98],[-179.23,-266.58],[-183.1,-270.79],[-185.19,-275.62],[-196.13,-300.37],[-220.64,-349.33]],"o":[[-241.95,-375.14],[-246.36,-359.32],[-250.24,-342.78],[-253.76,-326.82],[-255.48,-308.9],[-253.86,-290.69],[-251.47,-276.79],[-250.04,-267.2],[-247.92,-255.07],[-244.41,-236.79],[-239.27,-219.91],[-231.67,-205.11],[-225.68,-196.58],[-223.93,-195.71],[-222.47,-194.34],[-221.73,-192.28],[-220.66,-190.58],[-218.92,-189.72],[-217.48,-188.35],[-216.71,-186.29],[-208.21,-174.86],[-197.78,-149.51],[-194.69,-138.65],[-188.77,-127.98],[-180.45,-108.93],[-169.58,-95.44],[-158.51,-116.48],[-145.09,-163.38],[-158,-219.97],[-167.34,-250.9],[-177.71,-264.43],[-181.77,-270.06],[-184.87,-273.18],[-192.42,-287.97],[-208.49,-332.4],[-232.83,-369.73]],"v":[[-240,-380],[-244.94,-364.67],[-249,-348],[-252.66,-332.16],[-255,-316],[-254.51,-296.61],[-252,-280],[-250.52,-270.39],[-249,-261],[-245.65,-242.87],[-241,-225],[-234.29,-209.93],[-226,-197],[-224.51,-196],[-223,-195],[-221.98,-192.96],[-221,-191],[-219.5,-190.01],[-218,-189],[-216.96,-186.97],[-216,-185],[-199,-153],[-196,-142],[-191,-133],[-183,-114],[-173,-96],[-164,-107],[-151,-139],[-155,-205],[-165,-245],[-176,-262],[-181,-269],[-184,-272],[-186,-277],[-201,-313],[-230,-365]],"c":true}],"h":1},{"t":149,"s":[{"i":[[-235.8,-376.23],[-243.62,-369.94],[-247.49,-353.22],[-252.54,-332.53],[-255.56,-309.62],[-252.44,-278.72],[-245.19,-242.98],[-242.62,-231.58],[-242.32,-228],[-239.83,-221.73],[-235.83,-214.67],[-233.82,-208.36],[-230.1,-204.52],[-228.6,-200.79],[-226.59,-198.78],[-222.43,-192.83],[-218.67,-189.85],[-216.05,-185.49],[-212.2,-180.84],[-199.81,-154.59],[-194.21,-140.5],[-193.66,-136.51],[-190.66,-132.47],[-189.68,-127.56],[-186.73,-123.49],[-175.06,-96.33],[-168.34,-100.2],[-160.29,-113.74],[-154.44,-127],[-152.24,-194.04],[-163.57,-242.89],[-174.86,-260.63],[-185.08,-274.69],[-200.64,-316.69],[-212.47,-336.54],[-223.5,-354.73]],"o":[[-242.12,-375.08],[-246.31,-359.01],[-250.76,-339.73],[-254.94,-317.48],[-254.35,-290.98],[-247.86,-254.72],[-242.71,-232.83],[-242.43,-229.16],[-241.16,-224.39],[-237.17,-216.86],[-234.01,-211.03],[-232.1,-205.51],[-228.34,-202.1],[-227.48,-199.32],[-224.11,-195.51],[-220.34,-190.16],[-216.93,-187.66],[-213.69,-182.14],[-204.12,-168.48],[-195.89,-141.63],[-193.36,-138.49],[-192.36,-133.52],[-189.3,-129.45],[-188.46,-124.76],[-183.42,-116.69],[-170.09,-95.53],[-163.45,-108.14],[-156.85,-122.45],[-142.66,-159.73],[-160.41,-230.85],[-170.75,-256.03],[-181.67,-270.11],[-196.75,-295.88],[-210.39,-334.54],[-218.83,-346.77],[-231.62,-367.85]],"v":[[-240,-380],[-244.96,-364.47],[-249,-347],[-253.74,-325.01],[-255,-301],[-250.15,-266.72],[-243,-234],[-242.53,-230.37],[-242,-227],[-238.5,-219.3],[-235,-213],[-233,-207],[-229,-203],[-228,-200],[-226,-198],[-221,-191],[-218,-189],[-215,-184],[-211,-179],[-196,-142],[-194,-140],[-193,-135],[-190,-131],[-189,-126],[-186,-122],[-173,-96],[-166,-104],[-159,-117],[-153,-131],[-158,-220],[-168,-251],[-178,-265],[-188,-280],[-209,-332],[-214,-339],[-228,-362]],"c":true}],"h":1},{"t":150,"s":[{"i":[[-235.09,-375.53],[-243.55,-370.23],[-247.4,-353.46],[-252.55,-332.73],[-255.55,-310.23],[-253.19,-285.74],[-248.44,-260.31],[-245.64,-243.79],[-243.21,-231.81],[-239.84,-222.39],[-235.98,-214.95],[-234.27,-210.97],[-233.38,-207.62],[-232.45,-206.65],[-231.16,-206.22],[-230.57,-205.01],[-230.29,-203.38],[-227.08,-200.41],[-222.2,-192.79],[-215.1,-185.02],[-200.63,-152.93],[-185.66,-121.28],[-174.46,-96.24],[-166.73,-102.62],[-149.07,-137.56],[-153.29,-198.94],[-159.64,-227.93],[-162.83,-236.47],[-164.02,-242.78],[-180.65,-266.92],[-200.55,-316.53],[-211.95,-335.28],[-214.92,-341.24],[-218.78,-346.07],[-221.66,-352.87],[-225.83,-358.15]],"o":[[-242.1,-375.25],[-246.2,-359.33],[-250.77,-339.86],[-254.94,-317.92],[-254.47,-294.08],[-250.18,-268.86],[-246.29,-247.88],[-244.1,-235.75],[-241.1,-225.16],[-237.28,-217.28],[-234.58,-212.16],[-233.67,-208.7],[-232.87,-206.79],[-231.6,-206.36],[-230.68,-205.57],[-230.38,-203.92],[-229.06,-201.75],[-223.86,-196.19],[-217.7,-187.09],[-202.45,-166.8],[-188.76,-127.13],[-178.39,-106.83],[-169.47,-95.43],[-155.94,-123.9],[-146.78,-179.11],[-158.55,-221.71],[-161.09,-234.38],[-163.75,-239.33],[-171.04,-258.65],[-197.76,-297.35],[-209.96,-333.76],[-214.16,-338.88],[-217.15,-344.88],[-221.27,-350.01],[-224.09,-356.74],[-231.2,-366.68]],"v":[[-240,-380],[-244.88,-364.78],[-249,-347],[-253.74,-325.32],[-255,-302],[-251.68,-277.3],[-247,-252],[-244.87,-239.77],[-242,-228],[-238.56,-219.83],[-235,-213],[-233.97,-209.84],[-233,-207],[-232.03,-206.51],[-231,-206],[-230.47,-204.47],[-230,-203],[-226,-199],[-220,-190],[-213,-182],[-191,-132],[-182,-114],[-173,-96],[-164,-108],[-148,-157],[-157,-215],[-161,-234],[-163,-237],[-165,-245],[-188,-280],[-209,-332],[-213,-337],[-216,-343],[-220,-348],[-223,-355],[-227,-360]],"c":true}],"h":1},{"t":151,"s":[{"i":[[-237.58,-379.62],[-243.65,-369.86],[-247.48,-353.13],[-251.69,-336.33],[-254.78,-319.67],[-254.33,-295.46],[-249.45,-267.54],[-245.81,-244.26],[-241.22,-225.32],[-236.38,-214.43],[-232.23,-207.74],[-226.17,-199.2],[-219.25,-189.89],[-212.74,-181.22],[-207.49,-172.22],[-204.4,-165.15],[-202.73,-159.95],[-199.42,-151.43],[-194.72,-140.74],[-190.46,-130.96],[-186.06,-120.19],[-173.34,-96.05],[-162.79,-111.28],[-152.69,-130.95],[-148.33,-173.19],[-158.24,-220.4],[-166.08,-247.75],[-175.71,-262.46],[-186.19,-276.79],[-201.57,-318.63],[-211.53,-335.28],[-215.2,-342.06],[-219.91,-348.22],[-222.64,-354.84],[-226.97,-360.35],[-232.89,-369.56]],"o":[[-242.16,-375.04],[-246.31,-358.91],[-250.3,-341.75],[-253.93,-325.29],[-255.36,-304.69],[-251.38,-276.88],[-246.95,-251.1],[-242.95,-231.37],[-237.77,-217.06],[-233.61,-209.77],[-228.54,-202.51],[-221.52,-192.89],[-214.75,-184.11],[-209.11,-175.28],[-205.04,-166.92],[-203.25,-161.66],[-200.81,-154.81],[-196.37,-144.4],[-191.68,-134.11],[-187.65,-124],[-181.32,-110.55],[-167.73,-95.14],[-157.27,-122.75],[-145.68,-155.96],[-155.14,-206.26],[-164.32,-240.78],[-171.64,-257.75],[-182.6,-271.97],[-198.42,-299.45],[-210.3,-334.54],[-214.12,-339.27],[-218.08,-346.76],[-222.38,-352.25],[-225.05,-358.67],[-230.63,-366.21],[-236.69,-375.75]],"v":[[-240,-380],[-244.98,-364.38],[-249,-347],[-252.81,-330.81],[-255,-314],[-252.86,-286.17],[-248,-258],[-244.38,-237.82],[-239,-220],[-235,-212.1],[-231,-206],[-223.85,-196.05],[-217,-187],[-210.92,-178.25],[-206,-169],[-203.83,-163.4],[-202,-158],[-197.9,-147.92],[-193,-137],[-189.05,-127.48],[-184,-116],[-173,-96],[-161,-115],[-151,-137],[-152,-191],[-162,-233],[-169,-253],[-179,-267],[-189,-282],[-210,-334],[-212,-336],[-217,-345],[-221,-350],[-224,-357],[-228,-362],[-235,-373]],"c":true}],"h":1},{"t":152,"s":[{"i":[[-234.68,-374.7],[-243.52,-369.45],[-248.47,-352.28],[-252.55,-334.8],[-254.98,-316.85],[-254.17,-297.94],[-250.81,-278.4],[-248.42,-258.7],[-245.54,-239.84],[-240.39,-222.57],[-232.97,-208.21],[-223.55,-195.73],[-213.71,-183.62],[-207.66,-172.6],[-203.45,-161.9],[-199.4,-151.35],[-194.74,-140.79],[-191.45,-133.84],[-188.87,-128.87],[-183.57,-116.35],[-174.45,-96.23],[-168.8,-98.05],[-163.23,-110.36],[-157.44,-121.97],[-151.99,-133.45],[-148.55,-148.37],[-147.57,-166.64],[-149.34,-182.41],[-152.85,-198.09],[-159.09,-225.03],[-169.58,-254.76],[-176.82,-264.58],[-179.49,-268.47],[-186.28,-277.1],[-196.67,-300.8],[-215.89,-342.45]],"o":[[-241.79,-374.81],[-246.86,-358.19],[-251.31,-340.63],[-254.39,-322.91],[-255.02,-304.49],[-252.07,-284.9],[-249.15,-265.28],[-246.62,-245.98],[-242.4,-227.96],[-235.67,-212.69],[-226.95,-199.67],[-216.93,-187.7],[-209.18,-175.9],[-204.79,-165.6],[-200.78,-154.71],[-196.38,-144.39],[-192.27,-135.41],[-189.76,-130.57],[-186.59,-123.99],[-177.49,-102.48],[-170.69,-95.62],[-165.08,-105.42],[-159.44,-118.25],[-153.71,-129.57],[-149.51,-142.3],[-147.57,-160.54],[-148.41,-177.12],[-151.56,-192.9],[-156.55,-213.9],[-165.61,-245.46],[-175.82,-263.1],[-178.65,-267.27],[-183.82,-272.98],[-194,-291.01],[-206.65,-328.38],[-229.89,-364.82]],"v":[[-240,-380],[-245.19,-363.82],[-250,-346],[-253.47,-328.86],[-255,-311],[-253.12,-291.42],[-250,-272],[-247.52,-252.34],[-244,-234],[-238.03,-217.63],[-230,-204],[-220.24,-191.72],[-211,-179],[-206.22,-169.1],[-202,-158],[-197.89,-147.87],[-193,-137],[-190.6,-132.21],[-188,-127],[-180.53,-109.42],[-173,-96],[-166.94,-101.74],[-161,-115],[-155.57,-125.77],[-151,-137],[-148.06,-154.46],[-148,-172],[-150.45,-187.66],[-154,-203],[-162.35,-235.24],[-175,-262],[-177.74,-265.93],[-180,-269],[-189,-282],[-200,-310],[-225,-357]],"c":true}],"h":1},{"t":153,"s":[{"i":[[-237.41,-378.78],[-243.53,-369.46],[-248.46,-352.34],[-252.54,-334.87],[-255,-316.89],[-254.14,-298.02],[-250.79,-278.43],[-249.35,-265.12],[-248.55,-255.16],[-244.02,-233.4],[-234.43,-210.32],[-223.61,-195.79],[-213.69,-183.59],[-207.66,-172.58],[-203.45,-161.87],[-199.36,-151.29],[-194.73,-140.78],[-191.46,-133.81],[-188.9,-128.86],[-183.51,-116.54],[-174.25,-96.2],[-168.72,-98.19],[-163.1,-110.64],[-157.29,-122.29],[-152.02,-133.43],[-148.56,-176.68],[-160.57,-234.2],[-175.45,-262.72],[-187.08,-278.6],[-201.84,-319.13],[-211.52,-335.17],[-217.29,-345.7],[-224.7,-357.35],[-228.4,-363.68],[-230.76,-365.61],[-232.87,-370.12]],"o":[[-241.8,-374.79],[-246.86,-358.23],[-251.29,-340.68],[-254.39,-322.98],[-255,-304.56],[-252.04,-284.96],[-249.58,-268.54],[-248.84,-258.43],[-246.3,-242.24],[-238.08,-217.45],[-227.01,-199.74],[-216.95,-187.71],[-209.18,-175.9],[-204.79,-165.57],[-200.75,-154.65],[-196.36,-144.36],[-192.26,-135.38],[-189.78,-130.55],[-186.64,-124.19],[-177.32,-102.55],[-170.67,-95.62],[-164.93,-105.7],[-159.28,-118.58],[-153.66,-129.72],[-145.58,-155.96],[-156.38,-211.47],[-170.35,-256.7],[-183.52,-273.86],[-199.29,-301.22],[-210.33,-334.61],[-214.97,-341.14],[-222.5,-353.98],[-227.98,-362.56],[-229.15,-365.34],[-232.05,-367.68],[-236.06,-375.43]],"v":[[-240,-380],[-245.19,-363.84],[-250,-346],[-253.47,-328.92],[-255,-311],[-253.09,-291.49],[-250,-272],[-249.09,-261.77],[-248,-252],[-241.05,-225.42],[-230,-204],[-220.28,-191.75],[-211,-179],[-206.22,-169.08],[-202,-158],[-197.86,-147.82],[-193,-137],[-190.62,-132.18],[-188,-127],[-180.42,-109.54],[-173,-96],[-166.82,-101.95],[-161,-115],[-155.47,-126.01],[-151,-137],[-152,-192],[-167,-249],[-180,-269],[-190,-284],[-210,-334],[-212,-336],[-220,-350],[-227,-361],[-229,-365],[-231,-366],[-234,-372]],"c":true}],"h":1},{"t":154,"s":[{"i":[[-236.88,-379.14],[-243.42,-369.78],[-248.52,-353.06],[-252.55,-335.81],[-255,-317.8],[-254.54,-303.51],[-252.59,-289.69],[-249.39,-262.04],[-243.65,-230.48],[-237.99,-217.33],[-234.76,-210.79],[-232.51,-208.33],[-230.61,-205.83],[-227.95,-202.12],[-225.48,-198.08],[-224.49,-196.68],[-223.12,-196.16],[-219.56,-191.82],[-216.75,-187.07],[-205.13,-168.2],[-198.52,-148.69],[-191.52,-133.12],[-174.9,-96.31],[-163.58,-108.94],[-150.6,-139.34],[-148.76,-178.55],[-152.21,-196.5],[-154.86,-202.47],[-162.21,-239.31],[-173.85,-260.81],[-184.43,-274.17],[-200.95,-316.35],[-211.92,-335.18],[-214.83,-341.07],[-228.21,-361.6],[-233.76,-370.6]],"o":[[-241.66,-375],[-246.85,-358.81],[-251.3,-341.67],[-254.4,-323.88],[-255,-307.92],[-253.34,-294.4],[-250.56,-273.55],[-245.93,-240.5],[-239.11,-219.93],[-235.81,-212.76],[-233.2,-209.17],[-231.21,-206.66],[-228.95,-203.58],[-226.21,-199.37],[-224.93,-196.85],[-223.59,-196.34],[-220.83,-193.17],[-217.2,-189.07],[-209.96,-177.35],[-199.24,-152.23],[-194.21,-138.22],[-186.06,-122.08],[-168.21,-95.22],[-155.68,-126.28],[-145.65,-162.99],[-151.84,-192.92],[-153.08,-200.37],[-159.6,-220.72],[-170.86,-256.76],[-179.82,-269.69],[-198.2,-296.65],[-209.89,-333.73],[-214.18,-338.99],[-221.42,-351.96],[-232.15,-370.34],[-236.1,-374.43]],"v":[[-240,-380],[-245.13,-364.29],[-250,-347],[-253.48,-329.85],[-255,-312],[-253.94,-298.95],[-252,-285],[-247.66,-251.27],[-240,-222],[-236.9,-215.04],[-234,-210],[-231.86,-207.5],[-230,-205],[-227.08,-200.74],[-225,-197],[-224.04,-196.51],[-223,-196],[-218,-190],[-216,-186],[-201,-157],[-197,-145],[-188,-126],[-173,-96],[-159,-119],[-149,-147],[-151,-189],[-153,-200],[-155,-203],[-169,-253],[-176,-264],[-188,-280],[-209,-332],[-213,-337],[-216,-343],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":155,"s":[{"i":[[-237.41,-378.78],[-244.24,-367.06],[-250.43,-345.76],[-254.06,-323.69],[-253.77,-300.95],[-250.86,-272.06],[-246.14,-241.55],[-242.4,-228.42],[-240.17,-222.44],[-237.24,-216.13],[-234.59,-210.61],[-230.69,-206.3],[-226.29,-200.68],[-221.6,-194.15],[-216.41,-186.47],[-211.94,-181.01],[-209.15,-174.45],[-206.66,-169.66],[-204.46,-166.24],[-203.32,-162.25],[-202.62,-157.64],[-200.85,-153.79],[-198.55,-150.3],[-197.55,-147.54],[-197.21,-145.51],[-194.2,-138.56],[-189.65,-129.34],[-183.81,-116.68],[-174.01,-96.16],[-169.67,-98.56],[-155.84,-125.14],[-147.63,-175.76],[-163.71,-243.9],[-187.3,-279.04],[-202.97,-319.98],[-227.19,-360.68]],"o":[[-242.03,-373.68],[-248.44,-353.1],[-253.42,-330.96],[-254.23,-308.68],[-252.04,-283.04],[-247.91,-251.31],[-243.06,-230.7],[-240.95,-224.29],[-238.2,-218.32],[-235.44,-212.28],[-232.29,-208.21],[-227.69,-202.54],[-223.4,-196.91],[-218.11,-188.93],[-213.11,-183.03],[-209.95,-176.71],[-207.43,-170.79],[-205.17,-167.39],[-203.51,-163.68],[-202.88,-159.23],[-201.58,-154.9],[-199.34,-151.5],[-197.7,-148.28],[-197.31,-146.15],[-195.62,-141.64],[-191.21,-132.41],[-187.06,-124.1],[-177.29,-102.71],[-169.76,-95.47],[-162.74,-110.07],[-144.31,-155.59],[-158.02,-216.86],[-175.18,-264.52],[-199.91,-302.78],[-217.72,-347.57],[-236.06,-375.43]],"v":[[-240,-380],[-246.34,-360.08],[-252,-338],[-254.14,-316.19],[-253,-293],[-249.38,-261.69],[-244,-234],[-241.67,-226.35],[-239,-220],[-236.34,-214.2],[-234,-210],[-229.19,-204.42],[-225,-199],[-219.86,-191.54],[-215,-185],[-210.95,-178.86],[-208,-172],[-205.92,-168.52],[-204,-165],[-203.1,-160.74],[-202,-156],[-200.1,-152.65],[-198,-149],[-197.43,-146.84],[-197,-145],[-192.7,-135.49],[-188,-126],[-180.55,-109.7],[-173,-96],[-167,-103],[-154,-130],[-153,-197],[-171,-257],[-191,-286],[-211,-335],[-234,-372]],"c":true}],"h":1},{"t":156,"s":[{"i":[[-238.4,-379.79],[-243.39,-371.14],[-246.66,-356.32],[-250.49,-341.98],[-253.67,-328.61],[-254.19,-304.68],[-250.95,-278.26],[-248.96,-258.77],[-247.22,-242.88],[-239.85,-220.66],[-225.44,-199.23],[-215.01,-185.09],[-208.82,-174.21],[-201.89,-157.58],[-193.66,-137.5],[-189.22,-128.4],[-186.08,-122.2],[-180.82,-111.01],[-173.64,-96.1],[-169.08,-98.15],[-163.79,-107.38],[-159.9,-115.79],[-156.83,-123.89],[-151.6,-137.6],[-147,-157.33],[-148.4,-179.59],[-154.8,-203.79],[-161.05,-228.35],[-167.74,-250.94],[-173.28,-258.81],[-174.88,-263.34],[-180.34,-269.71],[-189.48,-283.01],[-203.96,-322.18],[-220.59,-351.06],[-231.9,-369.07]],"o":[[-242.06,-375.73],[-245.69,-361.44],[-249.15,-346.42],[-252.75,-333.07],[-254.71,-314.05],[-252.3,-286.78],[-249.35,-264.33],[-247.9,-248.04],[-243.63,-228.55],[-230.76,-206],[-217.35,-188.48],[-210.74,-177.95],[-204.55,-164.33],[-196.44,-144.17],[-190.18,-130.3],[-187.17,-124.34],[-183.5,-116.96],[-175.89,-100.58],[-171.18,-95.71],[-165.39,-103.99],[-161.24,-112.59],[-157.7,-121.44],[-153.85,-131.43],[-148.18,-150.55],[-147,-171.7],[-152.3,-195.64],[-159.18,-220.13],[-165.33,-243.75],[-171.66,-258.22],[-175.02,-261.68],[-177.54,-267.28],[-185.88,-277.35],[-200.51,-304.87],[-215.91,-344.21],[-228.41,-363.36],[-236.3,-376.06]],"v":[[-240,-380],[-244.54,-366.29],[-248,-351],[-251.62,-337.53],[-254,-324],[-253.25,-295.73],[-250,-270],[-248.43,-253.41],[-246,-238],[-235.3,-213.33],[-220,-192],[-212.88,-181.52],[-207,-170],[-199.16,-150.88],[-191,-132],[-188.2,-126.37],[-185,-120],[-178.35,-105.8],[-173,-96],[-167.23,-101.07],[-163,-109],[-158.8,-118.61],[-156,-126],[-149.89,-144.08],[-147,-164],[-150.35,-187.62],[-157,-212],[-163.19,-236.05],[-171,-257],[-174,-260],[-176,-265],[-182,-272],[-192,-288],[-212,-337],[-225,-358],[-235,-374]],"c":true}],"h":1},{"t":157,"s":[{"i":[[-238.32,-379.7],[-243.08,-372.03],[-246.08,-359.11],[-247.51,-354.19],[-248.93,-352.26],[-251.2,-343.03],[-253.66,-328.7],[-254.19,-304.97],[-251.07,-274.1],[-248.83,-254.6],[-246.18,-241.32],[-244.59,-234.58],[-244.33,-231],[-243.16,-228.34],[-241.36,-225.87],[-236.89,-213.98],[-232.15,-208.57],[-222.55,-195.84],[-216.76,-187.7],[-214.24,-185.41],[-212.89,-182.54],[-208.14,-173.14],[-203.7,-161.4],[-188.3,-126.57],[-173.57,-96.09],[-165.75,-104.23],[-154.41,-127.67],[-146.8,-155.72],[-154.71,-203.23],[-162.27,-231.26],[-168.43,-252.59],[-178.76,-268.48],[-189.29,-282.85],[-204.15,-322.12],[-220.52,-350.96],[-231.9,-369.08]],"o":[[-241.79,-376.22],[-245.22,-363.47],[-247.04,-354.81],[-248.45,-352.92],[-250.12,-347.67],[-252.97,-333.54],[-254.65,-314.92],[-252.4,-284.56],[-249.49,-259.19],[-247.18,-245.67],[-244.68,-235.83],[-244.42,-232.17],[-243.73,-229.16],[-241.98,-226.7],[-239.25,-220.83],[-233.34,-210.27],[-226.85,-201.37],[-217.56,-189.04],[-215.84,-185.65],[-213.15,-183.54],[-209.99,-177.53],[-205.29,-165.28],[-196.39,-142.51],[-178.18,-104.99],[-169.22,-95.39],[-159.06,-118.27],[-148.92,-144.37],[-147.31,-182.59],[-160.47,-225.75],[-166.38,-244.9],[-174.57,-263.62],[-185.64,-278.07],[-200.84,-304.83],[-215.8,-344.2],[-228.42,-363.37],[-236.33,-376.11]],"v":[[-240,-380],[-244.15,-367.75],[-247,-355],[-247.98,-353.56],[-249,-352],[-252.09,-338.28],[-254,-324],[-253.29,-294.76],[-250,-264],[-248,-250.13],[-245,-237],[-244.5,-233.38],[-244,-230],[-242.57,-227.52],[-241,-225],[-235,-212],[-231,-207],[-219,-191],[-216,-186],[-214,-185],[-212,-181],[-207,-170],[-202,-157],[-181,-111],[-173,-96],[-163,-110],[-152,-135],[-147,-166],[-159,-220],[-164,-237],[-172,-259],[-182,-273],[-192,-288],[-212,-337],[-225,-358],[-235,-374]],"c":true}],"h":1},{"t":158,"s":[{"i":[[-236.84,-376.87],[-242.14,-375.22],[-244.23,-367.8],[-248.72,-351.95],[-253.51,-330.89],[-254.12,-304.95],[-250.91,-275],[-246.3,-236.47],[-237.42,-215.48],[-231.39,-208.02],[-226.55,-201.8],[-223.94,-197.21],[-215.53,-187.24],[-208.11,-172.34],[-204.22,-161.1],[-200.03,-153.46],[-197.34,-144.95],[-190.56,-132.22],[-175.19,-96.35],[-165.76,-104.2],[-158.54,-119.92],[-155.2,-126.5],[-154.59,-130.44],[-150.04,-141.25],[-150.93,-190.06],[-165.82,-247.68],[-177.14,-266.41],[-181.24,-272.32],[-183.75,-274.62],[-185.23,-277.86],[-194.81,-293.74],[-204.81,-320.16],[-213.11,-337.86],[-218.5,-348.61],[-223.49,-354.65],[-227.36,-362.46]],"o":[[-241.27,-377.57],[-243.62,-370.34],[-246.72,-358.75],[-252.11,-338.02],[-254.67,-314.7],[-252.24,-285.1],[-248.65,-250.19],[-240.51,-222.36],[-233.64,-211.53],[-228,-203.1],[-224.11,-198.96],[-219.5,-191.49],[-209.91,-177.81],[-204.92,-164.27],[-202.13,-155.79],[-197.82,-148.19],[-193.82,-137.21],[-186.01,-122.95],[-169.26,-95.39],[-160.44,-115.37],[-156.89,-125.37],[-154.38,-128.54],[-152.28,-136.53],[-143.08,-172.95],[-162.64,-231.36],[-173.99,-262.65],[-180.46,-271.04],[-182.15,-274.33],[-184.83,-276.29],[-190.92,-286.25],[-201.41,-310.83],[-210.87,-333.15],[-217.5,-345.67],[-221.4,-353.23],[-226.58,-359.47],[-232.18,-369.91]],"v":[[-240,-380],[-242.88,-372.78],[-245,-365],[-250.42,-344.98],[-254,-324],[-253.18,-295.03],[-250,-265],[-242,-226],[-236,-214],[-230,-206],[-225,-200],[-223,-196],[-213,-183],[-206,-167],[-203,-158],[-199,-151],[-196,-142],[-188,-127],[-173,-96],[-163,-110],[-157,-125],[-155,-127],[-154,-132],[-149,-146],[-158,-215],[-172,-259],[-179,-269],[-182,-274],[-184,-275],[-186,-279],[-198,-302],[-208,-327],[-216,-343],[-220,-351],[-225,-357],[-229,-365]],"c":true}],"h":1},{"t":159,"s":[{"i":[[-234.15,-373.91],[-242.14,-375.23],[-244.24,-367.75],[-246.31,-360.68],[-248.43,-354.19],[-253.12,-329.56],[-253.06,-293.67],[-250.82,-266.67],[-248.35,-246.69],[-243.61,-229.51],[-236.06,-214.49],[-226.48,-201.27],[-216.61,-188.55],[-207.68,-171.18],[-199.75,-150.88],[-193.03,-136.54],[-186.87,-123.81],[-180.22,-109.85],[-173.6,-96.1],[-169.5,-97.43],[-165.42,-106],[-160.75,-115.61],[-155.92,-125.58],[-153.69,-131.61],[-152.42,-135.67],[-149.56,-145.09],[-147.23,-156.96],[-147.25,-176.1],[-151.98,-194.07],[-163.75,-242.2],[-181.76,-272.84],[-194.65,-292.38],[-198,-303.4],[-201.23,-309.9],[-205.17,-321.51],[-217.77,-346.21]],"o":[[-241.26,-377.61],[-243.63,-370.3],[-245.59,-362.83],[-247.73,-356.36],[-251.83,-340.98],[-253.73,-305.91],[-251.4,-273.83],[-249.3,-253.1],[-245.58,-235.01],[-238.85,-219.25],[-229.93,-205.49],[-219.82,-192.8],[-210.56,-177.99],[-202.28,-157.62],[-194.84,-140.38],[-189.04,-128.25],[-182.66,-115.3],[-175.69,-100.25],[-171.03,-95.68],[-166.69,-102.59],[-162.54,-112.08],[-157.44,-122.36],[-154.23,-130.03],[-152.79,-134.43],[-150.69,-141.11],[-147.83,-153.02],[-146.51,-169.56],[-149.98,-188.35],[-159.77,-220.76],[-176.14,-265.94],[-190.74,-286.82],[-197.95,-300.26],[-199.8,-308.07],[-203.95,-317.29],[-211.74,-337.61],[-229.28,-364.29]],"v":[[-240,-380],[-242.88,-372.77],[-245,-365],[-247.02,-358.52],[-249,-352],[-253.42,-317.74],[-252,-281],[-250.06,-259.88],[-247,-241],[-241.23,-224.38],[-233,-210],[-223.15,-197.03],[-214,-184],[-204.98,-164.4],[-197,-145],[-191.04,-132.4],[-184,-118],[-177.95,-105.05],[-173,-96],[-168.09,-100.01],[-164,-109],[-159.1,-118.99],[-155,-128],[-153.24,-133.02],[-152,-137],[-148.69,-149.05],[-147,-161],[-148.62,-182.22],[-154,-201],[-172,-258],[-187,-281],[-197,-298],[-199,-306],[-202,-312],[-207,-326],[-224,-356]],"c":true}],"h":1},{"t":160,"s":[{"i":[[-237.23,-378.9],[-243.17,-371.32],[-247.65,-357.18],[-252.75,-334.14],[-253.88,-305.59],[-251.1,-266.57],[-244.62,-229.11],[-234.36,-211.84],[-226.2,-201.85],[-223.05,-197.75],[-221.49,-195.66],[-211.09,-178.38],[-200.52,-150.98],[-191.94,-134],[-186.27,-122.78],[-180.37,-109.94],[-173.74,-96.12],[-169.96,-96.99],[-166.46,-104.05],[-162.46,-111.74],[-158.65,-118.47],[-157.26,-122.51],[-156.49,-126.73],[-155.46,-128.85],[-154.19,-130.51],[-150.47,-140.91],[-147.31,-155.43],[-147.68,-181.58],[-156.04,-207.79],[-164.04,-236],[-172.95,-260.86],[-181.03,-272.99],[-183.18,-276.15],[-188.32,-282.18],[-203.42,-318.71],[-226.98,-360.75]],"o":[[-241.59,-375.73],[-246.2,-362.04],[-251.31,-343.1],[-254.04,-315.39],[-251.79,-280.52],[-247.52,-240.87],[-237.01,-215.42],[-228.95,-205.06],[-223.55,-198.42],[-222.01,-196.37],[-214.83,-186.64],[-203.93,-160.55],[-193.55,-137.11],[-188.3,-126.83],[-182.75,-115.38],[-175.87,-100.31],[-171.23,-95.71],[-167.58,-101.15],[-163.88,-109.25],[-159.84,-116.34],[-157.52,-121.15],[-156.75,-125.3],[-155.87,-128.35],[-154.63,-129.93],[-152.06,-135.95],[-148.09,-150.65],[-146.16,-172.18],[-152.62,-199.38],[-161.56,-226.82],[-169.73,-253.02],[-178.47,-269.24],[-182.8,-274.84],[-186.54,-279.65],[-199.56,-301.05],[-217.49,-347.08],[-236.11,-375.37]],"v":[[-240,-380],[-244.69,-366.68],[-249,-352],[-253.4,-324.76],[-253,-295],[-249.31,-253.72],[-239,-219],[-231.66,-208.45],[-224,-199],[-222.53,-197.06],[-221,-195],[-207.51,-169.46],[-195,-140],[-190.12,-130.42],[-184,-118],[-178.12,-105.12],[-173,-96],[-168.77,-99.07],[-165,-107],[-161.15,-114.04],[-158,-120],[-157,-123.9],[-156,-128],[-155.04,-129.39],[-154,-131],[-149.28,-145.78],[-147,-160],[-150.15,-190.48],[-159,-218],[-166.88,-244.51],[-177,-267],[-182,-274],[-184,-277],[-190,-285],[-211,-334],[-234,-372]],"c":true}],"h":1},{"t":161,"s":[{"i":[[-236.79,-378.81],[-245.96,-362.51],[-253.39,-332.01],[-253.97,-305.01],[-251.61,-278.59],[-249.26,-251.45],[-243.34,-226.88],[-239.1,-219.97],[-237.28,-218.48],[-235.57,-215.15],[-233.82,-211.17],[-232.04,-208.94],[-230.37,-207.5],[-227.14,-203.08],[-223.35,-197.83],[-215.25,-185.74],[-207.51,-169.18],[-200.61,-153.05],[-192.19,-136.34],[-186.43,-125.11],[-184.83,-119.03],[-181.66,-114.46],[-174.38,-96.24],[-161.74,-112.08],[-149.5,-143.74],[-152.24,-195.7],[-166.98,-249.8],[-178.31,-267.88],[-181.31,-273.02],[-186.98,-280.77],[-205.55,-325.24],[-216.26,-344.85],[-219.39,-348],[-220.27,-351.72],[-223.34,-354.94],[-230.39,-365.93]],"o":[[-242.76,-371.75],[-251.27,-342.64],[-254.42,-313.46],[-252.57,-287.57],[-250.34,-260.76],[-245.76,-234.51],[-239.71,-220.48],[-237.88,-218.97],[-236.16,-216.57],[-234.4,-212.45],[-232.6,-209.44],[-230.92,-207.97],[-228.47,-204.91],[-224.58,-199.54],[-218.24,-190.9],[-209.88,-174.88],[-203.02,-158.12],[-195.2,-142.16],[-188,-128.01],[-184.29,-120.45],[-183.46,-115.66],[-177.95,-106.3],[-168.72,-95.24],[-154.22,-130.02],[-143.06,-179.13],[-163.64,-233.31],[-174.99,-264.7],[-180.97,-271.22],[-184.56,-277.64],[-199.73,-301.16],[-215.66,-343.16],[-217.66,-347.04],[-220.78,-350.28],[-221.54,-353.96],[-227.27,-361.25],[-235.36,-373.69]],"v":[[-240,-380],[-248.62,-352.57],[-254,-321],[-253.27,-296.29],[-251,-270],[-247.51,-242.98],[-240,-221],[-238.49,-219.47],[-237,-218],[-234.98,-213.8],[-233,-210],[-231.48,-208.46],[-230,-207],[-225.86,-201.31],[-222,-196],[-212.57,-180.31],[-205,-163],[-197.91,-147.6],[-189,-130],[-185,-122],[-184,-117],[-181,-113],[-173,-96],[-158,-121],[-148,-152],[-159,-218],[-173,-261],[-180,-270],[-182,-274],[-189,-284],[-215,-342],[-217,-346],[-220,-349],[-221,-353],[-224,-356],[-233,-370]],"c":true}],"h":1},{"t":162,"s":[{"i":[[-237.53,-379.25],[-246.56,-360.82],[-253.89,-328.16],[-253.47,-304.48],[-251.32,-284.67],[-250.38,-263.77],[-248.44,-244.47],[-238.49,-218.89],[-219.78,-194.34],[-208.22,-171.94],[-199.5,-148.95],[-191.9,-133.97],[-186.22,-122.76],[-180.21,-109.78],[-173.5,-96.09],[-167.02,-101.25],[-158.06,-121.39],[-150.66,-140.36],[-146,-166.36],[-149.43,-188.54],[-156.66,-210.43],[-167.49,-248.43],[-178.19,-268.29],[-184.7,-277.67],[-188.16,-283.69],[-191.39,-286.93],[-199.24,-304.71],[-203.88,-318.13],[-207.85,-325.35],[-210.66,-334.33],[-218.82,-348.16],[-222.75,-353.62],[-224.3,-356.89],[-228.79,-364.31],[-231.75,-367.62],[-233.18,-370.7]],"o":[[-243.11,-370.99],[-251.95,-339.41],[-254.06,-310.89],[-252.1,-291.37],[-250.66,-270.79],[-249.27,-250.61],[-244.1,-227.97],[-226.33,-202.08],[-210.97,-178.97],[-202.48,-156.93],[-193.54,-137.09],[-188.24,-126.8],[-182.71,-115.24],[-175.6,-100.21],[-170.48,-95.55],[-160.81,-114.17],[-153.66,-132.19],[-146.83,-157.45],[-147.6,-181.82],[-153.96,-202.85],[-163.66,-233.05],[-173.8,-263.23],[-182.63,-274.92],[-187.96,-282.4],[-189.75,-286.18],[-196.19,-295.35],[-203.12,-314.97],[-205.96,-323.45],[-210.24,-330.87],[-214.71,-342.38],[-221.15,-353.33],[-223.64,-355],[-227.06,-361.27],[-230.15,-367.33],[-232.71,-369.1],[-235.69,-374.68]],"v":[[-240,-380],[-249.25,-350.11],[-254,-317],[-252.78,-297.92],[-251,-278],[-249.82,-257.19],[-247,-239],[-232.41,-210.48],[-215,-186],[-205.35,-164.44],[-195,-140],[-190.07,-130.39],[-184,-118],[-177.91,-104.99],[-173,-96],[-163.91,-107.71],[-157,-124],[-148.75,-148.91],[-147,-176],[-151.69,-195.69],[-159,-218],[-172,-259],[-180,-271],[-187,-281],[-189,-285],[-192,-288],[-202,-312],[-205,-321],[-209,-328],[-212,-337],[-221,-353],[-223,-354],[-225,-358],[-230,-367],[-232,-368],[-234,-372]],"c":true}],"h":1},{"t":163,"s":[{"i":[[-237.65,-378.93],[-246.6,-360.87],[-253.97,-328.07],[-253.7,-305.6],[-252.37,-287.76],[-250.44,-260.18],[-245.33,-233.05],[-241.18,-224.09],[-240.33,-221.74],[-239.48,-220.68],[-238.12,-220.2],[-237,-218.01],[-235.7,-215.06],[-232.26,-210.02],[-228.17,-204.56],[-225.83,-201.4],[-224.21,-199.21],[-220.34,-194.08],[-213.67,-184.41],[-208.89,-171.58],[-193.41,-139.66],[-175.29,-96.4],[-157.89,-121.81],[-148.05,-147.15],[-154.16,-200.14],[-167.77,-251.32],[-177.9,-268.55],[-180.75,-271.62],[-182.25,-274.92],[-189.46,-284.58],[-201.12,-308.18],[-204.45,-319.63],[-207.94,-325.53],[-210.75,-333.46],[-226.64,-359.98],[-234.27,-372.84]],"o":[[-243.11,-371.09],[-252.03,-339.36],[-254.01,-311.47],[-252.87,-293.74],[-251.28,-270.66],[-247.47,-241.38],[-241.51,-224.97],[-240.59,-222.48],[-239.92,-220.83],[-238.58,-220.37],[-237.4,-218.98],[-236.15,-216.05],[-233.67,-211.99],[-229.5,-206.31],[-226.47,-202.29],[-224.69,-199.86],[-221.78,-196.69],[-216.49,-188.1],[-209.52,-175.94],[-199.77,-149.51],[-182.06,-115.82],[-167.75,-95.07],[-152.69,-134.59],[-144.19,-187.04],[-165.11,-236.73],[-175.54,-265.89],[-179.15,-271.33],[-181.72,-273.11],[-186.08,-280.46],[-196.79,-297.35],[-204.49,-317.33],[-205.99,-323.49],[-210.18,-330.75],[-218.04,-348.29],[-233.8,-371.26],[-236.89,-377.03]],"v":[[-240,-380],[-249.31,-350.12],[-254,-317],[-253.28,-299.67],[-252,-282],[-248.95,-250.78],[-242,-226],[-240.88,-223.28],[-240,-221],[-239.03,-220.52],[-238,-220],[-236.57,-217.03],[-235,-214],[-230.88,-208.16],[-227,-203],[-225.26,-200.63],[-224,-199],[-219,-192],[-212,-181],[-207,-167],[-185,-122],[-173,-96],[-157,-124],[-147,-158],[-161,-223],[-174,-263],[-179,-271],[-181,-272],[-183,-276],[-192,-289],[-204,-316],[-205,-321],[-209,-328],[-212,-336],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":164,"s":[{"i":[[-237.65,-378.93],[-247.71,-358.76],[-253.94,-318.66],[-252.35,-288.72],[-251.55,-267.58],[-248.4,-244.03],[-240.27,-223.1],[-231.97,-210.37],[-224.39,-199.46],[-221,-194.92],[-219.39,-193.61],[-218.34,-191.78],[-217.38,-189.65],[-212.41,-180.38],[-206.79,-167.26],[-197.56,-146.83],[-184.88,-121.68],[-177.88,-105.53],[-173.68,-96.12],[-166.62,-101.99],[-157.44,-122.91],[-152.59,-135.18],[-147.52,-152.61],[-146.57,-174.15],[-150.92,-192.47],[-157.4,-212.87],[-163.86,-233.26],[-169.16,-250.08],[-174.04,-262.8],[-178.47,-269.8],[-181.81,-274.3],[-189.34,-284.46],[-203.17,-313.44],[-210.14,-332.13],[-226.71,-360.09],[-234.33,-372.94]],"o":[[-243.99,-370.18],[-252.69,-333],[-252.57,-295.93],[-251.84,-274.54],[-250.27,-252.23],[-243.4,-229.46],[-234.52,-214.14],[-226.91,-203.03],[-221.56,-195.36],[-219.92,-194.04],[-218.65,-192.46],[-217.71,-190.38],[-214.51,-184.75],[-208.55,-171.63],[-201.62,-154.99],[-189.19,-130.18],[-179.53,-109.72],[-174.95,-98.73],[-170.4,-95.54],[-160.14,-115.68],[-154.83,-129.37],[-148.94,-146.8],[-146.11,-167.17],[-148.98,-186.81],[-155.22,-205.99],[-161.72,-226.51],[-167.65,-245.18],[-172.36,-258.88],[-177.32,-268.15],[-180.72,-272.87],[-186.03,-280.32],[-198.16,-299.52],[-208.64,-328.52],[-217.83,-348.13],[-233.59,-370.94],[-236.89,-377.03]],"v":[[-240,-380],[-250.2,-345.88],[-253,-303],[-252.09,-281.63],[-251,-261],[-245.9,-236.74],[-237,-218],[-229.44,-206.7],[-222,-196],[-220.46,-194.48],[-219,-193],[-218.03,-191.08],[-217,-189],[-210.48,-176],[-205,-163],[-193.38,-138.5],[-181,-113],[-176.41,-102.13],[-173,-96],[-163.38,-108.84],[-157,-124],[-150.77,-140.99],[-147,-158],[-147.78,-180.48],[-153,-199],[-159.56,-219.69],[-166,-240],[-170.76,-254.48],[-176,-266],[-179.59,-271.34],[-183,-276],[-192,-289],[-207,-324],[-212,-336],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":165,"s":[{"i":[[-237.7,-378.98],[-243.17,-372.09],[-246.81,-359.41],[-250.18,-346.85],[-252.7,-334.24],[-253.39,-315.52],[-252.23,-294.66],[-251.67,-273.65],[-250.33,-253.21],[-245.91,-235.83],[-238.86,-221.54],[-229.97,-208.22],[-220.65,-195.52],[-210.54,-176.09],[-200.7,-151.88],[-191.94,-135.52],[-185.75,-123.84],[-180.43,-111.04],[-174.15,-96.2],[-169.65,-97.3],[-165.48,-105.75],[-154.3,-129.85],[-145.45,-165.14],[-149.74,-192.18],[-157.59,-213.95],[-169.01,-254.61],[-180.71,-272.61],[-189.42,-284.67],[-192.27,-291.71],[-195.37,-294.81],[-197.91,-301.5],[-204.84,-318.05],[-219.21,-350.04],[-227.34,-362.98],[-231.67,-367.93],[-234.07,-372.51]],"o":[[-241.76,-376.14],[-245.69,-363.73],[-249.08,-350.98],[-251.98,-338.48],[-253.52,-322.69],[-252.74,-301.5],[-251.75,-280.79],[-250.95,-259.86],[-247.73,-241.06],[-241.47,-226.07],[-233.14,-212.46],[-223.72,-199.75],[-213.69,-183.66],[-204.05,-160.2],[-194.06,-139.34],[-187.78,-127.76],[-182.61,-116.94],[-176.2,-100.67],[-171.16,-95.67],[-166.81,-102.34],[-159.32,-119.28],[-147.36,-152.78],[-147.69,-185.21],[-154.69,-206.55],[-165.05,-235.77],[-178.54,-270.14],[-185.91,-280.3],[-192.77,-290.3],[-193.66,-294.17],[-197.4,-298.64],[-201.93,-310.71],[-211.73,-337.02],[-226.76,-361.11],[-229.45,-366.23],[-233.76,-371.19],[-236.79,-376.86]],"v":[[-240,-380],[-244.43,-367.91],[-248,-355],[-251.08,-342.67],[-253,-330],[-253.07,-308.51],[-252,-288],[-251.31,-266.76],[-249,-247],[-243.69,-230.95],[-236,-217],[-226.84,-203.98],[-218,-191],[-207.3,-168.15],[-196,-143],[-189.86,-131.64],[-184,-120],[-178.32,-105.85],[-173,-96],[-168.23,-99.82],[-164,-109],[-150.83,-141.31],[-147,-179],[-152.21,-199.37],[-160,-221],[-176,-266],[-183,-276],[-192,-289],[-193,-293],[-196,-296],[-199,-304],[-207,-324],[-226,-360],[-228,-364],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":166,"s":[{"i":[[-237.77,-379.1],[-245.42,-364.78],[-252.41,-338.24],[-253.34,-317.14],[-252.26,-298.08],[-251.59,-279.01],[-250.73,-260.77],[-245,-233.19],[-230.59,-208.78],[-219.87,-193.44],[-213.07,-180.8],[-207.24,-167.08],[-201.25,-153.41],[-195.2,-141.72],[-188.51,-128.51],[-182.31,-114.55],[-173.73,-96.13],[-169.65,-97.29],[-165.49,-105.73],[-156.47,-125.44],[-147.96,-150.37],[-146.82,-181.82],[-156.08,-208.77],[-164.8,-235.9],[-172.56,-260.39],[-177.17,-268.01],[-178.75,-270.74],[-179.3,-271.91],[-182.45,-275.16],[-187.3,-283.5],[-191.66,-290.39],[-195.44,-294.96],[-197.91,-301.63],[-203.98,-314.77],[-214.5,-340.84],[-230.5,-366.81]],"o":[[-242.47,-373.15],[-250.39,-347.32],[-253.46,-323.6],[-252.74,-304.38],[-251.72,-285.37],[-251.09,-266.71],[-248.45,-242.8],[-236.07,-216.18],[-222.33,-197.29],[-215.24,-185.2],[-209.11,-171.63],[-203.31,-157.97],[-197.2,-145.47],[-190.86,-133.24],[-185.2,-121.23],[-176.58,-102],[-171.16,-95.67],[-166.82,-102.32],[-160.24,-117.25],[-150.33,-142],[-145.53,-172.18],[-152.1,-200.11],[-162.51,-227.21],[-169.82,-252.49],[-176.55,-266.9],[-178.27,-269.93],[-179.78,-271.82],[-180.61,-273.95],[-185.16,-279.3],[-190.81,-288.66],[-193.47,-293.92],[-197.19,-298.21],[-201.45,-309.36],[-210.25,-331.04],[-225.04,-358.41],[-236.66,-376.66]],"v":[[-240,-380],[-247.91,-356.05],[-253,-330],[-253.04,-310.76],[-252,-292],[-251.34,-272.86],[-250,-255],[-240.53,-224.69],[-225,-201],[-217.55,-189.32],[-211,-176],[-205.27,-162.53],[-199,-149],[-193.03,-137.48],[-186,-123],[-179.44,-108.27],[-173,-96],[-168.23,-99.81],[-164,-109],[-153.4,-133.72],[-147,-159],[-149.46,-190.97],[-160,-220],[-167.31,-244.2],[-176,-266],[-177.72,-268.97],[-179,-271],[-180,-273],[-183,-276],[-189,-286],[-193,-293],[-196,-296],[-199,-304],[-206,-320],[-220,-350],[-235,-374]],"c":true}],"h":1},{"t":167,"s":[{"i":[[-237.77,-379.1],[-245.4,-364.93],[-252.34,-338.23],[-253.31,-316.4],[-252.23,-297.2],[-251.68,-277.94],[-250.86,-259.57],[-248.1,-243.11],[-243.41,-228.33],[-238.59,-220.26],[-234.32,-214.87],[-224.74,-201.29],[-214.05,-183.24],[-202.89,-157.81],[-190.76,-133.21],[-181.86,-113.55],[-173.79,-96.14],[-169.2,-97.7],[-164.52,-107.62],[-158.32,-121.45],[-152.36,-136.87],[-149.93,-145.42],[-148.3,-150.3],[-147.64,-153.82],[-147.1,-156.31],[-151.21,-195.89],[-163.61,-232.61],[-172.59,-260.44],[-181.33,-274.3],[-184.75,-278.64],[-190.29,-289.21],[-195.29,-297.26],[-196.3,-298.8],[-203.3,-313.21],[-214.62,-340.68],[-230.52,-366.83]],"o":[[-242.48,-373.06],[-250.33,-347.51],[-253.44,-322.8],[-252.7,-303.6],[-251.75,-284.4],[-251.24,-265.52],[-249.14,-248.45],[-245.23,-233.06],[-239.93,-222.07],[-235.78,-216.66],[-228.72,-206.91],[-217.41,-189.45],[-206.77,-165.95],[-194.89,-141.44],[-184.71,-120.23],[-176.4,-101.51],[-170.94,-95.64],[-165.99,-103.69],[-160.63,-116.27],[-154.18,-131.76],[-150.53,-143.77],[-148.81,-148.68],[-147.84,-152.92],[-147.27,-155.52],[-143.59,-179.91],[-161.78,-224.54],[-168.58,-247.97],[-178.66,-270.34],[-183.14,-278.32],[-187.24,-282.23],[-193.7,-292.78],[-196.83,-298.86],[-200.64,-306.28],[-210.31,-330.86],[-224.88,-358.46],[-236.66,-376.66]],"v":[[-240,-380],[-247.86,-356.22],[-253,-329],[-253.01,-310],[-252,-291],[-251.46,-271.73],[-250,-254],[-246.66,-238.09],[-241,-224],[-237.19,-218.46],[-233,-213],[-221.08,-195.37],[-211,-176],[-198.89,-149.62],[-186,-123],[-179.13,-107.53],[-173,-96],[-167.6,-100.69],[-163,-111],[-156.25,-126.6],[-151,-142],[-149.37,-147.05],[-148,-152],[-147.46,-154.67],[-147,-157],[-159,-217],[-166,-240],[-176,-266],[-183,-278],[-185,-279],[-192,-291],[-196,-298],[-197,-300],[-206,-320],[-220,-350],[-235,-374]],"c":true}],"h":1},{"t":168,"s":[{"i":[[-237.41,-378.93],[-245.36,-365.28],[-252.32,-338.2],[-253.22,-317.63],[-252.25,-301.53],[-251.93,-284.57],[-252.38,-268.27],[-248.62,-242.55],[-237.35,-219.2],[-229.91,-208.59],[-225.19,-202.28],[-223.53,-200.09],[-223.33,-198.5],[-222.03,-196.92],[-220.38,-195.59],[-218.69,-192.24],[-210.36,-173.76],[-195.16,-143.53],[-185.67,-121.84],[-181.63,-115.47],[-179.73,-108.58],[-178.52,-105.13],[-168.22,-99.32],[-158.65,-121.55],[-155.19,-128.49],[-152.95,-135.01],[-149.77,-144.93],[-153.18,-200.16],[-171.26,-256.89],[-181.1,-275.06],[-183.18,-278.15],[-187.66,-283.92],[-194.12,-293.48],[-211.98,-340.93],[-228.14,-363.11],[-233.16,-372.12]],"o":[[-242.45,-373.17],[-250.29,-347.79],[-253.34,-322.87],[-252.67,-306.96],[-251.74,-290.19],[-252.25,-273.62],[-251.19,-251.95],[-241.7,-226.17],[-231.56,-210.95],[-226.73,-204.26],[-223.62,-200.59],[-223.39,-199.05],[-222.59,-197.37],[-220.92,-196.03],[-219.09,-193.58],[-212.9,-181.88],[-202.36,-155.86],[-187.33,-127.61],[-183.42,-116.67],[-179.9,-111.44],[-178.73,-106.42],[-170.97,-88.81],[-160.36,-116.9],[-156.89,-127.37],[-154.14,-131.36],[-150.93,-141.35],[-140.95,-180.09],[-168.51,-243.64],[-179.26,-271.26],[-182.8,-276.84],[-186.22,-281.31],[-191.7,-290.2],[-206.33,-316.36],[-226.34,-360.13],[-231.37,-368.13],[-236.3,-375.4]],"v":[[-240,-380],[-247.83,-356.53],[-253,-328],[-252.95,-312.3],[-252,-296],[-252.09,-279.1],[-252,-263],[-245.16,-234.36],[-233,-213],[-228.32,-206.43],[-224,-201],[-223.46,-199.57],[-223,-198],[-221.48,-196.47],[-220,-195],[-218,-191],[-206,-164],[-189,-131],[-184,-118],[-181,-114],[-179,-107],[-178,-104],[-163,-111],[-157,-127],[-155,-129],[-152,-138],[-149,-148],[-163,-228],[-178,-269],[-182,-276],[-184,-279],[-189,-286],[-196,-297],[-224,-357],[-230,-366],[-234,-373]],"c":true}],"h":1},{"t":169,"s":[{"i":[[-237.41,-378.93],[-245.54,-364.9],[-252.4,-336.82],[-253.13,-316.07],[-252.23,-300.37],[-251.97,-283.81],[-252.39,-267.11],[-250.72,-252.48],[-247.15,-239.16],[-243.48,-229.9],[-239.56,-223.43],[-234.53,-215.59],[-229.6,-208.23],[-225.98,-204.33],[-223.95,-199.49],[-220.69,-196.22],[-218.69,-192.26],[-210.29,-173.55],[-190.77,-135.53],[-184.73,-119.81],[-181.55,-115.31],[-179.73,-108.59],[-178.52,-105.13],[-168.08,-99.23],[-158.59,-121.74],[-155.19,-128.49],[-152.95,-135.02],[-149.77,-144.93],[-153.04,-200.24],[-168.62,-247.13],[-179.28,-272.55],[-187.94,-284.31],[-192.67,-291.95],[-211.43,-340.2],[-225.33,-358.94],[-231.75,-370.66]],"o":[[-242.59,-372.99],[-250.45,-346.81],[-253.27,-321.13],[-252.61,-305.69],[-251.77,-289.5],[-252.28,-272.62],[-251.64,-257.4],[-248.47,-243.36],[-244.7,-232.44],[-240.91,-225.4],[-236.23,-218.23],[-231.21,-210.59],[-227.07,-204.7],[-224.09,-201.77],[-222.21,-196.75],[-219.13,-193.46],[-213.09,-181.98],[-201.61,-154.21],[-184.3,-121.47],[-183.41,-116.54],[-179.91,-111.42],[-178.73,-106.42],[-171.02,-88.92],[-160.44,-116.92],[-156.89,-127.37],[-154.13,-131.33],[-150.93,-141.35],[-140.92,-180.21],[-166.59,-238.02],[-175.19,-264.39],[-186.3,-282.92],[-190.91,-289.06],[-206.23,-312.87],[-224.76,-358.02],[-228.39,-363.75],[-236.3,-375.4]],"v":[[-240,-380],[-248,-355.85],[-253,-326],[-252.87,-310.88],[-252,-295],[-252.12,-278.21],[-252,-262],[-249.6,-247.92],[-246,-236],[-242.19,-227.65],[-238,-221],[-232.87,-213.09],[-228,-206],[-225,-203],[-223,-198],[-220,-195],[-218,-191],[-206,-164],[-185,-123],[-184,-118],[-181,-114],[-179,-107],[-178,-104],[-163,-111],[-157,-127],[-155,-129],[-152,-138],[-149,-148],[-163,-228],[-172,-256],[-185,-281],[-189,-286],[-194,-294],[-224,-357],[-226,-360],[-234,-373]],"c":true}],"h":1},{"t":170,"s":[{"i":[[-234.46,-373.85],[-245.93,-363.96],[-252.54,-335],[-253.05,-313.8],[-252.17,-297.53],[-252.08,-280.69],[-252.51,-264.25],[-249.12,-243.7],[-239.25,-222.26],[-233.19,-213.63],[-230.57,-210.75],[-229.58,-209.06],[-229.33,-207.49],[-228.43,-206.64],[-227.18,-206.24],[-226.5,-203.73],[-221.56,-196.82],[-209.23,-168.94],[-196.93,-144.62],[-191.28,-136.38],[-190.28,-133.57],[-185.63,-122.93],[-178.01,-104.98],[-168.07,-98.18],[-160.59,-117.96],[-157.39,-124.01],[-145.78,-157.1],[-149.99,-194.42],[-158.56,-215.65],[-167.4,-240.16],[-172.06,-257.52],[-180.01,-273.34],[-187.17,-284.06],[-190.59,-288.33],[-202.2,-309.51],[-216.16,-344.82]],"o":[[-242.91,-372.46],[-250.74,-345.23],[-253.21,-319.04],[-252.53,-303.04],[-251.82,-286.32],[-252.42,-269.66],[-251.25,-251.32],[-243.12,-229.17],[-234.16,-214.76],[-231.4,-211.63],[-229.66,-209.56],[-229.42,-208.02],[-228.84,-206.77],[-227.6,-206.38],[-226.39,-205.19],[-223.86,-199.83],[-213.36,-182.02],[-199.88,-151.02],[-192.82,-136.65],[-190.51,-135.35],[-187.11,-127.05],[-180.79,-112.01],[-171.26,-91.62],[-161.81,-111.74],[-158.72,-122.71],[-152.02,-137.69],[-146.17,-183.45],[-155.68,-210.64],[-164.54,-231.21],[-171.55,-252.69],[-175.97,-266.53],[-184.71,-279.63],[-189.37,-287.6],[-196.95,-298.7],[-211.42,-332.55],[-228.11,-364.35]],"v":[[-240,-380],[-248.33,-354.6],[-253,-324],[-252.79,-308.42],[-252,-292],[-252.25,-275.17],[-252,-259],[-246.12,-236.43],[-235,-216],[-232.3,-212.63],[-230,-210],[-229.5,-208.54],[-229,-207],[-228.02,-206.51],[-227,-206],[-226,-203],[-220,-194],[-203,-157],[-193,-137],[-191,-136],[-190,-133],[-183,-117],[-176,-101],[-164,-107],[-159,-122],[-157,-125],[-146,-172],[-153,-203],[-161,-222],[-170,-248],[-174,-262],[-182,-276],[-189,-287],[-191,-289],[-206,-319],[-223,-356]],"c":true}],"h":1},{"t":171,"s":[{"i":[[-238.95,-380.35],[-246,-363.73],[-252.52,-334.3],[-253.02,-312.9],[-252.11,-296.76],[-252.16,-279.93],[-252.53,-263.18],[-249.57,-245.67],[-242.42,-229.22],[-239.32,-223.41],[-238.45,-220.75],[-236.82,-218.67],[-234.54,-216.8],[-229.97,-210.14],[-223.84,-201.05],[-215.09,-184.54],[-206.48,-163.53],[-201.42,-153.86],[-198.91,-148.67],[-196.1,-144.05],[-192.87,-139.68],[-186.87,-126.64],[-178.48,-105.9],[-174.73,-98.35],[-173.42,-96.07],[-167.53,-99.77],[-161.62,-114.53],[-154.01,-133.22],[-145.75,-164.18],[-149.77,-195.9],[-162.88,-227.19],[-170.47,-250.13],[-180.3,-273.17],[-196.06,-297.01],[-207.24,-323.15],[-228.31,-365.96]],"o":[[-242.99,-372.33],[-250.77,-344.72],[-253.21,-318.02],[-252.47,-302.28],[-251.89,-285.59],[-252.48,-268.72],[-251.36,-251.81],[-245.1,-234.37],[-239.59,-224.28],[-238.75,-221.64],[-237.55,-219.27],[-235.32,-217.43],[-232.05,-213.12],[-225.86,-204.11],[-218.1,-191.53],[-209.28,-170.54],[-202.22,-155.53],[-199.77,-150.43],[-197.16,-145.46],[-193.95,-141.16],[-189.63,-133.44],[-181.3,-112.87],[-175.27,-99.56],[-173.81,-96.61],[-170.22,-95.51],[-163.23,-109.28],[-157.89,-123.39],[-147.94,-153.62],[-146.32,-184.55],[-158.04,-217.22],[-168.7,-243.63],[-176.26,-265.87],[-190.89,-289.58],[-204.22,-313.55],[-218.44,-349.51],[-239.32,-379.39]],"v":[[-240,-380],[-248.38,-354.22],[-253,-323],[-252.74,-307.59],[-252,-291],[-252.32,-274.33],[-252,-258],[-247.33,-240.02],[-240,-225],[-239.03,-222.52],[-238,-220],[-236.07,-218.05],[-234,-216],[-227.91,-207.13],[-222,-198],[-212.19,-177.54],[-203,-157],[-200.59,-152.15],[-198,-147],[-195.02,-142.61],[-192,-138],[-184.08,-119.76],[-176,-101],[-174.27,-97.48],[-173,-96],[-165.38,-104.53],[-161,-116],[-150.98,-143.42],[-146,-173],[-153.9,-206.56],[-166,-236],[-173,-257],[-186,-282],[-200,-305],[-211,-332],[-239,-379]],"c":true}],"h":1},{"t":172,"s":[{"i":[[-238.95,-380.35],[-244.79,-367.7],[-250.05,-347.4],[-252.69,-320.15],[-252.93,-288.84],[-252.47,-262.56],[-247.84,-239.26],[-241.95,-227.24],[-236.61,-219.43],[-232.16,-212.93],[-228.05,-207.5],[-224.37,-201.78],[-221.21,-195.28],[-218.33,-190.31],[-215.65,-186.45],[-213.91,-181.81],[-212.68,-176.66],[-211.36,-173.65],[-210.28,-171.67],[-207.76,-166.22],[-204.4,-160.59],[-196.73,-146.21],[-186.7,-125.4],[-174.14,-96.18],[-165.79,-104.53],[-157.9,-124.53],[-150.73,-142.1],[-147.82,-190.12],[-157.25,-213.91],[-173.42,-265.52],[-188.11,-286.02],[-190.76,-288.61],[-191.55,-291.22],[-195.48,-297.26],[-205.91,-320.3],[-228.27,-365.9]],"o":[[-242.52,-374],[-248.56,-354.4],[-252.22,-330.49],[-253.04,-299.33],[-253.05,-270.93],[-249.87,-246.73],[-243.65,-230.02],[-238.43,-221.94],[-233.63,-214.94],[-229.37,-209.21],[-225.51,-203.89],[-222.22,-197.48],[-219.25,-191.59],[-216.53,-187.74],[-214.32,-183.48],[-213.09,-178.4],[-211.72,-174.32],[-210.64,-172.33],[-208.81,-168.17],[-205.56,-162.43],[-199.7,-151.9],[-190.29,-133.91],[-181.19,-112.33],[-168.88,-95.33],[-159.09,-120.06],[-154.11,-135.44],[-143.49,-170.97],[-155.57,-210.04],[-167.78,-238.47],[-186.83,-283.44],[-189.15,-288.33],[-191.58,-289.93],[-193.74,-295.01],[-202.26,-309.5],[-217.66,-348.17],[-239.32,-379.39]],"v":[[-240,-380],[-246.68,-361.05],[-251,-340],[-252.86,-309.74],[-253,-279],[-251.17,-254.64],[-245,-233],[-240.19,-224.59],[-235,-217],[-230.77,-211.07],[-227,-206],[-223.29,-199.63],[-220,-193],[-217.43,-189.03],[-215,-185],[-213.5,-180.1],[-212,-175],[-211,-172.99],[-210,-171],[-206.66,-164.32],[-203,-158],[-194,-141],[-184,-119],[-173,-96],[-163,-111],[-156,-130],[-149,-149],[-154,-206],[-159,-218],[-185,-281],[-189,-288],[-191,-289],[-192,-292],[-197,-300],[-210,-330],[-239,-379]],"c":true}],"h":1},{"t":173,"s":[{"i":[[-238.95,-380.35],[-247.17,-360.51],[-253.07,-326.04],[-252.73,-308.12],[-251.98,-300.58],[-252.43,-288.05],[-253.31,-272.94],[-250.62,-250.51],[-242.36,-229.26],[-235.49,-218.37],[-230.69,-210.54],[-228.06,-206.97],[-226.34,-205.52],[-225.25,-203.4],[-224.45,-200.74],[-222.28,-197.35],[-219.72,-193.42],[-214.8,-182.9],[-209.31,-169.56],[-200.61,-153.28],[-187.89,-129.82],[-184.63,-119.54],[-181.54,-115.31],[-179.27,-106.71],[-172.93,-95.99],[-162.23,-113.08],[-145.86,-155.45],[-150.94,-198.75],[-162.88,-228.37],[-175.97,-268.6],[-186.41,-284.48],[-191.18,-289.73],[-193.98,-295.29],[-203.75,-313.12],[-210.09,-329.56],[-228.86,-366.63]],"o":[[-243.89,-370.74],[-251.76,-338.16],[-252.99,-310.58],[-252.23,-303.12],[-252.03,-293.08],[-253.07,-277.98],[-252.43,-258.88],[-245.58,-235.7],[-237.14,-221.1],[-232.26,-213.09],[-228.64,-207.46],[-226.91,-206],[-225.52,-204.27],[-224.72,-201.63],[-223.17,-198.64],[-220.56,-194.74],[-216.65,-187.37],[-211.13,-174],[-204.66,-160.38],[-192.22,-138.01],[-184.35,-121.46],[-183.41,-116.55],[-179.78,-111.07],[-176.06,-99.84],[-167.38,-95.09],[-154.72,-130.9],[-146.12,-188.47],[-159.43,-219.3],[-170.82,-250.33],[-185.26,-281.02],[-188.97,-288.53],[-193.27,-292.97],[-199.8,-305.1],[-208.74,-325.23],[-219.4,-351.21],[-239.32,-379.39]],"v":[[-240,-380],[-249.47,-349.34],[-253,-313],[-252.48,-305.62],[-252,-298],[-252.75,-283.01],[-253,-268],[-248.1,-243.1],[-239,-224],[-233.88,-215.73],[-229,-208],[-227.49,-206.49],[-226,-205],[-224.98,-202.51],[-224,-200],[-221.42,-196.05],[-219,-192],[-212.97,-178.45],[-207,-165],[-196.42,-145.65],[-185,-123],[-184,-118],[-181,-114],[-178,-104],[-173,-96],[-161,-116],[-146,-173],[-156,-211],[-166,-237],[-183,-278],[-188,-287],[-192,-291],[-195,-297],[-207,-321],[-212,-334],[-239,-379]],"c":true}],"h":1},{"t":174,"s":[{"i":[[-238.95,-380.35],[-245.09,-366.56],[-251.4,-342.39],[-252.26,-322.71],[-251.74,-305.01],[-252.71,-287.65],[-253.41,-270.67],[-251.94,-257.15],[-248.9,-245.54],[-239.58,-225.14],[-223.56,-200.91],[-216.12,-185.7],[-210.69,-172.54],[-202.68,-156.86],[-192.98,-140.06],[-184.86,-121.13],[-174.66,-96.27],[-167.5,-99.81],[-161.61,-114.54],[-159.38,-120.2],[-157.58,-126.09],[-155.18,-129.48],[-145.91,-161.67],[-151.23,-201.2],[-159.92,-221.15],[-164.62,-232],[-176.38,-265.53],[-183.75,-278.63],[-183.77,-280.49],[-185.76,-281.61],[-187.67,-285.88],[-190.4,-290.68],[-192.76,-292.61],[-194.8,-296.92],[-206.18,-320.79],[-228.36,-366.03]],"o":[[-242.39,-373.87],[-249.6,-350.82],[-252.4,-328.45],[-251.93,-310.99],[-252.25,-293.31],[-253.29,-276.33],[-252.74,-261.38],[-250.02,-249.23],[-244.8,-233.93],[-228.96,-208.63],[-218.03,-190.18],[-212.45,-176.89],[-205.95,-162.58],[-196.2,-145.6],[-188.28,-130.5],[-178.05,-104.02],[-170.19,-95.54],[-163.21,-109.31],[-160.09,-118.15],[-158.12,-124.16],[-156.89,-128.37],[-150.69,-142.49],[-146.11,-187.15],[-157.33,-215.45],[-163.54,-229.6],[-171.15,-250.96],[-182.15,-278.32],[-184.31,-279.46],[-184.15,-281.33],[-187.3,-284.06],[-189.98,-289.56],[-191.15,-292.34],[-194.18,-294.91],[-201.95,-309.32],[-218.51,-349.48],[-239.32,-379.39]],"v":[[-240,-380],[-247.34,-358.69],[-252,-334],[-252.1,-316.85],[-252,-299],[-253,-281.99],[-253,-265],[-250.98,-253.19],[-248,-243],[-234.27,-216.88],[-220,-194],[-214.29,-181.29],[-209,-169],[-199.44,-151.23],[-190,-134],[-181.45,-112.57],[-173,-96],[-165.35,-104.56],[-161,-116],[-158.75,-122.18],[-157,-128],[-155,-130],[-146,-173],[-155,-210],[-162,-226],[-166,-236],[-182,-278],[-184,-279],[-184,-281],[-186,-282],[-189,-288],[-191,-292],[-193,-293],[-196,-299],[-211,-332],[-239,-379]],"c":true}],"h":1},{"t":175,"s":[{"i":[[-238.95,-380.35],[-244.87,-367.29],[-251.34,-342.8],[-252.47,-321.76],[-252.72,-303.92],[-253.55,-285.38],[-253.51,-267.21],[-249.05,-243.1],[-237.11,-221.23],[-228.25,-207.92],[-221.8,-197.6],[-216.32,-185.92],[-211.08,-173.19],[-204.91,-161.31],[-198.21,-149.96],[-191.98,-137.98],[-186.9,-125.44],[-181.06,-111.71],[-173.77,-96.13],[-167.5,-99.81],[-161.61,-114.54],[-157.05,-125.82],[-152.25,-140.28],[-149.93,-148.42],[-148.29,-153.37],[-147.64,-157.07],[-147.13,-160.13],[-147.16,-190.16],[-162.24,-224.55],[-168.43,-241.28],[-170.28,-247.89],[-175.85,-263.44],[-184.33,-281.23],[-192.97,-293.6],[-203.66,-313.13],[-226.13,-363.3]],"o":[[-242.2,-374.13],[-249.44,-351.62],[-252.36,-327.55],[-252.65,-309.94],[-253.3,-291.77],[-253.66,-273.1],[-252,-251.74],[-241.61,-227.85],[-230.6,-211.36],[-223.85,-201.04],[-218.04,-190.08],[-212.84,-177.48],[-207.06,-165.08],[-200.48,-153.75],[-193.78,-142.01],[-188.54,-129.7],[-183.67,-117.9],[-176.11,-100.82],[-170.19,-95.54],[-163.21,-109.31],[-158.92,-120.92],[-153.71,-135.5],[-150.54,-146.73],[-148.81,-151.74],[-147.82,-156.01],[-147.29,-159.13],[-144.54,-177.38],[-156.01,-213.74],[-167.79,-239.08],[-169.67,-245.68],[-173.44,-257.08],[-181.3,-275.52],[-190.24,-290.52],[-199.81,-305.04],[-216.29,-342.87],[-239.32,-379.39]],"v":[[-240,-380],[-247.16,-359.45],[-252,-333],[-252.56,-315.85],[-253,-298],[-253.6,-279.24],[-253,-262],[-245.33,-235.47],[-233,-215],[-226.05,-204.48],[-220,-194],[-214.58,-181.7],[-209,-169],[-202.7,-157.53],[-196,-146],[-190.26,-133.84],[-185,-121],[-178.59,-106.27],[-173,-96],[-165.35,-104.56],[-161,-116],[-155.38,-130.66],[-151,-145],[-149.37,-150.08],[-148,-155],[-147.46,-158.1],[-147,-161],[-151.59,-201.95],[-167,-237],[-169.05,-243.48],[-171,-250],[-178.58,-269.48],[-188,-287],[-195,-297],[-207,-321],[-239,-379]],"c":true}],"h":1},{"t":176,"s":[{"i":[[-235.76,-376.1],[-245.15,-366.56],[-251.35,-341.7],[-252.47,-320.92],[-252.72,-303.17],[-253.54,-284.8],[-253.55,-266.38],[-249.35,-244.41],[-238.51,-224.38],[-232.41,-215.03],[-229.02,-209.69],[-225.52,-203.99],[-222.13,-198.27],[-217.77,-188.71],[-213.33,-177.04],[-211.36,-172.38],[-210.35,-169.71],[-209.16,-167.99],[-207.39,-166.65],[-206.25,-164.35],[-205.36,-161.63],[-196.63,-146.2],[-185.81,-124.22],[-179.42,-108.32],[-173.99,-96.16],[-162.28,-112.95],[-145.63,-157.15],[-156.49,-213.18],[-170.78,-248.67],[-180.72,-274.4],[-195.73,-298.3],[-207.41,-321.96],[-212.63,-334.96],[-219.88,-350.3],[-223.76,-355.59],[-225.78,-360.08]],"o":[[-242.48,-373.71],[-249.59,-350.56],[-252.36,-326.59],[-252.65,-309.21],[-253.27,-291.11],[-253.69,-272.44],[-252.09,-252.22],[-242.56,-230.49],[-233.65,-216.93],[-230.09,-211.41],[-226.71,-205.86],[-223.23,-200.2],[-219.36,-192.69],[-214.76,-180.88],[-211.68,-173.28],[-210.69,-170.59],[-209.71,-168.42],[-208,-167.11],[-206.56,-165.28],[-205.64,-162.52],[-200.48,-153.09],[-189.3,-131.77],[-181.17,-112.99],[-175.83,-99.91],[-167.39,-95.09],[-154.61,-131.14],[-146.42,-195.36],[-167.89,-240.23],[-176.99,-266.65],[-190.74,-290.72],[-203.73,-312.74],[-211.7,-331.98],[-216.51,-343.58],[-222.16,-355.35],[-225.14,-357.93],[-230.8,-367.97]],"v":[[-240,-380],[-247.37,-358.56],[-252,-332],[-252.56,-315.07],[-253,-297],[-253.62,-278.62],[-253,-261],[-245.95,-237.45],[-235,-219],[-231.25,-213.22],[-228,-208],[-224.38,-202.1],[-221,-196],[-216.26,-184.8],[-212,-174],[-211.02,-171.49],[-210,-169],[-208.58,-167.55],[-207,-166],[-205.94,-163.44],[-205,-161],[-192.96,-138.99],[-182,-115],[-177.62,-104.12],[-173,-96],[-161,-116],[-146,-175],[-164,-231],[-174,-258],[-186,-283],[-200,-306],[-210,-328],[-214,-338],[-222,-355],[-224,-356],[-227,-362]],"c":true}],"h":1},{"t":177,"s":[{"i":[[-234.32,-373.81],[-245.36,-366],[-251.45,-339.96],[-252.43,-319.03],[-252.77,-301.71],[-253.52,-284],[-253.56,-266.39],[-249.89,-246.34],[-239.27,-224.5],[-230.85,-212.05],[-224.68,-203.16],[-218.04,-189.3],[-211.36,-172.52],[-207.6,-165.44],[-205.54,-161.94],[-202.73,-157.13],[-199.27,-151.27],[-192.66,-139.1],[-185.87,-123.97],[-179.91,-109.31],[-173.88,-96.14],[-167.53,-99.73],[-161.57,-114.36],[-154.4,-134.21],[-145.93,-165.8],[-149.19,-197.63],[-162.69,-226.21],[-170.15,-245.6],[-174.37,-258.62],[-179.91,-272.53],[-186.68,-285.26],[-193.21,-295.5],[-199.35,-304.96],[-205.1,-316.07],[-210.36,-328.13],[-220,-349.98]],"o":[[-242.64,-373.52],[-249.77,-349.22],[-252.29,-324.68],[-252.67,-307.55],[-253.24,-290.05],[-253.68,-272.17],[-252.26,-253.84],[-243.39,-231.67],[-233.01,-214.97],[-226.68,-206.15],[-220.37,-195.04],[-213.54,-178.04],[-208.33,-166.72],[-206.21,-163.05],[-203.84,-159],[-200.44,-153.27],[-194.98,-143.61],[-188.11,-129.28],[-181.97,-114.49],[-175.87,-100.14],[-170.24,-95.55],[-163.19,-109.14],[-158.18,-124.05],[-148.27,-155.08],[-146.09,-187.52],[-157.49,-216.97],[-168.71,-241.29],[-172.98,-254.26],[-177.82,-267.9],[-184.34,-281.21],[-191.03,-292.27],[-197.37,-301.85],[-203.17,-312],[-208.7,-324.13],[-215.84,-341.08],[-229.24,-366.35]],"v":[[-240,-380],[-247.57,-357.61],[-252,-330],[-252.55,-313.29],[-253,-296],[-253.6,-278.08],[-253,-261],[-246.64,-239.01],[-235,-218],[-228.77,-209.1],[-223,-200],[-215.79,-183.67],[-209,-168],[-206.91,-164.24],[-205,-161],[-201.59,-155.2],[-198,-149],[-190.39,-134.19],[-183,-117],[-177.89,-104.72],[-173,-96],[-165.36,-104.44],[-161,-116],[-151.34,-144.65],[-146,-175],[-153.34,-207.3],[-167,-237],[-171.56,-249.93],[-176,-263],[-182.12,-276.87],[-189,-289],[-195.29,-298.67],[-201,-308],[-206.9,-320.1],[-212,-332],[-224.62,-358.16]],"c":true}],"h":1},{"t":178,"s":[{"i":[[-234.03,-373.62],[-245.59,-365.3],[-251.47,-338.61],[-252.37,-320.34],[-252.79,-306.54],[-253.48,-292.53],[-254.01,-278.47],[-252.31,-255.39],[-243.67,-233.21],[-238.1,-224],[-234.98,-219.53],[-225.64,-204.4],[-215.29,-182.58],[-212.5,-174.44],[-211.11,-173.24],[-208.35,-167.31],[-204.5,-160.49],[-195.79,-145.36],[-186.33,-125.1],[-179.91,-109.4],[-173.82,-96.13],[-167.54,-99.71],[-161.61,-114.32],[-154.25,-134.44],[-145.86,-166.76],[-148.73,-194.99],[-160.17,-222.44],[-167.75,-239.78],[-172.51,-252.63],[-179.05,-270.1],[-188.68,-288.74],[-194.37,-297.65],[-197.94,-303.15],[-203.42,-313.2],[-209.15,-325.73],[-219.23,-348.47]],"o":[[-242.86,-373.24],[-249.9,-347.98],[-252.23,-324.82],[-252.65,-311.2],[-253.22,-297.3],[-253.87,-283.12],[-253.97,-264.04],[-247.15,-239.98],[-239.1,-225.48],[-236.04,-221.03],[-229.74,-211.36],[-218.41,-190.01],[-212.94,-174.82],[-211.58,-173.65],[-209.6,-169.82],[-205.8,-162.65],[-199.12,-151.56],[-189.39,-132.13],[-182.01,-114.58],[-175.82,-100.17],[-170.24,-95.55],[-163.23,-109.09],[-158.07,-124.06],[-148.15,-155.79],[-146.14,-185.52],[-155.74,-213.45],[-166,-235.46],[-171.01,-248.36],[-176.21,-263.48],[-185.28,-282.73],[-193.15,-295.82],[-196.77,-301.31],[-201.34,-309.09],[-207.32,-321.52],[-214.96,-339.16],[-228.76,-365.69]],"v":[[-240,-380],[-247.74,-356.64],[-252,-329],[-252.51,-315.77],[-253,-302],[-253.67,-287.82],[-254,-274],[-249.73,-247.68],[-240,-227],[-237.07,-222.51],[-234,-218],[-222.02,-197.2],[-213,-175],[-212.04,-174.05],[-211,-173],[-207.07,-164.98],[-203,-158],[-192.59,-138.75],[-183,-117],[-177.87,-104.79],[-173,-96],[-165.39,-104.4],[-161,-116],[-151.2,-145.11],[-146,-176],[-152.23,-204.22],[-164,-231],[-169.38,-244.07],[-174,-257],[-182.16,-276.42],[-192,-294],[-195.57,-299.48],[-199,-305],[-205.37,-317.36],[-211,-330],[-224,-357.08]],"c":true}],"h":1},{"t":179,"s":[{"i":[[-235.61,-375.35],[-245.41,-365.8],[-251.36,-339.93],[-252.42,-320.94],[-252.79,-306.61],[-253.53,-292.06],[-254.09,-277.52],[-251.98,-254.76],[-243.35,-232.78],[-237.93,-223.46],[-234.81,-218.3],[-231.31,-213],[-227.16,-207.08],[-222.3,-197.56],[-217.71,-186.01],[-209.34,-168.84],[-197.24,-149.44],[-188.73,-131.83],[-182.54,-116.77],[-178.3,-106.15],[-173.77,-96.12],[-165.45,-103.49],[-155.61,-130.07],[-150.6,-146.69],[-145.84,-170.75],[-150.51,-202.01],[-166.37,-234.57],[-171.45,-248.53],[-173.22,-255.7],[-178.38,-269.31],[-186.3,-284.52],[-190.91,-292.22],[-193.25,-296],[-203.06,-311.55],[-213.79,-335.96],[-223.61,-356.63]],"o":[[-242.73,-373.33],[-249.73,-349.09],[-252.28,-325.63],[-252.67,-311.43],[-253.23,-297.05],[-253.96,-282.3],[-253.8,-263.37],[-246.75,-239.47],[-239.02,-225.31],[-235.82,-219.95],[-232.73,-214.96],[-228.52,-209.06],[-223.95,-201.3],[-219.18,-189.91],[-212.97,-174.87],[-201.47,-156.12],[-190.96,-136.95],[-184.52,-121.75],[-179.92,-110.34],[-175.23,-99.04],[-169.64,-95.46],[-158.43,-120.8],[-152.92,-138.56],[-147.06,-162.78],[-146.32,-189.98],[-160.54,-224.31],[-170.84,-246.18],[-172.64,-253.29],[-175.97,-263.8],[-183.54,-279.67],[-190.03,-290.72],[-192.52,-294.86],[-198.91,-303.57],[-210.5,-327.75],[-220.06,-349.71],[-231.39,-369.45]],"v":[[-240,-380],[-247.57,-357.45],[-252,-330],[-252.55,-316.18],[-253,-302],[-253.74,-287.18],[-254,-273],[-249.36,-247.11],[-240,-227],[-236.87,-221.71],[-234,-217],[-229.92,-211.03],[-226,-205],[-220.74,-193.74],[-216,-182],[-205.41,-162.48],[-193,-141],[-186.62,-126.79],[-181,-113],[-176.77,-102.6],[-173,-96],[-161.94,-112.15],[-155,-132],[-148.83,-154.74],[-146,-177],[-155.52,-213.16],[-170,-244],[-172.04,-250.91],[-174,-258],[-180.96,-274.49],[-189,-289],[-191.71,-293.54],[-194,-297],[-206.78,-319.65],[-217,-343],[-227.5,-363.04]],"c":true}],"h":1},{"t":180,"s":[{"i":[[-235.88,-377.87],[-245.36,-366.47],[-251.36,-338.98],[-252.45,-308.7],[-254.13,-258.3],[-241.97,-230.73],[-236.64,-223.01],[-234.79,-218.29],[-232.52,-215.9],[-229.76,-212.02],[-228.4,-208.67],[-219.43,-190.81],[-211.3,-172.33],[-206.61,-165.05],[-202.94,-157.29],[-198.85,-151.51],[-196.9,-146.63],[-194.3,-144.4],[-193.31,-141.6],[-192.05,-137.32],[-187.5,-129.62],[-186.27,-123.88],[-184.2,-121.51],[-182.77,-116.9],[-174.91,-95.6],[-162.92,-110.77],[-145.75,-158.42],[-161.26,-223],[-174.47,-256.8],[-179.18,-272.13],[-191.13,-291.98],[-207.52,-322.17],[-218.61,-346.63],[-224.91,-359.86],[-227.18,-363.15],[-229.18,-366.15]],"o":[[-242.67,-373.98],[-249.7,-348.97],[-252.54,-318.75],[-254.16,-278.38],[-246.34,-238.12],[-237.88,-224.22],[-235.03,-220.47],[-233.58,-216.32],[-230.84,-213],[-228.44,-210.25],[-223.31,-200.06],[-213.74,-177.85],[-207.98,-166.07],[-204.26,-161.02],[-200.11,-152.49],[-197.09,-148.39],[-195.79,-144.62],[-193.49,-143.32],[-192.08,-139.23],[-190.01,-132.8],[-185.65,-125.15],[-185.89,-122.63],[-183.16,-118.86],[-180.45,-111.2],[-168.23,-96.28],[-154.41,-131.39],[-146.34,-201.99],[-172.14,-249.71],[-178.29,-267.68],[-184.81,-284.1],[-202.32,-310.42],[-215.15,-340.62],[-223.29,-355.42],[-226.8,-361.84],[-228.8,-364.84],[-233.84,-371]],"v":[[-240,-380],[-247.53,-357.72],[-252,-328],[-253,-299],[-249,-245],[-239,-226],[-236,-222],[-234,-217],[-232,-215],[-229,-211],[-228,-208],[-216,-183],[-209,-168],[-206,-164],[-201,-154],[-198,-150],[-196,-145],[-194,-144],[-193,-141],[-191,-135],[-186,-126],[-186,-123],[-184,-121],[-182,-115],[-171,-96],[-162,-113],[-146,-177],[-169,-242],[-177,-264],[-181,-276],[-196,-300],[-212,-333],[-222,-353],[-226,-361],[-228,-364],[-230,-367]],"c":true}],"h":1},{"t":181,"s":[{"i":[[-238.34,-378.97],[-245.62,-365.56],[-251.44,-337.53],[-252.33,-317.45],[-252.66,-302.92],[-254.14,-277.07],[-251.26,-250.95],[-243.95,-234.65],[-236.87,-223.23],[-233.84,-218.03],[-232.44,-215.75],[-230.84,-213.03],[-229.44,-210.75],[-227.46,-207.14],[-225.65,-203.27],[-221.53,-194.83],[-216.67,-183.74],[-208.21,-167.08],[-196.15,-147.64],[-189.19,-132.46],[-184.81,-120.52],[-180.32,-109.36],[-172.88,-95.81],[-169.34,-97.43],[-166.93,-103.18],[-162.26,-111.82],[-155.89,-131.41],[-144.69,-171.06],[-159.58,-221.44],[-173.98,-254.28],[-179.17,-272.1],[-185.7,-283.12],[-191.85,-294.46],[-198.86,-305.14],[-215.88,-341.38],[-231.56,-369.96]],"o":[[-242.9,-373.55],[-249.89,-347.56],[-252.25,-322.24],[-252.54,-307.79],[-253.76,-286.84],[-252.89,-259.12],[-246.27,-238.78],[-239.26,-226.88],[-234.37,-218.91],[-232.87,-216.46],[-231.37,-213.91],[-229.87,-211.46],[-228.14,-208.51],[-226.22,-204.52],[-223.19,-198.46],[-218.26,-187.47],[-211.88,-173.01],[-200.34,-154.39],[-190.53,-135.95],[-186.32,-124.74],[-182.38,-114.46],[-175.57,-100.03],[-170.13,-96.09],[-167.74,-100.98],[-164.94,-107.07],[-157.65,-123.46],[-148.84,-155.97],[-149.31,-204.96],[-170.22,-245.19],[-178.63,-267.71],[-182.9,-280.04],[-190.13,-290.58],[-196.25,-301.71],[-209.77,-324.82],[-227.63,-362.54],[-236.39,-377.04]],"v":[[-240,-380],[-247.75,-356.56],[-252,-327],[-252.44,-312.62],[-253,-298],[-253.52,-268.09],[-248,-243],[-241.6,-230.76],[-235,-220],[-233.35,-217.25],[-232,-215],[-230.35,-212.25],[-229,-210],[-226.84,-205.83],[-225,-202],[-219.89,-191.15],[-215,-180],[-204.27,-160.73],[-192,-139],[-187.76,-128.6],[-183,-116],[-177.95,-104.7],[-171,-96],[-168.54,-99.21],[-166,-105],[-161,-115],[-154,-138],[-147,-188],[-167,-238],[-177,-263],[-181,-276],[-188,-287],[-194,-298],[-201,-309],[-224,-356],[-235,-375]],"c":true}],"h":1},{"t":182,"s":[{"i":[[-238.34,-378.97],[-243.52,-372.58],[-246.89,-358.43],[-250.71,-334.95],[-252.31,-306.08],[-253.81,-285.82],[-254.44,-270.69],[-250.83,-250.61],[-240.07,-227.65],[-233.99,-217.98],[-230.9,-213.61],[-225.2,-202.9],[-218.71,-188.91],[-216.33,-183.09],[-215.43,-179.94],[-200.1,-156.19],[-186.59,-124.98],[-174.7,-95.66],[-168.58,-100.09],[-165.24,-103.49],[-165.38,-106.17],[-163.53,-109.78],[-156.54,-127.6],[-151.8,-142.93],[-145.26,-187.17],[-165.37,-231.06],[-176.92,-264.23],[-189.3,-289.62],[-193.36,-298.01],[-197.08,-301.48],[-201.06,-310.29],[-218.58,-347.18],[-226.36,-362.01],[-230.05,-365.52],[-231.55,-369.23],[-234.04,-373.6]],"o":[[-242.08,-376.62],[-245.93,-363.49],[-249.81,-344.15],[-251.97,-315.91],[-253.34,-290.98],[-254.36,-275.68],[-253.3,-258.54],[-244.22,-235.17],[-235.04,-219.43],[-231.92,-215.07],[-227.6,-207.69],[-220.76,-193.51],[-216.61,-184.11],[-215.74,-181],[-208.91,-165.69],[-189.16,-132.98],[-182.16,-113.91],[-169.37,-96.15],[-166.77,-103.42],[-164.61,-104.82],[-164.42,-108.28],[-158.33,-121.81],[-153.09,-140.38],[-146.38,-163.62],[-155.34,-216.72],[-175.09,-255.89],[-183.36,-280.48],[-193.54,-296.93],[-195.13,-300.75],[-200.16,-306.58],[-210.65,-328.66],[-226.54,-360.93],[-227.87,-364.35],[-231.58,-367.9],[-233.14,-371.98],[-236.39,-377.04]],"v":[[-240,-380],[-244.73,-368.04],[-248,-353],[-251.34,-325.43],[-253,-296],[-254.09,-280.75],[-254,-266],[-247.53,-242.89],[-236,-221],[-232.95,-216.53],[-230,-212],[-222.98,-198.2],[-217,-185],[-216.03,-182.04],[-215,-179],[-192,-139],[-183,-116],[-171,-96],[-167,-103],[-165,-104],[-165,-107],[-163,-111],[-154,-137],[-151,-146],[-151,-204],[-172,-248],[-180,-272],[-193,-296],[-194,-299],[-198,-303],[-203,-314],[-226,-360],[-227,-363],[-231,-367],[-232,-370],[-235,-375]],"c":true}],"h":1},{"t":183,"s":[{"i":[[-234.89,-375.66],[-242.47,-375.91],[-244.12,-368.19],[-246.31,-361.19],[-248.61,-354.99],[-251.39,-334.41],[-252.34,-304.62],[-253.85,-284.65],[-254.49,-269.79],[-247.44,-240.81],[-228.55,-210.57],[-220.92,-193.5],[-216.78,-181.75],[-211.41,-171.5],[-205.04,-162.26],[-197.27,-149.4],[-189.04,-133.1],[-184.66,-120.2],[-175.08,-95.66],[-169.53,-98.22],[-166.35,-101.36],[-163.95,-108.74],[-159.85,-116.53],[-153.32,-137.89],[-147.52,-160.99],[-155.13,-213.61],[-172.35,-248.21],[-179,-271.57],[-187.55,-287.96],[-193,-295.36],[-195.73,-301.92],[-199.91,-307.14],[-208.21,-322.09],[-212.07,-332.81],[-214.58,-337.01],[-222.16,-353.51]],"o":[[-241.66,-378.06],[-243.7,-370.97],[-245.5,-363.19],[-247.86,-357.09],[-250.72,-344.1],[-252.2,-314.67],[-253.36,-289.76],[-254.42,-274.67],[-252.66,-252.02],[-235.39,-220.08],[-222.27,-197.38],[-218.17,-185.69],[-213.39,-174.62],[-207.24,-165.33],[-200.25,-154.61],[-191.66,-138.65],[-185.63,-124.56],[-181.52,-112.25],[-169.83,-96.1],[-168.34,-99.97],[-164.43,-104.81],[-161.82,-113.8],[-155.62,-128.76],[-149.31,-153.63],[-144.4,-196.82],[-168.68,-241.59],[-177.47,-263.26],[-184.8,-283.79],[-191.03,-293.7],[-195.39,-299.28],[-198.13,-305.86],[-204.85,-315.57],[-212.05,-330.22],[-213.31,-335.72],[-218.54,-346.25],[-230.08,-366.9]],"v":[[-240,-380],[-243.08,-373.44],[-245,-365],[-247.08,-359.14],[-249,-353],[-251.8,-324.54],[-253,-295],[-254.14,-279.66],[-254,-265],[-241.41,-230.45],[-224,-201],[-219.54,-189.59],[-215,-178],[-209.33,-168.41],[-203,-159],[-194.47,-144.03],[-187,-128],[-183,-116],[-171,-96],[-169,-99],[-166,-102],[-163,-111],[-159,-119],[-151,-147],[-147,-167],[-165,-234],[-175,-256],[-183,-280],[-190,-292],[-194,-297],[-197,-304],[-201,-309],[-211,-328],[-213,-335],[-215,-338],[-226,-360]],"c":true}],"h":1},{"t":184,"s":[{"i":[[-238.34,-378.97],[-243.72,-372.09],[-246.97,-357.53],[-248.62,-350.21],[-249.87,-347.89],[-250.74,-338.93],[-250.77,-327.89],[-252.82,-304.13],[-254.97,-274.43],[-249.55,-246.61],[-236.06,-222.19],[-228.38,-208.43],[-223.52,-198.5],[-219.25,-188.16],[-214.86,-177.44],[-209.32,-168.04],[-202.96,-159.21],[-197.18,-149.18],[-191.59,-137.46],[-188.4,-130.25],[-186.55,-124.81],[-185.49,-122.44],[-184.09,-121.26],[-182.86,-117.14],[-176.11,-95.54],[-167.48,-100.29],[-157.94,-122.55],[-147.93,-156.7],[-157.93,-217.32],[-178.67,-272.2],[-187.88,-287.05],[-189.52,-291.16],[-193.22,-297.13],[-201.14,-309.79],[-210.05,-326.53],[-226.88,-363.13]],"o":[[-242.24,-376.33],[-246.09,-362.69],[-248.18,-351.01],[-249.46,-348.65],[-250.61,-342.74],[-250.82,-331.51],[-251.58,-314.17],[-254.51,-284.27],[-253.02,-255.52],[-241.07,-229.95],[-230.12,-211.67],[-225.08,-201.84],[-220.57,-191.69],[-216.39,-181.03],[-211.34,-170.94],[-205.13,-162.18],[-199.13,-152.95],[-193.41,-141.43],[-189.12,-132.1],[-187.11,-126.61],[-185.94,-122.81],[-184.56,-121.66],[-183.3,-119.06],[-180.18,-110.49],[-170.45,-96.05],[-162.07,-110.2],[-151.58,-143.73],[-144.47,-202.32],[-175.12,-254.1],[-185.93,-285.74],[-189.59,-290.02],[-191.69,-294.93],[-197.6,-304.2],[-207.09,-320.06],[-219.8,-347.94],[-236.39,-377.04]],"v":[[-240,-380],[-244.91,-367.39],[-248,-352],[-249.04,-349.43],[-250,-347],[-250.78,-335.22],[-251,-324],[-253.67,-294.2],[-254,-265],[-245.31,-238.28],[-232,-215],[-226.73,-205.13],[-222,-195],[-217.82,-184.59],[-213,-174],[-207.23,-165.11],[-201,-156],[-195.29,-145.3],[-190,-134],[-187.75,-128.43],[-186,-123],[-185.03,-122.05],[-184,-121],[-182,-115],[-171,-96],[-166,-103],[-156,-129],[-147,-169],[-169,-241],[-185,-284],[-189,-289],[-190,-292],[-195,-300],[-203,-313],[-213,-333],[-235,-375]],"c":true}],"h":1},{"t":185,"s":[{"i":[[-235.39,-377.03],[-243.72,-372.1],[-247,-357.47],[-248.8,-347.67],[-249.77,-341.35],[-250.41,-334.1],[-250.83,-326.71],[-252.9,-304.18],[-255.03,-274.47],[-250.84,-250.96],[-241.72,-232.61],[-233.16,-218.06],[-225.2,-203.11],[-220.25,-190.93],[-215.97,-179.77],[-206.97,-164.69],[-194.69,-146.32],[-186.44,-126.3],[-181.32,-111.51],[-173.73,-96.97],[-168.69,-98.19],[-161.89,-111.68],[-157.17,-126.03],[-151.84,-144.32],[-147.41,-164.25],[-149.67,-202.41],[-168.02,-237.54],[-177.38,-262.3],[-183.32,-279.74],[-191.72,-295.07],[-201.16,-309.78],[-206.76,-320.19],[-210.71,-328.23],[-214.84,-336.39],[-217.68,-345.27],[-225,-358.05]],"o":[[-242.22,-376.36],[-246.11,-362.65],[-248.41,-349.74],[-249.47,-343.47],[-250.25,-336.49],[-250.7,-329.2],[-251.63,-314.2],[-254.59,-284.32],[-253.23,-257.91],[-245.08,-238.32],[-236.06,-223],[-227.73,-208.11],[-221.51,-194.54],[-217.48,-183.54],[-210.87,-170.03],[-198.87,-152.83],[-188.03,-131.3],[-183.09,-116.41],[-175.38,-99.87],[-170.39,-96.13],[-163.81,-106.91],[-158.57,-121.24],[-153.88,-137.19],[-148.6,-157.85],[-145.66,-188.64],[-160.85,-226.86],[-175.47,-256.18],[-181.3,-274.08],[-188.64,-290.18],[-197.98,-304.87],[-205.4,-317.58],[-209.41,-325.52],[-213.16,-333.48],[-217.33,-341.97],[-221.46,-353.1],[-231.97,-369.56]],"v":[[-240,-380],[-244.91,-367.37],[-248,-352],[-249.13,-345.57],[-250,-339],[-250.55,-331.65],[-251,-324],[-253.74,-294.25],[-254,-265],[-247.96,-244.64],[-239,-228],[-230.44,-213.09],[-223,-198],[-218.87,-187.24],[-214,-176],[-202.92,-158.76],[-191,-138],[-184.76,-121.35],[-178,-105],[-172.06,-96.55],[-166,-103],[-160.23,-116.46],[-156,-130],[-150.22,-151.08],[-147,-170],[-155.26,-214.64],[-173,-250],[-179.34,-268.19],[-186,-285],[-194.85,-299.97],[-204,-315],[-208.08,-322.85],[-212,-331],[-216,-339],[-219,-348],[-228,-363]],"c":true}],"h":1},{"t":186,"s":[{"i":[[-230.3,-370.33],[-243.24,-372.97],[-246.99,-359.93],[-250.55,-338.42],[-252.3,-312.35],[-253.92,-294.62],[-255.07,-281.09],[-253.09,-259.68],[-243.47,-234.9],[-238.44,-226.37],[-237.2,-225.31],[-235.45,-222.18],[-233.74,-218.33],[-227.31,-205.93],[-219.64,-188.67],[-209.7,-169.7],[-197.26,-150.15],[-188.78,-131.43],[-182.8,-116.46],[-179.5,-107.97],[-176.95,-101.51],[-172.13,-95.66],[-167.72,-99.93],[-161.8,-111.79],[-157.11,-126.05],[-151.83,-144.9],[-147.42,-165.09],[-165.69,-228.96],[-182.08,-278.79],[-191.86,-294.49],[-195.82,-302.12],[-198.4,-306.68],[-200.76,-308.6],[-201.92,-313.06],[-206.02,-318.15],[-212.39,-332.35]],"o":[[-241.75,-376.75],[-245.86,-364.56],[-249.64,-346.99],[-251.88,-321.1],[-253.39,-299.32],[-254.76,-285.5],[-254.85,-268.23],[-247.4,-243.02],[-238.84,-226.71],[-237.61,-225.67],[-236.08,-223.52],[-234.28,-219.59],[-229.99,-211.6],[-222.13,-194.47],[-213.57,-175.62],[-201.55,-156.96],[-190.88,-136.46],[-184.74,-121.44],[-180.28,-110.21],[-177.84,-103.62],[-173.77,-96.45],[-169.1,-97.4],[-163.75,-107.02],[-158.48,-121.31],[-153.87,-137.61],[-148.61,-158.64],[-144.27,-209.13],[-178.92,-267.38],[-188.81,-291.38],[-195.18,-299.94],[-197.98,-305.56],[-199.16,-308.35],[-202.01,-310.7],[-203.92,-316.67],[-210.22,-326.06],[-221.65,-352.4]],"v":[[-240,-380],[-244.55,-368.76],[-248,-355],[-251.21,-329.76],[-253,-304],[-254.34,-290.06],[-255,-277],[-250.24,-251.35],[-239,-227],[-238.03,-226.02],[-237,-225],[-234.86,-220.89],[-233,-217],[-224.72,-200.2],[-217,-183],[-205.62,-163.33],[-193,-141],[-186.76,-126.44],[-181,-112],[-178.67,-105.79],[-176,-100],[-170.62,-96.53],[-166,-103],[-160.14,-116.55],[-156,-130],[-150.22,-151.77],[-147,-171],[-175,-256],[-187,-288],[-194,-298],[-197,-304],[-199,-308],[-201,-309],[-203,-315],[-207,-320],[-215,-338]],"c":true}],"h":1},{"t":187,"s":[{"i":[[-235.82,-376.53],[-241.67,-376.64],[-243.91,-370.81],[-245.87,-364.32],[-247.53,-357.38],[-250.54,-337.99],[-252.3,-311.56],[-253.96,-293.66],[-255.15,-280.19],[-253.08,-260],[-245.77,-240.1],[-237.75,-225.8],[-230.2,-212.68],[-222.53,-195.31],[-213.91,-176.06],[-206.54,-164.78],[-200.91,-156.22],[-192.84,-140.91],[-184.05,-119.24],[-178.9,-106.14],[-172.86,-95.8],[-169.81,-97.16],[-166.69,-101.76],[-164.39,-106.16],[-162.51,-110.75],[-154.99,-131.56],[-147.58,-163.81],[-149.94,-204.26],[-168.98,-239.74],[-177.32,-261.05],[-181.44,-274.02],[-189.2,-291.32],[-200.35,-309.55],[-209.48,-326.09],[-217.38,-341.78],[-225.77,-359.2]],"o":[[-240.86,-378.4],[-243.2,-372.84],[-245.25,-366.54],[-247.01,-359.73],[-249.64,-346.71],[-251.87,-320.42],[-253.38,-298.31],[-254.84,-284.59],[-254.69,-267.71],[-248.61,-246.2],[-240.4,-230.21],[-232.65,-217.04],[-225.08,-201.78],[-216.94,-182.45],[-208.33,-167.42],[-202.83,-159.18],[-196.06,-148.04],[-186.83,-126.51],[-180.72,-110.74],[-174.98,-98.67],[-170.72,-96.03],[-167.8,-100.03],[-165.14,-104.54],[-163.08,-109.27],[-158.45,-120.65],[-149.55,-153.14],[-145.7,-190.39],[-161.58,-228.94],[-175.86,-256.53],[-180.11,-269.79],[-185.77,-285.05],[-196.49,-303.57],[-206.79,-320.95],[-214.77,-336.51],[-222.86,-352.69],[-232.25,-371.12]],"v":[[-240,-380],[-242.43,-374.74],[-244.58,-368.68],[-246.44,-362.03],[-248,-355],[-251.21,-329.21],[-253,-303],[-254.4,-289.13],[-255,-276],[-250.85,-253.1],[-243,-235],[-235.2,-221.42],[-228,-208],[-219.74,-188.88],[-210,-170],[-204.68,-161.98],[-199,-153],[-189.84,-133.71],[-182,-114],[-176.94,-102.41],[-171,-96],[-168.81,-98.59],[-166,-103],[-163.74,-107.71],[-162,-112],[-152.27,-142.35],[-147,-172],[-155.76,-216.6],[-174,-252],[-178.72,-265.42],[-183,-278],[-192.85,-297.45],[-204,-316],[-212.13,-331.3],[-220,-347],[-229.01,-365.16]],"c":true}],"h":1},{"t":188,"s":[{"i":[[-236.31,-378],[-243.22,-372.99],[-247.05,-359.9],[-249.35,-346.64],[-250.62,-333.37],[-253.35,-305.82],[-254.72,-273.36],[-252.38,-259.71],[-251.51,-253.51],[-249.61,-249.04],[-246.71,-244.49],[-240.94,-232.68],[-233.3,-217.67],[-224.8,-199.31],[-215.64,-178.91],[-205.06,-162.8],[-193.39,-144.28],[-188.64,-130.1],[-186.19,-126.51],[-185.63,-121.78],[-182.08,-115.2],[-176.33,-95.48],[-166.16,-101.84],[-156.07,-127.19],[-145.12,-182.28],[-151.83,-206.47],[-159.4,-223.49],[-172.07,-247.59],[-180,-270.49],[-186.24,-284.49],[-191.15,-295.9],[-194.68,-299.57],[-195.55,-302.29],[-202.36,-312.3],[-211.73,-330.96],[-225.71,-359.42]],"o":[[-241.69,-376.79],[-245.9,-364.54],[-248.78,-350.95],[-250.27,-337.85],[-251.99,-317.39],[-254.72,-283.8],[-252.62,-261.95],[-251.82,-255.48],[-250.5,-250.54],[-247.71,-246.01],[-243.54,-237.84],[-235.82,-222.59],[-227.73,-206.36],[-218.75,-185.59],[-208.87,-167.91],[-197.33,-150.99],[-189.15,-133.94],[-187.89,-127.63],[-185.34,-124.23],[-184.1,-117.49],[-180.23,-110.43],[-170.41,-96.06],[-160.28,-112.79],[-148.31,-156.46],[-150.09,-204.38],[-155.74,-218.58],[-168.46,-240.49],[-177.93,-262.39],[-184.4,-281.51],[-189.81,-291.61],[-193.24,-299.41],[-195.59,-300.78],[-199.3,-308.18],[-208.87,-323.88],[-220,-348.75],[-234.15,-373.11]],"v":[[-240,-380],[-244.56,-368.77],[-248,-355],[-249.81,-342.24],[-251,-329],[-254.04,-294.81],[-253,-264],[-252.1,-257.6],[-251,-252],[-248.66,-247.52],[-246,-243],[-238.38,-227.63],[-231,-213],[-221.77,-192.45],[-212,-173],[-201.2,-156.89],[-190,-136],[-188,-128],[-186,-126],[-185,-120],[-182,-115],[-171,-96],[-165,-104],[-154,-135],[-150,-204],[-152,-207],[-165,-234],[-175,-255],[-183,-278],[-188,-288],[-193,-299],[-195,-300],[-196,-303],[-205,-317],[-215,-338],[-231,-368]],"c":true}],"h":1},{"t":189,"s":[{"i":[[-229.63,-369.74],[-243.38,-372.71],[-247.05,-359],[-249.34,-345.63],[-250.62,-332.48],[-253.15,-309.22],[-255.68,-281.81],[-253.87,-265.21],[-250.87,-255.45],[-249.25,-250.17],[-248.48,-246.12],[-245.88,-240.65],[-242.16,-234.17],[-236.12,-223.3],[-228.82,-210.2],[-222.95,-196.01],[-217.28,-182.14],[-209.5,-169.2],[-201.13,-157.71],[-190.47,-136.35],[-176.26,-95.48],[-168.22,-99.94],[-161.46,-113.21],[-158.53,-120.38],[-144.54,-174.28],[-153.52,-212.05],[-160.96,-227.57],[-172.36,-246.83],[-175.29,-257],[-178.44,-262.41],[-183.87,-280.4],[-190.97,-293.57],[-196.01,-303.72],[-201.94,-312.17],[-207.99,-322.17],[-213.28,-333.31]],"o":[[-241.86,-376.7],[-245.98,-363.86],[-248.78,-349.89],[-250.26,-336.93],[-251.81,-318.56],[-255.08,-290.84],[-254.69,-268.98],[-251.96,-258.44],[-249.51,-251.61],[-248.74,-247.43],[-247.06,-242.82],[-243.43,-236.33],[-238.71,-227.7],[-231.17,-214.55],[-224.81,-200.94],[-219.18,-186.6],[-212.43,-173.35],[-203.85,-161.39],[-194.53,-146.21],[-183.46,-116.97],[-169.29,-96.17],[-163.69,-108.23],[-159.36,-118.66],[-149.99,-146.7],[-150.81,-206.23],[-159.16,-223.31],[-167.68,-239.57],[-175.74,-254.72],[-176.57,-260.59],[-181.8,-272.01],[-188.78,-290.75],[-194.87,-300.17],[-199.53,-309.52],[-205.52,-318.36],[-211.9,-329.63],[-222.12,-352.26]],"v":[[-240,-380],[-244.68,-368.28],[-248,-354],[-249.8,-341.28],[-251,-328],[-254.11,-300.03],[-255,-273],[-252.92,-261.82],[-250,-253],[-248.99,-248.8],[-248,-245],[-244.66,-238.49],[-241,-232],[-233.64,-218.93],[-227,-206],[-221.07,-191.31],[-215,-178],[-206.67,-165.3],[-199,-154],[-186,-124],[-171,-96],[-166,-104],[-160,-117],[-158,-122],[-149,-197],[-156,-217],[-164,-233],[-175,-253],[-176,-259],[-179,-264],[-187,-287],[-193,-297],[-198,-307],[-203,-314],[-210,-326],[-215,-337]],"c":true}],"h":1},{"t":190,"s":[{"i":[[-228.75,-369.39],[-245.53,-366.3],[-250.09,-338.36],[-253.21,-308.72],[-255.71,-281.49],[-253.52,-262.82],[-249.45,-250.49],[-246.67,-243.54],[-244.77,-238.52],[-243.15,-236],[-241.39,-234.65],[-240.26,-232.38],[-239.38,-229.69],[-237.26,-225.91],[-234.74,-221.41],[-231.32,-214.38],[-227.96,-206.08],[-225.88,-201.51],[-224.5,-198.2],[-220.4,-188.8],[-214.79,-177.89],[-212.65,-172.98],[-209.05,-169.49],[-207.53,-165.77],[-202.6,-160.43],[-200.49,-155.78],[-191.1,-138.3],[-182.91,-116.75],[-175.47,-95.57],[-167.96,-100.35],[-157.29,-124.79],[-143.28,-191.61],[-165.97,-236.05],[-177.78,-262.62],[-192.12,-296.89],[-208.03,-323.16]],"o":[[-243.23,-374.12],[-248.96,-348.42],[-251.86,-318.22],[-255.14,-290.35],[-254.55,-267.57],[-250.98,-254.28],[-247.28,-245.28],[-245.41,-240.16],[-243.71,-236.42],[-242,-235.11],[-240.57,-233.29],[-239.67,-230.58],[-238.14,-227.46],[-235.57,-222.89],[-232.59,-217.33],[-229,-208.75],[-226.38,-202.66],[-224.94,-199.28],[-222.25,-192.85],[-216.67,-181.31],[-212.43,-174.08],[-211.03,-170.53],[-207.38,-167.12],[-205.08,-162.19],[-200.4,-157.08],[-195.56,-147.87],[-185.84,-124.22],[-178.55,-105.88],[-168.9,-96.2],[-161.21,-112.92],[-147.26,-165.12],[-159.94,-227.71],[-175.24,-254.39],[-185.76,-285.85],[-203.77,-315.7],[-220.15,-347.09]],"v":[[-240,-380],[-247.24,-357.36],[-251,-328],[-254.17,-299.54],[-255,-273],[-252.25,-258.55],[-248,-247],[-246.04,-241.85],[-244,-237],[-242.58,-235.55],[-241,-234],[-239.96,-231.48],[-239,-229],[-236.41,-224.4],[-234,-220],[-230.16,-211.56],[-227,-204],[-225.41,-200.39],[-224,-197],[-218.53,-185.05],[-213,-175],[-212,-172],[-208,-168],[-207,-165],[-201,-158],[-200,-155],[-188,-130],[-181,-112],[-171,-96],[-166,-104],[-155,-134],[-155,-217],[-171,-246],[-181,-272],[-199,-308],[-212,-331]],"c":true}],"h":1},{"t":191,"s":[{"i":[[-237.44,-380],[-240.93,-378.55],[-241.78,-377.52],[-244.58,-369.64],[-247.2,-357.41],[-249.25,-344.8],[-250.53,-331.65],[-253.34,-308.32],[-255.81,-280.62],[-236.21,-226.93],[-225.43,-201.52],[-217.82,-182.87],[-214.64,-175.99],[-210.99,-172.43],[-209.63,-168.82],[-205.83,-165.08],[-204.67,-161.99],[-200.88,-158.48],[-196.96,-150.66],[-195.59,-147.21],[-187.55,-128.72],[-176.96,-95.43],[-162.12,-110.2],[-156.7,-127.16],[-143.87,-187.43],[-159.86,-226.18],[-173.62,-250.11],[-177.81,-259.48],[-180.83,-271.99],[-193.92,-299.62],[-201.84,-313],[-207.82,-322.86],[-219.28,-348.58],[-226.7,-359.6],[-227.6,-362.32],[-229.94,-366.26]],"o":[[-240.54,-378.79],[-241.55,-377.91],[-243.48,-373.44],[-246.44,-361.63],[-248.73,-348.97],[-250.14,-336.14],[-251.94,-317.76],[-255.28,-289.75],[-253.04,-251.17],[-227.12,-204.32],[-221.02,-190.68],[-214.46,-177.07],[-213.03,-173.5],[-209.34,-170.04],[-207.76,-166.37],[-204.32,-163.12],[-203.06,-159.6],[-198.43,-154.36],[-195.4,-147.96],[-190.51,-136.74],[-181.4,-112.88],[-167.95,-96.29],[-157.87,-120.81],[-148.14,-161.57],[-156.64,-220.4],[-169.39,-242.54],[-176.11,-258.37],[-180.17,-266],[-186.99,-289.03],[-200.61,-310.65],[-205.27,-318.92],[-215.8,-338.01],[-225.21,-359.38],[-227.56,-360.75],[-229.02,-364.72],[-233.49,-372.09]],"v":[[-240,-379],[-241.24,-378.23],[-242,-377],[-245.51,-365.63],[-248,-353],[-249.7,-340.47],[-251,-327],[-254.31,-299.03],[-255,-272],[-229,-209],[-224,-198],[-215,-178],[-214,-175],[-210,-171],[-209,-168],[-205,-164],[-204,-161],[-200,-157],[-196,-149],[-195,-146],[-183,-117],[-171,-96],[-161,-113],[-155,-134],[-153,-211],[-165,-235],[-176,-258],[-178,-260],[-183,-278],[-199,-308],[-203,-315],[-210,-327],[-225,-359],[-227,-360],[-228,-363],[-231,-368]],"c":true}],"h":1},{"t":192,"s":[{"i":[[-235.68,-377.07],[-242.24,-375.98],[-244.27,-368.8],[-247.69,-353.76],[-250.24,-334.05],[-253.46,-308.55],[-255.93,-281.04],[-249.25,-250.56],[-232.61,-217.98],[-224.49,-197.86],[-217.31,-181.99],[-214.64,-177.03],[-214.32,-175.5],[-212.78,-173.62],[-210.46,-171.64],[-204.04,-162.28],[-199.85,-155.36],[-197.37,-152.7],[-189.4,-131.46],[-183.65,-118.7],[-176.47,-95.48],[-163.61,-107.3],[-157.38,-123.86],[-143.98,-179.11],[-154.2,-214.4],[-157.11,-222.29],[-170.12,-242.82],[-180.31,-269.5],[-194.49,-300.49],[-200.36,-312.01],[-204.2,-315.66],[-208.36,-323.89],[-216.88,-341.36],[-223.16,-355.64],[-226.7,-359.6],[-227.6,-362.32]],"o":[[-241.36,-378.08],[-243.7,-371.34],[-246.57,-359.99],[-249.53,-340.8],[-251.99,-317.79],[-255.43,-290.18],[-253.95,-261.82],[-238.58,-228.64],[-226.83,-203.61],[-219.73,-187.05],[-214.73,-177.53],[-214.43,-176.01],[-213.55,-174.3],[-211.23,-172.29],[-207.14,-167],[-200.88,-157.2],[-198.63,-153.4],[-192.27,-143],[-185.47,-120.52],[-181.38,-112.78],[-168.25,-96.26],[-159.38,-117.01],[-149.53,-153.1],[-151.49,-210.18],[-156.91,-219.82],[-163.5,-234.52],[-178.2,-261.34],[-187.62,-289.87],[-200.54,-310.93],[-201.83,-314.29],[-206.86,-320.1],[-213.88,-334.37],[-221.66,-351.54],[-225.21,-359.38],[-227.56,-360.75],[-231.62,-369.11]],"v":[[-240,-380],[-242.97,-373.66],[-245,-366],[-248.61,-347.28],[-251,-327],[-254.44,-299.37],[-255,-272],[-243.92,-239.6],[-229,-209],[-222.11,-192.45],[-215,-178],[-214.54,-176.52],[-214,-175],[-212,-172.95],[-210,-171],[-202,-159],[-199,-154],[-197,-152],[-186,-122],[-183,-117],[-171,-96],[-162,-111],[-156,-129],[-150,-204],[-156,-218],[-158,-224],[-175,-254],[-183,-277],[-200,-310],[-201,-313],[-205,-317],[-210,-327],[-220,-348],[-225,-359],[-227,-360],[-228,-363]],"c":true}],"h":1},{"t":193,"s":[{"i":[[-238.34,-378.97],[-242.23,-376.01],[-244.31,-368.65],[-247.71,-353.63],[-250.26,-333.88],[-253.5,-308.41],[-255.96,-281.3],[-251.16,-254.95],[-239.17,-230.76],[-229.88,-210.44],[-223.29,-193.98],[-219.21,-184.88],[-216.79,-179.31],[-215.46,-177.65],[-214.16,-177.22],[-213.57,-176.02],[-213.27,-174.38],[-211.17,-171.42],[-208.68,-167.89],[-204.83,-164.08],[-203.67,-160.99],[-199.94,-157.58],[-198.13,-152.21],[-188.76,-130.79],[-175.2,-95.6],[-163.97,-106.5],[-157.49,-124.17],[-148.74,-159.93],[-155.85,-220.14],[-175.87,-255.59],[-184.2,-281.57],[-197.97,-307.52],[-205.4,-319.23],[-218.27,-345.03],[-231.07,-367.47],[-234.44,-374.18]],"o":[[-241.32,-378.19],[-243.72,-371.24],[-246.58,-359.94],[-249.55,-340.6],[-252.02,-317.5],[-255.47,-290.31],[-254.08,-263.07],[-243.71,-238.8],[-232.24,-216.2],[-225.41,-199.34],[-220.07,-186.97],[-217.57,-181.04],[-215.88,-177.79],[-214.6,-177.36],[-213.68,-176.58],[-213.37,-174.92],[-212.08,-172.72],[-209.47,-169.01],[-206.76,-165.37],[-203.32,-162.12],[-201.82,-158.25],[-197.82,-154.01],[-190.99,-138.26],[-180.7,-110.08],[-168.52,-96.24],[-158.99,-117.89],[-152.4,-144.11],[-145.81,-203.61],[-172.21,-248.22],[-182.06,-272.24],[-191.66,-298.12],[-203.71,-316.75],[-213.42,-333.1],[-227.22,-362.18],[-234.63,-372.97],[-236.39,-377.04]],"v":[[-240,-380],[-242.97,-373.63],[-245,-366],[-248.63,-347.11],[-251,-327],[-254.48,-299.36],[-255,-272],[-247.44,-246.88],[-235,-222],[-227.65,-204.89],[-221,-189],[-218.39,-182.96],[-216,-178],[-215.03,-177.51],[-214,-177],[-213.47,-175.47],[-213,-174],[-210.32,-170.21],[-208,-167],[-204,-163],[-203,-160],[-199,-156],[-197,-150],[-183,-116],[-171,-96],[-162,-111],[-156,-130],[-148,-171],[-168,-241],[-179,-264],[-188,-290],[-202,-314],[-207,-322],[-224,-356],[-234,-372],[-235,-375]],"c":true}],"h":1},{"t":194,"s":[{"i":[[-235.51,-377.73],[-242.15,-376.72],[-243.3,-370.51],[-246.43,-358.67],[-249.33,-343.5],[-251.93,-323.3],[-254.61,-301.49],[-255.38,-287.06],[-255.32,-275.07],[-251.35,-256.84],[-239.69,-232.5],[-227.43,-204.49],[-221.99,-192.11],[-218.21,-181.56],[-214.33,-177.44],[-213.58,-174.77],[-203.85,-162.93],[-195.6,-148.62],[-187.8,-128],[-176.02,-95.52],[-167.75,-99.84],[-159.06,-117.22],[-152.65,-142.03],[-146.49,-175.95],[-155.48,-218.88],[-173.66,-249.17],[-181.29,-272.09],[-187.73,-287.31],[-192.78,-299.73],[-197.29,-307.26],[-200.96,-311.31],[-201.76,-314.48],[-203.76,-315.59],[-205.17,-318.58],[-216.32,-339.55],[-226.48,-362.37]],"o":[[-241.5,-378.46],[-243.05,-372.75],[-245.27,-363.42],[-248.46,-348.71],[-250.88,-330.8],[-253.79,-308.64],[-255.23,-291.27],[-255.43,-278.95],[-254.26,-264.84],[-244.07,-240.67],[-231.51,-215.86],[-223.05,-193.65],[-219.09,-185.94],[-215.74,-177.58],[-213.35,-176.14],[-209.09,-168.8],[-198.64,-153.92],[-189.6,-135.04],[-181.6,-112.51],[-169.61,-96.13],[-161.73,-110.72],[-154.86,-133.06],[-148.35,-165.45],[-149.27,-205.57],[-166.19,-238.11],[-180.41,-266.03],[-185,-282.77],[-191.47,-295.03],[-195.7,-302.78],[-199.63,-309.7],[-202.3,-313.48],[-202.16,-315.35],[-204.72,-317.24],[-211.53,-329.43],[-223.25,-353.55],[-233.01,-369.18]],"v":[[-240,-380],[-242.6,-374.73],[-244,-368],[-247.45,-353.69],[-250,-338],[-252.86,-315.97],[-255,-295],[-255.41,-283],[-255,-272],[-247.71,-248.76],[-236,-225],[-224,-196],[-221,-190],[-216,-178],[-214,-177],[-213,-174],[-201,-158],[-194,-145],[-183,-116],[-171,-96],[-166,-103],[-157,-125],[-151,-151],[-148,-192],[-160,-227],[-178,-260],[-183,-277],[-190,-292],[-194,-301],[-198,-308],[-202,-313],[-202,-315],[-204,-316],[-206,-320],[-221,-349],[-229,-365]],"c":true}],"h":1},{"t":195,"s":[{"i":[[-238.34,-378.97],[-242.15,-376.72],[-243.3,-370.51],[-246.4,-358.68],[-249.26,-343.51],[-251.99,-323.66],[-254.61,-302.35],[-255.71,-278.38],[-235.34,-224.35],[-222.66,-189.55],[-218.03,-182.03],[-217.7,-181.09],[-214.58,-177.86],[-211.51,-172.04],[-202.8,-161.78],[-191.78,-138.21],[-183.08,-116.33],[-181.68,-110.51],[-173.56,-95.75],[-159.28,-116.19],[-152.94,-139.98],[-147.03,-199.46],[-161,-229.08],[-165.11,-237.57],[-170.37,-244.07],[-175.77,-256.34],[-178.38,-262.66],[-179.48,-265.56],[-188.01,-289.79],[-198.76,-309.4],[-202.59,-314.33],[-207.04,-323.48],[-212.03,-330.19],[-220.13,-348.48],[-231.19,-367.66],[-234.44,-374.18]],"o":[[-241.5,-378.46],[-243.05,-372.75],[-245.27,-363.43],[-248.4,-348.72],[-250.93,-330.99],[-253.83,-309.34],[-255.47,-288.3],[-252.79,-252.28],[-224.72,-197.81],[-219.06,-183.11],[-217.22,-181.18],[-216.38,-179.03],[-212.31,-174.49],[-206.62,-165.43],[-195.09,-148.64],[-185.57,-121.05],[-181.17,-112.21],[-177.16,-100.44],[-167.85,-96.3],[-154.72,-129.77],[-147.06,-173.39],[-156.95,-223.01],[-164.82,-235.34],[-167.8,-241.9],[-174,-250.6],[-177.77,-260.68],[-179.36,-264.77],[-184.09,-278.38],[-195.35,-303.34],[-201.37,-313.6],[-205.54,-319.13],[-210.12,-329.02],[-217.13,-339.71],[-226.98,-361.79],[-234.63,-372.97],[-236.39,-377.04]],"v":[[-240,-380],[-242.6,-374.73],[-244,-368],[-247.4,-353.7],[-250,-338],[-252.91,-316.5],[-255,-296],[-255,-272],[-228,-206],[-219,-183],[-218,-182],[-217,-180],[-214,-177],[-210,-170],[-200,-157],[-187,-125],[-182,-114],[-181,-109],[-171,-96],[-158,-120],[-151,-151],[-154,-216],[-164,-234],[-166,-239],[-172,-247],[-177,-259],[-179,-264],[-180,-267],[-193,-299],[-201,-313],[-203,-315],[-209,-327],[-213,-332],[-224,-356],[-234,-372],[-235,-375]],"c":true}],"h":1},{"t":196,"s":[{"i":[[-227.83,-366.9],[-242,-376.65],[-243.33,-370.4],[-246.39,-358.92],[-249.32,-344.24],[-251.97,-324.67],[-254.61,-303.36],[-255.39,-277.94],[-250.96,-257.18],[-241.66,-235.55],[-231.84,-214.16],[-226.03,-199.08],[-221.68,-188.03],[-216.93,-180.12],[-211.6,-173.17],[-206.28,-166.07],[-201.28,-159.18],[-195.5,-148.16],[-189.39,-131.66],[-183.05,-114.15],[-173.6,-95.75],[-169.24,-97.42],[-165.69,-102.72],[-160.18,-114.53],[-154.97,-131.54],[-150.11,-154.5],[-147.44,-179.67],[-154.63,-218.47],[-174.38,-250.44],[-182.92,-273.3],[-187.78,-289.21],[-194.4,-302.47],[-201.99,-314.72],[-205.14,-319.96],[-206.75,-322.74],[-209.02,-326.31]],"o":[[-241.33,-378.46],[-243,-372.63],[-245.23,-363.55],[-248.43,-349.26],[-250.91,-331.99],[-253.82,-310.36],[-255.66,-286.1],[-253.04,-263.48],[-244.99,-242.72],[-235.08,-221.27],[-227.44,-203.07],[-223.15,-191.56],[-218.63,-182.53],[-213.42,-175.44],[-208.14,-168.48],[-202.85,-161.42],[-197.56,-152.83],[-191.42,-137.57],[-185.75,-121.52],[-176.98,-101.26],[-170.39,-96.06],[-166.88,-100.75],[-162.44,-108.76],[-156.44,-125.92],[-151.89,-145.66],[-147.89,-171.5],[-149.19,-205.75],[-167.22,-240.82],[-181.28,-267.69],[-186.17,-284.06],[-191.91,-298.11],[-199.44,-310.78],[-204.52,-318.84],[-206.26,-321.92],[-208.61,-324.68],[-219.83,-344.99]],"v":[[-240,-380],[-242.5,-374.64],[-244,-368],[-247.41,-354.09],[-250,-339],[-252.9,-317.52],[-255,-297],[-254.22,-270.71],[-248,-250],[-238.37,-228.41],[-229,-207],[-224.59,-195.32],[-220,-185],[-215.17,-177.78],[-210,-171],[-204.57,-163.75],[-200,-157],[-193.46,-142.87],[-187,-125],[-180.01,-107.7],[-171,-96],[-168.06,-99.09],[-165,-104],[-158.31,-120.22],[-154,-136],[-149,-163],[-148,-188],[-160.93,-229.65],[-179,-262],[-184.54,-278.68],[-190,-294],[-196.92,-306.62],[-204,-318],[-205.7,-320.94],[-207,-323],[-210,-328]],"c":true}],"h":1},{"t":197,"s":[{"i":[[-228.62,-368.18],[-241.64,-377.66],[-242.47,-373.68],[-247.11,-355.93],[-250.98,-329.35],[-253.72,-309.21],[-256.08,-290.48],[-251.26,-257.98],[-233.39,-219.16],[-225.88,-199.26],[-221.18,-186.71],[-217.83,-181.66],[-215.48,-179.7],[-214.57,-178],[-214.24,-176.38],[-213.43,-175.36],[-212.23,-174.31],[-209.64,-170.67],[-206.18,-165.63],[-203.69,-162.61],[-201.53,-160.82],[-199.95,-158.13],[-198.56,-155.06],[-192.8,-142.42],[-186.88,-124.24],[-181.08,-109.7],[-173.21,-95.79],[-167.45,-99.78],[-161.3,-111.33],[-158.21,-119.37],[-155.7,-129.96],[-145.86,-177.82],[-164.18,-233.87],[-181.9,-270.6],[-190.35,-294.03],[-207.09,-322.16]],"o":[[-241.15,-378.82],[-242.29,-375.09],[-245.37,-364.51],[-249.91,-338.35],[-252.68,-315.48],[-255.42,-296.71],[-255.81,-271.66],[-240.05,-231.73],[-227.29,-203.65],[-222.83,-190.79],[-218.59,-182.3],[-216.27,-180.35],[-214.7,-178.56],[-214.34,-176.91],[-213.82,-175.71],[-212.63,-174.66],[-210.8,-172.35],[-207.33,-167.31],[-204.42,-163.21],[-202.24,-161.42],[-200.42,-159.1],[-199.02,-156.11],[-194.85,-148.04],[-188.81,-130.52],[-183.23,-115.06],[-176.07,-100.07],[-169.8,-96.11],[-163.2,-107.39],[-159.36,-115.64],[-156.38,-126.53],[-149,-159.09],[-154.03,-223.61],[-178.7,-260.69],[-187.91,-288.82],[-200.04,-312.53],[-222,-349.52]],"v":[[-240,-380],[-241.96,-376.38],[-243,-372],[-248.51,-347.14],[-252,-321],[-254.57,-302.96],[-256,-285],[-245.65,-244.86],[-229,-208],[-224.35,-195.03],[-219,-183],[-217.05,-181],[-215,-179],[-214.45,-177.46],[-214,-176],[-213.03,-175.01],[-212,-174],[-208.48,-168.99],[-205,-164],[-202.96,-162.02],[-201,-160],[-199.48,-157.12],[-198,-154],[-190.8,-136.47],[-184,-117],[-178.58,-104.88],[-171,-96],[-165.33,-103.59],[-161,-112],[-157.29,-122.95],[-155,-133],[-150,-201],[-174,-252],[-185,-280],[-194,-301],[-213,-333]],"c":true}],"h":1},{"t":198,"s":[{"i":[[-229.83,-368.96],[-245.27,-366.33],[-248.8,-342.03],[-252.62,-316.91],[-256.11,-293.36],[-253.07,-262.62],[-240.54,-234.48],[-233.11,-216.85],[-229.31,-206.32],[-224.29,-194.41],[-217.99,-182.98],[-213.24,-176],[-209.36,-170.79],[-204.24,-163.96],[-199.25,-156.39],[-193.25,-142.83],[-186.38,-121.96],[-182.77,-113.58],[-180.53,-110.14],[-176.82,-101.53],[-173,-95.81],[-168.3,-98.66],[-163.43,-107.15],[-157.8,-119.86],[-152.99,-138.08],[-151.25,-148.28],[-150.24,-154.2],[-148.77,-207.4],[-161.93,-231.64],[-165.89,-239.25],[-176.56,-255.41],[-186.77,-285.81],[-195.54,-304.75],[-204.28,-317.32],[-208.8,-326.88],[-212.75,-333.7]],"o":[[-243.37,-373.57],[-247.99,-350.56],[-251.07,-324.98],[-255.15,-301.1],[-255.8,-272.88],[-245.44,-243.42],[-234.46,-220.44],[-230.54,-209.79],[-226.29,-198.67],[-220.14,-186.56],[-214.56,-177.85],[-210.64,-172.47],[-206.11,-166.52],[-200.81,-158.9],[-195.56,-149.36],[-188.66,-129.13],[-183.51,-114.77],[-181.29,-111.27],[-178.06,-104.87],[-174.28,-96.99],[-170.08,-96.09],[-164.97,-104.19],[-160.06,-113.82],[-154.27,-131.99],[-151.63,-146.18],[-150.56,-152.29],[-146.63,-181.26],[-159.28,-228.59],[-165.16,-236.89],[-171.54,-248.19],[-184.47,-275.17],[-193.21,-299.8],[-200.61,-313.53],[-208.23,-324.12],[-211.36,-331.4],[-221.89,-350.48]],"v":[[-240,-380],[-246.63,-358.45],[-250,-333],[-253.88,-309.01],[-256,-286],[-249.25,-253.02],[-236,-224],[-231.83,-213.32],[-228,-203],[-222.21,-190.48],[-216,-180],[-211.94,-174.23],[-208,-169],[-202.53,-161.43],[-198,-154],[-190.96,-135.98],[-184,-116],[-182.03,-112.43],[-180,-109],[-175.55,-99.26],[-171,-96],[-166.64,-101.43],[-163,-108],[-156.04,-125.93],[-152,-144],[-150.91,-150.28],[-150,-156],[-157,-224],[-164,-235],[-167,-241],[-180,-264],[-191,-295],[-198,-309],[-207,-322],[-210,-329],[-214,-336]],"c":true}],"h":1},{"t":199,"s":[{"i":[[-236.45,-377.33],[-245.03,-366.88],[-248.73,-342.93],[-252.68,-317.89],[-256.08,-294.33],[-252.33,-262.31],[-237.43,-227.1],[-229.67,-207.26],[-224.73,-194.5],[-221.25,-187.51],[-218.48,-182.5],[-216.46,-180.28],[-214.62,-177.85],[-208.64,-170.02],[-200.98,-159.63],[-194.96,-147.12],[-189.36,-130.39],[-182.82,-113.18],[-173.38,-95.77],[-167.91,-98.92],[-162.65,-108.61],[-155.28,-128.32],[-149.48,-160.26],[-148.63,-177.29],[-148.64,-192.22],[-150.56,-204.87],[-154.88,-218.4],[-157.4,-224.17],[-159.18,-227.55],[-161.04,-232.38],[-163.68,-234.57],[-164.56,-237.3],[-175.41,-253.05],[-183.65,-276.04],[-198.84,-309.19],[-222.28,-352.66]],"o":[[-243.16,-373.92],[-247.81,-351.38],[-251.14,-325.98],[-255.15,-302.07],[-255.87,-274.51],[-243.12,-238.6],[-231.31,-211.76],[-226.38,-198.64],[-222.26,-189.51],[-219.36,-184.01],[-217.15,-181.11],[-215.19,-178.65],[-211.4,-173.45],[-203.43,-163.11],[-196.78,-151.92],[-191.25,-136.35],[-185.63,-120.3],[-176.69,-100.92],[-169.84,-96.11],[-164.32,-105.16],[-158.29,-117.94],[-150.88,-149.48],[-148.81,-172.43],[-148.55,-187.18],[-149.37,-199.92],[-153.32,-214.11],[-156.81,-222.89],[-158.59,-226.5],[-160.93,-230.65],[-162.24,-234.4],[-164.58,-235.77],[-169.79,-245.69],[-182.38,-268.49],[-191.03,-297.95],[-214.81,-335.52],[-232.79,-370.81]],"v":[[-240,-380],[-246.42,-359.13],[-250,-334],[-253.91,-309.98],[-256,-287],[-247.73,-250.45],[-233,-216],[-228.02,-202.95],[-223,-191],[-220.31,-185.76],[-218,-182],[-215.83,-179.47],[-214,-177],[-206.04,-166.57],[-199,-156],[-193.1,-141.74],[-187,-124],[-179.76,-107.05],[-171,-96],[-166.12,-102.04],[-162,-110],[-153.08,-138.9],[-149,-169],[-148.59,-182.23],[-149,-196],[-151.94,-209.49],[-156,-221],[-158,-225.33],[-160,-229],[-162,-234],[-164,-235],[-165,-238],[-179,-261],[-186,-283],[-206,-321],[-230,-366]],"c":true}],"h":1},{"t":200,"s":[{"i":[[-238.14,-379.48],[-244.97,-366.85],[-248.73,-342.93],[-253.96,-310.03],[-255.89,-276.46],[-252.19,-262.74],[-250.46,-259.28],[-249.31,-255.38],[-248.49,-251.21],[-247.45,-249.14],[-246.2,-247.5],[-245.61,-245.59],[-245.32,-243.74],[-242.66,-238.41],[-238.77,-231.8],[-237.25,-227.47],[-236.52,-223.29],[-235.45,-221.14],[-234.2,-219.5],[-228.83,-205.16],[-220.67,-186.39],[-211.06,-173.05],[-202.32,-161.97],[-192.2,-138.08],[-180.71,-110.51],[-174.6,-95.7],[-166.33,-102.58],[-143.68,-177.31],[-154.68,-220.07],[-169.93,-243.79],[-183.33,-273.57],[-191.72,-295.71],[-197.79,-308.13],[-210.69,-329.55],[-225.78,-358.3],[-234.69,-374.63]],"o":[[-243.11,-373.89],[-247.79,-351.37],[-251.77,-321.55],[-256.03,-287.48],[-252.71,-263.85],[-251.06,-260.45],[-249.56,-256.78],[-248.77,-252.6],[-247.86,-249.64],[-246.62,-248.07],[-245.69,-246.22],[-245.42,-244.35],[-244.02,-240.76],[-240.03,-233.93],[-237.49,-228.82],[-236.76,-224.7],[-235.86,-221.64],[-234.62,-220.07],[-231.24,-211.97],[-223.54,-192.37],[-214.14,-176.81],[-205.15,-165.63],[-194.6,-148.77],[-185.52,-120],[-175.2,-98.87],[-169.25,-96.14],[-151.76,-129.06],[-153.14,-214.48],[-161.59,-234.76],[-180.49,-263.3],[-188.68,-290.47],[-196.67,-305.2],[-204.37,-318.29],[-220.79,-347.01],[-232.39,-369.32],[-237.46,-377.52]],"v":[[-240,-380],[-246.38,-359.11],[-250,-334],[-254.99,-298.76],[-253,-265],[-251.62,-261.6],[-250,-258],[-249.04,-253.99],[-248,-250],[-247.04,-248.61],[-246,-247],[-245.51,-244.97],[-245,-243],[-241.35,-236.17],[-238,-230],[-237.01,-226.08],[-236,-222],[-235.04,-220.61],[-234,-219],[-226.18,-198.76],[-217,-181],[-208.1,-169.34],[-200,-158],[-187,-124],[-180,-109],[-171,-96],[-165,-105],[-152,-210],[-157,-225],[-176,-255],[-186,-282],[-195,-302],[-199,-310],[-215,-337],[-231,-367],[-236,-376]],"c":true}],"h":1},{"t":201,"s":[{"i":[[-237.51,-378.68],[-244.82,-367.09],[-248.67,-343.78],[-252.68,-319.43],[-256.04,-296.26],[-252.69,-265.11],[-238.51,-230.73],[-230.38,-208.59],[-225.15,-193.77],[-222.09,-188.96],[-220.3,-187.5],[-219.54,-185.67],[-219.36,-183.64],[-218.08,-181.88],[-216.42,-180.6],[-210.82,-173.12],[-203.03,-163.24],[-193.8,-144.75],[-184.61,-116.76],[-178.37,-103.58],[-172.69,-95.86],[-169.21,-97.63],[-165.47,-103.18],[-157,-121.75],[-150.91,-153.07],[-149.17,-173.77],[-148.65,-188.24],[-155.73,-222.91],[-176.3,-253.76],[-186.16,-283.73],[-195.71,-304.92],[-199.76,-310.59],[-202.93,-317.89],[-208.71,-327.02],[-213.94,-335.05],[-227.06,-361.48]],"o":[[-242.99,-373.96],[-247.67,-352],[-251.16,-327.3],[-255.12,-303.91],[-255.93,-276.75],[-243.98,-242.1],[-232.06,-213.95],[-226.93,-198.5],[-222.69,-189.46],[-220.9,-187.98],[-219.61,-186.35],[-219.42,-184.32],[-218.62,-182.33],[-216.98,-181.02],[-213.56,-176.5],[-205.56,-166.49],[-197,-153.62],[-187.6,-126.32],[-180.02,-106.9],[-174.7,-98.06],[-170.48,-96.04],[-166.71,-101.2],[-160.29,-112.22],[-152.31,-142.18],[-149.59,-168.9],[-148.7,-183.44],[-150.33,-211.28],[-168.72,-244.15],[-185.36,-276.4],[-191.28,-296.86],[-198.16,-310.35],[-201.41,-313.4],[-207.47,-322.62],[-212.26,-333.19],[-221.14,-348.27],[-235.13,-374.42]],"v":[[-240,-380],[-246.24,-359.55],[-250,-335],[-253.9,-311.67],[-256,-289],[-248.33,-253.61],[-234,-219],[-228.66,-203.55],[-223,-190],[-221.5,-188.47],[-220,-187],[-219.48,-185],[-219,-183],[-217.53,-181.45],[-216,-180],[-208.19,-169.8],[-201,-160],[-190.7,-135.54],[-181,-109],[-176.53,-100.82],[-171,-96],[-167.96,-99.42],[-165,-104],[-154.65,-131.97],[-150,-164],[-148.93,-178.6],[-149,-193],[-162.22,-233.53],[-182,-268],[-189,-291],[-198,-310],[-200,-311],[-204,-319],[-211,-331],[-215,-337],[-233,-371]],"c":true}],"h":1},{"t":202,"s":[{"i":[[-238.14,-379.48],[-244.94,-366.82],[-248.65,-342.89],[-252.79,-318.36],[-256.19,-295.44],[-254.07,-270.52],[-245.11,-244.58],[-236.74,-224.84],[-230.76,-209.66],[-226.34,-197.69],[-221.55,-186.61],[-218.44,-183.26],[-216.63,-180.85],[-210.68,-173.17],[-203.14,-163.42],[-196.85,-151.88],[-192.56,-138.49],[-189.75,-131.23],[-187.53,-127.44],[-183.16,-113.47],[-173.7,-95.77],[-166.25,-101.81],[-151.93,-142.06],[-148.29,-182.31],[-158.97,-230.23],[-170.93,-247.38],[-178.22,-260.49],[-185.91,-280.57],[-192.85,-297.87],[-199.05,-311.7],[-202.5,-316.13],[-205.13,-320.49],[-208.13,-325.49],[-212.37,-332.1],[-225.59,-357.62],[-234.7,-374.64]],"o":[[-243.12,-373.87],[-247.71,-351.32],[-251.19,-326.14],[-255.29,-303.01],[-255.77,-278.98],[-248.74,-253.32],[-238.86,-230.01],[-232.69,-214.67],[-227.82,-201.88],[-223.21,-190.05],[-219.13,-184.09],[-217.2,-181.64],[-213.36,-176.46],[-205.57,-166.65],[-198.57,-156.13],[-193.85,-143.06],[-190.48,-132.5],[-188.27,-128.7],[-185.5,-121.94],[-177.45,-101.65],[-169.99,-96.08],[-155.8,-120.05],[-149.08,-172.96],[-150.41,-211.37],[-169.21,-245.84],[-176.06,-255.17],[-183.9,-273.79],[-190.5,-294.69],[-197.81,-307.52],[-201.39,-315.66],[-204.27,-319.19],[-207.27,-324.19],[-210.81,-330.13],[-220.36,-346.35],[-232.35,-369.33],[-237.46,-377.52]],"v":[[-240,-380],[-246.33,-359.07],[-250,-334],[-254.04,-310.69],[-256,-288],[-251.41,-261.92],[-241,-235],[-234.72,-219.75],[-229,-205],[-224.77,-193.87],[-220,-185],[-217.82,-182.45],[-216,-180],[-208.13,-169.91],[-201,-160],[-195.35,-147.47],[-191,-134],[-189.01,-129.96],[-187,-126],[-181,-109],[-171,-96],[-165,-104],[-150,-163],[-149,-192],[-168,-244],[-172,-249],[-181,-267],[-188,-287],[-196,-304],[-201,-315],[-203,-317],[-206,-322],[-209,-327],[-214,-335],[-231,-367],[-236,-376]],"c":true}],"h":1},{"t":203,"s":[{"i":[[-237.51,-378.68],[-244.93,-366.81],[-248.58,-342.89],[-252.93,-318.15],[-256.32,-294.77],[-255.1,-277.58],[-251.6,-263.77],[-247.67,-252.58],[-244.08,-243.87],[-241.19,-236.47],[-238.67,-230.67],[-237.29,-226.76],[-236.4,-223.09],[-232.77,-213.58],[-227.73,-201.78],[-224.02,-193.13],[-220.99,-186.04],[-219.58,-184.36],[-219.32,-183.41],[-215.23,-178.68],[-209.25,-172.57],[-206.87,-168.19],[-190.04,-129],[-175,-95.67],[-163.9,-107.05],[-158.67,-116.29],[-157.7,-121.81],[-147.8,-169.61],[-155.95,-224.31],[-176.52,-253.82],[-188.81,-290.98],[-208.61,-325.05],[-215.77,-337.58],[-220.54,-350.44],[-223.3,-353.82],[-229.98,-366.16]],"o":[[-243.14,-373.87],[-247.65,-351.33],[-251.27,-326.01],[-255.45,-302.53],[-255.8,-282.19],[-253,-268.37],[-248.87,-255.64],[-245.27,-246.69],[-242.11,-238.64],[-239.47,-232.49],[-237.59,-227.97],[-236.7,-224.32],[-234.4,-217.69],[-229.43,-205.62],[-225.02,-195.86],[-222,-188.22],[-219.67,-184.65],[-219.41,-183.74],[-217.36,-180.9],[-211.18,-174.52],[-207.18,-169.97],[-194.45,-151.29],[-179.08,-105.97],[-168.39,-96.22],[-161.68,-111.87],[-157.33,-119.7],[-151.44,-141.41],[-150.04,-205.69],[-168.94,-246.65],[-187.22,-280.54],[-198.92,-312.75],[-214.16,-337.36],[-218.35,-342.28],[-223.82,-353.85],[-227.41,-360.74],[-235.13,-374.42]],"v":[[-240,-380],[-246.29,-359.07],[-250,-334],[-254.19,-310.34],[-256,-287],[-254.05,-272.98],[-250,-259],[-246.47,-249.63],[-243,-241],[-240.33,-234.48],[-238,-229],[-236.99,-225.54],[-236,-222],[-231.1,-209.6],[-226,-198],[-223.01,-190.68],[-220,-185],[-219.49,-184.05],[-219,-183],[-213.21,-176.6],[-208,-171],[-206,-167],[-181,-110],[-171,-96],[-163,-109],[-158,-118],[-157,-124],[-149,-189],[-161,-233],[-183,-270],[-193,-300],[-214,-337],[-216,-338],[-223,-353],[-224,-355],[-233,-371]],"c":true}],"h":1},{"t":204,"s":[{"i":[[-232.44,-372.15],[-244.96,-366.8],[-248.49,-342.9],[-252.98,-318.52],[-256.31,-295.61],[-253.89,-271.98],[-245.45,-247.63],[-239.19,-231.39],[-235.38,-219.81],[-232.84,-212.34],[-229.6,-206.53],[-226.75,-196.33],[-222.73,-191.17],[-220.77,-186.15],[-218.35,-184.47],[-217.55,-181.76],[-215.38,-180.5],[-214.57,-177.77],[-205.04,-167.01],[-190.42,-132.32],[-176.54,-95.54],[-168.92,-97.98],[-152.92,-135.31],[-148.55,-191.3],[-157.3,-225.36],[-165.86,-240.66],[-181.12,-264.16],[-191.28,-296.57],[-196.62,-305.27],[-199.98,-313.56],[-203.5,-318.13],[-206.13,-322.49],[-209.13,-327.49],[-212.13,-332.49],[-215.13,-337.49],[-218.56,-344.31]],"o":[[-243.22,-373.85],[-247.59,-351.33],[-251.32,-326.21],[-255.47,-303.22],[-255.67,-279.91],[-248.79,-255.83],[-240.49,-235.24],[-236.63,-223.68],[-233.27,-213.99],[-231.49,-208.59],[-227.42,-200.97],[-224.47,-191.99],[-221.14,-188.61],[-219.7,-184.55],[-217.36,-183.15],[-216.66,-180.53],[-214.35,-179.14],[-209.77,-171.36],[-195.79,-151.77],[-183.2,-114.57],[-169.87,-96.09],[-158,-115.13],[-149.07,-172.76],[-154.11,-218.25],[-163.46,-236.42],[-174.22,-253.7],[-188.5,-284.78],[-195.5,-305],[-198.82,-309.53],[-202.39,-317.66],[-205.27,-321.19],[-208.27,-326.19],[-211.27,-331.19],[-214.27,-336.19],[-217.75,-342.02],[-225.91,-358.02]],"v":[[-240,-380],[-246.28,-359.06],[-250,-334],[-254.23,-310.87],[-256,-288],[-251.34,-263.91],[-242,-239],[-237.91,-227.53],[-234,-216],[-232,-210],[-229,-205],[-225,-193],[-222,-190],[-220,-185],[-218,-184],[-217,-181],[-215,-180],[-214,-177],[-202,-162],[-185,-119],[-171,-96],[-167,-101],[-151,-154],[-152,-208],[-161,-232],[-168,-244],[-185,-275],[-195,-304],[-197,-306],[-202,-317],[-204,-319],[-207,-324],[-210,-329],[-213,-334],[-216,-339],[-220,-347]],"c":true}],"h":1},{"t":205,"s":[{"i":[[-234.36,-375.82],[-244.4,-367.77],[-248.7,-345.94],[-252.61,-322.92],[-255.77,-301.28],[-253.68,-269.81],[-241.41,-237.9],[-233.96,-217.21],[-228.15,-199.46],[-222.91,-191.39],[-221.03,-186.5],[-218.36,-184.48],[-217.55,-181.76],[-215.38,-180.5],[-214.6,-177.77],[-211.86,-175.06],[-204.38,-165.99],[-190.45,-132.14],[-175.61,-95.62],[-163.76,-105.66],[-161.71,-110.45],[-148.89,-160.34],[-153.39,-219.26],[-177.17,-254.5],[-187.07,-283.36],[-192.91,-297.64],[-194.32,-303.59],[-197.08,-307.37],[-199.17,-312.61],[-201.68,-314.57],[-202.56,-317.3],[-205.18,-320.64],[-207.12,-325.55],[-213.22,-334.92],[-218.95,-346.14],[-225.33,-355.92]],"o":[[-242.55,-374.3],[-247.47,-353.59],[-251.22,-330.53],[-254.89,-308.29],[-256.47,-281.86],[-246.14,-247.83],[-235.88,-223.48],[-230.1,-205.2],[-225.02,-192.96],[-221,-188.47],[-219.69,-184.54],[-217.36,-183.15],[-216.66,-180.53],[-214.35,-179.13],[-213.16,-175.91],[-207.67,-169.88],[-195.85,-151.68],[-182.29,-112.47],[-169.67,-96.11],[-161.99,-108.76],[-152.98,-129.55],[-149.11,-200.49],[-166.72,-244.95],[-186.1,-277.39],[-190.37,-293],[-194.67,-301.45],[-195.61,-306.27],[-198.85,-310.5],[-200.24,-314.41],[-202.58,-315.78],[-203.94,-319.5],[-206.82,-323.36],[-210.32,-330.81],[-217.16,-341.73],[-222.65,-353.11],[-230.9,-366.18]],"v":[[-240,-380],[-245.94,-360.68],[-250,-338],[-253.75,-315.61],[-256,-295],[-249.91,-258.82],[-238,-229],[-232.03,-211.2],[-226,-195],[-222,-190],[-220,-185],[-218,-184],[-217,-181],[-215,-180],[-214,-177],[-211,-174],[-202,-162],[-185,-119],[-171,-96],[-163,-107],[-161,-112],[-149,-180],[-160,-232],[-184,-272],[-189,-289],[-194,-300],[-195,-305],[-198,-309],[-200,-314],[-202,-315],[-203,-318],[-206,-322],[-208,-327],[-215,-338],[-221,-350],[-227,-359]],"c":true}],"h":1},{"t":206,"s":[{"i":[[-238.14,-379.48],[-244.21,-368.33],[-248.64,-347.09],[-252.53,-324.71],[-255.73,-303.3],[-255.48,-280.21],[-249.67,-259.28],[-242.24,-238.97],[-234.98,-219.19],[-229.07,-203.55],[-222.85,-190.16],[-212.89,-176.74],[-202.5,-163.78],[-196.48,-150.94],[-192.28,-137.68],[-189.97,-130.88],[-188.54,-126.41],[-183.94,-115.01],[-173.4,-95.8],[-168.56,-98.42],[-163.44,-106.22],[-162.15,-108.79],[-161.3,-111.35],[-158.06,-118.75],[-154.66,-128.34],[-148.98,-167.07],[-152.12,-211.95],[-162.72,-237.01],[-168.77,-245.16],[-183.42,-268.93],[-190.34,-292.67],[-201.37,-316.82],[-214.56,-336.8],[-224.2,-355.74],[-230.06,-364.34],[-234.35,-374.28]],"o":[[-242.39,-374.54],[-247.34,-354.61],[-251.16,-332.06],[-254.81,-310.33],[-256.4,-287.82],[-252.12,-265.94],[-244.75,-245.88],[-237.35,-225.63],[-230.89,-208.47],[-225.05,-194.4],[-216.64,-181.1],[-205.82,-168.08],[-198.09,-155.35],[-193.57,-142.1],[-190.45,-132.43],[-189.02,-127.87],[-186.99,-122.36],[-177.15,-101.73],[-170.33,-96.05],[-165.11,-103.5],[-162.5,-107.87],[-161.55,-110.53],[-159.48,-115.33],[-155.65,-125.26],[-150.11,-146.55],[-149.03,-195.74],[-159.58,-230.37],[-167.07,-243.62],[-177.32,-257.98],[-189.59,-287.87],[-195.33,-305.68],[-210.79,-329.4],[-221.44,-349.21],[-227.83,-362.56],[-232.55,-368.73],[-237.46,-377.52]],"v":[[-240,-380],[-245.77,-361.47],[-250,-339],[-253.67,-317.52],[-256,-297],[-253.8,-273.08],[-247,-252],[-239.8,-232.3],[-233,-214],[-227.06,-198.97],[-220,-186],[-209.36,-172.41],[-200,-159],[-195.03,-146.52],[-191,-134],[-189.49,-129.38],[-188,-125],[-180.54,-108.37],[-171,-96],[-166.83,-100.96],[-163,-107],[-161.85,-109.66],[-161,-112],[-156.86,-122],[-154,-131],[-149,-178],[-157,-224],[-166,-242],[-170,-247],[-188,-283],[-192,-297],[-206,-323],[-218,-343],[-227,-361],[-231,-366],[-236,-376]],"c":true}],"h":1},{"t":207,"s":[{"i":[[-236.78,-379.28],[-244.75,-367.01],[-248.49,-343.44],[-253.02,-319.83],[-256.31,-297.53],[-253.82,-273.03],[-245.34,-247.87],[-237.49,-226.23],[-231.29,-208.23],[-227.38,-198.85],[-224.98,-192.64],[-223.46,-190.65],[-222.16,-190.22],[-221.57,-189.02],[-221.26,-187.37],[-218.21,-183.58],[-213.83,-179.11],[-212.57,-177],[-212.31,-175.39],[-209.65,-172.55],[-205.86,-169.19],[-204.23,-166.43],[-203.44,-163.72],[-200.72,-160.41],[-188.44,-124.13],[-174.4,-95.71],[-167.92,-100.09],[-167.7,-100.91],[-157.15,-119.3],[-148.45,-172.66],[-157.94,-228.54],[-179.6,-260.16],[-187.39,-284.06],[-201.27,-315.22],[-225.81,-356.27],[-233.76,-370.59]],"o":[[-243,-374.04],[-247.49,-351.71],[-251.37,-327.32],[-255.49,-304.94],[-255.65,-281.34],[-248.67,-256.29],[-239.59,-232.62],[-233.34,-214.04],[-228.14,-201.03],[-225.8,-194.65],[-223.88,-190.79],[-222.6,-190.36],[-221.69,-189.59],[-221.35,-187.92],[-219.79,-185.27],[-215.23,-180.5],[-212.67,-177.56],[-212.4,-175.92],[-210.97,-173.71],[-207.09,-170.29],[-204.51,-167.32],[-203.7,-164.63],[-202.02,-161.4],[-193.01,-145.37],[-179.08,-105.09],[-169.96,-96.09],[-167.22,-100.82],[-162.39,-109.18],[-150.07,-144.66],[-151.39,-213.14],[-172.32,-251.87],[-187.02,-279.17],[-193.89,-304],[-217.27,-341.67],[-232.16,-370.35],[-235.95,-374.33]],"v":[[-240,-380],[-246.12,-359.36],[-250,-335],[-254.26,-312.38],[-256,-290],[-251.24,-264.66],[-242,-239],[-235.41,-220.13],[-229,-203],[-226.59,-196.75],[-224,-191],[-223.03,-190.51],[-222,-190],[-221.46,-188.47],[-221,-187],[-216.72,-182.04],[-213,-178],[-212.48,-176.46],[-212,-175],[-208.37,-171.42],[-205,-168],[-203.96,-165.53],[-203,-163],[-200,-159],[-181,-109],[-171,-96],[-168,-100],[-167,-102],[-155,-127],[-150,-194],[-165,-240],[-185,-274],[-189,-289],[-209,-328],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":208,"s":[{"i":[[-235.08,-375.59],[-244.75,-366.52],[-248.48,-343.2],[-253.18,-319.66],[-256.48,-296.87],[-253.46,-271.73],[-244.99,-246.45],[-239.28,-229.92],[-235.38,-217.83],[-232.48,-210.26],[-229.83,-204.83],[-227.3,-198.71],[-225.02,-192.69],[-223.46,-190.65],[-222.16,-190.22],[-221.52,-187.74],[-216.86,-183.15],[-215.61,-179.78],[-213.42,-178.45],[-212.69,-175.87],[-206.8,-170.49],[-203.87,-164.36],[-200.9,-160.81],[-193.16,-138.42],[-175.86,-95.58],[-166.13,-102.12],[-147.74,-161.96],[-155.26,-224.07],[-163.21,-236.7],[-165.17,-241.73],[-177.56,-258.66],[-190.93,-295.6],[-206.36,-323.02],[-211.12,-332.54],[-213.97,-336.37],[-223.25,-353.21]],"o":[[-243.02,-373.67],[-247.49,-351.28],[-251.44,-327.23],[-255.7,-304.48],[-255.46,-280.26],[-248.22,-254.83],[-240.59,-234.01],[-236.68,-221.83],[-233.31,-212.1],[-230.73,-206.63],[-228.04,-200.87],[-225.79,-194.63],[-223.88,-190.79],[-222.6,-190.36],[-221.38,-189.17],[-219.47,-184.81],[-215.34,-181.12],[-214.64,-178.54],[-212.28,-177.22],[-209.94,-172.4],[-203.96,-166.56],[-201.88,-161.24],[-195.43,-149.87],[-186.01,-119.82],[-170.35,-96.05],[-152.26,-125.23],[-151,-206.73],[-161.6,-236.15],[-164.89,-239.47],[-171.66,-251.64],[-188.11,-280.86],[-200.6,-315.36],[-210.92,-330.51],[-212.85,-335.4],[-219.48,-345.13],[-230.83,-366.93]],"v":[[-240,-380],[-246.12,-358.9],[-250,-335],[-254.44,-312.07],[-256,-289],[-250.84,-263.28],[-242,-238],[-237.98,-225.88],[-234,-214],[-231.6,-208.45],[-229,-203],[-226.54,-196.67],[-224,-191],[-223.03,-190.51],[-222,-190],[-221,-187],[-216,-182],[-215,-179],[-213,-178],[-212,-175],[-205,-168],[-203,-163],[-200,-159],[-188,-125],[-171,-96],[-165,-104],[-150,-193],[-161,-235],[-164,-238],[-166,-243],[-182,-268],[-197,-308],[-210,-329],[-212,-334],[-215,-338],[-227,-360]],"c":true}],"h":1},{"t":209,"s":[{"i":[[-235.54,-377.57],[-244.19,-367.95],[-248.58,-346.58],[-252.71,-324.73],[-255.78,-304.13],[-254.66,-276.84],[-245.5,-248.97],[-239.19,-230.41],[-235.44,-218],[-232.5,-210.29],[-229.87,-204.91],[-227.32,-198.77],[-225.02,-192.64],[-223.45,-190.65],[-222.17,-190.22],[-221.57,-189.02],[-221.28,-187.38],[-219.38,-186.5],[-218.62,-183.78],[-211.58,-176.38],[-207.79,-171.28],[-205.55,-168.78],[-194.96,-142.43],[-175.55,-95.55],[-163.05,-107.91],[-150.93,-141.28],[-152.01,-217.72],[-176.08,-254.53],[-189.5,-289.87],[-196.74,-308.21],[-199.77,-311.57],[-201.75,-316.8],[-211.31,-331.8],[-220.56,-350.45],[-226.79,-360.31],[-229.77,-363.58]],"o":[[-242.4,-374.41],[-247.29,-354.03],[-251.32,-331.92],[-254.94,-310.84],[-256.41,-286.6],[-249.2,-258.03],[-240.48,-234.66],[-236.67,-222.08],[-233.31,-212.08],[-230.78,-206.7],[-228.07,-200.95],[-225.8,-194.62],[-223.87,-190.79],[-222.6,-190.37],[-221.68,-189.58],[-221.37,-187.92],[-220.66,-186.53],[-218.34,-185.12],[-215.4,-179.72],[-208.77,-172.14],[-206.4,-169.02],[-196.24,-155.49],[-185.34,-118.34],[-169.08,-96.19],[-155.69,-121.91],[-148.29,-188.92],[-166.89,-246.32],[-187.94,-279.33],[-194.44,-302.74],[-198.16,-311.36],[-201.16,-314.16],[-206.96,-325.96],[-217.6,-342.38],[-225.63,-355.75],[-228.16,-363.35],[-233.05,-369.48]],"v":[[-240,-380],[-245.74,-360.99],[-250,-339],[-253.83,-317.79],[-256,-298],[-251.93,-267.43],[-242,-239],[-237.93,-226.25],[-234,-214],[-231.64,-208.5],[-229,-203],[-226.56,-196.69],[-224,-191],[-223.03,-190.51],[-222,-190],[-221.47,-188.47],[-221,-187],[-219,-186],[-218,-183],[-210,-174],[-207,-170],[-205,-168],[-188,-125],[-171,-96],[-163,-108],[-150,-158],[-161,-235],[-183,-269],[-193,-299],[-198,-311],[-200,-312],[-203,-319],[-215,-338],[-223,-353],[-228,-363],[-230,-364]],"c":true}],"h":1},{"t":210,"s":[{"i":[[-236.78,-379.28],[-244.65,-366.78],[-248.45,-344.12],[-253.04,-321.48],[-256.3,-299.44],[-254.08,-276.25],[-246.78,-251.29],[-238.63,-226.4],[-230.79,-203.78],[-227.03,-196.7],[-225.25,-195.34],[-224.57,-194.03],[-224.24,-192.36],[-222.24,-189.59],[-219.66,-186.71],[-218.69,-183.83],[-215.03,-180.3],[-204.24,-167.32],[-190.56,-130.51],[-174.79,-95.63],[-167.28,-100.92],[-160.67,-113.12],[-153.3,-134.5],[-150.56,-215.59],[-164.95,-240.34],[-165.76,-243.48],[-167.75,-244.63],[-167.77,-246.49],[-169.75,-247.63],[-171.34,-251.31],[-175.5,-256.67],[-182.1,-266.8],[-190.26,-291.6],[-202.65,-318.36],[-225.54,-355.66],[-233.76,-370.59]],"o":[[-242.93,-373.72],[-247.41,-351.98],[-251.38,-328.75],[-255.5,-306.82],[-255.69,-284.36],[-249.63,-259.72],[-241.23,-234.76],[-233.41,-210.91],[-227.65,-197.28],[-225.83,-195.73],[-224.7,-194.6],[-224.34,-192.91],[-223.16,-190.73],[-220.49,-187.57],[-218.29,-185.24],[-216.84,-181.6],[-209.15,-172.93],[-194.32,-147.99],[-181.74,-110.67],[-169.67,-96.13],[-161.9,-109.66],[-155.03,-127.67],[-146.98,-175.89],[-162.94,-238.76],[-166.3,-242.48],[-166.15,-244.32],[-168.31,-245.46],[-168.14,-247.32],[-171.16,-249.72],[-174.22,-254.32],[-179.43,-262.78],[-188.65,-281.3],[-197.68,-310.25],[-216.55,-340.82],[-232.16,-370.35],[-235.95,-374.33]],"v":[[-240,-380],[-246.03,-359.38],[-250,-336],[-254.27,-314.15],[-256,-292],[-251.85,-267.98],[-244,-243],[-236.02,-218.66],[-228,-198],[-226.43,-196.21],[-225,-195],[-224.45,-193.47],[-224,-192],[-221.36,-188.58],[-219,-186],[-218,-183],[-214,-179],[-201,-161],[-185,-118],[-171,-96],[-166,-103],[-158,-120],[-152,-143],[-162,-237],[-166,-242],[-166,-244],[-168,-245],[-168,-247],[-170,-248],[-172,-252],[-177,-259],[-184,-271],[-194,-301],[-208,-327],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":211,"s":[{"i":[[-238.39,-379.63],[-244.49,-367.04],[-248.5,-344.82],[-253.05,-322.44],[-256.3,-300.45],[-254.1,-277.11],[-247.35,-253.42],[-241.29,-234.43],[-235.74,-217.95],[-232.7,-209.15],[-230.72,-203.54],[-220.72,-187.12],[-204.51,-167.83],[-195.05,-146.87],[-187.78,-124.25],[-180.82,-108.74],[-172.9,-95.81],[-168.03,-98.93],[-163.18,-107.65],[-156.35,-122.97],[-150.43,-148.15],[-149.5,-183.81],[-155.02,-221.31],[-159.94,-231.96],[-161.51,-235.05],[-169.32,-248.08],[-180.84,-264.4],[-188.06,-281.3],[-192.21,-296.34],[-197.99,-310.01],[-205.41,-322.73],[-216.57,-341.09],[-228.78,-362.86],[-232.52,-370.32],[-233.88,-370.8],[-235.69,-374.76]],"o":[[-242.74,-373.88],[-247.37,-352.51],[-251.39,-329.72],[-255.5,-307.81],[-255.68,-285.15],[-249.94,-261.24],[-243.17,-240.2],[-237.58,-223.3],[-233.34,-211.13],[-231.39,-205.35],[-226.22,-193.96],[-209.87,-174.06],[-197.66,-154.49],[-190.11,-131.75],[-183.37,-114.34],[-175.58,-99.48],[-169.94,-96.1],[-164.65,-104.7],[-159.38,-114.89],[-151.88,-139.6],[-149.24,-169.66],[-152.39,-209.64],[-159.43,-230.94],[-160.98,-234.02],[-165.4,-242.62],[-177.04,-258.97],[-186.45,-276.13],[-190.94,-291.41],[-195.79,-305.65],[-202.81,-318.55],[-212.18,-333.91],[-224.87,-355.57],[-232.08,-370.17],[-233.42,-370.63],[-235,-372.7],[-237.39,-378.22]],"v":[[-240,-380],[-245.93,-359.77],[-250,-337],[-254.27,-315.12],[-256,-293],[-252.02,-269.18],[-245,-246],[-239.43,-228.86],[-234,-213],[-232.05,-207.25],[-230,-202],[-215.29,-180.59],[-201,-161],[-192.58,-139.31],[-185,-118],[-178.2,-104.11],[-171,-96],[-166.34,-101.81],[-163,-108],[-154.11,-131.28],[-150,-156],[-150.95,-196.72],[-159,-230],[-160.46,-232.99],[-162,-236],[-173.18,-253.52],[-184,-271],[-189.5,-286.36],[-194,-301],[-200.4,-314.28],[-208,-327],[-220.72,-348.33],[-232,-370],[-232.97,-370.48],[-234,-371],[-236.54,-376.49]],"c":true}],"h":1},{"t":212,"s":[{"i":[[-236.78,-379.28],[-244.27,-367.6],[-248.44,-345.75],[-253.05,-323.65],[-256.21,-302.2],[-254.16,-277.79],[-246.83,-251.93],[-241.39,-234.94],[-237.33,-222.97],[-233.28,-210.69],[-228.75,-198.92],[-226.46,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.27,-192.38],[-222.18,-189.73],[-219.48,-186.72],[-217.87,-184.13],[-216.51,-181.67],[-215.4,-180.36],[-214.29,-179.36],[-209.06,-172.99],[-202.64,-164.25],[-196.74,-150.78],[-191,-132.51],[-182.57,-112.12],[-174.38,-95.67],[-163.94,-106.34],[-153.46,-128.6],[-149.64,-173.69],[-152.62,-212.11],[-173.62,-251.92],[-191.42,-292.79],[-202.78,-319.47],[-225.59,-355.77],[-233.76,-370.59]],"o":[[-242.55,-374.22],[-247.22,-353.36],[-251.45,-330.8],[-255.44,-309.35],[-255.74,-286.32],[-249.7,-260.59],[-242.72,-238.95],[-238.69,-226.95],[-234.65,-214.98],[-230.33,-202.66],[-226.88,-195.79],[-225.6,-195.36],[-224.68,-194.58],[-224.37,-192.92],[-223.19,-190.87],[-220.32,-187.66],[-218.37,-185.05],[-216.94,-182.44],[-215.75,-180.68],[-214.67,-179.7],[-211.49,-175.87],[-204.63,-167.18],[-198.49,-156.03],[-192.99,-139.02],[-186.05,-120.11],[-178.56,-104.15],[-169.35,-96.16],[-158.53,-115.92],[-149.19,-153.12],[-151.9,-200.86],[-161.71,-241.38],[-189.26,-280.67],[-198.65,-311.37],[-216.66,-342.14],[-232.16,-370.35],[-235.95,-374.33]],"v":[[-240,-380],[-245.74,-360.48],[-250,-338],[-254.25,-316.5],[-256,-295],[-251.93,-269.19],[-244,-243],[-240.04,-230.94],[-236,-219],[-231.8,-206.67],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.47,-193.47],[-224,-192],[-221.25,-188.69],[-219,-186],[-217.41,-183.28],[-216,-181],[-215.03,-180.03],[-214,-179],[-206.85,-170.09],[-201,-161],[-194.87,-144.9],[-188,-125],[-181,-109],[-171,-96],[-163,-108],[-152,-137],[-151,-190],[-156,-223],[-184,-271],[-195,-302],[-208,-328],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":213,"s":[{"i":[[-233.85,-373.32],[-244.36,-367.27],[-248.46,-345.74],[-252.94,-324.23],[-256.18,-303.01],[-253.12,-273.54],[-242.81,-241.18],[-239.37,-230.11],[-238.32,-227.09],[-237.6,-223.68],[-237.32,-219.97],[-235.52,-215.26],[-232.75,-209.74],[-230.31,-203.68],[-227.93,-197.56],[-226.46,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.26,-192.37],[-216.31,-182.24],[-204.71,-168.17],[-197.63,-152.68],[-191.75,-133.88],[-175.64,-95.54],[-165.66,-104.54],[-163.23,-106.58],[-158.46,-117.2],[-150.64,-143.39],[-152.18,-218.59],[-164.21,-240.74],[-180.26,-261.88],[-193.61,-300.61],[-199.33,-313.51],[-201.77,-315.57],[-206.39,-324.76],[-218.53,-345.14]],"o":[[-242.63,-373.9],[-247.27,-353.19],[-251.35,-331.23],[-255.35,-310.12],[-255.72,-284.95],[-246.67,-251.66],[-239.71,-231.07],[-238.67,-228.12],[-237.69,-224.94],[-237.42,-221.19],[-236.39,-217.14],[-233.7,-211.56],[-231.09,-205.9],[-228.73,-199.51],[-226.88,-195.79],[-225.6,-195.36],[-224.69,-194.59],[-224.35,-192.92],[-220.45,-186.91],[-208.43,-172.87],[-199.5,-158.23],[-193.75,-140.5],[-186.31,-120.27],[-169.36,-96.16],[-164.84,-106.36],[-160.63,-111.32],[-152.84,-131.83],[-147.96,-183.44],[-162.6,-239.19],[-172.4,-253.82],[-190.81,-286],[-198.97,-312.07],[-200.16,-315.36],[-204.42,-320.51],[-213.91,-336.98],[-228.15,-362.07]],"v":[[-240,-380],[-245.81,-360.23],[-250,-338],[-254.15,-317.18],[-256,-296],[-249.89,-262.6],[-240,-232],[-239.02,-229.12],[-238,-226],[-237.51,-222.44],[-237,-219],[-234.61,-213.41],[-232,-208],[-229.52,-201.59],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.46,-193.47],[-224,-192],[-212.37,-177.56],[-202,-163],[-195.69,-146.59],[-189,-127],[-171,-96],[-165,-106],[-163,-107],[-157,-121],[-150,-153],[-162,-238],[-165,-242],[-186,-275],[-198,-310],[-200,-315],[-202,-316],[-209,-329],[-223,-353]],"c":true}],"h":1},{"t":214,"s":[{"i":[[-236.45,-377.41],[-244.17,-367.91],[-248.44,-346.75],[-252.96,-325.2],[-256.18,-303.99],[-254.2,-280.01],[-246.83,-253.34],[-240.07,-230.77],[-234.28,-213.2],[-230.31,-203.7],[-227.98,-197.63],[-226.46,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.26,-192.37],[-216.33,-182.33],[-204.67,-168.21],[-195.62,-147.92],[-188.13,-124.75],[-183.37,-114.62],[-181.29,-110.57],[-174.48,-97.18],[-169.11,-97.94],[-159.64,-114.33],[-153.29,-132.26],[-149.65,-180.49],[-157.34,-229.64],[-165.01,-241.49],[-167.05,-246.59],[-169.65,-248.53],[-170.48,-251.25],[-180.65,-265.01],[-190.65,-289.02],[-198.74,-314.6],[-204.02,-321.31],[-222.21,-351.54]],"o":[[-242.45,-374.28],[-247.17,-354.14],[-251.37,-332.2],[-255.36,-311.1],[-255.78,-288.59],[-249.72,-262.39],[-241.93,-237.17],[-236.24,-218.79],[-231.07,-205.88],[-228.77,-199.57],[-226.88,-195.79],[-225.6,-195.36],[-224.69,-194.59],[-224.35,-192.92],[-220.5,-186.98],[-208.42,-172.94],[-198.3,-155.79],[-190.53,-132.4],[-184.23,-116.34],[-181.9,-111.74],[-176.67,-101.46],[-170.7,-95.42],[-162.49,-108.7],[-155.04,-126.11],[-148.37,-157.91],[-153.82,-215.09],[-163.72,-241.32],[-166.93,-244.42],[-168.3,-248.45],[-170.62,-249.83],[-176.02,-259.2],[-188.77,-279.93],[-195.02,-302],[-203.61,-319.68],[-213.18,-337.08],[-232.8,-369.84]],"v":[[-240,-380],[-245.67,-361.02],[-250,-339],[-254.16,-318.15],[-256,-297],[-251.96,-271.2],[-244,-244],[-238.16,-224.78],[-232,-208],[-229.54,-201.64],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.46,-193.47],[-224,-192],[-212.38,-177.64],[-202,-163],[-193.07,-140.16],[-185,-118],[-182.64,-113.18],[-181,-110],[-172.59,-96.3],[-166,-103],[-157.34,-120.22],[-152,-139],[-152,-200],[-163,-240],[-166,-243],[-168,-248],[-170,-249],[-171,-252],[-185,-273],[-193,-296],[-202,-318],[-205,-323],[-230,-365]],"c":true}],"h":1},{"t":215,"s":[{"i":[[-236.44,-377.38],[-244.06,-368.13],[-248.47,-347.45],[-252.9,-326.39],[-256.04,-305.7],[-254.37,-281.53],[-246.83,-254.72],[-241.54,-235.8],[-238.3,-222.96],[-235.58,-215.35],[-232.89,-209.95],[-230.4,-203.97],[-228.01,-197.65],[-226.45,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.28,-192.38],[-223.42,-191.64],[-222.19,-191.25],[-221.57,-190],[-221.31,-188.39],[-216.12,-182.62],[-204.87,-168.7],[-197.17,-150.41],[-188.7,-125.96],[-181.57,-111.13],[-172.38,-92.39],[-154.76,-125.28],[-149.5,-173.69],[-153.87,-212.29],[-164.43,-241.59],[-181.54,-265.04],[-192.85,-294.38],[-199.7,-315.6],[-202.3,-318.82],[-221.68,-350.63]],"o":[[-242.33,-374.41],[-247.13,-354.65],[-251.38,-333.29],[-255.23,-312.59],[-255.95,-290.17],[-249.81,-263.81],[-242.64,-240.32],[-239.37,-227.12],[-236.38,-217.13],[-233.84,-211.76],[-231.15,-206.15],[-228.83,-199.72],[-226.87,-195.79],[-225.6,-195.36],[-224.68,-194.58],[-224.37,-192.92],[-223.83,-191.76],[-222.6,-191.38],[-221.67,-190.56],[-221.39,-188.92],[-218.9,-185.34],[-209.36,-174.28],[-198.92,-156.89],[-191.79,-134.53],[-183.5,-114.77],[-172.47,-93.16],[-158.79,-114.99],[-149,-153.95],[-152.18,-201.03],[-160.25,-234.12],[-175.04,-257.6],[-190.28,-284.54],[-197.82,-307.97],[-202.82,-318.85],[-211.85,-334.9],[-232.82,-369.88]],"v":[[-240,-380],[-245.6,-361.39],[-250,-340],[-254.06,-319.49],[-256,-299],[-252.09,-272.67],[-244,-245],[-240.45,-231.46],[-237,-219],[-234.71,-213.56],[-232,-208],[-229.62,-201.85],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.47,-193.47],[-224,-192],[-223.01,-191.51],[-222,-191],[-221.48,-189.46],[-221,-188],[-214,-180],[-202,-163],[-195,-144],[-185,-118],[-181,-110],[-166,-103],[-152,-139],[-151,-189],[-157,-223],[-170,-250],[-186,-275],[-196,-303],[-202,-318],[-203,-320],[-230,-365]],"c":true}],"h":1},{"t":216,"s":[{"i":[[-236.9,-379.12],[-244.22,-367.75],[-248.45,-347.22],[-252.97,-326.52],[-256.09,-305.81],[-253.43,-276.22],[-243.65,-243.1],[-239.28,-225],[-234.65,-213.84],[-230.01,-201.25],[-226.33,-197.44],[-225.55,-194.76],[-220.95,-189.44],[-216.86,-183.32],[-209.96,-175.77],[-196.31,-145.67],[-185.37,-117.86],[-173.52,-96.08],[-165.17,-103.96],[-151.05,-135.36],[-149.78,-177.43],[-153.92,-212.07],[-164.5,-241.24],[-169.75,-249.63],[-169.77,-251.49],[-171.75,-252.65],[-182.13,-266.94],[-192.47,-295.98],[-204.19,-321.99],[-211.77,-333.06],[-214.77,-339.96],[-218.84,-345.08],[-221.77,-351.91],[-224.5,-355.23],[-228.2,-362.86],[-232.89,-369.15]],"o":[[-242.49,-374.14],[-247.2,-354.29],[-251.42,-333.36],[-255.3,-312.74],[-255.85,-287.92],[-247.33,-253.81],[-239.74,-229.66],[-236.75,-217.08],[-231.22,-205.86],[-227.74,-197.58],[-225.37,-196.16],[-223.37,-191.75],[-218.15,-185.21],[-212.74,-178.17],[-198.88,-160.12],[-187.26,-123.8],[-179.19,-105.28],[-169.78,-95.52],[-157.08,-118.06],[-149,-163.98],[-152.28,-201.16],[-160.05,-233.83],[-168.15,-249.32],[-170.31,-250.46],[-170.14,-252.31],[-177.21,-260.25],[-190.68,-284.77],[-199.37,-313.61],[-210.05,-331.76],[-214.22,-336.94],[-217.14,-343.9],[-221.21,-349.01],[-223.35,-354.59],[-227.08,-359.21],[-230.99,-367.72],[-236.08,-374.45]],"v":[[-240,-380],[-245.71,-361.02],[-250,-340],[-254.14,-319.63],[-256,-299],[-250.38,-265.01],[-241,-234],[-238,-221],[-233,-210],[-228,-198],[-226,-197],[-225,-194],[-220,-188],[-215,-181],[-208,-173],[-189,-128],[-182,-111],[-173,-96],[-164,-106],[-150,-150],[-151,-189],[-157,-223],[-168,-249],[-170,-250],[-170,-252],[-172,-253],[-186,-275],[-196,-305],[-209,-330],[-213,-335],[-216,-342],[-220,-347],[-223,-354],[-225,-356],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":217,"s":[{"i":[[-236.88,-379.08],[-243.92,-368.24],[-248.43,-348.17],[-252.94,-327.73],[-256.02,-307.53],[-255.05,-287.25],[-250.63,-267.26],[-244.91,-245.37],[-238.29,-222.42],[-234.65,-213.54],[-233.61,-208.29],[-227.92,-199.08],[-220.77,-189.36],[-206.86,-172.51],[-195.42,-143.31],[-185.25,-117.62],[-173.08,-91.75],[-163.73,-107.6],[-156,-123.34],[-149.59,-175.54],[-154.46,-215.06],[-157.85,-224.47],[-162.39,-238.7],[-170.59,-252.57],[-175.93,-258.49],[-178.73,-264.06],[-182.98,-269.29],[-192.17,-294.63],[-204.34,-322.14],[-212.22,-336.19],[-214.18,-339.15],[-218.96,-345.27],[-221.68,-351.75],[-225.95,-357.26],[-228.71,-363.79],[-233.03,-369.39]],"o":[[-242.2,-374.4],[-247.03,-355.13],[-251.43,-334.46],[-255.23,-314.26],[-255.98,-294.12],[-252.37,-273.82],[-247.02,-253.41],[-240.55,-229.88],[-235.51,-214.63],[-233.35,-210.45],[-231.21,-203.23],[-223.23,-191.57],[-212.26,-179.05],[-197.74,-154.76],[-187.05,-123.35],[-176.68,-100.18],[-165.83,-103.52],[-158.29,-118.31],[-146.87,-153.7],[-154.12,-208.06],[-156.08,-222.38],[-160.51,-233.74],[-168.11,-248.68],[-174.03,-257.47],[-178.26,-261.78],[-181.11,-267.7],[-190.06,-281.15],[-199.22,-313.72],[-210.34,-332.26],[-213.8,-337.84],[-216.89,-341.98],[-221.38,-349.3],[-224.03,-355.75],[-228.3,-361.15],[-231,-367.7],[-236.13,-374.53]],"v":[[-240,-380],[-245.47,-361.68],[-250,-341],[-254.09,-321],[-256,-301],[-253.71,-280.54],[-249,-261],[-242.73,-237.62],[-236,-216],[-234,-212],[-233,-207],[-226,-196],[-218,-186],[-203,-165],[-189,-128],[-182,-111],[-168,-100],[-162,-111],[-154,-130],[-153,-200],[-156,-222],[-158,-225],[-166,-245],[-173,-256],[-177,-260],[-180,-266],[-184,-271],[-196,-305],[-209,-330],[-213,-337],[-215,-340],[-220,-347],[-223,-354],[-227,-359],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":218,"s":[{"i":[[-236.4,-377.4],[-243.91,-368.3],[-248.43,-348.16],[-252.92,-328.02],[-256.01,-308.36],[-255.04,-288.29],[-250.61,-268.43],[-243.2,-237.9],[-231.67,-203.91],[-224.25,-193.5],[-221.9,-190.14],[-213.97,-180.56],[-203.83,-167.27],[-196.02,-147.05],[-185.96,-118.87],[-178.21,-104.17],[-173.02,-96],[-157.34,-120.54],[-148.76,-170.76],[-155.21,-219.49],[-164.43,-242.3],[-168.75,-248.63],[-168.77,-250.49],[-170.75,-251.63],[-172.12,-255.09],[-173.33,-257.09],[-177.67,-261.08],[-180.82,-267.18],[-184.89,-272.85],[-192.72,-294.18],[-198.86,-310.34],[-203.01,-319.5],[-206.31,-326.48],[-208.76,-328.59],[-210.94,-333.21],[-224.47,-355.64]],"o":[[-242.2,-374.47],[-247.03,-355.14],[-251.41,-334.59],[-255.22,-314.9],[-255.98,-295.08],[-252.35,-274.97],[-246.11,-250.45],[-235.98,-214.63],[-225.05,-194.68],[-222.67,-191.23],[-217.8,-184.92],[-206.98,-171.73],[-199.04,-156.11],[-189.48,-128.43],[-180.45,-107.91],[-174.5,-98.21],[-167.28,-95.1],[-146.94,-147.41],[-153.37,-208.11],[-160.23,-234.81],[-167.15,-248.32],[-169.31,-249.46],[-169.14,-251.32],[-172.26,-253.87],[-173.7,-256.73],[-175.32,-259.78],[-180.12,-264.62],[-183.43,-271.2],[-190.77,-284.3],[-197.57,-307.23],[-201.9,-317.43],[-206.16,-325.04],[-207.16,-328.34],[-210.14,-330.92],[-218,-345.12],[-232.87,-369.86]],"v":[[-240,-380],[-245.47,-361.72],[-250,-341],[-254.07,-321.46],[-256,-302],[-253.69,-281.63],[-249,-262],[-239.59,-226.27],[-226,-196],[-223.46,-192.36],[-221,-189],[-210.48,-176.15],[-202,-163],[-192.75,-137.74],[-182,-111],[-176.35,-101.19],[-173,-96],[-156,-124],[-152,-197],[-158,-228],[-167,-248],[-169,-249],[-169,-251],[-171,-252],[-173,-256],[-174,-258],[-179,-263],[-182,-269],[-186,-275],[-196,-303],[-200,-313],[-205,-323],[-207,-328],[-209,-329],[-212,-335],[-230,-365]],"c":true}],"h":1},{"t":219,"s":[{"i":[[-236.9,-379.12],[-243.99,-368],[-248.43,-348.08],[-252.9,-328.25],[-256.05,-308.4],[-254.28,-283.05],[-247.22,-255.94],[-242.8,-238.06],[-239.34,-225.14],[-236.79,-216.97],[-234.81,-210.73],[-231.47,-204.54],[-226.8,-198.07],[-225.57,-196.02],[-225.28,-194.38],[-223.38,-193.5],[-222.63,-190.78],[-219.02,-188.22],[-217.54,-184.71],[-215.58,-182.72],[-206.03,-171.2],[-195.63,-142.44],[-185.45,-118.95],[-173.91,-96.14],[-168.04,-100.67],[-154.24,-126.08],[-151.13,-194.11],[-159.89,-233.55],[-179.78,-261.94],[-196.12,-306.01],[-214.17,-337.5],[-219.76,-346.6],[-221.68,-351.81],[-225.89,-357.16],[-228.71,-363.79],[-232.89,-369.15]],"o":[[-242.27,-374.21],[-247.07,-354.93],[-251.37,-334.8],[-255.23,-315.05],[-255.92,-292.33],[-249.93,-264.86],[-243.88,-242.49],[-240.53,-229.39],[-237.39,-219.1],[-235.51,-212.78],[-233.06,-207.01],[-228.34,-200.08],[-225.68,-196.58],[-225.37,-194.92],[-224.66,-193.53],[-222.33,-192.11],[-220.97,-188.71],[-217.37,-186.25],[-216.51,-183.35],[-210.54,-176.46],[-198.23,-155.24],[-188.27,-124.87],[-179.17,-106.29],[-169.72,-95.48],[-160.63,-112.77],[-145.25,-161.93],[-158.12,-225.54],[-169.12,-252.71],[-193.29,-290.12],[-206.47,-327.12],[-218.15,-346.34],[-221.24,-349.09],[-224.14,-355.9],[-228.3,-361.15],[-231.01,-367.72],[-236.08,-374.45]],"v":[[-240,-380],[-245.53,-361.46],[-250,-341],[-254.06,-321.65],[-256,-302],[-252.11,-273.96],[-245,-247],[-241.66,-233.72],[-238,-221],[-236.15,-214.87],[-234,-209],[-229.9,-202.31],[-226,-197],[-225.47,-195.47],[-225,-194],[-223,-193],[-222,-190],[-218,-187],[-217,-184],[-215,-182],[-203,-165],[-190,-129],[-182,-112],[-173,-96],[-166,-104],[-152,-135],[-156,-216],[-163,-240],[-187,-277],[-202,-318],[-218,-346],[-220,-347],[-223,-354],[-227,-359],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":220,"s":[{"i":[[-236.9,-379.12],[-243.88,-368.24],[-248.43,-348.82],[-252.96,-329.21],[-256.05,-309.38],[-254.92,-288.85],[-250.44,-269.05],[-244.67,-243.38],[-236.83,-214.53],[-228.54,-199.49],[-220.36,-188.92],[-216.96,-184.9],[-215.48,-183.61],[-214.3,-181.76],[-213.48,-179.62],[-208.4,-175.06],[-205.72,-170.24],[-196.63,-144.24],[-185.45,-119.08],[-173.87,-96.14],[-167.66,-100.4],[-162.42,-110.06],[-150,-139.43],[-150.31,-181.07],[-156.55,-223.73],[-166.17,-245.93],[-169.75,-250.63],[-169.77,-252.49],[-171.75,-253.63],[-183.65,-269.52],[-195.88,-304],[-208.6,-329.95],[-217.75,-344.2],[-222.8,-352],[-227.65,-361.99],[-232.89,-369.15]],"o":[[-242.17,-374.33],[-247.01,-355.49],[-251.43,-335.77],[-255.26,-316.01],[-255.95,-295.83],[-252.17,-275.46],[-246.76,-253.61],[-239.71,-223.84],[-231.11,-203.28],[-223.17,-192.31],[-217.47,-185.34],[-215.96,-184.03],[-214.56,-182.44],[-213.76,-180.34],[-211.31,-176.81],[-206.35,-172.04],[-198.42,-157.7],[-188.2,-124.86],[-179.21,-106.28],[-170.51,-95.61],[-164.44,-105.45],[-154.32,-126.8],[-148.21,-168.98],[-154.1,-207.8],[-163.1,-240.32],[-168.15,-250.32],[-170.31,-251.46],[-170.14,-253.32],[-177.27,-261.8],[-192.77,-289.4],[-203.97,-321.67],[-215.52,-341.03],[-221.14,-349.93],[-226.33,-357.88],[-231.01,-367.72],[-236.08,-374.45]],"v":[[-240,-380],[-245.45,-361.86],[-250,-342],[-254.11,-322.61],[-256,-303],[-253.54,-282.16],[-249,-263],[-242.19,-233.61],[-233,-207],[-225.85,-195.9],[-218,-186],[-216.46,-184.46],[-215,-183],[-214.03,-181.05],[-213,-179],[-207,-173],[-205,-169],[-190,-129],[-182,-112],[-173,-96],[-166,-103],[-161,-113],[-149,-156],[-152,-193],[-161,-235],[-168,-250],[-170,-251],[-170,-253],[-172,-254],[-188,-279],[-200,-313],[-213,-337],[-220,-348],[-224,-354],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":221,"s":[{"i":[[-236.9,-379.12],[-243.36,-369.91],[-247.73,-353.6],[-251.39,-337.61],[-254.45,-321.96],[-255.6,-299.06],[-251.62,-275.37],[-246.6,-252.18],[-241.24,-229.93],[-236.68,-215.85],[-232.61,-205.67],[-229.83,-201.64],[-227.51,-199.7],[-226.57,-198],[-226.3,-196.39],[-221.49,-190.37],[-214.9,-182.53],[-209.31,-175.11],[-204.13,-167.44],[-195.83,-142.4],[-185.48,-119.09],[-173.69,-96.11],[-165.73,-103.81],[-150.13,-137.07],[-153.42,-205.15],[-161.48,-237.87],[-167.9,-248.76],[-183.35,-269.3],[-195.77,-303.05],[-205.96,-325.48],[-209.76,-330.59],[-211.84,-335.07],[-217.81,-344.56],[-222.8,-352],[-227.69,-362.06],[-232.89,-369.15]],"o":[[-241.74,-375.12],[-246.35,-359.16],[-250.16,-342.88],[-253.53,-327.15],[-256.03,-307.62],[-253.39,-282.93],[-248.23,-259.97],[-243.11,-237.16],[-237.87,-219.52],[-234.04,-208.93],[-230.58,-202.29],[-228.3,-200.35],[-226.67,-198.55],[-226.39,-196.92],[-223.79,-193.11],[-217.05,-185.09],[-211.04,-177.39],[-206.33,-170.31],[-198.31,-154.85],[-188.2,-124.85],[-179.28,-106.46],[-169.81,-95.49],[-156.34,-121.15],[-147.47,-176.82],[-159.96,-230.65],[-165.32,-245.68],[-175.98,-261.23],[-193.21,-289.86],[-202.32,-318.46],[-208.16,-330.35],[-211.04,-332.77],[-215.65,-341.41],[-221.35,-350.12],[-226.31,-357.84],[-231.01,-367.72],[-236.08,-374.45]],"v":[[-240,-380],[-244.85,-364.53],[-249,-348],[-252.46,-332.38],[-255,-317],[-254.49,-290.99],[-250,-268],[-244.85,-244.67],[-239,-223],[-235.36,-212.39],[-231,-203],[-229.07,-201],[-227,-199],[-226.48,-197.46],[-226,-196],[-219.27,-187.73],[-213,-180],[-208,-173],[-203,-165],[-190,-129],[-182,-112],[-173,-96],[-164,-107],[-149,-154],[-158,-223],[-164,-243],[-170,-252],[-188,-279],[-200,-313],[-208,-330],[-210,-331],[-213,-337],[-220,-348],[-224,-354],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":222,"s":[{"i":[[-236.89,-377.17],[-246.28,-359.98],[-254.21,-326.37],[-250.41,-269.49],[-241.07,-230.34],[-234.31,-208.51],[-228.63,-200.89],[-222.31,-192.04],[-210.32,-177.67],[-198.06,-150.13],[-193.2,-138.51],[-193.27,-135.89],[-191.21,-133.49],[-190.71,-129.63],[-187.74,-125.55],[-175.53,-96.44],[-166.07,-103.18],[-158.09,-117.47],[-156.02,-125.14],[-152.6,-132.66],[-150.7,-186.4],[-161.02,-237.12],[-170.62,-252.93],[-173.49,-256.26],[-175.16,-260.82],[-177.62,-262.59],[-180.57,-267.92],[-184.16,-272.66],[-195.12,-301.33],[-205.95,-325.45],[-209.76,-330.59],[-213.75,-339.33],[-219.05,-346.45],[-221.31,-351.48],[-223.76,-353.6],[-227.79,-362.32]],"o":[[-243.35,-370.63],[-251.29,-337.92],[-257.1,-288.31],[-242.93,-236.99],[-236.33,-215.82],[-230.54,-202.23],[-224.65,-195.24],[-214.69,-182.74],[-201.9,-163.3],[-194.89,-139.63],[-192.66,-137.13],[-192.89,-134.63],[-190.27,-131.3],[-189.37,-126.54],[-184.24,-118.25],[-169.89,-95.46],[-161.31,-111.97],[-155.98,-122.37],[-154.16,-130.37],[-145.59,-159.86],[-157.56,-224.08],[-166.59,-248.14],[-172.59,-255.9],[-174.89,-258.29],[-176.3,-262.43],[-180.04,-265.19],[-182.94,-271.37],[-192.29,-285.71],[-202.29,-318.49],[-208.16,-330.35],[-212.19,-334.79],[-216.98,-344.6],[-221.23,-350.01],[-222.15,-353.34],[-226.24,-357.75],[-232.7,-370.49]],"v":[[-240,-380],[-249,-348],[-255,-316],[-245,-246],[-239,-224],[-231,-203],[-228,-200],[-219,-188],[-207,-172],[-195,-140],[-193,-138],[-193,-135],[-191,-133],[-190,-128],[-187,-124],[-173,-96],[-164,-107],[-157,-120],[-155,-128],[-152,-135],[-155,-210],[-165,-245],[-172,-255],[-174,-257],[-176,-262],[-178,-263],[-182,-270],[-185,-274],[-200,-313],[-208,-330],[-210,-331],[-216,-343],[-220,-348],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":223,"s":[{"i":[[-236.89,-377.17],[-243.25,-370.38],[-247.56,-354.11],[-251.49,-337.65],[-254.62,-321.23],[-255.05,-294.57],[-249.93,-268.06],[-245.71,-247.41],[-241.84,-229.72],[-234.91,-211.39],[-224.48,-195.21],[-215.9,-184.79],[-208.92,-175.27],[-197.98,-149.87],[-193.2,-138.51],[-193.27,-135.89],[-191.21,-133.49],[-190.71,-129.63],[-187.74,-125.55],[-175.15,-96.37],[-164.98,-104.24],[-159.39,-116.81],[-149.86,-140.65],[-150.05,-179.59],[-156.62,-219.09],[-163.78,-242.78],[-173.78,-257.65],[-178.38,-264.06],[-180.49,-266.26],[-182.12,-270.66],[-185.01,-274.41],[-194.22,-298.04],[-212.6,-337.23],[-221.4,-351.68],[-223.76,-353.6],[-227.69,-362.16]],"o":[[-241.72,-375.32],[-246.17,-359.77],[-250.17,-343.04],[-253.71,-326.75],[-255.84,-304.29],[-252.1,-276.46],[-246.79,-253.3],[-243.23,-235.62],[-237.92,-217.54],[-228.19,-200.23],[-218.44,-187.9],[-211.14,-178.48],[-202.33,-164.04],[-194.89,-139.63],[-192.66,-137.13],[-192.89,-134.63],[-190.27,-131.3],[-189.37,-126.54],[-184.37,-118.53],[-170.14,-95.51],[-160.5,-112.26],[-153.88,-129.41],[-147.69,-166.78],[-154.21,-206.02],[-162.02,-236.52],[-168.39,-251.53],[-177.1,-262.66],[-179.59,-265.9],[-181.84,-268.23],[-183.89,-273.37],[-191.87,-285.43],[-203.55,-322.63],[-220.98,-350.56],[-222.15,-353.34],[-226.29,-357.74],[-232.7,-370.49]],"v":[[-240,-380],[-244.71,-365.07],[-249,-348],[-252.6,-332.2],[-255,-316],[-253.57,-285.52],[-248,-259],[-244.47,-241.52],[-240,-224],[-231.55,-205.81],[-221,-191],[-213.52,-181.63],[-207,-172],[-195,-140],[-193,-138],[-193,-135],[-191,-133],[-190,-128],[-187,-124],[-173,-96],[-164,-106],[-158,-120],[-149,-151],[-152,-192],[-160,-230],[-166,-247],[-176,-261],[-179,-265],[-181,-267],[-183,-272],[-186,-276],[-198,-308],[-220,-349],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":224,"s":[{"i":[[-236.99,-377.31],[-243.39,-370.14],[-247.6,-353.82],[-251.58,-337.35],[-254.63,-321.16],[-255.28,-300.07],[-252.34,-279.19],[-245.06,-242.98],[-240.62,-227.94],[-234.57,-207.72],[-230.7,-203.04],[-226,-198.25],[-223.79,-193.99],[-214.94,-184.3],[-211.25,-179.37],[-211.23,-177.51],[-209.24,-176.38],[-209.23,-174.52],[-207.24,-173.41],[-198.49,-149.24],[-189.47,-129.13],[-175.08,-96.36],[-169.95,-97.44],[-159.83,-115.82],[-149.91,-140.18],[-151.86,-191.88],[-161.61,-238.32],[-168.28,-248.82],[-170.12,-253.68],[-183.49,-270.21],[-195.02,-297.49],[-206.5,-327.05],[-217.46,-344.04],[-221.31,-351.48],[-223.76,-353.6],[-227.73,-362.22]],"o":[[-241.84,-375.23],[-246.27,-359.43],[-250.26,-342.77],[-253.76,-326.54],[-255.61,-307.47],[-253.65,-285.92],[-248.48,-258.5],[-241.48,-228.96],[-237.41,-217.89],[-230.23,-203.2],[-228.76,-200.14],[-223.96,-195.7],[-219.46,-188.55],[-212.85,-179.68],[-210.69,-178.54],[-210.85,-176.67],[-208.7,-175.53],[-208.84,-173.65],[-200.97,-162.58],[-192.14,-133.34],[-183.63,-116.99],[-171.1,-95.67],[-163.54,-105.86],[-153.9,-129.37],[-146.7,-174.67],[-158.76,-225.39],[-166.62,-248.23],[-169.89,-251.47],[-176.67,-263.51],[-192.56,-287.89],[-201.43,-315.8],[-214.2,-338.94],[-221.27,-349.98],[-222.15,-353.34],[-226.27,-357.71],[-232.71,-370.5]],"v":[[-240,-380],[-244.83,-364.79],[-249,-348],[-252.67,-331.95],[-255,-316],[-254.46,-293],[-251,-272],[-242,-231],[-240,-226],[-231,-204],[-230,-202],[-225,-197],[-223,-193],[-213,-180],[-211,-179],[-211,-177],[-209,-176],[-209,-174],[-207,-173],[-194,-138],[-187,-124],[-173,-96],[-168,-100],[-158,-120],[-149,-150],[-156,-212],[-166,-247],[-169,-250],[-171,-255],[-188,-279],[-198,-306],[-211,-334],[-220,-348],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":225,"s":[{"i":[[-234.36,-374.21],[-243.53,-369.87],[-247.59,-353.66],[-251.57,-337.55],[-254.62,-321.28],[-255.24,-302.01],[-252.93,-284.34],[-246.74,-248.3],[-234.31,-207.88],[-220.61,-190.26],[-210.75,-178.69],[-202.95,-163.24],[-195.41,-141.87],[-189.66,-128.75],[-185.07,-119.2],[-179.49,-107.7],[-173.55,-96.09],[-170.23,-96.97],[-166.97,-102.43],[-163.13,-109.04],[-159.02,-117.64],[-156.2,-123.79],[-153.58,-129.21],[-151.66,-135.37],[-150.42,-140.8],[-150.34,-181.74],[-160.43,-236.98],[-176.78,-262.15],[-181.49,-268.26],[-183.18,-272.75],[-185.65,-274.54],[-186.56,-277.3],[-195.49,-299.61],[-207.69,-328.56],[-215.22,-341.13],[-221.68,-351.22]],"o":[[-241.98,-375.04],[-246.33,-359.18],[-250.26,-342.91],[-253.75,-326.74],[-255.53,-308.58],[-253.94,-289.88],[-249.33,-263.61],[-239.22,-220.44],[-223.98,-193.92],[-213.99,-182.65],[-205.25,-169.31],[-198.03,-149.53],[-190.88,-131.4],[-186.76,-122.65],[-181.71,-112.4],[-175.41,-99.54],[-171.5,-95.76],[-167.97,-100.31],[-164.62,-106.22],[-160.33,-114.75],[-157.16,-121.94],[-154.41,-127.43],[-152.2,-133.47],[-150.77,-139.03],[-146.12,-163.28],[-157.22,-219.83],[-170.32,-255.09],[-180.59,-267.9],[-182.9,-270.32],[-184.29,-274.44],[-186.58,-275.77],[-192.61,-287.01],[-202.74,-319.02],[-213.69,-338.93],[-219.37,-347.83],[-228.89,-362.96]],"v":[[-240,-380],[-244.93,-364.53],[-249,-348],[-252.66,-332.14],[-255,-316],[-254.59,-295.94],[-252,-279],[-242.98,-234.37],[-227,-198],[-217.3,-186.46],[-208,-174],[-200.49,-156.39],[-192,-134],[-188.21,-125.7],[-183,-115],[-177.45,-103.62],[-173,-96],[-169.1,-98.64],[-166,-104],[-161.73,-111.9],[-158,-120],[-155.31,-125.61],[-153,-131],[-151.21,-137.2],[-150,-143],[-154,-202],[-167,-249],[-180,-267],[-182,-269],[-184,-274],[-186,-275],[-187,-278],[-199,-309],[-212,-336],[-217,-344],[-224,-355]],"c":true}],"h":1},{"t":226,"s":[{"i":[[-234.34,-375.02],[-243.56,-369.88],[-247.68,-353.55],[-251.58,-337.39],[-254.64,-321.36],[-254.81,-294.34],[-249.57,-266.74],[-246.79,-251.29],[-244.8,-241.31],[-240.76,-226.04],[-234.63,-211.44],[-231.19,-205.4],[-230.24,-203.25],[-229.55,-202.36],[-229.35,-201.51],[-225.48,-197.92],[-218.93,-188.78],[-210.19,-177.74],[-198.81,-149.61],[-187.11,-123.3],[-174.1,-96.18],[-168.01,-100.77],[-161.08,-111.71],[-157.33,-122.59],[-153.69,-129.09],[-149.86,-142.55],[-149.86,-180.79],[-157.04,-220.03],[-167.64,-248.54],[-172.75,-256.63],[-172.77,-258.49],[-176.36,-262.13],[-185.8,-274.64],[-197.2,-303.99],[-213.86,-338.79],[-223.6,-355.13]],"o":[[-241.97,-375.1],[-246.41,-359.1],[-250.26,-342.71],[-253.77,-326.72],[-255.77,-304.47],[-251.71,-275.47],[-247.4,-254.64],[-245.5,-244.63],[-242.45,-231.57],[-236.85,-215.97],[-231.57,-206.28],[-230.53,-203.89],[-229.62,-202.61],[-229.41,-201.81],[-227.69,-199.07],[-221.34,-192.54],[-213.34,-181.56],[-202.5,-164.62],[-189.8,-128.97],[-180.43,-109.8],[-169.98,-95.51],[-164.99,-105.62],[-158.07,-118.1],[-155.24,-127.95],[-151,-136.57],[-146.62,-166.77],[-155.24,-208.53],[-163.05,-240.27],[-171.15,-256.32],[-173.31,-257.46],[-173.58,-260.29],[-181.53,-269.13],[-194.45,-291.86],[-205.86,-326.79],[-221.89,-352.15],[-230.28,-364.05]],"v":[[-240,-380],[-244.98,-364.49],[-249,-348],[-252.68,-332.06],[-255,-316],[-253.26,-284.91],[-248,-258],[-246.15,-247.96],[-244,-238],[-238.81,-221],[-232,-207],[-230.86,-204.65],[-230,-203],[-229.48,-202.09],[-229,-201],[-224,-196],[-216,-185],[-208,-174],[-192,-134],[-183,-115],[-173,-96],[-166,-104],[-160,-114],[-156,-126],[-153,-131],[-149,-149],[-153,-197],[-160,-230],[-171,-256],[-173,-257],[-173,-259],[-177,-263],[-189,-281],[-201,-314],[-220,-349],[-225,-357]],"c":true}],"h":1},{"t":227,"s":[{"i":[[-235.8,-376.23],[-243.58,-369.83],[-247.64,-353.6],[-252.63,-333.07],[-255.55,-309.94],[-253.28,-284.58],[-248.54,-259.23],[-244.97,-240.49],[-241.5,-226.42],[-238.4,-218.4],[-235.68,-214.37],[-234.25,-210.91],[-233.48,-207.8],[-232.46,-206.65],[-231.16,-206.22],[-230.55,-203.76],[-225.94,-198.42],[-221.79,-192.25],[-210.48,-178.56],[-198.83,-151.36],[-194.21,-140.5],[-193.66,-136.51],[-190.66,-132.48],[-189.74,-127.7],[-186.84,-123.72],[-174.97,-96.32],[-168.56,-100.77],[-161.59,-111.66],[-152.9,-131.33],[-152.74,-196.27],[-163.57,-242.89],[-174.85,-260.65],[-185.09,-274.71],[-198.62,-310.63],[-211.13,-334.39],[-223.5,-354.73]],"o":[[-242.01,-375.03],[-246.39,-359.12],[-250.86,-340.35],[-254.98,-317.87],[-254.51,-292.97],[-250.3,-267.71],[-245.97,-245.53],[-242.74,-230.93],[-239.31,-219.97],[-236.59,-215.6],[-234.51,-212.02],[-233.73,-208.81],[-232.88,-206.79],[-231.6,-206.36],[-230.37,-205.16],[-228.43,-200.82],[-223.29,-194.43],[-215.15,-183.89],[-203.13,-164.71],[-195.89,-141.63],[-193.36,-138.49],[-192.41,-133.65],[-189.27,-129.37],[-188.42,-124.66],[-183.52,-116.91],[-169.29,-95.4],[-164.26,-107.87],[-156.09,-123.23],[-144.13,-166.77],[-160.41,-230.85],[-170.74,-256.02],[-181.65,-270.05],[-195.28,-293.21],[-207.85,-329.97],[-218.83,-346.77],[-231.62,-367.85]],"v":[[-240,-380],[-244.98,-364.47],[-249,-348],[-253.81,-325.47],[-255,-301],[-251.79,-276.14],[-247,-251],[-243.85,-235.71],[-240,-222],[-237.5,-217],[-235,-213],[-233.99,-209.86],[-233,-207],[-232.03,-206.51],[-231,-206],[-230,-203],[-225,-197],[-220,-190],[-207,-172],[-196,-142],[-194,-140],[-193,-135],[-190,-131],[-189,-126],[-186,-122],[-173,-96],[-166,-105],[-160,-115],[-151,-139],[-158,-220],[-168,-251],[-178,-265],[-188,-280],[-205,-324],[-214,-339],[-228,-362]],"c":true}],"h":1},{"t":228,"s":[{"i":[[-235.09,-375.53],[-243.55,-370.23],[-247.4,-353.46],[-252.55,-332.73],[-255.55,-310.23],[-253.22,-285.75],[-248.5,-260.3],[-244.44,-235.71],[-236.95,-216.9],[-233.76,-208.25],[-231.33,-206.44],[-230.58,-203.77],[-227.08,-200.41],[-222.19,-192.8],[-215.04,-184.91],[-205.64,-169.85],[-200.24,-156.35],[-197.35,-145.43],[-192.52,-136.33],[-186.81,-121.58],[-173.38,-96.06],[-163.61,-109.08],[-156.47,-122.94],[-148.45,-148.54],[-153.43,-199.52],[-159.62,-227.85],[-162.83,-236.47],[-163.99,-242.73],[-180.79,-267.19],[-200.3,-316.07],[-211.88,-335.17],[-214.92,-341.24],[-217.38,-345.63],[-219.76,-347.61],[-221.66,-352.87],[-225.83,-358.15]],"o":[[-242.1,-375.25],[-246.2,-359.33],[-250.77,-339.86],[-254.94,-317.92],[-254.47,-294.1],[-250.23,-268.85],[-245.51,-243.78],[-240.2,-222.32],[-234.16,-211.32],[-232.75,-206.58],[-230.35,-205.14],[-229.06,-201.75],[-223.85,-196.18],[-217.75,-187.12],[-208.78,-175.99],[-201.72,-159.68],[-197.65,-149.34],[-194.7,-138.69],[-188.91,-128.41],[-180.09,-108.22],[-168.62,-95.29],[-159.15,-117.16],[-151.65,-136.22],[-147.09,-180.03],[-158.61,-222],[-161.09,-234.38],[-163.79,-239.47],[-171.05,-258.66],[-197.68,-297.22],[-209.95,-333.73],[-214.03,-338.67],[-217.08,-344.76],[-218.15,-347.33],[-221.27,-350.01],[-224.09,-356.74],[-231.2,-366.68]],"v":[[-240,-380],[-244.88,-364.78],[-249,-347],[-253.74,-325.32],[-255,-302],[-251.73,-277.3],[-247,-252],[-242,-228],[-235,-213],[-233,-207],[-231,-206],[-230,-203],[-226,-199],[-220,-190],[-213,-182],[-203,-163],[-199,-153],[-196,-142],[-191,-133],[-183,-114],[-173,-96],[-162,-112],[-155,-127],[-148,-159],[-157,-215],[-161,-234],[-163,-237],[-165,-245],[-188,-280],[-209,-332],[-213,-337],[-216,-343],[-218,-347],[-220,-348],[-223,-355],[-227,-360]],"c":true}],"h":1},{"t":229,"s":[{"i":[[-237.67,-379.75],[-243.65,-369.86],[-247.48,-353.13],[-251.69,-336.33],[-254.78,-319.67],[-254.55,-299.43],[-251.03,-278.06],[-246.91,-249.39],[-239.98,-220.46],[-226.12,-198.3],[-209.63,-177.83],[-201.84,-159.6],[-194.23,-138.93],[-188.61,-127.05],[-183.8,-117.57],[-178.55,-106.48],[-173.69,-96.11],[-169.84,-97.25],[-165.5,-105.04],[-156.54,-123.16],[-148.58,-147.5],[-148.08,-174.55],[-153.62,-198.5],[-159.01,-222.99],[-163.87,-242.11],[-169.78,-254.28],[-176.67,-263.78],[-186.2,-276.82],[-201.2,-318.22],[-211.53,-335.27],[-219.05,-347.68],[-222.75,-352.63],[-222.77,-354.49],[-224.76,-355.61],[-226.87,-360.06],[-232.89,-369.56]],"o":[[-242.16,-375.04],[-246.31,-358.91],[-250.3,-341.75],[-253.93,-325.29],[-255.28,-306.65],[-252.42,-285.14],[-248.42,-260.15],[-242.69,-229.54],[-231.8,-205.13],[-215.03,-184.65],[-203.98,-165.64],[-196.97,-146.25],[-189.96,-129.76],[-185.52,-120.96],[-180.45,-110.93],[-175.17,-99.08],[-171.34,-95.73],[-166.92,-101.9],[-160.24,-115.41],[-150.71,-139.2],[-147.27,-166.55],[-151.26,-190.52],[-157.57,-215.94],[-162.16,-236.08],[-167.69,-250.89],[-174.27,-260.72],[-182.51,-271.85],[-198.37,-299.35],[-210.31,-334.55],[-215.16,-340.88],[-221.15,-352.32],[-223.31,-353.46],[-223.15,-355.33],[-226.13,-357.79],[-230.55,-366.38],[-236.51,-375.46]],"v":[[-240,-380],[-244.98,-364.38],[-249,-347],[-252.81,-330.81],[-255,-314],[-253.48,-292.28],[-250,-271],[-244.8,-239.46],[-236,-213],[-220.58,-191.47],[-206,-170],[-199.4,-152.93],[-191,-132],[-187.07,-124],[-182,-114],[-176.86,-102.78],[-173,-96],[-168.38,-99.58],[-164,-108],[-153.62,-131.18],[-148,-156],[-149.67,-182.54],[-156,-209],[-160.59,-229.54],[-166,-247],[-172.02,-257.5],[-179,-267],[-189,-282],[-210,-334],[-212,-336],[-221,-352],[-223,-353],[-223,-355],[-225,-356],[-228,-362],[-235,-373]],"c":true}],"h":1},{"t":230,"s":[{"i":[[-238.95,-380.35],[-243.65,-369.86],[-247.48,-353.13],[-251.7,-336.34],[-254.81,-319.66],[-254.7,-300.53],[-251.94,-280.44],[-248.21,-254.01],[-242.31,-226.31],[-235.99,-213.33],[-231.06,-205.34],[-229.49,-202.68],[-228.12,-202.18],[-227.26,-200.61],[-226.55,-198.71],[-225.1,-197.29],[-223.34,-196.42],[-222.29,-194.74],[-221.38,-192.48],[-217.49,-187.79],[-212.49,-181.5],[-207.58,-172.46],[-203.33,-161.61],[-196.47,-144.57],[-189.74,-130.74],[-175.89,-96.47],[-162.79,-111.28],[-152.69,-130.95],[-149.3,-182.21],[-162.21,-237.85],[-170.68,-255.85],[-183.06,-271.58],[-196.06,-297.66],[-205.38,-324.51],[-219.24,-348.36],[-233.59,-372.42]],"o":[[-242.16,-375.04],[-246.31,-358.91],[-250.3,-341.76],[-253.96,-325.29],[-255.23,-307.31],[-253.05,-287.09],[-249.55,-264.1],[-244.58,-235.11],[-237.71,-216.16],[-232.66,-207.92],[-229.93,-202.84],[-228.59,-202.35],[-227.49,-201.26],[-226.79,-199.34],[-225.68,-197.58],[-223.93,-196.71],[-222.6,-195.5],[-221.68,-193.23],[-219.24,-189.79],[-214.11,-183.64],[-209.1,-175.8],[-204.16,-164.97],[-199.59,-151.46],[-191.54,-133.81],[-185.19,-120.97],[-167.73,-95.14],[-157.27,-122.75],[-144.77,-159.24],[-158.33,-220.24],[-170.12,-253.17],[-176.6,-265.53],[-192.84,-288.25],[-202.43,-315.74],[-214.28,-340.86],[-228.93,-363.91],[-239.32,-379.39]],"v":[[-240,-380],[-244.98,-364.38],[-249,-347],[-252.83,-330.82],[-255,-314],[-253.88,-293.81],[-251,-274],[-246.39,-244.56],[-239,-219],[-234.33,-210.63],[-230,-203],[-229.04,-202.52],[-228,-202],[-227.03,-199.98],[-226,-198],[-224.51,-197],[-223,-196],[-221.99,-193.98],[-221,-192],[-215.8,-185.72],[-211,-179],[-206,-169],[-202,-158],[-193,-137],[-188,-127],[-173,-96],[-161,-115],[-151,-137],[-154,-202],[-169,-251],[-172,-258],[-188,-280],[-199,-306],[-210,-333],[-224,-356],[-239,-379]],"c":true}],"h":1},{"t":231,"s":[{"i":[[-237.41,-378.78],[-243.53,-369.46],[-248.46,-352.34],[-252.54,-334.87],[-255,-316.89],[-254.16,-298.04],[-250.82,-278.45],[-248.43,-258.56],[-245.59,-239.79],[-240.34,-222.58],[-233,-208.2],[-223.53,-195.75],[-213.72,-183.64],[-207.65,-172.6],[-203.43,-161.9],[-199.39,-151.32],[-194.73,-140.77],[-189.81,-130.72],[-175.51,-96.41],[-166.57,-102],[-158.17,-118.35],[-156.03,-126.31],[-153.39,-131.02],[-148.49,-147.79],[-151.43,-189.48],[-162.67,-241.82],[-176.72,-264.46],[-187.08,-278.6],[-201.82,-319.09],[-211.52,-335.17],[-215.4,-341.38],[-218.86,-348.26],[-224.72,-357.37],[-228.4,-363.68],[-230.76,-365.61],[-232.87,-370.12]],"o":[[-241.8,-374.79],[-246.86,-358.23],[-251.29,-340.68],[-254.39,-322.98],[-255,-304.57],[-252.07,-284.99],[-249.13,-265.17],[-246.66,-245.87],[-242.34,-227.98],[-235.67,-212.69],[-226.92,-199.68],[-216.93,-187.73],[-209.18,-175.9],[-204.78,-165.6],[-200.78,-154.68],[-196.37,-144.36],[-191.51,-133.76],[-185.27,-121.38],[-170.42,-95.58],[-160.93,-112.96],[-155.98,-123.3],[-154.73,-129.69],[-150.46,-138.49],[-145.87,-175.82],[-159.15,-223.06],[-172.69,-259.84],[-183.52,-273.86],[-199.3,-301.23],[-210.33,-334.61],[-213.84,-339.19],[-218.16,-345.89],[-222.53,-353.85],[-227.98,-362.56],[-229.15,-365.34],[-232.05,-367.68],[-236.06,-375.43]],"v":[[-240,-380],[-245.19,-363.84],[-250,-346],[-253.47,-328.92],[-255,-311],[-253.11,-291.51],[-250,-272],[-247.55,-252.22],[-244,-234],[-238,-217.63],[-230,-204],[-220.23,-191.74],[-211,-179],[-206.21,-169.1],[-202,-158],[-197.88,-147.84],[-193,-137],[-188,-127],[-173,-96],[-164,-107],[-157,-121],[-155,-129],[-153,-132],[-148,-153],[-155,-205],[-170,-255],[-180,-269],[-190,-284],[-210,-334],[-212,-336],[-217,-344],[-220,-350],[-227,-361],[-229,-365],[-231,-366],[-234,-372]],"c":true}],"h":1},{"t":232,"s":[{"i":[[-237.41,-378.78],[-243.6,-369.41],[-248.5,-352.21],[-252.58,-334.74],[-255.01,-316.98],[-254.55,-302.59],[-252.63,-288.67],[-249.31,-261.12],[-243.65,-229.32],[-238.2,-217.26],[-234.48,-210.5],[-232.51,-208.33],[-230.61,-205.83],[-227.95,-202.12],[-225.48,-198.08],[-224.49,-196.68],[-223.12,-196.16],[-221.08,-193.57],[-218.76,-190.89],[-217.29,-188.8],[-216.37,-186.54],[-205.13,-168.22],[-198.5,-148.64],[-191.46,-132.99],[-174.9,-96.31],[-163.6,-108.92],[-150.64,-139.14],[-147.55,-170.37],[-154.59,-201.44],[-167.22,-250.37],[-185.87,-276.35],[-201.86,-318.84],[-211.53,-335.19],[-217.29,-345.7],[-224.7,-357.35],[-231.68,-368.14]],"o":[[-241.85,-374.8],[-246.93,-358.11],[-251.32,-340.5],[-254.43,-322.98],[-254.99,-307.01],[-253.37,-293.42],[-250.49,-272.71],[-245.89,-239.42],[-239.46,-219.77],[-235.71,-212.63],[-233.2,-209.17],[-231.21,-206.66],[-228.95,-203.58],[-226.21,-199.37],[-224.93,-196.85],[-223.59,-196.34],[-221.95,-194.63],[-219.48,-191.7],[-217.6,-189.53],[-216.67,-187.3],[-209.95,-177.35],[-199.22,-152.16],[-194.25,-138.32],[-186.06,-122.08],[-168.21,-95.22],[-155.68,-126.29],[-147.58,-153.77],[-149.17,-187.01],[-162.5,-235.21],[-180.09,-269.6],[-199.07,-300.79],[-210.32,-334.59],[-214.97,-341.14],[-222.5,-353.98],[-229.55,-365.06],[-236.06,-375.43]],"v":[[-240,-380],[-245.26,-363.76],[-250,-346],[-253.5,-328.86],[-255,-311],[-253.96,-298.01],[-252,-284],[-247.6,-250.27],[-240,-221],[-236.95,-214.95],[-234,-210],[-231.86,-207.5],[-230,-205],[-227.08,-200.74],[-225,-197],[-224.04,-196.51],[-223,-196],[-220.28,-192.64],[-218,-190],[-216.98,-188.05],[-216,-186],[-201,-157],[-197,-145],[-188,-126],[-173,-96],[-159,-119],[-149,-147],[-148,-175],[-158,-216],[-175,-262],[-190,-284],[-210,-334],[-212,-336],[-220,-350],[-227,-361],[-234,-372]],"c":true}],"h":1},{"t":233,"s":[{"i":[[-236.49,-376.56],[-243.36,-369.98],[-248.44,-353.37],[-252.53,-335.88],[-255,-317.74],[-254.53,-303.4],[-252.57,-289.65],[-249.47,-261.93],[-243.74,-230.41],[-237.99,-217.42],[-234.74,-210.77],[-230.68,-206.31],[-226.29,-200.68],[-221.59,-194.11],[-216.46,-186.52],[-205.33,-168.06],[-200.76,-155.29],[-197.96,-147.32],[-191.47,-133.02],[-174.95,-96.32],[-160.72,-115.17],[-154.71,-127.14],[-146.76,-162.18],[-154.34,-202.34],[-165.33,-246.8],[-178.88,-267.31],[-182.75,-272.64],[-186.72,-277.99],[-189.32,-282.77],[-198.36,-306.14],[-205.92,-322.51],[-208.49,-331.12],[-213.52,-338.55],[-217.56,-346.69],[-222.64,-352.88],[-226.42,-360.47]],"o":[[-241.63,-375.04],[-246.76,-359.14],[-251.28,-341.76],[-254.39,-323.87],[-255,-307.82],[-253.32,-294.32],[-250.6,-273.47],[-246.04,-240.39],[-239.12,-220.03],[-235.8,-212.79],[-232.29,-208.22],[-227.68,-202.54],[-223.36,-196.85],[-218.14,-188.95],[-209.57,-179.33],[-202.02,-158.05],[-199.08,-150.23],[-194.16,-138.11],[-186.1,-122.15],[-167.61,-95.13],[-157.66,-121.99],[-149.14,-142.96],[-149.19,-187.3],[-161.7,-231.8],[-173.97,-262.35],[-181.14,-272.32],[-184.93,-275.79],[-188.9,-281.41],[-195.87,-294.6],[-203.99,-320.52],[-208.3,-328],[-211.22,-336.33],[-216.59,-343.63],[-220.42,-351.27],[-225.62,-357.52],[-231.45,-368.51]],"v":[[-240,-380],[-245.06,-364.56],[-250,-347],[-253.46,-329.88],[-255,-312],[-253.92,-298.86],[-252,-285],[-247.75,-251.16],[-240,-222],[-236.9,-215.1],[-234,-210],[-229.18,-204.43],[-225,-199],[-219.86,-191.53],[-215,-185],[-203,-161],[-200,-153],[-197,-145],[-188,-126],[-173,-96],[-159,-119],[-153,-132],[-148,-175],[-158,-217],[-171,-257],[-181,-272],[-183,-273],[-188,-280],[-190,-284],[-203,-318],[-207,-325],[-210,-334],[-215,-341],[-219,-349],[-224,-355],[-228,-363]],"c":true}],"h":1},{"t":234,"s":[{"i":[[-236.68,-377.79],[-243.39,-371.14],[-246.66,-356.32],[-250.49,-341.98],[-253.67,-328.61],[-254.21,-300.02],[-249.72,-264.21],[-246.59,-244.25],[-244.13,-233.35],[-242.13,-227.68],[-240.57,-224.3],[-237.91,-218],[-234.19,-210.24],[-232.3,-208.04],[-231.41,-206.42],[-228.88,-203.72],[-225.97,-200.25],[-219.66,-191.98],[-212.27,-180.45],[-204.87,-164.81],[-198.19,-147.29],[-192.83,-135.03],[-187.81,-125.65],[-174.71,-96.28],[-157.21,-122.93],[-147.07,-151.03],[-150.23,-186.3],[-162.93,-242.48],[-177.5,-266.13],[-188.35,-281.01],[-203.56,-319.72],[-211.77,-334.57],[-213.07,-339.27],[-216.86,-344.13],[-224.22,-355.93],[-229.36,-364.36]],"o":[[-242.06,-375.73],[-245.69,-361.44],[-249.15,-346.42],[-252.75,-333.07],[-254.85,-312.16],[-251.65,-276.04],[-247.28,-248.32],[-245.02,-236.76],[-242.59,-228.78],[-241.12,-225.44],[-239.06,-220.88],[-235.47,-212.68],[-232.6,-208.58],[-231.71,-206.97],[-229.9,-204.85],[-226.92,-201.42],[-222.28,-195.5],[-214.66,-184.45],[-207.28,-170.67],[-200.33,-153.13],[-194.43,-138.2],[-189.52,-128.75],[-183.26,-116.46],[-167.23,-95.06],[-151.69,-136.91],[-146.93,-177.02],[-158.19,-217.03],[-173.57,-261.63],[-184.52,-275.91],[-199.27,-301.56],[-210.16,-334.36],[-212.92,-336.74],[-215.04,-342.95],[-220.55,-350.16],[-227.87,-362.22],[-233.77,-371.44]],"v":[[-240,-380],[-244.54,-366.29],[-248,-351],[-251.62,-337.53],[-254,-324],[-252.93,-288.03],[-248,-253],[-245.81,-240.5],[-243,-230],[-241.62,-226.56],[-240,-223],[-236.69,-215.34],[-233,-209],[-232,-207.5],[-231,-206],[-227.9,-202.57],[-225,-199],[-217.16,-188.22],[-210,-176],[-202.6,-158.97],[-196,-142],[-191.18,-131.89],[-186,-122],[-173,-96],[-156,-126],[-147,-164],[-153,-197],[-171,-257],[-181,-271],[-191,-286],[-210,-334],[-212,-335],[-214,-341],[-218,-346],[-226,-359],[-231,-367]],"c":true}],"h":1},{"t":235,"s":[{"i":[[-238.4,-379.79],[-243.08,-372.03],[-246.08,-359.11],[-247.51,-354.19],[-248.93,-352.26],[-251.25,-342.8],[-253.67,-328.53],[-254.22,-304.54],[-251.08,-273.96],[-245.47,-235.82],[-236.88,-213.97],[-232.22,-208.65],[-225.79,-200.58],[-222.6,-194.78],[-217.55,-190.28],[-216.23,-186.51],[-214.24,-185.41],[-212.71,-182.23],[-208.31,-173.18],[-203.69,-161.47],[-193.71,-137.56],[-174.69,-96.27],[-165.75,-104.23],[-154.41,-127.67],[-146.75,-155.78],[-150.97,-188.62],[-161.65,-229.11],[-169.36,-253.46],[-185.35,-275.64],[-198.04,-302.75],[-207.66,-326.37],[-212.38,-337.98],[-216.95,-344.29],[-219.78,-350.14],[-225.73,-359.54],[-232.76,-370.43]],"o":[[-241.79,-376.22],[-245.22,-363.47],[-247.04,-354.81],[-248.45,-352.92],[-250.16,-347.54],[-253,-333.3],[-254.68,-314.55],[-252.42,-284.24],[-248.42,-249.41],[-239.28,-220.83],[-233.41,-210.34],[-228.49,-203.58],[-223.33,-197.03],[-220.21,-191.65],[-215.69,-187.55],[-215.84,-185.65],[-213.37,-183.91],[-209.87,-177.31],[-205.13,-165.45],[-198.39,-147.45],[-186.05,-122.05],[-169.22,-95.39],[-159.06,-118.27],[-148.92,-144.35],[-147.28,-177.41],[-157.54,-213.29],[-167.18,-247.11],[-177.96,-268.24],[-195.5,-294.24],[-203.62,-318.32],[-211.44,-335.48],[-214.94,-342.76],[-219.19,-347.94],[-223.42,-355.68],[-230.5,-366.81],[-236.3,-376.06]],"v":[[-240,-380],[-244.15,-367.75],[-247,-355],[-247.98,-353.56],[-249,-352],[-252.13,-338.05],[-254,-324],[-253.32,-294.39],[-250,-264],[-241,-225],[-235,-212],[-231,-207],[-224,-198],[-222,-194],[-216,-188],[-216,-186],[-214,-185],[-212,-181],[-207,-170],[-202,-157],[-188,-126],[-173,-96],[-163,-110],[-152,-135],[-147,-166],[-154,-200],[-165,-240],[-172,-258],[-191,-286],[-201,-311],[-210,-332],[-214,-341],[-218,-346],[-221,-352],[-228,-363],[-235,-374]],"c":true}],"h":1},{"t":236,"s":[{"i":[[-236.65,-377.81],[-242.13,-375.23],[-244.23,-367.77],[-248.72,-351.95],[-253.51,-330.84],[-254.12,-304.97],[-250.91,-275],[-248.4,-250.55],[-244.14,-231.21],[-240.11,-221.57],[-236.68,-214.71],[-233.67,-211.27],[-230.7,-207.01],[-226.55,-201.8],[-223.76,-196.97],[-215.6,-187.22],[-210.27,-177.68],[-207.05,-169.59],[-204.25,-161.24],[-200.03,-153.46],[-197.36,-144.99],[-190.56,-132.22],[-175.19,-96.35],[-165.75,-104.22],[-146.37,-144.19],[-152.48,-194.92],[-163.96,-241.41],[-177.38,-266.62],[-193.28,-289.79],[-199.44,-307.84],[-203.39,-315.42],[-205.08,-321.8],[-211.3,-335.97],[-216.86,-344.13],[-218.49,-348.17],[-227.24,-361.1]],"o":[[-241.26,-377.59],[-243.62,-370.32],[-246.72,-358.78],[-252.12,-337.98],[-254.66,-314.72],[-252.24,-285.11],[-249.33,-257.7],[-245.81,-237.31],[-241.27,-224.21],[-237.81,-216.82],[-234.82,-212.77],[-231.61,-208.39],[-228,-203.1],[-224.15,-199.01],[-219.48,-191.47],[-211.57,-180.67],[-207.81,-172.48],[-204.78,-163.98],[-202.14,-155.79],[-197.84,-148.24],[-193.82,-137.21],[-186.01,-122.95],[-169.24,-95.39],[-154.58,-127.68],[-147.36,-179.97],[-161.13,-225.7],[-172.34,-260.69],[-188.09,-281.42],[-198.75,-303.35],[-201.57,-313.53],[-204.95,-319.46],[-208.42,-329.75],[-215.04,-342.95],[-218.6,-346.99],[-223.03,-355.48],[-233.81,-371.41]],"v":[[-240,-380],[-242.87,-372.77],[-245,-365],[-250.42,-344.96],[-254,-324],[-253.18,-295.04],[-250,-265],[-247.1,-243.93],[-242,-226],[-238.96,-219.19],[-236,-214],[-232.64,-209.83],[-230,-206],[-225,-200],[-223,-196],[-213,-183],[-209,-175],[-206,-167],[-203,-158],[-199,-151],[-196,-142],[-188,-127],[-173,-96],[-163,-110],[-147,-167],[-157,-211],[-169,-253],[-182,-273],[-197,-299],[-201,-312],[-204,-317],[-206,-324],[-214,-341],[-218,-346],[-219,-349],[-231,-367]],"c":true}],"h":1},{"t":237,"s":[{"i":[[-234.16,-373.93],[-242.14,-375.22],[-244.23,-367.8],[-248.72,-351.95],[-253.51,-330.89],[-254.11,-304.37],[-250.81,-274.77],[-249.16,-255.52],[-247.12,-242.25],[-242.75,-228.03],[-236.14,-215.04],[-227.01,-202.62],[-216.76,-188.81],[-207.7,-171.2],[-199.71,-150.79],[-193.02,-136.53],[-186.88,-123.83],[-180.21,-109.84],[-173.6,-96.1],[-168.02,-99.75],[-160.8,-114.19],[-158.77,-119.3],[-157.46,-123.88],[-155.69,-127.42],[-153.42,-130.85],[-149.97,-141.57],[-147.26,-156.53],[-147.28,-176.09],[-152.03,-194.06],[-163.75,-242.19],[-181.76,-272.84],[-194.65,-292.4],[-198.07,-303.57],[-201.27,-310],[-205.13,-321.82],[-217.79,-346.24]],"o":[[-241.27,-377.57],[-243.62,-370.34],[-246.72,-358.75],[-252.11,-338.02],[-254.7,-314.23],[-252.16,-284.64],[-249.6,-260.14],[-247.92,-246.57],[-244.68,-233.01],[-238.48,-219.04],[-230.63,-207.21],[-220.07,-193.42],[-210.6,-178.06],[-202.26,-157.57],[-194.83,-140.36],[-189.05,-128.26],[-182.66,-115.29],[-175.68,-100.24],[-170.87,-95.65],[-162.98,-109.02],[-159.29,-117.61],[-157.86,-122.44],[-156.48,-126.24],[-154.16,-129.72],[-151.35,-136.56],[-147.93,-151.56],[-146.51,-169.56],[-150.04,-188.34],[-159.62,-220.81],[-176.14,-265.94],[-190.83,-286.97],[-197.97,-300.31],[-199.76,-307.99],[-204.11,-317.8],[-212.09,-337.34],[-229.23,-364.22]],"v":[[-240,-380],[-242.88,-372.78],[-245,-365],[-250.42,-344.98],[-254,-324],[-253.13,-294.5],[-250,-265],[-248.54,-251.05],[-246,-238],[-240.62,-223.53],[-234,-212],[-223.54,-198.02],[-214,-184],[-204.98,-164.39],[-197,-145],[-191.04,-132.39],[-184,-118],[-177.94,-105.04],[-173,-96],[-165.5,-104.39],[-160,-116],[-158.31,-120.87],[-157,-125],[-154.93,-128.57],[-153,-132],[-148.95,-146.56],[-147,-161],[-148.66,-182.22],[-154,-201],[-172,-258],[-187,-281],[-197,-298],[-199,-306],[-202,-312],[-207,-326],[-224,-356]],"c":true}],"h":1},{"t":238,"s":[{"i":[[-238.32,-379.7],[-243.28,-371.2],[-247.59,-356.51],[-252.74,-333.19],[-253.92,-304.67],[-251,-265.93],[-244.45,-228.81],[-236.74,-215.39],[-232.93,-210.3],[-230.21,-206.49],[-227.84,-203.14],[-226.04,-200.96],[-224.42,-199.56],[-217.41,-189.51],[-209.06,-174.06],[-205.95,-166.01],[-204.52,-161.27],[-202.81,-157.76],[-200.52,-154.24],[-199.03,-150.15],[-197.69,-145.45],[-186.94,-124.64],[-174.13,-96.18],[-166.82,-102.99],[-156.79,-123.3],[-152.21,-136.87],[-146.13,-163.06],[-154.48,-202.6],[-166.58,-249.25],[-183.31,-274.04],[-187.75,-280.62],[-189.39,-283.96],[-203.24,-319.57],[-217.82,-346.94],[-225.75,-359.39],[-232.73,-370.39]],"o":[[-241.74,-375.69],[-246.21,-361.6],[-251.28,-342.11],[-254.06,-314.47],[-251.78,-279.77],[-247.34,-240.45],[-238.02,-217.25],[-234.19,-211.92],[-231.04,-207.67],[-228.61,-204.22],[-226.58,-201.43],[-224.96,-200.02],[-220.63,-194.48],[-211.63,-179.3],[-206.44,-167.63],[-204.99,-162.83],[-203.54,-158.89],[-201.3,-155.43],[-199.44,-151.68],[-198.16,-147.04],[-191.45,-132.35],[-178.05,-105.72],[-169.09,-95.37],[-161.24,-114.88],[-153.1,-132.98],[-148.24,-150.45],[-148.26,-187.41],[-163.44,-233.14],[-176.69,-267.75],[-186.15,-280.33],[-188.67,-282.04],[-199.69,-301.52],[-214.02,-341.02],[-223.48,-355.95],[-230.49,-367],[-236.33,-376.11]],"v":[[-240,-380],[-244.75,-366.4],[-249,-351],[-253.4,-323.83],[-253,-294],[-249.17,-253.19],[-239,-219],[-235.47,-213.66],[-232,-209],[-229.41,-205.35],[-227,-202],[-225.5,-200.49],[-224,-199],[-214.52,-184.4],[-207,-169],[-205.47,-164.42],[-204,-160],[-202.05,-156.6],[-200,-153],[-198.6,-148.6],[-197,-144],[-181,-112],[-173,-96],[-164,-109],[-155,-128],[-151,-141],[-147,-173],[-159,-218],[-173,-261],[-186,-280],[-188,-281],[-190,-285],[-211,-335],[-221,-352],[-228,-363],[-235,-374]],"c":true}],"h":1},{"t":239,"s":[{"i":[[-236.82,-378.85],[-245.96,-362.51],[-253.39,-332.01],[-254.06,-309.11],[-252.47,-290.89],[-251.2,-272.85],[-249.88,-255.41],[-243.8,-230.18],[-229.54,-205.36],[-218.66,-191.06],[-210.99,-179.51],[-208.25,-172.74],[-207.39,-169],[-200.45,-152.21],[-190.29,-131.14],[-182.18,-113.81],[-173.48,-96.08],[-168.04,-99.64],[-159.87,-116.54],[-151.51,-137.22],[-146.14,-164.14],[-149.37,-187.49],[-156.62,-210.16],[-163.3,-233.62],[-169.94,-255.4],[-175.78,-265.51],[-180.58,-271.98],[-183.66,-276.08],[-186.28,-278.97],[-189.54,-285.42],[-206.24,-326.48],[-216.08,-344.57],[-219.36,-347.95],[-220.27,-351.72],[-223.21,-354.74],[-230.15,-365.55]],"o":[[-242.76,-371.75],[-251.27,-342.64],[-254.32,-315.16],[-253.14,-296.97],[-251.51,-278.9],[-250.39,-261.11],[-247.29,-239.5],[-234.93,-213.11],[-221.41,-194.56],[-213.45,-183.54],[-208.55,-173.99],[-207.66,-170.24],[-203.55,-159.14],[-193.81,-138.21],[-185.19,-120.27],[-176.33,-101.72],[-170.86,-95.62],[-162.55,-110.1],[-154.69,-128.9],[-147.23,-154.84],[-147.56,-180.4],[-153.9,-202.37],[-161.33,-225.67],[-167.6,-248.48],[-174.24,-263.27],[-178.95,-269.86],[-182.77,-275.09],[-185.42,-278.02],[-188.66,-282.38],[-200.49,-304.72],[-215.68,-343.2],[-217.61,-346.96],[-220.78,-350.28],[-221.76,-354.35],[-227.58,-361.73],[-235.33,-373.63]],"v":[[-240,-380],[-248.62,-352.57],[-254,-321],[-253.6,-303.04],[-252,-285],[-250.79,-266.98],[-249,-250],[-239.37,-221.64],[-224,-198],[-216.05,-187.3],[-209,-175],[-207.96,-171.49],[-207,-168],[-197.13,-145.21],[-186,-122],[-179.25,-107.77],[-173,-96],[-165.3,-104.87],[-158,-121],[-149.37,-146.03],[-147,-174],[-151.64,-194.93],[-159,-218],[-165.45,-241.05],[-173,-261],[-177.36,-267.69],[-182,-274],[-184.54,-277.05],[-187,-280],[-191,-288],[-215,-342],[-217,-346],[-220,-349],[-221,-353],[-224,-356],[-233,-370]],"c":true}],"h":1}]},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.0314,0.3412,0.6275,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[-200.03,-237.99]},"a":{"a":0,"k":[-200.03,-237.99]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":240,"st":0,"bm":0,"completed":true}]}],"layers":[{"ddd":0,"ind":1,"ty":3,"sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":0,"k":0},"p":{"a":0,"k":[800,600,0]},"a":{"a":0,"k":[50,50,0]},"s":{"a":0,"k":[143,143,100]}},"ao":0,"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":4,"ty":0,"parent":1,"refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[50,50,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":0,"op":241,"st":0,"bm":0,"completed":true,"layers":[{"ddd":0,"ind":1,"ty":3,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.33],"y":[0]},"t":20,"s":[0]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.33],"y":[0]},"t":47,"s":[-4]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.33],"y":[0]},"t":67,"s":[-4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.33],"y":[0]},"t":99,"s":[5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[-4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[-4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[5]},{"t":240,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.25,"y":1},"o":{"x":0.33,"y":0},"t":20,"s":[347.25,581.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.82},"o":{"x":0.17,"y":0},"t":47,"s":[352.75,563.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.92},"o":{"x":0.17,"y":0.16},"t":57,"s":[370.75,583.71,0],"to":null,"ti":null},{"i":{"x":0.67,"y":1},"o":{"x":0.17,"y":0.26},"t":67,"s":[382.25,555.21,0],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.75,"y":0},"t":97,"s":[352.75,557.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.82},"o":{"x":0.17,"y":0},"t":170,"s":[352.75,563.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.9},"o":{"x":0.17,"y":0.16},"t":180,"s":[370.75,583.71,0],"to":null,"ti":null},{"i":{"x":0.67,"y":1},"o":{"x":0.17,"y":0.24},"t":190,"s":[382.25,555.21,0],"to":null,"ti":null},{"i":{"x":0.67,"y":1},"o":{"x":0.75,"y":0},"t":213,"s":[352.75,557.71,0],"to":null,"ti":null},{"t":240,"s":[347.25,581.71,0]}]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":21,"ty":3,"parent":22,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[-60.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[-60.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-60.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[-60.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[-60.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[-60.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[-60.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[-60.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[-60.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[-60.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[-60.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[-59.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[-58.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[-57.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[-55.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[-53.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[-51.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[-49.81]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[-48.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[-47.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[-46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[-45.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-44.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[-43.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[-43.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[-42.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[-42.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[-42.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[-42.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[-42.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[-42.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[-42.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[-42.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[-42.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[-42.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[-44.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[-46.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[-49.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[-52.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[-55.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[-58.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[-61.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-65.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[-68.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[-71.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[-67.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[-63.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[-60.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[-56.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[-52.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[-49.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[-46.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[-43.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[-40.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[-38.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[-37.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[-36.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[-36.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[-35.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[-34.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[-33.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[-33.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[-32.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[-31.81]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[-31.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[-30.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[-29.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[-29.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[-28.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[-28.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[-27.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[-26.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[-26.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[-25.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[-25.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[-24.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[-24.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[-23.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[-23.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[-22.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[-22.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[-22.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[-21.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[-21.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[-21.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[-21.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[-21.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[-21.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[-21.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[-21.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[-21.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[-21.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[-21.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[-21.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[-22.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[-22.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[-22.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[-22.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[-23.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[-23.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[-23.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[-24.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[-24.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[-24.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[-25.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[-25.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[-25.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[-26.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[-26.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[-26.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[-27.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[-27.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[-27.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[-28.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[-28.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[-29.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[-29.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[-30.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[-30.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[-31.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[-31.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[-32.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[-33.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[-33.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[-34.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[-34.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[-35.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[-35.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[-35.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[-36.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[-36.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[-36.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[-37.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[-37.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[-37.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[-37.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[-38.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[-38.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[-38.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[-38.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[-38.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[-39.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[-39.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[-39.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[-39.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[-39.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[-39.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[-39.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[-40.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[-40.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[-40.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[-40.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[-40.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[-40.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[-40.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[-40.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[-40.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[-40.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[-42.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[-45.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[-47.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[-51.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[-54.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[-57.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[-60.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[-63.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[-67.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[-70.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[-66.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[-62.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[-59.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[-55.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[-52.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[-48.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[-45.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[-42.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[-40.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[-38.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[-36.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[-35.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[-34.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[-33.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[-32.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[-31.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[-30.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[-29.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[-28.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[-28.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[-27.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[-26.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[-26.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[-25.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[-25.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[-24.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[-24.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[-23.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[-23.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[-22.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[-22.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[-21.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[-21.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[-21.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[-22.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[-22.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[-23.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[-23.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[-24.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[-25.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[-25.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[-26.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[-28.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[-29.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[-30.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[-32.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[-33.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[-35.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[-38.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[-40.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[-43.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[-46.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[-49.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[-52.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[-55.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[-57.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[-58.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[-59.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[-60.34]},{"t":240,"s":[-60.66]}]},"p":{"a":0,"k":[13.69,-40.64,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":22,"ty":3,"parent":23,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[13.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[13.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[13.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[12.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[12.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[12.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[11.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[11.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[10.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[9.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[8.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[6.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[4.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[2.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[0.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[-1.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[-3.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[-5.81]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[-7.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[-9.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[-10.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[-11.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-12.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[-13.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[-14.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[-15.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[-16.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[-16.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[-17.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[-17.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[-18.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[-18.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[-18.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[-19.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[-19.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[-17.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[-14.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[-11.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[-7.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[-3.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[1.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[5.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[10.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[15.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[21.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[19.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[17.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[15.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[14.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[13.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[12.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[12.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[12.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[12.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[12.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[10.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[8.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[6.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[4.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[2.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[1.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[-0.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[-2.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[-3.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[-4.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[-5.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[-6.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[-7.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[-8.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[-8.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[-8.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[-8.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[-8.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[-9.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[-9.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[-10.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[-11.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[-11.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[-12.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[-12.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[-13.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[-13.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[-13.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[-13.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[-13.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[-13.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[-13.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[-13.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[-13.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[-13.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[-13.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[-13.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[-13.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[-13.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[-13.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[-12.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[-12.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[-12.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[-11.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[-11.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[-10.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[-10.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[-10.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[-9.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[-9.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[-9.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[-8.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[-8.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[-8.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[-8.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[-7.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[-7.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[-7.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[-7.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[-6.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[-6.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[-6.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[-6.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[-6.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[-5.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[-5.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[-5.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[-4.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[-4.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[-4.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[-4.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[-4.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[-4.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[-3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[-3.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[-3.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[-3.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[-3.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[-3.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[-3.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[-3.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[-3.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[-3.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[-3.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[-3.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[-3.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[-4.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[-4.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[-4.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[-4.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[-5.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[-5.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[-6.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[-6.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[-7.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[-8.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[-9.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[-11.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[-13.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[-14.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[-15.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[-16.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[-17.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[-16.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[-13.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[-10.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[-6.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[-2.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[1.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[6.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[11.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[16.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[21.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[19.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[17.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[16.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[14.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[14.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[13.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[13.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[13.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[13.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[14.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[12.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[9.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[7.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[5.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[3.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[1.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[-0.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[-2.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[-3.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[-5.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[-6.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[-7.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[-8.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[-10.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[-11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[-11.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[-12.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[-13.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[-13.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[-13.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[-13.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[-13.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[-13.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[-12.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[-12.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[-11.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[-10.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[-10.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[-9.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[-8.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[-8.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[-7.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[-6.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[-5.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[-4.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[-3.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[-2.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[-1.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[-0.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[0.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[2.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[3.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[5.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[7.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[9.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[10.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[11.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[12.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[13.02]},{"t":240,"s":[13.19]}]},"p":{"a":0,"k":[37.31,31.36,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":23,"ty":3,"parent":31,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[47.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[47.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[47.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[47.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[48.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[48.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[49.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[49.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[50.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[51.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[52.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[52.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[53.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[53.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[54.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[54.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[54.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[54.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[54.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[54.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[54.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[54.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[54.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[55.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[55.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[55.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[55.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[56.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[56.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[56.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[56.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[57.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[57.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[57.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[58.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[58.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[57.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[57.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[56.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[54.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[53.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[52.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[50.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[48.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[46.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[44.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[42.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[40.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[38.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[35.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[32.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[29.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[26.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[24.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[21.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[23.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[24.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[25.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[27.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[28.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[29.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[30.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[31.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[32.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[33.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[34.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[35.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[36.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[36.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[36.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[36.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[36.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[36.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[37.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[37.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[38.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[38.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[38.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[39.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[39.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[39.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[40.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[40.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[40.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[40.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[40.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[40.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[40.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[40.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[40.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[40.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[40.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[40]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[39.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[39.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[39.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[39.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[39.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[39.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[39.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[38.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[38.81]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[38.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[38.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[38.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[38.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[38.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[38.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[38.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[38.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[38.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[38.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[38.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[38.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[38.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[38.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[38.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[38.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[39.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[39.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[39.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[39.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[39.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[40.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[40.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[40.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[40.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[40.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[40.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[40.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[40.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[40.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[40.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[40.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[41.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[41.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[41.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[41.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[41.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[41.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[41.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[42.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[42.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[42.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[42.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[43.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[43.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[44.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[45.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[45.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[47.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[48.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[49.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[51.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[52.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[53.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[54.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[54.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[54.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[54.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[53.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[52.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[51.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[50.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[48.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[46.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[44.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[43.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[41.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[39.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[36.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[31.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[28.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[25.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[22.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[19.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[21.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[22.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[24.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[25.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[27.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[28.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[29.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[30.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[32.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[33.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[34.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[35.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[36.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[37.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[37.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[38.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[39.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[39.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[40.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[40.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[40.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[40.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[39.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[39.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[38.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[38.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[38.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[37.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[37.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[37.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[37.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[37.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[37.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[37.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[38.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[38.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[39.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[40.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[40.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[41.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[43.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[44.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[45.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[46.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[46.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[47.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[47.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[47.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[47.5]},{"t":240,"s":[47.47]}]},"p":{"a":0,"k":[55.33,22.19,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":24,"ty":4,"parent":25,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[48.04,39.77,0]},"a":{"a":0,"k":[12.03,12.12,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-8.49,6.21],[8.49,-1.08]],"o":[[-1.65,8.58],[6.61,-8.58]],"v":[[-8.49,6.21],[6.61,-8.58]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.7756,0.8904,0.9844,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":1.42},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[12.03,12.12]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":25,"ty":4,"parent":23,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[2.33,4.22,0]},"a":{"a":0,"k":[13.96,16,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-47.58,-26.47],[7.23,22.98],[33.96,10.98],[-22.02,-28.29]],"o":[[-28.84,-2.73],[15,30.25],[23.18,2.78],[-22.02,-28.29]],"v":[[-28.84,-2.73],[7.23,22.98],[23.82,3.26],[-22.02,-28.29]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2168,0.5943,0.9032,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[34.21,30.5]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":26,"ty":4,"parent":22,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-0.04,-1.89,0]},"a":{"a":0,"k":[12.53,36.87,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[15.03,-21.47],[9.98,9.35],[-15.03,14.56],[2.72,-25.62]],"o":[[15.03,-21.47],[-0.89,25.62],[-15.03,14.56],[2.72,-25.62]],"v":[[15.03,-21.47],[4.54,17.49],[-15.03,14.56],[2.72,-25.62]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.6314,0.6784,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[15.28,25.87]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":27,"ty":4,"parent":21,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-2.04,0.83,0]},"a":{"a":0,"k":[7.38,16.4,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-9.69,7],[-6.65,9.2],[0.67,10.71],[8.18,0.32],[9.69,-7],[6.65,-9.2],[-0.67,-10.71],[-8.18,-0.32]],"o":[[-6.65,9.2],[-3.61,11.4],[2.87,7.67],[10.38,-2.71],[6.65,-9.2],[3.61,-11.4],[-2.87,-7.67],[-10.38,2.72]],"v":[[-6.65,9.2],[-6.65,9.2],[2.87,7.67],[8.18,0.32],[6.65,-9.2],[6.65,-9.2],[-2.87,-7.67],[-8.18,-0.32]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.6314,0.6784,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[10.63,11.65]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":29,"ty":4,"parent":31,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[33.5,3.76,0]},"a":{"a":0,"k":[11.94,5.72,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[4.65,-5.47],[-12.49,-2.72],[11.69,1.91]],"o":[[-9.7,-4.01],[6.12,0.97],[11.69,1.91]],"v":[[-9.7,-4.01],[-1.54,-0.55],[11.69,1.91]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7756,0.8904,0.9844,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[11.94,5.72]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":30,"ty":4,"parent":31,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[54.69,73.89,0]},"a":{"a":0,"k":[11.34,39.69,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[11.09,-39.44],[4.85,-32.7],[0.92,26.83],[2.99,38.45],[10.54,32.78]],"o":[[11.09,-39.44],[-2.47,-3.14],[-3.74,39.42],[8.24,34.82],[10.87,29.09]],"v":[[11.09,-39.44],[4.85,-32.7],[-11.09,39.44],[7.97,34.79],[10.87,29.09]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1806,0.4549,0.6794,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[11.34,39.69]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":31,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.25,"y":1},"o":{"x":0.33,"y":0},"t":13,"s":[281.6,579.54,0],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.75,"y":0},"t":61,"s":[303.6,576.54,0],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.17,"y":0},"t":104,"s":[292.6,578.54,0],"to":null,"ti":null},{"i":{"x":0.25,"y":1},"o":{"x":0.75,"y":0},"t":144,"s":[288.1,577.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":1},"o":{"x":0.17,"y":0},"t":187,"s":[302.6,577.54,0],"to":null,"ti":null},{"t":240,"s":[281.6,579.54,0]}]},"a":{"a":0,"k":[33.94,60.73,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-27.21,50.65],[-29.29,1.55],[-25.29,-57.18],[-8.74,-60.48],[-3.79,-58.81],[16.2,-55.01],[31.04,-37.34],[33.34,31.47]],"o":[[-32.71,16.38],[-29.97,-55.58],[-17.01,-59.56],[-6.17,-59.99],[9.38,-55.59],[30.64,-47.19],[32.86,-4.92],[29.82,60.48]],"v":[[-33.68,39.08],[-30.4,-18.07],[-17.01,-59.56],[-8.74,-60.48],[-1.25,-58.19],[23.84,-50.87],[31.02,-29.09],[33.69,43.4]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2168,0.5943,0.9032,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[33.94,60.73]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":32,"ty":4,"parent":36,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[17.85,39.03,0]},"a":{"a":0,"k":[2.83,1.21,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.98,0.61],[-2.58,-0.96],[-0.49,0.28]],"o":[[-1.09,0.96],[-2.58,-0.96],[2.58,-0.94]],"v":[[-1.09,0.96],[-2.58,-0.96],[2.58,-0.94]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.3882,0.4471,0.4941,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[2.83,1.21]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":33,"ty":4,"parent":36,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[15.23,25.95,0]},"a":{"a":0,"k":[4.38,4.38,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[4.13,-2.14],[2.14,4.13],[-4.13,2.13],[-2.13,-4.13]],"o":[[4.01,2.36],[-2.36,4.01],[-4.01,-2.36],[2.36,-4.01]],"v":[[4.07,0.11],[-0.11,4.07],[-4.07,-0.11],[0.11,-4.07]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.6314,0.6784,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[4.38,4.38]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":34,"ty":4,"parent":36,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[7.83,20.51,0]},"a":{"a":0,"k":[22.85,21.58,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-22.6,-8.31],[-9.63,21.33],[8.79,13.51],[4.51,7.52],[10.58,2.5],[3.7,-2.37],[14.74,-2.05],[17.95,-14.88],[0.28,-26.33],[2.73,-19.61]],"o":[[-11.35,15.1],[5.17,19.67],[6.38,6.86],[3.95,4.5],[12.03,0.52],[3.99,-2.71],[22.57,-7.92],[11.59,-19.48],[11.3,-15.28],[-9.03,-15.67]],"v":[[-11.35,15.1],[1.73,20.06],[7.37,9.59],[4.22,5.99],[11.4,1.38],[3.81,-2.55],[15.51,-2.62],[13.72,-17.94],[7.82,-18.77],[-1.27,-18.27]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[22.85,21.58]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":35,"ty":4,"parent":31,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[36.29,-2.13,0]},"a":{"a":0,"k":[9.68,16,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-0.17,15.75],[-4.3,14.68],[-9.43,10.57],[-3.95,-10.63],[0.17,-15.75],[4.3,-14.68],[9.43,-10.57],[6.67,10.58]],"o":[[-3.36,14.93],[-7.5,13.86],[-8.61,7.38],[-3.12,-13.82],[3.36,-14.93],[7.5,-13.86],[8.61,-7.38],[5.85,13.77]],"v":[[-3.36,14.93],[-4.3,14.68],[-8.61,7.38],[-3.95,-10.63],[3.36,-14.93],[4.3,-14.68],[8.61,-7.38],[6.67,10.58]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.6314,0.6784,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[9.68,16.01]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":36,"ty":4,"parent":31,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":0,"s":[17]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":29.62,"s":[-18.15]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":55,"s":[0]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":90,"s":[17]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":119.08,"s":[-18.15]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":144,"s":[0]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":182,"s":[-18.15]},{"i":{"x":[0.67],"y":[1]},"o":{"x":[0.75],"y":[0]},"t":208,"s":[0]},{"t":240,"s":[17]}]},"p":{"a":0,"k":[41.54,-4.15,0]},"a":{"a":0,"k":[14.53,38.97,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[14.02,-3.01],[5.08,20.97],[-14.02,1.59],[-7.73,-20.97]],"o":[[13.51,15.48],[-8.66,12.51],[-13.51,-16.9],[6.01,-12.51]],"v":[[13.77,6.24],[-1.79,16.74],[-13.77,-7.65],[-0.86,-16.74]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.6314,0.6784,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[14.28,21.22]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":37,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[-19.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[-19.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[-20.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[-20.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[-20.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[-20.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[-20.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[-20.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[-20.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[-20.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[-21.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[-21.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[-21.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[-21.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[-21.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-22.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[-22.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[-22.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[-22.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[-22.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[-21.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[-21.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[-21.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[-20.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[-19.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[-19.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[-18.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[-17.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[-16.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[-14.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[-13.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[-12.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[-11.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[-10.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[-9.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-8.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[-7.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[-6.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[-6.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[-5.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[-5.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[-4.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[-4.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[-3.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[-3.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[-2.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[-2.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[-2.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[-1.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[-1.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[-1.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[-1.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[-0.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[-0.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[-0.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-0.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[-0.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[-0.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[-0.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[-0.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[-0.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[-0.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[-0.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[-0.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[-0.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[-0.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[-0.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[-0.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[-0.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[-0.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[-1.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[-1.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[-1.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[-1.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[-2.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[-2.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[-3.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[-4.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[-4.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[-5.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[-6.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[-7.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[-8.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[-9.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[-10.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[-10.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[-11.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[-11.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[-11.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[-12.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[-12.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[-12.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[-12.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[-12.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[-12.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[-12.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[-12.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[-12.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[-12.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[-12.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[-12.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[-12.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[-12.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[-12.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[-12.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[-13.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[-13.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[-13.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[-13.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[-13.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[-13.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[-13.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[-13.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[-13.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[-13.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[-13.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[-13.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[-13.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[-14.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[-14.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[-14.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[-14.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[-14.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[-14.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[-14.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[-14.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[-14.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[-14.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[-14.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[-14.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[-14.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[-14.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[-14.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[-14.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[-14.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[-14.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[-14.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[-14.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[-14.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[-14.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[-14.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[-14.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[-14.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[-14.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[-14.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[-14.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[-14.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[-14.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[-14.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[-14.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[-14.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[-14.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[-13.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[-13.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[-13.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[-13.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[-13.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[-12.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[-12.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[-12.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[-11.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[-10.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[-9.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[-8.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[-7.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[-7.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[-6.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[-5.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[-5.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[-5.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[-4.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[-4.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[-4.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[-4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[-3.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[-3.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[-3.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[-3.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[-3.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[-3.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[-3.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[-3.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[-3.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[-3.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[-3.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[-3.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[-3.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[-3.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[-4.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[-4.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[-4.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[-5.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[-5.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[-6.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[-6.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[-6.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[-7.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[-8.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[-8.81]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[-9.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[-10.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[-10.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[-11.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[-12.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[-12.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[-13.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[-13.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[-14.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[-15.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[-15.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[-16.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[-16.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[-16.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[-17.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[-17.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[-18.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[-18.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[-18.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[-18.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[-19.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[-19.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[-19.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[-19.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[-19.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[-19.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[-19.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[-19.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[-19.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[-19.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[-19.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[-19.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[-19.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[-19.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[-19.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[-19.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[-19.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[-19.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":240,"s":[-19.96]},{"t":241,"s":[-19.96]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[267.2,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[267.2,618.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[267.2,618.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[267.2,618.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[267.19,618.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[267.19,618.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[267.22,618.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[267.32,618.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[267.49,618.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[267.75,618.14,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[268.09,618.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[268.53,618.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[269.08,617.96,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[269.75,617.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[270.53,617.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[271.42,617.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[272.4,617.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[273.46,617.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[274.55,617.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[275.65,617.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[276.73,616.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[277.78,616.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[278.77,616.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[279.71,616.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[280.59,616.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[281.4,616.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[282.15,616.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[282.85,616.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[283.49,616.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[284.08,616.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[284.62,616.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[285.12,615.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[285.58,615.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[285.99,615.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[286.38,615.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[286.73,615.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[287.05,615.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[287.34,615.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[287.6,615.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[287.84,615.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[288.05,615.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[288.25,615.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[288.42,615.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[288.57,615.58,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[288.71,615.56,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[288.83,615.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[288.93,615.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[289.02,615.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[289.09,615.52,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[289.15,615.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[289.19,615.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[289.23,615.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[289.24,615.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[289.25,615.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[289.24,615.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[289.24,615.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[289.22,615.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[289.19,615.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[289.15,615.52,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[289.1,615.52,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[289.03,615.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[288.95,615.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[288.86,615.56,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[288.74,615.58,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[288.61,615.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[288.45,615.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[288.27,615.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[288.04,615.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[287.78,615.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[287.45,615.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[287.06,615.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[286.57,615.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[285.95,616.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[285.18,616.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[284.25,616.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[283.24,616.49,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84,"s":[282.31,616.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85,"s":[281.53,616.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86,"s":[280.91,616.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87,"s":[280.42,616.96,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[280.02,617.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89,"s":[279.7,617.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90,"s":[279.44,617.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91,"s":[279.21,617.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[279.03,617.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[278.87,617.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[278.73,617.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[278.62,617.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96,"s":[278.52,617.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[278.45,617.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[278.38,617.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[278.33,617.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[278.29,617.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[278.26,617.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[278.24,617.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":103,"s":[278.23,617.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104,"s":[278.23,617.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105,"s":[278.19,617.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[278.09,617.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107,"s":[277.92,617.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108,"s":[277.72,617.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109,"s":[277.48,617.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110,"s":[277.23,617,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[276.97,616.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[276.71,616.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[276.47,616.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114,"s":[276.24,616.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[276.02,616.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116,"s":[275.82,616.52,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117,"s":[275.63,616.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[275.46,616.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[275.29,616.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120,"s":[275.14,616.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[275,616.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122,"s":[274.86,616.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[274.74,616.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124,"s":[274.63,616.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[274.52,616.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[274.43,616.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127,"s":[274.34,616.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128,"s":[274.26,616,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[274.19,615.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[274.13,615.95,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131,"s":[274.07,615.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132,"s":[274.01,615.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[273.96,615.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134,"s":[273.92,615.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135,"s":[273.88,615.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136,"s":[273.84,615.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[273.81,615.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[273.79,615.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139,"s":[273.77,615.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140,"s":[273.75,615.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141,"s":[273.74,615.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[273.73,615.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[273.72,615.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[273.72,615.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[273.73,615.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[273.74,615.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147,"s":[273.76,615.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148,"s":[273.8,615.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149,"s":[273.85,615.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[273.92,615.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[274.01,615.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152,"s":[274.11,615.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153,"s":[274.24,615.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[274.38,615.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155,"s":[274.56,615.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[274.77,615.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157,"s":[275.02,615.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158,"s":[275.31,615.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159,"s":[275.66,615.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[276.09,615.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[276.61,615.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162,"s":[277.26,615.96,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[278.06,616,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164,"s":[279.08,616.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165,"s":[280.31,616.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[281.65,616.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[282.88,616.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[283.9,616.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[284.71,616.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[285.36,616.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[285.88,616.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172,"s":[286.31,616.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173,"s":[286.66,616.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174,"s":[286.95,616.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[287.2,616.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[287.41,616.42,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177,"s":[287.58,616.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[287.73,616.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[287.86,616.44,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[287.96,616.44,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[288.05,616.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[288.11,616.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183,"s":[288.17,616.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184,"s":[288.21,616.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[288.23,616.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186,"s":[288.24,616.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187,"s":[288.25,616.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188,"s":[288.18,616.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189,"s":[288,616.48,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[287.76,616.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[287.47,616.52,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[287.16,616.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193,"s":[286.82,616.57,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194,"s":[286.46,616.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[286.08,616.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[285.69,616.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[285.28,616.7,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[284.86,616.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[284.43,616.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200,"s":[284,616.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[283.56,616.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202,"s":[283.11,616.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203,"s":[282.65,616.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204,"s":[282.2,616.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205,"s":[281.73,616.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206,"s":[281.27,617.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207,"s":[280.8,617.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208,"s":[280.33,617.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209,"s":[279.86,617.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210,"s":[279.38,617.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[278.91,617.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[278.43,617.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[277.96,617.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214,"s":[277.48,617.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215,"s":[277,617.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[276.52,617.39,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217,"s":[276.05,617.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218,"s":[275.58,617.47,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219,"s":[275.1,617.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[274.63,617.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[274.17,617.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222,"s":[273.7,617.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223,"s":[273.24,617.68,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[272.79,617.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[272.33,617.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[271.89,617.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227,"s":[271.44,617.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[271.01,617.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229,"s":[270.58,617.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230,"s":[270.17,617.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[269.76,618.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[269.37,618.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[268.99,618.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[268.63,618.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235,"s":[268.29,618.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236,"s":[267.98,618.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237,"s":[267.69,618.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238,"s":[267.45,618.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239,"s":[267.27,618.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":240,"s":[267.2,618.24,0],"to":null,"ti":null},{"t":241,"s":[267.2,618.24,0]}]},"a":{"a":0,"k":[55.11,7.87,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-7.5,20.25],[1.68,-47.74],[2.48,-61.72],[13.5,-82.75],[34.61,-56.09],[11.84,11.51]],"o":[[-5.81,3.01],[1.04,-55.53],[5.7,-73.12],[39.35,-72.22],[34.61,-56.09],[11.37,12.89]],"v":[[-5.81,3.01],[1.68,-47.74],[5.7,-73.12],[25.88,-77.71],[34.61,-56.09],[11.84,11.51]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[34.86,73.37]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":38,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[-21.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[-21.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[-21.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[-20.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[-20.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[-20.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[-20.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[-20.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[-19.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[-19.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[-18.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[-18.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[-17.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[-17.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[-16.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-15.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[-15.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[-14.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[-13.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[-12.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[-11.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[-10.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[-9.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[-8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[-6.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[-5.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[-4.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[-2.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[-1.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[-0.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[0.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[1.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[2.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[2.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[3.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[3.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[3.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[3.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[3.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[2.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[2.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[2.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[2.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[2.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[1.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[1.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[1.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[1.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[1.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[0.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[0.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[0.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[0.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[0.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[0.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[0.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[0.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[0.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[0.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[0.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[0.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[0.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[0.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[0.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[0.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[0.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[0.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[0.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[0.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[0.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[0.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[1.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[1.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[1.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[1.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[2.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[2.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[2.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[3.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[3.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[4.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[4.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[4.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[5.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[5.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[5.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[5.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[5.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[5.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[5.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[5.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[5.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[5.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[5.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[5.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[5.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[5.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[5.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[5.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[5.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[5.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[5.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[5.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[5.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[5.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[5.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[5.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[5.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[5.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[5.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[5.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[5.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[4.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[4.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[4.81]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[4.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[4.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[4.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[4.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[4.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[4.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[4.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[4.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[4.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[4.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[4.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[4.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[4.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[4.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[4.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[4.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[3.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[3.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[3.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[3.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[3.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[3.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[3.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[3.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[3.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[3.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[3.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[3.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[3.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[3.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[3.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[3.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[3.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[3.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[4.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[4.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[4.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[4.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[4.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[4.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[4.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[3.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[3.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[3.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[3.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[3.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[3.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[3.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[3.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[3.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[3.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[3.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[3.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[3.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[2.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[2.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[2.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[2.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[2.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[2.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[2.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[2.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[2.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[3.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[3.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[3.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[3.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[3.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[3.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[3.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[4.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[4.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[4.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[4.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[4.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[3.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[3.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[3.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[2.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[2.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[1.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[0.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[0.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[-0.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[-0.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[-1.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[-2.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[-3.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[-3.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[-4.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[-5.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[-6.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[-7.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[-7.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[-8.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[-9.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[-10.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[-11.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[-12.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[-13.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[-14.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[-15.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[-15.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[-16.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[-17.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[-18.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[-19.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[-19.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[-20.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[-20.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[-21.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[-21.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[-21.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[-21.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":240,"s":[-21.18]},{"t":241,"s":[-21.18]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[275.39,692.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[275.41,692.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[275.46,692.36,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[275.55,692.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[275.67,692.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[275.83,692.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[276.02,692.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[276.25,692.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[276.51,692.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[276.8,692.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[277.11,692.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[277.45,692.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[277.8,692.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[278.16,692.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[278.54,691.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[278.93,691.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[279.33,691.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[279.73,691.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[280.13,691.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[280.53,691.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[280.9,691.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[281.26,691.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[281.57,691.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[281.81,691.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[281.98,691.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[282.04,691.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[281.98,691.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[281.78,691.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[281.44,691.68,0],"to":[-0.13,-0.01,0],"ti":[0.18,0.02,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[280.97,691.63,0],"to":[-0.17,-0.02,0],"ti":[0.21,0.03,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[280.39,691.56,0],"to":[-0.2,-0.03,0],"ti":[0.22,0.04,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[279.74,691.46,0],"to":[-0.22,-0.04,0],"ti":[0.23,0.05,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[279.06,691.32,0],"to":[-0.22,-0.05,0],"ti":[0.22,0.06,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[278.39,691.17,0],"to":[-0.22,-0.06,0],"ti":[0.2,0.06,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[277.76,690.99,0],"to":[-0.2,-0.06,0],"ti":[0.18,0.06,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[277.17,690.8,0],"to":[-0.18,-0.06,0],"ti":[0.16,0.06,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[276.66,690.61,0],"to":[-0.16,-0.06,0],"ti":[0.14,0.06,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[276.21,690.42,0],"to":[-0.14,-0.06,0],"ti":[0.12,0.06,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[275.82,690.23,0],"to":[-0.12,-0.06,0],"ti":[0.1,0.06,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[275.49,690.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[275.2,689.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[274.9,689.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[274.62,689.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[274.35,689.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[274.08,689.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[273.83,689.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[273.59,688.98,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[273.36,688.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[273.15,688.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[272.95,688.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[272.76,688.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[272.58,688.44,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[272.42,688.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[272.28,688.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[272.15,688.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[272.04,688.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[271.95,688.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[271.88,688.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[271.82,688.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[271.77,688.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[271.75,688,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[271.75,688,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[271.75,688,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[271.76,688.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[271.79,688.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[271.84,688.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[271.9,688.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[271.97,688.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[272.06,688.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[272.18,688.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[272.31,688.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[272.46,688.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[272.64,688.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[272.83,688.57,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[273.06,688.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[273.32,688.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[273.62,688.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[273.96,689.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[274.34,689.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[274.79,689.65,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[275.3,689.94,0],"to":[0.18,0.11,0],"ti":[-0.2,-0.12,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[275.88,690.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[276.49,690.65,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[277.08,691,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84,"s":[277.56,691.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85,"s":[277.92,691.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86,"s":[278.19,691.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87,"s":[278.39,691.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[278.54,691.92,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89,"s":[278.65,691.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90,"s":[278.75,692.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91,"s":[278.82,692.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[278.89,692.14,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[278.94,692.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[278.98,692.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[279.02,692.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96,"s":[279.05,692.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[279.07,692.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[279.09,692.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[279.11,692.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[279.12,692.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[279.13,692.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[279.13,692.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":103,"s":[279.14,692.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104,"s":[279.14,692.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105,"s":[279.12,692.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[279.06,692.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107,"s":[278.98,692.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108,"s":[278.87,692.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109,"s":[278.74,692.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110,"s":[278.6,691.96,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[278.46,691.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[278.32,691.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[278.19,691.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114,"s":[278.06,691.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[277.94,691.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116,"s":[277.83,691.47,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117,"s":[277.72,691.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[277.62,691.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[277.52,691.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120,"s":[277.44,691.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[277.36,691.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122,"s":[277.28,691.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[277.21,691.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124,"s":[277.14,691.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[277.08,691,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[277.03,690.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127,"s":[276.98,690.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128,"s":[276.93,690.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[276.89,690.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[276.85,690.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131,"s":[276.82,690.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132,"s":[276.78,690.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[276.75,690.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134,"s":[276.73,690.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135,"s":[276.71,690.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136,"s":[276.68,690.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[276.67,690.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[276.65,690.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139,"s":[276.64,690.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140,"s":[276.63,690.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141,"s":[276.62,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[276.62,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[276.61,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[276.61,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[276.61,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[276.61,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147,"s":[276.62,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148,"s":[276.62,690.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149,"s":[276.62,690.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[276.63,690.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[276.64,690.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152,"s":[276.65,690.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153,"s":[276.66,690.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[276.67,690.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155,"s":[276.69,690.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[276.7,690.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157,"s":[276.72,690.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158,"s":[276.74,690.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159,"s":[276.76,690.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[276.78,690.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[276.81,690.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162,"s":[276.83,690.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[276.84,690.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164,"s":[276.84,690.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165,"s":[276.8,690.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[276.72,690.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[276.59,690.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[276.45,690.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[276.31,690.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[276.19,690.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[276.07,690.39,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172,"s":[275.96,690.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173,"s":[275.87,690.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174,"s":[275.79,690.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[275.72,690.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[275.65,690.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177,"s":[275.6,690.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[275.55,690.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[275.51,690.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[275.47,690.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[275.44,690.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[275.42,690.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183,"s":[275.4,690,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184,"s":[275.39,689.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[275.38,689.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186,"s":[275.37,689.98,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187,"s":[275.37,689.98,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188,"s":[275.42,690.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189,"s":[275.54,690.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[275.69,690.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[275.88,690.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[276.07,690.39,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193,"s":[276.26,690.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194,"s":[276.46,690.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[276.65,690.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[276.85,690.86,0],"to":[0.06,0.04,0],"ti":[-0.07,-0.04,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[277.03,690.97,0],"to":[0.08,0.04,0],"ti":[-0.1,-0.04,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[277.3,691.09,0],"to":[0.1,0.04,0],"ti":[-0.13,-0.04,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[277.66,691.21,0],"to":[0.13,0.04,0],"ti":[-0.14,-0.04,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200,"s":[278.07,691.33,0],"to":[0.14,0.04,0],"ti":[-0.15,-0.03,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[278.52,691.44,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202,"s":[278.96,691.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203,"s":[279.41,691.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204,"s":[279.84,691.7,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205,"s":[280.25,691.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206,"s":[280.63,691.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207,"s":[280.99,691.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208,"s":[281.31,691.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209,"s":[281.6,691.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210,"s":[281.85,691.92,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[282.07,691.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[282.24,691.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[282.37,691.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214,"s":[282.47,691.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215,"s":[282.51,691.92,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[282.52,691.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217,"s":[282.48,691.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218,"s":[282.4,691.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219,"s":[282.27,691.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[282.1,691.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[281.88,691.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222,"s":[281.62,691.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223,"s":[281.31,691.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[280.96,691.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[280.58,691.95,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[280.15,691.98,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227,"s":[279.69,692.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[279.2,692.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229,"s":[278.68,692.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230,"s":[278.15,692.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[277.61,692.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[277.08,692.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[276.58,692.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[276.14,692.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235,"s":[275.78,692.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236,"s":[275.54,692.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237,"s":[275.44,692.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238,"s":[275.42,692.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239,"s":[275.4,692.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":240,"s":[275.39,692.37,0],"to":null,"ti":null},{"t":241,"s":[275.39,692.37,0]}]},"a":{"a":0,"k":[37.61,80.36,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-20.66,69.77],[-33.83,63.73],[-23.42,13.77],[-0.75,-2],[11.34,11.76],[7.75,23.21]],"o":[[-26.27,73.12],[-27.86,41.03],[-5.81,3.01],[13.14,4.01],[10.87,13.14],[6.99,24.46]],"v":[[-20.66,69.77],[-34.61,59.91],[-5.81,3.01],[5.01,0.49],[11.34,11.76],[6.99,24.46]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[34.86,73.37]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":39,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[-37.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[-37.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[-37.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[-36.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[-36.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[-36.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[-36.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[-36.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[-35.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[-35.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[-34.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[-34.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[-33.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[-33.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[-32.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-31.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[-31.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[-30.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[-29.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[-28.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[-27.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[-26.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[-25.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[-24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[-22.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[-21.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[-20.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[-18.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[-17.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[-16.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[-15.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[-14.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[-13.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[-13.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[-12.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-12.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[-12.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[-12.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[-12.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[-13.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[-13.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[-13.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[-13.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[-13.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[-14.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[-14.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[-14.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[-14.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[-14.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[-15.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[-15.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[-15.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[-15.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[-15.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[-15.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-15.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[-15.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[-15.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[-15.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[-15.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[-15.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[-16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[-16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[-15.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[-15.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[-15.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[-15.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[-15.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[-15.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[-15.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[-15.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[-15.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[-15.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[-15.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[-14.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[-14.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[-14.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[-14.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[-13.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[-13.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[-13.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[-12.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[-12.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[-11.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[-11.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[-11.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[-10.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[-10.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[-10.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[-10.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[-10.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[-10.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[-10.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[-10.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[-10.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[-10.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[-10.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[-10.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[-10.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[-10.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[-10.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[-10.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[-10.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[-10.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[-10.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[-10.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[-10.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[-10.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[-10.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[-10.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[-10.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[-10.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[-10.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[-10.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[-10.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[-11.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[-11.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[-11.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[-11.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[-11.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[-11.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[-11.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[-11.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[-11.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[-11.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[-11.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[-11.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[-11.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[-11.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[-11.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[-11.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[-11.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[-11.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[-11.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[-12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[-12.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[-12.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[-12.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[-12.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[-12.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[-12.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[-12.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[-12.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[-12.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[-12.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[-12.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[-12.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[-12.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[-12.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[-12.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[-12.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[-12.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[-12.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[-12.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[-12.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[-12.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[-12.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[-12.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[-12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[-11.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[-11.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[-11.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[-11.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[-11.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[-11.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[-11.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[-12.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[-12.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[-12.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[-12.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[-12.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[-12.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[-12.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[-12.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[-12.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[-12.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[-12.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[-12.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[-12.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[-13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[-13.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[-13.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[-13.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[-13.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[-13.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[-13.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[-13.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[-13.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[-13.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[-12.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[-12.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[-12.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[-12.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[-12.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[-12.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[-12.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[-11.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[-11.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[-11.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[-11.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[-11.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[-12.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[-12.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[-12.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[-13.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[-13.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[-14.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[-15.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[-15.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[-16.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[-16.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[-17.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[-18.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[-19.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[-19.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[-20.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[-21.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[-22.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[-23.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[-23.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[-24.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[-25.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[-26.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[-27.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[-28.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[-29.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[-30.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[-31.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[-31.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[-32.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[-33.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[-34.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[-35.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[-35.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[-36.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[-36.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[-37.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[-37.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[-37.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[-37.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":240,"s":[-37.18]},{"t":241,"s":[-37.18]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[265.75,762.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[265.74,762.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[265.71,762.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[265.67,762.58,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[265.6,762.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[265.51,762.49,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[265.4,762.42,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[265.26,762.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[265.09,762.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[264.89,762.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[264.65,761.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[264.38,761.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[264.06,761.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[263.7,761.47,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[263.3,761.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[262.83,761.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[262.31,760.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[261.73,760.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[261.07,760.12,0],"to":[-0.23,-0.11,0],"ti":[0.26,0.13,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[260.33,759.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[259.5,759.37,0],"to":[-0.29,-0.14,0],"ti":[0.33,0.15,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[258.58,758.93,0],"to":[-0.33,-0.15,0],"ti":[0.37,0.17,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[257.54,758.45,0],"to":[-0.36,-0.17,0],"ti":[0.41,0.18,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[256.39,757.93,0],"to":[-0.4,-0.18,0],"ti":[0.45,0.2,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[255.11,757.35,0],"to":[-0.45,-0.2,0],"ti":[0.49,0.21,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[253.7,756.74,0],"to":[-0.49,-0.21,0],"ti":[0.53,0.23,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[252.16,756.07,0],"to":[-0.53,-0.23,0],"ti":[0.56,0.24,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[250.51,755.36,0],"to":[-0.56,-0.24,0],"ti":[0.58,0.25,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[248.78,754.63,0],"to":[-0.58,-0.24,0],"ti":[0.58,0.24,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[247.01,753.9,0],"to":[-0.58,-0.24,0],"ti":[0.56,0.23,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[245.29,753.19,0],"to":[-0.56,-0.23,0],"ti":[0.51,0.21,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[243.68,752.53,0],"to":[-0.51,-0.21,0],"ti":[0.44,0.18,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[242.25,751.95,0],"to":[-0.44,-0.18,0],"ti":[0.37,0.15,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[241.03,751.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[240.03,751.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[239.25,750.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[238.67,750.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[238.27,750.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[238.03,750.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[237.92,750.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[237.87,750.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[237.83,750.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[237.79,750.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[237.75,750.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[237.71,750.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[237.67,750.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[237.63,750.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[237.6,750.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[237.57,750.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[237.54,750.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[237.51,750.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[237.48,750.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[237.46,750.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[237.44,750.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[237.42,750.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[237.4,750.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[237.39,750.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[237.38,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[237.37,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[237.36,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[237.36,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[237.36,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[237.36,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[237.36,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[237.37,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[237.37,750.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[237.38,750.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[237.39,750.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[237.41,750.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[237.42,750.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[237.44,750.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[237.47,750.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[237.49,750.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[237.52,750.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[237.56,750.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[237.59,750.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[237.64,750.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[237.69,750.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[237.75,750.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[237.81,750.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[237.89,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[237.98,750.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[238.07,750.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[238.16,750.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84,"s":[238.23,750.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85,"s":[238.29,750.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86,"s":[238.33,750.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87,"s":[238.36,750.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[238.38,750.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89,"s":[238.4,750.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90,"s":[238.41,750.39,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91,"s":[238.42,750.39,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[238.43,750.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[238.44,750.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[238.45,750.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[238.45,750.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96,"s":[238.46,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[238.46,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[238.46,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[238.47,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[238.47,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[238.47,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[238.47,750.41,0],"to":null,"ti":null},{"i":{"x":0.85,"y":0.85},"o":{"x":0.16,"y":0.16},"t":103,"s":[238.47,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104,"s":[238.47,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105,"s":[238.47,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[238.46,750.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107,"s":[238.45,750.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108,"s":[238.43,750.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109,"s":[238.41,750.39,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110,"s":[238.39,750.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[238.37,750.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[238.35,750.36,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[238.33,750.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114,"s":[238.31,750.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[238.29,750.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116,"s":[238.27,750.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117,"s":[238.26,750.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[238.24,750.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[238.23,750.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120,"s":[238.21,750.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[238.2,750.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122,"s":[238.19,750.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[238.18,750.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124,"s":[238.17,750.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[238.16,750.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[238.15,750.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127,"s":[238.14,750.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128,"s":[238.14,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[238.13,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132,"s":[238.11,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[238.11,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134,"s":[238.11,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158,"s":[238.11,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159,"s":[238.11,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[238.11,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[238.1,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[238.08,750.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[238.06,750.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[238.04,750.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[238.02,750.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[238.01,750.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172,"s":[237.99,750.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173,"s":[237.98,750.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174,"s":[237.96,750.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[237.95,750.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[237.94,750.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177,"s":[237.94,750.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[237.93,750.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[237.92,750.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[237.92,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[237.91,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[237.91,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183,"s":[237.91,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184,"s":[237.9,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[237.9,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186,"s":[237.9,750.2,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187,"s":[237.9,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188,"s":[237.91,750.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189,"s":[237.93,750.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[237.95,750.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[237.98,750.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[238.01,750.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193,"s":[238.04,750.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194,"s":[238.06,750.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[238.09,750.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[238.12,750.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[238.15,750.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[238.36,750.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[238.81,750.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200,"s":[239.43,750.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[240.16,751.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202,"s":[240.96,751.42,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203,"s":[241.82,751.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204,"s":[242.71,752.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205,"s":[243.64,752.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206,"s":[244.58,752.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207,"s":[245.54,753.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208,"s":[246.51,753.68,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209,"s":[247.48,754.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210,"s":[248.46,754.49,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[249.43,754.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[250.39,755.3,0],"to":[0.32,0.14,0],"ti":[-0.32,-0.13,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[251.34,755.7,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214,"s":[252.29,756.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215,"s":[253.22,756.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[254.13,756.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217,"s":[255.02,757.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218,"s":[255.9,757.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219,"s":[256.76,758.07,0],"to":[0.28,0.13,0],"ti":[-0.27,-0.12,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[257.59,758.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[258.4,758.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222,"s":[259.17,759.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223,"s":[259.92,759.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[260.63,759.88,0],"to":[0.23,0.11,0],"ti":[-0.22,-0.11,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[261.31,760.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[261.95,760.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227,"s":[262.56,760.83,0],"to":[0.19,0.1,0],"ti":[-0.18,-0.09,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[263.12,761.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229,"s":[263.63,761.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230,"s":[264.1,761.65,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[264.51,761.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[264.88,762.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[265.18,762.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[265.43,762.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235,"s":[265.6,762.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236,"s":[265.71,762.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237,"s":[265.75,762.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238,"s":[265.75,762.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239,"s":[265.75,762.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":240,"s":[265.75,762.64,0],"to":null,"ti":null},{"t":241,"s":[265.75,762.64,0]}]},"a":{"a":0,"k":[10.47,10.64,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[1.91,6.97],[-10.22,4.14],[0.65,-10.39],[10.22,-4.14]],"o":[[-0.65,10.39],[-7.66,0.72],[0.65,-10.39],[10.22,-4.14]],"v":[[1.91,6.97],[-7.66,0.72],[0.65,-10.39],[10.22,-4.14]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.6314,0.6784,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[10.47,10.64]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":40,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[-51.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[-51.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[-51.81]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[-51.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[-51.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[-51.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[-50.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[-50.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[-50.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[-49.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[-48.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[-48.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[-47.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[-46.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-45.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[-44.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[-43.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[-42.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[-40.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[-38.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[-37.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[-35.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[-32.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[-30.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[-27.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[-24.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[-21.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[-18.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[-15.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[-12.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[-9.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[-7.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[-5.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[-3.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-2.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[-1.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[-0.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[-0.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[-0.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[-1.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[-2.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[-3.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[-4.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[-6.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[-7.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[-9.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[-11.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[-12.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[-14.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[-16.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[-18.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[-19.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[-21.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[-23.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[-25.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[-26.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[-28.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[-30.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[-31.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[-33.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[-35.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[-36.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[-38.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[-39.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[-41.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[-42.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[-43.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[-44.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[-46.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[-47.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[-48.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[-49.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[-49.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[-50.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[-51.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[-51.63]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[-51.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[-52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[-52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[-52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":240,"s":[-52]},{"t":241,"s":[-52]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[264.49,769.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[264.45,769.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[264.4,769.26,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[264.31,769.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[264.2,769.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[264.06,769.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[263.89,768.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[263.68,768.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[263.43,768.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[263.15,768.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[262.83,768.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[262.46,768.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[262.05,768.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[261.58,767.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[261.06,767.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[260.48,767.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[259.83,766.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[259.11,766.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[258.31,766.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[257.43,765.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[256.44,765.17,0],"to":[-0.34,-0.17,0],"ti":[0.38,0.19,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[255.36,764.64,0],"to":[-0.38,-0.19,0],"ti":[0.42,0.2,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[254.16,764.05,0],"to":[-0.42,-0.2,0],"ti":[0.46,0.22,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[252.86,763.42,0],"to":[-0.46,-0.22,0],"ti":[0.49,0.23,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[251.43,762.74,0],"to":[-0.49,-0.23,0],"ti":[0.53,0.25,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[249.89,762.02,0],"to":[-0.53,-0.24,0],"ti":[0.56,0.25,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[248.26,761.27,0],"to":[-0.56,-0.25,0],"ti":[0.57,0.25,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[246.56,760.5,0],"to":[-0.57,-0.25,0],"ti":[0.56,0.25,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[244.85,759.75,0],"to":[-0.56,-0.24,0],"ti":[0.53,0.23,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[243.19,759.04,0],"to":[-0.53,-0.23,0],"ti":[0.48,0.2,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[241.66,758.39,0],"to":[-0.48,-0.2,0],"ti":[0.42,0.17,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[240.31,757.83,0],"to":[-0.42,-0.17,0],"ti":[0.34,0.14,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[239.17,757.36,0],"to":[-0.34,-0.14,0],"ti":[0.27,0.11,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[238.24,756.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[237.53,756.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[237.01,756.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[236.67,756.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[236.48,756.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":103,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[236.43,756.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[236.6,756.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[237.01,756.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200,"s":[237.58,756.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[238.26,757,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202,"s":[239.01,757.3,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203,"s":[239.81,757.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204,"s":[240.66,757.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205,"s":[241.54,758.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206,"s":[242.44,758.72,0],"to":[0.3,0.13,0],"ti":[-0.31,-0.13,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207,"s":[243.36,759.11,0],"to":[0.31,0.13,0],"ti":[-0.31,-0.13,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208,"s":[244.29,759.51,0],"to":[0.31,0.14,0],"ti":[-0.31,-0.14,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209,"s":[245.23,759.92,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210,"s":[246.18,760.33,0],"to":[0.32,0.14,0],"ti":[-0.31,-0.14,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[247.12,760.76,0],"to":[0.32,0.14,0],"ti":[-0.31,-0.14,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[248.07,761.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[249.01,761.61,0],"to":[0.31,0.14,0],"ti":[-0.31,-0.14,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214,"s":[249.95,762.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215,"s":[250.87,762.48,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[251.79,762.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217,"s":[252.69,763.34,0],"to":[0.3,0.14,0],"ti":[-0.29,-0.14,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218,"s":[253.59,763.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219,"s":[254.47,764.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[255.33,764.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[256.17,765.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222,"s":[256.99,765.44,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223,"s":[257.79,765.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[258.55,766.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[259.29,766.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[260,766.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227,"s":[260.67,767.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[261.31,767.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229,"s":[261.9,767.95,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230,"s":[262.45,768.23,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[262.94,768.49,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[263.38,768.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[263.76,768.92,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[264.07,769.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235,"s":[264.3,769.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236,"s":[264.45,769.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237,"s":[264.5,769.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238,"s":[264.5,769.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239,"s":[264.5,769.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":240,"s":[264.5,769.31,0],"to":null,"ti":null},{"t":241,"s":[264.5,769.31,0]}]},"a":{"a":0,"k":[11.43,5.87,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[3.27,-11.81],[4.78,1.83],[12.68,10.04],[8.83,15.88],[1.95,14.33],[-6.23,1.37],[-7.94,-0.11],[-9.85,-0.43],[-15.63,-5.07],[-9.65,-12.19],[-5.51,-16.22]],"o":[[4.62,-8.76],[7.18,9.17],[10.54,12.95],[7.02,17.72],[0.7,12.72],[-6.23,1.37],[-7.94,-0.11],[-10.94,-2.92],[-14.09,-8.8],[-8.66,-13.09],[-0.11,-16.37]],"v":[[4.62,-8.76],[4.78,1.83],[10.54,12.95],[8.83,15.88],[0.7,12.72],[-6.23,1.37],[-7.94,-0.11],[-9.85,-0.43],[-14.62,-7.5],[-8.66,-13.09],[-3.91,-16.26]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[12.93,16.62]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":41,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[-14.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[-14.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-14.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[-14.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[-14.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[-13.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[-13.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[-13.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[-13.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[-12.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[-12.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[-12.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[-11.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[-11.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[-10.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[-9.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[-9.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[-8.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[-8.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[-7.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[-7.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[-6.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-6.39]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[-5.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[-5.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[-5.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[-4.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[-4.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[-4.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[-3.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[-3.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[-3.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[-2.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[-2.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[-2.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[-1.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[-1.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[-1.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[-1.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[-1.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[-0.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[-0.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-0.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[-0.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[-0.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[-0.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[-0.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[-0.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[-0.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[-0.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[-0.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[-0.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[-0.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[-0.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[-0.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[-0.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[-0.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[-1.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[-1.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[-1.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[-1.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[-2.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[-2.62]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[-3.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[-3.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[-3.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[-4.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[-5.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[-6.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[-6.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[-7.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[-8.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[-8.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[-8.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[-9.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[-9.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[-9.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[-9.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[-9.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[-9.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[-9.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[-10.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[-10.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[-10.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[-10.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[-10.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[-10.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[-10.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[-10.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[-10.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[-10.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[-10.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[-10.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[-10.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[-10.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[-9.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[-9.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[-9.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[-9.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[-9.34]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[-9.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[-9.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[-8.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[-8.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[-8.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[-8.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[-8.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[-8.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[-8.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[-7.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[-7.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[-7.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[-7.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[-7.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[-7.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[-7.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[-7.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[-7.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[-6.95]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[-6.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[-6.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[-6.72]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[-6.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[-6.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[-6.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[-6.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[-6.48]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[-6.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[-6.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[-6.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[-6.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[-6.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[-6.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[-6.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[-6.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[-6.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[-6.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[-6.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[-6.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[-6.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[-6.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[-6.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[-6.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[-6.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[-6.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[-6.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[-6.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[-6.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[-6.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[-6.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[-6.7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[-6.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[-6.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[-6.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[-6.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[-5.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[-5.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[-5.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[-5.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[-5.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[-5.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[-5.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[-5.24]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[-5.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[-5.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[-5.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[-5.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[-5.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[-5.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[-5.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[-5.04]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[-5.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[-5.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[-5.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[-5.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[-5.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[-5.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[-5.5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[-5.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[-5.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[-6.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[-6.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[-6.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[-6.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[-6.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[-7.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[-7.43]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[-7.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[-7.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[-8.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[-8.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[-8.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[-8.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[-9.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[-9.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[-9.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[-9.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[-9.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[-10.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[-10.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[-10.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[-10.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[-10.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[-11.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[-11.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[-11.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[-11.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[-11.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[-12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[-12.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[-12.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[-12.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[-12.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[-12.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[-12.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[-13.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[-13.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[-13.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[-13.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[-13.67]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[-13.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[-13.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[-14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[-14.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[-14.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[-14.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":240,"s":[-14.24]},{"t":241,"s":[-14.24]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[290.91,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[290.94,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[291.04,606.14,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[291.21,606.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[291.47,606.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[291.81,606.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[292.26,605.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[292.81,605.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[293.48,605.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[294.26,605.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[295.15,605.57,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[296.13,605.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[297.18,605.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[298.27,605.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[299.37,604.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[300.45,604.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[301.5,604.67,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[302.5,604.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[303.43,604.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[304.31,604.28,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[305.13,604.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[305.88,604.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[306.57,603.96,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[307.21,603.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[307.81,603.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[308.35,603.7,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[308.85,603.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[309.31,603.57,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[309.73,603.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[310.12,603.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[310.47,603.4,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[310.79,603.35,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[311.08,603.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[311.35,603.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[311.59,603.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[311.8,603.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[312,603.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[312.17,603.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[312.33,603.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[312.47,603.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[312.59,603.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[312.7,603.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[312.78,603.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[312.86,603.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[312.92,603.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[312.96,603.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[312.99,603.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[313.01,603.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[313.01,603.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[313.01,603.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[313,603.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[312.98,603.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[312.95,603.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[312.91,603.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[312.86,603.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[312.79,603.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[312.71,603.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[312.62,603.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[312.5,603.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[312.37,603.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[312.21,603.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[312.02,603.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[311.79,603.27,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[311.52,603.32,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[311.2,603.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[310.8,603.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[310.31,603.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[309.69,603.67,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[308.91,603.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[307.97,603.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[306.96,604.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84,"s":[306.03,604.36,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85,"s":[305.25,604.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86,"s":[304.63,604.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87,"s":[304.13,604.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[303.74,604.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89,"s":[303.41,604.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90,"s":[303.15,604.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91,"s":[302.93,604.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[302.74,604.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[302.58,605,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[302.45,605.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[302.33,605.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96,"s":[302.24,605.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[302.16,605.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[302.09,605.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[302.04,605.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[302,605.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[301.97,605.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[301.95,605.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":103,"s":[301.94,605.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104,"s":[301.94,605.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105,"s":[301.9,605.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[301.8,605.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107,"s":[301.63,605.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108,"s":[301.43,604.95,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109,"s":[301.2,604.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110,"s":[300.95,604.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[300.69,604.7,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[300.43,604.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[300.19,604.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114,"s":[299.96,604.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[299.75,604.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116,"s":[299.54,604.31,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117,"s":[299.36,604.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[299.18,604.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[299.02,604.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120,"s":[298.86,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[298.72,604.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122,"s":[298.59,603.98,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[298.47,603.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124,"s":[298.36,603.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[298.26,603.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[298.16,603.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127,"s":[298.08,603.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128,"s":[298,603.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[297.93,603.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[297.86,603.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131,"s":[297.8,603.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132,"s":[297.75,603.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[297.7,603.67,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134,"s":[297.66,603.65,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135,"s":[297.62,603.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136,"s":[297.58,603.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[297.55,603.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[297.53,603.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139,"s":[297.51,603.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140,"s":[297.49,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141,"s":[297.48,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[297.47,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[297.46,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[297.46,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[297.47,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[297.48,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147,"s":[297.5,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148,"s":[297.54,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149,"s":[297.59,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[297.66,603.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[297.75,603.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152,"s":[297.85,603.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153,"s":[297.97,603.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[298.12,603.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155,"s":[298.3,603.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[298.51,603.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157,"s":[298.75,603.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158,"s":[299.05,603.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159,"s":[299.4,603.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[299.82,603.67,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[300.34,603.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162,"s":[300.99,603.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[301.8,603.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164,"s":[302.81,603.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165,"s":[304.04,603.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[305.37,603.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[306.61,603.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[307.63,603.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[308.44,603.96,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[309.09,603.98,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[309.61,604,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172,"s":[310.03,604.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173,"s":[310.39,604.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174,"s":[310.68,604.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[310.93,604.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[311.13,604.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177,"s":[311.31,604.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[311.46,604.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[311.58,604.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[311.69,604.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[311.77,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[311.84,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183,"s":[311.9,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184,"s":[311.93,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[311.96,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186,"s":[311.97,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187,"s":[311.97,604.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188,"s":[311.91,604.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189,"s":[311.73,604.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[311.49,604.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[311.2,604.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[310.88,604.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193,"s":[310.54,604.22,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194,"s":[310.18,604.25,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[309.8,604.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[309.41,604.33,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[309,604.37,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[308.58,604.41,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[308.15,604.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200,"s":[307.72,604.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[307.27,604.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202,"s":[306.83,604.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203,"s":[306.37,604.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204,"s":[305.91,604.68,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205,"s":[305.45,604.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206,"s":[304.99,604.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207,"s":[304.52,604.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208,"s":[304.05,604.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209,"s":[303.58,604.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210,"s":[303.1,604.96,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[302.63,605.01,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[302.15,605.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[301.68,605.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214,"s":[301.2,605.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215,"s":[300.72,605.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[300.25,605.24,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217,"s":[299.77,605.29,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218,"s":[299.3,605.34,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219,"s":[298.82,605.38,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[298.35,605.43,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[297.89,605.47,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222,"s":[297.42,605.52,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223,"s":[296.96,605.57,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[296.51,605.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[296.05,605.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[295.6,605.7,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227,"s":[295.16,605.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[294.73,605.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229,"s":[294.3,605.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230,"s":[293.88,605.87,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[293.47,605.91,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[293.08,605.95,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[292.7,605.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[292.34,606.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235,"s":[292,606.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236,"s":[291.69,606.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237,"s":[291.4,606.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238,"s":[291.16,606.14,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239,"s":[290.99,606.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":240,"s":[290.91,606.16,0],"to":null,"ti":null},{"t":241,"s":[290.91,606.16,0]}]},"a":{"a":0,"k":[20.12,1.52,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-1.76,26.47],[-20.12,-84.02],[-16.01,-99.53],[20.12,-75.98],[12.19,8.32]],"o":[[-10.46,6.02],[-20.12,-84.02],[21.87,-92.72],[20.12,-75.98],[12.19,8.32]],"v":[[-10.46,6.02],[-20.12,-84.02],[2.52,-96.2],[20.12,-75.98],[12.19,8.32]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[20.37,84.27]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":42,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[1.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[1.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[1.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[1.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[1.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[1.41]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[1.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[1.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[1.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[1.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[2.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[2.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[2.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[2.6]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[2.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[2.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[2.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[2.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[3.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[3.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[3.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[2.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[2.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[2.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[2.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[2.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[2.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[2.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[2.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[2.23]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[2.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[1.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[1.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[1.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[1.54]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[1.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[1.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[1.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[0.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[0.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[0.68]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[0.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[0.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[0.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[0.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[0.11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[0.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[0.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[0.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[0.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[0.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[0.27]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[0.38]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[0.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[0.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[0.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[0.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[1.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[1.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[1.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[1.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[1.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[2.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[2.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[2.71]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[2.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[3.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[3.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[3.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[3.9]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[4.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[4.1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[4.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[4.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[4.16]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[4.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[4.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[4.18]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[4.15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[4.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[3.83]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[3.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[3.29]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[2.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[2.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[2.3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[1.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[1.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[1.33]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[1.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[0.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[0.46]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[0.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[-0.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[-0.32]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[-0.56]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[-0.78]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[-1]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[-1.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[-1.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[-1.58]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[-1.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[-1.92]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[-2.07]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[-2.21]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[-2.35]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[-2.47]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[-2.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[-2.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[-2.79]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[-2.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[-2.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[-3]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[-3.05]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[-3.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[-3.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[-3.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[-3.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[-3.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[-3.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[-3.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[-3.06]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[-3.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[-2.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[-2.86]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[-2.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[-2.65]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[-2.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[-2.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[-2.19]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[-1.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[-1.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[-1.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[-1.17]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[-0.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162,"s":[-0.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163,"s":[0.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164,"s":[0.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165,"s":[1.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166,"s":[2.14]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167,"s":[2.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168,"s":[3.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169,"s":[3.59]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170,"s":[3.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171,"s":[4.08]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172,"s":[4.26]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173,"s":[4.4]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174,"s":[4.52]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175,"s":[4.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176,"s":[4.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177,"s":[4.76]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178,"s":[4.82]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179,"s":[4.87]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180,"s":[4.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181,"s":[4.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182,"s":[4.96]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183,"s":[4.98]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184,"s":[5]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185,"s":[5.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186,"s":[5.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[5.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188,"s":[5.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189,"s":[5.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190,"s":[5.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191,"s":[5.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192,"s":[5.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193,"s":[5.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194,"s":[5.02]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195,"s":[5.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196,"s":[4.99]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197,"s":[4.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198,"s":[4.94]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199,"s":[4.91]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200,"s":[4.88]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201,"s":[4.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202,"s":[4.8]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203,"s":[4.75]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204,"s":[4.69]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205,"s":[4.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206,"s":[4.57]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207,"s":[4.51]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208,"s":[4.44]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209,"s":[4.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210,"s":[4.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211,"s":[4.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212,"s":[4.12]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213,"s":[4.03]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214,"s":[3.93]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215,"s":[3.84]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216,"s":[3.74]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217,"s":[3.64]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218,"s":[3.53]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219,"s":[3.42]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220,"s":[3.31]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221,"s":[3.2]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222,"s":[3.09]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223,"s":[2.97]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224,"s":[2.85]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225,"s":[2.73]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226,"s":[2.61]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227,"s":[2.49]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228,"s":[2.37]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229,"s":[2.25]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230,"s":[2.13]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231,"s":[2.01]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232,"s":[1.89]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233,"s":[1.77]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234,"s":[1.66]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235,"s":[1.55]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236,"s":[1.45]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237,"s":[1.36]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238,"s":[1.28]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239,"s":[1.22]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":240,"s":[1.2]},{"t":241,"s":[1.2]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[315.2,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[315.21,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[315.25,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[315.31,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[315.41,693.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[315.54,693.65,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[315.7,693.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[315.9,693.67,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[316.13,693.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[316.38,693.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[316.65,693.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[316.93,693.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[317.2,693.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[317.45,693.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[317.67,693.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[317.85,693.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[317.98,693.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[318.07,693.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[318.12,693.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[318.14,693.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[318.11,693.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[318.06,693.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[317.97,693.84,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[317.87,693.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[317.74,693.82,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[317.59,693.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[317.42,693.79,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[317.25,693.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[317.06,693.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[316.85,693.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[316.64,693.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[316.43,693.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[316.21,693.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[315.98,693.68,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[315.75,693.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[315.52,693.65,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[315.28,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[315.05,693.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[314.82,693.6,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[314.58,693.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[314.36,693.58,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[314.14,693.57,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[313.94,693.56,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[313.75,693.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[313.58,693.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[313.45,693.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[313.34,693.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[313.28,693.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[313.26,693.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[313.27,693.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[313.32,693.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[313.41,693.53,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[313.53,693.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[313.69,693.55,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[313.88,693.56,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[314.1,693.57,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[314.33,693.58,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[314.58,693.59,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[314.85,693.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[315.14,693.62,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[315.44,693.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[315.75,693.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[316.09,693.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[316.44,693.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[316.81,693.74,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[317.21,693.77,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[317.62,693.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[318.06,693.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[318.51,693.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[318.94,693.93,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[319.29,693.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84,"s":[319.54,694,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85,"s":[319.7,694.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86,"s":[319.79,694.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87,"s":[319.86,694.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[319.9,694.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89,"s":[319.93,694.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90,"s":[319.94,694.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91,"s":[319.96,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[319.97,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[319.97,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[319.98,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[319.98,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":103,"s":[319.99,694.05,0],"to":[0,0,0],"ti":[0.01,0,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104,"s":[319.99,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105,"s":[319.93,694.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[319.73,694.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107,"s":[319.42,693.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108,"s":[319.02,693.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109,"s":[318.56,693.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110,"s":[318.05,693.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[317.51,693.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[316.97,693.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[316.43,693.71,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114,"s":[315.91,693.67,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[315.41,693.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116,"s":[314.92,693.61,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117,"s":[314.45,693.58,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[314,693.56,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[313.57,693.54,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120,"s":[313.15,693.52,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[312.75,693.51,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122,"s":[312.37,693.5,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[312,693.49,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124,"s":[311.65,693.48,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[311.32,693.47,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[311.01,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127,"s":[310.71,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128,"s":[310.43,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[310.17,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[309.92,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131,"s":[309.69,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132,"s":[309.48,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[309.28,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134,"s":[309.09,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135,"s":[308.93,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136,"s":[308.77,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[308.64,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[308.52,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139,"s":[308.42,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140,"s":[308.34,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141,"s":[308.28,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[308.24,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[308.22,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[308.21,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[308.22,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[308.24,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147,"s":[308.28,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148,"s":[308.34,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149,"s":[308.42,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[308.52,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[308.65,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152,"s":[308.8,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153,"s":[308.99,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[309.2,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155,"s":[309.44,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[309.73,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157,"s":[310.05,693.45,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158,"s":[310.43,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159,"s":[310.87,693.46,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[311.37,693.47,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[311.97,693.48,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162,"s":[312.67,693.51,0],"to":[0.26,0.01,0],"ti":[-0.3,-0.01,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[313.5,693.54,0],"to":[0.3,0.01,0],"ti":[-0.35,-0.02,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164,"s":[314.48,693.59,0],"to":[0.35,0.02,0],"ti":[-0.37,-0.02,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165,"s":[315.59,693.65,0],"to":[0.37,0.03,0],"ti":[-0.35,-0.03,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[316.71,693.73,0],"to":[0.35,0.03,0],"ti":[-0.29,-0.02,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[317.69,693.81,0],"to":[0.29,0.03,0],"ti":[-0.22,-0.02,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[318.45,693.89,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[319.03,693.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[319.48,693.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[319.83,694.03,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172,"s":[320.11,694.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173,"s":[320.33,694.09,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174,"s":[320.52,694.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[320.68,694.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[320.8,694.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177,"s":[320.91,694.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[321,694.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[321.08,694.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[321.14,694.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[321.19,694.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[321.24,694.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183,"s":[321.27,694.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184,"s":[321.29,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[321.3,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186,"s":[321.31,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187,"s":[321.31,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188,"s":[321.32,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189,"s":[321.32,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[321.33,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[321.34,694.21,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[321.34,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193,"s":[321.33,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194,"s":[321.32,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[321.3,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[321.28,694.21,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[321.24,694.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[321.2,694.2,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[321.16,694.19,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200,"s":[321.1,694.18,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[321.04,694.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202,"s":[320.97,694.17,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203,"s":[320.89,694.16,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204,"s":[320.8,694.15,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205,"s":[320.71,694.13,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206,"s":[320.61,694.12,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207,"s":[320.51,694.11,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208,"s":[320.39,694.1,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209,"s":[320.27,694.08,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210,"s":[320.15,694.07,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[320.02,694.05,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[319.88,694.04,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[319.74,694.02,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214,"s":[319.59,694,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215,"s":[319.43,693.99,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[319.27,693.97,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217,"s":[319.11,693.95,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218,"s":[318.94,693.94,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219,"s":[318.77,693.92,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[318.59,693.9,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[318.41,693.88,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222,"s":[318.23,693.86,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223,"s":[318.04,693.85,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[317.85,693.83,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[317.66,693.81,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[317.47,693.8,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227,"s":[317.27,693.78,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[317.08,693.76,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229,"s":[316.88,693.75,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230,"s":[316.68,693.73,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[316.49,693.72,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[316.3,693.7,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[316.11,693.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[315.93,693.68,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235,"s":[315.76,693.66,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236,"s":[315.6,693.65,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237,"s":[315.45,693.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238,"s":[315.33,693.64,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239,"s":[315.23,693.63,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":240,"s":[315.2,693.63,0],"to":null,"ti":null},{"t":241,"s":[315.2,693.63,0]}]},"a":{"a":0,"k":[20.37,92.02,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.76,78.62],[-8.13,83.93],[-18.79,35.7],[-8.26,-1.53],[11.69,7.82]],"o":[[1.77,84.02],[-11.5,58.68],[-10.46,6.02],[9.22,-0.24],[11.69,7.82]],"v":[[5.76,78.62],[-10.27,80.27],[-10.46,6.02],[0.5,-0.88],[11.69,7.82]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[20.37,84.27]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":43,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239.97,"s":[0]},{"t":240.97,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":103,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239,"s":[310.79,772.69,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":240,"s":[310.79,772.69,0],"to":null,"ti":null},{"t":241,"s":[310.79,772.69,0]}]},"a":{"a":0,"k":[6.08,10.3,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.65,5.35],[-5.83,9.91],[-5.59,-10.05],[5.83,-9.91]],"o":[[5.59,10.05],[-5.77,5.21],[-5.59,-10.05],[5.83,-9.91]],"v":[[5.65,5.35],[-5.77,5.21],[-5.59,-10.05],[5.83,-9.91]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.6314,0.6784,0.7176,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[6.08,10.3]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":44,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":1,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":2,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":3,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":4,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":6,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":7,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":8,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":9,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":11,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":12,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":13,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":14,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":16,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":17,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":18,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":19,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":21,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":22,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":23,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":24,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":26,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":27,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":28,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":29,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":31.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":32.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":33.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":34.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":36.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":37.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":38.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":39.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":41.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":42.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":43.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":44.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":46.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":47.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":48.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":49.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":51.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":52.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":53.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":54.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":56.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":57.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":58.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":59.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":61.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":63.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":64.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":65.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":66.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":67.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":68.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":69.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":70.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":71.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":72.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":73.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":74.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":75.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":76.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":77.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":78.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":79.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":80.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":81.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":82.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":83.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":84.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":85.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":86.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":87.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":88.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":89.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":90.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":91.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":92.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":93.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":94.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":95.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":96.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":97.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":98.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":99.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":100.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":101.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":102.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":103.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":104.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":105.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":106.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":107.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":108.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":109.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":110.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":111.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":112.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":113.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":114.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":115.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":116.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":117.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":118.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":119.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":120.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":121.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":122.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":123.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":124.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":125.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":126.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":127.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":128.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":129.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":130.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":131.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":132.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":133.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":134.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":135.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":136.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":137.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":138.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":139.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":140.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":141.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":142.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":143.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":144.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":145.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":146.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":147.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":148.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":149.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":150.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":151.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":152.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":153.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":154.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":155.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":156.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":157.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":158.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":159.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":160.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":161.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":162.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":163.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":164.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":165.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":166.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":167.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":168.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":169.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":170.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":171.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":172.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":173.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":174.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":175.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":176.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":177.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":178.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":179.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":180.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":181.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":182.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":183.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":184.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":185.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":186.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":188.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":189.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":190.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":191.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":192.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":193.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":194.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":195.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":196.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":197.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":198.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":199.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":200.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":201.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":202.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":203.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":204.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":205.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":206.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":207.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":208.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":209.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":210.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":211.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":212.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":213.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":214.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":215.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":216.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":217.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":218.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":219.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":220.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":221.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":222.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":223.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":224.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":225.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":226.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":227.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":228.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":229.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":230.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":231.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":232.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":233.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":234.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":235.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":236.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":237.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":238.97,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":239.97,"s":[0]},{"t":240.97,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":1,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":2,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":3,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":4,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":5,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":6,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":7,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":8,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":9,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":10,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":11,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":12,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":13,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":14,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":15,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":16,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":17,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":18,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":19,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":20,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":21,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":22,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":23,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":24,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":25,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":26,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":27,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":28,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":29.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":32.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":33.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":34.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":35.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":36.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":37.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":38.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":39.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":40.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":41.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":42.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":43.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":44.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":45.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":46.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":47.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":48.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":49.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":50.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":51.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":52.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":53.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":54.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":55.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":56.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":57.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":58.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":59.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":60.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":61.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":62.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":63.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":64.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":65.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":66.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":67.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":68.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":69.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":70.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":71.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":72.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":73.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":74.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":75.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":76.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":77.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":78.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":79.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":80.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":81.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":82.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":83.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":84.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":85.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":86.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":87.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":88.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":89.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":90.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":91.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":92.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":93.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":94.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":95.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":96.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":97.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":98.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":99.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":100.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":101.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":102.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":103.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":104.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":105.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":106.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":107.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":108.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":109.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":110.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":111.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":112.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":113.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":114.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":115.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":116.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":117.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":118.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":119.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":120.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":121.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":122.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":123.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":124.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":125.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":126.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":127.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":128.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":129.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":130.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":131.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":132.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":133.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":134.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":135.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":136.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":137.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":138.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":139.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":140.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":141.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":142.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":143.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":144.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":145.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":146.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":147.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":148.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":149.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":150.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":151.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":152.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":153.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":154.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":155.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":156.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":157.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":158.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":159.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":160.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":161.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":162.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":163.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":164.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":165.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":166.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":167.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":168.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":169.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":170.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":171.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":172.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":173.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":174.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":175.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":176.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":177.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":178.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":179.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":180.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":181.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":182.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":183.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":184.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":185.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":186.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":187.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":188.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":189.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":190.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":191.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":192.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":193.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":194.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":195.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":196.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":197.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":198.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":199.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":200.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":201.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":202.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":203.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":204.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":205.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":206.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":207.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":208.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":209.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":210.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":211.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":212.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":213.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":214.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":215.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":216.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":217.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":218.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":219.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":220.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":221.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":222.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":223.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":224.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":225.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":226.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":227.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":228.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":229.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":230.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":231.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":232.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":233.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":234.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":235.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":236.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":237.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":238.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":239.97,"s":[311.24,768.06,0],"to":null,"ti":null},{"t":240.97,"s":[311.24,768.06,0]}]},"a":{"a":0,"k":[9.17,-3.55,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-13.87,-8.65],[1.23,-7.57],[14.14,-12.2],[17.4,-6.48],[16.82,-1.22],[1.47,4.25],[-2.24,3.56],[-2.31,7.13],[-9.21,9.14],[-18.39,8.66],[-18.39,-6.55]],"o":[[-10.29,-9.5],[9.66,-8.71],[16.88,-9.3],[18.42,-4.46],[13.72,-0.02],[1.47,4.25],[-2.24,3.56],[-2.31,7.13],[-13.69,10.2],[-18.42,4.65],[-12.24,-7.89]],"v":[[-10.29,-9.5],[1.23,-7.57],[16.88,-9.3],[17.4,-6.48],[13.72,-0.02],[1.47,4.25],[-2.24,3.56],[-2.31,7.13],[-9.21,9.14],[-18.42,4.65],[-16.35,-7]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[18.67,10.45]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":45,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[288.29,782.7,0]},"a":{"a":0,"k":[62.69,14.04,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[62.44,-4.26],[6.99,-13.6],[-14.27,-6.83],[-40.83,-7.2],[-62.44,4.8],[-24.87,11.36],[-12.04,8.78],[29.14,13.61]],"o":[[32.33,-13.79],[-11.96,-7.77],[-26.69,-7.75],[-61.8,-0.75],[-41.69,11.37],[-12.78,8.52],[3.8,13.79],[61.52,3.64]],"v":[[47.38,-9.02],[-9.2,-8.62],[-16.14,-5.84],[-50.42,-4.25],[-51.86,8.15],[-13.48,8.25],[-11.25,9.03],[45.33,8.62]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[62.69,14.04]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":46,"ty":4,"parent":48,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[26.81,164.08,0]},"a":{"a":0,"k":[26.93,28.92,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[14.76,20.59],[5.4,28.33],[5.5,28.22],[18.94,12.17],[-1.57,-28.67],[-10.86,-18.1],[-10.77,-18.23],[-26.25,0.05],[-26.25,0.05],[-26.68,0.5]],"o":[[5.08,28.67],[5.5,28.21],[5.5,28.22],[26.68,1.14],[-11.17,-17.76],[-10.76,-18.22],[-10.77,-18.23],[-26.25,0.05],[-26.35,0.17],[-17.4,-6.69]],"v":[[5.2,28.57],[5.5,28.21],[5.5,28.22],[18.94,12.17],[-11.07,-17.87],[-10.76,-18.22],[-10.77,-18.23],[-26.25,0.05],[-26.25,0.05],[-26.56,0.4]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7756,0.8904,0.9844,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[26.93,28.92]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":47,"ty":4,"parent":48,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[99.26,98.7,0]},"a":{"a":0,"k":[72.55,84.64,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[57.65,-82.3],[69.03,-84.39],[-59.32,84.39],[-72.3,65.42]],"o":[[61.09,-82.37],[72.3,-71.4],[-63.91,70.39],[-72.3,65.42]],"v":[[57.65,-82.3],[72.3,-71.4],[-59.32,84.39],[-72.3,65.42]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2226,0.5506,0.8574,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[72.55,84.64]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":48,"ty":4,"parent":1,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-61.09,6.83,0]},"a":{"a":0,"k":[78.58,82.36,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-67.82,72.99],[57.66,-78.1],[73.29,-79.22],[-47.74,79.29]],"o":[[-78.33,82.11],[66.17,-82.11],[78.33,-65.97],[-57.3,63.33]],"v":[[-78.33,82.11],[57.66,-78.1],[78.33,-65.97],[-47.74,79.29]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.4431,0.502,0.9922,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[78.58,82.36]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":49,"ty":4,"parent":48,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[17.1,177.54,0]},"a":{"a":0,"k":[39.43,43.97,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-8.24,41.81],[0.39,31.6],[0.49,31.49],[30.74,-4.26],[39.09,-28.49],[8.24,-41.81],[-30.44,3.91],[-30.44,3.92],[-30.64,4.14],[-32.34,21.44]],"o":[[0.29,31.72],[0.48,31.48],[0.49,31.49],[39.18,-14.23],[22.01,-43.72],[-0.19,-31.84],[-30.44,3.91],[-30.54,4.03],[-39.18,14.23],[-15.25,36.67]],"v":[[0.19,31.84],[0.48,31.48],[0.49,31.49],[30.74,-4.26],[30.55,-36.1],[-0.19,-31.84],[-30.44,3.91],[-30.44,3.92],[-30.74,4.26],[-23.79,29.06]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.4431,0.502,0.9922,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[39.43,43.97]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":51,"ty":4,"parent":48,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[177.65,-18.25,0]},"a":{"a":0,"k":[11.38,13.65,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[11.13,-13.4],[2.83,13.4],[-2.02,0.55]],"o":[[11.13,-13.4],[1.9,5.33],[-11.13,1.44]],"v":[[11.13,-13.4],[2.83,13.4],[-11.13,1.44]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[11.38,13.65]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":52,"ty":4,"parent":48,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[158.84,4,0]},"a":{"a":0,"k":[27.91,33.46,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.73,33.21],[27.66,-33.21],[-20.83,-2.59]],"o":[[13.98,22.11],[27.66,-33.21],[-27.66,12.8]],"v":[[13.98,22.11],[27.66,-33.21],[-20.83,-2.59]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.7792,0.8901,0.9808,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[27.91,33.46]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true}]},{"ddd":0,"ind":5,"ty":4,"parent":1,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[46.76,-168.33,0]},"a":{"a":0,"k":[57.83,16.14,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-56.28,-14.58],[56.28,14.58]],"o":[[-56.28,-14.58],[56.28,14.58]],"v":[[-56.28,-14.58],[56.28,14.58]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":3.1},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[57.83,16.14]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":6,"ty":4,"parent":1,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[48.41,-160.5,0]},"a":{"a":0,"k":[91.74,56.61,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[79.43,-0.59],[63.26,-4.49],[50.69,-31.27],[-41.24,-53.45],[-63.12,-48.4],[-67.45,-36.02],[-91.48,-29.09],[-79.43,17.69],[67.45,53.13],[91.49,46.19]],"o":[[66.04,-3.82],[61.03,-18.44],[38.63,-34.18],[-53.3,-56.36],[-64.67,-35.35],[-80.85,-39.26],[-90.71,2.23],[-66.04,20.92],[80.85,56.36],[90.71,14.87]],"v":[[66.04,-3.82],[63.26,-4.49],[38.63,-34.18],[-41.24,-53.45],[-64.67,-35.35],[-67.45,-36.02],[-91.1,-13.43],[-66.04,20.92],[67.45,53.13],[91.1,30.53]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.44,0.496,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[91.74,56.61]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":7,"ty":3,"parent":1,"sr":1,"ks":{"o":{"a":0,"k":0},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[51,161,0],"to":null,"ti":null},{"t":240,"s":[51,-61,0]}]},"a":{"a":0,"k":[50,50,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":8,"ty":0,"parent":7,"refId":"comp_1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":62,"s":[100]},{"t":83,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[49,-61,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":0,"op":241,"st":-265,"bm":0,"completed":true,"layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[410.25,404.81,0]},"a":{"a":0,"k":[28.48,24.93,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"o":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"v":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5.53},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[28.48,24.93]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":240,"s":[0]},{"t":270,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"_render":true}],"ip":240,"op":1139,"st":240,"bm":0,"completed":true},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[411.73,402.39,0]},"a":{"a":0,"k":[28.22,39.04,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83,0.83],"y":[0.83,0.83,-15.67]},"o":{"x":[0.05,0.05,0.05],"y":[0,0,0]},"t":0,"s":[0,0,100]},{"t":15,"s":[100,100,100]}],"x":"var $bm_rt;\nvar enable, amp, freq, decay, n, t, v;\ntry {\n $bm_rt = enable = effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0001');\n if (enable == 0) {\n $bm_rt = value;\n } else {\n amp = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0003'), 2.5);\n freq = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0004'), 20);\n decay = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0005'), 20);\n n = 0, 0 < numKeys && (n = nearestKey(time).index, key(n).time > time && n--), t = 0 === n ? 0 : $bm_sub(time, key(n).time), $bm_rt = 0 < n ? (v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10))), $bm_sum(value, $bm_div($bm_mul($bm_mul($bm_div(v, 100), amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))))) : value;\n }\n} catch (err) {\n $bm_rt = value = value;\n}"}},"ao":0,"ef":[{"ty":5,"en":1,"ef":[{"ty":7,"v":{"a":0,"k":1}},{"ty":6,"v":0},{"ty":0,"v":{"a":0,"k":20,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"v":{"a":0,"k":20,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"v":{"a":0,"k":40,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":6,"v":0}]}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"o":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"v":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.4431,0.502,0.9922,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[28.22,39.04]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":899,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[529.23,411.78,0]},"a":{"a":0,"k":[45.63,13.88,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-43.15,-11.4],[43.15,11.4]],"o":[[-43.15,-11.4],[43.15,11.4]],"v":[[-43.15,-11.4],[43.15,11.4]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":4.96},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[45.63,13.88]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":5,"s":[0]},{"t":35,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"_render":true}],"ip":5,"op":889,"st":-10,"bm":0,"completed":true},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[557.83,453.77,0]},"a":{"a":0,"k":[74.92,21.47,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-72.43,-18.99],[72.44,18.99]],"o":[[-72.43,-18.99],[72.44,18.99]],"v":[[-72.43,-18.99],[72.44,18.99]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":4.96},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[74.92,21.47]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":15,"s":[0]},{"t":45,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"_render":true}],"ip":15,"op":899,"st":0,"bm":0,"completed":true}]},{"ddd":0,"ind":9,"ty":0,"parent":7,"refId":"comp_1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":187,"s":[100]},{"t":208,"s":[0]}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[49,50.5,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":0,"op":241,"st":-187,"bm":0,"completed":true,"layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[410.25,404.81,0]},"a":{"a":0,"k":[28.48,24.93,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"o":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"v":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5.53},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[28.48,24.93]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":240,"s":[0]},{"t":270,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"_render":true}],"ip":240,"op":1139,"st":240,"bm":0,"completed":true},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[411.73,402.39,0]},"a":{"a":0,"k":[28.22,39.04,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83,0.83],"y":[0.83,0.83,-15.67]},"o":{"x":[0.05,0.05,0.05],"y":[0,0,0]},"t":0,"s":[0,0,100]},{"t":15,"s":[100,100,100]}],"x":"var $bm_rt;\nvar enable, amp, freq, decay, n, t, v;\ntry {\n $bm_rt = enable = effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0001');\n if (enable == 0) {\n $bm_rt = value;\n } else {\n amp = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0003'), 2.5);\n freq = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0004'), 20);\n decay = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0005'), 20);\n n = 0, 0 < numKeys && (n = nearestKey(time).index, key(n).time > time && n--), t = 0 === n ? 0 : $bm_sub(time, key(n).time), $bm_rt = 0 < n ? (v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10))), $bm_sum(value, $bm_div($bm_mul($bm_mul($bm_div(v, 100), amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))))) : value;\n }\n} catch (err) {\n $bm_rt = value = value;\n}"}},"ao":0,"ef":[{"ty":5,"en":1,"ef":[{"ty":7,"v":{"a":0,"k":1}},{"ty":6,"v":0},{"ty":0,"v":{"a":0,"k":20,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"v":{"a":0,"k":20,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"v":{"a":0,"k":40,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":6,"v":0}]}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"o":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"v":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.4431,0.502,0.9922,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[28.22,39.04]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":899,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[529.23,411.78,0]},"a":{"a":0,"k":[45.63,13.88,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-43.15,-11.4],[43.15,11.4]],"o":[[-43.15,-11.4],[43.15,11.4]],"v":[[-43.15,-11.4],[43.15,11.4]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":4.96},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[45.63,13.88]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":5,"s":[0]},{"t":35,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"_render":true}],"ip":5,"op":889,"st":-10,"bm":0,"completed":true},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[557.83,453.77,0]},"a":{"a":0,"k":[74.92,21.47,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-72.43,-18.99],[72.44,18.99]],"o":[[-72.43,-18.99],[72.44,18.99]],"v":[[-72.43,-18.99],[72.44,18.99]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":4.96},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[74.92,21.47]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":15,"s":[0]},{"t":45,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"_render":true}],"ip":15,"op":899,"st":0,"bm":0,"completed":true}]},{"ddd":0,"ind":10,"ty":0,"parent":7,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[49,161,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":0,"op":241,"st":-62,"bm":0,"completed":true,"layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[410.25,404.81,0]},"a":{"a":0,"k":[28.48,24.93,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"o":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"v":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"c":false}}},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5.53},"lc":2,"lj":2,"bm":0},{"ty":"tr","p":{"a":0,"k":[28.48,24.93]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":240,"s":[0]},{"t":270,"s":[100]}]},"o":{"a":0,"k":0},"m":1}],"ip":240,"op":1139,"st":240,"bm":0,"completed":true},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[411.73,402.39,0]},"a":{"a":0,"k":[28.22,39.04,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83,0.83],"y":[0.83,0.83,-15.67]},"o":{"x":[0.05,0.05,0.05],"y":[0,0,0]},"t":0,"s":[0,0,100]},{"t":15,"s":[100,100,100]}],"x":"var $bm_rt;\nvar enable, amp, freq, decay, n, t, v;\ntry {\n $bm_rt = enable = effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0001');\n if (enable == 0) {\n $bm_rt = value;\n } else {\n amp = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0003'), 2.5);\n freq = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0004'), 20);\n decay = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0005'), 20);\n n = 0, 0 < numKeys && (n = nearestKey(time).index, key(n).time > time && n--), t = 0 === n ? 0 : $bm_sub(time, key(n).time), $bm_rt = 0 < n ? (v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10))), $bm_sum(value, $bm_div($bm_mul($bm_mul($bm_div(v, 100), amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))))) : value;\n }\n} catch (err) {\n $bm_rt = value = value;\n}"}},"ao":0,"ef":[{"ty":5,"en":1,"ef":[{"ty":7,"v":{"a":0,"k":1}},{"ty":6,"v":0},{"ty":0,"v":{"a":0,"k":20,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"v":{"a":0,"k":20,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"v":{"a":0,"k":40,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":6,"v":0}]}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"o":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"v":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.4431,0.502,0.9922,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[28.22,39.04]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":899,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[529.23,411.78,0]},"a":{"a":0,"k":[45.63,13.88,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-43.15,-11.4],[43.15,11.4]],"o":[[-43.15,-11.4],[43.15,11.4]],"v":[[-43.15,-11.4],[43.15,11.4]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":4.96},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[45.63,13.88]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":5,"s":[0]},{"t":35,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"_render":true}],"ip":5,"op":889,"st":-10,"bm":0,"completed":true},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[557.83,453.77,0]},"a":{"a":0,"k":[74.92,21.47,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-72.43,-18.99],[72.44,18.99]],"o":[[-72.43,-18.99],[72.44,18.99]],"v":[[-72.43,-18.99],[72.44,18.99]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":4.96},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[74.92,21.47]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":15,"s":[0]},{"t":45,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"_render":true}],"ip":15,"op":899,"st":0,"bm":0,"completed":true}]},{"ddd":0,"ind":11,"ty":0,"parent":7,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[49,272.5,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":78,"op":241,"st":78,"bm":0,"completed":true,"layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[410.25,404.81,0]},"a":{"a":0,"k":[28.48,24.93,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"o":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"v":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"c":false}}},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5.53},"lc":2,"lj":2,"bm":0},{"ty":"tr","p":{"a":0,"k":[28.48,24.93]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":240,"s":[0]},{"t":270,"s":[100]}]},"o":{"a":0,"k":0},"m":1}],"ip":240,"op":1139,"st":240,"bm":0,"completed":true},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[411.73,402.39,0]},"a":{"a":0,"k":[28.22,39.04,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83,0.83],"y":[0.83,0.83,-15.67]},"o":{"x":[0.05,0.05,0.05],"y":[0,0,0]},"t":0,"s":[0,0,100]},{"t":15,"s":[100,100,100]}],"x":"var $bm_rt;\nvar enable, amp, freq, decay, n, t, v;\ntry {\n $bm_rt = enable = effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0001');\n if (enable == 0) {\n $bm_rt = value;\n } else {\n amp = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0003'), 2.5);\n freq = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0004'), 20);\n decay = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0005'), 20);\n n = 0, 0 < numKeys && (n = nearestKey(time).index, key(n).time > time && n--), t = 0 === n ? 0 : $bm_sub(time, key(n).time), $bm_rt = 0 < n ? (v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10))), $bm_sum(value, $bm_div($bm_mul($bm_mul($bm_div(v, 100), amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))))) : value;\n }\n} catch (err) {\n $bm_rt = value = value;\n}"}},"ao":0,"ef":[{"ty":5,"en":1,"ef":[{"ty":7,"v":{"a":0,"k":1}},{"ty":6,"v":0},{"ty":0,"v":{"a":0,"k":20,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"v":{"a":0,"k":20,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"v":{"a":0,"k":40,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":6,"v":0}]}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"o":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"v":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.4431,0.502,0.9922,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[28.22,39.04]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":899,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[529.23,411.78,0]},"a":{"a":0,"k":[45.63,13.88,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-43.15,-11.4],[43.15,11.4]],"o":[[-43.15,-11.4],[43.15,11.4]],"v":[[-43.15,-11.4],[43.15,11.4]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":4.96},"lc":2,"lj":2,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[45.63,13.88]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":5,"s":[0]},{"t":35,"s":[100]}]},"o":{"a":0,"k":0},"m":1,"_render":true}],"ip":5,"op":889,"st":-10,"bm":0,"completed":true},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[557.83,453.77,0]},"a":{"a":0,"k":[74.92,21.47,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-72.43,-18.99],[72.44,18.99]],"o":[[-72.43,-18.99],[72.44,18.99]],"v":[[-72.43,-18.99],[72.44,18.99]],"c":false}}},{"ty":"st","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":4.96},"lc":2,"lj":2,"bm":0},{"ty":"tr","p":{"a":0,"k":[74.92,21.47]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":15,"s":[0]},{"t":45,"s":[100]}]},"o":{"a":0,"k":0},"m":1}],"ip":15,"op":899,"st":0,"bm":0,"completed":true}]},{"ddd":0,"ind":12,"ty":0,"parent":7,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[49,383,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":186,"op":241,"st":186,"bm":0,"completed":true,"layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[410.25,404.81,0]},"a":{"a":0,"k":[28.48,24.93,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"o":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"v":[[-14.65,-11.1],[-1.93,11.1],[14.65,-10.34]],"c":false}}},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":5.53},"lc":2,"lj":2,"bm":0},{"ty":"tr","p":{"a":0,"k":[28.48,24.93]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":240,"s":[0]},{"t":270,"s":[100]}]},"o":{"a":0,"k":0},"m":1}],"ip":240,"op":1139,"st":240,"bm":0,"completed":true},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[411.73,402.39,0]},"a":{"a":0,"k":[28.22,39.04,0]},"s":{"a":1,"k":[{"i":{"x":[0.83,0.83,0.83],"y":[0.83,0.83,-15.67]},"o":{"x":[0.05,0.05,0.05],"y":[0,0,0]},"t":0,"s":[0,0,100]},{"t":15,"s":[100,100,100]}],"x":"var $bm_rt;\nvar enable, amp, freq, decay, n, t, v;\ntry {\n $bm_rt = enable = effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0001');\n if (enable == 0) {\n $bm_rt = value;\n } else {\n amp = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0003'), 2.5);\n freq = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0004'), 20);\n decay = $bm_div(effect('Excite - Scale')('Pseudo/BNCA2506f0b33-0005'), 20);\n n = 0, 0 < numKeys && (n = nearestKey(time).index, key(n).time > time && n--), t = 0 === n ? 0 : $bm_sub(time, key(n).time), $bm_rt = 0 < n ? (v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10))), $bm_sum(value, $bm_div($bm_mul($bm_mul($bm_div(v, 100), amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))))) : value;\n }\n} catch (err) {\n $bm_rt = value = value;\n}"}},"ao":0,"ef":[{"ty":5,"en":1,"ef":[{"ty":7,"v":{"a":0,"k":1}},{"ty":6,"v":0},{"ty":0,"v":{"a":0,"k":20,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"v":{"a":0,"k":20,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"v":{"a":0,"k":40,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":6,"v":0}]}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"o":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"v":[[27.97,38.79],[-27.94,23.94],[-27.97,-38.79],[27.94,-23.94]],"c":true}}},{"ty":"fl","c":{"a":0,"k":[0.4431,0.502,0.9922,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":0,"k":[28.22,39.04]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":0,"op":899,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[529.23,411.78,0]},"a":{"a":0,"k":[45.63,13.88,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-43.15,-11.4],[43.15,11.4]],"o":[[-43.15,-11.4],[43.15,11.4]],"v":[[-43.15,-11.4],[43.15,11.4]],"c":false}}},{"ty":"st","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":4.96},"lc":2,"lj":2,"bm":0},{"ty":"tr","p":{"a":0,"k":[45.63,13.88]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":5,"s":[0]},{"t":35,"s":[100]}]},"o":{"a":0,"k":0},"m":1}],"ip":5,"op":889,"st":-10,"bm":0,"completed":true},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[557.83,453.77,0]},"a":{"a":0,"k":[74.92,21.47,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-72.43,-18.99],[72.44,18.99]],"o":[[-72.43,-18.99],[72.44,18.99]],"v":[[-72.43,-18.99],[72.44,18.99]],"c":false}}},{"ty":"st","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":4.96},"lc":2,"lj":2,"bm":0},{"ty":"tr","p":{"a":0,"k":[74.92,21.47]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0},{"ty":"tm","s":{"a":0,"k":0},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.05],"y":[0]},"t":15,"s":[0]},{"t":45,"s":[100]}]},"o":{"a":0,"k":0},"m":1}],"ip":15,"op":899,"st":0,"bm":0,"completed":true}]},{"ddd":0,"ind":13,"ty":4,"parent":1,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[57.01,-167.61,0]},"a":{"a":0,"k":[91.74,56.61,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[79.43,-0.59],[63.26,-4.49],[50.69,-31.27],[-41.24,-53.45],[-63.12,-48.4],[-67.45,-36.02],[-91.48,-29.09],[-79.43,17.69],[67.45,53.13],[91.49,46.19]],"o":[[66.04,-3.82],[61.03,-18.44],[38.63,-34.18],[-53.3,-56.36],[-64.67,-35.35],[-80.85,-39.26],[-90.71,2.23],[-66.04,20.92],[80.85,56.36],[90.71,14.87]],"v":[[66.04,-3.82],[63.26,-4.49],[38.63,-34.18],[-41.24,-53.45],[-64.67,-35.35],[-67.45,-36.02],[-91.1,-13.43],[-66.04,20.92],[67.45,53.13],[91.1,30.53]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2226,0.5506,0.8574,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[91.74,56.61]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":14,"ty":4,"parent":1,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[56.23,68.7,0]},"a":{"a":0,"k":[151.16,254.83,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[148.3,251.97],[-148.3,172.56],[-148.3,-251.97],[148.3,-182.08]],"o":[[148.3,251.97],[-148.3,172.56],[-148.3,-251.97],[148.3,-182.08]],"v":[[148.3,251.97],[-148.3,172.56],[-148.3,-251.97],[148.3,-182.08]],"c":true}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":1.14},"lc":1,"lj":1,"ml":10,"bm":0,"_render":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[151.16,254.83]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":15,"ty":4,"parent":1,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[52.5,67.08,0]},"a":{"a":0,"k":[170.14,288.27,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[165.71,288.02],[-160.61,200.65],[-169.89,192.46],[-169.89,-276.45],[-165.71,-288.02],[160.62,-210.58],[169.89,-202.39],[169.89,276.45]],"o":[[160.61,286.65],[-165.71,199.29],[-169.89,185.49],[-169.89,-283.43],[-160.61,-286.65],[165.72,-209.21],[169.89,-195.41],[169.89,283.43]],"v":[[160.61,286.65],[-160.61,200.65],[-169.89,185.49],[-169.89,-276.45],[-160.61,-286.65],[160.62,-210.58],[169.89,-195.41],[169.89,276.45]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[170.14,288.27]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":16,"ty":4,"parent":1,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[62.93,59.47,0]},"a":{"a":0,"k":[178.34,293.57,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[173.9,-215.87],[-153.38,-292.54],[-158.55,-292.4],[-160.26,-290.34],[-178.09,-276.46],[-162.68,-239.16],[-162.68,171.96],[-158.49,185.84],[127.8,268.12],[155.57,293.32],[173.68,279.54],[173.6,279.41],[178.09,274.45],[178.09,-201.98]],"o":[[168.79,-217.34],[-156.1,-293.32],[-160.25,-290.33],[-160.26,-290.34],[-178.09,-276.46],[-162.68,-239.16],[-162.68,178.93],[-153.38,187.31],[127.8,268.12],[155.57,293.32],[173.68,279.54],[176.28,277.95],[178.09,269.88],[178.09,-208.96]],"v":[[168.79,-217.34],[-153.38,-292.54],[-160.25,-290.33],[-160.26,-290.34],[-178.09,-276.46],[-162.68,-239.16],[-162.68,171.96],[-153.38,187.31],[127.8,268.12],[155.57,293.32],[173.68,279.54],[173.6,279.41],[178.09,269.88],[178.09,-201.98]],"c":true}},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.2226,0.5506,0.8574,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[178.34,293.57]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":17,"ty":4,"parent":1,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[290.71,244.39,0]},"a":{"a":0,"k":[147.19,108.41,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-71.19,108.4],[147.18,-30.5],[-147.18,-108.4]],"o":[[-71.19,108.4],[147.18,-30.5],[-147.18,-108.4]],"v":[[-71.19,108.4],[147.18,-30.5],[-147.18,-108.4]],"c":true}},"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"fl","c":{"a":0,"k":[0.88,0.946,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[147.18,108.41]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":241,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":18,"ty":0,"parent":1,"refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[50,50,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":1000,"h":1000,"ip":0,"op":240,"st":0,"bm":0,"completed":true,"layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[1000,998,0]},"a":{"a":0,"k":[500,500,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-105.5,1.5],[-159.24,-79.5],[-264.43,-165.45]],"o":[[-123.41,-25.5],[-220.29,-140.09],[-286.5,-178.12]],"v":[[-105.5,1.5],[-193.5,-113.5],[-286.5,-178.12]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.2226,0.5506,0.8574,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2},"lc":1,"lj":1,"ml":4,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"t":0,"s":[{"i":[[-284.33,-185.04],[-303.35,-181.13],[-301.86,-178.09],[-294.46,-168.33],[-285.75,-154.87],[-275.95,-137.39],[-264.23,-121.91],[-259.68,-119.49],[-259.19,-118.12],[-255.69,-116.37],[-249.94,-114.67],[-242.22,-112.1],[-233.11,-109.47],[-223.58,-107.45],[-213.49,-104.43],[-208.24,-99.55],[-203.07,-94.04],[-197.49,-70.41],[-198.6,-33.7],[-181.9,-13.18],[-153.35,-3.15],[-141.43,2.07],[-136.06,5.41],[-130.64,10.04],[-126.73,13.03],[-123.32,11.81],[-118.22,8.13],[-117.03,7.64],[-115.51,7.32],[-113.52,5.7],[-111.64,3.41],[-109.99,2.57],[-108.38,2.22],[-107.2,1.34],[-106.39,0.26],[-99.35,-3.72],[-87.36,-11.23],[-87.73,-13.55],[-89.68,-18.98],[-92.07,-34.89],[-91.06,-61.6],[-93.56,-78.19],[-97.64,-87.18],[-111.23,-100.23],[-136.56,-108.58],[-157.8,-114.33],[-173.54,-121.2],[-178.39,-125.04],[-180.47,-126.51],[-184.23,-130.44],[-188.03,-135.73],[-192.34,-141.4],[-196.67,-147.72],[-199.07,-152.11],[-200.42,-155.13],[-202.21,-157.36],[-204.37,-159.11],[-205.92,-161.68],[-206.57,-163.56],[-216.4,-174.05],[-223.77,-179.4]],"o":[[-303.67,-182.33],[-302.44,-179.01],[-297.58,-172.64],[-288.54,-159.45],[-279.58,-143.94],[-268.27,-126.38],[-259.83,-119.92],[-259.36,-118.58],[-257.47,-117.03],[-251.93,-115.18],[-245.41,-113.11],[-236.07,-110.28],[-227.58,-108.24],[-216.53,-105.55],[-210.2,-101.28],[-204.67,-95.93],[-197.19,-82.81],[-198.2,-45.85],[-190.22,-17.86],[-163.46,-5.83],[-143.4,1.11],[-137.76,4.22],[-132.02,8.53],[-127.99,12.29],[-124.96,13],[-119.95,9.38],[-117.53,7.73],[-116.02,7.43],[-114.2,6.5],[-112.24,4.16],[-110.55,2.71],[-108.91,2.33],[-107.5,1.71],[-106.64,0.61],[-103.92,-1.35],[-91.07,-8.66],[-87.14,-12.32],[-89,-16.88],[-92.04,-26.59],[-91.58,-52.4],[-92.49,-74.35],[-96.13,-84.61],[-104.19,-95.94],[-127.41,-106.55],[-151.78,-112.48],[-168.68,-118.69],[-177.66,-124.53],[-179.8,-126.03],[-182.71,-128.58],[-186.89,-134.02],[-190.75,-139.29],[-195.29,-145.61],[-198.61,-151.05],[-199.98,-154.15],[-201.53,-156.8],[-203.63,-158.51],[-205.64,-160.9],[-206.39,-163.01],[-211.97,-169.19],[-222.28,-177.82],[-241.07,-187.78]],"v":[[-304,-184],[-302.89,-180.07],[-301,-177],[-291.5,-163.89],[-283,-150],[-272.11,-131.88],[-260,-120],[-259.52,-119.03],[-259,-118],[-253.81,-115.78],[-248,-114],[-239.14,-111.19],[-231,-109],[-220.06,-106.5],[-212,-103],[-206.45,-97.74],[-202,-92],[-197.84,-58.13],[-194,-25],[-172.68,-9.51],[-146,0],[-139.6,3.14],[-134,7],[-129.31,11.17],[-125,13],[-121.63,10.59],[-118,8],[-116.53,7.54],[-115,7],[-112.88,4.93],[-111,3],[-109.45,2.45],[-108,2],[-106.92,0.97],[-106,0],[-95.21,-6.19],[-87,-13],[-88.37,-15.22],[-90,-20],[-91.83,-43.65],[-92,-70],[-94.85,-81.4],[-99,-89],[-119.32,-103.39],[-146,-111],[-163.24,-116.51],[-177,-124],[-179.1,-125.53],[-181,-127],[-185.56,-132.23],[-189,-137],[-193.81,-143.51],[-198,-150],[-199.53,-153.13],[-201,-156],[-202.92,-157.93],[-205,-160],[-206.16,-162.34],[-207,-164],[-221,-177],[-225,-180]],"c":true}],"h":1},{"t":1,"s":[{"i":[[-287.29,-185.2],[-303.91,-182.76],[-303.23,-181.42],[-297.7,-172.44],[-288.23,-158.74],[-283.57,-150.91],[-280.06,-144.87],[-274.01,-134.21],[-264.68,-122.66],[-260.68,-120.49],[-260.18,-119.12],[-259.4,-118.9],[-258.25,-119.11],[-257.68,-118.47],[-257.22,-117.11],[-250.96,-114.56],[-239.71,-111.86],[-227.97,-109.35],[-214.76,-105.69],[-209.21,-100.48],[-204.09,-94.97],[-197.92,-70.95],[-198.26,-33.32],[-188.34,-18.6],[-175.59,-11.12],[-156.63,-4.59],[-138.65,2.25],[-130.78,9.4],[-127.11,13.04],[-122.71,11.83],[-118.33,8.19],[-117.03,7.64],[-115.51,7.32],[-113.52,5.7],[-111.64,3.41],[-109.99,2.57],[-108.38,2.22],[-107.2,1.34],[-106.39,0.26],[-99.37,-3.71],[-87.32,-11.27],[-87.5,-13.53],[-88.94,-15.89],[-93.24,-37.52],[-92.29,-76.5],[-99.51,-90.15],[-104.54,-95.8],[-114.23,-102.29],[-129.67,-107.59],[-145.84,-111.59],[-162.1,-115.87],[-173.04,-121.16],[-179.72,-126.84],[-186.02,-132.76],[-190.67,-137.87],[-193.84,-142.73],[-196.27,-145.92],[-197.7,-148.29],[-198.66,-150.46],[-207.82,-164.51],[-224.61,-179.34]],"o":[[-304.05,-183.3],[-303.5,-181.82],[-300.83,-177.07],[-291.4,-163.27],[-284.79,-152.97],[-281.21,-146.86],[-276.66,-138.88],[-268.02,-126.1],[-260.84,-120.93],[-260.35,-119.59],[-259.77,-118.85],[-258.64,-119.04],[-257.82,-118.92],[-257.38,-117.57],[-254.36,-115.62],[-243.64,-112.68],[-232.83,-110.26],[-218.93,-107.07],[-211.17,-102.24],[-205.67,-96.84],[-198.04,-84.04],[-198.03,-45.59],[-191.55,-21.79],[-180.36,-13.26],[-163.31,-6.46],[-144.3,-0.23],[-131.97,7.63],[-128.35,12.11],[-124.29,12.99],[-119.73,9.44],[-117.53,7.73],[-116.02,7.43],[-114.2,6.5],[-112.24,4.16],[-110.55,2.71],[-108.91,2.33],[-107.5,1.71],[-106.64,0.61],[-103.96,-1.33],[-91.05,-8.69],[-87.03,-12.83],[-88.46,-15.06],[-93.59,-24.77],[-92.58,-63.39],[-97.99,-88],[-102.79,-94.05],[-109.64,-100],[-124.24,-106.09],[-140.3,-110.4],[-156.74,-114.32],[-170.43,-119.49],[-177.68,-124.84],[-184.19,-131.07],[-189.26,-136.16],[-192.95,-141.52],[-195.5,-144.93],[-197.38,-147.56],[-198.34,-149.74],[-203.51,-158.09],[-218.37,-175.13],[-248.71,-186.98]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-294.55,-167.85],[-286,-155],[-282.39,-148.89],[-279,-143],[-271.01,-130.15],[-261,-121],[-260.52,-120.04],[-260,-119],[-259.02,-118.97],[-258,-119],[-257.53,-118.02],[-257,-117],[-247.3,-113.62],[-236,-111],[-223.45,-108.21],[-213,-104],[-207.44,-98.66],[-203,-93],[-197.98,-58.27],[-194,-26],[-184.35,-15.93],[-170,-9],[-150.46,-2.41],[-134,6],[-129.57,10.75],[-125,13],[-121.22,10.63],[-118,8],[-116.53,7.54],[-115,7],[-112.88,4.93],[-111,3],[-109.45,2.45],[-108,2],[-106.92,0.97],[-106,0],[-95.21,-6.2],[-87,-13],[-87.98,-14.29],[-89,-16],[-92.91,-50.45],[-97,-86],[-101.15,-92.1],[-106,-97],[-119.24,-104.19],[-135,-109],[-151.29,-112.96],[-167,-118],[-175.36,-123],[-182,-129],[-187.64,-134.46],[-192,-140],[-194.67,-143.83],[-197,-147],[-198.02,-149.02],[-199,-151],[-213.09,-169.82],[-233,-182]],"c":true}],"h":1},{"t":2,"s":[{"i":[[-297.59,-185.55],[-299.95,-184.98],[-301.71,-185.22],[-303.9,-181.33],[-299.14,-175.74],[-297.16,-172.22],[-296.41,-169.6],[-295.03,-167.91],[-293.37,-166.5],[-290.18,-161.62],[-287.42,-155.5],[-285.09,-151.97],[-283.33,-150.58],[-282.27,-148.33],[-281.45,-145.77],[-275.9,-136.16],[-266.05,-123.83],[-261.68,-121.49],[-261.18,-120.12],[-260.4,-119.9],[-259.25,-120.11],[-258.68,-119.48],[-258.21,-118.11],[-256.59,-117.34],[-253.89,-116.34],[-242.28,-112.84],[-225.01,-109.51],[-218.49,-106.22],[-213.46,-105.03],[-203.43,-94.37],[-200.24,-59.51],[-196.26,-31.07],[-192.58,-22.71],[-185.02,-17.13],[-151.43,-5.69],[-128.79,12.78],[-119.05,8.9],[-106.99,0.73],[-101.99,-1.36],[-98.41,-5.07],[-94.78,-6.51],[-92.64,-8.56],[-86.83,-11.89],[-92.96,-43.27],[-95.67,-82.25],[-99.37,-90.14],[-109.66,-99.17],[-119.48,-105.02],[-162.78,-113.85],[-184.45,-129.67],[-193.64,-141.56],[-198.74,-149.03],[-201.7,-155.09],[-206.5,-160.02],[-208.4,-164.23],[-211.32,-166.15],[-211.79,-168.53],[-217.33,-173.59],[-220.71,-176.21],[-223.31,-178.6],[-271.64,-182.74]],"o":[[-299.35,-184.86],[-301.13,-185.16],[-304.33,-183.21],[-301.31,-177.6],[-297.46,-173.17],[-296.64,-170.44],[-295.6,-168.41],[-293.92,-166.95],[-291.22,-163.62],[-288.28,-157.56],[-285.67,-152.43],[-283.92,-151.04],[-282.54,-149.2],[-281.73,-146.62],[-278.63,-141],[-269.61,-127.57],[-261.84,-121.93],[-261.35,-120.59],[-260.77,-119.85],[-259.64,-120.04],[-258.82,-119.92],[-258.37,-118.57],[-257.39,-117.67],[-254.84,-116.68],[-248.02,-114.09],[-230.77,-110.56],[-219.64,-107.89],[-216.32,-105.26],[-208.31,-101.4],[-196.77,-78.68],[-198.37,-36.11],[-193.17,-25.51],[-189.6,-19.08],[-168.63,-8.46],[-136.38,3.12],[-124.51,13.12],[-111.82,4.39],[-103.07,-1.54],[-99.86,-2.74],[-96.08,-6.6],[-93.4,-7.37],[-87.07,-12.36],[-95.38,-28.09],[-93.03,-71.1],[-99.49,-88.85],[-104.28,-96.76],[-117.65,-103.41],[-138.48,-112.43],[-180.48,-127.1],[-191.21,-137.92],[-197.4,-147.05],[-201.2,-152.89],[-204.2,-158.76],[-208.66,-162.87],[-209.66,-165.84],[-212.32,-167.39],[-212.79,-170.76],[-219.9,-175.17],[-222.88,-177.54],[-243.26,-190.26],[-299.05,-185.09]],"v":[[-299,-185],[-300.54,-185.07],[-302,-185],[-302.61,-179.46],[-298,-174],[-296.9,-171.33],[-296,-169],[-294.48,-167.43],[-293,-166],[-289.23,-159.59],[-286,-153],[-284.5,-151.5],[-283,-150],[-282,-147.47],[-281,-145],[-272.76,-131.87],[-262,-122],[-261.52,-121.04],[-261,-120],[-260.02,-119.97],[-259,-120],[-258.53,-119.03],[-258,-118],[-255.72,-117.01],[-253,-116],[-236.52,-111.7],[-220,-108],[-218,-106],[-212,-104],[-202,-91],[-199,-44],[-194,-27],[-192,-22],[-181,-15],[-140,1],[-126,13],[-116,7],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-92,-9],[-89,-16],[-93,-60],[-99,-88],[-100,-91],[-115,-102],[-122,-106],[-175,-123],[-188,-134],[-196,-145],[-200,-151],[-203,-157],[-208,-162],[-209,-165],[-212,-167],[-212,-169],[-218,-174],[-222,-177],[-224,-179],[-298,-185]],"c":true}],"h":1},{"t":3,"s":[{"i":[[-297.58,-186.19],[-300.91,-184.98],[-302.85,-185.2],[-303.36,-180.3],[-297.87,-172.94],[-296.54,-171.09],[-296.33,-169.49],[-294.9,-167.74],[-293.36,-166.55],[-290.98,-162.83],[-288.61,-158.99],[-287.48,-156.75],[-286.71,-154.22],[-283.58,-149.08],[-279.93,-143.55],[-277.22,-139.02],[-274.88,-135.27],[-270.02,-128.72],[-263.47,-122.58],[-259.72,-120.02],[-257.63,-118.31],[-243.4,-113.74],[-220.57,-109.27],[-209.43,-101.69],[-202.99,-92.68],[-199.19,-73.85],[-200.44,-46.76],[-195.79,-28.4],[-185.74,-17.93],[-173,-11.9],[-158.38,-6.63],[-149.85,-3.71],[-143.67,-1.91],[-141.66,-0.47],[-141.2,0.85],[-140.02,1.43],[-138.38,1.73],[-133.44,6.33],[-126.62,13.96],[-123.79,12.12],[-114.52,6.32],[-110.2,3.42],[-105.13,-0.34],[-101.99,-1.36],[-98.44,-5.05],[-94.78,-6.51],[-86.25,-11.52],[-93.34,-24.87],[-90.5,-68.4],[-101.87,-92.82],[-103.49,-95.47],[-106.05,-96.34],[-108.14,-99.41],[-163.9,-112.01],[-182.16,-127.31],[-195.23,-143.13],[-208.81,-162.83],[-218.54,-174.44],[-222.58,-177.77],[-233.89,-183.31],[-267.64,-185.41]],"o":[[-300.24,-184.88],[-302.22,-185.14],[-304.43,-183.08],[-300.09,-175.23],[-296.62,-171.59],[-296.39,-170.04],[-295.47,-168.21],[-293.84,-166.91],[-291.92,-164.33],[-289.32,-160.16],[-287.62,-157.39],[-287.03,-155.17],[-284.86,-151.05],[-281.12,-145.33],[-278.03,-140.39],[-275.65,-136.46],[-272.04,-131.18],[-265.74,-124.42],[-260.41,-120.62],[-258.33,-118.87],[-251.11,-115.1],[-228.13,-110.83],[-212.19,-104.35],[-204.83,-95.85],[-199.22,-82.47],[-199.8,-56],[-198.17,-32.93],[-189.58,-20.9],[-177.81,-13.84],[-163.28,-8.29],[-152.01,-4.26],[-145.68,-2.54],[-141.81,-0.9],[-141.35,0.4],[-140.58,1.32],[-138.92,1.64],[-136.13,3.35],[-128.68,11.63],[-126.53,13.96],[-117.78,8.3],[-112.14,4.84],[-106.7,0.83],[-103.07,-1.54],[-99.55,-2.93],[-96.08,-6.6],[-88.75,-10.26],[-91.75,-20.48],[-96.71,-45.9],[-97.85,-87.18],[-103.49,-94.51],[-104.75,-96.79],[-107.83,-97.58],[-128.66,-113.62],[-180.76,-127.71],[-189.43,-133.28],[-204.41,-157.23],[-215.07,-171.02],[-222.35,-176.16],[-227.04,-180.25],[-251.2,-187.14],[-288.74,-184.85]],"v":[[-300,-185],[-301.57,-185.06],[-303,-185],[-301.73,-177.76],[-297,-172],[-296.46,-170.56],[-296,-169],[-294.37,-167.32],[-293,-166],[-290.15,-161.5],[-288,-158],[-287.25,-155.96],[-286,-153],[-282.35,-147.21],[-279,-142],[-276.43,-137.74],[-274,-134],[-267.88,-126.57],[-261,-121],[-259.03,-119.45],[-257,-118],[-235.77,-112.28],[-215,-106],[-207.13,-98.77],[-202,-90],[-199.5,-64.92],[-199,-38],[-192.68,-24.65],[-182,-16],[-168.14,-10.1],[-154,-5],[-147.76,-3.13],[-142,-1],[-141.51,-0.04],[-141,1],[-139.47,1.53],[-138,2],[-131.06,8.98],[-126,14],[-120.78,10.21],[-114,6],[-108.45,2.12],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-89,-16],[-94,-29],[-97,-85],[-103,-94],[-104,-96],[-107,-97],[-109,-100],[-180,-127],[-183,-128],[-201,-152],[-212,-167],[-222,-176],[-223,-178],[-237,-184],[-283,-185]],"c":true}],"h":1},{"t":4,"s":[{"i":[[-299.48,-185.27],[-300.63,-184.97],[-301.83,-185.16],[-304.06,-182.45],[-302.2,-179.25],[-295.85,-168.51],[-287.84,-157.21],[-278.61,-140.75],[-267.14,-125.29],[-257.97,-119.56],[-251.67,-116.83],[-245.59,-114.9],[-240.65,-113.39],[-232.1,-111.81],[-221.37,-109.7],[-213.12,-104.96],[-207.26,-98.95],[-202.93,-91.16],[-200.33,-80.71],[-199.88,-59.21],[-199.29,-34.09],[-195.79,-27.82],[-195.01,-27.01],[-194.58,-26.36],[-194.32,-25.41],[-188.2,-19.57],[-174.79,-12.71],[-160.2,-8.09],[-145.11,-3.47],[-140.79,-0.78],[-140.03,-0.03],[-137.89,1.82],[-134.6,4.4],[-132.4,6.7],[-130.74,8.97],[-129.18,11.31],[-127.77,14.06],[-124.04,12.29],[-114.1,5.69],[-108.79,2.21],[-105.03,-0.66],[-99.32,-3.48],[-87.09,-11.63],[-90,-16.99],[-89.7,-73.76],[-102.54,-93.43],[-108.22,-99.34],[-111.95,-101.37],[-118.89,-105.72],[-159.7,-115.52],[-176.25,-124.88],[-181.9,-127.14],[-188.58,-134.21],[-193.8,-139.42],[-196.67,-145.09],[-200.87,-149.33],[-203.78,-155.2],[-208.72,-162.44],[-219.41,-174.79],[-224.29,-178.57],[-280.88,-187.33]],"o":[[-300.21,-184.89],[-301.44,-185.1],[-303.7,-183.33],[-303.31,-180.41],[-298.68,-172.66],[-290.43,-160.78],[-282.04,-147.1],[-271.16,-129.85],[-259.89,-120.64],[-253.86,-117.65],[-247.26,-115.46],[-242.28,-113.87],[-235.66,-112.21],[-224.95,-110.55],[-215.5,-106.74],[-209,-101.07],[-204.26,-94.3],[-200.96,-84.36],[-199.23,-68.42],[-199.9,-42.05],[-196.04,-28.07],[-195.27,-27.29],[-194.67,-26.66],[-194.41,-25.74],[-191.8,-22.21],[-179.69,-14.81],[-165.39,-9.36],[-150.06,-5.15],[-141.02,-1.01],[-140.3,-0.29],[-139.09,0.87],[-135.65,3.59],[-133.04,5.96],[-131.26,8.2],[-129.8,10.28],[-128.17,13.2],[-127.25,14.2],[-117.47,8.04],[-110.28,3.29],[-106.17,0.23],[-101.13,-3.23],[-93.91,-7.02],[-86.77,-12.99],[-100.45,-37.9],[-101.3,-92.48],[-105.29,-96.8],[-110.83,-101.77],[-115.85,-103.71],[-139.18,-114.08],[-175.64,-123.86],[-179.3,-126.83],[-185.95,-130.3],[-192.29,-138.48],[-196.28,-142.69],[-199.07,-148.54],[-203.23,-152.83],[-206.63,-159.4],[-213.27,-168.01],[-223.9,-177.55],[-239.89,-188.06],[-300.11,-185.92]],"v":[[-300,-185],[-301.03,-185.04],[-302,-185],[-303.68,-181.43],[-301,-177],[-293.14,-164.65],[-286,-154],[-274.88,-135.3],[-262,-122],[-255.91,-118.6],[-249,-116],[-243.93,-114.39],[-239,-113],[-228.53,-111.18],[-218,-108],[-211.06,-103.02],[-206,-97],[-201.95,-87.76],[-200,-77],[-199.89,-50.63],[-196,-28],[-195.53,-27.55],[-195,-27],[-194.5,-26.05],[-194,-25],[-183.94,-17.19],[-170,-11],[-155.13,-6.62],[-141,-1],[-140.54,-0.53],[-140,0],[-136.77,2.7],[-134,5],[-131.83,7.45],[-130,10],[-128.67,12.26],[-128,14],[-120.76,10.16],[-113,5],[-107.48,1.22],[-103,-2],[-97,-5],[-87,-12],[-91,-19],[-101,-92],[-103,-94],[-110,-101],[-113,-102],[-122,-107],[-174,-123],[-178,-126],[-183,-128],[-191,-137],[-195,-141],[-198,-147],[-202,-151],[-205,-157],[-210,-164],[-223,-177],[-225,-179],[-299,-186]],"c":true}],"h":1},{"t":5,"s":[{"i":[[-299.48,-185.28],[-300.87,-184.98],[-302.97,-185.11],[-302.44,-177.99],[-295.37,-168.19],[-291.39,-161.71],[-288.13,-155.96],[-280.7,-142.79],[-269.33,-126.87],[-264.25,-123.33],[-263.35,-122.22],[-259.92,-120.52],[-253.96,-118.7],[-248.26,-116.55],[-242.79,-114.44],[-236.72,-113.29],[-230.07,-112.58],[-222.46,-110.03],[-215.46,-106.1],[-210.25,-102.01],[-206.03,-97.07],[-200.06,-73.53],[-200.85,-39.05],[-196.85,-30.19],[-194.28,-27.3],[-193.58,-26.08],[-193.34,-24.38],[-192.12,-23.51],[-190.47,-23.33],[-189.3,-22.11],[-188.43,-20.29],[-185.75,-18.8],[-182.17,-17.6],[-165.71,-10.86],[-142.26,-2.26],[-135.61,3],[-133.41,4.53],[-130.3,9.12],[-128.48,13.87],[-123.99,12.27],[-114,5.63],[-107.04,0.66],[-99.32,-3.48],[-87.09,-11.63],[-89.09,-15.47],[-93.25,-24.56],[-94.53,-62.58],[-104,-97.02],[-117.14,-105.26],[-155.95,-115.72],[-181.91,-128.28],[-194.29,-139.42],[-197.49,-143.26],[-199.11,-147.69],[-201.64,-149.52],[-202.48,-152.25],[-214.87,-170.31],[-225.35,-177.5],[-229.94,-181.53],[-236.3,-183.29],[-284.46,-187.07]],"o":[[-300.13,-184.93],[-302.29,-185.07],[-304.01,-181.64],[-298.12,-171.26],[-292.58,-163.73],[-289.17,-157.82],[-284.03,-148.85],[-273.35,-131.8],[-264.58,-123.72],[-263.63,-122.58],[-261.69,-121.17],[-256.05,-119.28],[-250.11,-117.33],[-244.6,-115.1],[-238.94,-113.5],[-232.29,-112.83],[-225.23,-111.23],[-217.58,-107.47],[-211.98,-103.48],[-207.27,-98.81],[-200.39,-85.75],[-200.29,-50.17],[-197.71,-31.29],[-195.14,-28.2],[-193.66,-26.64],[-193.42,-24.95],[-192.64,-23.6],[-191.04,-23.38],[-189.58,-22.71],[-188.72,-20.9],[-186.91,-19.25],[-183.38,-17.97],[-174.08,-13.47],[-149.8,-5.25],[-136.4,2.48],[-134.11,4.02],[-131.31,6.93],[-128.88,12.59],[-127.24,14.2],[-117.37,7.98],[-107.61,1.62],[-101.13,-3.23],[-93.91,-7.02],[-86.74,-13.11],[-92.76,-22.25],[-96.98,-36.68],[-97.31,-86.02],[-113.36,-103.23],[-136.64,-114.05],[-178.64,-125.19],[-190.24,-136.01],[-196.59,-142.9],[-198.83,-145.21],[-200.31,-149.46],[-202.62,-150.83],[-208.22,-160.49],[-223.82,-177.16],[-229.36,-179.77],[-232.79,-182.8],[-253.35,-187.74],[-300.11,-185.92]],"v":[[-300,-185],[-301.58,-185.03],[-303,-185],[-300.28,-174.63],[-294,-166],[-290.28,-159.76],[-287,-154],[-277.02,-137.29],[-265,-124],[-263.94,-122.95],[-263,-122],[-257.99,-119.9],[-252,-118],[-246.43,-115.82],[-241,-114],[-234.51,-113.06],[-228,-112],[-220.02,-108.75],[-214,-105],[-208.76,-100.41],[-205,-95],[-200.18,-61.85],[-198,-32],[-196,-29.2],[-194,-27],[-193.5,-25.51],[-193,-24],[-191.58,-23.44],[-190,-23],[-189.01,-21.5],[-188,-20],[-184.56,-18.39],[-181,-17],[-157.76,-8.05],[-137,2],[-134.86,3.51],[-133,5],[-129.59,10.85],[-128,14],[-120.68,10.12],[-113,5],[-103,-2],[-97,-5],[-87,-12],[-91,-19],[-94,-27],[-96,-75],[-110,-101],[-121,-107],[-171,-122],[-187,-133],[-196,-142],[-198,-144],[-200,-149],[-202,-150],[-203,-153],[-221,-175],[-228,-179],[-231,-182],[-239,-184],[-299,-186]],"c":true}],"h":1},{"t":6,"s":[{"i":[[-263.36,-186.27],[-280.49,-186.46],[-302.64,-186.26],[-303,-179.06],[-296.14,-170.21],[-295.53,-168.69],[-295.36,-166.63],[-294.1,-164.97],[-292.34,-163.57],[-288.67,-157.02],[-285.51,-150.62],[-282.3,-145.09],[-279.38,-140.4],[-277.46,-138.27],[-275.59,-135.78],[-272.38,-131.53],[-268.38,-127.06],[-263.17,-123.13],[-257.63,-120.04],[-251.73,-117.85],[-246.56,-116.42],[-237.58,-114.42],[-226.23,-112.25],[-219.17,-108.28],[-211.25,-104.32],[-209.47,-100.62],[-207.6,-98.98],[-203.33,-62.84],[-196.03,-28.57],[-187.75,-20.05],[-176.48,-15.58],[-154.24,-7.45],[-143.84,-3.8],[-140.85,-1.81],[-134.15,3.16],[-128.77,13.79],[-114.82,6.14],[-106.69,0.43],[-99.13,-3.6],[-85.44,-11.14],[-94.27,-25.16],[-92.29,-73.92],[-103.03,-92.64],[-106.64,-98.42],[-113.31,-102.97],[-121.85,-108.78],[-137.38,-112.54],[-172.72,-121.93],[-184.62,-130.89],[-189.09,-133.13],[-192.63,-137.33],[-200.32,-147.27],[-203.75,-151.63],[-203.77,-153.49],[-205.75,-154.64],[-207.74,-159.23],[-211.61,-164.28],[-218.72,-173.44],[-225.28,-176.9],[-229.5,-180.25],[-237.69,-184.21]],"o":[[-272.43,-185.84],[-295.6,-186.67],[-304.93,-182.45],[-298.6,-172.94],[-295.6,-169.38],[-295.41,-167.32],[-294.68,-165.43],[-292.92,-164.03],[-289.91,-159.46],[-286.47,-152.6],[-283.36,-146.9],[-280.31,-141.84],[-278.17,-139.13],[-276.17,-136.6],[-273.69,-133.25],[-269.73,-128.44],[-264.86,-124.36],[-259.56,-120.97],[-253.45,-118.39],[-248.28,-116.87],[-241.47,-115.04],[-229.96,-113.02],[-220.9,-110.19],[-214.62,-105.59],[-209.42,-102.39],[-208.41,-99.22],[-198.37,-83.85],[-199.75,-33.88],[-189.24,-22.4],[-182.11,-16.66],[-164.09,-11.21],[-145.55,-4.04],[-142.16,-2.2],[-137.92,0.99],[-129.19,9.7],[-126.19,14.5],[-108.25,2.02],[-101.44,-3.02],[-89.69,-9.79],[-91.41,-19.29],[-100.25,-48.45],[-101.64,-92.25],[-106.71,-97.78],[-111.57,-102.21],[-118.42,-106.09],[-130.55,-112.15],[-158.14,-117.93],[-184.17,-129.8],[-187.31,-133.05],[-191.23,-135.18],[-197.15,-142.86],[-202.15,-151.32],[-204.31,-152.46],[-204.14,-154.32],[-207.24,-156.82],[-210.37,-162.92],[-215.74,-169.39],[-222.89,-176.7],[-228.46,-178.93],[-234.04,-182.52],[-249.48,-187.03]],"v":[[-269,-186],[-288.05,-186.57],[-304,-184],[-300.8,-176],[-296,-170],[-295.47,-168.01],[-295,-166],[-293.51,-164.5],[-292,-163],[-287.57,-154.81],[-284,-148],[-281.3,-143.47],[-279,-140],[-276.81,-137.43],[-275,-135],[-271.06,-129.99],[-267,-126],[-261.36,-122.05],[-255,-119],[-250.01,-117.36],[-245,-116],[-233.77,-113.72],[-223,-111],[-217,-107],[-210,-103],[-209,-100],[-207,-98],[-201,-44],[-191,-24],[-186,-19],[-172,-14],[-148,-5],[-143,-3],[-140,-1],[-132,6],[-128,14],[-113,5],[-103,-2],[-97,-5],[-89,-16],[-95,-28],[-101,-91],[-104,-94],[-110,-101],[-115,-104],[-125,-110],[-143,-114],[-183,-129],[-186,-132],[-190,-134],[-194,-139],[-202,-151],[-204,-152],[-204,-154],[-206,-155],[-209,-161],[-213,-166],[-222,-176],[-227,-178],[-231,-181],[-241,-185]],"c":true}],"h":1},{"t":7,"s":[{"i":[[-263.7,-186.59],[-286.56,-186.44],[-302.61,-186.29],[-302.82,-178.89],[-296.18,-168.19],[-293.56,-164.99],[-290.67,-160.14],[-284.9,-150.12],[-277.6,-138.34],[-273.35,-132.55],[-270.99,-128.89],[-269.08,-127.58],[-267.33,-127.26],[-266.31,-126.07],[-265.44,-124.29],[-263.73,-123.41],[-260.88,-122.43],[-254.96,-119.87],[-247.14,-117.79],[-233.54,-114.46],[-218.21,-109.35],[-214.64,-106.42],[-214.25,-105.19],[-212.97,-104.6],[-211.39,-104.41],[-210.58,-103.11],[-210.23,-101.3],[-208.6,-99.94],[-206.92,-47.77],[-196.03,-29.03],[-195.64,-27.8],[-180.36,-16.94],[-141.89,-6.44],[-131.61,6.03],[-130.05,13.44],[-123.56,12.04],[-111.16,3.66],[-101.01,-2.37],[-87.2,-11.1],[-89.68,-16.5],[-94.19,-24.45],[-95.75,-57.01],[-100.77,-91.63],[-104.35,-96.17],[-121.07,-108.19],[-162.08,-118.97],[-182.01,-128.71],[-187.18,-131.33],[-199.69,-144.87],[-203.75,-150.63],[-203.77,-152.49],[-205.75,-153.64],[-205.77,-155.5],[-207.75,-156.63],[-207.77,-158.49],[-209.75,-159.66],[-219.8,-174.2],[-226.63,-178.75],[-228.49,-178.77],[-229.57,-180.77],[-233.26,-182.33]],"o":[[-280.25,-185.8],[-297.73,-186.69],[-304.73,-182.8],[-298.55,-171.59],[-294.72,-166.67],[-291.53,-161.73],[-287.35,-154.45],[-280.03,-142.07],[-274.1,-133.85],[-271.79,-130.07],[-269.67,-127.7],[-267.91,-127.36],[-266.59,-126.68],[-265.74,-124.88],[-264.54,-123.69],[-261.9,-122.78],[-257.39,-120.72],[-249.84,-118.4],[-239.18,-115.78],[-223.05,-111.24],[-214.76,-106.83],[-214.38,-105.6],[-213.52,-104.64],[-211.9,-104.48],[-210.72,-103.71],[-210.34,-101.91],[-209.42,-100.24],[-197.38,-82.37],[-197.06,-30.11],[-195.35,-28.32],[-190.78,-21.7],[-160.1,-9.6],[-133.27,4.96],[-128.8,10.51],[-126.44,14.1],[-116.85,7.58],[-104.57,-0.55],[-95.21,-6.17],[-86.47,-14.36],[-92.31,-20.57],[-98.81,-39.07],[-97.66,-79.89],[-104.66,-95.69],[-110.1,-103.51],[-142.82,-115.9],[-179.05,-126.13],[-185.8,-131.61],[-193.05,-136.13],[-202.15,-150.32],[-204.31,-151.46],[-204.14,-153.32],[-206.31,-154.45],[-206.15,-156.32],[-208.31,-157.46],[-208.14,-159.3],[-214.76,-166.49],[-226.32,-177.15],[-227.46,-179.31],[-229.36,-179.16],[-231.09,-181.59],[-246.07,-187.26]],"v":[[-276,-186],[-292.14,-186.57],[-304,-184],[-300.68,-175.24],[-296,-168],[-292.54,-163.36],[-290,-159],[-282.47,-146.1],[-275,-135],[-272.57,-131.31],[-270,-128],[-268.5,-127.47],[-267,-127],[-266.02,-125.48],[-265,-124],[-262.81,-123.09],[-260,-122],[-252.4,-119.14],[-244,-117],[-228.29,-112.85],[-215,-107],[-214.51,-106.01],[-214,-105],[-212.44,-104.54],[-211,-104],[-210.46,-102.51],[-210,-101],[-208,-99],[-197,-30],[-196,-29],[-195,-27],[-175,-15],[-134,4],[-131,7],[-127,14],[-122,11],[-107,1],[-97,-5],[-87,-12],[-90,-17],[-95,-27],[-97,-72],[-104,-95],[-105,-97],[-129,-111],[-174,-124],[-185,-131],[-188,-132],[-202,-150],[-204,-151],[-204,-153],[-206,-154],[-206,-156],[-208,-157],[-208,-159],[-210,-160],[-226,-177],[-227,-179],[-229,-179],[-230,-181],[-235,-183]],"c":true}],"h":1},{"t":8,"s":[{"i":[[-271.11,-186.61],[-292.12,-186.28],[-302.84,-185.91],[-303.52,-179.79],[-298.28,-172.45],[-297.03,-169.99],[-296.24,-167.4],[-294.98,-165.81],[-293.25,-164.45],[-292.1,-162.3],[-291.27,-160.46],[-287.9,-154.5],[-283.51,-146.4],[-280.51,-141.83],[-278.54,-139.58],[-277.57,-138.08],[-277.34,-136.42],[-273.35,-131.88],[-266.18,-125.38],[-263.39,-123.91],[-262.26,-124.12],[-261.68,-123.47],[-261.23,-122.11],[-259.64,-121.66],[-256.78,-121.29],[-247.97,-118.34],[-235.14,-115.11],[-222.6,-111.31],[-213.27,-105.53],[-209.31,-100.95],[-207.48,-97.98],[-202.79,-77.84],[-203.19,-44.7],[-197.23,-30.34],[-193.54,-26.33],[-144.84,-12.45],[-128.46,14.21],[-115.19,6.38],[-106.35,0.21],[-99.1,-3.62],[-94.16,-7.58],[-90.06,-9.35],[-90.84,-17.3],[-93.55,-22.08],[-95.48,-52.76],[-102.89,-94.09],[-163.72,-117.41],[-195.74,-139.33],[-202.82,-149.09],[-205.53,-152.26],[-207.15,-156.8],[-209.62,-158.59],[-210.32,-161.1],[-212.59,-162.56],[-213.31,-165.14],[-217.17,-168.04],[-219.86,-172.95],[-222.56,-173.8],[-223.67,-175.75],[-228.47,-178.49],[-235.58,-183.08]],"o":[[-287.7,-185.82],[-299.69,-186.32],[-304.87,-182.57],[-300.22,-174.74],[-297.4,-171.04],[-296.45,-168.17],[-295.6,-166.33],[-293.8,-164.87],[-292.47,-163.07],[-291.5,-160.99],[-289.4,-157.3],[-284.96,-149.05],[-281.24,-142.79],[-279.16,-140.22],[-277.64,-138.62],[-277.42,-136.98],[-275.51,-134.18],[-268.69,-127.48],[-263.76,-123.85],[-262.64,-124.04],[-261.81,-123.92],[-261.38,-122.57],[-260.5,-121.76],[-257.78,-121.42],[-252.14,-119.54],[-239.47,-116.12],[-226.46,-112.79],[-216,-107.68],[-210.07,-101.96],[-208.02,-98.96],[-202.94,-88.74],[-202.91,-55.82],[-199.62,-34.96],[-196.16,-28.76],[-175.57,-10.77],[-131.16,7.71],[-126.68,14.89],[-108.39,2.11],[-101.15,-3.21],[-95.69,-5.86],[-91.05,-9.62],[-82.82,-13.78],[-92.53,-19.78],[-101.14,-37.75],[-98.9,-84.33],[-120.77,-115.46],[-188,-132],[-199.73,-145.81],[-204.57,-151.93],[-206.86,-154.35],[-208.3,-158.43],[-210.73,-159.79],[-211.34,-162.45],[-213.72,-163.77],[-214.78,-166.98],[-219.6,-170.85],[-221.34,-174.31],[-223.29,-174.13],[-225.68,-177.29],[-231.53,-181.42],[-249.8,-188.5]],"v":[[-284,-186],[-295.91,-186.3],[-304,-184],[-301.87,-177.27],[-298,-172],[-296.74,-169.08],[-296,-167],[-294.39,-165.34],[-293,-164],[-291.8,-161.64],[-291,-160],[-286.43,-151.78],[-282,-144],[-279.83,-141.03],[-278,-139],[-277.49,-137.53],[-277,-136],[-271.02,-129.68],[-264,-124],[-263.02,-123.97],[-262,-124],[-261.53,-123.02],[-261,-122],[-258.71,-121.54],[-256,-121],[-243.72,-117.23],[-231,-114],[-219.3,-109.49],[-211,-103],[-208.66,-99.96],[-207,-97],[-202.85,-66.83],[-200,-36],[-197,-30],[-192,-25],[-133,5],[-129,14],[-113,5],[-103,-2],[-97,-5],[-92,-9],[-89,-10],[-92,-19],[-94,-23],[-98,-76],[-107,-99],[-183,-129],[-198,-143],[-204,-151],[-206,-153],[-208,-158],[-210,-159],[-211,-162],[-213,-163],[-214,-166],[-218,-169],[-221,-174],[-223,-174],[-224,-176],[-229,-179],[-238,-184]],"c":true}],"h":1},{"t":9,"s":[{"i":[[-271.64,-187.22],[-295.62,-186.13],[-302.94,-185.74],[-303.62,-179.28],[-298.07,-172.12],[-296.84,-169.82],[-295.41,-166.7],[-292.28,-161.39],[-289.63,-156.83],[-285.76,-150.04],[-282.08,-143.66],[-273.94,-132.57],[-259.74,-121.94],[-244.53,-117.42],[-229.75,-114.27],[-222.83,-111.67],[-219.77,-109.58],[-218.02,-108.57],[-216.38,-108.28],[-215.64,-107.42],[-215.25,-106.19],[-213.96,-105.6],[-212.39,-105.42],[-211.58,-104.09],[-211.24,-102.32],[-210.35,-101.36],[-209.3,-100.49],[-203.89,-85.31],[-203.99,-58.57],[-201.94,-42.87],[-198.87,-32.91],[-197.56,-31.36],[-197.34,-30.48],[-182.71,-19.32],[-152.1,-10.35],[-140.81,-3.43],[-136.02,1.13],[-132.02,7.58],[-129.08,13.97],[-124.4,12.53],[-114.11,5.69],[-109.04,2.36],[-104.68,-0.9],[-101.1,-3.01],[-98.05,-4.31],[-95.63,-6.08],[-93.08,-8.29],[-91.04,-9.4],[-89.53,-9.68],[-86.16,-13.22],[-90.58,-17.91],[-98.41,-36.1],[-97.59,-65.42],[-110.56,-104.11],[-152.28,-118.35],[-173.91,-125.19],[-184.46,-129.53],[-199.2,-143.53],[-217.86,-171.6],[-229.48,-179.05],[-232.3,-181.65]],"o":[[-292.4,-185.76],[-300.89,-186.12],[-305.09,-182.22],[-300.12,-174.23],[-297.38,-170.97],[-295.85,-167.68],[-293.21,-162.98],[-290.49,-158.32],[-286.97,-152.21],[-283.31,-145.77],[-277.82,-137.1],[-264.9,-124.99],[-249.66,-118.53],[-234.58,-115.29],[-224.19,-112.39],[-220.62,-110.27],[-218.58,-108.68],[-216.92,-108.37],[-215.76,-107.83],[-215.38,-106.6],[-214.52,-105.64],[-212.9,-105.49],[-211.71,-104.68],[-211.35,-102.91],[-210.7,-101.61],[-209.65,-100.8],[-204.89,-93.27],[-203.43,-67.95],[-202.76,-46.67],[-200,-35.99],[-197.63,-31.62],[-197.41,-30.79],[-192.16,-23.15],[-162.68,-12.93],[-142.55,-4.5],[-137.55,-0.62],[-133.23,5.1],[-129.94,12.02],[-127.85,14.43],[-117.53,8.16],[-110.7,3.56],[-106.03,0.13],[-102.08,-2.61],[-99.09,-3.86],[-96.34,-5.43],[-94,-7.51],[-91.53,-9.31],[-90.04,-9.58],[-86.12,-11.76],[-88.39,-16.29],[-97.36,-27.89],[-98.52,-54.87],[-100.92,-95.18],[-136.24,-115.69],[-169.93,-123.92],[-181.18,-127.99],[-191.7,-136.46],[-209.36,-158.16],[-227.98,-178.31],[-231.6,-180.37],[-246.45,-188.76]],"v":[[-289,-186],[-298.26,-186.12],[-304,-184],[-301.87,-176.76],[-298,-172],[-296.35,-168.75],[-295,-166],[-291.38,-159.86],[-288,-154],[-284.54,-147.9],[-281,-142],[-269.42,-128.78],[-254,-120],[-239.56,-116.35],[-226,-113],[-221.72,-110.97],[-219,-109],[-217.47,-108.47],[-216,-108],[-215.51,-107.01],[-215,-106],[-213.43,-105.54],[-212,-105],[-211.46,-103.5],[-211,-102],[-210,-101.08],[-209,-100],[-203.66,-76.63],[-203,-49],[-200.97,-39.43],[-198,-32],[-197.48,-31.08],[-197,-30],[-172.69,-16.13],[-145,-6],[-139.18,-2.03],[-134,4],[-130.98,9.8],[-129,14],[-120.97,10.34],[-113,5],[-107.53,1.25],[-103,-2],[-100.1,-3.44],[-97,-5],[-94.82,-6.79],[-92,-9],[-90.54,-9.49],[-89,-10],[-87.28,-14.75],[-92,-20],[-98.46,-45.49],[-99,-78],[-123.4,-109.9],[-167,-123],[-177.54,-126.59],[-186,-131],[-203,-149],[-226,-177],[-231,-180],[-233,-182]],"c":true}],"h":1},{"t":10,"s":[{"i":[[-270.96,-187],[-283.11,-187.06],[-302.91,-185.94],[-303.28,-178.8],[-296.62,-169.03],[-294.24,-164.75],[-292.51,-160.86],[-288.21,-153.63],[-281.64,-143.23],[-276.05,-135.75],[-269.12,-128.3],[-266.23,-126.33],[-265.36,-125.22],[-249.93,-119.09],[-224.78,-113.55],[-216.22,-108.27],[-212.59,-105.66],[-211.34,-103.68],[-210.52,-100.82],[-208.86,-98.55],[-207.37,-96.92],[-204.47,-85.67],[-204.28,-67.39],[-203.25,-51.38],[-200.92,-39.35],[-198.96,-34.29],[-197.71,-31.86],[-192.81,-26.6],[-184.82,-21.25],[-173.52,-16.88],[-160.57,-13.3],[-154.2,-11.03],[-150.05,-9.52],[-145.35,-6.7],[-141,-2.8],[-138.44,-1.12],[-136.38,-0.43],[-135.89,0.57],[-136.1,1.78],[-135.49,2.32],[-134.12,2.82],[-133.2,4.35],[-132.3,6.41],[-130,12.49],[-128.32,14.44],[-123.12,11.21],[-119.24,8.79],[-110.31,3.12],[-86.12,-10.92],[-87.07,-15.17],[-93.56,-21.48],[-93.96,-74.05],[-110.13,-102.64],[-132.29,-115.11],[-168.97,-122.29],[-183.73,-130.49],[-196.91,-140.42],[-207.52,-153.62],[-213.46,-163.35],[-224.68,-175.48],[-254.74,-188.79]],"o":[[-275.41,-186.84],[-296.86,-186.61],[-304.96,-182.29],[-299.1,-172.18],[-294.99,-166.31],[-293,-162.02],[-290.39,-157.26],[-283.83,-146.61],[-278.24,-138.6],[-271.49,-130.6],[-266.55,-126.72],[-265.63,-125.58],[-258.54,-121.07],[-233.05,-115.33],[-217.68,-109.19],[-213.67,-106.5],[-211.58,-104.52],[-210.81,-101.83],[-209.42,-99.09],[-207.83,-97.46],[-205.08,-91.22],[-204.07,-73.75],[-203.79,-56.21],[-201.82,-42.95],[-199.35,-35.36],[-198.13,-32.54],[-195.15,-28.73],[-187.65,-22.86],[-177.99,-18.23],[-164.81,-14.41],[-155.67,-11.52],[-151.39,-10.03],[-147.1,-8.05],[-142.3,-4.08],[-139.25,-1.4],[-137.01,-0.64],[-135.84,0.18],[-136.02,1.37],[-135.93,2.16],[-134.59,2.65],[-133.55,3.64],[-132.58,5.73],[-130.34,10.26],[-128.99,14.57],[-124.49,12.06],[-120.49,9.57],[-113.5,5.14],[-103.13,-1.47],[-85.96,-15.07],[-92.2,-20.04],[-104.36,-40.37],[-106.05,-98.08],[-119.83,-110.63],[-155.82,-120.92],[-181.56,-128.2],[-193.63,-137.09],[-204.66,-150.44],[-212.03,-159.77],[-220.21,-170.57],[-238.75,-184.79],[-269.75,-187.96]],"v":[[-271,-187],[-289.99,-186.83],[-304,-184],[-301.19,-175.49],[-296,-168],[-293.62,-163.38],[-292,-160],[-286.02,-150.12],[-280,-141],[-273.77,-133.18],[-267,-127],[-265.93,-125.95],[-265,-125],[-241.49,-117.21],[-219,-110],[-214.95,-107.39],[-212,-105],[-211.07,-102.76],[-210,-100],[-208.34,-98.01],[-207,-96],[-204.27,-79.71],[-204,-61],[-202.53,-47.17],[-200,-37],[-198.54,-33.42],[-197,-31],[-190.23,-24.73],[-182,-20],[-169.17,-15.64],[-157,-12],[-152.79,-10.53],[-149,-9],[-143.83,-5.39],[-140,-2],[-137.72,-0.88],[-136,0],[-135.96,0.97],[-136,2],[-135.04,2.48],[-134,3],[-132.89,5.04],[-132,7],[-129.49,13.53],[-126,13],[-121.8,10.39],[-118,8],[-107,1],[-86,-14],[-89,-17],[-95,-24],[-104,-94],[-113,-105],[-144,-118],[-179,-127],[-186,-132],[-202,-147],[-210,-157],[-215,-165],[-230,-179],[-269,-188]],"c":true}],"h":1},{"t":11,"s":[{"i":[[-131.45,2.01],[-124.65,12.25],[-117.87,8.29],[-110.85,3.83],[-105.2,0.23],[-99.35,-3.46],[-93.81,-7.11],[-85.92,-12.2],[-86.33,-14.9],[-90.89,-18.54],[-95.01,-24.49],[-97.72,-30.14],[-100.05,-44.08],[-99.54,-67.63],[-101.61,-86.3],[-109.3,-102.13],[-133.54,-115.16],[-174.4,-125.46],[-184.33,-130.88],[-186.2,-132.49],[-188.74,-133.78],[-191.52,-134.63],[-197.12,-139.74],[-203.21,-147.66],[-212.29,-160.52],[-224.95,-175.72],[-230.32,-178.51],[-230.81,-179.88],[-231.6,-180.1],[-232.74,-179.88],[-233.32,-180.52],[-233.79,-181.88],[-235.3,-182.6],[-238.11,-183.66],[-249.88,-187],[-270.56,-188.65],[-285.63,-187.45],[-303.11,-185.65],[-302.88,-178.21],[-295.46,-166.74],[-294.31,-164.66],[-293.7,-162.87],[-287.17,-151.55],[-279.9,-139.32],[-268.4,-127.75],[-249.82,-120.01],[-233.69,-116.14],[-221.85,-112.82],[-218.29,-110.15],[-217.39,-108.31],[-215.56,-107.21],[-213.4,-106.45],[-212.57,-105.08],[-212.25,-103.33],[-211.35,-102.36],[-210.3,-101.49],[-204.57,-80.17],[-204.12,-42.67],[-195.81,-29.42],[-186.85,-23.32],[-160.71,-14.37]],"o":[[-127.11,13.56],[-120.03,9.61],[-113.28,5.4],[-106.77,1.21],[-101.49,-2.1],[-96.6,-5.26],[-88.47,-10.58],[-85.38,-13.63],[-89.08,-17.36],[-93.64,-22.17],[-97.04,-28.47],[-99.78,-36.51],[-99.93,-59.63],[-100.45,-80.23],[-106.03,-97.25],[-120.59,-111.43],[-160.45,-122.18],[-183.73,-130.38],[-185.56,-131.93],[-187.73,-133.47],[-190.64,-134.36],[-194.76,-137.16],[-201.34,-144.99],[-208.56,-154.66],[-220.48,-171.05],[-230.16,-178.07],[-230.65,-179.41],[-231.23,-180.15],[-232.36,-179.96],[-233.18,-180.08],[-233.63,-181.42],[-234.5,-182.27],[-237.11,-183.29],[-243.35,-185.67],[-263.49,-188.49],[-279.07,-187.63],[-297.65,-186.46],[-304.9,-182.34],[-298.16,-170.41],[-294.21,-164.72],[-294.06,-163.73],[-289.72,-156.14],[-282.26,-143.14],[-273.49,-131.5],[-256.57,-122.01],[-238.02,-116.98],[-225.61,-114.06],[-218.59,-110.74],[-217.69,-108.93],[-216.36,-107.49],[-214.08,-106.69],[-212.7,-105.66],[-212.35,-103.91],[-211.7,-102.61],[-210.65,-101.79],[-205,-92.83],[-204.13,-55.09],[-198.39,-32.01],[-190.04,-25.07],[-173.48,-17.12],[-139.69,-4.8]],"v":[[-130,15],[-122.34,10.93],[-115.57,6.85],[-108,2],[-103.34,-0.93],[-97,-5],[-91.14,-8.85],[-86,-12],[-87.71,-16.13],[-92,-20],[-96.02,-26.48],[-98,-31],[-99.99,-51.85],[-100,-74],[-103.82,-91.77],[-114,-106],[-146.99,-118.67],[-183,-130],[-184.94,-131.4],[-187,-133],[-189.69,-134.07],[-192,-135],[-199.23,-142.36],[-205,-150],[-216.38,-165.78],[-230,-178],[-230.48,-178.96],[-231,-180],[-231.98,-180.03],[-233,-180],[-233.47,-180.97],[-234,-182],[-236.21,-182.95],[-239,-184],[-256.68,-187.75],[-276,-188],[-291.64,-186.96],[-304,-184],[-300.52,-174.31],[-295,-166],[-294.18,-164.19],[-292,-160],[-284.71,-147.34],[-278,-137],[-262.48,-124.88],[-242,-118],[-229.65,-115.1],[-219,-111],[-217.99,-109.54],[-217,-108],[-214.82,-106.95],[-213,-106],[-212.46,-104.5],[-212,-103],[-211,-102.08],[-210,-101],[-204.35,-67.63],[-200,-35],[-192.93,-27.24],[-184,-22],[-150.2,-9.59]],"c":true}],"h":1},{"t":12,"s":[{"i":[[-131.22,10.03],[-123.59,11.86],[-115.71,6.63],[-110.04,3.26],[-105.81,0.66],[-100.35,-3.39],[-93.42,-7.43],[-88.28,-10.87],[-84.97,-13.18],[-86.25,-15.54],[-91.38,-19.28],[-94.1,-22.98],[-96.4,-27.78],[-100.8,-44.09],[-100.13,-70.97],[-102.39,-85.89],[-106.1,-95.44],[-110.92,-102.6],[-117.95,-108.84],[-127.02,-113.52],[-137.83,-116.95],[-155.41,-121.22],[-174.61,-126.61],[-185.79,-131.83],[-192.02,-136.25],[-195.53,-139.23],[-197.59,-140.68],[-198.5,-141.65],[-198.64,-142.63],[-204.04,-148.3],[-211.15,-156.46],[-213.1,-159.59],[-212.89,-160.75],[-213.51,-161.32],[-214.87,-161.83],[-218.93,-167.67],[-225.39,-174.82],[-228.32,-176.51],[-228.83,-177.87],[-234.79,-181.64],[-244.31,-185.13],[-257.85,-187.89],[-275.31,-188.68],[-290.22,-187.27],[-303.24,-185.46],[-298.33,-169.96],[-295.24,-166.41],[-293.73,-163.26],[-285.27,-146.65],[-271.9,-130.76],[-267.41,-127.24],[-239.22,-118.91],[-222.57,-112.18],[-218.76,-110.55],[-217.5,-108.38],[-214.78,-107.84],[-213.49,-104.63],[-211.6,-102.98],[-209.14,-51.7],[-184.26,-22.21],[-142.09,-9.1]],"o":[[-126.48,13.55],[-118.21,8.4],[-111.63,4.18],[-107.13,1.5],[-102.64,-1.92],[-95.74,-6.14],[-89.79,-9.78],[-85.87,-12.57],[-84.81,-14.16],[-89.54,-18.1],[-93.15,-21.34],[-95.73,-26.2],[-100.23,-35.6],[-100.74,-61.77],[-101.34,-82.17],[-104.77,-92.53],[-108.69,-99.93],[-115.55,-107.05],[-123.6,-112.05],[-134.13,-115.97],[-148.6,-119.66],[-168.41,-124.69],[-183.28,-130.46],[-190.16,-134.73],[-194.73,-138.65],[-196.96,-140.25],[-198.42,-141.34],[-198.61,-142.3],[-201.47,-145.57],[-208.88,-153.75],[-213.16,-159.21],[-212.97,-160.36],[-213.07,-161.15],[-214.41,-161.65],[-216.98,-164.76],[-223.13,-172.7],[-228.15,-176.07],[-228.65,-177.41],[-231.88,-180.07],[-241,-184.17],[-252.45,-187.05],[-269.29,-188.71],[-284.85,-187.54],[-299.41,-186.23],[-305.35,-181.43],[-296.84,-166.65],[-294.26,-164.71],[-288.91,-154.87],[-277.19,-135.96],[-267.65,-128.84],[-255.79,-120.51],[-224.3,-113.71],[-220.15,-110.36],[-217.53,-109.66],[-216.03,-107.27],[-213.41,-106.37],[-212.41,-103.22],[-200.91,-85.5],[-194.26,-26.13],[-157.37,-12.98],[-132.61,5.74]],"v":[[-130,15],[-120.9,10.13],[-113,5],[-108.58,2.38],[-105,0],[-98.04,-4.77],[-91,-9],[-87.07,-11.72],[-85,-13],[-87.9,-16.82],[-92,-20],[-94.91,-24.59],[-97,-29],[-100.77,-52.93],[-101,-79],[-103.58,-89.21],[-107,-97],[-113.24,-104.82],[-120,-110],[-130.57,-114.75],[-142,-118],[-161.91,-122.95],[-180,-129],[-187.97,-133.28],[-194,-138],[-196.24,-139.74],[-198,-141],[-198.55,-141.97],[-199,-143],[-206.46,-151.02],[-213,-159],[-213.03,-159.98],[-213,-161],[-213.96,-161.49],[-215,-162],[-221.03,-170.18],[-228,-176],[-228.49,-176.96],[-229,-178],[-237.89,-182.9],[-248,-186],[-263.57,-188.3],[-281,-188],[-294.81,-186.75],[-304,-184],[-297,-167],[-295,-166],[-293,-162],[-281,-141],[-268,-129],[-267,-127],[-228,-115],[-221,-111],[-218,-110],[-217,-108],[-214,-107],[-213,-104],[-211,-102],[-200,-36],[-172,-18],[-135,2]],"c":true}],"h":1},{"t":13,"s":[{"i":[[-90.53,-8.67],[-90.66,-19.25],[-96.37,-26.1],[-101.23,-50.11],[-101.88,-87.48],[-107.29,-98.19],[-110.77,-102.68],[-116.56,-108.26],[-124.24,-112.82],[-129.32,-115.04],[-132.98,-116.65],[-150.89,-121.4],[-175.9,-126.74],[-185.31,-131.39],[-188.82,-134.22],[-191.31,-135.67],[-193.3,-136.47],[-194.36,-137.59],[-194.74,-138.81],[-196.01,-139.42],[-197.6,-139.64],[-204.07,-146.7],[-211.82,-158.15],[-218.88,-167.2],[-227.49,-176.33],[-231.86,-179.17],[-234.24,-180.53],[-240.7,-184.1],[-251.92,-187.6],[-265.18,-188.4],[-281.07,-187.43],[-294.06,-186.99],[-302.99,-185.97],[-303.5,-179.87],[-298.84,-170.51],[-289.91,-154.29],[-275.28,-133.5],[-267.4,-128.2],[-263.3,-125.56],[-253.89,-122.12],[-241,-119.1],[-230.33,-116.02],[-222.33,-112.52],[-218.29,-110.04],[-215.51,-108.52],[-214.45,-105.59],[-212.6,-103.88],[-207.55,-66.68],[-200.09,-36.24],[-197.67,-31.72],[-189.92,-26.88],[-188.3,-25.68],[-141.21,-14.44],[-130.83,15.09],[-128.39,14.16],[-124.72,12.78],[-122.37,10.25],[-120.51,10.23],[-119.38,8.24],[-114.67,6.01],[-108.75,2.12]],"o":[[-87.97,-17.44],[-94.86,-23.58],[-101.28,-37.87],[-101.52,-74.92],[-106.41,-96.85],[-109.47,-101.1],[-114.19,-106.35],[-121.58,-111.5],[-128.08,-114.46],[-131.77,-116.13],[-142.19,-119.78],[-167.74,-124.88],[-184.15,-130.53],[-187.64,-133.23],[-190.66,-135.44],[-192.64,-136.19],[-194.24,-137.18],[-194.61,-138.4],[-195.46,-139.35],[-197.08,-139.56],[-201.16,-142.87],[-209.4,-154.33],[-216.13,-163.79],[-224.55,-173.48],[-230.99,-178.66],[-233.48,-180.1],[-237.49,-182.55],[-247.92,-186.62],[-260.4,-188.43],[-275.52,-187.9],[-290.31,-186.76],[-300.39,-186.6],[-304.58,-182.86],[-300.63,-173.7],[-294.27,-162.28],[-280.41,-139.89],[-268.75,-129.17],[-264.67,-126.4],[-258.14,-123.32],[-245.32,-120.02],[-233.42,-117.01],[-224.79,-113.78],[-219.28,-110.53],[-216.4,-109.03],[-214.44,-107.43],[-213.44,-104.27],[-202.86,-89.68],[-204.22,-43.61],[-197.34,-33.29],[-195.51,-29.4],[-188.1,-25.14],[-167.01,-14.58],[-132.58,7.06],[-129.71,15.73],[-125.43,12.93],[-122.68,11.85],[-121.54,9.69],[-119.67,9.85],[-116.76,6.56],[-110.38,3.41],[-97.4,-5.14]],"v":[[-84,-15],[-92.76,-21.41],[-98,-30],[-101.37,-62.51],[-106,-96],[-108.38,-99.65],[-112,-104],[-119.07,-109.88],[-127,-114],[-130.54,-115.58],[-134,-117],[-159.31,-123.14],[-183,-130],[-186.48,-132.31],[-190,-135],[-191.97,-135.93],[-194,-137],[-194.49,-137.99],[-195,-139],[-196.55,-139.49],[-198,-140],[-206.74,-150.52],[-214,-161],[-221.71,-170.34],[-230,-178],[-232.67,-179.64],[-235,-181],[-244.31,-185.36],[-256,-188],[-270.35,-188.15],[-287,-187],[-297.23,-186.8],[-304,-184],[-302.07,-176.78],[-298,-169],[-285.16,-147.09],[-270,-130],[-266.03,-127.3],[-262,-125],[-249.61,-121.07],[-237,-118],[-227.56,-114.9],[-220,-111],[-217.34,-109.53],[-215,-108],[-214,-105],[-212,-103],[-205,-49],[-198,-34],[-197,-31],[-189,-26],[-187,-25],[-133,6],[-131,15],[-128,14],[-123,12],[-122,10],[-120,10],[-119,8],[-113,5],[-107,1]],"c":true}],"h":1},{"t":14,"s":[{"i":[[-131.17,4.07],[-125.04,12.67],[-117.49,8.12],[-114.68,6.48],[-114.2,5.12],[-110.79,3.25],[-105.92,0.75],[-100.82,-3.1],[-93.87,-7.16],[-91.68,-8.51],[-91.19,-9.88],[-90.39,-10.09],[-89.26,-9.88],[-88.68,-10.52],[-88.21,-11.88],[-86.75,-12.29],[-84.04,-12.8],[-85.98,-16.41],[-91.87,-21.9],[-92.52,-22.45],[-94.4,-24.2],[-97.2,-28.12],[-99.53,-32.57],[-102.58,-55.45],[-102.82,-90.22],[-108.73,-99.83],[-110.54,-101.44],[-113.66,-105.19],[-117.76,-109.24],[-121.08,-111.44],[-123.67,-113.35],[-129.46,-115.94],[-136.75,-118.34],[-156.46,-123.17],[-181.55,-129.4],[-189.03,-133.87],[-190.32,-135.55],[-192.74,-136.79],[-195.45,-137.57],[-202.8,-144.55],[-211.26,-156.36],[-222.26,-170.47],[-237.41,-182.65],[-257.49,-187.94],[-282.56,-187.81],[-302.68,-186.53],[-300.12,-173.8],[-293.55,-160.32],[-282.22,-142.77],[-273.08,-132.38],[-267.04,-128.48],[-255.32,-123.58],[-236.04,-119.12],[-219.13,-111.34],[-211.3,-102.05],[-207.24,-70.86],[-203.09,-39.19],[-200.63,-35.78],[-187.7,-25.27],[-167.23,-17.88],[-147.94,-11.82]],"o":[[-127.8,14.36],[-119.89,9.55],[-114.83,6.92],[-114.36,5.58],[-112.58,4.13],[-107.46,1.56],[-103.13,-1.52],[-96.18,-5.92],[-91.83,-8.07],[-91.36,-9.41],[-90.77,-10.15],[-89.64,-9.96],[-88.82,-10.08],[-88.37,-11.42],[-87.73,-12.15],[-84.91,-12.62],[-83.8,-13.96],[-90.02,-20.38],[-91.82,-21.86],[-93.81,-23.62],[-96.19,-26.58],[-98.87,-31.11],[-103.17,-43.59],[-102.41,-78.77],[-108.21,-99.36],[-109.9,-100.87],[-112.28,-103.57],[-116.4,-108.02],[-120.24,-110.76],[-122.79,-112.73],[-127.08,-115.02],[-134.29,-117.6],[-147.43,-121.47],[-173.52,-127.14],[-188.62,-133.35],[-189.88,-134.98],[-191.77,-136.5],[-194.59,-137.32],[-199.67,-140.87],[-208.6,-152.29],[-218.06,-165.39],[-231.94,-179.1],[-249.71,-187.03],[-273.91,-188.33],[-297.63,-186.17],[-305.99,-180.17],[-295.08,-164.76],[-287.08,-149.36],[-275.38,-135.04],[-268.42,-129.29],[-258.67,-124.4],[-242.77,-120.44],[-224.37,-115.03],[-213.22,-105.04],[-205.06,-87.42],[-205.55,-50.55],[-200.36,-36.34],[-194.55,-28.24],[-173.5,-19.93],[-156.22,-13.92],[-138.13,-2.42]],"v":[[-131,16],[-122.46,11.11],[-115,7],[-114.52,6.03],[-114,5],[-109.12,2.41],[-105,0],[-98.5,-4.51],[-92,-8],[-91.52,-8.96],[-91,-10],[-90.02,-10.03],[-89,-10],[-88.53,-10.97],[-88,-12],[-85.83,-12.46],[-84,-13],[-88,-18.4],[-91,-21],[-93.16,-23.04],[-95,-25],[-98.04,-29.62],[-100,-34],[-102.49,-67.11],[-108,-99],[-109.31,-100.35],[-111,-102],[-115.03,-106.61],[-119,-110],[-121.93,-112.08],[-125,-114],[-131.87,-116.77],[-139,-119],[-164.99,-125.15],[-188,-133],[-189.46,-134.43],[-191,-136],[-193.67,-137.06],[-196,-138],[-205.7,-148.42],[-214,-160],[-227.1,-174.78],[-244,-185],[-265.7,-188.13],[-290,-187],[-304,-184],[-298,-170],[-291,-156],[-278,-138],[-271,-131],[-264,-127],[-249,-122],[-230,-117],[-216,-108],[-210,-99],[-206,-56],[-201,-37],[-200,-35],[-179,-22],[-162,-16],[-145,-9]],"c":true}],"h":1},{"t":15,"s":[{"i":[[-90.63,-9.03],[-90.37,-20.08],[-97.28,-27.27],[-102.93,-49.36],[-102.93,-82.22],[-107.75,-97.28],[-113.86,-105],[-118.97,-109.81],[-123.36,-113.24],[-126.08,-114.66],[-127.53,-115.8],[-141.86,-120.7],[-161.9,-124.38],[-179.1,-129.54],[-194.32,-137.2],[-198.36,-140.59],[-198.74,-141.81],[-200.02,-142.41],[-201.6,-142.61],[-202.38,-143.58],[-202.86,-144.77],[-203.65,-145.82],[-204.64,-146.58],[-208.26,-151.11],[-212.46,-156.99],[-215.74,-160.89],[-218.58,-163.44],[-219.42,-165],[-219.68,-166.61],[-221.2,-168.02],[-223.45,-169.36],[-225.13,-171.77],[-226.39,-174.44],[-227.56,-175.11],[-228.78,-174.9],[-229.32,-175.5],[-229.84,-176.87],[-231.35,-177.78],[-233.51,-178.65],[-237.79,-182.98],[-244.5,-185.26],[-266.2,-189.38],[-302.15,-187.57],[-295.86,-165.57],[-292.5,-157.57],[-290.7,-155.18],[-279.45,-137.91],[-272.97,-133.68],[-270.87,-130.56],[-267.77,-129.45],[-263.01,-127.09],[-230.03,-118.81],[-217.93,-109.97],[-211.36,-101.65],[-209.94,-52.64],[-200.04,-35.06],[-165.49,-19.56],[-143.72,-8.14],[-131.94,6.15],[-123.13,11.63],[-110.91,3.51]],"o":[[-87.24,-17.95],[-95.39,-24.74],[-102.47,-38.5],[-103.17,-71.22],[-106.07,-94.03],[-111.64,-102.77],[-117.54,-108.43],[-121.88,-112.21],[-125.57,-114.26],[-127.06,-115.43],[-134.91,-119],[-155.35,-123.39],[-173.44,-127.44],[-189.54,-134.42],[-198.24,-140.18],[-198.61,-141.4],[-199.47,-142.35],[-201.09,-142.54],[-202.2,-143.19],[-202.71,-144.37],[-203.33,-145.53],[-204.31,-146.35],[-206.78,-149.12],[-211.1,-155.05],[-214.7,-159.92],[-217.68,-162.65],[-219.33,-164.45],[-219.6,-166.08],[-220.48,-167.59],[-222.68,-168.9],[-224.69,-170.8],[-225.98,-173.58],[-227.17,-175.16],[-228.37,-174.98],[-229.15,-175.07],[-229.66,-176.41],[-230.6,-177.46],[-232.81,-178.38],[-236.36,-180.7],[-241.42,-184.66],[-253.86,-188.04],[-278.56,-188.69],[-306.5,-179.17],[-293.85,-161.91],[-290.18,-155.15],[-286.2,-147.61],[-274.17,-133.27],[-271.18,-132.42],[-269.09,-129.42],[-264.47,-127.53],[-247.01,-121.27],[-219.49,-110.86],[-213.82,-105.71],[-204.08,-82.08],[-201.13,-37.5],[-190.88,-23.15],[-145.76,-9.97],[-134.96,1.61],[-127.14,14.87],[-114.9,6.39],[-98.76,-4.28]],"v":[[-83,-15],[-92.88,-22.41],[-99,-31],[-103.05,-60.29],[-105,-90],[-109.7,-100.02],[-116,-107],[-120.42,-111.01],[-125,-114],[-126.57,-115.04],[-128,-116],[-148.61,-122.04],[-168,-126],[-184.32,-131.98],[-198,-140],[-198.49,-140.99],[-199,-142],[-200.55,-142.48],[-202,-143],[-202.54,-143.97],[-203,-145],[-203.98,-146.08],[-205,-147],[-209.68,-153.08],[-214,-159],[-216.71,-161.77],[-219,-164],[-219.51,-165.54],[-220,-167],[-221.94,-168.46],[-224,-170],[-225.56,-172.68],[-227,-175],[-227.96,-175.04],[-229,-175],[-229.49,-175.96],[-230,-177],[-232.08,-178.08],[-234,-179],[-240,-184],[-247,-186],[-273,-189],[-304,-184],[-295,-164],[-291,-156],[-290,-154],[-275,-134],[-272,-133],[-270,-130],[-267,-129],[-260,-126],[-221,-112],[-217,-109],[-210,-98],[-202,-39],[-200,-35],[-152,-13],[-140,-4],[-132,16],[-119,9],[-107,1]],"c":true}],"h":1},{"t":16,"s":[{"i":[[-268.49,-188.68],[-288.67,-187.77],[-302.97,-186.05],[-304.15,-179.61],[-299.98,-171.84],[-295.96,-164.5],[-292.67,-159.14],[-289.85,-154.12],[-286.35,-147.89],[-283.07,-143.51],[-280.52,-140.15],[-279.5,-138.69],[-278.12,-138.15],[-275.74,-135.51],[-272.53,-133.08],[-264.56,-128.17],[-253.27,-123.82],[-243.49,-121.35],[-235.74,-119.01],[-228.97,-116.74],[-223.4,-114.95],[-220.31,-112.59],[-217.67,-109.74],[-213.57,-104.63],[-209.6,-96.57],[-207.15,-74.97],[-206.32,-46.17],[-184,-25.1],[-143.41,-11.95],[-136.05,0.91],[-134.51,5.25],[-132.8,11.44],[-131.86,16.08],[-124.19,11.72],[-116.52,7.68],[-114.4,5.24],[-108.92,3.24],[-105.84,-0.44],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-88.85,-10.18],[-87.18,-11.3],[-83.29,-15.1],[-90.1,-21.18],[-93.28,-22.18],[-94.41,-25.29],[-98.07,-29.17],[-102.07,-62.36],[-110.59,-101.91],[-116.27,-107.32],[-120.83,-112.67],[-134.11,-118.24],[-152.08,-123.64],[-171.15,-127.06],[-191.58,-135.76],[-209.57,-152.12],[-225.66,-174.14],[-232.64,-178.75],[-240.4,-183.59]],"o":[[-282.94,-187.75],[-298.69,-186.93],[-304.91,-182.19],[-301.68,-174.44],[-297.38,-166.93],[-293.61,-160.61],[-290.93,-156.18],[-287.56,-149.98],[-284.06,-144.68],[-281.3,-141.24],[-279.94,-138.86],[-278.59,-138.33],[-276.73,-136.47],[-273.64,-133.81],[-268.17,-130.01],[-257.11,-125.07],[-246.36,-122.09],[-238.17,-119.81],[-231.02,-117.27],[-225.16,-115.58],[-221.22,-113.47],[-218.53,-110.73],[-215.27,-107.09],[-210.73,-99.37],[-206.99,-85.38],[-206.81,-55.37],[-197.29,-29.38],[-157.06,-16.39],[-136.54,-0.22],[-135.04,3.64],[-133.37,9.15],[-132.05,14.91],[-130.08,17.17],[-118.02,7.72],[-114.66,6.85],[-111.45,3.46],[-106.18,1.47],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.16,-9.8],[-87.15,-11.82],[-81.39,-14.74],[-88.82,-19.42],[-91.81,-22.73],[-94.65,-23.74],[-97.02,-28.41],[-105.38,-43.52],[-105.09,-91.6],[-115.66,-107.76],[-119.19,-110.03],[-127.48,-116.74],[-146.06,-121.81],[-164.3,-126.45],[-184.12,-131.36],[-204.22,-145.03],[-220.3,-165.72],[-232.32,-177.14],[-236.6,-181.49],[-253.85,-188.86]],"v":[[-279,-188],[-293.68,-187.35],[-304,-184],[-302.91,-177.02],[-299,-170],[-294.79,-162.55],[-292,-158],[-288.7,-152.05],[-285,-146],[-282.19,-142.38],[-280,-139],[-279.05,-138.51],[-278,-138],[-274.69,-134.66],[-271,-132],[-260.83,-126.62],[-250,-123],[-240.83,-120.58],[-233,-118],[-227.06,-116.16],[-222,-114],[-219.42,-111.66],[-217,-109],[-212.15,-102],[-209,-94],[-206.98,-65.17],[-203,-40],[-170.53,-20.75],[-137,-1],[-135.54,2.27],[-134,7],[-132.42,13.18],[-132,16],[-120,9],[-115,7],[-114,5],[-107,2],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-88,-11],[-86,-12],[-87,-18],[-91,-22],[-94,-23],[-95,-26],[-99,-31],[-104,-81],[-115,-107],[-117,-108],[-123,-114],[-140,-120],[-158,-125],[-177,-129],[-196,-139],[-215,-159],[-232,-177],[-233,-179],[-244,-185]],"c":true}],"h":1},{"t":17,"s":[{"i":[[-85.46,-12.46],[-89.84,-20.67],[-96.95,-27.39],[-103.66,-45.36],[-103.94,-72.75],[-107.23,-93.88],[-114.92,-108.11],[-118.8,-110.66],[-119.6,-111.71],[-130.87,-118.15],[-150.07,-123.4],[-166.38,-127.19],[-179.54,-130.74],[-187.69,-134],[-192.37,-136.99],[-195.8,-138.8],[-198.46,-139.59],[-202.59,-143.41],[-207.84,-149.76],[-210.58,-152.87],[-212.44,-155.4],[-214.6,-157.84],[-216.36,-160.22],[-218.56,-162.94],[-220.4,-165.27],[-225.37,-171.04],[-232.53,-178.02],[-238.11,-181.57],[-245.42,-185.45],[-258.91,-188.67],[-278.69,-188.51],[-293.23,-187.8],[-302.95,-186.24],[-303.97,-180.31],[-300.78,-172.59],[-296.39,-164.17],[-291.68,-156.8],[-288.08,-150.71],[-285.79,-146.97],[-282.85,-143.1],[-279.91,-138.93],[-277.89,-137.31],[-275.73,-136.57],[-273.85,-134.65],[-272.53,-132.37],[-270.53,-131.29],[-267.82,-130.46],[-265.53,-128.94],[-263.58,-127.24],[-259.91,-126.14],[-254.7,-125.45],[-249.98,-124.04],[-245.43,-122.37],[-237.38,-120.5],[-227.78,-117.68],[-214.07,-105.68],[-209.16,-63.54],[-198.87,-33.92],[-131.26,-18.12],[-115.37,6.36],[-98.35,-4.16]],"o":[[-86.62,-18.72],[-95,-25],[-102.69,-37.49],[-104.29,-63],[-105.52,-88.08],[-111.93,-103.89],[-118.5,-110.31],[-119.35,-111.36],[-125.08,-115.7],[-143.36,-122],[-161.61,-126.07],[-175.35,-129.52],[-185.76,-133],[-191,-135.99],[-194.82,-138.5],[-197.62,-139.34],[-200.67,-141.28],[-206.18,-147.65],[-209.86,-151.92],[-211.87,-154.61],[-213.92,-156.98],[-215.82,-159.46],[-217.86,-162.05],[-219.83,-164.54],[-222.86,-168.28],[-230.21,-175.91],[-235.65,-180.1],[-242.99,-184.25],[-252.57,-187.92],[-271.97,-188.97],[-289,-187.68],[-300.2,-187.08],[-304.58,-182.76],[-302.07,-175.22],[-298.05,-167.02],[-293.21,-159.06],[-288.93,-152.23],[-286.51,-148.08],[-283.89,-144.64],[-280.86,-140.25],[-278.53,-137.52],[-276.49,-136.83],[-274.33,-135.47],[-272.95,-133.11],[-271.37,-131.56],[-268.75,-130.74],[-266.24,-129.58],[-264.19,-127.77],[-261.56,-126.41],[-256.48,-125.66],[-251.52,-124.6],[-246.94,-122.92],[-240.74,-121.15],[-230.9,-118.76],[-219.78,-112.84],[-206.59,-88.73],[-203.17,-37.88],[-167.06,-16.27],[-123.75,12.62],[-102.64,-1.79],[-89.98,-9.62]],"v":[[-82,-16],[-92.42,-22.83],[-99,-31],[-103.97,-54.18],[-105,-83],[-109.58,-98.89],[-118,-110],[-119.07,-111.01],[-120,-112],[-137.11,-120.07],[-157,-125],[-170.86,-128.36],[-183,-132],[-189.34,-135],[-194,-138],[-196.71,-139.07],[-199,-140],[-204.39,-145.53],[-209,-151],[-211.22,-153.74],[-213,-156],[-215.21,-158.65],[-217,-161],[-219.2,-163.74],[-221,-166],[-227.79,-173.48],[-234,-179],[-240.55,-182.91],[-247,-186],[-265.44,-188.82],[-285,-188],[-296.71,-187.44],[-304,-184],[-303.02,-177.76],[-300,-171],[-294.8,-161.61],[-290,-154],[-287.29,-149.4],[-285,-146],[-281.85,-141.68],[-279,-138],[-277.19,-137.07],[-275,-136],[-273.4,-133.88],[-272,-132],[-269.64,-131.01],[-267,-130],[-264.86,-128.36],[-263,-127],[-258.19,-125.9],[-253,-125],[-248.46,-123.48],[-244,-122],[-234.14,-119.63],[-225,-116],[-212,-101],[-206,-50],[-190,-29],[-133,17],[-107,1],[-94,-7]],"c":true}],"h":1},{"t":18,"s":[{"i":[[-86.28,-12.1],[-82.92,-17.33],[-86.37,-18.57],[-92.74,-23.34],[-99.73,-31.24],[-104.65,-48.76],[-104.87,-75.63],[-108.31,-95.02],[-115.68,-108.96],[-119.8,-111.66],[-120.6,-112.71],[-127.68,-117.11],[-139.79,-121.79],[-155.2,-125.7],[-170.83,-128.59],[-183.01,-132.28],[-191.38,-136.48],[-195.66,-138.7],[-198.26,-139.49],[-199.36,-140.55],[-199.8,-141.81],[-200.92,-142.43],[-202.6,-142.66],[-205.74,-145.91],[-208.84,-150.64],[-212.92,-155.28],[-216.93,-159.66],[-223.72,-168.13],[-233.45,-177.89],[-237.91,-180.6],[-239.51,-181.71],[-246.03,-185.32],[-256.02,-188.59],[-275.25,-189.6],[-302.7,-186.7],[-303.73,-178.62],[-298.62,-169.06],[-296.86,-166.09],[-295.4,-163.71],[-289.84,-153.89],[-283.41,-143.89],[-279.13,-138.83],[-277.14,-137.51],[-275.69,-136.5],[-275.15,-135.12],[-268.54,-130.22],[-253.31,-125.69],[-220.04,-114.93],[-209.74,-72.11],[-204.25,-41.35],[-198.63,-34.91],[-182.87,-26.64],[-147.98,-15.12],[-134.73,5.86],[-125.9,13.87],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.82,0.21],[-102.19,-1.22],[-97.09,-5.64]],"o":[[-81.98,-16.55],[-85.12,-18.34],[-89.87,-20.97],[-97.66,-28.47],[-103.97,-40.45],[-105.1,-66.36],[-106.72,-89.29],[-112.79,-104.85],[-119.5,-111.31],[-120.35,-112.36],[-124.04,-115.21],[-135.56,-120.4],[-149.78,-124.66],[-165.73,-127.67],[-179.82,-131.04],[-188.79,-135],[-194.78,-138.46],[-197.4,-139.22],[-199.21,-140.14],[-199.65,-141.39],[-200.37,-142.35],[-202.03,-142.58],[-204.57,-144.34],[-207.87,-149.06],[-211.45,-153.7],[-215.66,-158.26],[-220.74,-164.44],[-230.07,-174.86],[-237.41,-180.24],[-238.96,-181.33],[-243.02,-183.77],[-252.53,-187.73],[-264.9,-189.5],[-294.15,-188.2],[-304.92,-182.09],[-300.58,-172.1],[-297.41,-166.99],[-295.85,-164.45],[-292.14,-157.94],[-285.48,-146.86],[-279.81,-139.58],[-277.8,-137.8],[-275.86,-136.94],[-275.33,-135.59],[-272.32,-132.77],[-260.17,-126.19],[-232.31,-120.07],[-207.25,-91.79],[-207.46,-49.73],[-199.92,-36.83],[-189.71,-28.42],[-162.62,-19.84],[-135.02,-0.05],[-130.34,16.39],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.08,2.21],[-103.79,-1.8],[-99.02,-3.3],[-90.77,-9.76]],"v":[[-82,-15],[-84.02,-17.84],[-87,-19],[-95.2,-25.9],[-101,-34],[-104.88,-57.56],[-106,-84],[-110.55,-99.93],[-119,-111],[-120.07,-112.01],[-121,-113],[-131.62,-118.75],[-144,-123],[-160.46,-126.68],[-176,-130],[-185.9,-133.64],[-194,-138],[-196.53,-138.96],[-199,-140],[-199.51,-140.97],[-200,-142],[-201.48,-142.5],[-203,-143],[-206.8,-147.48],[-210,-152],[-214.29,-156.77],[-218,-161],[-226.89,-171.5],[-237,-180],[-238.44,-180.96],[-240,-182],[-249.28,-186.52],[-260,-189],[-284.7,-188.9],[-304,-184],[-302.15,-175.36],[-298,-168],[-296.36,-165.27],[-295,-163],[-287.66,-150.37],[-281,-141],[-278.46,-138.32],[-276,-137],[-275.51,-136.05],[-275,-135],[-266,-129],[-247,-124],[-214,-104],[-208,-55],[-202,-39],[-196,-33],[-175,-24],[-141,-7],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-101,-2],[-95,-7]],"c":true}],"h":1},{"t":19,"s":[{"i":[[-81.7,-14.89],[-85.97,-19.58],[-92.14,-23.45],[-97.07,-27.92],[-100.95,-33.6],[-104.56,-43.94],[-105.62,-57.41],[-105.69,-71.99],[-107.45,-88.94],[-112.67,-104.15],[-117.26,-109.52],[-120.36,-111.78],[-125.5,-115.74],[-130.57,-119.05],[-141.03,-122.82],[-153.75,-126.08],[-163.72,-128.24],[-172.19,-130.23],[-181,-132.48],[-189.59,-134.83],[-192.61,-136.53],[-193.71,-137.82],[-194.96,-138.39],[-196.47,-138.68],[-204.28,-144.4],[-213.24,-154.56],[-221.46,-164.92],[-230.28,-174.92],[-234.9,-178.38],[-237.15,-179.62],[-238.32,-180.52],[-238.79,-181.88],[-252.89,-187.75],[-279.13,-189.19],[-294.7,-187.42],[-303.34,-185.4],[-303.38,-176.6],[-295.81,-163.42],[-287.06,-148.53],[-271.69,-131.84],[-258.5,-126.72],[-247.53,-124],[-232.14,-119.37],[-218.88,-111.31],[-210.71,-94.13],[-209.6,-70.28],[-207.07,-49.07],[-199.15,-35.55],[-188.13,-29.44],[-176.33,-25.43],[-163.77,-21.15],[-151.25,-15.68],[-140.17,-6.28],[-133.95,9.49],[-124.43,12.28],[-111.34,3.78],[-101.82,-2.39],[-94.32,-6.95],[-91.68,-8.51],[-91.19,-9.88],[-87.04,-11.86]],"o":[[-83.62,-18.33],[-90.24,-22.14],[-95.56,-26.34],[-99.77,-31.55],[-103.66,-39.79],[-105.54,-52.75],[-105.69,-67.03],[-106.36,-82.87],[-110.61,-99.58],[-116.33,-108.63],[-119.28,-111.1],[-123.97,-114.46],[-128.81,-118.03],[-136.91,-121.53],[-149.45,-125.09],[-160.88,-127.62],[-169.38,-129.54],[-177.96,-131.81],[-186.82,-133.99],[-192.25,-136.12],[-193.34,-137.38],[-194.48,-138.3],[-195.96,-138.58],[-200.91,-141.37],[-210.45,-151],[-218.57,-161.21],[-227.31,-171.77],[-234.08,-177.82],[-236.44,-179.28],[-238.17,-180.08],[-238.63,-181.42],[-245.33,-185.66],[-269.79,-189.52],[-291.28,-187.72],[-300.73,-186.26],[-305.23,-181.39],[-298.67,-167.61],[-291.21,-155.36],[-277.29,-136.77],[-261.99,-127.72],[-251.28,-124.86],[-237.7,-121.22],[-222.73,-114.42],[-212.16,-101.23],[-209.43,-78.65],[-208.49,-55.04],[-202.4,-39.33],[-191.71,-30.97],[-180.44,-26.67],[-168.4,-22.81],[-155.2,-17.59],[-143.7,-10.03],[-135.3,3.48],[-128.76,15.14],[-115.72,6.6],[-104.41,-0.66],[-96.77,-5.53],[-91.83,-8.07],[-91.36,-9.42],[-89.19,-11.17],[-83.29,-13.72]],"v":[[-81,-17],[-88.11,-20.86],[-93.85,-24.9],[-98.42,-29.74],[-102,-36],[-105.05,-48.35],[-105.66,-62.22],[-106,-77],[-109.03,-94.26],[-115,-107],[-118.27,-110.31],[-122,-113],[-127.15,-116.88],[-133,-120],[-145.24,-123.95],[-158,-127],[-166.55,-128.89],[-175,-131],[-183.91,-133.23],[-192,-136],[-192.98,-136.96],[-194,-138],[-195.46,-138.48],[-197,-139],[-207.37,-147.7],[-216,-158],[-224.39,-168.34],[-233,-177],[-235.67,-178.83],[-238,-180],[-238.48,-180.97],[-239,-182],[-261.34,-188.64],[-289,-188],[-297.72,-186.84],[-304,-184],[-301.03,-172.11],[-295,-162],[-282.17,-142.65],[-265,-129],[-254.89,-125.79],[-244,-123],[-227.43,-116.9],[-216,-107],[-210.07,-86.39],[-209,-62],[-204.73,-44.2],[-195,-33],[-184.28,-28.06],[-172,-24],[-159.49,-19.37],[-149,-14],[-137.74,-1.4],[-133,18],[-120.07,9.44],[-107,1],[-99.29,-3.96],[-92,-8],[-91.52,-8.96],[-91,-10],[-85.17,-12.79]],"c":true}],"h":1},{"t":20,"s":[{"i":[[-84.26,-13.65],[-86.15,-20.29],[-93.04,-24.48],[-98.38,-29.57],[-105.47,-45.94],[-106.21,-72.56],[-108.28,-91.02],[-112.83,-103.74],[-115.56,-107.36],[-116.82,-107.76],[-117.41,-109.02],[-117.62,-110.6],[-119.39,-112.09],[-121.38,-112.72],[-122.32,-113.51],[-122.82,-114.88],[-124.74,-115.92],[-127.36,-116.71],[-128.32,-117.52],[-128.78,-118.89],[-134.41,-121.2],[-143.26,-123.26],[-165.89,-128.66],[-194.72,-137.3],[-202.02,-142.69],[-203.51,-143.6],[-206.51,-146.39],[-209.23,-150.01],[-212.35,-153.58],[-216.15,-157.01],[-223.91,-166.28],[-234.15,-177.18],[-247.49,-185.36],[-266.14,-189.97],[-282.63,-189.71],[-302.91,-186.38],[-303.91,-178.05],[-298.18,-167.23],[-290.6,-153.42],[-277.62,-137.08],[-272.68,-134.49],[-272.19,-133.12],[-269.32,-131.56],[-264.42,-129.55],[-252.05,-125.78],[-235.82,-122.27],[-219.85,-112.66],[-210.77,-94.22],[-209.46,-71.24],[-208.23,-49.96],[-205.48,-44.4],[-204.17,-43.27],[-203.65,-42.04],[-203.32,-40.43],[-195.92,-33.52],[-181.16,-27.75],[-154.31,-19.02],[-133.83,2.58],[-125.17,12.96],[-111.47,3.86],[-97.76,-4.78]],"o":[[-83.35,-18.83],[-91,-23.12],[-96.74,-27.7],[-104.11,-38.17],[-106.52,-63.14],[-107.37,-86.4],[-111.01,-99.69],[-115.15,-107.22],[-116.4,-107.63],[-117.35,-108.47],[-117.54,-110.09],[-118.7,-111.73],[-120.73,-112.59],[-122.16,-113.07],[-122.65,-114.41],[-123.81,-115.56],[-126.51,-116.49],[-128.18,-117.08],[-128.62,-118.43],[-131.53,-120.33],[-140.27,-122.67],[-155.28,-126.52],[-185.61,-134.06],[-201.51,-142.38],[-203.02,-143.3],[-205.4,-145.13],[-208.43,-148.83],[-211.03,-152.32],[-214.91,-155.92],[-220.59,-162.19],[-230.69,-173.77],[-241.92,-182.87],[-259.6,-188.9],[-275.17,-190.02],[-296.49,-187.89],[-305.07,-181.68],[-300.47,-170.82],[-294.29,-159.88],[-282.26,-142.02],[-272.83,-134.92],[-272.36,-133.58],[-270.86,-132.28],[-266.1,-130.2],[-257.63,-126.9],[-241.14,-123.47],[-224.72,-117.05],[-212.87,-101.24],[-209.35,-79.01],[-208.9,-56.72],[-205.89,-44.76],[-204.61,-43.65],[-203.74,-42.58],[-203.44,-40.97],[-200.09,-36.14],[-186.46,-29.32],[-165.15,-22.31],[-138.65,-6.58],[-129.94,15.78],[-115.94,7],[-102.38,-1.96],[-88.7,-10.63]],"v":[[-80,-17],[-88.57,-21.71],[-94.89,-26.09],[-100,-32],[-105.99,-54.54],[-107,-82],[-109.64,-95.35],[-115,-107],[-115.98,-107.49],[-117,-108],[-117.48,-109.55],[-118,-111],[-120.06,-112.34],[-122,-113],[-122.48,-113.96],[-123,-115],[-125.63,-116.2],[-128,-117],[-128.47,-117.98],[-129,-119],[-137.34,-121.94],[-146,-124],[-175.75,-131.36],[-201,-142],[-202.52,-142.99],[-204,-144],[-207.47,-147.61],[-210,-151],[-213.63,-154.75],[-217,-158],[-227.3,-170.03],[-238,-180],[-253.54,-187.13],[-272,-190],[-289.56,-188.8],[-304,-184],[-302.19,-174.44],[-297,-165],[-286.43,-147.72],[-273,-135],[-272.52,-134.03],[-272,-133],[-267.71,-130.88],[-263,-129],[-246.59,-124.62],[-231,-120],[-216.36,-106.95],[-210,-86],[-209.18,-63.98],[-206,-45],[-205.05,-44.02],[-204,-43],[-203.54,-41.5],[-203,-40],[-191.19,-31.42],[-176,-26],[-146.48,-12.8],[-135,18],[-120.55,9.98],[-107,1],[-93.23,-7.71]],"c":true}],"h":1},{"t":21,"s":[{"i":[[-135.81,4.5],[-125.53,13.2],[-112.49,4.51],[-103.23,-1.41],[-95.99,-6.06],[-87.71,-11.02],[-79.74,-16.56],[-82.43,-19.76],[-90.06,-22.39],[-93.44,-25.15],[-98.53,-30.42],[-106.1,-46.31],[-106.82,-75.48],[-111.08,-98.65],[-120.67,-112.9],[-124.9,-116.48],[-126.48,-116.68],[-129.7,-118.82],[-133.55,-121.4],[-148.42,-126.22],[-170.05,-130.17],[-184.28,-134],[-194.44,-137.63],[-199.33,-140.61],[-202.31,-143.48],[-203.95,-144.39],[-205.59,-144.66],[-212.21,-151.11],[-219.48,-161.04],[-226.29,-169.02],[-232.99,-176.23],[-235.92,-178.45],[-237.52,-178.66],[-238.69,-179.9],[-239.57,-181.72],[-244.07,-184.09],[-253.54,-187.21],[-263.96,-189.5],[-274.78,-190.49],[-288.36,-188.89],[-303.04,-186.12],[-304.37,-180.72],[-301.85,-175],[-299.31,-169.26],[-296.7,-164.23],[-292.53,-156.78],[-286.64,-147],[-278.45,-138.6],[-265.67,-130.01],[-257.04,-127.32],[-247.83,-125.81],[-238.57,-123.15],[-229.85,-120.09],[-227.43,-117.32],[-224.8,-116.69],[-216.71,-107.7],[-213.82,-58.79],[-204.03,-42.03],[-200.62,-37.91],[-184.77,-29.57],[-150.03,-18.04]],"o":[[-129.79,15.69],[-116.88,7.61],[-105.23,-0.13],[-98.61,-4.38],[-91.09,-9.24],[-82.03,-14.68],[-80.15,-18.82],[-87.39,-21.55],[-91.67,-23.44],[-96.87,-28.64],[-104.44,-37.83],[-107.29,-65.14],[-108.75,-92.7],[-117.04,-108.75],[-124.41,-116.39],[-125.93,-116.62],[-128.43,-117.87],[-132.27,-120.59],[-141.39,-124.63],[-162.74,-128.99],[-180.56,-132.94],[-191.22,-136.35],[-198.17,-139.63],[-201.4,-142.54],[-203.4,-144.31],[-205.04,-144.57],[-209.47,-147.84],[-217.22,-157.71],[-224.04,-166.4],[-230.76,-173.93],[-235.41,-178.37],[-236.97,-178.59],[-238.41,-179.29],[-239.27,-181.12],[-241.54,-182.99],[-250.07,-186.21],[-260.32,-188.75],[-271.19,-190.37],[-282.34,-189.33],[-298.71,-187.28],[-304.69,-182.47],[-302.94,-176.99],[-300.22,-171.15],[-297.55,-165.8],[-294.46,-160.28],[-288.62,-150.15],[-282.62,-142.09],[-269.98,-132.56],[-260.13,-127.91],[-250.89,-126.27],[-241.89,-124.11],[-232.55,-121.15],[-227.59,-118.76],[-226.08,-116.31],[-220.2,-112.7],[-206.9,-86.45],[-205.06,-43.11],[-201.87,-39.78],[-191.8,-31.49],[-164.58,-22.9],[-136.48,-2.54]],"v":[[-135,18],[-121.21,10.4],[-107,1],[-100.92,-2.89],[-93,-8],[-84.87,-12.85],[-80,-18],[-84.91,-20.65],[-91,-23],[-95.16,-26.89],[-99,-31],[-106.7,-55.73],[-108,-86],[-114.06,-103.7],[-124,-116],[-125.42,-116.55],[-127,-117],[-130.99,-119.71],[-135,-122],[-155.58,-127.6],[-177,-132],[-187.75,-135.18],[-197,-139],[-200.36,-141.58],[-203,-144],[-204.49,-144.48],[-206,-145],[-214.71,-154.41],[-222,-164],[-228.52,-171.47],[-235,-178],[-236.45,-178.52],[-238,-179],[-238.98,-180.51],[-240,-182],[-247.07,-185.15],[-257,-188],[-267.58,-189.94],[-278,-190],[-293.54,-188.09],[-304,-184],[-303.66,-178.85],[-301,-173],[-298.43,-167.53],[-296,-163],[-290.58,-153.46],[-285,-145],[-274.22,-135.58],[-263,-129],[-253.97,-126.8],[-245,-125],[-235.56,-122.15],[-228,-119],[-227,-117],[-224,-116],[-215,-104],[-205,-43],[-204,-42],[-198,-36],[-177,-27],[-143,-10]],"c":true}],"h":1},{"t":22,"s":[{"i":[[-80.91,-15.81],[-87.2,-21.7],[-96.9,-28.75],[-103.71,-37.99],[-107.56,-50.05],[-108.33,-60.56],[-108.31,-69.21],[-108.23,-77.9],[-108.61,-86.34],[-109.76,-92.8],[-111.67,-98.24],[-114.02,-103.09],[-116.35,-107.02],[-118.48,-110.17],[-120.54,-112.81],[-122.82,-115.05],[-125.74,-117.22],[-130.16,-119.85],[-134.95,-122.08],[-139.91,-123.89],[-145.15,-125.48],[-154.6,-127.94],[-166,-130.37],[-177.29,-132.93],[-184.68,-134.92],[-190.33,-136.32],[-193.31,-137.84],[-195.27,-139.63],[-200.69,-142.32],[-205.06,-145.24],[-211.79,-151.33],[-218.42,-157.94],[-222.35,-163.18],[-225.65,-167.53],[-233.54,-175.79],[-245.04,-184.48],[-258.3,-188.84],[-275.68,-190.64],[-289.13,-189.16],[-303.09,-185.99],[-304.32,-179.68],[-300.96,-172.03],[-293.18,-156.6],[-279.78,-139.16],[-274.68,-136.48],[-274.21,-135.12],[-266.45,-131.45],[-254.81,-128.03],[-242.46,-124.74],[-228.96,-119.88],[-221.76,-113],[-215.15,-104.41],[-211.2,-82.64],[-209.32,-50.89],[-185.77,-29.94],[-144.47,-16.45],[-136.94,2.07],[-135.88,13.94],[-121.04,10.27],[-99.73,-3.64],[-88.06,-10.95]],"o":[[-83.33,-19.75],[-93.98,-26.2],[-101.76,-34.64],[-106.61,-45.69],[-108.24,-57.74],[-108.36,-66.3],[-108.25,-75.01],[-108.41,-83.57],[-109.28,-90.91],[-110.95,-96.47],[-113.21,-101.55],[-115.59,-105.83],[-117.78,-109.16],[-119.86,-112],[-122.02,-114.33],[-124.68,-116.49],[-128.58,-118.98],[-133.34,-121.39],[-138.23,-123.33],[-143.36,-124.97],[-150.79,-127.05],[-162.2,-129.6],[-173.54,-132.04],[-182.77,-134.51],[-188.46,-135.83],[-192.68,-137.27],[-194.61,-139.02],[-198.91,-141.45],[-203.76,-144.22],[-209.33,-149.11],[-216.34,-155.75],[-221.28,-161.67],[-224.54,-166.11],[-230.02,-172.3],[-241.05,-181.88],[-252.95,-187.52],[-269.66,-190.4],[-283.84,-189.66],[-298.76,-187.32],[-304.84,-182.17],[-302.38,-174.61],[-297.04,-163.77],[-284.55,-144.29],[-274.82,-136.92],[-274.37,-135.58],[-270.3,-132.94],[-258.71,-128.99],[-247.48,-126.05],[-233.2,-121.65],[-224.44,-115.55],[-217.12,-107.44],[-211.54,-93.69],[-210.09,-61.24],[-199.79,-33.97],[-158.11,-21.19],[-137.75,-1.15],[-136,9.62],[-128.43,14.84],[-106.69,1.03],[-90.61,-9.55],[-83.21,-14.08]],"v":[[-79,-18],[-90.59,-23.95],[-99.33,-31.69],[-105.16,-41.84],[-108,-55],[-108.35,-63.43],[-108.28,-72.11],[-108.32,-80.73],[-109,-89],[-110.35,-94.64],[-112.44,-99.9],[-114.8,-104.46],[-117,-108],[-119.17,-111.09],[-121.28,-113.57],[-123.75,-115.77],[-127,-118],[-131.75,-120.62],[-136.59,-122.7],[-141.63,-124.43],[-147,-126],[-158.4,-128.77],[-169.77,-131.21],[-181,-134],[-186.57,-135.37],[-192,-137],[-193.96,-138.43],[-196,-140],[-202.22,-143.27],[-207,-147],[-214.07,-153.54],[-220,-160],[-223.45,-164.65],[-227,-169],[-237.29,-178.83],[-249,-186],[-263.98,-189.62],[-281,-190],[-293.95,-188.24],[-304,-184],[-303.35,-177.15],[-300,-170],[-288.87,-150.44],[-275,-137],[-274.52,-136.03],[-274,-135],[-262.58,-130.22],[-251,-127],[-237.83,-123.2],[-227,-118],[-219.44,-110.22],[-214,-101],[-210.64,-71.94],[-206,-45],[-171.94,-25.57],[-139,-4],[-136.47,5.84],[-136,19],[-113.87,5.65],[-93,-8],[-85.64,-12.52]],"c":true}],"h":1},{"t":23,"s":[{"i":[[-79.75,-14.67],[-88.71,-23.21],[-99.24,-30.9],[-108.38,-55.68],[-109.32,-93.87],[-115.33,-106.47],[-117.43,-109.31],[-123.5,-115.77],[-134.32,-122.19],[-149.05,-127.32],[-164.88,-131.08],[-180.17,-134.41],[-194.62,-138.7],[-201.78,-142.68],[-205.11,-145.32],[-206.95,-146.39],[-208.59,-146.66],[-211.18,-149.17],[-214.06,-152.97],[-217.44,-156.49],[-221.04,-159.89],[-222.75,-162.27],[-223.54,-164.43],[-225.23,-166.05],[-227.5,-167.42],[-229.96,-170.69],[-232.81,-174.9],[-235.46,-177],[-238.28,-178.45],[-240.47,-180.43],[-242.26,-182.56],[-253.22,-187.77],[-274.93,-190.97],[-290.77,-188.96],[-303.39,-186.11],[-304.68,-180.66],[-301.1,-173.46],[-292.8,-156.43],[-279.23,-139.12],[-268.94,-133.43],[-254.58,-128.55],[-234.99,-123.64],[-225.66,-116.52],[-217.16,-107.93],[-213.21,-68.74],[-206.44,-45.46],[-201.26,-39.47],[-197.37,-36.25],[-195.51,-36.23],[-194.43,-34.23],[-190.42,-32.55],[-157.77,-23.68],[-145.28,-12.59],[-135.69,5.43],[-131.48,16.53],[-118.9,9.01],[-109.32,2.49],[-104.47,-0.06],[-101.24,-3.2],[-94.32,-6.47],[-90.3,-10.13]],"o":[[-84.09,-21.26],[-96.29,-28.03],[-107.72,-43.49],[-109.18,-80.87],[-114.61,-105.32],[-116.74,-108.46],[-120.59,-113.17],[-130.36,-120.28],[-143.61,-125.78],[-159.68,-129.97],[-174.87,-133.31],[-190.05,-137.11],[-200.47,-141.77],[-204.1,-144.46],[-206.4,-146.31],[-208.04,-146.57],[-210.15,-147.94],[-213.14,-151.68],[-216.17,-155.29],[-219.88,-158.79],[-222.48,-161.55],[-223.28,-163.71],[-224.48,-165.59],[-226.74,-166.96],[-229.06,-169.24],[-231.84,-173.52],[-234.57,-176.53],[-237.32,-177.96],[-239.84,-179.65],[-241.68,-181.88],[-247.26,-185.54],[-267.06,-190.49],[-285.83,-189.66],[-299.55,-187.19],[-305.13,-182.94],[-302.67,-175.92],[-296.68,-163.61],[-284.08,-144.18],[-270.35,-133.82],[-259.33,-129.94],[-242.86,-125.3],[-227,-118.78],[-219.49,-110.85],[-210.54,-89.76],[-209.53,-53],[-203.45,-42.34],[-197.68,-37.85],[-196.54,-35.69],[-194.64,-35.84],[-192.82,-33.36],[-174.49,-26.4],[-146.23,-13.42],[-138.07,-3.64],[-133.62,19.15],[-123.68,11.72],[-111.45,4.43],[-105.74,0.19],[-101.82,-1.75],[-97.65,-5.5],[-90.85,-8.76],[-85.01,-13.67]],"v":[[-78,-19],[-92.5,-25.62],[-102,-35],[-108.78,-68.27],[-114,-104],[-116.03,-107.47],[-118,-110],[-126.93,-118.03],[-139,-124],[-154.37,-128.64],[-169,-132],[-185.11,-135.76],[-199,-141],[-202.94,-143.57],[-206,-146],[-207.49,-146.48],[-209,-147],[-212.16,-150.43],[-215,-154],[-218.66,-157.64],[-222,-161],[-223.01,-162.99],[-224,-165],[-225.99,-166.51],[-228,-168],[-230.9,-172.11],[-234,-176],[-236.39,-177.48],[-239,-179],[-241.07,-181.16],[-243,-183],[-260.14,-189.13],[-283,-190],[-295.16,-188.08],[-304,-185],[-303.68,-178.29],[-300,-171],[-288.44,-150.3],[-274,-136],[-265,-132],[-249,-127],[-229,-120],[-224,-115],[-215,-102],[-210,-55],[-206,-45],[-198,-38],[-197,-36],[-195,-36],[-194,-34],[-189,-32],[-148,-15],[-144,-11],[-137,19],[-129,15],[-114,6],[-107,1],[-103,-1],[-100,-4],[-92,-8],[-89,-11]],"c":true}],"h":1},{"t":24,"s":[{"i":[[-83.86,-13.37],[-88.42,-23.96],[-99.08,-30.98],[-108.11,-48.5],[-109.33,-73.76],[-111.55,-93.9],[-116.83,-108.34],[-121.87,-114.38],[-126.77,-118.61],[-136.33,-123.95],[-148.38,-127.85],[-158.62,-130.15],[-167.27,-131.44],[-185.27,-135.7],[-204.66,-144.22],[-213.72,-152.29],[-220.15,-158.9],[-227.38,-167.67],[-236.58,-177.46],[-240.32,-179.51],[-240.81,-180.88],[-242.26,-181.69],[-244.31,-182.6],[-256.82,-188.11],[-278.74,-189.94],[-293.33,-188.49],[-303.16,-186.55],[-303.87,-176.27],[-295.69,-162.15],[-293.22,-157.59],[-290.84,-152.88],[-288.16,-149.94],[-285.83,-146.97],[-282.01,-142.72],[-277.75,-139.23],[-271.52,-135.04],[-264.85,-131.96],[-258.65,-129.92],[-253.58,-128.45],[-244.7,-126.2],[-232.57,-122.5],[-229.25,-119.48],[-226.6,-117.49],[-220.84,-112.38],[-216.15,-104.64],[-212.24,-81.09],[-209.85,-50.2],[-204.58,-44.08],[-204.34,-42.37],[-201.17,-39.66],[-195.74,-36.95],[-190.32,-34.06],[-185.03,-31.75],[-174.93,-28.39],[-162.63,-24.64],[-145.04,-14.48],[-136.55,7.86],[-126.28,13.24],[-110.91,4.2],[-104.32,-1.16],[-100.18,-3.23]],"o":[[-83.63,-21.97],[-96.15,-28.47],[-106.45,-41.11],[-109.55,-64.82],[-110.38,-88.23],[-114.77,-103.96],[-120.49,-112.82],[-125.02,-117.27],[-132.64,-122.27],[-144.2,-126.74],[-155.74,-129.68],[-164.39,-131.03],[-177.7,-133.59],[-198.75,-141.01],[-211.39,-150.08],[-218.1,-156.7],[-224.59,-163.94],[-233.38,-174.43],[-240.17,-179.07],[-240.64,-180.41],[-241.6,-181.39],[-243.61,-182.3],[-250.45,-186.14],[-270.96,-190.01],[-289.49,-188.72],[-300.16,-187.41],[-305.78,-181.7],[-298.83,-166.5],[-294.05,-159.4],[-291.61,-154.33],[-288.99,-150.95],[-286.57,-147.95],[-283.39,-144.1],[-279.19,-140.28],[-273.6,-136.31],[-267.15,-132.86],[-260.35,-130.44],[-255.26,-128.92],[-249.16,-127.2],[-236.4,-123.85],[-230.2,-120.23],[-227.45,-118.11],[-223.01,-114.56],[-217.4,-107.42],[-212.32,-92.49],[-211,-59.95],[-204.66,-44.64],[-204.42,-42.94],[-202.8,-40.68],[-197.64,-37.8],[-192.05,-34.93],[-186.8,-32.46],[-179.11,-29.57],[-166.69,-25.93],[-150.51,-19.15],[-138.06,-0.97],[-131.32,16.39],[-116.07,7.15],[-104.85,0.25],[-101.8,-2.77],[-91.23,-9.03]],"v":[[-77,-19],[-92.28,-26.21],[-102,-35],[-108.83,-56.66],[-110,-83],[-113.16,-98.93],[-119,-111],[-123.45,-115.83],[-129,-120],[-140.26,-125.34],[-153,-129],[-161.51,-130.59],[-170,-132],[-192.01,-138.36],[-209,-148],[-215.91,-154.49],[-222,-161],[-230.38,-171.05],[-240,-179],[-240.48,-179.96],[-241,-181],[-242.94,-181.99],[-245,-183],[-263.89,-189.06],[-287,-189],[-296.74,-187.95],[-304,-185],[-301.35,-171.39],[-295,-161],[-292.42,-155.96],[-290,-152],[-287.36,-148.94],[-285,-146],[-280.6,-141.5],[-276,-138],[-269.34,-133.95],[-262,-131],[-256.95,-129.42],[-252,-128],[-240.55,-125.02],[-231,-121],[-228.35,-118.79],[-226,-117],[-219.12,-109.9],[-215,-101],[-211.62,-70.52],[-205,-45],[-204.5,-43.51],[-204,-42],[-199.41,-38.73],[-194,-36],[-188.56,-33.26],[-183,-31],[-170.81,-27.16],[-159,-23],[-141.55,-7.72],[-136,20],[-121.17,10.2],[-106,1],[-103,-2],[-99,-4]],"c":true}],"h":1},{"t":25,"s":[{"i":[[-77.4,-16.4],[-86.97,-23.77],[-97.8,-30.32],[-108.79,-48.98],[-109.98,-77.16],[-112.77,-96.87],[-118.05,-109.62],[-122.18,-114.47],[-125.16,-116.63],[-128.58,-119.48],[-130.36,-121.62],[-137.26,-125.01],[-147.7,-128.11],[-158.45,-130.86],[-169.5,-133.24],[-180.44,-135.38],[-191.57,-137.66],[-197.62,-140.37],[-201.66,-143.22],[-204.6,-144.67],[-207.38,-145.58],[-208.36,-146.55],[-208.8,-147.81],[-209.92,-148.43],[-211.58,-148.66],[-214.83,-151.73],[-218.77,-156.61],[-227.55,-167.17],[-240.05,-179.77],[-245.32,-182.52],[-245.79,-183.88],[-256.37,-188.13],[-278.54,-190.7],[-293.24,-189.03],[-303.4,-186.12],[-304.59,-179.67],[-301.2,-172.52],[-296.54,-161.66],[-289.12,-150.68],[-282.68,-143.26],[-278.07,-139.39],[-269.63,-134.25],[-258.9,-130.12],[-249.23,-127.71],[-240.63,-126.05],[-234.99,-123.56],[-229.4,-120.38],[-228.36,-119.58],[-227.42,-119.33],[-218.3,-108.94],[-213.58,-86.86],[-212.46,-67.25],[-210.1,-51.91],[-190.04,-33.64],[-151.09,-21.74],[-139.62,-4.26],[-137.65,12.06],[-127.24,14.27],[-111.98,4.19],[-99.06,-4.12],[-87.67,-11.58]],"o":[[-82.57,-22.11],[-94.58,-27.88],[-106.79,-40.65],[-110.38,-67.23],[-111.5,-91.81],[-116.05,-105.77],[-121.35,-113.66],[-124.09,-115.96],[-127.9,-118.67],[-129.81,-120.96],[-133.91,-123.7],[-144.15,-127.21],[-154.7,-130],[-165.85,-132.49],[-176.65,-134.8],[-187.9,-136.81],[-196.29,-139.51],[-200.31,-142.22],[-203.65,-144.38],[-206.46,-145.27],[-208.21,-146.14],[-208.65,-147.39],[-209.38,-148.36],[-211.02,-148.58],[-213.44,-150.18],[-217.49,-154.95],[-223.78,-162.29],[-235.69,-175.91],[-245.18,-182.08],[-245.63,-183.42],[-250.1,-186.28],[-270.59,-190.34],[-289.04,-189.71],[-300.42,-187.23],[-305.24,-182.66],[-302.57,-174.6],[-298.73,-166.07],[-291.73,-153.96],[-284.15,-144.82],[-279.64,-140.54],[-272.93,-135.94],[-262.61,-131.34],[-252.16,-128.18],[-243.46,-126.65],[-237.04,-124.61],[-231.17,-121.44],[-228.65,-119.66],[-227.75,-119.41],[-221.51,-114.76],[-214.34,-94.99],[-212.66,-72.8],[-211.18,-56.81],[-202.5,-37.77],[-164.34,-25.63],[-141.3,-8.29],[-137.8,5.91],[-132.5,17.43],[-116.98,7.65],[-102.97,-1.58],[-91.41,-9.12],[-81.86,-15.41]],"v":[[-77,-20],[-90.78,-25.83],[-101,-34],[-109.58,-58.11],[-111,-87],[-114.41,-101.32],[-120,-112],[-123.14,-115.22],[-127,-118],[-129.19,-120.22],[-131,-122],[-140.71,-126.11],[-151,-129],[-162.15,-131.68],[-173,-134],[-184.17,-136.09],[-195,-139],[-198.97,-141.3],[-203,-144],[-205.53,-144.97],[-208,-146],[-208.51,-146.97],[-209,-148],[-210.47,-148.51],[-212,-149],[-216.16,-153.34],[-220,-158],[-231.62,-171.54],[-245,-182],[-245.47,-182.97],[-246,-184],[-263.48,-189.24],[-286,-190],[-296.83,-188.13],[-304,-185],[-303.58,-177.14],[-301,-172],[-294.14,-157.81],[-286,-147],[-281.16,-141.9],[-276,-138],[-266.12,-132.8],[-255,-129],[-246.34,-127.18],[-238,-125],[-233.08,-122.5],[-229,-120],[-228.06,-119.49],[-227,-119],[-216.32,-101.97],[-213,-78],[-211.82,-62.03],[-208,-48],[-177.19,-29.63],[-144,-12],[-138.71,0.83],[-138,20],[-122.11,10.96],[-107,1],[-95.23,-6.62],[-84,-14]],"c":true}],"h":1},{"t":26,"s":[{"i":[[-80.23,-15.55],[-82.32,-22.77],[-89.74,-25.6],[-97.5,-30.79],[-104.45,-38.13],[-110.83,-58.72],[-111.53,-90.4],[-115.44,-103.04],[-118.31,-108.81],[-119.76,-111.48],[-120.82,-113.77],[-122.63,-115.68],[-126.76,-119.1],[-133.36,-123.48],[-141.67,-126.92],[-149.83,-129.59],[-156.83,-131.62],[-174.79,-134.59],[-197.23,-140.01],[-204.02,-143.85],[-205.42,-145.62],[-207.82,-146.83],[-210.39,-147.52],[-217.3,-153.93],[-225.62,-164.3],[-241.91,-181.28],[-272.23,-191.63],[-295.57,-188.79],[-303.39,-184.88],[-303.33,-175.05],[-296.67,-162.18],[-291.63,-153.85],[-283.32,-143.43],[-279.37,-140.86],[-277.64,-139.4],[-276.23,-138.33],[-275.35,-137.2],[-259.91,-131.13],[-235.69,-125.09],[-224.36,-116.25],[-218.25,-107.33],[-213.82,-87.32],[-212.56,-59.13],[-209.49,-51.42],[-208.13,-50.26],[-207.62,-48.63],[-207.42,-46.59],[-200.08,-39.55],[-184.5,-33.01],[-179.19,-31.5],[-177.27,-30.08],[-169.11,-27.85],[-156.85,-23.78],[-154.37,-21.51],[-153.59,-21.35],[-142.73,-12.14],[-138.53,9.97],[-128.05,14.73],[-112.2,4.33],[-101.65,-2.36],[-93.7,-7.27]],"o":[[-79.45,-21.72],[-87.46,-24.71],[-94.78,-28.72],[-102.34,-35.49],[-110.07,-48.51],[-111.56,-79.66],[-114.54,-100.88],[-117.33,-107],[-119.35,-110.6],[-120.49,-113.07],[-121.5,-114.63],[-125.26,-117.91],[-130.78,-122.02],[-138.8,-125.93],[-147.42,-128.78],[-154.54,-131.01],[-166.68,-133.34],[-190.07,-137.93],[-203.56,-143.29],[-204.95,-145.02],[-206.87,-146.57],[-209.58,-147.31],[-214.24,-150.53],[-222.99,-160.81],[-234.8,-174.71],[-260.63,-189.74],[-291.88,-189.6],[-301.33,-186.43],[-304.99,-179.96],[-299.17,-166.16],[-294.22,-157.89],[-286.18,-146.62],[-280.05,-141.41],[-278.17,-139.85],[-276.56,-138.73],[-275.62,-137.57],[-268.32,-133.08],[-243.6,-127.13],[-226.98,-118.83],[-219.99,-110.5],[-214.29,-96.76],[-212.96,-68.51],[-209.93,-51.79],[-208.59,-50.65],[-207.66,-49.33],[-207.49,-47.26],[-204.58,-42.55],[-190.04,-34.78],[-179.81,-31.96],[-177.92,-30.56],[-173.69,-28.96],[-160.7,-25.26],[-154.57,-21.59],[-153.87,-21.39],[-146.47,-17.12],[-138.76,1.41],[-133.45,18.06],[-117.43,7.86],[-104.3,-0.73],[-96.35,-5.63],[-85.92,-12.26]],"v":[[-76,-20],[-84.89,-23.74],[-92,-27],[-99.92,-33.14],[-106,-41],[-111.2,-69.19],[-114,-99],[-116.39,-105.02],[-119,-110],[-120.12,-112.27],[-121,-114],[-123.94,-116.79],[-128,-120],[-136.08,-124.71],[-145,-128],[-152.18,-130.3],[-159,-132],[-182.43,-136.26],[-203,-143],[-204.49,-144.43],[-206,-146],[-208.7,-147.07],[-211,-148],[-220.14,-157.37],[-228,-167],[-251.27,-185.51],[-288,-190],[-298.45,-187.61],[-304,-183],[-301.25,-170.61],[-296,-161],[-288.9,-150.24],[-281,-142],[-278.77,-140.36],[-277,-139],[-275.93,-137.95],[-275,-137],[-251.76,-129.13],[-230,-121],[-222.17,-113.37],[-217,-104],[-213.39,-77.92],[-210,-52],[-209.04,-51.04],[-208,-50],[-207.55,-47.94],[-207,-46],[-195.06,-37.17],[-180,-32],[-178.56,-31.03],[-177,-30],[-164.91,-26.55],[-155,-22],[-154.12,-21.45],[-153,-21],[-140.75,-5.36],[-139,21],[-122.74,11.3],[-107,1],[-99,-3.99],[-91,-9]],"c":true}],"h":1},{"t":27,"s":[{"i":[[-76.06,-17.14],[-83.36,-23.67],[-94.84,-29.23],[-97.95,-31.65],[-99.58,-32.63],[-109.4,-47.27],[-111.65,-77.01],[-113.94,-95.4],[-116.5,-106.11],[-118.74,-109.82],[-120.62,-111.43],[-123.48,-115.51],[-126.97,-118.54],[-131.11,-121.71],[-134.75,-124.87],[-139.92,-127.06],[-148.29,-129.24],[-171.92,-134.67],[-202.14,-142.28],[-210.63,-148.14],[-212.71,-149.72],[-215.68,-152.31],[-219.77,-155.64],[-221.78,-158.26],[-222.46,-160.32],[-224.22,-162.06],[-226.5,-163.42],[-231.39,-169.44],[-238.32,-176.79],[-241.32,-178.51],[-241.83,-179.87],[-247.1,-183.42],[-255.02,-187.11],[-270.62,-190.17],[-292.76,-189.37],[-300.42,-186.89],[-303.36,-184.56],[-304.49,-179.36],[-302.14,-172.49],[-292.11,-153.41],[-272.85,-136.09],[-250.02,-129.08],[-230.59,-122.4],[-219.42,-109.09],[-214.5,-91.04],[-214.54,-63.74],[-205.25,-44.7],[-196.3,-38.98],[-190.08,-35.41],[-156.33,-26.54],[-137.26,4.02],[-137.52,19.85],[-132.5,17.91],[-129.15,14.75],[-124.29,12.83],[-121.08,9.7],[-116.37,7.86],[-114.45,5.34],[-111.71,4.45],[-94.23,-7.68],[-84.07,-14.3]],"o":[[-78.94,-22.05],[-91.31,-27.26],[-97.41,-31.33],[-99.03,-32.3],[-106.83,-39.02],[-111.81,-66.27],[-113.44,-91.6],[-115.47,-102.65],[-118.18,-109.35],[-119.96,-110.86],[-122.5,-114.24],[-125.72,-117.66],[-129.73,-120.53],[-133.62,-123.88],[-137.28,-126.19],[-145.43,-128.58],[-160.85,-132.78],[-192.57,-139.42],[-209.77,-147.53],[-212.09,-149.24],[-214.3,-151.24],[-218.42,-154.51],[-221.55,-157.6],[-222.24,-159.62],[-223.47,-161.6],[-225.73,-162.97],[-229.23,-166.55],[-235.93,-174.57],[-241.15,-178.07],[-241.65,-179.41],[-244.59,-181.86],[-252.31,-186.04],[-262.99,-189.48],[-285.51,-190.11],[-298.99,-187.36],[-302.6,-185.49],[-304.67,-181.37],[-303.23,-174.92],[-296.93,-161.11],[-280.07,-140.9],[-257.23,-130.63],[-236.7,-124.97],[-222.17,-114.33],[-215.59,-97.45],[-213.15,-74.83],[-209.53,-49.97],[-199.23,-40.15],[-191.21,-36.63],[-173.77,-29.19],[-140.12,-8.23],[-137.65,22.32],[-134.29,18.05],[-129.66,16.18],[-126.48,13],[-121.96,11.33],[-118.37,7.94],[-114.57,6.73],[-113.21,4.41],[-103.02,-1.08],[-85.12,-13.12],[-80.36,-16.71]],"v":[[-75,-21],[-87.33,-25.46],[-97,-31],[-98.49,-31.97],[-100,-33],[-110.61,-56.77],[-113,-88],[-114.7,-99.03],[-118,-109],[-119.35,-110.34],[-121,-112],[-124.6,-116.58],[-129,-120],[-132.36,-122.8],[-135,-125],[-142.68,-127.82],[-151,-130],[-182.24,-137.04],[-209,-147],[-211.36,-148.69],[-213,-150],[-217.05,-153.41],[-221,-157],[-222.01,-158.94],[-223,-161],[-224.98,-162.51],[-227,-164],[-233.66,-172],[-241,-178],[-241.49,-178.96],[-242,-180],[-249.71,-184.73],[-258,-188],[-278.06,-190.14],[-297,-188],[-301.51,-186.19],[-304,-183],[-303.86,-177.14],[-301,-170],[-286.09,-147.16],[-264,-133],[-243.36,-127.02],[-226,-118],[-217.51,-103.27],[-214,-85],[-211,-54],[-203,-43],[-192,-37],[-189,-35],[-147,-16],[-140,21],[-136,19],[-131,17],[-128,14],[-123,12],[-120,9],[-115,7],[-114,5],[-111,4],[-87,-12],[-83,-15]],"c":true}],"h":1},{"t":28,"s":[{"i":[[-77.67,-17.85],[-82.29,-24.19],[-91.67,-27.61],[-95.24,-30.09],[-97.26,-32.45],[-100.58,-34.8],[-103.34,-37.01],[-105.51,-40.36],[-107.46,-43.85],[-111.53,-56.44],[-112.45,-76.46],[-114.3,-94.3],[-118.32,-106.99],[-125.72,-118.16],[-137.3,-126.1],[-166.19,-134.14],[-203.72,-142.22],[-211.92,-149.43],[-213.59,-149.66],[-223.45,-159.52],[-236,-174.9],[-241.62,-179.36],[-242.85,-179.9],[-244.86,-181.17],[-247.24,-182.53],[-248.63,-183.6],[-249.65,-184.82],[-267.57,-190.16],[-301.65,-188.8],[-303.38,-174.29],[-295.2,-158.92],[-289.61,-150.76],[-280.79,-142.25],[-277.68,-140.49],[-277.19,-139.12],[-272.61,-136.91],[-265.39,-134.64],[-251.97,-129.82],[-234.43,-124.2],[-230.08,-120.57],[-228.41,-120.34],[-225.38,-117.38],[-223.63,-114.06],[-221.02,-109.64],[-218.58,-104.72],[-216.66,-69.18],[-206.5,-47.38],[-188.24,-35.06],[-153.15,-24.83],[-140.72,-6.01],[-141.02,20.98],[-133.47,18.28],[-126.64,13.05],[-121.49,10.95],[-119.45,8.34],[-116.7,7.43],[-108.18,2.03],[-103.98,-0.33],[-95.53,-6.44],[-91.75,-9.52],[-87.33,-11.19]],"o":[[-78.45,-22.89],[-88.89,-26.55],[-94.61,-29.37],[-96.57,-31.63],[-99.4,-34.04],[-102.55,-36.28],[-104.78,-39.18],[-106.85,-42.69],[-110.55,-50.45],[-112.48,-69.44],[-113.39,-89.31],[-116.77,-103.15],[-122.57,-114.61],[-133.08,-123.91],[-152.58,-132.27],[-191.76,-139.11],[-211.38,-149.35],[-213.03,-149.58],[-219.21,-154.32],[-231.85,-169.81],[-241.2,-179.16],[-242.45,-179.73],[-243.99,-180.66],[-246.48,-182.1],[-248.3,-183.19],[-249.3,-184.41],[-255.24,-187.76],[-290.77,-190.68],[-305.28,-179.83],[-298.34,-163.84],[-292.22,-154.13],[-283.89,-144.82],[-277.83,-140.93],[-277.36,-139.58],[-275.17,-137.84],[-267.73,-135.31],[-258.51,-131.47],[-239.94,-126.18],[-230.62,-120.65],[-228.97,-120.42],[-226.32,-118.6],[-224.04,-115.11],[-221.98,-111.28],[-219.32,-106.36],[-212.82,-87.52],[-209.96,-50.02],[-197.35,-38.66],[-165.69,-27.6],[-143.83,-12.02],[-139.52,2.36],[-139.4,23.17],[-129.45,15.9],[-123.31,10.91],[-119.57,9.72],[-118.23,7.42],[-112.21,4.65],[-105.18,-0.76],[-99.65,-3.27],[-92.06,-8.58],[-89.61,-10.9],[-81.66,-14.64]],"v":[[-74,-21],[-85.59,-25.37],[-94,-29],[-95.9,-30.86],[-98,-33],[-101.56,-35.54],[-104,-38],[-106.18,-41.52],[-108,-45],[-112,-62.94],[-113,-84],[-115.53,-98.72],[-120,-110],[-129.4,-121.04],[-142,-128],[-178.97,-136.62],[-211,-149],[-212.47,-149.51],[-214,-150],[-227.65,-164.66],[-241,-179],[-242.04,-179.55],[-243,-180],[-245.67,-181.64],[-248,-183],[-248.96,-184],[-250,-185],[-279.17,-190.42],[-304,-183],[-300.86,-169.07],[-294,-157],[-286.75,-147.79],[-278,-141],[-277.52,-140.03],[-277,-139],[-270.17,-136.11],[-264,-134],[-245.96,-128],[-231,-121],[-229.53,-120.49],[-228,-120],[-224.71,-116.25],[-223,-113],[-220.17,-108],[-218,-103],[-211,-53],[-204,-45],[-179,-32],[-146,-15],[-140,-1],[-141,21],[-133,18],[-125,12],[-120,10],[-119,8],[-116,7],[-106,0],[-103,-1],[-93,-8],[-91,-10],[-86,-12]],"c":true}],"h":1},{"t":29,"s":[{"i":[[-73.39,-18.62],[-81.3,-24.58],[-90.55,-27.64],[-94.31,-30.11],[-96.27,-32.47],[-98,-33.43],[-99.6,-33.7],[-103.53,-37.27],[-108.01,-43.82],[-113.3,-62.44],[-114.58,-90.04],[-116.57,-100.56],[-117.42,-105.65],[-120.18,-110.66],[-124.25,-115.06],[-125.84,-117.49],[-126.59,-119.61],[-128.12,-120.69],[-130.42,-121.59],[-132.47,-123.14],[-134.18,-124.54],[-137.62,-126.28],[-141.06,-127.57],[-142.77,-128.29],[-144.3,-128.74],[-159.48,-133.49],[-181.73,-138.13],[-196.63,-141.86],[-207.12,-145.25],[-210.35,-147.54],[-210.78,-148.84],[-211.99,-149.43],[-213.61,-149.69],[-214.37,-150.58],[-214.78,-151.79],[-215.92,-152.43],[-217.6,-152.66],[-220.96,-155.85],[-225.43,-161.07],[-227.28,-163.16],[-242.65,-180.43],[-255.54,-187.5],[-277,-190.34],[-301.59,-188.88],[-300.7,-169.33],[-285.79,-145.06],[-278.42,-140.23],[-252.22,-131.39],[-234.32,-123.47],[-227.09,-119.17],[-224.57,-114.79],[-216.04,-95.27],[-214.64,-61.01],[-209.34,-51.55],[-193.68,-37.78],[-148.79,-24.31],[-140.45,8.45],[-118,8.04],[-92.11,-9.27],[-82.27,-14.15],[-80.47,-16.64]],"o":[[-77.77,-23.51],[-87.69,-26.64],[-93.68,-29.38],[-95.61,-31.66],[-97.45,-33.33],[-99.08,-33.61],[-101.77,-35.35],[-106.65,-41.5],[-112.26,-53.17],[-114.46,-80.87],[-116.35,-98.74],[-117.1,-104.02],[-118.8,-108.88],[-122.9,-113.75],[-125.55,-116.68],[-126.36,-118.95],[-127.42,-120.39],[-129.62,-121.29],[-131.89,-122.62],[-133.62,-124.1],[-136.34,-125.75],[-139.98,-127.19],[-142.37,-128.17],[-143.74,-128.57],[-152.12,-131.67],[-174.29,-136.72],[-192.82,-140.98],[-203.78,-143.99],[-210.21,-147.13],[-210.64,-148.4],[-211.44,-149.33],[-213.08,-149.61],[-214.23,-150.18],[-214.64,-151.38],[-215.37,-152.35],[-217.04,-152.58],[-219.24,-154.06],[-224.05,-159.35],[-226.66,-163.07],[-235.15,-172.4],[-253.74,-185.85],[-263.73,-190.3],[-291.66,-189.34],[-305.97,-178.18],[-294.24,-156.66],[-278.65,-141.84],[-266.52,-133.6],[-235.77,-124.96],[-229.03,-119.54],[-225.33,-117.28],[-218.16,-105.86],[-214.07,-72.03],[-210.78,-52.52],[-203.44,-42.06],[-165.77,-28.74],[-139.6,-1.6],[-129.02,16.08],[-99.74,-3.65],[-84.59,-13.86],[-80.55,-15.3],[-77.63,-18.78]],"v":[[-74,-22],[-84.49,-25.61],[-93,-29],[-94.96,-30.89],[-97,-33],[-98.54,-33.52],[-100,-34],[-105.09,-39.38],[-109,-46],[-113.88,-71.66],[-116,-97],[-116.83,-102.29],[-118,-107],[-121.54,-112.21],[-125,-116],[-126.1,-118.22],[-127,-120],[-128.87,-120.99],[-131,-122],[-133.05,-123.62],[-135,-125],[-138.8,-126.73],[-142,-128],[-143.26,-128.43],[-145,-129],[-166.88,-135.11],[-189,-140],[-200.21,-142.93],[-210,-147],[-210.49,-147.97],[-211,-149],[-212.54,-149.52],[-214,-150],[-214.5,-150.98],[-215,-152],[-216.48,-152.5],[-218,-153],[-222.5,-157.6],[-226,-162],[-228,-164],[-252,-185],[-257,-188],[-282,-190],[-304,-183],[-299,-166],[-279,-142],[-278,-140],[-241,-127],[-231,-121],[-226,-118],[-224,-114],[-215,-83],[-211,-53],[-209,-51],[-182,-34],[-143,-10],[-141,22],[-107,1],[-86,-13],[-81,-15],[-80,-17]],"c":true}],"h":1},{"t":30,"s":[{"i":[[-77.69,-16.84],[-78.47,-24.31],[-85.14,-26.17],[-90.6,-28.7],[-97.32,-32.35],[-103.18,-37.92],[-109.7,-46.41],[-114.51,-70.55],[-116.25,-103.45],[-122.58,-113.93],[-125.6,-116.46],[-126.41,-118.03],[-126.6,-119.6],[-127.59,-120.38],[-128.76,-120.85],[-130.63,-122.14],[-132.36,-123.6],[-133.77,-124.67],[-134.65,-125.8],[-144.99,-130.5],[-163.57,-134.77],[-186.3,-139.25],[-208.17,-146.46],[-220.78,-156.35],[-230.78,-166.62],[-236.88,-172.86],[-241.42,-176.73],[-246.43,-181.03],[-251.23,-185.15],[-262.02,-189.07],[-278.11,-191.29],[-290.31,-190.15],[-302.72,-186.13],[-303.73,-175.34],[-297,-162.66],[-291.07,-153.37],[-282.55,-143.53],[-272.67,-138.21],[-261.03,-134.24],[-250.86,-131.17],[-241.39,-128.08],[-235.5,-125.04],[-232.02,-121.88],[-229.46,-120.07],[-227.34,-119.37],[-226.58,-118.11],[-226.2,-116.29],[-225.76,-115.75],[-225.06,-115.07],[-224.3,-114.04],[-223.41,-112.42],[-222.51,-111.37],[-222.35,-110.59],[-216.76,-90.37],[-213.59,-56.01],[-207.68,-47.74],[-202.74,-44.12],[-191.22,-37.8],[-157.14,-28.19],[-139.24,6.49],[-106.47,0.53]],"o":[[-75.9,-23.48],[-83.09,-25.66],[-88.19,-27.53],[-95.16,-31.11],[-100.58,-35.47],[-107.74,-43.4],[-114.38,-59.33],[-115.44,-92.61],[-121.53,-112.95],[-124.61,-115.69],[-126.36,-117.48],[-126.53,-119.09],[-127.21,-120.2],[-128.36,-120.71],[-129.95,-121.59],[-131.83,-123.15],[-133.44,-124.27],[-134.37,-125.43],[-139.46,-128.62],[-157.05,-133.58],[-177.96,-137.52],[-201.4,-143.72],[-217.14,-153.04],[-227.6,-163.14],[-235.42,-171.49],[-239.88,-175.47],[-244.81,-179.45],[-249.64,-183.87],[-256.47,-187.67],[-272.84,-190.87],[-285.2,-190.58],[-299.07,-187.92],[-305.23,-180.01],[-299.62,-166.66],[-293.8,-157.36],[-285.44,-146.46],[-276.4,-139.84],[-264.98,-135.41],[-254.17,-132.13],[-244.47,-129.14],[-236.99,-126.1],[-233.02,-122.93],[-230.29,-120.39],[-227.98,-119.56],[-226.73,-118.71],[-226.32,-116.9],[-225.98,-115.97],[-225.3,-115.3],[-224.6,-114.58],[-223.71,-112.96],[-222.59,-111.57],[-222.39,-110.87],[-217.46,-102.36],[-214.82,-67.19],[-207.33,-49.28],[-206.02,-45.93],[-196.2,-39.92],[-171.41,-30.98],[-141.41,-10.42],[-123.96,12.69],[-84.19,-13.72]],"v":[[-73,-22],[-80.78,-24.99],[-87,-27],[-92.88,-29.91],[-98,-33],[-105.46,-40.66],[-111,-50],[-114.97,-81.58],[-121,-112],[-123.59,-114.81],[-126,-117],[-126.47,-118.56],[-127,-120],[-127.98,-120.54],[-129,-121],[-131.23,-122.64],[-133,-124],[-134.07,-125.05],[-135,-126],[-151.02,-132.04],[-170,-136],[-193.85,-141.49],[-213,-150],[-224.19,-159.74],[-234,-170],[-238.38,-174.17],[-243,-178],[-248.03,-182.45],[-253,-186],[-267.43,-189.97],[-281,-191],[-294.69,-189.04],[-304,-183],[-301.67,-171],[-296,-161],[-288.26,-149.92],[-280,-142],[-268.83,-136.81],[-257,-133],[-247.67,-130.15],[-239,-127],[-234.26,-123.98],[-231,-121],[-228.72,-119.82],[-227,-119],[-226.45,-117.5],[-226,-116],[-225.53,-115.53],[-225,-115],[-224,-113.5],[-223,-112],[-222.45,-111.12],[-222,-110],[-215.79,-78.78],[-208,-50],[-207,-47],[-201,-43],[-186,-36],[-149,-19],[-142,23],[-90,-10]],"c":true}],"h":1},{"t":31,"s":[{"i":[[-71.75,-20.84],[-83.15,-26.54],[-95.08,-31.81],[-101.14,-36.33],[-104.82,-39.57],[-114.05,-62.3],[-116.59,-103.22],[-123.35,-114.49],[-126.74,-117.65],[-127.41,-119.03],[-127.59,-120.6],[-128.59,-121.38],[-129.76,-121.85],[-131.63,-123.14],[-133.36,-124.6],[-134.77,-125.67],[-135.65,-126.8],[-160.81,-135.2],[-203.28,-142.47],[-214.6,-150.82],[-218.42,-153.45],[-219.63,-154.4],[-220.64,-154.7],[-228.78,-162.88],[-238.49,-175.04],[-242.94,-178.43],[-244.65,-178.73],[-245.64,-179.61],[-246.6,-180.7],[-256.65,-186.6],[-275.86,-191.25],[-291.55,-190.23],[-302.88,-185.84],[-304.44,-175.97],[-298.68,-165.81],[-295.42,-160.04],[-293.04,-155.39],[-288.09,-149.33],[-282.19,-144.54],[-271.24,-138.08],[-246.83,-130.46],[-235.47,-125.01],[-230.18,-121.18],[-217.39,-96.42],[-212.57,-51.52],[-159.97,-34.46],[-140.33,5.65],[-136.82,19.77],[-130.63,16.99],[-126.41,12.91],[-121.29,10.82],[-119.45,8.34],[-116.7,7.44],[-109.95,2.89],[-104.48,-1.1],[-99.39,-3.1],[-97.46,-5.66],[-94.73,-6.5],[-89.2,-11.1],[-85.7,-12.56],[-78.67,-17.12]],"o":[[-78.11,-24.88],[-91.63,-30],[-99.73,-35.3],[-103.68,-38.47],[-112.75,-49.19],[-115.97,-89.31],[-122.23,-113.41],[-125.6,-116.61],[-127.36,-118.48],[-127.52,-120.09],[-128.21,-121.21],[-129.36,-121.71],[-130.95,-122.59],[-132.83,-124.15],[-134.44,-125.27],[-135.37,-126.43],[-146.17,-132.96],[-189.36,-139.96],[-213.14,-149.85],[-217.24,-152.62],[-219.31,-154.3],[-220.3,-154.6],[-225.28,-158.61],[-235.38,-171.09],[-242.37,-178.31],[-244.08,-178.64],[-245.34,-179.26],[-246.27,-180.33],[-250.97,-183.97],[-269.09,-190.24],[-286.6,-190.81],[-299.69,-187.75],[-305.35,-179.57],[-301.11,-169.09],[-296.16,-161.59],[-293.86,-156.94],[-289.99,-151.3],[-284.18,-145.94],[-275.04,-139.51],[-257.43,-133.48],[-236.7,-126.19],[-231.69,-121.93],[-219.24,-110.22],[-214.79,-63.82],[-189.34,-33.85],[-141.86,-9.57],[-139.03,23.12],[-132.62,17.14],[-127.52,15.1],[-123.62,11.11],[-119.57,9.72],[-118.22,7.42],[-112.95,5.1],[-105.56,0.08],[-101.67,-2.81],[-97.56,-4.28],[-96.19,-6.61],[-91.82,-8.47],[-87.23,-12.58],[-81.54,-15.15],[-74.69,-19.92]],"v":[[-72,-23],[-87.39,-28.27],[-98,-34],[-102.41,-37.4],[-106,-41],[-115.01,-75.81],[-122,-113],[-124.47,-115.55],[-127,-118],[-127.46,-119.56],[-128,-121],[-128.98,-121.54],[-130,-122],[-132.23,-123.64],[-134,-125],[-135.07,-126.05],[-136,-127],[-175.09,-137.58],[-212,-149],[-215.92,-151.72],[-219,-154],[-219.97,-154.5],[-221,-155],[-232.08,-166.99],[-242,-178],[-243.51,-178.53],[-245,-179],[-245.96,-179.97],[-247,-181],[-262.87,-188.42],[-282,-191],[-295.62,-188.99],[-304,-183],[-302.77,-172.53],[-297,-163],[-294.64,-158.49],[-292,-154],[-286.14,-147.63],[-280,-143],[-265,-136],[-241,-128],[-233,-123],[-229,-120],[-216,-79],[-204,-45],[-148,-18],[-143,23],[-134,18],[-129,16],[-125,12],[-120,10],[-119,8],[-116,7],[-107,1],[-103,-2],[-98,-4],[-97,-6],[-94,-7],[-88,-12],[-85,-13],[-76,-19]],"c":true}],"h":1},{"t":32,"s":[{"i":[[-82.37,-14.14],[-87.47,-28.77],[-105.85,-39.49],[-113.87,-57.09],[-115.46,-76.14],[-116.89,-92.92],[-119.69,-105.73],[-122.91,-113.24],[-126.01,-117.97],[-127.36,-119.62],[-127.76,-120.76],[-128.9,-121.47],[-130.52,-121.67],[-131.7,-122.89],[-132.58,-124.7],[-134.73,-125.93],[-137.36,-126.71],[-138.32,-127.52],[-138.79,-128.88],[-141.52,-130.14],[-145.81,-131.59],[-156.16,-134.72],[-169.15,-137.11],[-180.18,-139.23],[-189.2,-141.34],[-201.52,-144.58],[-212.7,-149.72],[-226.39,-160.66],[-240.12,-175.1],[-246,-179.7],[-247.51,-180.61],[-248.97,-181.96],[-250.61,-183.76],[-260.34,-188.08],[-278.49,-191.2],[-292.32,-190.13],[-302.95,-185.68],[-304.62,-178.85],[-302.45,-174.27],[-300.74,-169.3],[-298.83,-164.43],[-292.5,-154.52],[-283.28,-145.2],[-269.19,-137.62],[-250.43,-132.15],[-238.8,-127.15],[-232.02,-122.03],[-223.95,-112.88],[-218.87,-99.74],[-216.9,-82],[-215.53,-64.55],[-212.85,-56.99],[-210.4,-51.55],[-207.23,-48.15],[-201.86,-45.09],[-178.87,-35.4],[-163.61,-30.8],[-161.36,-28.27],[-158.7,-27.43],[-139.22,-0.98],[-119.06,8.72]],"o":[[-79.8,-26.53],[-100.5,-35.25],[-112.64,-51.77],[-115.28,-69.28],[-116.29,-88.31],[-118.59,-101.63],[-121.9,-111.25],[-124.96,-116.59],[-127.23,-119.24],[-127.63,-120.38],[-128.38,-121.39],[-129.97,-121.61],[-131.42,-122.29],[-132.28,-124.09],[-133.8,-125.57],[-136.51,-126.5],[-138.18,-127.08],[-138.62,-128.43],[-140.12,-129.6],[-144.37,-131.14],[-151.83,-133.66],[-164.82,-136.44],[-177.08,-138.56],[-186.24,-140.62],[-197.17,-143.22],[-209.29,-147.83],[-221.58,-155.86],[-235.66,-170.28],[-245.49,-179.39],[-247.01,-180.31],[-248.41,-181.33],[-250.06,-183.17],[-254.59,-186.23],[-272.29,-190.57],[-287.59,-190.79],[-299.99,-187.57],[-304.89,-180.72],[-303.39,-175.63],[-301.32,-171.08],[-299.49,-165.98],[-295.37,-158.43],[-286.46,-147.91],[-275.22,-139.8],[-256.79,-133.79],[-241.54,-128.63],[-234.04,-123.84],[-226.52,-116.51],[-220.13,-104.5],[-217.13,-88.23],[-216.1,-70.16],[-213.65,-58.97],[-211.23,-53.28],[-208.8,-49.36],[-203.76,-46.02],[-190.84,-38.63],[-167.05,-31.33],[-161.66,-29.83],[-160.23,-27.42],[-142.82,-17.55],[-131.01,17.31],[-94.75,-6.84]],"v":[[-71,-23],[-93.98,-32.01],[-110,-47],[-114.58,-63.19],[-116,-84],[-117.74,-97.28],[-121,-109],[-123.93,-114.92],[-127,-119],[-127.49,-120],[-128,-121],[-129.43,-121.54],[-131,-122],[-131.99,-123.49],[-133,-125],[-135.62,-126.21],[-138,-127],[-138.47,-127.97],[-139,-129],[-142.94,-130.64],[-147,-132],[-160.49,-135.58],[-174,-138],[-183.21,-139.93],[-192,-142],[-205.4,-146.2],[-216,-152],[-231.02,-165.47],[-245,-179],[-246.5,-180],[-248,-181],[-249.51,-182.56],[-251,-184],[-266.31,-189.32],[-283,-191],[-296.16,-188.85],[-304,-183],[-304.01,-177.24],[-302,-173],[-300.11,-167.64],[-298,-163],[-289.48,-151.22],[-280,-143],[-262.99,-135.71],[-245,-130],[-236.42,-125.5],[-230,-120],[-222.04,-108.69],[-218,-94],[-216.5,-76.08],[-214,-60],[-212.04,-55.14],[-210,-51],[-205.5,-47.09],[-200,-44],[-169,-32],[-162,-30],[-161,-28],[-158,-27],[-144,24],[-107,1]],"c":true}],"h":1},{"t":33,"s":[{"i":[[-71.52,-21.78],[-79.27,-26.78],[-90.97,-31.23],[-101.19,-36.87],[-109.16,-44.6],[-114.49,-56.74],[-116.48,-72.3],[-117.26,-88.82],[-119.32,-104.48],[-122.07,-111.43],[-124.62,-115.63],[-127.58,-119.62],[-130.32,-122.55],[-134.41,-125.26],[-139.51,-128.4],[-144.97,-131.19],[-158.53,-135.78],[-176.02,-138.96],[-186.09,-140.63],[-192.1,-141.55],[-201.22,-144.01],[-212.54,-148.51],[-215.6,-150.54],[-216.68,-151.76],[-228.66,-162.4],[-244.85,-178.97],[-255.58,-185.82],[-262.32,-188.13],[-280.65,-191.14],[-302.23,-187.45],[-304.1,-175.82],[-298.31,-164.18],[-293.32,-156.07],[-287.1,-148.39],[-279.92,-143.6],[-272.02,-139.14],[-256.81,-134.11],[-239.07,-128.05],[-229,-119.6],[-222.11,-109.27],[-218.08,-87.47],[-215.09,-58.47],[-209.58,-52.07],[-209.34,-50.37],[-207.51,-48.79],[-203.99,-46.66],[-190.69,-39.96],[-170.09,-33.89],[-159.27,-28.63],[-152.83,-24.03],[-144.3,-10.68],[-143.02,13.71],[-131.3,16.86],[-113.01,4.85],[-100.95,-2.98],[-92.04,-9.03],[-87.42,-11.73],[-84.76,-12.53],[-82.54,-14.26],[-80.71,-16.53],[-76.51,-18.63]],"o":[[-75.16,-25.42],[-87.18,-29.69],[-97.97,-34.83],[-106.78,-41.76],[-113.19,-52.04],[-116.13,-66.87],[-117.04,-83.27],[-118.4,-99.42],[-121.41,-110.11],[-123.68,-114.19],[-126.57,-118.35],[-129.45,-121.72],[-132.73,-124.15],[-137.8,-127.39],[-143.1,-130.3],[-152.77,-134.3],[-170.16,-138.1],[-184.04,-140.36],[-190.12,-141.23],[-197.2,-142.76],[-208.89,-146.89],[-215.26,-150.16],[-216.31,-151.34],[-223.23,-156.66],[-239.47,-173.55],[-253.67,-184.75],[-259.91,-187.51],[-272.03,-190.42],[-295.75,-189.66],[-305.2,-179.98],[-300.66,-167.92],[-295.27,-159.12],[-289.23,-150.7],[-282.41,-145.28],[-274.72,-140.53],[-263.28,-135.84],[-244.71,-130.22],[-231.95,-122.71],[-224.08,-112.88],[-218.29,-97.99],[-216.48,-67.71],[-209.66,-52.64],[-209.42,-50.94],[-208.51,-49.46],[-205.25,-47.39],[-197.4,-42.27],[-177.04,-35.78],[-161.6,-29.86],[-154.88,-25.72],[-146.54,-17.04],[-142.54,4.69],[-137.55,20.68],[-119.03,8.94],[-103.93,-0.96],[-95,-7.01],[-88.28,-11.46],[-85.66,-12.27],[-83.19,-13.49],[-81.31,-15.77],[-78.5,-17.99],[-73.02,-20.53]],"v":[[-71,-24],[-83.23,-28.23],[-94.47,-33.03],[-103.98,-39.31],[-111,-48],[-115.31,-61.81],[-116.76,-77.79],[-117.83,-94.12],[-121,-109],[-122.88,-112.81],[-125.6,-116.99],[-128.52,-120.67],[-131,-123],[-136.1,-126.32],[-141.3,-129.35],[-147,-132],[-164.34,-136.94],[-182,-140],[-188.1,-140.93],[-194,-142],[-205.06,-145.45],[-215,-150],[-215.96,-150.94],[-217,-152],[-234.06,-167.97],[-251,-183],[-257.74,-186.67],[-266,-189],[-288.2,-190.4],[-304,-183],[-302.38,-171.87],[-297,-162],[-291.28,-153.38],[-285,-147],[-277.32,-142.07],[-269,-138],[-250.76,-132.16],[-235,-125],[-226.54,-116.24],[-221,-106],[-217.28,-77.59],[-210,-53],[-209.5,-51.51],[-209,-50],[-206.38,-48.09],[-203,-46],[-183.87,-37.87],[-164,-31],[-157.07,-27.17],[-151,-22],[-143.42,-2.99],[-144,24],[-125.17,12.9],[-107,1],[-97.98,-4.99],[-89,-11],[-86.54,-12],[-84,-13],[-81.93,-15.02],[-80,-17],[-74.77,-19.58]],"c":true}],"h":1},{"t":34,"s":[{"i":[[-69.91,-22.93],[-78.21,-27.4],[-89.03,-31.17],[-98.42,-35.3],[-106.57,-41.72],[-112.41,-50.64],[-115.31,-60.6],[-116.72,-71.81],[-117.6,-83.86],[-118.3,-90.72],[-118.92,-94.8],[-119.71,-98.82],[-120.65,-102.74],[-122.77,-109.94],[-125.75,-116.09],[-129.98,-121.12],[-134.11,-125.22],[-136.95,-128.34],[-142.93,-131.46],[-151.91,-134.1],[-173.87,-139.14],[-203.13,-144.64],[-214.59,-150.06],[-218.54,-153.85],[-220.58,-155.1],[-221.76,-154.89],[-222.31,-155.5],[-222.85,-156.88],[-230.36,-163.9],[-240.57,-174.41],[-249,-180.92],[-257.78,-187.16],[-275.93,-191.42],[-302.06,-187.89],[-303.97,-175.8],[-298.47,-162.53],[-296.3,-160.04],[-295.41,-158.43],[-292.39,-155.29],[-288.51,-151.44],[-281.85,-145.17],[-274.54,-140.39],[-263.65,-136.6],[-253.29,-134.12],[-246.07,-131.49],[-239.46,-128.44],[-237.26,-126.48],[-234.66,-124.54],[-225.04,-114.32],[-218.89,-93.97],[-217.51,-75.29],[-215.44,-60.4],[-191.95,-41.24],[-148.99,-26.28],[-143.57,-1.19],[-144.88,18.35],[-132.11,17.33],[-113.24,4.99],[-95.69,-6.11],[-78.98,-16.62],[-72.22,-20.97]],"o":[[-74.25,-25.94],[-85.6,-30.02],[-95.44,-33.81],[-103.98,-39.25],[-110.97,-47.66],[-114.59,-57.11],[-116.38,-67.95],[-117.32,-79.77],[-118.13,-89.36],[-118.69,-93.44],[-119.43,-97.49],[-120.32,-101.45],[-121.92,-107.34],[-124.69,-114.31],[-128.4,-119.49],[-133.13,-124.06],[-136.02,-127.36],[-140.23,-130.41],[-148.78,-133.3],[-163.81,-137.58],[-193.53,-142.68],[-213.06,-148.88],[-217.32,-152.54],[-220.2,-155.16],[-221.36,-154.97],[-222.14,-155.06],[-222.67,-156.41],[-226.83,-160.19],[-237.23,-171],[-246.11,-178.59],[-254.84,-185.21],[-265.9,-190.22],[-294.01,-190.26],[-304.98,-180.53],[-300.71,-166.8],[-296.6,-160.58],[-295.71,-158.97],[-293.63,-156.57],[-289.83,-152.72],[-284.08,-147.23],[-277.08,-141.75],[-267.26,-137.53],[-256.67,-134.89],[-248.59,-132.52],[-241.5,-129.45],[-238.18,-127.22],[-235.5,-125.14],[-228.6,-119.58],[-220.18,-101.52],[-217.54,-80.34],[-216.46,-65.32],[-206.95,-45.1],[-162.97,-31.83],[-143.63,-7.11],[-144.19,11.54],[-138.5,21.33],[-119.48,9.16],[-101.45,-2.56],[-84.46,-13.14],[-73.26,-20.5],[-70.54,-22.18]],"v":[[-70,-24],[-81.91,-28.71],[-92.24,-32.49],[-101.2,-37.28],[-109,-45],[-113.5,-53.87],[-115.85,-64.28],[-117.02,-75.79],[-118,-88],[-118.49,-92.08],[-119.18,-96.14],[-120.02,-100.13],[-121,-104],[-123.73,-112.12],[-127.07,-117.79],[-132,-123],[-135.06,-126.29],[-138,-129],[-145.85,-132.38],[-155,-135],[-183.7,-140.91],[-211,-148],[-215.96,-151.3],[-220,-155],[-220.97,-155.04],[-222,-155],[-222.49,-155.95],[-223,-157],[-233.8,-167.45],[-244,-177],[-251.92,-183.07],[-260,-188],[-284.97,-190.84],[-304,-183],[-302.34,-171.3],[-297,-161],[-296,-159.5],[-295,-158],[-291.11,-154.01],[-287,-150],[-279.46,-143.46],[-271,-139],[-260.16,-135.74],[-250,-133],[-243.79,-130.47],[-239,-128],[-236.38,-125.81],[-234,-124],[-222.61,-107.92],[-218,-85],[-216.99,-70.31],[-213,-56],[-177.46,-36.54],[-145,-12],[-143.88,5.17],[-145,25],[-125.8,13.24],[-107,1],[-90.07,-9.63],[-74,-20],[-71.38,-21.57]],"c":true}],"h":1},{"t":35,"s":[{"i":[[-70.22,-20.92],[-87.69,-30.95],[-107.51,-42.1],[-116.32,-61.42],[-118.3,-82.08],[-120,-97.46],[-122.62,-108.78],[-126.59,-117.24],[-130.92,-122.06],[-136.94,-127.74],[-142.52,-131.92],[-155.27,-136.57],[-173.11,-140.03],[-191.37,-142.92],[-208.67,-146.86],[-216.43,-151.2],[-221.3,-155.65],[-223.97,-157.43],[-225.63,-157.71],[-226.72,-158.89],[-227.61,-160.63],[-234.03,-166.68],[-243.45,-175.56],[-246.64,-178.41],[-247.6,-178.68],[-249.72,-180.72],[-252.04,-183.43],[-259.51,-187.33],[-271.16,-190.66],[-287.47,-191.31],[-302.6,-186.58],[-304.63,-178.62],[-302.12,-171.44],[-297.83,-161.87],[-295.81,-158.85],[-286.12,-147.86],[-281.39,-144.24],[-274.1,-141.28],[-256.47,-134.86],[-241.25,-130.07],[-235.38,-125.17],[-230.09,-120.42],[-227.25,-117.37],[-227.23,-115.51],[-225.23,-114.43],[-222.7,-108.28],[-219.79,-79.06],[-196.26,-43.47],[-153.5,-28.73],[-143.87,8.41],[-133.36,17.71],[-127,14.65],[-123.65,11.12],[-119.76,9.48],[-115.36,6.85],[-100.13,-3.81],[-92.96,-7.35],[-89.5,-11.04],[-85.77,-12.55],[-81.49,-15.07],[-78.65,-17.57]],"o":[[-79.18,-28.64],[-101.85,-37.68],[-114.92,-55.13],[-118.01,-74.89],[-119.44,-93.32],[-121.59,-105.19],[-125.38,-115.21],[-129.36,-120.66],[-135.18,-126.03],[-140.61,-130.69],[-149.72,-135.05],[-166.97,-139.06],[-185.03,-141.99],[-203.19,-145.36],[-214.78,-149.88],[-219.69,-154.09],[-223.41,-157.32],[-225.08,-157.62],[-226.42,-158.33],[-227.31,-160.04],[-230.8,-163.65],[-240.35,-172.63],[-246.34,-178.32],[-247.27,-178.59],[-248.95,-179.75],[-251.27,-182.56],[-255.93,-185.75],[-267.12,-189.79],[-280.92,-191.52],[-298.31,-188.84],[-304.82,-180.9],[-303.28,-173.89],[-299.88,-166.57],[-296.2,-160.16],[-291.41,-154.26],[-281.67,-145.85],[-278.11,-142.17],[-262.86,-136.64],[-245.57,-130.69],[-236.93,-127.32],[-230.86,-121.33],[-228.85,-117.68],[-226.69,-116.54],[-226.84,-114.64],[-223.81,-111.8],[-218.32,-94.09],[-212.34,-46.89],[-165.16,-33.02],[-142.76,-7.78],[-139.41,23.18],[-128.07,14.42],[-124.45,13],[-121.12,9.4],[-117.2,7.88],[-107.9,2.21],[-94.09,-7.56],[-90.64,-8.92],[-87.09,-12.58],[-82.98,-14.17],[-79.4,-16.37],[-75.21,-19.83]],"v":[[-69,-25],[-94.77,-34.31],[-112,-50],[-117.16,-68.16],[-119,-89],[-120.79,-101.33],[-124,-112],[-127.97,-118.95],[-133,-124],[-138.77,-129.21],[-145,-133],[-161.12,-137.81],[-179,-141],[-197.28,-144.14],[-213,-149],[-218.06,-152.65],[-223,-157],[-224.53,-157.52],[-226,-158],[-227.02,-159.46],[-228,-161],[-237.19,-169.66],[-246,-178],[-246.95,-178.5],[-248,-179],[-250.49,-181.64],[-253,-184],[-263.31,-188.56],[-275,-191],[-292.89,-190.07],[-304,-183],[-303.95,-176.25],[-301,-169],[-297,-161],[-295,-158],[-282,-146],[-281,-144],[-271,-140],[-249,-132],[-238,-128],[-234,-124],[-229,-118],[-227,-117],[-227,-115],[-225,-114],[-222,-106],[-217,-67],[-177,-37],[-148,-18],[-146,25],[-129,15],[-126,14],[-122,10],[-119,9],[-114,6],[-95,-7],[-92,-8],[-88,-12],[-85,-13],[-80,-16],[-78,-18]],"c":true}],"h":1},{"t":36,"s":[{"i":[[-71.46,-21.54],[-76.02,-28.08],[-87.54,-31.49],[-93.82,-34.54],[-97.68,-37.31],[-105.36,-41.78],[-112.3,-49.41],[-117.15,-62.44],[-118.56,-78.39],[-120.4,-96.77],[-124.78,-113.17],[-129.15,-120.41],[-132.96,-124.27],[-139.32,-129.51],[-146.01,-133.1],[-149.56,-134.51],[-150.74,-135.91],[-152.97,-136.46],[-156.07,-136.77],[-158.76,-137.64],[-161.25,-138.83],[-181.82,-141.66],[-194.23,-144.64],[-204.41,-145.68],[-212.26,-149.14],[-219.74,-153.83],[-223.17,-155.31],[-226.56,-158.77],[-238.77,-170.05],[-249.23,-181.11],[-254.76,-183.3],[-258.31,-186.69],[-264.25,-188.28],[-300.49,-191.92],[-302.32,-168.42],[-296.82,-160.82],[-294.24,-158.38],[-292.98,-155.11],[-285.66,-148.1],[-276.38,-142.82],[-265.32,-138.06],[-246.95,-133.32],[-240.4,-128.3],[-237.74,-127.52],[-221.19,-100.6],[-216.28,-59.46],[-209.2,-52.24],[-202.64,-46.84],[-182.78,-40.15],[-164.47,-34.05],[-160.43,-30.32],[-157.78,-29.62],[-153.98,-26.05],[-144.11,5.23],[-133.5,18.16],[-113.66,5.27],[-97.97,-5.15],[-92.96,-7.35],[-89.5,-11.04],[-85.77,-12.55],[-81.49,-15.07]],"o":[[-72,-26.83],[-83.79,-30.41],[-92.47,-33.64],[-96.42,-36.38],[-102.46,-39.82],[-110.28,-46.57],[-116.13,-57.49],[-118.37,-72.89],[-119.51,-90.43],[-123.03,-108.13],[-128.17,-119.02],[-131.55,-123.03],[-137.31,-127.96],[-143.67,-132.08],[-149.19,-134.06],[-150.33,-135.44],[-151.93,-136.32],[-155.04,-136.68],[-157.89,-137.22],[-160.44,-138.44],[-171.12,-141.1],[-192.77,-143.26],[-199.85,-145.79],[-209.42,-147.52],[-217.21,-151.59],[-221.76,-155.71],[-225.38,-157.14],[-234.19,-165.32],[-246.93,-177.77],[-253.19,-183.81],[-257.73,-184.98],[-260.52,-187.68],[-279.08,-192.15],[-305.82,-178.37],[-297.88,-163.79],[-295.85,-158.67],[-292.91,-156.31],[-290.19,-151.96],[-280.36,-144.59],[-268.34,-139.48],[-254.38,-134.56],[-240.62,-129.79],[-239.17,-127.38],[-223.11,-117.32],[-218.02,-70.73],[-209.68,-52.58],[-204.29,-48.8],[-192.55,-41.67],[-169.56,-35.41],[-160.6,-31.76],[-159.12,-29.34],[-155.78,-28.03],[-142.83,-14.03],[-139.91,22.88],[-120.27,9.7],[-102.84,-1.66],[-94.09,-7.56],[-90.64,-8.92],[-87.09,-12.58],[-82.98,-14.17],[-75.88,-18.56]],"v":[[-68,-25],[-79.9,-29.24],[-91,-33],[-95.12,-35.46],[-99,-38],[-107.82,-44.18],[-114,-53],[-117.76,-67.67],[-119,-84],[-121.72,-102.45],[-127,-117],[-130.35,-121.72],[-135,-126],[-141.5,-130.8],[-149,-134],[-149.95,-134.97],[-151,-136],[-154,-136.57],[-157,-137],[-159.6,-138.04],[-162,-139],[-191,-143],[-196,-145],[-208,-147],[-214,-150],[-221,-155],[-224,-156],[-228,-160],[-244,-175],[-252,-183],[-256,-184],[-259,-187],[-267,-189],[-304,-183],[-300,-166],[-296,-159],[-294,-158],[-292,-154],[-284,-147],[-272,-141],[-262,-137],[-241,-130],[-240,-128],[-237,-127],[-219,-80],[-212,-55],[-206,-50],[-201,-46],[-174,-37],[-161,-32],[-160,-30],[-157,-29],[-153,-25],[-147,26],[-127,14],[-107,1],[-95,-7],[-92,-8],[-88,-12],[-85,-13],[-80,-16]],"c":true}],"h":1},{"t":37,"s":[{"i":[[-68.6,-24.02],[-76.22,-28.86],[-88.45,-33.1],[-99.63,-38.17],[-108.78,-45],[-114.08,-52.82],[-117.06,-60.94],[-118.76,-69.9],[-119.73,-79.59],[-120.82,-91.99],[-122.96,-104.58],[-126.4,-115.24],[-130.3,-121.69],[-134.54,-126.82],[-151.08,-136.33],[-180.41,-142.36],[-200.42,-145.99],[-213.68,-150.16],[-220.92,-154.39],[-225.61,-157.94],[-232.42,-163.61],[-239.66,-170.86],[-248.11,-178.69],[-258.49,-186.64],[-277.97,-191.64],[-302.1,-187.82],[-304.58,-176.67],[-300.45,-166.46],[-295.11,-158.47],[-286.68,-149.12],[-282.71,-146.52],[-279.42,-144.69],[-274.23,-142.1],[-269.02,-139.67],[-256.16,-135.88],[-240.17,-130.04],[-233.64,-123.85],[-229.16,-118.94],[-222.76,-104.69],[-220.05,-83.58],[-217.98,-69.26],[-215.26,-59.32],[-213.56,-57.36],[-213.34,-56.46],[-202.81,-47.49],[-180.75,-40.41],[-166.96,-35.14],[-158.15,-29.86],[-146.44,-14.52],[-146.18,14.48],[-144.58,25.53],[-140.73,22.46],[-139.04,21.62],[-137.51,21.32],[-135.65,19.79],[-133.74,17.48],[-130.97,15.9],[-127.87,14.56],[-110.11,3.26],[-84.91,-12.8],[-73.45,-20.06]],"o":[[-72.06,-27.49],[-84.41,-31.66],[-96.06,-36.36],[-105.99,-42.49],[-112.72,-50.33],[-116.25,-58.13],[-118.31,-66.82],[-119.47,-76.28],[-120.35,-87.51],[-122.13,-100.52],[-125.1,-111.94],[-129.03,-119.78],[-133.06,-125.21],[-142.38,-133.15],[-170.1,-140.93],[-195.33,-144.91],[-209.6,-148.62],[-219.11,-153.17],[-224.17,-156.77],[-229.85,-161.18],[-237.33,-168.45],[-244.87,-175.61],[-254.93,-184.2],[-268.42,-190.48],[-294.81,-190.31],[-305.11,-180.19],[-302.26,-169.8],[-297.76,-161.91],[-289.57,-152.07],[-283.75,-147.17],[-280.54,-145.28],[-275.98,-143.01],[-270.75,-140.43],[-262.07,-137.36],[-245.21,-132.22],[-235.31,-125.38],[-230.57,-120.63],[-224.48,-111.15],[-220.54,-90.9],[-218.6,-73.1],[-216.31,-62.37],[-213.64,-57.63],[-213.41,-56.78],[-209.19,-50.78],[-188.59,-42.3],[-170.38,-36.71],[-160.84,-31.71],[-149.36,-22.27],[-144.86,3.85],[-146.21,26.3],[-141.84,23.6],[-139.53,21.71],[-138.03,21.43],[-136.28,20.55],[-134.38,18.25],[-132.03,16.37],[-128.89,15],[-118.65,8.66],[-93.24,-7.47],[-75.4,-19.05],[-70.05,-22.54]],"v":[[-68,-26],[-80.32,-30.26],[-92.25,-34.73],[-102.81,-40.33],[-111,-48],[-115.16,-55.48],[-117.69,-63.88],[-119.11,-73.09],[-120,-83],[-121.48,-96.25],[-124.03,-108.26],[-128,-118],[-131.68,-123.45],[-136,-128],[-160.59,-138.63],[-190,-144],[-205.01,-147.3],[-217,-152],[-222.54,-155.58],[-227,-159],[-234.88,-166.03],[-242,-173],[-251.52,-181.45],[-262,-188],[-286.39,-190.97],[-304,-183],[-303.42,-173.23],[-299,-164],[-292.34,-155.27],[-285,-148],[-281.63,-145.9],[-278,-144],[-272.49,-141.26],[-267,-139],[-250.68,-134.05],[-237,-127],[-232.1,-122.24],[-228,-117],[-221.65,-97.79],[-219,-76],[-217.15,-65.82],[-214,-58],[-213.49,-57.07],[-213,-56],[-195.7,-44.89],[-174,-38],[-163.9,-33.43],[-156,-28],[-145.65,-5.34],[-148,26],[-143.21,24.57],[-140,22],[-138.53,21.52],[-137,21],[-135.02,19.02],[-133,17],[-129.93,15.45],[-127,14],[-101.67,-2.11],[-77,-18],[-71.75,-21.3]],"c":true}],"h":1},{"t":38,"s":[{"i":[[-68.63,-21.65],[-78.56,-30.55],[-96.3,-36.25],[-101.59,-39.53],[-102.69,-40.77],[-106.53,-43.6],[-110.27,-47.37],[-111.51,-49.32],[-112.88,-49.81],[-113.1,-50.6],[-112.88,-51.74],[-113.52,-52.32],[-114.88,-52.79],[-116.19,-55.57],[-117.68,-59.92],[-120.21,-73.44],[-120.88,-93.49],[-123.84,-107.43],[-127.94,-117.17],[-132.16,-123.58],[-138.25,-129.21],[-140.32,-130.52],[-140.79,-131.88],[-156.24,-138.53],[-183.11,-143.54],[-204.88,-147.4],[-219.6,-152.99],[-231.5,-162.07],[-240.76,-172.01],[-245.89,-176.41],[-249.15,-178.32],[-251.82,-180.78],[-254.13,-183.47],[-271.46,-190.37],[-301.45,-189.6],[-304.68,-177.47],[-301.24,-169.38],[-297.23,-161.78],[-292.61,-154.64],[-289.98,-152.39],[-287.73,-151.58],[-284.86,-149.13],[-282.06,-146.61],[-277.87,-144.18],[-272.93,-141.71],[-259.08,-137.07],[-243.02,-130.97],[-236.15,-125.9],[-233.54,-123.19],[-232.49,-121.68],[-231.12,-121.17],[-226.38,-113.11],[-222.82,-99.96],[-219.16,-67.3],[-198.21,-45.86],[-164.34,-36.04],[-146.16,2.62],[-131.6,17.11],[-112.91,4.79],[-89.34,-10.14],[-78.7,-17.9]],"o":[[-72.41,-28.68],[-90.51,-34.34],[-101.25,-39.15],[-102.31,-40.34],[-104.89,-42.42],[-109.21,-46.08],[-111.07,-49.16],[-112.41,-49.65],[-113.15,-50.23],[-112.96,-51.36],[-113.08,-52.18],[-114.42,-52.63],[-115.6,-54.11],[-117.23,-58.47],[-119.77,-66.95],[-120.77,-86.71],[-122.62,-103.59],[-126.5,-114.22],[-130.29,-121.22],[-136.15,-127.57],[-140.17,-130.08],[-140.63,-131.42],[-147.93,-136.01],[-173.82,-142.3],[-199.08,-146.16],[-215.14,-150.81],[-228.11,-158.82],[-237.82,-168.67],[-244.81,-175.75],[-248.05,-177.7],[-251,-179.8],[-253.38,-182.62],[-260.48,-187.33],[-291.94,-191.51],[-305.05,-180.27],[-302.77,-172.02],[-298.67,-164.46],[-294.2,-156.87],[-290.61,-152.6],[-288.54,-151.88],[-285.83,-150.07],[-282.98,-147.4],[-279.41,-145.08],[-274.63,-142.49],[-265.07,-138.83],[-248.05,-133.14],[-237.38,-126.8],[-234.23,-124.1],[-232.93,-121.85],[-231.59,-121.35],[-228.22,-117.13],[-223.68,-104.53],[-220.05,-83.22],[-208.46,-50.09],[-175.55,-38.69],[-142.39,-17.97],[-140.36,22.7],[-118.52,8.97],[-98.53,-4.42],[-80.27,-16.14],[-73.62,-21.19]],"v":[[-67,-26],[-84.53,-32.45],[-101,-39],[-101.95,-39.94],[-103,-41],[-107.87,-44.84],[-111,-49],[-111.96,-49.48],[-113,-50],[-113.03,-50.98],[-113,-52],[-113.97,-52.47],[-115,-53],[-116.71,-57.02],[-118,-61],[-120.49,-80.08],[-122,-100],[-125.17,-110.82],[-129,-119],[-134.15,-125.57],[-140,-130],[-140.48,-130.97],[-141,-132],[-165.03,-140.41],[-192,-145],[-210.01,-149.11],[-224,-156],[-234.66,-165.37],[-244,-175],[-246.97,-177.05],[-250,-179],[-252.6,-181.7],[-255,-184],[-281.7,-190.94],[-304,-183],[-303.72,-174.74],[-300,-167],[-295.71,-159.32],[-291,-153],[-289.26,-152.14],[-287,-151],[-283.92,-148.27],[-281,-146],[-276.25,-143.34],[-271,-141],[-253.57,-135.11],[-239,-128],[-235.19,-125],[-233,-122],[-232.04,-121.51],[-231,-121],[-225.03,-108.82],[-222,-95],[-214,-59],[-186,-42],[-157,-30],[-148,27],[-125,13],[-107,1],[-82,-15],[-77,-19]],"c":true}],"h":1},{"t":39,"s":[{"i":[[-67.53,-22.77],[-85.12,-33.04],[-109.33,-45],[-119.96,-66.79],[-122.38,-93.77],[-125.17,-108.49],[-127.67,-117.62],[-129.7,-119.96],[-130.59,-121.57],[-133.12,-124.44],[-136.23,-128.28],[-137.92,-129.45],[-139.54,-129.66],[-142.73,-132.23],[-146.6,-135.34],[-159.63,-140.05],[-179.44,-143.01],[-199,-146.03],[-217.19,-151.13],[-223.27,-155.11],[-225.26,-157.45],[-227.75,-159.08],[-230.32,-160.4],[-236.72,-166.51],[-244.25,-174.58],[-248.58,-178.1],[-251.18,-179.39],[-253.46,-181.39],[-255.36,-183.62],[-270.38,-189.94],[-297.14,-190.55],[-305.04,-181.13],[-303.2,-172.83],[-298.25,-162.58],[-290.77,-153.35],[-282.12,-146.67],[-272.57,-142.28],[-265.94,-139.94],[-261.39,-138.46],[-253.03,-135.72],[-242.45,-131.39],[-237.4,-126.69],[-232.21,-121.65],[-226.16,-111.72],[-222.79,-97.07],[-220.38,-77.84],[-215.95,-61.17],[-212.59,-57.07],[-212.33,-55.35],[-211.11,-54.52],[-209.47,-54.33],[-207.87,-51.55],[-202.73,-48.84],[-191.35,-44.37],[-161.3,-35.35],[-147.1,8.52],[-141.54,23.29],[-128.38,15.1],[-123.66,11.42],[-102.73,-1.57],[-82.11,-15.09]],"o":[[-75.45,-30.29],[-102.06,-40.39],[-118.27,-58.41],[-122.01,-84.47],[-124.58,-104.94],[-126.71,-114.83],[-129.4,-119.42],[-130.29,-121.03],[-132,-123.05],[-135.23,-127.05],[-137.4,-129.37],[-138.99,-129.59],[-141.43,-131.06],[-145.31,-134.37],[-153.41,-138.54],[-172.64,-142.28],[-192.41,-144.96],[-211.39,-149.11],[-222.64,-154.38],[-224.58,-156.64],[-226.84,-158.62],[-229.49,-159.97],[-234.09,-163.73],[-241.8,-171.94],[-247.74,-177.65],[-250.31,-178.97],[-252.78,-180.58],[-254.75,-182.91],[-261.31,-187.17],[-288.3,-191.63],[-304.44,-183.72],[-304.42,-175.69],[-300.37,-166.15],[-293.45,-156.18],[-285.09,-148.52],[-275.86,-143.55],[-267.49,-140.46],[-262.89,-138.94],[-257.05,-137.02],[-245.73,-132.9],[-239.3,-128.37],[-233.86,-123.34],[-228.02,-115.94],[-223.55,-102.29],[-221.15,-84.5],[-217.78,-66.17],[-212.67,-57.65],[-212.42,-55.93],[-211.62,-54.6],[-210.03,-54.38],[-208.18,-53.43],[-205.12,-49.82],[-196.92,-46.02],[-173.87,-38.85],[-143.86,-15.41],[-144.61,26.49],[-133.87,18.32],[-124.4,12.63],[-113.27,4.72],[-87.44,-11.08],[-72.73,-21.09]],"v":[[-66,-27],[-93.59,-36.72],[-114,-52],[-120.99,-75.63],[-124,-102],[-125.94,-111.66],[-129,-119],[-129.99,-120.5],[-131,-122],[-134.17,-125.74],[-137,-129],[-138.45,-129.52],[-140,-130],[-144.02,-133.3],[-148,-136],[-166.14,-141.17],[-186,-144],[-205.2,-147.57],[-222,-154],[-223.93,-155.88],[-226,-158],[-228.62,-159.52],[-231,-161],[-239.26,-169.23],[-247,-177],[-249.44,-178.54],[-252,-180],[-254.11,-182.15],[-256,-184],[-279.34,-190.79],[-302,-186],[-304.73,-178.41],[-302,-170],[-295.85,-159.38],[-288,-151],[-278.99,-145.11],[-269,-141],[-264.41,-139.44],[-260,-138],[-249.38,-134.31],[-241,-130],[-235.63,-125.01],[-231,-120],[-224.86,-107],[-222,-91],[-219.08,-72.01],[-213,-58],[-212.51,-56.5],[-212,-55],[-210.57,-54.45],[-209,-54],[-207,-51],[-201,-48],[-187,-43],[-154,-27],[-149,27],[-138,21],[-125,13],[-123,11],[-94,-7],[-76,-19]],"c":true}],"h":1},{"t":40,"s":[{"i":[[-65.64,-24.51],[-76.28,-31.18],[-91.99,-36.64],[-104.83,-43.13],[-114.01,-51.41],[-120.39,-66.75],[-122.2,-87.06],[-124.48,-104.02],[-128.24,-115.84],[-139.51,-131.15],[-160.34,-140.12],[-180.95,-144.08],[-199.07,-146.6],[-216.6,-151.66],[-231.09,-160.47],[-237.94,-167.11],[-241.76,-171.91],[-244.23,-173.71],[-246.45,-174.53],[-251.22,-179.03],[-257.51,-184.73],[-273.66,-190.53],[-297.97,-189.77],[-305.15,-178],[-299.04,-163.82],[-294.7,-158.13],[-288.98,-151.75],[-287.05,-150.59],[-285.46,-150.34],[-283.53,-148.61],[-281.59,-146.33],[-278.79,-145.12],[-275.01,-144.3],[-273.44,-143.49],[-272.26,-142.1],[-261.21,-138.77],[-244.59,-133.49],[-241.36,-130.59],[-240.37,-130.31],[-233.57,-123.71],[-227.21,-113.25],[-222.59,-94.2],[-219.78,-68.65],[-214.75,-59.08],[-210.45,-54.12],[-202.67,-49.27],[-190.76,-45.22],[-179,-41.63],[-167.14,-37.75],[-163.42,-35.48],[-162.29,-34.22],[-160.99,-33.31],[-159.5,-32.39],[-148.24,-17.37],[-148.38,15.37],[-146.11,26.44],[-140.7,23.11],[-120.28,9.78],[-91.95,-8.44],[-78.35,-17.07],[-71.96,-21.68]],"o":[[-70.79,-29.36],[-86.88,-34.82],[-101.08,-40.92],[-111.29,-48.38],[-119.04,-60.47],[-121.97,-80.05],[-123.61,-99.35],[-126.8,-112.26],[-134.08,-126.33],[-152.64,-138.04],[-174.91,-143.28],[-193.03,-145.74],[-211.06,-149.43],[-226.62,-157.18],[-236.56,-165.41],[-240.54,-170.37],[-243.51,-173.44],[-245.7,-174.25],[-249.22,-176.91],[-255.37,-182.93],[-265.18,-188.64],[-290.06,-191.1],[-305.38,-182.84],[-301.98,-168.49],[-296.46,-160.26],[-290.96,-153.88],[-287.57,-150.67],[-286,-150.42],[-284.24,-149.44],[-282.21,-147.05],[-280.04,-145.46],[-276.28,-144.54],[-273.81,-143.94],[-272.66,-142.57],[-267.42,-140.27],[-249.8,-135.37],[-241.68,-130.69],[-240.71,-130.4],[-236.47,-127.09],[-228.94,-116.79],[-223.45,-103.12],[-220.75,-76.97],[-216.03,-61.02],[-211.97,-55.63],[-206.29,-50.91],[-194.9,-46.42],[-183.18,-42.76],[-170.98,-39.13],[-163.77,-35.87],[-162.68,-34.66],[-161.49,-33.61],[-159.99,-32.69],[-151.3,-26.06],[-146.78,3.34],[-148,27.38],[-142.46,24.3],[-129.8,16],[-101.35,-2.44],[-80.62,-15.48],[-74.02,-20.17],[-68.31,-24.14]],"v":[[-65,-27],[-81.58,-33],[-97,-39],[-108.06,-45.75],[-116,-55],[-121.18,-73.4],[-123,-94],[-125.64,-108.14],[-130,-119],[-146.07,-134.59],[-169,-142],[-186.99,-144.91],[-205,-148],[-221.61,-154.42],[-235,-164],[-239.24,-168.74],[-243,-173],[-244.97,-173.98],[-247,-175],[-253.3,-180.98],[-260,-186],[-281.86,-190.81],[-302,-186],[-303.56,-173.24],[-297,-161],[-292.83,-156],[-288,-151],[-286.53,-150.51],[-285,-150],[-282.87,-147.83],[-281,-146],[-277.54,-144.83],[-274,-144],[-273.05,-143.03],[-272,-142],[-255.51,-137.07],[-242,-131],[-241.04,-130.5],[-240,-130],[-231.26,-120.25],[-226,-110],[-221.67,-85.58],[-217,-63],[-213.36,-57.36],[-209,-53],[-198.79,-47.85],[-187,-44],[-174.99,-40.38],[-164,-36],[-163.05,-35.07],[-162,-34],[-160.49,-33],[-159,-32],[-147.51,-7.02],[-150,28],[-144.28,25.37],[-139,22],[-110.81,3.67],[-83,-14],[-76.18,-18.62],[-70,-23]],"c":true}],"h":1},{"t":41,"s":[{"i":[[-66.1,-23.14],[-79.62,-33.01],[-99.97,-40.23],[-108.64,-46.71],[-113.14,-50.71],[-115.53,-54.34],[-117.42,-57.72],[-121.01,-68.47],[-122.42,-84.32],[-123.75,-95.07],[-125.46,-102.46],[-127.01,-110.41],[-128.88,-117.91],[-130.83,-120.97],[-132.61,-122.42],[-137.3,-128.6],[-144.94,-134.51],[-153.33,-138.43],[-161.71,-141.19],[-169.42,-143.13],[-175.97,-144.68],[-187.12,-145.99],[-200.78,-147.07],[-211.94,-150.12],[-222,-154.84],[-226.65,-157.61],[-229.81,-159.99],[-235.94,-165.13],[-242.83,-170.96],[-251.16,-178.82],[-261.34,-186.53],[-278.39,-191.26],[-298.86,-188.94],[-304.98,-181.1],[-303.35,-172.01],[-299.99,-165.24],[-295.83,-159.01],[-291.95,-154.92],[-286.96,-151.43],[-285.68,-150.49],[-285.18,-149.12],[-284.4,-148.9],[-283.25,-149.11],[-282.41,-147.24],[-276.22,-145.3],[-267.6,-140.9],[-250.52,-136.45],[-244.01,-131.68],[-235.49,-125.25],[-224.12,-92.98],[-217.84,-62.92],[-215.67,-59.9],[-200.27,-49.07],[-181.68,-42.66],[-164.61,-37.5],[-160.83,-34.65],[-148.34,0.61],[-142.59,24.34],[-117.42,7.67],[-88.31,-10.54],[-76.82,-18.82]],"o":[[-72.14,-30.89],[-93.54,-37.68],[-106.82,-45.36],[-111.8,-49.39],[-114.82,-53.23],[-116.83,-56.59],[-120.05,-63.55],[-122.2,-78.85],[-123.26,-92.59],[-124.85,-100],[-126.57,-107.71],[-128.17,-115.52],[-130.27,-120.5],[-132,-121.93],[-135.07,-126.09],[-142.23,-132.8],[-150.73,-137.33],[-158.82,-140.36],[-167.18,-142.53],[-173.81,-144.2],[-182.48,-145.7],[-196.27,-146.67],[-208.19,-148.7],[-218.85,-153.19],[-225.5,-156.87],[-228.81,-159.17],[-233.53,-163.15],[-240.59,-169.04],[-247.99,-175.8],[-257.84,-184.18],[-270.71,-190.29],[-292.46,-190.59],[-304.3,-183.84],[-304.5,-175.18],[-301.32,-167.49],[-297.24,-161],[-293.73,-156.45],[-288.57,-152.41],[-285.84,-150.93],[-285.35,-149.59],[-284.77,-148.85],[-283.64,-149.04],[-282.65,-148.84],[-279.54,-145.58],[-270.36,-142.94],[-257.82,-137.5],[-245.19,-133.56],[-238.68,-128.1],[-223.19,-109.21],[-220.18,-71.55],[-215.3,-60.27],[-210.11,-52.41],[-186.48,-44.5],[-171.73,-39.13],[-161.31,-34.34],[-143.84,-21.38],[-146.01,26.77],[-128.06,14.86],[-97.92,-4.82],[-78.18,-17.19],[-71.72,-22.13]],"v":[[-65,-28],[-86.58,-35.35],[-105,-44],[-110.22,-48.05],[-114,-52],[-116.18,-55.46],[-118,-59],[-121.6,-73.66],[-123,-90],[-124.3,-97.54],[-126,-105],[-127.59,-112.97],[-130,-120],[-131.41,-121.45],[-133,-123],[-139.76,-130.7],[-148,-136],[-156.08,-139.4],[-165,-142],[-171.61,-143.66],[-178,-145],[-191.7,-146.33],[-205,-148],[-215.39,-151.66],[-224,-156],[-227.73,-158.39],[-231,-161],[-238.27,-167.08],[-245,-173],[-254.5,-181.5],[-265,-188],[-285.42,-190.92],[-302,-186],[-304.74,-178.14],[-302,-169],[-298.62,-163.12],[-295,-158],[-290.26,-153.66],[-286,-151],[-285.52,-150.04],[-285,-149],[-284.02,-148.97],[-283,-149],[-282,-147],[-273,-144],[-265,-140],[-246,-134],[-243,-131],[-233,-122],[-221,-76],[-216,-61],[-215,-59],[-191,-46],[-177,-41],[-162,-35],[-160,-34],[-150,28],[-139,22],[-107,1],[-80,-16],[-75,-20]],"c":true}],"h":1},{"t":42,"s":[{"i":[[-65.39,-23.98],[-85.58,-35.33],[-114.5,-50.06],[-122.77,-73.25],[-124.79,-96.44],[-126.78,-107.91],[-128.18,-115.06],[-130.08,-118.67],[-132.41,-121.07],[-134.1,-124.23],[-135.32,-127.25],[-138.55,-130.12],[-144.12,-133.6],[-145.32,-134.52],[-145.8,-135.88],[-161.99,-142.38],[-190.95,-146.53],[-212.98,-151.02],[-229.14,-158.87],[-240.7,-168.94],[-252.24,-179.69],[-256.77,-182.67],[-257.65,-183.79],[-272.39,-189.96],[-297.51,-190.21],[-304.93,-175.68],[-294.95,-158.23],[-290.71,-153.82],[-287.32,-151.88],[-284.91,-150],[-283.53,-148.31],[-275.8,-144.73],[-263.87,-141.4],[-251.76,-136.61],[-241.59,-130.32],[-231.02,-118.88],[-225.16,-101.38],[-222.28,-81.51],[-217.88,-63.53],[-214.37,-59.05],[-213.36,-57.35],[-211.41,-55.98],[-208,-54.63],[-205.22,-52.57],[-203.02,-50.45],[-199.89,-49.28],[-196.07,-48.35],[-185.6,-45.16],[-171.99,-40.84],[-163.49,-36.6],[-157.56,-31.81],[-148.87,-14.85],[-150.38,16.34],[-147.4,26.81],[-138.4,21.18],[-127.39,14.33],[-116.81,7.29],[-106.78,1.45],[-95.44,-6.09],[-83.53,-13.68],[-76.74,-18.87]],"o":[[-74.08,-32.3],[-105.79,-44.21],[-121.62,-65.78],[-124.35,-88.58],[-126.44,-105.39],[-127.64,-112.75],[-129.37,-117.88],[-131.6,-120.26],[-133.69,-123.1],[-134.92,-126.3],[-136.74,-128.82],[-142.24,-132.51],[-145.17,-134.08],[-145.63,-135.42],[-153.01,-140.11],[-180.95,-145.59],[-206.66,-149.08],[-224.22,-155.91],[-236.83,-165.1],[-248.4,-176.24],[-256.44,-182.27],[-257.37,-183.43],[-263.63,-187.36],[-289.33,-191.39],[-306.21,-182.06],[-299.3,-163.76],[-291.8,-154.63],[-288.47,-152.45],[-285.39,-150.59],[-283.98,-148.86],[-279.61,-146.03],[-267.92,-142.42],[-255.71,-138.45],[-244.69,-132.54],[-234.19,-123.69],[-226.51,-107.72],[-223.09,-88.24],[-219.67,-69.15],[-214.69,-59.63],[-213.71,-57.92],[-212.41,-56.42],[-209.2,-55.09],[-205.96,-53.35],[-203.75,-51.13],[-201.11,-49.6],[-197.37,-48.65],[-190.36,-46.49],[-176.42,-42.34],[-165.71,-37.94],[-159.41,-33.53],[-150.42,-23.52],[-148.85,5.08],[-148.99,29.31],[-141.61,23.47],[-130.8,16.3],[-120.01,9.26],[-109.83,3.09],[-100.32,-3.81],[-87.16,-11.53],[-78.27,-17.14],[-70.96,-22.62]],"v":[[-64,-28],[-95.68,-39.77],[-119,-60],[-123.56,-80.92],[-126,-103],[-127.21,-110.33],[-129,-117],[-130.84,-119.46],[-133,-122],[-134.51,-125.27],[-136,-128],[-140.39,-131.31],[-145,-134],[-145.48,-134.97],[-146,-136],[-171.47,-143.98],[-200,-148],[-218.6,-153.46],[-233,-162],[-244.55,-172.59],[-256,-182],[-257.07,-183.05],[-258,-184],[-280.86,-190.68],[-302,-186],[-302.12,-169.72],[-293,-156],[-289.59,-153.13],[-286,-151],[-284.45,-149.43],[-283,-148],[-271.86,-143.58],[-260,-140],[-248.22,-134.58],[-239,-128],[-228.76,-113.3],[-224,-94],[-220.98,-75.33],[-215,-60],[-214.04,-58.48],[-213,-57],[-210.31,-55.53],[-207,-54],[-204.49,-51.85],[-202,-50],[-198.63,-48.96],[-195,-48],[-181.01,-43.75],[-168,-39],[-161.45,-35.07],[-156,-30],[-148.86,-4.89],[-151,28],[-146,26],[-135,19],[-124,12],[-113,5],[-105,0],[-91,-9],[-80,-16],[-75,-20]],"c":true}],"h":1},{"t":43,"s":[{"i":[[-69.88,-22.43],[-74.3,-33],[-92.69,-38.55],[-101.06,-42.51],[-106.53,-45.55],[-112.65,-51.37],[-119.68,-60.35],[-123.28,-73.04],[-124.44,-87.97],[-127,-106.1],[-133.07,-123.4],[-136.63,-127.95],[-137.63,-129.62],[-138.89,-130.48],[-140.52,-130.67],[-141.71,-131.89],[-142.58,-133.69],[-154.2,-140.28],[-174.67,-144.95],[-196.79,-148.04],[-218.12,-152.58],[-225.02,-155.96],[-228.3,-157.55],[-231.15,-159.87],[-234.37,-163.52],[-235.95,-164.38],[-237.62,-164.67],[-242.85,-169.77],[-249.92,-177.41],[-252.95,-179.4],[-254.55,-179.66],[-256.39,-181.33],[-258.21,-183.48],[-260.01,-184.43],[-261.61,-184.76],[-264.85,-186.62],[-269.71,-188.38],[-285.33,-191.14],[-303.83,-186.71],[-304.7,-175.89],[-300.64,-166.42],[-299.49,-164.68],[-298.12,-164.18],[-298.23,-162.51],[-296.25,-161.33],[-293.76,-156.66],[-289.36,-153.98],[-286.14,-150.72],[-252.61,-138.7],[-237.57,-127.56],[-234.57,-123.79],[-225.66,-103.27],[-222.41,-73.01],[-211.09,-56.48],[-174.43,-44.81],[-162,-35.77],[-149.76,2.16],[-139.38,21.81],[-127.7,14.54],[-116.78,7.3],[-94.27,-7.1]],"o":[[-68.21,-30.98],[-86.54,-36.79],[-99.05,-41.48],[-104.8,-44.54],[-109.81,-48.69],[-117.58,-57.19],[-122.56,-68.31],[-124.22,-82.88],[-125.71,-99.4],[-130.67,-118.1],[-136.31,-127.39],[-137.29,-129.07],[-138.38,-130.39],[-139.96,-130.62],[-141.42,-131.29],[-142.29,-133.08],[-148.11,-137.81],[-167.48,-143.85],[-188.98,-147],[-211.36,-150.83],[-223.87,-155.43],[-227.24,-157.02],[-229.96,-158.61],[-233.35,-162.32],[-235.39,-164.3],[-237.06,-164.57],[-240.39,-167.06],[-247.61,-174.94],[-252.42,-179.32],[-254.01,-179.57],[-255.78,-180.59],[-257.6,-182.77],[-259.46,-184.3],[-261.09,-184.66],[-263.49,-185.93],[-267.95,-187.84],[-277.67,-190.53],[-298.41,-189.23],[-305.63,-179.44],[-302.21,-169.38],[-299.93,-164.84],[-298.59,-164.35],[-297.69,-163.54],[-297.86,-161.7],[-294.51,-159.01],[-291.09,-154.14],[-286.8,-152.14],[-271.75,-141.64],[-241.51,-130.39],[-235.39,-124.01],[-227.9,-114.49],[-222.67,-82.97],[-216.11,-60.13],[-194.95,-46.68],[-162.97,-36.23],[-144.14,-21.98],[-145.4,26.92],[-130.49,16.1],[-119.96,9.22],[-103.36,-0.86],[-77.67,-17.66]],"v":[[-63,-28],[-80.42,-34.89],[-98,-41],[-102.93,-43.52],[-107,-46],[-115.12,-54.28],[-121,-64],[-123.75,-77.96],[-125,-93],[-128.83,-112.1],[-136,-127],[-136.96,-128.51],[-138,-130],[-139.43,-130.55],[-141,-131],[-142,-132.48],[-143,-134],[-160.84,-142.07],[-182,-146],[-204.08,-149.44],[-223,-155],[-226.13,-156.49],[-229,-158],[-232.25,-161.1],[-235,-164],[-236.5,-164.47],[-238,-165],[-245.23,-172.35],[-252,-179],[-253.48,-179.49],[-255,-180],[-256.99,-182.05],[-259,-184],[-260.55,-184.54],[-262,-185],[-266.4,-187.23],[-272,-189],[-291.87,-190.19],[-305,-182],[-303.45,-172.64],[-300,-165],[-299.04,-164.52],[-298,-164],[-298,-162],[-296,-161],[-292,-155],[-288,-153],[-285,-150],[-245,-133],[-236,-125],[-234,-123],[-224,-92],[-218,-64],[-207,-54],[-164,-37],[-161,-35],[-152,29],[-135,19],[-124,12],[-113,5],[-85,-13]],"c":true}],"h":1},{"t":44,"s":[{"i":[[-151.31,-0.01],[-145.53,26.15],[-137.34,20.51],[-131.92,17.1],[-127.94,14.71],[-124.52,12.31],[-120.99,10.45],[-119.68,9.49],[-119.19,8.12],[-117.16,7.01],[-114,5.61],[-106.08,0.47],[-95.37,-6.48],[-91.68,-8.51],[-91.19,-9.88],[-88.84,-11.02],[-85.16,-12.26],[-82.71,-14],[-80.22,-16.16],[-77.48,-17.94],[-75.69,-18.69],[-74.68,-19.51],[-74.19,-20.88],[-69.87,-22.75],[-65.85,-30.02],[-101.83,-42.15],[-111.16,-49.26],[-124.13,-75.45],[-128.48,-112.12],[-134.54,-123.38],[-135.31,-126.2],[-142.75,-133.62],[-155.93,-140.92],[-196.28,-147.75],[-219.5,-154.25],[-227.39,-157.02],[-231.68,-160.99],[-235.04,-162.33],[-237.19,-165.34],[-241.68,-167.88],[-245.48,-172.66],[-252.43,-177.54],[-263.21,-186.52],[-302.33,-192.76],[-301.88,-169.45],[-290.09,-153.84],[-285.38,-150.25],[-278.94,-147.27],[-271.24,-144.68],[-267.51,-142.19],[-252.79,-138.46],[-244.68,-132.25],[-239.07,-129.12],[-237.67,-125.96],[-234.59,-123.86],[-233.43,-120.73],[-226.63,-104.42],[-222.29,-72.68],[-203.09,-51.82],[-175.21,-42.98],[-163.7,-38.29]],"o":[[-148.61,27.9],[-139.9,22.46],[-133.44,18],[-129.17,15.46],[-125.78,13.09],[-122.13,10.99],[-119.83,9.93],[-119.36,8.58],[-118.15,7.46],[-115.08,6.09],[-109.65,2.96],[-98.94,-4.25],[-91.83,-8.07],[-91.36,-9.41],[-90.01,-10.65],[-86.41,-11.83],[-83.35,-13.42],[-81.15,-15.37],[-78.14,-17.59],[-76.26,-18.49],[-74.83,-19.07],[-74.36,-20.41],[-72.22,-22.14],[-58.42,-30.38],[-85.75,-37.29],[-109.81,-48.66],[-122.69,-59.42],[-127.16,-102.31],[-132.57,-122.43],[-135.69,-124.91],[-138.29,-129.65],[-150.11,-138.15],[-177.11,-147.14],[-215.97,-152.41],[-225.25,-157.12],[-230.52,-158.93],[-233.87,-162.66],[-236.83,-163.58],[-239.58,-167.29],[-244.55,-170.31],[-249.38,-176.1],[-257.36,-182.14],[-278.24,-192.4],[-306.39,-176.4],[-295.17,-159.08],[-285.67,-151.85],[-282.63,-148.47],[-273.73,-145.01],[-268.63,-143.89],[-260.17,-139.51],[-245.72,-134.24],[-241.53,-129.91],[-237.24,-127.2],[-236.42,-124.17],[-233.42,-122.16],[-228.58,-112.54],[-223.41,-85.8],[-214.24,-56.32],[-183.17,-45.52],[-166.82,-38.95],[-144.44,-23.71]],"v":[[-152,29],[-142.71,24.31],[-135,19],[-130.54,16.28],[-127,14],[-123.33,11.65],[-120,10],[-119.52,9.04],[-119,8],[-116.12,6.55],[-113,5],[-102.51,-1.89],[-92,-8],[-91.52,-8.96],[-91,-10],[-87.62,-11.43],[-84,-13],[-81.93,-14.68],[-79,-17],[-76.87,-18.21],[-75,-19],[-74.52,-19.96],[-74,-21],[-68,-24],[-74,-33],[-109,-48],[-112,-50],[-126,-92],[-132,-121],[-135,-124],[-136,-127],[-145,-135],[-163,-143],[-210,-151],[-223,-156],[-229,-158],[-233,-162],[-236,-163],[-238,-166],[-243,-169],[-247,-174],[-254,-179],[-267,-188],[-305,-182],[-299,-165],[-286,-152],[-285,-150],[-276,-146],[-269,-144],[-267,-142],[-247,-135],[-243,-131],[-238,-128],[-237,-125],[-234,-123],[-233,-120],[-225,-95],[-219,-66],[-191,-48],[-169,-40],[-162,-37]],"c":true}],"h":1},{"t":45,"s":[{"i":[[-66.63,-23.8],[-70.2,-33.04],[-82.94,-36.59],[-91.18,-40.3],[-98.05,-43.16],[-103.41,-45.45],[-107.03,-47.27],[-111.6,-50.7],[-116.19,-54.78],[-118.51,-58.32],[-120.43,-61.73],[-124.01,-71.71],[-126.41,-86.89],[-128.22,-102.66],[-131.2,-117.45],[-133.92,-123.31],[-135.77,-124.69],[-136.42,-126.01],[-136.65,-127.6],[-142.87,-134.04],[-152.96,-140.4],[-174.49,-146.65],[-203.24,-149.88],[-215.38,-152.82],[-220.45,-154.35],[-225.15,-156.25],[-229.77,-158.24],[-231.35,-159.55],[-231.78,-160.83],[-232.99,-161.43],[-234.61,-161.69],[-235.55,-163.58],[-238.2,-164.31],[-247.98,-174.19],[-253.15,-177.31],[-259.07,-183.35],[-279.61,-192.18],[-303.52,-187.97],[-300.57,-165.64],[-291.52,-154.9],[-285.51,-151.92],[-281.34,-148.66],[-265.37,-142.49],[-250.51,-137.51],[-247.43,-134.32],[-244.79,-133.67],[-227.9,-111.51],[-222.78,-70.21],[-216.68,-61.76],[-212.84,-59.29],[-207.81,-54.92],[-196.87,-50.23],[-173.02,-44.37],[-162.04,-36],[-155.67,-30.01],[-153.73,7.9],[-122.1,10.67],[-99.72,-3.59],[-93.01,-8.69],[-86.03,-11.7],[-80.57,-15.93]],"o":[[-65.73,-31.49],[-78.8,-35.58],[-88.65,-39.22],[-95.88,-42.27],[-101.89,-44.82],[-105.98,-46.68],[-109.75,-49.31],[-114.82,-53.43],[-117.8,-57.2],[-119.83,-60.58],[-122.81,-67.02],[-125.81,-81.65],[-127.63,-97.44],[-130.01,-112.67],[-133.28,-122.71],[-135.16,-124.3],[-136.34,-125.46],[-136.58,-127.08],[-139.89,-131.34],[-149.41,-138.57],[-165.12,-145.21],[-193.55,-148.99],[-213.65,-152.4],[-218.77,-153.8],[-223.51,-155.63],[-228.27,-157.55],[-231.21,-159.13],[-231.63,-160.4],[-232.44,-161.33],[-234.08,-161.61],[-235.46,-162.36],[-236.75,-164.7],[-242.86,-168.3],[-251.77,-177.71],[-256.71,-180.2],[-269.25,-189.08],[-295.81,-190.34],[-306.19,-177.19],[-296.19,-161.07],[-287.78,-152.08],[-282.47,-150.06],[-272.77,-144.43],[-254.83,-138.37],[-247.59,-135.75],[-246.09,-133.32],[-233.18,-123.85],[-222.88,-82.92],[-216.32,-63.27],[-214.97,-59.84],[-209.2,-56.74],[-202.4,-52.16],[-183.88,-46.09],[-163.69,-38.56],[-157.29,-31.34],[-145.76,-12.1],[-137.16,21.17],[-103.35,-1.34],[-94.16,-7.19],[-88.97,-11.32],[-82.36,-14.05],[-72.82,-21.23]],"v":[[-62,-29],[-74.5,-34.31],[-86,-38],[-93.53,-41.29],[-100,-44],[-104.69,-46.07],[-108,-48],[-113.21,-52.07],[-117,-56],[-119.17,-59.45],[-121,-63],[-124.91,-76.68],[-127,-92],[-129.12,-107.67],[-133,-122],[-134.54,-123.8],[-136,-125],[-136.5,-126.54],[-137,-128],[-146.14,-136.31],[-157,-142],[-184.02,-147.82],[-212,-152],[-217.08,-153.31],[-222,-155],[-226.71,-156.9],[-231,-159],[-231.49,-159.97],[-232,-161],[-233.54,-161.52],[-235,-162],[-236,-164],[-239,-165],[-251,-177],[-254,-178],[-262,-185],[-290,-191],[-305,-182],[-299,-164],[-289,-153],[-284,-151],[-280,-148],[-259,-140],[-248,-136],[-247,-134],[-244,-133],[-225,-95],[-217,-64],[-216,-61],[-211,-58],[-206,-54],[-193,-49],[-166,-40],[-160,-34],[-154,-27],[-153,30],[-107,1],[-96,-6],[-91,-10],[-84,-13],[-79,-17]],"c":true}],"h":1},{"t":46,"s":[{"i":[[-154.07,9.63],[-150.99,29.25],[-146.88,27.4],[-145.68,26.49],[-145.18,25.12],[-144.4,24.9],[-143.25,25.12],[-142.68,24.49],[-142.19,23.12],[-140.03,21.94],[-136.91,20.59],[-118.64,8.6],[-93.58,-7.9],[-82.42,-14.83],[-80.26,-15.75],[-79.04,-16.7],[-77.42,-17.59],[-76.04,-18.7],[-74.42,-19.59],[-68.84,-23.51],[-61.56,-28.31],[-63.63,-30.79],[-70.77,-34.14],[-78.01,-36.71],[-84.51,-38.49],[-100.95,-44.73],[-117.79,-56.59],[-124.71,-71.36],[-126.33,-88.12],[-128.93,-105.74],[-134.06,-121.66],[-140.12,-130.59],[-148.38,-137.37],[-151.62,-139.6],[-152.65,-140.83],[-158.99,-143.3],[-168.83,-145.3],[-187.71,-148.63],[-212,-152.09],[-224.51,-156.41],[-231.98,-160.58],[-235.42,-163.02],[-237.38,-164.51],[-243.8,-169.92],[-252.51,-177.47],[-255.8,-179.66],[-256.6,-180.71],[-265.88,-186.52],[-283.84,-191.63],[-307.48,-178.47],[-290.63,-154.76],[-278.54,-147.77],[-267.94,-144.1],[-249.51,-137.41],[-245.75,-134.62],[-228.98,-113.1],[-224.37,-77.85],[-205.35,-54.17],[-163.05,-43.21],[-156.24,-31.38],[-154.41,-27.9]],"o":[[-152.55,29.8],[-148.15,28.05],[-145.84,26.93],[-145.35,25.59],[-144.77,24.85],[-143.64,25.04],[-142.84,24.93],[-142.36,23.59],[-141.07,22.39],[-137.95,21.04],[-126.85,14.06],[-102,-2.37],[-83.28,-14.46],[-80.9,-15.48],[-79.58,-16.4],[-77.96,-17.29],[-76.58,-18.4],[-74.96,-19.29],[-72.06,-21.86],[-63.59,-26.74],[-61.99,-29.97],[-68.01,-32.88],[-75.51,-35.97],[-82.51,-37.97],[-93.81,-41.68],[-112.94,-52.18],[-123.55,-66.3],[-126.1,-82.27],[-127.65,-99.67],[-132.14,-116.74],[-137.68,-127.91],[-145.47,-135.33],[-151.3,-139.19],[-152.3,-140.42],[-155.83,-142.4],[-165.5,-144.75],[-179.21,-147.58],[-204.1,-150.88],[-221.52,-155.12],[-229.74,-159.14],[-234.73,-162.51],[-236.74,-164.02],[-240.8,-167.19],[-249.66,-175.06],[-255.5,-179.31],[-256.35,-180.36],[-260.71,-183.7],[-277.45,-190.48],[-307.91,-189.16],[-295.84,-159.07],[-281.97,-149.59],[-271.07,-144.86],[-260.18,-141.2],[-246.35,-134.38],[-234.28,-125.15],[-224.31,-87.86],[-217.41,-59.58],[-182.41,-46.4],[-157.85,-31.67],[-155.24,-29.81],[-147,-11.5]],"v":[[-154,30],[-149.57,28.65],[-146,27],[-145.52,26.04],[-145,25],[-144.02,24.97],[-143,25],[-142.52,24.04],[-142,23],[-138.99,21.49],[-136,20],[-110.32,3.12],[-84,-14],[-81.66,-15.15],[-80,-16],[-78.5,-16.99],[-77,-18],[-75.5,-18.99],[-74,-20],[-66.21,-25.13],[-62,-30],[-65.82,-31.83],[-73,-35],[-80.26,-37.34],[-86,-39],[-106.95,-48.46],[-121,-62],[-125.41,-76.81],[-127,-94],[-130.53,-111.24],[-136,-125],[-142.8,-132.96],[-151,-139],[-151.96,-140.01],[-153,-141],[-162.24,-144.02],[-172,-146],[-195.9,-149.75],[-218,-154],[-227.12,-157.77],[-234,-162],[-236.08,-163.52],[-238,-165],[-246.73,-172.49],[-255,-179],[-256.07,-180.01],[-257,-181],[-271.66,-188.5],[-290,-191],[-300,-166],[-286,-152],[-274,-146],[-265,-143],[-247,-135],[-245,-134],[-226,-97],[-221,-69],[-196,-51],[-158,-32],[-156,-31],[-154,-27]],"c":true}],"h":1},{"t":47,"s":[{"i":[[-154.06,-0.83],[-152.08,30.31],[-149.68,28.39],[-147,26.74],[-144.01,24.65],[-140.37,22.51],[-136.47,20.45],[-135.04,19.3],[-133.43,18.41],[-132.36,17.54],[-131.54,17.35],[-125.75,13.44],[-117.56,8.15],[-114.68,6.48],[-114.2,5.12],[-110.62,3.16],[-105.93,0.76],[-98.19,-5.11],[-87.83,-11.56],[-81.73,-15.27],[-77.39,-17.62],[-76.04,-18.7],[-74.42,-19.59],[-68.72,-23.64],[-60.74,-28.64],[-64.23,-31.73],[-82.22,-38.33],[-118.31,-52.68],[-126.77,-86.18],[-130.35,-110.24],[-136.55,-125.81],[-143.04,-134.39],[-190.11,-148.4],[-227.07,-156.46],[-233.57,-161.68],[-236.23,-162.42],[-248.22,-173.32],[-254.3,-178.46],[-257.07,-179.32],[-260.24,-182.84],[-264.22,-184.51],[-268.43,-186.83],[-274.55,-189.66],[-302.91,-190.05],[-303.36,-173.63],[-296.05,-160.05],[-290.68,-156.25],[-285.87,-151.51],[-273.63,-147.13],[-262.65,-142.06],[-251.62,-138.55],[-247.85,-135.81],[-245.82,-134.64],[-230.55,-114.44],[-226.45,-90.43],[-223.05,-77.07],[-220.65,-67.39],[-204.95,-54.97],[-186.74,-49.6],[-169.59,-43.53],[-167.18,-41.7]],"o":[[-152.99,30.61],[-150.42,29.2],[-148,27.42],[-145.01,25.36],[-141.88,23.28],[-137.66,21.09],[-135.58,19.6],[-133.97,18.71],[-132.59,17.61],[-131.84,17.4],[-128.47,15.36],[-120.3,9.84],[-114.83,6.92],[-114.36,5.58],[-112.4,4.03],[-107.38,1.53],[-101.53,-2.83],[-91.34,-9.48],[-83.28,-14.46],[-78.78,-16.85],[-76.58,-18.4],[-74.96,-19.29],[-72.1,-21.82],[-63.05,-27.05],[-60.99,-29.95],[-73.11,-35.8],[-103.83,-45.87],[-127.17,-76.53],[-128.77,-102.17],[-133.44,-121.01],[-141.01,-131.62],[-160.22,-148.53],[-219.43,-154.56],[-233.41,-160.24],[-234.86,-162.65],[-242.62,-167.23],[-253.8,-177.62],[-255.86,-179.65],[-259.52,-181.1],[-262.92,-184.6],[-267.56,-186.59],[-273.63,-188.54],[-286.95,-192.53],[-306.34,-178.48],[-298.83,-164.73],[-292.78,-156.78],[-287.16,-153.63],[-280.22,-148.19],[-265.29,-143.98],[-256.19,-139.47],[-249.16,-136.2],[-246.32,-134.35],[-236.24,-127.08],[-226.66,-98.53],[-224.44,-80.12],[-220.91,-70.8],[-214.37,-58.29],[-191.55,-50.52],[-178.72,-46.89],[-167.15,-41.18],[-144.77,-28.38]],"v":[[-154,30],[-151.25,29.75],[-149,28],[-146.01,26.05],[-143,24],[-139.02,21.8],[-136,20],[-134.5,19.01],[-133,18],[-132.1,17.47],[-131,17],[-123.02,11.64],[-115,7],[-114.52,6.03],[-114,5],[-109,2.35],[-105,0],[-94.77,-7.29],[-84,-14],[-80.26,-16.06],[-77,-18],[-75.5,-18.99],[-74,-20],[-65.89,-25.34],[-61,-30],[-67,-33],[-87,-40],[-124,-68],[-128,-96],[-132,-116],[-139,-129],[-145,-136],[-212,-153],[-233,-160],[-234,-162],[-237,-163],[-253,-177],[-255,-179],[-258,-180],[-262,-184],[-265,-185],[-272,-188],[-276,-190],[-305,-183],[-301,-169],[-294,-158],[-289,-155],[-285,-151],[-268,-145],[-260,-141],[-250,-137],[-247,-135],[-245,-134],[-228,-104],[-225,-83],[-222,-74],[-219,-65],[-196,-52],[-182,-48],[-168,-42],[-166,-41]],"c":true}],"h":1},{"t":48,"s":[{"i":[[-71.19,-21.39],[-84.11,-39.5],[-119.03,-55.18],[-127.16,-77.79],[-129.1,-96.05],[-132.79,-115.77],[-140.95,-132.5],[-145.93,-136.44],[-147.52,-136.66],[-148.69,-137.9],[-149.57,-139.72],[-152.01,-141.04],[-155.79,-142.48],[-159.66,-144.11],[-163.71,-145.6],[-170.86,-147.44],[-179.79,-148.55],[-202.13,-151.35],[-227.42,-156.96],[-242.29,-167.07],[-253.26,-177.24],[-261.19,-182.99],[-268.31,-187.35],[-284.04,-191.04],[-303.81,-187.02],[-305.24,-177.82],[-301.67,-168.55],[-295.73,-160.67],[-288.44,-154.65],[-286.68,-153.49],[-286.19,-152.12],[-282.86,-150.42],[-277.55,-148.64],[-260.53,-142.11],[-241.91,-131.28],[-237.41,-124.37],[-236.2,-123.33],[-231.61,-114.16],[-227.93,-99.31],[-226.07,-87.73],[-224.66,-78.33],[-222.66,-72.49],[-219.93,-68.39],[-218.19,-65.48],[-217.28,-63.29],[-212.2,-59.3],[-202.93,-54.77],[-176.9,-48.42],[-163.98,-38.94],[-157.53,-33.01],[-155.65,6.67],[-151.51,28.8],[-143.27,25.22],[-139.85,22.82],[-136.85,20.82],[-133.85,18.82],[-132.08,17.7],[-120.19,9.34],[-114.4,5.24],[-106.86,1.52],[-98.65,-4.29]],"o":[[-70.6,-36.16],[-108.33,-49.01],[-126.11,-72.02],[-128.65,-89.81],[-131.06,-109.02],[-137.73,-127.51],[-145.42,-136.36],[-146.98,-136.59],[-148.41,-137.29],[-149.27,-139.12],[-150.87,-140.55],[-154.48,-142.01],[-158.31,-143.56],[-162.36,-145.13],[-167.97,-146.92],[-176.77,-148.26],[-192.67,-150.36],[-219.5,-154.65],[-238.41,-163.7],[-249.72,-173.84],[-258.78,-181.32],[-265.96,-186.01],[-275.89,-190.28],[-298,-189.41],[-305.65,-180.8],[-303.24,-171.7],[-298.26,-163.34],[-290.82,-156.32],[-286.83,-153.92],[-286.36,-152.58],[-284.58,-151.1],[-279.34,-149.19],[-268.08,-144.72],[-247.44,-135.39],[-237.81,-124.7],[-236.61,-123.68],[-233.4,-118.76],[-228.88,-104.44],[-226.48,-91.07],[-225.16,-81.36],[-223.44,-74.04],[-220.9,-69.67],[-218.55,-66.33],[-217.55,-63.95],[-215.24,-61.17],[-206.05,-56.11],[-190.28,-49.72],[-165.72,-41.61],[-159.36,-34.41],[-147.9,-14.07],[-152.8,32.16],[-147.12,26.49],[-141.16,23.2],[-138.16,21.2],[-135.16,19.2],[-132.19,17.22],[-125.62,13.52],[-114.66,6.85],[-110.85,3.1],[-102.01,-2.43],[-83.6,-14.03]],"v":[[-60,-30],[-96.22,-44.25],[-124,-67],[-127.91,-83.8],[-130,-102],[-135.26,-121.64],[-145,-136],[-146.45,-136.52],[-148,-137],[-148.98,-138.51],[-150,-140],[-153.24,-141.53],[-157,-143],[-161.01,-144.62],[-165,-146],[-173.81,-147.85],[-183,-149],[-210.82,-153],[-234,-161],[-246.01,-170.45],[-257,-180],[-263.57,-184.5],[-270,-188],[-291.02,-190.23],[-305,-183],[-304.24,-174.76],[-300,-166],[-293.27,-158.49],[-287,-154],[-286.52,-153.03],[-286,-152],[-281.1,-149.81],[-276,-148],[-253.99,-138.75],[-238,-125],[-237.01,-124.02],[-236,-123],[-230.25,-109.3],[-227,-94],[-225.61,-84.55],[-224,-76],[-221.78,-71.08],[-219,-67],[-217.87,-64.71],[-217,-63],[-209.13,-57.71],[-201,-54],[-168,-43],[-162,-37],[-156,-30],[-155,30],[-150,28],[-142,24],[-139,22],[-136,20],[-133,18],[-131,17],[-115,7],[-114,5],[-105,0],[-96,-6]],"c":true}],"h":1},{"t":49,"s":[{"i":[[-157.66,5.15],[-144.45,25.26],[-129.54,15.95],[-118.82,8.89],[-110.15,3.02],[-104.33,-0.52],[-100.43,-2.59],[-99.04,-3.7],[-97.42,-4.59],[-96.04,-5.7],[-94.42,-6.59],[-93.04,-7.7],[-91.42,-8.59],[-90.04,-9.7],[-88.42,-10.59],[-87.37,-11.48],[-86.59,-11.65],[-81.32,-14.98],[-74.38,-19.85],[-65.94,-25.08],[-59.77,-29.86],[-64.22,-33.74],[-79.03,-38.96],[-93.11,-43.87],[-108.45,-50.47],[-114.93,-55.16],[-118.16,-58.05],[-127.41,-76.74],[-131.42,-110.87],[-140.96,-131.73],[-155.08,-142.37],[-185.82,-150.18],[-222.23,-154.14],[-235.7,-161.74],[-239.69,-165.01],[-243.81,-168.08],[-247.78,-171],[-254.26,-176.67],[-262.08,-183.41],[-279.01,-190.11],[-303.24,-188.89],[-303.5,-170.73],[-290.08,-155.42],[-282.88,-150.97],[-274.01,-147.17],[-264.72,-143.95],[-255.06,-140.77],[-250.89,-138.06],[-249.41,-136.28],[-244.72,-132.89],[-240.15,-127.94],[-238.41,-125.09],[-237.29,-123.48],[-234.54,-118.75],[-231.78,-112.5],[-228.86,-102.06],[-226.86,-90.55],[-225.18,-80.76],[-223.28,-72.38],[-213.03,-60.4],[-170.35,-49.04]],"o":[[-149.68,28.29],[-134.38,19.09],[-121.74,10.89],[-113.02,4.96],[-105.86,0.27],[-101.61,-1.95],[-99.58,-3.4],[-97.96,-4.29],[-96.58,-5.4],[-94.96,-6.29],[-93.58,-7.4],[-91.96,-8.29],[-90.58,-9.4],[-88.96,-10.29],[-87.57,-11.41],[-86.87,-11.6],[-83.38,-13.55],[-76.82,-18.13],[-68.8,-23.4],[-61.42,-28.31],[-60.21,-32.01],[-73.63,-37.22],[-87.39,-41.89],[-103.64,-48.16],[-113.6,-54.14],[-117.21,-57.12],[-125.2,-66.06],[-130.52,-99.15],[-137.67,-126.79],[-149.67,-139.52],[-173.46,-149.36],[-210.21,-152.57],[-234.36,-160.74],[-238.36,-163.88],[-242.43,-167.08],[-246.49,-170.04],[-251.72,-174.22],[-259.43,-181.27],[-269.89,-187.66],[-295.69,-190.72],[-306.71,-177.27],[-295.19,-159.8],[-285.63,-152.38],[-277.07,-148.36],[-267.94,-144.81],[-258.28,-141.93],[-251.43,-138.67],[-249.88,-136.86],[-246.65,-134.42],[-241.47,-129.65],[-238.76,-125.6],[-237.67,-124.03],[-235.65,-120.75],[-232.61,-114.62],[-229.68,-105.79],[-227.45,-94.45],[-225.54,-83.57],[-224.05,-75.17],[-219.79,-65.89],[-193.29,-51.28],[-145.99,-18.35]],"v":[[-155,31],[-139.41,22.18],[-125,13],[-115.92,6.93],[-107,1],[-102.97,-1.24],[-100,-3],[-98.5,-4],[-97,-5],[-95.5,-5.99],[-94,-7],[-92.5,-7.99],[-91,-9],[-89.5,-9.99],[-88,-11],[-87.12,-11.54],[-86,-12],[-79.07,-16.55],[-71,-22],[-63.68,-26.69],[-60,-31],[-68.93,-35.48],[-82,-40],[-98.38,-46.01],[-112,-53],[-116.07,-56.14],[-119,-59],[-128.96,-87.95],[-135,-120],[-145.31,-135.62],[-162,-145],[-198.02,-151.37],[-233,-160],[-237.03,-162.81],[-241,-166],[-245.15,-169.06],[-249,-172],[-256.85,-178.97],[-265,-185],[-287.35,-190.41],[-305,-183],[-299.35,-165.27],[-288,-154],[-279.98,-149.66],[-271,-146],[-261.5,-142.94],[-252,-139],[-250.38,-137.46],[-249,-136],[-243.1,-131.27],[-239,-126],[-238.04,-124.56],[-237,-123],[-233.57,-116.69],[-231,-110],[-228.16,-98.26],[-226,-86],[-224.61,-77.97],[-222,-70],[-210,-59],[-160,-36]],"c":true}],"h":1},{"t":50,"s":[{"i":[[-157.91,2.85],[-153.6,31.15],[-151.06,28.58],[-147.04,26.59],[-142.57,24.55],[-141.04,23.3],[-139.43,22.41],[-138.04,21.3],[-136.43,20.41],[-135.04,19.3],[-133.43,18.41],[-132.36,17.54],[-131.54,17.35],[-123.42,11.96],[-111.38,3.8],[-104.33,-0.52],[-100.43,-2.59],[-99.04,-3.7],[-97.42,-4.59],[-96.04,-5.7],[-94.42,-6.59],[-93.04,-7.7],[-91.42,-8.59],[-90.04,-9.7],[-88.42,-10.59],[-87.37,-11.48],[-86.59,-11.65],[-81.38,-14.94],[-74.48,-19.79],[-59.65,-28.64],[-63,-32.45],[-75.2,-38.68],[-88.05,-43.25],[-98.69,-46],[-104.95,-49.91],[-112.16,-52.64],[-122.3,-62.85],[-130.18,-90.2],[-133.8,-114.22],[-142.65,-134.05],[-162.86,-146.95],[-181.02,-150.5],[-217.78,-151.99],[-241.87,-166.5],[-246.32,-170.48],[-249.18,-171.33],[-254.6,-177.18],[-262.11,-181.82],[-265.31,-184.63],[-311.49,-195.35],[-300.18,-167.7],[-287.3,-154.05],[-256.29,-141.85],[-248.47,-135.35],[-245.8,-134.73],[-243.69,-131.88],[-240.83,-129.14],[-229.53,-94.91],[-222.71,-70.48],[-200.51,-55.4],[-165.51,-44.76]],"o":[[-154.57,31.61],[-151.84,29.64],[-148.75,27.32],[-143.95,25.21],[-141.58,23.6],[-139.97,22.71],[-138.58,21.6],[-136.97,20.71],[-135.58,19.6],[-133.97,18.71],[-132.59,17.61],[-131.84,17.4],[-127.23,14.56],[-115.49,6.58],[-105.86,0.27],[-101.61,-1.95],[-99.58,-3.4],[-97.96,-4.29],[-96.58,-5.4],[-94.96,-6.29],[-93.58,-7.4],[-91.96,-8.29],[-90.58,-9.4],[-88.96,-10.29],[-87.57,-11.41],[-86.87,-11.6],[-83.39,-13.55],[-76.92,-18.06],[-66.47,-24.88],[-60.17,-32.16],[-70.22,-36.18],[-86.56,-42.63],[-95.51,-45.89],[-103.05,-47.89],[-109.54,-52.35],[-117.92,-56.9],[-130,-77.09],[-133.04,-108.71],[-138.99,-127.87],[-154.94,-143.13],[-176.12,-149.92],[-200.07,-152.88],[-237.4,-162.31],[-245.76,-169.61],[-247.8,-171.61],[-252.62,-174.15],[-259.39,-180.82],[-264.6,-183.37],[-279.09,-191.99],[-303.03,-170.1],[-293.05,-157.38],[-268.3,-145.77],[-248.55,-136.7],[-247.07,-134.3],[-244.18,-133.25],[-242.21,-130],[-229.69,-113.82],[-223.16,-74.27],[-215.14,-59.51],[-177.65,-48.01],[-147.19,-17.29]],"v":[[-156,31],[-152.72,30.4],[-150,28],[-145.5,25.9],[-142,24],[-140.5,23.01],[-139,22],[-137.5,21.01],[-136,20],[-134.5,19.01],[-133,18],[-132.1,17.47],[-131,17],[-119.46,9.27],[-107,1],[-102.97,-1.24],[-100,-3],[-98.5,-4],[-97,-5],[-95.5,-5.99],[-94,-7],[-92.5,-7.99],[-91,-9],[-89.5,-9.99],[-88,-11],[-87.12,-11.54],[-86,-12],[-79.15,-16.5],[-71,-22],[-60,-31],[-66,-34],[-79,-40],[-93,-45],[-101,-47],[-107,-51],[-114,-54],[-124,-66],[-132,-102],[-136,-120],[-148,-138],[-172,-149],[-185,-151],[-233,-160],[-245,-169],[-247,-171],[-250,-172],[-257,-179],[-264,-183],[-266,-185],[-304,-173],[-299,-166],[-278,-150],[-249,-137],[-248,-135],[-245,-134],[-243,-131],[-240,-128],[-224,-77],[-221,-68],[-190,-52],[-159,-35]],"c":true}],"h":1},{"t":51,"s":[{"i":[[-159.93,6.87],[-139.76,22.3],[-115.9,6.7],[-99.56,-3.92],[-87.61,-11.37],[-83.68,-13.51],[-83.19,-14.88],[-82.39,-15.09],[-81.26,-14.88],[-80.68,-15.51],[-80.18,-16.88],[-79.4,-17.1],[-78.25,-16.89],[-77.68,-17.51],[-77.19,-18.88],[-74.12,-20.46],[-69.54,-22.48],[-68.04,-23.7],[-66.42,-24.59],[-65.36,-25.44],[-64.49,-25.66],[-59.25,-30.6],[-64.06,-34.54],[-70.62,-37.66],[-75.57,-39.5],[-82.5,-41.93],[-88.78,-44.19],[-93.66,-45.73],[-97.81,-46.54],[-106.19,-50.19],[-114.65,-55.89],[-119.1,-59.89],[-121.5,-62.31],[-128.96,-78.48],[-131.81,-105.56],[-135.81,-119.68],[-139.98,-128.93],[-143.78,-133.68],[-149.5,-139.9],[-153.79,-141.32],[-157.18,-144.61],[-212.58,-149.04],[-241.98,-165.73],[-264.71,-186.13],[-303.47,-190.27],[-300.17,-167.98],[-297.6,-162.79],[-292.49,-158.67],[-290.37,-156.25],[-278.48,-150.62],[-257.99,-143.03],[-250.23,-136.95],[-244.1,-132.66],[-241.61,-129.79],[-231.52,-108.14],[-225.68,-73.88],[-214.66,-62.43],[-193.62,-53.87],[-175.7,-48.98],[-170.81,-45.47],[-160.61,-37.72]],"o":[[-147.55,27.2],[-123.93,12.05],[-103.51,-1.24],[-91.61,-8.99],[-83.83,-13.07],[-83.36,-14.41],[-82.77,-15.15],[-81.64,-14.96],[-80.84,-15.07],[-80.35,-16.41],[-79.77,-17.15],[-78.64,-16.96],[-77.83,-17.07],[-77.36,-18.42],[-75.85,-19.72],[-70.97,-21.84],[-68.58,-23.4],[-66.96,-24.29],[-65.62,-25.37],[-64.8,-25.59],[-59.97,-28.83],[-61.29,-33.46],[-68.84,-36.91],[-73.99,-38.96],[-80.11,-41.08],[-86.83,-43.48],[-92.25,-45.46],[-96.44,-46.27],[-102.86,-48.49],[-112.08,-53.89],[-118.1,-58.98],[-120.8,-61.55],[-127.06,-69.95],[-131.33,-96.28],[-134.57,-116.21],[-138.52,-126.04],[-142.62,-131.69],[-146.78,-136.94],[-152.12,-141.83],[-156.52,-142.86],[-180.53,-155.72],[-238.44,-162.83],[-255.17,-175.62],[-289.45,-191.91],[-306.1,-174.33],[-297.35,-164.1],[-295.41,-159.93],[-290.68,-157.85],[-284.8,-152.51],[-265.98,-145.57],[-250.79,-138.66],[-247.09,-134.52],[-242.36,-130.04],[-234.06,-119.99],[-227.12,-86.96],[-217.85,-65.71],[-201.96,-55.8],[-180.88,-49.63],[-171.41,-46.68],[-164.83,-42.01],[-148.09,-15.09]],"v":[[-156,32],[-131.84,17.18],[-107,1],[-95.59,-6.46],[-84,-13],[-83.52,-13.96],[-83,-15],[-82.02,-15.03],[-81,-15],[-80.52,-15.96],[-80,-17],[-79.02,-17.03],[-78,-17],[-77.52,-17.96],[-77,-19],[-72.55,-21.15],[-69,-23],[-67.5,-23.99],[-66,-25],[-65.08,-25.52],[-64,-26],[-60.27,-32.03],[-67,-36],[-72.31,-38.31],[-77,-40],[-84.66,-42.71],[-91,-45],[-95.05,-46],[-99,-47],[-109.14,-52.04],[-117,-58],[-119.95,-60.72],[-122,-63],[-130.15,-87.38],[-134,-114],[-137.16,-122.86],[-141,-130],[-145,-135],[-151,-141],[-155,-142],[-158,-145],[-235,-161],[-245,-168],[-277,-189],[-305,-181],[-298,-165],[-297,-162],[-291,-158],[-290,-156],[-272,-148],[-253,-140],[-249,-136],[-243,-131],[-241,-129],[-229,-96],[-221,-69],[-210,-60],[-185,-51],[-172,-47],[-170,-45],[-158,-33]],"c":true}],"h":1},{"t":52,"s":[{"i":[[-159.45,0.23],[-154.66,31.91],[-151.82,29.46],[-149.11,28.11],[-146.76,27.34],[-145.68,26.49],[-145.19,25.12],[-144.4,24.91],[-143.26,25.12],[-142.68,24.49],[-142.18,23.12],[-140.51,23.23],[-139.37,21.25],[-137.51,21.23],[-136.37,19.25],[-134.51,19.23],[-133.38,17.25],[-126.1,14.06],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.82,0.21],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.07,-13.65],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.39,-18.76],[-70.08,-21.96],[-66.85,-24.18],[-58.55,-29.38],[-65.37,-35.56],[-88.42,-44.92],[-109.46,-51.57],[-120.6,-60.65],[-131.87,-94.11],[-134.29,-113.47],[-141.97,-130.55],[-151.09,-140.85],[-164.17,-147.57],[-215.91,-150.53],[-242.87,-166.64],[-255.87,-177.02],[-280.47,-193.14],[-306.1,-181.07],[-293.93,-159.4],[-262.8,-146.36],[-242.65,-131.01],[-230.24,-98.46],[-225.31,-74.74],[-217.52,-66.16],[-214.88,-63.6],[-192.62,-55.39],[-179.64,-49.66],[-172.96,-48.11],[-168.37,-44.04],[-163.4,-40.65]],"o":[[-155.75,32.19],[-152.69,30.55],[-149.98,28.43],[-147.5,27.56],[-145.83,26.93],[-145.36,25.59],[-144.77,24.85],[-143.64,25.04],[-142.84,24.93],[-142.35,23.59],[-141.54,22.69],[-139.68,22.85],[-138.54,20.69],[-136.68,20.85],[-135.54,18.69],[-133.67,18.85],[-130.69,15.52],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.08,2.21],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-86.76,-11.46],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-74.94,-20.3],[-68.16,-23.8],[-62.94,-27.93],[-59.16,-32.94],[-81.2,-42.42],[-102.24,-49.88],[-115.76,-57.6],[-130.64,-74.69],[-134.45,-109.74],[-137.22,-123.93],[-149.46,-138.81],[-160.11,-145.81],[-191.75,-155.75],[-240.14,-163.71],[-251.01,-172.77],[-267.53,-185.43],[-305.03,-187.83],[-300.17,-165.64],[-277.35,-147.95],[-247.37,-135.85],[-232.5,-114.31],[-225.94,-80.59],[-221.41,-68.42],[-215.27,-64.44],[-205.24,-56.99],[-181.35,-51.42],[-175.41,-47.95],[-169.6,-46.21],[-164.88,-41.38],[-147.55,-21.96]],"v":[[-157,31],[-153.68,31.23],[-151,29],[-148.3,27.83],[-146,27],[-145.52,26.04],[-145,25],[-144.02,24.97],[-143,25],[-142.52,24.04],[-142,23],[-140,23],[-139,21],[-137,21],[-136,19],[-134,19],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-69,-23],[-66,-25],[-59,-32],[-71,-38],[-97,-48],[-112,-54],[-123,-64],[-134,-107],[-135,-116],[-146,-135],[-155,-143],[-169,-149],[-237,-162],[-246,-169],[-260,-180],[-295,-190],[-303,-173],[-289,-156],[-252,-139],[-239,-125],[-227,-85],[-223,-71],[-216,-65],[-214,-63],[-183,-52],[-178,-49],[-171,-47],[-167,-43],[-162,-39]],"c":true}],"h":1},{"t":53,"s":[{"i":[[-161.49,4.06],[-152.27,30.34],[-146.02,26.29],[-131.62,17],[-113.58,5.22],[-99.65,-3.86],[-87.5,-11.42],[-83.68,-13.51],[-83.19,-14.88],[-82.39,-15.09],[-81.26,-14.88],[-80.68,-15.51],[-80.18,-16.88],[-79.4,-17.1],[-78.25,-16.89],[-77.68,-17.51],[-77.19,-18.88],[-74.13,-20.45],[-69.57,-22.46],[-68.04,-23.7],[-66.42,-24.59],[-65.04,-25.7],[-63.42,-26.59],[-62.36,-27.44],[-61.49,-27.66],[-58.1,-31.76],[-65.33,-36.19],[-78.86,-42.39],[-90.58,-46.06],[-102.19,-50.1],[-110.08,-53.12],[-112.7,-55.27],[-115.28,-56.49],[-119.48,-59.95],[-122.11,-63.83],[-123.65,-65.64],[-124.7,-66.51],[-130.79,-82.68],[-134.39,-110.91],[-145.65,-136.62],[-170.14,-150.1],[-201.47,-154.1],[-230.26,-158.27],[-239.21,-163.35],[-242.17,-165.44],[-252.85,-173.43],[-259.54,-178.56],[-262.15,-180.18],[-267.7,-184.83],[-289.56,-191.54],[-304.15,-172.43],[-292.37,-159.25],[-278.28,-150.99],[-257.48,-143.37],[-252.85,-139.81],[-240.06,-127.63],[-232.52,-106.75],[-229.23,-89.91],[-219.97,-65.95],[-197.76,-56.83],[-167.38,-47.56]],"o":[[-154.51,31.44],[-148.03,27.76],[-137.57,20.89],[-119.62,9.16],[-103.65,-1.14],[-91.57,-9],[-83.83,-13.07],[-83.36,-14.41],[-82.77,-15.15],[-81.64,-14.96],[-80.84,-15.07],[-80.35,-16.41],[-79.77,-17.15],[-78.64,-16.96],[-77.83,-17.07],[-77.36,-18.42],[-75.85,-19.73],[-70.99,-21.82],[-68.58,-23.4],[-66.96,-24.29],[-65.58,-25.4],[-63.96,-26.29],[-62.62,-27.37],[-61.79,-27.59],[-57.94,-30.16],[-61.79,-34.77],[-74.82,-40.86],[-86.74,-44.99],[-98.89,-49.04],[-107.78,-52.14],[-111.81,-54.78],[-114.44,-56.13],[-118.18,-58.54],[-121.45,-62.6],[-123.3,-65.39],[-124.35,-66.2],[-129.1,-73.72],[-133.44,-101.27],[-140.33,-129.32],[-160.55,-147.01],[-191.1,-153.46],[-221.05,-156.5],[-238.13,-162.62],[-241.23,-164.76],[-247.47,-168.98],[-257.31,-177.07],[-260.84,-179.8],[-265.08,-182.99],[-276.48,-189.3],[-310.31,-184.46],[-295.14,-161.54],[-283.44,-153.27],[-266.41,-146.11],[-254.16,-140.2],[-246.46,-133.69],[-233.69,-113.83],[-229.96,-95.4],[-224.89,-72.59],[-204.63,-58.33],[-179.38,-50.99],[-148.26,-18.9]],"v":[[-157,32],[-150.15,29.05],[-144,25],[-125.62,13.08],[-107,1],[-95.61,-6.43],[-84,-13],[-83.52,-13.96],[-83,-15],[-82.02,-15.03],[-81,-15],[-80.52,-15.96],[-80,-17],[-79.02,-17.03],[-78,-17],[-77.52,-17.96],[-77,-19],[-72.56,-21.14],[-69,-23],[-67.5,-23.99],[-66,-25],[-64.5,-25.99],[-63,-27],[-62.08,-27.52],[-61,-28],[-59.95,-33.26],[-69,-38],[-82.8,-43.69],[-96,-48],[-104.98,-51.12],[-111,-54],[-113.57,-55.7],[-116,-57],[-120.46,-61.28],[-123,-65],[-124,-65.92],[-125,-67],[-132.12,-91.98],[-137,-119],[-153.1,-141.81],[-182,-152],[-211.26,-155.3],[-237,-162],[-240.22,-164.05],[-243,-166],[-256,-176],[-260,-179],[-263,-181],[-270,-186],[-297,-189],[-298,-165],[-289,-157],[-271,-148],[-255,-141],[-252,-139],[-237,-121],[-231,-100],[-228,-85],[-210,-61],[-192,-55],[-161,-38]],"c":true}],"h":1},{"t":54,"s":[{"i":[[-294.31,-189.17],[-295.32,-188.95],[-295.83,-188.97],[-296.34,-189.02],[-296.84,-189.03],[-301.04,-187.76],[-304.29,-184.16],[-305.02,-179.29],[-303.8,-173.82],[-299.33,-165.5],[-291.52,-158.46],[-282.22,-153.4],[-273.27,-149.65],[-264.91,-146.34],[-257.75,-142.8],[-252.37,-139.11],[-241.5,-128.18],[-232.9,-108.2],[-229.45,-92.21],[-227.15,-80.96],[-225.09,-75.54],[-223.5,-71.72],[-219.19,-67.07],[-212.72,-63.89],[-199.96,-58.29],[-183.47,-53.35],[-175.09,-49.75],[-170.52,-47.5],[-165.2,-42.46],[-159.07,-34.9],[-155.61,-16.2],[-159.08,10.04],[-158.72,26.98],[-155.54,32.34],[-149.71,29.01],[-145.09,25.7],[-117.96,8.16],[-83.44,-14.44],[-65.85,-25.15],[-57.87,-30.42],[-59.88,-33.51],[-68.24,-38.74],[-77.33,-42.43],[-85.22,-44.41],[-104.1,-50.97],[-124.49,-64.75],[-131.37,-81.75],[-133.13,-97.47],[-136.71,-115.8],[-143.92,-132.38],[-150.63,-140.11],[-156.35,-144.62],[-184.54,-153.05],[-226.8,-156.49],[-242.15,-165.09],[-246.55,-168.94],[-251.43,-172.4],[-256.41,-175.79],[-264.58,-181.99],[-275.64,-188.03],[-286.57,-189.79]],"o":[[-295.16,-188.96],[-295.65,-188.95],[-296.17,-189],[-296.67,-189.03],[-299.31,-188.58],[-303.53,-185.55],[-305.03,-181.03],[-304.4,-175.69],[-301.44,-168.44],[-294.37,-160.51],[-285.45,-154.9],[-276.06,-150.73],[-267.69,-147.46],[-259.82,-143.99],[-254.03,-140.36],[-245.55,-133.58],[-235.18,-115.49],[-230.12,-96.23],[-227.96,-84.58],[-225.58,-76.92],[-224.05,-72.93],[-221.33,-68.62],[-214.88,-64.7],[-205.48,-60.12],[-188.96,-54.91],[-176.83,-50.5],[-171.94,-48.25],[-167.66,-44.76],[-160.9,-37.53],[-155.31,-24.72],[-157.49,1.18],[-158.95,23.06],[-157.01,31.62],[-151.41,30.16],[-146.55,26.78],[-129.74,15.89],[-94.81,-7],[-68.92,-23.69],[-60.32,-28.51],[-58.01,-32.14],[-65,-36.81],[-74.23,-41.48],[-82.83,-43.9],[-95.6,-47.85],[-118.54,-59.43],[-130.31,-76.77],[-132.79,-92.11],[-135,-109.36],[-141.17,-127.31],[-148.95,-138.3],[-154.33,-143.27],[-170.64,-152.05],[-212.62,-155.27],[-240.63,-163.87],[-245.11,-167.63],[-249.73,-171.26],[-254.77,-174.67],[-261.26,-179.47],[-271.77,-186.27],[-283.16,-189.7],[-292.14,-189.52]],"v":[[-295,-189],[-295.49,-188.95],[-296,-188.99],[-296.51,-189.03],[-297,-189],[-302.29,-186.65],[-304.66,-182.6],[-304.71,-177.49],[-303,-172],[-296.85,-163],[-288.48,-156.68],[-279,-152],[-270.48,-148.55],[-262,-145],[-255.89,-141.58],[-251,-138],[-238.34,-121.84],[-231,-100],[-228.71,-88.4],[-226,-78],[-224.57,-74.23],[-223,-71],[-217.03,-65.89],[-211,-63],[-194.46,-56.6],[-178,-51],[-173.52,-49],[-170,-47],[-163.05,-39.99],[-158,-32],[-156.55,-7.51],[-159,18],[-157.86,29.3],[-153,31],[-148.13,27.9],[-144,25],[-106.39,0.58],[-70,-23],[-63.09,-26.83],[-58,-32],[-62.44,-35.16],[-71,-40],[-80.08,-43.17],[-87,-45],[-111.32,-55.2],[-128,-72],[-132.08,-86.93],[-134,-103],[-138.94,-121.56],[-147,-136],[-152.48,-141.69],[-159,-146],[-198.58,-154.16],[-239,-163],[-243.63,-166.36],[-248,-170],[-253.1,-173.53],[-258,-177],[-268.18,-184.13],[-280,-189],[-289.35,-189.65]],"c":true}],"h":1},{"t":55,"s":[{"i":[[-294.3,-189.17],[-301.22,-187.37],[-304.57,-183.65],[-304.51,-175.65],[-300.69,-168.94],[-297.7,-164.68],[-295.61,-162.24],[-291.54,-159.11],[-287.97,-156.56],[-284.13,-154.42],[-280.27,-152.58],[-271.79,-149.21],[-260.4,-145.03],[-256.79,-142.78],[-256.03,-142.03],[-254.25,-140.46],[-251.82,-138.67],[-248.33,-135.7],[-245.56,-132.24],[-244.49,-130.68],[-243.12,-130.18],[-243.23,-128.51],[-241.24,-127.41],[-236.96,-118.52],[-231.95,-103.25],[-230.24,-89.45],[-221.59,-69.64],[-188.74,-56.63],[-158.78,-39.36],[-157.33,-4.66],[-161.3,38.95],[-150.85,29.82],[-139.16,22.15],[-126.76,14.69],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-88.85,-10.18],[-83.08,-14.06],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-57.86,-28.46],[-64.75,-37],[-115.28,-51.93],[-133.9,-106.44],[-143.95,-130.94],[-155.98,-145.1],[-186.25,-154.05],[-226.03,-156.88],[-243.18,-166.14],[-259.55,-177.99],[-267.33,-183.59],[-280.39,-189.5]],"o":[[-298.93,-188.05],[-304.04,-185.18],[-305.41,-178.43],[-302.15,-170.91],[-298.39,-165.81],[-296.31,-162.89],[-292.81,-160.08],[-289.12,-157.35],[-285.5,-155.13],[-281.52,-153.15],[-275.59,-150.44],[-264.2,-146.5],[-257.03,-143.02],[-256.29,-142.29],[-255.09,-141.12],[-252.62,-139.23],[-249.55,-136.83],[-246.33,-133.4],[-244.93,-130.84],[-243.59,-130.35],[-242.69,-129.54],[-242.84,-127.65],[-239.05,-123.64],[-233.93,-110.58],[-229.94,-94.22],[-226.6,-76.42],[-204.27,-58.36],[-166.8,-46.11],[-155.79,-18.6],[-158.82,12.38],[-152.16,30.2],[-145.93,25.1],[-133.35,18.2],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.16,-9.8],[-85.82,-13.09],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-70.61,-22.96],[-58.07,-33.82],[-90.45,-49.34],[-135.28,-81.91],[-141.69,-127.59],[-149.32,-138.95],[-172.8,-153.2],[-212.42,-156],[-240.22,-163.5],[-253.28,-172.79],[-266.6,-182.37],[-272.06,-186.51],[-289.35,-190.47]],"v":[[-295,-189],[-302.63,-186.28],[-305,-181],[-303.33,-173.28],[-300,-168],[-297,-163.79],[-294,-161],[-290.33,-158.23],[-287,-156],[-282.83,-153.78],[-279,-152],[-267.99,-147.85],[-257,-143],[-256.54,-142.53],[-256,-142],[-253.43,-139.84],[-251,-138],[-247.33,-134.55],[-245,-131],[-244.04,-130.52],[-243,-130],[-243,-128],[-241,-127],[-236,-116],[-231,-99],[-229,-85],[-216,-66],[-177,-51],[-157,-27],[-158,3],[-153,31],[-150,29],[-136,20],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-88,-11],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-58,-32],[-71,-40],[-126,-68],[-140,-123],[-146,-134],[-162,-148],[-199,-155],[-237,-162],[-246,-168],[-266,-182],[-268,-184],[-285,-190]],"c":true}],"h":1},{"t":56,"s":[{"i":[[-294.23,-189.18],[-301.22,-187.39],[-304.59,-183.64],[-304.67,-177.43],[-302.33,-172.65],[-301.61,-170.63],[-301.41,-168.61],[-297.31,-163.92],[-290.21,-158.75],[-284.58,-155.35],[-277.75,-151.74],[-273.7,-150.27],[-269.97,-149.43],[-259.03,-144.02],[-246.69,-134.02],[-240.01,-123.47],[-235,-112.37],[-232.78,-103.39],[-231.67,-94.74],[-229.32,-85.56],[-225.95,-75.99],[-224.56,-74.36],[-224.34,-73.46],[-208.96,-62.18],[-178.54,-53.89],[-166.97,-45.14],[-161.17,-38.69],[-160.82,1.18],[-158.93,31.21],[-154.52,31.43],[-135.62,19.48],[-119.91,9.87],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-88.85,-10.18],[-83.08,-14.06],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-57.99,-28.31],[-75.21,-42.92],[-106.99,-52.95],[-114.95,-57.96],[-123.57,-64.67],[-133.07,-109.01],[-153.32,-142.71],[-163.88,-148.54],[-182.99,-154.07],[-215.64,-156.5],[-240.76,-162.9],[-246.15,-167.18],[-249.15,-169.18],[-252.78,-172.01],[-263.02,-180.01],[-279.89,-189.33]],"o":[[-298.92,-188.07],[-304.05,-185.17],[-305.26,-179.36],[-303.21,-174.08],[-301.65,-171.32],[-301.48,-169.27],[-299.71,-166.05],[-292.56,-160.28],[-286.95,-156.73],[-279.98,-152.85],[-274.96,-150.56],[-271.2,-149.71],[-263.94,-146.76],[-250.41,-137.65],[-242.01,-127.03],[-236.5,-116.13],[-233.19,-106.27],[-232.01,-97.63],[-230.34,-89.32],[-227.12,-78.9],[-224.64,-74.63],[-224.41,-73.78],[-218.69,-65.73],[-188.89,-56.26],[-169.39,-47.05],[-162.86,-40.97],[-153.23,-20.37],[-159.8,23.27],[-156.27,33.47],[-142.17,24.42],[-124.83,12.62],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.16,-9.8],[-85.82,-13.09],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-70.7,-22.91],[-58.01,-36.62],[-93.98,-49.49],[-113.92,-56.95],[-118.73,-61.58],[-137.44,-83.73],[-145.17,-134.74],[-162.2,-147.85],[-174.95,-152.46],[-203.94,-156.24],[-232.04,-160.46],[-244.84,-166.8],[-247.84,-168.8],[-251.51,-171.45],[-259.04,-177.11],[-273.09,-186.05],[-289.7,-190.41]],"v":[[-295,-189],[-302.63,-186.28],[-305,-181],[-303.94,-175.76],[-302,-172],[-301.54,-169.95],[-301,-168],[-294.94,-162.1],[-289,-158],[-282.28,-154.1],[-276,-151],[-272.45,-149.99],[-269,-149],[-254.72,-140.83],[-244,-130],[-238.26,-119.8],[-234,-109],[-232.4,-100.51],[-231,-92],[-228.22,-82.23],[-225,-75],[-224.49,-74.07],[-224,-73],[-198.92,-59.22],[-172,-49],[-164.92,-43.05],[-160,-36],[-160,19],[-158,32],[-152,30],[-127,14],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-88,-11],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-58,-32],[-84,-46],[-114,-57],[-115,-58],[-126,-68],[-142,-128],[-159,-146],[-168,-150],[-192,-155],[-226,-159],[-244,-166],[-247,-168],[-250,-170],[-254,-173],[-268,-183],[-286,-190]],"c":true}],"h":1},{"t":57,"s":[{"i":[[-277.18,-193.17],[-301.22,-187.4],[-304.59,-183.63],[-303.21,-171.76],[-294.52,-161.43],[-288.35,-157.12],[-279.54,-153.13],[-270.03,-149.34],[-258.83,-144.75],[-256.36,-142.59],[-255.37,-142.31],[-244.63,-131.43],[-235.23,-110.74],[-231.99,-97.06],[-230.69,-89.37],[-228.68,-83.32],[-226.46,-78.9],[-225.61,-76.63],[-225.41,-74.6],[-220.83,-69.7],[-212.27,-64.89],[-206.38,-62.58],[-200.86,-60.58],[-194.21,-58.52],[-186.7,-56.02],[-179.78,-53.58],[-173,-50.95],[-171.36,-49.57],[-170.44,-49.33],[-164.01,-43.17],[-158.52,-31.27],[-158.1,-12.21],[-161.27,12.24],[-160.38,23.68],[-158.49,31.62],[-154.29,31.3],[-134.18,18.56],[-119.73,9.7],[-113.16,5.32],[-106.71,0.14],[-102.19,-1.22],[-97.21,-5.56],[-78.59,-16.77],[-57.02,-30.74],[-62.1,-36.14],[-64.63,-38.75],[-66.49,-38.77],[-67.58,-40.77],[-70.6,-41.45],[-74.05,-43.63],[-96.28,-50.56],[-112.66,-57.87],[-118.76,-61.06],[-124.61,-66.22],[-134.86,-115.47],[-146.39,-135.17],[-156.26,-145.26],[-168.1,-150.89],[-190.45,-155.24],[-230.98,-158.59],[-248.52,-169.28]],"o":[[-298.92,-188.08],[-304.05,-185.17],[-305.69,-176.54],[-297.62,-164.2],[-291.33,-158.8],[-282.46,-154.29],[-274.12,-150.71],[-262.39,-146.36],[-256.68,-142.69],[-255.71,-142.4],[-249.02,-137.06],[-237.74,-118.27],[-232.39,-99.62],[-231.13,-91.93],[-229.45,-85.11],[-227.19,-80.21],[-225.66,-77.33],[-225.49,-75.26],[-223.45,-71.75],[-215.24,-66.27],[-208.19,-63.29],[-202.71,-61.22],[-196.61,-59.26],[-189.26,-56.9],[-182.28,-54.35],[-175.13,-51.88],[-171.64,-49.66],[-170.76,-49.41],[-166.75,-46.54],[-159.9,-35.54],[-157.21,-20.58],[-160.12,4.2],[-160.89,20.37],[-159.18,29.31],[-156.24,33.37],[-142.83,24.8],[-124.86,12.64],[-116.54,6.65],[-108.24,2.31],[-103.79,-1.8],[-98.66,-3.54],[-86.55,-12.51],[-66.68,-24.5],[-56.99,-32.3],[-64.32,-37.15],[-65.46,-39.31],[-67.35,-39.16],[-69.34,-41.74],[-73.19,-42.47],[-85.57,-48.15],[-110.78,-56.28],[-117.54,-60.98],[-122.64,-63.99],[-138.32,-83.83],[-145.79,-133.29],[-147.26,-136.35],[-162.61,-149.29],[-180.46,-154.4],[-215.65,-157.05],[-245.8,-166.49],[-262.48,-178.94]],"v":[[-295,-189],[-302.64,-186.28],[-305,-181],[-300.41,-167.98],[-294,-161],[-285.4,-155.7],[-277,-152],[-266.21,-147.85],[-257,-143],[-256.04,-142.5],[-255,-142],[-241.18,-124.85],[-233,-102],[-231.56,-94.49],[-230,-87],[-227.94,-81.76],[-226,-78],[-225.55,-75.95],[-225,-74],[-218.04,-67.98],[-210,-64],[-204.54,-61.9],[-199,-60],[-191.74,-57.71],[-184,-55],[-177.46,-52.73],[-172,-50],[-171.06,-49.49],[-170,-49],[-161.95,-39.36],[-158,-27],[-159.11,-4.01],[-161,18],[-159.78,26.49],[-158,32],[-152,30],[-127,14],[-119,9],[-111,4],[-105,-1],[-101,-2],[-95,-7],[-69,-23],[-57,-32],[-64,-37],[-65,-39],[-67,-39],[-68,-41],[-72,-42],[-75,-44],[-105,-54],[-116,-60],[-120,-62],[-126,-68],[-145,-132],[-147,-136],[-159,-147],[-172,-152],[-201,-156],[-243,-165],[-251,-171]],"c":true}],"h":1},{"t":58,"s":[{"i":[[-293.12,-189.17],[-300.7,-187.56],[-304.56,-183.74],[-304.57,-175.69],[-299.8,-168.04],[-295.66,-163.77],[-291.78,-160.75],[-286.99,-156.9],[-280.28,-153.95],[-275.21,-151.95],[-271.26,-150.59],[-257.86,-143.49],[-243.89,-129.86],[-238,-116.71],[-235.09,-105.22],[-230.35,-86.99],[-221.99,-71.06],[-212.35,-65.47],[-205.28,-62.74],[-197.45,-60.26],[-189.58,-57.88],[-176.5,-53.02],[-164.34,-43.74],[-158.44,-24.99],[-160.53,-0.9],[-161.26,10.63],[-161.24,18.72],[-160.04,26.78],[-158.19,32.9],[-156.18,32.41],[-151.22,30.13],[-150.79,29.78],[-150.03,29.03],[-146.36,26.23],[-140.23,22.83],[-136.75,20.23],[-134.05,17.67],[-129.86,15.36],[-125.58,13.56],[-123.31,11.45],[-120.85,9.55],[-115.85,6.4],[-109.4,2.54],[-99.45,-3.84],[-87.16,-11.7],[-78.61,-17.07],[-71.5,-21.38],[-57.06,-30.66],[-64.91,-39.93],[-81.57,-46.68],[-108.26,-55.59],[-123.44,-64.4],[-124.81,-67.58],[-128.26,-70.81],[-133.51,-125.95],[-166.13,-150.06],[-177.65,-154.37],[-188.73,-155.59],[-229.5,-158.34],[-255.06,-173.19],[-274.02,-187.15]],"o":[[-298.17,-188.2],[-303.89,-185.33],[-305.42,-178.42],[-301.76,-170.5],[-297.02,-164.89],[-293.04,-161.69],[-289.1,-158.18],[-282.58,-154.78],[-276.58,-152.41],[-272.55,-151.04],[-263.66,-147.06],[-247.97,-134.89],[-239.2,-120.35],[-235.94,-109.15],[-232.11,-93.71],[-225.29,-75.67],[-214.71,-66.6],[-207.64,-63.54],[-200.16,-61.07],[-192.16,-58.67],[-181.58,-55.15],[-167.88,-47.31],[-158.93,-32.79],[-159.24,-9.04],[-161.14,8.02],[-161.31,15.98],[-160.7,23.83],[-158.79,31.32],[-157.82,33.09],[-152.88,30.93],[-151.02,30.01],[-150.29,29.29],[-148.5,27.56],[-142.23,23.86],[-137.73,21.15],[-134.92,18.5],[-131.57,16.08],[-126.87,14.1],[-124.14,12.17],[-121.67,10.14],[-117.9,7.63],[-111.6,3.85],[-103.12,-1.48],[-91.47,-8.95],[-80.61,-15.89],[-74.06,-19.82],[-66.41,-24.68],[-56.95,-33.18],[-75.81,-45.42],[-97.26,-52.73],[-119.76,-62.71],[-125.31,-66.32],[-125.64,-69.42],[-142.28,-93.44],[-159.83,-148.06],[-175.28,-153.08],[-184.66,-155.68],[-209.71,-157.62],[-248.7,-167.79],[-267.75,-181.98],[-285.63,-190.23]],"v":[[-294,-189],[-302.29,-186.45],[-305,-181],[-303.16,-173.09],[-298,-166],[-294.35,-162.73],[-291,-160],[-284.78,-155.84],[-278,-153],[-273.88,-151.5],[-270,-150],[-252.92,-139.19],[-241,-124],[-236.97,-112.93],[-234,-101],[-227.82,-81.33],[-217,-68],[-210,-64.5],[-203,-62],[-194.81,-59.47],[-187,-57],[-172.19,-50.16],[-162,-39],[-158.84,-17.02],[-161,6],[-161.29,13.31],[-161,21],[-159.41,29.05],[-158,33],[-154.53,31.67],[-151,30],[-150.54,29.53],[-150,29],[-144.3,25.04],[-139,22],[-135.83,19.37],[-133,17],[-128.37,14.73],[-125,13],[-122.49,10.79],[-120,9],[-113.72,5.13],[-107,1],[-95.46,-6.39],[-82,-15],[-76.34,-18.45],[-69,-23],[-57,-32],[-71,-43],[-85,-48],[-117,-61],[-125,-66],[-125,-68],[-129,-72],[-155,-144],[-172,-152],[-181,-155],[-193,-156],[-241,-164],[-262,-178],[-281,-189]],"c":true}],"h":1},{"t":59,"s":[{"i":[[-287,-190.29],[-304.07,-184.94],[-303.72,-173.94],[-300.19,-168.52],[-299.19,-166.23],[-296.85,-164.24],[-292.49,-161.47],[-291.36,-160.53],[-290.54,-160.35],[-288.87,-158.99],[-287.31,-157.18],[-281.25,-154.26],[-272.58,-151.21],[-267.32,-148.75],[-263.32,-146.76],[-250.46,-137.3],[-239.24,-119],[-233.1,-95.91],[-225.38,-73.45],[-198.33,-61.39],[-166.86,-49.6],[-163.5,2.57],[-158.43,32.79],[-151.37,30.22],[-150.07,29.07],[-141.71,23.82],[-134.68,18.08],[-126.2,14.15],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.82,0.21],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.27,-13.52],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.26,-22.2],[-57.16,-30.14],[-74.27,-45.48],[-111.97,-56.64],[-123.95,-65.94],[-134.5,-115.23],[-150.65,-137.53],[-151.27,-140.2],[-156.41,-144.18],[-174.86,-154.43],[-216.27,-156.64],[-233.94,-162.25],[-240.93,-164.02],[-254.3,-172.51],[-261.04,-176.33],[-263.14,-179.42],[-267.98,-181.8]],"o":[[-300.96,-187.72],[-305.45,-178.05],[-300.59,-169.41],[-299.49,-166.93],[-298.36,-165.25],[-293.92,-162.35],[-291.59,-160.61],[-290.84,-160.4],[-289.46,-159.65],[-287.79,-157.75],[-284.21,-155.4],[-275.43,-152.16],[-268.66,-149.37],[-264.65,-147.45],[-255.59,-142.3],[-242.29,-125.65],[-234.66,-104.68],[-228.46,-80.29],[-210.4,-63.84],[-176.55,-54.27],[-154.33,-22.25],[-161.62,23.14],[-157.72,33.14],[-151.04,30.03],[-146.88,26.01],[-136.32,20.2],[-130.2,15.2],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.08,2.21],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.19,-11.18],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.85,-21.67],[-67.99,-24.28],[-55.95,-36.49],[-98.08,-54.09],[-122.27,-65.03],[-141.02,-83.07],[-149.3,-137.45],[-151.7,-138.93],[-153.58,-142.72],[-166.27,-151.13],[-199.65,-158.27],[-232.2,-160.54],[-238.61,-163.95],[-249.73,-168.19],[-259.88,-176.65],[-262.83,-177.58],[-265.8,-181.21],[-276.67,-186.95]],"v":[[-294,-189],[-304.76,-181.49],[-301,-170],[-299.84,-167.73],[-299,-166],[-295.39,-163.29],[-292,-161],[-291.1,-160.47],[-290,-160],[-288.33,-158.37],[-287,-157],[-278.34,-153.21],[-270,-150],[-265.98,-148.1],[-262,-146],[-246.37,-131.48],[-237,-112],[-230.78,-88.1],[-220,-70],[-187.44,-57.83],[-162,-39],[-162,19],[-158,33],[-151,30],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-57,-31],[-84,-49],[-121,-64],[-125,-67],[-149,-137],[-151,-138],[-152,-141],[-159,-146],[-185,-156],[-230,-160],[-236,-163],[-243,-165],[-259,-176],[-262,-177],[-264,-180],[-270,-183]],"c":true}],"h":1},{"t":60,"s":[{"i":[[-280.1,-190.71],[-299.98,-187.87],[-304.46,-184.37],[-302.98,-171.73],[-290.7,-159.93],[-285.67,-157.34],[-281.19,-155.52],[-278.33,-154.32],[-275.8,-153.36],[-270.44,-150.64],[-264.61,-146.92],[-261.11,-145.18],[-258.67,-144.48],[-254.2,-140.93],[-248.89,-135.34],[-246.25,-131.46],[-243.85,-127.7],[-239.44,-117.49],[-231.58,-81.58],[-175.72,-63.61],[-160.63,-35.31],[-161.69,-2.54],[-162.02,31.34],[-150.94,29.9],[-141.62,23.76],[-134.53,17.98],[-126.13,14.08],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.24,-13.55],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.4,-22.1],[-66.29,-25.5],[-57.03,-30.85],[-62.1,-38.25],[-89.27,-51.28],[-115.04,-59.17],[-119.03,-62.31],[-127.22,-69.59],[-137.46,-106.23],[-144.94,-127.72],[-147.85,-135.32],[-154.51,-142.13],[-157.57,-145.6],[-160,-146.34],[-162.73,-149.27],[-217.08,-154.6],[-248.42,-168.51],[-255.74,-173.45]],"o":[[-297.25,-188.43],[-303.59,-185.84],[-306.13,-177.01],[-295.27,-163.19],[-287.32,-158.08],[-282.6,-156.06],[-279.17,-154.64],[-276.64,-153.68],[-272.64,-151.93],[-266.43,-148.13],[-262.02,-145.44],[-259.43,-144.7],[-256.26,-142.76],[-250.52,-137.22],[-247.08,-132.61],[-244.63,-129.01],[-240.79,-121.54],[-233.91,-100.22],[-209.91,-59.91],[-162.83,-39.84],[-158.5,-20.74],[-162.6,10.8],[-157.42,33.24],[-146.97,26.1],[-136.14,20.08],[-130.18,15.19],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.01,-11.3],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.86,-21.66],[-68.34,-24.05],[-62.46,-28],[-56.52,-33.4],[-78.09,-48.41],[-106.42,-57.23],[-118.76,-62.73],[-123.42,-65.41],[-138.97,-85.47],[-143.74,-125.24],[-147.11,-132.39],[-151.26,-140.31],[-157.45,-144.34],[-158.82,-146.76],[-162.25,-147.83],[-184.12,-161.5],[-242.79,-164.45],[-253.99,-171.73],[-267.51,-181.54]],"v":[[-293,-189],[-301.78,-186.85],[-305,-182],[-299.12,-167.46],[-289,-159],[-284.13,-156.7],[-280,-155],[-277.48,-154],[-275,-153],[-268.43,-149.38],[-263,-146],[-260.27,-144.94],[-258,-144],[-252.36,-139.08],[-248,-134],[-245.44,-130.23],[-243,-126],[-238,-113],[-224,-74],[-164,-42],[-160,-31],[-162,2],[-158,33],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-68,-42],[-100,-55],[-118,-62],[-120,-63],[-129,-72],[-143,-123],[-146,-130],[-149,-137],[-157,-144],[-158,-146],[-161,-147],[-164,-150],[-239,-163],[-251,-170],[-258,-175]],"c":true}],"h":1},{"t":61,"s":[{"i":[[-297.27,-188.28],[-305.66,-181.69],[-300.52,-169.75],[-282.58,-156.12],[-256.27,-143.97],[-248.43,-133.67],[-244.93,-128.73],[-240.44,-119.34],[-236.22,-106.34],[-232.77,-92.53],[-228.62,-79.22],[-223.06,-73.13],[-217.66,-69.87],[-206.94,-65.11],[-193.76,-61.63],[-184.48,-58.53],[-177.66,-56],[-173.9,-53.35],[-171.11,-50.09],[-167.68,-46.78],[-164.8,-43.45],[-159.65,-22.88],[-163.56,10.5],[-160.93,26.25],[-158.91,32.65],[-150.56,29.54],[-142.02,24.03],[-134.58,18.02],[-126.1,14.06],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.94,0.3],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.21,-13.56],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.26,-22.2],[-66.26,-25.52],[-57.04,-30.83],[-63.2,-40.05],[-89.43,-51.84],[-116.32,-60.43],[-126.7,-69.08],[-139.41,-106.71],[-147.63,-134.53],[-150.38,-138.25],[-161.21,-147.64],[-166.3,-151.65],[-204.37,-157.35],[-240.59,-164.24],[-266.06,-181.08],[-282.31,-188.7]],"o":[[-304.4,-185.56],[-303.72,-173.78],[-291.7,-160.14],[-264.87,-148.04],[-249.72,-135.31],[-246.04,-130.38],[-242.08,-123.42],[-237.51,-110.8],[-233.71,-97.41],[-230.23,-83.43],[-224.73,-74.44],[-219.53,-70.84],[-211.31,-66.54],[-198.16,-62.65],[-186.91,-59.28],[-179.86,-56.89],[-174.84,-54.3],[-172.03,-51.24],[-168.78,-47.8],[-165.69,-44.6],[-159.36,-33.62],[-161.74,-0.82],[-161.48,23.18],[-159.65,30.99],[-157.06,33.36],[-146.78,25.92],[-136.48,20.31],[-130.69,15.52],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-107.86,2.07],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.18,-11.19],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.85,-21.67],[-68.54,-23.93],[-62.54,-27.95],[-56.38,-33.69],[-78.71,-49.58],[-107.54,-58.35],[-122.27,-66.14],[-138.77,-84.44],[-145.52,-127.08],[-150.62,-137.65],[-154.15,-142.82],[-165.6,-150.37],[-180.85,-158.84],[-231.85,-161.26],[-257.95,-173.09],[-280.1,-186.86],[-288.96,-189.88]],"v":[[-298,-188],[-304.69,-177.73],[-298,-167],[-273.73,-152.08],[-251,-137],[-247.24,-132.03],[-244,-127],[-238.97,-115.07],[-235,-102],[-231.5,-87.98],[-226,-76],[-221.3,-71.99],[-216,-69],[-202.55,-63.88],[-189,-60],[-182.17,-57.71],[-176,-55],[-172.96,-52.29],[-170,-49],[-166.68,-45.69],[-164,-42],[-160.69,-11.85],[-162,20],[-160.29,28.62],[-158,33],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-68,-43],[-101,-56],[-119,-63],[-129,-72],[-144,-122],[-150,-137],[-151,-139],[-165,-150],[-167,-152],[-223,-160],[-246,-167],[-278,-186],[-284,-189]],"c":true}],"h":1},{"t":62,"s":[{"i":[[-287.87,-191.81],[-305.33,-182.8],[-302.1,-171.76],[-289.42,-159.88],[-271.44,-152.1],[-257.75,-143.29],[-246.97,-131.62],[-241.71,-120.75],[-237.45,-106.98],[-233.34,-92.27],[-228.33,-78.66],[-221.87,-72.31],[-214.92,-68.81],[-189.82,-61.26],[-162.87,-45.44],[-160.9,-15.73],[-164.26,6.41],[-162.79,21.49],[-158.86,32.7],[-155.67,32.3],[-150.28,29.27],[-146.38,26.2],[-140.52,23.03],[-136.64,20.16],[-133.79,17.51],[-130.12,15.52],[-125.55,13.53],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.88,0.25],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.21,-13.56],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.36,-22.13],[-66.29,-25.5],[-57.04,-30.84],[-65.51,-42.4],[-84.85,-51.31],[-122.19,-62.54],[-137.97,-91.73],[-146.41,-131.87],[-158.56,-146.38],[-167.15,-151.43],[-176.76,-155.19],[-207.52,-158.3],[-243.36,-165.6],[-253.14,-170.47],[-255.34,-172.58],[-260.39,-174.92],[-264.54,-179.01],[-268.23,-180.52]],"o":[[-303.52,-185.92],[-304.62,-175.72],[-294.94,-163.08],[-277.67,-154.39],[-262.02,-146.73],[-250.22,-135.74],[-243.24,-124.76],[-238.82,-111.86],[-234.67,-97.44],[-230.16,-82.88],[-224.17,-73.9],[-217.25,-69.76],[-201.88,-63.29],[-170.31,-52.33],[-160.02,-23.43],[-163.02,-0.81],[-163.86,16.64],[-160.29,29.52],[-157.53,33.17],[-152.04,30.35],[-148.37,27.44],[-142.46,24],[-137.74,21.15],[-134.66,18.34],[-131.85,16.26],[-126.97,14.16],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-107.96,2.14],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.18,-11.19],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.65,-21.78],[-68.34,-24.05],[-62.46,-28.01],[-56.25,-34.23],[-75.66,-48.28],[-105.25,-58],[-136.43,-81.62],[-142.27,-115.58],[-155.46,-143.04],[-164.19,-150.12],[-174.11,-154.27],[-193.1,-159.28],[-234.24,-161.44],[-252.05,-170.6],[-254.6,-171.37],[-257.86,-174.2],[-263.41,-176.94],[-266.88,-180.6],[-276.23,-185.49]],"v":[[-298,-188],[-304.97,-179.26],[-299,-168],[-283.54,-157.14],[-266,-149],[-253.99,-139.52],[-245,-128],[-240.26,-116.3],[-236,-102],[-231.75,-87.57],[-226,-76],[-219.56,-71.04],[-213,-68],[-180.07,-56.8],[-161,-31],[-161.96,-8.27],[-164,13],[-161.54,25.5],[-158,33],[-153.86,31.33],[-150,29],[-144.42,25.1],[-139,22],[-135.65,19.25],[-133,17],[-128.55,14.84],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-70,-45],[-90,-53],[-130,-73],[-140,-103],[-153,-140],[-161,-148],[-171,-153],[-180,-156],[-222,-160],[-251,-170],[-254,-171],[-256,-173],[-262,-176],[-266,-180],[-269,-181]],"c":true}],"h":1},{"t":63,"s":[{"i":[[-282.26,-193.86],[-305.28,-182.76],[-302.13,-171.59],[-289.26,-159.97],[-271.39,-152.04],[-257.86,-143.63],[-248.28,-133.08],[-242.47,-121.56],[-238.34,-108.61],[-234.51,-94.83],[-230.13,-82.11],[-226.84,-77.62],[-224.8,-76.36],[-223.69,-75.5],[-223.15,-74.12],[-218.48,-70.98],[-210.71,-67.58],[-193.15,-62.65],[-172.47,-54.14],[-165.85,-44.96],[-162.47,-37.85],[-161.8,-16.69],[-165.57,11.02],[-162.13,25.94],[-158.21,32.93],[-155.64,32.3],[-150.28,29.27],[-146.38,26.2],[-140.52,23.03],[-136.64,20.16],[-133.79,17.51],[-130.09,15.5],[-125.55,13.53],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.88,0.25],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.21,-13.56],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.36,-22.13],[-66.29,-25.5],[-57.04,-30.84],[-64.66,-41.75],[-68.01,-43.33],[-79.4,-49.64],[-113.86,-60.46],[-138.51,-89.05],[-147.27,-130.99],[-162.9,-149.62],[-203.43,-158.05],[-247.44,-166.75]],"o":[[-303.46,-185.97],[-304.61,-175.57],[-294.81,-163.2],[-277.55,-154.39],[-261.73,-146.59],[-251.14,-136.87],[-244.05,-125.51],[-239.61,-113.12],[-235.7,-99.52],[-231.73,-86.13],[-227.44,-78.19],[-225.52,-76.7],[-223.86,-75.94],[-223.33,-74.59],[-221.12,-72.43],[-213.27,-68.55],[-201.17,-64.33],[-178.8,-57.56],[-167.11,-46.78],[-163.52,-40.49],[-160.52,-25.95],[-164.33,1.79],[-163.52,22.72],[-159.47,31.05],[-157.5,33.16],[-152.03,30.35],[-148.37,27.44],[-142.46,24],[-137.74,21.15],[-134.66,18.34],[-131.82,16.24],[-126.96,14.15],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-107.96,2.14],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.18,-11.19],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.65,-21.78],[-68.34,-24.05],[-62.46,-28.01],[-56.35,-33.78],[-66.82,-43.76],[-74.33,-47.59],[-97.65,-56.17],[-135.59,-75.25],[-144.47,-119.7],[-157.78,-145.68],[-185.92,-160.58],[-237.42,-162.7],[-266.44,-178.4]],"v":[[-298,-188],[-304.94,-179.17],[-299,-168],[-283.4,-157.18],[-266,-149],[-254.5,-140.25],[-246,-129],[-241.04,-117.34],[-237,-104],[-233.12,-90.48],[-228,-79],[-226.18,-77.16],[-224,-76],[-223.51,-75.05],[-223,-74],[-215.87,-69.76],[-209,-67],[-185.98,-60.11],[-168,-48],[-164.69,-42.72],[-162,-35],[-163.07,-7.45],[-164,20],[-160.8,28.49],[-158,33],[-153.83,31.32],[-150,29],[-144.42,25.1],[-139,22],[-135.65,19.25],[-133,17],[-128.52,14.83],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-66,-43],[-69,-44],[-86,-52],[-122,-66],[-142,-107],[-153,-139],[-170,-153],[-225,-161],[-256,-172]],"c":true}],"h":1},{"t":64,"s":[{"i":[[-287.73,-190.83],[-301.68,-186.41],[-304.64,-183.56],[-303.51,-173.53],[-293.09,-163.39],[-282.61,-157.32],[-271.61,-153.05],[-267.66,-150.47],[-267.21,-149.15],[-266.03,-148.57],[-264.37,-148.25],[-250.02,-135.08],[-239.14,-109.41],[-234.04,-92.01],[-230.06,-81.62],[-220.13,-72.17],[-205.52,-67.42],[-185.72,-61.04],[-167.71,-49.4],[-166.43,-4.24],[-163.66,23.22],[-158.19,32.94],[-152.89,30.9],[-150.85,29.82],[-142.13,24.11],[-134.48,17.95],[-126.1,14.05],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.28,-13.52],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.26,-22.2],[-65.72,-25.87],[-57.12,-30.51],[-63.53,-41.89],[-70.83,-46.36],[-127.32,-59.52],[-142.64,-110.08],[-150.11,-133.73],[-160.74,-148.08],[-165.61,-151.76],[-177.25,-156.55],[-230.12,-159.14],[-249.6,-168.62],[-255.76,-171.23],[-257.55,-173.67],[-260.27,-174.5],[-265.8,-179.1],[-269.3,-180.56]],"o":[[-299.87,-187.12],[-304.07,-184.63],[-305.96,-177.83],[-297.07,-166.31],[-286.56,-159.05],[-275.14,-154.33],[-267.8,-150.89],[-267.36,-149.6],[-266.59,-148.69],[-264.92,-148.35],[-255.44,-142.12],[-241.87,-118.73],[-235,-95.7],[-231.56,-84.97],[-224.62,-74.7],[-210.58,-68.53],[-193.36,-63.59],[-172.9,-53.94],[-157.86,-26.16],[-164.79,16.63],[-162.55,26.21],[-156.34,33.5],[-152.16,30.2],[-146.72,25.86],[-136.59,20.38],[-130.63,15.48],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-86.99,-11.31],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.85,-21.67],[-68.54,-23.93],[-62.08,-28.25],[-56.39,-33.42],[-68.76,-45.53],[-97.13,-60.79],[-141.66,-95.79],[-147.63,-127.79],[-154.66,-141.59],[-165.34,-150.15],[-170.29,-154.67],[-203.39,-162.18],[-247.91,-167.34],[-253.29,-170.74],[-257.42,-172.26],[-258.81,-174.61],[-263.18,-176.47],[-267.78,-180.58],[-276.96,-185.37]],"v":[[-297,-188],[-302.88,-185.52],[-305,-182],[-300.29,-169.92],[-291,-162],[-278.88,-155.82],[-268,-151],[-267.51,-150.03],[-267,-149],[-265.47,-148.46],[-264,-148],[-245.94,-126.9],[-236,-99],[-232.8,-88.49],[-228,-79],[-215.36,-70.35],[-201,-66],[-179.31,-57.49],[-165,-43],[-165,14],[-163,25],[-158,33],[-153,31],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-68,-45],[-72,-47],[-137,-84],[-146,-122],[-152,-137],[-165,-150],[-166,-152],[-184,-158],[-245,-166],[-252,-170],[-257,-172],[-258,-174],[-261,-175],[-267,-180],[-270,-181]],"c":true}],"h":1},{"t":65,"s":[{"i":[[-282.13,-192.41],[-301.65,-186.43],[-304.65,-183.53],[-304.67,-177.09],[-300.26,-170.42],[-287.27,-159.89],[-266.32,-150.34],[-260.05,-145.35],[-258.42,-144.37],[-255.39,-141.21],[-252.78,-137.02],[-251.36,-135.36],[-250.3,-134.46],[-244.92,-124.72],[-239.78,-108.96],[-235.05,-93.31],[-229.43,-80.58],[-220.18,-72.73],[-208.66,-69.16],[-195.79,-65.02],[-181.91,-59.68],[-173.72,-54.39],[-167.07,-47.24],[-162.27,-24.06],[-166.66,10.83],[-161.94,26.82],[-157.39,32.85],[-153.86,31.6],[-145.86,26.19],[-135.35,19.46],[-122.73,11.38],[-114.55,6.25],[-108.03,2.33],[-105.77,0.77],[-105.05,0.05],[-104.37,-0.49],[-103.59,-0.65],[-92.89,-7.93],[-80.9,-15.14],[-77.85,-17.18],[-74.85,-19.18],[-66.71,-24.51],[-56.14,-30.98],[-64.95,-42.77],[-107.53,-58.21],[-121.95,-66.96],[-125.69,-69.93],[-136.55,-81.39],[-141.55,-101.67],[-145.19,-114.6],[-146.8,-125.82],[-150.82,-132.78],[-153.74,-140.29],[-165.68,-151.87],[-179.04,-156.88],[-197.74,-160.65],[-220.34,-160.91],[-238.91,-164.96],[-246.26,-166.27],[-250.42,-169.12],[-255.73,-171.23]],"o":[[-299.83,-187.16],[-304.07,-184.62],[-305.54,-179.63],[-302.03,-172.49],[-294.12,-163.48],[-273.37,-153.32],[-260.59,-145.67],[-258.97,-144.7],[-256.5,-142.7],[-253.53,-138.36],[-251.71,-135.63],[-250.66,-134.77],[-247.03,-129.49],[-241.3,-114.45],[-236.58,-98.27],[-231.47,-84.47],[-223.85,-74.65],[-212.59,-69.99],[-200.83,-66.67],[-186.32,-61.52],[-176.44,-56.52],[-169.04,-49.75],[-161.44,-35.47],[-164.88,-0.91],[-163.24,23.9],[-159.01,31.3],[-155.93,33.01],[-148.83,28.19],[-139.73,22.27],[-126.85,14.01],[-116.78,7.59],[-110.18,3.62],[-105.99,0.99],[-105.3,0.3],[-104.57,-0.41],[-103.87,-0.6],[-97.43,-4.31],[-85.87,-12.34],[-79.16,-16.8],[-76.16,-18.8],[-70.56,-23.3],[-57.74,-30.53],[-61.18,-39.84],[-82.32,-55.43],[-120.92,-65.95],[-123.64,-68.57],[-132.93,-75.85],[-141.41,-94.5],[-143.59,-111.96],[-146.86,-121.59],[-148.7,-130.86],[-153.21,-137.27],[-158.35,-146.52],[-174.4,-156.16],[-191.04,-159.59],[-212.36,-161.36],[-233.22,-162.74],[-244.02,-166.68],[-249.24,-167.52],[-253.51,-170.84],[-267.51,-178.32]],"v":[[-297,-188],[-302.86,-185.52],[-305,-182],[-303.35,-174.79],[-299,-169],[-280.32,-156.61],[-261,-146],[-259.51,-145.03],[-258,-144],[-254.46,-139.79],[-252,-136],[-251.01,-135.06],[-250,-134],[-243.11,-119.58],[-238,-103],[-233.26,-88.89],[-227,-78],[-216.38,-71.36],[-205,-68],[-191.06,-63.27],[-179,-58],[-171.38,-52.07],[-166,-45],[-163.58,-12.48],[-164,21],[-160.47,29.06],[-156,33],[-151.34,29.9],[-144,25],[-131.1,16.74],[-119,9],[-112.36,4.94],[-106,1],[-105.53,0.53],[-105,0],[-104.12,-0.55],[-103,-1],[-88,-11],[-80,-16],[-77,-18],[-74,-20],[-63,-27],[-59,-36],[-68,-45],[-121,-66],[-122,-67],[-127,-71],[-139,-88],[-143,-109],[-146,-118],[-148,-129],[-152,-135],[-155,-142],[-170,-154],[-184,-158],[-205,-161],[-228,-162],[-242,-166],[-248,-167],[-252,-170],[-257,-172]],"c":true}],"h":1},{"t":66,"s":[{"i":[[-294.04,-188.85],[-301.98,-186.48],[-304.6,-183.79],[-304.42,-177.37],[-299.62,-168.54],[-297.44,-166.89],[-296.21,-167.1],[-295.68,-166.49],[-295.18,-165.12],[-291.23,-162.64],[-285.72,-159.89],[-278.65,-156.58],[-269.27,-152.22],[-266.27,-149.46],[-263.72,-147.52],[-259.16,-144.22],[-255.08,-140.57],[-252.07,-136.29],[-249.74,-133.1],[-245.29,-125.32],[-240.92,-113.88],[-238.21,-104.26],[-236.08,-94.79],[-230.59,-82.81],[-220.68,-73.97],[-202.74,-67.68],[-182.6,-61.44],[-170.08,-51.36],[-163.27,-36.65],[-163.23,-21.91],[-164.7,-11.34],[-165.86,-0.08],[-166.51,11.47],[-163.8,22.75],[-157.56,32.83],[-153.86,31.62],[-145.91,26.22],[-118.14,8.28],[-82.98,-14.73],[-65.5,-25.42],[-58.28,-30.26],[-58.97,-35.95],[-65.39,-44],[-70.56,-47.6],[-74.75,-49.39],[-89.54,-55.53],[-111.08,-62.5],[-120.79,-66.91],[-124.48,-69.89],[-128.21,-71.4],[-137.01,-82.92],[-142.74,-102.66],[-151.3,-136.23],[-160.34,-147.2],[-177.9,-158.22],[-218,-160.74],[-242.12,-165.91],[-248.49,-167.34],[-259.77,-174.42],[-269.42,-179.42],[-276.88,-185.12]],"o":[[-300.17,-187.08],[-304.19,-184.84],[-305.36,-180.35],[-301.55,-171.46],[-297.84,-166.84],[-296.63,-167.02],[-295.84,-166.93],[-295.35,-165.59],[-293.12,-163.7],[-287.53,-160.74],[-282.01,-157.97],[-272.28,-153.7],[-267.17,-150.2],[-264.55,-148.13],[-260.87,-145.44],[-256.27,-141.79],[-252.95,-137.49],[-250.47,-134.1],[-247.08,-129.13],[-242.21,-117.7],[-238.92,-107.61],[-236.79,-97.84],[-232.99,-86.83],[-224.43,-76.38],[-209.95,-69.46],[-189.07,-63.67],[-173.7,-54.78],[-164.87,-42.29],[-162.88,-25.49],[-164.14,-14.84],[-165.35,-4.06],[-166.43,7.69],[-165.52,18.33],[-159.82,30],[-155.9,33.01],[-148.86,28.23],[-130.15,16.15],[-94.56,-7.16],[-68.36,-24.04],[-60.46,-28.54],[-57.77,-33.44],[-62.78,-41.23],[-69.18,-46.9],[-73.34,-48.84],[-82.25,-53.03],[-103.95,-60.27],[-119.3,-65.97],[-123.38,-68.87],[-126.9,-71.65],[-132.63,-74.78],[-141.73,-92.89],[-147.16,-122.91],[-158.8,-145.43],[-171.44,-155.69],[-202.86,-162.23],[-236.77,-163.77],[-246.83,-167.69],[-255.35,-170.36],[-266.8,-178.71],[-274.87,-182.76],[-285.25,-188.6]],"v":[[-297,-188],[-303.08,-185.66],[-305,-182],[-302.99,-174.41],[-298,-167],[-297.04,-166.95],[-296,-167],[-295.51,-166.04],[-295,-165],[-289.38,-161.69],[-284,-159],[-275.46,-155.14],[-268,-151],[-265.41,-148.79],[-263,-147],[-257.71,-143],[-254,-139],[-251.27,-135.19],[-249,-132],[-243.75,-121.51],[-240,-111],[-237.5,-101.05],[-235,-92],[-227.51,-79.6],[-216,-72],[-195.91,-65.67],[-178,-58],[-167.47,-46.82],[-163,-29],[-163.68,-18.37],[-165,-8],[-166.14,3.81],[-166,15],[-161.81,26.37],[-156,33],[-151.36,29.92],[-144,25],[-106.35,0.56],[-70,-23],[-62.98,-26.98],[-58,-32],[-60.87,-38.59],[-68,-46],[-71.95,-48.22],[-76,-50],[-96.74,-57.9],[-117,-65],[-122.08,-67.89],[-126,-71],[-129,-72],[-138,-85],[-145,-113],[-156,-142],[-164,-150],[-189,-160],[-232,-163],[-245,-167],[-250,-168],[-264,-177],[-272,-181],[-279,-186]],"c":true}],"h":1},{"t":67,"s":[{"i":[[-292.7,-188.73],[-301.63,-186.7],[-304.56,-184.01],[-304.95,-178.54],[-301.74,-172.15],[-293.54,-164.06],[-281.45,-157.75],[-274.4,-154.36],[-268.75,-151.72],[-267.36,-150.55],[-266.51,-150.35],[-263.14,-147.66],[-258.59,-142.73],[-253.67,-137.35],[-249.85,-132.5],[-242.65,-115.75],[-234.73,-90.13],[-228.65,-80.63],[-225.23,-77.73],[-223.09,-76.4],[-221.51,-75.28],[-207.75,-69.56],[-186.69,-63.91],[-172.62,-55.01],[-164.7,-40.61],[-164.01,-20.24],[-167.19,2.69],[-165.6,19.02],[-159.07,31.69],[-154.41,31.79],[-153.54,30.36],[-152.4,29.9],[-151.25,30.12],[-150.68,29.48],[-150.2,28.12],[-146.89,26.42],[-142.6,24.58],[-141.04,23.3],[-139.43,22.41],[-138.04,21.3],[-136.43,20.41],[-135.04,19.3],[-133.43,18.41],[-128.33,14.33],[-120.85,10.18],[-114.66,6.32],[-108.19,2.43],[-105.77,0.77],[-105.05,0.05],[-101.49,-2.05],[-81.31,-15.8],[-58.56,-28.64],[-64.86,-43.92],[-108.55,-60.62],[-130.97,-74.78],[-136.28,-80.77],[-145.02,-126.33],[-167.7,-153.45],[-211.73,-160.75],[-250.64,-168.95],[-273.5,-183.39]],"o":[[-299.6,-187.2],[-304.11,-185.11],[-305.33,-180.47],[-303.15,-174.38],[-297.32,-166.69],[-285.61,-159.59],[-276.53,-155.25],[-270.51,-152.6],[-267.61,-150.62],[-266.81,-150.41],[-264.6,-149.05],[-260.14,-144.5],[-255.25,-139.1],[-250.97,-134.05],[-245.29,-124.44],[-237.38,-98.6],[-229.79,-82.01],[-226.38,-78.49],[-223.59,-76.75],[-222.05,-75.66],[-214.9,-71.6],[-193.64,-65.71],[-176.52,-58.71],[-166.71,-45.97],[-163.17,-28.33],[-166.02,-4.73],[-166.82,13.18],[-161.73,28.27],[-154.89,32.11],[-153.73,30.92],[-152.77,29.85],[-151.64,30.04],[-150.83,29.92],[-150.36,28.58],[-148.59,27.14],[-143.9,25.14],[-141.58,23.6],[-139.97,22.71],[-138.58,21.6],[-136.97,20.71],[-135.58,19.6],[-133.97,18.71],[-130.9,15.99],[-123.3,11.42],[-116.81,7.61],[-110.35,3.74],[-105.99,0.99],[-105.3,0.3],[-103.38,-1.55],[-89.06,-9.94],[-66.39,-25.3],[-57.26,-36.41],[-85.92,-57.92],[-129.16,-72.57],[-134.99,-80.38],[-146.5,-98.31],[-160.21,-146.62],[-187.87,-163.16],[-243.43,-165.6],[-266.58,-177.72],[-284.81,-187.93]],"v":[[-296,-188],[-302.87,-185.91],[-305,-182],[-304.05,-176.46],[-300,-170],[-289.58,-161.83],[-278,-156],[-272.46,-153.48],[-268,-151],[-267.09,-150.48],[-266,-150],[-261.64,-146.08],[-257,-141],[-252.32,-135.7],[-249,-131],[-240.02,-107.18],[-231,-84],[-227.52,-79.56],[-224,-77],[-222.57,-76.03],[-221,-75],[-200.7,-67.63],[-181,-61],[-169.66,-50.49],[-164,-35],[-165.02,-12.48],[-167,8],[-163.67,23.65],[-156,32],[-154.07,31.35],[-153,30],[-152.02,29.97],[-151,30],[-150.52,29.03],[-150,28],[-145.4,25.78],[-142,24],[-140.5,23.01],[-139,22],[-137.5,21.01],[-136,20],[-134.5,19.01],[-133,18],[-125.81,12.88],[-119,9],[-112.51,5.03],[-106,1],[-105.53,0.53],[-105,0],[-100,-3],[-70,-23],[-58,-32],[-71,-48],[-123,-69],[-134,-79],[-137,-82],[-156,-141],[-173,-156],[-233,-164],[-258,-173],[-280,-186]],"c":true}],"h":1},{"t":68,"s":[{"i":[[-282.14,-190.1],[-300.66,-187.12],[-304.48,-184.35],[-304.7,-178.31],[-301.26,-171.51],[-295.83,-166.12],[-290.47,-163.29],[-280.6,-157.79],[-267.48,-150.82],[-252.4,-136.05],[-242.22,-112.87],[-235.26,-91.91],[-227.08,-78.25],[-216.2,-72.88],[-204.32,-69.29],[-192.87,-65.73],[-182.28,-61.42],[-175.86,-57.43],[-170.7,-52.13],[-164.84,-29.21],[-168.39,6.52],[-164.69,22.12],[-157.86,31.8],[-154.41,31.8],[-153.53,30.36],[-152.4,29.9],[-151.25,30.12],[-150.68,29.48],[-150.2,28.12],[-146.89,26.42],[-142.6,24.58],[-141.04,23.3],[-139.43,22.41],[-138.04,21.3],[-136.43,20.41],[-135.04,19.3],[-133.43,18.41],[-128.16,14.17],[-120.82,10.16],[-115.07,6.59],[-108.59,2.69],[-105.77,0.77],[-105.05,0.05],[-103.31,-1.29],[-100.75,-2.53],[-89.66,-9.8],[-75.75,-19.34],[-58.49,-29.02],[-58.93,-33.86],[-68.32,-46.84],[-76.39,-52.24],[-100.02,-59.79],[-119.33,-67.96],[-127.22,-71.42],[-136.75,-81.62],[-144.14,-102.52],[-149.79,-129.49],[-165.13,-151.55],[-174.34,-155.92],[-211.33,-161.76],[-251.42,-168.92]],"o":[[-298.42,-187.44],[-303.69,-185.57],[-305.32,-180.55],[-302.67,-173.78],[-298.1,-167.73],[-292.01,-163.9],[-285.36,-160.13],[-271.66,-153.14],[-257.04,-142.36],[-244.99,-121.3],[-237.21,-97.53],[-230.19,-82.27],[-219.79,-74.23],[-208.47,-70.41],[-196.72,-67.02],[-185.65,-62.93],[-177.77,-58.61],[-172.33,-54.19],[-164.64,-40.96],[-166.71,-5.47],[-166.51,17.97],[-160.37,29.04],[-154.89,32.12],[-153.73,30.92],[-152.77,29.85],[-151.64,30.04],[-150.83,29.92],[-150.36,28.58],[-148.59,27.14],[-143.9,25.14],[-141.58,23.6],[-139.97,22.71],[-138.58,21.6],[-136.97,20.71],[-135.58,19.6],[-133.97,18.71],[-130.75,15.84],[-123.2,11.33],[-117.03,7.75],[-110.85,4.06],[-105.99,0.99],[-105.3,0.3],[-104.19,-0.77],[-101.59,-2.16],[-94.28,-6.63],[-80.4,-16.15],[-65.44,-25.9],[-57.97,-32.2],[-63.71,-43.43],[-75.57,-50.87],[-87.05,-57.29],[-114.82,-65.08],[-124.87,-71.04],[-132.91,-75.64],[-143.06,-93.89],[-147.91,-119.71],[-155.15,-140.35],[-171.02,-155.28],[-192.3,-163.24],[-241.53,-165.39],[-269.77,-178.79]],"v":[[-295,-188],[-302.17,-186.34],[-305,-182],[-303.69,-176.04],[-300,-170],[-293.92,-165.01],[-290,-163],[-276.13,-155.46],[-264,-148],[-248.69,-128.67],[-239,-103],[-232.72,-87.09],[-223,-76],[-212.34,-71.64],[-200,-68],[-189.26,-64.33],[-180,-60],[-174.1,-55.81],[-169,-49],[-165.78,-17.34],[-167,15],[-162.53,25.58],[-156,32],[-154.07,31.36],[-153,30],[-152.02,29.97],[-151,30],[-150.52,29.03],[-150,28],[-145.4,25.78],[-142,24],[-140.5,23.01],[-139,22],[-137.5,21.01],[-136,20],[-134.5,19.01],[-133,18],[-125.68,12.75],[-119,9],[-112.96,5.33],[-106,1],[-105.53,0.53],[-105,0],[-102.45,-1.73],[-100,-3],[-85.03,-12.97],[-70,-23],[-58,-32],[-60,-36],[-74,-50],[-78,-53],[-109,-63],[-123,-70],[-128,-72],[-139,-86],[-146,-111],[-153,-136],[-169,-154],[-177,-157],[-230,-164],[-259,-173]],"c":true}],"h":1},{"t":69,"s":[{"i":[[-289.38,-192.28],[-303.43,-185.09],[-304.37,-181.4],[-300.57,-170.85],[-290.57,-163.42],[-277.53,-156.54],[-264.06,-148.86],[-251,-133.9],[-241.83,-111.33],[-236.15,-93.88],[-230.35,-81.72],[-224.99,-77.71],[-221.82,-76.41],[-212.63,-72.5],[-199.14,-68.93],[-194.19,-67.5],[-192.26,-66.09],[-184.46,-63.45],[-175.83,-58.27],[-171.29,-52.88],[-168.65,-48.57],[-165.24,-29.13],[-168.76,2.07],[-165.96,19.34],[-158.17,31.86],[-152.4,30.73],[-145.17,25.4],[-137.45,20.51],[-130.81,16.82],[-128.68,15.49],[-128.18,14.12],[-127.4,13.9],[-126.25,14.12],[-125.68,13.49],[-125.18,12.12],[-124.4,11.9],[-123.25,12.12],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-112.24,5.19],[-105.75,0.72],[-101.49,-2.05],[-81.1,-15.93],[-58.47,-29.21],[-59.14,-34.03],[-65.96,-44.49],[-92.22,-58],[-124.54,-70.36],[-131.87,-75.87],[-142.06,-119.69],[-159.64,-143.52],[-160.3,-146.2],[-164.9,-150.4],[-182.53,-160.63],[-218.09,-162.3],[-252.23,-169.41],[-265.24,-176.37]],"o":[[-302.24,-185.89],[-304.49,-182.85],[-303.29,-174.39],[-294.22,-165.36],[-282.75,-159.11],[-268.19,-151.41],[-255.08,-140.48],[-244.38,-119.32],[-237.48,-98.51],[-232.59,-85.48],[-226.08,-78.25],[-222.86,-76.78],[-217.06,-74.03],[-203.67,-69.95],[-194.81,-67.96],[-192.92,-66.57],[-187.8,-64.56],[-178.48,-60.3],[-172.21,-54.09],[-169.51,-50.11],[-164.86,-39.41],[-167.19,-8.39],[-167.63,13.91],[-161.23,28.31],[-154.32,32.03],[-147.83,27.41],[-140.05,22.11],[-132.83,17.87],[-128.84,15.93],[-128.35,14.59],[-127.77,13.85],[-126.64,14.04],[-125.84,13.93],[-125.35,12.59],[-124.77,11.85],[-123.64,12.04],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-116.34,6.3],[-109.36,2.43],[-103.38,-1.55],[-89.45,-9.7],[-65.37,-25.95],[-58.04,-31.78],[-62.36,-41.41],[-80.56,-56.57],[-114.49,-65.53],[-130.43,-75.17],[-150.44,-94.49],[-158.31,-143.46],[-160.69,-144.92],[-162.24,-148.4],[-173.02,-156.61],[-203.96,-164.56],[-242.61,-165.29],[-262.08,-174.63],[-275.2,-182.27]],"v":[[-300,-187],[-303.96,-183.97],[-304,-179],[-297.39,-168.11],[-288,-162],[-272.86,-153.97],[-261,-146],[-247.69,-126.61],[-239,-103],[-234.37,-89.68],[-227,-79],[-223.92,-77.24],[-221,-76],[-208.15,-71.22],[-195,-68],[-193.55,-67.04],[-192,-66],[-181.47,-61.87],[-173,-55],[-170.4,-51.5],[-168,-47],[-166.21,-18.76],[-168,10],[-163.59,23.82],[-155,32],[-150.12,29.07],[-143,24],[-135.14,19.19],[-129,16],[-128.52,15.04],[-128,14],[-127.02,13.97],[-126,14],[-125.52,13.04],[-125,12],[-124.02,11.97],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-111,4],[-105,0],[-100,-3],[-70,-23],[-58,-32],[-60,-36],[-69,-47],[-107,-63],[-129,-74],[-133,-77],[-158,-143],[-160,-144],[-161,-147],[-167,-152],[-190,-162],[-232,-164],[-259,-173],[-268,-178]],"c":true}],"h":1},{"t":70,"s":[{"i":[[-292.76,-189.55],[-299.96,-186.96],[-301.66,-187.22],[-305.22,-182.89],[-302.53,-174.01],[-292.16,-164.38],[-287.37,-161.76],[-271.91,-153.6],[-263.95,-148.78],[-257.73,-141.26],[-254.6,-137.92],[-242.02,-106.4],[-227.7,-79.88],[-215.83,-73.56],[-209.34,-72.69],[-199.07,-69.31],[-183.7,-63.6],[-177.31,-59.21],[-165.28,-32.91],[-168.7,19.93],[-156.65,31.92],[-154.05,30.7],[-151.51,30.23],[-150.4,28.24],[-143.28,25.23],[-139.85,22.82],[-136.85,20.82],[-133.85,18.82],[-132.08,17.7],[-113.64,5.25],[-91.53,-9.6],[-83.38,-14.75],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.39,-18.76],[-70.05,-21.99],[-66.85,-24.18],[-59.52,-28.85],[-65.61,-44.71],[-69.19,-47.36],[-73.35,-52.03],[-91.37,-58.97],[-109.87,-65.4],[-126.36,-71.94],[-141.3,-88.69],[-146.86,-106.98],[-148.4,-117.44],[-151.19,-124.52],[-154.26,-136.48],[-159.86,-143.53],[-163.5,-148.87],[-166.7,-151.75],[-174.28,-157.19],[-207.23,-162.56],[-237.15,-165.86],[-246.92,-168.33],[-254.87,-170.03],[-261.44,-174.51],[-270.2,-178.44],[-275.07,-182.47]],"o":[[-299.38,-186.84],[-301.1,-187.15],[-304.45,-185.38],[-304.25,-177.2],[-297.41,-167.92],[-288.73,-162.19],[-279.24,-157.25],[-265.81,-149.13],[-259.8,-145.36],[-255.43,-138.25],[-246.07,-124.95],[-231.53,-83.06],[-217.14,-75.17],[-211.96,-72.37],[-203.41,-70.94],[-188.76,-65.98],[-178.27,-59.78],[-165.1,-47.96],[-168.79,7.71],[-158.75,30.3],[-153.79,32.27],[-152.54,29.69],[-150.66,29.85],[-146.97,26.14],[-141.16,23.2],[-138.16,21.2],[-135.16,19.2],[-132.19,17.22],[-121.39,10.78],[-99.55,-3.77],[-83.67,-13.15],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-74.57,-20.53],[-68.16,-23.8],[-62.95,-27.92],[-58.28,-36.32],[-68.68,-47.65],[-71.77,-49.41],[-81.55,-56.84],[-105.35,-63.37],[-123.25,-70.57],[-138.31,-82.65],[-145.59,-101.91],[-148.59,-114.58],[-149.57,-122.42],[-153.39,-131.28],[-157.64,-142.06],[-163.38,-148.08],[-166.27,-150.12],[-169.55,-154.13],[-188.54,-163.9],[-231.87,-164.35],[-245.7,-167.86],[-251.42,-169.78],[-259.49,-172.14],[-266.79,-177.62],[-273.99,-180.55],[-281.75,-186.27]],"v":[[-299,-187],[-300.53,-187.05],[-302,-187],[-304.74,-180.05],[-300,-171],[-290,-163],[-286,-161],[-267,-150],[-263,-148],[-256,-139],[-254,-137],[-236,-93],[-219,-76],[-214,-73],[-207,-72],[-195,-68],[-180,-61],[-176,-58],[-167,-13],[-160,29],[-156,32],[-153,30],[-151,30],[-150,28],[-142,24],[-139,22],[-136,20],[-133,18],[-131,17],[-107,1],[-84,-13],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-69,-23],[-66,-25],[-59,-32],[-68,-47],[-70,-48],[-75,-53],[-101,-62],[-114,-67],[-132,-77],[-144,-97],[-148,-112],[-149,-120],[-152,-127],[-157,-141],[-161,-145],[-166,-150],[-167,-152],[-176,-158],[-227,-164],[-242,-167],[-249,-169],[-257,-171],[-264,-176],[-273,-180],[-276,-183]],"c":true}],"h":1},{"t":71,"s":[{"i":[[-295.54,-188.39],[-299.65,-186.39],[-301.35,-183.57],[-302.75,-179.55],[-302.71,-175.26],[-298.12,-169.97],[-284.21,-159.63],[-268.05,-148.3],[-256.66,-139.94],[-252.9,-134.23],[-249.16,-126.7],[-246.02,-118.66],[-243.05,-110.05],[-239.58,-100.17],[-235.43,-90.95],[-230.12,-83.21],[-223.02,-77.34],[-214.47,-73.87],[-202.52,-70.16],[-190.47,-66.68],[-182.47,-64.28],[-180.79,-62.95],[-176.71,-58.62],[-171.93,-52.84],[-168.36,-47.33],[-166.46,-36.98],[-167.1,-22.01],[-168.89,-6.85],[-169.62,7.08],[-168.27,14.22],[-165.71,20.55],[-161.82,26.69],[-156.87,30.74],[-148.6,27.32],[-118.65,8.43],[-82.97,-14.74],[-59.12,-31.21],[-59.08,-32.76],[-59.85,-35.16],[-61.08,-38.24],[-62.53,-41.22],[-65.26,-45.27],[-69.14,-48.96],[-73.5,-51.77],[-78.3,-54.18],[-86.74,-57.94],[-101.44,-63.57],[-116.52,-69.18],[-127.04,-73.37],[-131.48,-76.4],[-135.58,-80.05],[-138.94,-84.28],[-146.44,-101.98],[-151.37,-128.28],[-160.41,-143.61],[-171.81,-155.88],[-185.65,-157.72],[-235.12,-164.52],[-256.43,-171.15],[-270.84,-179.78],[-282.44,-185.63]],"o":[[-299.19,-186.92],[-300.73,-184.71],[-302.36,-180.99],[-302.93,-176.69],[-301.22,-172.62],[-289.61,-163.48],[-273.43,-152.04],[-259.67,-142.25],[-254.34,-136.65],[-250.31,-129.26],[-247.01,-121.4],[-244.03,-112.99],[-240.8,-103.52],[-236.9,-93.89],[-232.04,-85.61],[-225.61,-79.07],[-217.82,-75.04],[-206.82,-71.44],[-194.34,-67.79],[-184.53,-64.93],[-181.72,-63.83],[-178.29,-60.35],[-173.53,-54.87],[-169.35,-49.08],[-166.83,-41.71],[-166.6,-27.13],[-168.25,-11.87],[-169.58,2.63],[-168.78,12.36],[-166.73,18.32],[-163.25,24.74],[-158.62,29.69],[-154.71,31.04],[-130.57,16.01],[-94.85,-6.95],[-65.11,-26.87],[-58.97,-32.22],[-59.52,-34.23],[-60.63,-37.17],[-62.03,-40.26],[-64.08,-43.77],[-67.79,-47.86],[-72,-50.91],[-76.65,-53.4],[-82.65,-56.28],[-96.13,-61.59],[-111.63,-67.36],[-124.22,-72.18],[-129.87,-75.23],[-134.33,-78.81],[-137.88,-82.78],[-144.5,-93.35],[-149.87,-119.45],[-156.25,-138.67],[-168.18,-152.21],[-172.34,-156.21],[-217.04,-161.87],[-251.01,-168.51],[-266.34,-176.79],[-278.17,-183.69],[-291.12,-187.98]],"v":[[-299,-187],[-300.19,-185.55],[-301.85,-182.28],[-302.84,-178.12],[-302,-174],[-293.86,-166.72],[-278.82,-155.83],[-263.86,-145.27],[-256,-139],[-251.61,-131.74],[-248.09,-124.05],[-245.02,-115.83],[-242,-107],[-238.24,-97.03],[-233.74,-88.28],[-227.86,-81.14],[-220,-76],[-210.65,-72.66],[-198.43,-68.97],[-187.5,-65.81],[-182,-64],[-179.54,-61.65],[-175.12,-56.74],[-170.64,-50.96],[-168,-46],[-166.53,-32.05],[-167.68,-16.94],[-169.23,-2.11],[-169,11],[-167.5,16.27],[-164.48,22.64],[-160.22,28.19],[-155,31],[-139.58,21.67],[-106.75,0.74],[-74.04,-20.81],[-59,-32],[-59.3,-33.5],[-60.24,-36.17],[-61.56,-39.25],[-63,-42],[-66.52,-46.57],[-70.57,-49.93],[-75.08,-52.58],[-80,-55],[-91.43,-59.77],[-106.53,-65.47],[-120.37,-70.68],[-128,-74],[-132.9,-77.6],[-136.73,-81.41],[-140,-86],[-148.16,-110.72],[-155,-136],[-164.3,-147.91],[-172,-156],[-201.34,-159.8],[-245,-167],[-261.38,-173.97],[-275,-182],[-286.78,-186.8]],"c":true}],"h":1},{"t":72,"s":[{"i":[[-285.53,-192.29],[-299.96,-186.96],[-301.66,-187.22],[-305.02,-183.85],[-303.4,-177.75],[-299.01,-170.15],[-295.81,-168.74],[-291.72,-165.02],[-288.18,-162.68],[-281.98,-159.59],[-274.11,-156.07],[-272.04,-154.3],[-270.42,-153.41],[-266.72,-150.13],[-261.54,-145.73],[-252.73,-134.1],[-245.33,-116.61],[-240.21,-101.21],[-235.46,-89.08],[-226.19,-79.98],[-202.62,-72.02],[-185.9,-66.74],[-182.43,-63.32],[-179.8,-62.69],[-171.81,-54.3],[-167.04,-27.47],[-170.31,-2.74],[-167.49,19.4],[-157.92,30.94],[-146.03,26.64],[-129.59,14.97],[-122.37,10.25],[-120.51,10.23],[-119.38,8.24],[-112.24,5.19],[-104.06,-1.05],[-89.21,-10.65],[-83.38,-14.75],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.39,-18.76],[-70.05,-21.99],[-66.85,-24.18],[-60.65,-27.93],[-64.08,-44.38],[-85.76,-58.96],[-119.49,-69.14],[-134.05,-78.01],[-136.33,-82.04],[-139.41,-84.14],[-140.57,-87.27],[-149.15,-114.62],[-155.16,-135.49],[-160.24,-142.57],[-165.28,-150.46],[-169.03,-152.32],[-173.07,-156.56],[-198.67,-164.5],[-244.59,-165.66],[-255.72,-170.47]],"o":[[-299.38,-186.85],[-301.1,-187.15],[-304.32,-185.47],[-304.56,-179.99],[-300.1,-171.28],[-296.86,-168.88],[-292.88,-165.93],[-289.38,-163.4],[-284.92,-160.8],[-276.58,-157.22],[-272.58,-154.6],[-270.97,-153.71],[-268.45,-151.52],[-263.27,-147.24],[-255.81,-139.29],[-247.48,-122.76],[-241.48,-105.67],[-237.2,-92.92],[-229.3,-81.37],[-212.82,-73.65],[-190.29,-67.7],[-182.59,-64.75],[-181.08,-62.31],[-174.97,-58.51],[-166.19,-40.95],[-168.55,-9.33],[-169.87,6.87],[-162.01,25.12],[-152.76,31.02],[-133.99,18.74],[-122.68,11.85],[-121.54,9.69],[-119.67,9.85],[-116.34,6.3],[-107.88,1.01],[-95.65,-6.41],[-83.67,-13.15],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-74.57,-20.53],[-68.16,-23.8],[-62.67,-28.19],[-59.24,-36.7],[-76.03,-55.6],[-105.92,-65.6],[-130.06,-75.98],[-136.77,-80.79],[-137.58,-83.83],[-140.58,-85.84],[-147.31,-98.65],[-154.15,-130.72],[-157.66,-140.25],[-163.94,-147.66],[-167.83,-152.74],[-172.46,-154.72],[-185.94,-162.89],[-227.44,-165.5],[-254.67,-170.31],[-267.56,-175.38]],"v":[[-299,-187],[-300.53,-187.05],[-302,-187],[-304.79,-181.92],[-302,-175],[-297.94,-169.51],[-294,-167],[-290.55,-164.21],[-287,-162],[-279.28,-158.4],[-273,-155],[-271.5,-154],[-270,-153],[-264.99,-148.69],[-260,-144],[-250.11,-128.43],[-243,-110],[-238.7,-97.07],[-233,-86],[-222,-78],[-194,-69],[-183,-65],[-182,-63],[-179,-62],[-170,-50],[-168,-16],[-170,4],[-165,22],[-154,31],[-142,24],[-123,12],[-122,10],[-120,10],[-119,8],[-111,4],[-101,-3],[-84,-13],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-69,-23],[-66,-25],[-60,-32],[-69,-49],[-95,-62],[-127,-74],[-136,-80],[-137,-83],[-140,-85],[-141,-88],[-153,-127],[-157,-139],[-162,-145],[-167,-152],[-170,-153],[-176,-158],[-213,-165],[-254,-170],[-257,-171]],"c":true}],"h":1},{"t":73,"s":[{"i":[[-285.75,-192.13],[-301.42,-186.28],[-303.57,-185.64],[-305.03,-181.47],[-302.47,-175.04],[-297.16,-169.02],[-291.34,-165.22],[-286.33,-162.26],[-278.64,-158.06],[-267.75,-150.91],[-257.07,-140.34],[-245.85,-114.65],[-232.87,-83.63],[-217.79,-77.06],[-206.39,-73.75],[-202.16,-72.81],[-199.61,-72.19],[-189.69,-68.71],[-177.58,-61.28],[-171.9,-53.55],[-168.42,-45.06],[-167.86,-23.68],[-171.14,3.04],[-168.39,15.54],[-164.11,23.57],[-160.26,27.6],[-154.75,30.98],[-151.19,29.89],[-143.9,25.25],[-126.99,14.08],[-106.35,0.41],[-95.35,-6.64],[-86.63,-11.81],[-83.68,-13.51],[-83.19,-14.88],[-81.2,-15.95],[-77.93,-17.4],[-70.5,-21.92],[-60.41,-29.15],[-60.17,-32.89],[-62.13,-38.04],[-67.33,-47.79],[-76.51,-54.72],[-86.55,-59.68],[-95.13,-63.08],[-113.27,-68.24],[-134.58,-77.64],[-137.5,-83.31],[-138.88,-83.85],[-141.72,-87.81],[-144.16,-93.68],[-147.73,-104.56],[-150.83,-117.51],[-156.17,-133.34],[-159.03,-141.5],[-163.84,-146.68],[-171.8,-155.15],[-187.72,-162.83],[-209.25,-164.64],[-243.89,-167.41],[-255.61,-170.44]],"o":[[-300.39,-186.46],[-303.01,-185.87],[-305.05,-183.45],[-303.74,-177.26],[-299.49,-170.91],[-293.09,-166.17],[-289.01,-163.73],[-281.15,-159.43],[-271.97,-153.74],[-260.3,-144.21],[-249.16,-126.58],[-237.7,-93.18],[-221.6,-78.43],[-210.19,-74.72],[-202.86,-72.97],[-200.54,-72.43],[-194.39,-70.57],[-181.28,-64.07],[-173.44,-56.02],[-169.39,-48.07],[-166.79,-33.2],[-170.04,-5.56],[-169.59,12.51],[-165.66,21.07],[-162.13,26.11],[-156.57,30.04],[-153.24,31.02],[-146.52,27],[-134.57,19.13],[-112.88,4.73],[-98.29,-4.73],[-89.53,-10.18],[-83.83,-13.07],[-83.36,-14.41],[-82.23,-15.5],[-79.04,-16.9],[-74.54,-19.6],[-63.43,-26.7],[-59.86,-31.62],[-61.31,-36.1],[-65.08,-44.68],[-73.05,-52.81],[-83.74,-58.39],[-92.25,-62.02],[-104.73,-66.17],[-128.2,-73.97],[-137.06,-83.14],[-138.41,-83.67],[-140.65,-85.97],[-143.48,-91.67],[-146.56,-100.3],[-149.87,-113.16],[-153.59,-128.13],[-158.99,-138.98],[-161.25,-144.93],[-169.46,-152.72],[-180.22,-160.02],[-202.28,-165.17],[-228.66,-165.54],[-253.64,-170.52],[-267.59,-175.23]],"v":[[-299,-187],[-302.22,-186.08],[-304,-185],[-304.39,-179.37],[-301,-173],[-295.12,-167.6],[-291,-165],[-283.74,-160.84],[-277,-157],[-264.03,-147.56],[-254,-135],[-241.77,-103.91],[-225,-80],[-213.99,-75.89],[-203,-73],[-201.35,-72.62],[-199,-72],[-185.48,-66.39],[-175,-58],[-170.65,-50.81],[-168,-42],[-168.95,-14.62],[-170,10],[-167.03,18.31],[-163,25],[-158.41,28.82],[-154,31],[-148.86,28.45],[-142,24],[-119.93,9.4],[-101,-3],[-92.44,-8.41],[-84,-13],[-83.52,-13.96],[-83,-15],[-80.12,-16.42],[-77,-18],[-66.97,-24.31],[-60,-31],[-60.74,-34.5],[-63,-40],[-70.19,-50.3],[-81,-57],[-89.4,-60.85],[-98,-64],[-120.73,-71.11],[-137,-83],[-137.95,-83.49],[-139,-84],[-142.6,-89.74],[-145,-96],[-148.8,-108.86],[-152,-122],[-158,-137],[-160,-143],[-166,-149],[-175,-157],[-195,-164],[-217,-165],[-252,-170],[-257,-171]],"c":true}],"h":1},{"t":74,"s":[{"i":[[-292.57,-188.65],[-303.05,-185.35],[-304.66,-181.65],[-298.95,-170.24],[-285.39,-161.95],[-279.5,-158.81],[-273.32,-155.68],[-270.64,-153.42],[-270.25,-152.19],[-269,-151.58],[-267.4,-151.33],[-258.89,-142.19],[-249.23,-123.96],[-241.51,-101.89],[-231.61,-83.59],[-207.31,-74.97],[-180.56,-65.5],[-173.27,-55.56],[-170.5,-50.59],[-168.37,-27.98],[-171.61,8.02],[-165.44,21.2],[-155.52,31.02],[-151.99,30.1],[-146.43,27.2],[-145.68,26.49],[-145.18,25.12],[-144.4,24.9],[-143.25,25.12],[-142.68,24.49],[-142.19,23.12],[-139.97,21.9],[-136.82,20.53],[-131.25,16.82],[-125.11,12.95],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-112.13,5.09],[-104.43,-0.81],[-89.7,-9.65],[-74.12,-20.14],[-69.37,-23.75],[-67.51,-23.77],[-66.34,-25.75],[-64.49,-25.78],[-63.26,-27.76],[-61.37,-27.67],[-61.96,-36.16],[-79.55,-58.61],[-122.28,-71.06],[-143.08,-88.96],[-153.12,-130.1],[-161.69,-142.58],[-162.48,-145.25],[-180.68,-161.46],[-235.91,-163.64],[-272.89,-179.81]],"o":[[-301.22,-186.02],[-304.77,-183.16],[-302.76,-174.02],[-290.27,-164.21],[-281.09,-159.48],[-275.62,-156.91],[-270.76,-153.83],[-270.38,-152.6],[-269.55,-151.66],[-267.92,-151.41],[-262.77,-147.46],[-252.11,-130.44],[-243.95,-109.85],[-235.33,-88.76],[-217.28,-76.97],[-188.95,-69.24],[-174.27,-57.01],[-171.39,-52.35],[-167.31,-40.49],[-170.52,-3.73],[-168.18,17.2],[-159.11,28.11],[-153.52,31],[-148.45,28.2],[-145.84,26.93],[-145.35,25.59],[-144.77,24.85],[-143.64,25.04],[-142.84,24.93],[-142.36,23.59],[-141.06,22.38],[-137.85,20.97],[-133.45,18.34],[-127.08,14.12],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-116.54,6.42],[-107.81,0.95],[-94.7,-7.02],[-79.77,-16.1],[-69.68,-22.15],[-68.54,-24.31],[-66.7,-24.14],[-65.57,-26.31],[-63.75,-26.11],[-62.64,-28.34],[-58.43,-30.26],[-68.15,-53.09],[-109.01,-68.27],[-138.37,-82.02],[-151.79,-109.97],[-160.23,-142.4],[-162.62,-143.83],[-170.09,-156.18],[-214.24,-167.86],[-263.9,-173.89],[-284.64,-185.94]],"v":[[-298,-187],[-303.91,-184.25],[-304,-179],[-294.61,-167.23],[-282,-160],[-277.56,-157.86],[-271,-154],[-270.51,-153.01],[-270,-152],[-268.46,-151.49],[-267,-151],[-255.5,-136.32],[-247,-118],[-238.42,-95.33],[-226,-81],[-198.13,-72.11],[-175,-58],[-172.33,-53.96],[-170,-49],[-169.44,-15.86],[-169,15],[-162.27,24.66],[-153,31],[-150.22,29.15],[-146,27],[-145.52,26.04],[-145,25],[-144.02,24.97],[-143,25],[-142.52,24.04],[-142,23],[-138.91,21.44],[-136,20],[-129.17,15.47],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-111,4],[-101,-3],[-83,-14],[-70,-22],[-69,-24],[-67,-24],[-66,-26],[-64,-26],[-63,-28],[-61,-28],[-63,-39],[-96,-64],[-131,-77],[-146,-96],[-160,-142],[-162,-143],[-163,-146],[-194,-164],[-256,-171],[-279,-183]],"c":true}],"h":1},{"t":75,"s":[{"i":[[-295.59,-187.7],[-303.06,-185.37],[-304.65,-181.62],[-300.83,-173.26],[-293.07,-166.71],[-282.92,-160.57],[-274.28,-156.43],[-270.64,-153.43],[-270.21,-152.2],[-269.08,-151.57],[-267.41,-151.34],[-264.28,-148.24],[-260.11,-142.58],[-257.5,-138.86],[-255.47,-135.82],[-247.63,-117.61],[-236.98,-89.53],[-229.89,-83.43],[-226.12,-81.55],[-203.92,-74.04],[-176.31,-62.95],[-169.26,-31.28],[-172.61,7.44],[-165.33,21.67],[-155.49,29.99],[-150.14,29],[-143.31,24.49],[-139.25,21.68],[-136.92,19.6],[-133.5,17.76],[-129.82,16.53],[-128.39,15.45],[-127.34,14.26],[-126,13.29],[-124.52,12.36],[-115.99,6.63],[-104.31,-0.88],[-91.25,-9.32],[-76.94,-18.8],[-69.98,-23.07],[-66.87,-24.41],[-63.63,-26.6],[-61.28,-28.98],[-61.04,-33.76],[-63.82,-41.78],[-73.95,-55],[-93.85,-63.72],[-113.24,-69.85],[-130.3,-76.98],[-136.95,-81.95],[-148.94,-104.08],[-154.65,-123.85],[-158.86,-139.76],[-161.3,-142.82],[-166.81,-149.16],[-170.33,-153.85],[-177.02,-158.87],[-196.18,-165.49],[-224.52,-165.73],[-265.13,-175.24],[-283.48,-184.65]],"o":[[-301.24,-186.06],[-304.77,-183.15],[-303.29,-176.16],[-295.72,-168.54],[-286.54,-162.36],[-276.79,-157.61],[-270.78,-153.83],[-270.35,-152.62],[-269.62,-151.65],[-267.97,-151.42],[-265.73,-149.95],[-261.48,-144.55],[-258.26,-139.95],[-256.1,-136.79],[-250.89,-127.84],[-240.68,-98.45],[-231.08,-84.16],[-227.41,-82.13],[-215.02,-76.06],[-184.57,-67.49],[-168.21,-44.25],[-171.46,-5.44],[-168.08,18.17],[-159.03,27.57],[-151.99,30.01],[-145.8,26.25],[-140.04,22.38],[-137.69,20.29],[-134.84,18.24],[-130.99,16.9],[-128.71,15.82],[-127.7,14.66],[-126.49,13.62],[-125.01,12.66],[-120.08,9.32],[-108.1,1.53],[-96.03,-6.17],[-81.71,-15.64],[-71.04,-22.62],[-67.89,-23.97],[-64.74,-25.86],[-61.9,-28.16],[-60.63,-31.37],[-62.63,-38.97],[-68.53,-50.63],[-86.61,-61.54],[-106.84,-67.86],[-124.97,-74.41],[-135.16,-80.95],[-146.59,-91.62],[-152.99,-119.86],[-157.47,-132.53],[-161.82,-142.85],[-163.62,-146.73],[-169.32,-153.03],[-174.68,-156.85],[-183.51,-162.56],[-214.45,-167.09],[-252.1,-168.32],[-279.04,-182.71],[-291.95,-187.18]],"v":[[-298,-187],[-303.92,-184.26],[-304,-179],[-298.27,-170.9],[-292,-166],[-279.86,-159.09],[-271,-154],[-270.49,-153.03],[-270,-152],[-268.53,-151.49],[-267,-151],[-262.88,-146.39],[-259,-141],[-256.8,-137.83],[-255,-135],[-244.15,-108.03],[-232,-85],[-228.65,-82.78],[-225,-81],[-194.25,-70.76],[-172,-53],[-170.36,-18.36],[-169,16],[-162.18,24.62],[-153,30],[-147.97,27.62],[-141,23],[-138.47,20.98],[-136,19],[-132.25,17.33],[-129,16],[-128.04,15.05],[-127,14],[-125.5,12.98],[-124,12],[-112.05,4.08],[-101,-3],[-86.48,-12.48],[-72,-22],[-68.94,-23.52],[-66,-25],[-62.76,-27.38],[-61,-30],[-61.84,-36.36],[-65,-44],[-80.28,-58.27],[-101,-66],[-119.11,-72.13],[-134,-80],[-138,-83],[-152,-116],[-156,-128],[-161,-142],[-162,-144],[-168,-151],[-172,-155],[-179,-160],[-202,-166],[-238,-167],[-274,-180],[-288,-186]],"c":true}],"h":1},{"t":76,"s":[{"i":[[-293.42,-190.25],[-301.87,-185.69],[-302.64,-185.49],[-303.61,-175.97],[-290.66,-166.03],[-285.51,-162.85],[-280.35,-159.78],[-276.2,-157.39],[-272,-154.78],[-270.09,-153.14],[-268.6,-151.5],[-265.87,-149.17],[-264.53,-147.18],[-263.5,-145.69],[-262.12,-145.15],[-259.65,-141.94],[-256.75,-137.31],[-248.37,-117.44],[-236.21,-88.48],[-218.17,-78.9],[-200.34,-74.03],[-191.89,-70.64],[-187.86,-68.44],[-185.63,-67.62],[-183.59,-67.42],[-179.12,-63.54],[-173.96,-56.19],[-169.67,-34.86],[-173.25,-2.69],[-169.46,15.18],[-161.36,24.9],[-151.96,29.77],[-145.16,25.69],[-139.28,21.7],[-136.89,19.58],[-133.52,17.77],[-129.82,16.53],[-127.34,14.75],[-124.85,12.58],[-115.89,6.57],[-104.11,-1.01],[-91.25,-9.32],[-76.98,-18.78],[-69.7,-23.22],[-66.8,-24.38],[-63.85,-26.61],[-62.37,-29.16],[-66.03,-45.88],[-68.31,-50.2],[-82.17,-59.31],[-103.93,-68.04],[-120.94,-73.45],[-137.55,-82.18],[-144.89,-91.93],[-151.34,-112.26],[-159.28,-135.72],[-163.68,-146.22],[-174.23,-156.28],[-183.25,-162.34],[-217.91,-165.97],[-264.57,-174.85]],"o":[[-301.55,-185.69],[-302.42,-185.59],[-306.28,-180.45],[-295.8,-168.76],[-287.33,-163.96],[-282.02,-160.77],[-277.7,-158.25],[-273.35,-155.65],[-270.54,-153.64],[-269.12,-152.07],[-266.6,-149.83],[-264.83,-147.85],[-263.94,-145.86],[-262.59,-145.33],[-260.78,-143.53],[-257.64,-138.83],[-251.52,-128.2],[-240.72,-97.58],[-224,-80.89],[-206.34,-75.47],[-193.46,-71.42],[-189.09,-69.15],[-186.33,-67.66],[-184.26,-67.49],[-181.14,-65.7],[-175.53,-58.79],[-169.3,-45.52],[-171.65,-13.45],[-171.28,10.99],[-164.5,22.14],[-154.13,29.42],[-147.47,27.9],[-140.09,22.41],[-137.69,20.29],[-134.86,18.26],[-131,16.91],[-128.16,15.46],[-125.68,13.31],[-120.09,9.32],[-107.91,1.4],[-96.01,-6.18],[-81.74,-15.62],[-70.8,-22.78],[-67.7,-24.02],[-64.66,-26.03],[-62.7,-28.18],[-60.8,-36.93],[-68.7,-48.75],[-72.8,-55.45],[-95.32,-65.37],[-116.98,-71.66],[-132.69,-79.37],[-143.4,-89.82],[-150.49,-102.36],[-155.82,-128.67],[-163.05,-143.03],[-167.6,-151.51],[-179.19,-159.36],[-198.15,-167.98],[-251.59,-168.27],[-283.49,-184.21]],"v":[[-301,-186],[-302.15,-185.64],[-303,-185],[-299.7,-172.36],[-289,-165],[-283.76,-161.81],[-279,-159],[-274.77,-156.52],[-271,-154],[-269.6,-152.6],[-268,-151],[-265.35,-148.51],[-264,-146],[-263.05,-145.51],[-262,-145],[-258.65,-140.38],[-256,-136],[-244.54,-107.51],[-229,-84],[-212.25,-77.19],[-195,-72],[-190.49,-69.89],[-187,-68],[-184.94,-67.56],[-183,-67],[-177.32,-61.16],[-173,-54],[-170.66,-24.16],[-172,6],[-166.98,18.66],[-158,27],[-149.72,28.84],[-141,23],[-138.49,20.99],[-136,19],[-132.26,17.34],[-129,16],[-126.51,14.03],[-124,12],[-111.9,3.98],[-101,-3],[-86.49,-12.47],[-72,-22],[-68.7,-23.62],[-66,-25],[-63.28,-27.39],[-62,-31],[-68,-48],[-69,-51],[-88,-62],[-111,-70],[-126,-76],[-142,-88],[-146,-94],[-154,-122],[-162,-141],[-165,-148],[-177,-158],[-185,-163],[-233,-167],[-277,-181]],"c":true}],"h":1},{"t":77,"s":[{"i":[[-300.04,-186.53],[-302.13,-185.71],[-303.72,-185.5],[-304.68,-182.16],[-302.54,-176.14],[-297.01,-169.99],[-291.56,-166.71],[-281.17,-160.41],[-265.4,-149.45],[-261.59,-144.05],[-261.34,-142.46],[-259.65,-140.58],[-257.39,-138.64],[-255.14,-134.26],[-252.86,-128],[-245.87,-109.17],[-233.84,-86.16],[-223.36,-81.45],[-217.89,-79.59],[-199.37,-74.46],[-178.85,-64.63],[-170.15,-35.5],[-173.52,4.39],[-168.38,16.45],[-161.55,23.52],[-159.36,25.45],[-158.5,25.66],[-153.91,29.13],[-149.97,28.86],[-143.15,24.59],[-137.81,21.17],[-117.53,7.88],[-94.82,-7.11],[-81.74,-15.25],[-77.42,-17.6],[-76.04,-18.7],[-74.42,-19.59],[-69.18,-23.39],[-62.54,-27.78],[-62.03,-33.43],[-64.25,-40.03],[-66.5,-45.87],[-69.02,-50.87],[-87.07,-63.12],[-122.59,-73.22],[-136.25,-81.92],[-141.63,-87.15],[-150.35,-103.85],[-156.35,-129.95],[-164.06,-145.27],[-172.61,-155.42],[-177.33,-158.52],[-180.48,-160.26],[-187.18,-163.29],[-195.61,-165.51],[-212.94,-167.14],[-233.77,-167.25],[-248.51,-169.14],[-258.24,-171.97],[-271.24,-178.17],[-285.99,-186.25]],"o":[[-301.52,-185.71],[-303.23,-185.6],[-304.66,-183.84],[-303.62,-178.31],[-299.48,-171.88],[-293.05,-167.4],[-286.97,-163.68],[-270.39,-153.29],[-261.67,-144.57],[-261.42,-143],[-260.46,-141.25],[-258.12,-139.27],[-255.95,-136.26],[-253.59,-130.13],[-248.69,-118.34],[-238.44,-93.08],[-225.17,-82.15],[-219.72,-80.17],[-207.7,-76.4],[-184.95,-68.58],[-169.89,-49.19],[-171.97,-8.71],[-170.35,13.95],[-163.97,21.24],[-159.61,25.37],[-158.8,25.59],[-155.17,27.96],[-151.31,29.58],[-145,25.75],[-139.56,22.3],[-125.12,12.93],[-102.38,-2.14],[-83.28,-14.46],[-78.81,-16.82],[-76.58,-18.4],[-74.96,-19.29],[-71.91,-22],[-64.5,-26.28],[-61.66,-31.41],[-63.33,-37.73],[-65.74,-43.93],[-68.14,-49.33],[-76.28,-59.25],[-110.23,-70.1],[-134.19,-80.34],[-139.97,-85.33],[-147.93,-95.63],[-154.57,-121.02],[-161.5,-141.31],[-169.61,-152.32],[-176.34,-157.89],[-179.4,-159.7],[-184.63,-162.28],[-192.67,-164.9],[-206.06,-167.02],[-226.8,-167.26],[-244.89,-168.4],[-255.18,-170.92],[-266.49,-175.05],[-280.99,-183.77],[-295.63,-187.45]],"v":[[-301,-186],[-302.68,-185.66],[-304,-185],[-304.15,-180.24],[-301,-174],[-295.03,-168.69],[-292,-167],[-275.78,-156.85],[-262,-145],[-261.51,-143.53],[-261,-142],[-258.88,-139.93],[-257,-138],[-254.36,-132.19],[-252,-126],[-242.15,-101.13],[-227,-83],[-221.54,-80.81],[-216,-79],[-192.16,-71.52],[-175,-58],[-171.06,-22.1],[-171,12],[-166.18,18.85],[-160,25],[-159.08,25.52],[-158,26],[-152.61,29.36],[-147,27],[-141.36,23.45],[-136,20],[-109.95,2.87],[-84,-14],[-80.28,-16.04],[-77,-18],[-75.5,-18.99],[-74,-20],[-66.84,-24.83],[-62,-30],[-62.68,-35.58],[-65,-42],[-67.32,-47.6],[-70,-52],[-98.65,-66.61],[-132,-79],[-138.11,-83.62],[-143,-89],[-152.46,-112.43],[-160,-138],[-166.83,-148.8],[-175,-157],[-178.36,-159.11],[-182,-161],[-189.93,-164.1],[-199,-166],[-219.87,-167.2],[-241,-168],[-251.85,-170.03],[-261,-173],[-276.11,-180.97],[-292,-187]],"c":true}],"h":1},{"t":78,"s":[{"i":[[-300.31,-186.46],[-301.86,-185.7],[-302.72,-185.58],[-304.28,-179.8],[-301.01,-175.34],[-294.52,-168.48],[-284.77,-162.74],[-279.47,-159.31],[-275.74,-156.56],[-274.05,-155.61],[-272.41,-155.33],[-266.87,-150.21],[-259.85,-141.1],[-248.94,-116.37],[-234.48,-86.19],[-221.32,-81.17],[-217.26,-80.39],[-195.23,-74.25],[-172.64,-57.89],[-171.22,-26.27],[-173.93,4.39],[-169.33,15.26],[-164.9,20.31],[-159.74,24.93],[-153.05,29.08],[-148.11,27.94],[-142.27,23.48],[-136.04,19.45],[-130.43,15.91],[-118.39,8.19],[-105,-0.48],[-97.1,-5.46],[-91.75,-8.88],[-86.1,-12.44],[-81.15,-15.52],[-77.48,-17.94],[-75.69,-18.69],[-74.68,-19.51],[-74.19,-20.88],[-71.99,-22.07],[-69.01,-23.33],[-65.71,-25.4],[-63.4,-27.65],[-62.97,-33.58],[-65.16,-44.27],[-68.56,-50.06],[-73.92,-56.11],[-97.3,-66.86],[-138.85,-81.34],[-152.52,-107.96],[-156.42,-126.25],[-160.18,-133.98],[-161.91,-141.04],[-164.56,-144.41],[-172.97,-155.73],[-178.63,-159.75],[-180.49,-159.77],[-181.56,-161.78],[-184.65,-162.86],[-235.96,-165.35],[-283.39,-187.51]],"o":[[-301.5,-185.67],[-302.47,-185.66],[-304.52,-181.88],[-302.52,-176.53],[-297.63,-170.86],[-288.09,-164.42],[-280.85,-160.28],[-276.92,-157.45],[-274.6,-155.69],[-272.96,-155.43],[-269.44,-152.91],[-262.07,-144.3],[-252.2,-128.27],[-240.08,-95.33],[-222.69,-81.48],[-218.6,-80.63],[-205.66,-76.81],[-178.72,-64.8],[-169.76,-36.97],[-173.31,-5.59],[-170.38,13.61],[-166.59,18.61],[-161.72,23.14],[-155.41,27.9],[-149.72,28.95],[-144.38,25.21],[-138.08,20.75],[-132.21,17.03],[-123.39,11.43],[-109.2,2.23],[-98.97,-4.27],[-93.48,-7.76],[-87.78,-11.43],[-82.79,-14.48],[-78.14,-17.59],[-76.26,-18.49],[-74.83,-19.07],[-74.36,-20.41],[-72.98,-21.65],[-70,-22.9],[-66.76,-24.83],[-64.03,-26.82],[-62.64,-30.2],[-64.23,-40.62],[-66.85,-47.75],[-72.1,-54.24],[-83.12,-63.68],[-125.17,-75.69],[-149.97,-99.47],[-156.24,-121.53],[-158.6,-132.8],[-161.9,-138.24],[-163.26,-143.46],[-168.86,-150.16],[-178.32,-158.15],[-179.46,-160.31],[-181.36,-160.16],[-182.79,-162.4],[-203.17,-170.18],[-268.74,-175.07],[-300.3,-186.96]],"v":[[-301,-186],[-302.17,-185.68],[-303,-185],[-303.4,-178.17],[-300,-174],[-291.3,-166.45],[-282,-161],[-278.19,-158.38],[-275,-156],[-273.51,-155.52],[-272,-155],[-264.47,-147.26],[-258,-138],[-244.51,-105.85],[-224,-82],[-219.96,-80.9],[-216,-80],[-186.97,-69.53],[-171,-46],[-172.27,-15.93],[-171,12],[-167.96,16.93],[-163,22],[-157.58,26.42],[-151,29],[-146.24,26.57],[-140,22],[-134.13,18.24],[-129,15],[-113.8,5.21],[-101,-3],[-95.29,-6.61],[-90,-10],[-84.45,-13.46],[-79,-17],[-76.87,-18.21],[-75,-19],[-74.52,-19.96],[-74,-21],[-70.99,-22.49],[-68,-24],[-64.87,-26.11],[-63,-29],[-63.6,-37.1],[-66,-46],[-70.33,-52.15],[-75,-57],[-111.23,-71.27],[-146,-93],[-155,-117],[-158,-131],[-161,-136],[-163,-143],[-165,-145],[-178,-158],[-179,-160],[-181,-160],[-182,-162],[-185,-163],[-255,-171],[-299,-187]],"c":true}],"h":1},{"t":79,"s":[{"i":[[-294.15,-190.53],[-302.1,-185.71],[-303.81,-185.52],[-304.32,-180.4],[-301,-174.21],[-298.35,-171.57],[-295.79,-170.57],[-292.99,-168.25],[-291.28,-166.18],[-290,-165.57],[-288.38,-165.22],[-284.47,-162.93],[-279.27,-159.79],[-277.36,-158.43],[-276.32,-157.22],[-274.3,-156.01],[-271.74,-154.65],[-259.61,-140.16],[-248.32,-113.86],[-243.6,-102.46],[-241.55,-97.57],[-240.53,-96.36],[-240.35,-95.54],[-236.01,-89.86],[-228.96,-85.35],[-224.19,-82.94],[-221.92,-81.32],[-218.78,-80.55],[-214.99,-80.27],[-202.31,-76.44],[-187.6,-71.53],[-176.84,-63.06],[-174.85,-17.59],[-171.02,12.67],[-163.15,22.47],[-152.27,29.69],[-138.14,21.02],[-129.01,15.5],[-121.98,10.89],[-119.38,8.24],[-114.86,6.13],[-88.39,-10.84],[-63.59,-26.25],[-64.11,-41.61],[-71.53,-53.72],[-78.18,-59.32],[-102.59,-69.27],[-129.49,-77.59],[-132.82,-80.3],[-137.44,-84.75],[-142.19,-87.11],[-144.14,-90.8],[-154.89,-130.28],[-174.09,-156.51],[-177.52,-157.78],[-178.63,-159.75],[-180.49,-159.77],[-181.57,-161.77],[-190.82,-165],[-241.18,-167.27],[-267.12,-176.2]],"o":[[-301.44,-185.71],[-303.28,-185.62],[-304.82,-182.8],[-302.41,-176.11],[-299.2,-172.04],[-296.64,-170.84],[-293.85,-169.16],[-291.71,-166.76],[-290.56,-165.71],[-288.91,-165.32],[-286.33,-164.03],[-280.94,-160.81],[-277.7,-158.81],[-276.67,-157.63],[-275.18,-156.43],[-272.58,-155.12],[-264.45,-148.24],[-251.55,-122.97],[-244.33,-104.42],[-242.21,-99.03],[-240.61,-96.59],[-240.4,-95.84],[-238.03,-91.93],[-231.47,-86.57],[-224.97,-83.53],[-222.66,-81.83],[-220.04,-80.67],[-216.26,-80.35],[-207.1,-78.13],[-192.68,-72.71],[-181.65,-65.83],[-168.48,-39.36],[-173.55,6.21],[-165.46,20.65],[-151.62,29.51],[-141.74,23.5],[-131.47,16.73],[-124.56,12.17],[-119.67,9.85],[-117.14,6.81],[-98.79,-3.64],[-69.8,-22.67],[-62.35,-29.94],[-67.19,-48.76],[-75.91,-57.52],[-91.13,-67.03],[-118.75,-74.55],[-132.85,-80.82],[-136.44,-82.45],[-140.42,-87.13],[-143.68,-88.75],[-156.1,-107.48],[-168.69,-150.47],[-176.4,-158.31],[-178.32,-158.15],[-179.46,-160.31],[-181.36,-160.16],[-185.82,-164.06],[-213.04,-170.3],[-262.86,-173.37],[-278.94,-181.68]],"v":[[-301,-186],[-302.69,-185.67],[-304,-185],[-303.36,-178.26],[-300,-173],[-297.49,-171.21],[-295,-170],[-292.35,-167.51],[-291,-166],[-289.45,-165.45],[-288,-165],[-282.7,-161.87],[-278,-159],[-277.02,-158.03],[-276,-157],[-273.44,-155.56],[-271,-154],[-255.58,-131.57],[-245,-106],[-242.91,-100.74],[-241,-97],[-240.47,-96.1],[-240,-95],[-233.74,-88.21],[-226,-84],[-223.42,-82.39],[-221,-81],[-217.52,-80.45],[-214,-80],[-196,-74],[-186,-70],[-174,-55],[-174,-2],[-168,17],[-159,25],[-146,26],[-135,19],[-127,14],[-120,10],[-119,8],[-113,5],[-74,-20],[-63,-28],[-66,-46],[-73,-55],[-81,-61],[-114,-73],[-132,-80],[-134,-81],[-139,-86],[-143,-88],[-145,-92],[-167,-148],[-176,-158],[-178,-158],[-179,-160],[-181,-160],[-182,-162],[-195,-166],[-258,-172],[-271,-178]],"c":true}],"h":1},{"t":80,"s":[{"i":[[-300.34,-186.43],[-301.87,-185.71],[-302.72,-185.58],[-302.31,-175.24],[-288.21,-165.28],[-283.24,-162.39],[-279.32,-159.92],[-271.96,-154.39],[-264.32,-145.92],[-262.49,-142.68],[-261.12,-142.19],[-260.32,-140.74],[-259.31,-138.52],[-256.78,-133.84],[-253.96,-127.27],[-252.06,-123.08],[-250.42,-120.06],[-249.24,-116.31],[-248.47,-112.15],[-247.12,-109.13],[-245.48,-106.08],[-240.56,-96.14],[-231.87,-86.76],[-222.16,-82.54],[-213.61,-79.71],[-202.81,-77.09],[-191.06,-73.84],[-187.01,-71.16],[-185.44,-69.37],[-181.26,-65.77],[-177.07,-60.94],[-174.16,-55],[-172.26,-47.52],[-172.69,-26.34],[-175.06,3.73],[-167.37,17.73],[-153.76,28.15],[-147.21,27.16],[-141.15,23.4],[-132.84,17.85],[-125.4,12.58],[-120.91,9.85],[-117.95,8.6],[-105.45,-0.21],[-93.71,-7.62],[-83.19,-14.12],[-70.79,-21.88],[-64.79,-26.07],[-64.53,-38.29],[-76.17,-58.18],[-85.64,-63.34],[-100.16,-70.2],[-109.61,-72.61],[-134.93,-80.65],[-153.1,-108.77],[-164.54,-143.72],[-172.76,-153.78],[-196.36,-168.02],[-228.29,-168.46],[-256.26,-171.21],[-283.58,-186.77]],"o":[[-301.5,-185.67],[-302.48,-185.66],[-305.46,-179.86],[-293.68,-167.95],[-284.58,-163.18],[-280.61,-160.76],[-275.05,-156.93],[-266.59,-148.89],[-262.92,-142.83],[-261.58,-142.36],[-260.66,-141.48],[-259.64,-139.26],[-257.8,-135.95],[-254.85,-129.49],[-252.6,-124.05],[-250.96,-121.08],[-249.5,-117.73],[-248.72,-113.52],[-247.62,-110.09],[-246.05,-107.12],[-242.87,-100.26],[-235.06,-89.39],[-225.11,-83.68],[-216.42,-80.56],[-207.03,-77.92],[-194.82,-75.05],[-187.54,-71.72],[-185.96,-69.98],[-182.97,-67.3],[-178.31,-62.59],[-175.03,-57.24],[-172.77,-50.14],[-171.16,-36.7],[-174.64,-6.12],[-170.99,13.41],[-158.75,25.1],[-148.88,27.96],[-143.35,24.88],[-135.65,19.81],[-127.72,14.23],[-121.93,10.3],[-118.92,9],[-111.64,4.61],[-96.39,-5.9],[-85.56,-12.85],[-75.41,-19.46],[-65.82,-25.66],[-62.99,-32.75],[-69.48,-54.15],[-84.86,-63.53],[-93.14,-66.97],[-107.68,-72.52],[-123.86,-76.57],[-151.41,-97.71],[-160.09,-132.49],[-171.47,-151.69],[-182.82,-163.68],[-218.25,-169.49],[-247.15,-169.63],[-276.55,-178.52],[-300.29,-187.02]],"v":[[-301,-186],[-302.17,-185.69],[-303,-185],[-298,-171.6],[-286,-164],[-281.92,-161.57],[-278,-159],[-269.27,-151.64],[-263,-143],[-262.04,-142.52],[-261,-142],[-259.98,-140],[-259,-138],[-255.82,-131.66],[-253,-125],[-251.51,-122.08],[-250,-119],[-248.98,-114.91],[-248,-111],[-246.58,-108.12],[-245,-105],[-237.81,-92.76],[-228,-85],[-219.29,-81.55],[-211,-79],[-198.82,-76.07],[-188,-72],[-186.48,-70.57],[-185,-69],[-179.78,-64.18],[-176,-59],[-173.46,-52.57],[-172,-45],[-173.67,-16.23],[-172,11],[-163.06,21.42],[-150,28],[-145.28,26.02],[-139,22],[-130.28,16.04],[-123,11],[-119.91,9.43],[-117,8],[-101,-3],[-90,-10],[-79,-17],[-68,-24],[-64,-29],[-66,-43],[-84,-63],[-87,-64],[-106,-72],[-111,-73],[-143,-89],[-157,-122],[-170,-150],[-174,-155],[-211,-169],[-237,-169],[-264,-174],[-299,-187]],"c":true}],"h":1},{"t":81,"s":[{"i":[[-299.4,-186.31],[-300.63,-185.96],[-301.8,-186.16],[-304.78,-181.05],[-300.65,-174.83],[-297.37,-171.59],[-292.75,-168.72],[-291.36,-167.54],[-290.53,-167.35],[-282.95,-162.38],[-275.69,-157.19],[-270.85,-152.98],[-269,-150.24],[-266.92,-147.85],[-265.39,-146.51],[-258.68,-136.39],[-251.81,-120.02],[-244.3,-102.24],[-235.54,-90.09],[-223.91,-84.13],[-210.5,-80.31],[-189.92,-73.42],[-174.26,-57.77],[-172.88,-33.25],[-175.93,-8.13],[-173.89,5.63],[-170.94,12.53],[-169.43,14.92],[-168.31,16.65],[-163.1,21.24],[-151.17,28.12],[-147.65,27.55],[-145.02,25.68],[-140.2,22.53],[-134.66,19.05],[-129.95,16.08],[-126.14,13.71],[-124.36,12.42],[-123.33,11.21],[-120.94,9.88],[-117.91,8.58],[-112.51,4.92],[-105.69,-0.02],[-101.03,-2.76],[-97.43,-5.08],[-89.08,-10.58],[-78.59,-17.67],[-66.26,-24.01],[-69.32,-50.81],[-88.25,-66.05],[-138.33,-80.77],[-154.72,-110.34],[-159.6,-125.88],[-163.04,-139.25],[-166.71,-143.62],[-167.49,-146.26],[-176.96,-157.49],[-182.33,-161.59],[-189.29,-164.66],[-226.39,-167.97],[-278.74,-184.87]],"o":[[-300.23,-185.88],[-301.42,-186.1],[-304.95,-183.64],[-302.63,-176.65],[-299,-172.73],[-294.25,-169.58],[-291.6,-167.61],[-290.83,-167.41],[-285.86,-164.28],[-277.87,-158.83],[-271.6,-153.86],[-269.55,-151.17],[-267.48,-148.35],[-265.87,-146.93],[-261.28,-141.13],[-253.95,-125.84],[-246.78,-107.44],[-238.68,-93.57],[-228.16,-85.73],[-215.08,-81.42],[-197.54,-76.53],[-178.28,-64.04],[-171.91,-41.43],[-174.89,-16.6],[-174.67,2.86],[-172.03,10.46],[-169.78,14.34],[-168.7,16.07],[-166.76,18.43],[-155.3,26.09],[-148.38,27.97],[-145.96,26.41],[-142.12,23.76],[-136.47,20.18],[-131.38,16.98],[-127.33,14.45],[-124.7,12.81],[-123.68,11.62],[-121.98,10.35],[-118.9,9],[-114.91,6.68],[-107.9,1.57],[-102.32,-1.97],[-98.58,-4.31],[-92.54,-8.24],[-82.11,-15.29],[-70.14,-23.16],[-62.19,-36.89],[-79.66,-63.14],[-119.74,-76.63],[-152.68,-101.88],[-158.19,-122],[-162.39,-134.1],[-165.19,-143.36],[-167.62,-144.82],[-171.89,-152.67],[-181.6,-160.37],[-187.89,-165.03],[-210.08,-170.59],[-269.01,-172.38],[-299.25,-187.14]],"v":[[-300,-186],[-301.02,-186.03],[-302,-186],[-303.7,-178.85],[-300,-174],[-295.81,-170.58],[-292,-168],[-291.1,-167.47],[-290,-167],[-280.41,-160.61],[-273,-155],[-270.2,-152.07],[-268,-149],[-266.4,-147.39],[-265,-146],[-256.32,-131.11],[-249,-113],[-241.49,-97.9],[-232,-88],[-219.5,-82.78],[-206,-79],[-184.1,-68.73],[-173,-49],[-173.89,-24.92],[-175,0],[-172.96,8.05],[-170,14],[-169.06,15.49],[-168,17],[-159.2,23.66],[-149,28],[-146.8,26.98],[-144,25],[-138.34,21.35],[-133,18],[-128.64,15.27],[-125,13],[-124.02,12.02],[-123,11],[-119.92,9.44],[-117,8],[-110.2,3.24],[-104,-1],[-99.81,-3.54],[-96,-6],[-85.59,-12.93],[-75,-20],[-65,-28],[-72,-54],[-100,-70],[-148,-95],[-157,-118],[-161,-130],[-165,-143],[-167,-144],[-168,-147],[-181,-160],[-183,-162],[-194,-166],[-246,-170],[-298,-187]],"c":true}],"h":1},{"t":82,"s":[{"i":[[-299.41,-186.3],[-300.63,-185.96],[-301.8,-186.16],[-303.76,-184.31],[-304.26,-181.43],[-303.23,-178.15],[-301.37,-176.59],[-295.66,-169.85],[-286.5,-164.65],[-274.79,-156.29],[-263.6,-144.37],[-255.82,-128.83],[-246.9,-106.15],[-240.74,-95.87],[-235.56,-90.71],[-233.68,-89.48],[-233.21,-88.12],[-230.38,-86.71],[-227.01,-85.43],[-219.2,-82.75],[-209.1,-80.87],[-187.44,-73.29],[-173.36,-53.44],[-174.05,-25.46],[-176.09,0.33],[-173.17,8.95],[-170.81,12.9],[-164.45,19.81],[-152.09,27.12],[-145.64,26.12],[-140.13,22.38],[-133.46,18.15],[-126.63,14.02],[-124.36,12.42],[-123.33,11.21],[-120.94,9.88],[-117.85,8.54],[-112.49,4.91],[-105.7,-0.01],[-101.08,-2.74],[-97.29,-5.16],[-92.09,-8.45],[-84.87,-12.84],[-79.4,-16.42],[-74.17,-20.24],[-69.67,-22.92],[-65.4,-25.85],[-64.86,-33.59],[-67.53,-46.97],[-70.24,-52.9],[-94.45,-68.69],[-141.48,-83.98],[-157.92,-125.33],[-165.97,-142.09],[-171.13,-149.81],[-174.95,-155.74],[-178.18,-158.37],[-192.1,-167.1],[-243.23,-168.13],[-272.24,-178.46],[-290.31,-186.01]],"o":[[-300.24,-185.88],[-301.41,-186.1],[-303.13,-185.1],[-304.33,-182.48],[-303.79,-178.85],[-302.02,-177.01],[-298.66,-172.27],[-289.58,-166.03],[-279.24,-159.86],[-266.97,-148.55],[-258.62,-136.01],[-249.96,-113.9],[-242.46,-98.27],[-237.3,-92.09],[-233.82,-89.92],[-233.37,-88.58],[-231.62,-87.24],[-228.07,-85.81],[-222.65,-83.56],[-212.43,-81.4],[-195.51,-77.06],[-176.37,-61.48],[-172.76,-34.37],[-175.72,-8.11],[-173.76,7.75],[-171.7,11.52],[-168.16,16.5],[-156.42,25.12],[-147.32,26.93],[-142.04,23.85],[-135.9,19.64],[-128.83,15.33],[-124.7,12.81],[-123.68,11.62],[-122.02,10.37],[-118.86,8.97],[-114.89,6.67],[-107.9,1.57],[-102.43,-1.91],[-98.51,-4.37],[-94.41,-7.03],[-87.32,-11.35],[-81.32,-15.05],[-75.83,-19.01],[-71.47,-21.99],[-66.64,-24.85],[-64.34,-28.86],[-66.45,-42.65],[-69.31,-50.85],[-81.95,-66.06],[-126.13,-78.77],[-157.68,-110.64],[-164.66,-140.49],[-169.13,-147.97],[-175.2,-154.56],[-178.03,-157.63],[-183.52,-162.49],[-216.3,-171.56],[-267.1,-174.67],[-283.75,-183.53],[-299.24,-187.16]],"v":[[-300,-186],[-301.02,-186.03],[-302,-186],[-304.04,-183.39],[-304,-180],[-302.62,-177.58],[-301,-176],[-292.62,-167.94],[-284,-163],[-270.88,-152.42],[-261,-140],[-252.89,-121.37],[-244,-101],[-239.02,-93.98],[-234,-90],[-233.53,-89.03],[-233,-88],[-229.23,-86.26],[-226,-85],[-215.81,-82.07],[-206,-80],[-181.9,-67.38],[-173,-42],[-174.88,-16.79],[-174,7],[-172.43,10.24],[-170,14],[-160.44,22.47],[-149,27],[-143.84,24.99],[-138,21],[-131.15,16.74],[-125,13],[-124.02,12.02],[-123,11],[-119.9,9.43],[-117,8],[-110.2,3.24],[-104,-1],[-99.79,-3.55],[-96,-6],[-89.71,-9.9],[-83,-14],[-77.62,-17.71],[-73,-21],[-68.15,-23.88],[-65,-27],[-65.65,-38.12],[-68,-48],[-73,-56],[-108,-73],[-150,-98],[-164,-139],[-167,-144],[-173,-152],[-177,-157],[-179,-159],[-197,-168],[-261,-173],[-278,-181],[-298,-187]],"c":true}],"h":1},{"t":83,"s":[{"i":[[-292.98,-189.53],[-300.94,-185.96],[-302.77,-186.23],[-304.26,-184.64],[-304.33,-181.96],[-300.45,-173.91],[-289.99,-167.34],[-284.71,-163.59],[-280.24,-159.92],[-274.19,-155.52],[-268.17,-149.59],[-266.49,-146.68],[-265.12,-146.18],[-264.9,-145.4],[-265.11,-144.25],[-264.49,-143.68],[-263.12,-143.19],[-262.91,-142.39],[-263.12,-141.26],[-262.48,-140.68],[-261.12,-140.21],[-257.18,-132.46],[-252.17,-119.99],[-248.97,-111.58],[-246.08,-104.1],[-244.17,-101.01],[-242.37,-99.57],[-240.66,-96.49],[-238.78,-92.76],[-237.43,-91.67],[-236.07,-91.05],[-231.05,-87.61],[-209.04,-81.72],[-181.36,-70.07],[-182.75,-7.68],[-161.63,20.89],[-150,27.13],[-145.63,25.7],[-138.73,22.14],[-134.27,17.82],[-128.66,15.06],[-111.6,4.65],[-104.93,-0.46],[-98.9,-4.12],[-86.52,-11.81],[-75.42,-19.6],[-67,-24.03],[-66.17,-43.76],[-72.11,-54.05],[-75.12,-58.58],[-79.03,-62.33],[-96.32,-70.26],[-129.6,-79.6],[-154.74,-106.92],[-163.52,-137.52],[-169.75,-147.25],[-177.39,-157.92],[-182.65,-161.75],[-223.76,-168.72],[-262.72,-174.34],[-270.44,-176.35]],"o":[[-300.3,-185.85],[-302.17,-186.16],[-303.85,-185.16],[-304.5,-183.04],[-303.45,-176.73],[-293.72,-169.21],[-286.34,-164.87],[-281.66,-161.11],[-276.6,-157.22],[-269.97,-151.7],[-266.93,-146.84],[-265.59,-146.35],[-264.85,-145.77],[-265.04,-144.64],[-264.92,-143.83],[-263.58,-143.36],[-262.85,-142.76],[-263.04,-141.64],[-262.92,-140.83],[-261.58,-140.37],[-259.1,-136.71],[-253.72,-124.1],[-249.93,-114.29],[-247.04,-106.49],[-244.73,-101.48],[-242.98,-100.06],[-241.27,-97.86],[-239.42,-93.94],[-237.9,-91.9],[-236.52,-91.25],[-232.85,-88.91],[-219.17,-82.88],[-189.66,-75.17],[-168.37,-40.07],[-169.07,16.1],[-152.65,25.1],[-146.32,26.89],[-141.21,22.84],[-135.5,20.02],[-130.7,15.51],[-118.93,8.84],[-105.28,0.53],[-100.7,-2.91],[-92.02,-8.58],[-79.67,-16.07],[-69.54,-23],[-64.4,-31.71],[-70.07,-52.36],[-74.91,-57.05],[-78.14,-60.86],[-87.42,-68.12],[-115.94,-76.45],[-150.63,-93.92],[-161.24,-128.42],[-167.92,-145.71],[-174.55,-153.97],[-182.31,-160.14],[-198.64,-173.24],[-255.13,-171.67],[-268.86,-176.72],[-279.12,-179.96]],"v":[[-300,-186],[-301.55,-186.06],[-303,-186],[-304.38,-183.84],[-304,-180],[-297.08,-171.56],[-288,-166],[-283.18,-162.35],[-279,-159],[-272.08,-153.61],[-267,-147],[-266.04,-146.52],[-265,-146],[-264.97,-145.02],[-265,-144],[-264.04,-143.52],[-263,-143],[-262.97,-142.02],[-263,-141],[-262.03,-140.52],[-261,-140],[-255.45,-128.28],[-251,-117],[-248.01,-109.04],[-245,-102],[-243.57,-100.54],[-242,-99],[-240.04,-95.22],[-238,-92],[-236.98,-91.46],[-236,-91],[-227,-86],[-201,-79],[-177,-60],[-172,11],[-155,24],[-148,27],[-143,24],[-137,21],[-133,17],[-127,14],[-106,1],[-104,-1],[-96,-6],[-83,-14],[-73,-21],[-66,-27],[-69,-50],[-73,-55],[-77,-60],[-80,-63],[-105,-73],[-139,-86],[-159,-121],[-167,-144],[-171,-149],[-182,-160],[-183,-162],[-248,-171],[-267,-176],[-272,-177]],"c":true}],"h":1},{"t":84,"s":[{"i":[[-298.13,-185.96],[-301.29,-185.43],[-303.47,-185.11],[-303.47,-177.65],[-294.93,-170.65],[-290.6,-167.7],[-287.54,-165.96],[-285.36,-164.43],[-284.32,-163.22],[-282.31,-161.98],[-279.76,-160.59],[-274.61,-156.17],[-269.46,-150.04],[-266.99,-146.91],[-265.35,-145.52],[-256.99,-129.78],[-246.36,-104.22],[-240.1,-95.4],[-236.92,-91.77],[-233.64,-89.4],[-230.25,-88.38],[-228.44,-87.49],[-227.26,-86.09],[-220.75,-84.29],[-211.85,-82.78],[-203.25,-80.15],[-195.77,-76.89],[-191.81,-75.21],[-188.55,-74.39],[-179.69,-64.75],[-181.95,-12],[-170.35,12.65],[-164.45,18.48],[-149.59,27.19],[-140.83,22.52],[-138.01,21.65],[-134.3,17.84],[-128.25,14.8],[-117.73,8.32],[-106.49,0.44],[-101.99,-1.36],[-98.41,-5.07],[-94.78,-6.51],[-82.45,-14.7],[-68.13,-23.47],[-68.92,-49.42],[-89.43,-68.48],[-114,-77],[-132.34,-82.31],[-138.69,-87.13],[-147.36,-93.36],[-150.75,-97.62],[-152.42,-100.95],[-160.86,-128.88],[-172.12,-150.55],[-180.49,-159.74],[-195.08,-168.28],[-228.18,-169.85],[-261.47,-173.4],[-283.82,-183.4],[-296.16,-185.95]],"o":[[-300.05,-185.38],[-303,-185.3],[-305.51,-180.82],[-298.18,-172.56],[-291.83,-168.47],[-288.45,-166.44],[-285.7,-164.81],[-284.67,-163.63],[-283.18,-162.43],[-280.6,-161.06],[-276.63,-158.15],[-271.03,-152.12],[-267.57,-147.4],[-265.89,-145.97],[-260.56,-138.42],[-249.89,-112.68],[-241.14,-96.77],[-237.99,-92.9],[-234.77,-89.96],[-231.39,-88.61],[-228.81,-87.94],[-227.67,-86.56],[-223.82,-84.9],[-214.76,-83.23],[-206.12,-81.21],[-198.08,-77.99],[-193.03,-75.52],[-189.57,-74.65],[-183.75,-71.01],[-169.43,-41.93],[-172.93,10.69],[-165.92,17.08],[-158.26,22.32],[-145.03,26.86],[-139.07,21.42],[-135.53,20.06],[-130.89,15.64],[-121.81,10.68],[-110.83,4.03],[-103.07,-1.54],[-99.86,-2.74],[-96.08,-6.6],[-87.35,-11.13],[-71.33,-22.11],[-64.83,-33.8],[-77.88,-64.83],[-108.36,-74.79],[-125.97,-80.99],[-137.75,-85.44],[-144.34,-90.91],[-149.15,-97.33],[-151.83,-99.29],[-158.52,-112.09],[-168.34,-145.07],[-178.85,-158.61],[-191.27,-166.11],[-212.6,-171.51],[-252.53,-171.62],[-276.94,-178.74],[-294.41,-186.14],[-297.56,-187.7]],"v":[[-298,-186],[-302.14,-185.37],[-304,-184],[-300.83,-175.1],[-294,-170],[-289.52,-167.07],[-286,-165],[-285.02,-164.03],[-284,-163],[-281.45,-161.52],[-279,-160],[-272.82,-154.15],[-268,-148],[-266.44,-146.44],[-265,-145],[-253.44,-121.23],[-242,-98],[-239.04,-94.15],[-236,-91],[-232.52,-89.01],[-229,-88],[-228.05,-87.02],[-227,-86],[-217.76,-83.76],[-209,-82],[-200.66,-79.07],[-194,-76],[-190.69,-74.93],[-188,-74],[-178,-61],[-174,8],[-168,15],[-162,20],[-147,27],[-140,22],[-137,21],[-133,17],[-127,14],[-114,6],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-76,-19],[-67,-27],[-71,-53],[-103,-73],[-120,-79],[-137,-85],[-140,-88],[-149,-97],[-151,-98],[-153,-102],[-166,-140],[-175,-154],[-186,-163],[-199,-169],[-244,-171],[-269,-176],[-290,-185],[-297,-187]],"c":true}],"h":1},{"t":85,"s":[{"i":[[-298.45,-187.82],[-302.49,-184.66],[-303.26,-184.16],[-303.87,-183.5],[-304.09,-182.48],[-302.35,-177.88],[-296.81,-171.87],[-290.51,-166.96],[-286.18,-164.12],[-284.8,-163.24],[-281.45,-161.13],[-277.76,-158.8],[-275.18,-157.13],[-273.55,-155.66],[-270.68,-152.36],[-268.31,-149.41],[-259.72,-133.99],[-243.99,-100.21],[-239.39,-95.22],[-224.4,-86.21],[-213.78,-83.53],[-202.61,-81.18],[-201.44,-80.49],[-200.26,-79.09],[-197.49,-78.31],[-194.1,-77.57],[-189.56,-75.01],[-184.53,-70.81],[-176.37,-45.67],[-176.44,2.54],[-170.51,12.83],[-159.33,21.43],[-152.79,24.4],[-147.76,26.04],[-140.36,23.12],[-126.63,14.41],[-124.54,12.72],[-122.72,10.49],[-108.68,1.83],[-69.74,-22.24],[-68.36,-24.12],[-68.31,-26.13],[-66.71,-35.75],[-69.89,-51.46],[-75.94,-59.87],[-83.87,-65.68],[-89.85,-69.21],[-96.59,-72.18],[-107.15,-75.59],[-118.49,-78.83],[-136.52,-87.58],[-153.88,-101.79],[-157.34,-112.19],[-167.1,-142.07],[-173.54,-151.22],[-185.68,-163.75],[-206.24,-170.61],[-239.67,-170.94],[-258.92,-173.4],[-271.29,-176.73],[-280.51,-181.47]],"o":[[-302.23,-184.82],[-303,-184.34],[-303.69,-183.75],[-304.07,-182.87],[-303.62,-179.99],[-298.95,-173.83],[-292.6,-168.44],[-287.31,-164.8],[-285.63,-163.76],[-282.71,-161.93],[-278.97,-159.57],[-275.86,-157.58],[-274.42,-156.56],[-271.68,-153.56],[-268.99,-150.28],[-265.47,-145.64],[-248.98,-111.28],[-242.94,-97.86],[-230.12,-89.39],[-217.98,-84.44],[-206.1,-81.91],[-201.81,-80.94],[-200.66,-79.56],[-198.69,-78.53],[-195.19,-77.84],[-191.29,-76.11],[-186.18,-72.36],[-177.65,-62.69],[-175.77,-13.05],[-173.6,9.36],[-163.38,18.86],[-154.66,23.63],[-149.34,25.6],[-145.29,25.92],[-131.03,17.37],[-125.18,13.47],[-123.32,11.23],[-121.56,9.7],[-82.77,-14.14],[-68.46,-23.55],[-68.28,-25.4],[-66.76,-30.52],[-68.28,-46.22],[-73.5,-57.53],[-81.12,-63.94],[-87.81,-68.12],[-94.25,-71.24],[-103.16,-74.42],[-114.82,-77.79],[-128.58,-82.18],[-149.17,-97.38],[-154.79,-103.4],[-163.5,-131.53],[-170.2,-147.34],[-181.28,-159.42],[-196.15,-169.39],[-228,-171.38],[-254.02,-172.28],[-267.55,-175.62],[-274.79,-178.06],[-292.35,-186.35]],"v":[[-302,-185],[-302.74,-184.5],[-303.48,-183.96],[-303.97,-183.18],[-304,-182],[-300.65,-175.85],[-294.7,-170.15],[-288.91,-165.88],[-286,-164],[-283.76,-162.59],[-280.21,-160.35],[-276.81,-158.19],[-275,-157],[-272.62,-154.61],[-269.84,-151.32],[-268,-149],[-254.35,-122.63],[-243,-98],[-234.75,-92.3],[-220,-85],[-209.94,-82.72],[-202,-81],[-201.05,-80.03],[-200,-79],[-196.34,-78.07],[-193,-77],[-187.87,-73.69],[-183,-69],[-176.07,-29.36],[-175,6],[-166.95,15.84],[-156,23],[-151.06,25],[-147,26],[-135.7,20.25],[-126,14],[-123.93,11.97],[-122,10],[-95.73,-6.16],[-69,-23],[-68.32,-24.76],[-68,-27],[-67.49,-40.99],[-72,-55],[-78.53,-61.9],[-86,-67],[-92.05,-70.23],[-99,-73],[-110.99,-76.69],[-122,-80],[-142.84,-92.48],[-154,-102],[-160.42,-121.86],[-170,-147],[-177.41,-155.32],[-188,-165],[-217.12,-170.99],[-251,-172],[-263.24,-174.51],[-272,-177],[-286.43,-183.91]],"c":true}],"h":1},{"t":86,"s":[{"i":[[-301.33,-185.53],[-304.12,-182.29],[-302.95,-178.19],[-297.43,-172.55],[-289.1,-166.68],[-287.22,-165.33],[-286.37,-164.24],[-284.23,-163.2],[-281.72,-162.53],[-280.12,-160.95],[-278.76,-158.66],[-276.45,-157.07],[-273.77,-155.82],[-272.89,-154.44],[-273.1,-153.21],[-272.49,-152.68],[-271.12,-152.16],[-268.32,-148.46],[-264.94,-143.58],[-257.4,-129.19],[-248.65,-107.88],[-245.49,-101.68],[-244.12,-101.18],[-244.23,-99.5],[-242.25,-98.29],[-229.92,-88.68],[-185.46,-77.62],[-183.51,-12.45],[-172.11,10.79],[-164.89,16.2],[-160.52,20.25],[-155.92,21.19],[-147.04,26.23],[-143.26,24.16],[-140.96,23.65],[-137.48,19.95],[-133.79,18.49],[-129.36,15.85],[-126.66,13.42],[-111.77,4.77],[-104.93,-0.46],[-101.99,-1.36],[-98.65,-4.91],[-94.78,-6.51],[-89.52,-10.4],[-69.25,-21.79],[-67.28,-36.77],[-76.73,-62.72],[-84.59,-67.76],[-93.08,-71.51],[-120.68,-79.67],[-138.94,-87.95],[-152.59,-100.2],[-157.6,-109.95],[-167.26,-142.59],[-181.06,-159.71],[-186.48,-163.05],[-191.55,-166.04],[-199.15,-169.66],[-248.59,-170.24],[-285.75,-186.58]],"o":[[-303.65,-183.69],[-303.77,-179.53],[-300.38,-174.96],[-291.79,-168.41],[-287.54,-165.71],[-286.64,-164.59],[-285.12,-163.44],[-282.52,-162.75],[-280.49,-161.62],[-279.26,-159.47],[-277.31,-157.41],[-274.68,-156.28],[-272.84,-154.83],[-273.02,-153.63],[-272.93,-152.85],[-271.59,-152.34],[-269.6,-150.17],[-265.99,-145.16],[-260.57,-136.25],[-251.44,-115.01],[-245.93,-101.84],[-244.59,-101.35],[-243.69,-100.56],[-243.88,-98.73],[-235.71,-90.46],[-202.61,-81.31],[-170.37,-43.48],[-173.96,8.25],[-167.49,15.62],[-161.23,18.48],[-157.67,21.66],[-151.21,23.19],[-144.91,25.99],[-142.09,23.44],[-138.6,22.05],[-135.07,18.4],[-131.2,16.88],[-127.4,14.63],[-117.71,7.68],[-105.28,0.53],[-103.07,-1.54],[-99.46,-2.99],[-96.08,-6.6],[-91.37,-8.63],[-82.95,-14.58],[-67.01,-27.55],[-69.51,-52.9],[-84.35,-66.16],[-88.76,-70.17],[-108.79,-77.47],[-135.7,-85.98],[-149.62,-95.11],[-156.33,-108.76],[-164.03,-126.82],[-178.28,-156.98],[-184.98,-162.31],[-190.32,-165.44],[-196.52,-167.99],[-220.51,-173.6],[-276.52,-177.88],[-301.29,-185.95]],"v":[[-302,-185],[-303.95,-180.91],[-302,-177],[-294.61,-170.48],[-288,-166],[-286.93,-164.96],[-286,-164],[-283.37,-162.98],[-281,-162],[-279.69,-160.21],[-278,-158],[-275.57,-156.67],[-273,-155],[-272.96,-154.04],[-273,-153],[-272.04,-152.51],[-271,-152],[-267.15,-146.81],[-264,-142],[-254.42,-122.1],[-246,-102],[-245.04,-101.51],[-244,-101],[-244,-99],[-242,-98],[-220,-86],[-179,-63],[-175,6],[-170,13],[-162,18],[-159,21],[-154,22],[-145,26],[-143,24],[-140,23],[-136,19],[-133,18],[-128,15],[-126,13],[-106,1],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-87,-12],[-68,-25],[-68,-42],[-84,-66],[-85,-68],[-97,-73],[-131,-84],[-142,-90],[-156,-108],[-158,-111],[-176,-154],[-183,-161],[-188,-164],[-194,-167],[-201,-170],[-266,-175],[-300,-186]],"c":true}],"h":1},{"t":87,"s":[{"i":[[-295.62,-190.02],[-303.88,-182.88],[-303.8,-179.21],[-299.99,-174.73],[-294.31,-170.98],[-283.11,-162.99],[-271.96,-153.47],[-267.28,-146.21],[-265.02,-141.87],[-262.7,-137.99],[-260.52,-135.05],[-253.34,-117.9],[-241.72,-95.58],[-235.68,-92.48],[-235.21,-91.12],[-227.05,-87.65],[-214.52,-84.94],[-196.24,-79.83],[-181.49,-68.94],[-176.78,-41.82],[-179.47,-6.1],[-176.4,2.84],[-174.46,5.18],[-170.46,11.9],[-164.05,16.87],[-155.51,21.46],[-146.89,25.15],[-141.46,23.77],[-137.3,19.84],[-134.98,18.57],[-133.4,18.25],[-131.19,16.9],[-128.68,15.43],[-127.36,14.42],[-126.33,13.21],[-118.36,8.32],[-108.65,2.73],[-105.64,0.44],[-105.23,-0.83],[-104.04,-1.43],[-102.35,-1.78],[-99.34,-3.81],[-95.85,-6.47],[-92.96,-7.35],[-89.61,-10.96],[-85.77,-12.55],[-81.49,-15.07],[-70.17,-21.71],[-68.43,-45.05],[-73.03,-54.26],[-75.73,-60.67],[-84.48,-67.05],[-90.68,-71.4],[-99.4,-73.79],[-109.82,-78.05],[-144.59,-87.83],[-157.15,-107.39],[-161.59,-120.79],[-175.59,-158.24],[-220.28,-171.08],[-265.81,-175.02]],"o":[[-303.23,-184.03],[-304.17,-180.47],[-301.83,-176.24],[-296.23,-172.1],[-287.62,-166.01],[-275.28,-156.72],[-268.02,-147.52],[-265.78,-143.38],[-263.44,-138.97],[-261.24,-136.03],[-256.48,-126.86],[-245.96,-102.26],[-235.82,-92.92],[-235.37,-91.58],[-231.29,-88.93],[-218.66,-85.66],[-203,-81.86],[-185.49,-73.37],[-176.05,-53.77],[-178.49,-17.99],[-176.92,2.25],[-175.17,4.3],[-171.94,9.71],[-166.52,15.48],[-158.32,19.88],[-149.8,24.09],[-143.06,24.85],[-138.58,21.26],[-135.53,18.7],[-133.91,18.35],[-132.1,17.44],[-129.48,15.9],[-127.7,14.81],[-126.68,13.62],[-122.03,10.45],[-111.67,4.46],[-105.78,0.86],[-105.37,-0.4],[-104.61,-1.29],[-102.9,-1.68],[-100.67,-2.83],[-96.93,-5.64],[-94.09,-7.56],[-90.72,-8.87],[-87.09,-12.58],[-82.98,-14.17],[-76.08,-18.44],[-67.15,-30.18],[-71.33,-52.88],[-74.99,-57.78],[-78.85,-64.52],[-89.49,-69.83],[-95.19,-73.45],[-106.68,-76.24],[-128.06,-83.5],[-154.52,-102.79],[-160.65,-116.12],[-168.73,-142.06],[-203.29,-173.15],[-252.6,-172.59],[-279.93,-180.16]],"v":[[-302,-185],[-304.02,-181.68],[-303,-178],[-298.11,-173.41],[-293,-170],[-279.19,-159.86],[-269,-149],[-266.53,-144.79],[-264,-140],[-261.97,-137.01],[-260,-134],[-249.65,-110.08],[-236,-93],[-235.52,-92.03],[-235,-91],[-222.86,-86.65],[-211,-84],[-190.87,-76.6],[-179,-62],[-177.64,-29.9],[-177,2],[-175.79,3.57],[-174,6],[-168.49,13.69],[-160,19],[-152.66,22.78],[-145,25],[-140.02,22.51],[-136,19],[-134.45,18.46],[-133,18],[-130.34,16.4],[-128,15],[-127.02,14.02],[-126,13],[-115.01,6.39],[-106,1],[-105.51,0.02],[-105,-1],[-103.47,-1.55],[-102,-2],[-98.14,-4.73],[-95,-7],[-92,-8],[-88,-12],[-85,-13],[-80,-16],[-69,-25],[-71,-52],[-74,-56],[-76,-61],[-88,-69],[-92,-72],[-103,-75],[-113,-79],[-152,-99],[-159,-112],[-163,-125],[-190,-166],[-240,-172],[-274,-178]],"c":true}],"h":1},{"t":88,"s":[{"i":[[-301.34,-185.51],[-303.79,-179.17],[-294.48,-171.01],[-292.23,-169.33],[-291.38,-168.29],[-290.05,-167.59],[-288.47,-167.34],[-286.76,-165.84],[-284.78,-163.58],[-282.3,-161.97],[-279.73,-160.65],[-275.7,-156.77],[-271.63,-151.39],[-270.49,-149.68],[-269.12,-149.19],[-268.32,-147.73],[-267.37,-145.59],[-265.54,-142.6],[-263.58,-139.08],[-256.02,-121.59],[-243.39,-96.88],[-236.68,-93.48],[-236.21,-92.12],[-212.7,-86.15],[-191.09,-77.53],[-181.33,-67.25],[-178.26,-36.04],[-177.83,2.08],[-171.09,10.96],[-164.87,15.32],[-147.25,25.31],[-138.88,21.45],[-121.39,10.38],[-109.13,3.04],[-105.46,-0.65],[-102.7,-1.56],[-96.69,-5.95],[-92.96,-7.35],[-89.55,-11],[-84.46,-13.12],[-76.34,-19.15],[-71.78,-21.22],[-69.37,-34.96],[-71.09,-52.15],[-74.64,-57.42],[-96.17,-74.2],[-133.84,-85.11],[-149.53,-96.56],[-154.28,-101.86],[-161.78,-120.98],[-167.91,-135.45],[-169.32,-141.51],[-172.21,-144.62],[-175.29,-151.65],[-179.17,-155.98],[-183.04,-160.1],[-192.72,-166.7],[-198.47,-169.83],[-205.84,-171.53],[-252.6,-171.4],[-288.7,-186.14]],"o":[[-305.3,-182.41],[-298.38,-173.47],[-292.54,-169.68],[-291.65,-168.64],[-290.57,-167.67],[-289.01,-167.42],[-287.37,-166.55],[-285.46,-164.35],[-283.18,-162.39],[-280.57,-161.09],[-277.38,-158.57],[-272.82,-153.18],[-270.92,-149.83],[-269.58,-149.36],[-268.63,-148.43],[-267.69,-146.31],[-266.25,-143.81],[-264.21,-140.24],[-259.33,-131.15],[-248.06,-104.45],[-236.82,-93.92],[-236.37,-92.58],[-226.11,-86.48],[-194.57,-80.26],[-183.43,-69.21],[-174.91,-51.59],[-179.71,-8.38],[-172.03,9.19],[-168,13.9],[-158.4,19.11],[-142.72,24.88],[-128.21,14.72],[-112.39,4.74],[-105.56,0.71],[-104.23,-1.58],[-99.34,-3.66],[-94.09,-7.56],[-90.72,-8.87],[-86.68,-12.85],[-79.63,-16.02],[-73.09,-21.72],[-67.76,-25.24],[-70.61,-46.84],[-73.26,-56.52],[-82.3,-69.75],[-122.37,-82.14],[-146.59,-92.75],[-152.86,-101.2],[-160.25,-111.3],[-166.01,-132.83],[-169.77,-139.8],[-170.5,-144.1],[-174.45,-148.54],[-177.77,-155.05],[-183.14,-160.87],[-190.46,-165.54],[-197.38,-168.11],[-201.51,-170.8],[-228.27,-174.88],[-278.36,-178.62],[-301.28,-185.98]],"v":[[-302,-185],[-301.08,-176.32],[-293,-170],[-291.94,-168.98],[-291,-168],[-289.53,-167.5],[-288,-167],[-286.11,-165.1],[-284,-163],[-281.44,-161.53],[-279,-160],[-274.26,-154.97],[-271,-150],[-270.04,-149.52],[-269,-149],[-268,-147.02],[-267,-145],[-264.87,-141.42],[-263,-138],[-252.04,-113.02],[-237,-94],[-236.52,-93.03],[-236,-92],[-203,-83],[-186,-72],[-180,-64],[-179,-22],[-173,8],[-170,12],[-162,17],[-144,25],[-135,19],[-116,7],[-106,1],[-105,-1],[-102,-2],[-95,-7],[-92,-8],[-88,-12],[-83,-14],[-74,-21],[-71,-22],[-70,-41],[-73,-56],[-75,-58],[-112,-79],[-142,-90],[-152,-100],[-155,-103],[-165,-130],[-169,-138],[-170,-143],[-173,-146],[-177,-154],[-180,-157],[-187,-163],[-197,-168],[-199,-170],[-209,-172],[-269,-176],[-300,-186]],"c":true}],"h":1},{"t":89,"s":[{"i":[[-301.39,-185.48],[-303.02,-184.4],[-304.29,-182.9],[-299.9,-175.3],[-290.21,-168.06],[-287.08,-165.57],[-285.41,-165.34],[-283.5,-163.59],[-281.69,-161.59],[-277.61,-158.07],[-273.74,-153.63],[-272.49,-151.68],[-271.12,-151.18],[-268.37,-147.16],[-264.91,-141.68],[-257.19,-125.04],[-247.47,-103.1],[-241.22,-96.28],[-238.45,-94.28],[-223.29,-88.07],[-200.17,-83.51],[-193.66,-79.47],[-193.21,-78.15],[-192.01,-77.57],[-190.38,-77.29],[-180.35,-65.62],[-178.33,-40.61],[-179.46,-24.42],[-180.09,-15.6],[-178.84,-2.72],[-173.61,7.4],[-168.67,12.19],[-164.76,14.97],[-158.36,18.34],[-150.71,21.06],[-145.91,23.03],[-144.04,24.11],[-140.59,22.99],[-135.86,19.2],[-132.33,17.22],[-129.83,16.51],[-127.54,14.74],[-125.7,12.45],[-121.17,10.72],[-118.9,8.52],[-115.02,5.76],[-111.71,4.45],[-106.29,-0.04],[-102.7,-1.56],[-86.42,-12],[-72.25,-21.08],[-73.26,-57.69],[-121.77,-79.09],[-145.25,-93.5],[-150.79,-97.18],[-153.38,-100.2],[-159.54,-111.38],[-167.97,-136.02],[-192.9,-171.16],[-247.04,-172.52],[-289.31,-185.46]],"o":[[-302.38,-184.7],[-303.98,-183.5],[-302.79,-178.27],[-293.61,-170.2],[-287.62,-165.65],[-285.97,-165.42],[-284.15,-164.29],[-282.27,-162.24],[-279.24,-159.51],[-274.86,-155.14],[-272.93,-151.84],[-271.59,-151.35],[-269.66,-149.07],[-265.99,-143.47],[-260.21,-132.99],[-250.83,-110.1],[-242.25,-97.14],[-239.33,-94.85],[-231.21,-89.82],[-207.78,-84.92],[-193.8,-79.89],[-193.36,-78.6],[-192.57,-77.68],[-190.92,-77.38],[-183.44,-72.06],[-177.8,-49.89],[-179.17,-27.36],[-179.93,-18.53],[-179.79,-7.17],[-175.75,4.56],[-169.79,11.2],[-166.16,14.07],[-160.76,17.31],[-153.33,20.22],[-146.64,22.47],[-144.61,23.84],[-141.91,23.89],[-137.57,20.64],[-133.16,17.46],[-130.67,16.74],[-128.19,15.51],[-126.3,13.21],[-123.49,11.03],[-119.32,9.58],[-116,6.84],[-113.22,4.41],[-108.63,2.49],[-104.23,-1.58],[-94.01,-6.97],[-74.94,-19.74],[-65.49,-36.85],[-92.54,-79.3],[-143.96,-91.68],[-149.53,-97.16],[-152.64,-99.97],[-157.84,-105.91],[-165.75,-128.08],[-180.2,-160.24],[-230.13,-174.26],[-277.83,-177.62],[-301.25,-186.06]],"v":[[-302,-185],[-303.5,-183.95],[-304,-182],[-296.75,-172.75],[-288,-166],[-286.53,-165.49],[-285,-165],[-282.88,-162.91],[-281,-161],[-276.24,-156.6],[-273,-152],[-272.04,-151.51],[-271,-151],[-267.18,-145.32],[-264,-140],[-254.01,-117.57],[-243,-98],[-240.27,-95.56],[-238,-94],[-215.53,-86.5],[-194,-80],[-193.51,-79.03],[-193,-78],[-191.47,-77.47],[-190,-77],[-179.08,-57.75],[-179,-30],[-179.7,-21.47],[-180,-13],[-177.3,0.92],[-171,10],[-167.42,13.13],[-163,16],[-155.85,19.28],[-148,22],[-145.26,23.43],[-143,24],[-139.08,21.81],[-134,18],[-131.5,16.98],[-129,16],[-126.92,13.97],[-125,12],[-120,10],[-118,8],[-114,5],[-111,4],[-105,-1],[-102,-2],[-79,-17],[-71,-24],[-78,-63],[-141,-90],[-147,-95],[-152,-99],[-154,-101],[-162,-118],[-172,-144],[-215,-173],[-262,-175],[-300,-186]],"c":true}],"h":1},{"t":90,"s":[{"i":[[-297.28,-188.68],[-304.2,-180.81],[-299.1,-174.36],[-288.28,-167.18],[-276.58,-157.37],[-272.56,-152.03],[-271.39,-149.86],[-270.49,-148.68],[-269.12,-148.18],[-268.9,-147.4],[-269.11,-146.25],[-268.48,-145.68],[-267.12,-145.2],[-265.98,-142.86],[-264.55,-139.06],[-261.58,-133.36],[-258.01,-126.29],[-254.78,-118.14],[-251.3,-109.36],[-246.58,-103.71],[-241.76,-97.17],[-236.39,-93.7],[-230.25,-90.7],[-220.28,-88.12],[-208.76,-86.15],[-195.01,-80],[-188.78,-76.61],[-186.67,-73.79],[-182.09,-67.99],[-185.49,-14.25],[-169.42,12.03],[-158.71,17.22],[-143.71,24.21],[-137.42,20.2],[-130.49,16.91],[-126.45,12.93],[-121.37,10.84],[-118.9,8.52],[-115.02,5.76],[-111.71,4.45],[-105.07,-0.07],[-93.91,-7.81],[-85.66,-11.99],[-81.64,-15.9],[-75.93,-18.35],[-71.32,-22.18],[-70.5,-48.39],[-78.63,-64.07],[-104.96,-78.24],[-131.15,-86.36],[-147.59,-95.22],[-156.41,-104.34],[-162.67,-118.49],[-167.79,-130.83],[-170.38,-140.71],[-174.07,-146.51],[-183.54,-160.7],[-190.48,-165.05],[-201.41,-170.78],[-236.66,-172.66],[-274.76,-177.58]],"o":[[-304.4,-183.13],[-301.55,-176.42],[-292.74,-170.24],[-280.2,-160.74],[-273.12,-152.85],[-271.7,-150.54],[-270.93,-148.84],[-269.59,-148.35],[-268.85,-147.77],[-269.04,-146.64],[-268.92,-145.83],[-267.58,-145.37],[-266.46,-144.08],[-265.03,-140.35],[-262.82,-135.72],[-259.17,-128.65],[-255.88,-121.46],[-252.49,-112.09],[-248.2,-106.12],[-243.36,-99.23],[-238.26,-94.85],[-232.38,-91.63],[-224.15,-88.79],[-212.58,-86.8],[-198.49,-83],[-190.12,-76.34],[-187.2,-75.37],[-184.1,-70.77],[-173.84,-45.44],[-174.72,7.63],[-160.5,16.8],[-153.83,19.45],[-140.85,23.86],[-132.44,17],[-127.44,15.05],[-123.59,11.09],[-119.32,9.58],[-116,6.84],[-113.22,4.41],[-107.18,1.57],[-97.1,-5.07],[-87.67,-11.86],[-82.54,-13.89],[-78.75,-17.83],[-73.06,-20.36],[-69.05,-27.96],[-74.72,-59.54],[-91.8,-75.52],[-125.36,-84.12],[-144.74,-92.49],[-154.56,-102.77],[-161.31,-112.53],[-165.97,-127.73],[-170.18,-137.1],[-172.55,-145.13],[-178.49,-153.58],[-188.98,-164.31],[-196,-168.49],[-221.69,-175.2],[-262.64,-174.67],[-284.74,-182.18]],"v":[[-302,-185],[-302.87,-178.61],[-297,-173],[-284.24,-163.96],[-274,-154],[-272.13,-151.28],[-271,-149],[-270.04,-148.52],[-269,-148],[-268.97,-147.02],[-269,-146],[-268.03,-145.52],[-267,-145],[-265.5,-141.6],[-264,-138],[-260.37,-131.01],[-257,-124],[-253.64,-115.12],[-250,-108],[-244.97,-101.47],[-240,-96],[-234.38,-92.66],[-228,-90],[-216.43,-87.46],[-205,-85],[-191,-77],[-188,-76],[-186,-73],[-181,-65],[-177,3],[-162,16],[-157,18],[-142,24],[-134,18],[-129,16],[-125,12],[-120,10],[-118,8],[-114,5],[-111,4],[-102,-2],[-89,-11],[-84,-13],[-80,-17],[-75,-19],[-71,-23],[-73,-55],[-82,-67],[-118,-82],[-137,-89],[-152,-100],[-158,-107],[-165,-125],[-169,-134],[-172,-144],[-175,-148],[-187,-163],[-192,-166],[-207,-172],[-254,-174],[-280,-180]],"c":true}],"h":1},{"t":91,"s":[{"i":[[-298.4,-187.78],[-303.77,-183.3],[-303.56,-181.02],[-302.69,-179.05],[-302.3,-177.36],[-300.66,-176.01],[-297.9,-174.8],[-286.82,-165.57],[-272.5,-151.92],[-266.04,-140.59],[-262.12,-132.31],[-256.84,-121.24],[-250.26,-108.43],[-246.64,-102.8],[-244.58,-99.59],[-243.12,-98.59],[-241.29,-98.23],[-239.23,-96.43],[-237.03,-94.48],[-232.52,-92.47],[-227.05,-90.57],[-218.99,-88.57],[-208.99,-86.67],[-202.54,-84.85],[-197.83,-82.04],[-191.9,-78.72],[-186.58,-74.37],[-179.17,-49.19],[-181.9,-7.95],[-172.31,8.96],[-157.98,17.07],[-149.24,20.74],[-143.46,23.13],[-137.88,21.25],[-130.19,15.76],[-127.54,13.96],[-125.56,12.36],[-123.22,11.16],[-120.62,10.39],[-119.65,9.45],[-119.23,8.17],[-116.7,7.44],[-110.08,2.97],[-104.53,-1.07],[-99.39,-3.1],[-97.46,-5.66],[-94.73,-6.5],[-88.2,-10.99],[-72.7,-20.5],[-72.33,-27.51],[-73.1,-56.58],[-81.93,-67.16],[-101.48,-78.12],[-136.37,-87.44],[-164.83,-124.97],[-175.64,-149.58],[-180.44,-155.11],[-188.34,-163.65],[-208.55,-173.26],[-246.66,-173.55],[-274.58,-178.79]],"o":[[-303.24,-184.04],[-303.93,-181.79],[-302.79,-179.62],[-302.44,-177.92],[-301.46,-176.36],[-298.88,-175.23],[-292.07,-169.61],[-277.04,-156.72],[-267.48,-143.44],[-263.36,-135.03],[-258.96,-125.77],[-252.49,-112.57],[-247.34,-104.01],[-245.26,-100.59],[-243.72,-98.72],[-241.9,-98.34],[-239.96,-97.19],[-237.76,-95.07],[-234.24,-93.19],[-228.92,-91.16],[-222.25,-89.23],[-212.36,-87.29],[-204.12,-85.58],[-199.39,-83.08],[-193.86,-79.79],[-188.26,-76.01],[-178.98,-62.97],[-180.64,-21.68],[-176.07,5.43],[-163.27,14.78],[-151.25,19.68],[-145.34,22.47],[-140.54,22.87],[-132.71,17.69],[-128.26,14.53],[-126.19,12.88],[-124.16,11.46],[-121.45,10.62],[-119.78,9.86],[-119.37,8.6],[-118.22,7.42],[-113.11,5.2],[-105.64,0.13],[-101.67,-2.81],[-97.56,-4.28],[-96.19,-6.61],[-90.55,-9.33],[-81.68,-15.09],[-71.46,-23.15],[-71.12,-43.98],[-79.79,-65.88],[-93.31,-75.1],[-122.91,-84.6],[-161.12,-104.3],[-173.3,-143.91],[-179.24,-153.33],[-186.3,-161.72],[-197.51,-169.53],[-230.81,-175.2],[-269.03,-177.12],[-288.06,-183.43]],"v":[[-302,-185],[-303.85,-182.54],[-303,-180],[-302.57,-178.48],[-302,-177],[-299.77,-175.62],[-297,-174],[-281.93,-161.15],[-269,-146],[-264.7,-137.81],[-261,-130],[-254.66,-116.9],[-248,-105],[-245.95,-101.69],[-244,-99],[-242.51,-98.46],[-241,-98],[-238.49,-95.75],[-236,-94],[-230.72,-91.82],[-225,-90],[-215.68,-87.93],[-206,-86],[-200.97,-83.96],[-196,-81],[-190.08,-77.37],[-185,-72],[-179.91,-35.44],[-178,1],[-167.79,11.87],[-153,19],[-147.29,21.61],[-142,23],[-135.3,19.47],[-129,15],[-126.87,13.42],[-125,12],[-122.33,10.89],[-120,10],[-119.51,9.02],[-119,8],[-116,7],[-107,1],[-103,-2],[-98,-4],[-97,-6],[-94,-7],[-85,-13],[-72,-22],[-72,-32],[-77,-62],[-86,-70],[-111,-81],[-146,-94],[-172,-141],[-177,-151],[-183,-158],[-192,-166],[-217,-174],[-262,-176],[-281,-181]],"c":true}],"h":1},{"t":92,"s":[{"i":[[-301.43,-185.44],[-303.87,-180.91],[-299.03,-174.93],[-294.96,-171.71],[-290.31,-169.05],[-288.63,-167.42],[-288.23,-166.21],[-287.08,-165.57],[-285.41,-165.34],[-280.99,-161.29],[-275.73,-155.1],[-272.35,-150.64],[-270.69,-147.22],[-269,-144.82],[-267.28,-143.53],[-264.31,-137.65],[-261.02,-130.26],[-253.87,-114.61],[-242.65,-97.77],[-230.92,-91.93],[-219.6,-89.87],[-208.09,-87.05],[-197.42,-83.47],[-194.65,-81.46],[-194.22,-80.16],[-192.99,-79.58],[-191.4,-79.34],[-187.26,-75.28],[-182.84,-68.37],[-179.77,-43.11],[-182.1,-5.68],[-173.63,7.33],[-165.28,13.36],[-155.44,18.11],[-143.36,22.24],[-136.11,20.15],[-126.66,13.69],[-117.35,7.73],[-108.86,2.19],[-99.22,-4.17],[-89.26,-11.02],[-84.35,-13.73],[-81.76,-14.5],[-80.65,-15.56],[-80.23,-16.83],[-77.74,-17.48],[-71.85,-27.11],[-74.41,-55.34],[-78.52,-64.39],[-94.87,-76.39],[-121.41,-84.47],[-140.38,-92.1],[-153.39,-100.05],[-164.24,-117.73],[-171.33,-140.23],[-177.08,-148.51],[-179.04,-153.65],[-186.95,-161.44],[-193.84,-167.91],[-234.71,-172.63],[-288.04,-184.68]],"o":[[-304.36,-183.2],[-301.21,-176.78],[-296.55,-172.69],[-291.84,-169.9],[-288.77,-167.81],[-288.36,-166.62],[-287.62,-165.65],[-285.97,-165.42],[-282.88,-163.24],[-277.42,-157.22],[-273,-151.78],[-271.19,-148.36],[-269.61,-145.31],[-267.84,-143.94],[-265.55,-140.27],[-262.05,-132.65],[-257.04,-121.48],[-246.67,-102.76],[-234.62,-92.99],[-223.41,-90.37],[-212.13,-88.06],[-200.74,-84.76],[-194.79,-81.87],[-194.36,-80.6],[-193.54,-79.66],[-191.92,-79.42],[-189.09,-77.35],[-184.14,-70.8],[-178.47,-56.02],[-181.59,-17.94],[-175.74,5.15],[-168.4,11.43],[-159.51,16.25],[-147.37,21.11],[-139.03,21.8],[-129.93,16.09],[-120.67,9.88],[-111.44,3.88],[-102.84,-1.66],[-92.43,-8.85],[-85.22,-13.48],[-82.62,-14.24],[-80.78,-15.14],[-80.37,-16.4],[-79.17,-17.62],[-71.86,-21.58],[-72.13,-49.08],[-78.09,-61.96],[-83.79,-71.11],[-111.94,-82.64],[-135.74,-89.74],[-149.78,-97.04],[-160.94,-110.41],[-169.72,-132.18],[-175.59,-148.09],[-178.85,-151.37],[-182.32,-158.26],[-191.51,-164.92],[-211.47,-176.79],[-276.86,-176.74],[-301.22,-186.13]],"v":[[-302,-185],[-302.54,-178.85],[-298,-174],[-293.4,-170.81],[-289,-168],[-288.5,-167.02],[-288,-166],[-286.53,-165.49],[-285,-165],[-279.2,-159.26],[-274,-153],[-271.77,-149.5],[-270,-146],[-268.42,-144.38],[-267,-143],[-263.18,-135.15],[-260,-128],[-250.27,-108.69],[-238,-95],[-227.16,-91.15],[-216,-89],[-204.42,-85.9],[-195,-82],[-194.51,-81.03],[-194,-80],[-192.45,-79.5],[-191,-79],[-185.7,-73.04],[-182,-66],[-180.68,-30.52],[-177,3],[-171.01,9.38],[-162,15],[-151.4,19.61],[-141,22],[-133.02,18.12],[-124,12],[-114.4,5.81],[-107,1],[-95.82,-6.51],[-86,-13],[-83.49,-13.98],[-81,-15],[-80.51,-15.98],[-80,-17],[-77,-18],[-72,-39],[-77,-60],[-79,-65],[-102,-79],[-131,-88],[-144,-94],[-157,-105],[-167,-125],[-175,-147],[-178,-150],[-180,-155],[-189,-163],[-196,-169],[-259,-175],[-300,-186]],"c":true}],"h":1},{"t":93,"s":[{"i":[[-301.48,-185.4],[-304.16,-181.46],[-299.93,-175.75],[-295.04,-171.57],[-290.98,-168.77],[-284.38,-163.71],[-277.81,-157.6],[-269.02,-145.25],[-261.38,-130.12],[-255.28,-116.72],[-249.52,-105.94],[-244.29,-100.2],[-239.7,-96.38],[-236.1,-94.56],[-230.94,-92.58],[-225.26,-91.21],[-219.04,-90.48],[-208.99,-87.97],[-196.54,-83.48],[-189.74,-76.99],[-183.01,-68.3],[-179.88,-47.26],[-182.99,-20.16],[-181.48,-8.7],[-180.35,-4.15],[-179.1,-1.27],[-177.26,0.66],[-176.57,2],[-176.31,3.61],[-169.31,10.42],[-156.66,16.31],[-147.25,19.87],[-141.03,22.1],[-138.15,21.22],[-133.73,18.09],[-130.36,15.85],[-128.51,14.33],[-124.24,12.8],[-122.46,10.34],[-119.71,9.45],[-110.03,3.63],[-104.31,-1.19],[-99.69,-2.9],[-97.46,-5.65],[-94.74,-6.48],[-91.56,-9.01],[-76.04,-17.19],[-72.88,-33.09],[-75.26,-60.23],[-88.37,-73.08],[-97.07,-77.11],[-145.21,-88.45],[-174.38,-157.06],[-192.63,-166.75],[-194.49,-166.77],[-195.65,-168.75],[-199.29,-169.48],[-202.48,-171.83],[-206.91,-172.52],[-237.88,-173.9],[-289.01,-184.02]],"o":[[-304.19,-183.33],[-302.03,-177.67],[-296.55,-172.68],[-292.26,-169.62],[-286.73,-165.41],[-279.92,-159.81],[-271.83,-149.94],[-263.8,-135.34],[-257.02,-120.75],[-251.53,-109.32],[-245.94,-101.76],[-241.17,-97.51],[-237.63,-95.26],[-232.76,-93.22],[-227.24,-91.47],[-221.16,-90.71],[-213.72,-89.23],[-200.4,-85.09],[-192.48,-79.59],[-185,-71.35],[-179.39,-56.43],[-181.68,-29.12],[-181.8,-10.37],[-180.75,-5.59],[-179.73,-2.1],[-177.87,0.11],[-176.67,1.44],[-176.4,3.08],[-172.98,7.77],[-161.15,14.69],[-149.73,18.82],[-142.89,21.51],[-139.28,21.93],[-135.37,19.3],[-131.1,16.44],[-129.06,14.79],[-126.3,12.92],[-122.56,11.72],[-121.21,9.41],[-114.57,6.17],[-104.87,0.26],[-101.48,-2.94],[-97.56,-4.29],[-96.17,-6.62],[-92.76,-7.87],[-84.14,-13.75],[-72.31,-25.98],[-73.21,-52.27],[-83.22,-69.92],[-94.54,-76.35],[-120.25,-87.79],[-169.41,-121.66],[-192.32,-165.15],[-193.46,-167.31],[-195.31,-167.14],[-197.82,-170.28],[-201.38,-170.11],[-204.54,-172.49],[-222.47,-176.11],[-272.18,-176.24],[-301.17,-186.21]],"v":[[-302,-185],[-303.09,-179.56],[-298,-174],[-293.65,-170.59],[-290,-168],[-282.15,-161.76],[-275,-154],[-266.41,-140.29],[-259,-125],[-253.41,-113.02],[-247,-103],[-242.73,-98.86],[-239,-96],[-234.43,-93.89],[-229,-92],[-223.21,-90.96],[-217,-90],[-204.69,-86.53],[-195,-82],[-187.37,-74.17],[-182,-65],[-180.78,-38.19],[-182,-12],[-181.12,-7.15],[-180,-3],[-178.49,-0.58],[-177,1],[-176.49,2.54],[-176,4],[-165.23,12.56],[-152,18],[-145.07,20.69],[-140,22],[-136.76,20.26],[-132,17],[-129.71,15.32],[-128,14],[-123,12],[-122,10],[-119,9],[-106,1],[-103,-2],[-98,-4],[-97,-6],[-94,-7],[-90,-10],[-74,-22],[-73,-40],[-80,-66],[-92,-75],[-99,-78],[-158,-106],[-192,-165],[-193,-167],[-195,-167],[-196,-169],[-201,-170],[-203,-172],[-209,-173],[-254,-175],[-300,-186]],"c":true}],"h":1},{"t":94,"s":[{"i":[[-300.26,-185.43],[-302.11,-184.75],[-303.89,-184.48],[-303.47,-180.41],[-299.18,-175.1],[-297.08,-173.57],[-295.41,-173.34],[-293.7,-171.52],[-293.11,-169.9],[-290.69,-168.24],[-288.53,-167.41],[-287.64,-166.41],[-287.26,-165.19],[-285.99,-164.58],[-284.4,-164.35],[-281.26,-161.27],[-277.57,-156.25],[-276.49,-154.68],[-275.12,-154.18],[-268.11,-142.74],[-259.68,-124.72],[-251.86,-109.24],[-241.47,-98.12],[-231.42,-93.75],[-223.05,-91.71],[-212.06,-89.29],[-200.17,-85.84],[-196.66,-83.46],[-196.21,-82.16],[-195.01,-81.57],[-193.38,-81.29],[-189.11,-77.55],[-184.92,-71.25],[-187.66,-15.55],[-169.48,9.77],[-155.65,16.68],[-139.46,22.05],[-138.29,20.5],[-132.26,17.8],[-129.39,14.91],[-123.89,12.58],[-120.98,9.64],[-116.59,8],[-114.45,5.34],[-111.71,4.45],[-94.24,-7.68],[-84.07,-14.3],[-79.12,-16.21],[-75.81,-19.23],[-73.91,-54.67],[-128.19,-82.83],[-156.5,-103.57],[-167.18,-123.58],[-172.34,-135.36],[-175.1,-144.51],[-179.26,-149.8],[-181.01,-154.71],[-185.97,-160.04],[-199.8,-170.74],[-241.72,-174.02],[-287.31,-183.96]],"o":[[-301.41,-184.76],[-303.34,-184.61],[-304.38,-182.36],[-300.87,-176.77],[-297.62,-173.65],[-295.97,-173.42],[-293.9,-172.07],[-293.31,-170.43],[-291.42,-168.53],[-289.24,-167.67],[-287.76,-166.82],[-287.39,-165.6],[-286.54,-164.66],[-284.92,-164.42],[-282.73,-162.89],[-278.68,-157.95],[-276.93,-154.84],[-275.59,-154.35],[-271.27,-148.62],[-262.32,-130.79],[-254.63,-113.93],[-245.28,-101.33],[-234.14,-94.64],[-225.87,-92.28],[-216.22,-90.12],[-204.03,-87.15],[-196.8,-83.88],[-196.36,-82.6],[-195.57,-81.68],[-193.92,-81.38],[-190.9,-79.42],[-186.12,-73.46],[-176.81,-51.43],[-173.98,6.46],[-160.41,14.29],[-149.84,18.78],[-137.39,21.82],[-134.32,17.9],[-129.84,16.27],[-126.48,13],[-121.85,11.26],[-118.59,8.08],[-114.57,6.73],[-113.21,4.41],[-103.24,-0.94],[-85.12,-13.12],[-81.2,-16.17],[-76.35,-18.17],[-70.95,-29.83],[-88.52,-84.6],[-153.02,-99.74],[-164.32,-114.3],[-170.55,-133.65],[-174.41,-140.5],[-177.56,-149.03],[-180.97,-152.57],[-183.27,-157.64],[-193.85,-167.64],[-224.91,-177.66],[-276.96,-177.46],[-299.64,-186.31]],"v":[[-301,-185],[-302.73,-184.68],[-304,-184],[-302.17,-178.59],[-298,-174],[-296.52,-173.49],[-295,-173],[-293.51,-170.98],[-292,-169],[-289.97,-167.95],[-288,-167],[-287.51,-166.01],[-287,-165],[-285.45,-164.5],[-284,-164],[-279.97,-159.61],[-277,-155],[-276.04,-154.52],[-275,-154],[-265.21,-136.76],[-257,-119],[-248.57,-105.28],[-237,-96],[-228.64,-93.02],[-220,-91],[-208.05,-88.22],[-197,-84],[-196.51,-83.03],[-196,-82],[-194.47,-81.47],[-193,-81],[-187.62,-75.5],[-184,-69],[-178,0],[-163,13],[-152,18],[-139,22],[-136,19],[-131,17],[-128,14],[-123,12],[-120,9],[-115,7],[-114,5],[-111,4],[-87,-12],[-83,-15],[-78,-17],[-75,-21],[-77,-61],[-149,-97],[-159,-107],[-170,-132],[-173,-137],[-177,-148],[-180,-151],[-182,-156],[-188,-162],[-208,-173],[-262,-176],[-298,-186]],"c":true}],"h":1},{"t":95,"s":[{"i":[[-300.54,-185.26],[-302.11,-184.76],[-303.9,-184.48],[-302.68,-178.9],[-295.83,-172.55],[-292.84,-170.61],[-289.71,-168.57],[-287.44,-166.6],[-286.12,-165.1],[-284.16,-163.67],[-280.62,-160.85],[-278.57,-158.07],[-278.26,-156.34],[-277.08,-155.3],[-275.32,-154.43],[-274.9,-153.41],[-275.11,-152.24],[-274.49,-151.68],[-273.12,-151.18],[-272.9,-150.4],[-273.11,-149.25],[-272.48,-148.68],[-271.12,-148.2],[-270.53,-146.68],[-270.34,-144.66],[-269.06,-142.87],[-267.28,-141.54],[-265.92,-138.48],[-264.64,-134.42],[-258.15,-120.14],[-247.04,-101.94],[-242.03,-98.57],[-240.34,-98.2],[-238.18,-96.86],[-235.61,-95.24],[-229.39,-93.19],[-220.64,-91.51],[-203.48,-87.46],[-187.74,-76.87],[-181.55,-48.95],[-184.55,-11.59],[-179.47,-1.39],[-178.17,-0.28],[-163.15,12.63],[-150.52,17.82],[-140.7,21.14],[-129.51,15.61],[-105.16,0.1],[-85.68,-12.24],[-74.68,-19.78],[-76.07,-60.53],[-84.82,-71.1],[-96.23,-78.19],[-103.62,-81.52],[-137.45,-89.46],[-167.12,-122.29],[-185.95,-161.32],[-201.62,-171.15],[-238.36,-174.41],[-280.11,-180.63],[-299.14,-186.28]],"o":[[-301.41,-184.77],[-303.35,-184.61],[-304.51,-181.62],[-298.34,-174.36],[-293.98,-171.33],[-290.7,-169.23],[-288.13,-167.3],[-286.43,-165.5],[-285.09,-164.25],[-281.92,-161.97],[-278.69,-158.65],[-278.36,-156.91],[-277.67,-155.58],[-275.91,-154.72],[-274.84,-153.79],[-275.03,-152.64],[-274.93,-151.84],[-273.59,-151.35],[-272.85,-150.77],[-273.04,-149.64],[-272.92,-148.83],[-271.58,-148.36],[-270.61,-147.35],[-270.39,-145.33],[-269.67,-143.35],[-267.87,-141.96],[-266.35,-139.77],[-265.06,-135.8],[-261.38,-127.17],[-250.98,-107.52],[-242.61,-98.72],[-240.9,-98.31],[-239.12,-97.49],[-236.42,-95.74],[-232.31,-93.94],[-223.55,-91.98],[-210.36,-89.53],[-192.17,-81.13],[-180.52,-61.4],[-183.56,-24.04],[-179.88,-1.75],[-178.61,-0.66],[-172.89,8.22],[-151.63,16.11],[-146.07,19.41],[-136.16,20.77],[-112.31,4.58],[-89.13,-10.2],[-74.07,-19.85],[-73.33,-47.95],[-82.69,-69.74],[-93.38,-77.03],[-102.38,-80.52],[-120,-87.25],[-163.33,-107.08],[-179.42,-150.38],[-197.19,-168.78],[-223.34,-177.44],[-269.92,-176.84],[-291.63,-184.09],[-300.88,-185.71]],"v":[[-301,-185],[-302.73,-184.68],[-304,-184],[-300.51,-176.63],[-295,-172],[-291.77,-169.92],[-289,-168],[-286.93,-166.05],[-286,-165],[-283.04,-162.82],[-279,-159],[-278.47,-157.49],[-278,-156],[-276.49,-155.01],[-275,-154],[-274.96,-153.02],[-275,-152],[-274.04,-151.52],[-273,-151],[-272.97,-150.02],[-273,-149],[-272.03,-148.52],[-271,-148],[-270.46,-146.01],[-270,-144],[-268.46,-142.42],[-267,-141],[-265.49,-137.14],[-264,-133],[-254.57,-113.83],[-243,-99],[-241.47,-98.44],[-240,-98],[-237.3,-96.3],[-235,-95],[-226.47,-92.59],[-218,-91],[-197.82,-84.29],[-185,-71],[-182.55,-36.49],[-180,-2],[-179.04,-1.02],[-178,0],[-152,16],[-150,18],[-139,21],[-127,14],[-91,-9],[-83,-14],[-74,-34],[-80,-66],[-89,-74],[-101,-80],[-105,-82],[-150,-98],[-174,-138],[-193,-166],[-208,-173],[-259,-176],[-288,-183],[-300,-186]],"c":true}],"h":1},{"t":96,"s":[{"i":[[-300.63,-185.21],[-301.48,-184.82],[-302.42,-184.72],[-303.33,-184.6],[-303.95,-184.24],[-304,-182.18],[-302.49,-179.22],[-300.09,-176.47],[-297.63,-174.39],[-293.21,-171.45],[-287.46,-166.58],[-282.02,-161.13],[-277.28,-155.67],[-269.92,-144.72],[-262.34,-128.88],[-254.69,-113.52],[-245.17,-101.41],[-236.75,-96.86],[-229.54,-94.51],[-221.74,-92.64],[-213.67,-90.76],[-203.29,-87.51],[-194.17,-82.39],[-187.56,-75.16],[-181.69,-49.25],[-184.42,-11.85],[-175.35,4.08],[-162.02,12.4],[-155.79,14.71],[-152.13,15.61],[-146.26,17.89],[-139.75,20.15],[-133.58,18.5],[-124.8,12.8],[-108.8,2.36],[-91.11,-9.47],[-77.22,-18.19],[-75.3,-26.91],[-74.74,-40.99],[-74.7,-49.75],[-76.18,-57.21],[-79.06,-62.3],[-83.96,-70.39],[-91.81,-76.89],[-114.46,-85.75],[-143.88,-94.15],[-157.7,-104.79],[-165.24,-116.2],[-171.57,-130.86],[-178.41,-147],[-184.56,-156.16],[-189.92,-162.11],[-193.84,-165.92],[-196.15,-168.48],[-203.16,-172.03],[-215.96,-175.6],[-236.55,-176.51],[-263.73,-176.51],[-281.32,-180.42],[-292.75,-184.56],[-298.86,-185.35]],"o":[[-301.2,-184.88],[-302.09,-184.74],[-303.04,-184.65],[-303.79,-184.39],[-304.19,-183.14],[-303.15,-180.22],[-300.96,-177.34],[-298.43,-174.99],[-295.14,-172.85],[-289.38,-168.31],[-283.79,-162.99],[-278.77,-157.47],[-272.71,-149.71],[-264.74,-134.31],[-257.31,-118.48],[-248.62,-104.98],[-238.97,-97.82],[-232.03,-95.21],[-224.39,-93.23],[-216.38,-91.4],[-206.91,-88.84],[-196.92,-84.29],[-189.49,-77.83],[-181.23,-62.33],[-183.29,-24.02],[-179.09,0.38],[-166.81,10.09],[-156.98,14.41],[-153.37,15.31],[-148.64,16.81],[-141.82,19.55],[-136.18,19.85],[-127.89,14.97],[-114.75,6.34],[-96.98,-5.54],[-79.32,-16.99],[-75.21,-23.16],[-74.89,-37.87],[-74.65,-46.94],[-75.41,-55.06],[-78.01,-60.83],[-82.05,-67.7],[-88.84,-74.99],[-104.27,-83.17],[-134.27,-91.24],[-154.58,-101.44],[-163.03,-112.17],[-169.36,-125.11],[-176.09,-141.81],[-182.85,-153.85],[-188.1,-160.29],[-193.01,-164.92],[-195.41,-167.7],[-199.43,-170.48],[-211.42,-174.59],[-227.68,-176.76],[-254.57,-176.39],[-276.94,-178.89],[-289.22,-183.26],[-297.79,-185.24],[-300.27,-185.33]],"v":[[-301,-185],[-301.78,-184.78],[-302.73,-184.68],[-303.56,-184.49],[-304,-184],[-303.57,-181.2],[-301.72,-178.28],[-299.26,-175.73],[-297,-174],[-291.29,-169.88],[-285.62,-164.79],[-280.39,-159.3],[-276,-154],[-267.33,-139.52],[-259.82,-123.68],[-251.66,-109.25],[-241,-99],[-234.39,-96.04],[-226.96,-93.87],[-219.06,-92.02],[-211,-90],[-200.1,-85.9],[-191.83,-80.11],[-186,-72],[-182.49,-36.64],[-181,-4],[-171.08,7.08],[-158,14],[-154.58,15.01],[-151,16],[-144.04,18.72],[-138,20],[-130.74,16.74],[-122,11],[-102.89,-1.59],[-84,-14],[-76.22,-20.67],[-75,-35],[-74.7,-43.97],[-75,-52],[-77.1,-59.02],[-80,-64],[-86.4,-72.69],[-96,-79],[-124.36,-88.49],[-151,-99],[-160.37,-108.48],[-167,-120],[-173.83,-136.33],[-181,-151],[-186.33,-158.22],[-192,-164],[-194.63,-166.81],[-197,-169],[-207.29,-173.31],[-220,-176],[-245.56,-176.45],[-272,-178],[-285.27,-181.84],[-296,-185],[-299.56,-185.34]],"c":true}],"h":1},{"t":97,"s":[{"i":[[-302.71,-184.29],[-303.95,-181.64],[-301.03,-177.19],[-295.99,-172.79],[-291.58,-169.5],[-288.09,-166.44],[-283.62,-162.2],[-279.31,-157.61],[-267,-137.34],[-252.57,-107.72],[-242.87,-100.23],[-240.68,-98.29],[-224.37,-93.35],[-202.84,-88.9],[-192.26,-81.2],[-186.94,-74.18],[-183.24,-50.37],[-184.26,-9.39],[-174.07,4.82],[-160.29,12.43],[-154.01,14.69],[-150.89,15.69],[-142.68,18.72],[-135.51,19.46],[-130.22,16.22],[-127.13,13.8],[-123.16,11.08],[-119.2,8.68],[-116.67,7.33],[-114.63,6.38],[-109.61,3.02],[-104.63,-0.96],[-101.75,-2.66],[-99.66,-3.57],[-93.67,-7.5],[-86.67,-12.24],[-80.69,-15.99],[-77.62,-18.52],[-76.57,-22.35],[-76.22,-29.3],[-75.74,-53.15],[-85.94,-73.71],[-106.12,-84],[-128.22,-89.69],[-140.32,-94.18],[-147.23,-98.01],[-150.78,-99.74],[-153.5,-100.62],[-159.39,-106.17],[-165.54,-116],[-172.66,-131.61],[-180.52,-148.76],[-188.44,-160.45],[-195.33,-166.8],[-201.04,-170.4],[-204.31,-172.73],[-221.58,-176.42],[-252.77,-175.94],[-278.22,-179.64],[-295.84,-184.87],[-301.96,-184.91]],"o":[[-304.03,-182.96],[-302.45,-178.75],[-297.8,-174.21],[-292.87,-170.43],[-289.57,-167.76],[-285.11,-163.66],[-280.72,-159.17],[-271.47,-147.98],[-257.56,-117.21],[-243.78,-101.08],[-241.32,-98.83],[-232.2,-94.66],[-209.69,-90.48],[-194.54,-83.36],[-188.46,-76.61],[-182.61,-64.17],[-184.06,-22.98],[-177.93,1.6],[-165.26,10.24],[-155.06,14.34],[-151.92,15.36],[-145.68,17.48],[-137.6,19.71],[-131.4,17.07],[-128.08,14.58],[-124.56,11.99],[-120.48,9.43],[-117.36,7.64],[-115.31,6.7],[-111.55,4.5],[-106.15,0.29],[-102.42,-2.37],[-100.37,-3.26],[-96.08,-5.88],[-88.96,-10.68],[-82.13,-15.23],[-78.43,-17.64],[-76.71,-20.7],[-76.33,-26.65],[-75.02,-43.8],[-81.2,-68.11],[-99.02,-81.66],[-120.72,-88.02],[-137.71,-92.92],[-145.08,-96.72],[-149.78,-99.43],[-152.64,-100.34],[-156.87,-103.17],[-163.72,-112.58],[-170.15,-125.47],[-177.84,-143.25],[-186.53,-157.8],[-192.85,-164.95],[-199.89,-169.53],[-203.25,-171.99],[-212.45,-175.95],[-241.74,-176.42],[-271.55,-177.71],[-290.37,-183.22],[-301.61,-185.02],[-302.52,-184.54]],"v":[[-303,-184],[-303.2,-180.19],[-299.42,-175.7],[-294.43,-171.61],[-291,-169],[-286.6,-165.05],[-282.17,-160.69],[-278,-156],[-262.28,-127.27],[-245,-102],[-242.1,-99.53],[-240,-98],[-217.03,-91.91],[-197,-85],[-190.36,-78.9],[-186,-72],[-183.65,-36.67],[-180,-2],[-169.66,7.53],[-156,14],[-152.97,15.03],[-150,16],[-140.14,19.21],[-133,18],[-129.15,15.4],[-126,13],[-121.82,10.25],[-118,8],[-115.99,7.02],[-114,6],[-107.88,1.66],[-103,-2],[-101.06,-2.96],[-99,-4],[-91.31,-9.09],[-84,-14],[-79.56,-16.82],[-77,-20],[-76.45,-24.5],[-76,-32],[-78.47,-60.63],[-93,-78],[-113.42,-86.01],[-135,-92],[-142.7,-95.45],[-149,-99],[-151.71,-100.04],[-154,-101],[-161.55,-109.38],[-167,-119],[-175.25,-137.43],[-184,-154],[-190.64,-162.7],[-199,-169],[-202.15,-171.19],[-205,-173],[-231.66,-176.42],[-264,-177],[-284.29,-181.43],[-301,-185],[-302.24,-184.73]],"c":true}],"h":1},{"t":98,"s":[{"i":[[-302.43,-184.57],[-303.6,-180.1],[-298.22,-175.19],[-296.95,-173.98],[-295.5,-172.44],[-293.56,-171.11],[-291.5,-170.44],[-286.73,-165.98],[-280.96,-159.41],[-270.62,-144.28],[-261.32,-123.83],[-255.61,-114.4],[-251.87,-110.1],[-250.2,-107.57],[-249.48,-105.48],[-248.07,-104.27],[-246.46,-103.35],[-244.66,-101.78],[-243.24,-100.14],[-235.98,-96.82],[-225.21,-94.73],[-210.87,-91.33],[-196.19,-85.15],[-186.25,-72.5],[-183.8,-53.7],[-184.63,-36.43],[-185.53,-21.56],[-184.13,-12.24],[-181.69,-4.72],[-180.3,-3.04],[-179.41,-1.42],[-178.6,-0.37],[-178.3,0.64],[-170.29,7.02],[-152.83,14.32],[-142.87,17.84],[-136.43,20.05],[-134.59,19.15],[-130.36,15.87],[-125.06,12.43],[-119.62,8.92],[-113.94,5.56],[-108.66,2.06],[-105.79,0.36],[-103.79,-0.49],[-101.14,-3.27],[-94.35,-6.45],[-90.44,-10.03],[-82.6,-13.83],[-77.64,-25.13],[-76.14,-55.94],[-115.17,-85.92],[-146.56,-98.09],[-154.06,-101.29],[-165.5,-115.69],[-173.29,-131.03],[-178.78,-146.69],[-181.3,-149.82],[-202.44,-175.08],[-246.59,-176.29],[-289.26,-184.7]],"o":[[-304.74,-182.25],[-300.34,-176.57],[-297.45,-174.51],[-295.98,-172.94],[-294.31,-171.4],[-292.16,-170.64],[-288.74,-168.02],[-282.84,-161.68],[-274.21,-151.12],[-264.17,-130.64],[-256.92,-116.1],[-253.08,-111.4],[-250.46,-108.33],[-249.71,-106.14],[-248.59,-104.59],[-247.01,-103.64],[-245.29,-102.46],[-243.63,-100.62],[-239.62,-97.96],[-228.77,-95.21],[-216.52,-92.76],[-200.7,-87.53],[-188.6,-77.65],[-183.85,-60.52],[-184.12,-41.4],[-185.34,-26.51],[-184.78,-15.13],[-182.58,-7.04],[-180.6,-3.58],[-179.71,-1.97],[-178.7,-0.69],[-178.4,0.3],[-175.37,4.1],[-159.02,12.12],[-145.65,16.82],[-138.25,19.45],[-135.67,19.97],[-131.94,17.1],[-127,13.72],[-121.37,10.03],[-115.86,6.78],[-110.34,3.2],[-106.39,0.61],[-104.48,-0.19],[-102.02,-1.63],[-97.59,-5.54],[-90.99,-8.66],[-86.66,-12.57],[-75.67,-18.9],[-76.25,-46.7],[-87.36,-83.62],[-141.3,-94.8],[-151.83,-101.02],[-162.09,-107.37],[-170.98,-127.14],[-177.04,-139.73],[-181.82,-149.85],[-190.19,-164.79],[-234.43,-178.06],[-275.18,-178.07],[-302.21,-185.03]],"v":[[-303,-184],[-301.97,-178.34],[-298,-175],[-296.46,-173.46],[-295,-172],[-292.86,-170.88],[-291,-170],[-284.78,-163.83],[-279,-157],[-267.39,-137.46],[-258,-118],[-254.35,-112.9],[-251,-109],[-249.96,-106.85],[-249,-105],[-247.54,-103.95],[-246,-103],[-244.14,-101.2],[-243,-100],[-232.38,-96.01],[-222,-94],[-205.78,-89.43],[-193,-82],[-185.05,-66.51],[-184,-46],[-184.99,-31.47],[-185,-17],[-183.35,-9.64],[-181,-4],[-180,-2.5],[-179,-1],[-178.5,-0.03],[-178,1],[-164.66,9.57],[-148,16],[-140.56,18.65],[-136,20],[-133.27,18.13],[-129,15],[-123.21,11.23],[-118,8],[-112.14,4.38],[-107,1],[-105.14,0.09],[-103,-1],[-100,-4],[-92,-8],[-89,-11],[-81,-15],[-77,-35],[-79,-63],[-136,-93],[-150,-100],[-155,-102],[-169,-123],[-175,-135],[-181,-149],[-182,-151],[-223,-177],[-258,-177],[-301,-185]],"c":true}],"h":1},{"t":99,"s":[{"i":[[-300.27,-186.72],[-303.87,-181.86],[-302.46,-178.5],[-300.85,-177.29],[-298.56,-176.52],[-295.54,-173.49],[-292.47,-170.66],[-290.69,-169.5],[-290.14,-168.12],[-285.09,-163.72],[-279.21,-156.69],[-277.49,-153.68],[-276.12,-153.18],[-275.9,-152.4],[-276.11,-151.25],[-275.48,-150.68],[-274.12,-150.2],[-272.97,-147.85],[-271.65,-144.17],[-268.58,-138.4],[-265.19,-131.36],[-259.07,-119.15],[-249.57,-105.61],[-245.68,-103.49],[-245.17,-102.12],[-230.85,-96.04],[-206.19,-91.68],[-194.82,-83.97],[-187.99,-75.34],[-184.55,-53.1],[-186.06,-14.27],[-181.98,-5.32],[-179.66,-2.83],[-172.74,4.23],[-160.94,10.61],[-154.71,12.7],[-151.19,13.59],[-145.19,16.07],[-137.8,19.12],[-131.93,16.85],[-121.26,9.85],[-109.81,2.8],[-104.28,-0.18],[-101.08,-3.31],[-94.29,-6.49],[-90.26,-10.15],[-86.24,-12.18],[-77.69,-19.67],[-76.35,-50.5],[-78.72,-57.94],[-79.33,-63.54],[-87.02,-74.63],[-93.95,-79.84],[-141.45,-91.95],[-169.98,-123.61],[-180.14,-146.12],[-191.36,-163.58],[-196.2,-167.38],[-218.19,-177.19],[-255.26,-176.76],[-279.12,-180.77]],"o":[[-303.89,-183.11],[-303.15,-179.56],[-301.57,-177.53],[-299.34,-176.78],[-296.55,-174.66],[-293.5,-171.49],[-290.86,-169.94],[-290.33,-168.59],[-287.49,-165.87],[-280.95,-159.12],[-277.93,-153.84],[-276.59,-153.35],[-275.85,-152.77],[-276.04,-151.64],[-275.92,-150.83],[-274.58,-150.36],[-273.4,-149.02],[-272.1,-145.43],[-269.73,-140.72],[-266.3,-133.72],[-261.79,-124.6],[-252.97,-109.66],[-245.85,-103.93],[-245.35,-102.59],[-239.01,-97.69],[-214.45,-93.03],[-197.57,-86.56],[-190.03,-78.36],[-184.01,-65.96],[-185.57,-27.26],[-182.64,-6.16],[-180.49,-3.66],[-176.27,1.42],[-165.07,8.82],[-155.87,12.4],[-152.37,13.29],[-147.79,14.76],[-140.19,18.25],[-133.92,18.86],[-125.08,12.53],[-113.9,5.67],[-105.86,0.27],[-102.01,-1.63],[-97.49,-5.6],[-91.1,-8.59],[-87.76,-11.83],[-76.04,-18.94],[-76.73,-42.39],[-77.19,-56.29],[-79.7,-61.71],[-81.68,-68.7],[-91.8,-77.94],[-112.7,-90.5],[-165.65,-111.69],[-177.26,-140.14],[-186.03,-156.18],[-195.97,-166.64],[-205.04,-174.3],[-243.19,-178.66],[-274.03,-178.59],[-291.09,-183.79]],"v":[[-303,-184],[-303.51,-180.71],[-302,-178],[-300.1,-177.04],[-298,-176],[-294.52,-172.49],[-291,-170],[-290.51,-169.05],[-290,-168],[-283.02,-161.42],[-278,-154],[-277.04,-153.52],[-276,-153],[-275.97,-152.02],[-276,-151],[-275.03,-150.52],[-274,-150],[-272.53,-146.64],[-271,-143],[-267.44,-136.06],[-264,-129],[-256.02,-114.41],[-246,-104],[-245.51,-103.04],[-245,-102],[-222.65,-94.53],[-200,-88],[-192.42,-81.17],[-187,-73],[-185.06,-40.18],[-183,-7],[-181.23,-4.49],[-179,-2],[-168.91,6.52],[-157,12],[-153.54,13],[-150,14],[-142.69,17.16],[-136,19],[-129,15],[-118,8],[-107,1],[-103,-1],[-100,-4],[-92,-8],[-89,-11],[-85,-13],[-77,-36],[-77,-55],[-79,-59],[-80,-65],[-89,-76],[-96,-81],[-155,-103],[-175,-135],[-183,-151],[-195,-166],[-197,-168],[-232,-178],[-268,-178],[-284,-182]],"c":true}],"h":1},{"t":100,"s":[{"i":[[-302.45,-184.54],[-303.58,-183.62],[-304.28,-182.63],[-300.57,-177.02],[-292.98,-170.82],[-286.45,-164.73],[-280.65,-158.31],[-271.57,-143.86],[-261.42,-123.65],[-255.32,-113.41],[-251.34,-107.28],[-249.1,-105.58],[-247.31,-105.24],[-245.48,-103.54],[-243.55,-101.3],[-234.24,-97.47],[-220.4,-95.1],[-209.41,-92.17],[-200.02,-88.38],[-195.36,-84.71],[-192.78,-81.03],[-191.35,-79.36],[-190.3,-78.49],[-184.82,-56.63],[-186.85,-17.26],[-181.65,-4.73],[-178.63,-1.69],[-174.83,2.21],[-169.6,6.21],[-165.85,7.76],[-162.38,8.43],[-159.48,9.88],[-157.03,11.63],[-151.13,13.51],[-144.37,15.16],[-139.58,17.11],[-136.21,19.01],[-133.95,18.4],[-130.36,15.86],[-125.73,12.99],[-121.32,10.59],[-119.41,8.24],[-116.36,6.83],[-109,3.3],[-105.83,-0.41],[-102.08,-2.28],[-98.49,-4],[-94.9,-7.41],[-88.45,-10.45],[-79.52,-15.95],[-78.21,-30.38],[-77.61,-55.87],[-91.05,-79.01],[-118.33,-89.47],[-149.96,-99.08],[-172.12,-127.08],[-190.66,-163.83],[-205.47,-172.5],[-213.62,-175.67],[-246.64,-176.74],[-292.76,-184.45]],"o":[[-303.19,-183.81],[-304.12,-183.03],[-302.83,-179.36],[-295.65,-172.75],[-288.63,-166.82],[-282.46,-160.47],[-275.11,-150.54],[-264.72,-130.42],[-256.65,-115.77],[-252.67,-109.17],[-249.69,-105.71],[-247.91,-105.35],[-246.21,-104.38],[-244.15,-101.99],[-238.79,-98.67],[-225.05,-95.68],[-212.9,-93.23],[-202.97,-89.74],[-196.46,-85.95],[-193.52,-82.25],[-191.7,-79.61],[-190.65,-78.79],[-184.65,-69.25],[-185.92,-30.63],[-182.58,-5.89],[-179.67,-2.63],[-176.53,0.6],[-171.37,5.01],[-166.91,7.54],[-163.59,8.2],[-160.22,9.32],[-157.89,11.04],[-153.44,12.93],[-146.59,14.63],[-140.98,16.36],[-137.2,18.44],[-135.02,18.97],[-131.61,16.84],[-127.32,13.94],[-122.73,11.31],[-119.65,9.84],[-117.38,7.06],[-112.08,4.22],[-106.18,1.47],[-104.15,-1.61],[-99.74,-3.84],[-96.13,-5.58],[-92.12,-9.23],[-83.72,-13.44],[-77.82,-19.4],[-77.8,-47.24],[-81.84,-71.48],[-107.86,-87.45],[-136.78,-94.86],[-167.13,-113.08],[-182.67,-150.68],[-205.27,-172.55],[-211.75,-174.58],[-229.34,-179.46],[-279.29,-179.11],[-302.19,-185.08]],"v":[[-303,-184],[-303.85,-183.33],[-304,-182],[-298.11,-174.88],[-291,-169],[-284.46,-162.6],[-279,-156],[-268.15,-137.14],[-258,-118],[-254,-111.29],[-250,-106],[-248.5,-105.46],[-247,-105],[-244.82,-102.76],[-243,-101],[-229.64,-96.58],[-216,-94],[-206.19,-90.95],[-198,-87],[-194.44,-83.48],[-192,-80],[-191,-79.08],[-190,-78],[-185.37,-43.63],[-183,-7],[-180.66,-3.68],[-178,-1],[-173.1,3.61],[-168,7],[-164.72,7.98],[-161,9],[-158.69,10.46],[-156,12],[-148.86,14.07],[-142,16],[-138.39,17.78],[-136,19],[-132.78,17.62],[-129,15],[-124.23,12.15],[-120,10],[-119,8],[-115,6],[-107,2],[-105,-1],[-101,-3],[-97,-5],[-94,-8],[-86,-12],[-79,-17],[-78,-39],[-79,-61],[-99,-83],[-127,-92],[-156,-104],[-177,-138],[-201,-170],[-210,-174],[-215,-176],[-264,-178],[-301,-185]],"c":true}],"h":1},{"t":101,"s":[{"i":[[-299.3,-187.7],[-303.77,-183.09],[-303.5,-181.73],[-299.48,-176.41],[-293.92,-170.85],[-290.69,-168.19],[-288.49,-167.44],[-287.31,-165.86],[-286.52,-163.55],[-283.86,-160.94],[-280.84,-158.12],[-273.63,-147.44],[-265.54,-131.95],[-260.48,-121.63],[-256.68,-114.05],[-250.84,-107.47],[-243.94,-102.02],[-233.93,-97.95],[-221.15,-95.98],[-204.33,-91.08],[-191.84,-80.99],[-184.67,-54.44],[-187.46,-16.14],[-180.59,-3.32],[-175.03,1.59],[-165.26,7.55],[-152.28,12.55],[-142.33,15.96],[-135.03,18.1],[-130.92,16.68],[-124.79,12.54],[-122.63,11.24],[-120.56,10.36],[-117.93,8.37],[-114.91,5.57],[-113.39,4.91],[-112.26,5.12],[-111.41,3.24],[-108.41,1.9],[-96.24,-6.09],[-91.38,-9.76],[-80.84,-14.42],[-79.42,-28.31],[-77.53,-46.91],[-84.83,-74.3],[-94.2,-79.87],[-97.83,-83.38],[-102.28,-85.3],[-145.02,-95.23],[-163.37,-110.38],[-166.75,-114.63],[-166.77,-116.49],[-168.76,-117.6],[-170.99,-122.96],[-175.62,-132.78],[-180.24,-143.64],[-190.49,-159.86],[-199.71,-169.55],[-214.89,-177.1],[-249.66,-177.84],[-276.78,-179.6]],"o":[[-303.52,-183.48],[-303.76,-182.22],[-301.27,-178.49],[-295.8,-172.59],[-291.45,-168.47],[-289.21,-167.68],[-287.55,-166.58],[-286.79,-164.35],[-284.94,-161.87],[-281.81,-159.06],[-276.61,-152.47],[-268.09,-137.18],[-261.64,-124.36],[-258,-116.47],[-253.12,-109.71],[-246.26,-103.62],[-238.1,-98.96],[-225.46,-96.46],[-209.91,-93.33],[-195.29,-84.9],[-183.94,-67.12],[-186.43,-28.95],[-182.08,-5.11],[-177.07,0.03],[-169.37,5.52],[-156.71,11.06],[-145.32,14.91],[-137.19,17.55],[-133.03,17.91],[-126.8,13.99],[-123.35,11.56],[-121.23,10.64],[-118.97,9.33],[-115.89,6.48],[-113.76,4.85],[-112.64,5.04],[-111.65,4.84],[-109.33,2.04],[-102.56,-1.84],[-91.67,-8.15],[-88.25,-11.77],[-78.48,-18.85],[-78.54,-40.14],[-79.09,-63.76],[-92.49,-80.13],[-97.32,-81.83],[-100.75,-84.92],[-120.81,-92.88],[-160.42,-107.79],[-165.15,-114.32],[-167.31,-115.46],[-167.15,-117.34],[-170.09,-119.82],[-173.96,-128.95],[-178.54,-139.58],[-186.1,-154.83],[-198.2,-167.06],[-205.62,-173.29],[-233.63,-179.48],[-270.83,-179.55],[-290.36,-182.66]],"v":[[-303,-184],[-303.76,-182.66],[-303,-181],[-297.64,-174.5],[-292,-169],[-289.95,-167.94],[-288,-167],[-287.05,-165.1],[-286,-163],[-282.84,-160],[-280,-157],[-270.86,-142.31],[-263,-127],[-259.24,-119.05],[-255,-112],[-248.55,-105.54],[-242,-101],[-229.69,-97.2],[-217,-95],[-199.81,-87.99],[-189,-76],[-185.55,-41.69],[-183,-7],[-178.83,-1.64],[-173,3],[-160.99,9.3],[-148,14],[-139.76,16.76],[-134,18],[-128.86,15.34],[-124,12],[-121.93,10.94],[-120,10],[-116.91,7.42],[-114,5],[-113.01,4.98],[-112,5],[-111,3],[-107,1],[-92,-8],[-91,-10],[-80,-16],[-79,-34],[-78,-52],[-91,-79],[-96,-81],[-99,-84],[-104,-86],[-157,-105],[-165,-114],[-167,-115],[-167,-117],[-169,-118],[-172,-125],[-177,-136],[-182,-147],[-196,-165],[-202,-171],[-222,-178],[-264,-179],[-283,-181]],"c":true}],"h":1},{"t":102,"s":[{"i":[[-300.17,-185.63],[-303.96,-183.15],[-303.66,-182.12],[-303.19,-181.26],[-295.61,-172.71],[-282.67,-160.28],[-267.22,-134.02],[-252.89,-107.78],[-230.5,-97.72],[-205.04,-92.43],[-192.66,-82.47],[-186.59,-69.08],[-186.6,-46.7],[-188.09,-18.04],[-175.52,1.42],[-154.1,10.56],[-141.36,15.23],[-134.1,18.11],[-129.52,16.26],[-121.96,10.28],[-114.86,5.94],[-108.07,2.35],[-103.95,-0.61],[-101.02,-3.33],[-99.39,-4.09],[-98.26,-3.88],[-97.68,-4.51],[-97.19,-5.88],[-95.82,-6.61],[-93.71,-7.54],[-88.35,-10.66],[-80.54,-15.66],[-79.14,-22.83],[-79.12,-37.35],[-78.84,-50.12],[-79.98,-62.06],[-81.5,-65.57],[-82.87,-66.75],[-83.41,-68.37],[-83.61,-70.36],[-96.16,-83.14],[-123.4,-92.48],[-136.07,-96.28],[-142.46,-98.49],[-150.3,-101.48],[-157.97,-106.27],[-161.79,-109.37],[-164.33,-111.24],[-166.43,-114.04],[-168.27,-117.77],[-173.02,-126.29],[-178.27,-137.38],[-185.18,-151.59],[-195.77,-166.09],[-200.32,-168.51],[-200.82,-169.88],[-204.99,-172.44],[-211.63,-175.57],[-228.26,-178.38],[-258.65,-178.2],[-283.27,-181.64]],"o":[[-304,-183.55],[-303.79,-182.43],[-303.36,-181.53],[-299.77,-176.57],[-287.06,-164.56],[-271.78,-144.63],[-257.78,-115.59],[-239.23,-99.5],[-213.4,-94.19],[-195.87,-86.18],[-188.03,-73.92],[-185.06,-55.93],[-188.12,-27.76],[-181.22,-2.86],[-161.96,8.13],[-144.31,13.93],[-136.26,17.33],[-131.78,17.88],[-124.61,12.46],[-117.33,7.27],[-110.23,3.48],[-104.94,0.31],[-101.99,-2.43],[-99.77,-4.15],[-98.64,-3.96],[-97.83,-4.07],[-97.36,-5.41],[-96.47,-6.34],[-94.44,-7.21],[-91.33,-9.08],[-82.96,-13.95],[-79.33,-18.65],[-79.03,-32.17],[-78.85,-45.59],[-79.4,-58.35],[-81.07,-65.2],[-82.4,-66.35],[-83.35,-67.69],[-83.54,-69.7],[-88.46,-78.39],[-113.63,-90.18],[-133.84,-95.54],[-140.38,-97.76],[-147.31,-100.1],[-155.63,-104.57],[-160.88,-108.74],[-163.52,-110.61],[-165.8,-112.91],[-167.67,-116.47],[-171.14,-122.6],[-176.59,-133.68],[-182.29,-145.79],[-191.92,-161.74],[-200.16,-168.07],[-200.65,-169.41],[-202.67,-171.16],[-209.47,-174.65],[-219.43,-178.03],[-247.87,-178.47],[-276.43,-179.57],[-295.14,-184.66]],"v":[[-304,-184],[-303.87,-182.79],[-303.51,-181.82],[-303,-181],[-291.33,-168.63],[-279,-155],[-262.5,-124.81],[-245,-103],[-221.95,-95.95],[-200,-89],[-190.34,-78.2],[-186,-64],[-187.36,-37.23],[-184,-9],[-168.74,4.77],[-147,13],[-138.81,16.28],[-133,18],[-127.06,14.36],[-120,9],[-112.55,4.71],[-106,1],[-102.97,-1.52],[-100,-4],[-99.02,-4.03],[-98,-4],[-97.52,-4.96],[-97,-6],[-95.13,-6.91],[-93,-8],[-85.65,-12.3],[-80,-17],[-79.09,-27.5],[-79,-41],[-79.12,-54.23],[-81,-65],[-81.95,-65.96],[-83,-67],[-83.47,-69.03],[-84,-71],[-104.89,-86.66],[-132,-95],[-138.22,-97.02],[-144,-99],[-152.96,-103.03],[-160,-108],[-162.66,-109.99],[-165,-112],[-167.05,-115.26],[-169,-119],[-174.8,-129.98],[-180,-141],[-188.55,-156.67],[-200,-168],[-200.48,-168.96],[-201,-170],[-207.23,-173.54],[-213,-176],[-238.06,-178.42],[-269,-179],[-289.2,-183.15]],"c":true}],"h":1},{"t":103,"s":[{"i":[[-296.68,-186.99],[-303.9,-182.77],[-303.28,-181.39],[-296.21,-173.44],[-283.73,-161.35],[-268.61,-135.57],[-253.89,-108.78],[-239.79,-101],[-228.48,-97.77],[-216.85,-95.57],[-205.29,-92.94],[-201.11,-90.24],[-199.61,-88.5],[-195.25,-84.76],[-191.01,-79.3],[-186.5,-56.3],[-189.25,-22.28],[-185.3,-11.94],[-183.4,-9.73],[-179.77,-3.6],[-174.22,1.18],[-160.72,7.83],[-143.95,13.29],[-136.16,16.07],[-132.85,17.09],[-128.55,15.51],[-121.02,10.28],[-113.64,5.76],[-106.24,1.19],[-100.89,-3.3],[-93.89,-7.15],[-91.68,-8.51],[-91.18,-9.88],[-90.4,-10.1],[-89.25,-9.88],[-88.68,-10.51],[-88.19,-11.88],[-84.98,-13.47],[-81.42,-15.04],[-80.63,-19],[-81.14,-26.48],[-80.65,-33.62],[-80.05,-40.01],[-80.11,-56.38],[-84.1,-71.38],[-91.22,-79.45],[-98.23,-83.63],[-108.5,-88.44],[-120.78,-92.81],[-130.4,-95.55],[-138.35,-98.06],[-146.67,-100.79],[-154.71,-103.58],[-157.35,-105.53],[-157.82,-106.83],[-160.16,-107.31],[-177.98,-137.24],[-189.04,-155.32],[-198.17,-167.64],[-216.49,-177.93],[-253.01,-178.11]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.1,-177.01],[-288.03,-165.61],[-273.16,-146.18],[-258.97,-116.87],[-243.3,-102.36],[-232.38,-98.7],[-220.95,-96.1],[-209.02,-93.99],[-201.56,-90.74],[-200.14,-89.12],[-196.99,-86.36],[-192.26,-81.23],[-185.88,-67.66],[-188.19,-33.61],[-185.85,-12.57],[-184.08,-10.51],[-181.16,-5.69],[-176.3,-0.16],[-166.24,5.69],[-149.57,11.64],[-137.48,15.52],[-133.84,16.86],[-130.79,16.87],[-123.66,12.22],[-116.52,7.42],[-108.5,2.65],[-103.2,-1.73],[-96.24,-6.01],[-91.84,-8.07],[-91.35,-9.41],[-90.77,-10.15],[-89.64,-9.96],[-88.83,-10.07],[-88.36,-11.41],[-86.52,-12.96],[-82.43,-14.51],[-80.56,-17.01],[-80.92,-23.73],[-80.87,-31.37],[-80.23,-37.94],[-79.81,-49.94],[-82.25,-67.1],[-89.11,-77.63],[-95.78,-82.45],[-104.61,-86.78],[-116.58,-91.45],[-127.73,-94.77],[-135.71,-97.19],[-143.81,-100],[-152.12,-102.58],[-157.19,-105.12],[-157.66,-106.39],[-158.76,-107.71],[-172.08,-117.1],[-186.7,-153.09],[-194.2,-162.39],[-208.02,-173.7],[-239.63,-180.08],[-282.58,-180.13]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-292.12,-169.53],[-280,-156],[-263.79,-126.22],[-246,-104],[-236.08,-99.85],[-225,-97],[-212.93,-94.78],[-202,-91],[-200.63,-89.68],[-199,-88],[-193.75,-83],[-190,-77],[-187.35,-44.95],[-186,-13],[-184.69,-11.23],[-183,-9],[-178.04,-1.88],[-171,3],[-155.15,9.74],[-139,15],[-135,16.46],[-132,17],[-126.1,13.86],[-119,9],[-111.07,4.21],[-105,0],[-98.56,-4.66],[-92,-8],[-91.52,-8.96],[-91,-10],[-90.02,-10.03],[-89,-10],[-88.52,-10.96],[-88,-12],[-83.71,-13.99],[-81,-16],[-80.77,-21.36],[-81,-29],[-80.44,-35.78],[-80,-42],[-81.18,-61.74],[-87,-75],[-93.5,-80.95],[-101,-85],[-112.54,-89.95],[-125,-94],[-133.06,-96.37],[-141,-99],[-149.4,-101.68],[-157,-105],[-157.51,-105.96],[-158,-107],[-161,-108],[-185,-150],[-191,-158],[-202,-170],[-228,-179],[-266,-179]],"c":true}],"h":1},{"t":104,"s":[{"i":[[-296.73,-186.94],[-303.9,-182.77],[-303.28,-181.39],[-296,-173.12],[-283.57,-160.88],[-279.23,-154.07],[-276.88,-149.53],[-274.64,-145.89],[-272.53,-142.98],[-264.9,-127.65],[-252.82,-108.61],[-246.39,-104.91],[-245.26,-105.12],[-244.68,-104.47],[-244.22,-103.11],[-242.63,-102.61],[-239.92,-102.3],[-237.37,-101.35],[-234.79,-100.21],[-222.23,-97.67],[-204.68,-93.57],[-201.36,-90.58],[-200.41,-90.32],[-193.15,-82.75],[-187.43,-67.45],[-187.42,-43.1],[-187.69,-14.75],[-174.47,1.02],[-154.56,8.37],[-141.35,13.5],[-133.59,17.13],[-128.22,15.4],[-121.63,10.06],[-115.25,6.02],[-108.88,2.2],[-103.45,-1.34],[-97.3,-5.5],[-90.63,-9.45],[-82.4,-14.18],[-81.45,-18.62],[-81.26,-29.47],[-80.25,-50.59],[-84.34,-71.07],[-88.41,-75.92],[-88.66,-77.64],[-91.02,-79.77],[-94.85,-82.24],[-101.32,-86.29],[-109.45,-90.16],[-118.79,-93],[-128.14,-95.21],[-141.6,-99.08],[-156.22,-105.41],[-159.92,-108.43],[-161.58,-108.66],[-169.16,-117.46],[-182.28,-143.86],[-195.66,-165.04],[-200.7,-168.75],[-210.27,-175.17],[-250.73,-178.28]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.22,-177.18],[-287.68,-164.97],[-280.04,-155.55],[-277.65,-151.05],[-275.37,-146.91],[-273.22,-143.93],[-268.24,-135.09],[-257.19,-114.41],[-246.76,-104.85],[-245.64,-105.04],[-244.82,-104.92],[-244.38,-103.57],[-243.42,-102.71],[-240.88,-102.41],[-238.22,-101.74],[-235.65,-100.58],[-228.89,-98.63],[-210.13,-95.14],[-201.65,-90.67],[-200.74,-90.41],[-196.19,-87.02],[-188.77,-72.96],[-186.33,-53.48],[-188.11,-23.74],[-179.93,-2.67],[-161.78,6.54],[-144.3,11.94],[-135.99,16.1],[-130.4,16.87],[-123.83,11.99],[-117.57,7.42],[-110.91,3.41],[-105.3,-0.09],[-99.45,-4.05],[-93.68,-7.86],[-84.99,-12.61],[-81.57,-15.88],[-81.3,-25.41],[-80.33,-42.06],[-82.26,-65.1],[-88.33,-75.35],[-88.58,-77.07],[-89.84,-78.9],[-93.53,-81.45],[-98.59,-84.71],[-106.74,-89.01],[-115.47,-92.14],[-125.13,-94.53],[-135.99,-97.37],[-151.72,-103.1],[-159.38,-108.36],[-161.02,-108.58],[-166.31,-112.54],[-177.83,-131.31],[-191.18,-158.07],[-200.27,-167.12],[-203.9,-171.42],[-231.17,-181.53],[-285.17,-180.94]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-291.84,-169.04],[-281,-157],[-278.44,-152.56],[-276,-148],[-273.93,-144.91],[-272,-142],[-261.04,-121.03],[-247,-105],[-246.01,-104.98],[-245,-105],[-244.53,-104.02],[-244,-103],[-241.75,-102.51],[-239,-102],[-236.51,-100.97],[-234,-100],[-216.18,-96.4],[-202,-91],[-201.05,-90.49],[-200,-90],[-190.96,-77.85],[-187,-62],[-187.76,-33.42],[-184,-9],[-168.12,3.78],[-147,11],[-138.67,14.8],[-132,17],[-126.02,13.7],[-120,9],[-113.08,4.72],[-107,1],[-101.45,-2.69],[-95,-7],[-87.81,-11.03],[-82,-15],[-81.37,-22.01],[-81,-33],[-81.26,-57.85],[-88,-75],[-88.49,-76.5],[-89,-78],[-92.27,-80.61],[-96,-83],[-104.03,-87.65],[-112,-91],[-121.96,-93.77],[-131,-96],[-146.66,-101.09],[-159,-108],[-160.47,-108.51],[-162,-109],[-172,-122],[-188,-153],[-200,-167],[-201,-169],[-213,-176],[-273,-180]],"c":true}],"h":1},{"t":105,"s":[{"i":[[-297.29,-187.09],[-303.9,-182.77],[-303.28,-181.39],[-298.34,-175.77],[-289.99,-168.27],[-287.33,-164.83],[-286.51,-162.64],[-284.07,-160.07],[-280.73,-157.12],[-278.86,-153.72],[-277.59,-150.04],[-272.84,-141.76],[-266.78,-131.3],[-262.5,-123.03],[-258.65,-115.95],[-254.73,-111.83],[-250.53,-108.5],[-249.36,-107.53],[-248.54,-107.35],[-246.95,-106.04],[-245.3,-104.15],[-238.03,-101.47],[-226.67,-99.79],[-212.56,-96.32],[-199.65,-89.89],[-192.44,-81.15],[-188.48,-70.87],[-187.89,-53.03],[-189.97,-30.54],[-186.83,-13.71],[-179.44,-3.45],[-167.04,4.05],[-151.65,9],[-140.33,13.47],[-132.28,17.13],[-130,16.34],[-126.05,13.69],[-122.63,11.42],[-119.63,9.4],[-113.41,5.6],[-106.11,1.06],[-100.84,-3.32],[-93.75,-7.21],[-91.68,-8.51],[-91.18,-9.88],[-89.51,-9.77],[-88.37,-11.75],[-85.16,-12.19],[-82.56,-26.25],[-80.35,-52.65],[-83.1,-67.92],[-86.18,-71.74],[-88.5,-77.39],[-98.14,-85.24],[-123.35,-94.6],[-155.71,-103.93],[-162.24,-109.38],[-186.54,-162.13],[-204.58,-171.77],[-215.91,-177.31],[-253.37,-178.72]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-301.1,-178.39],[-292.79,-170.72],[-287.57,-165.51],[-286.8,-163.39],[-285.2,-161.01],[-281.83,-158.13],[-279.32,-154.96],[-277.99,-151.26],[-274.95,-145.37],[-268.76,-134.73],[-263.68,-125.55],[-259.99,-118.23],[-256.21,-113.07],[-251.88,-109.54],[-249.59,-107.61],[-248.84,-107.4],[-247.55,-106.71],[-245.82,-104.76],[-241.69,-102.33],[-230.52,-100.2],[-217.73,-97.87],[-203.51,-92.33],[-194.45,-84.21],[-189.46,-74.48],[-187.16,-60.26],[-189.3,-38.17],[-188.36,-17.99],[-182.37,-6.44],[-171.71,2.05],[-157.01,7.53],[-143.44,11.9],[-134.75,16.08],[-130.97,17],[-127.53,14.69],[-123.82,12.22],[-120.54,10.01],[-116.35,7.32],[-108.28,2.47],[-103.21,-1.71],[-96.1,-6.07],[-91.84,-8.07],[-91.35,-9.41],[-90.54,-10.31],[-88.68,-10.14],[-86.81,-12.8],[-79.66,-16.03],[-81.65,-45.39],[-81.49,-62.07],[-84.45,-71.05],[-88.18,-74.8],[-92.33,-82.07],[-112.81,-92.15],[-141.64,-99.67],[-161.65,-109.62],[-178.53,-122.75],[-204.35,-170.16],[-208.56,-173.99],[-234,-181.33],[-286.06,-181.1]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-295.57,-173.25],[-288,-166],[-287.06,-164.11],[-286,-162],[-282.95,-159.1],[-280,-156],[-278.43,-152.49],[-277,-149],[-270.8,-138.25],[-265,-128],[-261.25,-120.63],[-257,-114],[-253.31,-110.68],[-250,-108],[-249.1,-107.47],[-248,-107],[-246.39,-105.4],[-245,-104],[-234.27,-100.84],[-223,-99],[-208.03,-94.32],[-197,-87],[-190.95,-77.81],[-188,-67],[-188.59,-45.6],[-189,-23],[-184.6,-10.08],[-176,-1],[-162.02,5.79],[-146,11],[-137.54,14.77],[-131,17],[-128.77,15.52],[-125,13],[-121.59,10.72],[-119,9],[-110.85,4.03],[-105,0],[-98.47,-4.69],[-92,-8],[-91.52,-8.96],[-91,-10],[-89,-10],[-88,-12],[-84,-13],[-82,-38],[-81,-58],[-84,-70],[-87,-73],[-89,-78],[-104,-88],[-132,-97],[-161,-109],[-163,-110],[-204,-170],[-205,-172],[-219,-178],[-271,-180]],"c":true}],"h":1},{"t":106,"s":[{"i":[[-296.94,-186.6],[-303.9,-182.77],[-303.28,-181.39],[-297.9,-175.28],[-287.37,-164.64],[-272.18,-139.5],[-256.86,-112.09],[-249.68,-108.49],[-249.18,-107.12],[-248.4,-106.9],[-247.25,-107.11],[-246.68,-106.47],[-246.22,-105.11],[-242.91,-103.75],[-237.58,-102.43],[-232.08,-100.88],[-226.61,-99.34],[-216.86,-97.52],[-205.9,-94.79],[-202.14,-92.23],[-200.53,-90.43],[-197.21,-87.66],[-194.97,-84.7],[-193.24,-81.61],[-192.27,-79.62],[-188.93,-60.14],[-190.55,-25.83],[-186.61,-13.91],[-183.5,-9.54],[-182.58,-8.08],[-182.34,-6.38],[-179.09,-3.46],[-173.04,-0.05],[-160.29,5.6],[-143.3,10.94],[-134.87,14.44],[-131.7,16.05],[-128.36,15.13],[-123.9,12.4],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-112.1,5.05],[-105.75,0.72],[-104.18,-0.3],[-93.12,-7.55],[-83.83,-13.68],[-82.31,-33.26],[-81.96,-63.41],[-86.32,-71.77],[-88.54,-77.4],[-139.96,-94.99],[-161.53,-110.65],[-164.2,-111.3],[-177.38,-131.36],[-196.8,-165.95],[-207.69,-173.37],[-245.53,-178.78]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.97,-178.21],[-291.11,-168.5],[-277.24,-150.7],[-261.99,-120.19],[-249.84,-108.93],[-249.35,-107.59],[-248.77,-106.85],[-247.64,-107.04],[-246.82,-106.92],[-246.38,-105.57],[-244.62,-104.28],[-239.39,-102.82],[-234.03,-101.46],[-228.37,-99.82],[-220.91,-98.13],[-209.35,-95.85],[-202.63,-92.77],[-201.09,-91.06],[-198.22,-88.56],[-195.58,-85.73],[-193.6,-82.3],[-192.57,-80.27],[-188.66,-71.22],[-189.87,-37.44],[-187.61,-15.64],[-184.56,-10.86],[-182.66,-8.63],[-182.42,-6.95],[-180.82,-4.68],[-175.2,-1.14],[-165.89,3.63],[-148.99,9.26],[-136.27,13.67],[-132.59,15.63],[-129.91,15.93],[-125.35,13.37],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-116.63,6.48],[-109.36,2.43],[-104.15,-0.82],[-97.31,-4.38],[-85.05,-12.99],[-81.64,-19.8],[-81.68,-53.21],[-84.32,-69.88],[-88.2,-75.16],[-102.5,-95.5],[-161.45,-109.3],[-162.92,-111.69],[-173.96,-119.87],[-189.11,-153.76],[-207.68,-172.65],[-224.88,-181.83],[-283.95,-180.96]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-294.51,-171.89],[-284,-160],[-267.08,-129.85],[-250,-109],[-249.52,-108.04],[-249,-107],[-248.02,-106.97],[-247,-107],[-246.53,-106.02],[-246,-105],[-241.15,-103.28],[-236,-102],[-230.23,-100.35],[-225,-99],[-213.1,-96.69],[-203,-93],[-201.62,-91.65],[-200,-90],[-196.39,-86.7],[-194,-83],[-192.9,-80.94],[-192,-79],[-189.4,-48.79],[-188,-17],[-185.58,-12.38],[-183,-9],[-182.5,-7.51],[-182,-6],[-177.15,-2.3],[-171,1],[-154.64,7.43],[-138,13],[-133.73,15.04],[-131,16],[-126.85,14.25],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-111,4],[-105,0],[-103,-1],[-88,-11],[-83,-16],[-82,-43],[-84,-69],[-87,-73],[-89,-78],[-161,-109],[-162,-111],[-165,-112],[-184,-144],[-205,-171],[-211,-175],[-267,-180]],"c":true}],"h":1},{"t":107,"s":[{"i":[[-298.02,-186.94],[-303.9,-182.77],[-303.28,-181.39],[-299.49,-177.01],[-293.45,-171.6],[-290.91,-168.41],[-289.63,-165.77],[-286.69,-162.45],[-283.11,-158.63],[-280.42,-154.48],[-278.57,-150.98],[-275.61,-146.01],[-272.01,-139.98],[-265.51,-126.63],[-255.53,-112.04],[-250.68,-109.49],[-250.17,-108.12],[-248.23,-106.84],[-245.29,-105.13],[-231.29,-101.12],[-209.01,-96.75],[-199.24,-89.3],[-194.11,-83.45],[-189.52,-58.89],[-190.95,-20.79],[-176.16,-1.94],[-152.52,7.2],[-138.97,12.58],[-131.03,16.08],[-128.25,15.1],[-123.53,12.24],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-114.97,6.2],[-108.69,2.08],[-100.8,-2.23],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-88.85,-10.18],[-86.95,-11.32],[-83.62,-21.82],[-81.96,-45.82],[-85.13,-70.05],[-96.45,-85.59],[-119.84,-95.1],[-130.34,-98.54],[-139.64,-99.91],[-160.48,-109.11],[-171.31,-119.14],[-174.42,-124.03],[-179.67,-133.67],[-184.96,-142.06],[-194.22,-161.86],[-202.48,-168.68],[-204.2,-170.43],[-246.23,-178.71]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-301.52,-178.96],[-295.46,-173.33],[-291.34,-169.28],[-290.05,-166.66],[-287.88,-163.64],[-284.3,-159.95],[-281.14,-155.74],[-279.14,-152.1],[-276.86,-148.03],[-273.19,-141.99],[-268.24,-132.61],[-259.15,-116.35],[-250.85,-109.93],[-250.35,-108.59],[-249.33,-107.52],[-246.21,-105.65],[-239.03,-102.24],[-216.28,-98.37],[-201.43,-91.08],[-195.58,-85.49],[-188.79,-71.74],[-190.6,-33.41],[-182.64,-6.04],[-161.1,4.68],[-142.21,11.04],[-133.38,15.1],[-129.74,15.98],[-125.15,13.23],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-117.12,6.8],[-110.95,3.76],[-104.82,-0.39],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.16,-9.8],[-87.25,-11.72],[-83.05,-14.12],[-82.69,-38.65],[-82.08,-61.5],[-91.2,-80.54],[-110.05,-92.67],[-128.69,-97.45],[-135.38,-99.93],[-152.05,-103.94],[-169.37,-116.98],[-173.48,-122.81],[-177.71,-129.53],[-183.09,-140.04],[-190.75,-152.87],[-201.47,-168.43],[-203.99,-169.61],[-223.19,-184.04],[-286.8,-181.83]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-297.48,-175.17],[-292,-170],[-290.48,-167.53],[-289,-165],[-285.49,-161.2],[-282,-157],[-279.78,-153.29],[-278,-150],[-274.4,-144],[-271,-138],[-262.33,-121.49],[-251,-110],[-250.51,-109.04],[-250,-108],[-247.22,-106.24],[-245,-105],[-223.79,-99.75],[-204,-93],[-197.41,-87.39],[-193,-81],[-190.06,-46.15],[-186,-12],[-168.63,1.37],[-145,10],[-136.18,13.84],[-130,16],[-126.7,14.16],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-113,5],[-107,1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-88,-11],[-86,-12],[-83,-33],[-82,-51],[-88,-75],[-103,-89],[-127,-97],[-132,-99],[-143,-101],[-166,-114],[-173,-122],[-175,-125],[-182,-138],[-186,-144],[-201,-168],[-203,-169],[-205,-171],[-276,-181]],"c":true}],"h":1},{"t":108,"s":[{"i":[[-298.34,-186.87],[-303.9,-182.77],[-303.28,-181.39],[-298.75,-176.05],[-291.32,-168.83],[-284.75,-160.49],[-278.77,-151.2],[-269.22,-132.4],[-257.32,-113.4],[-251.68,-110.49],[-251.17,-109.12],[-244.63,-105.46],[-232.32,-101.92],[-220.3,-99.75],[-207.93,-96.85],[-205.37,-94.51],[-204.59,-94.35],[-197.08,-87.89],[-190.51,-74.14],[-189.68,-58.46],[-191.17,-39.13],[-190.39,-26.02],[-187.93,-14.97],[-186.52,-13.36],[-186.35,-12.57],[-173.45,-0.99],[-144.74,8.38],[-133.89,13.75],[-130.44,16.02],[-128.59,15.11],[-123.47,12.21],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-115.97,6.43],[-111.6,4.58],[-107.73,1.27],[-102.52,-2.03],[-94.42,-6.71],[-84.84,-13.39],[-84.36,-27.54],[-82.45,-52.44],[-90.4,-80.83],[-100.75,-87.44],[-102.56,-89.77],[-105.57,-90.44],[-109.04,-92.62],[-120.62,-95.47],[-135.8,-100.39],[-152.5,-104.64],[-159,-109.33],[-161.54,-110.7],[-165.06,-113.38],[-173.51,-120.91],[-183.42,-139.17],[-200.13,-167.31],[-217.06,-177.44],[-256.95,-179.61]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-301.09,-178.38],[-293.87,-171.27],[-286.86,-163.39],[-280.7,-154.39],[-272.81,-140.45],[-261.47,-118.87],[-251.85,-110.93],[-251.35,-109.59],[-248.22,-107],[-236.68,-102.92],[-224.83,-100.33],[-211.84,-98.01],[-205.57,-94.59],[-204.87,-94.39],[-200.33,-91.82],[-192.17,-79.05],[-189.34,-64.64],[-190.59,-45.7],[-190.92,-30.29],[-188.89,-18.36],[-186.6,-13.58],[-186.4,-12.86],[-181.83,-5.18],[-154.9,5.79],[-135.42,12.74],[-131.4,15.39],[-130.11,16.01],[-125.27,13.22],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-117.67,7.14],[-112.93,5.15],[-109.47,2.53],[-104.25,-1.02],[-98.24,-4.76],[-87.72,-11.02],[-82.95,-19.23],[-83.68,-43.61],[-84.31,-71.13],[-98.54,-87.2],[-102.36,-88.16],[-104.4,-90.72],[-108.19,-91.47],[-115.07,-95.02],[-130.89,-98.39],[-146.48,-103.7],[-158.04,-107.54],[-160.63,-110.42],[-163.66,-112.1],[-170.43,-116.94],[-180.26,-131.98],[-193.02,-157.48],[-213.97,-176.18],[-238.45,-182.24],[-285.96,-181.84]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-296.31,-173.66],[-289,-166],[-282.73,-157.44],[-277,-148],[-265.35,-125.63],[-252,-111],[-251.51,-110.04],[-251,-109],[-240.65,-104.19],[-228,-101],[-216.07,-98.88],[-206,-95],[-205.12,-94.45],[-204,-94],[-194.62,-83.47],[-190,-70],[-190.14,-52.08],[-191,-33],[-189.64,-22.19],[-187,-14],[-186.46,-13.11],[-186,-12],[-164.18,2.4],[-137,12],[-132.65,14.57],[-130,16],[-126.93,14.16],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-114.45,5.79],[-111,4],[-105.99,0.13],[-101,-3],[-91.07,-8.87],[-84,-16],[-84,-36],[-83,-58],[-97,-86],[-102,-88],[-103,-90],[-107,-91],[-110,-93],[-126,-97],[-141,-102],[-157,-107],[-160,-110],[-162,-111],[-166,-114],[-176,-125],[-187,-146],[-209,-173],[-224,-179],[-275,-181]],"c":true}],"h":1},{"t":109,"s":[{"i":[[-296.97,-186.29],[-303.89,-182.77],[-303.32,-181.36],[-295.71,-172.97],[-285.98,-161.49],[-278.51,-149.7],[-272.16,-137.91],[-265.04,-124.8],[-256.55,-113.6],[-252.68,-111.49],[-252.17,-110.12],[-244.41,-105.98],[-229.74,-102.07],[-216.85,-99.4],[-205.29,-95.62],[-194.99,-85.03],[-190.15,-67.57],[-190.86,-44.77],[-191.07,-21.02],[-182.06,-7.39],[-167.26,1.12],[-157.2,4.4],[-148.16,6.78],[-139.51,10.71],[-130.71,15.11],[-125.93,13.78],[-119.94,9.23],[-111.69,3.93],[-103.54,-1.4],[-96.92,-5.51],[-91.65,-8.82],[-87.47,-11.69],[-85.43,-13.75],[-84.4,-19.79],[-84.22,-33.39],[-83.64,-56.47],[-88.22,-75.94],[-93.48,-81.92],[-95.01,-84.24],[-98.52,-86.73],[-101.67,-88.25],[-104.24,-90.05],[-105.48,-91.75],[-107.4,-92.47],[-109.58,-92.85],[-119.99,-96.24],[-135.69,-100.44],[-143.63,-102.88],[-147.51,-104.46],[-152.05,-105.95],[-156.74,-107.35],[-158.95,-108.82],[-160.42,-110.64],[-162.77,-111.78],[-165.42,-112.55],[-172.56,-119.5],[-180.58,-132.57],[-191.27,-152.55],[-206.75,-172.43],[-229.88,-180.52],[-259.2,-180.39]],"o":[[-303.98,-183.35],[-303.56,-181.78],[-299.21,-176.72],[-289.09,-165.35],[-280.67,-153.5],[-274.25,-141.91],[-267.51,-129.5],[-259.56,-116.85],[-252.85,-111.93],[-252.35,-110.59],[-248.79,-107.7],[-234.89,-103.16],[-220.95,-100.09],[-209.01,-97.16],[-197.92,-89.74],[-191.11,-73.94],[-189.82,-53.26],[-191.48,-28.65],[-185.93,-10.95],[-172.72,-1.35],[-159.87,3.76],[-151.35,5.91],[-142.65,8.9],[-133.54,13.81],[-127.71,14.92],[-122.04,10.94],[-114.67,5.88],[-106.12,0.29],[-98.85,-4.35],[-93.33,-7.74],[-88.51,-11.07],[-85.93,-13.03],[-84.54,-16.35],[-84.24,-28.31],[-83.53,-48],[-85.99,-70.45],[-92.98,-81.05],[-94.5,-83.52],[-97.44,-86.1],[-100.64,-87.8],[-103.75,-89.42],[-105.11,-91.21],[-106.61,-92.29],[-108.88,-92.74],[-114.89,-94.77],[-130.39,-99.08],[-142.37,-102.4],[-146.2,-103.91],[-150.43,-105.52],[-155.2,-106.86],[-158.49,-108.25],[-159.92,-110.02],[-161.81,-111.5],[-164.57,-112.3],[-169.52,-115.71],[-178.09,-127.93],[-187.15,-144.58],[-201.07,-166.47],[-221.28,-179.58],[-248.84,-180.93],[-283.51,-181.77]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-292.4,-169.16],[-283,-157],[-276.38,-145.81],[-270,-134],[-262.3,-120.83],[-253,-112],[-252.51,-111.04],[-252,-110],[-239.65,-104.57],[-225,-101],[-212.93,-98.28],[-202,-93],[-193.05,-79.48],[-190,-61],[-191.17,-36.71],[-188,-15],[-177.39,-4.37],[-162,3],[-154.27,5.16],[-145,8],[-136.52,12.26],[-129,15],[-123.99,12.36],[-118,8],[-108.9,2.11],[-101,-3],[-95.12,-6.63],[-90,-10],[-86.7,-12.36],[-85,-15],[-84.32,-24.05],[-84,-38],[-84.81,-63.46],[-92,-80],[-93.99,-82.72],[-96,-85],[-99.58,-87.26],[-103,-89],[-104.68,-90.63],[-106,-92],[-108.14,-92.6],[-110,-93],[-125.19,-97.66],[-141,-102],[-144.92,-103.4],[-149,-105],[-153.63,-106.41],[-158,-108],[-159.43,-109.42],[-161,-111],[-163.67,-112.04],[-166,-113],[-175.33,-123.72],[-183,-137],[-196.17,-159.51],[-214,-176],[-239.36,-180.73],[-270,-181]],"c":true}],"h":1},{"t":110,"s":[{"i":[[-299.02,-186.75],[-303.89,-182.77],[-303.31,-181.36],[-297.15,-174.45],[-287.02,-162.55],[-274.75,-141.29],[-260.09,-116.04],[-250.01,-109.6],[-243.43,-106.8],[-232.02,-103.67],[-219.29,-101.39],[-213.35,-99.18],[-210.92,-97.42],[-207.81,-96.25],[-204.58,-95.41],[-200.63,-92],[-196.85,-86.53],[-193.6,-79.99],[-191.29,-71.65],[-190.87,-56.62],[-192.57,-37.46],[-190.35,-21.01],[-184.2,-10.8],[-176.86,-4.75],[-169.98,-0.78],[-160.19,2.59],[-148.43,5.69],[-139.96,9.67],[-130.31,15.05],[-125.97,13.73],[-119.65,9.05],[-111.55,3.84],[-103.7,-1.3],[-96.95,-5.49],[-91.62,-8.84],[-87.41,-11.71],[-85.39,-13.73],[-85.09,-17.11],[-86.03,-24.05],[-85.77,-30.91],[-85.08,-36.99],[-84.65,-56.77],[-88.56,-76.3],[-92.43,-80.92],[-92.66,-82.6],[-96.7,-86.37],[-104.38,-90.71],[-115.67,-95.73],[-129.33,-99.77],[-137.12,-101.94],[-141.5,-103.53],[-150.11,-105.97],[-160.43,-109.49],[-162.96,-111.7],[-164.57,-112.59],[-165.64,-113.42],[-166.58,-113.67],[-180.43,-130.79],[-199.98,-166.75],[-218.13,-178.07],[-258.24,-180.32]],"o":[[-303.99,-183.34],[-303.55,-181.78],[-300.39,-177.92],[-290.47,-166.76],[-279.2,-150.77],[-265.19,-123.93],[-252.04,-110.7],[-245.7,-107.65],[-236.37,-104.47],[-223.48,-102.13],[-214.14,-99.72],[-211.74,-98.03],[-209.02,-96.55],[-205.59,-95.68],[-202.21,-93.74],[-197.95,-88.4],[-194.71,-82.66],[-191.89,-74.48],[-190.34,-62.89],[-191.99,-43.91],[-191.5,-25.36],[-186.7,-13.73],[-179.12,-6.36],[-172.29,-1.96],[-164.22,1.49],[-152.3,4.69],[-143.31,7.64],[-133.46,13.37],[-127.89,14.96],[-121.85,10.78],[-114.45,5.74],[-106.18,0.32],[-98.89,-4.33],[-93.32,-7.75],[-88.47,-11.09],[-85.87,-13.02],[-84.82,-15.58],[-85.69,-21.35],[-85.98,-28.91],[-85.32,-34.94],[-84.63,-48.37],[-86.62,-70.74],[-92.35,-80.37],[-92.58,-82.04],[-94.51,-84.77],[-101.63,-89.34],[-111.25,-94.1],[-124.7,-98.57],[-135.62,-101.43],[-140.06,-103],[-146.14,-104.97],[-157.25,-108.23],[-162.42,-111.4],[-164.03,-112.29],[-165.34,-113.33],[-166.26,-113.59],[-174.61,-119.94],[-193.58,-154.9],[-215.08,-175.86],[-238.53,-184.69],[-289.19,-182.71]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-293.81,-170.61],[-284,-158],[-269.97,-132.61],[-254,-112],[-247.86,-108.63],[-241,-106],[-227.75,-102.9],[-215,-100],[-212.55,-98.61],[-210,-97],[-206.7,-95.97],[-204,-95],[-199.29,-90.2],[-196,-85],[-192.75,-77.24],[-191,-69],[-191.43,-50.26],[-192,-31],[-188.53,-17.37],[-181,-8],[-174.57,-3.35],[-168,0],[-156.24,3.64],[-145,7],[-136.71,11.52],[-129,15],[-123.91,12.26],[-118,8],[-108.86,2.08],[-101,-3],[-95.13,-6.62],[-90,-10],[-86.64,-12.37],[-85,-15],[-85.39,-19.23],[-86,-27],[-85.55,-32.93],[-85,-39],[-85.64,-63.75],[-92,-80],[-92.5,-81.48],[-93,-83],[-99.16,-87.85],[-107,-92],[-120.18,-97.15],[-134,-101],[-138.59,-102.47],[-143,-104],[-153.68,-107.1],[-162,-111],[-163.49,-112],[-165,-113],[-165.95,-113.5],[-167,-114],[-186,-141],[-212,-174],[-221,-179],[-280,-182]],"c":true}],"h":1},{"t":111,"s":[{"i":[[-298.68,-186.82],[-303.9,-182.77],[-303.29,-181.39],[-299.34,-176.53],[-292.45,-169.01],[-286.14,-160.85],[-280.77,-152.1],[-272,-135.69],[-259.75,-116.15],[-251.06,-110.6],[-244.67,-107.89],[-239.94,-106.24],[-237.1,-105.23],[-231.15,-103.91],[-224.86,-102.39],[-220.61,-101.67],[-217.05,-101.33],[-214.41,-100.21],[-211.97,-98.44],[-208.79,-97.25],[-205.61,-96.43],[-201.05,-92.38],[-195.81,-84.87],[-191.5,-62.18],[-193.37,-27.52],[-188,-15.31],[-183.94,-10.79],[-180.01,-7.43],[-175.26,-3.64],[-168.91,-0.96],[-160.7,1.08],[-150.63,4.51],[-138.15,9.36],[-131.95,12.94],[-128.89,15.06],[-125.75,13.7],[-119.53,8.97],[-113.98,5.44],[-108.48,1.95],[-102.16,-2.15],[-94.09,-7.06],[-91.68,-8.51],[-91.18,-9.88],[-88.47,-11.31],[-85.14,-12.65],[-85.23,-14.82],[-85.94,-23.21],[-85.74,-37.45],[-84.75,-54.01],[-86.34,-67.56],[-90.61,-79.55],[-100.43,-89.76],[-143.02,-103.1],[-162.29,-111.32],[-165.15,-113.18],[-167.17,-114.35],[-185.45,-139.88],[-196.78,-158.9],[-207.21,-170.93],[-219.78,-178.3],[-259.13,-180.8]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-301.36,-178.78],[-294.88,-171.64],[-288,-163.55],[-282.53,-155.12],[-275.63,-143.11],[-264.06,-122.21],[-252.98,-111.66],[-246.91,-108.72],[-240.88,-106.63],[-238.05,-105.54],[-233.47,-104.47],[-226.84,-102.87],[-221.84,-101.75],[-218.22,-101.46],[-215.17,-100.74],[-212.81,-99.06],[-209.99,-97.54],[-206.61,-96.7],[-203.15,-94.69],[-197.38,-87.47],[-191.07,-73.91],[-192.65,-38.98],[-189.28,-17.17],[-185.33,-12.12],[-181.63,-8.86],[-176.82,-4.82],[-171.56,-1.75],[-163.48,0.46],[-154.8,3.09],[-142.3,7.65],[-133.26,11.91],[-129.77,14.51],[-127.49,14.97],[-121.77,10.71],[-115.99,6.72],[-110.22,3.06],[-104.86,-0.37],[-96.78,-5.49],[-91.84,-8.07],[-91.35,-9.41],[-89.9,-10.74],[-86.09,-12.27],[-85.01,-12.97],[-85.7,-19.94],[-86.11,-31.45],[-85.05,-48.73],[-85.29,-62.53],[-89.01,-76.07],[-96.35,-85.54],[-121.73,-100.25],[-159.72,-110.15],[-163.84,-112.8],[-166.69,-114.66],[-177.91,-122.74],[-194.47,-155.19],[-202.8,-167.3],[-217.06,-177.24],[-240.77,-183.24],[-288.92,-182.8]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-297.11,-174.09],[-290,-166],[-284.33,-157.98],[-279,-149],[-268.03,-128.95],[-255,-113],[-248.99,-109.66],[-242,-107],[-238.99,-105.89],[-236,-105],[-229,-103.39],[-223,-102],[-219.42,-101.56],[-216,-101],[-213.61,-99.64],[-211,-98],[-207.7,-96.98],[-205,-96],[-199.22,-89.92],[-195,-83],[-192.08,-50.58],[-190,-19],[-186.67,-13.72],[-183,-10],[-178.42,-6.13],[-174,-3],[-166.19,-0.25],[-158,2],[-146.46,6.08],[-135,11],[-130.86,13.73],[-128,15],[-123.76,12.2],[-118,8],[-112.1,4.25],[-107,1],[-99.47,-3.82],[-92,-8],[-91.52,-8.96],[-91,-10],[-87.28,-11.79],[-85,-13],[-85.46,-17.38],[-86,-26],[-85.39,-43.09],[-85,-58],[-87.67,-71.81],[-92,-81],[-107,-93],[-157,-109],[-163,-112],[-166,-114],[-168,-115],[-192,-151],[-199,-162],[-212,-174],[-227,-180],[-277,-182]],"c":true}],"h":1},{"t":112,"s":[{"i":[[-297.75,-186.52],[-303.9,-182.77],[-303.29,-181.39],[-298.55,-175.45],[-290.83,-166.97],[-287.31,-162.69],[-285.76,-159.17],[-284.02,-156.69],[-282.38,-154.67],[-281.31,-152.4],[-280.49,-149.86],[-279.46,-148.66],[-278.15,-148.21],[-277.57,-147.06],[-277.16,-145.31],[-275.16,-141.59],[-272.73,-137.27],[-267.27,-127.59],[-259.03,-116.01],[-255.25,-113.33],[-254.35,-112.22],[-250.51,-110.26],[-244.8,-108.62],[-223.13,-103.05],[-200.09,-93.09],[-192.53,-62.46],[-193.78,-25.69],[-182.91,-9.85],[-168.38,-1.57],[-157.05,2.17],[-147.09,4.83],[-138.41,8.93],[-129.6,14.05],[-126.52,13.66],[-124.37,11.88],[-121.03,9.94],[-117.81,8.51],[-112.42,4.87],[-105.6,-0.07],[-101.01,-2.77],[-97.32,-5.15],[-86.89,-11.24],[-86.83,-20.33],[-83.58,-64.71],[-96.09,-86.22],[-100.08,-88.32],[-103.46,-92.13],[-123.42,-99.43],[-152.98,-106.86],[-162.74,-113.18],[-167.96,-115.18],[-176.48,-123.05],[-179.06,-128.52],[-181.66,-130.55],[-182.59,-133.32],[-185.96,-139.21],[-193.23,-152.39],[-203.16,-165.75],[-217.21,-177.92],[-230.52,-181.68],[-259.83,-181.19]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-301.13,-178.46],[-293.4,-169.7],[-287.93,-163.85],[-286.22,-160.34],[-284.58,-157.36],[-282.92,-155.34],[-281.56,-153.22],[-280.77,-150.72],[-279.89,-148.8],[-278.6,-148.36],[-277.74,-147.65],[-277.28,-145.88],[-276.05,-143.21],[-273.51,-138.63],[-269.75,-132.08],[-261.91,-119.55],[-255.57,-113.72],[-254.63,-112.58],[-252.36,-110.95],[-246.73,-109.1],[-232.84,-104.5],[-206.76,-97.34],[-191.89,-74.86],[-193.48,-37.87],[-186.97,-13.31],[-173.61,-3.98],[-160.5,1.26],[-150.34,3.95],[-141.61,6.91],[-132.41,12.5],[-127.08,13.97],[-125.16,12.62],[-122.13,10.44],[-118.87,8.98],[-114.87,6.65],[-107.78,1.5],[-102.36,-1.95],[-98.49,-4.37],[-91.8,-8.72],[-85.64,-15.11],[-87.94,-44.12],[-91.45,-81.01],[-98.8,-88.74],[-102.57,-90.16],[-112.76,-97.38],[-142.48,-104.54],[-162.05,-111.54],[-165.58,-115.03],[-171.52,-117.98],[-178.92,-126.18],[-180.28,-130.43],[-182.57,-131.76],[-184.33,-136.22],[-190.03,-146.24],[-199.29,-162.48],[-214.59,-175.79],[-227.5,-180.67],[-244.95,-183.56],[-286.33,-182.7]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-295.97,-172.57],[-289,-165],[-286.77,-161.52],[-285,-158],[-283.47,-156.02],[-282,-154],[-281.04,-151.56],[-280,-149],[-279.03,-148.51],[-278,-148],[-277.43,-146.47],[-277,-145],[-274.33,-140.11],[-272,-136],[-264.59,-123.57],[-256,-114],[-254.94,-112.95],[-254,-112],[-248.62,-109.68],[-243,-108],[-214.95,-100.19],[-196,-84],[-193,-50.16],[-189,-17],[-178.26,-6.91],[-164,0],[-153.69,3.06],[-144,6],[-135.41,10.72],[-128,14],[-125.84,13.14],[-123,11],[-119.95,9.46],[-117,8],[-110.1,3.18],[-104,-1],[-99.75,-3.57],[-96,-6],[-86,-14],[-87,-24],[-90,-78],[-98,-88],[-101,-89],[-105,-93],[-133,-102],[-161,-111],[-164,-114],[-169,-116],[-178,-125],[-180,-130],[-182,-131],[-183,-134],[-187,-141],[-196,-157],[-208,-170],[-225,-180],[-233,-182],[-274,-182]],"c":true}],"h":1},{"t":113,"s":[{"i":[[-299.65,-186.71],[-303.91,-182.76],[-303.25,-181.41],[-299.5,-176.12],[-293.14,-168.78],[-284.57,-156.84],[-275.46,-141.35],[-272.28,-135.34],[-271.41,-132.7],[-270.46,-131.65],[-269.16,-131.21],[-268.57,-130.04],[-268.22,-128.35],[-264.46,-122.84],[-258.4,-115.93],[-255.15,-113.82],[-252.79,-112.45],[-250.18,-110.86],[-247.61,-109.24],[-241.79,-107.27],[-233.49,-105.48],[-224.06,-103.77],[-213.89,-101.35],[-209.48,-99.22],[-206.83,-97.57],[-203.66,-95.13],[-201.48,-92.07],[-200.49,-90.68],[-199.12,-90.19],[-198.28,-88.71],[-197.19,-86.41],[-193.03,-66.01],[-194.7,-31.86],[-191.13,-21.08],[-189.02,-17.02],[-188.58,-16.36],[-188.32,-15.41],[-173.27,-4.04],[-142.81,5.64],[-129.71,14.17],[-120.28,9.08],[-114.81,6.5],[-106.39,0.38],[-98.63,-4.29],[-86.76,-11.38],[-86.61,-19.09],[-85.16,-52.69],[-91.88,-80.17],[-96.86,-86.92],[-133.98,-102.72],[-154.07,-109.23],[-163.28,-112.28],[-169.73,-117.89],[-177.96,-126.02],[-180.87,-129.86],[-181.3,-130.91],[-195.18,-155.64],[-207.93,-170.62],[-211.64,-173.75],[-231.75,-182.25],[-269.69,-182.11]],"o":[[-304.03,-183.31],[-303.52,-181.81],[-301.42,-178.48],[-295.35,-171.27],[-287.85,-161.91],[-278.38,-146.56],[-272.57,-136.25],[-271.7,-133.57],[-270.88,-131.8],[-269.6,-131.36],[-268.71,-130.61],[-268.32,-128.91],[-266.51,-125.62],[-260.41,-117.99],[-256.01,-114.34],[-253.54,-112.88],[-251.12,-111.49],[-248.42,-109.74],[-244.54,-108.03],[-236.26,-105.99],[-227.62,-104.35],[-217.2,-102.27],[-210.32,-99.68],[-207.74,-98.16],[-204.67,-96.09],[-202.07,-93.12],[-200.92,-90.83],[-199.58,-90.36],[-198.68,-89.5],[-197.53,-87.17],[-192.93,-77.34],[-193.91,-43.27],[-191.87,-22.57],[-189.71,-18.31],[-188.67,-16.65],[-188.41,-15.74],[-182.61,-8.1],[-153.36,2.84],[-131.36,12.03],[-125.32,13.9],[-116.05,6.4],[-110.46,3.8],[-100.71,-2.9],[-91.64,-8.82],[-85.89,-14.37],[-88.76,-35.03],[-88.15,-74.34],[-96.15,-85.41],[-110.22,-99.61],[-152.69,-108.52],[-159.27,-111.29],[-168.18,-115.38],[-175.44,-123.19],[-180.04,-129.06],[-181.78,-130.82],[-188.53,-142.15],[-204.89,-167.54],[-211.32,-172.14],[-220.22,-179.7],[-255.57,-183.84],[-290.71,-183.52]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-297.43,-173.69],[-291,-166],[-281.48,-151.7],[-273,-137],[-271.99,-134.46],[-271,-132],[-270.03,-131.51],[-269,-131],[-268.45,-129.47],[-268,-128],[-262.43,-120.42],[-257,-115],[-254.34,-113.35],[-252,-112],[-249.3,-110.3],[-247,-109],[-239.02,-106.63],[-231,-105],[-220.63,-103.02],[-211,-100],[-208.61,-98.69],[-206,-97],[-202.86,-94.12],[-201,-91],[-200.04,-90.52],[-199,-90],[-197.91,-87.94],[-197,-86],[-193.47,-54.64],[-192,-23],[-190.42,-19.69],[-189,-17],[-188.49,-16.05],[-188,-15],[-163.32,-0.6],[-135,10],[-127,14],[-117,7],[-114,6],[-104,-1],[-96,-6],[-86,-14],[-87,-22],[-87,-66],[-95,-84],[-98,-88],[-151,-108],[-156,-110],[-166,-114],[-172,-120],[-180,-129],[-181,-130],[-182,-132],[-202,-164],[-211,-172],[-212,-174],[-243,-183],[-283,-183]],"c":true}],"h":1},{"t":114,"s":[{"i":[[-299.67,-186.74],[-303.91,-182.76],[-303.25,-181.41],[-301.25,-178.65],[-298.03,-175.25],[-296.22,-172.67],[-295.43,-170.54],[-293.66,-168.83],[-291.47,-167.61],[-290.37,-165.85],[-289.35,-163.49],[-281.22,-150.56],[-270.67,-131.1],[-265.26,-124.05],[-262.42,-121.56],[-261.59,-119.97],[-261.41,-118.4],[-260.43,-117.67],[-259.07,-117.05],[-255.35,-114.35],[-250.17,-110.84],[-233.37,-106.2],[-211.2,-100.91],[-206.08,-96.57],[-204.41,-96.34],[-200.92,-92.69],[-197.7,-86.71],[-194.09,-69.29],[-195.27,-40.23],[-192.37,-24.15],[-187.71,-15.76],[-181.54,-9.95],[-173.71,-5.14],[-158.6,0.45],[-140.88,6.28],[-132.3,11.34],[-127.97,14.03],[-124.5,12.73],[-118.61,8.02],[-115.97,6.57],[-114.4,6.25],[-110.33,3.5],[-105.19,-0.31],[-101.03,-2.76],[-97.33,-5.12],[-91.53,-8.79],[-86.35,-12.74],[-87.71,-18.76],[-86.89,-50.08],[-91.27,-80.53],[-101.93,-91.07],[-104.59,-93.76],[-136.73,-104.18],[-162.88,-112.39],[-171.61,-119.72],[-179.1,-126.52],[-186.36,-137.44],[-196.58,-154.63],[-200.75,-160.65],[-220.18,-181.25],[-268.36,-182.15]],"o":[[-304.03,-183.31],[-303.52,-181.81],[-302.24,-179.78],[-299.15,-176.38],[-296.5,-173.4],[-295.68,-171.24],[-294.43,-169.28],[-292.18,-168],[-290.7,-166.6],[-289.7,-164.29],[-284.88,-157.26],[-274.12,-137.48],[-266.3,-125.03],[-263.32,-122.32],[-261.64,-120.52],[-261.48,-118.91],[-260.9,-117.9],[-259.52,-117.25],[-257.01,-115.68],[-251.93,-111.93],[-241.52,-107.5],[-218.21,-102.91],[-206.62,-96.65],[-204.97,-96.42],[-202.32,-94.58],[-198.61,-88.76],[-194.2,-78.17],[-194.63,-50.31],[-193.52,-27.52],[-189.47,-18.27],[-183.94,-11.88],[-176.42,-6.58],[-164.91,-1.44],[-146.59,4.31],[-134.07,10.08],[-129.25,13.32],[-126.2,13.97],[-120.71,9.76],[-116.52,6.7],[-114.91,6.35],[-112.23,4.9],[-106.81,0.89],[-102.37,-1.95],[-98.51,-4.34],[-93.85,-7.42],[-87.77,-11.45],[-86.15,-13.45],[-88.76,-34.13],[-87.17,-69.98],[-98.07,-88.4],[-104.35,-92.16],[-117.95,-101.49],[-156.27,-110.78],[-169.69,-116.71],[-176.47,-124.36],[-184.12,-133.08],[-192.36,-147.81],[-199.14,-160.31],[-209.75,-173.27],[-251.59,-184.17],[-291.92,-183.62]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-300.2,-177.52],[-297,-174],[-295.95,-171.96],[-295,-170],[-292.92,-168.42],[-291,-167],[-290.04,-165.07],[-289,-163],[-277.67,-144.02],[-267,-126],[-264.29,-123.19],[-262,-121],[-261.54,-119.44],[-261,-118],[-259.98,-117.46],[-259,-117],[-253.64,-113.14],[-248,-110],[-225.79,-104.56],[-207,-97],[-205.52,-96.49],[-204,-96],[-199.77,-90.72],[-197,-85],[-194.36,-59.8],[-194,-31],[-190.92,-21.21],[-186,-14],[-178.98,-8.26],[-171,-4],[-152.59,2.38],[-136,9],[-130.78,12.33],[-127,14],[-122.61,11.25],[-117,7],[-115.44,6.46],[-114,6],[-108.57,2.19],[-104,-1],[-99.77,-3.55],[-96,-6],[-89.65,-10.12],[-86,-14],[-88,-23],[-87,-58],[-96,-86],[-104,-92],[-105,-94],[-151,-109],[-167,-115],[-174,-122],[-181,-129],[-189,-142],[-199,-160],[-201,-161],[-239,-183],[-282,-183]],"c":true}],"h":1},{"t":115,"s":[{"i":[[-298.72,-186.65],[-298.6,-174.92],[-286.74,-160.37],[-276.72,-142.43],[-268.51,-127.06],[-264.35,-122.42],[-260.99,-119.92],[-257.78,-116.69],[-254.89,-113.55],[-247.76,-110.11],[-235.27,-106.96],[-223.78,-104.71],[-212.27,-101.93],[-207.65,-98.89],[-205.64,-96.57],[-198.95,-88.74],[-194.41,-73.73],[-194.3,-50.48],[-194.33,-26.19],[-179.9,-8.96],[-152.61,0.46],[-141.46,4.97],[-136.56,7.07],[-134.65,8.54],[-134.22,9.84],[-133.01,10.43],[-131.39,10.69],[-129.62,12.55],[-128.28,14.01],[-124.53,12.75],[-118.59,8.01],[-115.97,6.57],[-114.4,6.25],[-110.33,3.5],[-105.19,-0.31],[-101.07,-2.73],[-97.28,-5.15],[-91.58,-8.76],[-87.4,-12.38],[-87.22,-17.01],[-88.85,-25.9],[-88.84,-40.6],[-87.66,-57.89],[-89.58,-72.64],[-94.74,-84.68],[-100.88,-90.67],[-106.87,-94.84],[-129.05,-103.54],[-160.89,-111.7],[-170.03,-117.88],[-171.3,-119.45],[-173.41,-120.79],[-175.63,-121.65],[-177.01,-123.41],[-178.43,-126.28],[-179.61,-127.65],[-180.7,-128.63],[-192.12,-146.06],[-208.6,-171.14],[-223.34,-179.76],[-261.06,-182.08]],"o":[[-301.98,-179.23],[-290.98,-165.49],[-279.71,-148.4],[-271.12,-131.76],[-265.35,-123.21],[-262.16,-120.78],[-258.84,-117.92],[-255.81,-114.51],[-251.37,-111.38],[-239.71,-107.9],[-227.64,-105.24],[-216.09,-103.05],[-208.33,-99.6],[-206.31,-97.37],[-201.49,-92.88],[-195.4,-79.17],[-193.38,-59.38],[-194.77,-33.88],[-187.34,-13.19],[-162.53,-2.14],[-142.94,4.44],[-138.27,6.29],[-134.79,8.12],[-134.36,9.4],[-133.56,10.33],[-131.92,10.61],[-129.98,11.8],[-128.77,13.65],[-126.24,14],[-120.71,9.76],[-116.52,6.7],[-114.91,6.35],[-112.23,4.9],[-106.81,0.89],[-102.43,-1.91],[-98.5,-4.35],[-93.63,-7.57],[-88.47,-11.16],[-86.8,-14.8],[-88.25,-22.56],[-89.26,-34.41],[-88.04,-52.34],[-88.46,-67.56],[-92.72,-81.2],[-98.95,-89],[-104.85,-93.6],[-118.1,-100.94],[-150.44,-108.92],[-169.63,-117.41],[-170.86,-118.9],[-172.59,-120.46],[-174.93,-121.38],[-176.55,-122.52],[-177.95,-125.29],[-179.26,-127.33],[-180.33,-128.3],[-187.32,-136.75],[-202.76,-163.26],[-220.46,-178],[-242.28,-184.82],[-289.33,-183.53]],"v":[[-304,-184],[-294.79,-170.2],[-283,-154],[-273.92,-137.1],[-266,-124],[-263.25,-121.6],[-260,-119],[-256.8,-115.6],[-254,-113],[-243.73,-109],[-231,-106],[-219.94,-103.88],[-209,-100],[-206.98,-98.13],[-205,-96],[-197.17,-83.96],[-194,-68],[-194.53,-42.18],[-191,-20],[-171.22,-5.55],[-144,4],[-139.87,5.63],[-135,8],[-134.51,8.97],[-134,10],[-132.46,10.52],[-131,11],[-129.2,13.1],[-127,14],[-122.62,11.26],[-117,7],[-115.44,6.46],[-114,6],[-108.57,2.19],[-104,-1],[-99.78,-3.54],[-96,-6],[-90.02,-9.96],[-87,-14],[-87.74,-19.78],[-89,-29],[-88.44,-46.47],[-88,-62],[-91.15,-76.92],[-97,-87],[-102.87,-92.13],[-109,-96],[-139.74,-106.23],[-169,-117],[-170.44,-118.39],[-172,-120],[-174.17,-121.09],[-176,-122],[-177.48,-124.35],[-179,-127],[-179.97,-127.97],[-181,-129],[-197.44,-154.66],[-217,-176],[-228,-181],[-279,-183]],"c":true}],"h":1},{"t":116,"s":[{"i":[[-303.2,-184.56],[-303.91,-182.76],[-303.24,-181.42],[-300.54,-177.39],[-295.02,-170.66],[-289.86,-163.6],[-285.51,-156.51],[-277.77,-142.9],[-269.46,-128],[-265.36,-123.44],[-261.96,-120.89],[-258.7,-117.62],[-255.8,-114.48],[-248,-110.91],[-234.67,-108.02],[-223.32,-105.33],[-214.07,-102.06],[-203.01,-94.72],[-195.66,-80.12],[-194.95,-55.49],[-195.17,-27.38],[-186.47,-14.5],[-174.49,-7.06],[-156.85,-0.96],[-139.87,5.01],[-131.75,10.52],[-127.23,14.05],[-124.73,12.8],[-119.11,9.07],[-117.19,7.9],[-114.68,6.43],[-110.33,3.5],[-105.19,-0.31],[-101.04,-2.75],[-97.3,-5.14],[-91.62,-8.75],[-87.36,-12.43],[-87.27,-15.55],[-88.71,-20.32],[-89.78,-36.81],[-88.14,-60.11],[-90.64,-74.69],[-95.32,-84.2],[-97.42,-86.92],[-97.66,-88.62],[-102.58,-92.39],[-122.36,-102.18],[-165.15,-112.65],[-180.98,-128.16],[-189.24,-141.21],[-190.3,-142.91],[-193.37,-145.95],[-194.27,-149.71],[-197.41,-153.04],[-197.76,-155.47],[-199.75,-156.62],[-201.23,-159.91],[-209.75,-171.09],[-214.64,-174.75],[-234.77,-183.25],[-286.4,-184.93]],"o":[[-304.04,-183.3],[-303.51,-181.82],[-302.03,-179.31],[-297.03,-173.06],[-291.36,-165.84],[-286.94,-158.93],[-280.79,-148.65],[-272.11,-132.58],[-266.38,-124.24],[-263.15,-121.77],[-259.8,-118.88],[-256.7,-115.42],[-251.92,-112.15],[-239.38,-108.84],[-226.79,-106.3],[-216.96,-103.21],[-206.93,-98.41],[-197.38,-85.57],[-194.11,-65.8],[-195.48,-36.28],[-189.48,-17.72],[-178.98,-9.17],[-162.91,-2.71],[-145.33,2.9],[-133.39,8.99],[-128.67,13.05],[-126.43,14.02],[-121.08,10.33],[-118.1,8.44],[-115.48,6.9],[-112.23,4.9],[-106.81,0.89],[-102.39,-1.93],[-98.49,-4.36],[-93.69,-7.53],[-88.45,-11.2],[-86.91,-14.39],[-88.17,-18.52],[-90.2,-29],[-88.75,-52.36],[-89.48,-70.84],[-93.56,-81.37],[-97.34,-86.36],[-97.58,-88.05],[-99.29,-90.44],[-113.11,-99.4],[-146.51,-108.57],[-177.86,-124.55],[-186.43,-136.08],[-190.78,-142.82],[-191.59,-144.92],[-194.78,-148.3],[-195.6,-152.05],[-198.3,-154.49],[-198.15,-156.33],[-200.72,-158.12],[-205.8,-166.4],[-214.32,-173.14],[-223.15,-180.65],[-264.6,-185.25],[-302.38,-185.01]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-298.79,-175.23],[-293,-168],[-288.4,-161.26],[-284,-154],[-274.94,-137.74],[-267,-125],[-264.25,-122.6],[-261,-120],[-257.7,-116.52],[-255,-114],[-243.69,-109.88],[-230,-107],[-220.14,-104.27],[-212,-101],[-200.19,-90.14],[-195,-74],[-195.21,-45.88],[-192,-22],[-182.72,-11.84],[-169,-5],[-151.09,0.97],[-135,8],[-130.21,11.78],[-126,14],[-122.91,11.57],[-119,9],[-116.34,7.4],[-114,6],[-108.57,2.19],[-104,-1],[-99.76,-3.55],[-96,-6],[-90.04,-9.97],[-87,-14],[-87.72,-17.04],[-89,-22],[-89.26,-44.58],[-89,-67],[-92.1,-78.03],[-97,-86],[-97.5,-87.49],[-98,-89],[-105,-94],[-133,-105],[-173,-120],[-185,-134],[-190,-142],[-191,-144],[-194,-147],[-195,-151],[-198,-154],[-198,-156],[-200,-157],[-202,-161],[-214,-173],[-215,-175],[-246,-184],[-301,-185]],"c":true}],"h":1},{"t":117,"s":[{"i":[[-298.46,-185.99],[-303.91,-182.76],[-303.23,-181.42],[-298.19,-173.9],[-289.95,-164.1],[-287.25,-159.36],[-286.47,-156.77],[-285.45,-155.65],[-284.17,-155.22],[-283.57,-154.04],[-283.22,-152.35],[-281.16,-148.93],[-278.79,-144.49],[-275.48,-138.42],[-271.54,-132.2],[-268.12,-127.23],[-265.13,-123.16],[-254.87,-114.66],[-237.4,-108.71],[-221.88,-105.33],[-210.09,-101.48],[-203.16,-95.13],[-198.82,-87.48],[-195.42,-62.93],[-195.93,-28.28],[-190.78,-19.79],[-190.03,-19.03],[-187.11,-16.1],[-182.18,-12.28],[-166.1,-4.71],[-143.37,2.89],[-137.03,6.36],[-135.5,6.68],[-131.99,9.72],[-127.46,14.03],[-124.69,12.78],[-119.06,9.04],[-117.19,7.9],[-114.68,6.43],[-113.37,5.42],[-112.33,4.21],[-104.46,-0.57],[-92.96,-7.78],[-87.31,-12.24],[-88.29,-15.87],[-87.09,-69.6],[-95.47,-85.26],[-106.84,-96.5],[-144.61,-108.18],[-164.38,-114.63],[-167.62,-117.71],[-170.27,-118.52],[-172.21,-120.4],[-175.2,-121.33],[-183.04,-129.79],[-192.87,-145.27],[-196.76,-150.59],[-198.22,-153.75],[-210.91,-171.46],[-220.83,-178.43],[-254.31,-184]],"o":[[-304.04,-183.3],[-303.51,-181.82],[-300.96,-177.35],[-292.68,-167.28],[-287.52,-160.23],[-286.73,-157.63],[-285.87,-155.79],[-284.6,-155.37],[-283.71,-154.61],[-283.32,-152.91],[-282.02,-150.43],[-279.55,-145.95],[-276.71,-140.57],[-272.9,-134.24],[-269.05,-128.65],[-266.16,-124.49],[-259.68,-117.55],[-243.73,-110.24],[-226.08,-106.09],[-213.88,-103.03],[-204.99,-97.39],[-200.07,-90.18],[-194.7,-75.04],[-196.03,-39.56],[-191.02,-20.03],[-190.29,-19.29],[-188.52,-17.46],[-183.94,-13.51],[-173.91,-7.41],[-150.83,0.44],[-137.53,6.27],[-136.02,6.57],[-133.51,7.95],[-128.97,12.76],[-126.41,14.01],[-121.01,10.29],[-118.1,8.44],[-115.48,6.9],[-113.7,5.81],[-112.68,4.61],[-108.48,1.82],[-96.7,-5.37],[-87.92,-11.56],[-87.5,-14.4],[-93.53,-39.07],[-94.33,-83.64],[-99.56,-90.96],[-125.48,-105.54],[-161.33,-114.2],[-167.36,-116.19],[-168.8,-118.6],[-171.96,-119.63],[-173.79,-121.6],[-179.39,-124.84],[-189.73,-139.29],[-195.16,-150.35],[-197.69,-152.19],[-204.53,-163.89],[-219.69,-177.09],[-232.97,-184.31],[-286.31,-184]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-295.43,-170.59],[-288,-161],[-286.99,-158.5],[-286,-156],[-285.03,-155.51],[-284,-155],[-283.45,-153.47],[-283,-152],[-280.35,-147.44],[-278,-143],[-274.19,-136.33],[-270,-130],[-267.14,-125.86],[-264,-122],[-249.3,-112.45],[-230,-107],[-217.88,-104.18],[-207,-99],[-201.61,-92.66],[-198,-85],[-195.73,-51.24],[-191,-20],[-190.53,-19.54],[-190,-19],[-185.52,-14.81],[-180,-11],[-158.46,-2.14],[-138,6],[-136.52,6.46],[-135,7],[-130.48,11.24],[-126,14],[-122.85,11.54],[-119,9],[-116.34,7.4],[-114,6],[-113.02,5.01],[-112,4],[-100.58,-2.97],[-90,-10],[-87.41,-13.32],[-89,-19],[-94,-83],[-96,-86],[-112,-99],[-158,-113],[-167,-116],[-168,-118],[-171,-119],[-173,-121],[-176,-122],[-186,-134],[-195,-150],[-197,-151],[-199,-155],[-218,-176],[-222,-179],[-272,-184]],"c":true}],"h":1},{"t":118,"s":[{"i":[[-298.35,-186.2],[-303.91,-182.76],[-303.23,-181.42],[-301.62,-178.87],[-299.56,-176.6],[-298.55,-175.08],[-298.34,-173.45],[-297.43,-172.63],[-296.2,-172.22],[-295.55,-171.08],[-295.34,-169.45],[-294.43,-168.63],[-293.2,-168.22],[-292.54,-167.09],[-292.34,-165.48],[-291.43,-164.64],[-290.18,-164.24],[-289.57,-163.02],[-289.26,-161.37],[-284.3,-153.69],[-278.07,-142.52],[-274.87,-137.33],[-273.34,-135.53],[-272.25,-133.31],[-271.45,-130.63],[-268.85,-127.47],[-265.11,-124.11],[-261.45,-120.21],[-258.19,-116.72],[-242.28,-110.54],[-217.01,-105.66],[-209.58,-100.83],[-207.61,-98.55],[-205.42,-96.62],[-203.55,-94.74],[-196.33,-72.39],[-196.96,-32.14],[-186.82,-15.38],[-173.85,-8.87],[-162.66,-4.57],[-153.08,-1.06],[-145.55,1.64],[-140.88,3.96],[-135.43,5.97],[-128.89,14.01],[-119.11,9.07],[-115.36,6.85],[-112.67,4.41],[-95.92,-5.57],[-87.22,-11.32],[-88.16,-16.82],[-89.76,-45.48],[-93.07,-78.73],[-97.63,-88.53],[-131.82,-105.97],[-167.06,-116.64],[-190.79,-140.14],[-210.23,-170.53],[-222.87,-178.43],[-229.62,-181.61],[-255.36,-184]],"o":[[-304.04,-183.3],[-303.51,-181.82],[-302.34,-179.82],[-300.23,-177.26],[-298.63,-175.61],[-298.41,-174],[-297.83,-172.77],[-296.62,-172.36],[-295.63,-171.61],[-295.41,-170],[-294.83,-168.77],[-293.62,-168.35],[-292.62,-167.6],[-292.4,-166.03],[-291.84,-164.77],[-290.6,-164.38],[-289.69,-163.59],[-289.35,-161.92],[-286.51,-157.43],[-280.08,-146.24],[-275.45,-138.06],[-273.81,-136.06],[-272.52,-134.25],[-271.71,-131.5],[-270.04,-128.67],[-266.38,-125.19],[-262.6,-121.6],[-259.24,-117.77],[-250.78,-112.21],[-225.4,-107.26],[-210.27,-101.56],[-208.25,-99.33],[-206.15,-97.25],[-204.12,-95.36],[-196.6,-85.32],[-196.51,-45.81],[-190.14,-18.2],[-178.67,-10.72],[-165.87,-5.79],[-156.26,-2.21],[-147.36,0.91],[-142.31,3.16],[-137.55,5.81],[-130.86,9.27],[-126.84,14],[-117.2,7.88],[-113.4,5.63],[-104.97,-0.35],[-89.38,-10.46],[-87.02,-11.93],[-92.18,-32.02],[-90.21,-70.46],[-97.11,-85.99],[-107.71,-101.58],[-158.69,-113.84],[-183.53,-128.73],[-203.72,-161.41],[-221.54,-178.49],[-228.64,-180.62],[-242.32,-185.21],[-285.79,-184]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-300.93,-178.07],[-299,-176],[-298.48,-174.54],[-298,-173],[-297.02,-172.49],[-296,-172],[-295.48,-170.54],[-295,-169],[-294.02,-168.49],[-293,-168],[-292.47,-166.56],[-292,-165],[-291.02,-164.51],[-290,-164],[-289.46,-162.47],[-289,-161],[-282.19,-149.96],[-276,-139],[-274.34,-136.69],[-273,-135],[-271.98,-132.41],[-271,-130],[-267.61,-126.33],[-264,-123],[-260.34,-118.99],[-257,-116],[-233.84,-108.9],[-211,-102],[-208.92,-100.08],[-207,-98],[-204.77,-95.99],[-203,-94],[-196.42,-59.1],[-192,-22],[-182.75,-13.05],[-169,-7],[-159.46,-3.39],[-150,0],[-143.93,2.4],[-139,5],[-134,7],[-126,14],[-119,9],[-114,6],[-112,4],[-90,-10],[-87,-12],[-89,-20],[-90,-59],[-96,-84],[-98,-89],[-149,-111],[-173,-121],[-198,-152],[-218,-176],[-227,-180],[-231,-182],[-271,-184]],"c":true}],"h":1},{"t":119,"s":[{"i":[[-298.77,-186.67],[-303.92,-182.76],[-303.21,-181.43],[-299.88,-175.94],[-293.87,-168.66],[-285.37,-155.18],[-276.26,-137.87],[-268.59,-127.02],[-261.13,-119.96],[-258.68,-118.48],[-258.21,-117.12],[-242.33,-111.42],[-215.56,-105.16],[-208.97,-100.33],[-207.46,-99.42],[-197.8,-82.98],[-198.55,-49.51],[-195.66,-30.85],[-192.02,-22.36],[-189.03,-18.6],[-186.17,-16.53],[-184.68,-15.49],[-184.18,-14.12],[-171.62,-7.83],[-150.24,-1.83],[-141.59,2.26],[-137.72,4.58],[-132.69,8.3],[-126.78,13.06],[-122.69,11.83],[-118.35,8.2],[-117.03,7.64],[-115.51,7.32],[-113.56,5.73],[-111.66,3.43],[-109.99,2.57],[-108.38,2.22],[-107.2,1.34],[-106.39,0.26],[-99.35,-3.71],[-87.4,-11.19],[-87.39,-13.18],[-88.65,-15.97],[-91.67,-33.12],[-90.17,-58.99],[-92.32,-74.12],[-95.97,-84.23],[-100.69,-91.39],[-108.69,-98.28],[-117.99,-102.76],[-127.84,-106.09],[-144.99,-110.35],[-165.45,-115.82],[-171.96,-119.96],[-174.15,-121.18],[-176.17,-122.35],[-190.6,-139.22],[-209.43,-170.59],[-217.62,-175.75],[-220.96,-177.42],[-256.24,-183.93]],"o":[[-304.06,-183.29],[-303.49,-181.82],[-301.7,-178.35],[-295.96,-171.09],[-288.49,-160.99],[-279.25,-143.62],[-271.02,-130.04],[-263.64,-121.98],[-258.82,-118.92],[-258.37,-117.58],[-251.55,-113.34],[-224.34,-107.33],[-209.49,-100.62],[-207.96,-99.73],[-199.53,-92.23],[-197.31,-61.63],[-196.65,-34.17],[-193.34,-24.95],[-189.94,-19.59],[-187.14,-17.07],[-184.84,-15.93],[-184.35,-14.59],[-178.5,-10.16],[-157.49,-3.67],[-142.98,1.46],[-138.96,3.82],[-134.8,6.27],[-128.69,11.7],[-124.27,12.98],[-119.73,9.44],[-117.53,7.73],[-116.02,7.43],[-114.23,6.52],[-112.27,4.18],[-110.55,2.71],[-108.91,2.33],[-107.5,1.71],[-106.64,0.61],[-103.9,-1.37],[-91.1,-8.62],[-87.07,-12.69],[-88.19,-14.82],[-91.58,-24.63],[-90.96,-50.3],[-91.34,-70.26],[-94.64,-81.1],[-98.59,-88.75],[-105.74,-96.15],[-114.82,-101.47],[-124.5,-105.08],[-137.76,-108.94],[-158.83,-113.79],[-170.91,-118.95],[-172.84,-120.8],[-175.69,-122.66],[-184.68,-129],[-202.54,-158.62],[-217.33,-174.15],[-219.16,-176.75],[-236.92,-186.31],[-286.92,-184.03]],"v":[[-304,-184],[-303.7,-182.29],[-303,-181],[-297.92,-173.51],[-292,-166],[-282.31,-149.4],[-273,-133],[-266.11,-124.5],[-259,-119],[-258.52,-118.03],[-258,-117],[-233.33,-109.38],[-210,-101],[-208.46,-100.03],[-207,-99],[-197.56,-72.31],[-197,-37],[-194.5,-27.9],[-191,-21],[-188.08,-17.83],[-185,-16],[-184.51,-15.04],[-184,-14],[-164.55,-5.75],[-144,1],[-140.27,3.04],[-137,5],[-130.69,10],[-125,13],[-121.21,10.63],[-118,8],[-116.53,7.54],[-115,7],[-112.92,4.96],[-111,3],[-109.45,2.45],[-108,2],[-106.92,0.97],[-106,0],[-95.22,-6.17],[-87,-13],[-87.79,-14],[-89,-17],[-91.31,-41.71],[-91,-67],[-93.48,-77.61],[-97,-86],[-103.21,-93.77],[-112,-100],[-121.25,-103.92],[-131,-107],[-151.91,-112.07],[-171,-119],[-172,-120],[-175,-122],[-177,-123],[-196,-148],[-217,-174],[-218,-176],[-222,-178],[-277,-184]],"c":true}],"h":1},{"t":120,"s":[{"i":[[-284.45,-185.09],[-303.35,-181.13],[-301.86,-178.09],[-294.47,-168.3],[-285.75,-154.77],[-275.87,-137.36],[-264.27,-121.93],[-259.68,-119.49],[-259.19,-118.12],[-256,-116.57],[-249.99,-114.71],[-240.17,-111.69],[-228.18,-109.16],[-219.61,-106.57],[-212.6,-103.58],[-211.36,-102.58],[-210.41,-102.32],[-199.54,-87.92],[-198.14,-58.62],[-197.82,-40.87],[-196.23,-29.95],[-190.27,-19.65],[-178.81,-12.15],[-174.44,-10.49],[-173.26,-9.1],[-164.9,-6.49],[-152.85,-3.31],[-149.23,-1.72],[-147.67,-1.26],[-144.63,0.26],[-141.44,2.67],[-140.04,3.43],[-138.35,3.78],[-133.44,7.69],[-126.9,13.03],[-123.32,11.81],[-118.22,8.13],[-117.03,7.64],[-115.51,7.32],[-113.52,5.7],[-111.64,3.41],[-109.99,2.57],[-108.38,2.22],[-107.2,1.34],[-106.39,0.26],[-87.72,-9.46],[-89.37,-17.95],[-90.12,-53.19],[-97.34,-87.34],[-109.08,-99.07],[-162.19,-111.07],[-177.13,-123.31],[-184.53,-130.29],[-186.97,-134.68],[-191.55,-139.86],[-194.23,-144.85],[-197.29,-147.87],[-198.28,-151.73],[-201.2,-154.75],[-213.88,-172.43],[-223.77,-179.4]],"o":[[-303.67,-182.33],[-302.44,-179.01],[-297.6,-172.66],[-288.55,-159.35],[-279.48,-143.89],[-268.26,-126.37],[-259.83,-119.92],[-259.36,-118.58],[-257.76,-117.21],[-252.11,-115.31],[-244.08,-112.61],[-232.22,-109.96],[-222.31,-107.53],[-214.76,-104.59],[-211.65,-102.67],[-210.74,-102.41],[-202.47,-96.12],[-197.38,-69.18],[-197.95,-44.65],[-196.96,-33.52],[-193.36,-23.08],[-182.99,-14.19],[-174.81,-10.94],[-173.66,-9.57],[-169.23,-7.59],[-156.71,-4.36],[-149.64,-1.84],[-148.24,-1.43],[-145.91,-0.57],[-142.39,1.89],[-140.61,3.29],[-138.91,3.68],[-135.74,5.42],[-129.02,11.49],[-124.96,13],[-119.95,9.38],[-117.53,7.73],[-116.02,7.43],[-114.2,6.5],[-112.24,4.16],[-110.55,2.71],[-108.91,2.33],[-107.5,1.71],[-106.64,0.61],[-101.85,-2.71],[-87.28,-11.63],[-94.08,-33.18],[-93.35,-82.09],[-106.55,-96.55],[-130.78,-109.75],[-175.78,-123.72],[-180.5,-125.97],[-187.04,-133.21],[-189.57,-138.02],[-193.9,-143.33],[-195.82,-147.23],[-198.79,-150.26],[-199.76,-154.35],[-207.56,-164.73],[-222.28,-177.82],[-240.94,-187.71]],"v":[[-304,-184],[-302.89,-180.07],[-301,-177],[-291.51,-163.83],[-283,-150],[-272.07,-131.87],[-260,-120],[-259.52,-119.03],[-259,-118],[-254.06,-115.94],[-248,-114],[-236.2,-110.83],[-224,-108],[-217.18,-105.58],[-212,-103],[-211.05,-102.49],[-210,-102],[-198.46,-78.55],[-198,-48],[-197.39,-37.2],[-195,-27],[-186.63,-16.92],[-175,-11],[-174.05,-10.03],[-173,-9],[-160.81,-5.43],[-150,-2],[-148.74,-1.57],[-147,-1],[-143.51,1.07],[-141,3],[-139.47,3.55],[-138,4],[-131.23,9.59],[-125,13],[-121.63,10.59],[-118,8],[-116.53,7.54],[-115,7],[-112.88,4.93],[-111,3],[-109.45,2.45],[-108,2],[-106.92,0.97],[-106,0],[-87,-13],[-90,-20],[-92,-70],[-103,-93],[-113,-101],[-175,-123],[-178,-124],[-186,-132],[-188,-136],[-193,-142],[-195,-146],[-198,-149],[-199,-153],[-202,-156],[-221,-177],[-225,-180]],"c":true}],"h":1},{"t":121,"s":[{"i":[[-287.1,-185.2],[-303.91,-182.76],[-303.23,-181.42],[-299.96,-175.97],[-294.82,-168.69],[-288.03,-158.37],[-281.07,-146.65],[-273.98,-134.2],[-264.64,-122.64],[-260.68,-120.49],[-260.18,-119.12],[-259.4,-118.9],[-258.25,-119.11],[-257.68,-118.48],[-257.21,-117.11],[-255.59,-116.36],[-252.66,-115.24],[-241.19,-111.96],[-223.97,-108.5],[-218.44,-106.5],[-217.24,-105.11],[-210.77,-101.87],[-204.53,-95.82],[-200.54,-87.58],[-198.3,-78.18],[-197.97,-57.57],[-197.91,-31.93],[-189.05,-19.11],[-175.9,-11.22],[-156.66,-4.62],[-138.65,2.25],[-130.78,9.4],[-127.11,13.04],[-122.71,11.83],[-118.33,8.19],[-117.03,7.64],[-115.51,7.32],[-113.52,5.7],[-111.64,3.41],[-109.99,2.57],[-108.38,2.22],[-107.2,1.34],[-106.39,0.26],[-99.37,-3.71],[-87.32,-11.27],[-87.81,-14.35],[-90.66,-18.98],[-93.48,-40.59],[-92.58,-75.5],[-111.85,-101.19],[-152.78,-112.92],[-172.39,-120.31],[-179.37,-126.51],[-189.37,-135.79],[-195.65,-144.92],[-198.16,-150.69],[-203.27,-156.55],[-206.19,-161.88],[-212.68,-168.9],[-219.78,-176.6],[-229.02,-180.74]],"o":[[-304.05,-183.3],[-303.5,-181.82],[-301.56,-178.38],[-296.59,-171.13],[-290.49,-162.29],[-283.31,-150.54],[-276.66,-138.87],[-267.97,-126.08],[-260.84,-120.93],[-260.35,-119.59],[-259.77,-118.85],[-258.64,-119.04],[-257.82,-118.92],[-257.38,-117.57],[-256.51,-116.74],[-253.67,-115.61],[-246.95,-113.21],[-229.69,-109.6],[-218.82,-106.94],[-217.65,-105.58],[-213.5,-103.46],[-206.28,-98.05],[-201.64,-90.49],[-198.86,-81.42],[-197.26,-67.1],[-198.29,-39.98],[-192.35,-22.5],[-180.83,-13.47],[-163.33,-6.5],[-144.32,-0.25],[-131.97,7.63],[-128.35,12.11],[-124.29,12.99],[-119.73,9.44],[-117.53,7.73],[-116.02,7.43],[-114.2,6.5],[-112.24,4.16],[-110.55,2.71],[-108.91,2.33],[-107.5,1.71],[-106.64,0.61],[-103.96,-1.33],[-91.05,-8.69],[-86.98,-13.11],[-89.65,-17.29],[-93.94,-28.84],[-92.8,-63.92],[-100.31,-94.7],[-136.25,-110.35],[-168.41,-119.42],[-177.53,-123.64],[-186.3,-133.06],[-193.86,-142.98],[-197.93,-148.43],[-200.59,-154.48],[-205.74,-160.05],[-209.96,-167.13],[-218.04,-173.9],[-224.39,-179.51],[-248.74,-186.99]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-298.28,-173.55],[-293,-166],[-285.67,-154.46],[-279,-143],[-270.98,-130.14],[-261,-121],[-260.52,-120.04],[-260,-119],[-259.02,-118.97],[-258,-119],[-257.53,-118.02],[-257,-117],[-254.63,-115.98],[-252,-115],[-235.44,-110.78],[-219,-107],[-218.05,-106.04],[-217,-105],[-208.53,-99.96],[-203,-93],[-199.7,-84.5],[-198,-75],[-198.13,-48.77],[-195,-27],[-184.94,-16.29],[-170,-9],[-150.49,-2.44],[-134,6],[-129.57,10.75],[-125,13],[-121.22,10.63],[-118,8],[-116.53,7.54],[-115,7],[-112.88,4.93],[-111,3],[-109.45,2.45],[-108,2],[-106.92,0.97],[-106,0],[-95.21,-6.2],[-87,-13],[-88.73,-15.82],[-91,-20],[-93.14,-52.26],[-96,-84],[-122,-105],[-165,-118],[-175,-122],[-182,-129],[-192,-140],[-197,-147],[-199,-152],[-205,-159],[-207,-163],[-216,-172],[-222,-178],[-233,-182]],"c":true}],"h":1},{"t":122,"s":[{"i":[[-264.96,-185],[-276.89,-185.17],[-303.21,-185.03],[-303.97,-180.8],[-300.05,-176.08],[-297.1,-171.86],[-292.76,-166.16],[-291.2,-163.31],[-290.43,-160.73],[-288.88,-158.64],[-287.23,-157.41],[-285.65,-154.14],[-283.52,-148.92],[-282.01,-146.82],[-280.34,-145.59],[-278.58,-141.94],[-276.86,-137.32],[-274.39,-133.89],[-271.09,-130.29],[-266.8,-125.39],[-261.91,-121.22],[-247.77,-114.5],[-226.31,-109.91],[-219.44,-107.5],[-218.24,-106.11],[-215.93,-105.34],[-212.71,-104.5],[-207.98,-100.25],[-202.69,-92.63],[-199.18,-79.99],[-199.13,-60.53],[-198.94,-45.65],[-198.04,-34.07],[-194.74,-28.33],[-192.65,-22.8],[-185.18,-17.26],[-144.5,-3.69],[-128.6,12.79],[-119.39,9.12],[-107.13,0.81],[-101.99,-1.36],[-98.59,-4.95],[-94.78,-6.51],[-92.64,-8.56],[-88.09,-12.04],[-92.88,-46.77],[-99.08,-92.39],[-112.36,-100.6],[-119.57,-105.05],[-163.18,-114.15],[-184.57,-129.81],[-193.64,-141.56],[-198.69,-148.93],[-201.7,-155.09],[-206.54,-160.07],[-208.4,-164.23],[-211.32,-166.15],[-211.79,-168.53],[-217.33,-173.59],[-219.2,-175.43],[-247.68,-186.85]],"o":[[-267.53,-184.91],[-294.73,-185.23],[-304.95,-182.76],[-301.53,-177.46],[-298.72,-174.02],[-294.12,-167.93],[-291.48,-164.2],[-290.67,-161.58],[-289.52,-159.19],[-287.74,-157.75],[-286.38,-155.93],[-284.22,-150.63],[-282.59,-147.27],[-280.89,-145.98],[-279.15,-143.53],[-277.44,-138.83],[-275.34,-134.99],[-272.26,-131.54],[-268.34,-127.03],[-263.58,-122.49],[-254.62,-116.55],[-233.62,-111.18],[-219.82,-107.94],[-218.65,-106.58],[-217.07,-105.59],[-213.74,-104.79],[-210.13,-102.68],[-204.26,-95.23],[-199.87,-85.97],[-198.81,-67.27],[-198.92,-49.87],[-198.5,-37.75],[-196.6,-29.81],[-193.07,-25.33],[-189.51,-18.96],[-165.2,-6.47],[-130.04,9.75],[-124.69,13.1],[-110.95,3.85],[-103.07,-1.54],[-99.55,-2.93],[-96.08,-6.6],[-93.4,-7.37],[-85.03,-13.75],[-95.92,-30.77],[-93.15,-78.32],[-109.57,-100.17],[-117.37,-103.26],[-138.16,-112.31],[-180.37,-127.02],[-191.21,-137.92],[-197.54,-147.26],[-201.2,-152.89],[-204.31,-158.92],[-208.66,-162.87],[-209.66,-165.84],[-212.32,-167.39],[-212.79,-170.76],[-218.99,-174.61],[-229.83,-183.04],[-263.75,-185.96]],"v":[[-265,-185],[-285.81,-185.2],[-304,-184],[-302.75,-179.13],[-300,-176],[-295.61,-169.89],[-292,-165],[-290.94,-162.45],[-290,-160],[-288.31,-158.2],[-287,-157],[-284.93,-152.38],[-283,-148],[-281.45,-146.4],[-280,-145],[-278.01,-140.39],[-276,-136],[-273.32,-132.71],[-270,-129],[-265.19,-123.94],[-260,-120],[-240.7,-112.84],[-220,-108],[-219.05,-107.04],[-218,-106],[-214.83,-105.07],[-212,-104],[-206.12,-97.74],[-202,-91],[-199,-73.63],[-199,-54],[-198.72,-41.7],[-197,-31],[-194,-27],[-192,-22],[-181,-15],[-133,7],[-126,13],[-116,7],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-92,-9],[-91,-19],[-93,-61],[-108,-99],[-115,-102],[-122,-106],[-175,-123],[-188,-134],[-196,-145],[-200,-151],[-203,-157],[-208,-162],[-209,-165],[-212,-167],[-212,-169],[-218,-174],[-220,-176],[-263,-186]],"c":true}],"h":1},{"t":123,"s":[{"i":[[-297.45,-186.25],[-300.91,-184.98],[-302.85,-185.2],[-303.39,-180.36],[-297.95,-173.02],[-296.54,-171.09],[-296.33,-169.49],[-294.88,-167.72],[-293.3,-166.46],[-290.99,-162.86],[-288.77,-159.25],[-287.56,-156.87],[-286.71,-154.22],[-283.56,-149.04],[-279.94,-143.56],[-277.22,-139.02],[-274.92,-135.32],[-270.01,-128.7],[-263.47,-122.58],[-253.85,-117.18],[-240.86,-113.13],[-221.75,-108.56],[-207.06,-99.76],[-199.15,-76.23],[-200.43,-46.72],[-196.99,-30.87],[-190.59,-21.09],[-175.53,-12.55],[-150.11,-4.8],[-141.86,-0.45],[-139.76,0.54],[-134.38,5.33],[-126.94,13.93],[-123.79,12.12],[-114.52,6.32],[-110.2,3.42],[-105.13,-0.34],[-103.03,-1.36],[-101.5,-1.68],[-99.64,-3.23],[-97.72,-5.53],[-95.99,-6.43],[-94.39,-6.76],[-91.19,-8.81],[-87.13,-12.22],[-87.31,-14.12],[-89.42,-14.9],[-90.85,-20.61],[-93.68,-27.36],[-90.81,-69.21],[-101,-91.54],[-105.28,-96.05],[-109.71,-100.18],[-140.88,-111.73],[-168.89,-119.26],[-178.63,-125.95],[-182.2,-127.33],[-208.63,-169.97],[-222.58,-177.77],[-233.92,-183.32],[-267.02,-185.47]],"o":[[-300.24,-184.88],[-302.22,-185.14],[-304.41,-183.1],[-300.16,-175.32],[-296.62,-171.59],[-296.39,-170.04],[-295.48,-168.24],[-293.79,-166.83],[-291.86,-164.24],[-289.45,-160.37],[-287.7,-157.52],[-287.06,-155.23],[-284.84,-151.01],[-281.1,-145.31],[-278.01,-140.36],[-275.68,-136.5],[-272.02,-131.15],[-265.73,-124.41],[-257.67,-118.86],[-245.44,-114.32],[-228.22,-110.18],[-211.17,-103.35],[-199.68,-85.87],[-199.52,-56.65],[-198.44,-34.58],[-193.06,-24.13],[-183.22,-15.15],[-158.97,-7.38],[-142.48,-0.72],[-140.5,0.18],[-137.16,2.12],[-129.27,11.24],[-126.53,13.96],[-117.78,8.3],[-112.14,4.84],[-106.7,0.83],[-103.53,-1.27],[-102.01,-1.56],[-100.27,-2.47],[-98.36,-4.76],[-96.54,-6.3],[-94.91,-6.66],[-92.88,-7.7],[-88.32,-11.07],[-86.85,-13.92],[-88.59,-14.61],[-91.12,-18.11],[-92.19,-24.09],[-96.01,-46.41],[-97.71,-86.81],[-103.98,-95.9],[-109.29,-98.92],[-123.67,-109.02],[-162.16,-117.74],[-176.34,-123.25],[-180.79,-127.6],[-195.59,-138.52],[-222.35,-176.16],[-227.01,-180.23],[-250.72,-187.03],[-288.27,-184.8]],"v":[[-300,-185],[-301.57,-185.06],[-303,-185],[-301.77,-177.84],[-297,-172],[-296.46,-170.56],[-296,-169],[-294.34,-167.27],[-293,-166],[-290.22,-161.62],[-288,-158],[-287.31,-156.05],[-286,-153],[-282.33,-147.18],[-279,-142],[-276.45,-137.76],[-274,-134],[-267.87,-126.55],[-261,-121],[-249.64,-115.75],[-236,-112],[-216.46,-105.95],[-204,-94],[-199.33,-66.44],[-199,-38],[-195.02,-27.5],[-188,-19],[-167.25,-9.96],[-143,-1],[-141.18,-0.14],[-139,1],[-131.83,8.29],[-126,14],[-120.78,10.21],[-114,6],[-108.45,2.12],[-104,-1],[-102.52,-1.46],[-101,-2],[-99,-3.99],[-97,-6],[-95.45,-6.54],[-94,-7],[-89.76,-9.94],[-87,-13],[-87.95,-14.36],[-90,-16],[-91,-21],[-94,-30],[-97,-85],[-102,-93],[-108,-98],[-111,-101],[-156,-116],[-174,-122],[-180,-127],[-183,-128],[-222,-176],[-223,-178],[-237,-184],[-282,-185]],"c":true}],"h":1},{"t":124,"s":[{"i":[[-299.48,-185.27],[-300.63,-184.97],[-301.83,-185.16],[-304.17,-182.74],[-302.51,-179.76],[-298.18,-172.07],[-295.32,-167.97],[-293.09,-165.04],[-291.32,-163.53],[-289.44,-159.88],[-287.73,-155.27],[-285.44,-151.71],[-282.73,-148.26],[-280.65,-144.31],[-278.79,-140.22],[-272.91,-131.72],[-264.99,-123.93],[-252.44,-117.2],[-236.68,-113.41],[-217.5,-107.31],[-203.8,-94.68],[-199.4,-73.38],[-200.68,-50.64],[-198.98,-37.64],[-196,-28.05],[-194.58,-26.36],[-194.32,-25.41],[-187.93,-19.32],[-174.57,-12.63],[-159.53,-7.81],[-144.62,-3.21],[-140.65,-0.45],[-140.22,0.84],[-139.01,1.43],[-137.39,1.7],[-135.09,3.63],[-132.38,6.43],[-130.84,8.58],[-129.25,10.56],[-127.4,13.91],[-125.24,12.44],[-112.69,4.47],[-98.61,-4.13],[-89.44,-9.76],[-87.63,-13.76],[-90.92,-18.92],[-92.49,-21.52],[-95.45,-38.69],[-94.19,-65.56],[-96.63,-81.02],[-101.46,-92.11],[-104.27,-96.24],[-110.15,-100.28],[-118.83,-105.69],[-159.63,-115.48],[-176.52,-125.06],[-181.91,-127.15],[-197.45,-145.61],[-213.48,-167.81],[-222.69,-177.6],[-279.82,-187.41]],"o":[[-300.21,-184.89],[-301.44,-185.1],[-303.67,-183.36],[-303.59,-180.94],[-299.27,-173.84],[-296.2,-169.14],[-293.68,-165.52],[-291.92,-164.04],[-290.07,-161.49],[-288.26,-156.77],[-286.33,-152.83],[-283.64,-149.42],[-281.25,-145.7],[-279.42,-141.58],[-275.41,-135],[-267.69,-126.18],[-257.35,-119],[-242.1,-114.41],[-223.84,-110.22],[-207.48,-99.54],[-199.55,-81.31],[-199.96,-58.04],[-199.73,-41.37],[-197.12,-30.98],[-194.67,-26.66],[-194.41,-25.74],[-191.64,-22.01],[-179.4,-14.63],[-164.97,-9.2],[-149.35,-4.81],[-140.79,-0.87],[-140.36,0.4],[-139.56,1.33],[-137.92,1.61],[-136.15,2.67],[-133.2,5.51],[-131.47,7.8],[-129.73,9.96],[-127.78,13.19],[-126.13,13.54],[-117.63,7.54],[-103.18,-1.36],[-91.38,-8.63],[-87.56,-12.32],[-90.17,-17.91],[-92.08,-20.72],[-95.36,-29.91],[-94.87,-56.51],[-95.4,-76.72],[-99.66,-88.72],[-103.63,-94.77],[-106.71,-98.78],[-115.94,-103.77],[-139.22,-114.1],[-175.51,-123.79],[-179.7,-127.09],[-191.6,-134.71],[-207.55,-160.88],[-221.36,-175.21],[-241.09,-188.79],[-300.11,-185.92]],"v":[[-300,-185],[-301.03,-185.04],[-302,-185],[-303.88,-181.84],[-301,-177],[-297.19,-170.6],[-294,-166],[-292.5,-164.54],[-291,-163],[-288.85,-158.32],[-287,-154],[-284.54,-150.57],[-282,-147],[-280.03,-142.95],[-278,-139],[-270.3,-128.95],[-262,-122],[-247.27,-115.81],[-231,-112],[-212.49,-103.43],[-202,-89],[-199.68,-65.71],[-200,-44],[-198.05,-34.31],[-195,-27],[-194.5,-26.05],[-194,-25],[-183.66,-16.98],[-170,-11],[-154.44,-6.31],[-141,-1],[-140.51,-0.03],[-140,1],[-138.46,1.52],[-137,2],[-134.15,4.57],[-132,7],[-130.29,9.27],[-129,11],[-126.77,13.72],[-123,11],[-107.93,1.55],[-94,-7],[-88.5,-11.04],[-89,-16],[-91.5,-19.82],[-93,-23],[-95.16,-47.6],[-95,-73],[-98.15,-84.87],[-103,-94],[-105,-97],[-113,-102],[-122,-107],[-174,-123],[-178,-126],[-183,-128],[-203,-154],[-219,-173],[-225,-179],[-299,-186]],"c":true}],"h":1},{"t":125,"s":[{"i":[[-299.48,-185.28],[-300.87,-184.98],[-302.97,-185.11],[-302.43,-178],[-295.37,-168.19],[-291.41,-161.71],[-288.05,-155.79],[-280.7,-142.89],[-269.29,-126.85],[-262.96,-122.53],[-260.31,-120.65],[-252.09,-117.18],[-239.95,-113.95],[-226.89,-110.79],[-216.58,-106.94],[-212.6,-104],[-210.42,-102.43],[-201.09,-80.98],[-201.44,-40.49],[-196.85,-30.19],[-194.28,-27.3],[-193.58,-26.08],[-193.34,-24.38],[-189.77,-21.31],[-183.22,-18.11],[-176.65,-14.79],[-170.11,-11.73],[-162.93,-9.58],[-155.42,-7.91],[-146.85,-4.34],[-138.87,0.49],[-135.61,3],[-133.41,4.53],[-130.3,9.12],[-128.48,13.87],[-123.98,12.26],[-113.98,5.62],[-107.04,0.66],[-99.32,-3.48],[-87.09,-11.63],[-90,-17.14],[-93.23,-24.51],[-94.4,-63.68],[-98.61,-83.8],[-99.66,-89.14],[-101.63,-91.37],[-105.77,-97.52],[-112.1,-101.84],[-124.39,-109.18],[-156.56,-116.16],[-181.51,-127.9],[-194.2,-139.29],[-197.49,-143.26],[-199.22,-147.86],[-201.64,-149.52],[-202.48,-152.25],[-214.95,-170.37],[-225.35,-177.5],[-229.96,-181.53],[-236.23,-183.28],[-285.5,-186.99]],"o":[[-300.13,-184.93],[-302.29,-185.07],[-304,-181.66],[-298.12,-171.27],[-292.63,-163.81],[-289.12,-157.7],[-284.05,-148.97],[-273.32,-131.83],[-263.8,-123.2],[-261.21,-121.25],[-255.86,-118.46],[-244.13,-114.93],[-231.1,-111.82],[-219.63,-108.35],[-213.38,-104.54],[-211.12,-102.95],[-202.37,-94.23],[-200.62,-54.11],[-197.71,-31.29],[-195.14,-28.2],[-193.66,-26.63],[-193.42,-24.95],[-191.66,-22.5],[-185.55,-19.11],[-178.84,-15.92],[-172.28,-12.7],[-165.47,-10.12],[-157.91,-8.47],[-149.91,-5.83],[-141.32,-1.18],[-136.4,2.48],[-134.11,4.02],[-131.31,6.93],[-128.88,12.59],[-127.24,14.2],[-117.35,7.97],[-107.61,1.62],[-101.13,-3.23],[-93.91,-7.02],[-86.73,-13.17],[-92.52,-21.81],[-97.05,-36.9],[-96.7,-81.39],[-100.37,-87.84],[-100.15,-90.37],[-104.49,-96.26],[-111.09,-101.61],[-119.78,-106.53],[-142.9,-114.27],[-175.86,-123.25],[-190.19,-135.97],[-196.59,-142.9],[-198.78,-145.14],[-200.31,-149.46],[-202.62,-150.83],[-208.29,-160.59],[-223.82,-177.16],[-229.5,-179.85],[-232.76,-182.79],[-253.39,-187.75],[-300.11,-185.92]],"v":[[-300,-185],[-301.58,-185.03],[-303,-185],[-300.28,-174.64],[-294,-166],[-290.26,-159.7],[-287,-154],[-277.01,-137.36],[-265,-124],[-262.08,-121.89],[-259,-120],[-248.11,-116.06],[-236,-113],[-223.26,-109.57],[-214,-105],[-211.86,-103.48],[-210,-102],[-200.85,-67.54],[-198,-32],[-196,-29.2],[-194,-27],[-193.5,-25.51],[-193,-24],[-187.66,-20.21],[-181,-17],[-174.46,-13.74],[-168,-11],[-160.42,-9.03],[-153,-7],[-144.08,-2.76],[-137,2],[-134.86,3.51],[-133,5],[-129.59,10.85],[-128,14],[-120.67,10.12],[-113,5],[-103,-2],[-97,-5],[-87,-12],[-91,-19],[-94,-27],[-96,-76],[-100,-87],[-100,-90],[-102,-92],[-109,-100],[-114,-103],[-131,-111],[-167,-120],[-187,-133],[-196,-142],[-198,-144],[-200,-149],[-202,-150],[-203,-153],[-221,-175],[-228,-179],[-231,-182],[-239,-184],[-299,-186]],"c":true}],"h":1},{"t":126,"s":[{"i":[[-262.61,-186.23],[-279.41,-186.48],[-302.66,-186.22],[-304.2,-182.49],[-303.12,-180.28],[-300.66,-175.78],[-296.65,-171.02],[-295.53,-168.69],[-295.36,-166.63],[-294.02,-164.83],[-292.35,-163.6],[-286.15,-152.74],[-278.09,-139.14],[-272.36,-131.49],[-268.39,-127.06],[-263.22,-123.2],[-257.46,-119.98],[-251.69,-117.82],[-246.58,-116.42],[-237.46,-114.4],[-226.21,-112.24],[-221.12,-109.96],[-218,-107.59],[-214.3,-105.58],[-210.63,-103.67],[-209.58,-102.1],[-209.24,-100.31],[-208.35,-99.36],[-207.3,-98.49],[-201.77,-82.15],[-202.16,-53.42],[-198.42,-32.58],[-189.43,-21.59],[-180.26,-16.61],[-172.56,-13.89],[-155.01,-8.2],[-135.79,1],[-129.7,9.94],[-128.42,13.88],[-123.8,12.29],[-113.91,5.57],[-109.05,2.37],[-104.85,-0.79],[-99.13,-3.6],[-85.43,-11.13],[-94.27,-25.08],[-92.14,-73.64],[-103.06,-92.69],[-105.32,-97.26],[-129.1,-111.31],[-166.72,-120.8],[-175.53,-124.77],[-189.59,-133.59],[-200.32,-147.28],[-203.75,-151.63],[-203.77,-153.49],[-205.75,-154.63],[-207.86,-159.37],[-219.52,-174.03],[-228.28,-179.66],[-237.77,-184.23]],"o":[[-271.08,-185.87],[-295.2,-186.66],[-304.4,-183.34],[-303.56,-180.95],[-302.08,-177.77],[-297.95,-172.4],[-295.6,-169.38],[-295.41,-167.32],[-294.59,-165.28],[-292.9,-163.99],[-288.85,-157.67],[-280.77,-143.47],[-273.66,-133.21],[-269.72,-128.42],[-264.99,-124.46],[-259.46,-120.96],[-253.4,-118.36],[-248.27,-116.85],[-241.35,-115.03],[-229.89,-113.01],[-222.12,-110.66],[-219.06,-108.42],[-215.73,-106.25],[-211.75,-104.29],[-209.71,-102.7],[-209.34,-100.91],[-208.7,-99.61],[-207.65,-98.8],[-202.69,-90.94],[-201.51,-63.39],[-200.2,-37.53],[-193.03,-24.61],[-182.73,-17.67],[-175.18,-14.72],[-162.61,-10.45],[-141.6,-2.47],[-130.49,8],[-128.66,12.88],[-127.09,14.25],[-117.21,7.95],[-110.62,3.51],[-106.16,0.22],[-101.44,-3.02],[-89.63,-9.84],[-91.39,-19.26],[-99.84,-47.42],[-101.54,-92.06],[-104.71,-94.99],[-112.67,-105.26],[-157.38,-118.33],[-174.35,-123.11],[-183.29,-128.67],[-197.12,-142.82],[-202.15,-151.32],[-204.31,-152.46],[-204.15,-154.32],[-207.3,-156.94],[-212.88,-166.57],[-226.53,-178.68],[-233.89,-182.42],[-249.25,-186.98]],"v":[[-268,-186],[-287.3,-186.57],[-304,-184],[-303.88,-181.72],[-303,-180],[-299.3,-174.09],[-296,-170],[-295.47,-168.01],[-295,-166],[-293.46,-164.41],[-292,-163],[-283.46,-148.1],[-275,-135],[-271.04,-129.96],[-267,-126],[-261.34,-122.08],[-255,-119],[-249.98,-117.34],[-245,-116],[-233.67,-113.71],[-223,-111],[-220.09,-109.19],[-217,-107],[-213.03,-104.94],[-210,-103],[-209.46,-101.5],[-209,-100],[-208,-99.08],[-207,-98],[-201.64,-72.77],[-201,-44],[-195.72,-28.59],[-185,-19],[-177.72,-15.66],[-170,-13],[-148.3,-5.33],[-132,6],[-129.18,11.41],[-128,14],[-120.5,10.12],[-113,5],[-107.6,1.3],[-103,-2],[-97,-5],[-89,-16],[-95,-28],[-101,-91],[-104,-94],[-106,-98],[-148,-116],[-174,-123],[-176,-125],[-194,-139],[-202,-151],[-204,-152],[-204,-154],[-206,-155],[-209,-161],[-224,-177],[-231,-181],[-241,-185]],"c":true}],"h":1},{"t":127,"s":[{"i":[[-264.15,-186.56],[-289.43,-186.55],[-304.92,-184.66],[-301.01,-176.11],[-296.44,-168.46],[-293.56,-164.99],[-290.64,-160.1],[-284.91,-150.13],[-277.6,-138.33],[-273.36,-132.56],[-271.01,-128.92],[-269.08,-127.58],[-267.33,-127.26],[-266.31,-126.07],[-265.44,-124.29],[-263.28,-123.27],[-260.05,-122.52],[-257.24,-120.95],[-254.89,-119.33],[-241.95,-115.48],[-224.3,-111.2],[-218.63,-108.6],[-216.62,-108.4],[-213.42,-105.78],[-210.69,-101.9],[-208.06,-98.65],[-205.52,-95.3],[-206.12,-45.45],[-196.05,-29.06],[-195.64,-27.79],[-150.52,-11.99],[-136.68,0.41],[-128.21,13.94],[-114.82,6.14],[-106.47,0.28],[-99.17,-3.58],[-87.14,-11.38],[-91.52,-19.13],[-95.42,-52.99],[-100.8,-91.66],[-104.35,-96.17],[-127.84,-111.84],[-169.75,-120.93],[-183.62,-129.94],[-187.2,-131.33],[-194.12,-139.39],[-200.94,-147.66],[-203.75,-150.63],[-203.77,-152.49],[-205.75,-153.64],[-205.77,-155.49],[-207.75,-156.63],[-207.77,-158.49],[-209.75,-159.66],[-209.78,-161.51],[-211.75,-162.71],[-220.65,-174.59],[-226.63,-178.75],[-228.49,-178.77],[-229.57,-180.77],[-233.22,-182.32]],"o":[[-281.73,-185.73],[-301.03,-186.02],[-302.54,-178.88],[-297.96,-170.9],[-294.74,-166.69],[-291.51,-161.7],[-287.36,-154.46],[-280.03,-142.07],[-274.1,-133.85],[-271.81,-130.09],[-269.67,-127.7],[-267.91,-127.36],[-266.59,-126.68],[-265.74,-124.88],[-264.26,-123.51],[-261.18,-122.77],[-258.05,-121.53],[-255.66,-119.85],[-248.3,-116.87],[-229.96,-112.64],[-219.32,-108.65],[-217.28,-108.48],[-214.57,-107.07],[-211.48,-103.19],[-209.05,-99.75],[-206.29,-96.43],[-197.91,-76.29],[-197.04,-30.06],[-195.36,-28.33],[-184.6,-14.02],[-137.4,0.58],[-133.76,2.94],[-126.19,14.5],[-108.58,2.23],[-101.27,-3.13],[-95.33,-6.09],[-86.44,-14.51],[-99.46,-33.54],[-97.65,-79.78],[-104.66,-95.69],[-111.5,-105.28],[-157.38,-119],[-181.33,-127.28],[-185.79,-131.6],[-191.23,-134.69],[-199.06,-145.58],[-202.15,-150.32],[-204.31,-151.46],[-204.14,-153.32],[-206.31,-154.45],[-206.15,-156.32],[-208.31,-157.46],[-208.14,-159.31],[-210.31,-160.43],[-210.12,-162.27],[-216.43,-168.32],[-226.32,-177.15],[-227.46,-179.31],[-229.36,-179.16],[-231,-181.54],[-246.07,-187.25]],"v":[[-276,-186],[-295.23,-186.29],[-303,-180],[-299.48,-173.5],[-296,-168],[-292.54,-163.34],[-290,-159],[-282.47,-146.1],[-275,-135],[-272.59,-131.33],[-270,-128],[-268.5,-127.47],[-267,-127],[-266.02,-125.48],[-265,-124],[-262.23,-123.02],[-259,-122],[-256.45,-120.4],[-254,-119],[-235.96,-114.06],[-220,-109],[-217.95,-108.54],[-216,-108],[-212.45,-104.48],[-210,-101],[-207.18,-97.54],[-205,-94],[-197,-30],[-196,-29],[-195,-27],[-138,0],[-136,1],[-128,14],[-113,5],[-103,-2],[-97,-5],[-87,-12],[-92,-20],[-97,-72],[-104,-95],[-105,-97],[-145,-116],[-179,-126],[-185,-131],[-188,-132],[-197,-143],[-202,-150],[-204,-151],[-204,-153],[-206,-154],[-206,-156],[-208,-157],[-208,-159],[-210,-160],[-210,-162],[-212,-163],[-226,-177],[-227,-179],[-229,-179],[-230,-181],[-235,-183]],"c":true}],"h":1},{"t":128,"s":[{"i":[[-270.82,-186.58],[-291.43,-186.3],[-302.8,-185.96],[-302.86,-178.72],[-295.63,-167.05],[-286.31,-150.42],[-270.21,-128.18],[-259.78,-122.14],[-254.47,-119.75],[-241.3,-116.44],[-224.64,-112.79],[-215.86,-107.7],[-209.05,-100.77],[-203.02,-82.9],[-203.33,-53.2],[-200.33,-37.74],[-196.04,-30.11],[-194.59,-28.08],[-194.33,-26.35],[-193.14,-25.59],[-191.28,-25.22],[-190.31,-24.08],[-189.44,-22.29],[-186.78,-20.86],[-182.9,-19.42],[-167.79,-13.69],[-146.25,-6.59],[-140.64,-2.43],[-140.24,-1.18],[-138.99,-0.58],[-137.4,-0.35],[-135.38,1.58],[-132.64,4.96],[-130.14,9.81],[-128.99,14],[-124.39,12.54],[-114.1,5.69],[-109.04,2.36],[-104.68,-0.9],[-101.1,-3.01],[-98.05,-4.31],[-95.63,-6.08],[-93.08,-8.29],[-91.04,-9.4],[-89.53,-9.68],[-86.34,-13.14],[-89.98,-17.54],[-91.93,-20.69],[-94.67,-26.11],[-97.57,-41.34],[-97.1,-67.71],[-129.36,-111.89],[-168.46,-121.83],[-179.36,-126.81],[-193.37,-136.8],[-197.32,-143.03],[-200.38,-145.15],[-202.83,-150.33],[-206.66,-155.05],[-218.01,-171.55],[-232.92,-182.56]],"o":[[-286.78,-185.82],[-299.44,-186.37],[-304.8,-182.69],[-298.27,-170.89],[-290.7,-158.83],[-276.07,-135.09],[-261.29,-123.01],[-256.37,-120.51],[-247.23,-117.55],[-230,-114.06],[-218.59,-109.81],[-211.1,-103.18],[-203.86,-92.05],[-202.75,-63.47],[-201.56,-40.93],[-197.57,-32.33],[-194.67,-28.65],[-194.42,-26.93],[-193.75,-25.73],[-191.9,-25.33],[-190.59,-24.68],[-189.74,-22.88],[-188.08,-21.39],[-184.19,-19.87],[-175.42,-15.9],[-153.21,-9.04],[-140.77,-2.84],[-140.38,-1.6],[-139.54,-0.65],[-137.92,-0.43],[-136.31,0.6],[-133.55,3.76],[-130.89,7.81],[-129.18,12.91],[-127.84,14.44],[-117.52,8.16],[-110.7,3.56],[-106.03,0.13],[-102.08,-2.61],[-99.09,-3.86],[-96.34,-5.43],[-94,-7.51],[-91.53,-9.31],[-90.04,-9.58],[-86.35,-11.62],[-88.15,-16.1],[-91.1,-19.14],[-93.72,-24.18],[-97.27,-33.23],[-97.48,-58.57],[-101.54,-108.58],[-160.55,-119.91],[-175.46,-125.05],[-187.88,-131.93],[-197.72,-141.84],[-198.58,-144.83],[-202.11,-147.52],[-205.16,-153.65],[-211.89,-162.67],[-226.34,-176.67],[-248.49,-188.07]],"v":[[-283,-186],[-295.44,-186.33],[-304,-184],[-300.57,-174.8],[-295,-166],[-281.19,-142.76],[-263,-124],[-258.07,-121.32],[-252,-119],[-235.65,-115.25],[-221,-111],[-213.48,-105.44],[-208,-99],[-202.89,-73.18],[-202,-44],[-198.95,-35.03],[-195,-29],[-194.51,-27.5],[-194,-26],[-192.52,-25.46],[-191,-25],[-190.02,-23.48],[-189,-22],[-185.49,-20.36],[-182,-19],[-160.5,-11.37],[-141,-3],[-140.51,-2.02],[-140,-1],[-138.45,-0.5],[-137,0],[-134.46,2.67],[-132,6],[-129.66,11.36],[-129,14],[-120.95,10.35],[-113,5],[-107.53,1.25],[-103,-2],[-100.1,-3.44],[-97,-5],[-94.82,-6.79],[-92,-9],[-90.54,-9.49],[-89,-10],[-87.24,-14.62],[-91,-19],[-92.83,-22.43],[-95,-27],[-97.53,-49.95],[-98,-76],[-157,-119],[-171,-123],[-183,-129],[-197,-141],[-198,-144],[-201,-146],[-204,-152],[-208,-157],[-222,-174],[-237,-184]],"c":true}],"h":1},{"t":129,"s":[{"i":[[-270.68,-187.29],[-295.62,-186.13],[-302.94,-185.74],[-303.66,-179.55],[-298.27,-172.46],[-296.83,-169.81],[-295.45,-166.77],[-292.29,-161.41],[-289.45,-156.52],[-285.75,-150.02],[-282.1,-143.69],[-273.95,-132.61],[-259.73,-121.94],[-244.53,-117.42],[-229.84,-114.3],[-222.83,-111.67],[-219.77,-109.58],[-218.02,-108.57],[-216.38,-108.28],[-215.64,-107.42],[-215.25,-106.19],[-213.96,-105.6],[-212.39,-105.42],[-211.58,-104.09],[-211.24,-102.32],[-210.35,-101.36],[-209.3,-100.49],[-203.82,-85.23],[-204,-58.66],[-201.98,-43],[-198.92,-32.96],[-197.56,-31.36],[-197.34,-30.48],[-180.88,-18.58],[-146.2,-7.93],[-137.41,-0.52],[-133.95,3.53],[-131.03,8.84],[-129.16,13.94],[-124.4,12.53],[-114.11,5.69],[-109.04,2.36],[-104.68,-0.9],[-101.1,-3.01],[-98.05,-4.31],[-95.63,-6.08],[-93.08,-8.29],[-89.97,-10.04],[-86.03,-11.87],[-86.4,-13.95],[-89.84,-16.51],[-98.25,-34.8],[-97.47,-66.6],[-145.05,-113.15],[-180.75,-128.61],[-186.78,-131.08],[-191.76,-136.76],[-200.32,-145.15],[-217.74,-171.52],[-229.48,-179.05],[-232.3,-181.65]],"o":[[-292.4,-185.76],[-300.89,-186.12],[-305.03,-182.32],[-300.29,-174.62],[-297.36,-170.92],[-295.88,-167.73],[-293.31,-163.15],[-290.36,-158.09],[-286.95,-152.18],[-283.33,-145.78],[-277.84,-137.14],[-264.9,-125.01],[-249.61,-118.52],[-234.65,-115.31],[-224.19,-112.39],[-220.62,-110.27],[-218.58,-108.68],[-216.92,-108.37],[-215.76,-107.83],[-215.38,-106.6],[-214.52,-105.64],[-212.9,-105.49],[-211.71,-104.68],[-211.35,-102.91],[-210.7,-101.61],[-209.65,-100.8],[-204.82,-93.15],[-203.41,-67.99],[-202.77,-46.77],[-200.06,-36.1],[-197.63,-31.62],[-197.41,-30.79],[-191.78,-22.61],[-158.09,-11.24],[-138.44,-1.54],[-135.17,2.02],[-131.95,6.62],[-129.63,12.5],[-127.85,14.43],[-117.53,8.16],[-110.7,3.56],[-106.03,0.13],[-102.08,-2.61],[-99.09,-3.86],[-96.34,-5.43],[-94,-7.51],[-91.46,-9.35],[-87.26,-11.3],[-85.73,-13.2],[-88.46,-15.61],[-97.02,-25.74],[-98.48,-55.23],[-103.63,-116.49],[-178.22,-126.27],[-184.5,-130.93],[-190.08,-133.57],[-197.98,-142.98],[-209.43,-158.26],[-227.98,-178.31],[-231.6,-180.37],[-247.14,-189.12]],"v":[[-289,-186],[-298.26,-186.12],[-304,-184],[-301.97,-177.08],[-298,-172],[-296.36,-168.77],[-295,-166],[-291.32,-159.75],[-288,-154],[-284.54,-147.9],[-281,-142],[-269.43,-128.81],[-254,-120],[-239.59,-116.37],[-226,-113],[-221.72,-110.97],[-219,-109],[-217.47,-108.47],[-216,-108],[-215.51,-107.01],[-215,-106],[-213.43,-105.54],[-212,-105],[-211.46,-103.5],[-211,-102],[-210,-101.08],[-209,-100],[-203.61,-76.61],[-203,-49],[-201.02,-39.55],[-198,-32],[-197.48,-31.08],[-197,-30],[-169.48,-14.91],[-139,-2],[-136.29,0.75],[-133,5],[-130.33,10.67],[-129,14],[-120.97,10.34],[-113,5],[-107.53,1.25],[-103,-2],[-100.1,-3.44],[-97,-5],[-94.82,-6.79],[-92,-9],[-88.62,-10.67],[-86,-12],[-87.43,-14.78],[-91,-18],[-98.37,-45.01],[-99,-79],[-175,-125],[-183,-130],[-188,-132],[-194,-139],[-203,-149],[-226,-177],[-231,-180],[-233,-182]],"c":true}],"h":1},{"t":130,"s":[{"i":[[-270.96,-187],[-283.11,-187.06],[-302.91,-185.94],[-303.36,-178.65],[-296.63,-169.04],[-294.26,-164.78],[-292.53,-160.91],[-288.11,-153.44],[-281.74,-143.38],[-279.27,-139.66],[-278.34,-137.42],[-269.58,-128.55],[-252.59,-119.69],[-239.13,-116.72],[-229.02,-115.17],[-223.75,-112.93],[-220.08,-110.66],[-216.25,-108.29],[-212.58,-105.65],[-211.35,-103.68],[-210.44,-100.7],[-208.79,-98.44],[-207.36,-96.9],[-203.39,-74.93],[-202.94,-40.19],[-198.79,-32.82],[-198.01,-32.01],[-197.58,-31.36],[-197.32,-30.41],[-190.96,-24.53],[-177.66,-18.62],[-163.28,-13.99],[-148.88,-9.22],[-143.75,-5.92],[-141.8,-3.59],[-138.33,-1.18],[-136.66,0.53],[-135.49,2.32],[-134.12,2.82],[-130.89,14.25],[-126.1,13.06],[-120.49,9.58],[-110.31,3.12],[-86.12,-10.92],[-87.99,-15.13],[-90.47,-19.36],[-93.27,-21.88],[-94.12,-74.37],[-105.64,-95.41],[-123.18,-111.33],[-141.21,-117.3],[-168.69,-122.16],[-184.57,-130.35],[-193.18,-136.28],[-198.7,-143.33],[-202.34,-146.14],[-203.5,-149.28],[-204.87,-150.86],[-208.41,-155.83],[-222.62,-174.11],[-252.79,-188.9]],"o":[[-275.41,-186.84],[-296.86,-186.61],[-305.05,-182.13],[-299.15,-172.11],[-294.99,-166.33],[-293.03,-162.07],[-290.24,-157],[-283.87,-146.63],[-279.6,-140.45],[-278.64,-138.14],[-274.28,-132.46],[-258.74,-122.17],[-242.62,-117.13],[-232.33,-115.74],[-224.97,-113.6],[-221.31,-111.46],[-217.72,-109.21],[-213.69,-106.51],[-211.63,-104.58],[-210.76,-101.74],[-209.36,-98.99],[-207.79,-97.4],[-203.42,-87.08],[-203.15,-51.48],[-199.03,-33.06],[-198.28,-32.29],[-197.67,-31.66],[-197.41,-30.74],[-194.63,-26.98],[-182.48,-20.36],[-168.34,-15.38],[-153.55,-10.91],[-144.35,-6.63],[-142.48,-4.41],[-139.25,-1.7],[-137.04,-0.07],[-135.93,2.16],[-134.59,2.65],[-132.1,5.74],[-128.22,14.94],[-122.99,11.13],[-113.5,5.14],[-103.13,-1.47],[-85.93,-15.95],[-90.6,-17.38],[-91.96,-21.17],[-104.03,-38.33],[-104.26,-94.52],[-112.8,-106.93],[-139.04,-115.87],[-155.58,-120.92],[-181.39,-128.12],[-189.78,-133.89],[-196.94,-139.83],[-200.65,-145.84],[-203.61,-147.79],[-204.04,-150.06],[-207.22,-153.31],[-215.89,-166.02],[-239.04,-184.99],[-269.75,-187.96]],"v":[[-271,-187],[-289.99,-186.83],[-304,-184],[-301.26,-175.38],[-296,-168],[-293.64,-163.43],[-292,-160],[-285.99,-150.03],[-280,-141],[-278.95,-138.9],[-278,-137],[-264.16,-125.36],[-246,-118],[-235.73,-116.23],[-226,-114],[-222.53,-112.2],[-219,-110],[-214.97,-107.4],[-212,-105],[-211.06,-102.71],[-210,-100],[-208.29,-97.92],[-207,-96],[-203.27,-63.21],[-199,-33],[-198.53,-32.55],[-198,-32],[-197.5,-31.05],[-197,-30],[-186.72,-22.45],[-173,-17],[-158.41,-12.45],[-145,-7],[-143.11,-5.17],[-141,-3],[-137.68,-0.63],[-136,2],[-135.04,2.48],[-134,3],[-128,15],[-126,13],[-118,8],[-107,1],[-86,-14],[-89,-16],[-91,-20],[-94,-23],[-104,-94],[-106,-96],[-136,-115],[-144,-118],[-179,-127],[-187,-132],[-195,-138],[-200,-145],[-203,-147],[-204,-150],[-205,-151],[-210,-158],[-230,-179],[-269,-188]],"c":true}],"h":1},{"t":131,"s":[{"i":[[-132.89,-10.99],[-122.3,10.96],[-112.27,4.74],[-105.2,0.23],[-99.35,-3.46],[-93.81,-7.11],[-85.92,-12.2],[-86.33,-14.9],[-90.89,-18.54],[-98.91,-34.83],[-98.99,-62.85],[-102.71,-89.65],[-113.65,-106.06],[-123.85,-111.49],[-130.7,-114.24],[-150.53,-119.75],[-176.25,-126.44],[-184.38,-130.91],[-186.26,-132.53],[-188.82,-133.83],[-191.53,-134.64],[-195.29,-137.88],[-200.03,-142.88],[-201.44,-144.93],[-201.66,-146.52],[-202.89,-147.71],[-204.69,-148.58],[-205.1,-149.59],[-204.89,-150.75],[-205.51,-151.32],[-206.87,-151.83],[-213.55,-161.82],[-225.3,-175.88],[-230.32,-178.51],[-230.81,-179.88],[-231.6,-180.1],[-232.74,-179.88],[-233.32,-180.52],[-233.79,-181.88],[-235.35,-182.62],[-238.18,-183.68],[-249.88,-187],[-270.56,-188.65],[-285.63,-187.45],[-303.11,-185.65],[-302.88,-178.21],[-295.46,-166.74],[-294.31,-164.66],[-293.7,-162.87],[-287.17,-151.56],[-279.91,-139.33],[-268.46,-127.98],[-249.83,-119.72],[-234.38,-116.18],[-222.05,-112.95],[-217.79,-108.63],[-213.81,-106.9],[-212.5,-103.66],[-210.6,-101.98],[-208.25,-50.35],[-189.69,-24.64]],"o":[[-125.67,12.84],[-115.6,6.91],[-106.77,1.21],[-101.49,-2.1],[-96.6,-5.26],[-88.47,-10.58],[-85.38,-13.63],[-89.08,-17.36],[-97.42,-27.15],[-99.7,-52.68],[-100.63,-82.62],[-109.21,-101.37],[-121.49,-110.37],[-128.45,-113.42],[-141.4,-117.78],[-167.95,-124.08],[-183.75,-130.4],[-185.64,-131.98],[-187.8,-133.51],[-190.68,-134.39],[-193.53,-136.19],[-198.54,-141.22],[-201.36,-144.42],[-201.59,-145.98],[-202.29,-147.42],[-204.09,-148.29],[-205.16,-149.21],[-204.97,-150.36],[-205.07,-151.15],[-206.41,-151.65],[-210.15,-156.38],[-221.13,-171.57],[-230.16,-178.07],[-230.65,-179.41],[-231.23,-180.15],[-232.36,-179.96],[-233.18,-180.08],[-233.63,-181.42],[-234.51,-182.28],[-237.18,-183.32],[-243.35,-185.67],[-263.49,-188.49],[-279.07,-187.63],[-297.65,-186.46],[-304.9,-182.34],[-298.16,-170.41],[-294.21,-164.72],[-294.06,-163.73],[-289.72,-156.14],[-282.27,-143.15],[-273.8,-131.87],[-256.48,-121.91],[-238.85,-116.96],[-225.98,-114.17],[-218.18,-110.48],[-215.72,-106.98],[-212.4,-105.33],[-211.41,-102.22],[-200.01,-84.67],[-196.78,-29.01],[-162.97,-12.24]],"v":[[-130,15],[-118.95,8.94],[-108,2],[-103.34,-0.93],[-97,-5],[-91.14,-8.85],[-86,-12],[-87.71,-16.13],[-92,-20],[-99.31,-43.76],[-100,-75],[-105.96,-95.51],[-119,-109],[-126.15,-112.46],[-133,-115],[-159.24,-121.92],[-183,-130],[-185.01,-131.44],[-187,-133],[-189.75,-134.11],[-192,-135],[-196.92,-139.55],[-201,-144],[-201.52,-145.45],[-202,-147],[-203.49,-148],[-205,-149],[-205.03,-149.98],[-205,-151],[-205.96,-151.49],[-207,-152],[-217.34,-166.69],[-230,-178],[-230.48,-178.96],[-231,-180],[-231.98,-180.03],[-233,-180],[-233.47,-180.97],[-234,-182],[-236.26,-182.97],[-239,-184],[-256.68,-187.75],[-276,-188],[-291.64,-186.96],[-304,-184],[-300.52,-174.31],[-295,-166],[-294.18,-164.19],[-292,-160],[-284.72,-147.35],[-278,-137],[-262.47,-124.94],[-243,-118],[-230.18,-115.18],[-219,-111],[-217,-108],[-213,-106],[-212,-103],[-210,-101],[-200,-35],[-184,-22]],"c":true}],"h":1},{"t":132,"s":[{"i":[[-277.25,-187.18],[-290.27,-186.99],[-303.02,-185.87],[-303.42,-178.99],[-297.54,-169.93],[-291.67,-159.08],[-284.02,-145],[-276.38,-135.52],[-269.53,-129.69],[-267.68,-128.48],[-267.21,-127.12],[-254.53,-121.77],[-233.69,-116.98],[-224.67,-113.61],[-221.77,-111.58],[-220.01,-110.57],[-218.38,-110.29],[-213.58,-106.05],[-209.02,-98.76],[-204.65,-75.48],[-203.9,-42.7],[-191.56,-26.41],[-172.8,-18.28],[-156.75,-12.98],[-144.19,-7.56],[-138.78,-3.11],[-135.57,0.18],[-134.26,2.26],[-132.46,5.89],[-130.1,13.7],[-127.69,14.37],[-120.28,9.59],[-114.52,5.92],[-109.3,2.85],[-106.14,0.93],[-102.59,-1.71],[-98.95,-3.57],[-97.68,-4.51],[-97.19,-5.88],[-95.15,-6.99],[-92,-8.35],[-90.08,-9.61],[-88.48,-10.69],[-85.33,-14.53],[-90.81,-18.61],[-94.1,-23.08],[-96.72,-28.35],[-100.45,-46.96],[-100.89,-80.31],[-105.1,-94.53],[-108.91,-99.69],[-115.23,-106.75],[-118.59,-109.76],[-158.67,-121.07],[-181.41,-128.67],[-185.84,-132.28],[-190.86,-134.13],[-202.58,-146.65],[-221.24,-172.72],[-241.66,-184.49],[-254.58,-187.77]],"o":[[-285.01,-186.81],[-299.28,-186.52],[-304.9,-182.27],[-299.74,-172.82],[-294.15,-164.08],[-286.6,-149.54],[-278.86,-138.18],[-271.71,-131.28],[-267.83,-128.92],[-267.37,-127.58],[-261.43,-123.78],[-240.66,-118.37],[-226.03,-114.31],[-222.54,-112.24],[-220.57,-110.68],[-218.92,-110.38],[-215.56,-108.17],[-210.31,-101.34],[-204.7,-87.13],[-204.25,-53.26],[-196.66,-30.27],[-179.63,-20.42],[-161.4,-14.46],[-148.15,-9.53],[-139.99,-4.19],[-136.56,-0.92],[-134.78,1.31],[-133.1,4.54],[-130.25,11.26],[-128.82,15.26],[-122.26,10.88],[-116.41,7.11],[-110.72,3.63],[-107.01,1.5],[-103.87,-0.92],[-100.13,-3.03],[-97.84,-4.07],[-97.36,-5.41],[-96.14,-6.56],[-93.07,-7.88],[-90.58,-9.27],[-89.03,-10.32],[-84.92,-12.97],[-88.27,-17.35],[-92.99,-21.15],[-95.96,-26.67],[-100.01,-36.06],[-100.89,-69.09],[-104.15,-92.18],[-107.49,-98.28],[-114.05,-105.37],[-118.35,-108.16],[-134.02,-118.68],[-177.98,-128.08],[-184.99,-130.51],[-188.49,-133.92],[-197.32,-139.07],[-215.05,-162.54],[-238.65,-183.49],[-251.9,-186.59],[-265.04,-188.75]],"v":[[-281,-187],[-294.78,-186.76],[-304,-184],[-301.58,-175.9],[-297,-169],[-289.13,-154.31],[-281,-141],[-274.05,-133.4],[-268,-129],[-267.52,-128.03],[-267,-127],[-247.59,-120.07],[-228,-115],[-223.6,-112.92],[-221,-111],[-219.47,-110.47],[-218,-110],[-211.94,-103.69],[-208,-96],[-204.45,-64.37],[-200,-36],[-185.6,-23.41],[-166,-16],[-152.45,-11.26],[-141,-5],[-137.67,-2.01],[-135,1],[-133.68,3.4],[-132,7],[-129.46,14.48],[-124,12],[-118.34,8.35],[-113,5],[-108.15,2.17],[-105,0],[-101.36,-2.37],[-98,-4],[-97.52,-4.96],[-97,-6],[-94.11,-7.43],[-91,-9],[-89.55,-9.97],[-88,-11],[-86.8,-15.94],[-92,-20],[-95.03,-24.87],[-97,-29],[-100.67,-58.02],[-103,-88],[-106.29,-96.4],[-111,-102],[-118,-108],[-119,-110],[-175,-127],[-184,-130],[-187,-133],[-192,-135],[-206,-151],[-233,-180],[-249,-186],[-257,-188]],"c":true}],"h":1},{"t":133,"s":[{"i":[[-90.53,-8.67],[-90.42,-19.05],[-95.54,-25.03],[-101.35,-49.21],[-101.41,-86.5],[-107.32,-98.21],[-110.86,-102.77],[-117.05,-108.7],[-125.79,-113.73],[-146.91,-120.51],[-173.42,-126.63],[-183.97,-131.18],[-188.6,-133.11],[-191.89,-135.63],[-194.47,-138.6],[-196.01,-139.42],[-197.6,-139.64],[-199.28,-141.19],[-201.44,-143.35],[-202.44,-144.93],[-202.66,-146.52],[-203.88,-147.71],[-205.67,-148.59],[-208.52,-152.43],[-211.88,-157.54],[-219.14,-167.01],[-229.2,-177.56],[-239.73,-183.72],[-251.97,-187.6],[-265.26,-188.39],[-281.21,-187.42],[-294.97,-186.69],[-303.24,-185.47],[-303.63,-179.65],[-298.85,-170.53],[-294.51,-163.04],[-290.54,-156.9],[-283.65,-145.38],[-273.74,-132.48],[-267.39,-128.19],[-263.43,-125.62],[-253.94,-122.14],[-241.06,-119.12],[-224.64,-114.03],[-215.93,-108.95],[-214.45,-105.59],[-212.6,-103.88],[-207.6,-67.02],[-199.36,-33.54],[-194.03,-29.38],[-184.97,-23.86],[-167.34,-17.66],[-147.96,-10.22],[-136.03,-1.56],[-132.29,15.78],[-124.72,12.78],[-122.37,10.25],[-120.51,10.23],[-119.38,8.24],[-114.67,6.01],[-108.75,2.12]],"o":[[-87.9,-17.28],[-94.24,-22.93],[-101.4,-36.96],[-101.36,-73.99],[-106.4,-96.82],[-109.55,-101.18],[-114.41,-106.58],[-122.75,-112.27],[-137.7,-118.44],[-164.77,-124.6],[-182.41,-130.63],[-187.06,-132.42],[-190.9,-134.58],[-193.67,-137.64],[-195.46,-139.35],[-197.08,-139.56],[-198.57,-140.51],[-200.72,-142.6],[-202.36,-144.42],[-202.59,-145.98],[-203.29,-147.42],[-205.07,-148.3],[-207.33,-150.66],[-210.8,-155.87],[-216.05,-162.98],[-225.72,-174.3],[-235.99,-181.92],[-247.72,-186.56],[-260.4,-188.43],[-275.67,-187.89],[-291.1,-186.7],[-301.04,-186.07],[-304.7,-182.63],[-300.7,-173.6],[-296.24,-165.83],[-291.66,-158.57],[-286.79,-150.64],[-277.13,-136.3],[-268.68,-129.12],[-264.77,-126.43],[-258.16,-123.33],[-245.39,-120.04],[-230.02,-116.07],[-218.41,-109.96],[-214.44,-107.43],[-213.44,-104.27],[-202.85,-89.67],[-204.16,-43.15],[-196.08,-30.01],[-187.71,-25.09],[-173.21,-19.46],[-154.44,-12.99],[-138.89,-3.43],[-130.51,12.2],[-125.43,12.93],[-122.68,11.85],[-121.54,9.69],[-119.67,9.85],[-116.76,6.56],[-110.38,3.41],[-97.4,-5.14]],"v":[[-84,-15],[-92.33,-20.99],[-97,-28],[-101.36,-61.6],[-106,-96],[-108.44,-99.69],[-112,-104],[-119.9,-110.49],[-129,-115],[-155.84,-122.55],[-181,-130],[-185.51,-131.8],[-190,-134],[-192.78,-136.63],[-195,-139],[-196.55,-139.49],[-198,-140],[-200,-141.9],[-202,-144],[-202.52,-145.45],[-203,-147],[-204.47,-148.01],[-206,-149],[-209.66,-154.15],[-213,-159],[-222.43,-170.66],[-233,-180],[-243.72,-185.14],[-256,-188],[-270.46,-188.14],[-287,-187],[-298.01,-186.38],[-304,-184],[-302.17,-176.63],[-298,-169],[-293.09,-160.8],[-290,-156],[-280.39,-140.84],[-270,-130],[-266.08,-127.31],[-262,-125],[-249.66,-121.09],[-237,-118],[-220,-111],[-215,-108],[-214,-105],[-212,-103],[-205,-49],[-197,-31],[-192,-28],[-180,-22],[-160,-15],[-145,-8],[-133,6],[-128,14],[-123,12],[-122,10],[-120,10],[-119,8],[-113,5],[-107,1]],"c":true}],"h":1},{"t":134,"s":[{"i":[[-131.17,4.07],[-125.04,12.67],[-117.49,8.12],[-114.68,6.48],[-114.2,5.12],[-110.79,3.25],[-105.92,0.75],[-100.82,-3.1],[-93.87,-7.16],[-91.68,-8.51],[-91.19,-9.88],[-90.39,-10.09],[-89.26,-9.88],[-88.68,-10.52],[-88.21,-11.88],[-86.75,-12.29],[-84.04,-12.8],[-85.46,-15.74],[-90.78,-20.77],[-92.52,-22.46],[-94.45,-24.27],[-96.36,-26.92],[-97.64,-29.24],[-102.05,-50.76],[-102.65,-88.15],[-108.15,-98.82],[-110.36,-101.21],[-115.66,-107.22],[-124.06,-113.72],[-144.89,-120.67],[-173.11,-126.59],[-185.01,-131.89],[-190.44,-135.03],[-200.69,-142.82],[-210.64,-155.54],[-222.25,-170.46],[-237.39,-182.65],[-257.49,-187.94],[-282.56,-187.81],[-296.99,-186.47],[-303.34,-185.26],[-303.98,-179.52],[-299,-171.8],[-295.42,-164.94],[-292.29,-158.18],[-286.84,-149.37],[-280.11,-140.39],[-275.46,-135.11],[-272.04,-131.69],[-268.67,-129.49],[-265.36,-127.67],[-255.12,-123.53],[-236.01,-119.11],[-219.28,-111.5],[-210.18,-100.4],[-207.13,-69.56],[-203.23,-39.33],[-200.63,-35.78],[-187.64,-25.29],[-167.26,-17.89],[-147.94,-11.82]],"o":[[-127.8,14.36],[-119.89,9.55],[-114.83,6.92],[-114.36,5.58],[-112.58,4.13],[-107.46,1.56],[-103.13,-1.52],[-96.18,-5.92],[-91.83,-8.07],[-91.36,-9.41],[-90.77,-10.15],[-89.64,-9.96],[-88.82,-10.08],[-88.37,-11.42],[-87.73,-12.15],[-84.91,-12.62],[-83.82,-13.85],[-88.94,-19.2],[-91.79,-21.82],[-93.85,-23.69],[-95.79,-26.05],[-97.29,-28.51],[-101.98,-38.44],[-102.39,-75.62],[-107.47,-97.96],[-109.59,-100.44],[-113.13,-104.61],[-121.13,-111.78],[-135.34,-118.62],[-163.78,-124.65],[-183.03,-130.88],[-188.71,-133.97],[-196.87,-139.05],[-207.58,-151.06],[-218.05,-165.39],[-231.92,-179.09],[-249.71,-187.03],[-273.91,-188.33],[-293.81,-186.58],[-301.75,-185.81],[-304.98,-182.12],[-300.99,-174.37],[-296.53,-167.35],[-293.3,-160.35],[-289.04,-152.68],[-282.38,-143.23],[-276.69,-136.52],[-273.13,-132.7],[-269.73,-130.16],[-266.48,-128.25],[-258.94,-124.53],[-242.79,-120.45],[-224.1,-114.93],[-213.1,-104.91],[-204.84,-85.03],[-205.55,-50.59],[-200.36,-36.34],[-194.55,-28.24],[-173.46,-19.89],[-156.18,-13.91],[-138.13,-2.42]],"v":[[-131,16],[-122.46,11.11],[-115,7],[-114.52,6.03],[-114,5],[-109.12,2.41],[-105,0],[-98.5,-4.51],[-92,-8],[-91.52,-8.96],[-91,-10],[-90.02,-10.03],[-89,-10],[-88.53,-10.97],[-88,-12],[-85.83,-12.46],[-84,-13],[-87.2,-17.47],[-91,-21],[-93.18,-23.07],[-95,-25],[-96.82,-27.72],[-98,-30],[-102.22,-63.19],[-107,-97],[-108.87,-99.63],[-111,-102],[-118.39,-109.5],[-127,-115],[-154.33,-122.66],[-181,-130],[-186.86,-132.93],[-192,-136],[-204.14,-146.94],[-214,-160],[-227.08,-174.77],[-244,-185],[-265.7,-188.13],[-290,-187],[-299.37,-186.14],[-304,-184],[-302.49,-176.94],[-298,-170],[-294.36,-162.65],[-291,-156],[-284.61,-146.3],[-278,-138],[-274.3,-133.91],[-271,-131],[-267.57,-128.87],[-264,-127],[-249,-122],[-230,-117],[-216,-108],[-209,-97],[-206,-56],[-201,-37],[-200,-35],[-179,-22],[-162,-16],[-145,-9]],"c":true}],"h":1},{"t":135,"s":[{"i":[[-90.63,-9.03],[-91.85,-21.13],[-99.58,-31.12],[-102.43,-51.98],[-103.19,-86.07],[-106.4,-94.87],[-107.62,-97.23],[-110.23,-101.71],[-114.19,-105.31],[-120.05,-110.82],[-125.61,-114.96],[-142.46,-120.92],[-162.26,-124.46],[-179.19,-129.56],[-194.25,-137.15],[-198.36,-140.59],[-198.74,-141.81],[-200.02,-142.41],[-201.6,-142.61],[-202.79,-144.22],[-203.56,-146.46],[-205.93,-148.98],[-208.47,-151.14],[-210.69,-154.33],[-213.29,-157.06],[-218.33,-164.19],[-225.54,-173.49],[-228.81,-175.66],[-229.58,-176.67],[-233.32,-179.39],[-238.36,-182.17],[-245.28,-185.34],[-254.32,-187.53],[-263.66,-188.67],[-271.01,-189.11],[-283.07,-188.49],[-303.07,-185.79],[-303.19,-176.93],[-295.38,-164.69],[-293.8,-161.3],[-291.9,-156.94],[-290.51,-155.37],[-290.35,-154.59],[-284.99,-146.11],[-275.54,-134.56],[-269.3,-130.42],[-264.16,-126.83],[-256.63,-124.05],[-248.62,-121.68],[-237.82,-120.16],[-224.04,-114.23],[-217.89,-109.97],[-215.25,-107.29],[-207.8,-93.14],[-208.52,-50.6],[-201,-37],[-200.67,-35.9],[-183.17,-24.7],[-132.35,-7.56],[-123.13,11.63],[-110.91,3.51]],"o":[[-88.06,-18.32],[-97.61,-27.53],[-102.58,-41.45],[-102.74,-74.29],[-106.09,-94.26],[-107.17,-96.36],[-109.13,-100.3],[-112.76,-104.21],[-118.24,-109.09],[-123.73,-113.76],[-135.33,-119.19],[-155.92,-123.56],[-173.56,-127.49],[-189.53,-134.39],[-198.24,-140.18],[-198.61,-141.4],[-199.47,-142.35],[-201.09,-142.54],[-202.51,-143.49],[-203.31,-145.7],[-204.95,-148.16],[-207.69,-150.47],[-209.8,-153.3],[-212.43,-156.21],[-216.06,-160.69],[-223.07,-170.58],[-228.52,-175.32],[-229.35,-176.33],[-231.64,-178.31],[-236.67,-181.32],[-242.62,-184.32],[-251.13,-186.95],[-260.9,-188.37],[-268.71,-189.04],[-275.78,-188.85],[-296.71,-186.96],[-305.25,-181.58],[-298.26,-168.49],[-294.35,-162.83],[-292.58,-158.36],[-290.59,-155.57],[-290.39,-154.87],[-287.97,-150.58],[-278.78,-138.1],[-270.97,-131.75],[-265.89,-127.96],[-259.31,-124.96],[-251.28,-122.41],[-242.54,-120.1],[-228.74,-117.41],[-218.35,-110.05],[-216.88,-107.73],[-210.7,-101.84],[-205.43,-69.15],[-202.09,-38.17],[-200.3,-36.27],[-194.26,-27.27],[-152.46,-14.53],[-127.14,14.87],[-114.9,6.39],[-98.76,-4.28]],"v":[[-83,-15],[-94.73,-24.33],[-101,-36],[-102.58,-63.14],[-106,-94],[-106.78,-95.61],[-108,-98],[-111.49,-102.96],[-116,-107],[-121.89,-112.29],[-128,-116],[-149.19,-122.24],[-168,-126],[-184.36,-131.98],[-198,-140],[-198.49,-140.99],[-199,-142],[-200.55,-142.48],[-202,-143],[-203.05,-144.96],[-204,-147],[-206.81,-149.73],[-209,-152],[-211.56,-155.27],[-214,-158],[-220.7,-167.39],[-228,-175],[-229.08,-175.99],[-230,-177],[-235,-180.36],[-240,-183],[-248.2,-186.14],[-258,-188],[-266.18,-188.86],[-273,-189],[-289.89,-187.72],[-304,-184],[-300.73,-172.71],[-295,-164],[-293.19,-159.83],[-291,-156],[-290.45,-155.12],[-290,-154],[-281.88,-142.11],[-273,-133],[-267.6,-129.19],[-262,-126],[-253.95,-123.23],[-246,-121],[-234,-119],[-221,-112],[-217,-108],[-215,-107],[-207,-85],[-202,-38],[-201,-37],[-200,-35],[-172,-21],[-132,16],[-119,9],[-107,1]],"c":true}],"h":1},{"t":136,"s":[{"i":[[-268.39,-188.68],[-288.67,-187.77],[-302.97,-186.05],[-304.15,-179.61],[-299.98,-171.84],[-290.84,-154.75],[-277.01,-136.23],[-269.26,-130.57],[-266.9,-128.46],[-262.57,-126.71],[-256.89,-125.58],[-251.22,-123.65],[-245.86,-121.5],[-241.96,-120.6],[-238.91,-120.23],[-236.38,-119.45],[-233.97,-118.34],[-229.27,-116.9],[-223.48,-115.01],[-220.25,-112.55],[-217.64,-109.71],[-215.25,-107.03],[-212.76,-103.49],[-207.68,-82.22],[-206.73,-46.95],[-184,-25.1],[-143.41,-11.95],[-136.05,0.91],[-134.51,5.25],[-132.8,11.44],[-131.86,16.08],[-129.09,15.52],[-122.1,10.36],[-116.52,7.68],[-114.4,5.24],[-108.92,3.24],[-105.84,-0.44],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-88.85,-10.18],[-87.18,-11.3],[-83.29,-15.1],[-90.1,-21.18],[-93.28,-22.18],[-94.41,-25.29],[-98.07,-29.17],[-100.5,-33.64],[-102.33,-64.81],[-108.19,-96.88],[-113.6,-105.39],[-116.27,-107.32],[-121.32,-112.98],[-135.33,-119.1],[-184.6,-128.46],[-199.16,-140.31],[-210.58,-153.35],[-225.73,-174.17],[-232.64,-178.75],[-240.61,-183.67]],"o":[[-282.94,-187.75],[-298.69,-186.93],[-304.91,-182.19],[-301.68,-174.44],[-294.83,-162.14],[-281.93,-141.8],[-270.06,-131.34],[-267.68,-129.13],[-264.38,-127.17],[-258.83,-125.92],[-253.04,-124.4],[-247.64,-122.2],[-243,-120.73],[-239.91,-120.35],[-237.15,-119.78],[-234.8,-118.73],[-231.28,-117.4],[-225.37,-115.71],[-221.18,-113.44],[-218.48,-110.68],[-216.12,-108.03],[-213.57,-104.76],[-208.06,-94.25],[-207.02,-58.57],[-197.29,-29.38],[-157.06,-16.39],[-136.54,-0.22],[-135.04,3.64],[-133.37,9.15],[-132.05,14.91],[-131.04,16.59],[-124.62,12.4],[-118.02,7.72],[-114.66,6.85],[-111.45,3.46],[-106.18,1.47],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.16,-9.8],[-87.15,-11.82],[-81.39,-14.74],[-88.82,-19.42],[-91.81,-22.73],[-94.65,-23.74],[-97.02,-28.41],[-99.54,-32.06],[-105.13,-46.21],[-104.69,-87.65],[-111.58,-102.72],[-115.66,-107.76],[-119.19,-110.04],[-127.81,-116.94],[-161.63,-126.58],[-197.76,-140.71],[-206.48,-146.3],[-220.08,-165.51],[-232.32,-177.14],[-236.58,-181.48],[-254.05,-188.94]],"v":[[-279,-188],[-293.68,-187.35],[-304,-184],[-302.91,-177.02],[-299,-170],[-286.38,-148.27],[-271,-132],[-268.47,-129.85],[-266,-128],[-260.7,-126.31],[-255,-125],[-249.43,-122.92],[-244,-121],[-240.93,-120.47],[-238,-120],[-235.59,-119.09],[-233,-118],[-227.32,-116.3],[-222,-114],[-219.37,-111.61],[-217,-109],[-214.41,-105.9],[-212,-102],[-207.35,-70.4],[-203,-40],[-170.53,-20.75],[-137,-1],[-135.54,2.27],[-134,7],[-132.42,13.18],[-132,16],[-126.85,13.96],[-120,9],[-115,7],[-114,5],[-107,2],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-88,-11],[-86,-12],[-87,-18],[-91,-22],[-94,-23],[-95,-26],[-99,-31],[-101,-35],[-104,-81],[-110,-100],[-115,-107],[-117,-108],[-123,-114],[-142,-121],[-197,-140],[-200,-141],[-215,-159],[-232,-177],[-233,-179],[-244,-185]],"c":true}],"h":1},{"t":137,"s":[{"i":[[-85.46,-12.46],[-93.7,-23.28],[-102.94,-37.47],[-104.68,-58.17],[-104.39,-77.1],[-107.21,-93.91],[-114.87,-108.08],[-118.8,-110.66],[-119.6,-111.71],[-131.03,-118.14],[-150.58,-123.52],[-166.47,-127.18],[-179.4,-130.65],[-187.62,-134.01],[-192.43,-137.03],[-195.84,-138.81],[-198.38,-139.52],[-202.07,-142.68],[-206.67,-147.56],[-216.32,-159.96],[-229.46,-176.5],[-235.32,-179.52],[-235.79,-180.88],[-242.94,-184.46],[-256.37,-188.57],[-268.51,-189.25],[-280.09,-188.32],[-292.62,-187.76],[-302.94,-186.2],[-304.02,-179.99],[-299.92,-172.85],[-296.78,-166.18],[-293.88,-159.52],[-291.76,-156.3],[-289.55,-153.86],[-288.03,-151.14],[-287.34,-148.76],[-286.49,-147.68],[-285.12,-147.18],[-281.22,-141.53],[-276.12,-135.47],[-271.38,-132.08],[-268.02,-129.58],[-263.99,-127.59],[-259.61,-126.46],[-249.25,-123.77],[-235.48,-120.3],[-223.2,-114.64],[-213.67,-104.75],[-207.88,-81.9],[-207.76,-51.16],[-200.13,-35.83],[-188.27,-27.77],[-178.2,-23.83],[-169.9,-21.65],[-166.19,-20.5],[-164.26,-19.09],[-150.11,-14.98],[-131.79,2.67],[-115.37,6.36],[-98.35,-4.16]],"o":[[-88.73,-20.04],[-100.8,-32],[-104.73,-51.87],[-104.51,-70.78],[-105.53,-88.12],[-111.89,-103.89],[-118.5,-110.31],[-119.35,-111.36],[-124.99,-115.63],[-143.83,-122.09],[-161.77,-126.1],[-175.29,-129.45],[-185.66,-133],[-191,-136.02],[-194.9,-138.55],[-197.58,-139.3],[-200.48,-141.14],[-205.17,-145.88],[-212.34,-153.71],[-224.88,-171.36],[-235.18,-179.08],[-235.63,-180.42],[-239.01,-182.68],[-251.62,-187.41],[-264.71,-189.35],[-276.2,-188.74],[-288.15,-187.66],[-300.02,-187.03],[-304.81,-182.32],[-301.58,-175.26],[-297.83,-168.67],[-294.8,-161.6],[-292.49,-157.12],[-290.29,-154.67],[-288.36,-152.01],[-287.52,-149.51],[-286.93,-147.84],[-285.59,-147.35],[-282.91,-144.05],[-277.83,-137.24],[-272.62,-133.05],[-269.08,-130.35],[-265.43,-128.11],[-261.07,-126.76],[-254.01,-124.87],[-239.99,-121.49],[-227.37,-117.26],[-216.35,-108.38],[-208.24,-92.57],[-207.64,-61.2],[-203.24,-39.44],[-192.64,-29.99],[-181,-24.75],[-172.65,-22.28],[-166.81,-20.96],[-164.92,-19.57],[-158.27,-17.03],[-139.27,-4.59],[-123.75,12.62],[-102.64,-1.79],[-89.98,-9.62]],"v":[[-82,-16],[-97.25,-27.64],[-104,-46],[-104.59,-64.48],[-105,-83],[-109.55,-98.9],[-118,-110],[-119.07,-111.01],[-120,-112],[-137.43,-120.11],[-157,-125],[-170.88,-128.31],[-183,-132],[-189.31,-135.02],[-194,-138],[-196.71,-139.06],[-199,-140],[-203.62,-144.28],[-208,-149],[-220.6,-165.66],[-235,-179],[-235.47,-179.97],[-236,-181],[-247.28,-185.93],[-261,-189],[-272.35,-189],[-284,-188],[-296.32,-187.4],[-304,-184],[-302.8,-177.63],[-299,-171],[-295.79,-163.89],[-293,-158],[-291.03,-155.49],[-289,-153],[-287.78,-150.33],[-287,-148],[-286.04,-147.51],[-285,-147],[-279.52,-139.39],[-274,-134],[-270.23,-131.22],[-267,-129],[-262.53,-127.17],[-258,-126],[-244.62,-122.63],[-232,-119],[-219.78,-111.51],[-212,-101],[-207.76,-71.55],[-205,-44],[-196.38,-32.91],[-184,-26],[-175.43,-23.06],[-167,-21],[-165.55,-20.04],[-164,-19],[-147,-12],[-133,17],[-107,1],[-94,-7]],"c":true}],"h":1},{"t":138,"s":[{"i":[[-134.21,3.77],[-129.81,15.86],[-125.47,13.45],[-124.04,12.3],[-122.42,11.41],[-121.04,10.3],[-119.42,9.41],[-116.31,6.9],[-112.08,4.66],[-108.51,2.17],[-105.89,-0.41],[-103.69,-1.46],[-101.59,-1.61],[-99.12,-3.51],[-96.24,-6.19],[-90.14,-9.75],[-82.06,-14.37],[-83.58,-17.56],[-89.41,-20.56],[-97.48,-28.03],[-104.4,-43.1],[-105.34,-57.42],[-104.81,-69.3],[-106.02,-84.49],[-109.93,-98.49],[-113.47,-104.14],[-115.54,-106.39],[-116.41,-108.03],[-116.6,-109.6],[-117.58,-110.38],[-118.77,-110.86],[-119.8,-111.66],[-120.6,-112.71],[-127.38,-116.97],[-137.89,-120.79],[-154.49,-125.13],[-172.98,-129.09],[-182,-131.9],[-186.57,-133.38],[-192.75,-136.49],[-198.38,-140.75],[-205.11,-146.17],[-210.78,-152.26],[-236.03,-186.54],[-301.44,-189.33],[-298.13,-168.52],[-287.01,-147.94],[-282.06,-142.27],[-278.25,-138.02],[-275.3,-135.25],[-256.59,-125.79],[-239.36,-121.12],[-228.73,-118.6],[-221.96,-112.92],[-215.45,-106.63],[-209.66,-71.32],[-204.25,-41.35],[-194.59,-31.79],[-165.15,-20.92],[-154,-15.5],[-147.74,-13.32]],"o":[[-131.57,16.64],[-126.76,14.27],[-124.58,12.6],[-122.96,11.71],[-121.58,10.6],[-119.96,9.71],[-117.77,7.82],[-113.47,5.32],[-109.57,3.12],[-106.67,0.4],[-104.4,-1.4],[-102.29,-1.56],[-100,-2.66],[-97.24,-5.27],[-93.36,-8.07],[-84.49,-12.91],[-81.88,-16.27],[-87.35,-19.7],[-94.04,-23.97],[-102.66,-37.59],[-105.44,-53.27],[-105.03,-65.44],[-105.31,-78.99],[-108.34,-94.24],[-112.7,-103.2],[-114.89,-105.73],[-116.36,-107.48],[-116.53,-109.09],[-117.2,-110.2],[-118.37,-110.71],[-119.5,-111.31],[-120.35,-112.36],[-124.19,-115.32],[-134.24,-119.7],[-148.25,-123.84],[-166.85,-127.76],[-180.47,-131.46],[-185.05,-132.86],[-190.56,-135.12],[-196.66,-139.31],[-202.97,-144.3],[-209.01,-150.16],[-225.26,-170.13],[-270.25,-190.05],[-306.55,-178.69],[-290.8,-155.59],[-283.37,-143.17],[-278.45,-137.95],[-275.73,-136.88],[-267.33,-128.61],[-242.57,-122.1],[-232.89,-118.97],[-223.66,-115.63],[-217.24,-108.29],[-207.1,-91.52],[-207.46,-49.73],[-198.16,-35],[-178.95,-23.98],[-154.78,-16.48],[-150.88,-13.94],[-137.51,-5.58]],"v":[[-133,17],[-128.28,15.07],[-125,13],[-123.5,12.01],[-122,11],[-120.5,10.01],[-119,9],[-114.89,6.11],[-111,4],[-107.59,1.29],[-105,-1],[-102.99,-1.51],[-101,-2],[-98.18,-4.39],[-95,-7],[-87.32,-11.33],[-82,-15],[-85.46,-18.63],[-90,-21],[-100.07,-32.81],[-105,-49],[-105.19,-61.43],[-105,-73],[-107.18,-89.36],[-112,-102],[-114.18,-104.94],[-116,-107],[-116.47,-108.56],[-117,-110],[-117.97,-110.54],[-119,-111],[-120.07,-112.01],[-121,-113],[-130.81,-118.34],[-142,-122],[-160.67,-126.45],[-179,-131],[-183.53,-132.38],[-188,-134],[-194.71,-137.9],[-200,-142],[-207.06,-148.17],[-213,-155],[-260,-189],[-304,-184],[-295,-163],[-284,-144],[-281,-141],[-276,-137],[-275,-135],[-246,-123],[-236,-120],[-226,-117],[-220,-111],[-214,-104],[-208,-55],[-202,-39],[-189,-29],[-156,-17],[-153,-15],[-146,-12]],"c":true}],"h":1},{"t":139,"s":[{"i":[[-82.4,-12.78],[-91,-22.31],[-101.09,-32.73],[-105.64,-50.55],[-105.47,-71.72],[-107.58,-90.12],[-112.87,-104.39],[-117.23,-109.5],[-120.31,-111.75],[-123.47,-114.41],[-125.35,-116.63],[-128.39,-118.09],[-132.68,-119.49],[-142.5,-122.88],[-155.7,-126.04],[-172.38,-129.68],[-189.63,-134.66],[-196.29,-138.6],[-199.39,-141.53],[-200.95,-142.39],[-202.59,-142.66],[-205.64,-145.57],[-208.94,-149.83],[-212.27,-153.28],[-215.33,-156.12],[-216.39,-157.95],[-216.66,-159.58],[-219.51,-162.67],[-223.81,-166.61],[-226.04,-169.59],[-227.39,-172.31],[-230.06,-174.94],[-233.14,-176.61],[-234.32,-177.51],[-234.83,-178.87],[-242.32,-183.66],[-255.44,-188.51],[-275.08,-189.69],[-302.65,-186.86],[-303.45,-176.49],[-295.7,-164.23],[-293.4,-159.8],[-291.02,-154.6],[-285.03,-145.5],[-276.34,-136.05],[-270.95,-132.58],[-268.36,-130.67],[-259.56,-127.12],[-247.07,-124.15],[-231.65,-119.36],[-218.72,-111.08],[-210.21,-78.57],[-207.86,-49.41],[-202.26,-40.45],[-195.39,-32.46],[-179.23,-26.39],[-153.6,-17.44],[-134.49,1.34],[-115.67,6.55],[-96.63,-5.91],[-91.38,-9.76]],"o":[[-86.46,-19.69],[-98.32,-28.83],[-105.15,-43.94],[-105.8,-64.44],[-106.39,-84.42],[-110.82,-100.11],[-116.33,-108.63],[-119.23,-111.06],[-122.8,-113.59],[-124.75,-115.93],[-127.05,-117.6],[-131.21,-119.04],[-138.15,-121.61],[-151.27,-125.09],[-166.06,-128.36],[-184.16,-132.84],[-195.09,-137.59],[-198.44,-140.58],[-200.4,-142.31],[-202.04,-142.57],[-204.42,-144.16],[-207.9,-148.41],[-211.11,-152.22],[-214.38,-155.23],[-216.31,-157.4],[-216.57,-159.04],[-218.11,-161.37],[-222.37,-165.29],[-225.59,-168.69],[-226.94,-171.4],[-228.99,-174.14],[-232.14,-176.18],[-234.15,-177.07],[-234.65,-178.41],[-238.35,-181.41],[-250.86,-187.21],[-264.76,-189.51],[-294.03,-188.37],[-305.35,-181.12],[-298.63,-168.05],[-294.15,-161.5],[-291.84,-156.35],[-287.61,-149.22],[-279.39,-138.92],[-271.77,-133.24],[-269.24,-131.29],[-263.53,-128.29],[-251.33,-125.04],[-237.04,-121.32],[-222.49,-114.24],[-208.31,-95.47],[-208.61,-56.62],[-205.02,-42.68],[-197.71,-35.52],[-186.94,-27.31],[-164.81,-21.62],[-138.52,-6.16],[-124.52,12.28],[-101.82,-2.32],[-91.67,-8.15],[-87.38,-12.33]],"v":[[-81,-17],[-94.66,-25.57],[-103,-38],[-105.72,-57.5],[-106,-79],[-109.2,-95.11],[-115,-107],[-118.23,-110.28],[-122,-113],[-124.11,-115.17],[-126,-117],[-129.8,-118.56],[-134,-120],[-146.89,-123.99],[-160,-127],[-178.27,-131.26],[-194,-137],[-197.36,-139.59],[-200,-142],[-201.49,-142.48],[-203,-143],[-206.77,-146.99],[-210,-151],[-213.33,-154.26],[-216,-157],[-216.48,-158.49],[-217,-160],[-220.94,-163.98],[-225,-168],[-226.49,-170.5],[-228,-173],[-231.1,-175.56],[-234,-177],[-234.49,-177.96],[-235,-179],[-246.59,-185.44],[-260,-189],[-284.56,-189.03],[-304,-184],[-301.04,-172.27],[-295,-163],[-292.62,-158.07],[-290,-153],[-282.21,-142.21],[-273,-134],[-270.1,-131.93],[-267,-130],[-255.45,-126.08],[-243,-123],[-227.07,-116.8],[-216,-107],[-209,-62],[-206,-45],[-200,-38],[-193,-31],[-172,-24],[-149,-14],[-133,18],[-107,1],[-92,-8],[-91,-10]],"c":true}],"h":1},{"t":140,"s":[{"i":[[-88.53,-10.31],[-88.81,-21.67],[-97.57,-28.36],[-105.47,-45.97],[-106.22,-72.62],[-108.63,-92.37],[-113.89,-105.42],[-118.02,-110.35],[-120.81,-112.46],[-122.32,-113.51],[-122.82,-114.88],[-124.74,-115.92],[-127.36,-116.71],[-128.32,-117.52],[-128.78,-118.89],[-134.31,-121.17],[-143.11,-123.22],[-152.2,-125.78],[-161.25,-128.39],[-170.45,-130.21],[-180.03,-132.01],[-190.75,-136.1],[-200.66,-142.08],[-205.4,-145.74],[-208.37,-147.98],[-213.16,-154.3],[-220.62,-161.93],[-223.68,-166.31],[-226.11,-168.99],[-230.1,-173.52],[-234.67,-178.12],[-237.86,-180.17],[-240.24,-181.53],[-250.11,-186.44],[-266.82,-189.97],[-282.63,-189.71],[-302.91,-186.38],[-304.04,-178.7],[-298.64,-168.1],[-290.48,-152.99],[-277.92,-137.22],[-272.68,-134.49],[-272.19,-133.12],[-269.18,-131.48],[-264.31,-129.51],[-251.97,-125.74],[-235.68,-122.2],[-219.87,-112.55],[-210.71,-93.95],[-209.48,-70.26],[-207.82,-48.23],[-204.79,-42.82],[-204.01,-42.01],[-199.26,-36.47],[-195.37,-33.25],[-193.51,-33.23],[-192.43,-31.23],[-188.61,-29.62],[-156.58,-20.82],[-133.96,2.23],[-115.93,6.72]],"o":[[-85.03,-19.74],[-95.08,-25.98],[-104.11,-38.16],[-106.52,-63.2],[-107.43,-87.16],[-111.86,-101.5],[-117.11,-109.37],[-119.87,-111.9],[-122.16,-113.07],[-122.65,-114.41],[-123.81,-115.56],[-126.51,-116.49],[-128.18,-117.08],[-128.62,-118.43],[-131.51,-120.32],[-140.11,-122.62],[-149.07,-124.83],[-158.29,-127.55],[-167.19,-129.71],[-176.88,-131.36],[-186.92,-134.31],[-197.62,-139.99],[-204.22,-145],[-207.48,-147.23],[-210.59,-151.59],[-218.17,-159.47],[-222.87,-165.32],[-225.29,-168.15],[-228.51,-171.71],[-233.18,-176.72],[-236.99,-179.66],[-239.48,-181.1],[-244.95,-184.45],[-261.04,-189.2],[-275.17,-190.02],[-296.49,-187.89],[-304.97,-181.9],[-300.88,-171.8],[-294.02,-159.38],[-282.43,-141.91],[-272.83,-134.92],[-272.36,-133.58],[-270.77,-132.22],[-265.95,-130.12],[-257.62,-126.89],[-240.99,-123.4],[-224.77,-117.07],[-212.85,-100.99],[-209.32,-78.39],[-208.73,-55.17],[-205.04,-43.07],[-204.27,-42.29],[-201.45,-39.34],[-195.68,-34.85],[-194.54,-32.69],[-192.64,-32.84],[-190.76,-30.33],[-173.36,-23.73],[-138.45,-6.02],[-124.88,13.57],[-97.76,-4.91]],"v":[[-80,-17],[-91.95,-23.82],[-100,-32],[-105.99,-54.59],[-107,-82],[-110.24,-96.93],[-116,-108],[-118.94,-111.12],[-122,-113],[-122.48,-113.96],[-123,-115],[-125.63,-116.2],[-128,-117],[-128.47,-117.98],[-129,-119],[-137.21,-121.9],[-146,-124],[-155.25,-126.67],[-164,-129],[-173.66,-130.79],[-183,-133],[-194.18,-138.04],[-203,-144],[-206.44,-146.48],[-209,-149],[-215.66,-156.89],[-222,-164],[-224.49,-167.23],[-227,-170],[-231.64,-175.12],[-236,-179],[-238.67,-180.64],[-241,-182],[-255.58,-187.82],[-272,-190],[-289.56,-188.8],[-304,-184],[-302.46,-175.25],[-297,-165],[-286.46,-147.45],[-273,-135],[-272.52,-134.03],[-272,-133],[-267.56,-130.8],[-263,-129],[-246.48,-124.57],[-231,-120],[-216.36,-106.77],[-210,-86],[-209.11,-62.72],[-205,-43],[-204.53,-42.55],[-204,-42],[-196,-35],[-195,-33],[-193,-33],[-192,-31],[-187,-29],[-147,-13],[-135,18],[-107,1]],"c":true}],"h":1},{"t":141,"s":[{"i":[[-135.41,8.74],[-125.53,13.2],[-112.49,4.51],[-103.23,-1.41],[-95.99,-6.06],[-87.71,-11.01],[-79.72,-16.57],[-82,-18.81],[-88.08,-22.05],[-91.92,-24.53],[-97.83,-29.53],[-100.44,-32.85],[-102.44,-35.88],[-107.2,-51.87],[-107.1,-77.71],[-108.84,-90.51],[-111.17,-96.88],[-113.77,-103.6],[-116.72,-109.55],[-119.56,-112.42],[-122.67,-114.78],[-126.44,-117.17],[-132.07,-120.15],[-147.93,-125.77],[-169.84,-130.12],[-184.09,-133.93],[-194.27,-137.54],[-199.33,-140.61],[-202.31,-143.48],[-203.95,-144.39],[-205.59,-144.66],[-212.25,-151.15],[-219.59,-161.14],[-226.28,-169.02],[-233.04,-176.27],[-235.92,-178.45],[-237.52,-178.66],[-238.69,-179.9],[-239.57,-181.72],[-248.97,-186.09],[-269.34,-189.97],[-287.02,-189.4],[-303.2,-185.76],[-303.33,-176.55],[-296.37,-163.65],[-283.9,-140.46],[-273.38,-134.25],[-266.41,-131.34],[-256.43,-126.94],[-236.7,-123.45],[-218.5,-110.5],[-213.2,-57.5],[-204.03,-42.03],[-203.63,-40.79],[-195.92,-35.11],[-179.04,-27.21],[-166.64,-22.59],[-154.85,-19.44],[-150.45,-15.34],[-147.8,-14.69],[-139.8,-6.39]],"o":[[-129.79,15.69],[-116.88,7.61],[-105.23,-0.13],[-98.61,-4.38],[-91.1,-9.23],[-82.02,-14.68],[-79.96,-17.78],[-86.06,-20.94],[-89.76,-23.02],[-95.96,-27.79],[-99.72,-31.91],[-101.8,-34.84],[-106.4,-43.76],[-107.55,-68.84],[-108.25,-88.32],[-110.3,-94.79],[-112.91,-101.32],[-115.67,-107.72],[-118.47,-111.53],[-121.66,-114.05],[-124.65,-116.09],[-130.15,-119.2],[-140.75,-123.96],[-162.47,-128.85],[-180.45,-132.91],[-190.99,-136.24],[-198.17,-139.63],[-201.4,-142.54],[-203.4,-144.31],[-205.04,-144.57],[-209.46,-147.83],[-217.32,-157.81],[-224.01,-166.38],[-230.79,-173.96],[-235.41,-178.37],[-236.97,-178.59],[-238.41,-179.29],[-239.27,-181.12],[-243.3,-184.1],[-261.99,-189.02],[-280.42,-190.02],[-298.41,-187.27],[-305.15,-181.47],[-298.94,-167.64],[-289.88,-152.21],[-273.67,-135.85],[-270.41,-132.32],[-259.61,-128.66],[-245.29,-123.88],[-224.36,-117.09],[-207.38,-90.49],[-205.05,-43.1],[-203.36,-41.33],[-200.55,-36.95],[-185.03,-29.24],[-168.77,-23.98],[-160.23,-20.27],[-150.57,-16.73],[-149.08,-14.31],[-143.01,-10.54],[-135.73,3.53]],"v":[[-135,18],[-121.21,10.4],[-107,1],[-100.92,-2.89],[-93,-8],[-84.86,-12.85],[-80,-18],[-84.03,-19.87],[-88,-22],[-93.94,-26.16],[-99,-31],[-101.12,-33.84],[-103,-37],[-107.37,-60.36],[-108,-86],[-109.57,-92.65],[-112,-99],[-114.72,-105.66],[-118,-111],[-120.61,-113.24],[-123,-115],[-128.29,-118.19],[-134,-121],[-155.2,-127.31],[-177,-132],[-187.54,-135.08],[-197,-139],[-200.36,-141.58],[-203,-144],[-204.49,-144.48],[-206,-145],[-214.79,-154.48],[-222,-164],[-228.54,-171.49],[-235,-178],[-236.45,-178.52],[-238,-179],[-238.98,-180.51],[-240,-182],[-255.48,-187.55],[-276,-190],[-292.71,-188.34],[-304,-184],[-301.14,-172.1],[-296,-163],[-274,-136],[-273,-134],[-263,-130],[-253,-126],[-230,-120],[-216,-106],[-205,-43],[-204,-42],[-203,-40],[-192,-33],[-172,-25],[-165,-22],[-151,-17],[-150,-15],[-147,-14],[-138,-2]],"c":true}],"h":1},{"t":142,"s":[{"i":[[-82.81,-13.61],[-84.77,-20.74],[-91.04,-24.58],[-94.74,-27.01],[-97.36,-28.35],[-98.42,-29.89],[-98.76,-31.7],[-99.92,-32.69],[-101.71,-33.56],[-103.22,-36.26],[-104.64,-40.05],[-107.84,-55.32],[-107.83,-80.11],[-112.22,-100.93],[-122.39,-115.13],[-133.27,-121.45],[-143.16,-124.93],[-158.37,-128.76],[-175.49,-132.4],[-186.88,-135.92],[-194.11,-139.05],[-200.68,-142.31],[-205.03,-145.21],[-211.73,-151.28],[-218.42,-157.94],[-222.38,-163.16],[-225.78,-167.57],[-229.31,-171.6],[-232.78,-174.45],[-234.31,-175.5],[-234.85,-176.88],[-239.53,-180.65],[-246.58,-185.07],[-258.02,-188.86],[-274.75,-190.74],[-288.3,-189.22],[-302.98,-186.23],[-304.32,-179.68],[-300.96,-172.03],[-293.18,-156.6],[-279.78,-139.16],[-274.68,-136.48],[-274.21,-135.12],[-264.69,-130.65],[-250.03,-126.13],[-243.68,-124.62],[-239.95,-124.33],[-237.38,-123.16],[-234.96,-121.42],[-229.31,-118.84],[-224.79,-115.65],[-219.03,-109.99],[-214.78,-103.36],[-211.17,-82.15],[-209.76,-51.68],[-185.75,-29.9],[-144.45,-16.42],[-136.94,2.08],[-135.88,13.96],[-121.04,10.27],[-99.73,-3.64]],"o":[[-82.24,-19.45],[-89.17,-23.3],[-93.81,-26.58],[-96.52,-27.89],[-98.28,-29.29],[-98.66,-31.09],[-99.32,-32.41],[-101.12,-33.26],[-102.65,-34.98],[-104.22,-38.79],[-107.42,-47.52],[-108.04,-71.62],[-110.02,-94.87],[-118.4,-111.06],[-130.19,-119.98],[-139.75,-123.92],[-152.62,-127.57],[-169.8,-131.18],[-184.08,-134.89],[-191.9,-138],[-198.91,-141.46],[-203.74,-144.19],[-209.27,-149.06],[-216.31,-155.72],[-221.24,-161.62],[-224.65,-166.13],[-228.18,-170.38],[-231.61,-173.64],[-234.14,-175.06],[-234.67,-176.41],[-237.24,-178.86],[-244.2,-183.75],[-252.89,-187.5],[-268.94,-190.48],[-282.81,-189.61],[-298.39,-187.53],[-304.84,-182.17],[-302.38,-174.61],[-297.04,-163.77],[-284.55,-144.29],[-274.82,-136.92],[-274.37,-135.58],[-269.67,-132.59],[-254.87,-127.42],[-244.95,-124.71],[-241.18,-124.43],[-238.15,-123.7],[-235.79,-122.02],[-231.17,-119.76],[-226.12,-116.78],[-220.89,-112.06],[-215.98,-105.64],[-211.29,-92.81],[-210.41,-61.59],[-199.77,-33.95],[-158.09,-21.14],[-137.75,-1.15],[-136,9.64],[-128.43,14.84],[-106.69,1.03],[-88.22,-11.09]],"v":[[-79,-18],[-86.97,-22.02],[-93,-26],[-95.63,-27.45],[-98,-29],[-98.54,-30.49],[-99,-32],[-100.52,-32.98],[-102,-34],[-103.72,-37.52],[-105,-41],[-107.94,-63.47],[-109,-88],[-115.31,-106],[-127,-118],[-136.51,-122.69],[-147,-126],[-164.08,-129.97],[-181,-134],[-189.39,-136.96],[-196,-140],[-202.21,-143.25],[-207,-147],[-214.02,-153.5],[-220,-160],[-223.52,-164.65],[-227,-169],[-230.46,-172.62],[-234,-175],[-234.49,-175.95],[-235,-177],[-241.86,-182.2],[-249,-186],[-263.48,-189.67],[-280,-190],[-293.34,-188.38],[-304,-184],[-303.35,-177.15],[-300,-170],[-288.87,-150.44],[-275,-137],[-274.52,-136.03],[-274,-135],[-259.78,-129.04],[-246,-125],[-242.43,-124.53],[-239,-124],[-236.58,-122.59],[-234,-121],[-227.72,-117.81],[-223,-114],[-217.5,-107.81],[-214,-101],[-210.79,-71.87],[-206,-45],[-171.92,-25.52],[-139,-4],[-136.47,5.86],[-136,19],[-113.87,5.65],[-93,-8]],"c":true}],"h":1},{"t":143,"s":[{"i":[[-79.75,-14.67],[-88.7,-23.2],[-99.25,-30.91],[-108.37,-55.63],[-109.22,-93.66],[-115.29,-106.36],[-117.5,-109.38],[-123.5,-115.77],[-134.32,-122.19],[-159.6,-129.83],[-190.71,-136.65],[-201.67,-142.64],[-205.18,-145.37],[-206.95,-146.39],[-208.59,-146.66],[-212.06,-149.88],[-216.41,-155.04],[-219.38,-159.06],[-223.32,-162.97],[-228.17,-169.69],[-235.8,-177.54],[-240.36,-180.48],[-243.73,-182.29],[-247.26,-184.21],[-250.65,-185.59],[-252.56,-186.52],[-253.74,-187.92],[-258.03,-188.94],[-265.01,-189.83],[-272.02,-190.36],[-280.29,-190.32],[-290.77,-188.96],[-303.39,-186.11],[-304.69,-180.64],[-301.09,-173.43],[-285.44,-142.25],[-275.37,-136.25],[-273.51,-136.23],[-272.42,-134.23],[-268.47,-132.63],[-239.36,-126.3],[-225.75,-116.61],[-220.26,-111.89],[-213.77,-100.23],[-212.26,-71.04],[-207.23,-46.28],[-201.26,-39.47],[-197.37,-36.25],[-195.51,-36.23],[-194.43,-34.23],[-190.42,-32.55],[-157.77,-23.68],[-145.28,-12.59],[-135.69,5.43],[-131.48,16.53],[-118.9,9.01],[-109.32,2.49],[-104.47,-0.06],[-101.24,-3.2],[-94.32,-6.47],[-90.3,-10.13]],"o":[[-84.08,-21.25],[-96.28,-28.03],[-107.76,-43.55],[-109.1,-80.69],[-114.54,-105.17],[-116.77,-108.46],[-120.59,-113.17],[-130.36,-120.28],[-148.74,-127.76],[-180.58,-134.28],[-200.33,-141.7],[-204.1,-144.47],[-206.4,-146.31],[-208.04,-146.57],[-210.36,-148.11],[-215.09,-153.35],[-217.97,-157.57],[-222.05,-161.76],[-225.77,-166.67],[-233.19,-175.13],[-239.25,-179.83],[-242.6,-181.71],[-246.19,-183.66],[-249.49,-185.17],[-252.19,-186.06],[-253.33,-187.45],[-255.77,-188.52],[-262.65,-189.6],[-269.38,-190.2],[-277.48,-190.42],[-285.83,-189.66],[-299.55,-187.19],[-305.14,-182.92],[-302.66,-175.89],[-294.32,-158.34],[-275.68,-137.85],[-274.54,-135.69],[-272.64,-135.84],[-271.06,-133.49],[-255.17,-126.93],[-227.28,-118.96],[-221.85,-113.02],[-216.85,-106.77],[-210.49,-86.5],[-210.45,-56.6],[-203.45,-42.34],[-197.68,-37.85],[-196.54,-35.69],[-194.64,-35.84],[-192.82,-33.36],[-174.49,-26.4],[-146.23,-13.42],[-138.07,-3.64],[-133.62,19.15],[-123.68,11.72],[-111.45,4.43],[-105.74,0.19],[-101.82,-1.75],[-97.65,-5.5],[-90.85,-8.76],[-85.01,-13.67]],"v":[[-78,-19],[-92.49,-25.62],[-102,-35],[-108.73,-68.16],[-114,-104],[-116.03,-107.41],[-118,-110],[-126.93,-118.03],[-139,-124],[-170.09,-132.06],[-199,-141],[-202.89,-143.55],[-206,-146],[-207.49,-146.48],[-209,-147],[-213.58,-151.61],[-217,-156],[-220.72,-160.41],[-224,-164],[-230.68,-172.41],[-238,-179],[-241.48,-181.09],[-245,-183],[-248.38,-184.69],[-252,-186],[-252.94,-186.98],[-254,-188],[-260.34,-189.27],[-267,-190],[-274.75,-190.39],[-283,-190],[-295.16,-188.08],[-304,-185],[-303.67,-178.26],[-300,-171],[-276,-138],[-275,-136],[-273,-136],[-272,-134],[-267,-132],[-229,-120],[-224,-115],[-219,-110],[-213,-97],[-211,-61],[-206,-45],[-198,-38],[-197,-36],[-195,-36],[-194,-34],[-189,-32],[-148,-15],[-144,-11],[-137,19],[-129,15],[-114,6],[-107,1],[-103,-1],[-100,-4],[-92,-8],[-89,-11]],"c":true}],"h":1},{"t":144,"s":[{"i":[[-79.79,-14.64],[-88.43,-24.05],[-98.92,-30.76],[-108.13,-48.92],[-109.24,-74.94],[-111.63,-94.43],[-116.95,-108.48],[-123.87,-116.19],[-133.28,-122.4],[-143.64,-126.45],[-154.42,-129.17],[-164.98,-131.63],[-175.59,-134.16],[-186.62,-136.7],[-196.97,-139.49],[-203.38,-143.08],[-207.72,-146.89],[-210.68,-149.34],[-213.29,-151.32],[-222.61,-161.76],[-235.04,-176.71],[-244.03,-182.54],[-251.3,-186.41],[-257.25,-188.3],[-264.66,-189.78],[-279.95,-190.29],[-302.77,-187.28],[-303.79,-176.09],[-295.5,-161.83],[-293.22,-157.59],[-290.84,-152.88],[-288.17,-149.95],[-285.89,-147.05],[-282.01,-142.69],[-277.85,-139.3],[-271.58,-135.09],[-264.86,-131.99],[-254.96,-128.77],[-245.37,-126.11],[-237.86,-123.79],[-231.79,-121.76],[-229.32,-119.54],[-226.7,-117.57],[-217.52,-107.63],[-212.57,-87.36],[-211.23,-64.45],[-207.81,-48.01],[-204.58,-44.08],[-204.34,-42.37],[-201,-39.4],[-194.98,-36.02],[-184.43,-31.09],[-171.3,-26.52],[-162.12,-23.53],[-154.96,-21.24],[-150.46,-17.99],[-147.08,-14.16],[-141.47,-8.5],[-137.86,8.33],[-108.31,1.69],[-91.19,-9.53]],"o":[[-83.97,-22.17],[-95.9,-28.35],[-106.51,-41.2],[-109.5,-65.79],[-110.41,-88.94],[-114.9,-104.2],[-121.23,-113.74],[-129.9,-120.52],[-140.18,-125.37],[-150.76,-128.36],[-161.43,-130.8],[-172.05,-133.31],[-182.88,-135.95],[-193.66,-138.46],[-201.77,-141.88],[-206.36,-145.58],[-209.78,-148.68],[-212.43,-150.66],[-218.58,-156.4],[-230.84,-171.91],[-241.63,-181.08],[-248.86,-185.2],[-254.92,-187.66],[-262.12,-189.36],[-271.31,-190.4],[-295.67,-188.73],[-305.8,-181.67],[-298.65,-166.17],[-294.05,-159.4],[-291.61,-154.33],[-288.97,-150.93],[-286.63,-148.02],[-283.33,-144.04],[-279.27,-140.32],[-273.65,-136.35],[-267.19,-132.91],[-258.28,-129.72],[-248.51,-126.97],[-240.21,-124.41],[-233.65,-122.46],[-230.22,-120.25],[-227.56,-118.2],[-220.73,-112.7],[-213.44,-94.96],[-211.58,-71.19],[-209.35,-52.86],[-204.66,-44.64],[-204.42,-42.94],[-202.76,-40.64],[-197.11,-37.09],[-188.78,-32.83],[-175.69,-27.94],[-164.64,-24.16],[-157.28,-22.07],[-151.67,-19.16],[-148.17,-15.49],[-143.21,-10.01],[-137.14,1.79],[-123.01,11.35],[-92.88,-7.95],[-85.01,-13.67]],"v":[[-78,-19],[-92.16,-26.2],[-102,-35],[-108.81,-57.35],[-110,-84],[-113.27,-99.32],[-119,-111],[-126.89,-118.35],[-137,-124],[-147.2,-127.4],[-158,-130],[-168.52,-132.47],[-179,-135],[-190.14,-137.58],[-200,-141],[-204.87,-144.33],[-209,-148],[-211.55,-150],[-214,-152],[-226.72,-166.84],[-240,-180],[-246.44,-183.87],[-253,-187],[-259.68,-188.83],[-267,-190],[-287.81,-189.51],[-304,-185],[-301.22,-171.13],[-295,-161],[-292.42,-155.96],[-290,-152],[-287.4,-148.98],[-285,-146],[-280.64,-141.5],[-276,-138],[-269.38,-134],[-262,-131],[-251.74,-127.87],[-242,-125],[-235.75,-123.13],[-231,-121],[-228.44,-118.87],[-226,-117],[-215.48,-101.3],[-212,-78],[-210.29,-58.65],[-205,-45],[-204.5,-43.51],[-204,-42],[-199.05,-38.24],[-193,-35],[-180.06,-29.52],[-167,-25],[-159.7,-22.8],[-153,-20],[-149.31,-16.74],[-146,-13],[-140,-5],[-136,20],[-96,-6],[-89,-11]],"c":true}],"h":1},{"t":145,"s":[{"i":[[-77.4,-16.4],[-84.63,-22.57],[-92.57,-27.26],[-97.18,-30.34],[-100.29,-32.21],[-101.42,-33.92],[-101.75,-35.67],[-102.65,-36.64],[-103.7,-37.5],[-109.19,-52.28],[-110.17,-78.18],[-112.69,-96.63],[-118.01,-109.56],[-122.02,-114.35],[-124.81,-116.46],[-126.32,-117.51],[-126.83,-118.88],[-134.9,-123.6],[-148.32,-127.8],[-160.25,-130.82],[-170.73,-133.28],[-181.15,-135.4],[-191.83,-137.76],[-197.61,-140.35],[-201.58,-143.18],[-204.53,-144.62],[-207.27,-145.5],[-208.36,-146.55],[-208.8,-147.81],[-209.92,-148.43],[-211.59,-148.66],[-214.19,-150.97],[-217.57,-154.44],[-218.37,-155.94],[-218.67,-157.63],[-224.43,-163.82],[-232.35,-171.44],[-237.5,-176.72],[-241.36,-180.91],[-244.34,-182.63],[-247.11,-183.54],[-253.28,-186.66],[-262.37,-189.63],[-280.3,-190.41],[-302.83,-187.22],[-304.57,-179.72],[-301.2,-172.53],[-296.6,-161.87],[-289.04,-150.58],[-282.69,-143.25],[-278.12,-139.42],[-270.69,-134.93],[-262.38,-132.05],[-251.72,-128.09],[-240.68,-125.55],[-214.8,-106.08],[-213.37,-58],[-158.17,-31.47],[-137.29,4.12],[-116.96,7.38],[-91.34,-9.16]],"o":[[-81.35,-21.18],[-90.25,-25.61],[-96.03,-29.74],[-99.31,-31.58],[-101.3,-33.34],[-101.65,-35.09],[-102.3,-36.39],[-103.35,-37.2],[-107.86,-44.44],[-110.35,-69.15],[-111.43,-91.6],[-115.98,-105.61],[-121.11,-113.37],[-123.87,-115.9],[-126.15,-117.07],[-126.65,-118.41],[-130.74,-121.7],[-143.69,-126.65],[-156.64,-129.93],[-167.3,-132.5],[-177.49,-134.77],[-188.33,-136.89],[-196.32,-139.52],[-200.24,-142.18],[-203.64,-144.37],[-206.34,-145.19],[-208.21,-146.14],[-208.65,-147.39],[-209.38,-148.35],[-211.03,-148.58],[-212.9,-149.75],[-216.52,-153.31],[-218.29,-155.38],[-218.57,-157.07],[-221.76,-161.1],[-229.73,-168.99],[-236.31,-175.27],[-240.02,-179.54],[-243.54,-182.36],[-246.13,-183.22],[-250.6,-185.34],[-259.17,-188.8],[-271.38,-190.55],[-296.02,-188.74],[-305.22,-182.7],[-302.56,-174.63],[-298.83,-166.33],[-291.7,-154],[-284.13,-144.79],[-279.69,-140.57],[-273.25,-136.16],[-265.25,-132.88],[-255.07,-129.78],[-244.37,-125.93],[-222.27,-117.82],[-211.62,-74.14],[-196.99,-27.52],[-138.6,-4.58],[-127.01,14.85],[-98.94,-4.16],[-81.86,-15.41]],"v":[[-77,-20],[-87.44,-24.09],[-95,-29],[-98.24,-30.96],[-101,-33],[-101.54,-34.5],[-102,-36],[-103,-36.92],[-104,-38],[-109.77,-60.72],[-111,-87],[-114.33,-101.12],[-120,-112],[-122.94,-115.12],[-126,-117],[-126.49,-117.96],[-127,-119],[-139.3,-125.12],[-153,-129],[-163.77,-131.66],[-174,-134],[-184.74,-136.15],[-195,-139],[-198.92,-141.27],[-203,-144],[-205.43,-144.9],[-208,-146],[-208.51,-146.97],[-209,-148],[-210.48,-148.51],[-212,-149],[-215.35,-152.14],[-218,-155],[-218.47,-156.51],[-219,-158],[-227.08,-166.41],[-235,-174],[-238.76,-178.13],[-243,-182],[-245.23,-182.92],[-248,-184],[-256.23,-187.73],[-266,-190],[-288.16,-189.58],[-304,-185],[-303.57,-177.17],[-301,-172],[-294.15,-157.94],[-286,-147],[-281.19,-141.91],[-276,-138],[-267.97,-133.9],[-259,-131],[-248,-127],[-237,-124],[-213,-88],[-208,-48],[-144,-12],[-138,20],[-107,1],[-84,-14]],"c":true}],"h":1},{"t":146,"s":[{"i":[[-80.23,-15.55],[-88.6,-25.03],[-103.05,-35.56],[-110.47,-55.59],[-110.91,-81.68],[-114.64,-101.22],[-122.28,-114.4],[-125.64,-117.42],[-126.59,-117.68],[-128.87,-119.81],[-131.32,-122.62],[-134.18,-123.87],[-138.08,-124.72],[-139.56,-125.51],[-140.74,-126.91],[-160.25,-132.08],[-190.17,-137.7],[-199.68,-141.65],[-202.38,-142.68],[-204.08,-143.89],[-205.38,-145.59],[-207.87,-146.88],[-210.49,-147.61],[-215.36,-152.03],[-221.16,-159.01],[-226.25,-164.49],[-230.82,-169.54],[-232.98,-172.36],[-234.41,-174.42],[-235.91,-175.47],[-237.52,-175.66],[-238.71,-176.88],[-239.59,-178.67],[-241.48,-180.01],[-243.32,-180.69],[-244.32,-181.51],[-244.8,-182.88],[-248.11,-184.6],[-253.3,-186.39],[-264.24,-189.73],[-280.92,-190.73],[-295.57,-188.79],[-303.39,-184.88],[-297.5,-163.62],[-285.45,-144.74],[-278.29,-139.79],[-275.69,-137.4],[-252.97,-130.36],[-232.88,-122.84],[-229.85,-120.81],[-219.55,-110.82],[-215.01,-65.96],[-208.26,-50.51],[-207.83,-47.2],[-200.68,-40.2],[-179.32,-31.19],[-157.26,-24.16],[-154.18,-21.7],[-137.9,-1.05],[-117.41,7.67],[-96.39,-5.54]],"o":[[-82.57,-22.5],[-98.84,-31.56],[-109.52,-47.5],[-111.17,-72.68],[-112.75,-95.77],[-119.41,-110.53],[-125.34,-117.33],[-126.26,-117.59],[-127.96,-118.75],[-130.55,-121.74],[-132.89,-123.51],[-136.77,-124.47],[-139.19,-125.06],[-140.34,-126.43],[-149.92,-130.24],[-180.38,-135.81],[-198.74,-141.31],[-201.5,-142.33],[-203.64,-143.34],[-204.95,-145.01],[-206.87,-146.57],[-209.68,-147.39],[-213.28,-149.78],[-219.3,-156.65],[-224.59,-162.72],[-229.36,-167.9],[-232.53,-171.65],[-233.92,-173.75],[-235.4,-175.38],[-236.97,-175.61],[-238.42,-176.29],[-239.3,-178.07],[-240.81,-179.66],[-242.73,-180.52],[-244.17,-181.08],[-244.64,-182.42],[-246.46,-183.91],[-251.53,-185.85],[-259.54,-188.61],[-274.94,-190.79],[-291.88,-189.6],[-301.33,-186.43],[-305.99,-176.89],[-292.39,-154.7],[-279.1,-140.83],[-276.12,-138.46],[-265.54,-131.45],[-240.24,-126.07],[-231.16,-121.2],[-223.95,-115.16],[-211.58,-89.52],[-209.85,-51.59],[-207.31,-48.66],[-205.22,-43.42],[-188.75,-33.06],[-165.33,-26.4],[-154.15,-21.18],[-140.24,-13.42],[-127.89,15.13],[-101.61,-2.45],[-85.92,-12.26]],"v":[[-76,-20],[-93.72,-28.29],[-106,-41],[-110.82,-64.13],[-112,-90],[-117.03,-105.87],[-125,-117],[-125.95,-117.5],[-127,-118],[-129.71,-120.78],[-132,-123],[-135.48,-124.17],[-139,-125],[-139.95,-125.97],[-141,-127],[-170.32,-133.95],[-198,-141],[-200.59,-141.99],[-203,-143],[-204.52,-144.45],[-206,-146],[-208.78,-147.13],[-211,-148],[-217.33,-154.34],[-223,-161],[-227.8,-166.19],[-232,-171],[-233.45,-173.06],[-235,-175],[-236.44,-175.54],[-238,-176],[-239.01,-177.47],[-240,-179],[-242.1,-180.27],[-244,-181],[-244.48,-181.97],[-245,-183],[-249.82,-185.22],[-255,-187],[-269.59,-190.26],[-288,-190],[-298.45,-187.61],[-304,-183],[-296,-161],[-281,-142],[-277,-139],[-275,-137],[-243,-127],[-232,-122],[-229,-120],[-217,-104],[-210,-52],[-208,-50],[-207,-46],[-197,-38],[-170,-28],[-155,-22],[-153,-21],[-139,21],[-107,1],[-91,-9]],"c":true}],"h":1},{"t":147,"s":[{"i":[[-76.06,-17.14],[-79.69,-22.24],[-85.45,-24.26],[-90.07,-26.52],[-95.52,-29.53],[-101.16,-34.87],[-107.79,-43.42],[-112.01,-62.78],[-112.6,-88.03],[-115.84,-102.11],[-119.61,-109.93],[-121.76,-113.46],[-122.58,-115.53],[-125.01,-117.58],[-129.47,-120.49],[-130.64,-121.47],[-131.46,-121.65],[-133.12,-123.01],[-134.72,-124.85],[-139.86,-127.05],[-148.21,-129.23],[-163.01,-132.95],[-180.46,-136.58],[-192.03,-139.4],[-200.58,-141.76],[-206.74,-145.46],[-211.82,-150.05],[-214.47,-151.84],[-216.48,-152.52],[-218.76,-154.89],[-221.15,-158.03],[-223.98,-161.05],[-227.08,-163.95],[-231.55,-169.49],[-236.88,-176.27],[-239.58,-178.11],[-240.77,-177.89],[-241.65,-179.75],[-251.63,-186.11],[-288.42,-190.77],[-302.76,-186.03],[-299.79,-168.1],[-287.53,-146.67],[-271.01,-135.52],[-245.97,-128.52],[-215.58,-105.01],[-214.18,-62.74],[-205.31,-44.75],[-192.96,-36.51],[-156.44,-26.66],[-137.04,4.08],[-137.52,19.85],[-132.5,17.91],[-129.15,14.75],[-124.29,12.83],[-121.08,9.7],[-116.37,7.86],[-114.45,5.34],[-111.71,4.45],[-94.23,-7.68],[-84.07,-14.3]],"o":[[-77.47,-21.6],[-83.68,-23.56],[-88.06,-25.5],[-93.8,-28.54],[-98.52,-32.41],[-105.8,-40.38],[-111.46,-54.27],[-112.58,-79.67],[-114.78,-98.9],[-118.26,-107.63],[-121.47,-112.7],[-122.31,-114.88],[-123.53,-116.58],[-127.98,-119.53],[-130.41,-121.39],[-131.16,-121.6],[-132.52,-122.33],[-134.23,-124.27],[-137.25,-126.18],[-145.34,-128.57],[-157.03,-131.66],[-174.73,-135.41],[-188.99,-138.77],[-197.83,-140.9],[-204.83,-143.94],[-210.23,-148.52],[-213.73,-151.58],[-215.85,-152.31],[-217.94,-153.87],[-220.37,-156.97],[-222.94,-160.07],[-226.05,-162.99],[-229.86,-167.1],[-235.06,-174.07],[-239.19,-178.16],[-240.36,-177.97],[-241.31,-178.14],[-247.21,-183.74],[-267.82,-190.92],[-301.03,-186.7],[-306.1,-177.89],[-294.05,-158.18],[-276.39,-139.28],[-254.76,-129.68],[-222.15,-118],[-213.15,-74.29],[-209.48,-49.83],[-199.14,-40.09],[-173.87,-29.23],[-140.4,-8.55],[-137.65,22.32],[-134.29,18.05],[-129.66,16.18],[-126.48,13],[-121.96,11.33],[-118.37,7.94],[-114.57,6.73],[-113.21,4.41],[-103.02,-1.08],[-85.12,-13.12],[-80.36,-16.71]],"v":[[-75,-21],[-81.68,-22.9],[-87,-25],[-91.93,-27.53],[-96,-30],[-103.48,-37.62],[-109,-47],[-112.29,-71.22],[-114,-95],[-117.05,-104.87],[-121,-112],[-122.03,-114.17],[-123,-116],[-126.5,-118.55],[-130,-121],[-130.9,-121.53],[-132,-122],[-133.68,-123.64],[-135,-125],[-142.6,-127.81],[-151,-130],[-168.87,-134.18],[-186,-138],[-194.93,-140.15],[-203,-143],[-208.49,-146.99],[-213,-151],[-215.16,-152.08],[-217,-153],[-219.57,-155.93],[-222,-159],[-225.02,-162.02],[-228,-165],[-233.3,-171.78],[-239,-178],[-239.97,-178.04],[-241,-178],[-242,-180],[-258,-188],[-297,-188],[-304,-183],[-298,-165],[-282,-143],[-264,-133],[-238,-125],[-214,-85],[-211,-54],[-203,-43],[-189,-35],[-147,-16],[-140,21],[-136,19],[-131,17],[-128,14],[-123,12],[-120,9],[-115,7],[-114,5],[-111,4],[-87,-12],[-83,-15]],"c":true}],"h":1},{"t":148,"s":[{"i":[[-84.01,-13.11],[-82.95,-24.32],[-92.47,-28.4],[-98.39,-32.38],[-102.38,-36.63],[-103.51,-38.32],[-104.88,-38.83],[-111.46,-56.26],[-112.92,-89.11],[-116.95,-104.22],[-120.82,-111.24],[-127.41,-119.48],[-138.13,-126.45],[-166.23,-134.13],[-203.77,-142.27],[-211.92,-149.43],[-213.59,-149.66],[-220.99,-156.77],[-230.04,-167.87],[-236.34,-174.38],[-241.77,-179.18],[-244.86,-181.17],[-247.24,-182.53],[-248.63,-183.6],[-249.65,-184.82],[-264.07,-189.49],[-292.11,-190.2],[-304.48,-183.71],[-302.54,-174.63],[-298.98,-166.62],[-296.04,-161.68],[-294.57,-158.97],[-294.25,-157.41],[-289.42,-150.61],[-280.53,-142.14],[-277.68,-140.49],[-277.19,-139.12],[-272.63,-136.92],[-265.37,-134.63],[-263.22,-133.69],[-261.76,-133.25],[-252.76,-130.31],[-240.81,-126.23],[-234.7,-123.53],[-231.85,-121.79],[-230.08,-120.57],[-228.41,-120.34],[-225.91,-117.84],[-224.34,-114.76],[-223.49,-113.68],[-222.12,-113.19],[-221.22,-111.63],[-220.24,-109.5],[-214.95,-87.25],[-211.9,-52.45],[-195.58,-38.21],[-155.3,-27.79],[-139.28,3.48],[-135.21,18.37],[-129.65,16.03],[-114.12,5.56]],"o":[[-78.97,-22.87],[-89.7,-27.09],[-96.69,-31.07],[-101.23,-35.16],[-103.07,-38.15],[-104.41,-38.65],[-110,-45.95],[-112.92,-77.84],[-115.78,-101.35],[-119.47,-109.17],[-124.34,-116.5],[-134.31,-124.45],[-152.6,-132.24],[-191.82,-139.14],[-211.38,-149.35],[-213.03,-149.58],[-217.72,-153.09],[-227.15,-164.16],[-234.45,-172.54],[-239.99,-177.7],[-243.99,-180.66],[-246.48,-182.1],[-248.3,-183.19],[-249.3,-184.41],[-255.01,-187.64],[-282.61,-190.77],[-302.96,-186.15],[-304.26,-177.95],[-299.95,-168.53],[-297.02,-163.19],[-294.7,-159.51],[-294.35,-157.92],[-292.16,-154.03],[-283.61,-144.66],[-277.83,-140.93],[-277.36,-139.58],[-275.2,-137.86],[-267.72,-135.31],[-263.59,-133.81],[-262.3,-133.41],[-257.1,-131.7],[-244.61,-127.58],[-236.02,-124.14],[-232.61,-122.36],[-230.62,-120.65],[-228.97,-120.42],[-226.74,-118.95],[-224.71,-115.74],[-223.92,-113.83],[-222.58,-113.36],[-221.6,-112.38],[-220.55,-110.19],[-215.5,-99.77],[-213.15,-63.59],[-202.08,-41.71],[-173.77,-29.59],[-139.96,-6.7],[-136.78,22.09],[-131.62,16.15],[-120.76,10.45],[-95.6,-6.3]],"v":[[-74,-21],[-86.33,-25.7],[-95,-30],[-99.81,-33.77],[-103,-38],[-103.96,-38.49],[-105,-39],[-112.19,-67.05],[-115,-98],[-118.21,-106.69],[-122,-113],[-130.86,-121.97],[-142,-128],[-179.03,-136.63],[-211,-149],[-212.47,-149.51],[-214,-150],[-224.07,-160.47],[-233,-171],[-238.17,-176.04],[-243,-180],[-245.67,-181.64],[-248,-183],[-248.96,-184],[-250,-185],[-273.34,-190.13],[-298,-188],[-304.37,-180.83],[-301,-171],[-298,-164.91],[-295,-160],[-294.46,-158.44],[-294,-157],[-286.52,-147.63],[-278,-141],[-277.52,-140.03],[-277,-139],[-270.17,-136.12],[-264,-134],[-262.76,-133.55],[-261,-133],[-248.69,-128.95],[-238,-125],[-233.65,-122.95],[-231,-121],[-229.53,-120.49],[-228,-120],[-225.31,-116.79],[-224,-114],[-223.04,-113.52],[-222,-113],[-220.89,-110.91],[-220,-109],[-214.05,-75.42],[-206,-46],[-190,-36],[-146,-15],[-140,21],[-133,17],[-128,15],[-107,1]],"c":true}],"h":1},{"t":149,"s":[{"i":[[-73.39,-18.62],[-81.32,-24.47],[-90.61,-27.64],[-94.27,-30.09],[-96.12,-32.36],[-98,-33.43],[-99.6,-33.7],[-103.53,-37.27],[-108.01,-43.82],[-113.65,-67.31],[-115.12,-102.01],[-120.8,-111.94],[-122.53,-113.34],[-123.68,-115.31],[-124.66,-117.63],[-129.25,-121.76],[-138.01,-126.71],[-165.39,-134.82],[-203.82,-142.88],[-213.93,-150.49],[-216.31,-152.43],[-217.95,-153.64],[-219.6,-154.63],[-222.93,-158.26],[-226.67,-163.54],[-235.3,-172.69],[-247.8,-182.95],[-253.76,-186.05],[-256.27,-187.75],[-265.33,-189.75],[-279.38,-190.18],[-291.73,-189.39],[-302.8,-185.94],[-303.74,-175.43],[-297.19,-161.94],[-290.6,-152.23],[-281.21,-142.33],[-268.33,-135.76],[-251.86,-130.96],[-242.2,-127.79],[-236.25,-125.69],[-234.66,-124.47],[-234.2,-123.15],[-231.76,-122.55],[-230.5,-120.38],[-227.79,-119.8],[-225.58,-116.78],[-218.25,-104.53],[-216.73,-65.6],[-209.34,-51.55],[-185.45,-36.04],[-167.12,-28.85],[-159.98,-27.07],[-157.4,-24.3],[-154.76,-23.55],[-144.93,-14.78],[-140.57,10.17],[-118,8.04],[-92.11,-9.27],[-82.27,-14.15],[-80.47,-16.64]],"o":[[-77.77,-23.4],[-87.74,-26.59],[-93.71,-29.41],[-95.48,-31.56],[-97.45,-33.33],[-99.08,-33.61],[-101.77,-35.35],[-106.65,-41.5],[-113.34,-55.55],[-114.54,-90.54],[-120.28,-111.52],[-121.92,-112.85],[-123.35,-114.49],[-124.34,-116.88],[-126.75,-119.91],[-134.88,-125.16],[-151.73,-132.64],[-191.43,-139.94],[-213.03,-149.77],[-215.57,-151.82],[-217.39,-153.32],[-219.05,-154.3],[-221.6,-156.49],[-225.47,-161.79],[-231.4,-168.71],[-243.5,-179.81],[-252.87,-185.42],[-255.45,-187.21],[-260.39,-189.16],[-274.83,-190.26],[-286.83,-189.67],[-299.71,-187.52],[-305.14,-180.21],[-299.76,-166.3],[-293.74,-156.32],[-284.34,-145.24],[-273.65,-137.78],[-257.44,-132.35],[-244.32,-128.44],[-238.16,-126.41],[-234.81,-124.9],[-234.35,-123.6],[-233.15,-122.36],[-230.53,-121.66],[-229.04,-119.28],[-226.28,-118.28],[-221.35,-111.11],[-213.68,-84.26],[-210.78,-52.52],[-201.31,-38.63],[-168.87,-30.26],[-162.49,-26.99],[-157.63,-25.8],[-156.16,-23.37],[-149.13,-19.48],[-139.21,-0.64],[-129.02,16.08],[-99.74,-3.65],[-84.59,-13.86],[-80.55,-15.3],[-77.63,-18.78]],"v":[[-74,-22],[-84.53,-25.53],[-93,-29],[-94.88,-30.82],[-97,-33],[-98.54,-33.52],[-100,-34],[-105.09,-39.38],[-109,-46],[-114.09,-78.92],[-120,-111],[-121.36,-112.4],[-123,-114],[-124.01,-116.09],[-125,-118],[-132.07,-123.46],[-141,-128],[-178.41,-137.38],[-212,-149],[-214.75,-151.15],[-217,-153],[-218.5,-153.97],[-220,-155],[-224.2,-160.02],[-228,-165],[-239.4,-176.25],[-252,-185],[-254.6,-186.63],[-257,-188],[-270.08,-190],[-282,-190],[-295.72,-188.46],[-304,-183],[-301.75,-170.86],[-296,-160],[-287.47,-148.74],[-279,-141],[-262.88,-134.05],[-246,-129],[-240.18,-127.1],[-235,-125],[-234.51,-124.03],[-234,-123],[-231,-122],[-230,-120],[-227,-119],[-225,-116],[-217,-99],[-211,-53],[-209,-51],[-171,-31],[-165,-28],[-158,-26],[-157,-24],[-154,-23],[-143,-10],[-141,22],[-107,1],[-86,-13],[-81,-15],[-80,-17]],"c":true}],"h":1},{"t":150,"s":[{"i":[[-77.69,-16.84],[-78.54,-24.17],[-85.27,-26.22],[-90.6,-28.71],[-97.31,-32.34],[-100.9,-35.62],[-104.92,-39.51],[-113.54,-62.88],[-115.4,-101.92],[-122.58,-113.93],[-125.6,-116.46],[-126.41,-118.03],[-126.6,-119.6],[-127.59,-120.38],[-128.76,-120.85],[-129.8,-121.66],[-130.6,-122.71],[-142.1,-129.3],[-162.25,-134.49],[-186.47,-139.33],[-208.22,-146.49],[-218.64,-154.49],[-225.56,-161.43],[-228.95,-164.71],[-230.6,-165.58],[-231.73,-167.22],[-232.52,-169.46],[-236.32,-173.23],[-241.42,-176.81],[-243.37,-178.57],[-243.78,-179.8],[-244.91,-180.46],[-246.52,-180.66],[-249.85,-183.29],[-253.65,-186.43],[-263.77,-189.32],[-280.37,-190.3],[-293.01,-189.33],[-302.8,-185.92],[-303.89,-175.63],[-297.35,-163.23],[-290.28,-152.19],[-281.41,-143.04],[-274.94,-139.3],[-270.85,-137.67],[-267.1,-136.25],[-264.88,-135.3],[-249.36,-130.5],[-235.53,-125.69],[-231.78,-121.67],[-227.81,-119.88],[-226.4,-116.58],[-225.13,-115.14],[-223.81,-112.85],[-222.7,-111.18],[-219.13,-61.95],[-207.67,-47.72],[-203.01,-44.3],[-160.99,-32.54],[-139.78,1.92],[-106.47,0.53]],"o":[[-75.91,-23.31],[-83.22,-25.63],[-88.2,-27.54],[-95.16,-31.11],[-99.43,-34.37],[-103.64,-38.19],[-112.59,-50.17],[-114.95,-88.76],[-121.53,-112.95],[-124.61,-115.69],[-126.36,-117.48],[-126.53,-119.09],[-127.21,-120.2],[-128.36,-120.71],[-129.5,-121.31],[-130.35,-122.36],[-136.23,-126.81],[-155.11,-133.14],[-178.11,-137.58],[-201.52,-143.79],[-216.1,-152.28],[-223.37,-159.07],[-228.4,-164.42],[-230.05,-165.29],[-231.47,-166.49],[-232.26,-168.71],[-234.61,-171.82],[-239.72,-175.72],[-243.22,-178.17],[-243.65,-179.38],[-244.4,-180.38],[-245.97,-180.6],[-248.52,-182.07],[-252.42,-185.46],[-258.34,-188.42],[-274.79,-190.26],[-288.61,-189.62],[-300.11,-187.48],[-305.22,-180.02],[-299.96,-167.23],[-293.08,-156.17],[-284.45,-145.62],[-276.26,-139.96],[-272.23,-138.15],[-267.91,-136.6],[-265.58,-135.6],[-256.58,-132.5],[-239.7,-126.7],[-232.18,-123.45],[-229.67,-119.86],[-226.46,-118.42],[-225.96,-115.94],[-224.2,-114.16],[-222.18,-111.15],[-212.91,-94.7],[-207.34,-49.29],[-205.63,-45.54],[-185.13,-32.75],[-140.81,-9.75],[-123.96,12.69],[-84.19,-13.72]],"v":[[-73,-22],[-80.88,-24.9],[-87,-27],[-92.88,-29.91],[-98,-33],[-102.27,-36.91],[-106,-41],[-114.24,-75.82],[-121,-112],[-123.59,-114.81],[-126,-117],[-126.47,-118.56],[-127,-120],[-127.98,-120.54],[-129,-121],[-130.07,-122.01],[-131,-123],[-148.61,-131.22],[-170,-136],[-194,-141.56],[-213,-150],[-221,-156.78],[-228,-164],[-229.5,-165],[-231,-166],[-231.99,-167.96],[-233,-170],[-238.02,-174.47],[-243,-178],[-243.51,-178.97],[-244,-180],[-245.44,-180.53],[-247,-181],[-251.13,-184.37],[-255,-187],[-269.28,-189.79],[-284,-190],[-296.56,-188.4],[-304,-183],[-301.93,-171.43],[-296,-161],[-287.36,-148.9],[-278,-141],[-273.58,-138.73],[-269,-137],[-266.34,-135.92],[-264,-135],[-243,-128],[-233,-124],[-231,-121],[-227,-119],[-226,-116],[-225,-115],[-223,-112],[-222,-110],[-208,-50],[-207,-47],[-201,-43],[-149,-19],[-142,23],[-90,-10]],"c":true}],"h":1},{"t":151,"s":[{"i":[[-71.75,-20.84],[-83.2,-26.52],[-95.04,-31.79],[-101.14,-36.33],[-104.82,-39.57],[-112.25,-52.34],[-114.48,-73.85],[-116.01,-91.48],[-118.92,-104.18],[-121.02,-110.01],[-122.45,-114.14],[-123.85,-115.71],[-125.67,-116.62],[-127.69,-119.36],[-128.91,-121.33],[-131.63,-123.14],[-133.36,-124.6],[-134.76,-125.67],[-135.66,-126.81],[-153.11,-133.69],[-183.27,-138.81],[-198.83,-142.83],[-209.76,-146.81],[-211.64,-148.46],[-212.48,-148.65],[-214.92,-150.64],[-217.37,-153.46],[-219.4,-154.84],[-221.52,-155.58],[-229.17,-163.46],[-238.56,-175.1],[-244.3,-178.46],[-246.2,-180.4],[-268.52,-191.56],[-301.79,-188.63],[-300.36,-168.62],[-294.07,-156.78],[-284.37,-146.08],[-271.24,-138.08],[-246.83,-130.46],[-235.47,-125.01],[-225.24,-115.94],[-217.45,-78.89],[-212.27,-54.35],[-201.83,-43.45],[-158.55,-32.29],[-140.38,5.68],[-136.82,19.77],[-130.63,16.99],[-126.41,12.91],[-121.29,10.82],[-119.45,8.34],[-116.7,7.44],[-109.95,2.89],[-104.48,-1.1],[-99.39,-3.1],[-97.46,-5.66],[-94.73,-6.5],[-89.2,-11.1],[-85.7,-12.56],[-78.67,-17.12]],"o":[[-78.18,-24.88],[-91.63,-29.98],[-99.73,-35.3],[-103.68,-38.47],[-110.26,-46.16],[-114.36,-66.18],[-115.3,-86.64],[-117.82,-100.25],[-120.55,-108.44],[-121.97,-112.86],[-123.26,-115.41],[-125.05,-116.32],[-127.23,-118.44],[-128.53,-120.8],[-130.95,-122.59],[-132.83,-124.15],[-134.43,-125.27],[-135.38,-126.44],[-143.48,-131.28],[-173.01,-137.46],[-194.7,-141.68],[-206.36,-145.4],[-211.4,-148.38],[-212.18,-148.59],[-213.99,-149.66],[-216.61,-152.54],[-218.64,-154.55],[-220.84,-155.35],[-225.89,-159.41],[-235.5,-171.3],[-242.74,-178.62],[-245.69,-179.52],[-255.08,-187.04],[-291.58,-190.6],[-306.69,-176.13],[-295.31,-160.18],[-287.99,-148.61],[-275.04,-139.51],[-257.43,-133.48],[-236.7,-126.19],[-228.78,-119.56],[-216.09,-99.85],[-212.92,-59.34],[-207.49,-47.29],[-180.02,-32.4],[-141.8,-9.6],[-139.03,23.12],[-132.62,17.14],[-127.52,15.1],[-123.62,11.11],[-119.57,9.72],[-118.22,7.42],[-112.95,5.1],[-105.56,0.08],[-101.67,-2.81],[-97.56,-4.28],[-96.19,-6.61],[-91.82,-8.47],[-87.23,-12.58],[-81.54,-15.15],[-74.69,-19.92]],"v":[[-72,-23],[-87.42,-28.25],[-98,-34],[-102.41,-37.4],[-106,-41],[-113.3,-59.26],[-115,-82],[-116.92,-95.86],[-120,-107],[-121.5,-111.43],[-123,-115],[-124.45,-116.02],[-126,-117],[-128.11,-120.08],[-130,-122],[-132.23,-123.64],[-134,-125],[-135.07,-126.05],[-136,-127],[-163.06,-135.57],[-192,-141],[-202.6,-144.12],[-211,-148],[-211.91,-148.53],[-213,-149],[-215.77,-151.59],[-218,-154],[-220.12,-155.09],[-222,-156],[-232.33,-167.38],[-242,-178],[-245,-179],[-247,-181],[-282,-191],[-304,-183],[-297,-163],[-292,-154],[-280,-143],[-265,-136],[-241,-128],[-233,-123],[-223,-112],[-214,-64],[-210,-51],[-197,-41],[-148,-18],[-143,23],[-134,18],[-129,16],[-125,12],[-120,10],[-119,8],[-116,7],[-107,1],[-103,-2],[-98,-4],[-97,-6],[-94,-7],[-88,-12],[-85,-13],[-76,-19]],"c":true}],"h":1},{"t":152,"s":[{"i":[[-74.92,-19.32],[-87.51,-28.73],[-105.85,-39.5],[-113.87,-57.09],[-115.46,-76.14],[-116.89,-92.92],[-119.69,-105.73],[-122.91,-113.24],[-126.01,-117.97],[-127.36,-119.62],[-127.76,-120.76],[-128.9,-121.47],[-130.52,-121.67],[-131.7,-122.89],[-132.58,-124.7],[-134.73,-125.93],[-137.36,-126.71],[-138.32,-127.52],[-138.79,-128.88],[-142.14,-130.25],[-147.41,-131.47],[-163.03,-136.02],[-184.91,-140.66],[-194.8,-142.62],[-200.34,-143.42],[-204.92,-145.11],[-209.65,-147.27],[-212.09,-148.9],[-213.47,-150.65],[-215.87,-151.88],[-218.49,-152.61],[-222.08,-155.76],[-226.68,-160.68],[-234.37,-168.87],[-243.3,-178.31],[-250.91,-183.66],[-257.62,-187.5],[-267.94,-190.11],[-281.53,-191.07],[-301.9,-188.35],[-302.9,-175.54],[-299.65,-165.87],[-286.68,-147.48],[-264.26,-135.93],[-238.27,-128.13],[-233.83,-124.65],[-221.31,-109.21],[-217.7,-60.7],[-179.5,-36.16],[-157.97,-27.13],[-148.17,-19.34],[-141.02,8.61],[-137.61,20.59],[-122.92,10.69],[-113.25,5.77],[-110.9,3.52],[-107.12,1.04],[-104,-0.34],[-98.2,-5.1],[-94.73,-6.5],[-87.87,-11.21]],"o":[[-79.83,-26.48],[-100.52,-35.24],[-112.64,-51.77],[-115.28,-69.28],[-116.29,-88.31],[-118.59,-101.63],[-121.9,-111.25],[-124.96,-116.59],[-127.23,-119.24],[-127.63,-120.38],[-128.38,-121.39],[-129.97,-121.61],[-131.42,-122.29],[-132.28,-124.09],[-133.8,-125.57],[-136.51,-126.5],[-138.18,-127.08],[-138.62,-128.43],[-140.43,-129.77],[-145.63,-131.1],[-155.57,-134.19],[-177.7,-139.25],[-192.87,-142.41],[-198.53,-143.12],[-203.34,-144.47],[-208.08,-146.51],[-211.6,-148.33],[-213.02,-150.07],[-214.87,-151.57],[-217.68,-152.39],[-220.49,-154.17],[-225.17,-159.01],[-231.47,-165.47],[-240.28,-175.3],[-248.6,-182.16],[-255.42,-186.33],[-262.68,-189.32],[-277.37,-190.98],[-292.18,-190.59],[-305.79,-178.44],[-300.64,-169.17],[-293.33,-154.88],[-272.79,-138.16],[-248.78,-131.03],[-234.31,-124.34],[-225.4,-118.06],[-215.09,-81.78],[-201.49,-40.76],[-162.87,-29.29],[-151,-22.13],[-141.64,-6.27],[-140.28,24.18],[-128.36,14.96],[-115.75,6.22],[-111.32,4.58],[-107.86,1.76],[-105.18,-0.76],[-100.81,-2.45],[-96.19,-6.61],[-90.7,-9.23],[-79.76,-16.26]],"v":[[-71,-23],[-94.02,-31.98],[-110,-47],[-114.58,-63.19],[-116,-84],[-117.74,-97.28],[-121,-109],[-123.93,-114.92],[-127,-119],[-127.49,-120],[-128,-121],[-129.43,-121.54],[-131,-122],[-131.99,-123.49],[-133,-125],[-135.62,-126.21],[-138,-127],[-138.47,-127.97],[-139,-129],[-143.88,-130.68],[-149,-132],[-170.36,-137.63],[-191,-142],[-196.66,-142.87],[-202,-144],[-206.5,-145.81],[-211,-148],[-212.56,-149.49],[-214,-151],[-216.78,-152.13],[-219,-153],[-223.63,-157.38],[-228,-162],[-237.32,-172.09],[-247,-181],[-253.16,-185],[-259,-188],[-272.65,-190.54],[-283,-191],[-304,-183],[-302,-173],[-298,-163],[-280,-143],[-255,-133],[-235,-125],[-233,-124],[-219,-99],[-209,-50],[-167,-31],[-155,-25],[-146,-15],[-144,23],[-135,19],[-117,7],[-112,5],[-110,3],[-106,0],[-103,-1],[-97,-6],[-94,-7],[-85,-13]],"c":true}],"h":1},{"t":153,"s":[{"i":[[-72.03,-19.57],[-87.37,-29.4],[-107.37,-41.21],[-115.75,-64.42],[-116.96,-93.74],[-121.76,-110.25],[-128.66,-121.45],[-134.71,-125.57],[-139.9,-128.97],[-148.94,-133.01],[-159.9,-136.12],[-183.86,-140.54],[-210.84,-147.39],[-223.52,-157.13],[-232.38,-165.28],[-235.46,-168.91],[-235.66,-170.52],[-236.85,-171.72],[-238.64,-172.64],[-242.38,-176.33],[-247.33,-180.82],[-250.96,-183.43],[-254.11,-185.57],[-272.62,-191.02],[-301.88,-188.33],[-304.1,-175.82],[-298.31,-164.18],[-293.32,-156.07],[-287.1,-148.39],[-279.88,-143.57],[-272.02,-139.14],[-256.81,-134.11],[-239.07,-128.05],[-229,-119.6],[-222.11,-109.27],[-218.07,-87.49],[-215.07,-58.44],[-209.58,-52.08],[-209.34,-50.38],[-207.72,-49.02],[-204.96,-47.67],[-202.3,-45.6],[-199.9,-43.46],[-196.88,-42.23],[-193.18,-41.44],[-185.45,-38.65],[-175.59,-35.29],[-167.51,-32.5],[-160.7,-30],[-158.65,-28.46],[-158.21,-27.16],[-157,-26.57],[-155.39,-26.31],[-145.27,-14.33],[-142.78,12.21],[-131.3,16.86],[-113.01,4.85],[-100.95,-2.98],[-92.04,-9.03],[-85.53,-12.07],[-81.43,-16.05]],"o":[[-79.19,-26.79],[-101.46,-36.61],[-114.77,-55.05],[-116.85,-83.77],[-119.93,-105.78],[-126.13,-118.09],[-133.02,-124.34],[-138.15,-127.89],[-145.49,-131.71],[-156.15,-135.22],[-173.69,-139.09],[-202.43,-144.68],[-220.33,-154.49],[-229.54,-162.52],[-235.38,-168.4],[-235.61,-169.97],[-236.28,-171.4],[-238.03,-172.35],[-240.71,-174.67],[-245.69,-179.4],[-249.91,-182.64],[-253.06,-184.89],[-261.43,-189.1],[-292.85,-190.63],[-305.2,-179.98],[-300.66,-167.92],[-295.27,-159.12],[-289.23,-150.7],[-282.37,-145.25],[-274.71,-140.52],[-263.28,-135.84],[-244.71,-130.22],[-231.94,-122.71],[-224.09,-112.88],[-218.28,-98.02],[-216.46,-67.71],[-209.66,-52.63],[-209.42,-50.95],[-208.49,-49.43],[-205.95,-48.14],[-203.1,-46.37],[-200.7,-44.14],[-198.04,-42.51],[-194.45,-41.7],[-188.66,-39.75],[-178.92,-36.41],[-169.9,-33.25],[-162.9,-30.88],[-158.8,-28.88],[-158.36,-27.6],[-157.56,-26.67],[-155.92,-26.4],[-148.63,-20.94],[-142.34,2.24],[-137.55,20.68],[-119.03,8.94],[-103.93,-0.96],[-95,-7.01],[-87.57,-11.93],[-82.38,-13.99],[-77.01,-18.98]],"v":[[-71,-24],[-94.42,-33.01],[-111,-48],[-116.3,-74.09],[-119,-102],[-123.95,-114.17],[-131,-123],[-136.43,-126.73],[-142,-130],[-152.55,-134.12],[-164,-137],[-193.14,-142.61],[-217,-152],[-226.53,-159.83],[-235,-168],[-235.54,-169.44],[-236,-171],[-237.44,-172.03],[-239,-173],[-244.03,-177.87],[-249,-182],[-252.01,-184.16],[-255,-186],[-282.74,-190.82],[-304,-183],[-302.38,-171.87],[-297,-162],[-291.28,-153.38],[-285,-147],[-277.29,-142.05],[-269,-138],[-250.76,-132.16],[-235,-125],[-226.54,-116.24],[-221,-106],[-217.26,-77.6],[-210,-53],[-209.5,-51.51],[-209,-50],[-206.84,-48.58],[-204,-47],[-201.5,-44.87],[-199,-43],[-195.67,-41.96],[-192,-41],[-182.18,-37.53],[-172,-34],[-165.2,-31.69],[-159,-29],[-158.51,-28.03],[-158,-27],[-156.46,-26.48],[-155,-26],[-143.8,-6.04],[-144,24],[-125.17,12.9],[-107,1],[-97.98,-4.99],[-89,-11],[-84,-13],[-80,-17]],"c":true}],"h":1},{"t":154,"s":[{"i":[[-69.91,-22.93],[-80.23,-28.02],[-94.16,-33.16],[-105.89,-40.8],[-114.75,-56.85],[-117.22,-79.68],[-118.99,-96.51],[-121.67,-107.77],[-125.42,-116.25],[-129.53,-120.69],[-134.11,-125.22],[-136.95,-128.34],[-142.83,-131.42],[-151.78,-134.06],[-173.97,-139.2],[-203.53,-144.81],[-214.67,-150.1],[-218.55,-153.86],[-220.58,-155.1],[-221.76,-154.89],[-222.31,-155.5],[-222.85,-156.88],[-230.37,-163.89],[-240.62,-174.44],[-248.99,-180.93],[-257.73,-187.14],[-276.21,-191.42],[-302.13,-187.71],[-303.95,-175.85],[-298.47,-162.54],[-296.3,-160.04],[-295.41,-158.43],[-292.41,-155.31],[-288.48,-151.4],[-284.38,-147.27],[-281.01,-143.64],[-278.2,-142.22],[-275.03,-141.47],[-272.28,-140],[-269.85,-138.32],[-262.64,-136.06],[-252.98,-133.97],[-246.3,-131.62],[-240.75,-128.93],[-232.34,-123.3],[-224.3,-113.1],[-218.82,-92.43],[-216.83,-64.93],[-210.29,-52.03],[-203.16,-46.25],[-186.46,-39.06],[-163.13,-32.28],[-154.48,-26.02],[-151.04,-22.35],[-144.42,-9.03],[-144.22,15.66],[-132.11,17.33],[-113.24,4.99],[-95.69,-6.11],[-78.98,-16.62],[-72.22,-20.97]],"o":[[-75.2,-26.31],[-89.71,-31.44],[-102.25,-37.84],[-112.89,-50.26],[-116.92,-71.56],[-118.41,-92.37],[-120.62,-104.21],[-124.4,-114.4],[-127.98,-119.39],[-133.13,-124.06],[-136.02,-127.36],[-140.19,-130.39],[-148.63,-133.25],[-163.71,-137.55],[-193.88,-142.83],[-213.15,-148.92],[-217.38,-152.57],[-220.2,-155.16],[-221.36,-154.97],[-222.14,-155.06],[-222.67,-156.41],[-226.81,-160.17],[-237.27,-171.03],[-246.12,-178.6],[-254.79,-185.2],[-266.14,-190.31],[-294.2,-190.11],[-304.96,-180.58],[-300.7,-166.83],[-296.6,-160.58],[-295.71,-158.97],[-293.67,-156.61],[-289.81,-152.71],[-285.63,-148.7],[-282.08,-144.74],[-279.18,-142.48],[-276.12,-141.71],[-273.1,-140.59],[-270.65,-138.87],[-265.9,-136.83],[-256.18,-134.63],[-248.17,-132.41],[-242.59,-129.88],[-235.68,-126.25],[-226.65,-116.73],[-219.41,-101.46],[-217.53,-74.16],[-212.21,-54.16],[-205.77,-48.08],[-194.39,-41.17],[-170.83,-34.62],[-155.71,-27.1],[-152.14,-23.65],[-146.06,-15.86],[-143.5,6.73],[-138.5,21.33],[-119.48,9.16],[-101.45,-2.56],[-84.46,-13.14],[-73.26,-20.5],[-70.54,-22.18]],"v":[[-70,-24],[-84.97,-29.73],[-98.21,-35.5],[-109,-45],[-115.83,-64.2],[-118,-88],[-119.81,-100.36],[-123,-111],[-126.7,-117.82],[-132,-123],[-135.06,-126.29],[-138,-129],[-145.73,-132.33],[-155,-135],[-183.93,-141.01],[-211,-148],[-216.02,-151.33],[-220,-155],[-220.97,-155.04],[-222,-155],[-222.49,-155.95],[-223,-157],[-233.82,-167.46],[-244,-177],[-251.89,-183.06],[-260,-188],[-285.2,-190.77],[-304,-183],[-302.32,-171.34],[-297,-161],[-296,-159.5],[-295,-158],[-291.11,-154.01],[-287,-150],[-283.23,-146],[-280,-143],[-277.16,-141.96],[-274,-141],[-271.47,-139.43],[-269,-138],[-259.41,-135.35],[-250,-133],[-244.45,-130.75],[-239,-128],[-229.49,-120.01],[-223,-110],[-218.18,-83.3],[-213,-56],[-208.03,-50.06],[-201,-45],[-178.64,-36.84],[-157,-28],[-153.31,-24.84],[-150,-21],[-143.96,-1.15],[-145,25],[-125.8,13.24],[-107,1],[-90.07,-9.63],[-74,-20],[-71.38,-21.57]],"c":true}],"h":1},{"t":155,"s":[{"i":[[-70.22,-20.92],[-74.3,-26.44],[-80.98,-29.26],[-88.71,-31.86],[-96.8,-34.85],[-101.48,-38.82],[-106.79,-42.61],[-114.33,-54.06],[-117.48,-72.73],[-119.31,-93.72],[-123.64,-111.93],[-128.02,-119.14],[-131.31,-122.43],[-135.3,-126.39],[-138.12,-129.45],[-143.74,-132.34],[-152.8,-135.08],[-168.68,-139.15],[-187.91,-142.71],[-200.88,-145.32],[-210.36,-147.68],[-213.96,-149.81],[-215.37,-151.59],[-217.68,-152.76],[-220.35,-153.53],[-222.01,-154.91],[-223.4,-156.52],[-225.4,-158.05],[-227.48,-159.52],[-236.92,-169.22],[-249.4,-181.95],[-279.5,-192.56],[-306.14,-180.17],[-297.83,-161.87],[-295.81,-158.85],[-286.12,-147.86],[-281.39,-144.24],[-274.1,-141.28],[-256.47,-134.86],[-241.25,-130.07],[-235.38,-125.17],[-230.09,-120.42],[-227.25,-117.37],[-227.23,-115.51],[-225.23,-114.43],[-222.7,-108.28],[-219.76,-79.06],[-200.07,-44.55],[-162.33,-33.04],[-142.89,2.52],[-133.36,17.71],[-127,14.65],[-123.65,11.12],[-119.76,9.48],[-115.36,6.85],[-100.13,-3.81],[-92.96,-7.35],[-89.5,-11.04],[-85.77,-12.55],[-81.49,-15.07],[-78.65,-17.57]],"o":[[-71.81,-25.57],[-78.88,-28.29],[-85.55,-30.94],[-94.33,-33.82],[-99.58,-37.52],[-105.08,-41.37],[-112.09,-48.7],[-117.02,-66.07],[-118.48,-86.75],[-121.89,-106.31],[-127.11,-117.92],[-130.12,-121.39],[-134.24,-125.16],[-137.24,-128.53],[-141.09,-131.3],[-149.6,-134.23],[-162.22,-137.8],[-181.52,-141.61],[-197.45,-144.73],[-207.34,-146.79],[-213.53,-149.26],[-214.89,-150.97],[-216.75,-152.49],[-219.48,-153.28],[-221.56,-154.41],[-222.93,-155.97],[-224.66,-157.54],[-226.81,-159.04],[-232.97,-164.49],[-245.13,-177.95],[-263.85,-189.81],[-307.06,-186.91],[-299.88,-166.57],[-296.2,-160.16],[-291.41,-154.26],[-281.67,-145.85],[-278.11,-142.17],[-262.86,-136.64],[-245.57,-130.69],[-236.93,-127.32],[-230.86,-121.33],[-228.85,-117.68],[-226.69,-116.54],[-226.84,-114.64],[-223.81,-111.8],[-218.32,-94.1],[-212.86,-48.95],[-173.41,-35.88],[-142.34,-16.58],[-139.41,23.18],[-128.07,14.42],[-124.45,13],[-121.12,9.4],[-117.2,7.88],[-107.9,2.21],[-94.09,-7.56],[-90.64,-8.92],[-87.09,-12.58],[-82.98,-14.17],[-79.4,-16.37],[-75.21,-19.83]],"v":[[-69,-25],[-76.59,-27.37],[-83,-30],[-91.52,-32.84],[-98,-36],[-103.28,-40.1],[-108,-44],[-115.68,-60.07],[-118,-80],[-120.6,-100.01],[-126,-116],[-129.07,-120.26],[-133,-124],[-136.27,-127.46],[-139,-130],[-146.67,-133.28],[-156,-136],[-175.1,-140.38],[-194,-144],[-204.11,-146.06],[-213,-149],[-214.43,-150.39],[-216,-152],[-218.58,-153.02],[-221,-154],[-222.47,-155.44],[-224,-157],[-226.1,-158.55],[-228,-160],[-241.02,-173.59],[-255,-185],[-292,-190],[-301,-169],[-297,-161],[-295,-158],[-282,-146],[-281,-144],[-271,-140],[-249,-132],[-238,-128],[-234,-124],[-229,-118],[-227,-117],[-227,-115],[-225,-114],[-222,-106],[-217,-67],[-183,-39],[-155,-27],[-146,25],[-129,15],[-126,14],[-122,10],[-119,9],[-114,6],[-95,-7],[-92,-8],[-88,-12],[-85,-13],[-80,-16],[-78,-18]],"c":true}],"h":1},{"t":156,"s":[{"i":[[-71.46,-21.54],[-76.08,-28.02],[-87.28,-31.38],[-93.8,-34.54],[-97.66,-37.29],[-105.14,-41.73],[-111.58,-48.44],[-116.62,-60.18],[-118.43,-77.21],[-120.44,-96.76],[-124.8,-113.2],[-130.87,-122.27],[-140.88,-131.46],[-146.11,-133.77],[-149.76,-134.58],[-153.39,-136],[-156.93,-137.71],[-177.74,-141.68],[-206.68,-146.37],[-217.05,-151.76],[-220.39,-154.43],[-221.92,-155.43],[-223.59,-155.66],[-225.28,-157.22],[-227.34,-159.43],[-233.73,-165.12],[-241.43,-172.57],[-246.65,-177.81],[-250.47,-181.95],[-253.28,-183.48],[-255.38,-183.65],[-257.24,-185.06],[-258.48,-186.77],[-261.18,-187.71],[-265.55,-188.62],[-281.43,-191.3],[-302.26,-187.43],[-304.73,-178.56],[-302.33,-170.76],[-296.4,-159.76],[-287.21,-149.13],[-276.94,-142.64],[-245.19,-132.88],[-226.47,-116.05],[-220.2,-91.13],[-216.19,-59.38],[-209.2,-52.24],[-202.63,-46.85],[-188.76,-42.03],[-178.12,-37.73],[-166.71,-34.99],[-161.81,-31.47],[-149.11,-21.41],[-145.37,11.78],[-133.5,18.16],[-113.66,5.27],[-97.97,-5.15],[-92.96,-7.35],[-89.5,-11.04],[-85.77,-12.55],[-81.49,-15.07]],"o":[[-72.19,-26.83],[-83.63,-30.3],[-92.47,-33.64],[-96.39,-36.36],[-102.35,-39.76],[-109.75,-46.07],[-115.4,-55.32],[-118.13,-71.12],[-119.54,-90.41],[-123.07,-108.15],[-128.18,-119.05],[-137.22,-128.48],[-144.98,-133.48],[-148.5,-134.32],[-152.18,-135.4],[-155.77,-137.16],[-167.4,-140.49],[-197.38,-144.61],[-215.6,-150.79],[-219.45,-153.58],[-221.38,-155.35],[-223.03,-155.58],[-224.61,-156.51],[-226.64,-158.68],[-231.02,-162.59],[-238.93,-170.11],[-245.41,-176.34],[-249.18,-180.62],[-252.59,-183.41],[-254.68,-183.6],[-256.75,-184.42],[-258.1,-186.23],[-259.9,-187.4],[-264,-188.32],[-273.05,-190.58],[-296.03,-189.72],[-304.81,-180.93],[-303.49,-173.48],[-299.04,-163.94],[-290.48,-152.35],[-280.65,-144.78],[-259.83,-135.51],[-230.87,-122.16],[-220.6,-101.67],[-218.02,-70.92],[-209.68,-52.58],[-204.28,-48.8],[-194.49,-42.6],[-180.18,-39.45],[-171.89,-35.58],[-162.41,-32.68],[-155.48,-27.8],[-143.05,-5.86],[-139.91,22.88],[-120.27,9.7],[-102.84,-1.66],[-94.09,-7.56],[-90.64,-8.92],[-87.09,-12.58],[-82.98,-14.17],[-75.88,-18.56]],"v":[[-68,-25],[-79.86,-29.16],[-91,-33],[-95.1,-35.45],[-99,-38],[-107.44,-43.9],[-113,-51],[-117.38,-65.65],[-119,-84],[-121.75,-102.46],[-127,-117],[-134.05,-125.38],[-144,-133],[-147.3,-134.05],[-151,-135],[-154.58,-136.58],[-158,-138],[-187.56,-143.14],[-214,-150],[-218.25,-152.67],[-221,-155],[-222.47,-155.51],[-224,-156],[-225.96,-157.95],[-228,-160],[-236.33,-167.62],[-244,-175],[-247.91,-179.22],[-252,-183],[-253.98,-183.54],[-256,-184],[-257.67,-185.64],[-259,-187],[-262.59,-188.02],[-267,-189],[-288.73,-190.51],[-304,-183],[-304.11,-176.02],[-301,-168],[-293.44,-156.05],[-284,-147],[-273,-141],[-236,-126],[-224,-110],[-219,-80],[-212,-55],[-206,-50],[-201,-46],[-182,-40],[-176,-37],[-163,-33],[-161,-31],[-147,-16],[-147,26],[-127,14],[-107,1],[-95,-7],[-92,-8],[-88,-12],[-85,-13],[-80,-16]],"c":true}],"h":1},{"t":157,"s":[{"i":[[-68.6,-24.02],[-77.75,-29.43],[-90.8,-33.94],[-101.89,-39.31],[-110.74,-47.23],[-118.09,-64.29],[-120.5,-88.94],[-123.81,-111.8],[-130.5,-121.99],[-137,-128.1],[-139.32,-129.52],[-139.79,-130.88],[-164.63,-139.48],[-206.84,-146.36],[-220.82,-154.34],[-225.64,-157.96],[-232.43,-163.6],[-239.53,-170.75],[-248.23,-178.78],[-258.55,-186.67],[-277.55,-191.57],[-302.04,-187.98],[-304.6,-176.62],[-300.44,-166.44],[-294.39,-157.26],[-286.68,-149.12],[-282.71,-146.52],[-279.42,-144.69],[-276.26,-142.98],[-273.85,-141.37],[-260.12,-136.85],[-240.89,-130.72],[-233.46,-123.52],[-229.42,-118.38],[-226.46,-113.56],[-224.42,-110.13],[-220.44,-90.94],[-217.23,-62.65],[-209.17,-52.56],[-202.11,-46.98],[-192.6,-43.13],[-181.6,-40.21],[-173.14,-37.47],[-165.98,-35.02],[-161.17,-32.28],[-157.19,-29.54],[-155.69,-28.5],[-155.15,-27.12],[-146.12,-13.86],[-146.28,15.17],[-144.58,25.53],[-140.73,22.46],[-139.04,21.62],[-137.51,21.32],[-135.65,19.79],[-133.74,17.48],[-130.97,15.9],[-127.87,14.56],[-110.11,3.26],[-84.91,-12.8],[-73.45,-20.06]],"o":[[-73,-27.87],[-86.65,-32.46],[-98.42,-37.36],[-108.05,-44.25],[-116.45,-56.76],[-120.12,-80.38],[-122.34,-104.66],[-128.49,-119.44],[-134.75,-126.32],[-139.17,-129.08],[-139.63,-130.42],[-150.46,-137.05],[-192.82,-144.14],[-219,-153.11],[-224.14,-156.77],[-229.91,-161.23],[-237.24,-168.36],[-244.95,-175.69],[-255.02,-184.26],[-268.03,-190.33],[-294.55,-190.39],[-305.12,-180.15],[-302.25,-169.76],[-297.05,-160.7],[-289.21,-151.47],[-283.75,-147.17],[-280.54,-145.28],[-277.08,-143.55],[-274.64,-141.89],[-267.18,-138.49],[-246.98,-132.97],[-234.99,-125.08],[-230.67,-120.17],[-227.25,-114.74],[-225.04,-111.25],[-221.07,-101.12],[-218.52,-71.71],[-211.37,-54.82],[-204.54,-48.64],[-196.3,-44.28],[-185.25,-41.1],[-175.65,-38.21],[-168.3,-35.88],[-162.57,-33.26],[-158.48,-30.42],[-155.86,-28.94],[-155.33,-27.59],[-148.73,-21.7],[-144.9,4.57],[-146.21,26.3],[-141.84,23.6],[-139.53,21.71],[-138.03,21.43],[-136.28,20.55],[-134.38,18.25],[-132.03,16.37],[-128.89,15],[-118.65,8.66],[-93.24,-7.47],[-75.4,-19.05],[-70.05,-22.54]],"v":[[-68,-26],[-82.2,-30.94],[-94.61,-35.65],[-104.97,-41.78],[-113,-51],[-119.1,-72.33],[-121.42,-96.8],[-127,-117],[-132.62,-124.15],[-139,-129],[-139.48,-129.97],[-140,-131],[-178.72,-141.81],[-217,-152],[-222.48,-155.55],[-227,-159],[-234.83,-165.98],[-242,-173],[-251.63,-181.52],[-262,-188],[-286.05,-190.98],[-304,-183],[-303.42,-173.19],[-299,-164],[-291.8,-154.36],[-285,-148],[-281.63,-145.9],[-278,-144],[-275.45,-142.44],[-273,-141],[-253.55,-134.91],[-237,-127],[-232.06,-121.84],[-228,-116],[-225.75,-112.41],[-224,-109],[-219.48,-81.33],[-213,-57],[-206.86,-50.6],[-200,-46],[-188.93,-42.11],[-178,-39],[-170.72,-36.67],[-164,-34],[-159.82,-31.35],[-156,-29],[-155.51,-28.05],[-155,-27],[-145.51,-4.65],[-148,26],[-143.21,24.57],[-140,22],[-138.53,21.52],[-137,21],[-135.02,19.02],[-133,17],[-129.93,15.45],[-127,14],[-101.67,-2.11],[-77,-18],[-71.75,-21.3]],"c":true}],"h":1},{"t":158,"s":[{"i":[[-67.81,-23.83],[-78.38,-30.6],[-93.74,-35.51],[-107.12,-43.25],[-116.88,-58.09],[-120.4,-77.7],[-122.05,-96.45],[-125.16,-112.36],[-128.57,-119.61],[-132.05,-122.95],[-136.81,-128.01],[-142.08,-131.51],[-147.25,-134.34],[-150.84,-136.58],[-166.21,-140.99],[-189.6,-144.84],[-199.4,-146.34],[-204.48,-146.57],[-223.16,-155.15],[-242.8,-173.98],[-251.2,-180.88],[-254.39,-183.63],[-271.49,-190.39],[-301.46,-189.58],[-304.55,-176.79],[-300.92,-167.71],[-296.2,-159.94],[-288.94,-151.48],[-284.71,-148.3],[-282.01,-146.59],[-277.84,-144.18],[-272.78,-141.65],[-259.1,-137.08],[-243.04,-130.99],[-236.27,-126.02],[-233.59,-123.31],[-232.49,-121.68],[-231.12,-121.17],[-228.95,-117.7],[-226.68,-112.57],[-221.72,-93.64],[-217.94,-65.34],[-213.65,-58.04],[-213.32,-56.42],[-200.91,-47.01],[-174.65,-38.85],[-166.89,-35.36],[-165.5,-34.25],[-162.62,-33.05],[-158.87,-31.66],[-147.12,-16.73],[-147.03,14.59],[-140.08,22.38],[-128.3,15.05],[-118.74,8.93],[-109.96,2.89],[-98.35,-4.5],[-85.67,-12.57],[-80.31,-16.3],[-77.85,-18.45],[-73.21,-20.76]],"o":[[-72.84,-28.8],[-88.83,-33.95],[-102.88,-40.16],[-114.68,-52.5],[-119.74,-70.69],[-121.47,-90.77],[-123.89,-107.24],[-127.55,-118.38],[-130.83,-121.89],[-135.27,-126.5],[-140.22,-130.51],[-146.08,-133.55],[-149.63,-135.86],[-158.41,-139.32],[-181.81,-143.75],[-197.66,-146.3],[-202.81,-146.47],[-215.51,-149.66],[-236.81,-167.31],[-250,-179.81],[-253.39,-182.79],[-260.51,-187.35],[-291.96,-191.5],[-305.09,-180.18],[-302.47,-170.55],[-298.48,-163.2],[-291.43,-154.08],[-285.7,-149],[-282.86,-147.09],[-279.45,-145.1],[-274.5,-142.45],[-265.08,-138.84],[-248.08,-133.16],[-237.48,-126.87],[-234.33,-124.24],[-232.93,-121.85],[-231.59,-121.35],[-229.86,-119.41],[-227.36,-114.27],[-222.75,-103.47],[-219.31,-74.58],[-213.74,-58.58],[-213.44,-56.96],[-208.84,-50.59],[-183.82,-41.14],[-167.39,-35.74],[-165.94,-34.62],[-163.94,-33.47],[-160.09,-32.14],[-150.11,-25.03],[-145.58,3.07],[-144.18,24.85],[-132.14,17.48],[-121.76,10.99],[-112.84,4.89],[-102.76,-1.71],[-89.8,-9.93],[-81.14,-15.57],[-78.67,-17.73],[-75.31,-20.09],[-69.47,-22.62]],"v":[[-67,-26],[-83.6,-32.28],[-98.31,-37.84],[-111,-48],[-118.31,-64.39],[-121,-85],[-122.97,-101.85],[-127,-117],[-129.7,-120.75],[-133,-124],[-138.51,-129.26],[-145,-133],[-148.44,-135.1],[-152,-137],[-174.01,-142.37],[-196,-146],[-201.11,-146.41],[-206,-147],[-229.99,-161.23],[-249,-179],[-252.29,-181.83],[-255,-184],[-281.73,-190.94],[-304,-183],[-303.51,-173.67],[-300,-166],[-293.82,-157.01],[-287,-150],[-283.79,-147.69],[-281,-146],[-276.17,-143.31],[-271,-141],[-253.59,-135.12],[-239,-128],[-235.3,-125.13],[-233,-122],[-232.04,-121.51],[-231,-121],[-228.15,-115.98],[-226,-111],[-220.51,-84.11],[-214,-59],[-213.55,-57.5],[-213,-56],[-192.37,-44.08],[-168,-36],[-166.41,-34.99],[-165,-34],[-161.36,-32.6],[-158,-31],[-146.35,-6.83],[-148,27],[-136.11,19.93],[-125,13],[-115.79,6.91],[-107,1],[-94.07,-7.21],[-82,-15],[-79.49,-17.02],[-77,-19],[-71.34,-21.69]],"c":true}],"h":1},{"t":159,"s":[{"i":[[-67.53,-22.77],[-77.52,-30.71],[-92.3,-35.66],[-98.38,-38.9],[-100.25,-40.54],[-102.64,-41.69],[-105.43,-42.57],[-108.98,-45.62],[-113.02,-50.53],[-121.19,-73.43],[-123.75,-110.7],[-129.21,-120.19],[-129.98,-120.98],[-135.36,-126.46],[-145.16,-134.66],[-159.6,-140.05],[-179.32,-142.99],[-198.81,-145.99],[-217.15,-151.1],[-223.29,-155.11],[-225.18,-157.39],[-227.65,-159],[-230.3,-160.38],[-236.58,-166.42],[-244.32,-174.68],[-248.59,-178.09],[-251.18,-179.39],[-253.46,-181.39],[-255.36,-183.62],[-270.41,-189.96],[-297.14,-190.55],[-305.31,-178.77],[-300.07,-166.18],[-293.1,-156.43],[-284.48,-148.44],[-279.13,-145.39],[-274.79,-143.54],[-272.44,-142.49],[-271.26,-141.1],[-267.71,-139.92],[-262.48,-138.49],[-253.56,-135.73],[-242.72,-131.65],[-240.36,-129.59],[-239.37,-129.31],[-230.09,-119.97],[-224.22,-104.54],[-221.14,-83.06],[-216.89,-62.18],[-212.67,-55.7],[-209.95,-54.66],[-207.87,-51.55],[-202.73,-48.84],[-191.35,-44.37],[-161.22,-35.25],[-147.09,8.53],[-141.54,23.29],[-128.38,15.1],[-123.66,11.42],[-102.73,-1.57],[-82.11,-15.09]],"o":[[-72.12,-29.13],[-87.61,-33.98],[-97.76,-38.38],[-99.63,-39.98],[-101.67,-41.41],[-104.51,-42.27],[-107.47,-44.11],[-111.76,-48.84],[-120.06,-61.08],[-123.04,-98.24],[-128.97,-119.95],[-129.72,-120.71],[-132.28,-123.38],[-141.8,-132.11],[-153.44,-138.55],[-172.54,-142.27],[-192.24,-144.94],[-211.27,-149.07],[-222.7,-154.42],[-224.53,-156.6],[-226.75,-158.56],[-229.42,-159.91],[-233.92,-163.58],[-241.78,-171.97],[-247.75,-177.65],[-250.31,-178.97],[-252.78,-180.58],[-254.75,-182.91],[-261.34,-187.19],[-288.31,-191.64],[-305.28,-182.93],[-302.7,-170.39],[-295.86,-159.71],[-287.41,-150.79],[-280.49,-146.12],[-276.28,-144.1],[-272.81,-142.94],[-271.66,-141.57],[-269.47,-140.43],[-264.22,-138.95],[-257.7,-136.91],[-246.07,-133.1],[-240.68,-129.69],[-239.71,-129.4],[-233.49,-124.45],[-225.46,-110.02],[-221.69,-90.97],[-218.74,-68.67],[-212.35,-57.3],[-211.25,-54.21],[-208.18,-53.43],[-205.12,-49.82],[-196.92,-46.02],[-173.87,-38.85],[-143.87,-15.42],[-144.61,26.49],[-133.87,18.32],[-124.4,12.63],[-113.27,4.72],[-87.44,-11.08],[-72.73,-21.09]],"v":[[-66,-27],[-82.56,-32.34],[-97,-38],[-99,-39.44],[-101,-41],[-103.58,-41.98],[-106,-43],[-110.37,-47.23],[-114,-52],[-122.11,-85.84],[-129,-120],[-129.47,-120.45],[-130,-121],[-138.58,-129.28],[-148,-136],[-166.07,-141.16],[-186,-144],[-205.04,-147.53],[-222,-154],[-223.91,-155.85],[-226,-158],[-228.54,-159.45],[-231,-161],[-239.18,-169.19],[-247,-177],[-249.45,-178.53],[-252,-180],[-254.11,-182.15],[-256,-184],[-279.36,-190.8],[-302,-186],[-304.01,-174.58],[-298,-163],[-290.26,-153.61],[-282,-147],[-277.71,-144.75],[-273,-143],[-272.05,-142.03],[-271,-141],[-265.96,-139.43],[-261,-138],[-249.81,-134.42],[-241,-130],[-240.04,-129.5],[-239,-129],[-227.78,-115],[-223,-98],[-219.94,-75.86],[-213,-58],[-212,-55],[-209,-54],[-207,-51],[-201,-48],[-187,-43],[-154,-27],[-149,27],[-138,21],[-125,13],[-123,11],[-94,-7],[-76,-19]],"c":true}],"h":1},{"t":160,"s":[{"i":[[-65.61,-24.56],[-77.47,-31.66],[-96.76,-38.15],[-115.04,-52.01],[-121.96,-77.97],[-124.3,-102.26],[-128.9,-119.76],[-132.41,-123.64],[-132.68,-124.61],[-142.76,-133.83],[-163.82,-141.44],[-189.1,-145.4],[-213.43,-149.61],[-223.57,-155.32],[-228.35,-159.68],[-230.94,-161.42],[-232.52,-161.66],[-233.72,-162.87],[-234.61,-164.65],[-239.82,-169.53],[-246.56,-176],[-252.56,-180.94],[-258.22,-185.09],[-273.7,-190.55],[-297.97,-189.77],[-305.07,-181.19],[-303.25,-172.95],[-294.21,-156.86],[-275.87,-143.3],[-265.8,-139.94],[-261.46,-138.51],[-253.36,-136],[-243.62,-132.55],[-237.44,-126.69],[-231.29,-120.11],[-226.23,-110.34],[-223.69,-98.45],[-221.55,-82.97],[-218.63,-66.31],[-214.77,-59.13],[-210.43,-54.1],[-202.58,-49.17],[-190.81,-45.21],[-178.04,-41.22],[-164.72,-36.03],[-160.99,-33.31],[-159.5,-32.39],[-148.35,-17.71],[-148.15,14.55],[-146.16,26.83],[-141.46,22.95],[-133.4,17.67],[-122.97,11.34],[-119.68,9.49],[-119.19,8.12],[-117.09,6.97],[-113.97,5.58],[-109.14,2.48],[-104.61,-0.94],[-98.78,-3.83],[-77.89,-17.7]],"o":[[-70.84,-29.58],[-90.43,-35.94],[-110.31,-45.53],[-120.87,-68.24],[-123.6,-95.38],[-126.95,-114.45],[-132.32,-123.33],[-132.59,-124.27],[-137.1,-130.11],[-156.12,-139.5],[-180.38,-144.59],[-205.62,-147.9],[-221.9,-153.98],[-226.8,-158.17],[-230.43,-161.34],[-231.98,-161.58],[-233.41,-162.29],[-234.32,-164.05],[-237.55,-167.27],[-244.33,-173.89],[-250.7,-179.39],[-256.32,-183.79],[-265.21,-188.66],[-290.08,-191.11],[-304.44,-183.71],[-304.47,-175.81],[-299.02,-162.96],[-282.64,-147.04],[-267.32,-140.43],[-262.87,-138.97],[-257.05,-136.98],[-246.64,-133.79],[-239.79,-128.89],[-233.18,-122.31],[-227.64,-114.11],[-224.26,-102.51],[-222.24,-89.07],[-219.75,-71.59],[-216.05,-61.07],[-211.95,-55.64],[-206.18,-50.82],[-194.9,-46.37],[-182.93,-42.71],[-168.93,-37.89],[-161.49,-33.61],[-159.99,-32.69],[-151.53,-26.23],[-146.66,2.68],[-147.92,27.61],[-142.93,24.5],[-136.91,20],[-126.43,13.34],[-119.83,9.93],[-119.36,8.58],[-118.11,7.43],[-115.02,6.05],[-110.83,3.7],[-106.03,0.16],[-101.26,-3.14],[-88.13,-10.82],[-68.16,-24.23]],"v":[[-65,-27],[-83.95,-33.8],[-102,-41],[-117.95,-60.13],[-123,-89],[-125.62,-108.35],[-132,-123],[-132.5,-123.95],[-133,-125],[-149.44,-136.66],[-172,-143],[-197.36,-146.65],[-220,-153],[-225.19,-156.75],[-230,-161],[-231.46,-161.5],[-233,-162],[-234.02,-163.46],[-235,-165],[-242.08,-171.71],[-249,-178],[-254.44,-182.36],[-260,-186],[-281.89,-190.83],[-302,-186],[-304.77,-178.5],[-302,-170],[-288.42,-151.95],[-269,-141],[-264.33,-139.46],[-260,-138],[-250,-134.9],[-242,-131],[-235.31,-124.5],[-230,-118],[-225.24,-106.42],[-223,-94],[-220.65,-77.28],[-217,-63],[-213.36,-57.38],[-209,-53],[-198.74,-47.77],[-187,-44],[-173.49,-39.55],[-162,-34],[-160.49,-33],[-159,-32],[-147.51,-7.51],[-150,27],[-144.54,25.67],[-140,22],[-129.91,15.5],[-120,10],[-119.52,9.04],[-119,8],[-116.06,6.51],[-113,5],[-107.58,1.32],[-103,-2],[-97,-5],[-70,-23]],"c":true}],"h":1},{"t":161,"s":[{"i":[[-66.1,-23.14],[-73.64,-31],[-86.6,-35.26],[-99.96,-40.72],[-111.47,-48.6],[-113.51,-52.32],[-114.88,-52.83],[-120.76,-66.06],[-122.79,-90.66],[-126.83,-111.98],[-135.19,-126.98],[-140.05,-131.01],[-141.62,-132.74],[-160.28,-140.98],[-194.88,-146.67],[-212.43,-150.79],[-222.23,-154.31],[-232.19,-161.3],[-241.1,-170.35],[-250.44,-178.71],[-261.61,-186.64],[-278.32,-191.23],[-298.86,-188.94],[-304.96,-181.02],[-303.29,-171.88],[-300.84,-167.2],[-298.61,-164.98],[-296.88,-161.8],[-295.55,-158.65],[-292.37,-155.37],[-287.13,-151.51],[-285.68,-150.49],[-285.18,-149.12],[-284.4,-148.9],[-283.25,-149.11],[-282.68,-148.48],[-282.21,-147.12],[-276.37,-144.39],[-267.66,-141.92],[-260.57,-139.28],[-254.61,-136.61],[-251.3,-135.62],[-248.69,-135.33],[-247.05,-134.19],[-245.56,-132.35],[-243.29,-131.26],[-240.56,-130.43],[-236.33,-126.61],[-232.04,-120.72],[-225.31,-105.74],[-222.44,-83.83],[-217.84,-62.92],[-215.67,-59.9],[-186.56,-44.85],[-164.07,-36.98],[-160.85,-34.65],[-148.54,1.77],[-142.59,24.34],[-117.42,7.67],[-88.31,-10.54],[-76.82,-18.82]],"o":[[-69.33,-29.62],[-82.27,-33.83],[-95.23,-38.67],[-108.08,-45.69],[-113.07,-52.15],[-114.41,-52.65],[-119.12,-58.73],[-122.6,-82.02],[-124.98,-105.75],[-131.93,-122.6],[-139.49,-130.39],[-141.12,-132.19],[-149.59,-138.14],[-182.93,-145.24],[-208.82,-149.88],[-219.14,-153],[-228.89,-158.37],[-238.3,-167.29],[-246.89,-175.64],[-257.81,-184.21],[-270.64,-190.26],[-292.43,-190.57],[-304.32,-183.83],[-304.45,-175.04],[-301.53,-167.96],[-299.38,-165.71],[-297.35,-162.97],[-295.97,-159.64],[-294.05,-156.87],[-288.91,-152.69],[-285.84,-150.93],[-285.35,-149.59],[-284.77,-148.85],[-283.64,-149.04],[-282.83,-148.92],[-282.37,-147.58],[-279.29,-145.43],[-270.55,-142.64],[-262.76,-140.22],[-256.49,-137.47],[-252.21,-135.7],[-249.54,-135.43],[-247.52,-134.77],[-246.07,-132.98],[-244.26,-131.54],[-241.44,-130.71],[-238.05,-128.5],[-233.32,-122.72],[-227.1,-112.58],[-222.98,-91.36],[-220.18,-71.55],[-215.3,-60.27],[-207.56,-48.98],[-170.24,-38.55],[-161.3,-34.33],[-143.48,-21.26],[-146.01,26.77],[-128.06,14.86],[-97.92,-4.82],[-78.18,-17.19],[-71.72,-22.13]],"v":[[-65,-28],[-77.95,-32.41],[-91,-37],[-104.02,-43.21],[-113,-52],[-113.96,-52.49],[-115,-53],[-121.68,-74.04],[-124,-99],[-129.38,-117.29],[-139,-130],[-140.58,-131.6],[-142,-133],[-171.6,-143.11],[-205,-149],[-215.79,-151.9],[-225,-156],[-235.24,-164.29],[-244,-173],[-254.13,-181.46],[-265,-188],[-285.37,-190.9],[-302,-186],[-304.71,-178.03],[-302,-169],[-300.11,-166.45],[-298,-164],[-296.42,-160.72],[-295,-158],[-290.64,-154.03],[-286,-151],[-285.52,-150.04],[-285,-149],[-284.02,-148.97],[-283,-149],[-282.52,-148.03],[-282,-147],[-273.46,-143.51],[-265,-141],[-258.53,-138.38],[-253,-136],[-250.42,-135.53],[-248,-135],[-246.56,-133.59],[-245,-132],[-242.37,-130.98],[-240,-130],[-234.82,-124.66],[-231,-119],[-224.15,-98.55],[-221,-76],[-216,-61],[-215,-59],[-174,-40],[-162,-35],[-160,-34],[-150,28],[-139,22],[-107,1],[-80,-16],[-75,-20]],"c":true}],"h":1},{"t":162,"s":[{"i":[[-65.39,-23.98],[-77.87,-33.18],[-97.24,-39.92],[-109.06,-46.95],[-116.5,-55.12],[-123.35,-77.38],[-125.7,-110.05],[-130.83,-120.31],[-132.49,-122.23],[-136.36,-127.69],[-142.39,-132.82],[-145.32,-134.52],[-145.8,-135.88],[-149.77,-137.86],[-156.69,-140.26],[-169.12,-143.7],[-185.2,-146.19],[-196.54,-147.53],[-205.22,-148.31],[-211.67,-150.3],[-217.17,-153.18],[-220.98,-154.67],[-224.07,-155.48],[-227.99,-157.9],[-231.81,-161.03],[-236.01,-164.75],[-240.01,-169.08],[-241.92,-170.42],[-243.63,-170.66],[-248.12,-175.05],[-254.04,-180.79],[-256.77,-182.67],[-257.65,-183.79],[-272.23,-189.98],[-297.36,-190.35],[-304.94,-175.69],[-294.97,-158.25],[-290.3,-153.3],[-285.61,-149.99],[-276.39,-145.27],[-264.04,-141.46],[-253.54,-137.39],[-244.53,-132.43],[-240.83,-130.69],[-225.15,-106.14],[-220.4,-66.62],[-213.72,-57.72],[-210.95,-56.67],[-208.87,-53.55],[-199.24,-49.4],[-175.99,-42.69],[-159.07,-33.51],[-149.83,4.73],[-147.4,26.81],[-138.4,21.18],[-127.39,14.33],[-116.81,7.29],[-106.78,1.45],[-95.44,-6.09],[-83.53,-13.68],[-76.74,-18.87]],"o":[[-71,-30.97],[-90.99,-37.66],[-106.07,-44.64],[-114.28,-52.19],[-122.5,-66.61],[-124.95,-99.1],[-130.33,-119.69],[-131.91,-121.58],[-134.66,-125.52],[-140.22,-131.34],[-145.17,-134.08],[-145.63,-135.42],[-147.68,-136.98],[-154.28,-139.5],[-164.02,-142.6],[-179.71,-145.49],[-193.68,-147.37],[-202.31,-147.99],[-209.84,-149.46],[-215.34,-152.16],[-219.95,-154.43],[-223.04,-155.19],[-226.59,-156.89],[-230.6,-159.98],[-234.5,-163.22],[-238.76,-167.68],[-241.36,-170.34],[-243.06,-170.58],[-246.1,-172.9],[-252.09,-179],[-256.44,-182.27],[-257.37,-183.43],[-263.55,-187.31],[-289.13,-191.5],[-306.2,-182.07],[-299.32,-163.78],[-291.74,-154.56],[-287.23,-151.02],[-280.37,-146.78],[-268.23,-142.6],[-257.03,-138.92],[-247.29,-134.14],[-242.24,-130.29],[-229.19,-121.02],[-221.61,-79.59],[-214.38,-59.24],[-212.22,-56.22],[-209.18,-55.43],[-204.09,-50.54],[-185.73,-44.92],[-163.42,-36.89],[-144.75,-17.14],[-148.99,29.31],[-141.61,23.47],[-130.8,16.3],[-120.01,9.26],[-109.83,3.09],[-100.32,-3.81],[-87.16,-11.53],[-78.27,-17.14],[-70.96,-22.62]],"v":[[-64,-28],[-84.43,-35.42],[-103,-43],[-111.67,-49.57],[-118,-58],[-124.15,-88.24],[-130,-119],[-131.37,-120.94],[-133,-123],[-138.29,-129.51],[-145,-134],[-145.48,-134.97],[-146,-136],[-152.03,-138.68],[-159,-141],[-174.42,-144.6],[-191,-147],[-199.42,-147.76],[-208,-149],[-213.51,-151.23],[-219,-154],[-222.01,-154.93],[-225,-156],[-229.3,-158.94],[-233,-162],[-237.38,-166.22],[-241,-170],[-242.49,-170.5],[-244,-171],[-250.1,-177.02],[-256,-182],[-257.07,-183.05],[-258,-184],[-280.68,-190.74],[-302,-186],[-302.13,-169.74],[-293,-156],[-288.76,-152.16],[-284,-149],[-272.31,-143.93],[-260,-140],[-250.42,-135.76],[-243,-131],[-240,-130],[-223,-90],[-215,-60],[-213,-57],[-210,-56],[-208,-53],[-195,-48],[-168,-39],[-156,-30],[-151,28],[-146,26],[-135,19],[-124,12],[-113,5],[-105,0],[-91,-9],[-80,-16],[-75,-20]],"c":true}],"h":1},{"t":163,"s":[{"i":[[-69.88,-22.43],[-74.33,-32.94],[-92.69,-38.55],[-101.06,-42.51],[-106.53,-45.55],[-107.64,-46.43],[-108.56,-46.67],[-119.05,-58.53],[-123.89,-83.07],[-127,-106.11],[-133.07,-123.4],[-138.26,-129.46],[-141.54,-131.87],[-146.73,-135.99],[-151.45,-139],[-162.08,-142.67],[-175.37,-145.3],[-195.85,-148.15],[-217.91,-152.47],[-225.29,-156.09],[-228.35,-157.58],[-231.13,-159.86],[-234.39,-163.53],[-235.95,-164.38],[-237.62,-164.67],[-242.97,-169.87],[-249.82,-177.34],[-252.95,-179.4],[-254.54,-179.66],[-256.37,-181.3],[-258.27,-183.52],[-260.01,-184.43],[-261.61,-184.76],[-263.69,-185.96],[-265.82,-186.64],[-267.56,-187.52],[-268.74,-188.92],[-281.2,-191.18],[-299.2,-188.62],[-305.19,-180.42],[-302.48,-170.9],[-298.55,-163.52],[-294.22,-157.22],[-291.61,-154.99],[-288.93,-153.69],[-286.52,-151.59],[-284.74,-149.44],[-253.35,-139.25],[-237.75,-127.84],[-234.57,-123.79],[-225.76,-103.97],[-222.82,-72.37],[-211.67,-56.34],[-162.74,-43.96],[-154.24,-28.38],[-152.35,-24.79],[-151.52,11.52],[-139.38,21.81],[-127.7,14.54],[-116.78,7.3],[-94.27,-7.1]],"o":[[-68.24,-30.92],[-86.56,-36.76],[-99.05,-41.48],[-104.8,-44.54],[-107.36,-46.34],[-108.24,-46.59],[-115.61,-52],[-123.2,-74.07],[-125.71,-99.41],[-130.67,-118.11],[-137.24,-128.52],[-140.41,-131.13],[-145.25,-134.74],[-149.82,-138.12],[-157.9,-141.52],[-170.82,-144.56],[-187.64,-147.16],[-210.98,-150.81],[-224.11,-155.55],[-227.41,-157.11],[-229.93,-158.59],[-233.36,-162.33],[-235.39,-164.3],[-237.06,-164.57],[-240.56,-167.2],[-247.6,-174.94],[-252.42,-179.32],[-254.01,-179.57],[-255.73,-180.54],[-257.64,-182.79],[-259.46,-184.3],[-261.09,-184.66],[-263.03,-185.64],[-265.08,-186.46],[-267.19,-187.06],[-268.33,-188.45],[-274.35,-190.62],[-293.63,-190.18],[-304.7,-183.47],[-304.08,-174.14],[-299.94,-165.91],[-295.69,-159.18],[-292.39,-155.39],[-289.88,-154.14],[-287.15,-152.37],[-285.31,-150.12],[-272.88,-142.37],[-241.51,-130.39],[-235.39,-124.01],[-227.95,-114.56],[-222.71,-83.24],[-215.96,-60.46],[-193.52,-44.78],[-155.85,-28.67],[-153.38,-27.04],[-145.49,-9.31],[-145.4,26.92],[-130.49,16.1],[-119.96,9.22],[-103.36,-0.86],[-77.67,-17.66]],"v":[[-63,-28],[-80.45,-34.85],[-98,-41],[-102.93,-43.52],[-107,-46],[-107.94,-46.51],[-109,-47],[-121.12,-66.3],[-125,-93],[-128.83,-112.11],[-136,-127],[-139.34,-130.3],[-143,-133],[-148.28,-137.06],[-154,-140],[-166.45,-143.61],[-180,-146],[-203.41,-149.48],[-223,-155],[-226.35,-156.6],[-229,-158],[-232.24,-161.1],[-235,-164],[-236.5,-164.47],[-238,-165],[-245.29,-172.41],[-252,-179],[-253.48,-179.49],[-255,-180],[-257,-182.05],[-259,-184],[-260.55,-184.54],[-262,-185],[-264.38,-186.21],[-267,-187],[-267.94,-187.98],[-269,-189],[-287.42,-190.68],[-302,-186],[-304.63,-177.28],[-301,-168],[-297.12,-161.35],[-293,-156],[-290.75,-154.57],[-288,-153],[-285.92,-150.86],[-284,-149],[-245,-133],[-236,-125],[-234,-123],[-224,-92],[-218,-64],[-208,-54],[-156,-29],[-154,-28],[-152,-24],[-152,29],[-135,19],[-124,12],[-113,5],[-85,-13]],"c":true}],"h":1},{"t":164,"s":[{"i":[[-150.4,-2],[-145.53,26.15],[-137.34,20.51],[-131.92,17.1],[-127.94,14.71],[-124.52,12.31],[-120.99,10.45],[-119.68,9.49],[-119.19,8.12],[-117.16,7.01],[-114,5.61],[-106.08,0.47],[-95.37,-6.48],[-91.68,-8.51],[-91.19,-9.88],[-88.84,-11.02],[-85.16,-12.26],[-82.71,-14],[-80.22,-16.16],[-77.48,-17.94],[-75.69,-18.69],[-74.68,-19.51],[-74.19,-20.88],[-69.87,-22.75],[-64.92,-29.63],[-107.31,-44.01],[-124.36,-77.7],[-128.51,-112.19],[-136.97,-126.97],[-147.71,-136.87],[-172.08,-145.71],[-207.2,-148.5],[-221.46,-155.23],[-227.45,-157.05],[-231.68,-160.99],[-235.04,-162.33],[-238.84,-167.12],[-242.2,-168.33],[-245.4,-172.6],[-253.4,-178.47],[-256.01,-180.31],[-259.67,-184.19],[-263.3,-185.68],[-266.1,-187.65],[-302.51,-192.03],[-300.77,-167.73],[-290.41,-153.99],[-285.38,-150.25],[-278.76,-147.2],[-271.24,-144.68],[-267.51,-142.19],[-252.95,-138.55],[-244.61,-132.2],[-239.14,-129.19],[-237.67,-125.96],[-234.59,-123.86],[-233.43,-120.73],[-227.2,-108.07],[-223.13,-69.77],[-200.9,-50.88],[-171.87,-43.26]],"o":[[-148.61,27.9],[-139.9,22.46],[-133.44,18],[-129.17,15.46],[-125.78,13.09],[-122.13,10.99],[-119.83,9.93],[-119.36,8.58],[-118.15,7.46],[-115.08,6.09],[-109.65,2.96],[-98.94,-4.25],[-91.83,-8.07],[-91.36,-9.41],[-90.01,-10.65],[-86.41,-11.83],[-83.35,-13.42],[-81.15,-15.37],[-78.14,-17.59],[-76.26,-18.49],[-74.83,-19.07],[-74.36,-20.41],[-72.22,-22.14],[-58.7,-30.19],[-91.66,-39.56],[-123.47,-64.45],[-127.21,-102.56],[-133.46,-124.69],[-146.06,-136.06],[-163.13,-143.49],[-193.7,-148.83],[-220.35,-153.51],[-225.01,-157],[-230.52,-158.93],[-233.87,-162.66],[-237.83,-164.28],[-240.79,-168.6],[-244.7,-170.42],[-249.46,-176.16],[-255.77,-180.74],[-258.38,-181.96],[-261.85,-185.52],[-265.1,-186.51],[-279.12,-192.74],[-306.48,-176.01],[-295.44,-159.5],[-285.67,-151.85],[-282.82,-148.59],[-273.73,-145.01],[-268.63,-143.89],[-260.13,-139.5],[-245.84,-134.3],[-241.41,-129.82],[-237.24,-127.2],[-236.42,-124.17],[-233.42,-122.16],[-230,-114.93],[-222.59,-88.57],[-211.25,-55.16],[-182.23,-44.84],[-145.12,-25.39]],"v":[[-152,29],[-142.71,24.31],[-135,19],[-130.54,16.28],[-127,14],[-123.33,11.65],[-120,10],[-119.52,9.04],[-119,8],[-116.12,6.55],[-113,5],[-102.51,-1.89],[-92,-8],[-91.52,-8.96],[-91,-10],[-87.62,-11.43],[-84,-13],[-81.93,-14.68],[-79,-17],[-76.87,-18.21],[-75,-19],[-74.52,-19.96],[-74,-21],[-68,-24],[-74,-33],[-116,-55],[-126,-92],[-132,-121],[-140,-130],[-155,-140],[-181,-147],[-219,-153],[-223,-156],[-229,-158],[-233,-162],[-236,-163],[-240,-168],[-243,-169],[-247,-174],[-255,-180],[-257,-181],[-261,-185],[-264,-186],[-267,-188],[-305,-182],[-299,-165],[-286,-152],[-285,-150],[-276,-146],[-269,-144],[-267,-142],[-247,-135],[-243,-131],[-238,-128],[-237,-125],[-234,-123],[-233,-120],[-226,-103],[-216,-61],[-192,-48],[-164,-38]],"c":true}],"h":1},{"t":165,"s":[{"i":[[-66.63,-23.8],[-74.74,-34.3],[-94.81,-41.73],[-103.45,-45.47],[-106.96,-47.22],[-111.64,-50.73],[-116.18,-54.77],[-118.52,-58.32],[-120.41,-61.68],[-125.78,-81.61],[-129.15,-113.21],[-135.08,-125.38],[-139.51,-129.51],[-145.93,-135.78],[-153.42,-140.63],[-167.4,-145.08],[-184.26,-147.32],[-207.17,-150.55],[-229.19,-158.07],[-235.31,-162.99],[-237.4,-164.49],[-240.4,-167.29],[-243.77,-170.93],[-246.2,-172.67],[-248.44,-173.51],[-250.88,-175.89],[-253.31,-178.55],[-259,-182.41],[-266.78,-186.85],[-283.24,-191.13],[-303.62,-187.57],[-304.74,-176.27],[-300.69,-168.24],[-299.13,-165.01],[-298.33,-162.44],[-292.71,-156.33],[-280.25,-147.82],[-271.33,-144.18],[-264.18,-141.8],[-256.81,-139.34],[-249.8,-137.08],[-247.65,-135.46],[-247.22,-134.16],[-245.99,-133.58],[-244.4,-133.33],[-234.31,-122.7],[-226.42,-102.45],[-222.6,-70.01],[-216.68,-61.76],[-212.98,-59.38],[-207.82,-54.93],[-187.97,-48.26],[-169.51,-42.19],[-161.99,-35.96],[-155.55,-30.12],[-153.54,9.66],[-122.1,10.67],[-99.72,-3.59],[-93.01,-8.69],[-86.03,-11.7],[-80.57,-15.93]],"o":[[-67.83,-31.69],[-88.22,-39.33],[-101.97,-44.86],[-105.94,-46.65],[-109.8,-49.35],[-114.83,-53.44],[-117.82,-57.23],[-119.82,-60.55],[-124.71,-71.25],[-128,-102.58],[-133.82,-123.88],[-137.92,-128.19],[-143.72,-133.72],[-150.78,-139.24],[-162.02,-143.92],[-178.52,-146.78],[-198.58,-149.02],[-222.48,-155.08],[-234.61,-162.49],[-236.71,-163.99],[-239.26,-166.07],[-242.65,-169.71],[-245.48,-172.42],[-247.68,-173.22],[-249.97,-174.86],[-252.55,-177.73],[-256.61,-180.73],[-264.08,-185.47],[-275.18,-189.84],[-297.46,-190],[-305.64,-179.4],[-302.26,-170.69],[-299.47,-166.04],[-298.56,-163.22],[-296.08,-159.41],[-284.79,-150.53],[-273.74,-145.03],[-266.55,-142.57],[-259.42,-140.05],[-252,-137.85],[-247.79,-135.88],[-247.36,-134.6],[-246.55,-133.66],[-244.92,-133.42],[-238.35,-128.22],[-228.34,-109.81],[-223.2,-83.27],[-216.32,-63.27],[-214.95,-59.82],[-209.13,-56.69],[-197.22,-49.51],[-174.85,-43.49],[-163.72,-38.58],[-157.25,-31.3],[-146.15,-11.21],[-137.16,21.17],[-103.35,-1.34],[-94.16,-7.19],[-88.97,-11.32],[-82.36,-14.05],[-72.82,-21.23]],"v":[[-62,-29],[-81.48,-36.81],[-100,-44],[-104.7,-46.06],[-108,-48],[-113.24,-52.09],[-117,-56],[-119.17,-59.43],[-121,-63],[-126.89,-92.1],[-133,-122],[-136.5,-126.79],[-141,-131],[-148.35,-137.51],[-157,-142],[-172.96,-145.93],[-190,-148],[-214.83,-152.82],[-234,-162],[-236.01,-163.49],[-238,-165],[-241.53,-168.5],[-245,-172],[-246.94,-172.94],[-249,-174],[-251.71,-176.81],[-254,-179],[-261.54,-183.94],[-270,-188],[-290.35,-190.56],[-305,-182],[-303.5,-173.48],[-300,-167],[-298.85,-164.12],[-298,-162],[-288.75,-153.43],[-276,-146],[-268.94,-143.37],[-262,-141],[-254.41,-138.6],[-248,-136],[-247.51,-135.03],[-247,-134],[-245.46,-133.5],[-244,-133],[-231.33,-116.26],[-225,-94],[-217,-64],[-216,-61],[-211,-58],[-206,-54],[-179,-45],[-166,-40],[-160,-34],[-154,-27],[-153,30],[-107,1],[-96,-6],[-91,-10],[-84,-13],[-79,-17]],"c":true}],"h":1},{"t":166,"s":[{"i":[[-154.05,7.22],[-150.99,29.25],[-146.88,27.4],[-145.68,26.49],[-145.18,25.12],[-144.4,24.9],[-143.25,25.12],[-142.68,24.49],[-142.19,23.12],[-140.03,21.94],[-136.91,20.59],[-118.64,8.6],[-93.58,-7.9],[-82.42,-14.83],[-80.26,-15.75],[-79.04,-16.7],[-77.42,-17.59],[-76.04,-18.7],[-74.42,-19.59],[-68.84,-23.51],[-61.56,-28.31],[-63.49,-30.97],[-69.76,-33.13],[-80.76,-37.29],[-89.95,-40.48],[-98.09,-43.39],[-103.68,-45.27],[-106.25,-47.08],[-108.33,-49.51],[-111.21,-50.4],[-125.88,-78.03],[-132.2,-121.19],[-151.05,-139.99],[-164.66,-145.4],[-178.44,-147.24],[-205.15,-150.03],[-216.47,-153.84],[-229.33,-158.25],[-235,-162.23],[-239.19,-166.48],[-243.29,-168.45],[-245.18,-171.28],[-250.17,-174.52],[-258.89,-182.77],[-280.55,-191.97],[-303.8,-187.04],[-302.44,-170.07],[-291.37,-155.52],[-287.37,-152.25],[-285.51,-152.23],[-284.42,-150.24],[-277.97,-148.2],[-269.09,-144.16],[-249.95,-137.82],[-245.75,-134.62],[-228.9,-111.19],[-224.32,-74.78],[-195.43,-51.75],[-161.19,-39.07],[-156.24,-31.38],[-154.26,-27.59]],"o":[[-152.55,29.8],[-148.15,28.05],[-145.84,26.93],[-145.35,25.59],[-144.77,24.85],[-143.64,25.04],[-142.84,24.93],[-142.36,23.59],[-141.07,22.39],[-137.95,21.04],[-126.85,14.06],[-102,-2.37],[-83.28,-14.46],[-80.9,-15.48],[-79.58,-16.4],[-77.96,-17.29],[-76.58,-18.4],[-74.96,-19.29],[-72.06,-21.86],[-63.59,-26.74],[-62.1,-30.4],[-67.32,-32.33],[-77.29,-36.05],[-87.09,-39.51],[-96,-42.75],[-101.93,-44.64],[-105.59,-46.33],[-107.62,-48.67],[-109.9,-50.65],[-124.36,-60.46],[-129.89,-110.13],[-145.18,-136.1],[-162.21,-143.74],[-172.28,-147.35],[-194.62,-149.44],[-214.38,-152.08],[-224.21,-156.23],[-234.03,-161.77],[-237.97,-164.52],[-241.75,-168.63],[-244.84,-169.66],[-247.83,-173.59],[-255.65,-178.96],[-268.33,-187.9],[-296.78,-190.3],[-306.52,-177.88],[-296.85,-160.75],[-287.68,-153.85],[-286.54,-151.69],[-284.65,-151.84],[-281.56,-148.64],[-271.85,-145.73],[-259.38,-140.52],[-246.35,-134.38],[-233.24,-124.29],[-224.55,-85.39],[-213.06,-54.5],[-172.64,-44.25],[-157.85,-31.67],[-155.45,-30.15],[-146.76,-10.97]],"v":[[-154,30],[-149.57,28.65],[-146,27],[-145.52,26.04],[-145,25],[-144.02,24.97],[-143,25],[-142.52,24.04],[-142,23],[-138.99,21.49],[-136,20],[-110.32,3.12],[-84,-14],[-81.66,-15.15],[-80,-16],[-78.5,-16.99],[-77,-18],[-75.5,-18.99],[-74,-20],[-66.21,-25.13],[-62,-30],[-65.4,-31.65],[-72,-34],[-83.93,-38.4],[-94,-42],[-100.01,-44.01],[-105,-46],[-106.94,-47.88],[-109,-50],[-112,-51],[-128,-95],[-139,-129],[-160,-143],[-167,-146],[-184,-148],[-214,-152],[-217,-154],[-233,-161],[-236,-163],[-241,-168],[-244,-169],[-246,-172],[-252,-176],[-263,-185],[-290,-191],[-305,-183],[-300,-166],[-288,-154],[-287,-152],[-285,-152],[-284,-150],[-275,-147],[-266,-143],[-247,-135],[-245,-134],[-226,-94],[-220,-67],[-181,-47],[-158,-32],[-156,-31],[-154,-27]],"c":true}],"h":1},{"t":167,"s":[{"i":[[-155.23,4.37],[-152.08,30.31],[-149.68,28.39],[-147,26.74],[-144.01,24.65],[-140.37,22.51],[-136.47,20.45],[-135.04,19.3],[-133.43,18.41],[-132.36,17.54],[-131.54,17.35],[-125.75,13.44],[-117.56,8.15],[-114.68,6.48],[-114.2,5.12],[-110.62,3.16],[-105.93,0.76],[-98.19,-5.11],[-87.83,-11.56],[-81.73,-15.27],[-77.39,-17.62],[-76.04,-18.7],[-74.42,-19.59],[-68.72,-23.64],[-60.74,-28.64],[-61.8,-30.41],[-65.62,-32.37],[-73.87,-35.74],[-84.6,-39.17],[-118.2,-52.37],[-127.51,-94.46],[-139.68,-133.34],[-156.85,-143.16],[-162.71,-144.31],[-188.19,-149.75],[-207.74,-152.09],[-226.82,-156.31],[-233.57,-161.68],[-236.23,-162.42],[-249.85,-175.06],[-257.06,-179.33],[-260.25,-182.84],[-264.22,-184.51],[-267.64,-186.29],[-271.47,-188.84],[-302.52,-191.36],[-294.53,-158.17],[-288.29,-153.79],[-285.69,-151.4],[-273.67,-147.16],[-262.6,-142.01],[-251.44,-137.43],[-240.75,-129.88],[-238.68,-125.92],[-235.73,-123.13],[-227.7,-101.28],[-219.21,-62.91],[-190.81,-50.92],[-169.65,-43.58],[-164.31,-39.07],[-158.52,-34.28]],"o":[[-152.99,30.61],[-150.42,29.2],[-148,27.42],[-145.01,25.36],[-141.88,23.28],[-137.66,21.09],[-135.58,19.6],[-133.97,18.71],[-132.59,17.61],[-131.84,17.4],[-128.47,15.36],[-120.3,9.84],[-114.83,6.92],[-114.36,5.58],[-112.4,4.03],[-107.38,1.53],[-101.53,-2.83],[-91.34,-9.48],[-83.28,-14.46],[-78.78,-16.85],[-76.58,-18.4],[-74.96,-19.29],[-72.1,-21.82],[-63.05,-27.05],[-60.99,-29.97],[-64.11,-31.6],[-70.07,-34.41],[-81.14,-38.13],[-103.82,-45.78],[-128.4,-79.86],[-132.79,-121.06],[-153.29,-140.8],[-160.94,-144.76],[-175.97,-148.29],[-204.42,-151.47],[-219.53,-154.61],[-233.41,-160.24],[-234.86,-162.65],[-243.24,-167.7],[-255.86,-179.66],[-259.51,-181.08],[-262.92,-184.6],[-267.05,-186.28],[-270.38,-187.11],[-283.08,-192.43],[-307.81,-173.51],[-289.1,-154.83],[-286.12,-152.46],[-280.21,-148.19],[-265.24,-143.95],[-254.25,-138.76],[-244.75,-132.71],[-238.26,-127.2],[-236.88,-123.48],[-228.08,-111.26],[-222.43,-71.42],[-200.87,-52.3],[-178.58,-46.87],[-166.36,-40.43],[-160.7,-36.12],[-146.41,-16.12]],"v":[[-154,30],[-151.25,29.75],[-149,28],[-146.01,26.05],[-143,24],[-139.02,21.8],[-136,20],[-134.5,19.01],[-133,18],[-132.1,17.47],[-131,17],[-123.02,11.64],[-115,7],[-114.52,6.03],[-114,5],[-109,2.35],[-105,0],[-94.77,-7.29],[-84,-14],[-80.26,-16.06],[-77,-18],[-75.5,-18.99],[-74,-20],[-65.89,-25.34],[-61,-30],[-62.96,-31],[-67,-33],[-77.5,-36.94],[-87,-40],[-124,-68],[-130,-107],[-150,-139],[-159,-144],[-165,-145],[-200,-151],[-212,-153],[-233,-160],[-234,-162],[-237,-163],[-255,-179],[-258,-180],[-262,-184],[-265,-185],[-270,-187],[-272,-189],[-305,-183],[-291,-156],[-287,-153],[-285,-151],[-268,-145],[-260,-141],[-248,-135],[-239,-128],[-238,-125],[-235,-122],[-225,-86],[-209,-57],[-182,-48],[-168,-42],[-163,-38],[-157,-32]],"c":true}],"h":1},{"t":168,"s":[{"i":[[-71.19,-21.39],[-84.11,-39.5],[-119.03,-55.18],[-127.91,-81.25],[-130.45,-104.73],[-133.07,-115.93],[-134.96,-123.06],[-136.79,-125.9],[-138.58,-127.37],[-143.55,-133.85],[-152.78,-141.49],[-178.41,-149],[-216.59,-152.97],[-227.11,-157.64],[-228.5,-158.75],[-231.5,-160.05],[-234.92,-161.31],[-237.76,-163.5],[-239.99,-166.21],[-241.58,-167.1],[-242.76,-166.89],[-243.31,-167.5],[-243.85,-168.88],[-248.72,-172.89],[-255.62,-178.26],[-261.92,-183.04],[-267.87,-187.18],[-283.63,-191.08],[-303.7,-187.4],[-305.23,-179.96],[-303.62,-174.78],[-300.36,-166.83],[-295.11,-159.97],[-287.9,-153.86],[-279.25,-149.35],[-268.88,-145.22],[-259.1,-141.48],[-245.86,-134.09],[-235.28,-121.97],[-230.25,-109.78],[-227.71,-98.06],[-226.09,-87.83],[-224.69,-78.41],[-220.68,-69.5],[-217.75,-63.79],[-206.86,-56.13],[-177.54,-48.81],[-167.44,-41.33],[-164.8,-40.69],[-156.84,-32.29],[-155.87,7.68],[-151.51,28.8],[-143.27,25.22],[-139.85,22.82],[-136.85,20.82],[-133.85,18.82],[-132.08,17.7],[-120.19,9.34],[-114.4,5.24],[-106.86,1.52],[-98.65,-4.29]],"o":[[-70.6,-36.16],[-108.33,-49.01],[-126.69,-73.39],[-129.79,-96.93],[-132.59,-113.4],[-134.25,-120.76],[-136.25,-125.46],[-137.95,-126.85],[-140.91,-130.86],[-149.49,-139.17],[-165.62,-147.51],[-203.9,-151.73],[-226.61,-157.26],[-228.06,-158.38],[-230.29,-159.65],[-233.82,-160.88],[-237.01,-162.65],[-239.25,-165.28],[-241.2,-167.16],[-242.36,-166.97],[-243.14,-167.06],[-243.67,-168.41],[-246.41,-171.01],[-253.32,-176.51],[-259.99,-181.45],[-265.87,-185.9],[-275.53,-190.14],[-297.71,-189.71],[-305.42,-181.57],[-304.34,-176.56],[-301.8,-169.6],[-297.01,-162.02],[-290.52,-155.68],[-282.26,-150.69],[-272.34,-146.48],[-262.26,-142.72],[-250.47,-137.36],[-238.26,-126.4],[-231.39,-113.5],[-228.41,-102.06],[-226.5,-91.13],[-225.19,-81.47],[-222.92,-72.22],[-217.85,-65.28],[-214.2,-60.04],[-192.55,-50.47],[-167.58,-42.75],[-166.08,-40.31],[-160.06,-36.59],[-148.07,-11.88],[-152.8,32.16],[-147.12,26.49],[-141.16,23.2],[-138.16,21.2],[-135.16,19.2],[-132.19,17.22],[-125.62,13.52],[-114.66,6.85],[-110.85,3.1],[-102.01,-2.43],[-83.6,-14.03]],"v":[[-60,-30],[-96.22,-44.25],[-124,-67],[-128.85,-89.09],[-132,-111],[-133.66,-118.34],[-136,-125],[-137.37,-126.38],[-139,-128],[-146.52,-136.51],[-156,-143],[-191.16,-150.36],[-226,-157],[-227.58,-158.01],[-229,-159],[-232.66,-160.47],[-236,-162],[-238.5,-164.39],[-241,-167],[-241.97,-167.04],[-243,-167],[-243.49,-167.95],[-244,-169],[-251.02,-174.7],[-258,-180],[-263.9,-184.47],[-270,-188],[-290.67,-190.4],[-305,-183],[-304.79,-178.26],[-303,-173],[-298.69,-164.43],[-293,-158],[-285.08,-152.27],[-276,-148],[-265.57,-143.97],[-256,-140],[-242.06,-130.25],[-233,-117],[-229.33,-105.92],[-227,-94],[-225.64,-84.65],[-224,-76],[-219,-67],[-217,-63],[-204,-55],[-168,-43],[-167,-41],[-164,-40],[-155,-28],[-155,30],[-150,28],[-142,24],[-139,22],[-136,20],[-133,18],[-131,17],[-115,7],[-114,5],[-105,0],[-96,-6]],"c":true}],"h":1},{"t":169,"s":[{"i":[[-60.77,-29.03],[-74.28,-37.51],[-98,-45.22],[-118.04,-56.58],[-127.34,-77.14],[-130.11,-102.98],[-133.26,-115.28],[-135.48,-120.67],[-137.52,-125.44],[-139.75,-128.32],[-143.4,-133.41],[-146.24,-136.7],[-149.24,-138.96],[-151.45,-140.67],[-177.82,-149.3],[-221.28,-153.63],[-235.59,-161.68],[-239.62,-164.96],[-243.63,-167.94],[-247.72,-170.95],[-254.1,-176.55],[-262.05,-183.4],[-279.06,-190.12],[-303.25,-188.86],[-303.46,-170.76],[-290.02,-155.38],[-275.3,-147.44],[-257.61,-142.24],[-250.6,-137.89],[-249.41,-136.28],[-242.68,-131.02],[-235.67,-121.59],[-230.19,-107.88],[-227.13,-91.97],[-225.19,-80.83],[-223.29,-72.4],[-213.2,-60.16],[-192.8,-52.21],[-175.89,-46.77],[-163.18,-39.92],[-152.38,-16.63],[-156.37,18.85],[-144.53,25.31],[-129.46,15.9],[-118.78,8.87],[-110.03,2.94],[-104.31,-0.54],[-100.41,-2.6],[-99.04,-3.7],[-97.42,-4.59],[-96.04,-5.7],[-94.42,-6.59],[-93.04,-7.7],[-91.42,-8.59],[-90.04,-9.7],[-88.42,-10.59],[-87.37,-11.48],[-86.59,-11.65],[-80.86,-15.27],[-73.51,-20.4],[-66.65,-24.53]],"o":[[-66.53,-34.82],[-90.01,-42.71],[-112.01,-52.16],[-125.79,-69.14],[-129.5,-94.06],[-132.52,-113.19],[-134.74,-119.02],[-136.9,-124.28],[-138.95,-127.46],[-142.53,-132.06],[-145.25,-135.73],[-148.51,-138.38],[-150.7,-140.11],[-163.43,-147.74],[-206.75,-152.25],[-234.28,-160.7],[-238.26,-163.81],[-242.28,-166.96],[-246.35,-169.93],[-251.57,-174.1],[-259.34,-181.2],[-269.94,-187.68],[-295.72,-190.71],[-306.7,-177.32],[-295.12,-159.79],[-281.5,-149.57],[-263.36,-143.78],[-251.14,-138.5],[-249.73,-136.78],[-245.59,-133.72],[-237.72,-124.95],[-231.63,-112.9],[-227.95,-97.42],[-225.55,-83.63],[-224.06,-75.21],[-218.8,-64.05],[-200.2,-54.24],[-180.8,-48.31],[-167.08,-42.58],[-152.95,-27.3],[-154.09,6.45],[-149.8,28.36],[-134.37,19.08],[-121.77,10.9],[-112.91,4.89],[-105.85,0.26],[-101.59,-1.97],[-99.58,-3.4],[-97.96,-4.29],[-96.58,-5.4],[-94.96,-6.29],[-93.58,-7.4],[-91.96,-8.29],[-90.58,-9.4],[-88.96,-10.29],[-87.57,-11.41],[-86.87,-11.6],[-83.35,-13.57],[-75.94,-18.69],[-69.02,-23.26],[-62.53,-27.41]],"v":[[-60,-31],[-82.15,-40.11],[-105.01,-48.69],[-122,-63],[-128.42,-85.6],[-132,-111],[-134,-117.15],[-136,-122],[-138.24,-126.45],[-141,-130],[-144.33,-134.57],[-148,-138],[-149.97,-139.54],[-152,-141],[-192.28,-150.77],[-233,-160],[-236.93,-162.74],[-241,-166],[-244.99,-168.94],[-249,-172],[-256.72,-178.87],[-265,-185],[-287.39,-190.41],[-305,-183],[-299.29,-165.27],[-288,-154],[-269.33,-145.61],[-252,-139],[-250.17,-137.34],[-249,-136],[-240.2,-127.98],[-234,-118],[-229.07,-102.65],[-226,-86],[-224.63,-78.02],[-222,-70],[-206.7,-57.2],[-186,-50],[-171.49,-44.67],[-160,-36],[-153.24,-5.09],[-155,31],[-139.45,22.2],[-125,13],[-115.85,6.88],[-107,1],[-102.95,-1.25],[-100,-3],[-98.5,-4],[-97,-5],[-95.5,-5.99],[-94,-7],[-92.5,-7.99],[-91,-9],[-89.5,-9.99],[-88,-11],[-87.12,-11.54],[-86,-12],[-78.4,-16.98],[-71,-22],[-64.59,-25.97]],"c":true}],"h":1},{"t":170,"s":[{"i":[[-157.87,2.8],[-153.6,31.15],[-151.06,28.58],[-147.04,26.59],[-142.57,24.55],[-141.04,23.3],[-139.43,22.41],[-138.04,21.3],[-136.43,20.41],[-135.04,19.3],[-133.43,18.41],[-132.36,17.54],[-131.54,17.35],[-123.42,11.96],[-111.36,3.8],[-104.35,-0.5],[-100.5,-2.52],[-99.04,-3.7],[-97.42,-4.59],[-96.04,-5.7],[-94.42,-6.59],[-93.04,-7.7],[-91.42,-8.59],[-90.04,-9.7],[-88.42,-10.59],[-87.37,-11.48],[-86.59,-11.65],[-81.38,-14.94],[-74.48,-19.79],[-59.65,-28.64],[-63.13,-32.52],[-75.29,-38.71],[-88.42,-43.38],[-98.76,-46.03],[-105.07,-49.98],[-112.28,-52.72],[-122.19,-62.65],[-129.85,-97.52],[-136.42,-123.55],[-144.59,-135.48],[-163.08,-147],[-214.38,-150.2],[-239.12,-164.88],[-248.96,-171.57],[-254.11,-176.54],[-258.63,-179.38],[-260.62,-181.75],[-263.2,-182.5],[-265.31,-184.62],[-311.42,-195.13],[-300.21,-167.76],[-287.31,-154.06],[-256.16,-141.76],[-248.47,-135.35],[-245.8,-134.73],[-238.65,-125.86],[-233.89,-117.31],[-228.17,-90.54],[-216.86,-62.33],[-195.73,-53.82],[-165.48,-44.71]],"o":[[-154.57,31.61],[-151.84,29.64],[-148.75,27.32],[-143.95,25.21],[-141.58,23.6],[-139.97,22.71],[-138.58,21.6],[-136.97,20.71],[-135.58,19.6],[-133.97,18.71],[-132.59,17.61],[-131.84,17.4],[-127.24,14.56],[-115.48,6.58],[-105.85,0.26],[-101.67,-1.89],[-99.58,-3.4],[-97.96,-4.29],[-96.58,-5.4],[-94.96,-6.29],[-93.58,-7.4],[-91.96,-8.29],[-90.58,-9.4],[-88.96,-10.29],[-87.57,-11.41],[-86.87,-11.6],[-83.39,-13.55],[-76.92,-18.06],[-66.47,-24.88],[-60.17,-32.15],[-70.16,-36.15],[-85.45,-42.24],[-95.62,-45.93],[-102.96,-47.85],[-109.51,-52.33],[-117.74,-56.77],[-129.87,-76.84],[-134.25,-117.74],[-141.47,-132.26],[-154.83,-143.05],[-192.56,-153.61],[-236.35,-161.76],[-245.55,-169.62],[-253.52,-175.22],[-257.66,-179.28],[-260.33,-180.15],[-261.94,-182.6],[-264.6,-183.37],[-279.77,-192.48],[-303.13,-170.41],[-293.04,-157.36],[-268.25,-145.75],[-248.55,-136.7],[-247.07,-134.3],[-241.81,-131.07],[-235.36,-120.17],[-228.95,-104.43],[-222.16,-68.65],[-202.52,-55.32],[-177.65,-48.09],[-147.13,-17.19]],"v":[[-156,31],[-152.72,30.4],[-150,28],[-145.5,25.9],[-142,24],[-140.5,23.01],[-139,22],[-137.5,21.01],[-136,20],[-134.5,19.01],[-133,18],[-132.1,17.47],[-131,17],[-119.45,9.27],[-107,1],[-103.01,-1.19],[-100,-3],[-98.5,-4],[-97,-5],[-95.5,-5.99],[-94,-7],[-92.5,-7.99],[-91,-9],[-89.5,-9.99],[-88,-11],[-87.12,-11.54],[-86,-12],[-79.15,-16.5],[-71,-22],[-60,-31],[-66,-34],[-79,-40],[-93,-45],[-101,-47],[-107,-51],[-114,-54],[-124,-66],[-133,-112],[-139,-128],[-148,-138],[-172,-149],[-233,-160],[-242,-167],[-252,-174],[-256,-178],[-260,-180],[-261,-182],[-264,-183],[-266,-185],[-304,-173],[-299,-166],[-278,-150],[-249,-137],[-248,-135],[-245,-134],[-237,-123],[-233,-115],[-225,-79],[-208,-58],[-190,-52],[-159,-35]],"c":true}],"h":1},{"t":171,"s":[{"i":[[-159.71,7.57],[-139.76,22.3],[-115.9,6.7],[-99.56,-3.92],[-87.61,-11.37],[-83.68,-13.51],[-83.19,-14.88],[-82.39,-15.09],[-81.26,-14.88],[-80.68,-15.51],[-80.18,-16.88],[-79.4,-17.1],[-78.25,-16.89],[-77.68,-17.51],[-77.19,-18.88],[-74.12,-20.46],[-69.54,-22.48],[-68.04,-23.7],[-66.42,-24.59],[-62.91,-27.4],[-58.92,-30.31],[-61.1,-32.63],[-69.62,-37],[-80.54,-41.39],[-90.51,-44.74],[-96.65,-46.7],[-100.85,-47.52],[-104.01,-49.16],[-107,-51.47],[-110.67,-53.16],[-114.29,-54.46],[-120.14,-59.81],[-125.87,-69.02],[-129.53,-81.53],[-131.18,-97.64],[-134.78,-116.39],[-142.43,-132.43],[-147.53,-137.63],[-150.2,-140.41],[-152.26,-141.49],[-154.4,-141.66],[-156.17,-143.01],[-157.46,-144.74],[-213.97,-149.78],[-241.79,-165.6],[-263.25,-185.79],[-303.46,-190.35],[-300.17,-167.98],[-297.6,-162.79],[-292.49,-158.67],[-290.37,-156.25],[-271,-147.31],[-253.3,-139.33],[-244.16,-132.75],[-241.61,-129.79],[-231.56,-108.34],[-225.55,-73.75],[-217.73,-64.99],[-207.24,-58.76],[-187.29,-52.79],[-161.08,-40.41]],"o":[[-147.55,27.2],[-123.93,12.05],[-103.51,-1.24],[-91.61,-8.99],[-83.83,-13.07],[-83.36,-14.41],[-82.77,-15.15],[-81.64,-14.96],[-80.84,-15.07],[-80.35,-16.41],[-79.77,-17.15],[-78.64,-16.96],[-77.83,-17.07],[-77.36,-18.42],[-75.85,-19.72],[-70.97,-21.84],[-68.58,-23.4],[-66.96,-24.29],[-64.7,-26.25],[-60.02,-29.43],[-59.04,-31.38],[-66.39,-35.44],[-76.78,-40.01],[-87.4,-43.75],[-95.22,-46.44],[-99.46,-47.24],[-103.01,-48.42],[-106,-50.68],[-109.27,-52.67],[-113.18,-54.05],[-117.7,-57.05],[-124.22,-65.79],[-128.69,-76.45],[-130.78,-92.12],[-133.06,-109.93],[-139.46,-127.65],[-146.68,-136.68],[-149.29,-139.5],[-151.56,-141.41],[-153.68,-141.62],[-155.69,-142.39],[-157.05,-144.18],[-179.46,-155.21],[-238.25,-162.74],[-255.18,-175.63],[-289.04,-191.82],[-306.1,-174.33],[-297.35,-164.1],[-295.41,-159.93],[-290.68,-157.85],[-282.38,-150.88],[-256.48,-141.3],[-246.32,-133.93],[-242.36,-130.04],[-233.94,-119.84],[-227.13,-86.99],[-218.87,-66.77],[-210.61,-59.8],[-194.87,-54.6],[-169.61,-46.02],[-149.07,-12.72]],"v":[[-156,32],[-131.84,17.18],[-107,1],[-95.59,-6.46],[-84,-13],[-83.52,-13.96],[-83,-15],[-82.02,-15.03],[-81,-15],[-80.52,-15.96],[-80,-17],[-79.02,-17.03],[-78,-17],[-77.52,-17.96],[-77,-19],[-72.55,-21.15],[-69,-23],[-67.5,-23.99],[-66,-25],[-61.46,-28.42],[-59,-31],[-63.75,-34.03],[-72,-38],[-83.97,-42.57],[-94,-46],[-98.05,-46.97],[-102,-48],[-105.01,-49.92],[-108,-52],[-111.92,-53.6],[-115,-55],[-122.18,-62.8],[-127,-72],[-130.15,-86.82],[-132,-103],[-137.12,-122.02],[-146,-136],[-148.41,-138.57],[-151,-141],[-152.97,-141.55],[-155,-142],[-156.61,-143.6],[-158,-145],[-235,-161],[-245,-168],[-277,-189],[-305,-181],[-298,-165],[-297,-162],[-291,-158],[-290,-156],[-263,-144],[-249,-136],[-243,-131],[-241,-129],[-229,-96],[-221,-69],[-215,-63],[-202,-57],[-180,-50],[-157,-31]],"c":true}],"h":1},{"t":172,"s":[{"i":[[-159.42,0.27],[-152.64,29.91],[-147.52,27.69],[-145.38,25.25],[-143.51,25.23],[-142.37,23.25],[-140.51,23.23],[-139.37,21.25],[-137.51,21.23],[-136.37,19.25],[-134.51,19.23],[-133.38,17.25],[-126.1,14.06],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.82,0.21],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.07,-13.65],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.39,-18.76],[-70.08,-21.96],[-66.85,-24.18],[-58.55,-29.38],[-65.48,-35.67],[-80.72,-41.84],[-103.5,-48.66],[-111.95,-53.96],[-120.6,-60.65],[-131.29,-99.94],[-138.39,-125.88],[-144.41,-133.25],[-149.28,-139.72],[-155.77,-142.82],[-162.56,-147.12],[-189.27,-152.88],[-222.32,-156.46],[-236.74,-161.79],[-238.91,-163.3],[-244.25,-167.79],[-250.21,-172.46],[-254.85,-175.08],[-259.82,-179.51],[-280.99,-193.03],[-306.1,-181.07],[-293.92,-159.39],[-262.28,-146],[-233.68,-115.76],[-226.32,-75.72],[-219.68,-67.03],[-216.8,-64.58],[-200.76,-56.76],[-177.02,-50.41],[-168.53,-44.17],[-163.36,-40.61]],"o":[[-154.5,33.37],[-148.95,27.87],[-145.67,26.85],[-144.53,24.7],[-142.68,24.85],[-141.54,22.69],[-139.68,22.85],[-138.54,20.69],[-136.68,20.85],[-135.54,18.69],[-133.67,18.85],[-130.69,15.52],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.08,2.21],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-86.76,-11.46],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-74.94,-20.3],[-68.16,-23.8],[-62.94,-27.93],[-59.15,-32.9],[-75.85,-40.05],[-93.97,-46.53],[-110.92,-52.95],[-115.76,-57.6],[-132.23,-76.92],[-137.34,-120.56],[-142.04,-131.64],[-147.73,-136.91],[-152.72,-142.28],[-160.61,-145.38],[-176.2,-152.05],[-212.11,-154.89],[-232.34,-160.27],[-238.82,-163.78],[-242.57,-165.65],[-248.83,-170.95],[-253.11,-174.95],[-258.04,-177.64],[-269.76,-186.31],[-305.03,-187.83],[-300.18,-165.67],[-278.93,-149.05],[-239.61,-130.56],[-227.83,-89.13],[-219.29,-68.17],[-217,-65.38],[-209.7,-59.41],[-184.95,-51.78],[-169.56,-46.18],[-164.98,-41.46],[-147.59,-22.01]],"v":[[-157,31],[-151,29],[-146,27],[-145,25],[-143,25],[-142,23],[-140,23],[-139,21],[-137,21],[-136,19],[-134,19],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-69,-23],[-66,-25],[-59,-32],[-71,-38],[-84,-43],[-111,-53],[-112,-54],[-123,-64],[-136,-116],[-141,-130],[-146,-135],[-151,-141],[-158,-144],[-165,-148],[-202,-154],[-229,-159],[-238,-163],[-240,-164],[-246,-169],[-252,-174],[-256,-176],[-262,-181],[-295,-190],[-303,-173],[-289,-156],[-252,-139],[-230,-99],[-221,-70],[-218,-66],[-216,-64],[-192,-54],[-171,-47],[-167,-43],[-162,-39]],"c":true}],"h":1},{"t":173,"s":[{"i":[[-161.49,4.03],[-152.27,30.34],[-146.02,26.29],[-131.59,16.98],[-113.58,5.21],[-99.66,-3.85],[-87.49,-11.42],[-83.68,-13.51],[-83.19,-14.88],[-82.39,-15.09],[-81.26,-14.88],[-80.68,-15.51],[-80.18,-16.88],[-79.4,-17.1],[-78.25,-16.89],[-77.68,-17.51],[-77.19,-18.88],[-74.13,-20.45],[-69.57,-22.46],[-68.04,-23.7],[-66.42,-24.59],[-65.04,-25.7],[-63.42,-26.59],[-62.36,-27.44],[-61.49,-27.66],[-58.05,-31.72],[-65.22,-36.14],[-78.51,-42.17],[-91.33,-46.33],[-102.12,-50.07],[-110.07,-53.11],[-112.7,-55.27],[-115.28,-56.49],[-119.48,-59.95],[-122.11,-63.83],[-123.65,-65.64],[-124.7,-66.51],[-129.8,-78.19],[-132.88,-98.22],[-138.41,-123.56],[-152.47,-142.29],[-174.32,-151.12],[-198.69,-154.13],[-215.19,-155.72],[-227.4,-157.6],[-239.39,-163.59],[-252.73,-173.33],[-259.54,-178.56],[-262.15,-180.18],[-267.76,-184.86],[-303.11,-192.64],[-301.49,-169.21],[-292.37,-159.25],[-278.28,-150.99],[-257.48,-143.37],[-252.85,-139.81],[-240.06,-127.63],[-232.57,-106.86],[-229.23,-90.01],[-219.74,-65.83],[-170.83,-52.74]],"o":[[-154.51,31.44],[-148.03,27.76],[-137.55,20.88],[-119.6,9.15],[-103.66,-1.14],[-91.58,-8.99],[-83.83,-13.07],[-83.36,-14.41],[-82.77,-15.15],[-81.64,-14.96],[-80.84,-15.07],[-80.35,-16.41],[-79.77,-17.15],[-78.64,-16.96],[-77.83,-17.07],[-77.36,-18.42],[-75.85,-19.73],[-70.99,-21.82],[-68.58,-23.4],[-66.96,-24.29],[-65.58,-25.4],[-63.96,-26.29],[-62.62,-27.37],[-61.79,-27.59],[-57.94,-30.15],[-61.69,-34.72],[-74.1,-40.51],[-87.13,-45.08],[-98.83,-49.01],[-107.74,-52.12],[-111.81,-54.78],[-114.44,-56.13],[-118.18,-58.54],[-121.45,-62.6],[-123.3,-65.39],[-124.35,-66.2],[-128.11,-72.08],[-132.19,-91.26],[-135.67,-115.16],[-146.8,-137.12],[-166.72,-149.31],[-190.3,-153.54],[-210.99,-155.42],[-223.39,-156.81],[-234.58,-160.39],[-247.68,-169.12],[-257.31,-177.07],[-260.84,-179.8],[-265.12,-183.03],[-280.85,-191.52],[-305.98,-174.98],[-295.14,-161.54],[-283.44,-153.27],[-266.41,-146.11],[-254.16,-140.2],[-246.46,-133.69],[-233.66,-113.77],[-229.93,-95.34],[-224.96,-72.58],[-192.92,-52.53],[-148.19,-18.8]],"v":[[-157,32],[-150.15,29.05],[-144,25],[-125.59,13.07],[-107,1],[-95.62,-6.42],[-84,-13],[-83.52,-13.96],[-83,-15],[-82.02,-15.03],[-81,-15],[-80.52,-15.96],[-80,-17],[-79.02,-17.03],[-78,-17],[-77.52,-17.96],[-77,-19],[-72.56,-21.14],[-69,-23],[-67.5,-23.99],[-66,-25],[-64.5,-25.99],[-63,-27],[-62.08,-27.52],[-61,-28],[-59.87,-33.22],[-69,-38],[-82.82,-43.62],[-96,-48],[-104.93,-51.09],[-111,-54],[-113.57,-55.7],[-116,-57],[-120.46,-61.28],[-123,-65],[-124,-65.92],[-125,-67],[-130.99,-84.73],[-134,-105],[-142.6,-130.34],[-160,-146],[-182.31,-152.33],[-207,-155],[-219.29,-156.27],[-231,-159],[-243,-166],[-256,-176],[-260,-179],[-263,-181],[-270,-186],[-305,-181],[-298,-165],[-289,-157],[-271,-148],[-255,-141],[-252,-139],[-237,-121],[-231,-100],[-228,-85],[-210,-61],[-161,-38]],"c":true}],"h":1},{"t":174,"s":[{"i":[[-293.57,-189.35],[-295.66,-188.95],[-296.68,-189.06],[-303.92,-185.72],[-304.59,-175.64],[-297.08,-162.71],[-283.83,-154.1],[-273.27,-149.65],[-264.91,-146.34],[-257.75,-142.8],[-252.37,-139.11],[-241.48,-128.2],[-232.84,-108.2],[-229.48,-92.21],[-227.15,-80.96],[-225.09,-75.54],[-223.5,-71.72],[-219.19,-67.07],[-212.72,-63.89],[-199.96,-58.29],[-183.47,-53.35],[-175.09,-49.75],[-170.52,-47.5],[-166.32,-43.68],[-161.21,-38.28],[-156.27,-24.24],[-157.24,-3.2],[-158.83,14.55],[-158.31,31.16],[-155.51,32.21],[-153.25,31.13],[-149.71,29.01],[-145.09,25.7],[-117.96,8.16],[-83.44,-14.44],[-65.86,-25.15],[-57.85,-30.43],[-61.38,-34.53],[-72.65,-40.42],[-75.23,-41.37],[-77.14,-41.67],[-99.1,-49.28],[-123.87,-63.48],[-131.14,-81.22],[-133.08,-97.26],[-136.7,-115.77],[-143.87,-132.32],[-148.37,-137.79],[-150.35,-140.46],[-155.45,-143.87],[-163.27,-147.2],[-179.21,-152.66],[-202.47,-154.88],[-218.25,-156.76],[-229.43,-158.59],[-238.65,-162.89],[-245.8,-168.4],[-249.74,-171.1],[-252.28,-172.46],[-260.6,-179.05],[-273.78,-187.89]],"o":[[-295.31,-188.92],[-296.34,-189.02],[-301.62,-188.15],[-305.41,-179.47],[-300.67,-166.67],[-288.67,-156.43],[-276.06,-150.73],[-267.69,-147.46],[-259.82,-143.99],[-254.03,-140.36],[-245.56,-133.6],[-235.12,-115.5],[-230.15,-96.23],[-227.97,-84.57],[-225.58,-76.92],[-224.05,-72.93],[-221.33,-68.62],[-214.88,-64.7],[-205.48,-60.12],[-188.96,-54.91],[-176.83,-50.5],[-171.94,-48.25],[-168.22,-45.29],[-162.82,-40.18],[-157.15,-30.64],[-156.32,-10.52],[-158.42,7.97],[-158.77,26.15],[-156.38,32.4],[-153.94,31.58],[-151.41,30.16],[-146.55,26.78],[-129.74,15.89],[-94.81,-7],[-68.93,-23.68],[-60.32,-28.52],[-58.05,-32.57],[-68.68,-38.46],[-74.66,-41.28],[-76.46,-41.56],[-88.66,-46.04],[-116.71,-58],[-130.1,-76.34],[-132.63,-91.68],[-135.02,-109.36],[-141.13,-127.25],[-147.69,-136.81],[-149.7,-139.62],[-152.82,-142.52],[-160.68,-146.21],[-171.98,-151.22],[-194.46,-154.49],[-214.53,-156.46],[-225.7,-157.82],[-236,-161.19],[-243.55,-166.49],[-248.85,-170.62],[-251.46,-172.02],[-256.46,-175.6],[-269.26,-185.19],[-284.8,-190.79]],"v":[[-295,-189],[-296,-188.99],[-297,-189],[-304.66,-182.59],[-303,-172],[-292.87,-159.57],[-279,-152],[-270.48,-148.55],[-262,-145],[-255.89,-141.58],[-251,-138],[-238.3,-121.85],[-231,-100],[-228.73,-88.39],[-226,-78],[-224.57,-74.23],[-223,-71],[-217.03,-65.89],[-211,-63],[-194.46,-56.6],[-178,-51],[-173.52,-49],[-170,-47],[-164.57,-41.93],[-160,-36],[-156.29,-17.38],[-158,4],[-158.8,20.35],[-157,32],[-154.72,31.89],[-153,31],[-148.13,27.9],[-144,25],[-106.39,0.58],[-70,-23],[-63.09,-26.84],[-58,-32],[-65.03,-36.49],[-74,-41],[-75.85,-41.47],[-78,-42],[-107.9,-53.64],[-128,-72],[-131.89,-86.45],[-134,-103],[-138.92,-121.51],[-147,-136],[-149.03,-138.71],[-151,-141],[-158.06,-145.04],[-165,-148],[-186.84,-153.57],[-211,-156],[-221.97,-157.29],[-233,-160],[-241.1,-164.69],[-248,-170],[-250.6,-171.56],[-253,-173],[-264.93,-182.12],[-278,-189]],"c":true}],"h":1},{"t":175,"s":[{"i":[[-294.3,-189.17],[-301.22,-187.37],[-304.57,-183.65],[-304.5,-175.67],[-300.68,-168.93],[-297.7,-164.68],[-295.61,-162.24],[-291.54,-159.11],[-287.97,-156.56],[-284.19,-154.45],[-280.37,-152.63],[-271.82,-149.22],[-260.38,-145.02],[-256.79,-142.78],[-256.03,-142.03],[-254.25,-140.46],[-251.82,-138.67],[-248.07,-135.28],[-244.91,-131.19],[-242.6,-128.98],[-237.69,-119.46],[-234.72,-109.65],[-232.13,-104.56],[-230.07,-90.8],[-222.01,-69.92],[-211.33,-63.05],[-197.17,-58.6],[-159.54,-44.65],[-157.34,-4.67],[-161.65,39.29],[-150.85,29.82],[-139.16,22.15],[-126.76,14.69],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-88.85,-10.18],[-83.08,-14.06],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-57.86,-28.46],[-64.77,-37.09],[-115.3,-51.96],[-132.27,-107.96],[-143.79,-130.08],[-146.61,-136.47],[-158.49,-146.31],[-186.33,-154.05],[-226.06,-156.9],[-243.1,-166.05],[-259.35,-177.87],[-267.33,-183.59],[-280.39,-189.5]],"o":[[-298.93,-188.05],[-304.04,-185.18],[-305.41,-178.46],[-302.14,-170.91],[-298.39,-165.81],[-296.31,-162.89],[-292.81,-160.08],[-289.12,-157.35],[-285.5,-155.13],[-281.62,-153.19],[-275.63,-150.46],[-264.2,-146.5],[-257.03,-143.02],[-256.29,-142.29],[-255.09,-141.12],[-252.62,-139.23],[-249.37,-136.68],[-245.84,-132.53],[-243.41,-129.22],[-239.66,-124.16],[-234.89,-112.09],[-233.89,-106.58],[-230.18,-95.83],[-225.28,-75.07],[-213.55,-64.4],[-203.55,-59.54],[-175.84,-51.99],[-155.79,-18.59],[-158.62,10.15],[-152.16,30.2],[-145.93,25.1],[-133.35,18.2],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.16,-9.8],[-85.82,-13.09],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-70.61,-22.96],[-58.07,-33.72],[-90.59,-49.14],[-135.95,-82.92],[-141.76,-128.66],[-146.33,-134.11],[-150.12,-140.33],[-172.7,-153.15],[-212.41,-156],[-240.16,-163.47],[-253.32,-172.91],[-266.6,-182.37],[-272.06,-186.51],[-289.35,-190.47]],"v":[[-295,-189],[-302.63,-186.28],[-305,-181],[-303.32,-173.29],[-300,-168],[-297,-163.79],[-294,-161],[-290.33,-158.23],[-287,-156],[-282.9,-153.82],[-279,-152],[-268.01,-147.86],[-257,-143],[-256.54,-142.53],[-256,-142],[-253.43,-139.84],[-251,-138],[-246.96,-133.9],[-244,-130],[-242,-128],[-236,-115],[-234,-107],[-232,-104],[-228,-84],[-216,-66],[-209,-62],[-192,-57],[-157,-27],[-158,3],[-153,31],[-150,29],[-136,20],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-88,-11],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-58,-32],[-71,-40],[-126,-68],[-141,-127],[-145,-132],[-148,-138],[-162,-148],[-199,-155],[-237,-162],[-246,-168],[-266,-182],[-268,-184],[-285,-190]],"c":true}],"h":1},{"t":176,"s":[{"i":[[-292.87,-189.51],[-301.22,-187.39],[-304.59,-183.64],[-304.67,-177.46],[-302.34,-172.66],[-301.61,-170.63],[-301.41,-168.61],[-297.37,-164.1],[-289.99,-158.62],[-286.38,-156.52],[-282.34,-154.64],[-266.39,-147.44],[-247.97,-135.93],[-240.04,-123.5],[-234.99,-112.33],[-232.79,-103.44],[-231.67,-94.75],[-229.36,-85.96],[-225.79,-75.82],[-220.83,-70.54],[-214.62,-65.24],[-198.29,-59.11],[-176.53,-52.39],[-166.96,-45.13],[-161.17,-38.69],[-156.84,-18.84],[-160.36,10.39],[-159.56,24.75],[-158.34,31.71],[-154.52,31.43],[-135.62,19.48],[-119.91,9.87],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-88.85,-10.18],[-83.08,-14.06],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-57.98,-28.32],[-64.01,-36.92],[-79.97,-44.59],[-106.99,-52.95],[-114.95,-57.96],[-123.57,-64.67],[-133.1,-109.07],[-153.52,-143.55],[-196.64,-154.44],[-237.61,-162.35],[-254,-172.7],[-259.92,-178.17],[-263.01,-179.33],[-266.64,-183.17],[-274.14,-186.14],[-278.47,-188.85]],"o":[[-298.92,-188.07],[-304.05,-185.17],[-305.25,-179.38],[-303.21,-174.1],[-301.65,-171.32],[-301.48,-169.27],[-299.87,-166.3],[-292.43,-160.27],[-287.71,-157.2],[-283.69,-155.24],[-273.65,-150.48],[-253.55,-140.17],[-242.05,-127.09],[-236.51,-116.13],[-233.2,-106.31],[-232.02,-97.66],[-230.46,-89.8],[-227.02,-78.97],[-222.76,-72.67],[-216.76,-66.83],[-206.03,-61.17],[-183.54,-54.72],[-169.37,-47.03],[-162.85,-40.96],[-156.66,-28.29],[-158.69,0.5],[-159.89,21.64],[-158.79,29.78],[-156.27,33.47],[-142.17,24.42],[-124.83,12.62],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.16,-9.8],[-85.82,-13.09],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-70.71,-22.9],[-58.02,-34.49],[-74.99,-42.57],[-93.98,-49.49],[-113.92,-56.95],[-118.73,-61.58],[-138.23,-84.81],[-145.71,-135.89],[-176.2,-155.64],[-228.09,-158.6],[-249.22,-169.65],[-258.63,-176.24],[-261.88,-179.68],[-265.46,-180.98],[-271.17,-185.94],[-277.38,-187.11],[-283.96,-190.43]],"v":[[-295,-189],[-302.63,-186.28],[-305,-181],[-303.94,-175.78],[-302,-172],[-301.54,-169.95],[-301,-168],[-294.9,-162.18],[-289,-158],[-285.04,-155.88],[-281,-154],[-259.97,-143.81],[-244,-130],[-238.28,-119.82],[-234,-109],[-232.41,-100.55],[-231,-92],[-228.19,-82.47],[-225,-75],[-218.79,-68.68],[-212,-64],[-190.92,-56.92],[-172,-49],[-164.91,-43.05],[-160,-36],[-157.76,-9.17],[-160,19],[-159.17,27.27],[-158,32],[-152,30],[-127,14],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-88,-11],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-58,-32],[-70,-40],[-84,-46],[-114,-57],[-115,-58],[-126,-68],[-142,-128],[-160,-147],[-216,-157],[-245,-167],[-257,-175],[-261,-179],[-264,-180],[-268,-184],[-277,-187],[-279,-189]],"c":true}],"h":1},{"t":177,"s":[{"i":[[-291.89,-189.73],[-301.22,-187.4],[-304.59,-183.63],[-303.21,-171.75],[-294.52,-161.43],[-288.35,-157.12],[-279.54,-153.13],[-270.03,-149.34],[-258.83,-144.75],[-256.36,-142.59],[-255.37,-142.31],[-244.62,-131.44],[-235.26,-110.8],[-231.99,-97.09],[-230.67,-89.31],[-228.69,-83.31],[-226.46,-78.9],[-225.61,-76.63],[-225.41,-74.6],[-222.09,-70.76],[-216.49,-66.86],[-205.61,-61.55],[-191.82,-57.67],[-181.45,-54.24],[-173.19,-51.14],[-168.21,-46.57],[-163.25,-41.31],[-158.05,-24.66],[-159.45,2.97],[-160.26,18.52],[-159.15,31.08],[-156.27,32.59],[-153.32,30.75],[-142.89,24.51],[-130.99,16.54],[-124.07,12.23],[-119.39,9.38],[-116.31,6.9],[-112.08,4.66],[-106.78,0.19],[-102.19,-1.22],[-97.24,-5.54],[-78.54,-16.8],[-57.02,-30.74],[-59.66,-35.25],[-66.86,-38.82],[-69.97,-40.98],[-70.65,-41.34],[-95.7,-50.3],[-112.66,-57.86],[-118.76,-61.06],[-134.12,-86.24],[-142.91,-134.2],[-157.54,-144.79],[-158.61,-146.76],[-163.47,-149],[-171.43,-151.26],[-176.42,-153.87],[-180.39,-153.72],[-214.27,-155.93],[-261.25,-182.6]],"o":[[-298.92,-188.08],[-304.05,-185.17],[-305.7,-176.53],[-297.62,-164.19],[-291.33,-158.8],[-282.46,-154.29],[-274.12,-150.71],[-262.39,-146.36],[-256.68,-142.69],[-255.71,-142.4],[-248.99,-137.04],[-237.75,-118.32],[-232.41,-99.68],[-231.12,-91.9],[-229.46,-85.11],[-227.19,-80.21],[-225.66,-77.33],[-225.49,-75.26],[-223.85,-72.33],[-218.41,-68.03],[-210.2,-63.22],[-196.42,-58.78],[-184.61,-55.17],[-175.74,-52.23],[-170.08,-48.16],[-164.79,-43.14],[-158.83,-33.15],[-158.37,-6.6],[-160.19,13.73],[-159.74,27.2],[-157.11,32.72],[-154.38,31.61],[-147.14,27.24],[-134.81,19.16],[-125.88,13.29],[-120.83,10.27],[-117.77,7.82],[-113.47,5.32],[-108.13,2.24],[-103.79,-1.8],[-98.83,-3.43],[-86.63,-12.46],[-66.68,-24.5],[-57.02,-30.76],[-63.65,-38.23],[-68.88,-39.94],[-70.91,-41.87],[-82.1,-46.92],[-110.78,-56.3],[-117.54,-60.98],[-132.05,-71.09],[-140.1,-123.12],[-156.38,-145.32],[-158.34,-145.15],[-160.59,-147.99],[-168.44,-150.97],[-174.43,-152.12],[-178.59,-154.35],[-195.34,-156.32],[-252.36,-165.12],[-285.72,-190.04]],"v":[[-295,-189],[-302.64,-186.28],[-305,-181],[-300.41,-167.97],[-294,-161],[-285.4,-155.7],[-277,-152],[-266.21,-147.85],[-257,-143],[-256.04,-142.5],[-255,-142],[-241.19,-124.88],[-233,-102],[-231.55,-94.5],[-230,-87],[-227.94,-81.76],[-226,-78],[-225.55,-75.95],[-225,-74],[-220.25,-69.39],[-215,-66],[-201.02,-60.17],[-187,-56],[-178.6,-53.23],[-172,-50],[-166.5,-44.85],[-162,-39],[-158.21,-15.63],[-160,11],[-160,22.86],[-158,32],[-155.32,32.1],[-152,30],[-138.85,21.84],[-127,14],[-122.45,11.25],[-119,9],[-114.89,6.11],[-111,4],[-105,-1],[-101,-2],[-95,-7],[-69,-23],[-57,-32],[-62,-37],[-69,-40],[-70,-41],[-72,-42],[-105,-54],[-116,-60],[-120,-62],[-137,-104],[-156,-145],[-158,-145],[-159,-147],[-166,-150],[-174,-152],[-177,-154],[-182,-154],[-227,-159],[-279,-188]],"c":true}],"h":1},{"t":178,"s":[{"i":[[-273.32,-192.99],[-300.7,-187.56],[-304.56,-183.74],[-304.49,-175.66],[-299.66,-167.88],[-295.57,-163.66],[-291.77,-160.74],[-290.36,-159.53],[-289.54,-159.35],[-288,-158.07],[-286.45,-156.25],[-281.36,-153.89],[-273.45,-151.12],[-265.82,-147.68],[-258.73,-144.18],[-245.01,-132.1],[-235.44,-109.52],[-230.48,-88.84],[-225.32,-74.32],[-211.51,-64.21],[-191.63,-59.04],[-181.92,-55.56],[-175.57,-52.98],[-173.65,-51.45],[-173.22,-50.17],[-171.99,-49.58],[-170.4,-49.34],[-166.23,-45.42],[-161.86,-39.22],[-158.11,-18.65],[-162.05,11.18],[-160.05,26.48],[-158.15,32.93],[-156.18,32.41],[-151.22,30.13],[-150.79,29.78],[-150.03,29.03],[-146.36,26.23],[-140.23,22.83],[-136.75,20.23],[-134.05,17.67],[-126.16,14.12],[-121.69,10.1],[-111.8,4.08],[-92.31,-8.41],[-74,-19.75],[-57.06,-30.66],[-64.9,-39.96],[-77.79,-44.83],[-87.42,-49.15],[-109.24,-56.2],[-123.42,-64.39],[-124.81,-67.58],[-126.75,-68.7],[-135.04,-90.06],[-141.58,-121.84],[-146.27,-132.41],[-155.33,-144.44],[-166.8,-151.13],[-172.92,-152.4],[-224.3,-154.49]],"o":[[-298.17,-188.2],[-303.89,-185.33],[-305.41,-178.47],[-301.61,-170.36],[-296.93,-164.79],[-292.98,-161.63],[-290.59,-159.61],[-289.84,-159.4],[-288.52,-158.69],[-286.97,-156.85],[-283.88,-154.83],[-276.14,-152.03],[-268.45,-148.84],[-260.96,-145.35],[-249.79,-138.09],[-237.84,-117.82],[-231.57,-94.42],[-227.36,-78.79],[-217.69,-66.69],[-198.48,-60.39],[-184.14,-56.32],[-177.64,-53.89],[-173.79,-51.87],[-173.37,-50.6],[-172.54,-49.66],[-170.92,-49.42],[-168.05,-47.31],[-163.14,-41.38],[-157.59,-28.24],[-160.35,1.06],[-160.73,23.52],[-158.76,31.18],[-157.82,33.09],[-152.88,30.93],[-151.02,30.01],[-150.29,29.29],[-148.5,27.56],[-142.23,23.86],[-137.73,21.15],[-134.92,18.5],[-130.15,15.17],[-123.27,11.35],[-115.79,6.27],[-99.24,-3.97],[-79.23,-16.77],[-66.41,-24.68],[-56.95,-33.13],[-74.01,-44.5],[-84.45,-47.26],[-101.62,-53.81],[-119.68,-62.66],[-125.31,-66.32],[-125.12,-68.27],[-134.03,-77.44],[-138.53,-111.38],[-145.54,-131.92],[-151.57,-140.33],[-163.21,-148.76],[-170.79,-152.7],[-198.59,-159.83],[-259.2,-173.9]],"v":[[-294,-189],[-302.29,-186.45],[-305,-181],[-303.05,-173.01],[-298,-166],[-294.27,-162.65],[-291,-160],[-290.1,-159.47],[-289,-159],[-287.48,-157.46],[-286,-156],[-278.75,-152.96],[-271,-150],[-263.39,-146.51],[-257,-143],[-241.42,-124.96],[-233,-100],[-228.92,-83.81],[-222,-71],[-204.99,-62.3],[-186,-57],[-179.78,-54.73],[-174,-52],[-173.51,-51.03],[-173,-50],[-171.45,-49.5],[-170,-49],[-164.69,-43.4],[-161,-37],[-159.23,-8.8],[-161,21],[-159.41,28.83],[-158,33],[-154.53,31.67],[-151,30],[-150.54,29.53],[-150,29],[-144.3,25.04],[-139,22],[-135.83,19.37],[-133,17],[-125,13],[-120,9],[-107,1],[-82,-15],[-69,-23],[-57,-32],[-71,-43],[-81,-46],[-90,-50],[-117,-61],[-125,-66],[-125,-68],[-127,-69],[-137,-102],[-144,-128],[-148,-135],[-160,-147],[-169,-152],[-175,-153],[-245,-166]],"c":true}],"h":1},{"t":179,"s":[{"i":[[-287.03,-190.29],[-300.7,-187.59],[-304.56,-183.71],[-304.8,-177.05],[-302.57,-170.86],[-301.13,-169.29],[-299.32,-168.4],[-298.9,-167.42],[-299.11,-166.24],[-298.51,-165.7],[-297.11,-165.1],[-292.99,-161.43],[-287.07,-157.02],[-282.05,-154.46],[-273.94,-152.32],[-265.43,-148.36],[-261.35,-144.89],[-255.84,-142.66],[-249.24,-135.97],[-234.33,-96.78],[-223.29,-72.11],[-171.68,-60.12],[-163.55,1.25],[-158.09,32.96],[-151.37,30.22],[-150.07,29.07],[-141.71,23.82],[-134.68,18.08],[-126.2,14.15],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.82,0.21],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.27,-13.52],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.26,-22.2],[-57.16,-30.14],[-74.94,-45.48],[-110.98,-56.54],[-135.04,-87.97],[-143.63,-126.92],[-156.85,-145.9],[-177.67,-154.98],[-216.22,-156.63],[-234.07,-162.3],[-241.03,-164.05],[-250.96,-169.97],[-257.35,-174.78],[-261.04,-176.33],[-263.14,-179.42],[-267.89,-181.75]],"o":[[-298.17,-188.23],[-303.9,-185.33],[-305.26,-179.37],[-303.45,-172.79],[-301.73,-169.59],[-299.93,-168.7],[-298.84,-167.8],[-299.03,-166.64],[-298.95,-165.9],[-297.59,-165.3],[-294.96,-163.17],[-289.04,-158.35],[-283.77,-155.4],[-277.7,-152.55],[-268.55,-149.9],[-261.76,-146.31],[-258.44,-142.98],[-251.99,-139.65],[-237.06,-119.85],[-226.05,-76.13],[-200.94,-57.77],[-153.77,-21.04],[-161.7,22.47],[-157.72,33.14],[-151.04,30.03],[-146.88,26.01],[-136.32,20.2],[-130.2,15.2],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.08,2.21],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.19,-11.18],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.85,-21.67],[-67.99,-24.28],[-55.86,-36.98],[-98.39,-53.68],[-134.28,-72.41],[-140.72,-118.16],[-151.52,-141.16],[-170.87,-152.95],[-198.99,-158.41],[-231.98,-160.49],[-238.76,-164],[-247.17,-167.01],[-255.71,-173.15],[-259.88,-176.65],[-262.83,-177.58],[-265.74,-181.17],[-276.63,-186.93]],"v":[[-294,-189],[-302.3,-186.46],[-305,-181],[-304.13,-174.92],[-302,-170],[-300.53,-168.99],[-299,-168],[-298.96,-167.03],[-299,-166],[-298.05,-165.5],[-297,-165],[-291.02,-159.89],[-285,-156],[-281,-154],[-271,-151],[-263,-147],[-260,-144],[-255,-142],[-247,-133],[-228,-81],[-220,-70],[-162,-39],[-162,19],[-158,33],[-151,30],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-57,-31],[-85,-49],[-119,-62],[-139,-109],[-147,-133],[-165,-150],[-184,-156],[-230,-160],[-236,-163],[-243,-165],[-254,-172],[-259,-176],[-262,-177],[-264,-180],[-270,-183]],"c":true}],"h":1},{"t":180,"s":[{"i":[[-280.57,-190.65],[-299.98,-187.87],[-304.46,-184.37],[-303,-171.74],[-290.73,-159.95],[-285.68,-157.34],[-281.3,-155.57],[-278.25,-154.29],[-275.84,-153.38],[-270.41,-150.62],[-264.58,-146.9],[-261.22,-145.24],[-258.6,-144.43],[-252.45,-139.41],[-244.98,-129.79],[-239.9,-119.01],[-236.21,-106.54],[-233.84,-98.21],[-231.68,-92.19],[-229.36,-80.49],[-217.72,-69.22],[-199.64,-62.68],[-162.61,-48.84],[-161.5,-5.18],[-161.69,31.47],[-150.94,29.9],[-141.62,23.76],[-134.53,17.98],[-126.13,14.08],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.24,-13.55],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.4,-22.1],[-66.29,-25.5],[-57.03,-30.85],[-62.1,-38.28],[-78.88,-47.17],[-108.81,-56.27],[-117.95,-61.96],[-119.03,-62.31],[-127.22,-69.59],[-136.83,-118.99],[-151.47,-139.36],[-157.69,-145.33],[-179.92,-155.7],[-224.47,-157.43],[-248.48,-168.54],[-255.91,-173.56]],"o":[[-297.25,-188.43],[-303.59,-185.84],[-306.13,-177.01],[-295.3,-163.21],[-287.28,-158.05],[-282.69,-156.09],[-279.08,-154.6],[-276.63,-153.68],[-272.62,-151.92],[-266.39,-148.11],[-262.17,-145.53],[-259.44,-144.69],[-255.21,-142.02],[-247.34,-133.3],[-241.3,-122.74],[-237.36,-110.91],[-234.5,-100.12],[-232.43,-94.25],[-229.6,-85.51],[-223.8,-72.27],[-206.51,-63.94],[-178.78,-56.46],[-158.46,-20.46],[-162.71,12.29],[-157.42,33.24],[-146.97,26.1],[-136.14,20.08],[-130.18,15.19],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.01,-11.3],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.86,-21.66],[-68.34,-24.05],[-62.46,-28],[-56.54,-33.32],[-73.1,-45.21],[-95.46,-53.1],[-116.92,-60.95],[-118.76,-62.73],[-123.42,-65.41],[-141.31,-88.64],[-150.4,-138.57],[-155,-143.67],[-170.61,-153.32],[-207.04,-158.61],[-242.78,-164.45],[-253.99,-171.73],[-267.46,-181.5]],"v":[[-293,-189],[-301.78,-186.85],[-305,-182],[-299.15,-167.47],[-289,-159],[-284.18,-156.72],[-280,-155],[-277.44,-153.99],[-275,-153],[-268.4,-149.36],[-263,-146],[-260.33,-144.97],[-258,-144],[-249.9,-136.36],[-243,-126],[-238.63,-114.96],[-235,-102],[-233.13,-96.23],[-231,-90],[-227,-77],[-213,-67],[-194,-61],[-160,-31],[-162,2],[-158,33],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-68,-42],[-84,-49],[-117,-61],[-118,-62],[-120,-63],[-129,-72],[-150,-138],[-152,-140],[-162,-148],[-192,-157],[-239,-163],[-251,-170],[-258,-175]],"c":true}],"h":1},{"t":181,"s":[{"i":[[-289.67,-191.17],[-302.73,-170.41],[-286.9,-157.93],[-272.47,-151.87],[-252.89,-139.95],[-238.45,-112.6],[-230.54,-81.66],[-209.76,-66.1],[-193.78,-61.64],[-179.32,-56.99],[-171.97,-50.93],[-165.63,-44.94],[-165.11,1.05],[-159.82,32.31],[-150.56,29.54],[-142.02,24.03],[-134.58,18.02],[-126.1,14.06],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.94,0.3],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.21,-13.56],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.26,-22.2],[-66.26,-25.52],[-57.04,-30.84],[-62.83,-39.79],[-89.48,-51.91],[-116.15,-60.27],[-119.96,-63.3],[-127.47,-70.1],[-137.61,-110.71],[-149.56,-136.54],[-150.38,-138.25],[-161.07,-147.56],[-219.64,-156.5],[-247.89,-167.6],[-251.62,-170.75],[-253.48,-170.77],[-254.63,-172.75],[-256.49,-172.77],[-257.63,-174.75],[-259.49,-174.77],[-260.63,-176.75],[-262.49,-176.77],[-263.63,-178.75],[-265.49,-178.77],[-266.63,-180.75],[-268.49,-180.77],[-269.59,-182.76]],"o":[[-310.9,-183.09],[-292.86,-161.1],[-278.71,-153.88],[-257.74,-144.14],[-241.27,-123.43],[-232.63,-91.35],[-219.8,-68.27],[-198.52,-62.61],[-184.81,-58.56],[-173.79,-53.67],[-167.3,-46.35],[-154.68,-25.16],[-160.95,26.39],[-157.06,33.36],[-146.78,25.92],[-136.48,20.31],[-130.69,15.52],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-107.86,2.07],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.18,-11.19],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.85,-21.67],[-68.54,-23.93],[-62.55,-27.95],[-56.44,-33.5],[-78.32,-49.41],[-107.31,-58.24],[-119.8,-63.76],[-124.09,-66.06],[-140.77,-86.64],[-146.81,-131.86],[-150.62,-137.65],[-154.35,-143.06],[-182.64,-160.96],[-243.31,-165.67],[-251.33,-169.15],[-252.47,-171.3],[-254.32,-171.15],[-255.46,-173.31],[-257.32,-173.15],[-258.46,-175.31],[-260.32,-175.15],[-261.46,-177.31],[-263.32,-177.15],[-264.46,-179.31],[-266.32,-179.15],[-267.46,-181.31],[-269.35,-181.16],[-276.6,-186.8]],"v":[[-298,-188],[-297,-165],[-283,-156],[-267,-149],[-248,-133],[-235,-100],[-226,-76],[-203,-64],[-189,-60],[-176,-55],[-170,-49],[-164,-42],[-162,20],[-158,33],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-68,-43],[-101,-56],[-119,-63],[-121,-64],[-129,-72],[-146,-130],[-150,-137],[-151,-139],[-165,-150],[-239,-164],[-251,-169],[-252,-171],[-254,-171],[-255,-173],[-257,-173],[-258,-175],[-260,-175],[-261,-177],[-263,-177],[-264,-179],[-266,-179],[-267,-181],[-269,-181],[-270,-183]],"c":true}],"h":1},{"t":182,"s":[{"i":[[-287.8,-191.84],[-305.33,-182.8],[-302.1,-171.76],[-289.42,-159.88],[-271.44,-152.1],[-257.72,-143.28],[-246.99,-131.63],[-241.68,-120.77],[-237.41,-107.03],[-233.36,-92.27],[-228.26,-78.58],[-219.4,-70.76],[-206.67,-66.16],[-194.06,-62.46],[-180.75,-58.15],[-174.37,-53.05],[-169.46,-49.8],[-161.96,-38.81],[-164.43,1.93],[-160.19,32.22],[-150.56,29.54],[-142.05,24.05],[-134.58,18.02],[-126.1,14.06],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.88,0.25],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.21,-13.56],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.36,-22.13],[-66.29,-25.5],[-57.04,-30.84],[-65.58,-42.44],[-84.94,-51.36],[-115.74,-60.89],[-127.1,-69.06],[-128.33,-72.04],[-131.46,-74.13],[-133.95,-79.54],[-139.3,-97.74],[-144.93,-129.08],[-163.4,-149.9],[-176.82,-155.23],[-207.54,-158.3],[-243.24,-165.53],[-253.14,-170.47],[-255.34,-172.58],[-260.31,-174.87],[-264.63,-179.07],[-268.23,-180.52]],"o":[[-303.52,-185.92],[-304.62,-175.72],[-294.94,-163.08],[-277.67,-154.39],[-261.97,-146.71],[-250.23,-135.74],[-243.22,-124.75],[-238.77,-111.91],[-234.73,-97.48],[-230.12,-82.82],[-223.32,-72.94],[-211.08,-67.37],[-198.69,-63.64],[-185.09,-59.72],[-175.59,-55.19],[-170.97,-50.45],[-164.68,-43.91],[-159.11,-18.61],[-163.78,18.56],[-157.06,33.34],[-146.74,25.88],[-136.48,20.31],[-130.69,15.52],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-107.96,2.14],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.18,-11.19],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.65,-21.78],[-68.34,-24.05],[-62.46,-28.01],[-56.3,-34.05],[-75.55,-48.21],[-102.37,-57.01],[-125.53,-68.13],[-128.76,-70.79],[-129.57,-73.82],[-133.06,-76.7],[-138.22,-89.55],[-142.91,-117.44],[-155.6,-144.76],[-174,-154.22],[-193.29,-159.21],[-234.57,-161.48],[-252.05,-170.6],[-254.6,-171.37],[-257.98,-174.28],[-263.5,-177],[-266.88,-180.6],[-276.04,-185.37]],"v":[[-298,-188],[-304.97,-179.26],[-299,-168],[-283.54,-157.14],[-266,-149],[-253.97,-139.51],[-245,-128],[-240.23,-116.34],[-236,-102],[-231.74,-87.54],[-226,-76],[-215.24,-69.07],[-203,-65],[-189.58,-61.09],[-177,-56],[-173,-52],[-168,-48],[-161,-32],[-164,13],[-158,33],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-70,-45],[-90,-53],[-124,-67],[-128,-70],[-129,-73],[-132,-75],[-135,-82],[-141,-107],[-151,-138],[-171,-153],[-180,-156],[-222,-160],[-251,-170],[-254,-171],[-256,-173],[-262,-176],[-266,-180],[-269,-181]],"c":true}],"h":1},{"t":183,"s":[{"i":[[-296.29,-188.63],[-305.28,-182.72],[-302.04,-171.54],[-289.24,-159.84],[-271.49,-152.1],[-257.83,-143.58],[-248.23,-132.99],[-241.69,-119.71],[-237.09,-103.86],[-235.49,-98.19],[-234.07,-96.26],[-233.9,-94.69],[-234.14,-92.63],[-233.51,-91.19],[-232.1,-89.26],[-229.56,-82.7],[-225.18,-75.63],[-218.28,-71.01],[-210.79,-67.68],[-193.63,-62.72],[-172.87,-54.7],[-165.9,-45.04],[-162.47,-37.88],[-166.47,5.04],[-158.13,32.96],[-150.55,29.53],[-142.05,24.05],[-134.58,18.02],[-126.1,14.05],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.88,0.25],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.21,-13.56],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.36,-22.13],[-66.29,-25.5],[-57.04,-30.84],[-59.47,-36.6],[-66.36,-41.8],[-71.26,-46.6],[-75.67,-48.09],[-90.64,-53.86],[-115.66,-61.69],[-132.55,-76.12],[-140.7,-116.48],[-158.16,-146.17],[-172.21,-154.35],[-207.87,-158.31],[-259.94,-176.12],[-279.56,-187.34]],"o":[[-303.51,-185.95],[-304.54,-175.52],[-294.74,-163.04],[-277.62,-154.37],[-261.72,-146.59],[-251.09,-136.78],[-243.64,-124.78],[-238.41,-109.25],[-235.96,-98.81],[-234.55,-96.92],[-233.83,-95.38],[-234.05,-93.32],[-233.96,-91.81],[-232.58,-89.92],[-230.72,-85.64],[-226.79,-77.7],[-220.89,-72.42],[-213.24,-68.64],[-201.44,-64.12],[-179.34,-58.01],[-167.16,-46.85],[-163.55,-40.56],[-158.66,-14.63],[-162.53,25.42],[-157,33.32],[-146.74,25.88],[-136.48,20.31],[-130.63,15.48],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-107.96,2.14],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-87.18,-11.19],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.65,-21.78],[-68.34,-24.05],[-62.46,-28.01],[-56.62,-32.63],[-64.84,-41.77],[-69.98,-44.44],[-73.52,-47.82],[-84.26,-51.45],[-106.28,-59.11],[-127.35,-69.64],[-142.48,-95.92],[-151.42,-139.26],[-169.15,-153.38],[-192.89,-160.25],[-247.77,-164.22],[-277.48,-185.3],[-288.37,-189.73]],"v":[[-298,-188],[-304.91,-179.12],[-299,-168],[-283.43,-157.11],[-266,-149],[-254.46,-140.18],[-246,-129],[-240.05,-114.48],[-236,-99],[-235.02,-97.56],[-234,-96],[-233.98,-94.01],[-234,-92],[-233.04,-90.55],[-232,-89],[-228.17,-80.2],[-223,-74],[-215.76,-69.83],[-209,-67],[-186.49,-60.36],[-168,-48],[-164.73,-42.8],[-162,-35],[-163,23],[-158,33],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-63,-40],[-68,-43],[-72,-47],[-78,-49],[-97,-56],[-122,-66],[-135,-81],[-148,-132],[-164,-150],[-178,-156],[-226,-161],[-275,-184],[-282,-188]],"c":true}],"h":1},{"t":184,"s":[{"i":[[-287.75,-190.82],[-301.68,-186.41],[-304.64,-183.56],[-303.41,-173.46],[-292.89,-163.26],[-283.21,-157.7],[-271.96,-153.25],[-267.81,-150.79],[-267.02,-150.02],[-264.87,-148.4],[-261.48,-146.46],[-260.36,-145.58],[-259.42,-145.32],[-249.44,-134.9],[-241.09,-115.05],[-237.94,-104.45],[-236.41,-99.38],[-231.46,-85.04],[-220.7,-72.4],[-186.28,-63],[-163.12,-42.6],[-168.17,8.68],[-158.28,32.92],[-152.89,30.9],[-150.85,29.82],[-142.13,24.11],[-134.48,17.95],[-126.1,14.05],[-122.85,11.82],[-119.85,9.82],[-113.16,5.32],[-106.78,0.19],[-100.93,-2.11],[-97.85,-4.19],[-94.85,-6.18],[-91.85,-8.18],[-90.07,-9.3],[-85.28,-13.52],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.38,-18.75],[-75.52,-18.77],[-74.41,-20.76],[-71.26,-22.2],[-65.72,-25.87],[-57.12,-30.51],[-63.53,-41.89],[-70.83,-46.36],[-75.37,-48.25],[-125.86,-61.56],[-142.45,-109.69],[-150.08,-133.69],[-163.15,-150.39],[-193.31,-159.22],[-241.63,-164.06],[-255.77,-171.24],[-257.55,-173.67],[-260.27,-174.5],[-265.8,-179.1],[-269.3,-180.56]],"o":[[-299.87,-187.12],[-304.07,-184.63],[-305.96,-177.83],[-296.88,-166.18],[-286.98,-159.33],[-275.7,-154.67],[-268.05,-151.03],[-267.29,-150.28],[-266.14,-149.17],[-262.54,-147.04],[-260.65,-145.67],[-259.74,-145.41],[-253.4,-140.62],[-243.29,-122.11],[-238.48,-106.26],[-236.9,-101.01],[-233.86,-90.83],[-224.88,-75.82],[-202.25,-64.63],[-168.1,-50.62],[-160.34,-13.77],[-162.25,26.22],[-156.34,33.5],[-152.16,30.2],[-146.72,25.86],[-136.59,20.38],[-130.63,15.48],[-124.16,12.2],[-121.16,10.2],[-116.54,6.65],[-108.13,2.24],[-103.05,-2.3],[-99.16,-3.8],[-96.16,-5.8],[-93.16,-7.8],[-90.19,-9.77],[-86.99,-11.31],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-76.53,-19.3],[-74.65,-19.16],[-72.85,-21.67],[-68.54,-23.93],[-62.08,-28.25],[-56.39,-33.42],[-68.76,-45.53],[-73.81,-47.99],[-101.35,-60.17],[-141.58,-93.25],[-147.68,-127.84],[-155.09,-142.34],[-178.79,-158.81],[-225.69,-160.94],[-253.47,-170.84],[-257.42,-172.26],[-258.81,-174.61],[-263.18,-176.47],[-267.78,-180.58],[-276.88,-185.32]],"v":[[-297,-188],[-302.88,-185.52],[-305,-182],[-300.14,-169.82],[-291,-162],[-279.45,-156.18],[-268,-151],[-267.55,-150.53],[-267,-150],[-263.71,-147.72],[-261,-146],[-260.05,-145.49],[-259,-145],[-246.37,-128.51],[-239,-108],[-237.42,-102.73],[-236,-98],[-228.17,-80.43],[-215,-70],[-176,-56],[-162,-31],[-163,24],[-158,33],[-153,31],[-150,29],[-139,22],[-133,17],[-125,13],[-122,11],[-119,9],[-111,4],[-105,-1],[-100,-3],[-97,-5],[-94,-7],[-91,-9],[-89,-10],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-75,-19],[-74,-21],[-70,-23],[-64,-27],[-57,-31],[-68,-45],[-72,-47],[-77,-49],[-136,-82],[-146,-122],[-152,-137],[-168,-153],[-208,-160],[-252,-170],[-257,-172],[-258,-174],[-261,-175],[-267,-180],[-270,-181]],"c":true}],"h":1},{"t":185,"s":[{"i":[[-285.45,-191.42],[-301.97,-186.46],[-304.59,-183.81],[-304.7,-177.11],[-300.31,-170.48],[-287.17,-159.77],[-266.36,-150.37],[-260.05,-145.35],[-258.42,-144.37],[-255.43,-141.24],[-252.78,-137.02],[-251.36,-135.36],[-250.3,-134.46],[-245.04,-125.08],[-239.74,-109.73],[-235.28,-94.59],[-230.33,-81.8],[-220.63,-72.83],[-207.07,-68.25],[-187.53,-62.25],[-168.99,-51.25],[-163.08,-30.15],[-164.82,-2.59],[-165.26,8.05],[-164.79,17.97],[-161.9,26.85],[-157.33,32.86],[-154.72,32.1],[-150.33,29.21],[-139.38,22.16],[-123.48,11.85],[-114.75,6.38],[-108.24,2.46],[-105.77,0.77],[-105.05,0.05],[-104.37,-0.49],[-103.59,-0.65],[-97.76,-4.34],[-90.29,-9.56],[-85.16,-12.7],[-80.45,-15.57],[-79.04,-16.7],[-77.42,-17.59],[-76.04,-18.7],[-74.42,-19.59],[-68.03,-24.16],[-57.17,-30.87],[-57.42,-32.11],[-58.66,-35.41],[-75.28,-49.42],[-112.54,-61.11],[-121.95,-66.96],[-125.6,-69.86],[-140.67,-95.5],[-155.31,-146.77],[-175.41,-155.98],[-228.28,-158.02],[-252.51,-170.14],[-257.57,-172.1],[-259.55,-174.66],[-262.25,-175.48]],"o":[[-300.18,-187.06],[-304.18,-184.84],[-305.54,-179.62],[-302.08,-172.54],[-293.99,-163.33],[-273.35,-153.29],[-260.59,-145.67],[-258.97,-144.7],[-256.54,-142.73],[-253.55,-138.38],[-251.71,-135.63],[-250.66,-134.77],[-247.18,-129.71],[-241.32,-115.09],[-236.62,-99.44],[-232.14,-85.77],[-224.84,-75.21],[-211.75,-69.36],[-195.29,-64.63],[-174.38,-55.57],[-163.42,-39.61],[-163.78,-11.64],[-165.11,4.81],[-165.1,14.63],[-163.24,23.92],[-158.95,31.32],[-156.05,32.99],[-151.86,30.21],[-144.89,25.74],[-128.67,15.22],[-116.88,7.65],[-110.43,3.78],[-105.99,0.99],[-105.3,0.3],[-104.57,-0.41],[-103.87,-0.6],[-100.37,-2.56],[-92.72,-7.84],[-86.94,-11.67],[-81.92,-14.65],[-79.58,-16.4],[-77.96,-17.29],[-76.58,-18.4],[-74.96,-19.29],[-72.19,-21.73],[-60.52,-28.73],[-57.09,-31.4],[-58.21,-34.11],[-64.28,-45.28],[-96.31,-57.16],[-120.92,-65.95],[-123.56,-68.5],[-138.83,-80.67],[-147.83,-131.01],[-173.37,-155.66],[-201.62,-163.43],[-251.33,-168.61],[-255.66,-171.95],[-259.43,-173.27],[-260.83,-175.62],[-271.89,-182.19]],"v":[[-297,-188],[-303.08,-185.65],[-305,-182],[-303.39,-174.82],[-299,-169],[-280.26,-156.53],[-261,-146],[-259.51,-145.03],[-258,-144],[-254.49,-139.81],[-252,-136],[-251.01,-135.06],[-250,-134],[-243.18,-120.08],[-238,-104],[-233.71,-90.18],[-228,-79],[-216.19,-71.09],[-203,-67],[-180.96,-58.91],[-166,-45],[-163.43,-20.9],[-165,2],[-165.18,11.34],[-164,21],[-160.42,29.08],[-156,33],[-153.29,31.16],[-150,29],[-134.02,18.69],[-119,9],[-112.59,5.08],[-106,1],[-105.53,0.53],[-105,0],[-104.12,-0.55],[-103,-1],[-95.24,-6.09],[-88,-11],[-83.54,-13.68],[-80,-16],[-78.5,-16.99],[-77,-18],[-75.5,-18.99],[-74,-20],[-64.28,-26.45],[-57,-32],[-57.82,-33.11],[-59,-36],[-85,-53],[-121,-66],[-122,-67],[-127,-71],[-144,-112],[-170,-154],[-179,-157],[-250,-168],[-254,-171],[-259,-173],[-260,-175],[-263,-176]],"c":true}],"h":1},{"t":186,"s":[{"i":[[-292.22,-189.38],[-301.98,-186.48],[-304.6,-183.79],[-304.42,-177.37],[-299.62,-168.54],[-297.44,-166.89],[-296.21,-167.1],[-295.68,-166.49],[-295.18,-165.12],[-291.23,-162.65],[-285.72,-159.89],[-278.74,-156.63],[-269.25,-152.2],[-266.34,-149.51],[-263.83,-147.61],[-259.2,-144.2],[-255.15,-140.5],[-252.07,-136.54],[-249.91,-133.55],[-248.29,-130.68],[-247.28,-128.56],[-240.68,-110.19],[-231.37,-81.78],[-223.03,-74.94],[-217.71,-72.73],[-202.66,-67.55],[-182.25,-61.18],[-176.98,-57.31],[-175.5,-56.39],[-168.27,-49.14],[-163.15,-34.15],[-164.02,-12.32],[-166.96,8.34],[-163.87,22.56],[-157.66,32.82],[-153.86,31.62],[-145.91,26.22],[-118.14,8.28],[-82.98,-14.73],[-65.5,-25.42],[-58.28,-30.26],[-68.83,-46.2],[-103.74,-59.41],[-123.04,-68.84],[-128.21,-71.4],[-130.55,-73.53],[-143.13,-110.19],[-151.63,-136.2],[-155.53,-141.43],[-166.07,-152.52],[-182.81,-159.01],[-203.69,-161.62],[-226.82,-161.66],[-240.09,-165.06],[-252.24,-169.39],[-257.83,-172.28],[-262.87,-176.68],[-267.72,-178.28],[-270.94,-181.38],[-273.47,-181.76],[-274.59,-183.76]],"o":[[-300.17,-187.08],[-304.19,-184.84],[-305.36,-180.35],[-301.55,-171.46],[-297.84,-166.84],[-296.63,-167.02],[-295.84,-166.93],[-295.35,-165.59],[-293.12,-163.7],[-287.53,-160.74],[-282.12,-158.03],[-272.31,-153.71],[-267.17,-150.21],[-264.66,-148.21],[-260.88,-145.44],[-256.34,-141.73],[-252.86,-137.52],[-250.59,-134.56],[-248.65,-131.4],[-247.61,-129.26],[-243.24,-120.55],[-234.74,-90.8],[-224.68,-75.82],[-219.54,-73.39],[-210.04,-69.46],[-188.77,-63.41],[-177.49,-57.61],[-175.99,-56.69],[-171.19,-53.06],[-164.25,-39.68],[-162.79,-19.74],[-166.11,1.72],[-165.55,18.15],[-159.93,29.9],[-155.9,33.01],[-148.86,28.23],[-130.15,16.15],[-94.56,-7.16],[-68.36,-24.04],[-60.46,-28.54],[-57.12,-37.49],[-85.38,-55.61],[-121.64,-66.96],[-126.9,-71.65],[-129.47,-72.36],[-142.97,-86.51],[-150.49,-131.28],[-154.31,-140.49],[-158.92,-145.58],[-175.56,-157.29],[-195.87,-161.1],[-218.48,-162.38],[-236.92,-163.54],[-247.73,-167.53],[-256.2,-171.7],[-261.18,-174.34],[-266.27,-178.79],[-270.26,-179.71],[-272.5,-182.29],[-274.35,-182.16],[-281.07,-187.51]],"v":[[-297,-188],[-303.08,-185.66],[-305,-182],[-302.99,-174.41],[-298,-167],[-297.04,-166.95],[-296,-167],[-295.51,-166.04],[-295,-165],[-289.38,-161.69],[-284,-159],[-275.53,-155.17],[-268,-151],[-265.5,-148.86],[-263,-147],[-257.77,-142.96],[-254,-139],[-251.33,-135.55],[-249,-132],[-247.95,-129.97],[-247,-128],[-237.71,-100.5],[-226,-77],[-221.29,-74.16],[-216,-72],[-195.71,-65.48],[-178,-58],[-176.49,-57],[-175,-56],[-166.26,-44.41],[-163,-28],[-165.07,-5.3],[-166,15],[-161.9,26.23],[-156,33],[-151.36,29.92],[-144,25],[-106.35,0.56],[-70,-23],[-62.98,-26.98],[-58,-32],[-72,-48],[-117,-65],[-126,-71],[-129,-72],[-131,-74],[-149,-127],[-154,-140],[-156,-142],[-171,-155],[-189,-160],[-211,-162],[-234,-163],[-243,-166],[-255,-171],[-259,-173],[-265,-178],[-269,-179],[-272,-182],[-274,-182],[-275,-184]],"c":true}],"h":1},{"t":187,"s":[{"i":[[-289.04,-189.55],[-301.07,-186.91],[-304.54,-184.17],[-302.74,-173.43],[-291.28,-162.8],[-285.71,-159.58],[-279.83,-156.93],[-274.46,-154.39],[-268.74,-151.71],[-267.04,-150.3],[-265.42,-149.41],[-258.78,-142.93],[-250.37,-133.42],[-245.23,-122.98],[-240.61,-108.81],[-235.42,-93.1],[-227.9,-79.31],[-223.09,-76.4],[-221.51,-75.28],[-207.68,-69.52],[-186.75,-63.94],[-165.42,-46.39],[-167.39,-3.36],[-161.86,31.4],[-154.07,30.72],[-151.51,30.23],[-150.4,28.24],[-143.17,25.12],[-139.85,22.82],[-136.85,20.82],[-133.85,18.82],[-122.71,11.36],[-111.08,4.31],[-105.11,0.11],[-101.49,-2.05],[-81.19,-15.88],[-58.46,-29.25],[-68.38,-46.37],[-72.59,-49.76],[-77.02,-51.13],[-86.09,-55.73],[-94.29,-58.45],[-102.83,-60.03],[-107.48,-62.82],[-119.89,-65.98],[-131.78,-74.66],[-135.58,-79.32],[-140.6,-92.27],[-144.17,-105.09],[-148.73,-130.16],[-155.68,-139.57],[-156.39,-142.22],[-160.82,-147.33],[-166.02,-151.11],[-168.59,-153.76],[-190.33,-161.28],[-236.2,-162.02],[-257.64,-172.92],[-264.65,-176.17],[-267.95,-179.31],[-272.46,-181.12]],"o":[[-299.05,-187.32],[-303.81,-185.33],[-305.85,-178.03],[-295.45,-165.82],[-287.8,-160.62],[-281.73,-157.74],[-276.59,-155.29],[-270.54,-152.6],[-267.58,-150.6],[-265.97,-149.71],[-262.09,-146.22],[-252.92,-136.53],[-246.92,-127.33],[-242.08,-113.73],[-237.22,-98.7],[-230.76,-83.41],[-223.59,-76.75],[-222.05,-75.66],[-214.81,-71.55],[-193.65,-65.71],[-171.98,-56.39],[-162.36,-21.87],[-166.64,18.34],[-153.78,32.23],[-152.54,29.69],[-150.66,29.85],[-147.09,26.21],[-141.16,23.2],[-138.16,21.2],[-135.16,19.2],[-128.5,13.69],[-115.13,6.54],[-105.98,0.99],[-103.38,-1.55],[-89.2,-9.85],[-64.7,-26.37],[-57.09,-37.44],[-72.35,-48.16],[-74.34,-50.78],[-83.06,-53.77],[-91.96,-57.64],[-99.25,-60.05],[-106.38,-61.11],[-112.51,-64.57],[-125.69,-71.54],[-134.55,-78.84],[-138.89,-84.65],[-143.2,-101.04],[-147.08,-118.77],[-154.24,-139.41],[-156.66,-140.88],[-158.95,-145.49],[-165.73,-151.09],[-168.35,-152.16],[-177.31,-158.8],[-216.71,-163.05],[-252.13,-169.36],[-262.6,-175.99],[-267.11,-177.68],[-270.46,-180.96],[-280.27,-185.58]],"v":[[-296,-188],[-302.44,-186.12],[-305,-182],[-299.1,-169.62],[-290,-162],[-283.72,-158.66],[-278,-156],[-272.5,-153.5],[-268,-151],[-266.5,-150],[-265,-149],[-255.85,-139.73],[-249,-131],[-243.65,-118.35],[-239,-104],[-233.09,-88.26],[-224,-77],[-222.57,-76.03],[-221,-75],[-200.67,-67.61],[-181,-61],[-164,-35],[-167,8],[-156,32],[-153,30],[-151,30],[-150,28],[-142,24],[-139,22],[-136,20],[-133,18],[-119,9],[-106,1],[-105,0],[-100,-3],[-70,-23],[-58,-32],[-72,-48],[-73,-50],[-79,-52],[-90,-57],[-96,-59],[-106,-61],[-108,-63],[-122,-68],[-134,-78],[-136,-80],[-142,-97],[-145,-109],[-154,-139],[-156,-140],[-157,-143],[-163,-149],[-168,-152],[-169,-154],[-201,-162],[-247,-167],[-261,-175],[-266,-177],[-269,-180],[-274,-182]],"c":true}],"h":1},{"t":188,"s":[{"i":[[-294.79,-188.03],[-300.66,-187.12],[-304.48,-184.35],[-303.41,-174.32],[-293.17,-164.98],[-290.68,-163.48],[-290.2,-162.12],[-288.06,-160.94],[-284.94,-159.47],[-277.52,-156.03],[-268.34,-151.69],[-260.25,-145.36],[-252.15,-135.8],[-242.55,-112.42],[-230.15,-79.95],[-215.72,-72.67],[-203.8,-69.14],[-184.92,-63.25],[-168.04,-50.54],[-164.29,-23.06],[-168.49,5.9],[-164.96,21.89],[-158.34,31.75],[-154.41,31.8],[-153.53,30.36],[-152.4,29.9],[-151.25,30.12],[-150.68,29.48],[-150.2,28.12],[-146.89,26.42],[-142.6,24.58],[-141.04,23.3],[-139.43,22.41],[-138.04,21.3],[-136.43,20.41],[-135.04,19.3],[-133.43,18.41],[-128.16,14.17],[-120.82,10.16],[-115.07,6.59],[-108.59,2.69],[-105.77,0.77],[-105.05,0.05],[-103.31,-1.29],[-100.75,-2.53],[-81.5,-15.67],[-58.49,-29.02],[-59.01,-34.01],[-65.18,-43.99],[-79.7,-53.28],[-129.44,-67.43],[-144.01,-101.74],[-149.87,-129.67],[-165.75,-151.94],[-174.47,-155.97],[-182.62,-159.2],[-215.13,-162.23],[-251.56,-168.9],[-261.63,-175.13],[-266.66,-177.2],[-279.54,-186.26]],"o":[[-298.42,-187.44],[-303.69,-185.57],[-305.82,-178.33],[-297.09,-167.65],[-290.83,-163.92],[-290.36,-162.58],[-289.09,-161.46],[-285.99,-159.94],[-280.84,-157.43],[-271.27,-153.16],[-263.17,-147.96],[-254.74,-139.28],[-245.73,-124.45],[-234.77,-90.17],[-219.57,-74.1],[-207.84,-70.19],[-192.4,-65.73],[-172.74,-55.65],[-163.3,-33.01],[-166.89,-3.61],[-166.54,17.77],[-160.86,28.88],[-154.89,32.12],[-153.73,30.92],[-152.77,29.85],[-151.64,30.04],[-150.83,29.92],[-150.36,28.58],[-148.59,27.14],[-143.9,25.14],[-141.58,23.6],[-139.97,22.71],[-138.58,21.6],[-136.97,20.71],[-135.58,19.6],[-133.97,18.71],[-130.75,15.84],[-123.2,11.33],[-117.03,7.75],[-110.85,4.06],[-105.99,0.99],[-105.3,0.3],[-104.19,-0.77],[-101.59,-2.16],[-88.57,-10.26],[-65.44,-25.9],[-57.98,-32.11],[-62.73,-41.47],[-74.74,-51.52],[-108.5,-64],[-142.85,-93.47],[-147.83,-119.48],[-155.68,-141.42],[-170.96,-155.24],[-180.24,-158.32],[-199.69,-163.25],[-241.58,-165.38],[-260.67,-173.92],[-264.41,-176.9],[-274.02,-181.6],[-289.83,-189.03]],"v":[[-295,-188],[-302.17,-186.34],[-305,-182],[-300.25,-170.98],[-291,-164],[-290.52,-163.03],[-290,-162],[-287.03,-160.44],[-284,-159],[-274.39,-154.59],[-266,-150],[-257.49,-142.32],[-250,-132],[-238.66,-101.3],[-223,-76],[-211.78,-71.43],[-200,-68],[-178.83,-59.45],[-166,-43],[-165.59,-13.33],[-167,15],[-162.91,25.39],[-156,32],[-154.07,31.36],[-153,30],[-152.02,29.97],[-151,30],[-150.52,29.03],[-150,28],[-145.4,25.78],[-142,24],[-140.5,23.01],[-139,22],[-137.5,21.01],[-136,20],[-134.5,19.01],[-133,18],[-125.68,12.75],[-119,9],[-112.96,5.33],[-106,1],[-105.53,0.53],[-105,0],[-102.45,-1.73],[-100,-3],[-70,-23],[-58,-32],[-60,-36],[-69,-47],[-87,-56],[-139,-86],[-146,-111],[-153,-136],[-169,-154],[-177,-157],[-186,-160],[-230,-164],[-259,-173],[-263,-176],[-268,-178],[-286,-188]],"c":true}],"h":1},{"t":189,"s":[{"i":[[-299.24,-187.38],[-301.15,-186.68],[-302.6,-186.45],[-304.48,-177.06],[-293.57,-165.01],[-290.23,-163.02],[-287.24,-161.68],[-282.01,-158.68],[-275.87,-154.96],[-269.46,-151.66],[-265,-148.71],[-258.3,-142.62],[-252.29,-135.22],[-247.42,-125.74],[-241.85,-110.5],[-236.88,-95.35],[-230.28,-81.7],[-224.96,-77.67],[-221.86,-76.43],[-212.59,-72.42],[-199.37,-68.98],[-194.19,-67.5],[-192.26,-66.09],[-184.68,-63.45],[-175.76,-58.17],[-171.25,-52.85],[-168.65,-48.58],[-165.2,-28.59],[-168.62,3.26],[-165.98,19.67],[-158.24,31.85],[-147.35,26.79],[-132.61,17.63],[-128.37,14.25],[-126.51,14.23],[-125.37,12.25],[-123.51,12.23],[-122.37,10.25],[-120.51,10.23],[-119.38,8.24],[-112.24,5.19],[-105.75,0.72],[-101.49,-2.05],[-81.1,-15.93],[-58.47,-29.21],[-60.92,-38.08],[-68.12,-46.55],[-79.31,-54.55],[-89.19,-57.17],[-92.47,-58.5],[-130.5,-70.32],[-146.26,-121.53],[-163.37,-149.91],[-168.63,-153.75],[-170.49,-153.77],[-171.57,-155.77],[-177.21,-158.08],[-213.41,-161.86],[-252,-169.29],[-270.73,-179.75],[-283.61,-187.41]],"o":[[-300.6,-186.7],[-302.15,-186.55],[-306.45,-182.05],[-298.04,-168.53],[-291.11,-163.43],[-288.29,-162.14],[-284.07,-159.95],[-277.91,-156.19],[-271.21,-152.56],[-266.36,-149.74],[-260.66,-145.01],[-254.12,-137.72],[-249.24,-129.99],[-243.72,-116],[-238.49,-100.5],[-232.77,-85.95],[-226.03,-78.2],[-222.87,-76.78],[-216.91,-73.93],[-203.82,-69.95],[-194.81,-67.96],[-192.92,-66.57],[-188.05,-64.61],[-178.54,-60.23],[-172.18,-54.05],[-169.49,-50.11],[-164.89,-39.47],[-167.06,-7.22],[-167.61,14.25],[-161.3,28.48],[-153.63,32.06],[-137.1,20.21],[-128.68,15.85],[-127.54,13.69],[-125.68,13.85],[-124.54,11.69],[-122.68,11.85],[-121.54,9.69],[-119.67,9.85],[-116.34,6.3],[-109.36,2.43],[-103.38,-1.55],[-89.45,-9.7],[-65.37,-25.95],[-57.8,-33.19],[-65.36,-44.32],[-74.36,-51.37],[-86.04,-57.19],[-91.82,-58.38],[-112.92,-65.19],[-148.08,-100.69],[-157.8,-143.28],[-168.32,-152.15],[-169.46,-154.31],[-171.36,-154.16],[-174.23,-157.2],[-195.5,-164.14],[-242.04,-165.34],[-265.76,-176.58],[-280.18,-184.65],[-292.52,-188.97]],"v":[[-300,-187],[-301.65,-186.62],[-303,-186],[-301.26,-172.8],[-292,-164],[-289.26,-162.58],[-286,-161],[-279.96,-157.43],[-274,-154],[-267.91,-150.7],[-263,-147],[-256.21,-140.17],[-251,-133],[-245.57,-120.87],[-240,-105],[-234.83,-90.65],[-227,-79],[-223.92,-77.23],[-221,-76],[-208.2,-71.19],[-195,-68],[-193.55,-67.04],[-192,-66],[-181.61,-61.84],[-173,-55],[-170.37,-51.48],[-168,-47],[-166.13,-17.9],[-168,10],[-163.64,24.07],[-155,32],[-143,24],[-129,16],[-128,14],[-126,14],[-125,12],[-123,12],[-122,10],[-120,10],[-119,8],[-111,4],[-105,0],[-100,-3],[-70,-23],[-58,-32],[-63,-41],[-70,-48],[-83,-56],[-91,-58],[-94,-59],[-139,-85],[-155,-138],[-168,-152],[-169,-154],[-171,-154],[-172,-156],[-180,-159],[-231,-164],[-259,-173],[-277,-183],[-287,-188]],"c":true}],"h":1},{"t":190,"s":[{"i":[[-292.65,-189.6],[-299.96,-186.96],[-301.66,-187.22],[-305.21,-182.98],[-302.62,-174.12],[-295.58,-166.79],[-287.94,-162.07],[-279.13,-157.31],[-269.53,-151.85],[-265.77,-149.35],[-263.46,-148.38],[-260.13,-145.02],[-256.84,-140.1],[-255.36,-138.36],[-254.3,-137.46],[-247.74,-125.38],[-240,-104.66],[-237.09,-93.25],[-229.92,-81.58],[-218.41,-75.59],[-177.06,-66.08],[-170.74,-1.15],[-162.48,26.41],[-156.46,31.94],[-154.05,30.7],[-151.51,30.23],[-150.4,28.24],[-143.28,25.23],[-139.85,22.82],[-136.85,20.82],[-133.85,18.82],[-132.08,17.7],[-113.64,5.25],[-91.53,-9.6],[-83.38,-14.75],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.39,-18.76],[-70.05,-21.99],[-66.85,-24.18],[-59.52,-28.85],[-65.43,-44.54],[-69.19,-47.36],[-73.52,-52.16],[-83.75,-56.07],[-113.71,-66.21],[-128.43,-72.81],[-144.84,-99.05],[-150.32,-121.95],[-154.29,-136.53],[-159.65,-143.25],[-163.39,-148.82],[-166.7,-151.75],[-174.47,-157.28],[-216.11,-162.53],[-245.03,-167.59],[-254.99,-170.08],[-261.37,-174.47],[-270.29,-178.49],[-274.75,-182.29]],"o":[[-299.38,-186.84],[-301.1,-187.15],[-304.4,-185.42],[-304.32,-177.33],[-298.11,-168.75],[-290.5,-163.45],[-282.62,-159.14],[-272.59,-153.67],[-266.54,-149.66],[-264.23,-148.71],[-261.46,-146.73],[-257.82,-141.71],[-255.71,-138.63],[-254.66,-137.77],[-250.74,-132.05],[-242.37,-111.68],[-237.18,-96.7],[-234.49,-87.91],[-224.05,-76.75],[-197.27,-67.96],[-161.05,-32.16],[-167.15,18.69],[-158.8,30.26],[-153.79,32.27],[-152.54,29.69],[-150.66,29.85],[-146.97,26.14],[-141.16,23.2],[-138.16,21.2],[-135.16,19.2],[-132.19,17.22],[-121.39,10.78],[-99.55,-3.77],[-83.67,-13.15],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-74.57,-20.53],[-68.16,-23.8],[-62.95,-27.92],[-58.34,-35.94],[-68.68,-47.65],[-72,-49.59],[-78.64,-55.06],[-100.48,-62.22],[-125.27,-72.17],[-141.43,-82.65],[-149.05,-117.61],[-153.53,-131.58],[-157.68,-142.11],[-163.51,-148.25],[-166.27,-150.12],[-169.52,-154.1],[-190.69,-164.91],[-241.51,-165.85],[-251.66,-169.94],[-259.63,-172.2],[-266.72,-177.58],[-274.05,-180.59],[-281.58,-186.17]],"v":[[-299,-187],[-300.53,-187.05],[-302,-187],[-304.76,-180.15],[-300,-171],[-293.04,-165.12],[-286,-161],[-275.86,-155.49],[-267,-150],[-265,-149.03],[-263,-148],[-258.97,-143.37],[-256,-139],[-255.01,-138.06],[-254,-137],[-245.05,-118.53],[-238,-99],[-236,-91],[-228,-80],[-214,-74],[-169,-49],[-168,14],[-160,29],[-156,32],[-153,30],[-151,30],[-150,28],[-142,24],[-139,22],[-136,20],[-133,18],[-131,17],[-107,1],[-84,-13],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-69,-23],[-66,-25],[-59,-32],[-68,-47],[-70,-48],[-75,-53],[-89,-58],[-123,-71],[-130,-74],[-148,-113],[-152,-127],[-157,-141],[-161,-145],[-166,-150],[-167,-152],[-176,-158],[-235,-165],[-249,-169],[-257,-171],[-264,-176],[-273,-180],[-276,-183]],"c":true}],"h":1},{"t":191,"s":[{"i":[[-298.13,-187.35],[-299.96,-186.96],[-301.66,-187.22],[-305.07,-183.31],[-303.3,-176.31],[-298.43,-169.2],[-293.2,-165.8],[-273.85,-155.99],[-265.08,-148.88],[-259.71,-144.47],[-254.48,-137.21],[-245.25,-115.68],[-239.17,-100.86],[-236.42,-91.54],[-232.86,-87.2],[-230.71,-82.68],[-225.66,-79.91],[-216.12,-74.14],[-206.69,-72.76],[-195.38,-68.73],[-181.51,-63.8],[-169.71,-52.28],[-170.54,-1.13],[-164.9,22.22],[-159.45,27.87],[-156.63,31.91],[-154.03,30.68],[-151.51,30.23],[-150.4,28.24],[-143.27,25.22],[-139.85,22.82],[-136.85,20.82],[-133.85,18.82],[-132.08,17.7],[-115.13,6.2],[-90.86,-9.91],[-83.38,-14.75],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.39,-18.76],[-70.08,-21.96],[-66.85,-24.18],[-57.15,-29.44],[-67.55,-47.99],[-72.64,-51.75],[-124.43,-65.93],[-137.46,-83.29],[-139.4,-85.02],[-146.67,-103.89],[-151.36,-123.07],[-155.4,-137.92],[-160.37,-143.21],[-161.97,-146.86],[-169.59,-153.5],[-173.31,-156.62],[-188.86,-161.95],[-226.81,-163.67],[-249.42,-169],[-255.98,-170.54],[-278.5,-186.7]],"o":[[-299.38,-186.85],[-301.1,-187.15],[-304.42,-185.41],[-304.51,-178.76],[-300.33,-171.05],[-294.86,-166.57],[-282.69,-158.81],[-266.3,-150.49],[-260.66,-145.29],[-255.91,-138.97],[-247.03,-126.08],[-241.02,-103.08],[-236.82,-95.13],[-234.38,-87.9],[-231.03,-84.64],[-228.44,-80.51],[-219.34,-76.44],[-209.57,-72.32],[-199.94,-70.85],[-186.37,-65.17],[-173.41,-57.34],[-163.66,-30.07],[-168.32,14.9],[-161.53,27.15],[-157.48,29.41],[-153.81,32.31],[-152.54,29.69],[-150.66,29.85],[-146.89,26.09],[-141.16,23.2],[-138.16,21.2],[-135.16,19.2],[-132.19,17.22],[-120.99,10.52],[-100.64,-3.07],[-83.67,-13.15],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-74.48,-20.59],[-68.16,-23.8],[-60.23,-30.53],[-63.49,-43.54],[-72.32,-50.14],[-90.06,-63.66],[-137.63,-81.75],[-138.59,-84.78],[-145.02,-94.23],[-150.09,-118.74],[-154.55,-132.64],[-158.52,-142.82],[-162.13,-145.42],[-165.86,-151.19],[-172.6,-155.37],[-181.34,-160.99],[-212.43,-164.39],[-244.69,-166.83],[-253.59,-170.61],[-267.29,-175.64],[-295.43,-188.33]],"v":[[-299,-187],[-300.53,-187.05],[-302,-187],[-304.79,-181.04],[-302,-174],[-296.65,-167.89],[-292,-165],[-267,-151],[-264,-148],[-258,-142],[-253,-135],[-242,-106],[-238,-98],[-235,-89],[-232,-86],[-230,-82],[-224,-79],[-212,-73],[-204,-72],[-191,-67],[-178,-61],[-168,-46],[-169,10],[-163,25],[-158,29],[-156,32],[-153,30],[-151,30],[-150,28],[-142,24],[-139,22],[-136,20],[-133,18],[-131,17],[-107,1],[-84,-13],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-69,-23],[-66,-25],[-61,-38],[-72,-50],[-73,-52],[-137,-81],[-138,-84],[-140,-86],[-149,-114],[-153,-128],[-158,-142],[-161,-144],[-163,-148],[-172,-155],[-174,-157],[-199,-163],[-240,-166],[-252,-170],[-257,-171],[-292,-188]],"c":true}],"h":1},{"t":192,"s":[{"i":[[-285.94,-192.13],[-299.96,-186.96],[-301.66,-187.22],[-305.01,-183.89],[-303.43,-177.8],[-300.02,-171.54],[-298.57,-170.52],[-289.28,-163.74],[-274.5,-156.26],[-263.85,-147.58],[-254.41,-136.45],[-246.64,-118.67],[-236.96,-90.96],[-228.37,-81.19],[-220.46,-77.29],[-209.25,-73.44],[-198.14,-70.4],[-190.31,-67.88],[-184.53,-65.92],[-182.65,-64.46],[-182.22,-63.16],[-179.8,-62.69],[-171.88,-54.37],[-168.03,-20.7],[-170.07,-1.13],[-163.52,30.86],[-146.03,26.64],[-129.59,14.97],[-122.37,10.25],[-120.51,10.23],[-119.38,8.24],[-112.24,5.19],[-104.06,-1.05],[-89.21,-10.65],[-83.38,-14.75],[-81.51,-14.77],[-80.37,-16.75],[-78.51,-16.77],[-77.39,-18.76],[-70.05,-21.99],[-66.85,-24.18],[-60.65,-27.93],[-71.59,-51.89],[-96.7,-62.6],[-121.76,-70.04],[-129.26,-75.71],[-134.78,-78.73],[-136.33,-82.04],[-139.41,-84.14],[-140.57,-87.27],[-148.64,-115.87],[-155.27,-132.19],[-156.92,-139.09],[-161.19,-143.7],[-162.79,-147.52],[-166.64,-151.68],[-169.03,-152.32],[-173.07,-156.56],[-198.6,-164.5],[-244.7,-165.71],[-255.72,-170.47]],"o":[[-299.38,-186.85],[-301.1,-187.15],[-304.3,-185.49],[-304.58,-180.04],[-300.74,-172.53],[-298.94,-170.54],[-294.03,-166.35],[-279.51,-158.69],[-267.39,-151.11],[-257.35,-140.25],[-249.66,-128.19],[-240.29,-100.05],[-230.64,-83.05],[-223.28,-78.31],[-212.93,-74.48],[-201.86,-71.4],[-192.29,-68.42],[-186.42,-66.63],[-182.79,-64.88],[-182.36,-63.6],[-181.08,-62.31],[-174.96,-58.5],[-165.2,-38.82],[-169.26,-4.59],[-169.78,12.33],[-152.76,31.02],[-133.99,18.74],[-122.68,11.85],[-121.54,9.69],[-119.67,9.85],[-116.34,6.3],[-107.88,1.01],[-95.65,-6.41],[-83.67,-13.15],[-82.53,-15.3],[-80.68,-15.15],[-79.54,-17.31],[-77.67,-17.15],[-74.57,-20.53],[-68.16,-23.8],[-62.67,-28.19],[-58.63,-40.52],[-86.21,-60.3],[-114.23,-68.38],[-128.16,-73.66],[-132.61,-78.2],[-136.76,-80.8],[-137.58,-83.83],[-140.58,-85.84],[-147.88,-99.61],[-153.55,-130.66],[-156.94,-136.34],[-158.35,-141.63],[-163.32,-146.4],[-163.34,-148.75],[-167.83,-152.74],[-172.51,-154.75],[-186.03,-162.93],[-227.03,-165.48],[-254.67,-170.31],[-267.55,-175.38]],"v":[[-299,-187],[-300.53,-187.05],[-302,-187],[-304.79,-181.96],[-302,-175],[-299.48,-171.04],[-298,-170],[-284.4,-161.21],[-270,-153],[-260.6,-143.92],[-253,-134],[-243.47,-109.36],[-233,-86],[-225.82,-79.75],[-217,-76],[-205.56,-72.42],[-194,-69],[-188.37,-67.25],[-183,-65],[-182.51,-64.03],[-182,-63],[-179,-62],[-170,-50],[-169,-8],[-170,2],[-154,31],[-142,24],[-123,12],[-122,10],[-120,10],[-119,8],[-111,4],[-101,-3],[-84,-13],[-83,-15],[-81,-15],[-80,-17],[-78,-17],[-77,-19],[-69,-23],[-66,-25],[-60,-32],[-77,-55],[-107,-66],[-127,-73],[-131,-77],[-136,-80],[-137,-83],[-140,-85],[-141,-88],[-153,-129],[-156,-134],[-158,-141],[-163,-146],[-163,-148],[-167,-152],[-170,-153],[-176,-158],[-213,-165],[-254,-170],[-257,-171]],"c":true}],"h":1},{"t":193,"s":[{"i":[[-285.71,-192.15],[-304.5,-183.73],[-303.39,-176.4],[-297.19,-168.95],[-291.44,-165.28],[-286.32,-162.28],[-278.64,-158.06],[-267.72,-150.87],[-257.14,-140.35],[-248.94,-124.66],[-242.74,-107.43],[-236.91,-92.98],[-228.88,-81.79],[-221.35,-78.46],[-215.84,-76.61],[-201.75,-72.32],[-184.12,-65.99],[-174.29,-57.74],[-168.58,-46.35],[-167.89,-23.67],[-171.14,3.04],[-168.39,15.54],[-164.11,23.57],[-160.26,27.6],[-154.75,30.98],[-151.19,29.89],[-143.9,25.25],[-126.99,14.08],[-106.35,0.41],[-95.35,-6.64],[-86.63,-11.81],[-83.68,-13.51],[-83.19,-14.88],[-81.2,-15.95],[-77.93,-17.4],[-70.5,-21.92],[-60.41,-29.15],[-60.59,-35.23],[-64.35,-42.98],[-65.74,-45.43],[-66.72,-47.67],[-69.16,-49.79],[-73.47,-52.5],[-77.74,-55.94],[-83.5,-58.07],[-88.03,-59.96],[-90.93,-61.63],[-109.57,-67.04],[-134.43,-77.29],[-137.5,-83.31],[-138.88,-83.85],[-148.8,-108.35],[-161.49,-150.46],[-176.32,-157.52],[-176.78,-158.89],[-178.28,-159.59],[-181.14,-160.71],[-201.21,-164.57],[-234.9,-166.07],[-248.41,-168.81],[-255.05,-170.22]],"o":[[-302.81,-185.53],[-304.79,-179.17],[-299.47,-170.81],[-293.18,-166.18],[-289,-163.75],[-281.14,-159.44],[-271.9,-153.69],[-260.34,-144.2],[-251.33,-130.44],[-244.65,-113.15],[-238.97,-97.83],[-231.87,-84.96],[-223.18,-79.16],[-217.68,-77.19],[-208.19,-74.08],[-189.71,-68.28],[-177,-60.82],[-170.08,-50.51],[-166.81,-33.19],[-170.05,-5.56],[-169.59,12.51],[-165.66,21.07],[-162.13,26.11],[-156.57,30.04],[-153.24,31.02],[-146.52,27],[-134.57,19.13],[-112.88,4.73],[-98.29,-4.73],[-89.53,-10.18],[-83.83,-13.07],[-83.36,-14.41],[-82.23,-15.5],[-79.04,-16.9],[-74.54,-19.6],[-63.43,-26.7],[-59.67,-32.49],[-62.93,-40.48],[-65.38,-44.59],[-66.41,-46.97],[-67.67,-48.79],[-72.06,-51.64],[-75.99,-54.91],[-81.49,-57.52],[-87.07,-59.4],[-89.96,-61.08],[-99.61,-64.64],[-126.98,-73.37],[-137.06,-83.14],[-138.41,-83.67],[-146.81,-93.37],[-156.14,-136.89],[-176.18,-157.08],[-176.62,-158.43],[-177.46,-159.24],[-180.12,-160.33],[-190.26,-163.79],[-223.53,-165.71],[-246.13,-168.45],[-252.87,-169.7],[-267.4,-175.15]],"v":[[-299,-187],[-304.64,-181.45],[-301,-173],[-295.18,-167.57],[-291,-165],[-283.73,-160.86],[-277,-157],[-264.03,-147.53],[-254,-135],[-246.8,-118.9],[-241,-103],[-234.39,-88.97],[-225,-80],[-219.51,-77.82],[-214,-76],[-195.73,-70.3],[-180,-63],[-172.19,-54.12],[-168,-42],[-168.97,-14.62],[-170,10],[-167.03,18.31],[-163,25],[-158.41,28.82],[-154,31],[-148.86,28.45],[-142,24],[-119.93,9.4],[-101,-3],[-92.44,-8.41],[-84,-13],[-83.52,-13.96],[-83,-15],[-80.12,-16.42],[-77,-18],[-66.97,-24.31],[-60,-31],[-61.76,-37.85],[-65,-44],[-66.07,-46.2],[-67,-48],[-70.61,-50.71],[-74,-53],[-79.62,-56.73],[-86,-59],[-88.99,-60.52],[-92,-62],[-118.27,-70.2],[-137,-83],[-137.95,-83.49],[-139,-84],[-152.47,-122.62],[-176,-157],[-176.47,-157.98],[-177,-159],[-179.2,-159.96],[-182,-161],[-212.37,-165.14],[-244,-168],[-250.64,-169.26],[-257,-171]],"c":true}],"h":1},{"t":194,"s":[{"i":[[-292.42,-188.7],[-303.05,-185.36],[-304.67,-181.68],[-299,-170.29],[-285.46,-162],[-279.27,-158.67],[-273.11,-155.52],[-266.03,-149.65],[-256.76,-138.96],[-247.26,-117.66],[-235.79,-87.55],[-218.79,-77.12],[-198.18,-71.91],[-182.73,-65.45],[-171.69,-54.34],[-168.24,-27.52],[-172.11,6.53],[-165.19,21.65],[-155.31,31.01],[-151.99,30.1],[-146.43,27.2],[-145.68,26.49],[-145.18,25.12],[-144.4,24.9],[-143.25,25.12],[-142.68,24.49],[-142.19,23.12],[-139.97,21.9],[-136.82,20.53],[-131.25,16.82],[-125.11,12.95],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-116.05,6.48],[-111.57,4.54],[-107.76,1.27],[-102.71,-1.9],[-95.02,-6.67],[-86.35,-11.82],[-74.12,-20.14],[-69.37,-23.75],[-67.51,-23.77],[-66.34,-25.75],[-64.49,-25.78],[-63.26,-27.76],[-61.37,-27.67],[-61.1,-30.53],[-64.66,-45.13],[-114.16,-65.53],[-141.25,-86.72],[-151.16,-125.11],[-162.82,-145.42],[-174.87,-158],[-232.18,-162.11],[-269.27,-177.04],[-275.62,-181.72],[-278.42,-182.72]],"o":[[-301.22,-186.02],[-304.78,-183.19],[-302.76,-174.04],[-290.35,-164.27],[-280.97,-159.4],[-275.35,-156.73],[-269.15,-152.66],[-259.84,-142.8],[-250.61,-128.63],[-239.85,-97.12],[-225.44,-79.42],[-205.16,-73.36],[-187.63,-68.03],[-174.75,-58.6],[-166.93,-39.28],[-170.82,-4.61],[-168.03,17.64],[-158.82,28.33],[-153.52,31],[-148.45,28.2],[-145.84,26.93],[-145.35,25.59],[-144.77,24.85],[-143.64,25.04],[-142.84,24.93],[-142.36,23.59],[-141.06,22.38],[-137.85,20.97],[-133.45,18.34],[-127.08,14.12],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-117.77,7.21],[-112.95,5.15],[-109.41,2.47],[-104.42,-0.92],[-97.85,-5.01],[-89.27,-10.08],[-79.77,-16.1],[-69.68,-22.15],[-68.54,-24.31],[-66.7,-24.14],[-65.57,-26.31],[-63.75,-26.11],[-62.64,-28.34],[-60.67,-28.29],[-60.19,-34.84],[-77.08,-62.44],[-136.32,-80.62],[-151.1,-105.62],[-160.3,-142.46],[-167.29,-151.4],[-199.86,-170.07],[-262.56,-173.45],[-275.35,-180.18],[-276.66,-182.49],[-284.77,-185.82]],"v":[[-298,-187],[-303.92,-184.28],[-304,-179],[-294.67,-167.28],[-282,-160],[-277.31,-157.7],[-271,-154],[-262.94,-146.22],[-255,-136],[-243.55,-107.39],[-230,-83],[-211.97,-75.24],[-193,-70],[-178.74,-62.03],[-170,-49],[-169.53,-16.07],[-169,15],[-162,24.99],[-153,31],[-150.22,29.15],[-146,27],[-145.52,26.04],[-145,25],[-144.02,24.97],[-143,25],[-142.52,24.04],[-142,23],[-138.91,21.44],[-136,20],[-129.17,15.47],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-114.5,5.82],[-111,4],[-106.09,0.18],[-101,-3],[-92.15,-8.38],[-83,-14],[-70,-22],[-69,-24],[-67,-24],[-66,-26],[-64,-26],[-63,-28],[-61,-28],[-61,-31],[-66,-47],[-131,-77],[-144,-92],[-159,-140],[-164,-147],[-179,-160],[-256,-171],[-275,-180],[-276,-182],[-279,-183]],"c":true}],"h":1},{"t":195,"s":[{"i":[[-293.61,-188.27],[-300.15,-186.5],[-302.25,-186.22],[-303.62,-185.56],[-304.15,-177.99],[-294.89,-167.28],[-292.01,-165.57],[-290.37,-165.21],[-287.35,-163.61],[-283.32,-161.75],[-276.97,-157.84],[-269.46,-152.24],[-264.97,-148.2],[-260.29,-142.83],[-257.44,-138.79],[-255.47,-135.83],[-247.44,-117.07],[-237.26,-89.78],[-229.96,-83.51],[-226.13,-81.57],[-205.13,-74.56],[-177.83,-64.44],[-169.18,-32.43],[-172.33,8.1],[-167.42,18.57],[-163.35,22.72],[-154.81,29.77],[-146.24,26.4],[-139.25,21.68],[-136.92,19.6],[-133.5,17.76],[-129.82,16.53],[-128.39,15.45],[-127.34,14.26],[-126,13.29],[-124.52,12.36],[-116,6.63],[-104.32,-0.88],[-91.25,-9.32],[-76.94,-18.8],[-69.98,-23.07],[-66.87,-24.41],[-63.63,-26.6],[-61.28,-28.98],[-60.99,-33.82],[-63.78,-41.74],[-74.22,-55.21],[-94.47,-63.63],[-119.47,-71.66],[-140,-84.17],[-147.85,-99.19],[-150.89,-111.67],[-156.74,-132.71],[-168.56,-152.71],[-180.27,-160.21],[-188.49,-163.23],[-206.31,-165.83],[-230.29,-166.1],[-250.57,-169.13],[-263.99,-174.96],[-277.37,-182.2]],"o":[[-299.2,-186.65],[-301.67,-186.28],[-303.23,-185.86],[-305.96,-182.1],[-298.61,-170.58],[-292.57,-165.71],[-290.91,-165.32],[-288.69,-164.24],[-284.66,-162.37],[-279.74,-159.72],[-271.82,-154.09],[-266.57,-149.79],[-261.83,-144.72],[-258.2,-139.87],[-256.07,-136.77],[-250.56,-127.18],[-240.79,-98.37],[-231.15,-84.22],[-227.46,-82.18],[-215.71,-76.34],[-186.18,-68.61],[-168.51,-46.24],[-171.08,-5.26],[-168.49,17.22],[-164.85,21.33],[-157.43,28.32],[-149.21,28.81],[-140.04,22.38],[-137.69,20.29],[-134.84,18.24],[-130.99,16.9],[-128.71,15.82],[-127.7,14.66],[-126.49,13.62],[-125.01,12.66],[-120.08,9.32],[-108.11,1.53],[-96.03,-6.17],[-81.71,-15.64],[-71.04,-22.62],[-67.89,-23.97],[-64.74,-25.86],[-61.9,-28.16],[-60.6,-31.45],[-62.58,-38.97],[-68.74,-50.89],[-87.09,-61.57],[-110.97,-68.83],[-133.99,-79.34],[-146.4,-95.1],[-150.09,-107.48],[-154.21,-124.61],[-163.91,-146.77],[-177.77,-158.84],[-185.63,-162.4],[-198.92,-165.53],[-222,-166.12],[-245.32,-167.65],[-259.9,-172.79],[-272.06,-179.07],[-288.15,-186.8]],"v":[[-298,-187],[-300.91,-186.39],[-302.74,-186.04],[-304,-185],[-301.38,-174.29],[-293,-166],[-291.46,-165.44],[-290,-165],[-286,-162.99],[-282,-161],[-274.4,-155.97],[-268,-151],[-263.4,-146.46],[-259,-141],[-256.75,-137.78],[-255,-135],[-244.12,-107.72],[-232,-85],[-228.71,-82.85],[-225,-81],[-195.66,-71.58],[-173,-55],[-170.13,-18.85],[-169,16],[-166.13,19.95],[-162,24],[-152.01,29.29],[-141,23],[-138.47,20.98],[-136,19],[-132.25,17.33],[-129,16],[-128.04,15.05],[-127,14],[-125.5,12.98],[-124,12],[-112.05,4.08],[-101,-3],[-86.48,-12.48],[-72,-22],[-68.94,-23.52],[-66,-25],[-62.76,-27.38],[-61,-30],[-61.78,-36.4],[-65,-44],[-80.66,-58.39],[-102,-66],[-126.73,-75.5],[-144,-91],[-148.97,-103.33],[-152,-116],[-160.32,-139.74],[-175,-157],[-182.95,-161.3],[-192,-164],[-214.16,-165.97],[-239,-167],[-255.23,-170.96],[-268,-177],[-282.76,-184.5]],"c":true}],"h":1},{"t":196,"s":[{"i":[[-294.59,-189.6],[-301.87,-185.69],[-302.64,-185.49],[-304.5,-179.64],[-299.15,-171.42],[-295.68,-169.49],[-295.18,-168.12],[-293.26,-167.08],[-290.64,-166.29],[-289.68,-165.48],[-289.2,-164.12],[-285.69,-162.33],[-279.01,-159.46],[-277.68,-158.49],[-277.19,-157.12],[-276.39,-156.91],[-275.26,-157.12],[-274.68,-156.49],[-274.18,-155.12],[-273.4,-154.9],[-272.25,-155.11],[-271.68,-154.49],[-271.17,-153.12],[-267.47,-150.41],[-264.09,-147.43],[-261.56,-144.03],[-260.39,-141.86],[-259.49,-140.68],[-258.12,-140.19],[-257.32,-138.74],[-256.31,-136.52],[-248.25,-117.33],[-236.31,-88.55],[-222.44,-80.64],[-211.24,-76.92],[-177.12,-66.34],[-176.53,-0.36],[-163.05,23.74],[-159.77,26.49],[-151.45,29.46],[-145.37,25.25],[-143.51,25.23],[-142.37,23.25],[-137.9,21.24],[-104.73,-0.8],[-77.96,-17.08],[-74.85,-19.18],[-67.91,-23.47],[-62.67,-27.7],[-65.94,-45.79],[-70.12,-51.58],[-78.51,-58.21],[-104.62,-67.08],[-131.79,-78.33],[-140.56,-86.13],[-152.38,-128.93],[-173.16,-155.61],[-183.14,-162.29],[-230.65,-165.36],[-262.65,-174.33],[-276.38,-180.55]],"o":[[-301.55,-185.69],[-302.42,-185.59],[-304.67,-182.68],[-301.73,-174.01],[-295.84,-169.93],[-295.35,-168.59],[-294.19,-167.44],[-291.49,-166.51],[-289.83,-165.92],[-289.36,-164.58],[-287.93,-163.35],[-281.23,-160.38],[-277.84,-158.93],[-277.36,-157.59],[-276.76,-156.85],[-275.64,-157.04],[-274.84,-156.93],[-274.35,-155.59],[-273.77,-154.85],[-272.64,-155.04],[-271.85,-154.93],[-271.34,-153.59],[-268.92,-151.44],[-265.06,-148.4],[-262.12,-144.85],[-260.7,-142.54],[-259.92,-140.83],[-258.58,-140.36],[-257.66,-139.48],[-256.64,-137.26],[-251.34,-128.05],[-240.73,-97.57],[-226.07,-82.18],[-215.02,-78.01],[-191.73,-71.39],[-165.23,-33.03],[-168.76,16.51],[-160.04,25.59],[-153.21,30.89],[-145.68,26.85],[-144.54,24.69],[-142.67,24.85],[-140.08,21.74],[-114.55,6.07],[-82.13,-15.19],[-76.16,-18.8],[-71.55,-22.35],[-63.2,-27.25],[-60.86,-36.6],[-69.91,-50.05],[-75.45,-55.6],[-93.02,-65.66],[-124.64,-73.98],[-138.87,-84.68],[-154.31,-103.95],[-167,-150.41],[-179.39,-159.49],[-201.13,-169.11],[-256.28,-170.74],[-271.89,-178.94],[-284.4,-184.98]],"v":[[-301,-186],[-302.15,-185.64],[-303,-185],[-303.11,-176.82],[-296,-170],[-295.51,-169.04],[-295,-168],[-292.37,-166.79],[-290,-166],[-289.52,-165.03],[-289,-164],[-283.46,-161.35],[-278,-159],[-277.52,-158.04],[-277,-157],[-276.02,-156.97],[-275,-157],[-274.52,-156.04],[-274,-155],[-273.02,-154.97],[-272,-155],[-271.51,-154.04],[-271,-153],[-266.26,-149.4],[-263,-146],[-261.13,-143.28],[-260,-141],[-259.04,-140.52],[-258,-140],[-256.98,-138],[-256,-136],[-244.49,-107.45],[-229,-84],[-218.73,-79.32],[-208,-76],[-172,-52],[-169,16],[-161,25],[-159,27],[-146,27],[-145,25],[-143,25],[-142,23],[-136,20],[-84,-14],[-77,-18],[-74,-20],[-66,-25],[-62,-31],[-68,-48],[-72,-53],[-82,-60],[-116,-71],[-137,-83],[-142,-88],[-164,-146],[-177,-158],[-185,-163],[-248,-169],[-268,-177],[-279,-182]],"c":true}],"h":1},{"t":197,"s":[{"i":[[-300.18,-186.46],[-302.13,-185.71],[-303.72,-185.5],[-304.74,-182.01],[-302.52,-176.11],[-297.12,-170.05],[-291.83,-166.89],[-281.06,-160.35],[-265.45,-149.52],[-261.59,-144.05],[-261.34,-142.46],[-259.67,-140.6],[-257.41,-138.69],[-255.25,-134.69],[-252.81,-128.88],[-248.84,-118.57],[-244.76,-105.96],[-238.76,-94.08],[-229.94,-84.36],[-223.36,-81.45],[-217.91,-79.59],[-200.74,-74.98],[-181.35,-66.76],[-173.52,-55.35],[-170.27,-44.66],[-170.62,-23.04],[-172.96,4.55],[-169.33,15.24],[-164.99,21.13],[-159.96,25.48],[-153.5,29.98],[-151.38,29.65],[-148.17,27.73],[-143.15,24.59],[-137.81,21.17],[-117.53,7.88],[-94.8,-7.12],[-81.74,-15.25],[-77.42,-17.6],[-76.04,-18.7],[-74.42,-19.59],[-69.18,-23.39],[-62.54,-27.78],[-62.36,-35.85],[-66.39,-44.91],[-67.89,-48.03],[-68.75,-50.68],[-78.52,-59.12],[-99.52,-66.64],[-121.66,-73.92],[-139.38,-84.13],[-150.85,-105.93],[-155.92,-127.16],[-160.67,-138.44],[-167.64,-151.17],[-174.03,-155.32],[-176.13,-158.46],[-180.1,-160.07],[-192.21,-165.02],[-225.48,-166.4],[-277.36,-185.49]],"o":[[-301.52,-185.71],[-303.23,-185.6],[-304.73,-183.71],[-303.64,-178.22],[-299.46,-171.86],[-293.31,-167.57],[-286.84,-163.59],[-270.37,-153.31],[-261.67,-144.57],[-261.42,-143],[-260.46,-141.26],[-258.14,-139.32],[-256.1,-136.5],[-253.61,-130.88],[-250.22,-122.84],[-246.11,-110.13],[-241.29,-98.15],[-233.08,-87.18],[-225.15,-82.15],[-219.74,-80.17],[-208.31,-76.6],[-187.25,-70.06],[-175.13,-58.52],[-171.09,-48.42],[-169.39,-32.81],[-172.41,-4.36],[-170.34,13.17],[-166.66,19.22],[-162.21,23.74],[-155.6,28.6],[-152.29,30.03],[-149.32,28.5],[-145,25.75],[-139.56,22.3],[-125.13,12.94],[-102.36,-2.15],[-83.28,-14.46],[-78.81,-16.82],[-76.58,-18.4],[-74.96,-19.29],[-71.91,-22],[-64.5,-26.28],[-61.41,-32.4],[-64.85,-42.11],[-67.52,-46.94],[-68.51,-49.9],[-72.76,-55.8],[-91.9,-64.54],[-114.47,-71.36],[-134.12,-80.31],[-148.17,-95.95],[-154.66,-120.23],[-158.94,-135.65],[-164.55,-145.92],[-172.83,-155.73],[-175.82,-156.57],[-177.43,-159.27],[-187.59,-163.73],[-213.24,-168.05],[-265.77,-170.56],[-297.59,-187.44]],"v":[[-301,-186],[-302.68,-185.66],[-304,-185],[-304.19,-180.11],[-301,-174],[-295.22,-168.81],[-292,-167],[-275.72,-156.83],[-262,-145],[-261.51,-143.53],[-261,-142],[-258.9,-139.96],[-257,-138],[-254.43,-132.79],[-252,-127],[-247.48,-114.35],[-243,-102],[-235.92,-90.63],[-227,-83],[-221.55,-80.81],[-216,-79],[-193.99,-72.52],[-177,-61],[-172.3,-51.89],[-170,-41],[-171.51,-13.7],[-171,11],[-168,17.23],[-163,23],[-157.78,27.04],[-153,30],[-150.35,29.07],[-147,27],[-141.36,23.45],[-136,20],[-109.95,2.86],[-84,-14],[-80.28,-16.04],[-77,-18],[-75.5,-18.99],[-74,-20],[-66.84,-24.83],[-62,-30],[-63.61,-38.98],[-67,-46],[-68.2,-48.96],[-69,-51],[-85.21,-61.83],[-107,-69],[-127.89,-77.12],[-143,-89],[-153,-114],[-158,-133],[-162,-141],[-172,-155],[-175,-156],[-177,-159],[-182,-161],[-199,-166],[-241,-168],[-293,-187]],"c":true}],"h":1},{"t":198,"s":[{"i":[[-300.31,-186.46],[-301.86,-185.7],[-302.72,-185.58],[-304.29,-179.84],[-301.05,-175.39],[-294.54,-168.52],[-284.72,-162.71],[-279.45,-159.3],[-275.79,-156.6],[-274.05,-155.61],[-272.41,-155.33],[-267.22,-150.46],[-259.75,-140.94],[-249.19,-117.09],[-235.64,-87.56],[-220.7,-80.85],[-212.8,-78.75],[-200.47,-75.26],[-187.91,-70.05],[-178.1,-62.47],[-171.72,-51.24],[-171.21,-26.22],[-173.92,4.43],[-169.53,14.93],[-165.13,20.11],[-159.43,25.11],[-152.84,29.08],[-148.11,27.94],[-142.27,23.48],[-136.04,19.45],[-130.43,15.91],[-118.39,8.19],[-105,-0.48],[-97.1,-5.46],[-91.75,-8.88],[-86.1,-12.44],[-81.15,-15.52],[-77.48,-17.94],[-75.69,-18.69],[-74.68,-19.51],[-74.19,-20.88],[-70.02,-22.66],[-63.8,-26.31],[-66.28,-46.33],[-88.03,-64.62],[-123.43,-74.09],[-135.32,-82.66],[-138.53,-83.79],[-139.71,-85.75],[-151.72,-104.94],[-156.44,-126.4],[-160.18,-133.98],[-161.91,-141.04],[-164.56,-144.41],[-172.97,-155.73],[-178.63,-159.75],[-180.49,-159.77],[-181.56,-161.78],[-184.65,-162.86],[-235.94,-165.33],[-283.07,-187.52]],"o":[[-301.5,-185.67],[-302.47,-185.66],[-304.52,-181.89],[-302.56,-176.59],[-297.68,-170.92],[-288.06,-164.42],[-280.8,-160.25],[-276.94,-157.48],[-274.6,-155.69],[-272.96,-155.43],[-269.84,-153.24],[-262.17,-144.31],[-252.37,-128.55],[-240.82,-96.59],[-223.3,-81.72],[-215.45,-79.36],[-205.27,-76.73],[-191.79,-71.91],[-181.23,-65.35],[-173.34,-55.42],[-169.75,-36.93],[-173.3,-5.54],[-170.47,13.38],[-166.86,18.3],[-161.51,23.33],[-155.1,27.99],[-149.72,28.95],[-144.38,25.21],[-138.08,20.75],[-132.21,17.03],[-123.39,11.43],[-109.2,2.23],[-98.97,-4.27],[-93.48,-7.76],[-87.78,-11.43],[-82.79,-14.48],[-78.14,-17.59],[-76.26,-18.49],[-74.83,-19.07],[-74.36,-20.41],[-71.97,-22.31],[-65.52,-25.65],[-61.38,-34.44],[-74.69,-59.43],[-111.91,-72.11],[-133.83,-80.05],[-137.4,-84.32],[-139.27,-84.12],[-148.11,-92.86],[-156.18,-121.35],[-158.61,-132.8],[-161.9,-138.24],[-163.26,-143.46],[-168.96,-150.29],[-178.32,-158.15],[-179.46,-160.31],[-181.36,-160.16],[-182.79,-162.4],[-203.85,-170.45],[-270.6,-175.12],[-300.3,-186.96]],"v":[[-301,-186],[-302.17,-185.68],[-303,-185],[-303.42,-178.21],[-300,-174],[-291.3,-166.47],[-282,-161],[-278.2,-158.39],[-275,-156],[-273.51,-155.52],[-272,-155],[-264.7,-147.38],[-258,-138],[-245.01,-106.84],[-226,-83],[-218.08,-80.1],[-210,-78],[-196.13,-73.59],[-185,-68],[-175.72,-58.94],[-171,-46],[-172.25,-15.88],[-171,12],[-168.19,16.62],[-163,22],[-157.27,26.55],[-151,29],[-146.24,26.57],[-140,22],[-134.13,18.24],[-129,15],[-113.8,5.21],[-101,-3],[-95.29,-6.61],[-90,-10],[-84.45,-13.46],[-79,-17],[-76.87,-18.21],[-75,-19],[-74.52,-19.96],[-74,-21],[-68,-24],[-63,-29],[-68,-49],[-102,-69],[-132,-79],[-137,-84],[-139,-84],[-140,-86],[-155,-117],[-158,-131],[-161,-136],[-163,-143],[-165,-145],[-178,-158],[-179,-160],[-181,-160],[-182,-162],[-185,-163],[-256,-171],[-299,-187]],"c":true}],"h":1},{"t":199,"s":[{"i":[[-292.8,-191.42],[-302.1,-185.71],[-303.81,-185.52],[-304.5,-181.09],[-301.61,-174.94],[-298.35,-171.57],[-295.79,-170.57],[-293.4,-168.54],[-291.61,-166.4],[-290,-165.57],[-288.38,-165.22],[-284.47,-162.93],[-279.27,-159.79],[-277.36,-158.43],[-276.32,-157.22],[-274.3,-156],[-271.7,-154.6],[-265.79,-148.61],[-259.65,-139.04],[-256.61,-133.63],[-254.58,-130.26],[-247.95,-112.67],[-243.9,-101.91],[-241.24,-99.44],[-240.69,-96.35],[-234.09,-87.47],[-224.54,-83.26],[-213.8,-79.03],[-190.19,-74.01],[-178.41,-63.36],[-179.13,-10.47],[-168.13,16.49],[-162.8,22.69],[-152.21,29.65],[-138.26,21.1],[-127.97,14.72],[-116.49,7.12],[-88.16,-10.98],[-63.74,-25.82],[-64.69,-42.94],[-69.09,-49.75],[-85.04,-63.47],[-102.05,-69.11],[-108.47,-71.84],[-114.27,-73.07],[-124.45,-77],[-131.16,-79.2],[-132.82,-80.3],[-137.44,-84.75],[-142.24,-87.16],[-144.17,-90.84],[-155.15,-130.66],[-168.46,-149.28],[-174.96,-156.63],[-178.63,-159.75],[-180.49,-159.77],[-181.57,-161.77],[-184.59,-162.45],[-188.1,-164.7],[-224.19,-167.16],[-261.27,-172.95]],"o":[[-301.44,-185.71],[-303.28,-185.62],[-304.7,-183.11],[-302.96,-177],[-299.2,-172.04],[-296.64,-170.84],[-294.09,-169.34],[-292.16,-167.07],[-290.56,-165.71],[-288.91,-165.32],[-286.33,-164.03],[-280.94,-160.81],[-277.7,-158.81],[-276.67,-157.63],[-275.2,-156.45],[-272.55,-155.08],[-268.21,-151.59],[-261.51,-142.33],[-257.32,-134.75],[-255.24,-131.38],[-250.29,-120.92],[-244.01,-103.76],[-242.82,-99.63],[-240.25,-97.63],[-238.63,-92.34],[-229.31,-84.11],[-216.9,-80.54],[-202.49,-75.95],[-182.17,-66.33],[-165.09,-39.25],[-171.12,12.52],[-164.65,21.14],[-151.95,29.3],[-141.7,23.47],[-129.91,15.73],[-119.94,9.22],[-99.6,-3.15],[-70.42,-22.28],[-62.53,-29.38],[-66.75,-47.75],[-77.31,-59.45],[-98.87,-68.37],[-106.38,-70.08],[-111.41,-72.74],[-121.01,-75.37],[-129.44,-78.96],[-132.85,-80.82],[-136.44,-82.45],[-140.47,-87.17],[-143.67,-88.73],[-155.79,-107.04],[-167.42,-148.61],[-171.7,-153.6],[-178.32,-158.15],[-179.46,-160.31],[-181.36,-160.16],[-183.36,-162.74],[-187.13,-163.44],[-204.65,-170.24],[-250.47,-169.73],[-273.1,-178.08]],"v":[[-301,-186],[-302.69,-185.67],[-304,-185],[-303.73,-179.04],[-300,-173],[-297.49,-171.21],[-295,-170],[-292.78,-167.81],[-291,-166],[-289.45,-165.45],[-288,-165],[-282.7,-161.87],[-278,-159],[-277.02,-158.03],[-276,-157],[-273.43,-155.54],[-271,-154],[-263.65,-145.47],[-258,-136],[-255.92,-132.51],[-254,-129],[-245,-106],[-243,-100],[-241,-99],[-240,-95],[-232,-86],[-221,-82],[-210,-78],[-186,-70],[-176,-59],[-172,10],[-167,18],[-159,25],[-146,26],[-135,19],[-124,12],[-113,5],[-74,-20],[-63,-28],[-66,-46],[-71,-52],[-95,-67],[-106,-70],[-109,-72],[-117,-74],[-127,-78],[-132,-80],[-134,-81],[-139,-86],[-143,-88],[-145,-92],[-167,-148],[-169,-150],[-178,-158],[-179,-160],[-181,-160],[-182,-162],[-186,-163],[-189,-165],[-243,-169],[-266,-175]],"c":true}],"h":1},{"t":200,"s":[{"i":[[-296.37,-189.02],[-301.87,-185.71],[-302.72,-185.58],[-302.35,-175.2],[-288.24,-165.3],[-283.24,-162.39],[-279.32,-159.92],[-271.96,-154.39],[-264.32,-145.92],[-262.49,-142.68],[-261.12,-142.19],[-260.32,-140.74],[-259.31,-138.52],[-255.55,-131.67],[-251.03,-121.69],[-249.24,-116.3],[-248.47,-112.17],[-247.14,-109.17],[-245.49,-106.09],[-240.55,-96.13],[-231.86,-86.75],[-222.16,-82.54],[-213.61,-79.71],[-202.81,-77.09],[-191.06,-73.84],[-187.01,-71.16],[-185.44,-69.37],[-181.26,-65.77],[-177.07,-60.94],[-174.26,-55.26],[-172.27,-48.19],[-172.51,-27],[-175.12,3.59],[-167.37,17.77],[-153.8,28.17],[-147.18,27.15],[-141.16,23.41],[-132.84,17.85],[-125.4,12.58],[-120.91,9.85],[-117.95,8.6],[-111.43,4.25],[-103.22,-1.6],[-96.87,-5.6],[-91.85,-8.81],[-86.08,-12.46],[-81.09,-15.56],[-70.79,-21.88],[-64.79,-26.07],[-66.24,-45.67],[-79.28,-60.25],[-92.87,-66.9],[-109.69,-72.89],[-123.63,-76.5],[-138.83,-84.68],[-153.15,-108.92],[-164.53,-143.72],[-184.63,-164.31],[-221.21,-168.02],[-249.22,-170.96],[-273.62,-179.17]],"o":[[-301.5,-185.67],[-302.48,-185.66],[-305.48,-179.8],[-293.73,-167.95],[-284.58,-163.18],[-280.61,-160.76],[-275.05,-156.93],[-266.59,-148.89],[-262.92,-142.83],[-261.58,-142.36],[-260.66,-141.48],[-259.64,-139.26],[-257.28,-135.07],[-252.42,-124.98],[-249.51,-117.72],[-248.72,-113.52],[-247.65,-110.13],[-246.06,-107.15],[-242.87,-100.25],[-235.04,-89.38],[-225.11,-83.68],[-216.42,-80.56],[-207.03,-77.92],[-194.82,-75.05],[-187.54,-71.72],[-185.96,-69.98],[-182.97,-67.3],[-178.31,-62.59],[-175.12,-57.41],[-172.83,-50.65],[-170.94,-37.54],[-174.59,-6.43],[-170.97,13.44],[-158.78,25.14],[-148.85,27.95],[-143.34,24.88],[-135.65,19.81],[-127.72,14.23],[-121.93,10.3],[-118.92,9],[-114.32,6.3],[-105.88,0.3],[-98.69,-4.45],[-93.45,-7.78],[-87.78,-11.43],[-82.73,-14.53],[-75.41,-19.46],[-65.82,-25.66],[-62.57,-34.29],[-72.45,-57.42],[-90.34,-65.62],[-103.34,-70.57],[-119.42,-76.15],[-132.74,-80.55],[-151.23,-97.52],[-160.11,-132.56],[-177.81,-158.98],[-210.18,-169.87],[-243.67,-169.41],[-265.78,-174.56],[-287.6,-184.88]],"v":[[-301,-186],[-302.17,-185.69],[-303,-185],[-298.04,-171.58],[-286,-164],[-281.92,-161.57],[-278,-159],[-269.27,-151.64],[-263,-143],[-262.04,-142.52],[-261,-142],[-259.98,-140],[-259,-138],[-253.98,-128.32],[-250,-119],[-248.98,-114.91],[-248,-111],[-246.6,-108.16],[-245,-105],[-237.8,-92.75],[-228,-85],[-219.29,-81.55],[-211,-79],[-198.82,-76.07],[-188,-72],[-186.48,-70.57],[-185,-69],[-179.78,-64.18],[-176,-59],[-173.54,-52.95],[-172,-46],[-173.55,-16.71],[-172,11],[-163.08,21.46],[-150,28],[-145.26,26.02],[-139,22],[-130.28,16.04],[-123,11],[-119.91,9.43],[-117,8],[-108.66,2.28],[-101,-3],[-95.16,-6.69],[-90,-10],[-84.41,-13.49],[-79,-17],[-68,-24],[-64,-29],[-68,-49],[-87,-64],[-96,-68],[-116,-75],[-127,-78],[-143,-89],[-157,-122],[-170,-150],[-197,-167],[-237,-169],[-254,-172],[-283,-183]],"c":true}],"h":1},{"t":201,"s":[{"i":[[-299.4,-186.31],[-300.63,-185.96],[-301.8,-186.16],[-304.76,-181.03],[-300.61,-174.78],[-297.35,-171.54],[-292.81,-168.78],[-291.36,-167.53],[-290.54,-167.35],[-282.95,-162.43],[-275.67,-157.18],[-270.85,-152.98],[-269,-150.24],[-266.92,-147.85],[-265.39,-146.51],[-258.68,-136.39],[-251.81,-120.02],[-244.3,-102.24],[-235.54,-90.09],[-223.91,-84.12],[-210.49,-80.28],[-189.91,-73.45],[-174.25,-57.73],[-172.87,-33.21],[-175.93,-8.11],[-173.89,5.63],[-170.94,12.53],[-169.43,14.92],[-168.31,16.65],[-163.1,21.24],[-151.17,28.12],[-147.65,27.55],[-145.02,25.68],[-140.2,22.53],[-134.66,19.05],[-129.95,16.08],[-126.14,13.71],[-124.36,12.42],[-123.33,11.21],[-120.94,9.88],[-117.91,8.58],[-112.51,4.92],[-105.69,-0.02],[-101.03,-2.76],[-97.43,-5.08],[-89.08,-10.58],[-78.59,-17.67],[-70.38,-22.58],[-65.63,-26.01],[-65.97,-44.8],[-75.85,-58.71],[-92.79,-67.92],[-138.06,-80.39],[-155,-111.33],[-162.85,-139.49],[-177.53,-157.84],[-182.33,-161.59],[-189.17,-164.62],[-197.98,-167.64],[-228.63,-168.21],[-280.16,-185.03]],"o":[[-300.23,-185.88],[-301.42,-186.1],[-304.95,-183.64],[-302.59,-176.6],[-298.95,-172.65],[-294.28,-169.6],[-291.59,-167.61],[-290.84,-167.4],[-285.87,-164.34],[-277.85,-158.84],[-271.6,-153.86],[-269.55,-151.17],[-267.48,-148.35],[-265.87,-146.93],[-261.28,-141.13],[-253.95,-125.84],[-246.78,-107.44],[-238.68,-93.57],[-228.16,-85.73],[-215.08,-81.4],[-197.53,-76.58],[-178.27,-64.03],[-171.91,-41.41],[-174.89,-16.57],[-174.67,2.86],[-172.03,10.46],[-169.78,14.34],[-168.7,16.07],[-166.76,18.43],[-155.3,26.09],[-148.38,27.97],[-145.96,26.41],[-142.12,23.76],[-136.47,20.18],[-131.38,16.98],[-127.33,14.45],[-124.7,12.81],[-123.68,11.62],[-121.98,10.35],[-118.9,9],[-114.91,6.68],[-107.9,1.57],[-102.32,-1.97],[-98.58,-4.31],[-92.54,-8.24],[-82.11,-15.29],[-72.57,-21.58],[-66.91,-24.8],[-63.66,-32.26],[-70.62,-54.42],[-86.43,-65.47],[-119.25,-76.78],[-153.2,-102.65],[-160.08,-128.31],[-172.03,-152.88],[-181.6,-160.37],[-187.82,-164.98],[-196.28,-166.65],[-215.61,-170.75],[-269.61,-172.44],[-299.25,-187.14]],"v":[[-300,-186],[-301.02,-186.03],[-302,-186],[-303.68,-178.82],[-300,-174],[-295.82,-170.57],[-292,-168],[-291.1,-167.47],[-290,-167],[-280.4,-160.63],[-273,-155],[-270.2,-152.07],[-268,-149],[-266.4,-147.39],[-265,-146],[-256.32,-131.11],[-249,-113],[-241.49,-97.9],[-232,-88],[-219.49,-82.76],[-206,-79],[-184.09,-68.74],[-173,-49],[-173.88,-24.89],[-175,0],[-172.96,8.05],[-170,14],[-169.06,15.49],[-168,17],[-159.2,23.66],[-149,28],[-146.8,26.98],[-144,25],[-138.34,21.35],[-133,18],[-128.64,15.27],[-125,13],[-124.02,12.02],[-123,11],[-119.92,9.44],[-117,8],[-110.2,3.24],[-104,-1],[-99.81,-3.54],[-96,-6],[-85.59,-12.93],[-75,-20],[-68.65,-23.69],[-65,-28],[-68,-49],[-81,-62],[-99,-70],[-148,-95],[-157,-118],[-168,-147],[-181,-160],[-183,-162],[-194,-166],[-200,-168],[-246,-170],[-298,-187]],"c":true}],"h":1},{"t":202,"s":[{"i":[[-299.4,-186.31],[-300.63,-185.96],[-301.8,-186.16],[-304.26,-178.79],[-293.82,-169.59],[-287.91,-165.44],[-281.82,-161.32],[-278.29,-158.96],[-275.81,-157.68],[-264.08,-145.51],[-253.82,-124.15],[-248.2,-111.03],[-245.06,-105.03],[-241.83,-98.41],[-238.56,-92.43],[-234.64,-89.37],[-230.45,-87.74],[-225.99,-85.45],[-221.64,-83.51],[-212.99,-81.26],[-202.31,-79.16],[-197.34,-77.14],[-194.76,-75.33],[-189.62,-73.01],[-185.46,-70.3],[-180.93,-66.08],[-177.89,-61.8],[-173.46,-39.31],[-176.94,-2.4],[-173.17,8.95],[-170.81,12.9],[-164.45,19.81],[-152.09,27.12],[-145.64,26.12],[-140.13,22.38],[-133.46,18.15],[-126.63,14.02],[-124.36,12.42],[-123.33,11.21],[-120.94,9.88],[-117.85,8.54],[-112.49,4.91],[-105.7,-0.01],[-101.08,-2.74],[-97.29,-5.16],[-92.09,-8.45],[-84.87,-12.84],[-79.4,-16.42],[-74.17,-20.24],[-69.67,-22.92],[-65.41,-25.85],[-65.07,-35.13],[-68.93,-50.23],[-99.75,-70.49],[-143.43,-87.2],[-157.41,-133.17],[-176.87,-156.58],[-185.77,-163.34],[-197.42,-168.26],[-238.97,-166.82],[-281.97,-185.23]],"o":[[-300.23,-185.88],[-301.42,-186.1],[-306.1,-182.74],[-298.12,-172.21],[-290.24,-167.03],[-283.69,-162.59],[-279.13,-159.37],[-276.63,-158.12],[-268.42,-151.44],[-256.78,-131.87],[-249.17,-113.01],[-246.15,-107.04],[-242.8,-100.7],[-239.71,-94.28],[-235.91,-90],[-231.9,-88.24],[-227.41,-86.19],[-223.1,-84.11],[-216.58,-81.93],[-205.85,-79.87],[-198.21,-77.72],[-195.62,-75.95],[-191.39,-73.86],[-186.65,-71.23],[-182.23,-67.43],[-178.75,-63.26],[-172.74,-51.36],[-175.56,-14.83],[-173.76,7.75],[-171.7,11.52],[-168.16,16.5],[-156.42,25.12],[-147.32,26.93],[-142.04,23.85],[-135.9,19.64],[-128.83,15.33],[-124.7,12.81],[-123.68,11.62],[-122.02,10.37],[-118.86,8.97],[-114.89,6.67],[-107.9,1.57],[-102.43,-1.91],[-98.51,-4.37],[-94.41,-7.03],[-87.32,-11.35],[-81.32,-15.05],[-75.83,-19.01],[-71.46,-21.99],[-66.64,-24.85],[-64.33,-28.89],[-67.04,-45.46],[-81.29,-66.74],[-131.62,-80.67],[-160.92,-115.96],[-173.84,-154.73],[-183.99,-162.08],[-193.64,-166.43],[-221.1,-172.1],[-274.11,-176.67],[-299.25,-187.14]],"v":[[-300,-186],[-301.02,-186.03],[-302,-186],[-301.19,-175.5],[-293,-169],[-285.8,-164.01],[-280,-160],[-277.46,-158.54],[-275,-157],[-260.43,-138.69],[-250,-115],[-247.17,-109.04],[-244,-103],[-240.77,-96.35],[-237,-91],[-233.27,-88.8],[-229,-87],[-224.54,-84.78],[-220,-83],[-209.42,-80.57],[-199,-78],[-196.48,-76.54],[-194,-75],[-188.14,-72.12],[-184,-69],[-179.84,-64.67],[-177,-60],[-174.51,-27.07],[-174,7],[-172.43,10.24],[-170,14],[-160.44,22.47],[-149,27],[-143.84,24.99],[-138,21],[-131.15,16.74],[-125,13],[-124.02,12.02],[-123,11],[-119.9,9.43],[-117,8],[-110.2,3.24],[-104,-1],[-99.79,-3.55],[-96,-6],[-89.71,-9.9],[-83,-14],[-77.62,-17.71],[-73,-21],[-68.15,-23.89],[-65,-27],[-66,-40],[-71,-53],[-117,-76],[-150,-98],[-171,-151],[-180,-159],[-190,-165],[-202,-169],[-261,-173],[-298,-187]],"c":true}],"h":1},{"t":203,"s":[{"i":[[-294.72,-188.65],[-300.94,-185.96],[-302.77,-186.23],[-304.29,-178.63],[-293.75,-169.54],[-284.26,-163.07],[-273.62,-154.97],[-268.34,-149.5],[-264.94,-146.37],[-262.93,-142.88],[-261.55,-139.01],[-257.05,-130.19],[-251.54,-117.6],[-248.92,-111.48],[-247.51,-108.18],[-246.37,-105.88],[-245.27,-104.5],[-244.04,-101.71],[-242.72,-98.06],[-241.13,-96.29],[-239.32,-95.4],[-238.13,-93.45],[-237.44,-91.37],[-236.43,-90.89],[-235.23,-91.1],[-234.68,-90.49],[-234.19,-89.12],[-230.98,-87.48],[-218.4,-83.39],[-206.92,-79.92],[-197.49,-78.05],[-188.56,-73.15],[-185.29,-70.24],[-179.02,-64.66],[-182.75,-7.68],[-166.47,18.01],[-150.52,27.16],[-145.63,25.7],[-138.73,22.14],[-134.27,17.82],[-128.66,15.06],[-111.6,4.65],[-104.93,-0.46],[-98.96,-4.08],[-86.52,-11.81],[-75.42,-19.6],[-67.06,-23.85],[-67.01,-47.74],[-72.65,-54.63],[-73.32,-57.24],[-78.67,-61.47],[-97.67,-71.42],[-118.62,-76.65],[-146.22,-91.01],[-160.08,-132.29],[-168.96,-146.95],[-170.18,-149.15],[-183.58,-162.89],[-225.38,-168.87],[-262.72,-174.34],[-275.85,-179.22]],"o":[[-300.3,-185.85],[-302.17,-186.16],[-306.42,-182.61],[-297.96,-172.09],[-288.21,-165.58],[-276.97,-157.76],[-269.37,-150.31],[-266.13,-147.53],[-263.4,-144.13],[-262,-140.33],[-259.03,-134.39],[-253.31,-121.8],[-249.41,-112.63],[-247.96,-109.25],[-246.73,-106.38],[-245.63,-104.94],[-244.43,-102.94],[-243.18,-99.28],[-241.72,-96.58],[-239.93,-95.7],[-238.41,-94.26],[-237.64,-92.01],[-236.81,-90.84],[-235.64,-91.02],[-234.83,-90.92],[-234.36,-89.58],[-233.22,-88.5],[-224.72,-84.39],[-209.5,-81.1],[-200.58,-77.92],[-191.92,-75.7],[-185.73,-71.88],[-181.35,-66.91],[-168.36,-40.04],[-170.72,13.22],[-159.65,22.57],[-146.32,26.89],[-141.21,22.84],[-135.5,20.02],[-130.7,15.51],[-118.93,8.84],[-105.28,0.53],[-100.76,-2.88],[-92.02,-8.58],[-79.67,-16.07],[-69.57,-22.98],[-64.01,-32.87],[-71.25,-54.39],[-73.68,-55.73],[-75.53,-59.71],[-88.57,-67.98],[-111.78,-75.79],[-135.93,-83.02],[-160.39,-114.7],[-167.95,-145.92],[-169.8,-147.84],[-175.42,-154.61],[-203.37,-172.35],[-255.13,-171.67],[-272.52,-178.14],[-284.57,-182.95]],"v":[[-300,-186],[-301.55,-186.06],[-303,-186],[-301.13,-175.36],[-293,-169],[-280.62,-160.41],[-270,-151],[-267.23,-148.52],[-264,-145],[-262.47,-141.6],[-261,-138],[-255.18,-125.99],[-250,-114],[-248.44,-110.36],[-247,-107],[-246,-105.41],[-245,-104],[-243.61,-100.5],[-242,-97],[-240.53,-95.99],[-239,-95],[-237.89,-92.73],[-237,-91],[-236.03,-90.96],[-235,-91],[-234.52,-90.04],[-234,-89],[-230,-87],[-213,-82],[-204,-79],[-195,-77],[-186,-72],[-185,-70],[-177,-60],[-172,11],[-162,21],[-148,27],[-143,24],[-137,21],[-133,17],[-127,14],[-106,1],[-104,-1],[-96,-6],[-83,-14],[-73,-21],[-66,-27],[-71,-54],[-73,-55],[-74,-58],[-81,-63],[-106,-74],[-125,-79],[-151,-99],[-168,-146],[-169,-147],[-171,-150],[-188,-165],[-248,-171],[-267,-176],[-280,-181]],"c":true}],"h":1},{"t":204,"s":[{"i":[[-298.13,-185.96],[-301.29,-185.43],[-303.47,-185.11],[-303.47,-177.65],[-294.93,-170.65],[-290.6,-167.7],[-287.54,-165.96],[-285.36,-164.43],[-284.32,-163.22],[-276.83,-157.78],[-268.4,-149.41],[-264.68,-144.13],[-262.57,-140.97],[-256.12,-127.74],[-247.94,-107.06],[-244,-100.22],[-242.44,-97.55],[-236.11,-90.99],[-225.56,-86.29],[-214.79,-83.24],[-206.25,-80.73],[-203.03,-79.92],[-201.46,-80.14],[-200.44,-79.49],[-199.25,-78.1],[-195.1,-76.78],[-189.47,-75.01],[-183.85,-70.22],[-178.79,-62.75],[-174.77,-44.55],[-177.27,-15.45],[-175.81,2.05],[-170.53,12.47],[-160.07,21.62],[-145.35,25.33],[-138.01,21.65],[-134.26,17.82],[-130.74,16.4],[-128.11,14.71],[-117.67,8.28],[-106.54,0.47],[-101.99,-1.36],[-98.41,-5.07],[-94.78,-6.51],[-82.45,-14.7],[-68.13,-23.47],[-68.92,-49.42],[-89.43,-68.52],[-114.04,-77.01],[-134.9,-83.03],[-141.37,-88.66],[-156.56,-111.57],[-167.88,-145.17],[-175.33,-153.16],[-177.08,-157.12],[-180.68,-159.05],[-183.92,-162.34],[-219.74,-169.23],[-261.9,-173.55],[-283.59,-183.34],[-296.41,-186.26]],"o":[[-300.05,-185.38],[-303,-185.3],[-305.51,-180.82],[-298.18,-172.56],[-291.83,-168.47],[-288.45,-166.44],[-285.7,-164.81],[-284.67,-163.63],[-280.13,-160.32],[-270.97,-152.32],[-265.4,-145.14],[-263.27,-142.04],[-258.9,-134.71],[-250.64,-113.91],[-244.53,-101.2],[-242.96,-98.4],[-239.08,-93.35],[-229.35,-87.46],[-217.91,-84.13],[-208.95,-81.55],[-203.55,-79.85],[-201.98,-80.06],[-200.81,-79.94],[-199.66,-78.57],[-197.12,-77.27],[-191.28,-75.65],[-185.96,-72.6],[-180.27,-65.3],[-174.88,-54.07],[-175.97,-25.23],[-176.79,-2.43],[-172.68,9.51],[-163.94,19.05],[-145.98,28.23],[-139.07,21.42],[-135.65,20.13],[-132.13,16.44],[-128.8,15.35],[-121.98,10.79],[-110.62,3.9],[-103.07,-1.54],[-99.86,-2.74],[-96.08,-6.6],[-87.35,-11.13],[-71.33,-22.11],[-64.83,-33.8],[-77.85,-64.78],[-108.49,-74.81],[-126.19,-81.06],[-139.7,-87.63],[-154.63,-99.5],[-164.76,-136.33],[-173.63,-152.84],[-177.15,-155.44],[-178.92,-158.88],[-183.2,-160.86],[-200.95,-172.72],[-252.89,-171.65],[-277.16,-178.81],[-293.93,-186.02],[-297.56,-187.7]],"v":[[-298,-186],[-302.14,-185.37],[-304,-184],[-300.83,-175.1],[-294,-170],[-289.52,-167.07],[-286,-165],[-285.02,-164.03],[-284,-163],[-273.9,-155.05],[-266,-146],[-263.97,-143.08],[-262,-140],[-253.38,-120.83],[-245,-102],[-243.48,-99.31],[-242,-97],[-232.73,-89.23],[-221,-85],[-211.87,-82.4],[-204,-80],[-202.5,-79.99],[-201,-80],[-200.05,-79.03],[-199,-78],[-193.19,-76.21],[-188,-74],[-182.06,-67.76],[-178,-61],[-175.37,-34.89],[-177,-8],[-174.24,5.78],[-168,15],[-155,24],[-140,22],[-137,21],[-133,17],[-130,16],[-127,14],[-114,6],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-76,-19],[-67,-27],[-71,-53],[-103,-73],[-120,-79],[-138,-86],[-143,-90],[-162,-128],[-173,-152],[-176,-154],[-178,-158],[-182,-160],[-185,-163],[-244,-171],[-269,-176],[-290,-185],[-297,-187]],"c":true}],"h":1},{"t":205,"s":[{"i":[[-294.91,-190.64],[-304.17,-180.07],[-298.43,-172.95],[-295.14,-170.83],[-292.76,-169.47],[-290.45,-167.91],[-288.55,-166.34],[-287.22,-165.33],[-286.37,-164.24],[-284.32,-163.26],[-281.61,-162.45],[-280.13,-160.95],[-278.7,-158.59],[-277.05,-157.57],[-275.35,-157.27],[-273.39,-155.42],[-271.51,-152.68],[-269.99,-150.91],[-268.46,-149.61],[-263.63,-142.36],[-258.7,-131.79],[-255.2,-124.25],[-252.52,-119.12],[-251.54,-116.31],[-251.3,-113.67],[-248.38,-107.87],[-243.99,-100.19],[-242.5,-97.69],[-241.12,-97.15],[-228.86,-87.5],[-192.19,-79.83],[-176.12,-39.83],[-178.06,-1.33],[-162.66,19.85],[-148.52,26.07],[-135.33,19.01],[-127.27,14.82],[-123.45,10.99],[-119.76,9.48],[-115.36,6.85],[-106.42,0.4],[-101.99,-1.36],[-98.39,-5.09],[-94.78,-6.51],[-86.48,-12.46],[-81.96,-14.35],[-78.37,-18.08],[-70.49,-21.49],[-68.62,-25.26],[-67.69,-46.87],[-82.98,-65.62],[-136.08,-78.81],[-152.8,-100.76],[-162.22,-133.78],[-172.66,-149.16],[-174.4,-153.21],[-182.38,-160.82],[-187.53,-164.75],[-218.62,-169.96],[-260.41,-173.9],[-270.58,-176.46]],"o":[[-304.7,-182.85],[-301.03,-175.12],[-296.01,-171.34],[-293.52,-169.89],[-291.17,-168.49],[-289.14,-166.83],[-287.54,-165.71],[-286.64,-164.59],[-285.26,-163.53],[-282.5,-162.71],[-280.53,-161.65],[-279.22,-159.42],[-277.63,-157.69],[-275.92,-157.36],[-274.13,-156.33],[-272.08,-153.59],[-270.51,-151.35],[-268.97,-150.04],[-265.53,-145.71],[-260.21,-135.4],[-256.19,-126.19],[-253.36,-120.72],[-251.64,-117.22],[-251.37,-114.53],[-249.89,-110.53],[-245.43,-102.7],[-242.94,-97.86],[-241.59,-97.33],[-235.27,-90.12],[-204.47,-80.61],[-172.43,-56.53],[-177.43,-11.71],[-172.19,12.73],[-153.32,24.27],[-143.59,25.84],[-130.03,15.81],[-124.36,12.94],[-121.12,9.4],[-117.2,7.88],[-110.57,3.87],[-103.07,-1.54],[-99.55,-2.93],[-96.08,-6.6],[-90.91,-8.92],[-83.09,-14.56],[-79.62,-15.94],[-74.37,-20.77],[-67.92,-24.1],[-65.57,-33.83],[-75.26,-61.15],[-110.83,-79.03],[-151.39,-98.81],[-160.63,-115.36],[-170.64,-148.09],[-174.65,-151.9],[-177.29,-157],[-185.92,-162.42],[-201.16,-172.09],[-248.6,-171.57],[-268.31,-176.42],[-277.58,-179.11]],"v":[[-302,-185],[-302.6,-177.6],[-297,-172],[-294.33,-170.36],[-292,-169],[-289.8,-167.37],[-288,-166],[-286.93,-164.96],[-286,-164],[-283.41,-162.99],[-281,-162],[-279.67,-160.18],[-278,-158],[-276.48,-157.47],[-275,-157],[-272.73,-154.51],[-271,-152],[-269.48,-150.47],[-268,-149],[-261.92,-138.88],[-257,-128],[-254.28,-122.48],[-252,-118],[-251.45,-115.42],[-251,-113],[-246.91,-105.29],[-243,-98],[-242.05,-97.51],[-241,-97],[-220,-85],[-183,-69],[-177,-21],[-175,6],[-156,23],[-147,26],[-132,17],[-126,14],[-122,10],[-119,9],[-114,6],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-84,-14],[-81,-15],[-77,-19],[-69,-23],[-68,-27],[-72,-55],[-90,-69],[-150,-97],[-154,-103],[-170,-147],[-174,-151],[-175,-154],[-185,-162],[-188,-165],[-238,-171],[-267,-176],[-272,-177]],"c":true}],"h":1},{"t":206,"s":[{"i":[[-296.57,-189.3],[-304.13,-182.25],[-302.88,-178.19],[-301.71,-176.43],[-301.21,-175.25],[-300.11,-174.54],[-298.36,-174.34],[-293.79,-170.17],[-289.22,-166.75],[-287.22,-165.33],[-286.37,-164.24],[-284.28,-163.24],[-281.69,-162.51],[-280.09,-160.92],[-278.69,-158.59],[-276.45,-157.06],[-273.78,-155.82],[-272.39,-153.91],[-271.51,-151.59],[-269.86,-149.85],[-268.42,-148.57],[-260.66,-135.95],[-251.73,-115.63],[-246.2,-104.39],[-241.9,-97.98],[-234.47,-91.05],[-224.9,-87.32],[-185.66,-77.54],[-183.53,-12.91],[-168.98,14.34],[-147.75,26.32],[-143.26,24.16],[-140.96,23.65],[-137.48,19.95],[-133.79,18.49],[-129.36,15.85],[-126.66,13.42],[-111.24,4.42],[-104.93,-0.46],[-101.99,-1.36],[-98.65,-4.91],[-94.78,-6.51],[-89.52,-10.4],[-69.68,-21.05],[-68.72,-48.11],[-79.55,-64.03],[-105.4,-75.5],[-143.28,-88.11],[-153.25,-101.41],[-158.94,-115.79],[-163.77,-129.5],[-167.36,-140.8],[-171.2,-145.71],[-173.22,-150.89],[-176.14,-153.94],[-181.14,-159.29],[-190.59,-165.66],[-199.02,-169.63],[-248.33,-170.16],[-274.86,-179.01],[-280.61,-180.45]],"o":[[-303.69,-183.66],[-303.73,-179.52],[-301.85,-176.8],[-301.39,-175.65],[-300.68,-174.62],[-298.95,-174.4],[-295.68,-171.8],[-290.56,-167.65],[-287.54,-165.71],[-286.64,-164.59],[-285.18,-163.48],[-282.53,-162.75],[-280.49,-161.62],[-279.18,-159.41],[-277.31,-157.4],[-274.69,-156.27],[-272.63,-154.62],[-271.83,-152.39],[-270.4,-150.31],[-268.87,-148.98],[-264.04,-142.64],[-254.5,-122.45],[-247.5,-106.91],[-243.4,-99.93],[-237.02,-92.89],[-228.41,-88.27],[-201.91,-81.12],[-170.07,-43.51],[-173.91,8.41],[-164.55,18.06],[-144.91,25.99],[-142.09,23.44],[-138.6,22.05],[-135.07,18.4],[-131.2,16.88],[-127.4,14.63],[-118.06,7.9],[-105.28,0.53],[-103.07,-1.54],[-99.46,-2.99],[-96.08,-6.6],[-91.37,-8.63],[-81.76,-15.33],[-65.69,-32.78],[-73.65,-58.7],[-92.7,-72.81],[-129.61,-82.81],[-152.58,-100.41],[-157.65,-110.42],[-162.18,-125.57],[-166.39,-136.94],[-169.48,-144.94],[-172.84,-148.36],[-174.64,-152.91],[-180.14,-158.88],[-188.43,-164.41],[-196.54,-168],[-221.04,-173.7],[-269.61,-175.99],[-278.31,-180.61],[-285.96,-182.58]],"v":[[-302,-185],[-303.93,-180.89],[-302,-177],[-301.55,-176.04],[-301,-175],[-299.53,-174.47],[-298,-174],[-292.17,-168.91],[-288,-166],[-286.93,-164.96],[-286,-164],[-283.4,-162.99],[-281,-162],[-279.64,-160.16],[-278,-158],[-275.57,-156.67],[-273,-155],[-272.11,-153.15],[-271,-151],[-269.36,-149.41],[-268,-148],[-257.58,-129.2],[-249,-110],[-244.8,-102.16],[-240,-96],[-231.44,-89.66],[-220,-86],[-179,-63],[-175,6],[-167,16],[-145,26],[-143,24],[-140,23],[-136,19],[-133,18],[-128,15],[-126,13],[-106,1],[-104,-1],[-101,-2],[-97,-6],[-94,-7],[-87,-12],[-68,-26],[-71,-53],[-84,-67],[-117,-79],[-150,-97],[-155,-105],[-161,-122],[-165,-133],[-169,-144],[-172,-147],[-174,-152],[-177,-155],[-185,-162],[-194,-167],[-201,-170],[-266,-175],[-277,-180],[-282,-181]],"c":true}],"h":1},{"t":207,"s":[{"i":[[-295.82,-189.86],[-303.88,-182.88],[-303.8,-179.21],[-300.02,-174.81],[-294.25,-170.93],[-283.09,-163.02],[-272.08,-153.64],[-267.24,-146.13],[-264.95,-141.74],[-262.7,-138.01],[-260.55,-135.11],[-253.39,-117.94],[-241.81,-95.62],[-235.68,-92.48],[-235.21,-91.12],[-224.64,-86.95],[-207.68,-83.63],[-192.84,-77.81],[-181.21,-67.3],[-176.17,-41.67],[-179.85,-7.35],[-176.46,2.71],[-174.54,5.02],[-170.56,11.68],[-163.98,16.91],[-155.9,21.31],[-147.07,25.17],[-141.45,23.73],[-137.2,19.77],[-134.98,18.57],[-133.4,18.25],[-131.19,16.9],[-128.68,15.43],[-127.36,14.42],[-126.33,13.21],[-118.52,8.42],[-108.59,2.69],[-105.64,0.44],[-105.23,-0.83],[-104.04,-1.43],[-102.35,-1.78],[-99.34,-3.81],[-95.85,-6.47],[-92.96,-7.35],[-89.61,-10.96],[-85.77,-12.55],[-81.49,-15.07],[-70.17,-21.71],[-70.73,-53.63],[-74.18,-58.15],[-75.38,-60.24],[-84.64,-67.3],[-112.22,-77.95],[-146.68,-90.97],[-155.53,-103.86],[-161.45,-121.5],[-167.86,-137.67],[-174.14,-151.51],[-186.75,-164.25],[-220.04,-171.07],[-265.81,-175.02]],"o":[[-303.23,-184.03],[-304.17,-180.47],[-301.9,-176.35],[-296.2,-172.1],[-287.55,-165.95],[-275.35,-156.87],[-268.01,-147.51],[-265.71,-143.25],[-263.43,-138.95],[-261.26,-136.09],[-256.49,-126.88],[-246.05,-102.31],[-235.82,-92.92],[-235.37,-91.58],[-230.3,-88.38],[-213.33,-84.57],[-197.73,-80.16],[-184.57,-71.38],[-175.25,-53],[-178.47,-18.85],[-176.94,2.2],[-175.26,4.12],[-172.07,9.48],[-166.52,15.4],[-158.62,19.73],[-150.13,24.04],[-143.1,24.84],[-138.5,21.19],[-135.53,18.7],[-133.91,18.35],[-132.1,17.44],[-129.48,15.9],[-127.7,14.81],[-126.68,13.62],[-122.23,10.58],[-111.7,4.48],[-105.78,0.86],[-105.37,-0.4],[-104.61,-1.29],[-102.9,-1.68],[-100.67,-2.83],[-96.93,-5.64],[-94.09,-7.56],[-90.72,-8.87],[-87.09,-12.58],[-82.98,-14.17],[-76.08,-18.44],[-66.35,-32.42],[-73.8,-56.84],[-75.62,-59.65],[-79.07,-64.73],[-100.79,-75.44],[-135.27,-85.87],[-153.76,-101.65],[-160.23,-113.87],[-165.48,-133.34],[-172.3,-146.66],[-180.38,-159.13],[-203.58,-173.31],[-252.64,-172.59],[-280.41,-180.33]],"v":[[-302,-185],[-304.02,-181.68],[-303,-178],[-298.11,-173.46],[-293,-170],[-279.22,-159.95],[-269,-149],[-266.47,-144.69],[-264,-140],[-261.98,-137.05],[-260,-134],[-249.72,-110.13],[-236,-93],[-235.52,-92.03],[-235,-91],[-218.99,-85.76],[-203,-82],[-188.7,-74.59],[-179,-62],[-177.32,-30.26],[-177,2],[-175.86,3.42],[-174,6],[-168.54,13.54],[-160,19],[-153.02,22.68],[-145,25],[-139.97,22.46],[-136,19],[-134.45,18.46],[-133,18],[-130.34,16.4],[-128,15],[-127.02,14.02],[-126,13],[-115.11,6.45],[-106,1],[-105.51,0.02],[-105,-1],[-103.47,-1.55],[-102,-2],[-98.14,-4.73],[-95,-7],[-92,-8],[-88,-12],[-85,-13],[-80,-16],[-69,-25],[-73,-56],[-75,-59],[-76,-61],[-90,-70],[-124,-82],[-152,-99],[-157,-107],[-164,-129],[-170,-142],[-177,-155],[-190,-166],[-240,-172],[-274,-178]],"c":true}],"h":1},{"t":208,"s":[{"i":[[-301.34,-185.51],[-303.73,-179.08],[-294.29,-170.89],[-292.23,-169.33],[-291.38,-168.29],[-290.05,-167.59],[-288.47,-167.34],[-286.76,-165.84],[-284.78,-163.58],[-282.3,-161.97],[-279.73,-160.65],[-275.54,-156.59],[-271.56,-151.25],[-270.49,-149.68],[-269.12,-149.19],[-268.32,-147.73],[-267.31,-145.49],[-265.54,-142.6],[-263.58,-139.08],[-256.06,-121.77],[-243.24,-96.81],[-236.68,-93.48],[-236.21,-92.12],[-229.52,-89.22],[-217.07,-86.04],[-205.28,-82.94],[-195.39,-79.39],[-187.6,-74.09],[-180.91,-66.2],[-178.25,-36.14],[-177.83,2.08],[-171.09,10.96],[-164.87,15.32],[-147.25,25.31],[-138.88,21.45],[-121.43,10.4],[-109.18,3.08],[-105.46,-0.65],[-102.7,-1.56],[-96.69,-5.95],[-92.96,-7.35],[-89.55,-11],[-84.46,-13.12],[-76.34,-19.15],[-71.78,-21.22],[-70.46,-23.85],[-70.16,-50.28],[-74.64,-57.42],[-75.35,-60.15],[-123.95,-79.17],[-150.28,-97.07],[-162.66,-120.36],[-168.14,-139.21],[-175.6,-150.9],[-178.98,-156.66],[-185.92,-162.59],[-194.1,-167.12],[-198.47,-169.83],[-205.55,-171.48],[-253.47,-171.65],[-288.28,-186.15]],"o":[[-305.33,-182.39],[-298.21,-173.33],[-292.54,-169.68],[-291.65,-168.64],[-290.57,-167.67],[-289.01,-167.42],[-287.37,-166.55],[-285.46,-164.35],[-283.18,-162.39],[-280.57,-161.09],[-277.26,-158.47],[-272.69,-152.98],[-270.92,-149.83],[-269.58,-149.36],[-268.67,-148.48],[-267.64,-146.23],[-266.25,-143.81],[-264.21,-140.24],[-259.44,-131.37],[-247.96,-104.49],[-236.82,-93.92],[-236.37,-92.58],[-233.23,-90.45],[-221.44,-87.01],[-209.09,-84],[-198.44,-80.64],[-190.39,-76.49],[-182.86,-68.95],[-174.85,-51.57],[-179.72,-8.38],[-172.03,9.19],[-168,13.9],[-158.4,19.11],[-142.72,24.88],[-128.19,14.71],[-112.38,4.74],[-105.56,0.71],[-104.23,-1.58],[-99.34,-3.66],[-94.09,-7.56],[-90.72,-8.87],[-86.68,-12.85],[-79.63,-16.02],[-73.09,-21.72],[-70.23,-22.77],[-66.86,-32.8],[-73.26,-56.52],[-75.53,-58.84],[-88.65,-77.72],[-146.86,-92.91],[-158.96,-109.59],[-167.48,-134.27],[-171.56,-146.17],[-178.27,-154.91],[-182.14,-160.8],[-192.45,-166.45],[-197.38,-168.11],[-201.63,-170.84],[-227.59,-174.77],[-280.24,-179.15],[-301.28,-185.98]],"v":[[-302,-185],[-300.97,-176.21],[-293,-170],[-291.94,-168.98],[-291,-168],[-289.53,-167.5],[-288,-167],[-286.11,-165.1],[-284,-163],[-281.44,-161.53],[-279,-160],[-274.12,-154.79],[-271,-150],[-270.04,-149.52],[-269,-149],[-267.98,-146.98],[-267,-145],[-264.87,-141.42],[-263,-138],[-252.01,-113.13],[-237,-94],[-236.52,-93.03],[-236,-92],[-225.48,-88.12],[-213,-85],[-201.86,-81.79],[-193,-78],[-185.23,-71.52],[-180,-64],[-179,-22],[-173,8],[-170,12],[-162,17],[-144,25],[-135,19],[-116,7],[-106,1],[-105,-1],[-102,-2],[-95,-7],[-92,-8],[-88,-12],[-83,-14],[-74,-21],[-71,-22],[-70,-25],[-73,-56],[-75,-58],[-76,-61],[-142,-90],[-153,-101],[-166,-130],[-170,-143],[-177,-153],[-180,-158],[-190,-165],[-197,-168],[-199,-170],[-209,-172],[-269,-176],[-300,-186]],"c":true}],"h":1},{"t":209,"s":[{"i":[[-301.39,-185.48],[-303.02,-184.4],[-304.29,-182.9],[-299.85,-175.03],[-290.31,-168.15],[-287.08,-165.57],[-285.41,-165.34],[-283.72,-163.77],[-281.67,-161.57],[-277.36,-157.82],[-273.68,-153.51],[-272.49,-151.68],[-271.12,-151.18],[-265.63,-142.34],[-258.94,-128.39],[-252.11,-112.31],[-242.57,-97.06],[-237.68,-94.48],[-237.2,-93.12],[-228.81,-89.39],[-214.61,-86.27],[-196.43,-80.72],[-182.23,-69.41],[-177.71,-41.21],[-180.43,-5.13],[-174.6,6.9],[-168.99,13.24],[-166.56,14.72],[-163.77,15.56],[-160.54,17.28],[-155.91,19.22],[-150.4,21.76],[-145.29,24.08],[-139.76,22.44],[-133.84,17.63],[-132.04,16.57],[-130.35,16.22],[-115.11,6.46],[-96.52,-6.11],[-87.36,-11.77],[-84.68,-12.58],[-82.67,-14.18],[-80.8,-16.47],[-78.99,-17.43],[-77.39,-17.76],[-74.28,-19.66],[-71.7,-22.37],[-69.91,-28.38],[-69.75,-37.9],[-71.44,-50.69],[-76.48,-60.28],[-84.13,-67.88],[-92.37,-72.42],[-116.13,-80.31],[-151.27,-96.22],[-164.69,-127.73],[-173.92,-147.61],[-185.51,-162.28],[-199.84,-169.84],[-243.37,-171.88],[-287.77,-185.38]],"o":[[-302.38,-184.7],[-303.98,-183.5],[-302.69,-177.96],[-293.66,-170.13],[-287.62,-165.65],[-285.97,-165.42],[-284.39,-164.49],[-282.36,-162.31],[-279.02,-159.31],[-274.69,-154.91],[-272.93,-151.84],[-271.59,-151.35],[-268.15,-146.9],[-261.02,-133.08],[-254.58,-118.53],[-246.11,-101.57],[-237.83,-94.92],[-237.36,-93.58],[-233.26,-90.75],[-219.49,-87.15],[-202.81,-83.02],[-186.14,-73.92],[-176.75,-53.64],[-179.55,-16.96],[-176.36,4.53],[-170.92,11.26],[-167.42,14.44],[-164.73,15.28],[-161.84,16.67],[-157.58,18.56],[-152.25,20.71],[-146.92,23.44],[-142.09,23.88],[-135.63,19.32],[-132.61,16.71],[-130.9,16.32],[-121.6,10.77],[-102.57,-1.98],[-88.27,-11.47],[-85.57,-12.32],[-83.27,-13.44],[-81.43,-15.69],[-79.55,-17.3],[-77.91,-17.66],[-75.43,-18.98],[-72.41,-21.36],[-70.28,-25.67],[-69.64,-34.49],[-70.45,-46.55],[-74.46,-57.55],[-81.7,-65.92],[-89.47,-71.13],[-106.12,-78.41],[-140.48,-88.57],[-162.58,-115.53],[-171.15,-143.13],[-181.9,-158.98],[-196.02,-168.31],[-221.27,-174.65],[-277.64,-177.62],[-301.25,-186.06]],"v":[[-302,-185],[-303.5,-183.95],[-304,-182],[-296.75,-172.58],[-288,-166],[-286.53,-165.49],[-285,-165],[-283.04,-163.04],[-281,-161],[-276.02,-156.36],[-273,-152],[-272.04,-151.51],[-271,-151],[-263.32,-137.71],[-257,-124],[-249.11,-106.94],[-238,-95],[-237.52,-94.03],[-237,-93],[-224.15,-88.27],[-210,-85],[-191.28,-77.32],[-180,-63],[-178.63,-29.08],[-177,3],[-172.76,9.08],[-168,14],[-165.64,15],[-163,16],[-159.06,17.92],[-154,20],[-148.66,22.6],[-144,24],[-137.7,20.88],[-133,17],[-131.47,16.45],[-130,16],[-108.84,2.24],[-89,-11],[-86.46,-12.04],[-84,-13],[-82.05,-14.93],[-80,-17],[-78.45,-17.54],[-77,-18],[-73.34,-20.51],[-71,-24],[-69.77,-31.43],[-70,-41],[-72.95,-54.12],[-79,-63],[-86.8,-69.5],[-96,-74],[-127,-84],[-157,-106],[-169,-138],[-177,-152],[-192,-166],[-205,-171],[-262,-175],[-300,-186]],"c":true}],"h":1},{"t":210,"s":[{"i":[[-301.39,-185.48],[-303.03,-184.39],[-304.26,-182.92],[-301.02,-175.78],[-293.77,-171.09],[-284.19,-163.81],[-275.78,-156.33],[-272.68,-152.17],[-271.38,-149.83],[-270.49,-148.68],[-269.12,-148.18],[-268.9,-147.4],[-269.11,-146.25],[-268.48,-145.68],[-267.12,-145.2],[-265.9,-142.72],[-264.53,-139.03],[-261.56,-133.32],[-258.02,-126.28],[-254.71,-118.06],[-251.22,-109.27],[-246.58,-103.71],[-241.76,-97.17],[-235.52,-93.25],[-227.72,-89.76],[-220.19,-87.95],[-212.6,-86.72],[-191.61,-79.67],[-185.82,-14.91],[-169.41,12.03],[-157,18.08],[-143.14,24.14],[-137.07,19.98],[-130.62,16.99],[-126.25,12.81],[-121.42,10.88],[-118.9,8.52],[-115.02,5.76],[-111.71,4.45],[-106.42,0.07],[-102.7,-1.56],[-94.13,-7.67],[-72.31,-19.67],[-70.27,-47.79],[-78.01,-62.7],[-81.23,-65.31],[-88.91,-72.59],[-95.2,-74.23],[-102.22,-78.07],[-117.12,-82.11],[-138.48,-89.38],[-153.18,-100.03],[-163,-118.44],[-169.92,-140.18],[-174.71,-146.61],[-175.56,-149.3],[-183.87,-160.92],[-190.48,-165.05],[-201,-170.91],[-235.97,-172.61],[-286.64,-185.32]],"o":[[-302.4,-184.68],[-303.96,-183.51],[-302.88,-177.99],[-296.46,-172.33],[-287.55,-166.39],[-278.3,-158.77],[-273.24,-153],[-271.74,-150.59],[-270.93,-148.84],[-269.59,-148.35],[-268.85,-147.77],[-269.04,-146.64],[-268.92,-145.83],[-267.58,-145.37],[-266.39,-143.96],[-264.98,-140.26],[-262.8,-135.68],[-259.17,-128.62],[-255.85,-121.42],[-252.39,-111.98],[-248.2,-106.12],[-243.36,-99.23],[-237.91,-94.61],[-230.42,-90.82],[-222.65,-88.34],[-215.17,-87.14],[-200.52,-83.36],[-170.45,-54.49],[-174.69,7.69],[-159.38,17.4],[-151.38,20.67],[-140.96,23.87],[-132.37,16.95],[-127.25,14.93],[-123.54,11.06],[-119.32,9.58],[-116,6.84],[-113.22,4.41],[-108.22,2.23],[-104.22,-1.58],[-96.87,-5.22],[-83.31,-14.69],[-68.97,-28.15],[-74.76,-59.64],[-80.69,-65.79],[-85.19,-68.87],[-93.49,-74.68],[-99.69,-76.15],[-110.73,-80.92],[-130.14,-86.3],[-147.84,-94.8],[-160.71,-110.62],[-168.21,-133.31],[-173.19,-146.36],[-175.58,-147.78],[-179.03,-154.82],[-188.98,-164.31],[-195.41,-168.12],[-221.11,-175.28],[-274.22,-175.56],[-301.25,-186.06]],"v":[[-302,-185],[-303.49,-183.95],[-304,-182],[-298.74,-174.06],[-291,-169],[-281.24,-161.29],[-274,-154],[-272.21,-151.38],[-271,-149],[-270.04,-148.52],[-269,-148],[-268.97,-147.02],[-269,-146],[-268.03,-145.52],[-267,-145],[-265.44,-141.49],[-264,-138],[-260.37,-130.97],[-257,-124],[-253.55,-115.02],[-250,-108],[-244.97,-101.47],[-240,-96],[-232.97,-92.03],[-225,-89],[-217.68,-87.55],[-210,-86],[-186,-73],[-177,3],[-162,16],[-155,19],[-142,24],[-134,18],[-129,16],[-125,12],[-120,10],[-118,8],[-114,5],[-111,4],[-105,-1],[-102,-2],[-89,-11],[-71,-23],[-73,-55],[-80,-65],[-82,-66],[-92,-74],[-97,-75],[-105,-79],[-123,-84],[-143,-92],[-156,-104],[-166,-127],[-173,-146],[-175,-147],[-176,-150],[-187,-163],[-192,-166],[-206,-172],[-254,-174],[-300,-186]],"c":true}],"h":1},{"t":211,"s":[{"i":[[-301.43,-185.44],[-304.37,-181.74],[-300.91,-176.84],[-292.21,-169.34],[-281.66,-161.65],[-269.19,-147.07],[-259.83,-128.06],[-254.6,-116.52],[-250.12,-107.17],[-247.48,-104.23],[-245.7,-101.78],[-240.24,-96.21],[-232.59,-92.16],[-225.26,-89.86],[-219.77,-88.43],[-214,-87.31],[-207.74,-86.52],[-202.05,-84.53],[-195.43,-81.41],[-194.04,-80.3],[-192.42,-79.41],[-189.41,-76.64],[-185.81,-73.17],[-178.64,-48.85],[-182.11,-8.43],[-172.29,8.94],[-157.89,17.1],[-149.39,20.68],[-143.45,23.13],[-137.83,21.27],[-130.29,15.83],[-127.53,13.95],[-125.54,12.35],[-123.31,11.22],[-120.62,10.4],[-119.65,9.45],[-119.23,8.17],[-118.04,7.57],[-116.35,7.22],[-110.13,3],[-104.7,-0.96],[-99.51,-3.02],[-97.46,-5.66],[-94.73,-6.5],[-89.2,-11.1],[-85.7,-12.56],[-72.76,-20.36],[-72.3,-27.97],[-73.54,-58.54],[-127.01,-81.07],[-154.25,-101.05],[-165.24,-125.56],[-181.78,-160.3],[-190.63,-165.75],[-192.49,-165.77],[-193.57,-167.77],[-196.59,-168.45],[-200.1,-170.7],[-231.3,-172.99],[-267.12,-176.65],[-292.18,-185.13]],"o":[[-304.17,-183.32],[-302.75,-178.5],[-295.63,-171.77],[-285.22,-164.28],[-273.03,-153.04],[-262.59,-134.58],[-256.04,-119.94],[-251.64,-110.14],[-248.13,-105.09],[-246.26,-102.58],[-242.44,-98.13],[-235.31,-93.22],[-227.13,-90.4],[-221.58,-88.88],[-216.13,-87.55],[-209.8,-86.8],[-204.59,-85.57],[-197.48,-82.45],[-194.58,-80.6],[-192.97,-79.71],[-190.75,-77.81],[-186.94,-74.33],[-178.34,-62.39],[-180.53,-21.87],[-176.09,5.39],[-163.19,14.79],[-151.41,19.62],[-145.41,22.44],[-140.44,22.86],[-132.76,17.75],[-128.26,14.53],[-126.17,12.86],[-124.25,11.52],[-121.5,10.66],[-119.78,9.86],[-119.37,8.6],[-118.61,7.71],[-116.9,7.32],[-112.73,4.96],[-105.57,0.08],[-101.72,-2.78],[-97.56,-4.28],[-96.19,-6.61],[-91.82,-8.47],[-87.22,-12.58],[-81.67,-15.09],[-71.28,-23.56],[-70.82,-48.05],[-97.08,-82.08],[-150.01,-96.73],[-163.09,-113.75],[-174.38,-147.53],[-190.32,-164.15],[-191.46,-166.31],[-193.36,-166.16],[-195.36,-168.73],[-199.13,-169.45],[-214.97,-175.67],[-258.42,-174.54],[-284.38,-181.8],[-301.22,-186.13]],"v":[[-302,-185],[-303.56,-180.12],[-299,-175],[-288.72,-166.81],[-278,-158],[-265.89,-140.82],[-257,-122],[-253.12,-113.33],[-249,-106],[-246.87,-103.41],[-245,-101],[-237.77,-94.72],[-229,-91],[-223.42,-89.37],[-218,-88],[-211.9,-87.05],[-206,-86],[-199.76,-83.49],[-195,-81],[-193.5,-80],[-192,-79],[-188.18,-75.48],[-185,-72],[-179.58,-35.36],[-178,1],[-167.74,11.86],[-153,19],[-147.4,21.56],[-142,23],[-135.3,19.51],[-129,15],[-126.85,13.41],[-125,12],[-122.41,10.94],[-120,10],[-119.51,9.02],[-119,8],[-117.47,7.45],[-116,7],[-107,1],[-103,-2],[-98,-4],[-97,-6],[-94,-7],[-88,-12],[-85,-13],[-72,-22],[-72,-32],[-81,-66],[-146,-94],[-157,-105],[-170,-137],[-190,-164],[-191,-166],[-193,-166],[-194,-168],[-198,-169],[-201,-171],[-249,-174],[-275,-179],[-300,-186]],"c":true}],"h":1},{"t":212,"s":[{"i":[[-301.43,-185.44],[-303.77,-183.33],[-303.65,-180.99],[-301.34,-177.7],[-298.61,-174.56],[-294.89,-171.66],[-290.24,-169],[-288.63,-167.42],[-288.23,-166.21],[-287.08,-165.57],[-285.41,-165.34],[-279.89,-160.18],[-272.75,-151.48],[-269.06,-145.67],[-266.82,-140.46],[-265.08,-137.97],[-263.25,-136.51],[-262.53,-134.6],[-262.18,-132.45],[-255.72,-117.34],[-243.14,-98.06],[-230.7,-91.81],[-219.5,-89.83],[-204.41,-85.92],[-191.32,-78.82],[-185.63,-72.29],[-182.64,-67.82],[-179.78,-43.14],[-182.1,-5.67],[-170.56,9.99],[-155.67,17.24],[-144.35,21.9],[-139.88,21.83],[-133.79,18.13],[-129.32,15.83],[-120.24,9.94],[-109.32,2.48],[-99.36,-4.09],[-89.43,-10.91],[-84.35,-13.73],[-81.76,-14.5],[-80.65,-15.56],[-80.23,-16.83],[-79.02,-17.43],[-77.37,-17.74],[-73.07,-22.12],[-71.92,-33.07],[-74.28,-55.09],[-78.48,-64.33],[-98.97,-78.06],[-125.02,-85.8],[-140.24,-92.02],[-153.38,-100.03],[-163.33,-117.02],[-170.73,-138.54],[-179.59,-152.88],[-184.35,-160.45],[-188.37,-162.52],[-193.83,-167.91],[-234.34,-172.59],[-288.13,-184.69]],"o":[[-303.19,-184.09],[-304,-181.78],[-302.29,-178.92],[-299.51,-175.52],[-296.51,-172.66],[-291.75,-169.83],[-288.77,-167.81],[-288.36,-166.62],[-287.62,-165.65],[-285.97,-165.42],[-282.52,-162.94],[-275.01,-154.45],[-269.9,-147.45],[-267.52,-142.18],[-265.7,-138.47],[-263.85,-136.99],[-262.69,-135.38],[-262.28,-133.14],[-259.14,-125.06],[-247.72,-103.84],[-234.45,-92.89],[-223.22,-90.28],[-209.75,-87.52],[-195.2,-81.57],[-186.81,-73.64],[-183.55,-69.39],[-178.48,-56.06],[-181.59,-17.95],[-174.72,6.87],[-161.03,15.17],[-146.41,20.73],[-141.08,22.45],[-135.38,18.97],[-130.76,16.56],[-124.33,12.7],[-112.73,4.83],[-102.89,-1.63],[-92.63,-8.72],[-85.22,-13.48],[-82.62,-14.24],[-80.78,-15.14],[-80.37,-16.4],[-79.59,-17.31],[-77.92,-17.65],[-74.36,-19.84],[-71.85,-28.74],[-72.14,-49.34],[-78.06,-61.92],[-85.28,-73],[-118.23,-83.88],[-135.76,-89.75],[-149.82,-97.06],[-160.96,-110.43],[-168.56,-130.69],[-175.61,-148.18],[-182.59,-157.39],[-186.62,-162.58],[-191.46,-164.88],[-211.52,-176.82],[-276.44,-176.7],[-301.22,-186.13]],"v":[[-302,-185],[-303.89,-182.55],[-303,-180],[-300.43,-176.61],[-298,-174],[-293.32,-170.74],[-289,-168],[-288.5,-167.02],[-288,-166],[-286.53,-165.49],[-285,-165],[-277.45,-157.32],[-271,-149],[-268.29,-143.93],[-266,-139],[-264.47,-137.48],[-263,-136],[-262.4,-133.87],[-262,-132],[-251.72,-110.59],[-238,-95],[-226.96,-91.04],[-216,-89],[-199.81,-83.75],[-188,-75],[-184.59,-70.84],[-182,-66],[-180.68,-30.55],[-177,3],[-165.79,12.58],[-151,19],[-142.71,22.18],[-137,20],[-132.27,17.35],[-128,15],[-116.49,7.39],[-107,1],[-95.99,-6.41],[-86,-13],[-83.49,-13.98],[-81,-15],[-80.51,-15.98],[-80,-17],[-78.47,-17.54],[-77,-18],[-72.46,-25.43],[-72,-39],[-77,-60],[-79,-65],[-112,-82],[-131,-88],[-144,-94],[-157,-105],[-166,-124],[-174,-145],[-181,-155],[-186,-162],[-189,-163],[-196,-169],[-259,-175],[-300,-186]],"c":true}],"h":1},{"t":213,"s":[{"i":[[-301.48,-185.4],[-304.26,-181.64],[-300.24,-176.04],[-295.03,-171.57],[-290.87,-168.69],[-285.34,-164.51],[-277.95,-157.78],[-269.18,-145.52],[-261.44,-130.33],[-255.34,-116.77],[-249.5,-105.92],[-244.27,-100.18],[-239.7,-96.38],[-224.61,-90.96],[-201.25,-86.15],[-194.46,-81.73],[-191.24,-78.24],[-187.69,-74.79],[-184.68,-71.39],[-179.78,-51.33],[-183.1,-21.04],[-180.78,-5.82],[-177.37,1.14],[-173.85,5.95],[-171.75,7.75],[-168.92,10.02],[-167.55,11.68],[-161.69,14.78],[-153.09,17.97],[-142.35,21.54],[-136.11,19.59],[-130.36,15.85],[-128.51,14.33],[-126.21,13.16],[-123.62,12.4],[-122.65,11.45],[-122.23,10.17],[-119.71,9.45],[-110.2,3.74],[-104.31,-1.19],[-99.69,-2.9],[-97.46,-5.65],[-94.74,-6.48],[-91.56,-9.01],[-76.05,-17.19],[-72.84,-32.94],[-77.49,-65.85],[-115.56,-83.03],[-151.81,-97.51],[-170.12,-136.92],[-179.31,-150.95],[-182.38,-157.08],[-189.85,-164.03],[-192.63,-166.75],[-194.49,-166.77],[-195.65,-168.75],[-199.29,-169.48],[-202.48,-171.83],[-206.96,-172.53],[-238.35,-173.93],[-288.1,-183.86]],"o":[[-304.14,-183.37],[-302.31,-177.97],[-296.59,-172.72],[-292.17,-169.55],[-287.62,-166.12],[-280.51,-160.34],[-271.96,-150.11],[-263.92,-135.64],[-257.09,-120.81],[-251.55,-109.33],[-245.92,-101.74],[-241.16,-97.5],[-232.73,-92.63],[-208.86,-87.72],[-195.34,-82.61],[-192.41,-79.54],[-188.84,-75.84],[-185.61,-72.57],[-179.73,-61.31],[-181.46,-31.2],[-181.59,-8.64],[-178.66,-0.93],[-174.48,5.07],[-172.49,7.28],[-169.4,9.43],[-167.99,11.14],[-164.39,13.54],[-156.03,16.99],[-144.79,20.75],[-138.01,20.96],[-131.1,16.44],[-129.06,14.79],[-127.15,13.46],[-124.44,12.63],[-122.78,11.86],[-122.37,10.6],[-121.21,9.41],[-114.23,5.96],[-104.87,0.26],[-101.48,-2.94],[-97.56,-4.29],[-96.17,-6.62],[-92.76,-7.87],[-84.13,-13.75],[-72.32,-25.93],[-73.4,-57.63],[-99.96,-81.14],[-141.77,-92.05],[-166.48,-117.64],[-177.65,-150.14],[-181.33,-154.03],[-186.26,-161.67],[-192.32,-165.15],[-193.46,-167.31],[-195.31,-167.14],[-197.82,-170.28],[-201.38,-170.11],[-204.65,-172.53],[-222.28,-176.07],[-272.11,-176.23],[-301.17,-186.21]],"v":[[-302,-185],[-303.29,-179.81],[-298,-174],[-293.6,-170.56],[-290,-168],[-282.93,-162.43],[-275,-154],[-266.55,-140.58],[-259,-125],[-253.44,-113.05],[-247,-103],[-242.72,-98.84],[-239,-96],[-216.74,-89.34],[-196,-83],[-193.44,-80.64],[-190,-77],[-186.65,-73.68],[-184,-70],[-180.62,-41.26],[-182,-12],[-179.72,-3.38],[-176,3],[-173.17,6.61],[-170,9],[-168.46,10.58],[-167,12],[-158.86,15.88],[-150,19],[-140.18,21.25],[-132,17],[-129.71,15.32],[-128,14],[-125.33,12.89],[-123,12],[-122.51,11.02],[-122,10],[-119,9],[-106,1],[-103,-2],[-98,-4],[-97,-6],[-94,-7],[-90,-10],[-74,-22],[-73,-40],[-88,-73],[-130,-88],[-158,-106],[-177,-149],[-180,-152],[-184,-159],[-192,-165],[-193,-167],[-195,-167],[-196,-169],[-201,-170],[-203,-172],[-209,-173],[-254,-175],[-300,-186]],"c":true}],"h":1},{"t":214,"s":[{"i":[[-296.27,-187.73],[-302.11,-184.75],[-303.89,-184.48],[-304.04,-181.11],[-300.74,-177.81],[-294.04,-171.08],[-290.59,-168.97],[-287.64,-166.41],[-287.26,-165.19],[-285.99,-164.58],[-284.4,-164.35],[-280.51,-160.49],[-276.3,-154.77],[-273.15,-150.58],[-270.74,-147.31],[-261.55,-127.94],[-247.22,-101.4],[-239.39,-96.91],[-238.26,-97.12],[-237.68,-96.47],[-237.23,-95.11],[-235.65,-94.64],[-232.78,-94.25],[-227.27,-92.58],[-219.64,-90.63],[-202.52,-87.13],[-196.41,-82.31],[-193.77,-81.58],[-185.74,-73.26],[-187.65,-15.52],[-169.48,9.77],[-155.65,16.68],[-139.46,22.05],[-138.29,20.5],[-132.26,17.8],[-129.39,14.91],[-123.89,12.58],[-121.21,9.79],[-116.44,7.91],[-114.45,5.34],[-111.71,4.45],[-94.24,-7.68],[-84.07,-14.3],[-79.12,-16.21],[-75.82,-19.23],[-72.59,-35.73],[-75.8,-56.65],[-77.23,-61.7],[-121.5,-83.41],[-144.51,-95.17],[-149.83,-97.13],[-161.02,-109.85],[-166.62,-123.46],[-171.56,-133.53],[-175.21,-144.71],[-179.4,-150.04],[-181.13,-154.87],[-186.06,-160.13],[-200.56,-170.89],[-254.06,-173.88],[-278.7,-179.33]],"o":[[-301.41,-184.76],[-303.34,-184.61],[-304.42,-182.2],[-302.2,-178.91],[-295.5,-172.35],[-291.58,-169.39],[-287.76,-166.82],[-287.39,-165.6],[-286.54,-164.66],[-284.92,-164.42],[-282.11,-162.35],[-277.6,-156.7],[-274.03,-151.67],[-271.51,-148.39],[-265.44,-137.98],[-252.44,-109.65],[-239.76,-96.85],[-238.64,-97.04],[-237.81,-96.92],[-237.38,-95.57],[-236.51,-94.77],[-233.78,-94.38],[-229.7,-93.27],[-222.24,-91.26],[-210.17,-88.38],[-196.61,-83.78],[-195.14,-81.35],[-188.82,-77.86],[-176.81,-51.43],[-173.98,6.46],[-160.41,14.29],[-149.84,18.78],[-137.39,21.82],[-134.32,17.9],[-129.84,16.27],[-126.48,13],[-121.76,11.2],[-118.65,8.12],[-114.57,6.73],[-113.21,4.41],[-103.24,-0.94],[-85.12,-13.12],[-81.2,-16.17],[-76.35,-18.17],[-73.58,-24.09],[-73.34,-50.86],[-77.71,-60.38],[-89.44,-82.23],[-143.53,-93.72],[-147.68,-96.93],[-157.18,-102.58],[-165.88,-119.89],[-169.29,-130.32],[-174.62,-140.9],[-177.5,-148.92],[-180.92,-152.48],[-183.22,-157.58],[-194,-167.79],[-226.77,-177.45],[-274.79,-178.64],[-286.35,-181.56]],"v":[[-301,-185],[-302.73,-184.68],[-304,-184],[-303.12,-180.01],[-299,-176],[-292.81,-170.24],[-288,-167],[-287.51,-166.01],[-287,-165],[-285.45,-164.5],[-284,-164],[-279.05,-158.59],[-275,-153],[-272.33,-149.48],[-270,-146],[-256.99,-118.79],[-240,-97],[-239.01,-96.98],[-238,-97],[-237.53,-96.02],[-237,-95],[-234.72,-94.51],[-232,-94],[-224.76,-91.92],[-217,-90],[-197,-84],[-196,-82],[-193,-81],[-184,-69],[-178,0],[-163,13],[-152,18],[-139,22],[-136,19],[-131,17],[-128,14],[-123,12],[-120,9],[-115,7],[-114,5],[-111,4],[-87,-12],[-83,-15],[-78,-17],[-75,-21],[-73,-44],[-77,-59],[-78,-63],[-142,-93],[-146,-96],[-151,-98],[-164,-116],[-168,-127],[-173,-137],[-177,-148],[-180,-151],[-182,-156],[-188,-162],[-209,-173],[-272,-178],[-281,-180]],"c":true}],"h":1},{"t":215,"s":[{"i":[[-300.54,-185.26],[-302.11,-184.76],[-303.9,-184.48],[-302.69,-179],[-295.89,-172.59],[-291.69,-169.62],[-286.87,-165.72],[-284.35,-163.87],[-280.81,-161.06],[-278.57,-158.07],[-278.26,-156.34],[-277.08,-155.3],[-275.32,-154.43],[-274.9,-153.41],[-275.11,-152.24],[-274.49,-151.68],[-273.12,-151.18],[-272.9,-150.4],[-273.11,-149.25],[-272.48,-148.68],[-271.12,-148.19],[-270.53,-146.68],[-270.36,-144.64],[-269,-142.82],[-267.29,-141.53],[-265.92,-138.48],[-264.64,-134.41],[-257.42,-118.76],[-245.14,-100.98],[-238.24,-97.03],[-236.24,-96.38],[-234.44,-95.48],[-233.26,-94.08],[-231.08,-93.58],[-227.86,-93.21],[-208.53,-88.78],[-188.26,-78.28],[-181.56,-48.61],[-183.69,-9.78],[-179.03,-0.69],[-177.25,0.66],[-176.58,2.01],[-176.36,3.6],[-175.41,4.64],[-174.22,5.83],[-159.82,13.86],[-141.24,21.18],[-129.51,15.61],[-105.16,0.1],[-85.68,-12.24],[-74.68,-19.84],[-75.9,-60.29],[-85.04,-71.26],[-105.69,-81.9],[-150.8,-95.37],[-169.27,-127.2],[-185.21,-160.83],[-203.01,-172.06],[-238.36,-174.41],[-280.01,-180.6],[-299.04,-186.31]],"o":[[-301.41,-184.77],[-303.35,-184.61],[-304.5,-181.7],[-298.39,-174.44],[-293.5,-171.01],[-288.38,-166.98],[-285.2,-164.34],[-282.16,-162.23],[-278.69,-158.65],[-278.36,-156.91],[-277.67,-155.58],[-275.91,-154.72],[-274.84,-153.79],[-275.03,-152.64],[-274.93,-151.84],[-273.59,-151.35],[-272.85,-150.77],[-273.04,-149.64],[-272.92,-148.83],[-271.58,-148.36],[-270.6,-147.37],[-270.41,-145.32],[-269.61,-143.31],[-267.84,-141.94],[-266.35,-139.77],[-265.06,-135.8],[-260.85,-126.02],[-249.57,-106.24],[-238.86,-97.34],[-236.93,-96.55],[-234.81,-95.94],[-233.67,-94.55],[-232.15,-93.73],[-228.94,-93.32],[-217.4,-90.64],[-193.96,-82.6],[-180.96,-61.97],[-182.92,-22.52],[-179.66,-1.28],[-177.83,0.28],[-176.65,1.46],[-176.44,3.08],[-175.8,4.22],[-174.62,5.44],[-166.62,11.64],[-146.35,18.66],[-136.16,20.77],[-112.31,4.58],[-89.13,-10.2],[-74.08,-19.84],[-73.33,-48.07],[-82.64,-69.68],[-97.04,-79.56],[-133.67,-90.32],[-165.74,-115.88],[-179.09,-149.63],[-196.08,-168.04],[-222.02,-178.05],[-270.74,-176.9],[-291.07,-183.92],[-300.88,-185.71]],"v":[[-301,-185],[-302.73,-184.68],[-304,-184],[-300.54,-176.72],[-295,-172],[-290.03,-168.3],[-286,-165],[-283.26,-163.05],[-279,-159],[-278.47,-157.49],[-278,-156],[-276.49,-155.01],[-275,-154],[-274.96,-153.02],[-275,-152],[-274.04,-151.52],[-273,-151],[-272.97,-150.02],[-273,-149],[-272.03,-148.52],[-271,-148],[-270.47,-146],[-270,-144],[-268.42,-142.38],[-267,-141],[-265.49,-137.14],[-264,-133],[-253.49,-112.5],[-240,-98],[-237.58,-96.79],[-235,-96],[-234.05,-95.02],[-233,-94],[-230.01,-93.45],[-227,-93],[-201.24,-85.69],[-185,-71],[-182.24,-35.57],[-180,-2],[-178.43,-0.21],[-177,1],[-176.51,2.55],[-176,4],[-175.02,5.04],[-174,6],[-151,17],[-139,21],[-127,14],[-91,-9],[-83,-14],[-74,-34],[-80,-66],[-89,-74],[-116,-85],[-160,-108],[-174,-138],[-193,-166],[-206,-173],[-259,-176],[-288,-183],[-300,-186]],"c":true}],"h":1},{"t":216,"s":[{"i":[[-298.57,-186.38],[-301.48,-184.82],[-302.42,-184.72],[-303.33,-184.6],[-303.95,-184.24],[-304,-182.15],[-302.47,-179.18],[-300.05,-176.43],[-297.61,-174.37],[-293.19,-171.44],[-287.42,-166.59],[-281.99,-161.16],[-277.27,-155.69],[-270.16,-145.12],[-263,-130.56],[-256.05,-116.28],[-247.63,-104.05],[-238.06,-97.14],[-226.99,-93.71],[-214.93,-91.11],[-199.79,-86.13],[-188.33,-76.72],[-181.67,-49.3],[-184.33,-11.83],[-179.36,-1.06],[-175.32,3.78],[-172.24,6.34],[-169.88,7.41],[-166.15,9.98],[-162.19,12.53],[-157.55,14.16],[-152.66,15.41],[-146.07,17.99],[-139.76,20.16],[-133.57,18.5],[-124.86,12.84],[-111.04,3.82],[-98.36,-4.83],[-86.66,-12],[-76.55,-17.89],[-75.43,-22.23],[-75.11,-31.92],[-74.86,-45.99],[-76.67,-57.88],[-86.26,-73.45],[-107.05,-83.24],[-122.24,-87.88],[-131.87,-90.88],[-139.9,-93.93],[-146.08,-96.99],[-154.27,-101.84],[-161.16,-109.06],[-166.76,-119.28],[-171.19,-131.61],[-174.75,-139.61],[-178,-145.13],[-184.2,-156.32],[-194.24,-167.44],[-220.28,-175.69],[-260.31,-175.55],[-282.26,-181.11]],"o":[[-301.2,-184.88],[-302.09,-184.74],[-303.04,-184.65],[-303.79,-184.39],[-304.19,-183.12],[-303.14,-180.18],[-300.92,-177.3],[-298.39,-174.96],[-295.12,-172.84],[-289.34,-168.31],[-283.75,-163.02],[-278.75,-157.5],[-272.83,-149.78],[-265.25,-135.51],[-258.4,-120.94],[-250.66,-107.83],[-241.31,-98.74],[-230.9,-94.62],[-219.01,-91.95],[-204.87,-88.27],[-191.51,-80.36],[-181.26,-62.39],[-183.21,-24.03],[-180.45,-2.7],[-176.8,2.18],[-173.05,5.88],[-170.65,7.1],[-167.56,8.97],[-163.47,11.76],[-159.21,13.71],[-154.27,15.01],[-148.43,16.92],[-141.73,19.61],[-136.14,19.84],[-127.93,15],[-115.36,6.74],[-102.54,-1.96],[-90.39,-10.06],[-79.74,-15.92],[-75.62,-19.77],[-75.17,-28.3],[-74.77,-41.05],[-75.81,-54.41],[-81.23,-68.58],[-99.16,-80.78],[-119.05,-86.94],[-128.65,-89.85],[-137.61,-92.94],[-144.14,-95.96],[-151.44,-99.81],[-159.13,-106.46],[-165.17,-115.47],[-169.77,-127.35],[-173.74,-137.8],[-176.88,-143.28],[-181.58,-151.85],[-190.53,-164.11],[-208.13,-174.91],[-246.37,-176.01],[-276.48,-178.67],[-293.31,-184.96]],"v":[[-301,-185],[-301.78,-184.78],[-302.73,-184.68],[-303.56,-184.49],[-304,-184],[-303.57,-181.16],[-301.69,-178.24],[-299.22,-175.7],[-297,-174],[-291.26,-169.88],[-285.59,-164.8],[-280.37,-159.33],[-276,-154],[-267.7,-140.32],[-260.7,-125.75],[-253.35,-112.05],[-244,-101],[-234.48,-95.88],[-223,-92.83],[-211,-90],[-195.65,-83.24],[-186,-72],[-182.44,-36.66],[-181,-4],[-178.08,0.56],[-174,5],[-171.44,6.72],[-169,8],[-164.81,10.87],[-161,13],[-155.91,14.58],[-151,16],[-143.9,18.8],[-138,20],[-130.75,16.75],[-122,11],[-106.79,0.93],[-92,-9],[-83.2,-13.96],[-76,-19],[-75.3,-25.26],[-75,-35],[-75.33,-50.2],[-78,-61],[-92.71,-77.11],[-116,-86],[-125.45,-88.86],[-135,-92],[-142.02,-94.95],[-148,-98],[-156.7,-104.15],[-163,-112],[-168.27,-123.31],[-173,-136],[-175.81,-141.45],[-179,-147],[-187.36,-160.21],[-199,-170],[-233.33,-175.85],[-273,-178],[-287.79,-183.04]],"c":true}],"h":1},{"t":217,"s":[{"i":[[-302.43,-184.57],[-303.77,-180.27],[-298.57,-175.51],[-290.97,-168.97],[-281.42,-160.2],[-270.99,-145.97],[-262.52,-129.2],[-257.46,-118.42],[-253.4,-110.46],[-251.58,-108.36],[-251.32,-107.41],[-242.54,-99.46],[-225.9,-94.3],[-210.28,-90.57],[-197.8,-85.29],[-191.2,-79.68],[-186.93,-74.15],[-182.65,-48.79],[-185.05,-10.78],[-174.32,4.48],[-160.42,12.39],[-154.09,14.66],[-150.95,15.67],[-142.72,18.68],[-135.46,19.43],[-130.19,16.2],[-127.07,13.75],[-123.16,11.08],[-119.2,8.68],[-116.61,7.29],[-114.59,6.36],[-109.77,3.12],[-104.7,-0.91],[-101.7,-2.69],[-99.71,-3.54],[-93.75,-7.45],[-86.59,-12.29],[-80.78,-15.9],[-77.65,-18.44],[-76.44,-22.73],[-76.22,-29.45],[-75.71,-53.24],[-85.99,-73.71],[-106.12,-84.02],[-128.11,-89.61],[-140.24,-94.17],[-147.25,-98.03],[-150.93,-99.83],[-153.53,-100.65],[-162.87,-110.46],[-170.68,-128.44],[-175.56,-139.6],[-180.32,-148.2],[-186.94,-158.74],[-195.1,-166.66],[-201.23,-170.51],[-204.27,-172.71],[-221.52,-176.37],[-252.96,-175.96],[-277.61,-179.61],[-294.99,-184.85]],"o":[[-304.73,-182.27],[-300.68,-176.9],[-294.26,-171.62],[-284.56,-163.26],[-274.23,-151.37],[-265.13,-134.89],[-258.76,-121.44],[-254.78,-112.93],[-251.67,-108.65],[-251.41,-107.74],[-247.34,-102.32],[-231.82,-95.45],[-215.13,-91.93],[-201.62,-87.25],[-192.98,-81.35],[-188.17,-76.08],[-181.63,-61.9],[-184.37,-23.23],[-178.11,1.29],[-165.47,10.03],[-155.11,14.32],[-152.01,15.34],[-145.74,17.46],[-137.58,19.67],[-131.41,17.07],[-128.02,14.54],[-124.56,11.99],[-120.48,9.43],[-117.31,7.61],[-115.25,6.67],[-111.67,4.58],[-106.29,0.38],[-102.34,-2.42],[-100.38,-3.25],[-96.2,-5.8],[-88.94,-10.69],[-82.2,-15.18],[-78.51,-17.54],[-76.58,-21],[-76.26,-26.96],[-74.96,-43.89],[-81.23,-68.15],[-99.06,-81.71],[-120.64,-87.97],[-137.62,-92.91],[-145.06,-96.73],[-149.91,-99.51],[-152.74,-100.4],[-159.28,-104.99],[-168.57,-122.18],[-174.15,-136.75],[-178.65,-145.33],[-184.64,-155.41],[-192.17,-164.36],[-200.1,-169.66],[-203.32,-172.04],[-212.29,-175.88],[-241.86,-176.41],[-271.36,-177.69],[-289.42,-183.19],[-302.21,-185.03]],"v":[[-303,-184],[-302.23,-178.59],[-298,-175],[-287.76,-166.12],[-278,-156],[-268.06,-140.43],[-260,-124],[-256.12,-115.67],[-252,-109],[-251.49,-108.05],[-251,-107],[-237.18,-97.46],[-220,-93],[-205.95,-88.91],[-195,-83],[-189.68,-77.88],[-186,-72],[-183.51,-36.01],[-180,-2],[-169.89,7.26],[-156,14],[-153.05,15],[-150,16],[-140.15,19.17],[-133,18],[-129.11,15.37],[-126,13],[-121.82,10.25],[-118,8],[-115.93,6.98],[-114,6],[-108.03,1.75],[-103,-2],[-101.04,-2.97],[-99,-4],[-91.34,-9.07],[-84,-14],[-79.64,-16.72],[-77,-20],[-76.35,-24.84],[-76,-32],[-78.47,-60.7],[-93,-78],[-113.38,-85.99],[-135,-92],[-142.65,-95.45],[-149,-99],[-151.83,-100.11],[-154,-101],[-165.72,-116.32],[-173,-134],[-177.1,-142.47],[-182,-151],[-189.55,-161.55],[-199,-169],[-202.27,-171.28],[-205,-173],[-231.69,-176.39],[-264,-177],[-283.51,-181.4],[-301,-185]],"c":true}],"h":1},{"t":218,"s":[{"i":[[-302.43,-184.57],[-303.84,-180.44],[-298.83,-175.74],[-297.05,-174.07],[-295.57,-172.5],[-293.65,-171.19],[-291.55,-170.49],[-278.5,-156.84],[-264.72,-132.67],[-260.36,-122.88],[-259.26,-121.5],[-258.02,-118.7],[-256.6,-114.93],[-254.52,-112.28],[-251.74,-109.94],[-250.9,-108.42],[-251.11,-107.24],[-249.34,-105.08],[-245.63,-103.28],[-244.68,-102.49],[-244.17,-101.12],[-229.97,-95.19],[-204.78,-90.52],[-198.79,-86.78],[-198.04,-86.03],[-197.36,-85.58],[-196.41,-85.32],[-188.63,-77.17],[-183.12,-59.88],[-183.74,-41.08],[-185.69,-22.76],[-182.29,-6.03],[-173.07,4.59],[-162.37,10.56],[-151.87,14.69],[-143.24,17.77],[-136.79,20.08],[-134.61,19.14],[-130.3,15.84],[-124.95,12.36],[-119.69,8.96],[-110.21,3.29],[-99.24,-3.98],[-93.26,-7.84],[-90.23,-10.18],[-87.69,-11.71],[-85.62,-12.59],[-83.63,-13.72],[-81.53,-14.61],[-76.54,-24.81],[-76.51,-56.8],[-115.12,-85.75],[-146.55,-98.08],[-154.1,-101.32],[-165.9,-116.23],[-174.3,-133.16],[-180.89,-150.3],[-193.73,-165.99],[-212.43,-176.01],[-247.98,-176.12],[-289.69,-184.71]],"o":[[-304.67,-182.32],[-300.91,-177.15],[-297.52,-174.57],[-296.08,-173.04],[-294.37,-171.45],[-292.24,-170.71],[-284.14,-164],[-268.79,-141.18],[-260.74,-123.38],[-259.63,-121.94],[-258.48,-119.99],[-257.08,-116.18],[-255.4,-113.06],[-252.69,-110.72],[-250.84,-108.8],[-251.03,-107.64],[-250.52,-105.94],[-246.89,-103.76],[-244.85,-102.93],[-244.35,-101.59],[-238.33,-96.93],[-213.2,-91.98],[-199.02,-87.01],[-198.29,-86.29],[-197.65,-85.67],[-196.74,-85.41],[-191.81,-81.73],[-184.28,-66.24],[-182.89,-47.2],[-185.14,-28.86],[-184.26,-10.82],[-176.7,1.68],[-165.69,8.96],[-155.47,13.42],[-145.84,16.73],[-138.71,19.45],[-135.71,19.97],[-131.91,17.07],[-126.85,13.63],[-121.37,10.03],[-114.09,5.77],[-102.78,-1.59],[-94.39,-7],[-91.18,-9.43],[-88.38,-11.41],[-86.31,-12.3],[-84.36,-13.42],[-82.21,-14.32],[-76.44,-18.34],[-75.29,-46.04],[-87.33,-83.69],[-141.29,-94.84],[-151.73,-100.96],[-161.4,-106.84],[-171.21,-127.83],[-178.77,-143.24],[-187.73,-159.78],[-202.81,-171.58],[-235.07,-178.12],[-276.34,-178.19],[-302.21,-185.03]],"v":[[-303,-184],[-302.38,-178.8],[-298,-175],[-296.57,-173.55],[-295,-172],[-292.95,-170.95],[-291,-170],[-273.64,-149.01],[-261,-124],[-260,-122.41],[-259,-121],[-257.55,-117.44],[-256,-114],[-253.6,-111.5],[-251,-109],[-250.96,-108.03],[-251,-107],[-248.12,-104.42],[-245,-103],[-244.51,-102.04],[-244,-101],[-221.59,-93.58],[-199,-87],[-198.54,-86.53],[-198,-86],[-197.05,-85.49],[-196,-85],[-186.45,-71.71],[-183,-53],[-184.44,-34.97],[-185,-17],[-179.5,-2.17],[-169,7],[-158.92,11.99],[-148,16],[-140.97,18.61],[-136,20],[-133.26,18.11],[-129,15],[-123.16,11.19],[-118,8],[-106.49,0.85],[-96,-6],[-92.22,-8.64],[-89,-11],[-87,-12],[-85,-13],[-82.92,-14.02],[-81,-15],[-76,-34],[-79,-63],[-136,-93],[-150,-100],[-155,-102],[-169,-123],[-176,-137],[-185,-156],[-197,-168],[-223,-177],[-260,-177],[-301,-185]],"c":true}],"h":1},{"t":219,"s":[{"i":[[-302.45,-184.54],[-303.87,-181.86],[-302.46,-178.5],[-300.89,-177.33],[-298.61,-176.56],[-295.48,-173.46],[-292.4,-170.63],[-290.69,-169.5],[-290.14,-168.12],[-286.62,-165.05],[-282.36,-160.67],[-270.64,-142.88],[-258.26,-116.95],[-250.64,-107.14],[-247.28,-104.58],[-245.68,-103.49],[-245.17,-102.12],[-230.94,-96.07],[-206.13,-91.6],[-194.96,-84.25],[-188.18,-75.79],[-184.53,-53.06],[-186.06,-14.26],[-181.97,-5.35],[-179.58,-2.73],[-175.16,2.24],[-168.98,6.88],[-163.42,9.75],[-158.49,11.43],[-154.66,12.74],[-151.26,13.56],[-145.68,15.95],[-137.94,19.15],[-133.95,18.36],[-130.38,15.87],[-125.06,12.45],[-119.64,8.93],[-113.9,5.54],[-108.52,1.97],[-105.74,0.33],[-103.73,-0.53],[-101.97,-1.93],[-100.52,-3.67],[-97.3,-5.44],[-93.13,-7.26],[-91.05,-8.88],[-89.66,-10.56],[-87.74,-11.67],[-85.77,-12.49],[-77.72,-18.97],[-77.35,-58.04],[-84.33,-71.4],[-107.7,-85.83],[-146.94,-96.43],[-168.2,-118.44],[-181.08,-147.66],[-192.81,-164.88],[-199.48,-169.05],[-202.3,-171.65],[-243.01,-175.56],[-291.98,-184.4]],"o":[[-303.89,-183.11],[-303.15,-179.56],[-301.59,-177.55],[-299.4,-176.84],[-296.53,-174.64],[-293.41,-171.45],[-290.86,-169.94],[-290.33,-168.59],[-288.18,-166.46],[-283.71,-162.15],[-275.01,-151.65],[-262.27,-125.53],[-251.75,-108.35],[-248.41,-105.25],[-245.85,-103.93],[-245.35,-102.59],[-239.12,-97.78],[-214.44,-92.99],[-197.62,-86.6],[-190.25,-78.85],[-184,-65.93],[-185.56,-27.23],[-182.68,-6.23],[-180.42,-3.6],[-177.17,0.3],[-171.06,5.53],[-165.18,9.03],[-160.08,10.95],[-155.78,12.46],[-152.4,13.3],[-148.2,14.62],[-140.55,18.21],[-135.01,18.92],[-131.63,16.83],[-126.99,13.73],[-121.38,10.05],[-115.89,6.8],[-110.21,3.12],[-106.37,0.6],[-104.42,-0.23],[-102.46,-1.34],[-101,-3.09],[-98.73,-4.81],[-94.5,-6.66],[-91.47,-8.35],[-90.14,-9.98],[-88.36,-11.43],[-86.45,-12.21],[-76.03,-18.94],[-76.46,-48.89],[-81.18,-68.11],[-94.22,-81.03],[-130.97,-92.99],[-162.87,-109.42],[-176.41,-136.93],[-188.87,-159.29],[-197.98,-168.31],[-201.6,-170.37],[-218.65,-179.86],[-281.62,-179.33],[-302.19,-185.08]],"v":[[-303,-184],[-303.51,-180.71],[-302,-178],[-300.15,-177.08],[-298,-176],[-294.44,-172.45],[-291,-170],[-290.51,-169.05],[-290,-168],[-285.16,-163.6],[-281,-159],[-266.45,-134.2],[-253,-110],[-249.53,-106.2],[-246,-104],[-245.51,-103.04],[-245,-102],[-222.69,-94.53],[-200,-88],[-192.61,-81.55],[-187,-73],[-185.05,-40.15],[-183,-7],[-181.19,-4.47],[-179,-2],[-173.11,3.88],[-167,8],[-161.75,10.35],[-157,12],[-153.53,13.02],[-150,14],[-143.11,17.08],[-136,19],[-132.79,17.59],[-129,15],[-123.22,11.25],[-118,8],[-112.05,4.33],[-107,1],[-105.08,0.05],[-103,-1],[-101.48,-2.51],[-100,-4],[-95.9,-6.05],[-92,-8],[-90.6,-9.43],[-89,-11],[-87.1,-11.94],[-85,-13],[-77,-36],[-80,-65],[-87,-74],[-118,-89],[-155,-103],[-172,-127],[-186,-155],[-196,-167],[-201,-170],[-203,-172],[-268,-178],[-301,-185]],"c":true}],"h":1},{"t":220,"s":[{"i":[[-302.45,-184.54],[-303.64,-183.44],[-304.5,-181.66],[-298.48,-175.17],[-289.61,-168.58],[-284.66,-163.38],[-281.24,-158.64],[-273.3,-146.97],[-264.9,-130.62],[-257.64,-116.85],[-249.7,-105.79],[-242.89,-101.38],[-235.46,-97.71],[-228.07,-95.85],[-220.4,-94.57],[-210.61,-92.23],[-200.51,-88.7],[-195.35,-84.72],[-192.78,-81.02],[-191.35,-79.36],[-190.3,-78.49],[-184.81,-56.48],[-186.6,-16.6],[-181.71,-4.78],[-178.77,-1.84],[-174.87,2.19],[-169.8,6.04],[-162.04,9.72],[-152.51,12.79],[-146.93,14.59],[-143.19,15.56],[-136.39,18.31],[-132.37,17.13],[-125.73,12.99],[-121.32,10.59],[-119.68,9.48],[-119.21,8.12],[-117.53,7.24],[-115.68,6.42],[-112.13,4.49],[-108.09,2.71],[-106.29,1.13],[-105.41,-0.7],[-103.85,-1.63],[-101.54,-2.64],[-98.49,-4],[-94.9,-7.41],[-88.66,-10.31],[-78.68,-17.02],[-77.37,-56.91],[-83.93,-70.93],[-92.57,-79.3],[-140.78,-93.53],[-155.53,-104.65],[-158.2,-105.3],[-172.78,-128.56],[-190.48,-163.72],[-205.59,-172.54],[-213.44,-175.62],[-246.32,-176.56],[-292.11,-184.41]],"o":[[-303.14,-183.86],[-304.32,-182.34],[-301.43,-177.63],[-292.57,-170.64],[-285.79,-164.81],[-282.38,-160.3],[-276.35,-152.16],[-267.58,-136.2],[-260.04,-121.21],[-252.47,-109.14],[-245.16,-102.78],[-238.04,-98.85],[-230.63,-96.31],[-222.96,-94.98],[-214.35,-93.13],[-203.69,-90.01],[-196.46,-85.96],[-193.51,-82.25],[-191.7,-79.61],[-190.65,-78.79],[-184.76,-69.43],[-185.73,-30.07],[-182.57,-5.86],[-179.81,-2.77],[-176.47,0.67],[-171.54,4.88],[-165.03,8.58],[-155.78,11.83],[-148.09,14.31],[-144.48,15.22],[-137.95,17.5],[-133.59,18.12],[-127.32,13.94],[-122.73,11.31],[-119.83,9.92],[-119.37,8.58],[-118.19,7.53],[-116.28,6.68],[-113.59,5.14],[-109.38,3.28],[-106.59,1.73],[-105.71,-0.09],[-104.58,-1.3],[-102.33,-2.29],[-99.74,-3.84],[-96.13,-5.58],[-92.1,-9.24],[-78.52,-16.73],[-77.26,-42.03],[-80.24,-64.66],[-88.42,-75.61],[-116.65,-91.28],[-155.45,-103.3],[-156.92,-105.69],[-168.91,-114.7],[-182.75,-150.87],[-205.21,-172.52],[-211.73,-174.57],[-229.73,-179.55],[-280.19,-179.17],[-302.19,-185.08]],"v":[[-303,-184],[-303.98,-182.89],[-304,-181],[-295.53,-172.91],[-287,-166],[-283.52,-161.84],[-280,-157],[-270.44,-141.58],[-262,-125],[-255.06,-113],[-247,-104],[-240.47,-100.12],[-233,-97],[-225.52,-95.41],[-218,-94],[-207.15,-91.12],[-198,-87],[-194.43,-83.49],[-192,-80],[-191,-79.08],[-190,-78],[-185.27,-43.28],[-183,-7],[-180.76,-3.78],[-178,-1],[-173.2,3.53],[-168,7],[-158.91,10.78],[-149,14],[-145.71,14.91],[-142,16],[-134.99,18.22],[-129,15],[-124.23,12.15],[-120,10],[-119.52,9.03],[-119,8],[-116.9,6.96],[-115,6],[-110.76,3.88],[-107,2],[-106,0.52],[-105,-1],[-103.09,-1.96],[-101,-3],[-97,-5],[-94,-8],[-86,-12],[-78,-29],[-80,-64],[-84,-71],[-100,-83],[-155,-103],[-156,-105],[-159,-106],[-177,-138],[-201,-170],[-210,-174],[-215,-176],[-265,-178],[-301,-185]],"c":true}],"h":1},{"t":221,"s":[{"i":[[-299.3,-187.7],[-303.77,-183.09],[-303.5,-181.73],[-297.21,-174.23],[-288.58,-167.7],[-284.99,-163.54],[-283.58,-160.73],[-282.39,-159.35],[-281.3,-158.37],[-271.27,-142.83],[-259.06,-118.17],[-251.21,-108.45],[-247.25,-103.85],[-244.43,-102.33],[-241.04,-101.47],[-238.2,-99.93],[-235.92,-98.28],[-232.71,-97.52],[-229.07,-97.21],[-220.85,-95.7],[-210.27,-93.28],[-199.11,-88.06],[-190.93,-79.54],[-184.79,-51.76],[-186.96,-11.47],[-179.59,-3.07],[-179.34,-1.36],[-174.1,2.92],[-162.37,8.37],[-153.99,11.4],[-147.99,13.32],[-140.84,15.98],[-135.09,18.1],[-125.59,13.09],[-121.11,10.73],[-115.98,6.23],[-107.88,2.23],[-102.1,-2.63],[-98.51,-3.77],[-97.38,-5.75],[-94.31,-7.15],[-81.9,-13.58],[-79.42,-28.85],[-77.48,-46.51],[-84.78,-74.27],[-94.38,-79.99],[-98.06,-83.5],[-102.28,-85.3],[-144.96,-95.18],[-163.37,-110.38],[-166.75,-114.63],[-166.77,-116.49],[-168.76,-117.6],[-170.99,-122.96],[-175.62,-132.78],[-180.24,-143.64],[-190.49,-159.86],[-199.71,-169.55],[-214.89,-177.1],[-249.66,-177.84],[-276.78,-179.6]],"o":[[-303.52,-183.48],[-303.76,-182.22],[-300.17,-176.88],[-291.42,-169.64],[-285.45,-164.42],[-284.05,-161.69],[-282.74,-159.67],[-281.67,-158.7],[-275.49,-151.24],[-263.05,-126.29],[-252.58,-110.27],[-248.54,-105.24],[-245.41,-102.6],[-242.24,-101.77],[-238.99,-100.54],[-236.66,-98.8],[-233.92,-97.67],[-230.29,-97.29],[-224.46,-96.31],[-213.75,-94.18],[-202.65,-90.3],[-193.25,-82.68],[-183.56,-66.03],[-186.49,-24.49],[-179.67,-3.64],[-179.42,-1.93],[-177.16,0.98],[-166.7,6.61],[-156,10.74],[-149.99,12.69],[-143.3,14.93],[-136.74,17.56],[-132.23,17.84],[-122.7,11.11],[-117.82,8.58],[-110.84,3.04],[-104.3,-0.11],[-99.53,-4.3],[-97.67,-4.15],[-95.89,-6.71],[-88.39,-10.98],[-78.58,-21.3],[-78.57,-41.23],[-79.13,-64.01],[-92.17,-79.89],[-97.18,-81.74],[-100.75,-84.92],[-121.01,-92.95],[-160.42,-107.79],[-165.15,-114.32],[-167.31,-115.46],[-167.15,-117.34],[-170.09,-119.82],[-173.96,-128.95],[-178.54,-139.58],[-186.1,-154.83],[-198.2,-167.06],[-205.62,-173.29],[-233.63,-179.48],[-270.83,-179.55],[-290.36,-182.66]],"v":[[-303,-184],[-303.76,-182.66],[-303,-181],[-294.31,-171.93],[-286,-165],[-284.52,-162.61],[-283,-160],[-282.03,-159.03],[-281,-158],[-267.16,-134.56],[-254,-112],[-249.88,-106.84],[-246,-103],[-243.33,-102.05],[-240,-101],[-237.43,-99.36],[-235,-98],[-231.5,-97.41],[-228,-97],[-217.3,-94.94],[-207,-92],[-196.18,-85.37],[-189,-76],[-185.64,-38.13],[-180,-4],[-179.5,-2.5],[-179,-1],[-170.4,4.77],[-158,10],[-151.99,12.05],[-146,14],[-138.79,16.77],[-134,18],[-124,12],[-120,10],[-114,5],[-106,1],[-100,-4],[-98,-4],[-97,-6],[-93,-8],[-80,-18],[-79,-35],[-78,-52],[-91,-79],[-96,-81],[-99,-84],[-104,-86],[-157,-105],[-165,-114],[-167,-115],[-167,-117],[-169,-118],[-172,-125],[-177,-136],[-182,-147],[-196,-165],[-202,-171],[-222,-178],[-264,-179],[-283,-181]],"c":true}],"h":1},{"t":222,"s":[{"i":[[-300.18,-185.39],[-303.98,-183.35],[-303.81,-182.52],[-303.52,-181.82],[-303.14,-181.19],[-299.35,-176.5],[-292.85,-170.06],[-285.86,-163.23],[-279.05,-155.21],[-271.18,-142.12],[-263.93,-127.72],[-256.88,-114.98],[-248.53,-105.14],[-241.32,-101.09],[-235.12,-99.18],[-228.39,-97.83],[-221.37,-96.54],[-210.07,-93.55],[-199.14,-87.93],[-191.18,-79.76],[-186.54,-68.64],[-185.7,-52.12],[-187.39,-33.2],[-186.43,-14.65],[-175.58,1.54],[-154.02,10.65],[-141.44,15.19],[-134.11,18.11],[-129.52,16.26],[-121.96,10.28],[-114.86,5.94],[-108.07,2.35],[-103.95,-0.61],[-101.02,-3.33],[-99.39,-4.09],[-98.26,-3.88],[-97.68,-4.51],[-97.19,-5.88],[-95.82,-6.61],[-93.71,-7.54],[-88.35,-10.66],[-80.54,-15.66],[-79.41,-21.14],[-79.15,-32.68],[-78.73,-50.74],[-81.69,-67.19],[-103.1,-86.31],[-146.02,-97.69],[-157.36,-105.56],[-157.76,-106.82],[-159.01,-107.42],[-160.6,-107.65],[-168.07,-116.14],[-176.44,-132.52],[-185.23,-150.88],[-196.82,-166.57],[-203.26,-170.97],[-205.37,-172.68],[-223.68,-178.07],[-257,-178.08],[-281.33,-181.37]],"o":[[-304,-183.66],[-303.88,-182.78],[-303.63,-182.04],[-303.28,-181.39],[-301.31,-178.67],[-295.12,-172.2],[-288.22,-165.58],[-281.28,-158.04],[-273.87,-147.1],[-266.22,-132.43],[-259.26,-118.99],[-251.51,-108.05],[-243.23,-101.93],[-237.26,-99.72],[-230.68,-98.24],[-223.73,-96.98],[-214.33,-94.93],[-202.48,-90.05],[-193.49,-82.78],[-187.71,-72.7],[-185.33,-58.26],[-186.72,-39.59],[-187.24,-20.73],[-181.32,-2.78],[-161.93,8.25],[-144.38,13.88],[-136.3,17.3],[-131.78,17.88],[-124.61,12.46],[-117.33,7.27],[-110.23,3.48],[-104.94,0.31],[-101.99,-2.43],[-99.77,-4.15],[-98.64,-3.96],[-97.83,-4.07],[-97.36,-5.41],[-96.47,-6.34],[-94.44,-7.21],[-91.33,-9.08],[-82.96,-13.95],[-79.58,-18.05],[-79.19,-28.45],[-78.63,-43.89],[-80.26,-62.39],[-90.34,-81.46],[-130.95,-94.42],[-157.22,-105.15],[-157.63,-106.4],[-158.46,-107.34],[-160.08,-107.57],[-164.85,-111.38],[-173.87,-126.71],[-182.07,-144.59],[-192.6,-161.87],[-202.57,-170.38],[-204.66,-172.12],[-213.93,-177.03],[-245.21,-178.59],[-274.49,-179.42],[-294.18,-184.35]],"v":[[-304,-184],[-303.93,-183.07],[-303.72,-182.28],[-303.4,-181.61],[-303,-181],[-297.23,-174.35],[-290.54,-167.82],[-283.57,-160.64],[-277,-152],[-268.7,-137.28],[-261.6,-123.36],[-254.2,-111.51],[-245,-103],[-239.29,-100.41],[-232.9,-98.71],[-226.06,-97.41],[-219,-96],[-206.27,-91.8],[-196.31,-85.35],[-189.45,-76.23],[-186,-64],[-186.21,-45.85],[-187.32,-26.96],[-184,-9],[-168.75,4.9],[-147,13],[-138.87,16.25],[-133,18],[-127.06,14.36],[-120,9],[-112.55,4.71],[-106,1],[-102.97,-1.52],[-100,-4],[-99.02,-4.03],[-98,-4],[-97.52,-4.96],[-97,-6],[-95.13,-6.91],[-93,-8],[-85.65,-12.3],[-80,-17],[-79.3,-24.8],[-79,-36],[-79.49,-56.56],[-84,-71],[-117.02,-90.37],[-157,-105],[-157.49,-105.98],[-158,-107],[-159.55,-107.5],[-161,-108],[-170.97,-121.42],[-179,-138],[-188.92,-156.37],[-202,-170],[-203.96,-171.55],[-206,-173],[-234.45,-178.33],[-269,-179],[-287.75,-182.86]],"c":true}],"h":1},{"t":223,"s":[{"i":[[-296.68,-186.99],[-303.9,-182.77],[-303.28,-181.39],[-295.95,-173.31],[-282.26,-159.67],[-267.23,-133.09],[-252.95,-108.21],[-239.93,-101.05],[-228.68,-97.82],[-216.85,-95.56],[-205.25,-92.92],[-201.65,-90.46],[-201.21,-89.16],[-199.99,-88.58],[-198.4,-88.34],[-194.27,-84.26],[-189.81,-77.28],[-186.29,-54],[-189.03,-21.65],[-185.23,-11.73],[-183.37,-9.67],[-182.23,-7.13],[-181.48,-4.59],[-171.74,3.16],[-151.82,9.89],[-140.87,14.3],[-134.7,17.12],[-128.99,15.62],[-122.32,10.51],[-110.89,3.31],[-98.32,-4.18],[-91.72,-8.75],[-89,-11.34],[-86.69,-12.46],[-84.61,-12.62],[-80.97,-16.36],[-81.24,-24.7],[-80.65,-33.48],[-80.04,-40.06],[-80.68,-61.14],[-89.78,-79.19],[-96.32,-82.52],[-96.79,-83.88],[-100.91,-85.97],[-107.11,-88.3],[-126.18,-94.03],[-151.36,-101.46],[-158.36,-106.57],[-158.76,-107.82],[-160.01,-108.42],[-161.6,-108.66],[-164.27,-111.35],[-166.61,-115.14],[-167.51,-116.32],[-168.88,-116.82],[-170.23,-119.64],[-178.99,-137.08],[-191.83,-160.19],[-201.87,-170.7],[-218.22,-178.09],[-253.01,-178.11]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.07,-176.97],[-287.05,-164.65],[-271.75,-143.23],[-257.83,-115.58],[-243.35,-102.39],[-232.6,-98.76],[-220.97,-96.1],[-208.99,-93.97],[-201.8,-90.88],[-201.36,-89.6],[-200.54,-88.66],[-198.92,-88.42],[-196.11,-86.37],[-191.11,-79.71],[-185.52,-65.17],[-188.04,-32.24],[-185.79,-12.4],[-184.02,-10.37],[-182.49,-8.09],[-181.73,-5.39],[-177.58,0.21],[-158.86,8],[-143.26,12.99],[-136.58,16.36],[-131.08,16.87],[-124.61,12.44],[-115.23,5.9],[-102.43,-1.73],[-92.72,-7.83],[-89.86,-10.51],[-87.39,-12.4],[-85.3,-12.57],[-81.6,-14.51],[-80.79,-21.45],[-80.88,-31.2],[-80.23,-37.91],[-79.79,-52.54],[-85.67,-74.47],[-96.17,-82.08],[-96.63,-83.42],[-98.85,-85.07],[-105.04,-87.59],[-117.25,-92.05],[-143.24,-98.73],[-158.23,-106.16],[-158.62,-107.4],[-159.45,-108.34],[-161.08,-108.58],[-163.21,-110.03],[-165.97,-113.9],[-167.07,-116.16],[-168.41,-116.65],[-169.78,-118.13],[-175.43,-128.8],[-187.72,-154.33],[-200.18,-168.05],[-209.1,-175.11],[-239.63,-180.08],[-282.58,-180.13]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-291.5,-168.98],[-278,-153],[-262.53,-124.33],[-246,-104],[-236.27,-99.91],[-225,-97],[-212.92,-94.77],[-202,-91],[-201.51,-90.03],[-201,-89],[-199.45,-88.5],[-198,-88],[-192.69,-81.99],[-189,-75],[-187.16,-43.12],[-186,-13],[-184.62,-11.05],[-183,-9],[-181.98,-6.26],[-181,-4],[-165.3,5.58],[-146,12],[-138.72,15.33],[-133,17],[-126.8,14.03],[-120,9],[-106.66,0.79],[-94,-7],[-90.79,-9.63],[-88,-12],[-86,-12.51],[-84,-13],[-80.88,-18.91],[-81,-29],[-80.44,-35.69],[-80,-42],[-83.18,-67.81],[-96,-82],[-96.48,-82.97],[-97,-84],[-102.97,-86.78],[-109,-89],[-134.71,-96.38],[-158,-106],[-158.49,-106.98],[-159,-108],[-160.54,-108.5],[-162,-109],[-165.12,-112.62],[-167,-116],[-167.96,-116.48],[-169,-117],[-171,-121],[-183,-145],[-198,-166],[-204,-172],[-228,-179],[-266,-179]],"c":true}],"h":1},{"t":224,"s":[{"i":[[-297.58,-187.28],[-303.9,-182.77],[-303.28,-181.39],[-296.63,-173.86],[-284.64,-162.11],[-268.81,-135.98],[-254.27,-109.51],[-246.39,-104.91],[-245.26,-105.12],[-244.68,-104.47],[-244.23,-103.11],[-242.51,-102.58],[-239.77,-102.26],[-237.33,-101.33],[-234.82,-100.22],[-222.33,-97.69],[-204.7,-93.59],[-201.36,-90.58],[-200.41,-90.32],[-189.48,-76.68],[-187.68,-48.36],[-188.04,-24.05],[-184.69,-9.27],[-172.47,2.18],[-153.91,8.6],[-141.35,13.5],[-133.59,17.13],[-128.27,15.41],[-121.64,10.07],[-115.24,6.01],[-108.87,2.2],[-103.45,-1.34],[-97.3,-5.5],[-90.63,-9.45],[-82.41,-14.18],[-81.41,-18.89],[-81.27,-30.38],[-80.26,-51.34],[-84.37,-71.1],[-88.41,-75.92],[-88.66,-77.64],[-91.02,-79.77],[-94.85,-82.24],[-101.32,-86.29],[-109.45,-90.16],[-118.79,-93],[-128.14,-95.21],[-141.64,-99.11],[-156.93,-105.5],[-165.08,-112.54],[-171.36,-120.25],[-175.36,-127.73],[-178.54,-135.93],[-185.42,-149.73],[-196.38,-165.6],[-202.77,-170.08],[-207.12,-173.55],[-212.57,-175.8],[-221.07,-177.5],[-240.81,-179.46],[-266.45,-179.06]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.31,-177.31],[-288.8,-166.27],[-273.68,-146.73],[-259.11,-117.38],[-246.76,-104.85],[-245.64,-105.04],[-244.81,-104.92],[-244.38,-103.57],[-243.38,-102.71],[-240.71,-102.36],[-238.16,-101.72],[-235.66,-100.58],[-228.98,-98.64],[-210.19,-95.16],[-201.65,-90.67],[-200.74,-90.41],[-192.64,-84.25],[-187,-58.73],[-188.19,-30.17],[-186.29,-13.6],[-177.77,-0.87],[-160.55,6.91],[-144.3,11.94],[-135.99,16.1],[-130.45,16.87],[-123.87,12],[-117.55,7.41],[-110.9,3.41],[-105.3,-0.09],[-99.45,-4.05],[-93.67,-7.86],[-85,-12.61],[-81.53,-15.95],[-81.29,-26.11],[-80.32,-43.04],[-82.28,-65.37],[-88.33,-75.35],[-88.58,-77.07],[-89.84,-78.9],[-93.53,-81.45],[-98.59,-84.71],[-106.74,-89.01],[-115.47,-92.14],[-125.13,-94.53],[-135.92,-97.36],[-152.14,-103.18],[-162.65,-110.16],[-169.44,-117.58],[-174.35,-125.26],[-177.46,-133.06],[-182.23,-143.68],[-192.49,-160.69],[-201.21,-168.8],[-205.73,-172.45],[-210.03,-175.05],[-218.09,-177.02],[-232.34,-179.43],[-257.87,-179.27],[-287.36,-181.36]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-292.72,-170.06],[-281,-157],[-263.96,-126.68],[-247,-105],[-246.01,-104.98],[-245,-105],[-244.53,-104.02],[-244,-103],[-241.61,-102.47],[-239,-102],[-236.49,-100.96],[-234,-100],[-216.26,-96.42],[-202,-91],[-201.05,-90.49],[-200,-90],[-188.24,-67.71],[-188,-37],[-187.16,-18.83],[-182,-6],[-166.51,4.55],[-147,11],[-138.67,14.8],[-132,17],[-126.07,13.71],[-120,9],[-113.07,4.71],[-107,1],[-101.45,-2.69],[-95,-7],[-87.81,-11.03],[-82,-15],[-81.35,-22.5],[-81,-34],[-81.27,-58.35],[-88,-75],[-88.49,-76.5],[-89,-78],[-92.27,-80.61],[-96,-83],[-104.03,-87.65],[-112,-91],[-121.96,-93.77],[-131,-96],[-146.89,-101.14],[-160,-108],[-167.26,-115.06],[-173,-123],[-176.41,-130.39],[-180,-139],[-188.96,-155.21],[-200,-168],[-204.25,-171.26],[-208,-174],[-215.33,-176.41],[-224,-178],[-249.34,-179.36],[-275,-180]],"c":true}],"h":1},{"t":225,"s":[{"i":[[-296.99,-186.86],[-303.9,-182.77],[-303.28,-181.39],[-297.19,-174.24],[-286.57,-163.42],[-282.08,-157.48],[-279.63,-154.09],[-277.32,-150.28],[-274.76,-146.38],[-265.72,-128.73],[-253.7,-109.66],[-247.39,-105.91],[-246.26,-106.12],[-245.68,-105.47],[-245.22,-104.11],[-238.5,-101.56],[-227.6,-99.77],[-215.12,-96.77],[-203.55,-91.92],[-199.47,-88.92],[-197.47,-87.49],[-192.34,-81.19],[-188.49,-70.94],[-187.86,-53.4],[-189.83,-31.19],[-186.92,-14.12],[-179.58,-3.54],[-167.04,4.05],[-151.65,9],[-140.33,13.47],[-132.28,17.13],[-130,16.34],[-126.05,13.69],[-122.63,11.42],[-119.63,9.4],[-113.41,5.6],[-106.11,1.06],[-100.84,-3.32],[-93.75,-7.21],[-91.68,-8.51],[-91.18,-9.88],[-90.4,-10.1],[-89.25,-9.88],[-88.68,-10.51],[-88.18,-11.88],[-86.69,-12.45],[-84.58,-12.6],[-81.79,-17.42],[-81.25,-31.63],[-80.37,-52.84],[-83.1,-67.92],[-86.18,-71.74],[-88.5,-77.39],[-108.65,-90.43],[-152.8,-101.14],[-162.24,-109.38],[-176.42,-128.71],[-194.88,-165.89],[-204.58,-171.77],[-215.66,-177.26],[-250.66,-178.36]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.66,-177.78],[-290.15,-167.06],[-283.01,-158.68],[-280.39,-155.18],[-278.18,-151.59],[-275.61,-147.68],[-269.37,-136.65],[-257.88,-115.23],[-247.76,-105.85],[-246.64,-106.04],[-245.82,-105.92],[-245.38,-104.57],[-241.95,-102.42],[-231.33,-100.23],[-219.59,-98.06],[-207.1,-93.7],[-200.24,-89.43],[-198.09,-87.95],[-194.34,-84.22],[-189.41,-74.55],[-187.2,-60.55],[-189.17,-38.71],[-188.38,-18.59],[-182.52,-6.59],[-171.71,2.05],[-157.01,7.53],[-143.44,11.9],[-134.75,16.08],[-130.97,17],[-127.53,14.69],[-123.82,12.22],[-120.54,10.01],[-116.35,7.32],[-108.28,2.47],[-103.21,-1.71],[-96.1,-6.07],[-91.84,-8.07],[-91.35,-9.41],[-90.77,-10.15],[-89.64,-9.96],[-88.84,-10.07],[-88.35,-11.41],[-87.4,-12.4],[-85.28,-12.55],[-82.41,-14.11],[-81.21,-26.19],[-80.64,-44.49],[-81.49,-62.07],[-84.45,-71.05],[-88.18,-74.8],[-94.6,-84.83],[-131.91,-97.59],[-161.65,-109.62],[-171.13,-116.68],[-187.98,-152.1],[-204.35,-170.16],[-209.04,-174.25],[-235.01,-181.56],[-283.63,-180.9]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-293.67,-170.65],[-284,-160],[-281.23,-156.33],[-279,-153],[-276.46,-148.98],[-274,-145],[-261.8,-121.98],[-248,-106],[-247.02,-105.97],[-246,-106],[-245.53,-105.02],[-245,-104],[-234.92,-100.89],[-224,-99],[-211.11,-95.24],[-201,-90],[-198.78,-88.44],[-197,-87],[-190.88,-77.87],[-188,-67],[-188.52,-46.05],[-189,-24],[-184.72,-10.35],[-176,-1],[-162.02,5.79],[-146,11],[-137.54,14.77],[-131,17],[-128.77,15.52],[-125,13],[-121.59,10.72],[-119,9],[-110.85,4.03],[-105,0],[-98.47,-4.69],[-92,-8],[-91.52,-8.96],[-91,-10],[-90.02,-10.03],[-89,-10],[-88.52,-10.96],[-88,-12],[-85.99,-12.5],[-84,-13],[-81.5,-21.8],[-81,-37],[-81,-58],[-84,-70],[-87,-73],[-89,-78],[-117,-93],[-161,-109],[-163,-110],[-182,-140],[-204,-170],[-205,-172],[-219,-178],[-272,-180]],"c":true}],"h":1},{"t":226,"s":[{"i":[[-297.15,-186.59],[-303.9,-182.77],[-303.28,-181.39],[-297.68,-174.97],[-287.34,-164.6],[-277.81,-150.37],[-270.48,-135.68],[-264.9,-125.83],[-260.02,-118.27],[-257.65,-114.41],[-254.6,-112.59],[-251.97,-109.77],[-249.06,-106.63],[-235.08,-101.37],[-211.25,-96.68],[-197.78,-88.42],[-189.76,-75.28],[-188.83,-50.19],[-189.79,-19.65],[-185.46,-11.39],[-184.18,-10.29],[-183.66,-9.05],[-183.31,-7.38],[-180.17,-4.45],[-174.1,-1.15],[-163.37,4.18],[-149.38,9.39],[-139.37,13.3],[-132.2,16.09],[-128.36,15.14],[-123.95,12.43],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-116.09,6.5],[-111.55,4.53],[-108.87,2.39],[-105.38,0.36],[-104.37,-0.49],[-103.59,-0.65],[-97.68,-4.33],[-90.56,-9.27],[-85.48,-12.66],[-83.41,-14.84],[-82.13,-22.22],[-82.14,-38.08],[-81.84,-53.18],[-82.97,-66.18],[-86.32,-71.77],[-88.54,-77.4],[-108.62,-91.13],[-128.13,-97.19],[-138.49,-98.86],[-158.29,-106.97],[-164.16,-111.26],[-183.76,-146.62],[-208.14,-175.03],[-249.25,-178.99]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.76,-177.92],[-290.97,-168.31],[-280.57,-155.28],[-272.77,-140.57],[-266.64,-128.44],[-261.59,-120.74],[-258.6,-115.12],[-255.65,-113.15],[-252.94,-110.96],[-250.03,-107.6],[-242.95,-103.02],[-219.23,-98.2],[-201.66,-91.78],[-191.84,-80.17],[-187.69,-60.86],[-189.88,-29.58],[-185.87,-11.74],[-184.62,-10.66],[-183.75,-9.6],[-183.44,-7.94],[-181.87,-5.62],[-176.28,-2.21],[-167.93,2.23],[-154.09,7.76],[-142.27,12],[-134.34,15.34],[-129.88,15.92],[-125.39,13.39],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-117.82,7.24],[-112.96,5.15],[-110.18,3.21],[-106.47,0.97],[-104.57,-0.41],[-103.87,-0.6],[-100.15,-2.69],[-92.89,-7.62],[-86.53,-11.99],[-83.93,-14.09],[-82.31,-17.93],[-82.04,-32.29],[-81.86,-48.09],[-82.4,-62.23],[-84.32,-69.88],[-88.2,-75.16],[-95.48,-86.41],[-124.81,-95.81],[-134.65,-99.02],[-148.28,-102.04],[-162.82,-110.67],[-177.5,-122.98],[-199.65,-167.39],[-231.22,-181.98],[-283.49,-180.94]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-294.32,-171.64],[-284,-160],[-275.29,-145.47],[-268,-131],[-263.25,-123.28],[-259,-116],[-256.65,-113.78],[-254,-112],[-251,-108.69],[-248,-106],[-227.15,-99.78],[-206,-94],[-194.81,-84.3],[-189,-70],[-189.36,-39.88],[-186,-12],[-185.04,-11.02],[-184,-10],[-183.55,-8.49],[-183,-7],[-178.22,-3.33],[-172,0],[-158.73,5.97],[-145,11],[-136.85,14.32],[-131,16],[-126.87,14.26],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-114.52,5.83],[-111,4],[-107.67,1.68],[-105,0],[-104.12,-0.55],[-103,-1],[-95.29,-5.97],[-88,-11],[-84.71,-13.37],[-83,-16],[-82.09,-27.25],[-82,-43],[-82.12,-57.71],[-84,-69],[-87,-73],[-89,-78],[-122,-95],[-131,-98],[-142,-100],[-162,-110],[-165,-112],[-194,-160],[-218,-178],[-267,-180]],"c":true}],"h":1},{"t":227,"s":[{"i":[[-298.58,-187.07],[-303.9,-182.77],[-303.28,-181.39],[-296.82,-173.81],[-286.44,-163.38],[-276.42,-147.81],[-266.43,-128.33],[-260.61,-119.4],[-257.35,-115.38],[-253.15,-110.97],[-248.69,-106.9],[-232.59,-101.34],[-209.08,-96.8],[-202.98,-92.31],[-201.5,-91.39],[-194.59,-84.35],[-189.5,-70.35],[-189.24,-46.31],[-189.6,-18.39],[-176.16,-1.94],[-152.52,7.2],[-138.97,12.58],[-131.03,16.08],[-128.25,15.1],[-123.53,12.24],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-117,6.92],[-113.93,5.57],[-110.8,3.59],[-107.81,1.52],[-104.33,-0.52],[-100.43,-2.59],[-99.04,-3.7],[-97.42,-4.59],[-96.04,-5.7],[-94.42,-6.59],[-91.85,-8.18],[-88.85,-10.18],[-86.95,-11.32],[-84.64,-13.54],[-83.42,-24.47],[-81.87,-46.32],[-84.93,-68.26],[-88.21,-75.87],[-96.12,-84.59],[-124.77,-96.47],[-142.85,-101.9],[-153.16,-104.51],[-157.21,-107.54],[-161.64,-109.89],[-165.16,-112.26],[-180.98,-137.11],[-196.38,-163.81],[-207.99,-172.03],[-209.8,-173.3],[-251.24,-178.75]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.35,-177.36],[-289.87,-166.81],[-279.95,-154.39],[-269.66,-134.78],[-261.69,-120.96],[-258.45,-116.61],[-254.55,-112.52],[-250.22,-108.16],[-240.8,-102.69],[-216.73,-98.4],[-203.49,-92.61],[-201.99,-91.69],[-197.34,-88.18],[-190.67,-75.44],[-188.19,-56.36],[-189.95,-27.32],[-182.64,-6.04],[-161.1,4.68],[-142.21,11.04],[-133.38,15.1],[-129.74,15.98],[-125.15,13.23],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-118.04,7.38],[-114.95,6.01],[-111.89,4.33],[-108.76,2.18],[-105.86,0.27],[-101.61,-1.95],[-99.58,-3.4],[-97.96,-4.29],[-96.58,-5.4],[-94.96,-6.29],[-93.16,-7.8],[-90.16,-9.8],[-87.25,-11.72],[-84.87,-12.81],[-83.47,-16.22],[-82.63,-38.61],[-82.16,-59.03],[-87.48,-74.78],[-93.36,-82.01],[-110.74,-93.66],[-140.18,-100.92],[-149.44,-104.2],[-156.58,-106.3],[-160.18,-109.26],[-163.82,-111.67],[-175.18,-121.07],[-190.87,-155],[-202.92,-169.74],[-209.86,-173.83],[-228.74,-184.28],[-287,-181.87]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-293.35,-170.31],[-284,-160],[-273.04,-141.29],[-263,-123],[-259.53,-118],[-256,-114],[-251.68,-109.57],[-247,-106],[-224.66,-99.87],[-204,-93],[-202.49,-92],[-201,-91],[-192.63,-79.9],[-189,-65],[-189.6,-36.81],[-186,-12],[-168.63,1.37],[-145,10],[-136.18,13.84],[-130,16],[-126.7,14.16],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-115.98,6.46],[-113,5],[-109.78,2.88],[-107,1],[-102.97,-1.24],[-100,-3],[-98.5,-4],[-97,-5],[-95.5,-5.99],[-94,-7],[-91,-9],[-88,-11],[-86,-12],[-84,-15],[-83,-32],[-82,-52],[-86,-71],[-90,-78],[-100,-87],[-137,-100],[-146,-103],[-156,-106],[-158,-108],[-163,-111],[-166,-113],[-187,-148],[-201,-168],[-209,-173],[-211,-174],[-277,-181]],"c":true}],"h":1},{"t":228,"s":[{"i":[[-299.31,-187.11],[-303.9,-182.77],[-303.28,-181.39],[-297.26,-174.22],[-286.94,-163.2],[-274.02,-141.59],[-260.13,-116.06],[-253.42,-110.89],[-252.23,-111.1],[-251.68,-110.49],[-251.17,-109.12],[-241.81,-104.54],[-223.21,-100.16],[-211.76,-97.43],[-203.07,-93.71],[-197.21,-88.1],[-192.82,-80.42],[-189.73,-57.95],[-191.38,-24.39],[-185.6,-11.35],[-180.12,-5.96],[-177.68,-4.49],[-177.18,-3.12],[-176.4,-2.9],[-175.25,-3.11],[-174.68,-2.48],[-174.21,-1.12],[-169.46,0.97],[-161.66,3.08],[-156.87,4.89],[-153.32,6.57],[-149.41,7.66],[-145.29,8.52],[-138.61,11.74],[-131.28,16.07],[-128.54,15.11],[-123.49,12.22],[-122.68,11.49],[-122.18,10.12],[-121.4,9.9],[-120.25,10.12],[-119.68,9.49],[-119.19,8.12],[-115.97,6.43],[-111.6,4.58],[-107.73,1.27],[-102.52,-2.03],[-85.69,-10.79],[-84.34,-27.96],[-82.26,-54],[-98.62,-88.97],[-134.49,-99.91],[-145.22,-103.39],[-153.98,-105.45],[-158.99,-109.38],[-163.86,-111.12],[-173.38,-120.71],[-183.4,-139.13],[-200.3,-167.42],[-217.3,-177.5],[-256.43,-179.57]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-300.54,-177.62],[-290.46,-167.01],[-278.45,-151.06],[-264.86,-124.09],[-253.81,-110.84],[-252.64,-111.03],[-251.85,-110.93],[-251.35,-109.59],[-247.46,-106.46],[-229.69,-101.39],[-214.98,-98.33],[-205.81,-95.12],[-199.05,-90.39],[-194.09,-83.12],[-189.04,-69.26],[-190.9,-35.52],[-187.04,-13.62],[-182.15,-7.52],[-177.84,-4.93],[-177.35,-3.59],[-176.77,-2.85],[-175.64,-3.04],[-174.82,-2.92],[-174.37,-1.58],[-171.88,0.18],[-164.35,2.42],[-157.97,4.36],[-154.55,6],[-150.77,7.4],[-146.67,8.22],[-141.47,9.95],[-133.51,14.79],[-130.04,16],[-125.27,13.22],[-122.84,11.93],[-122.35,10.59],[-121.77,9.85],[-120.64,10.04],[-119.83,9.93],[-119.36,8.58],[-117.67,7.14],[-112.93,5.15],[-109.47,2.53],[-104.25,-1.02],[-95.49,-6.52],[-82.84,-19.59],[-83.62,-44.89],[-85.51,-80.29],[-124.8,-97.56],[-143.73,-102.48],[-150.26,-105.12],[-157.78,-107.4],[-161.51,-110.94],[-169.6,-115.53],[-180.19,-131.87],[-193.26,-157.94],[-213.86,-176.12],[-238.55,-182.27],[-287.27,-181.94]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-293.86,-170.61],[-284,-159],[-269.44,-132.84],[-254,-111],[-253.03,-110.96],[-252,-111],[-251.51,-110.04],[-251,-109],[-235.75,-102.96],[-218,-99],[-208.79,-96.28],[-201,-92],[-195.65,-85.61],[-192,-78],[-190.31,-46.74],[-188,-16],[-183.88,-9.44],[-178,-5],[-177.52,-4.04],[-177,-3],[-176.02,-2.97],[-175,-3],[-174.52,-2.03],[-174,-1],[-166.91,1.69],[-159,4],[-155.71,5.45],[-152,7],[-148.04,7.94],[-144,9],[-136.06,13.27],[-130,16],[-126.9,14.17],[-123,12],[-122.52,11.04],[-122,10],[-121.02,9.97],[-120,10],[-119.52,9.04],[-119,8],[-114.45,5.79],[-111,4],[-105.99,0.13],[-101,-3],[-84,-16],[-84,-36],[-83,-60],[-117,-95],[-142,-102],[-147,-104],[-157,-107],[-160,-110],[-165,-112],[-176,-125],[-187,-146],[-209,-173],[-224,-179],[-275,-181]],"c":true}],"h":1},{"t":229,"s":[{"i":[[-300.32,-185.16],[-303.96,-183.37],[-303.81,-182.53],[-303.54,-181.8],[-303.16,-181.18],[-298.35,-175.84],[-291.5,-168.17],[-285,-160.02],[-278.45,-149.63],[-272.11,-137.85],[-265.03,-124.74],[-256.54,-113.59],[-252.68,-111.49],[-252.17,-110.12],[-242.87,-105.45],[-224.98,-101.11],[-214.68,-98.6],[-207.47,-95.85],[-196.48,-87.03],[-190.08,-67.99],[-190.77,-44.07],[-190.71,-20.3],[-182.3,-7.6],[-167.65,0.86],[-156.97,4.57],[-148.15,6.86],[-138.58,10.94],[-130.49,15.1],[-126.07,13.75],[-119.79,9.14],[-111.61,3.89],[-103.62,-1.33],[-98.96,-4.34],[-96.07,-6.3],[-90.8,-9.38],[-84.48,-13.56],[-84.27,-16.6],[-85.01,-23.79],[-84.79,-29.92],[-84.1,-35.87],[-83.65,-56.47],[-88.24,-75.96],[-93.48,-81.92],[-95.01,-84.24],[-98.59,-87.03],[-101.53,-89.15],[-115.24,-95.54],[-135.71,-101.01],[-149.16,-105],[-159.41,-108.48],[-161.96,-110.7],[-163.57,-111.59],[-164.64,-112.42],[-165.58,-112.67],[-178.41,-127.8],[-192.65,-156.64],[-203.56,-168.66],[-211.82,-174.93],[-229.84,-180.48],[-259.31,-180.39],[-283.96,-182.75]],"o":[[-303.99,-183.67],[-303.87,-182.79],[-303.64,-182.03],[-303.3,-181.37],[-300.68,-178.38],[-293.76,-170.74],[-287.12,-162.81],[-280.65,-153.46],[-274.18,-141.83],[-267.51,-129.45],[-259.54,-116.82],[-252.85,-111.93],[-252.35,-110.59],[-248.38,-107.4],[-231.17,-102.31],[-217.44,-99.43],[-209.69,-96.81],[-200.44,-91.78],[-191.3,-75.14],[-189.92,-52.67],[-191.17,-27.89],[-185.97,-11.03],[-173.14,-1.66],[-159.64,3.89],[-151.23,6.06],[-141.84,9.15],[-132.91,13.92],[-127.93,14.93],[-122,10.85],[-114.55,5.81],[-106.14,0.33],[-99.92,-3.69],[-97.03,-5.64],[-93.31,-8.1],[-86.38,-12.11],[-84.01,-14.96],[-84.77,-21.02],[-84.99,-27.99],[-84.35,-33.86],[-83.53,-47.98],[-86.01,-70.46],[-92.98,-81.05],[-94.5,-83.52],[-97.58,-86.21],[-100.57,-88.5],[-108.64,-93.29],[-128.78,-99.41],[-145.2,-104.01],[-156.26,-107.24],[-161.42,-110.4],[-163.03,-111.29],[-164.34,-112.33],[-165.26,-112.59],[-173.34,-118.73],[-188.07,-146.76],[-200.9,-166.2],[-209.02,-173.03],[-221.18,-179.53],[-248.9,-180.91],[-277.3,-181.41],[-295.47,-184.62]],"v":[[-304,-184],[-303.92,-183.08],[-303.72,-182.28],[-303.42,-181.59],[-303,-181],[-296.05,-173.29],[-289.31,-165.49],[-283,-157],[-276.32,-145.73],[-270,-134],[-262.28,-120.78],[-253,-112],[-252.51,-111.04],[-252,-110],[-237.02,-103.88],[-220,-100],[-212.18,-97.71],[-206,-95],[-193.89,-81.08],[-190,-60],[-190.97,-35.98],[-188,-15],[-177.72,-4.63],[-162,3],[-154.1,5.32],[-145,8],[-135.74,12.43],[-129,15],[-124.04,12.3],[-118,8],[-108.88,2.11],[-101,-3],[-98,-4.99],[-95,-7],[-88.59,-10.74],[-84,-15],[-84.52,-18.81],[-85,-26],[-84.57,-31.89],[-84,-38],[-84.83,-63.46],[-92,-80],[-93.99,-82.72],[-96,-85],[-99.58,-87.76],[-103,-90],[-122.01,-97.47],[-142,-103],[-152.71,-106.12],[-161,-110],[-162.49,-110.99],[-164,-112],[-164.95,-112.5],[-166,-113],[-183.24,-137.28],[-199,-164],[-206.29,-170.84],[-214,-176],[-239.37,-180.69],[-270,-181],[-289.71,-183.68]],"c":true}],"h":1},{"t":230,"s":[{"i":[[-299.27,-186.69],[-303.89,-182.77],[-303.31,-181.36],[-295.07,-172.11],[-281.6,-155.41],[-277.27,-147.34],[-276.45,-144.8],[-273.33,-139.28],[-269.34,-132.32],[-263.57,-122.51],[-256.57,-113.71],[-250.01,-109.6],[-243.43,-106.8],[-234.18,-103.9],[-224.92,-101.64],[-219.74,-100.69],[-215.97,-100.31],[-213.35,-99.18],[-210.92,-97.42],[-207.81,-96.25],[-204.58,-95.41],[-200.63,-92],[-196.85,-86.53],[-193.6,-79.99],[-191.29,-71.65],[-190.87,-56.62],[-192.57,-37.43],[-190.33,-20.86],[-184.2,-10.8],[-177.92,-5.37],[-172.78,-1.81],[-162.62,2.01],[-149.24,5.39],[-139.96,9.67],[-130.31,15.05],[-125.97,13.73],[-119.65,9.05],[-111.55,3.84],[-103.7,-1.3],[-96.95,-5.49],[-91.62,-8.84],[-87.41,-11.71],[-85.39,-13.73],[-85.05,-17.16],[-86.03,-23.96],[-85.39,-39.38],[-84.38,-60.3],[-89.32,-76.5],[-92.34,-82.24],[-101.97,-89.52],[-125.63,-98.69],[-139.95,-103.04],[-158.94,-108.07],[-164.15,-112.19],[-166.17,-113.35],[-185.02,-139.36],[-195.67,-157.83],[-204.32,-169.34],[-208.62,-172.75],[-212.03,-174.46],[-253.71,-180.19]],"o":[[-303.99,-183.34],[-303.55,-181.78],[-299.52,-176.91],[-286.11,-161.36],[-277.55,-148.19],[-276.73,-145.65],[-274.65,-141.62],[-270.67,-134.63],[-265.78,-126.16],[-258.96,-116.29],[-252.04,-110.7],[-245.7,-107.65],[-237.47,-104.83],[-227.91,-102.3],[-221,-100.78],[-217.22,-100.45],[-214.14,-99.72],[-211.74,-98.03],[-209.02,-96.55],[-205.59,-95.68],[-202.21,-93.74],[-197.95,-88.4],[-194.71,-82.66],[-191.89,-74.48],[-190.34,-62.9],[-191.99,-43.89],[-191.48,-25.21],[-186.69,-13.65],[-179.53,-6.72],[-174.55,-2.92],[-167,0.81],[-153.74,4.29],[-143.31,7.64],[-133.46,13.37],[-127.89,14.96],[-121.85,10.78],[-114.45,5.74],[-106.18,0.32],[-98.89,-4.33],[-93.32,-7.75],[-88.47,-11.1],[-85.87,-13.02],[-84.79,-15.68],[-85.67,-21.3],[-85.95,-32.23],[-84.6,-53.41],[-85.93,-72.02],[-92.59,-80.77],[-96.38,-86.88],[-114.86,-95.88],[-137.11,-101.86],[-149.45,-106.04],[-162.84,-111.8],[-165.69,-113.66],[-176.98,-121.8],[-193.55,-154.54],[-201.43,-165.67],[-208.33,-171.15],[-209.95,-173.61],[-229.79,-184.35],[-288.89,-182.71]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-290.59,-166.74],[-278,-149],[-277,-146.49],[-276,-144],[-272,-136.95],[-268,-130],[-261.27,-119.4],[-254,-112],[-247.86,-108.63],[-241,-106],[-231.04,-103.1],[-222,-101],[-218.48,-100.57],[-215,-100],[-212.55,-98.61],[-210,-97],[-206.7,-95.97],[-204,-95],[-199.29,-90.2],[-196,-85],[-192.75,-77.24],[-191,-69],[-191.43,-50.25],[-192,-31],[-188.51,-17.26],[-181,-8],[-176.23,-4.14],[-171,-1],[-158.18,3.15],[-145,7],[-136.71,11.52],[-129,15],[-123.91,12.26],[-118,8],[-108.86,2.08],[-101,-3],[-95.13,-6.62],[-90,-10],[-86.64,-12.37],[-85,-15],[-85.36,-19.23],[-86,-27],[-85,-46.39],[-85,-65],[-92,-80],[-93,-83],[-107,-92],[-134,-101],[-143,-104],[-162,-111],[-165,-113],[-167,-114],[-191,-150],[-198,-161],[-208,-171],[-209,-173],[-213,-175],[-279,-182]],"c":true}],"h":1},{"t":231,"s":[{"i":[[-298.67,-186.82],[-303.9,-182.77],[-303.29,-181.39],[-299.34,-176.53],[-292.45,-169.01],[-286.15,-160.86],[-280.77,-152.08],[-272,-135.73],[-259.69,-116.11],[-254.25,-112.33],[-253.35,-111.22],[-249.84,-109.47],[-243.9,-107.67],[-237.98,-105.51],[-232.03,-103.43],[-225.47,-102.39],[-218.32,-101.71],[-214.53,-100.26],[-211.99,-98.45],[-208.87,-97.29],[-205.59,-96.42],[-201.05,-92.37],[-195.83,-84.87],[-191.17,-60.39],[-192.17,-23.17],[-182.98,-9.34],[-172.38,-2.78],[-160.74,1.51],[-149.42,4.71],[-140.14,9.07],[-129.36,15.1],[-125.73,13.7],[-119.54,8.98],[-114,5.46],[-108.47,1.94],[-102.16,-2.15],[-94.09,-7.06],[-91.68,-8.51],[-91.18,-9.88],[-88.47,-11.31],[-85.14,-12.65],[-85.18,-14.7],[-85.93,-22.23],[-85.71,-37],[-84.65,-54.75],[-86.45,-67.97],[-90.71,-79.66],[-92.42,-81.64],[-92.68,-82.59],[-99.11,-88.75],[-111.22,-94.64],[-118.15,-97.12],[-122.48,-98.55],[-149.9,-104.78],[-161.85,-112.25],[-166.78,-114.05],[-185.5,-139.96],[-196.85,-159],[-207.17,-170.9],[-219.78,-178.38],[-259.24,-180.81]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-301.36,-178.78],[-294.88,-171.64],[-288.02,-163.57],[-282.53,-155.12],[-275.66,-143.17],[-264.02,-122.19],[-254.57,-112.72],[-253.63,-111.58],[-251.64,-110.13],[-245.97,-108.23],[-239.97,-106.29],[-234.01,-104.08],[-227.81,-102.53],[-220.73,-101.98],[-215.28,-100.78],[-212.88,-99.09],[-210.07,-97.58],[-206.63,-96.71],[-203.14,-94.69],[-197.39,-87.46],[-190.83,-73.55],[-191.84,-35.2],[-185.79,-12.2],[-176.27,-4.63],[-164.52,0.41],[-153.18,3.66],[-143.96,6.77],[-132.84,13.23],[-127.45,14.96],[-121.77,10.71],[-116.02,6.74],[-110.23,3.06],[-104.86,-0.37],[-96.78,-5.49],[-91.84,-8.07],[-91.35,-9.41],[-89.9,-10.74],[-86.09,-12.27],[-84.96,-13.08],[-85.67,-19.27],[-86.13,-30.62],[-84.96,-49.06],[-85.34,-63.14],[-89.13,-76.23],[-92.33,-81.34],[-92.59,-82.26],[-95.5,-86.18],[-106.97,-92.98],[-116.66,-96.6],[-121.06,-98.1],[-136.03,-102.53],[-161.12,-110.58],[-164.74,-114.14],[-177.83,-122.68],[-194.41,-155.09],[-202.83,-167.34],[-217.04,-177.23],[-240.88,-183.12],[-288.97,-182.8]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-297.11,-174.09],[-290,-166],[-284.34,-157.99],[-279,-149],[-268.01,-128.96],[-255,-113],[-253.94,-111.95],[-253,-111],[-247.91,-108.85],[-242,-107],[-236,-104.79],[-230,-103],[-223.1,-102.18],[-216,-101],[-213.7,-99.67],[-211,-98],[-207.75,-96.99],[-205,-96],[-199.22,-89.92],[-195,-83],[-191.5,-47.79],[-188,-16],[-179.63,-6.98],[-168,-1],[-156.96,2.59],[-146,6],[-136.49,11.15],[-128,15],[-123.75,12.21],[-118,8],[-112.12,4.26],[-107,1],[-99.47,-3.82],[-92,-8],[-91.52,-8.96],[-91,-10],[-87.28,-11.79],[-85,-13],[-85.42,-16.99],[-86,-25],[-85.34,-43.03],[-85,-59],[-87.79,-72.1],[-92,-81],[-92.5,-81.95],[-93,-83],[-103.04,-90.87],[-115,-96],[-119.61,-97.61],[-124,-99],[-160,-110],[-163,-113],[-168,-115],[-192,-151],[-199,-162],[-212,-174],[-227,-180],[-277,-182]],"c":true}],"h":1},{"t":232,"s":[{"i":[[-298.01,-186.59],[-303.9,-182.77],[-303.29,-181.39],[-298.55,-175.45],[-290.83,-166.97],[-287.31,-162.69],[-285.76,-159.17],[-284.02,-156.69],[-282.38,-154.67],[-281.31,-152.4],[-280.49,-149.86],[-279.46,-148.66],[-278.15,-148.21],[-277.57,-147.06],[-277.16,-145.31],[-275.16,-141.59],[-272.73,-137.27],[-267.27,-127.59],[-259.03,-116.01],[-255.25,-113.33],[-254.35,-112.22],[-250.47,-110.24],[-244.8,-108.62],[-237.16,-106.08],[-228.11,-103.47],[-212.22,-99.61],[-198.77,-90.15],[-192.58,-62.59],[-193.65,-25.45],[-182.88,-9.75],[-168.44,-1.59],[-161.64,0.72],[-158.05,1.64],[-152.54,3.37],[-146.02,5.21],[-138.44,8.98],[-129.74,14.06],[-125.73,12.76],[-118.62,9.02],[-107.2,0.85],[-98.63,-4.29],[-86.89,-11.24],[-86.76,-19.12],[-87.09,-29.75],[-85.53,-68.12],[-92.75,-81.47],[-112.29,-96.68],[-130.4,-101.06],[-140.78,-104.06],[-160.78,-109.92],[-166.15,-114.18],[-176.64,-124.21],[-187.56,-140.96],[-194.46,-155.39],[-199.24,-161.83],[-206.02,-168.46],[-209.14,-172.35],[-213.74,-174.43],[-215.56,-176.77],[-227.98,-181.31],[-260.89,-181.25]],"o":[[-304.01,-183.32],[-303.54,-181.8],[-301.13,-178.46],[-293.4,-169.7],[-287.93,-163.85],[-286.22,-160.34],[-284.58,-157.36],[-282.92,-155.34],[-281.56,-153.22],[-280.77,-150.72],[-279.89,-148.8],[-278.6,-148.36],[-277.74,-147.65],[-277.28,-145.88],[-276.05,-143.21],[-273.51,-138.63],[-269.75,-132.08],[-261.91,-119.55],[-255.57,-113.72],[-254.63,-112.58],[-252.32,-110.93],[-246.71,-109.08],[-240.36,-107.09],[-231.04,-104.27],[-218.34,-101.28],[-202.43,-94.05],[-192,-75.11],[-193.4,-37.76],[-186.91,-13.2],[-173.65,-3.94],[-162.86,0.41],[-159.23,1.34],[-154.78,2.76],[-148.16,4.59],[-141.57,6.95],[-132.52,12.53],[-126.17,13.94],[-121.26,9.88],[-112.74,5.3],[-100.71,-2.9],[-91.79,-8.72],[-85.52,-15.5],[-87.19,-26.05],[-86.55,-49.75],[-90.86,-79.89],[-100.73,-91.25],[-126.47,-101.07],[-137.58,-102.93],[-150.43,-106.87],[-164.84,-113.8],[-171.21,-119.03],[-182.95,-134.35],[-192.64,-149.89],[-198.1,-159.19],[-203.27,-166.8],[-208.84,-170.65],[-211.56,-174.18],[-215.36,-175.16],[-220.04,-179.09],[-245.85,-183.07],[-287.16,-182.75]],"v":[[-304,-184],[-303.72,-182.28],[-303,-181],[-295.97,-172.57],[-289,-165],[-286.77,-161.52],[-285,-158],[-283.47,-156.02],[-282,-154],[-281.04,-151.56],[-280,-149],[-279.03,-148.51],[-278,-148],[-277.43,-146.47],[-277,-145],[-274.33,-140.11],[-272,-136],[-264.59,-123.57],[-256,-114],[-254.94,-112.95],[-254,-112],[-248.59,-109.66],[-243,-108],[-234.1,-105.17],[-226,-103],[-207.33,-96.83],[-196,-84],[-192.99,-50.17],[-189,-17],[-178.26,-6.84],[-164,0],[-160.44,1.03],[-157,2],[-150.35,3.98],[-144,6],[-135.48,10.76],[-128,14],[-123,11],[-117,8],[-104,-1],[-96,-6],[-86,-14],[-87,-23],[-87,-33],[-90,-78],[-94,-83],[-123,-100],[-134,-102],[-144,-105],[-164,-113],[-167,-115],[-179,-128],[-191,-147],[-196,-157],[-201,-164],[-208,-170],[-210,-173],[-215,-175],[-216,-177],[-235,-182],[-274,-182]],"c":true}],"h":1},{"t":233,"s":[{"i":[[-299.81,-186.7],[-303.91,-182.76],[-303.25,-181.41],[-299.39,-175.97],[-293.01,-168.6],[-284.46,-156.69],[-275.47,-141.37],[-272.25,-135.28],[-271.43,-132.73],[-270.46,-131.65],[-269.16,-131.21],[-268.57,-130.04],[-268.22,-128.35],[-264.5,-122.83],[-258.57,-116.04],[-255.15,-113.82],[-252.79,-112.45],[-249.74,-110.79],[-246.5,-109.55],[-235.7,-106.31],[-221.2,-103.32],[-213.54,-100.89],[-208.16,-98.74],[-206.29,-97.15],[-205.39,-95.31],[-203.49,-94.16],[-201.43,-93.48],[-200.89,-92.44],[-201.1,-91.22],[-200.49,-90.68],[-199.12,-90.18],[-196.06,-84.68],[-193.34,-75.02],[-193.1,-56.29],[-194.34,-30.68],[-191.13,-21.08],[-189.02,-17.02],[-188.58,-16.36],[-188.32,-15.41],[-175.7,-5.09],[-150.81,2.64],[-136.88,9.31],[-128.6,14.1],[-120.28,9.08],[-114.81,6.5],[-106.39,0.38],[-98.63,-4.29],[-86.76,-11.41],[-86.66,-19.41],[-84.61,-64.52],[-115.17,-98.39],[-144.41,-105.14],[-152.37,-108.75],[-156.65,-109.42],[-167.87,-116.16],[-178.09,-125.78],[-184.37,-135.25],[-200.38,-167.21],[-211.64,-173.75],[-231.75,-182.25],[-269.13,-182.07]],"o":[[-304.03,-183.31],[-303.52,-181.81],[-301.39,-178.42],[-295.2,-171.06],[-287.72,-161.75],[-278.33,-146.5],[-272.53,-136.17],[-271.7,-133.56],[-270.88,-131.8],[-269.6,-131.36],[-268.71,-130.61],[-268.32,-128.91],[-266.47,-125.56],[-260.55,-118.07],[-256.01,-114.34],[-253.54,-112.88],[-250.73,-111.27],[-247.62,-109.93],[-240.6,-107.4],[-226,-104.27],[-215.46,-101.52],[-209.89,-99.5],[-206.59,-97.74],[-205.69,-95.93],[-204.27,-94.42],[-202.07,-93.69],[-200.84,-92.83],[-201.02,-91.63],[-200.93,-90.84],[-199.59,-90.35],[-197.39,-87.67],[-194.03,-78.36],[-192.18,-64.7],[-194.18,-39.28],[-191.87,-22.57],[-189.71,-18.31],[-188.67,-16.65],[-188.41,-15.74],[-183.05,-8.66],[-159.58,0.56],[-140.08,7.26],[-131.14,12.73],[-125.32,13.9],[-116.05,6.4],[-110.46,3.8],[-100.71,-2.9],[-91.8,-8.72],[-85.88,-14.42],[-89.21,-38.9],[-96.87,-92.91],[-137.93,-104.62],[-150.51,-107.17],[-154.76,-109.68],[-164.31,-112.72],[-175.54,-123.29],[-181.96,-132.32],[-192.77,-149.43],[-211.32,-172.14],[-220.22,-179.7],[-255.45,-183.83],[-290.13,-183.48]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-297.3,-173.52],[-291,-166],[-281.39,-151.59],[-273,-137],[-271.97,-134.42],[-271,-132],[-270.03,-131.51],[-269,-131],[-268.45,-129.47],[-268,-128],[-262.53,-120.45],[-257,-115],[-254.34,-113.35],[-252,-112],[-248.68,-110.36],[-245,-109],[-230.85,-105.29],[-217,-102],[-211.71,-100.19],[-207,-98],[-205.99,-96.54],[-205,-95],[-202.78,-93.93],[-201,-93],[-200.96,-92.03],[-201,-91],[-200.04,-90.51],[-199,-90],[-195.04,-81.52],[-193,-72],[-193.64,-47.78],[-192,-23],[-190.42,-19.69],[-189,-17],[-188.49,-16.05],[-188,-15],[-167.64,-2.27],[-143,6],[-134.01,11.02],[-127,14],[-117,7],[-114,6],[-104,-1],[-96,-6],[-86,-14],[-87,-22],[-90,-77],[-132,-103],[-150,-107],[-153,-109],[-158,-110],[-172,-120],[-180,-129],[-186,-138],[-211,-172],[-212,-174],[-243,-183],[-283,-183]],"c":true}],"h":1},{"t":234,"s":[{"i":[[-299.67,-186.74],[-303.91,-182.76],[-303.25,-181.41],[-301.25,-178.65],[-298.03,-175.25],[-296.26,-172.72],[-295.53,-170.67],[-293.75,-168.95],[-291.5,-167.66],[-287.39,-161.7],[-282.69,-152.98],[-273.69,-136.62],[-261.37,-118.94],[-254.66,-113.8],[-253.24,-112.13],[-237.46,-106.9],[-211.73,-101.4],[-206.08,-96.57],[-204.41,-96.34],[-199.24,-90.45],[-194.48,-78.62],[-193.28,-57.7],[-193.58,-30.65],[-190.76,-21.13],[-188.82,-17.88],[-187.57,-16.08],[-187.34,-14.4],[-184.61,-11.86],[-179.62,-8.94],[-164.24,-1.76],[-141.99,5.69],[-130.24,12.81],[-125.39,13.25],[-112.4,4.68],[-98.33,-4.31],[-91.65,-8.53],[-85.94,-12.16],[-86.24,-13.7],[-87.79,-19.61],[-88.22,-39.64],[-86.88,-62.96],[-88.79,-72.1],[-90.76,-78.49],[-94.38,-84.16],[-102.06,-91.12],[-104.32,-92.52],[-104.79,-93.88],[-108.93,-95.98],[-115.19,-98.34],[-128.48,-102.67],[-145.55,-107.16],[-156.62,-110.72],[-164.81,-113.61],[-171.48,-119.6],[-179.16,-126.6],[-193.19,-148.56],[-198.75,-157.63],[-198.77,-159.49],[-202.37,-163.17],[-221.75,-181.39],[-268.36,-182.15]],"o":[[-304.03,-183.31],[-303.52,-181.81],[-302.24,-179.78],[-299.15,-176.38],[-296.49,-173.39],[-295.78,-171.36],[-294.5,-169.37],[-292.25,-168.09],[-289.05,-164.46],[-284.22,-155.96],[-277.26,-143.4],[-265.75,-124.39],[-255.3,-114.48],[-253.64,-112.62],[-246.6,-108.45],[-220.03,-103.38],[-206.62,-96.65],[-204.97,-96.42],[-201.5,-93.89],[-195.73,-82.81],[-192.99,-67.38],[-193.57,-39.34],[-191.36,-22.7],[-189.49,-18.72],[-187.65,-16.63],[-187.42,-14.96],[-186.05,-12.89],[-181.4,-9.89],[-171.74,-4.35],[-149.36,3.27],[-132.05,11.18],[-126.91,13.85],[-117.23,7.83],[-102.95,-1.39],[-93.68,-7.2],[-87.78,-11.01],[-85.85,-12.39],[-87.21,-17.31],[-88.78,-30.91],[-87.27,-55.66],[-88.16,-69.86],[-90.09,-76.42],[-92.1,-81.35],[-99.36,-89.05],[-104.17,-92.08],[-104.63,-93.42],[-106.83,-95.06],[-113.1,-97.62],[-122.71,-101.09],[-139.9,-105.7],[-153.72,-109.92],[-162.17,-112.57],[-169.71,-116.71],[-176.51,-124.4],[-187.21,-137.12],[-197.15,-157.32],[-199.31,-158.46],[-199.57,-161.26],[-211.26,-174.79],[-251.59,-184.17],[-291.92,-183.62]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-300.2,-177.52],[-297,-174],[-296.02,-172.04],[-295,-170],[-293,-168.52],[-291,-167],[-285.8,-158.83],[-281,-150],[-269.72,-130.51],[-256,-115],[-254.15,-113.21],[-253,-112],[-228.75,-105.14],[-207,-97],[-205.52,-96.49],[-204,-96],[-197.48,-86.63],[-194,-75],[-193.42,-48.52],[-192,-25],[-190.13,-19.93],[-188,-17],[-187.5,-15.52],[-187,-14],[-183,-10.87],[-178,-8],[-156.8,0.75],[-136,9],[-128.58,13.33],[-122,11],[-107.67,1.64],[-94,-7],[-89.72,-9.77],[-86,-12],[-86.73,-15.5],[-88,-22],[-87.75,-47.65],[-88,-69],[-89.44,-74.26],[-91,-79],[-96.87,-86.61],[-104,-92],[-104.48,-92.97],[-105,-94],[-111.02,-96.8],[-117,-99],[-134.19,-104.19],[-151,-109],[-159.4,-111.65],[-167,-115],[-174,-122],[-181,-129],[-197,-157],[-199,-158],[-199,-160],[-203,-164],[-239,-183],[-282,-183]],"c":true}],"h":1},{"t":235,"s":[{"i":[[-297.05,-185.98],[-301.36,-178.34],[-295.4,-171.1],[-289.55,-163.57],[-284.47,-156.5],[-276.55,-142.15],[-268.52,-127.07],[-264.4,-122.49],[-260.94,-119.87],[-257.7,-116.61],[-254.88,-113.54],[-247.82,-110.14],[-235.28,-106.96],[-223.63,-104.68],[-212.28,-101.93],[-207.62,-98.87],[-205.63,-96.56],[-203.43,-94.61],[-201.55,-92.74],[-194.73,-77.39],[-195.28,-50.44],[-194.67,-33.89],[-192.54,-22.91],[-179.94,-8.93],[-152.62,0.45],[-141.46,4.97],[-136.56,7.07],[-134.65,8.54],[-134.22,9.84],[-133.01,10.43],[-131.39,10.69],[-129.57,14.01],[-120.19,9.02],[-114.81,6.5],[-106.39,0.38],[-98.57,-4.3],[-87.81,-10.76],[-87.64,-18.7],[-85.08,-65.55],[-100.12,-90.68],[-151.13,-105.32],[-176.75,-123.8],[-180.79,-128.79],[-182.19,-131.15],[-184.19,-134.15],[-186.19,-137.15],[-193.92,-149.39],[-197.75,-154.63],[-197.77,-156.49],[-199.75,-157.64],[-199.77,-159.5],[-201.75,-160.63],[-201.77,-162.49],[-203.75,-163.68],[-206.73,-168.78],[-209.57,-169.81],[-210.71,-171.75],[-215.43,-174.55],[-220.1,-178.6],[-226.07,-180.23],[-254.59,-182.69]],"o":[[-302.92,-180.79],[-297.61,-173.49],[-291.31,-165.82],[-286.13,-158.92],[-279.54,-148.11],[-271.04,-131.63],[-265.43,-123.31],[-262.15,-120.78],[-258.76,-117.84],[-255.76,-114.46],[-251.42,-111.41],[-239.74,-107.92],[-227.49,-105.21],[-216.02,-103.04],[-208.31,-99.59],[-206.28,-97.35],[-204.15,-95.25],[-202.12,-93.36],[-196.09,-85.42],[-194.32,-59.9],[-194.9,-37.68],[-193.49,-26.5],[-187.38,-13.16],[-162.56,-2.12],[-142.94,4.44],[-138.27,6.29],[-134.79,8.12],[-134.36,9.4],[-133.56,10.33],[-131.92,10.61],[-128.97,12.59],[-125.48,14],[-116.05,6.4],[-110.46,3.8],[-100.86,-2.82],[-91.26,-9.14],[-86.85,-14.61],[-91.11,-40.9],[-94.07,-84.32],[-121.27,-105.08],[-174.08,-120.32],[-180.13,-128.17],[-181.8,-129.84],[-183.8,-132.84],[-185.8,-135.84],[-191.2,-142.38],[-196.15,-154.32],[-198.31,-155.46],[-198.14,-157.31],[-200.31,-158.44],[-200.15,-160.32],[-202.31,-161.46],[-202.13,-163.29],[-205.32,-165.71],[-208.32,-170.31],[-210.27,-170.12],[-213.57,-174.18],[-219.32,-176.74],[-222.91,-179.86],[-240.43,-183.98],[-283.02,-183.26]],"v":[[-304,-184],[-299.49,-175.92],[-293,-168],[-287.84,-161.24],[-283,-154],[-273.8,-136.89],[-266,-124],[-263.28,-121.64],[-260,-119],[-256.73,-115.54],[-254,-113],[-243.78,-109.03],[-231,-106],[-219.82,-103.86],[-209,-100],[-206.95,-98.11],[-205,-96],[-202.78,-93.99],[-201,-92],[-194.52,-68.64],[-195,-41],[-194.08,-30.19],[-191,-20],[-171.25,-5.53],[-144,4],[-139.87,5.63],[-135,8],[-134.51,8.97],[-134,10],[-132.46,10.52],[-131,11],[-127,14],[-117,7],[-114,6],[-104,-1],[-96,-6],[-87,-14],[-88,-21],[-92,-80],[-105,-94],[-169,-117],[-180,-128],[-181,-129],[-183,-132],[-185,-135],[-187,-138],[-196,-154],[-198,-155],[-198,-157],[-200,-158],[-200,-160],[-202,-161],[-202,-163],[-204,-164],[-208,-170],[-210,-170],[-211,-172],[-218,-176],[-221,-179],[-229,-181],[-270,-183]],"c":true}],"h":1},{"t":236,"s":[{"i":[[-303.2,-184.56],[-303.91,-182.76],[-303.24,-181.42],[-300.19,-176.83],[-294.77,-170.33],[-288.08,-161.03],[-281.85,-150.36],[-278.27,-143.66],[-275.53,-138.56],[-274.51,-137.37],[-274.35,-136.6],[-272.16,-133.15],[-269.72,-130.07],[-263.86,-122.15],[-254.21,-113.51],[-239.84,-108.4],[-221.08,-104.95],[-205.19,-97.1],[-195.84,-81.78],[-194.56,-55.26],[-194.37,-26.79],[-185.66,-13.86],[-174.16,-7.04],[-156.94,-0.85],[-139.65,5.14],[-131.46,10.66],[-127.08,14.05],[-124.73,12.81],[-119.12,9.07],[-117.19,7.9],[-114.68,6.43],[-110.33,3.5],[-105.19,-0.31],[-101.04,-2.75],[-97.3,-5.14],[-91.63,-8.73],[-87.37,-12.4],[-87.29,-15.49],[-88.73,-20.32],[-89.86,-42.01],[-89.28,-72.41],[-93.5,-81.65],[-96.55,-85.52],[-97.42,-86.92],[-97.66,-88.62],[-99.79,-90.57],[-103.79,-93.2],[-119.58,-101.03],[-144.95,-107.26],[-169.88,-117.08],[-180.98,-128.16],[-189.24,-141.21],[-190.3,-142.91],[-193.37,-145.95],[-194.27,-149.71],[-197.3,-152.86],[-200.52,-158.9],[-209.79,-171.1],[-214.64,-174.75],[-234.77,-183.25],[-286.4,-184.93]],"o":[[-304.04,-183.3],[-303.51,-181.82],[-301.8,-178.92],[-296.67,-172.54],[-290.41,-164.59],[-283.8,-153.91],[-279.25,-145.63],[-276.41,-140.12],[-274.59,-137.57],[-274.39,-136.89],[-273.05,-134.36],[-270.49,-131],[-266.75,-125.64],[-257.59,-116.08],[-246.05,-109.67],[-227.35,-106.03],[-210.03,-100.71],[-198.1,-87.64],[-193.87,-65.86],[-194.81,-35.72],[-188.58,-16.83],[-178.45,-8.96],[-163.11,-2.67],[-145.21,3.05],[-133.17,9.13],[-128.42,13.12],[-126.42,14.02],[-121.08,10.33],[-118.1,8.44],[-115.48,6.9],[-112.23,4.9],[-106.81,0.89],[-102.39,-1.93],[-98.49,-4.36],[-93.7,-7.53],[-88.47,-11.16],[-86.92,-14.33],[-88.19,-18.48],[-90.47,-31.06],[-89.27,-62.69],[-92.47,-80.14],[-95.54,-84.34],[-97.34,-86.36],[-97.58,-88.05],[-98.64,-89.72],[-102.36,-92.31],[-111.6,-98.39],[-136.25,-105.46],[-159.12,-112.08],[-177.86,-124.55],[-186.43,-136.08],[-190.78,-142.82],[-191.59,-144.92],[-194.78,-148.3],[-195.66,-152.16],[-199.36,-156.22],[-205.86,-166.48],[-214.32,-173.14],[-223.15,-180.65],[-264.6,-185.25],[-302.38,-185.01]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-298.43,-174.69],[-293,-168],[-285.94,-157.47],[-280,-147],[-277.34,-141.89],[-275,-138],[-274.45,-137.13],[-274,-136],[-271.33,-132.07],[-269,-129],[-260.72,-119.11],[-251,-112],[-233.6,-107.21],[-216,-103],[-201.65,-92.37],[-195,-75],[-194.68,-45.49],[-191,-21],[-182.05,-11.41],[-169,-5],[-151.07,1.1],[-135,8],[-129.94,11.89],[-126,14],[-122.9,11.57],[-119,9],[-116.34,7.4],[-114,6],[-108.57,2.19],[-104,-1],[-99.76,-3.55],[-96,-6],[-90.05,-9.95],[-87,-14],[-87.74,-16.98],[-89,-22],[-89.57,-52.35],[-92,-79],[-94.52,-83],[-97,-86],[-97.5,-87.49],[-98,-89],[-101.08,-91.44],[-105,-94],[-127.92,-103.24],[-153,-110],[-173,-120],[-185,-134],[-190,-142],[-191,-144],[-194,-147],[-195,-151],[-198,-154],[-202,-161],[-214,-173],[-215,-175],[-246,-184],[-301,-185]],"c":true}],"h":1},{"t":237,"s":[{"i":[[-298.28,-185.98],[-303.91,-182.76],[-303.23,-181.42],[-299.31,-175.37],[-292.99,-167.76],[-288,-160.6],[-284.25,-154.22],[-279.63,-145.82],[-274.61,-136.57],[-268.95,-128.17],[-262.22,-120.93],[-258.58,-117.56],[-256.58,-115.35],[-244.21,-110.28],[-221.73,-105.73],[-215.44,-103.5],[-214.24,-102.11],[-211.93,-101.35],[-208.7,-100.5],[-204.75,-97.07],[-200.79,-91.5],[-195.43,-67.4],[-196.71,-29.59],[-190.78,-19.79],[-190.03,-19.03],[-187.1,-16.09],[-182.16,-12.27],[-172.57,-7.27],[-160.99,-3.37],[-150.91,0.3],[-143.17,3.92],[-139.05,5.68],[-135.74,6.53],[-131.99,9.73],[-127.53,14.03],[-124.69,12.78],[-119.06,9.04],[-117.19,7.9],[-114.68,6.43],[-113.37,5.42],[-112.33,4.21],[-104.45,-0.58],[-92.96,-7.78],[-87.31,-12.24],[-88.29,-15.87],[-90.79,-41.68],[-90.54,-76.3],[-94.53,-83.88],[-95.73,-85.63],[-106.69,-96.43],[-144.54,-108.16],[-164.49,-114.69],[-167.62,-117.71],[-170.27,-118.52],[-172.21,-120.4],[-175.2,-121.33],[-189.76,-139.9],[-198.51,-155.31],[-205.01,-163.72],[-215.06,-175.31],[-252.68,-184]],"o":[[-304.04,-183.3],[-303.51,-181.82],[-301.32,-177.99],[-295.15,-170.26],[-289.38,-162.74],[-285.44,-156.34],[-281.33,-149.04],[-276.28,-139.59],[-271.09,-130.95],[-264.51,-123.16],[-259.29,-118.38],[-257.22,-116.04],[-251.34,-112.16],[-229.41,-107.07],[-215.82,-103.94],[-214.65,-102.58],[-213.08,-101.59],[-209.74,-100.8],[-206.35,-98.82],[-201.96,-93.41],[-194.82,-80.11],[-196.37,-42.14],[-191.02,-20.03],[-190.29,-19.29],[-188.52,-17.46],[-183.92,-13.5],[-176.32,-8.83],[-164.9,-4.54],[-153.82,-0.91],[-145.58,2.71],[-140.18,5.41],[-136.83,6.24],[-133.47,7.96],[-129.02,12.76],[-126.41,14.01],[-121.01,10.29],[-118.1,8.44],[-115.48,6.9],[-113.7,5.81],[-112.68,4.61],[-108.47,1.82],[-96.7,-5.38],[-87.92,-11.56],[-87.5,-14.4],[-91.27,-29.03],[-90.43,-65.32],[-94.16,-83.32],[-95.31,-85.04],[-99.62,-91.04],[-125.68,-105.63],[-161.1,-114.12],[-167.36,-116.19],[-168.8,-118.6],[-171.96,-119.63],[-173.79,-121.6],[-182.73,-127.64],[-196.58,-151.33],[-202.69,-161.51],[-211.04,-170.63],[-231.84,-184.45],[-286.23,-184]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-297.23,-172.82],[-291,-165],[-286.72,-158.47],[-283,-152],[-277.96,-142.71],[-273,-134],[-266.73,-125.66],[-260,-119],[-257.9,-116.8],[-256,-115],[-236.81,-108.67],[-216,-104],[-215.05,-103.04],[-214,-102],[-210.83,-101.07],[-208,-100],[-203.36,-95.24],[-200,-90],[-195.9,-54.77],[-191,-20],[-190.53,-19.54],[-190,-19],[-185.51,-14.8],[-180,-11],[-168.74,-5.9],[-157,-2],[-148.24,1.51],[-141,5],[-137.94,5.96],[-135,7],[-130.5,11.25],[-126,14],[-122.85,11.54],[-119,9],[-116.34,7.4],[-114,6],[-113.02,5.01],[-112,4],[-100.57,-2.98],[-90,-10],[-87.41,-13.32],[-89,-19],[-90.61,-53.5],[-94,-83],[-94.92,-84.46],[-96,-86],[-112,-99],[-158,-113],[-167,-116],[-168,-118],[-171,-119],[-173,-121],[-176,-122],[-194,-147],[-201,-159],[-207,-166],[-220,-178],[-272,-184]],"c":true}],"h":1},{"t":238,"s":[{"i":[[-297.72,-186.1],[-303.91,-182.76],[-303.23,-181.42],[-299.93,-176.32],[-293.99,-168.82],[-284.95,-155],[-275.18,-137.84],[-268.17,-127.11],[-262.23,-119.65],[-259.03,-117.57],[-257.35,-117.22],[-256.37,-116.41],[-255.35,-115.19],[-247.21,-111.79],[-233.92,-109.17],[-220.25,-105.53],[-209.45,-100.18],[-205.48,-96.67],[-203.59,-94.79],[-196.43,-72.9],[-197.3,-33.66],[-184.23,-13.42],[-162.07,-4.43],[-146.55,0.82],[-136.15,5.53],[-130.36,10.78],[-127.46,14.01],[-124.7,12.77],[-119.06,9.04],[-117.19,7.9],[-114.68,6.43],[-113.37,5.42],[-112.33,4.21],[-104.46,-0.57],[-92.96,-7.78],[-89,-10.56],[-87.11,-11.66],[-87.3,-13.17],[-88.58,-18.41],[-90.78,-32.38],[-89.87,-52.21],[-90.87,-69.68],[-94.52,-81.34],[-100.12,-90.56],[-107.95,-96.92],[-117.74,-101.73],[-126.96,-105.13],[-143.2,-109.14],[-162.6,-114.11],[-170.29,-118.6],[-173.35,-121.5],[-176.2,-122.33],[-186.68,-134.86],[-194.3,-147.26],[-199.78,-155.81],[-204.44,-163.08],[-210.63,-169.93],[-213.71,-172.75],[-218.07,-175.88],[-223.77,-179.51],[-252.25,-184]],"o":[[-304.04,-183.3],[-303.51,-181.82],[-301.69,-178.65],[-296.08,-171.4],[-288.36,-160.83],[-278.36,-143.51],[-270.05,-130.03],[-264.25,-121.92],[-259.61,-117.71],[-257.91,-117.32],[-256.7,-116.81],[-255.7,-115.59],[-251.24,-112.96],[-238.55,-109.9],[-224.53,-106.94],[-212.71,-102.14],[-206.18,-97.27],[-204.18,-95.43],[-196.78,-85.57],[-196.69,-46.94],[-190.2,-17.7],[-170.17,-6.78],[-150.47,-0.45],[-139.38,3.8],[-131.38,9.27],[-128.4,13.14],[-126.42,14],[-121.02,10.29],[-118.1,8.44],[-115.48,6.9],[-113.7,5.81],[-112.68,4.61],[-108.48,1.82],[-96.7,-5.37],[-89.69,-10.23],[-87.7,-11.28],[-87.01,-11.96],[-88.09,-16.39],[-90.59,-26.03],[-90.42,-45.47],[-90.11,-64.76],[-93.08,-77.97],[-98.14,-87.85],[-105.02,-95.09],[-114.76,-100.42],[-123.84,-104.09],[-136.4,-107.84],[-156.3,-112.28],[-169.11,-117.6],[-172.4,-120.55],[-174.79,-122.6],[-182.41,-127.52],[-191.38,-142.14],[-198.16,-151.3],[-203.21,-160.73],[-208.24,-167.75],[-213.27,-171.12],[-216.38,-175.01],[-221.76,-178.02],[-237.9,-185.1],[-284.04,-184]],"v":[[-304,-184],[-303.71,-182.29],[-303,-181],[-298.01,-173.86],[-292,-166],[-281.65,-149.25],[-272,-133],[-266.21,-124.51],[-260,-118],[-258.47,-117.45],[-257,-117],[-256.03,-116],[-255,-115],[-242.88,-110.84],[-229,-108],[-216.48,-103.84],[-207,-98],[-204.83,-96.05],[-203,-94],[-196.56,-59.92],[-193,-24],[-177.2,-10.1],[-155,-2],[-142.97,2.31],[-133,8],[-129.38,11.96],[-126,14],[-122.86,11.53],[-119,9],[-116.34,7.4],[-114,6],[-113.02,5.01],[-112,4],[-100.58,-2.97],[-90,-10],[-88.35,-10.92],[-87,-12],[-87.69,-14.78],[-89,-20],[-90.6,-38.92],[-90,-59],[-91.97,-73.82],[-96,-84],[-102.57,-92.83],[-112,-99],[-120.79,-102.91],[-130,-106],[-149.75,-110.71],[-168,-117],[-171.35,-119.57],[-174,-122],[-177,-123],[-190,-140],[-195,-148],[-202,-159],[-206,-165],[-213,-171],[-214,-173],[-220,-177],[-225,-180],[-271,-184]],"c":true}],"h":1},{"t":239,"s":[{"i":[[-298.13,-186.65],[-303.92,-182.76],[-303.21,-181.43],[-299.93,-176.02],[-293.89,-168.7],[-285.39,-155.2],[-276.21,-137.8],[-268.61,-127.01],[-261.23,-120],[-258.68,-118.48],[-258.21,-117.12],[-242.3,-111.4],[-215.43,-105.06],[-208.97,-100.33],[-207.46,-99.42],[-197.86,-82.89],[-198.51,-49.18],[-195.87,-31.48],[-192.77,-22.81],[-190.36,-19.98],[-188.06,-16.87],[-177.96,-10.26],[-162.08,-4.71],[-149.45,-0.46],[-139.59,3.5],[-132.69,8.3],[-126.78,13.06],[-122.69,11.83],[-118.35,8.2],[-117.03,7.64],[-115.51,7.32],[-113.56,5.73],[-111.66,3.43],[-109.99,2.57],[-108.38,2.22],[-107.2,1.34],[-106.39,0.26],[-99.35,-3.71],[-87.4,-11.19],[-87.43,-13.38],[-88.75,-16.3],[-90.55,-22.23],[-91.91,-31.33],[-91.69,-45.45],[-90.5,-61.98],[-92.31,-74.55],[-95.88,-84.06],[-100.68,-91.39],[-108.67,-98.27],[-121.48,-103.93],[-136.95,-107.68],[-145.49,-109.98],[-150.45,-111.55],[-168.89,-117.02],[-174.15,-121.18],[-176.17,-122.35],[-190.61,-139.25],[-209.72,-169.34],[-218.86,-175.87],[-223.9,-178.71],[-256.39,-184.13]],"o":[[-304.06,-183.29],[-303.49,-181.82],[-301.73,-178.42],[-296.01,-171.16],[-288.53,-161.05],[-279.23,-143.58],[-271,-130.01],[-263.73,-122.01],[-258.82,-118.92],[-258.37,-117.58],[-251.59,-113.37],[-224.23,-107.25],[-209.49,-100.62],[-207.96,-99.73],[-199.61,-92.3],[-197.31,-61.33],[-196.73,-34.82],[-193.89,-25.47],[-191.08,-21.04],[-188.85,-17.89],[-182.92,-12.66],[-167.54,-6.29],[-153.16,-1.71],[-142.66,2.15],[-134.8,6.27],[-128.69,11.7],[-124.27,12.98],[-119.73,9.44],[-117.53,7.73],[-116.02,7.43],[-114.23,6.52],[-112.27,4.18],[-110.55,2.71],[-108.91,2.33],[-107.5,1.71],[-106.64,0.61],[-103.9,-1.37],[-91.1,-8.62],[-87.06,-12.73],[-88.28,-15.17],[-89.84,-19.32],[-91.58,-28.24],[-92.19,-39.71],[-90.84,-56.59],[-91.38,-70.77],[-94.57,-81.2],[-98.6,-88.76],[-105.72,-96.15],[-116.5,-102.34],[-131.7,-106.6],[-143.76,-109.46],[-148.83,-111.03],[-158.52,-113.89],[-172.84,-120.8],[-175.69,-122.66],[-184.88,-129.15],[-202.98,-159.34],[-218.06,-175.04],[-221.56,-178.45],[-241.11,-185.86],[-285.53,-183.93]],"v":[[-304,-184],[-303.7,-182.29],[-303,-181],[-297.97,-173.59],[-292,-166],[-282.31,-149.39],[-273,-133],[-266.17,-124.51],[-259,-119],[-258.52,-118.03],[-258,-117],[-233.26,-109.32],[-210,-101],[-208.46,-100.03],[-207,-99],[-197.59,-72.11],[-197,-37],[-194.88,-28.47],[-192,-22],[-189.61,-18.93],[-187,-16],[-172.75,-8.28],[-157,-3],[-146.06,0.84],[-137,5],[-130.69,10],[-125,13],[-121.21,10.63],[-118,8],[-116.53,7.54],[-115,7],[-112.92,4.96],[-111,3],[-109.45,2.45],[-108,2],[-106.92,0.97],[-106,0],[-95.22,-6.17],[-87,-13],[-87.85,-14.28],[-89,-17],[-91.06,-25.23],[-92,-34],[-91.27,-51.02],[-91,-67],[-93.44,-77.88],[-97,-86],[-103.2,-93.77],[-112,-100],[-126.59,-105.27],[-142,-109],[-147.16,-110.51],[-152,-112],[-172,-120],[-175,-122],[-177,-123],[-196,-148],[-218,-175],[-219,-176],[-227,-180],[-275,-184]],"c":true}],"h":1}]},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.0314,0.3412,0.6275,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[317.62,421.49]},"a":{"a":0,"k":[317.62,421.49]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":240,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[501,501,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-235,-347],[-227.1,-294.27],[-194.81,-225.71],[-175.11,-119.83]],"o":[[-232.37,-329.42],[-211.51,-245.63],[-179.32,-167.49],[-173,-96]],"v":[[-235,-347],[-219,-269],[-188.5,-202],[-173,-96]],"c":false}},"_render":true},{"ty":"st","c":{"a":0,"k":[0.1386,0.1401,0.1414,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":2},"lc":1,"lj":1,"ml":4,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"t":0,"s":[{"i":[[-239.16,-379.85],[-242.07,-374.73],[-245.93,-362.01],[-249.58,-348.65],[-251.89,-339.57],[-253.21,-325.83],[-252.02,-294.55],[-248.85,-260.81],[-245.07,-235.38],[-241.47,-226.97],[-232.04,-212.04],[-221.22,-195.71],[-214.06,-185.1],[-211.31,-179.04],[-198.88,-151.23],[-183.9,-118.14],[-173.42,-96.07],[-169.85,-97.33],[-164.48,-105.88],[-159.55,-116.86],[-156.3,-125.23],[-153.77,-131.77],[-150.64,-141.23],[-148.2,-151.27],[-146.95,-161.58],[-147.31,-171],[-148.74,-179.83],[-150.86,-188.53],[-153.24,-197.14],[-156.46,-208.85],[-162.16,-227.7],[-168.52,-247.13],[-173.9,-261.27],[-191.83,-293.61],[-233.44,-371.51],[-236.49,-376.48]],"o":[[-240.9,-378.1],[-244.59,-366.69],[-248.43,-353],[-251.31,-341.94],[-252.96,-334.12],[-252.74,-306.05],[-250.08,-271.93],[-246.35,-242.53],[-243.55,-230.59],[-235.71,-217.7],[-224.8,-201.04],[-215.85,-187.74],[-213.84,-184.73],[-203.82,-162.3],[-188.92,-129.15],[-176.16,-101.6],[-171.56,-95.77],[-166.31,-102.39],[-161.1,-113.12],[-157.16,-122.92],[-154.9,-128.79],[-151.64,-137.99],[-148.92,-147.87],[-147.22,-158.13],[-147.04,-168.02],[-148.16,-176.91],[-150.09,-185.64],[-152.43,-194.27],[-154.95,-203.56],[-160.07,-220.92],[-166.39,-240.81],[-172.28,-257.36],[-177.61,-267.11],[-219.74,-345.82],[-235.66,-375.05],[-238.24,-378.88]],"v":[[-240,-380],[-243.33,-370.71],[-247.18,-357.5],[-250.44,-345.3],[-252,-339],[-252.98,-315.94],[-251.05,-283.24],[-247.6,-251.67],[-244,-232],[-238.59,-222.33],[-228.42,-206.54],[-218.54,-191.72],[-214,-185],[-207.56,-170.67],[-193.9,-140.19],[-180.03,-109.87],[-173,-96],[-168.08,-99.86],[-162.79,-109.5],[-158.35,-119.89],[-156,-126],[-152.71,-134.88],[-149.78,-144.55],[-147.71,-154.7],[-147,-165],[-147.73,-173.95],[-149.42,-182.74],[-151.64,-191.4],[-154,-200],[-158.26,-214.89],[-164.27,-234.25],[-170.4,-252.25],[-175,-263],[-205.79,-319.72],[-235,-374],[-237.37,-377.68]],"c":true}],"h":1},{"t":1,"s":[{"i":[[-236.65,-377.81],[-242.13,-375.23],[-244.23,-367.77],[-248.72,-351.95],[-253.51,-330.84],[-254.22,-312.14],[-252.6,-294.07],[-251.07,-275.67],[-249.86,-257.64],[-244.04,-230.94],[-230.57,-206.2],[-219.45,-191.73],[-212.15,-180.38],[-207.42,-170.33],[-203.99,-161.52],[-202.36,-157.9],[-201.18,-156.47],[-200.33,-153.48],[-199.55,-149.29],[-198.13,-146.19],[-196.46,-143],[-189.45,-128.97],[-174.53,-96.25],[-167.03,-101.28],[-158.94,-118.4],[-153.3,-132.32],[-149.43,-184.05],[-163.93,-241.34],[-177.38,-266.62],[-193.25,-289.71],[-199.45,-307.83],[-208.19,-327.58],[-213.02,-339.18],[-216.86,-344.13],[-218.49,-348.17],[-227.24,-361.1]],"o":[[-241.26,-377.59],[-243.62,-370.32],[-246.72,-358.78],[-252.12,-337.98],[-254.42,-318.11],[-253.32,-300.12],[-251.39,-281.85],[-250.31,-263.56],[-247.25,-240.59],[-235.7,-213.75],[-222.13,-195.29],[-214.47,-184.28],[-208.68,-173.32],[-205.08,-164.43],[-202.77,-158.41],[-201.57,-156.93],[-200.55,-154.84],[-199.83,-150.71],[-198.65,-147.19],[-197.04,-144.1],[-192.63,-134.72],[-183.31,-116.56],[-170.4,-95.58],[-162.03,-110.42],[-155.02,-127.69],[-142.21,-163.65],[-161.24,-226.11],[-172.34,-260.69],[-188.18,-281.55],[-198.75,-303.35],[-204.12,-320.4],[-212.98,-336.92],[-215.04,-342.95],[-218.6,-346.99],[-223.03,-355.48],[-233.81,-371.41]],"v":[[-240,-380],[-242.87,-372.77],[-245,-365],[-250.42,-344.96],[-254,-324],[-253.77,-306.13],[-252,-288],[-250.69,-269.62],[-249,-252],[-239.87,-222.34],[-225,-199],[-216.96,-188],[-210,-176],[-206.25,-167.38],[-203,-159],[-201.96,-157.41],[-201,-156],[-200.08,-152.09],[-199,-148],[-197.59,-145.15],[-196,-142],[-186,-122],[-173,-96],[-165,-105],[-157,-123],[-152,-136],[-157,-211],[-169,-253],[-182,-273],[-197,-299],[-201,-312],[-212,-335],[-214,-341],[-218,-346],[-219,-349],[-231,-367]],"c":true}],"h":1},{"t":2,"s":[{"i":[[-236.99,-377.23],[-242.14,-375.22],[-244.23,-367.8],[-248.7,-352.07],[-253.5,-331.03],[-254.17,-307.86],[-251.73,-281.76],[-248.99,-253.58],[-243.06,-227.17],[-238.23,-217.73],[-235.66,-213.88],[-234.3,-211.99],[-233.37,-210.51],[-226.45,-201.5],[-216.89,-189.04],[-207.71,-171.23],[-199.76,-150.9],[-193.06,-136.61],[-186.9,-123.86],[-180.35,-109.96],[-173.78,-96.13],[-167.58,-99.98],[-160.55,-114.76],[-158.72,-119.4],[-157.54,-123.71],[-155.72,-127.35],[-153.41,-130.86],[-152.17,-135.2],[-151.48,-140.26],[-150.01,-144.66],[-148.26,-148.59],[-151.76,-194.54],[-168.04,-252.87],[-185.4,-276.96],[-202.8,-317.8],[-224.47,-357.71]],"o":[[-241.27,-377.57],[-243.62,-370.34],[-246.7,-358.81],[-252.1,-338.18],[-254.56,-316.23],[-252.75,-290.63],[-250.21,-263.49],[-245.41,-235.41],[-239.15,-219.3],[-236.48,-215.02],[-234.61,-212.49],[-233.67,-211.01],[-229.76,-205.48],[-220.02,-193.28],[-210.58,-178.02],[-202.3,-157.66],[-194.86,-140.43],[-189.08,-128.33],[-182.71,-115.39],[-175.88,-100.32],[-170.55,-95.6],[-162.57,-109.57],[-159.2,-117.8],[-157.89,-122.36],[-156.51,-126.17],[-154.17,-129.69],[-152.43,-133.57],[-151.69,-138.54],[-150.62,-143.37],[-148.83,-147.27],[-143.4,-174.56],[-163.4,-234.56],[-180.34,-271.62],[-198.76,-299.38],[-217.17,-346.19],[-233.66,-372.19]],"v":[[-240,-380],[-242.88,-372.78],[-245,-365],[-250.4,-345.13],[-254,-324],[-253.46,-299.24],[-251,-273],[-247.2,-244.49],[-240,-221],[-237.36,-216.38],[-235,-213],[-233.99,-211.5],[-233,-210],[-223.24,-197.39],[-214,-184],[-205,-164.44],[-197,-145],[-191.07,-132.47],[-184,-118],[-178.12,-105.14],[-173,-96],[-165.08,-104.77],[-160,-116],[-158.3,-120.88],[-157,-125],[-154.94,-128.52],[-153,-132],[-151.93,-136.87],[-151,-142],[-149.42,-145.97],[-148,-150],[-158,-216],[-176,-265],[-189,-283],[-211,-334],[-231,-368]],"c":true}],"h":1},{"t":3,"s":[{"i":[[-238.4,-379.79],[-245.83,-362.69],[-253.34,-332.77],[-254.15,-311.05],[-252.5,-292.94],[-251.15,-274.51],[-249.86,-256.57],[-245.55,-235.09],[-236.64,-215.23],[-230.13,-206.27],[-225.49,-200.94],[-213.81,-183.24],[-202.08,-156.96],[-194.56,-140.44],[-188.54,-127.39],[-181.84,-112.85],[-173.73,-96.12],[-169.17,-97.82],[-165.03,-106.83],[-160.79,-115.56],[-155.87,-125.72],[-153.73,-131.5],[-152.39,-135.77],[-149.56,-145],[-147.24,-156.78],[-148.18,-182.45],[-156.62,-210.26],[-159.39,-219.91],[-159.72,-222.99],[-165.18,-238.58],[-168.59,-251.89],[-184.49,-275.61],[-203.06,-319.2],[-217.82,-346.94],[-225.75,-359.39],[-232.68,-370.31]],"o":[[-242.66,-372.06],[-251.17,-343.05],[-254.4,-317.08],[-253.2,-298.98],[-251.47,-280.73],[-250.34,-262.43],[-247.73,-242.73],[-240.01,-221.34],[-231.64,-208.05],[-227.06,-202.72],[-218.27,-191.51],[-205.72,-165.97],[-196.29,-144.24],[-190.68,-132.02],[-184.73,-119.29],[-176.34,-101.26],[-170.91,-95.66],[-166.23,-103.41],[-162.6,-111.95],[-157.42,-122.45],[-154.29,-129.87],[-152.79,-134.45],[-150.69,-141.11],[-147.84,-152.84],[-146.37,-172.07],[-153.3,-201.54],[-159.28,-218.92],[-159.61,-221.95],[-161.99,-231.09],[-168.33,-247.97],[-174.82,-265.65],[-199.49,-301.19],[-214.05,-341.07],[-223.48,-355.95],[-230.55,-367.09],[-236.3,-376.06]],"v":[[-240,-380],[-248.5,-352.87],[-254,-323],[-253.67,-305.02],[-252,-287],[-250.74,-268.47],[-249,-251],[-242.78,-228.21],[-233,-210],[-228.59,-204.49],[-224,-199],[-209.77,-174.6],[-198,-148],[-192.62,-136.23],[-186,-122],[-179.09,-107.06],[-173,-96],[-167.7,-100.62],[-164,-109],[-159.1,-119],[-155,-128],[-153.26,-132.98],[-152,-137],[-148.7,-148.92],[-147,-161],[-150.74,-192],[-159,-218],[-159.5,-220.93],[-160,-224],[-167,-244],[-170,-255],[-190,-285],[-211,-335],[-221,-352],[-228,-363],[-235,-374]],"c":true}],"h":1},{"t":4,"s":[{"i":[[-236.79,-378.81],[-243.42,-370.75],[-247.69,-356.09],[-251.26,-341.7],[-253.7,-326.95],[-254.15,-307.9],[-252.45,-287.24],[-249.84,-256.82],[-242.47,-225.72],[-235.04,-213.21],[-230.47,-206.89],[-224.03,-198.77],[-217,-189.41],[-208.22,-172.11],[-199.52,-149],[-191.91,-134],[-186.25,-122.84],[-174.3,-96.23],[-167.87,-101.2],[-159.63,-116.13],[-157.09,-125.16],[-154.39,-130.02],[-145.62,-159.18],[-154.4,-202.62],[-166.91,-249.85],[-176.89,-266.54],[-179.75,-269.62],[-181.2,-272.86],[-185.56,-277.94],[-189.54,-285.43],[-200.85,-308.19],[-205.56,-321.93],[-216.32,-342.84],[-221.76,-351.59],[-223.19,-354.68],[-230.37,-365.89]],"o":[[-241.83,-375.45],[-246.36,-361.07],[-250.16,-346.48],[-253.03,-331.94],[-254.42,-315.03],[-253.17,-294.01],[-251.11,-268.71],[-245.52,-235.33],[-236.56,-215.51],[-232,-208.9],[-226.53,-201.81],[-219.26,-192.56],[-210.96,-179.11],[-202.5,-157.05],[-193.53,-137.08],[-188.27,-126.88],[-181.6,-112.85],[-169.45,-95.37],[-162.57,-111.91],[-157.05,-122.24],[-155.73,-128.69],[-149.15,-143.35],[-148.24,-187.33],[-163.59,-233.33],[-174.58,-263.89],[-178.15,-269.33],[-180.84,-271.3],[-183.51,-276.14],[-188.75,-282.51],[-196.56,-297.8],[-205.59,-320.53],[-210.13,-333.03],[-220.16,-351.35],[-222.76,-353.31],[-227.28,-361.38],[-235.36,-373.69]],"v":[[-240,-380],[-244.89,-365.91],[-249,-351],[-252.14,-336.82],[-254,-322],[-253.66,-300.96],[-252,-281],[-247.68,-246.07],[-238,-218],[-233.52,-211.05],[-229,-205],[-221.65,-195.67],[-215,-186],[-205.36,-164.58],[-195,-140],[-190.09,-130.44],[-184,-118],[-173,-96],[-165,-107],[-158,-120],[-156,-128],[-154,-131],[-147,-174],[-159,-218],[-173,-261],[-178,-269],[-180,-270],[-182,-274],[-187,-280],[-191,-288],[-205,-319],[-206,-323],[-220,-351],[-222,-352],[-224,-356],[-233,-370]],"c":true}],"h":1},{"t":5,"s":[{"i":[[-236.84,-378.88],[-246.06,-362.29],[-253.58,-331.28],[-253.94,-306.73],[-252.4,-285.8],[-250.99,-265.24],[-248.3,-246.29],[-245.57,-235.19],[-243.1,-227.34],[-238.98,-219.67],[-234.06,-212.34],[-232.49,-209.68],[-231.12,-209.19],[-230.37,-207.75],[-229.42,-205.56],[-224.01,-198.69],[-216.91,-189.33],[-209.96,-176.1],[-203.93,-160.79],[-199.42,-150.18],[-195.49,-142.96],[-188.26,-127.16],[-173.81,-96.14],[-159.18,-118.74],[-145.19,-156.34],[-154.29,-203.74],[-165.33,-241.11],[-173.14,-260.97],[-179.65,-270.66],[-187.03,-280.86],[-205.57,-325.29],[-216.07,-344.55],[-219.41,-348.03],[-220.27,-351.72],[-223.34,-354.94],[-230.2,-365.63]],"o":[[-242.77,-371.65],[-251.46,-342.11],[-254.24,-313.58],[-253.02,-292.84],[-251.59,-272.1],[-249.35,-252.34],[-246.27,-238.02],[-243.98,-229.85],[-240.71,-222.25],[-235.66,-214.72],[-232.92,-209.83],[-231.58,-209.36],[-230.66,-208.47],[-229.75,-206.3],[-226.56,-201.78],[-219.19,-192.47],[-212.25,-181.2],[-205.8,-165.9],[-200.67,-152.7],[-196.83,-145.31],[-190.87,-133.78],[-180.92,-111.38],[-167.86,-95.09],[-150.37,-140],[-148.29,-188.35],[-162.32,-229.76],[-170.82,-255.91],[-177.53,-268.12],[-184.6,-277.71],[-199.84,-301.35],[-215.85,-343.51],[-217.48,-346.75],[-220.78,-350.28],[-221.54,-353.96],[-227.52,-361.64],[-235.34,-373.65]],"v":[[-240,-380],[-248.76,-352.2],[-254,-320],[-253.48,-299.79],[-252,-279],[-250.17,-258.79],[-247,-241],[-244.78,-232.52],[-242,-225],[-237.32,-217.2],[-233,-210],[-232.04,-209.52],[-231,-209],[-230.06,-207.02],[-229,-205],[-221.6,-195.58],[-215,-186],[-207.88,-171],[-202,-156],[-198.12,-147.75],[-194,-140],[-184,-118],[-173,-96],[-157,-124],[-147,-175],[-159,-219],[-169,-251],[-175,-264],[-182,-274],[-189,-284],[-215,-342],[-217,-346],[-220,-349],[-221,-353],[-224,-356],[-233,-370]],"c":true}],"h":1},{"t":6,"s":[{"i":[[-237.53,-379.24],[-242.11,-374.68],[-245.2,-366.76],[-246.44,-361.4],[-246.65,-357.35],[-247.89,-353.73],[-249.71,-350.19],[-254.03,-326.88],[-251.66,-288.51],[-250.8,-262.51],[-240.66,-221.13],[-228.07,-204.38],[-225.25,-201.36],[-220.28,-194.42],[-206.49,-166.53],[-196.85,-145.67],[-188.46,-127.57],[-174.29,-96.23],[-161.43,-113.73],[-148.21,-145],[-146.69,-171.47],[-154.31,-204.1],[-168.34,-253.13],[-178.39,-268.59],[-184.55,-277.44],[-195.56,-295.9],[-201.08,-309.55],[-203.82,-317.96],[-207.85,-325.24],[-210.65,-334.31],[-218.93,-348.4],[-222.76,-353.59],[-224.2,-356.73],[-228.82,-364.39],[-231.75,-367.62],[-233.33,-370.93]],"o":[[-241.01,-377.29],[-244.21,-369.41],[-246.37,-362.72],[-246.58,-358.71],[-247.29,-354.88],[-249.1,-351.39],[-252.43,-339.03],[-253.96,-301.51],[-250.62,-268.82],[-247.64,-236.81],[-230.15,-206.41],[-226.86,-201.68],[-222.33,-197.15],[-211.28,-180.93],[-199.13,-149.27],[-190.92,-133.87],[-181.62,-112.89],[-167.95,-95.11],[-154.7,-129.08],[-146.62,-163.37],[-148.16,-188.25],[-163.54,-233.45],[-177.12,-267.45],[-182.77,-275.13],[-191.98,-288.22],[-200.12,-306.65],[-203.18,-315.12],[-205.97,-323.5],[-210.14,-330.71],[-214.74,-342.45],[-221.16,-353.35],[-223.7,-355.21],[-226.98,-361.14],[-230.15,-367.33],[-232.69,-369.08],[-235.74,-374.76]],"v":[[-240,-380],[-243.16,-372.04],[-246,-364],[-246.51,-360.05],[-247,-356],[-248.5,-352.56],[-250,-349],[-254,-315],[-251,-276],[-250,-256],[-232,-209],[-227,-202],[-225,-201],[-218,-191],[-202,-156],[-194,-140],[-184,-118],[-173,-96],[-160,-117],[-147,-159],[-147,-175],[-159,-219],[-175,-264],[-180,-271],[-187,-281],[-199,-304],[-202,-312],[-205,-321],[-209,-328],[-212,-337],[-221,-353],[-223,-354],[-225,-358],[-230,-367],[-232,-368],[-234,-372]],"c":true}],"h":1},{"t":7,"s":[{"i":[[-236.98,-379.18],[-242.05,-374.83],[-245.15,-366.96],[-246.42,-361.48],[-246.67,-357.26],[-247.94,-353.55],[-249.7,-350.24],[-252.21,-338.55],[-254,-321.53],[-253.59,-308.75],[-252.18,-296.91],[-251.35,-275.74],[-249.52,-252.04],[-245.18,-234.5],[-239.24,-221.49],[-234.52,-213.99],[-231.18,-208.61],[-227.2,-203.21],[-223.22,-197.77],[-214.57,-186.42],[-211.58,-177.37],[-209.55,-173.33],[-190.32,-133.86],[-174.34,-96.24],[-159.11,-118.71],[-147.94,-148.31],[-148.82,-185.51],[-158.93,-216.22],[-166.27,-243.29],[-177.91,-268.64],[-189.39,-284.45],[-199.19,-304.59],[-203.86,-318.06],[-207.94,-325.54],[-210.74,-333.44],[-226.64,-359.98]],"o":[[-240.98,-377.35],[-244.14,-369.63],[-246.33,-362.84],[-246.59,-358.69],[-247.34,-354.68],[-249.12,-351.33],[-251.21,-344.03],[-253.6,-327.3],[-254,-312.55],[-252.68,-300.93],[-251.59,-284.22],[-250.31,-259.65],[-246.81,-239.51],[-241.39,-225.49],[-235.68,-215.94],[-232.27,-210.33],[-228.59,-205.08],[-224.52,-199.56],[-218.72,-191.23],[-211.41,-179.77],[-210.33,-174.4],[-200.87,-152.29],[-177.84,-105.93],[-168.03,-95.12],[-152.71,-134.77],[-145.06,-178.01],[-155.64,-207.52],[-163.3,-232.65],[-172.46,-260.77],[-186.04,-280.4],[-196.25,-296.41],[-203.13,-314.99],[-205.97,-323.49],[-210.07,-330.5],[-218.04,-348.29],[-235.1,-373.31]],"v":[[-240,-380],[-243.1,-372.23],[-246,-364],[-246.5,-360.08],[-247,-356],[-248.53,-352.44],[-250,-349],[-252.91,-332.93],[-254,-316],[-253.14,-304.84],[-252,-293],[-250.83,-267.69],[-248,-245],[-243.29,-229.99],[-237,-218],[-233.39,-212.16],[-230,-207],[-225.86,-201.39],[-222,-196],[-212,-181],[-211,-176],[-209,-172],[-181,-113],[-173,-96],[-157,-124],[-147,-158],[-153,-199],[-161,-224],[-169,-251],[-183,-276],[-192,-289],[-202,-312],[-205,-321],[-209,-328],[-212,-336],[-233,-370]],"c":true}],"h":1},{"t":8,"s":[{"i":[[-237.65,-378.93],[-243.17,-372.09],[-246.81,-359.41],[-250.18,-346.85],[-252.7,-334.24],[-253.42,-315.44],[-252.3,-294.46],[-251.58,-273.52],[-250.33,-253.24],[-247.62,-241.25],[-245.01,-233.42],[-243.26,-228.86],[-242.44,-225.93],[-241.47,-224.67],[-240.12,-224.22],[-238.38,-220.66],[-236.55,-216.22],[-234.24,-214.38],[-232.79,-211.09],[-228.61,-206.13],[-208.04,-166.31],[-188.33,-129.32],[-175.35,-96.41],[-166.86,-102.72],[-157.9,-121.76],[-143.72,-162.47],[-160.29,-220.71],[-168.3,-246.25],[-172.41,-260.33],[-187.81,-281.72],[-193.76,-291.59],[-195.54,-295.1],[-204.08,-315.96],[-210.28,-332.4],[-226.69,-360.05],[-234.33,-372.94]],"o":[[-241.76,-376.14],[-245.69,-363.73],[-249.08,-350.98],[-251.98,-338.48],[-253.52,-322.71],[-252.81,-301.31],[-251.66,-280.65],[-250.92,-259.81],[-248.37,-244.04],[-245.94,-235.94],[-243.54,-229.89],[-242.71,-226.88],[-241.91,-224.81],[-240.57,-224.38],[-239.1,-222.3],[-237.1,-217.62],[-235.85,-214.67],[-233.27,-212.87],[-230.43,-207.84],[-212.97,-185.42],[-192.86,-136.92],[-181.15,-113.87],[-169.18,-95.32],[-161.05,-115.48],[-150.07,-141.17],[-151.38,-200.98],[-166.97,-242.39],[-171.75,-255.91],[-179.71,-272.6],[-192.16,-291.35],[-194.59,-293.02],[-200.56,-304.82],[-208.46,-328.04],[-217.81,-348.19],[-233.59,-370.94],[-236.89,-377.03]],"v":[[-240,-380],[-244.43,-367.91],[-248,-355],[-251.08,-342.67],[-253,-330],[-253.11,-308.38],[-252,-288],[-251.25,-266.67],[-249,-247],[-246.78,-238.6],[-244,-231],[-242.99,-227.87],[-242,-225],[-241.02,-224.53],[-240,-224],[-237.74,-219.14],[-236,-215],[-234,-214],[-232,-210],[-227,-204],[-196,-143],[-184,-120],[-173,-96],[-164,-109],[-157,-124],[-148,-184],[-165,-236],[-170,-251],[-174,-263],[-192,-291],[-194,-292],[-196,-296],[-207,-324],[-212,-336],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":9,"s":[{"i":[[-237.7,-378.98],[-243.17,-372.08],[-246.82,-359.41],[-250.18,-346.85],[-252.7,-334.24],[-253.38,-315.56],[-252.23,-294.59],[-251.67,-273.54],[-250.35,-253.16],[-245.9,-235.83],[-238.9,-221.52],[-229.94,-208.27],[-220.65,-195.52],[-210.55,-176.07],[-200.73,-151.87],[-194.16,-139.71],[-191.03,-134.1],[-185.97,-124.41],[-175.27,-96.4],[-167.08,-102.23],[-148.56,-142.27],[-148.55,-186.81],[-157.75,-214.57],[-169.59,-255.54],[-180.7,-272.59],[-186.98,-282.94],[-188.3,-284.91],[-191.34,-287.9],[-192.27,-291.71],[-195.37,-294.81],[-197.97,-301.65],[-207.36,-326.05],[-221.57,-353.5],[-227.34,-362.98],[-231.67,-367.93],[-234.2,-372.72]],"o":[[-241.76,-376.13],[-245.7,-363.72],[-249.08,-350.98],[-251.98,-338.48],[-253.52,-322.76],[-252.74,-301.47],[-251.75,-280.7],[-250.98,-259.77],[-247.7,-241.07],[-241.5,-226.05],[-233.11,-212.5],[-223.71,-199.77],[-213.68,-183.64],[-204.07,-160.19],[-195.15,-141.41],[-192.1,-136.06],[-188.15,-128.2],[-181.25,-113.87],[-169.23,-95.33],[-156.81,-124.78],[-145.18,-178.54],[-155.46,-207.28],[-164.97,-235.19],[-178.54,-270.14],[-184.57,-278.33],[-188.78,-284.82],[-189.78,-287.21],[-192.78,-290.3],[-193.66,-294.17],[-197.27,-298.4],[-203.67,-314.68],[-215.84,-344.22],[-226.76,-361.11],[-229.45,-366.23],[-233.68,-371.07],[-236.79,-376.86]],"v":[[-240,-380],[-244.43,-367.9],[-248,-355],[-251.08,-342.67],[-253,-330],[-253.06,-308.51],[-252,-288],[-251.32,-266.65],[-249,-247],[-243.7,-230.94],[-236,-217],[-226.82,-204.02],[-218,-191],[-207.31,-168.13],[-196,-143],[-193.13,-137.88],[-190,-132],[-184,-120],[-173,-96],[-164,-109],[-147,-159],[-153,-200],[-160,-221],[-176,-266],[-183,-276],[-188,-284],[-189,-286],[-192,-289],[-193,-293],[-196,-296],[-199,-304],[-212,-336],[-226,-360],[-228,-364],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":10,"s":[{"i":[[-234.64,-374.11],[-248.24,-357.14],[-253.67,-315.98],[-252.65,-290.64],[-252.2,-276.66],[-250.06,-251.47],[-242.02,-226.41],[-234.97,-215.36],[-230.53,-209.13],[-221.21,-195.63],[-211.59,-178.16],[-206.32,-165.63],[-202.63,-157.35],[-199.5,-150.83],[-197.61,-146.95],[-194.43,-141.35],[-191.36,-133.84],[-188.15,-127.6],[-184.93,-122.1],[-180.1,-110.47],[-173.89,-96.16],[-169.02,-98.23],[-164,-108.66],[-159.21,-118.96],[-144.18,-159.92],[-159.09,-215.23],[-169.99,-252.29],[-185.82,-280.18],[-194.69,-294.98],[-198.4,-303.27],[-202.27,-311.08],[-206.39,-322.07],[-210.06,-329.88],[-212.03,-336.99],[-216.01,-342.15],[-220.58,-352.1]],"o":[[-244.65,-369.15],[-252.75,-330.56],[-252.8,-295.31],[-252.35,-281.31],[-251.55,-261.27],[-245.3,-234.04],[-236.46,-217.54],[-232.01,-211.15],[-224.91,-201.3],[-214.55,-184.06],[-207.51,-168.46],[-203.89,-160.08],[-200.2,-152.35],[-198.21,-148.13],[-195.49,-143.68],[-192.36,-136.43],[-189.18,-129.3],[-186.02,-124.01],[-182.4,-116.4],[-175.84,-100.35],[-171.02,-95.65],[-165.51,-104.73],[-161.44,-114.65],[-151.28,-138.88],[-149.49,-197.74],[-168.16,-244.06],[-178.91,-271.67],[-192.9,-292.24],[-198.11,-300.26],[-200.87,-309.02],[-205.02,-318.32],[-208.87,-328.11],[-212.03,-334.32],[-213.78,-340.61],[-219.12,-347.98],[-227.89,-363.86]],"v":[[-240,-380],[-250.49,-343.85],[-253,-300],[-252.5,-285.98],[-252,-272],[-247.68,-242.76],[-238,-220],[-233.49,-213.26],[-229,-207],[-217.88,-189.84],[-209,-172],[-205.1,-162.86],[-201,-154],[-198.86,-149.48],[-197,-146],[-193.39,-138.89],[-190,-131],[-187.09,-125.8],[-184,-120],[-177.97,-105.41],[-173,-96],[-167.27,-101.48],[-163,-111],[-158,-122],[-147,-180],[-165,-234],[-174,-261],[-191,-289],[-196,-297],[-200,-307],[-203,-313],[-208,-326],[-211,-332],[-213,-339],[-217,-344],[-223,-356]],"c":true}],"h":1},{"t":11,"s":[{"i":[[-237.77,-379.1],[-245.4,-364.93],[-252.34,-338.23],[-253.21,-319.38],[-252.26,-303.5],[-251.9,-287.08],[-252.32,-271.09],[-248.01,-238.84],[-238.85,-222.07],[-233.83,-213.56],[-227.45,-205.97],[-224.8,-200.18],[-221.66,-196.99],[-215.89,-188.01],[-210.06,-172.1],[-204.58,-160.26],[-194.58,-140.33],[-186.62,-126.48],[-184.74,-119.71],[-181.57,-115.33],[-179.73,-108.58],[-178.52,-105.13],[-168.2,-99.37],[-154.26,-130.26],[-148.65,-148.34],[-150.35,-194.17],[-166.5,-240.77],[-173.88,-262.54],[-181.32,-274.28],[-184.75,-278.62],[-186.23,-281.86],[-191.26,-290.23],[-195.63,-297.52],[-203.25,-313.06],[-214.63,-340.69],[-230.58,-366.92]],"o":[[-242.48,-373.06],[-250.33,-347.51],[-253.33,-324.38],[-252.68,-308.94],[-251.74,-292.54],[-252.19,-276.36],[-251.15,-252.26],[-241.99,-225.56],[-235.13,-215.9],[-230.05,-208.29],[-225.09,-202.77],[-223.22,-197.86],[-218.23,-191.87],[-211.39,-178.47],[-206.14,-163.02],[-198.74,-148.21],[-188.94,-128.84],[-184.4,-121.7],[-183.36,-116.53],[-179.9,-111.44],[-178.73,-106.42],[-170.98,-88.81],[-156.65,-125.19],[-149.98,-145.68],[-143.47,-177.68],[-163.4,-228.61],[-171.8,-256.25],[-178.65,-270.32],[-183.15,-278.33],[-185.83,-280.29],[-188.39,-285.06],[-194.59,-293.71],[-200.59,-306.49],[-210.3,-330.84],[-224.84,-358.39],[-236.66,-376.66]],"v":[[-240,-380],[-247.86,-356.22],[-253,-329],[-252.94,-314.16],[-252,-298],[-252.04,-281.72],[-252,-266],[-244,-230],[-237,-219],[-232,-211],[-226,-204],[-224,-199],[-221,-196],[-214,-184],[-207,-165],[-203,-157],[-190,-131],[-185,-123],[-184,-118],[-181,-114],[-179,-107],[-178,-104],[-163,-111],[-151,-142],[-148,-152],[-159,-217],[-170,-251],[-176,-266],[-183,-278],[-185,-279],[-187,-283],[-192,-291],[-197,-300],[-206,-320],[-220,-350],[-235,-374]],"c":true}],"h":1},{"t":12,"s":[{"i":[[-237.62,-378.87],[-245.33,-365.37],[-252.3,-338.36],[-253.2,-317.78],[-252.24,-301.46],[-251.94,-284.73],[-252.37,-268.13],[-249.31,-245.74],[-240.4,-224.1],[-231.84,-211.47],[-224.26,-200.55],[-216,-186.18],[-208.73,-168.92],[-198.29,-147.58],[-184.86,-121.85],[-177.84,-105.43],[-173.63,-96.11],[-169.21,-97.64],[-164.55,-107.5],[-160.58,-116.64],[-157.82,-124.28],[-156.49,-127.56],[-155.09,-128.74],[-154.06,-131.68],[-152.48,-136.5],[-150.91,-141.41],[-149.38,-146.47],[-145.71,-172.5],[-153.63,-203.77],[-168.94,-251.02],[-183.69,-277.7],[-189.48,-287.46],[-195.87,-296.87],[-202.91,-311.69],[-213.61,-339.28],[-230.34,-366.54]],"o":[[-242.42,-373.19],[-250.27,-347.96],[-253.33,-323.05],[-252.66,-306.99],[-251.75,-290.41],[-252.25,-273.59],[-251.36,-254.19],[-243.83,-230.69],[-234.46,-215.19],[-226.74,-204.15],[-218.63,-191.72],[-211.05,-174.78],[-202.61,-155.65],[-189.42,-130.68],[-179.53,-109.62],[-174.89,-98.67],[-170.94,-95.64],[-166.01,-103.57],[-161.67,-114],[-158.66,-121.78],[-156.94,-127.19],[-155.57,-128.34],[-154.57,-130.18],[-153.01,-134.84],[-151.47,-139.68],[-149.87,-144.8],[-145.65,-161.37],[-149.7,-193.7],[-164.47,-231.64],[-179.5,-271.92],[-188.11,-284.78],[-193.53,-291.68],[-200.6,-306.07],[-209.53,-328.48],[-223.9,-357.83],[-236.95,-377.11]],"v":[[-240,-380],[-247.8,-356.67],[-253,-328],[-252.93,-312.38],[-252,-296],[-252.1,-279.16],[-252,-263],[-246.57,-238.22],[-237,-219],[-229.29,-207.81],[-222,-197],[-213.52,-180.48],[-206,-163],[-193.86,-139.13],[-181,-113],[-176.37,-102.05],[-173,-96],[-167.61,-100.6],[-163,-111],[-159.62,-119.21],[-157,-127],[-156.03,-127.95],[-155,-129],[-153.53,-133.26],[-152,-138],[-150.39,-143.11],[-149,-148],[-147.71,-183.1],[-158,-215],[-176,-265],[-187,-283],[-190,-288],[-198,-301],[-205,-317],[-219,-349],[-235,-374]],"c":true}],"h":1},{"t":13,"s":[{"i":[[-237.41,-378.93],[-245.77,-364.32],[-252.42,-336.39],[-253.13,-315.76],[-252.21,-299.56],[-252.02,-283.01],[-252.45,-266.45],[-250.36,-250.27],[-245.6,-235.61],[-242.32,-228.02],[-239.96,-222.62],[-237.87,-219.74],[-235.48,-217.73],[-234.61,-216.29],[-234.16,-215.23],[-232.83,-213.14],[-231.47,-210.76],[-230.43,-209.36],[-229.22,-208.31],[-223.66,-200.18],[-216.82,-188.12],[-212.87,-178.88],[-210.2,-174.51],[-208.79,-169.84],[-198.87,-148.68],[-180.34,-112.44],[-176.48,-101.95],[-166.96,-101.82],[-154.75,-129.81],[-145.88,-161.33],[-156.22,-209.1],[-168.67,-247.14],[-191.64,-289.17],[-213.44,-342.89],[-225.33,-358.94],[-231.75,-370.66]],"o":[[-242.8,-372.62],[-250.58,-346.2],[-253.28,-320.98],[-252.6,-305.05],[-251.79,-288.53],[-252.35,-271.97],[-251.56,-255.71],[-247.38,-240.22],[-243.09,-229.96],[-240.76,-224.35],[-238.63,-220.37],[-236.3,-218.42],[-234.79,-216.68],[-234.3,-215.57],[-233.34,-214.01],[-231.89,-211.52],[-230.82,-209.7],[-229.63,-208.67],[-226.25,-204.12],[-218.95,-192.18],[-213.63,-180.89],[-211.89,-175.63],[-209.22,-172.01],[-203.15,-156.8],[-189.45,-129.94],[-176.5,-102.74],[-170.24,-89.6],[-158.87,-120.57],[-149.03,-146.85],[-146.23,-189.17],[-166.55,-237.89],[-178.23,-272.6],[-207.68,-321.5],[-224.76,-358.02],[-228.39,-363.75],[-236.3,-375.4]],"v":[[-240,-380],[-248.17,-355.26],[-253,-326],[-252.86,-310.41],[-252,-294],[-252.19,-277.49],[-252,-261],[-248.87,-245.24],[-244,-232],[-241.54,-226.18],[-239,-221],[-237.08,-219.08],[-235,-217],[-234.46,-215.93],[-234,-215],[-232.36,-212.33],[-231,-210],[-230.03,-209.01],[-229,-208],[-221.3,-196.18],[-215,-184],[-212,-176],[-210,-174],[-208,-168],[-193,-137],[-177,-104],[-176,-101],[-163,-111],[-152,-138],[-146,-171],[-163,-228],[-172,-256],[-199,-304],[-224,-357],[-226,-360],[-234,-373]],"c":true}],"h":1},{"t":14,"s":[{"i":[[-239.47,-380.17],[-245.95,-363.84],[-252.46,-334.91],[-253.07,-314.12],[-252.17,-298.38],[-252.06,-281.95],[-252.45,-265.19],[-249.24,-244.43],[-239.38,-223.51],[-230.93,-211.04],[-224.89,-202.07],[-217.28,-188.72],[-210.19,-172.9],[-203.85,-159.22],[-197.05,-146.61],[-188.68,-130.09],[-179.03,-106.99],[-170.89,-95.53],[-165,-106.36],[-159.64,-119.14],[-155.28,-130.69],[-152.12,-138.89],[-149.6,-146.46],[-146.04,-174.1],[-153.91,-206.13],[-161.63,-225.04],[-166.65,-238.86],[-172.94,-257.38],[-181.71,-275.37],[-190.97,-289.54],[-198.02,-301],[-203.92,-313.8],[-209.14,-327.58],[-219.02,-349.26],[-233.65,-372.48],[-239.15,-379.53]],"o":[[-242.97,-372.39],[-250.69,-345.1],[-253.24,-319.18],[-252.54,-303.72],[-251.83,-287.6],[-252.37,-270.74],[-251.3,-251.93],[-243.28,-230.22],[-232.98,-214.01],[-226.88,-205.07],[-219.93,-194.02],[-212.4,-178.16],[-206.07,-163.67],[-199.34,-150.7],[-191.92,-137.59],[-182.24,-114.79],[-173.14,-95.35],[-166.82,-101.04],[-161.25,-115.04],[-156.65,-126.96],[-153.07,-136.4],[-150.39,-143.92],[-145.84,-162.29],[-150.08,-196.02],[-159.81,-220.36],[-165.05,-234.29],[-170.59,-250.94],[-178.5,-269.6],[-188.46,-285.8],[-195.75,-297.15],[-202.1,-309.26],[-207.44,-322.96],[-214.7,-340.77],[-228.5,-365.11],[-239.16,-379.2],[-239.3,-380.02]],"v":[[-240,-380],[-248.32,-354.47],[-253,-324],[-252.81,-308.92],[-252,-293],[-252.21,-276.35],[-252,-260],[-246.26,-237.33],[-235,-217],[-228.9,-208.05],[-223,-199],[-214.84,-183.44],[-208,-168],[-201.59,-154.96],[-195,-143],[-185.46,-122.44],[-176,-101],[-168.86,-98.29],[-163,-111],[-158.15,-123.05],[-154,-134],[-151.26,-141.4],[-149,-149],[-148.06,-185.06],[-158,-216],[-163.34,-229.66],[-168,-243],[-175.72,-263.49],[-186,-282],[-193.36,-293.35],[-200,-305],[-205.68,-318.38],[-211,-332],[-223.76,-357.19],[-239,-379],[-239.23,-379.78]],"c":true}],"h":1},{"t":15,"s":[{"i":[[-238.95,-380.35],[-244.69,-367.71],[-249.99,-347.44],[-252.28,-326.03],[-252.18,-304.03],[-252.19,-290.41],[-253,-280.75],[-252.29,-262.37],[-248.08,-242.23],[-244.41,-232.75],[-242.01,-226.73],[-239.79,-223.59],[-237.45,-221.66],[-236.57,-220],[-236.24,-218.38],[-228.69,-207.29],[-217.79,-191.18],[-211.82,-176.97],[-207.78,-165.49],[-204.12,-158.69],[-200.93,-153.7],[-193.26,-139.26],[-183.65,-119.14],[-178.23,-106.2],[-173.71,-96.13],[-169.18,-97.71],[-164.45,-107.64],[-159.74,-118.98],[-156.96,-127.23],[-150.73,-142.09],[-156.03,-207.42],[-171.35,-254.34],[-183.13,-278.53],[-202.15,-308.88],[-210.15,-329.72],[-228.86,-366.63]],"o":[[-242.45,-373.99],[-248.47,-354.43],[-251.94,-333.01],[-252.4,-311.54],[-251.94,-293.53],[-252.72,-284.02],[-253,-270],[-249.83,-248.48],[-245.16,-234.88],[-242.84,-228.67],[-240.56,-224.26],[-238.23,-222.29],[-236.7,-220.56],[-236.34,-218.91],[-232.55,-212.45],[-221.31,-196.66],[-213.18,-180.97],[-209.12,-169.23],[-205.16,-160.34],[-202.01,-155.37],[-196.69,-145.94],[-186.74,-125.86],[-179.87,-110.38],[-175.15,-99.07],[-170.96,-95.64],[-165.93,-103.71],[-161.01,-115.62],[-157.71,-124.79],[-154.1,-135.49],[-139.82,-185.6],[-169.2,-245.18],[-178.32,-270.88],[-195.39,-297.33],[-208.72,-325.31],[-219.31,-350.87],[-239.32,-379.39]],"v":[[-240,-380],[-246.58,-361.07],[-251,-340],[-252.34,-318.79],[-252,-296],[-252.46,-287.21],[-253,-278],[-251.06,-255.43],[-246,-237],[-243.63,-230.71],[-241,-225],[-239.01,-222.94],[-237,-221],[-236.45,-219.46],[-236,-218],[-225,-201.97],[-215,-185],[-210.47,-173.1],[-206,-162],[-203.06,-157.03],[-200,-152],[-190,-132.56],[-181,-113],[-176.69,-102.63],[-173,-96],[-167.56,-100.71],[-163,-111],[-158.73,-121.88],[-156,-130],[-149,-149],[-166,-236],[-175,-263],[-188,-286],[-207,-321],[-212,-334],[-239,-379]],"c":true}],"h":1},{"t":16,"s":[{"i":[[-238.95,-380.35],[-247.27,-360.19],[-253.23,-325.15],[-252.69,-306.67],[-251.98,-298.67],[-252.43,-283.42],[-252.79,-264.92],[-251.05,-253.91],[-248.79,-246.49],[-246.5,-238.79],[-244.14,-231.26],[-241.48,-226.56],[-238.7,-223.09],[-232.79,-214.11],[-225.32,-202.92],[-215.74,-184.5],[-204.24,-159.43],[-191.89,-137.15],[-186.41,-126.26],[-184.63,-119.54],[-181.54,-115.31],[-179.4,-107.01],[-172.87,-95.98],[-161.44,-114.04],[-157.6,-125.51],[-145.6,-159.66],[-150.84,-197.88],[-163.7,-230.26],[-173.33,-260.28],[-184.13,-279.53],[-188.85,-288.18],[-193.08,-292.58],[-195.99,-298.18],[-202.78,-311.34],[-210.28,-329.72],[-229.37,-367.25]],"o":[[-243.91,-370.61],[-251.94,-337.46],[-252.95,-309.33],[-252.21,-301.33],[-252.04,-289.72],[-252.81,-271.02],[-251.65,-256.41],[-249.61,-248.95],[-247.18,-241.41],[-244.98,-233.71],[-242.38,-227.77],[-239.64,-224.23],[-235.37,-217.9],[-227.76,-206.62],[-218.89,-192.07],[-207.99,-166.11],[-195.22,-142.9],[-188.07,-129.02],[-184.34,-121.47],[-183.41,-116.55],[-179.74,-110.98],[-176.12,-99.98],[-167.86,-95.17],[-158.51,-122.12],[-151.72,-142.03],[-146.32,-185.5],[-158.8,-218.34],[-170.8,-251.29],[-179.77,-273.84],[-188.29,-286.01],[-190.93,-291.48],[-195.23,-295.9],[-200.18,-305.73],[-207.54,-323.49],[-220.11,-352.43],[-239.32,-379.39]],"v":[[-240,-380],[-249.6,-348.83],[-253,-312],[-252.45,-304],[-252,-296],[-252.62,-277.22],[-252,-259],[-250.33,-251.43],[-248,-244],[-245.74,-236.25],[-243,-229],[-240.56,-225.39],[-238,-222],[-230.27,-210.36],[-223,-199],[-213,-178],[-198,-148],[-189,-131],[-185,-123],[-184,-118],[-181,-114],[-178,-104],[-173,-96],[-160,-118],[-156,-130],[-146,-174],[-154,-206],[-168,-243],[-177,-268],[-187,-284],[-190,-290],[-194,-294],[-197,-300],[-205,-317],[-213,-336],[-239,-379]],"c":true}],"h":1},{"t":17,"s":[{"i":[[-232.92,-372.32],[-244.92,-367.03],[-251.34,-343.22],[-252.32,-322.68],[-251.86,-304.25],[-252.73,-282.94],[-253.13,-261.23],[-251.48,-253.52],[-250.19,-250.76],[-249.66,-248.02],[-249.29,-244.91],[-247.56,-240.54],[-244.79,-235.71],[-243.89,-233.05],[-244.17,-231.42],[-243.51,-230.46],[-242.19,-229.36],[-235.9,-218.63],[-225.67,-203.61],[-219.16,-191.83],[-213.78,-180.02],[-199.92,-153.03],[-182.39,-115.56],[-174.19,-96.19],[-162.26,-113.02],[-145.87,-155.76],[-151,-199.32],[-158.25,-216.98],[-166.13,-237.31],[-178.72,-270.95],[-189.01,-287.8],[-191.76,-290.61],[-192.55,-293.22],[-195.1,-297.45],[-200.82,-308.23],[-213.6,-337.71]],"o":[[-242.25,-373.92],[-249.47,-351.68],[-252.39,-328.55],[-252.05,-310.53],[-252.17,-290.57],[-253.22,-268.27],[-251.89,-254.39],[-250.64,-251.71],[-249.77,-249.07],[-249.43,-245.94],[-248.41,-242.18],[-245.75,-237.3],[-243.81,-233.59],[-244.07,-231.97],[-243.91,-230.78],[-242.64,-229.75],[-239.32,-223.83],[-229.08,-208.52],[-221.02,-195.57],[-215.54,-184.06],[-206.54,-163.69],[-187.22,-127.33],[-174.91,-99.26],[-167.39,-95.09],[-154.78,-130.76],[-146.12,-187.9],[-156.6,-212.86],[-163.53,-229.08],[-173.37,-259.21],[-186.64,-283.63],[-190.15,-290.33],[-192.58,-291.93],[-194.18,-296.04],[-198.48,-303.28],[-208.47,-325],[-224.91,-359.26]],"v":[[-240,-380],[-247.19,-359.35],[-252,-334],[-252.19,-316.6],[-252,-298],[-252.97,-275.6],[-252,-255],[-251.06,-252.62],[-250,-250],[-249.54,-246.98],[-249,-244],[-246.65,-238.92],[-244,-234],[-243.98,-232.51],[-244,-231],[-243.07,-230.11],[-242,-229],[-232.49,-213.58],[-223,-199],[-217.35,-187.95],[-212,-176],[-192,-137],[-178,-106],[-173,-96],[-161,-116],[-146,-173],[-155,-209],[-160,-221],[-169,-246],[-185,-281],[-190,-290],[-192,-291],[-193,-294],[-196,-299],[-203,-313],[-219,-348]],"c":true}],"h":1},{"t":18,"s":[{"i":[[-238.95,-380.35],[-245.21,-366.31],[-251.42,-341.7],[-252.23,-321.72],[-251.72,-304.03],[-252.73,-286.65],[-253.44,-269.67],[-250.38,-248.18],[-240.49,-225.73],[-233.03,-214.85],[-228.92,-209.48],[-227.61,-207.04],[-227.32,-205.53],[-223.84,-200.26],[-219.07,-193.28],[-217.31,-189.16],[-216.41,-186.01],[-212.7,-177.27],[-207.56,-166.89],[-201.69,-155.71],[-195.62,-143.21],[-190.09,-132.35],[-184.96,-121.72],[-174.57,-96.25],[-162.28,-112.95],[-145.48,-156.54],[-150.85,-199.02],[-157.22,-215.01],[-168.94,-243.89],[-181.96,-276.99],[-188.4,-287.68],[-190.76,-289.61],[-191.49,-292.19],[-195.5,-298.42],[-207.83,-324.44],[-229.33,-367.2]],"o":[[-242.5,-373.71],[-249.67,-350.3],[-252.37,-327.45],[-251.91,-310],[-252.26,-292.31],[-253.32,-275.33],[-252.39,-256.07],[-244.43,-233.01],[-234.57,-216.86],[-230.2,-211.16],[-227.7,-207.52],[-227.42,-206.04],[-225.56,-202.62],[-220.6,-195.59],[-217.6,-190.15],[-216.71,-187.09],[-214.42,-181.08],[-209.27,-170.18],[-203.63,-159.61],[-197.68,-147.51],[-191.61,-135.24],[-186.76,-125.59],[-180.9,-111.95],[-167.39,-95.09],[-154.49,-131.44],[-146.32,-186.4],[-155.61,-211.07],[-164.26,-230.78],[-176.73,-267.12],[-187.98,-286.56],[-189.15,-289.33],[-191.6,-290.96],[-193.69,-295.71],[-203.53,-312.21],[-220.28,-352.26],[-239.32,-379.39]],"v":[[-240,-380],[-247.44,-358.31],[-252,-333],[-252.07,-315.86],[-252,-298],[-253.03,-280.99],[-253,-264],[-247.41,-240.6],[-236,-219],[-231.62,-213],[-228,-208],[-227.52,-206.54],[-227,-205],[-222.22,-197.92],[-218,-191],[-217.01,-188.12],[-216,-185],[-210.99,-173.73],[-206,-164],[-199.69,-151.61],[-193,-138],[-188.43,-128.97],[-183,-117],[-173,-96],[-161,-116],[-146,-175],[-154,-207],[-159,-219],[-173,-256],[-187,-285],[-189,-289],[-191,-290],[-192,-293],[-197,-301],[-213,-336],[-239,-379]],"c":true}],"h":1},{"t":19,"s":[{"i":[[-235.73,-376.04],[-244.99,-367.04],[-251.32,-342.1],[-252.47,-321.03],[-252.73,-303.76],[-253.52,-273.6],[-249.34,-243.5],[-243.74,-231.82],[-239.91,-226.48],[-238.19,-223.23],[-237.43,-220.67],[-232.6,-215.38],[-229.7,-210.09],[-224.44,-200.81],[-220.23,-195.49],[-220.39,-192.81],[-217.62,-189.37],[-216.63,-184.54],[-213.72,-180.72],[-211.75,-173.63],[-210.52,-170.08],[-207.85,-167.4],[-205.79,-162.39],[-189.73,-133.7],[-174.43,-96.23],[-162.23,-113.08],[-153.51,-135.57],[-148.57,-151.75],[-147.26,-159.26],[-154.87,-208.22],[-172.96,-258.43],[-193.83,-294.67],[-209.71,-328.63],[-219.88,-350.3],[-223.76,-355.59],[-225.87,-360.23]],"o":[[-242.33,-374],[-249.49,-351.09],[-252.36,-326.65],[-252.66,-309.59],[-253.6,-285.35],[-251.39,-252.68],[-245.04,-233.83],[-241.18,-228.14],[-238.47,-224.15],[-237.67,-221.49],[-235.44,-217.59],[-230.19,-211.8],[-226.07,-204.43],[-221.79,-195.59],[-219.61,-194.18],[-219.31,-190.58],[-216.31,-186.48],[-215.4,-181.52],[-211.94,-176.47],[-210.75,-171.45],[-209.47,-167.9],[-206.18,-164.65],[-195.78,-144.88],[-179.18,-108.19],[-167.38,-95.09],[-156.85,-125.85],[-150.08,-148.47],[-147.64,-157.02],[-142.69,-189.77],[-169.88,-244.03],[-184.86,-283.19],[-205.56,-316.21],[-216.55,-343.57],[-222.16,-355.35],[-225.13,-357.92],[-230.92,-368.17]],"v":[[-240,-380],[-247.24,-359.07],[-252,-332],[-252.56,-315.31],[-253,-298],[-252.45,-263.14],[-246,-236],[-242.46,-229.98],[-239,-225],[-237.93,-222.36],[-237,-220],[-231,-213],[-229,-209],[-222,-196],[-220,-195],[-220,-192],[-217,-188],[-216,-183],[-213,-179],[-211,-172],[-210,-169],[-207,-166],[-205,-161],[-182,-115],[-173,-96],[-161,-116],[-151,-145],[-148,-155],[-147,-161],[-164,-230],[-179,-271],[-200,-306],[-214,-338],[-222,-355],[-224,-356],[-227,-362]],"c":true}],"h":1},{"t":20,"s":[{"i":[[-235.76,-376.1],[-245.12,-366.56],[-251.35,-341.69],[-252.48,-320.92],[-252.73,-303.18],[-253.54,-284.8],[-253.56,-266.39],[-249.88,-246.12],[-239.29,-224.58],[-230.89,-212.06],[-224.71,-203.16],[-219.73,-193.03],[-215.63,-181.84],[-213.11,-176.64],[-211.37,-174.83],[-210.3,-171.97],[-209.47,-168.91],[-207.59,-165.4],[-205.57,-161.98],[-202.7,-157.09],[-199.22,-151.17],[-192.66,-139.11],[-185.86,-123.95],[-179.91,-109.31],[-173.88,-96.14],[-162.28,-112.95],[-145.74,-157.26],[-156.43,-213.45],[-170.9,-248.99],[-180.77,-274.49],[-195.73,-298.31],[-207.41,-321.96],[-212.63,-334.96],[-219.88,-350.3],[-223.76,-355.59],[-225.78,-360.08]],"o":[[-242.44,-373.71],[-249.57,-350.54],[-252.36,-326.58],[-252.66,-309.22],[-253.26,-291.11],[-253.68,-272.44],[-252.23,-253.58],[-243.41,-231.62],[-233.03,-214.98],[-226.73,-206.15],[-221.17,-196.61],[-216.96,-185.65],[-213.67,-177.23],[-211.96,-175.44],[-210.56,-173.02],[-209.75,-169.92],[-208.3,-166.66],[-206.22,-163.06],[-203.84,-159],[-200.39,-153.17],[-194.98,-143.63],[-188.1,-129.27],[-181.97,-114.49],[-175.87,-100.14],[-167.39,-95.09],[-154.61,-131.16],[-146.3,-195.23],[-167.91,-240.06],[-177,-266.74],[-190.74,-290.72],[-203.74,-312.73],[-211.7,-331.98],[-216.51,-343.58],[-222.16,-355.35],[-225.14,-357.93],[-230.8,-367.97]],"v":[[-240,-380],[-247.35,-358.55],[-252,-332],[-252.57,-315.07],[-253,-297],[-253.61,-278.62],[-253,-261],[-246.64,-238.87],[-235,-218],[-228.81,-209.1],[-223,-200],[-218.35,-189.34],[-214,-178],[-212.53,-176.04],[-211,-174],[-210.02,-170.95],[-209,-168],[-206.9,-164.23],[-205,-161],[-201.55,-155.13],[-198,-149],[-190.38,-134.19],[-183,-117],[-177.89,-104.72],[-173,-96],[-161,-116],[-146,-175],[-164,-231],[-174,-258],[-186,-283],[-200,-306],[-210,-328],[-214,-338],[-222,-355],[-224,-356],[-227,-362]],"c":true}],"h":1},{"t":21,"s":[{"i":[[-238.34,-378.97],[-246,-364.5],[-251.64,-335.58],[-252.32,-314.07],[-252.83,-298.46],[-253.35,-270.81],[-249.45,-244.58],[-242.41,-230.31],[-235.94,-220.99],[-233.22,-216.32],[-232.44,-213.67],[-230.7,-211.57],[-228.54,-209.88],[-227.29,-207.45],[-226.42,-204.74],[-220.98,-194.72],[-214.44,-179.77],[-212.5,-174.44],[-211.11,-173.24],[-208.31,-167.24],[-204.5,-160.54],[-195.77,-145.25],[-186.43,-125.34],[-179.91,-109.38],[-173.83,-96.13],[-167.55,-99.71],[-161.59,-114.3],[-154.31,-134.45],[-145.8,-166.61],[-158.66,-216.32],[-172.88,-254.61],[-184.24,-281.34],[-192.34,-294.29],[-206.86,-320.03],[-223.39,-356.85],[-233.58,-372.93]],"o":[[-243.18,-372.71],[-250.23,-345.93],[-252.15,-319.09],[-252.66,-303.75],[-253.38,-281.02],[-251.39,-252.59],[-244.44,-233.57],[-238.16,-224.02],[-233.5,-217.24],[-232.69,-214.54],[-231.43,-212.13],[-229.26,-210.44],[-227.58,-208.33],[-226.71,-205.65],[-223.51,-199.59],[-216.45,-184.81],[-212.94,-174.82],[-211.58,-173.65],[-209.56,-169.72],[-205.78,-162.65],[-199.05,-151.33],[-189.46,-132.25],[-182,-114.56],[-175.82,-100.16],[-170.26,-95.55],[-163.22,-109.08],[-158.15,-124.14],[-148.13,-155.68],[-146.51,-200.69],[-170.46,-245.57],[-179.69,-272.92],[-190.7,-291.74],[-200.8,-308.08],[-217.55,-344.95],[-231.8,-369.77],[-236.39,-377.04]],"v":[[-240,-380],[-248.11,-355.21],[-252,-324],[-252.49,-308.91],[-253,-293],[-252.37,-261.7],[-246,-237],[-240.28,-227.17],[-234,-218],[-232.96,-215.43],[-232,-213],[-229.98,-211.01],[-228,-209],[-227,-206.55],[-226,-204],[-218.71,-189.77],[-213,-175],[-212.04,-174.05],[-211,-173],[-207.05,-164.94],[-203,-158],[-192.61,-138.75],[-183,-117],[-177.87,-104.77],[-173,-96],[-165.39,-104.39],[-161,-116],[-151.22,-145.06],[-146,-176],[-167,-237],[-176,-263],[-189,-289],[-194,-297],[-212,-332],[-230,-367],[-235,-375]],"c":true}],"h":1},{"t":22,"s":[{"i":[[-234.54,-374.44],[-245.42,-365.76],[-251.37,-339.9],[-252.42,-320.9],[-252.78,-306.68],[-253.49,-292.46],[-254.03,-278.43],[-252.54,-256.23],[-243.71,-232.69],[-236.18,-220.7],[-231.96,-214.65],[-229.84,-211.03],[-228.44,-208.75],[-226.84,-206.03],[-225.44,-203.75],[-219.83,-192.7],[-213.33,-176.67],[-209.18,-168.69],[-206.04,-163.74],[-196.56,-146.72],[-184.34,-120.64],[-174.6,-96.26],[-162.23,-112.63],[-155.64,-129.84],[-150.21,-146.8],[-147.77,-197.28],[-167.89,-237.64],[-176.09,-265.69],[-184.59,-281.87],[-187.76,-285.6],[-190.94,-292.89],[-194.08,-297.49],[-205.1,-316.07],[-216.32,-344.47],[-221.98,-353.98],[-222.3,-354.82]],"o":[[-242.73,-373.31],[-249.74,-349.06],[-252.28,-325.56],[-252.67,-311.46],[-253.22,-297.25],[-253.89,-283.05],[-253.94,-264.64],[-247.43,-240.26],[-237.7,-222.88],[-233.31,-216.59],[-230.37,-211.91],[-228.87,-209.46],[-227.37,-206.91],[-225.87,-204.46],[-222.17,-198.11],[-215.41,-181.98],[-210.16,-170.32],[-207.12,-165.4],[-200.89,-155.15],[-188.28,-129.47],[-178.68,-107.69],[-167.48,-95.1],[-158.28,-123.49],[-152.56,-141.41],[-143.36,-176.2],[-161.17,-226.13],[-174.92,-257.08],[-181.73,-277.69],[-186.15,-285.34],[-189.48,-288.42],[-193.55,-295.61],[-200.31,-307.74],[-213.08,-334.35],[-220.93,-352.88],[-222.82,-354.85],[-227.69,-363.9]],"v":[[-240,-380],[-247.58,-357.41],[-252,-330],[-252.54,-316.18],[-253,-302],[-253.69,-287.76],[-254,-274],[-249.99,-248.25],[-239,-225],[-234.74,-218.65],[-231,-213],[-229.35,-210.25],[-228,-208],[-226.35,-205.25],[-225,-203],[-217.62,-187.34],[-211,-172],[-208.15,-167.04],[-205,-162],[-192.42,-138.09],[-181,-113],[-173,-96],[-161,-116],[-154,-136],[-149,-152],[-156,-215],[-172,-249],[-180,-274],[-186,-285],[-188,-286],[-192,-294],[-195,-299],[-209,-325],[-221,-353],[-222,-354],[-223,-356]],"c":true}],"h":1},{"t":23,"s":[{"i":[[-235.14,-375.32],[-245.57,-365.45],[-251.46,-338.44],[-252.36,-318.52],[-252.75,-303.74],[-253.66,-288.98],[-254.28,-274.49],[-252.02,-255.77],[-245.41,-237.2],[-242.24,-231.29],[-241.43,-228.73],[-239.07,-225.23],[-235.87,-221.35],[-234.22,-218.33],[-233.51,-215.83],[-229.89,-212.49],[-228.01,-207.79],[-224.71,-203.39],[-221.55,-194.53],[-216.39,-185.18],[-215.26,-179.87],[-213.22,-177.49],[-212,-172.95],[-197.19,-150.64],[-183.27,-117.13],[-174.73,-95.62],[-162.83,-110.98],[-145.88,-157.96],[-164.27,-227.35],[-176.1,-265.58],[-182.74,-277.71],[-187.04,-287],[-192.98,-295.77],[-212.44,-334.22],[-221.77,-351.57],[-223.79,-356.9]],"o":[[-242.84,-373.23],[-249.88,-348.05],[-252.24,-323.4],[-252.61,-308.68],[-253.27,-293.98],[-254.16,-279.23],[-253.56,-262.92],[-247.94,-242.91],[-242.52,-232.17],[-241.7,-229.56],[-240.14,-226.55],[-236.94,-222.63],[-234.46,-219.16],[-233.74,-216.67],[-232.12,-213.55],[-228.16,-209.6],[-226.28,-204.72],[-222.18,-198.44],[-218.61,-187.83],[-214.63,-181.17],[-214.89,-178.64],[-212.22,-175.22],[-205.76,-160.76],[-187.89,-130.4],[-180.06,-109.24],[-168.2,-96.29],[-154.61,-130.92],[-146.19,-203.9],[-174.88,-257.06],[-180.91,-275.97],[-185.4,-282.54],[-191.12,-291.26],[-204.89,-314.86],[-220.16,-351.36],[-223.2,-354.24],[-229.1,-366.09]],"v":[[-240,-380],[-247.73,-356.75],[-252,-328],[-252.49,-313.6],[-253,-299],[-253.91,-284.1],[-254,-270],[-249.98,-249.34],[-243,-233],[-241.97,-230.42],[-241,-228],[-238.01,-223.93],[-235,-220],[-233.98,-217.5],[-233,-215],[-229,-211],[-227,-206],[-224,-202],[-220,-191],[-215,-182],[-215,-179],[-213,-177],[-211,-171],[-190,-135],[-182,-114],[-171,-96],[-162,-113],[-146,-176],[-172,-249],[-180,-274],[-184,-280],[-188,-288],[-195,-299],[-220,-351],[-222,-352],[-225,-359]],"c":true}],"h":1},{"t":24,"s":[{"i":[[-231.26,-370.75],[-245.6,-365.61],[-251.44,-337.74],[-252.34,-317.5],[-252.69,-302.96],[-254.67,-277.15],[-252.49,-255],[-245.6,-239.2],[-242.88,-231.58],[-237.72,-224.75],[-234.79,-218.29],[-232.52,-215.9],[-229.76,-212.02],[-228.4,-208.67],[-225.46,-204.88],[-222.68,-196.92],[-217.5,-186.36],[-211.41,-172.55],[-206.63,-165.06],[-203.01,-157.35],[-199.02,-151.73],[-194.61,-144.55],[-191.94,-137.12],[-187.46,-129.53],[-186.27,-123.88],[-183.31,-118.78],[-176.13,-95.47],[-162.87,-110.9],[-145.78,-158.44],[-156.06,-215.51],[-171.98,-248.13],[-180.93,-275.18],[-185.76,-282.59],[-187.79,-286.95],[-195.74,-300.35],[-211.38,-331.05]],"o":[[-242.88,-373.49],[-249.88,-347.73],[-252.25,-322.26],[-252.56,-307.84],[-253.66,-287.58],[-253.7,-263.93],[-249.51,-245.02],[-243.14,-234.28],[-240.4,-227.11],[-235.04,-220.46],[-233.58,-216.32],[-230.84,-213],[-228.44,-210.25],[-226.99,-206.29],[-223.31,-200.82],[-219.59,-189.72],[-213.53,-177.48],[-207.97,-166.05],[-204.21,-161.01],[-200.18,-152.64],[-195.93,-146.49],[-192.1,-139.02],[-190.11,-132.99],[-185.65,-125.15],[-185.6,-121.68],[-181.39,-113.92],[-168.24,-96.28],[-154.42,-131.36],[-146.23,-195.97],[-168.04,-240.39],[-178.12,-266.16],[-184.16,-282.35],[-187.13,-284.97],[-192.69,-295.28],[-206.02,-318.16],[-223.24,-356.28]],"v":[[-240,-380],[-247.74,-356.67],[-252,-327],[-252.45,-312.67],[-253,-298],[-254,-268],[-251,-250],[-244,-236],[-242,-230],[-236,-222],[-234,-217],[-232,-215],[-229,-211],[-228,-208],[-225,-204],[-221,-193],[-216,-183],[-209,-168],[-206,-164],[-201,-154],[-198,-150],[-193,-141],[-191,-135],[-186,-126],[-186,-123],[-183,-118],[-171,-96],[-162,-113],[-146,-177],[-164,-232],[-175,-257],[-184,-282],[-186,-283],[-189,-289],[-199,-306],[-217,-343]],"c":true}],"h":1},{"t":25,"s":[{"i":[[-235.88,-377.87],[-245.68,-365.36],[-251.42,-336.8],[-252.33,-316.15],[-252.65,-301.05],[-253.83,-285.74],[-254.44,-270.68],[-250.84,-250.6],[-240.08,-227.6],[-233.95,-217.93],[-230.83,-213.5],[-225.23,-202.95],[-218.71,-188.92],[-216.27,-182.93],[-215.43,-179.92],[-208.17,-166.65],[-196.04,-147.57],[-189.23,-132.48],[-184.81,-120.52],[-180.34,-109.38],[-172.91,-95.8],[-168.24,-98.86],[-163.89,-108.97],[-154.46,-133.78],[-145.22,-172.05],[-158.36,-218.25],[-177.08,-266.65],[-185.76,-282.58],[-189.79,-291.32],[-192.76,-294.6],[-194.7,-299.87],[-197.49,-303.21],[-206.59,-319.53],[-217.61,-345.73],[-224.98,-357.28],[-228.84,-365.79]],"o":[[-242.96,-373.46],[-249.91,-347.04],[-252.26,-321.12],[-252.53,-306.11],[-253.36,-290.9],[-254.37,-275.63],[-253.3,-258.56],[-244.23,-235.12],[-235.03,-219.43],[-231.85,-214.96],[-227.62,-207.74],[-220.77,-193.53],[-216.55,-183.97],[-215.71,-180.91],[-211.9,-172.37],[-200.24,-154.26],[-190.57,-135.97],[-186.35,-124.76],[-182.39,-114.47],[-175.6,-100.04],[-169.8,-96.12],[-165.29,-105.28],[-157.38,-123.83],[-147.44,-160.62],[-148.7,-203.23],[-172.68,-247.92],[-184.16,-282.35],[-188.01,-286.54],[-191.15,-294.34],[-194.33,-297.17],[-196.38,-302.62],[-202.75,-311.34],[-214.13,-336.05],[-223.01,-355.91],[-227.63,-361.75],[-233.84,-371]],"v":[[-240,-380],[-247.79,-356.2],[-252,-326],[-252.43,-311.13],[-253,-296],[-254.1,-280.69],[-254,-266],[-247.53,-242.86],[-236,-221],[-232.9,-216.45],[-230,-212],[-223,-198.24],[-217,-185],[-215.99,-181.92],[-215,-179],[-204.2,-160.46],[-192,-139],[-187.79,-128.62],[-183,-116],[-177.97,-104.71],[-171,-96],[-166.76,-102.07],[-163,-111],[-151,-147],[-147,-188],[-165,-232],[-184,-282],[-186,-283],[-191,-294],[-193,-295],[-196,-302],[-198,-304],[-210,-327],[-222,-354],[-226,-359],[-230,-367]],"c":true}],"h":1},{"t":26,"s":[{"i":[[-238.34,-378.97],[-243.52,-372.58],[-246.89,-358.43],[-250.69,-334.96],[-252.31,-305.9],[-253.84,-285.63],[-254.45,-270.79],[-249.02,-245.39],[-234.07,-219.3],[-227.01,-206.45],[-222.99,-198.23],[-219.54,-190.06],[-216.29,-181.75],[-208.14,-166.7],[-195.99,-147.67],[-189.27,-132.54],[-184.84,-120.67],[-180.57,-109.93],[-172.92,-95.82],[-170,-96.96],[-166.87,-101.39],[-161.97,-111.52],[-157.16,-125.22],[-151.86,-142.92],[-147.4,-162.74],[-148.13,-195.67],[-161.69,-226.36],[-170.56,-246.02],[-175.46,-258.52],[-180.69,-273.06],[-186.79,-286.19],[-192.3,-295.24],[-203.42,-312.71],[-210.19,-328.92],[-216.27,-340.34],[-229.05,-366.3]],"o":[[-242.08,-376.62],[-245.93,-363.49],[-249.79,-344.26],[-251.95,-315.78],[-253.37,-290.73],[-254.39,-275.66],[-252.99,-255.24],[-239.56,-227.42],[-228.51,-209.33],[-224.24,-200.9],[-220.64,-192.93],[-217.36,-184.47],[-211.9,-172.36],[-200.18,-154.35],[-190.6,-135.96],[-186.39,-124.9],[-182.61,-115.02],[-175.73,-100.33],[-170.82,-96.02],[-168.03,-99.65],[-163.89,-106.91],[-158.61,-120.67],[-153.91,-135.8],[-148.61,-156.39],[-145.79,-184],[-156.08,-216.85],[-168.83,-242.01],[-173.87,-254.27],[-178.79,-268.21],[-184.69,-282.05],[-190.66,-292.86],[-198.49,-305.3],[-209.07,-324.22],[-213.69,-336.8],[-223.16,-354.89],[-236.39,-377.04]],"v":[[-240,-380],[-244.73,-368.04],[-248,-353],[-251.32,-325.37],[-253,-296],[-254.11,-280.64],[-254,-266],[-244.29,-236.41],[-230,-212],[-225.63,-203.68],[-222,-196],[-218.45,-187.26],[-215,-179],[-204.16,-160.53],[-192,-139],[-187.83,-128.72],[-183,-116],[-178.15,-105.13],[-171,-96],[-169.02,-98.3],[-166,-103],[-160.29,-116.1],[-156,-129],[-150.23,-149.66],[-147,-168],[-152.11,-206.26],[-167,-238],[-172.21,-250.15],[-177,-263],[-182.69,-277.55],[-189,-290],[-194,-298],[-207,-320],[-212,-333],[-218,-344],[-235,-375]],"c":true}],"h":1},{"t":27,"s":[{"i":[[-234.93,-375.74],[-243.67,-372.31],[-246.93,-357.52],[-248.61,-350.31],[-249.87,-347.87],[-251.71,-329.7],[-252.43,-303.89],[-253.83,-284.69],[-254.49,-269.79],[-249.55,-246.61],[-236.06,-222.18],[-228.41,-208.46],[-223.54,-198.49],[-219.22,-188.21],[-214.85,-177.5],[-209.37,-168.05],[-202.96,-159.2],[-193.93,-143.26],[-185.08,-122.63],[-179.55,-107.9],[-173.43,-95.8],[-169.97,-96.95],[-166.89,-101.36],[-161.97,-111.52],[-157.03,-125.55],[-147.8,-157.85],[-154.66,-213.4],[-174.83,-256.37],[-185.55,-284.52],[-193.04,-295.38],[-195.73,-301.9],[-198.49,-305.22],[-207.89,-321.42],[-212.1,-332.89],[-214.58,-337.01],[-222.16,-353.51]],"o":[[-242.21,-376.54],[-246.04,-362.8],[-248.17,-351.12],[-249.46,-348.69],[-251.24,-338.26],[-252.3,-312.52],[-253.33,-289.8],[-254.41,-274.69],[-253.02,-255.51],[-241.07,-229.94],[-230.14,-211.71],[-225.11,-201.84],[-220.54,-191.71],[-216.38,-181.1],[-211.39,-170.95],[-205.15,-162.18],[-197.14,-149.69],[-187.9,-129.73],[-181.09,-112.75],[-175.72,-99.42],[-170.77,-96.02],[-168.03,-99.62],[-163.95,-106.75],[-158.51,-120.93],[-151.64,-143.53],[-144.9,-198.34],[-170.65,-245.26],[-182.39,-277.46],[-191.01,-293.69],[-195.37,-299.31],[-197.37,-304.61],[-203.48,-312.91],[-211.98,-330.07],[-213.31,-335.72],[-218.55,-346.28],[-230.02,-366.8]],"v":[[-240,-380],[-244.85,-367.55],[-248,-352],[-249.03,-349.5],[-250,-347],[-252.01,-321.11],[-253,-295],[-254.12,-279.69],[-254,-265],[-245.31,-238.27],[-232,-215],[-226.76,-205.15],[-222,-195],[-217.8,-184.66],[-213,-174],[-207.26,-165.12],[-201,-156],[-190.92,-136.49],[-182,-115],[-177.64,-103.66],[-171,-96],[-169,-98.28],[-166,-103],[-160.24,-116.23],[-156,-129],[-147,-169],[-165,-234],[-179,-268],[-190,-292],[-194,-297],[-197,-304],[-199,-306],[-211,-328],[-213,-335],[-215,-338],[-226,-360]],"c":true}],"h":1},{"t":28,"s":[{"i":[[-238.34,-378.97],[-244.92,-368.42],[-249.34,-345.63],[-250.41,-334.2],[-250.84,-326.72],[-252.8,-303.61],[-254.91,-273.76],[-249.54,-246.56],[-236.08,-222.32],[-228.33,-208.32],[-223.43,-198.38],[-219.22,-188.01],[-214.85,-177.42],[-209.42,-168.19],[-203.08,-159.39],[-197.23,-149.27],[-191.55,-137.36],[-188.38,-130.22],[-186.56,-124.87],[-185.49,-122.44],[-184.09,-121.26],[-183.38,-119.1],[-182.44,-116.1],[-179.76,-108.75],[-173.16,-95.81],[-163.78,-106.66],[-157.44,-125.11],[-147.81,-158.71],[-156.25,-216.25],[-174.05,-254.21],[-185.16,-283.37],[-191.04,-293.52],[-205.47,-316.18],[-210.95,-330.7],[-216.17,-340.08],[-229.23,-366.57]],"o":[[-242.75,-375.35],[-248.21,-353.56],[-250.24,-336.59],[-250.71,-329.26],[-251.59,-313.98],[-254.45,-283.5],[-253,-255.4],[-241.08,-230.02],[-230.12,-211.62],[-224.99,-201.7],[-220.55,-191.55],[-216.37,-180.94],[-211.37,-171],[-205.27,-162.39],[-199.21,-153.09],[-193.4,-141.4],[-189.09,-132.04],[-187.11,-126.64],[-185.94,-122.81],[-184.56,-121.66],[-183.66,-120.05],[-182.77,-117.13],[-181.43,-113.6],[-175.63,-99.86],[-168.95,-96.18],[-159.23,-117.73],[-151.66,-144.76],[-144.82,-200.37],[-170.81,-245.71],[-180.14,-272.36],[-190.27,-292.2],[-198.25,-304.65],[-210.96,-328.09],[-213.75,-336.83],[-222.99,-354.72],[-236.39,-377.04]],"v":[[-240,-380],[-246.57,-360.99],[-250,-339],[-250.56,-331.73],[-251,-324],[-253.63,-293.56],[-254,-265],[-245.31,-238.29],[-232,-215],[-226.66,-205.01],[-222,-195],[-217.8,-184.47],[-213,-174],[-207.34,-165.29],[-201,-156],[-195.32,-145.33],[-190,-134],[-187.74,-128.43],[-186,-123],[-185.03,-122.05],[-184,-121],[-183.08,-118.12],[-182,-115],[-177.7,-104.3],[-171,-96],[-162,-111],[-156,-130],[-147,-170],[-167,-238],[-177,-263],[-189,-290],[-192,-295],[-210,-326],[-212,-333],[-218,-344],[-235,-375]],"c":true}],"h":1},{"t":29,"s":[{"i":[[-230.23,-370.36],[-243.24,-372.97],[-246.99,-359.93],[-250.55,-338.39],[-252.31,-312.32],[-253.92,-294.6],[-255.06,-281.07],[-253.1,-259.69],[-243.45,-234.93],[-234.94,-220.15],[-228.82,-209.83],[-223.62,-198.44],[-218.75,-186.75],[-209.71,-169.68],[-197.3,-150.07],[-188.77,-131.46],[-182.71,-116.23],[-179.55,-108.1],[-176.91,-101.42],[-172.1,-95.65],[-167.74,-99.9],[-161.83,-111.8],[-157.13,-126.14],[-151.74,-144.87],[-147.42,-165.12],[-150.28,-204.47],[-170.28,-242.53],[-179.42,-268.54],[-186.5,-285.69],[-192.62,-296.13],[-197.76,-305.26],[-199.52,-308.32],[-200.88,-308.8],[-201.42,-310.04],[-201.76,-311.59],[-211.27,-329.91]],"o":[[-241.75,-376.75],[-245.86,-364.56],[-249.65,-346.99],[-251.88,-321.06],[-253.39,-299.32],[-254.75,-285.48],[-254.88,-268.22],[-247.39,-243.04],[-237.03,-223.48],[-230.84,-213.32],[-225.25,-202.32],[-220.37,-190.66],[-213.57,-175.64],[-201.58,-156.89],[-190.91,-136.59],[-184.66,-121.27],[-180.35,-110.39],[-177.83,-103.61],[-173.73,-96.45],[-169.1,-97.38],[-163.77,-106.98],[-158.52,-121.38],[-153.78,-137.56],[-148.56,-158.65],[-145.64,-189.95],[-162.6,-230.76],[-177.17,-262.19],[-184.09,-280.28],[-190.74,-293],[-196.13,-302.26],[-199.08,-308.17],[-200.42,-308.63],[-201.29,-309.49],[-201.66,-311.09],[-206.58,-319.9],[-221.67,-352.45]],"v":[[-240,-380],[-244.55,-368.76],[-248,-355],[-251.22,-329.73],[-253,-304],[-254.33,-290.04],[-255,-277],[-250.24,-251.37],[-239,-227],[-232.89,-216.73],[-227,-206],[-222,-194.55],[-217,-183],[-205.65,-163.28],[-193,-141],[-186.71,-126.37],[-181,-112],[-178.69,-105.86],[-176,-100],[-170.6,-96.51],[-166,-103],[-160.18,-116.59],[-156,-130],[-150.15,-151.76],[-147,-171],[-156.44,-217.61],[-175,-256],[-181.76,-274.41],[-189,-290],[-194.38,-299.19],[-199,-308],[-199.97,-308.48],[-201,-309],[-201.54,-310.56],[-202,-312],[-215,-338]],"c":true}],"h":1},{"t":30,"s":[{"i":[[-229.51,-369.78],[-243.24,-372.96],[-247.01,-359.93],[-249.34,-347.07],[-250.66,-334.27],[-253.84,-301.8],[-253.98,-260.94],[-246.39,-241.22],[-240.17,-229.76],[-234.55,-220.11],[-229.5,-211.12],[-222.73,-195.8],[-214.17,-176.47],[-203.67,-160.46],[-193.4,-142.32],[-186.16,-123.78],[-180.33,-108.42],[-173.26,-96.21],[-168.31,-98.89],[-164.39,-106.16],[-162.51,-110.75],[-154.97,-131.58],[-147.58,-163.77],[-146.84,-176.23],[-146.86,-185.51],[-147.64,-190.67],[-149.44,-196.75],[-150.92,-203.48],[-152.26,-210.14],[-153.82,-213.29],[-155.56,-215.12],[-161.21,-226.74],[-171.01,-245.46],[-179.04,-268.57],[-189.18,-290.69],[-208.81,-323.4]],"o":[[-241.73,-376.75],[-245.88,-364.56],[-248.76,-351.19],[-250.29,-338.62],[-252.1,-316.33],[-254.78,-274.1],[-248.3,-245.35],[-242.32,-233.43],[-236.3,-223.05],[-231.15,-214.14],[-225.14,-202.07],[-217.24,-183],[-206.97,-165.3],[-196.88,-148.97],[-187.99,-129.07],[-182.33,-113.45],[-175.1,-98.52],[-169.86,-96.4],[-165.14,-104.54],[-163.08,-109.27],[-158.43,-120.7],[-149.54,-153.12],[-146.91,-173.22],[-146.82,-182.37],[-147.17,-188.79],[-148.77,-194.65],[-150.54,-201.16],[-151.78,-207.97],[-153.29,-212.73],[-154.96,-214.49],[-159.05,-222.1],[-167.52,-238.64],[-176.95,-260.44],[-185.13,-283.86],[-200.93,-310.09],[-222.02,-352.43]],"v":[[-240,-380],[-244.56,-368.76],[-248,-355],[-249.81,-342.84],[-251,-330],[-254.31,-287.95],[-250,-250],[-244.35,-237.33],[-238,-226],[-232.85,-217.12],[-228,-208],[-219.98,-189.4],[-210,-170],[-200.27,-154.72],[-190,-134],[-184.24,-118.62],[-178,-104],[-171.56,-96.3],[-166,-103],[-163.74,-107.71],[-162,-112],[-152.26,-142.35],[-147,-172],[-146.83,-179.3],[-147,-187],[-148.2,-192.66],[-150,-199],[-151.35,-205.73],[-153,-212],[-154.39,-213.89],[-156,-216],[-164,-232],[-174,-253],[-182,-276],[-193,-297],[-215,-337]],"c":true}],"h":1},{"t":31,"s":[{"i":[[-233.61,-375.1],[-243.24,-372.94],[-247.06,-359.76],[-249.38,-346.63],[-250.62,-333.55],[-252.9,-310.96],[-255.33,-284.11],[-254.6,-269.66],[-252.91,-258.1],[-250.67,-251.79],[-247.79,-246.81],[-246.88,-244.05],[-247.13,-242.44],[-246.5,-241.44],[-245.11,-240.24],[-235.89,-222.55],[-224.34,-199.76],[-220.2,-190.5],[-218.83,-185.81],[-208.27,-167.35],[-195.99,-148.59],[-191.85,-138.03],[-187.02,-128.69],[-185.58,-121.64],[-182.15,-115.4],[-176.34,-95.44],[-167.39,-100.59],[-159.04,-118.31],[-155.46,-129.35],[-152.37,-145.6],[-147.33,-168.03],[-156.14,-218.32],[-174.01,-252.56],[-182.77,-278.62],[-195.39,-301.43],[-216.35,-340.1]],"o":[[-241.72,-376.81],[-245.91,-364.41],[-248.82,-350.85],[-250.28,-337.98],[-251.74,-320.15],[-254.7,-292.94],[-254.89,-273.36],[-253.6,-262.03],[-251.52,-253.38],[-248.8,-248.5],[-246.82,-244.58],[-247.04,-242.98],[-246.95,-241.82],[-245.59,-240.65],[-240.86,-231.25],[-228.12,-207.49],[-221.89,-191.63],[-219.19,-188.03],[-214.03,-175.3],[-199.83,-154.8],[-192.23,-140.3],[-189.58,-132.62],[-185.28,-124.09],[-183.98,-117.16],[-180.35,-110.76],[-170.43,-96.06],[-161.69,-110.48],[-156.45,-128.07],[-153.05,-138.07],[-149.14,-160.7],[-145.48,-201.2],[-169.85,-244.29],[-180.28,-270.27],[-190.74,-294.42],[-209.08,-323.93],[-228.62,-364]],"v":[[-240,-380],[-244.58,-368.68],[-248,-355],[-249.83,-342.3],[-251,-329],[-253.8,-301.95],[-255,-276],[-254.1,-265.85],[-252,-255],[-249.73,-250.14],[-247,-245],[-246.96,-243.51],[-247,-242],[-246.04,-241.05],[-245,-240],[-232,-215],[-222,-192],[-220,-190],[-218,-184],[-204,-161],[-193,-142],[-191,-136],[-186,-126],[-185,-120],[-182,-115],[-171,-96],[-166,-103],[-157,-126],[-155,-131],[-151,-152],[-147,-174],[-166,-237],[-177,-261],[-187,-287],[-200,-309],[-224,-355]],"c":true}],"h":1},{"t":32,"s":[{"i":[[-236.31,-377.99],[-243.38,-372.72],[-247.05,-358.99],[-249.34,-345.62],[-250.62,-332.44],[-253.81,-301.41],[-254.39,-263.98],[-247.43,-244.58],[-241.14,-231.81],[-237.01,-224.92],[-233.78,-220.46],[-226.26,-204.13],[-218.21,-182.65],[-211.08,-171.08],[-204.15,-162.32],[-197.57,-151.68],[-192.15,-139.82],[-189.19,-134.52],[-185.49,-122.44],[-175.22,-95.59],[-166.16,-101.84],[-162.2,-110.96],[-154.65,-135.11],[-149.62,-154.51],[-146.88,-190.09],[-151.83,-206.47],[-159.34,-223.63],[-172.08,-247.63],[-180.04,-270.56],[-186.38,-284.73],[-191.06,-295.76],[-194.68,-299.57],[-195.56,-302.3],[-202.44,-312.45],[-211.73,-330.97],[-225.71,-359.42]],"o":[[-241.85,-376.73],[-245.98,-363.85],[-248.78,-349.9],[-250.26,-336.89],[-252.12,-314.92],[-254.95,-275.94],[-249.36,-249.18],[-243.32,-235.9],[-238.12,-226.43],[-234.84,-221.93],[-229.15,-211.81],[-220.79,-189.56],[-213.25,-173.93],[-206.52,-165.28],[-199.74,-155.52],[-193.78,-143.82],[-190.89,-135.63],[-186.66,-127.52],[-181.93,-113.23],[-170.41,-96.06],[-163.28,-107.2],[-155.98,-126.68],[-151.14,-150.86],[-145.99,-174.85],[-150.09,-204.38],[-155.71,-218.51],[-168.57,-240.55],[-177.9,-262.32],[-184.38,-281.48],[-189.88,-291.79],[-193.24,-299.41],[-195.58,-300.77],[-199.17,-308.1],[-208.9,-323.93],[-220,-348.75],[-234.13,-373.07]],"v":[[-240,-380],[-244.68,-368.29],[-248,-354],[-249.8,-341.26],[-251,-328],[-254.38,-288.67],[-251,-254],[-245.37,-240.24],[-239,-228],[-235.93,-223.42],[-233,-219],[-223.52,-196.84],[-215,-177],[-208.8,-168.18],[-202,-159],[-195.67,-147.75],[-191,-136],[-189,-134],[-183,-116],[-171,-96],[-165,-104],[-161,-114],[-152,-147],[-149,-158],[-150,-204],[-152,-207],[-165,-234],[-175,-255],[-183,-278],[-188,-288],[-193,-299],[-195,-300],[-196,-303],[-205,-317],[-215,-338],[-231,-368]],"c":true}],"h":1},{"t":33,"s":[{"i":[[-228.97,-369.31],[-243.38,-372.71],[-247.05,-359],[-249.34,-345.63],[-250.62,-332.48],[-253.18,-309.24],[-255.74,-281.88],[-252.44,-258.21],[-244.63,-238.93],[-240.15,-230.49],[-237.61,-225.35],[-236.48,-223.68],[-235.11,-223.21],[-230.1,-212.95],[-223.86,-197.47],[-219.21,-186.59],[-214.63,-177.76],[-208.16,-167.55],[-200.99,-157.47],[-194.64,-145.69],[-188.23,-130.15],[-182.32,-113.34],[-173.7,-95.74],[-167.26,-99.84],[-161.44,-111.91],[-158.29,-120.91],[-155.77,-131.84],[-150.79,-151.77],[-146.84,-174.71],[-149.55,-201.15],[-160.67,-227.33],[-169.36,-242.72],[-175.42,-254.82],[-181.78,-276.87],[-194.68,-300.86],[-208.16,-323.07]],"o":[[-241.86,-376.7],[-245.98,-363.86],[-248.78,-349.89],[-250.26,-336.93],[-251.81,-318.55],[-255.14,-290.91],[-254.37,-265.5],[-247.57,-244.93],[-241.1,-232.31],[-238.41,-227.01],[-236.92,-223.82],[-235.57,-223.37],[-232.42,-218.21],[-225.82,-202.58],[-220.64,-189.72],[-216.2,-180.61],[-210.66,-171.06],[-203.32,-160.75],[-196.77,-150.12],[-190.37,-135.71],[-184.72,-120.46],[-176.81,-100.97],[-169.54,-96.14],[-163.21,-107.73],[-159.4,-116.99],[-156.47,-128.34],[-152.87,-143.67],[-147.78,-167.29],[-147.22,-191.73],[-156.28,-218.94],[-167.15,-238.81],[-173.49,-250.72],[-180.2,-267.44],[-189.47,-293.52],[-203.68,-315.73],[-219.86,-347.23]],"v":[[-240,-380],[-244.68,-368.28],[-248,-354],[-249.8,-341.28],[-251,-328],[-254.16,-300.07],[-255,-273],[-250,-251.57],[-242,-234],[-239.28,-228.75],[-237,-224],[-236.03,-223.53],[-235,-223],[-227.96,-207.76],[-222,-193],[-217.7,-183.6],[-213,-175],[-205.74,-164.15],[-199,-154],[-192.51,-140.7],[-186,-124],[-179.56,-107.15],[-171,-96],[-165.24,-103.78],[-161,-113],[-157.38,-124.62],[-155,-135],[-149.28,-159.53],[-147,-182],[-152.92,-210.04],[-165,-235],[-171.42,-246.72],[-177,-259],[-186,-286],[-199,-308],[-212,-331]],"c":true}],"h":1},{"t":34,"s":[{"i":[[-237.41,-380.01],[-240.93,-378.55],[-241.78,-377.52],[-244.59,-369.54],[-247.23,-357.22],[-249.27,-344.66],[-250.55,-331.53],[-253.27,-308.01],[-255.66,-280.96],[-251.25,-254.83],[-239.48,-230.01],[-234.46,-221.18],[-232.66,-217.36],[-226.57,-203.18],[-218.7,-183.4],[-213.6,-175.31],[-210.22,-170.73],[-205.87,-164.65],[-201.24,-158.07],[-195.53,-146.6],[-190.03,-136.78],[-186.03,-124.71],[-184.68,-118.74],[-181.08,-112.52],[-178.69,-104.92],[-173.87,-95.72],[-162.12,-110.2],[-156.71,-127.11],[-146.85,-165.8],[-152.38,-212.29],[-166.93,-237.96],[-177.73,-262.87],[-192.28,-297.09],[-208.27,-323.64],[-223.2,-355.9],[-232.86,-370.14]],"o":[[-240.54,-378.79],[-241.55,-377.91],[-243.48,-373.43],[-246.47,-361.44],[-248.75,-348.9],[-250.18,-335.98],[-251.94,-317.53],[-255.13,-289.72],[-254.26,-264.08],[-243.86,-237.8],[-235.13,-222.5],[-233.22,-218.61],[-229.22,-210.23],[-221.31,-189.77],[-214.74,-176.94],[-211.34,-172.2],[-207.5,-166.87],[-202.74,-160.25],[-197.47,-151.77],[-191.89,-138.55],[-187.37,-129.6],[-184.47,-120.61],[-183.2,-114.95],[-178.99,-107.64],[-175.31,-99.09],[-167.95,-96.29],[-157.87,-120.82],[-150.78,-150.97],[-147.15,-196.75],[-162.15,-230.9],[-175.21,-254.32],[-185.93,-285.76],[-203.93,-316.01],[-218.54,-343.91],[-231.04,-368.7],[-236.21,-375.6]],"v":[[-240,-379],[-241.24,-378.23],[-242,-377],[-245.53,-365.49],[-248,-353],[-249.72,-340.32],[-251,-327],[-254.2,-298.86],[-255,-273],[-247.55,-246.32],[-236,-224],[-233.84,-219.9],[-232,-216],[-223.94,-196.48],[-216,-179],[-212.47,-173.76],[-209,-169],[-204.3,-162.45],[-200,-156],[-193,-141],[-189,-134],[-185,-122],[-184,-117],[-180,-110],[-177,-102],[-171,-96],[-161,-113],[-155,-134],[-147,-181],[-158,-223],[-171,-246],[-181,-272],[-199,-308],[-212,-331],[-230,-367],[-234,-372]],"c":true}],"h":1},{"t":35,"s":[{"i":[[-237.42,-380],[-241.18,-378.37],[-241.7,-376.89],[-245.92,-362.09],[-250.04,-336.42],[-254.01,-300.88],[-254.37,-264.91],[-250.36,-253],[-249.36,-249.91],[-243.97,-238.44],[-235.36,-223.84],[-231.51,-215.36],[-229.72,-209.73],[-224.42,-196.76],[-217.19,-181.1],[-206.66,-165.63],[-194.69,-147.23],[-188.49,-130.98],[-184.52,-118.79],[-180.25,-107.96],[-173.24,-95.78],[-167.3,-99.72],[-161.54,-111.66],[-158.37,-120.42],[-155.88,-130.47],[-150.87,-150.45],[-146.91,-173.68],[-151.35,-209.02],[-161.04,-228.65],[-164.76,-233.59],[-168.8,-241.8],[-180.38,-271.62],[-194.44,-300.56],[-208.19,-323.62],[-223.33,-355.94],[-232.78,-370.01]],"o":[[-240.84,-378.67],[-241.62,-377.48],[-244.15,-369.63],[-248.87,-345.48],[-252.33,-313.93],[-255.03,-276.38],[-250.67,-254.04],[-249.7,-250.93],[-246.79,-243.52],[-238.25,-228.6],[-232.14,-217.24],[-230.3,-211.61],[-226.58,-202.21],[-219.73,-186.2],[-210.57,-170.52],[-198.72,-153.99],[-189.73,-134.83],[-185.88,-122.96],[-182.13,-112.81],[-175.81,-99.44],[-169.53,-96.14],[-163.3,-107.48],[-159.43,-116.93],[-156.59,-127.19],[-152.92,-142.36],[-147.87,-166.11],[-147.16,-193.91],[-157.45,-222.35],[-163.16,-233.35],[-167.07,-237.59],[-177.39,-258.18],[-189.41,-293.12],[-203.76,-315.76],[-218.85,-344.27],[-231.01,-368.68],[-236.05,-375.33]],"v":[[-240,-379],[-241.4,-377.92],[-242,-376],[-247.4,-353.78],[-251,-327],[-254.52,-288.63],[-251,-255],[-250.03,-251.96],[-249,-249],[-241.11,-233.52],[-233,-219],[-230.9,-213.48],[-229,-208],[-222.08,-191.48],[-214,-176],[-202.69,-159.81],[-191,-138],[-187.19,-126.97],[-183,-115],[-178.03,-103.7],[-171,-96],[-165.3,-103.6],[-161,-113],[-157.48,-123.8],[-155,-134],[-149.37,-158.28],[-147,-181],[-155,-217],[-163,-233],[-165,-234],[-171,-246],[-186,-285],[-199,-308],[-212,-331],[-230,-367],[-234,-372]],"c":true}],"h":1},{"t":36,"s":[{"i":[[-233.99,-374.42],[-242.24,-375.98],[-244.27,-368.8],[-247.68,-353.76],[-250.25,-333.96],[-253.46,-308.58],[-255.94,-281.08],[-254.33,-267.54],[-252.48,-258.6],[-250.69,-253.93],[-247.77,-248.82],[-245.64,-243.22],[-243.84,-237.63],[-241.1,-232.95],[-237.83,-228.59],[-233.37,-220.04],[-225.84,-199.16],[-222.53,-191.19],[-201.79,-162],[-192.54,-140.93],[-186.12,-122.83],[-175.27,-95.59],[-163.61,-107.3],[-157.43,-123.6],[-143.97,-179.07],[-155.14,-216.43],[-159.22,-225.53],[-162.43,-229.99],[-165.37,-237.1],[-169.11,-242.43],[-175.35,-253.09],[-178.72,-264.17],[-182.79,-277.38],[-193.55,-299.48],[-209.27,-324.87],[-220.05,-348.58]],"o":[[-241.36,-378.08],[-243.7,-371.34],[-246.56,-360.03],[-249.53,-340.72],[-251.99,-317.79],[-255.43,-290.23],[-254.84,-270.49],[-253.15,-261.59],[-251.56,-255.52],[-248.8,-250.58],[-246.22,-245.16],[-244.45,-239.46],[-242.18,-234.41],[-238.92,-230.04],[-235.24,-223.64],[-228.65,-209.57],[-222.71,-192.38],[-215.15,-174.52],[-193.39,-144.69],[-188.69,-131.11],[-182.9,-114.75],[-168.25,-96.26],[-159.32,-117.14],[-149.6,-153.2],[-151.96,-212.11],[-158.82,-223.6],[-161.01,-228.9],[-164.57,-233.79],[-167.8,-241.42],[-172.58,-248.57],[-178.5,-260.55],[-181.29,-271.85],[-189.16,-291.19],[-204.38,-317.15],[-217.13,-339.9],[-228.58,-364.59]],"v":[[-240,-380],[-242.97,-373.66],[-245,-366],[-248.61,-347.24],[-251,-327],[-254.44,-299.41],[-255,-272],[-253.74,-264.57],[-252,-257],[-249.75,-252.25],[-247,-247],[-245.04,-241.34],[-243,-236],[-240.01,-231.5],[-237,-227],[-232,-217],[-223,-193],[-222,-190],[-195,-148],[-191,-137],[-183,-115],[-171,-96],[-162,-111],[-156,-129],[-150,-204],[-158,-222],[-160,-227],[-163,-231],[-167,-240],[-170,-244],[-177,-257],[-180,-268],[-184,-280],[-200,-310],[-213,-332],[-224,-356]],"c":true}],"h":1},{"t":37,"s":[{"i":[[-238.34,-378.97],[-242.21,-376.06],[-244.27,-368.8],[-247.71,-353.57],[-250.23,-333.83],[-253.52,-308.49],[-255.94,-281.12],[-249.34,-250.9],[-232.67,-217.51],[-226.49,-202.94],[-223.23,-194.73],[-220.35,-187.86],[-218.04,-181.8],[-214.88,-176.9],[-211.13,-172.54],[-207.03,-166.81],[-203.04,-160.67],[-200.26,-156.56],[-197.65,-153.23],[-192.71,-142.34],[-187.68,-126.68],[-185.15,-120.44],[-183.33,-117.85],[-180.56,-109.51],[-173.73,-95.74],[-163.54,-107.47],[-157.46,-124.3],[-148.76,-159.71],[-156.02,-220.43],[-175.81,-255.43],[-184.3,-281.8],[-197.95,-307.48],[-205.41,-319.22],[-218.23,-344.9],[-231.3,-367.83],[-234.44,-374.18]],"o":[[-241.33,-378.16],[-243.68,-371.38],[-246.59,-359.91],[-249.53,-340.53],[-252.05,-317.67],[-255.47,-290.21],[-254.01,-262.4],[-238.68,-228.46],[-227.63,-205.82],[-224.29,-197.39],[-221.08,-189.95],[-218.83,-183.78],[-216.06,-178.38],[-212.41,-173.98],[-208.51,-168.97],[-204.29,-162.65],[-201.19,-157.69],[-198.49,-154.33],[-194.62,-147.5],[-189.24,-131.93],[-185.73,-121.26],[-183.94,-118.73],[-182.19,-114.89],[-176.33,-99.93],[-168.19,-96.27],[-159.12,-117.59],[-152.3,-144.46],[-145.79,-203.98],[-171.98,-247.83],[-182.21,-272.62],[-191.67,-298.13],[-203.79,-316.87],[-213.38,-333.13],[-226.95,-361.68],[-234.63,-372.97],[-236.39,-377.04]],"v":[[-240,-380],[-242.95,-373.72],[-245,-366],[-248.62,-347.05],[-251,-327],[-254.49,-299.35],[-255,-272],[-244.01,-239.68],[-229,-209],[-225.39,-200.17],[-222,-192],[-219.59,-185.82],[-217,-180],[-213.64,-175.44],[-210,-171],[-205.66,-164.73],[-202,-159],[-199.38,-155.44],[-197,-152],[-190.98,-137.14],[-186,-122],[-184.54,-119.58],[-183,-117],[-178.44,-104.72],[-171,-96],[-162,-111],[-156,-130],[-148,-171],[-168,-241],[-179,-264],[-188,-290],[-202,-314],[-207,-322],[-224,-356],[-234,-372],[-235,-375]],"c":true}],"h":1},{"t":38,"s":[{"i":[[-228.05,-366.82],[-242.21,-376.06],[-244.27,-368.8],[-247.68,-353.57],[-250.18,-333.82],[-253.62,-308.56],[-256.02,-281.11],[-251.85,-258.25],[-241.64,-235.36],[-234.73,-220.99],[-230.41,-210.46],[-227.41,-203.68],[-224.71,-198.75],[-222.64,-192.92],[-220.84,-186.66],[-219.17,-184.05],[-217.34,-182.59],[-216.2,-180.44],[-215.36,-178.56],[-209.85,-170.7],[-202.09,-160.51],[-191.78,-138.2],[-183.09,-116.35],[-181.68,-110.51],[-173.56,-95.75],[-164.32,-105.72],[-157.54,-124],[-146.05,-167.6],[-149.91,-199.54],[-152.66,-213.64],[-156.18,-219.36],[-161.96,-230.98],[-172.79,-248.88],[-186.1,-287.37],[-197.08,-305.91],[-206.51,-321.68]],"o":[[-241.33,-378.16],[-243.68,-371.38],[-246.59,-359.91],[-249.47,-340.52],[-252.11,-317.75],[-255.58,-290.23],[-254.28,-265.58],[-245.53,-243.14],[-236.27,-224.51],[-231.8,-213.97],[-228.31,-205.3],[-225.62,-200.4],[-223.22,-195.09],[-221.45,-188.71],[-219.75,-184.51],[-217.96,-183.09],[-216.52,-181.16],[-215.62,-179.14],[-212.56,-174.19],[-204.62,-163.86],[-195.04,-148.68],[-185.58,-121.08],[-181.17,-112.21],[-177.16,-100.44],[-168.74,-96.22],[-159.07,-117.65],[-150.57,-151.18],[-148.36,-195.33],[-152.15,-208.72],[-154.51,-218.29],[-160.01,-227.02],[-168.73,-242.17],[-182.63,-270.69],[-194.66,-303.03],[-203.07,-315.53],[-219.33,-344.88]],"v":[[-240,-380],[-242.95,-373.72],[-245,-366],[-248.58,-347.05],[-251,-327],[-254.6,-299.4],[-255,-272],[-248.69,-250.7],[-238,-228],[-233.27,-217.48],[-229,-207],[-226.51,-202.04],[-224,-197],[-222.04,-190.81],[-220,-185],[-218.57,-183.57],[-217,-182],[-215.91,-179.79],[-215,-178],[-207.24,-167.28],[-200,-157],[-187,-125],[-182,-114],[-181,-109],[-171,-96],[-162,-111],[-156,-130],[-148,-191],[-151,-204],[-154,-217],[-157,-221],[-165,-236],[-176,-256],[-193,-300],[-199,-309],[-210,-328]],"c":true}],"h":1},{"t":39,"s":[{"i":[[-238.34,-378.97],[-241.99,-376.7],[-243.3,-370.42],[-246.45,-358.96],[-249.29,-344.43],[-251.94,-324.98],[-254.58,-304.27],[-255.46,-286.22],[-254.66,-270.42],[-247.5,-246.9],[-231.59,-214.96],[-225.31,-198.48],[-221.61,-187.96],[-218.47,-182.6],[-215.79,-179.18],[-209.78,-170.76],[-202.05,-160.49],[-191.79,-138.24],[-176.1,-95.51],[-167.08,-100.19],[-159.12,-117.77],[-143.82,-191.86],[-161,-229.08],[-165.12,-237.55],[-168.16,-241.66],[-174.9,-254.43],[-178.38,-262.66],[-179.48,-265.56],[-188.07,-289.89],[-198.69,-309.29],[-202.6,-314.33],[-207.01,-323.64],[-212.03,-330.18],[-220.13,-348.48],[-231.19,-367.66],[-234.44,-374.18]],"o":[[-241.34,-378.49],[-242.97,-372.66],[-245.31,-363.49],[-248.44,-349.43],[-250.9,-332.09],[-253.78,-311.06],[-255.38,-292.26],[-255.1,-275.3],[-252.2,-257.67],[-237.19,-225.55],[-226.5,-202.25],[-222.87,-191.33],[-219.33,-183.76],[-216.7,-180.31],[-212.51,-174.26],[-204.55,-163.88],[-195.06,-148.58],[-184.02,-116.77],[-170.08,-96.09],[-161.31,-110.77],[-148.4,-154.33],[-156.95,-223.01],[-164.82,-235.35],[-166.83,-240.36],[-171.96,-247.72],[-177.77,-260.68],[-179.36,-264.77],[-184.06,-278.29],[-195.48,-303.58],[-201.37,-313.6],[-205.41,-319.02],[-210.18,-329],[-217.13,-339.71],[-226.98,-361.79],[-234.63,-372.97],[-236.39,-377.04]],"v":[[-240,-380],[-242.48,-374.68],[-244,-368],[-247.45,-354.2],[-250,-339],[-252.86,-318.02],[-255,-298],[-255.28,-280.76],[-254,-267],[-242.34,-236.22],[-228,-206],[-224.09,-194.91],[-220,-185],[-217.58,-181.46],[-215,-178],[-207.17,-167.32],[-200,-157],[-187,-125],[-171,-96],[-165,-104],[-157,-125],[-154,-216],[-164,-234],[-166,-239],[-169,-243],[-177,-259],[-179,-264],[-180,-267],[-193,-299],[-201,-313],[-203,-315],[-209,-327],[-213,-332],[-224,-356],[-234,-372],[-235,-375]],"c":true}],"h":1},{"t":40,"s":[{"i":[[-237.79,-378.77],[-242.06,-375.98],[-244.32,-368.65],[-247.6,-353.58],[-250.11,-333.76],[-253.8,-307.71],[-256.05,-280.71],[-250.08,-253.85],[-237.23,-226.44],[-230.75,-211.53],[-226.32,-201.21],[-222.77,-191.89],[-219.37,-183.43],[-217.3,-181.04],[-216.41,-179.42],[-213.78,-176.37],[-210.85,-172.13],[-206.7,-166.8],[-202.22,-161.02],[-196.17,-150.08],[-189.19,-133.15],[-183.19,-115.23],[-174.15,-95.7],[-167.6,-99.64],[-161.41,-111.07],[-158.35,-118.99],[-155.73,-129.02],[-148.24,-165.97],[-152.25,-213.29],[-162.99,-234.04],[-173.98,-251.42],[-182.67,-272.98],[-205.71,-319.08],[-225.73,-358.62],[-232.24,-368.98],[-233.5,-372.27]],"o":[[-241.15,-378.15],[-243.64,-371.23],[-246.55,-359.95],[-249.38,-340.48],[-252.27,-317.36],[-255.69,-289.39],[-253.72,-263.63],[-241.84,-235.25],[-232.34,-215.17],[-227.75,-204.55],[-223.84,-195.18],[-220.54,-186.02],[-217.6,-181.58],[-216.71,-179.97],[-214.86,-177.81],[-211.78,-173.53],[-208.34,-168.8],[-203.64,-162.91],[-198.58,-155.01],[-191.48,-139.16],[-185.62,-123.13],[-177.46,-101.51],[-169.9,-96.1],[-163.36,-107.12],[-159.49,-115.48],[-156.48,-125.76],[-151.45,-146.42],[-147.63,-196.45],[-160.94,-229.48],[-169.7,-245.1],[-180.43,-265.47],[-192.63,-302.98],[-220.72,-348.14],[-231.16,-368],[-233.61,-370.81],[-235.83,-375.7]],"v":[[-240,-380],[-242.85,-373.6],[-245,-366],[-248.49,-347.03],[-251,-327],[-254.74,-298.55],[-255,-273],[-245.96,-244.55],[-234,-219],[-229.25,-208.04],[-225,-198],[-221.65,-188.95],[-218,-182],[-217,-180.5],[-216,-179],[-212.78,-174.95],[-210,-171],[-205.17,-164.86],[-201,-159],[-193.83,-144.62],[-187,-127],[-180.32,-108.37],[-171,-96],[-165.48,-103.38],[-161,-112],[-157.42,-122.38],[-155,-132],[-148,-178],[-158,-224],[-166,-239],[-177,-258],[-185,-280],[-216,-339],[-230,-366],[-233,-370],[-234,-373]],"c":true}],"h":1},{"t":41,"s":[{"i":[[-228.73,-368.21],[-241.64,-377.66],[-242.47,-373.68],[-246.18,-359.69],[-249.1,-339.75],[-252.62,-316.61],[-256.06,-293.08],[-253.95,-267.45],[-244.08,-240.71],[-235.18,-221.61],[-228.8,-206.77],[-223.54,-193.56],[-217.84,-182.75],[-213.19,-175.9],[-209.44,-170.88],[-199.03,-155.41],[-189.14,-132.5],[-185.38,-121.63],[-184.58,-117.48],[-182.76,-113.56],[-180.5,-110.1],[-176.81,-101.5],[-172.94,-95.81],[-168.27,-98.67],[-163.42,-107.17],[-161.61,-111.58],[-157.85,-119.31],[-155.84,-130.34],[-152.59,-140.71],[-147.94,-171.09],[-154.38,-219.23],[-166.92,-240.65],[-172.47,-249.17],[-181,-268.05],[-190.22,-293.79],[-207.18,-322.34]],"o":[[-241.15,-378.82],[-242.29,-375.09],[-244.88,-366.06],[-248.29,-346.53],[-251.09,-324.82],[-255.11,-300.74],[-255.91,-276.6],[-248.04,-249.51],[-237.53,-226.72],[-230.82,-211.63],[-225.37,-197.68],[-219.77,-186.09],[-214.47,-177.71],[-210.67,-172.49],[-202.96,-162.41],[-192.12,-140.46],[-185.59,-122.89],[-184.88,-118.92],[-183.51,-114.76],[-181.26,-111.23],[-178.09,-104.84],[-174.24,-96.98],[-170.07,-96.09],[-164.95,-104.22],[-162.24,-109.5],[-159.74,-115.93],[-155.79,-125.84],[-154.22,-137.38],[-149.94,-155.47],[-148.1,-201.46],[-163.48,-235.4],[-170.72,-246.76],[-178.38,-260.1],[-187.16,-286.4],[-200.07,-312.58],[-221.94,-349.4]],"v":[[-240,-380],[-241.96,-376.38],[-243,-372],[-247.24,-353.11],[-250,-333],[-253.86,-308.68],[-256,-286],[-251,-258.48],[-240,-232],[-233,-216.62],[-227,-202],[-221.66,-189.83],[-216,-180],[-211.93,-174.19],[-208,-169],[-195.57,-147.94],[-186,-124],[-185.13,-120.28],[-184,-116],[-182.01,-112.4],[-180,-109],[-175.53,-99.24],[-171,-96],[-166.61,-101.45],[-163,-108],[-161,-113],[-157,-122],[-155,-134],[-152,-144],[-148,-182],[-161,-231],[-169,-244],[-174,-252],[-184,-277],[-194,-301],[-213,-333]],"c":true}],"h":1},{"t":42,"s":[{"i":[[-228.39,-368.07],[-245.15,-366.63],[-248.77,-342.26],[-252.63,-316.94],[-256.13,-293.39],[-251.76,-261.05],[-235.96,-224.42],[-230.17,-209.43],[-227.67,-203.67],[-225.18,-197.1],[-222.96,-190.94],[-219.64,-184.9],[-216.18,-180.62],[-214.57,-178],[-214.3,-176.39],[-212.59,-174.46],[-210.41,-172.54],[-209.61,-171.05],[-209.34,-169.42],[-206.15,-165.83],[-202.07,-161.62],[-199.97,-158.18],[-198.51,-154.99],[-192.84,-142.38],[-186.89,-124.29],[-175.45,-95.57],[-164,-106.09],[-154.02,-131.93],[-147.99,-171.65],[-154.31,-218.53],[-162.97,-235.31],[-167.06,-239.54],[-169.97,-245.27],[-180.21,-262.91],[-185.25,-280.1],[-203.38,-315.63]],"o":[[-243.27,-373.75],[-247.9,-350.89],[-251.06,-325],[-255.16,-301.14],[-255.78,-273.84],[-241.85,-236.34],[-231.08,-211.59],[-228.46,-205.47],[-225.95,-199.38],[-223.69,-192.88],[-220.8,-186.59],[-217.33,-181.92],[-214.67,-178.55],[-214.39,-176.92],[-213.38,-175.19],[-211.1,-173.14],[-209.69,-171.59],[-209.43,-169.97],[-207.62,-167.26],[-203.38,-163.01],[-200.46,-159.19],[-198.99,-156.08],[-194.9,-147.99],[-188.84,-130.54],[-182.42,-113.01],[-169.07,-96.18],[-156.88,-119.73],[-150.1,-155.32],[-148.03,-202],[-162.02,-232.9],[-164.87,-238.43],[-169.23,-242.9],[-175.6,-254.72],[-184.47,-275.27],[-192.84,-301.37],[-221.13,-347.28]],"v":[[-240,-380],[-246.52,-358.76],[-250,-333],[-253.9,-309.04],[-256,-286],[-246.81,-248.69],[-232,-214],[-229.32,-207.45],[-227,-202],[-224.43,-194.99],[-222,-189],[-218.49,-183.41],[-215,-179],[-214.48,-177.46],[-214,-176],[-211.84,-173.8],[-210,-172],[-209.52,-170.51],[-209,-169],[-204.77,-164.42],[-201,-160],[-199.48,-157.13],[-198,-154],[-190.84,-136.46],[-184,-117],[-171,-96],[-163,-108],[-152,-144],[-148,-182],[-161,-231],[-164,-237],[-168,-241],[-171,-247],[-183,-271],[-187,-285],[-212,-331]],"c":true}],"h":1},{"t":43,"s":[{"i":[[-238.14,-379.48],[-244.99,-366.8],[-248.73,-342.94],[-252.68,-317.93],[-256.08,-294.39],[-254.18,-269.67],[-246.56,-248.04],[-239.83,-232.7],[-233.38,-218.17],[-230.43,-209.53],[-227.88,-203.18],[-224.86,-195.49],[-221.43,-187.44],[-213.25,-175.28],[-202.62,-162.48],[-195.34,-148.36],[-189.55,-130.91],[-182.82,-113.18],[-173.38,-95.77],[-167.9,-98.93],[-162.64,-108.63],[-155.2,-128.42],[-149.49,-160.11],[-148.67,-176.82],[-148.68,-191.35],[-153.64,-214.99],[-160.15,-230.31],[-169.12,-243.75],[-173.13,-250.49],[-179.04,-261.09],[-185.08,-279.25],[-192.04,-296.32],[-197.79,-308.13],[-210.57,-329.36],[-225.56,-357.94],[-234.54,-374.48]],"o":[[-243.12,-373.83],[-247.79,-351.36],[-251.14,-325.99],[-255.15,-302.13],[-255.9,-277.9],[-249.51,-254.74],[-242.14,-237.61],[-235.45,-222.98],[-231.24,-211.69],[-228.75,-205.27],[-225.89,-198.27],[-222.63,-190.07],[-216.94,-179.79],[-206.09,-166.63],[-197.31,-153.4],[-191.46,-137.11],[-185.63,-120.29],[-176.7,-100.92],[-169.83,-96.11],[-164.31,-105.18],[-158.21,-118.11],[-150.85,-149.42],[-148.83,-172.15],[-148.59,-186.42],[-149.84,-204.66],[-158.24,-226.7],[-165.47,-239.08],[-172.27,-249.19],[-176.75,-256.75],[-183.71,-272.78],[-189.44,-292.3],[-196.67,-305.2],[-204.43,-318.38],[-220.88,-347.15],[-232.63,-369.72],[-237.46,-377.52]],"v":[[-240,-380],[-246.39,-359.08],[-250,-334],[-253.91,-310.03],[-256,-287],[-251.84,-262.21],[-244,-242],[-237.64,-227.84],[-232,-214],[-229.59,-207.4],[-227,-201],[-223.75,-192.78],[-220,-185],[-209.67,-170.96],[-200,-158],[-193.4,-142.74],[-187,-124],[-179.76,-107.05],[-171,-96],[-166.1,-102.05],[-162,-110],[-153.02,-138.92],[-149,-169],[-148.63,-181.62],[-149,-195],[-156,-221],[-163,-235],[-171,-247],[-174,-252],[-181,-266],[-187,-285],[-195,-302],[-199,-310],[-215,-337],[-231,-367],[-236,-376]],"c":true}],"h":1},{"t":44,"s":[{"i":[[-239.07,-379.74],[-242.78,-373.65],[-245.63,-362.96],[-247.62,-351.16],[-249.34,-338.45],[-251.29,-325.98],[-253.39,-314.03],[-255.18,-302.25],[-256.08,-290.74],[-251.66,-260.27],[-235.93,-224.32],[-230.12,-209.03],[-227.86,-203.11],[-224.84,-195.44],[-221.42,-187.32],[-213.1,-175.23],[-202.58,-162.41],[-195.34,-148.36],[-189.55,-130.91],[-182.76,-113.05],[-173.36,-95.8],[-168.96,-97.69],[-165.69,-103.74],[-154.56,-130.32],[-147.83,-178.85],[-155.42,-220.98],[-175.05,-253.69],[-183.21,-273.24],[-187.33,-285.78],[-196,-305.06],[-208.92,-326.77],[-219.29,-345.58],[-227.96,-361.94],[-232.67,-370.16],[-235.32,-375.29],[-237.26,-377.63]],"o":[[-241.54,-376.94],[-244.82,-366.66],[-247.03,-355.21],[-248.77,-342.78],[-250.59,-329.99],[-252.69,-318],[-254.64,-306.15],[-255.9,-294.54],[-255.7,-273.36],[-241.78,-235.75],[-230.94,-211.23],[-228.58,-204.97],[-225.89,-198.28],[-222.61,-189.96],[-216.81,-179.77],[-205.98,-166.55],[-197.31,-153.4],[-191.46,-137.11],[-185.58,-120.15],[-176.65,-100.88],[-170.11,-96.07],[-166.75,-101.53],[-159.15,-115.65],[-148.9,-161.93],[-150.15,-208.89],[-167.87,-243.38],[-181.79,-269.1],[-185.98,-281.58],[-192.04,-297.67],[-204.44,-319.61],[-216.31,-339.86],[-225.12,-356.62],[-231.76,-368.26],[-234.45,-373.67],[-236.73,-376.76],[-238.43,-379.12]],"v":[[-240,-380],[-243.8,-370.16],[-246.33,-359.09],[-248.19,-346.97],[-250,-334],[-251.99,-321.99],[-254.02,-310.09],[-255.54,-298.4],[-256,-287],[-246.72,-248.01],[-232,-214],[-229.35,-207],[-227,-201],[-223.73,-192.7],[-220,-185],[-209.54,-170.89],[-200,-158],[-193.4,-142.74],[-187,-124],[-179.71,-106.96],[-171,-96],[-167.85,-99.61],[-165,-105],[-151.73,-146.12],[-149,-194],[-161.65,-232.18],[-180,-265],[-184.59,-277.41],[-189,-290],[-200.22,-312.33],[-213,-334],[-222.2,-351.1],[-231,-367],[-233.56,-371.92],[-236,-376],[-237.85,-378.38]],"c":true}],"h":1},{"t":45,"s":[{"i":[[-238.14,-379.48],[-244.82,-367.09],[-248.67,-343.78],[-252.68,-319.44],[-256.04,-296.29],[-254.29,-270.93],[-245.18,-244.75],[-236.7,-224.87],[-230.67,-209.69],[-226.44,-197.8],[-221.51,-186.58],[-218.46,-183.28],[-216.57,-180.78],[-210.77,-173.23],[-203.15,-163.42],[-193.48,-144.2],[-184.84,-117.07],[-177.53,-102.29],[-172.3,-95.89],[-169.26,-97.55],[-165.56,-103.02],[-157.15,-121.46],[-151,-152.37],[-149.11,-172.78],[-148.65,-187.17],[-157.02,-226.12],[-177.36,-256.42],[-184.82,-277.48],[-192.21,-296.73],[-199.06,-311.69],[-202.5,-316.13],[-205.13,-320.49],[-208.13,-325.49],[-212.5,-332.34],[-225.6,-357.64],[-234.7,-374.64]],"o":[[-242.99,-373.96],[-247.67,-352],[-251.16,-327.29],[-255.12,-303.94],[-255.95,-279.55],[-248.91,-253.53],[-238.87,-230.03],[-232.61,-214.71],[-227.93,-202.01],[-223.23,-190.08],[-219.17,-184.13],[-217.16,-181.6],[-213.45,-176.51],[-205.62,-166.68],[-196.56,-152.91],[-187.62,-126.27],[-179.38,-105.6],[-173.99,-97.44],[-170.48,-96.04],[-166.8,-101.04],[-160.4,-112.03],[-152.45,-141.63],[-149.54,-167.94],[-148.67,-182.39],[-150.46,-212.07],[-170.56,-247.23],[-183.88,-272.7],[-189.23,-290.62],[-197.79,-307.44],[-201.38,-315.65],[-204.27,-319.19],[-207.27,-324.19],[-210.81,-330.12],[-220.25,-346.11],[-232.35,-369.33],[-237.46,-377.52]],"v":[[-240,-380],[-246.24,-359.55],[-250,-335],[-253.9,-311.69],[-256,-289],[-251.6,-262.23],[-241,-235],[-234.65,-219.79],[-229,-205],[-224.83,-193.94],[-220,-185],[-217.81,-182.44],[-216,-180],[-208.19,-169.95],[-201,-160],[-190.55,-135.24],[-181,-109],[-175.76,-99.87],[-171,-96],[-168.03,-99.3],[-165,-104],[-154.8,-131.55],[-150,-163],[-148.89,-177.59],[-149,-192],[-164,-237],[-182,-268],[-186,-281],[-196,-304],[-201,-315],[-203,-317],[-206,-322],[-209,-327],[-214,-335],[-231,-367],[-236,-376]],"c":true}],"h":1},{"t":46,"s":[{"i":[[-238.14,-379.48],[-244.93,-366.8],[-248.6,-342.82],[-252.84,-318.38],[-256.19,-295.44],[-254.03,-270.53],[-245.03,-244.63],[-237.56,-226.99],[-232.48,-215],[-229.7,-206.7],[-227.93,-200.06],[-224.87,-193.51],[-220.68,-185.71],[-218.44,-183.26],[-216.63,-180.85],[-210.64,-173.21],[-203,-163.41],[-193.66,-144.25],[-184.78,-117.94],[-175,-95.67],[-166.12,-102.05],[-157.04,-121.16],[-152.64,-137.51],[-150.54,-155.91],[-148.36,-181.68],[-159.43,-230.22],[-169.58,-245.34],[-179.14,-261.23],[-187.96,-286.48],[-198.19,-309.14],[-204.38,-319.35],[-210.85,-329.26],[-218.09,-344.58],[-224,-353.14],[-229.87,-365.72],[-234.96,-374.92]],"o":[[-243.13,-373.89],[-247.66,-351.26],[-251.25,-326.17],[-255.31,-303.02],[-255.77,-278.96],[-248.67,-253.36],[-239.32,-230.99],[-234.14,-219],[-230.23,-208.91],[-228.55,-202.27],[-226.28,-196.4],[-222.07,-188.16],[-219.13,-184.09],[-217.2,-181.64],[-213.39,-176.51],[-205.44,-166.66],[-196.77,-152.78],[-187.66,-126.83],[-179.08,-105.97],[-169.99,-96.08],[-160.61,-111.66],[-153.86,-134.93],[-151.1,-148.28],[-149.1,-172.13],[-150.57,-213.97],[-168.37,-244.6],[-174.53,-253.02],[-185.61,-276.56],[-193.68,-300.64],[-202.86,-317.22],[-208.29,-325.74],[-216.33,-338.81],[-221.92,-351.71],[-227.76,-360.15],[-233.42,-371.19],[-237.46,-377.52]],"v":[[-240,-380],[-246.3,-359.03],[-250,-334],[-254.08,-310.7],[-256,-288],[-251.35,-261.94],[-241,-235],[-235.85,-222.99],[-231,-211],[-229.12,-204.48],[-227,-198],[-223.47,-190.83],[-220,-185],[-217.82,-182.45],[-216,-180],[-208.04,-169.93],[-201,-160],[-190.66,-135.54],[-181,-110],[-171,-96],[-165,-104],[-155,-130],[-152,-142],[-150,-162],[-149,-191],[-168,-244],[-170,-246],[-182,-268],[-191,-294],[-201,-314],[-206,-322],[-213,-333],[-221,-350],[-225,-355],[-232,-369],[-236,-376]],"c":true}],"h":1},{"t":47,"s":[{"i":[[-235.83,-378.24],[-244.8,-367.09],[-248.64,-343.76],[-253.51,-315.3],[-256.43,-286.43],[-253.59,-270.35],[-250.75,-262.23],[-247.25,-251.92],[-243.43,-241.54],[-234.65,-218.29],[-223.15,-190.52],[-211.99,-174.98],[-203.27,-163.9],[-194.01,-144.79],[-184.69,-117.76],[-178.56,-104.49],[-172.95,-95.84],[-167.76,-98.96],[-163.37,-108.18],[-161.26,-112.26],[-158.34,-117.14],[-156.63,-122.1],[-155.34,-127.67],[-148.31,-167.31],[-154.11,-220.5],[-168.16,-244.15],[-179.77,-261.92],[-186.57,-280.5],[-190.93,-295.49],[-199.84,-312.66],[-211.31,-331.02],[-214.52,-337.32],[-215.88,-337.79],[-218.32,-343.22],[-221.79,-351.74],[-228.18,-364.1]],"o":[[-242.99,-373.96],[-247.63,-351.99],[-251.54,-325.09],[-255.95,-295.97],[-254.47,-273.48],[-251.74,-264.73],[-248.53,-255.65],[-244.69,-244.86],[-238.08,-228.27],[-227.19,-199.41],[-215.11,-178.78],[-206.08,-167.54],[-197.16,-153.41],[-187.77,-126.97],[-180.08,-108.07],[-174.99,-98.37],[-169.58,-96.12],[-164.66,-104.99],[-162.34,-110.44],[-159.26,-115.61],[-157.21,-120.01],[-155.69,-125.93],[-150.25,-147.56],[-150.24,-203.78],[-164.28,-238.95],[-175.9,-255.64],[-185.1,-275.25],[-189.48,-290.62],[-195.94,-306.4],[-207.53,-324.97],[-214.08,-337.18],[-215.42,-337.63],[-217.17,-340.1],[-220.63,-349.04],[-225.76,-355.88],[-233.87,-370.04]],"v":[[-240,-380],[-246.22,-359.54],[-250,-335],[-254.73,-305.64],[-255,-277],[-252.66,-267.54],[-250,-260],[-245.97,-248.39],[-242,-238],[-230.92,-208.85],[-218,-183],[-209.04,-171.26],[-201,-160],[-190.89,-135.88],[-181,-110],[-176.78,-101.43],[-171,-96],[-166.21,-101.98],[-163,-109],[-160.26,-113.94],[-158,-118],[-156.16,-124.01],[-155,-129],[-149.27,-185.55],[-161,-233],[-172.03,-249.9],[-183,-270],[-188.02,-285.56],[-193,-300],[-203.68,-318.82],[-214,-337],[-214.97,-337.47],[-216,-338],[-219.47,-346.13],[-223,-353],[-230,-366]],"c":true}],"h":1},{"t":48,"s":[{"i":[[-232.7,-372.32],[-244.98,-366.44],[-248.55,-342.55],[-253,-318.09],[-256.29,-295.1],[-253.77,-271.37],[-245.25,-247.32],[-236.77,-224.91],[-229.44,-204.65],[-226.24,-196.81],[-225.41,-193.76],[-224.18,-192.04],[-222.47,-190.72],[-221.29,-188.42],[-220.47,-185.69],[-219.43,-184.64],[-218.18,-184.24],[-217.57,-183.02],[-217.28,-181.38],[-216.42,-180.64],[-215.19,-180.25],[-214.6,-177.77],[-211.8,-174.99],[-209.09,-171.4],[-193.97,-144.62],[-177.42,-95.47],[-163.25,-107.08],[-148.93,-158.43],[-149.95,-195.8],[-159.07,-229.65],[-174.58,-253.61],[-185.43,-277.16],[-193.09,-298.69],[-196.76,-306.54],[-202.13,-316.35],[-216.26,-340.09]],"o":[[-243.21,-373.67],[-247.65,-350.88],[-251.35,-326.04],[-255.47,-302.62],[-255.65,-279.46],[-248.57,-255.3],[-239.3,-232.09],[-231.84,-211.2],[-226.54,-197.93],[-225.68,-194.72],[-224.69,-192.43],[-223.07,-191.19],[-221.56,-189.33],[-220.75,-186.6],[-219.84,-184.77],[-218.6,-184.38],[-217.68,-183.58],[-217.37,-181.92],[-216.83,-180.76],[-215.6,-180.38],[-214.35,-179.13],[-213.12,-175.86],[-209.88,-172.62],[-198.48,-157.79],[-185.5,-121.03],[-168.45,-96.21],[-152.83,-129.88],[-149.02,-187.49],[-153.65,-221.12],[-170.6,-247.6],[-182.41,-268.23],[-190.08,-293.16],[-195.1,-305.35],[-199.95,-312.74],[-210.85,-330.5],[-226.7,-359.73]],"v":[[-240,-380],[-246.32,-358.66],[-250,-334],[-254.23,-310.35],[-256,-288],[-251.17,-263.33],[-242,-239],[-234.31,-218.05],[-227,-199],[-225.96,-195.76],[-225,-193],[-223.63,-191.62],[-222,-190],[-221.02,-187.51],[-220,-185],[-219.02,-184.51],[-218,-184],[-217.47,-182.47],[-217,-181],[-216.01,-180.51],[-215,-180],[-214,-177],[-211,-174],[-208,-170],[-188,-128],[-171,-96],[-161,-112],[-149,-180],[-151,-203],[-167,-242],[-178,-260],[-188,-286],[-195,-305],[-197,-307],[-205,-321],[-221,-349]],"c":true}],"h":1},{"t":49,"s":[{"i":[[-237.41,-378.93],[-244.76,-367.03],[-248.51,-343.55],[-253.02,-319.49],[-256.31,-296.63],[-251.8,-265.12],[-237.5,-227.81],[-231.3,-209.76],[-227.54,-198.22],[-224.39,-192.23],[-221.77,-189.09],[-219.34,-185.59],[-217.47,-182.71],[-215.32,-179.75],[-212.8,-177.01],[-207.83,-170.62],[-202.47,-162.66],[-196.6,-150.48],[-190.44,-132.54],[-184.07,-115.56],[-173.75,-95.77],[-168.46,-98.51],[-163.34,-106.4],[-162.2,-108.7],[-161.31,-111.31],[-154.12,-132.35],[-148.98,-169.25],[-153.39,-219.27],[-176.77,-253.94],[-189.85,-291.77],[-200.62,-313.72],[-204.76,-319.59],[-206.72,-324.87],[-213.69,-334.89],[-225.5,-356.91],[-233.01,-371.96]],"o":[[-243.01,-374],[-247.51,-351.8],[-251.37,-327.17],[-255.5,-304.22],[-255.55,-277.97],[-242.77,-240.04],[-232.53,-213.89],[-228.81,-201.92],[-225.25,-193.44],[-222.64,-190.06],[-220.11,-186.73],[-218.02,-183.58],[-216.16,-180.74],[-213.64,-177.88],[-209.85,-173.29],[-204.15,-165.3],[-198.62,-155.71],[-192.51,-138.9],[-186.94,-123.18],[-177.47,-101.86],[-170.29,-96.06],[-164.99,-103.68],[-162.54,-107.8],[-161.59,-110.46],[-157.13,-120.47],[-150.04,-156.74],[-149.05,-200.34],[-166.72,-244.95],[-188.02,-282.05],[-196.68,-306.96],[-203.16,-319.35],[-206.2,-322.04],[-210.51,-331.17],[-221.01,-347.91],[-231.33,-367.39],[-236.3,-375.4]],"v":[[-240,-380],[-246.14,-359.42],[-250,-335],[-254.26,-311.85],[-256,-289],[-247.29,-252.58],[-234,-218],[-230.06,-205.84],[-226,-195],[-223.51,-191.14],[-221,-188],[-218.68,-184.58],[-217,-182],[-214.48,-178.81],[-212,-176],[-205.99,-167.96],[-201,-160],[-194.55,-144.69],[-188,-126],[-180.77,-108.71],[-171,-96],[-166.73,-101.09],[-163,-107],[-161.89,-109.58],[-161,-112],[-152.08,-144.54],[-149,-179],[-160,-232],[-184,-272],[-194,-301],[-203,-319],[-205,-320],[-208,-327],[-216,-339],[-230,-365],[-234,-373]],"c":true}],"h":1},{"t":50,"s":[{"i":[[-237.41,-378.93],[-245.25,-364.67],[-249.62,-337.13],[-253.6,-315.75],[-256.45,-295.29],[-253.59,-271.81],[-245.19,-247.45],[-236.4,-222.43],[-228.46,-199.23],[-223.98,-191.71],[-222.27,-190.36],[-221.57,-189.02],[-221.26,-187.37],[-217.38,-182.24],[-211.46,-175.57],[-209.55,-173.08],[-209.34,-171.45],[-208.43,-170.63],[-207.2,-170.22],[-206.55,-169.08],[-206.34,-167.47],[-205.44,-166.64],[-204.19,-166.21],[-203.54,-165.09],[-203.33,-163.49],[-197.23,-152.2],[-191,-132.8],[-180.56,-107.81],[-169.08,-97.2],[-148.25,-163.04],[-156.58,-225.58],[-178.53,-257.12],[-187.48,-284.32],[-201.23,-315.44],[-223.52,-353.36],[-233.06,-372.02]],"o":[[-243.19,-373.35],[-248.47,-346.55],[-252.13,-322.35],[-255.76,-302.22],[-255.5,-279.83],[-248.44,-255.62],[-238.92,-230.82],[-231.17,-206.64],[-224.6,-192.28],[-222.82,-190.75],[-221.69,-189.59],[-221.35,-187.92],[-219.4,-184.71],[-213.41,-177.67],[-209.63,-173.61],[-209.41,-172],[-208.83,-170.77],[-207.62,-170.36],[-206.63,-169.6],[-206.4,-168.02],[-205.84,-166.78],[-204.62,-166.35],[-203.62,-165.59],[-203.39,-164.04],[-199.48,-157.79],[-192.99,-139.7],[-185.77,-119.21],[-171.1,-92.35],[-152.18,-125.36],[-151.28,-211.47],[-169.36,-248.31],[-186.93,-279.04],[-193.91,-304.17],[-216.83,-340.65],[-231.33,-367.39],[-236.3,-375.4]],"v":[[-240,-380],[-246.86,-355.61],[-251,-329],[-254.68,-308.98],[-256,-288],[-251.01,-263.71],[-242,-239],[-233.78,-214.54],[-225,-193],[-223.4,-191.23],[-222,-190],[-221.46,-188.47],[-221,-187],[-215.4,-179.96],[-210,-174],[-209.48,-172.54],[-209,-171],[-208.02,-170.49],[-207,-170],[-206.47,-168.55],[-206,-167],[-205.03,-166.49],[-204,-166],[-203.46,-164.56],[-203,-163],[-195.11,-145.95],[-188,-125],[-177,-102],[-165,-104],[-150,-191],[-163,-237],[-185,-274],[-189,-289],[-209,-328],[-230,-365],[-234,-373]],"c":true}],"h":1},{"t":51,"s":[{"i":[[-235.24,-375.86],[-244.15,-368.09],[-248.58,-346.79],[-252.7,-324.39],[-255.78,-303.18],[-254.69,-276.13],[-245.57,-248.89],[-235.77,-220.39],[-225.65,-194.6],[-219.1,-184.99],[-216.86,-181.05],[-214.75,-178.94],[-212.53,-177.65],[-211.24,-175.7],[-210.4,-173.53],[-206.65,-168.83],[-202.15,-163.06],[-196.03,-150.5],[-190.3,-133.25],[-184.15,-116.2],[-173.95,-95.75],[-167.34,-99.88],[-161.19,-111.56],[-160.69,-114.37],[-156.71,-120.92],[-150.54,-149.2],[-151.81,-217.21],[-163.12,-238.61],[-165.66,-240.55],[-166.48,-243.25],[-176.68,-256.58],[-187.47,-282.64],[-200.47,-313.15],[-208.01,-327.37],[-211.18,-331.61],[-222.55,-351.95]],"o":[[-242.36,-374.45],[-247.26,-354.27],[-251.31,-331.8],[-254.94,-310.08],[-256.4,-285.68],[-249.27,-257.73],[-238.7,-229.84],[-229.25,-202.77],[-219.92,-186.47],[-217.57,-182.28],[-215.48,-179.37],[-213.28,-178.09],[-211.54,-176.43],[-210.67,-174.24],[-208.33,-170.8],[-203.56,-164.96],[-198.14,-155.88],[-192.11,-139.19],[-186.92,-124.07],[-177.66,-102.03],[-169.74,-96.11],[-163.06,-107.61],[-160.46,-113.26],[-158.9,-118.61],[-152.38,-133.62],[-148.21,-191.35],[-162.78,-236.35],[-164.27,-240.43],[-166.62,-241.83],[-171.96,-251.11],[-185.31,-273.4],[-194.25,-305.05],[-207.89,-325.48],[-209.79,-330.3],[-217.41,-342.12],[-230.6,-366.51]],"v":[[-240,-380],[-245.7,-361.18],[-250,-339],[-253.82,-317.23],[-256,-297],[-251.98,-266.93],[-242,-239],[-232.51,-211.58],[-221,-188],[-218.33,-183.64],[-216,-180],[-214.01,-178.51],[-212,-177],[-210.95,-174.97],[-210,-173],[-205.11,-166.89],[-201,-161],[-194.07,-144.84],[-188,-127],[-180.91,-109.11],[-171,-96],[-165.2,-103.75],[-161,-112],[-160,-116],[-156,-123],[-150,-159],[-162,-235],[-164,-240],[-166,-241],[-167,-244],[-181,-265],[-190,-291],[-207,-324],[-209,-329],[-212,-333],[-227,-360]],"c":true}],"h":1},{"t":52,"s":[{"i":[[-235.1,-375.64],[-244.64,-366.78],[-248.48,-344.13],[-253.03,-321.13],[-256.31,-298.56],[-253.64,-273.24],[-245.01,-247.56],[-239.23,-230.52],[-235.41,-217.93],[-232.48,-210.25],[-229.85,-204.85],[-227.29,-198.72],[-225.02,-192.68],[-223.45,-190.65],[-222.16,-190.22],[-221.55,-187.76],[-219.38,-186.5],[-218.61,-183.78],[-211.5,-176.26],[-207.79,-171.28],[-205.55,-168.78],[-203.81,-164.26],[-200.8,-160.59],[-193.15,-138.42],[-175.86,-95.58],[-163.95,-106.18],[-158.42,-118.86],[-147.23,-206.98],[-168.96,-246.41],[-173.49,-252.26],[-175.13,-256.64],[-178.05,-260.4],[-182.44,-267.37],[-187.37,-281.86],[-206.99,-324.28],[-223.88,-354.35]],"o":[[-242.9,-373.71],[-247.43,-351.99],[-251.38,-328.6],[-255.5,-306.11],[-255.63,-281.96],[-248.33,-256.04],[-240.52,-234.8],[-236.67,-222.08],[-233.31,-212.08],[-230.75,-206.64],[-228.03,-200.88],[-225.79,-194.62],[-223.87,-190.79],[-222.6,-190.36],[-221.36,-189.15],[-220.66,-186.53],[-218.34,-185.12],[-215.51,-179.82],[-208.77,-172.14],[-206.4,-169.02],[-204.09,-166.69],[-201.82,-161.14],[-195.43,-149.87],[-186.01,-119.83],[-169.21,-96.15],[-160.31,-113.16],[-146.09,-154.75],[-162.95,-239.01],[-172.59,-251.9],[-174.85,-254.23],[-176.85,-259.33],[-181.12,-265.58],[-186.22,-276.17],[-195.92,-308.87],[-220.62,-348.41],[-230.75,-366.79]],"v":[[-240,-380],[-246.04,-359.38],[-250,-336],[-254.27,-313.62],[-256,-291],[-250.98,-264.64],[-242,-239],[-237.95,-226.3],[-234,-214],[-231.62,-208.45],[-229,-203],[-226.54,-196.67],[-224,-191],[-223.03,-190.51],[-222,-190],[-221,-187],[-219,-186],[-218,-183],[-210,-174],[-207,-170],[-205,-168],[-203,-163],[-200,-159],[-188,-125],[-171,-96],[-163,-108],[-157,-123],[-160,-233],[-172,-251],[-174,-253],[-176,-258],[-179,-262],[-184,-271],[-189,-287],[-217,-342],[-227,-360]],"c":true}],"h":1},{"t":53,"s":[{"i":[[-236.78,-379.28],[-244.41,-367.7],[-247.99,-346.96],[-252.46,-324.12],[-256.54,-298.75],[-254.3,-276.96],[-248.92,-258.73],[-239.47,-228.79],[-226.42,-194.87],[-212.76,-177.01],[-202.44,-164.09],[-196.1,-149.18],[-190.61,-131.54],[-183.56,-114.31],[-173.27,-95.78],[-169.41,-97.29],[-166.64,-101.96],[-162.62,-108.86],[-159.33,-116.56],[-155.34,-127.46],[-152.65,-138.75],[-149.1,-177.68],[-156.25,-226.24],[-163.21,-238.71],[-165.48,-241.17],[-166.09,-242.61],[-165.88,-243.74],[-166.51,-244.32],[-167.88,-244.81],[-167.77,-246.49],[-169.75,-247.63],[-180.12,-262.41],[-190.9,-293.23],[-203.84,-319.5],[-225.89,-356.44],[-233.76,-370.59]],"o":[[-242.66,-374.47],[-247.07,-353.95],[-250.44,-332.49],[-255.51,-307.25],[-255.59,-283.35],[-250.97,-264.65],[-243.01,-241.11],[-231.17,-205.67],[-216.54,-181.22],[-205.71,-168.45],[-197.8,-154.41],[-192.51,-137.74],[-186.67,-121.67],[-176.86,-101.36],[-170.34,-96.06],[-167.56,-100.24],[-163.95,-106.33],[-160.31,-113.98],[-156.51,-123.83],[-153.4,-134.92],[-149.47,-159.56],[-152.49,-211.02],[-162.47,-237.88],[-164.71,-240.36],[-166.15,-242.24],[-165.96,-243.36],[-166.07,-244.16],[-167.41,-244.65],[-168.31,-245.46],[-168.14,-247.32],[-174.69,-254.93],[-188.9,-281.86],[-198.79,-312.02],[-217.22,-341.54],[-232.16,-370.35],[-235.95,-374.33]],"v":[[-240,-380],[-245.74,-360.82],[-249,-341],[-253.99,-315.68],[-256,-290],[-252.64,-270.8],[-247,-253],[-235.32,-217.23],[-220,-186],[-209.24,-172.73],[-200,-159],[-194.31,-143.46],[-188,-125],[-180.21,-107.84],[-171,-96],[-168.48,-98.77],[-166,-103],[-161.46,-111.42],[-158,-120],[-154.37,-131.19],[-152,-143],[-150.79,-194.35],[-162,-237],[-163.96,-239.53],[-166,-242],[-166.02,-242.98],[-166,-244],[-166.96,-244.48],[-168,-245],[-168,-247],[-170,-248],[-184,-271],[-195,-303],[-209,-328],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":54,"s":[{"i":[[-236.78,-379.28],[-244.61,-366.81],[-248.44,-344.14],[-253.15,-321.19],[-256.47,-298.7],[-253.61,-273.75],[-245.77,-248.26],[-238.27,-225.51],[-230.88,-204.9],[-225.21,-193.77],[-220.67,-187.19],[-217.17,-183],[-214.43,-180.58],[-213.57,-179],[-213.32,-177.39],[-207.91,-172.64],[-204.95,-166.5],[-201.83,-162.62],[-190.56,-130.51],[-174.79,-95.63],[-163.58,-106.89],[-150.94,-139.83],[-150.36,-207.1],[-165.25,-241.65],[-171.34,-252.05],[-174.4,-254.15],[-174.77,-256.5],[-176.75,-257.63],[-176.77,-259.49],[-178.76,-260.61],[-183.01,-270.16],[-187.29,-278.79],[-189.12,-286.26],[-203.6,-320.6],[-226.77,-358.41],[-233.76,-370.59]],"o":[[-242.88,-373.74],[-247.39,-352.01],[-251.42,-328.59],[-255.68,-306.24],[-255.47,-282.37],[-248.76,-256.69],[-240.59,-232.81],[-233.42,-211.56],[-226.62,-196.17],[-222.23,-189.27],[-218.21,-183.96],[-215.29,-181.31],[-213.67,-179.55],[-213.4,-177.92],[-210.87,-174.36],[-205.14,-168.81],[-203.07,-163.54],[-194.32,-147.99],[-181.74,-110.67],[-168.92,-96.2],[-155.84,-121.64],[-148.43,-180.24],[-160.4,-234.16],[-171.61,-250.89],[-172.58,-253.83],[-175.31,-255.44],[-175.15,-257.32],[-177.31,-258.46],[-177.15,-260.34],[-181.46,-264.96],[-185.9,-277.18],[-188.83,-283.57],[-195.53,-306.27],[-219.06,-345.26],[-232.16,-370.35],[-235.95,-374.33]],"v":[[-240,-380],[-246,-359.41],[-250,-336],[-254.41,-313.72],[-256,-291],[-251.18,-265.22],[-243,-240],[-235.85,-218.53],[-228,-199],[-223.72,-191.52],[-219,-185],[-216.23,-182.15],[-214,-180],[-213.49,-178.46],[-213,-177],[-206,-170],[-204,-165],[-201,-161],[-185,-118],[-171,-96],[-163,-108],[-150,-155],[-157,-225],[-171,-250],[-172,-253],[-175,-255],[-175,-257],[-177,-258],[-177,-260],[-179,-261],[-185,-275],[-188,-281],[-190,-289],[-212,-334],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":55,"s":[{"i":[[-236.77,-379.21],[-244.39,-367.33],[-248.4,-345.07],[-253.09,-322.47],[-256.3,-300.4],[-255.17,-284.28],[-252.19,-271.36],[-246.2,-250.37],[-238.51,-226.56],[-233.24,-210.63],[-228.72,-198.99],[-226.46,-195.66],[-225.16,-195.21],[-224.57,-194.03],[-224.25,-192.37],[-218.95,-186.32],[-216.54,-181.71],[-214.58,-179.73],[-204.24,-167.31],[-187.87,-122.67],[-174.38,-95.67],[-165.68,-104.5],[-163.23,-106.57],[-158.4,-117.26],[-149,-165.3],[-152.47,-212.19],[-173.63,-251.93],[-184.69,-272.31],[-191.52,-293.06],[-198.7,-310.69],[-204.09,-322.05],[-206.18,-325.15],[-207.3,-326.85],[-218.6,-344.07],[-229.61,-364.69],[-233.76,-370.59]],"o":[[-242.69,-374.04],[-247.24,-352.84],[-251.43,-329.77],[-255.52,-307.79],[-255.82,-288.6],[-253.35,-275.66],[-248.69,-258.58],[-241.11,-234.36],[-234.63,-214.88],[-230.29,-202.68],[-226.89,-195.8],[-225.6,-195.36],[-224.69,-194.59],[-224.34,-192.91],[-221.71,-188.61],[-216.37,-183.25],[-215.5,-180.35],[-208.99,-172.74],[-194.89,-149.1],[-178.56,-104.15],[-168.88,-96.21],[-164.84,-106.36],[-160.95,-110.79],[-149.12,-142.06],[-151.89,-201.05],[-161.96,-241.22],[-184.4,-271.74],[-189.39,-282.84],[-196.78,-306.59],[-202.3,-317.44],[-205.8,-323.84],[-207.81,-326.84],[-213.17,-336.47],[-226.37,-358.08],[-232.16,-370.35],[-235.87,-374.19]],"v":[[-240,-380],[-245.82,-360.08],[-250,-337],[-254.3,-315.13],[-256,-293],[-254.26,-279.97],[-251,-267],[-243.65,-242.36],[-236,-219],[-231.77,-206.66],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.46,-193.47],[-224,-192],[-217,-184],[-216,-181],[-214,-179],[-201,-161],[-181,-109],[-171,-96],[-165,-106],[-163,-107],[-157,-121],[-151,-190],[-156,-223],[-184,-271],[-185,-273],[-195,-302],[-201,-315],[-205,-323],[-207,-326],[-208,-328],[-223,-352],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":56,"s":[{"i":[[-236.67,-379.06],[-244.47,-366.99],[-248.46,-344.78],[-253.07,-322.79],[-256.3,-301.35],[-253.93,-276.61],[-246.58,-251.17],[-241.38,-234.88],[-237.31,-222.8],[-233.24,-210.66],[-228.78,-198.96],[-226.46,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.27,-192.38],[-222.18,-189.73],[-219.48,-186.72],[-217.33,-183.51],[-214.87,-180.09],[-209.16,-173.17],[-202.62,-164.37],[-195.22,-146.64],[-187.85,-124.14],[-180.74,-108.69],[-172.93,-95.81],[-163.71,-106.74],[-153.39,-129.04],[-150.27,-149],[-152,-217.64],[-166.57,-244.83],[-169.75,-248.63],[-180.7,-263.48],[-191.6,-292.99],[-202.84,-319.51],[-225.61,-355.83],[-233.76,-370.59]],"o":[[-242.74,-373.85],[-247.33,-352.45],[-251.41,-329.86],[-255.51,-308.53],[-255.64,-285.27],[-249.4,-259.55],[-242.73,-238.99],[-238.67,-226.79],[-234.6,-214.93],[-230.33,-202.67],[-226.88,-195.79],[-225.6,-195.36],[-224.68,-194.58],[-224.37,-192.92],[-223.19,-190.87],[-220.32,-187.66],[-218.15,-184.72],[-215.69,-181.2],[-211.6,-175.98],[-204.67,-167.37],[-197.79,-154.32],[-190.24,-131.55],[-183.28,-114.28],[-175.57,-99.45],[-169.26,-96.17],[-158.4,-116.15],[-151.16,-141.82],[-147.84,-185.23],[-163.96,-240.79],[-168.15,-248.32],[-174.75,-256.12],[-189.46,-282.88],[-198.52,-311.33],[-216.32,-341.7],[-232.16,-370.35],[-236.16,-374.68]],"v":[[-240,-380],[-245.9,-359.72],[-250,-337],[-254.29,-315.66],[-256,-294],[-251.67,-268.08],[-244,-243],[-240.03,-230.84],[-236,-219],[-231.78,-206.67],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.47,-193.47],[-224,-192],[-221.25,-188.69],[-219,-186],[-216.51,-182.36],[-214,-179],[-206.92,-170.27],[-201,-161],[-192.73,-139.09],[-185,-118],[-178.15,-104.07],[-171,-96],[-163,-108],[-152,-137],[-150,-153],[-162,-237],[-168,-248],[-170,-249],[-185,-273],[-195,-302],[-208,-328],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":57,"s":[{"i":[[-233.86,-373.35],[-244.39,-367.24],[-248.5,-345.55],[-252.97,-324.07],[-256.18,-303.09],[-254.09,-278.26],[-246.64,-252.55],[-240.2,-231.36],[-234.2,-213.03],[-230.3,-203.68],[-227.94,-197.56],[-226.46,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.26,-192.37],[-216.28,-182.25],[-204.69,-168.23],[-197.68,-152.65],[-191.77,-133.88],[-184.31,-115.77],[-173.33,-95.77],[-168.88,-98.21],[-165.33,-105.26],[-164.48,-106.32],[-163.12,-106.79],[-161.45,-110.35],[-159.6,-115.6],[-154.46,-128.75],[-149.54,-195.45],[-162.36,-237.63],[-181.71,-265.41],[-193.58,-300.54],[-199.33,-313.51],[-201.77,-315.57],[-203.72,-320.79],[-217.43,-343.19]],"o":[[-242.64,-373.96],[-247.32,-353.04],[-251.38,-331.02],[-255.37,-310.1],[-255.77,-286.98],[-249.53,-261.04],[-242.1,-237.85],[-236.25,-218.95],[-231.08,-205.9],[-228.73,-199.51],[-226.88,-195.79],[-225.6,-195.36],[-224.69,-194.59],[-224.35,-192.92],[-220.44,-186.89],[-208.41,-172.93],[-199.54,-158.21],[-193.79,-140.48],[-187.64,-123.64],[-177.15,-101.84],[-170.21,-96.08],[-166.44,-102.8],[-164.92,-106.18],[-163.58,-106.63],[-162.15,-108.55],[-160.18,-113.87],[-156.68,-122.42],[-147.33,-159.26],[-157.66,-228.99],[-173,-254.52],[-190.88,-285.93],[-198.97,-312.07],[-200.16,-315.36],[-203.15,-318.18],[-210.88,-333.18],[-228.14,-362.05]],"v":[[-240,-380],[-245.85,-360.14],[-250,-338],[-254.17,-317.09],[-256,-296],[-251.81,-269.65],[-244,-244],[-238.22,-225.16],[-232,-208],[-229.51,-201.6],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.46,-193.47],[-224,-192],[-212.34,-177.59],[-202,-163],[-195.74,-146.57],[-189,-127],[-180.73,-108.8],[-171,-96],[-167.66,-100.5],[-165,-106],[-164.03,-106.47],[-163,-107],[-160.81,-112.11],[-159,-117],[-153,-135],[-155,-218],[-167,-245],[-186,-275],[-198,-310],[-200,-315],[-202,-316],[-205,-323],[-223,-353]],"c":true}],"h":1},{"t":58,"s":[{"i":[[-233.47,-373.52],[-244.17,-367.91],[-248.44,-346.75],[-252.96,-325.2],[-256.18,-303.99],[-254.2,-280.05],[-246.83,-253.35],[-241.53,-235.23],[-238.25,-222.85],[-235.55,-215.31],[-232.78,-209.76],[-230.33,-203.74],[-228,-197.64],[-226.45,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.28,-192.38],[-223.42,-191.64],[-222.19,-191.25],[-221.57,-190],[-221.31,-188.39],[-218.66,-185.24],[-215.09,-181.37],[-209.51,-174.39],[-203.48,-165.87],[-191.27,-131.51],[-181.58,-111.14],[-172.36,-92.41],[-154.63,-125.29],[-149.68,-181.39],[-157.33,-229.2],[-165.1,-241.52],[-167.13,-246.69],[-180.41,-263.43],[-191.55,-292.71],[-213.99,-336.31]],"o":[[-242.45,-374.28],[-247.17,-354.14],[-251.37,-332.2],[-255.36,-311.1],[-255.78,-288.62],[-249.73,-262.42],[-242.65,-239.55],[-239.32,-226.88],[-236.41,-217.17],[-233.73,-211.6],[-231.08,-205.92],[-228.79,-199.6],[-226.87,-195.79],[-225.6,-195.36],[-224.68,-194.58],[-224.37,-192.92],[-223.83,-191.76],[-222.6,-191.38],[-221.67,-190.56],[-221.39,-188.92],[-219.86,-186.55],[-216.27,-182.65],[-211.77,-177.2],[-205.36,-168.73],[-194.6,-148.59],[-183.46,-114.68],[-172.43,-93.08],[-158.96,-114.72],[-148.39,-157.81],[-153.88,-215.07],[-163.67,-241.28],[-166.8,-244.31],[-173.74,-256.6],[-189.7,-282.81],[-201.93,-320.67],[-228.33,-361.28]],"v":[[-240,-380],[-245.67,-361.02],[-250,-339],[-254.16,-318.15],[-256,-297],[-251.96,-271.23],[-244,-244],[-240.42,-231.05],[-237,-219],[-234.64,-213.45],[-232,-208],[-229.56,-201.67],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.47,-193.47],[-224,-192],[-223.01,-191.51],[-222,-191],[-221.48,-189.46],[-221,-188],[-217.47,-183.94],[-214,-180],[-207.43,-171.56],[-202,-163],[-185,-118],[-181,-110],[-166,-103],[-152,-139],[-152,-200],[-163,-240],[-166,-243],[-168,-248],[-185,-273],[-195,-302],[-223,-352]],"c":true}],"h":1},{"t":59,"s":[{"i":[[-236.95,-379.17],[-244.12,-368.15],[-248.39,-347.5],[-252.96,-326.46],[-256.07,-305.67],[-254.81,-285.22],[-249.27,-262.13],[-242.31,-236.42],[-234.32,-210.66],[-228.81,-200.15],[-225.6,-195.8],[-224.57,-194.02],[-224.28,-192.38],[-223.42,-191.64],[-222.19,-191.25],[-221.63,-188.78],[-217.98,-186.16],[-216.54,-182.71],[-214.58,-180.73],[-205.04,-169.17],[-195.18,-142.01],[-175.38,-96.36],[-165.15,-104],[-151.03,-135.58],[-149.76,-177.95],[-153.68,-214.24],[-165.41,-243.84],[-182.62,-266.82],[-192.64,-296.24],[-204.08,-321.82],[-211.98,-333.28],[-214.65,-339.8],[-217.49,-343.21],[-223.25,-353.31],[-228.3,-363.03],[-232.85,-369.09]],"o":[[-242.42,-374.4],[-247.1,-354.69],[-251.42,-333.37],[-255.28,-312.61],[-255.93,-292.4],[-251.48,-270.09],[-244.66,-245.59],[-237.14,-218.96],[-230,-202],[-226.6,-197.06],[-224.68,-194.58],[-224.37,-192.92],[-223.83,-191.76],[-222.6,-191.38],[-221.33,-190.11],[-220.05,-186.82],[-216.37,-184.25],[-215.5,-181.35],[-209.55,-174.44],[-196.43,-151.69],[-186.9,-121.91],[-169.79,-95.52],[-157.13,-117.96],[-148.99,-164.16],[-152.25,-202.21],[-160.3,-235.69],[-176.13,-259.48],[-191.19,-286.75],[-199.37,-313.79],[-210.11,-331.84],[-214.36,-337.29],[-216.38,-342.62],[-220.57,-347.97],[-227.13,-359.29],[-231.09,-367.91],[-236,-374.32]],"v":[[-240,-380],[-245.61,-361.42],[-250,-340],[-254.12,-319.54],[-256,-299],[-253.14,-277.65],[-247,-254],[-239.73,-227.69],[-231,-204],[-227.71,-198.6],[-225,-195],[-224.47,-193.47],[-224,-192],[-223.01,-191.51],[-222,-191],[-221,-188],[-217,-185],[-216,-182],[-214,-180],[-202,-163],[-189,-127],[-173,-96],[-164,-106],[-150,-150],[-151,-190],[-157,-225],[-171,-252],[-187,-277],[-196,-305],[-209,-330],[-213,-335],[-216,-342],[-218,-344],[-225,-356],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":60,"s":[{"i":[[-236.44,-377.38],[-244.1,-367.7],[-248.49,-347.1],[-252.93,-326.78],[-256.07,-306.66],[-254.5,-283.19],[-248.19,-258.94],[-242.74,-238.78],[-237.81,-221.13],[-233.4,-209.45],[-229.41,-202.3],[-226.88,-197.84],[-225.6,-194.88],[-216.86,-183.64],[-204.69,-168.61],[-197.83,-152.77],[-191.63,-134.34],[-187.22,-123.36],[-183.69,-114.43],[-178.48,-104.41],[-173.26,-96.04],[-169.18,-97.8],[-164.71,-105.67],[-162.17,-110.16],[-159.79,-114.17],[-153.75,-128.32],[-150.6,-187.54],[-154.83,-217.51],[-159.44,-230.28],[-167.99,-248.02],[-182.26,-267.2],[-192.83,-294.36],[-199.9,-315.81],[-202.3,-318.82],[-209.09,-330.36],[-224.47,-355.45]],"o":[[-242.36,-374.15],[-247.17,-354.17],[-251.39,-333.45],[-255.27,-313.39],[-255.91,-291.48],[-250.64,-266.93],[-244.34,-244.97],[-239.48,-226.87],[-234.7,-212.31],[-230.76,-204.45],[-227.33,-198.9],[-226.02,-195.83],[-221.26,-188.58],[-208.57,-173.65],[-199.77,-158.35],[-193.76,-140.77],[-188.13,-125.9],[-185,-117.63],[-180.6,-108.14],[-174.81,-98.36],[-171.08,-95.71],[-166,-102.77],[-163.03,-108.83],[-160.55,-112.83],[-157.14,-120.35],[-146.17,-155.35],[-154.81,-212.88],[-157.09,-226.17],[-164.26,-241.78],[-177.16,-260.8],[-190.56,-284.5],[-197.69,-307.59],[-202.82,-318.85],[-206.17,-325.34],[-218.3,-345.05],[-232.82,-369.88]],"v":[[-240,-380],[-245.64,-360.94],[-250,-340],[-254.1,-320.09],[-256,-300],[-252.57,-275.06],[-246,-251],[-241.11,-232.82],[-236,-216],[-232.08,-206.95],[-228,-200],[-226.45,-196.84],[-225,-194],[-212.72,-178.65],[-202,-163],[-195.8,-146.77],[-189,-128],[-186.11,-120.5],[-182,-111],[-176.64,-101.39],[-173,-96],[-167.59,-100.29],[-164,-107],[-161.36,-111.5],[-159,-116],[-153,-131],[-154,-208],[-156,-222],[-161,-234],[-173,-255],[-186,-275],[-196,-303],[-202,-318],[-203,-320],[-212,-335],[-230,-365]],"c":true}],"h":1},{"t":61,"s":[{"i":[[-236.88,-379.08],[-243.99,-368],[-248.42,-348.07],[-252.96,-327.91],[-256.07,-307.52],[-254.94,-286.93],[-250.53,-267.12],[-245.81,-248.42],[-240.79,-230],[-235.3,-213.47],[-228.32,-199.71],[-223.31,-192.12],[-219.43,-187.73],[-212.41,-179.24],[-204.96,-168.81],[-198.69,-154.63],[-192.83,-135.89],[-187.99,-124.42],[-183.69,-115.49],[-178.61,-105.11],[-173.54,-96.08],[-169.09,-97.97],[-163.79,-106.49],[-157.4,-120.39],[-148.66,-171.83],[-161.5,-238.81],[-182.92,-268.11],[-192.68,-296.22],[-204.33,-322.11],[-212.22,-336.19],[-214.18,-339.15],[-218.76,-344.95],[-221.72,-351.82],[-225.95,-357.26],[-228.71,-363.79],[-232.95,-369.26]],"o":[[-242.28,-374.21],[-247.06,-354.92],[-251.42,-334.65],[-255.28,-314.34],[-255.92,-293.87],[-252.24,-273.56],[-247.42,-254.67],[-242.5,-236.08],[-237.39,-218.62],[-230.77,-204.02],[-224.59,-193.75],[-220.73,-189.11],[-215.18,-182.58],[-207.3,-172.36],[-200.53,-160.19],[-194.84,-142.48],[-189.15,-126.93],[-185.26,-118.71],[-180.58,-109.07],[-175.09,-98.62],[-171.19,-95.73],[-165.38,-103.36],[-159.97,-113.79],[-146.68,-148.08],[-155.09,-222.21],[-177.03,-261.28],[-191.39,-286.57],[-199.29,-313.71],[-210.34,-332.26],[-213.8,-337.84],[-217.01,-342.09],[-221.32,-349.2],[-224.03,-355.75],[-228.3,-361.15],[-231.03,-367.75],[-236.13,-374.53]],"v":[[-240,-380],[-245.52,-361.46],[-250,-341],[-254.12,-321.12],[-256,-301],[-253.59,-280.24],[-249,-261],[-244.16,-242.25],[-239,-224],[-233.04,-208.75],[-226,-196],[-222.02,-190.61],[-218,-186],[-209.85,-175.8],[-203,-165],[-196.77,-148.56],[-190,-129],[-186.63,-121.56],[-182,-112],[-176.85,-101.86],[-173,-96],[-167.24,-100.67],[-163,-108],[-156,-124],[-152,-198],[-172,-254],[-187,-277],[-196,-305],[-209,-330],[-213,-337],[-215,-340],[-220,-347],[-223,-354],[-227,-359],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":62,"s":[{"i":[[-236.88,-379.08],[-243.99,-368],[-248.43,-348.08],[-252.9,-328.25],[-256.05,-308.41],[-254.95,-287.91],[-250.52,-268.1],[-243.15,-237.68],[-231.71,-203.96],[-224.29,-193.55],[-221.89,-190.14],[-217.17,-184.45],[-211.32,-177.84],[-208.07,-173.34],[-205.72,-170.07],[-204.26,-167.73],[-203.33,-165.67],[-198.77,-154.48],[-192.82,-135.72],[-187.99,-124.42],[-183.72,-115.48],[-178.56,-105.18],[-173.46,-96.07],[-166.22,-101.68],[-156.67,-122.27],[-149.59,-147.61],[-150.21,-184.89],[-161.25,-238.47],[-182.72,-268.08],[-193.42,-298.07],[-210.22,-330.4],[-216.76,-341.61],[-218.89,-346.08],[-222.84,-352.03],[-227.65,-361.99],[-232.89,-369.15]],"o":[[-242.27,-374.21],[-247.07,-354.93],[-251.37,-334.79],[-255.24,-315.06],[-255.94,-294.86],[-252.24,-274.53],[-246.05,-250.19],[-235.98,-214.56],[-225.09,-194.74],[-222.69,-191.26],[-219.26,-186.78],[-213.2,-179.98],[-208.97,-174.56],[-206.45,-171.1],[-204.6,-168.4],[-203.63,-166.37],[-200.61,-160.12],[-194.87,-142.28],[-189.13,-126.93],[-185.29,-118.69],[-180.58,-109.14],[-175,-98.64],[-170.14,-95.55],[-159.49,-115.04],[-151.48,-135.67],[-148.95,-172.22],[-155.32,-222.38],[-176.92,-261.11],[-191.74,-286.88],[-201.88,-319.18],[-215.15,-341.34],[-218.08,-343.75],[-221.19,-350.06],[-226.22,-357.77],[-231.01,-367.72],[-236.13,-374.53]],"v":[[-240,-380],[-245.53,-361.46],[-250,-341],[-254.07,-321.65],[-256,-302],[-253.6,-281.22],[-249,-262],[-239.57,-226.12],[-226,-196],[-223.49,-192.41],[-221,-189],[-215.18,-182.21],[-210,-176],[-207.26,-172.22],[-205,-169],[-203.94,-167.05],[-203,-165],[-196.82,-148.38],[-190,-129],[-186.64,-121.56],[-182,-112],[-176.78,-101.91],[-173,-96],[-162.86,-108.36],[-156,-124],[-149.27,-159.92],[-152,-198],[-172,-254],[-187,-277],[-197,-307],[-215,-341],[-217,-342],[-220,-348],[-224,-354],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":63,"s":[{"i":[[-235.69,-377.19],[-244,-368.02],[-248.38,-348.08],[-252.96,-328.26],[-256.09,-308.38],[-254.88,-287.98],[-250.47,-268.07],[-245.88,-249],[-240.94,-230.11],[-233.34,-209],[-222.41,-191.46],[-215.08,-182.45],[-211.01,-177.4],[-208.12,-173.41],[-205.7,-170.04],[-204.26,-167.73],[-203.33,-165.67],[-198.8,-154.46],[-192.87,-135.7],[-185.45,-119.07],[-173.87,-96.14],[-165.73,-104.75],[-157.24,-120.3],[-149.33,-147.93],[-150.33,-182.03],[-155.02,-217.08],[-165.73,-245.24],[-182.61,-267.85],[-193.62,-293.74],[-196.92,-307.36],[-201.57,-315.16],[-208.83,-329.85],[-214.34,-337.96],[-216.13,-342.57],[-220.25,-349.09],[-228.27,-360.97]],"o":[[-242.31,-374.23],[-247.04,-354.95],[-251.41,-334.82],[-255.3,-315.04],[-255.9,-294.95],[-252.17,-274.54],[-247.41,-255.44],[-242.64,-236.33],[-236.39,-215.77],[-226.35,-196.84],[-216.58,-184.24],[-212.3,-179.03],[-209.02,-174.64],[-206.46,-171.11],[-204.6,-168.4],[-203.63,-166.37],[-200.61,-160.11],[-194.93,-142.26],[-188.22,-124.86],[-179.21,-106.28],[-168.58,-95.31],[-160.71,-114.16],[-151.33,-135.36],[-148.59,-170.47],[-153.57,-205.22],[-160.87,-236.56],[-176.22,-260.69],[-190.82,-284.97],[-196.89,-303.73],[-199.07,-312.62],[-206.24,-324.43],[-213.12,-336.82],[-215.83,-340.31],[-218.7,-346.79],[-224.34,-355.9],[-233.23,-369.65]],"v":[[-240,-380],[-245.52,-361.48],[-250,-341],[-254.13,-321.65],[-256,-302],[-253.53,-281.26],[-249,-262],[-244.26,-242.67],[-239,-224],[-229.85,-202.92],[-218,-186],[-213.69,-180.74],[-210,-176],[-207.29,-172.26],[-205,-169],[-203.94,-167.05],[-203,-165],[-196.86,-148.36],[-190,-129],[-182,-112],[-173,-96],[-164,-108],[-155,-126],[-149,-158],[-152,-194],[-158,-227],[-171,-253],[-187,-277],[-196,-301],[-198,-310],[-203,-318],[-212,-335],[-215,-339],[-217,-344],[-222,-352],[-230,-364]],"c":true}],"h":1},{"t":64,"s":[{"i":[[-236.95,-379.17],[-243.87,-368.3],[-248.48,-348.77],[-252.88,-329.47],[-256,-310.24],[-255.39,-293.29],[-252.78,-277.79],[-249.73,-264.15],[-246.08,-250.54],[-242.84,-236.66],[-239.38,-223.05],[-234.78,-210.77],[-228.39,-199.36],[-219.24,-187.51],[-208.86,-175.01],[-200.66,-158.65],[-193.71,-138.48],[-187.84,-125.2],[-183.7,-116.51],[-178.42,-105.47],[-173.57,-96.09],[-166.22,-102.85],[-150.11,-136.67],[-152.02,-197.15],[-158.91,-227.16],[-162.79,-240.55],[-166.01,-245.41],[-182.74,-267.76],[-195.8,-303.83],[-205.89,-325.32],[-209.76,-330.59],[-211.93,-335.17],[-217.74,-344.45],[-222.8,-352.01],[-227.82,-362.29],[-232.85,-369.08]],"o":[[-242.13,-374.41],[-247.05,-355.48],[-251.38,-335.85],[-255.19,-316.67],[-256,-298.9],[-253.78,-282.74],[-250.94,-268.88],[-247.3,-254.98],[-243.9,-241.38],[-240.58,-227.49],[-236.59,-214.84],[-230.68,-203.03],[-222.8,-191.5],[-212.27,-179.26],[-202.81,-164.41],[-196.11,-145.69],[-188.99,-127.7],[-185.19,-119.61],[-180.39,-109.67],[-175.01,-98.68],[-169.67,-95.44],[-156.22,-121.52],[-147.91,-173.05],[-156.59,-221.46],[-162.38,-236.87],[-164.68,-244.38],[-173.84,-257.94],[-193.59,-290.94],[-202.56,-318.59],[-208.15,-330.34],[-211.04,-332.76],[-215.63,-341.51],[-221.3,-350.04],[-226.26,-357.75],[-231.12,-367.9],[-236,-374.32]],"v":[[-240,-380],[-245.46,-361.89],[-250,-342],[-254.03,-323.07],[-256,-304],[-254.59,-288.01],[-252,-274],[-248.51,-259.57],[-245,-246],[-241.71,-232.07],[-238,-219],[-232.73,-206.9],[-226,-196],[-215.75,-183.39],[-206,-170],[-198.38,-152.17],[-190,-130],[-186.52,-122.4],[-182,-113],[-176.72,-102.08],[-173,-96],[-164,-107],[-149,-155],[-155,-213],[-161,-233],[-164,-243],[-167,-247],[-188,-279],[-200,-313],[-208,-330],[-210,-331],[-213,-337],[-220,-348],[-224,-354],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":65,"s":[{"i":[[-236.45,-377.5],[-243.25,-370.31],[-247.64,-353.99],[-251.48,-337.33],[-254.63,-320.9],[-255.06,-293.92],[-249.85,-266.05],[-245.69,-248.09],[-242.09,-233.28],[-239.62,-225.94],[-234.41,-208.67],[-229.32,-202.43],[-228.55,-199.76],[-224.38,-193.8],[-221.58,-190.73],[-208,-175.14],[-196.72,-144.41],[-185.53,-119.07],[-173.23,-96.04],[-166.07,-103.18],[-158.09,-117.47],[-156.02,-125.14],[-147.86,-154.01],[-156.99,-229.54],[-172.7,-255.54],[-176.46,-260.25],[-178.11,-264.71],[-180.63,-266.6],[-181.34,-269],[-183.65,-270.53],[-184.56,-273.3],[-194.19,-294.44],[-197.9,-309.31],[-202.47,-316.97],[-206.49,-326.27],[-223.49,-354.1]],"o":[[-241.68,-375.32],[-246.23,-359.65],[-250.16,-342.87],[-253.71,-326.34],[-255.88,-304.39],[-252.05,-274.75],[-246.89,-253.2],[-243.29,-238.13],[-240.48,-226.96],[-236.59,-216.42],[-230.75,-202.59],[-228.37,-201.16],[-226.18,-196.48],[-222.5,-191.35],[-215.16,-182.68],[-198.67,-156.16],[-187.83,-124.02],[-178.76,-105.51],[-169.89,-95.46],[-161.31,-111.97],[-155.98,-122.37],[-150.54,-140.54],[-150.52,-193.73],[-167.44,-249.7],[-175.61,-259.92],[-177.83,-262.18],[-179.29,-266.42],[-181.76,-267.82],[-182.29,-270.44],[-184.58,-271.77],[-190.09,-282.17],[-198.01,-306.08],[-200.08,-314.63],[-205.4,-322.77],[-214.75,-341.17],[-232.83,-369.73]],"v":[[-240,-380],[-244.74,-364.98],[-249,-348],[-252.59,-331.83],[-255,-316],[-253.55,-284.33],[-248,-258],[-244.49,-243.11],[-241,-229],[-239,-224],[-231,-203],[-229,-202],[-228,-199],[-223,-192],[-221,-190],[-204,-167],[-190,-129],[-182,-112],[-173,-96],[-164,-107],[-157,-120],[-155,-128],[-149,-171],[-165,-245],[-175,-259],[-177,-261],[-179,-266],[-181,-267],[-182,-270],[-184,-271],[-185,-274],[-197,-303],[-199,-312],[-204,-320],[-208,-329],[-230,-365]],"c":true}],"h":1},{"t":66,"s":[{"i":[[-237.01,-377.34],[-243.25,-370.36],[-247.57,-354.11],[-254.25,-326.5],[-251.91,-276.74],[-243.73,-235.52],[-227.97,-199.42],[-210.9,-178.64],[-198,-149.93],[-193.2,-138.51],[-193.27,-135.89],[-191.21,-133.49],[-190.71,-129.63],[-187.74,-125.55],[-175.15,-96.37],[-165.55,-103.23],[-159.55,-116.47],[-149.79,-141.55],[-149.97,-178.67],[-157.43,-225.51],[-164.02,-243.05],[-169.67,-250.97],[-172.16,-256.77],[-174.63,-258.6],[-175.32,-261.05],[-177.61,-262.58],[-180.63,-267.99],[-186.45,-275.83],[-195.72,-302.76],[-205.95,-325.45],[-209.76,-330.59],[-211.87,-335.06],[-217.87,-344.52],[-221.31,-351.48],[-223.76,-353.6],[-227.61,-362.02]],"o":[[-241.71,-375.31],[-246.17,-359.76],[-251.35,-337.98],[-256.67,-292.76],[-245.42,-247.3],[-235.77,-210.95],[-215.84,-184.76],[-202.31,-164],[-194.89,-139.63],[-192.66,-137.13],[-192.89,-134.63],[-190.27,-131.3],[-189.37,-126.54],[-184.37,-118.53],[-170.6,-95.59],[-160.46,-112.33],[-153.84,-129.5],[-147.53,-168.68],[-154.4,-207.72],[-163.18,-239.97],[-166.43,-247.85],[-171.88,-254.34],[-173.29,-258.42],[-175.75,-259.8],[-176.31,-262.43],[-180,-265.15],[-184.17,-273.19],[-193.66,-290.59],[-202.29,-318.49],[-208.16,-330.35],[-211.03,-332.78],[-215.55,-341.37],[-221.23,-350.01],[-222.15,-353.34],[-226.32,-357.87],[-232.68,-370.46]],"v":[[-240,-380],[-244.71,-365.06],[-249,-348],[-255,-316],[-248,-259],[-240,-224],[-221,-191],[-207,-172],[-195,-140],[-193,-138],[-193,-135],[-191,-133],[-190,-128],[-187,-124],[-173,-96],[-164,-106],[-158,-120],[-149,-151],[-152,-192],[-162,-237],[-165,-245],[-171,-253],[-173,-258],[-175,-259],[-176,-262],[-178,-263],[-182,-270],[-188,-279],[-200,-313],[-208,-330],[-210,-331],[-213,-337],[-220,-348],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":67,"s":[{"i":[[-236.99,-377.31],[-243.39,-370.14],[-247.62,-353.82],[-251.56,-337.3],[-254.63,-321.13],[-255.25,-297.55],[-251.6,-272.99],[-247.85,-255.48],[-244.12,-241.56],[-239.09,-222.44],[-231.61,-205.27],[-225.56,-196.68],[-221.47,-191.8],[-218.16,-187.46],[-215.76,-183.81],[-210.75,-177.72],[-204.31,-167.03],[-198.6,-150.97],[-189.81,-129.56],[-174.63,-96.28],[-169.95,-97.44],[-159.83,-115.82],[-149.91,-140.18],[-150.02,-179.79],[-159.44,-231.96],[-167.99,-248.33],[-170.13,-253.7],[-172.64,-255.53],[-173.48,-258.25],[-184.3,-271.65],[-194.92,-297.21],[-206.58,-327.19],[-217.54,-344.16],[-221.31,-351.48],[-223.76,-353.6],[-227.73,-362.22]],"o":[[-241.82,-375.22],[-246.29,-359.44],[-250.24,-342.74],[-253.75,-326.5],[-255.69,-306.3],[-253.2,-280.9],[-249.04,-260.2],[-245.39,-246.16],[-241.04,-229.05],[-234.38,-210.55],[-226.82,-198.28],[-222.88,-193.44],[-219.03,-188.81],[-216.52,-184.96],[-212.37,-180.19],[-206.76,-171.52],[-199.98,-157.01],[-193.22,-136.55],[-181.67,-113.38],[-171.1,-95.67],[-163.54,-105.86],[-153.9,-129.37],[-147.51,-165.97],[-155.11,-211.16],[-165.93,-247.17],[-169.72,-251.19],[-171.3,-255.45],[-173.62,-256.83],[-178.8,-265.88],[-192.47,-287.88],[-201.41,-315.75],[-214.18,-338.9],[-221.27,-349.98],[-222.15,-353.34],[-226.27,-357.71],[-232.71,-370.5]],"v":[[-240,-380],[-244.84,-364.79],[-249,-348],[-252.66,-331.9],[-255,-316],[-254.22,-289.22],[-250,-265],[-246.62,-250.82],[-243,-237],[-236.74,-216.49],[-228,-200],[-224.22,-195.06],[-220,-190],[-217.34,-186.21],[-215,-183],[-209,-175],[-203,-164],[-196,-144],[-185,-120],[-173,-96],[-168,-100],[-158,-120],[-149,-150],[-152,-192],[-165,-245],[-169,-250],[-171,-255],[-173,-256],[-174,-259],[-188,-279],[-198,-306],[-211,-334],[-220,-348],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":68,"s":[{"i":[[-236.99,-377.31],[-243.42,-370.23],[-247.54,-354.07],[-254.23,-326.7],[-253.73,-286.55],[-245.13,-243.24],[-240.54,-227.7],[-234.55,-207.71],[-230.7,-203.04],[-226,-198.25],[-223.97,-194.22],[-214.85,-184.1],[-211.25,-179.35],[-209.58,-175.28],[-207.24,-173.41],[-198.6,-149.52],[-189.48,-129.16],[-175.35,-96.4],[-164.98,-104.24],[-159.36,-116.89],[-147.32,-152.24],[-153.39,-200.49],[-161.84,-239.55],[-169.01,-250.49],[-171.05,-255.61],[-173.64,-257.52],[-174.45,-260.24],[-177.06,-263.68],[-182.3,-269.46],[-185.08,-275.55],[-188.24,-279.43],[-194.91,-299.45],[-212.76,-337.4],[-221.38,-351.62],[-223.76,-353.61],[-227.72,-362.21]],"o":[[-241.9,-375.19],[-246.24,-359.67],[-251.4,-338.05],[-256.26,-298.42],[-248.43,-258.32],[-241.59,-229.4],[-237.43,-217.93],[-230.23,-203.2],[-228.76,-200.14],[-223.95,-195.69],[-219.71,-188.86],[-212.86,-179.69],[-209.85,-177.4],[-208.84,-173.65],[-200.94,-162.53],[-192.13,-133.31],[-183.95,-117.66],[-170.14,-95.51],[-160.52,-112.23],[-151.07,-135.86],[-149.97,-186.54],[-158.82,-226.53],[-167.72,-250.32],[-170.93,-253.41],[-172.31,-257.45],[-174.64,-258.85],[-175.96,-262.32],[-179.73,-267.44],[-184.95,-273.42],[-187,-278.57],[-193.47,-290.18],[-203.28,-322.59],[-221.1,-350.76],[-222.15,-353.34],[-226.26,-357.65],[-232.71,-370.5]],"v":[[-240,-380],[-244.83,-364.95],[-249,-348],[-255,-316],[-251,-272],[-242,-231],[-240,-226],[-231,-204],[-230,-202],[-225,-197],[-223,-193],[-213,-180],[-211,-179],[-209,-174],[-207,-173],[-194,-138],[-187,-124],[-173,-96],[-164,-106],[-158,-120],[-149,-174],[-156,-213],[-167,-249],[-170,-252],[-172,-257],[-174,-258],[-175,-261],[-178,-265],[-184,-272],[-186,-277],[-189,-281],[-198,-308],[-220,-349],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":69,"s":[{"i":[[-234.31,-374.97],[-243.39,-370.44],[-247.52,-354.1],[-252.83,-331.88],[-255.73,-306.52],[-253,-281.54],[-247.65,-257],[-244.52,-240.79],[-242.19,-228.64],[-237.62,-216.38],[-230.98,-204.63],[-228.01,-200.68],[-226.49,-198.63],[-219.58,-189.99],[-210.46,-178.19],[-202.53,-162.49],[-195.25,-141.51],[-186.87,-122.83],[-173.98,-96.16],[-168.42,-100.1],[-161.34,-111.19],[-157.42,-122.32],[-153.69,-129.08],[-149.84,-142.49],[-150.88,-187.54],[-161.16,-238.13],[-169.28,-250.81],[-171.05,-255.59],[-173.64,-257.53],[-174.48,-260.25],[-185.35,-273.57],[-197.3,-304.27],[-208.9,-331.14],[-215.99,-341.36],[-220.71,-351.31],[-224.51,-356.34]],"o":[[-241.88,-375.39],[-246.21,-359.8],[-250.97,-339.87],[-255.22,-315.2],[-254.43,-289.55],[-249.61,-265.27],[-245.17,-244.97],[-243.03,-232.63],[-239.63,-220.82],[-233.3,-208.29],[-228.52,-201.36],[-227,-199.31],[-222.85,-193.89],[-213.38,-182.14],[-204.91,-168.73],[-197.71,-148.88],[-189.8,-128.93],[-180.09,-109.11],[-170.07,-95.52],[-164.12,-107.02],[-158.04,-118.12],[-155.35,-127.7],[-150.99,-136.57],[-146.29,-170.09],[-158.06,-223.23],[-167.66,-250.22],[-171.08,-253.78],[-172.3,-257.45],[-174.62,-258.83],[-179.81,-267.9],[-194.14,-291.46],[-204.14,-322.27],[-214.02,-339.71],[-219.42,-346.94],[-223.34,-355.54],[-230.28,-364.06]],"v":[[-240,-380],[-244.8,-365.12],[-249,-348],[-254.02,-323.54],[-255,-297],[-251.3,-273.41],[-246,-249],[-243.77,-236.71],[-241,-225],[-235.46,-212.34],[-229,-202],[-227.5,-199.99],[-226,-198],[-216.48,-186.07],[-208,-174],[-200.12,-155.68],[-192,-134],[-183,-115],[-173,-96],[-166,-104],[-160,-114],[-156,-126],[-153,-131],[-149,-149],[-155,-208],[-167,-249],[-170,-252],[-172,-257],[-174,-258],[-175,-261],[-189,-281],[-201,-314],[-213,-338],[-217,-343],[-223,-355],[-225,-357]],"c":true}],"h":1},{"t":70,"s":[{"i":[[-236.98,-377.29],[-243.45,-370.26],[-247.54,-354.14],[-252.56,-332.98],[-255.59,-308.84],[-252.89,-282.29],[-247.36,-254.23],[-245.62,-244.19],[-245.28,-240.23],[-239.32,-220.4],[-226.14,-197.3],[-218.35,-188.06],[-214.16,-183.63],[-210.54,-178.52],[-206.95,-172.87],[-201.51,-160.26],[-196.09,-143.01],[-191.19,-131.87],[-186.63,-123.33],[-181.03,-111.16],[-173.92,-96.15],[-170.07,-96.83],[-167.35,-102.77],[-164.08,-108],[-160.82,-113.27],[-152.78,-131.64],[-150.1,-180.58],[-160.27,-234.12],[-171.98,-256.79],[-177.24,-264.32],[-179.75,-266.64],[-184.94,-274.39],[-197.45,-305.31],[-215.98,-342.75],[-225.78,-357.08],[-228.7,-363.84]],"o":[[-241.93,-375.19],[-246.26,-359.74],[-250.76,-340.57],[-254.97,-317.12],[-254.46,-291.92],[-249.33,-263.44],[-245.73,-245.58],[-245.4,-241.51],[-242.76,-229.25],[-231.01,-204.42],[-219.77,-189.5],[-215.55,-185.13],[-211.81,-180.33],[-208.11,-174.79],[-203.46,-166.01],[-197.83,-148.76],[-192.62,-134.71],[-188.2,-126.18],[-183.57,-117.09],[-176.2,-100.69],[-171.14,-95.7],[-168.17,-100.37],[-165.17,-106.37],[-161.91,-111.45],[-156.18,-123.02],[-145.1,-163.33],[-157.98,-219.86],[-167.57,-250.92],[-176.46,-263.04],[-178.14,-266.32],[-182.71,-270.92],[-194.44,-291.06],[-208.83,-331.32],[-224.16,-355.86],[-228.27,-361.01],[-232.74,-370.56]],"v":[[-240,-380],[-244.85,-365],[-249,-348],[-253.77,-325.05],[-255,-300],[-251.11,-272.87],[-246,-247],[-245.51,-242.85],[-245,-239],[-235.17,-212.41],[-221,-191],[-216.95,-186.6],[-213,-182],[-209.32,-176.65],[-206,-171],[-199.67,-154.51],[-194,-138],[-189.69,-129.03],[-185,-120],[-178.62,-105.93],[-173,-96],[-169.12,-98.6],[-166,-105],[-163,-109.73],[-160,-115],[-151,-139],[-155,-205],[-165,-245],[-175,-261],[-178,-266],[-180,-267],[-187,-278],[-203,-318],[-223,-354],[-227,-359],[-230,-366]],"c":true}],"h":1},{"t":71,"s":[{"i":[[-235.8,-376.24],[-243.62,-369.94],[-247.49,-353.22],[-252.54,-332.53],[-255.56,-309.62],[-253.26,-285.05],[-248.51,-259.29],[-245.72,-244.67],[-243.56,-236.02],[-242.66,-229],[-236.72,-216.44],[-233.83,-208.37],[-230.1,-204.52],[-228.6,-200.79],[-226.59,-198.78],[-222.43,-192.83],[-218.67,-189.85],[-216.05,-185.49],[-212.2,-180.84],[-199.81,-154.59],[-194.21,-140.5],[-193.66,-136.51],[-190.66,-132.47],[-189.68,-127.56],[-186.73,-123.49],[-175.06,-96.33],[-165.93,-103.3],[-155.88,-124.07],[-150.97,-138.34],[-150.95,-186.77],[-162.77,-241.28],[-171.51,-255.77],[-183.78,-272.35],[-200.65,-316.72],[-212.55,-336.62],[-223.4,-354.57]],"o":[[-242.12,-375.08],[-246.31,-359.01],[-250.76,-339.73],[-254.94,-317.48],[-254.5,-293.41],[-250.26,-267.99],[-246.44,-247.91],[-244.28,-238.73],[-242.35,-231.67],[-240.29,-221.81],[-233.97,-210.94],[-232.1,-205.51],[-228.34,-202.1],[-227.48,-199.32],[-224.11,-195.51],[-220.34,-190.16],[-216.93,-187.66],[-213.69,-182.14],[-204.12,-168.48],[-195.89,-141.63],[-193.36,-138.49],[-192.36,-133.52],[-189.3,-129.45],[-188.46,-124.76],[-183.42,-116.69],[-169.8,-95.48],[-159.76,-115.3],[-152.09,-134.01],[-144.89,-167.56],[-159.44,-225.85],[-169.31,-253.43],[-178.16,-265.72],[-196.67,-295.74],[-210.36,-334.5],[-218.86,-346.98],[-231.66,-367.92]],"v":[[-240,-380],[-244.96,-364.47],[-249,-347],[-253.74,-325.01],[-255,-301],[-251.76,-276.52],[-247,-251],[-245,-241.7],[-243,-234],[-242,-227],[-235,-213],[-233,-207],[-229,-203],[-228,-200],[-226,-198],[-221,-191],[-218,-189],[-215,-184],[-211,-179],[-196,-142],[-194,-140],[-193,-135],[-190,-131],[-189,-126],[-186,-122],[-173,-96],[-163,-109],[-154,-129],[-150,-143],[-156,-210],[-168,-251],[-173,-258],[-188,-280],[-209,-332],[-214,-339],[-228,-362]],"c":true}],"h":1},{"t":72,"s":[{"i":[[-235.9,-376.39],[-243.63,-369.94],[-247.46,-353.21],[-251.62,-336.63],[-254.7,-320.5],[-254.55,-293.65],[-248.87,-263.64],[-245.58,-244.27],[-243.22,-231.85],[-239.8,-222.26],[-235.99,-214.99],[-234.22,-210.87],[-233.4,-207.65],[-232.45,-206.65],[-231.16,-206.22],[-230.57,-205.01],[-230.29,-203.38],[-227.63,-200.14],[-224.01,-196.26],[-222.33,-194.29],[-221.26,-193.34],[-220.6,-192.05],[-220.34,-190.43],[-217.65,-187.32],[-214.06,-183.52],[-200.62,-152.91],[-185.66,-121.28],[-174.46,-96.24],[-166.73,-102.62],[-149.07,-137.56],[-151.52,-192.24],[-163.91,-243.84],[-175.74,-262.58],[-186.38,-276.17],[-197.26,-304.02],[-219.23,-347.83]],"o":[[-242.15,-375.08],[-246.28,-359],[-250.27,-341.88],[-253.83,-325.94],[-255.62,-303.83],[-251.18,-273.55],[-246.22,-248.6],[-244.08,-235.9],[-241.05,-225.01],[-237.27,-217.24],[-234.52,-212.05],[-233.66,-208.67],[-232.87,-206.79],[-231.6,-206.36],[-230.68,-205.57],[-230.38,-203.92],[-228.87,-201.51],[-225.19,-197.51],[-222.69,-194.62],[-221.61,-193.65],[-220.69,-192.59],[-220.43,-190.97],[-218.87,-188.56],[-215.25,-184.81],[-202.41,-166.85],[-188.76,-127.13],[-178.39,-106.83],[-169.47,-95.43],[-155.94,-123.9],[-146.93,-176.37],[-159.58,-227.78],[-171.81,-258.05],[-182.44,-271.67],[-194.79,-291.68],[-208.79,-333.14],[-231.57,-367.77]],"v":[[-240,-380],[-244.96,-364.47],[-249,-347],[-252.73,-331.28],[-255,-315],[-252.87,-283.6],[-247,-253],[-244.83,-240.08],[-242,-228],[-238.53,-219.75],[-235,-213],[-233.94,-209.77],[-233,-207],[-232.03,-206.51],[-231,-206],[-230.47,-204.47],[-230,-203],[-226.41,-198.83],[-223,-195],[-221.97,-193.97],[-221,-193],[-220.52,-191.51],[-220,-190],[-216.45,-186.06],[-213,-182],[-191,-132],[-182,-114],[-173,-96],[-164,-108],[-148,-157],[-156,-212],[-169,-253],[-179,-267],[-189,-281],[-202,-316],[-228,-362]],"c":true}],"h":1},{"t":73,"s":[{"i":[[-238.95,-380.35],[-243.74,-369.53],[-247.58,-352.7],[-251.65,-336.56],[-254.72,-320.53],[-254.8,-300],[-251.87,-278.09],[-248.21,-253.35],[-242.04,-227.17],[-236.37,-214.4],[-232.3,-207.85],[-227.17,-200.52],[-221.66,-192.99],[-214.46,-183.96],[-207.86,-173.04],[-204.57,-165.54],[-202.75,-160.06],[-199.42,-151.36],[-194.73,-140.77],[-190.53,-131.15],[-186.13,-120.42],[-180.2,-108.52],[-173.31,-96.05],[-167.81,-99.39],[-161.9,-113.14],[-157.06,-122.86],[-151.85,-133.98],[-148.33,-150.71],[-151.99,-191.67],[-163.44,-242.99],[-175.65,-262.35],[-186.19,-276.8],[-197.18,-302.88],[-213.49,-339.53],[-221.59,-351.33],[-232.61,-371.23]],"o":[[-242.2,-374.93],[-246.43,-358.41],[-250.29,-341.79],[-253.87,-325.93],[-255.37,-307.71],[-253.05,-285.19],[-249.68,-262.77],[-244.38,-235.56],[-237.72,-216.98],[-233.66,-209.83],[-229.09,-203.28],[-223.45,-195.38],[-217.02,-187.44],[-209.87,-176.76],[-205.2,-167.26],[-203.35,-161.94],[-200.8,-154.72],[-196.38,-144.38],[-191.71,-134.19],[-187.74,-124.26],[-182.79,-113.49],[-175.46,-99.8],[-170.36,-95.57],[-163.58,-108.17],[-159.14,-118.87],[-153.41,-130.41],[-149.38,-142.76],[-146.28,-177.61],[-160.56,-228.16],[-171.64,-257.75],[-182.5,-271.87],[-194.26,-291.74],[-206.09,-326.48],[-220.37,-350.6],[-227.76,-361.38],[-239.32,-379.39]],"v":[[-240,-380],[-245.09,-363.97],[-249,-347],[-252.76,-331.24],[-255,-315],[-253.92,-292.59],[-251,-272],[-246.29,-244.45],[-239,-220],[-235.01,-212.12],[-231,-206],[-225.31,-197.95],[-220,-191],[-212.17,-180.36],[-206,-169],[-203.96,-163.74],[-202,-158],[-197.9,-147.87],[-193,-137],[-189.13,-127.7],[-184,-116],[-177.83,-104.16],[-173,-96],[-165.69,-103.78],[-161,-115],[-155.24,-126.64],[-151,-137],[-148,-155],[-157,-213],[-169,-253],[-179,-267],[-189,-282],[-201,-313],[-220,-350],[-222,-352],[-239,-379]],"c":true}],"h":1},{"t":74,"s":[{"i":[[-234.72,-374.76],[-243.53,-369.45],[-248.45,-352.28],[-252.56,-334.83],[-254.98,-316.89],[-254.17,-297.97],[-250.81,-278.43],[-248.44,-258.58],[-245.6,-239.81],[-240.34,-222.58],[-233,-208.21],[-223.53,-195.76],[-213.73,-183.66],[-207.65,-172.6],[-203.44,-161.9],[-199.4,-151.35],[-194.74,-140.79],[-191.46,-133.83],[-188.89,-128.87],[-183.55,-116.36],[-174.45,-96.24],[-167.81,-99.39],[-161.9,-113.14],[-157.06,-122.86],[-151.85,-133.98],[-147.67,-156.52],[-150.14,-185.64],[-153.63,-201.12],[-156.19,-211.64],[-163.77,-243.8],[-177.84,-265.2],[-181.75,-270.64],[-185.62,-275.94],[-189.28,-282.61],[-202.36,-319.44],[-220.48,-349.77]],"o":[[-241.8,-374.81],[-246.85,-358.19],[-251.32,-340.63],[-254.39,-322.95],[-255.02,-304.51],[-252.07,-284.93],[-249.14,-265.17],[-246.67,-245.9],[-242.34,-227.97],[-235.68,-212.7],[-226.92,-199.68],[-216.94,-187.75],[-209.18,-175.9],[-204.79,-165.6],[-200.78,-154.71],[-196.38,-144.39],[-192.27,-135.4],[-189.77,-130.57],[-186.57,-123.99],[-177.49,-102.48],[-170.36,-95.57],[-163.58,-108.17],[-159.14,-118.87],[-153.41,-130.41],[-148.35,-146.45],[-148.56,-176.12],[-152.79,-197.55],[-155.33,-208.17],[-160.46,-229.29],[-172.75,-259.96],[-180.14,-270.32],[-183.88,-273.72],[-188.42,-280.13],[-198.87,-301.17],[-215.14,-342.45],[-229.94,-364.88]],"v":[[-240,-380],[-245.19,-363.82],[-250,-346],[-253.48,-328.89],[-255,-311],[-253.12,-291.45],[-250,-272],[-247.55,-252.24],[-244,-234],[-238.01,-217.64],[-230,-204],[-220.24,-191.76],[-211,-179],[-206.22,-169.1],[-202,-158],[-197.89,-147.87],[-193,-137],[-190.61,-132.2],[-188,-127],[-180.52,-109.42],[-173,-96],[-165.69,-103.78],[-161,-115],[-155.24,-126.64],[-151,-137],[-148.12,-166.32],[-152,-194],[-154.48,-204.64],[-157,-215],[-170,-255],[-180,-270],[-182,-271],[-187,-278],[-190,-284],[-211,-335],[-225,-357]],"c":true}],"h":1},{"t":75,"s":[{"i":[[-237.41,-378.78],[-245.24,-363.75],[-251.62,-338.74],[-254.68,-310.51],[-252.25,-281.73],[-249.15,-258.85],[-245.51,-240.5],[-240.27,-223.32],[-233.02,-209.32],[-223.54,-196.44],[-213.8,-183.77],[-205.09,-166.91],[-196.82,-145.14],[-189.77,-130.45],[-184.29,-118.25],[-182.5,-113.44],[-181.11,-112.24],[-178.25,-105.72],[-173.55,-96.09],[-170.01,-97.29],[-165.27,-104.52],[-161.02,-113.21],[-157,-122.67],[-153.18,-132.19],[-148.46,-148.05],[-148.75,-178],[-157.59,-219.13],[-171.93,-257.85],[-187.14,-278.7],[-201.79,-319.03],[-211.52,-335.17],[-217.22,-345.58],[-224.74,-357.41],[-228.4,-363.68],[-230.76,-365.61],[-232.87,-370.12]],"o":[[-242.68,-371.88],[-249.71,-347.18],[-254.56,-320.14],[-253.53,-291.3],[-250.14,-265.35],[-246.83,-246.43],[-242.26,-228.66],[-235.65,-213.65],[-226.89,-200.55],[-216.99,-188.05],[-207.68,-173.33],[-199.66,-152.81],[-191.63,-134.07],[-186.1,-122.54],[-182.94,-113.82],[-181.58,-112.65],[-179.98,-109.67],[-175.04,-98.93],[-171.62,-95.78],[-166.83,-101.66],[-162.52,-109.88],[-158.26,-119.61],[-154.16,-129.28],[-150.22,-141.71],[-146.2,-172.27],[-155.17,-205.66],[-165.82,-247.79],[-183.61,-273.99],[-199.13,-300.9],[-210.33,-334.61],[-214.95,-341.09],[-222.44,-353.89],[-227.98,-362.56],[-229.15,-365.34],[-232.05,-367.68],[-236.06,-375.43]],"v":[[-240,-380],[-247.47,-355.46],[-253,-330],[-254.11,-300.9],[-251,-272],[-247.99,-252.64],[-244,-235],[-237.96,-218.48],[-230,-205],[-220.27,-192.24],[-211,-179],[-202.37,-159.86],[-193,-137],[-187.93,-126.49],[-183,-114],[-182.04,-113.05],[-181,-112],[-176.65,-102.32],[-173,-96],[-168.42,-99.47],[-164,-107],[-159.64,-116.41],[-156,-125],[-152,-136],[-148,-153],[-152,-192],[-161,-231],[-180,-269],[-190,-284],[-210,-334],[-212,-336],[-220,-350],[-227,-361],[-229,-365],[-231,-366],[-234,-372]],"c":true}],"h":1},{"t":76,"s":[{"i":[[-236.66,-377.76],[-243.59,-369.44],[-248.5,-352.23],[-252.58,-334.72],[-255.01,-316.93],[-254.54,-302.62],[-252.59,-288.84],[-249.47,-261.17],[-243.69,-229.2],[-238.21,-217.29],[-234.54,-210.56],[-232.51,-208.33],[-230.61,-205.83],[-226.29,-200.26],[-220.93,-193.06],[-219.49,-190.68],[-218.12,-190.18],[-216.79,-188.03],[-215.31,-185.33],[-211.89,-180.95],[-209.15,-174.43],[-205.62,-167.22],[-202.01,-159.74],[-198.52,-148.69],[-191.52,-133.12],[-174.9,-96.31],[-167.34,-101.58],[-151.56,-132.65],[-150.31,-187.91],[-165.3,-248.31],[-187.56,-278.77],[-203.76,-320.15],[-211.77,-334.58],[-214.81,-341.17],[-223.63,-354.91],[-229.36,-364.36]],"o":[[-241.84,-374.83],[-246.92,-358.14],[-251.32,-340.51],[-254.42,-322.93],[-254.99,-306.95],[-253.34,-293.57],[-250.63,-272.82],[-246,-239.36],[-239.44,-219.76],[-235.76,-212.69],[-233.2,-209.17],[-231.21,-206.66],[-228.33,-202.73],[-222.59,-195.42],[-219.93,-190.84],[-218.59,-190.35],[-217.38,-189.11],[-215.76,-186.13],[-213.06,-182.98],[-209.94,-176.67],[-206.86,-169.6],[-203.19,-162.29],[-199.24,-152.23],[-194.21,-138.22],[-186.06,-122.08],[-169.83,-95.49],[-158.75,-117.83],[-144.57,-171.85],[-160.71,-228.03],[-181.42,-271.94],[-199.52,-303.65],[-210.16,-334.35],[-213.73,-338.1],[-219.2,-347.94],[-227.87,-362.22],[-233.87,-371.6]],"v":[[-240,-380],[-245.26,-363.79],[-250,-346],[-253.5,-328.83],[-255,-311],[-253.94,-298.1],[-252,-284],[-247.74,-250.26],[-240,-221],[-236.99,-214.99],[-234,-210],[-231.86,-207.5],[-230,-205],[-224.44,-197.84],[-220,-191],[-219.04,-190.51],[-218,-190],[-216.27,-187.08],[-215,-185],[-210.91,-178.81],[-208,-172],[-204.4,-164.75],[-201,-157],[-197,-145],[-188,-126],[-173,-96],[-165,-106],[-149,-147],[-155,-206],[-176,-264],[-192,-288],[-210,-334],[-212,-335],[-216,-343],[-226,-359],[-231,-367]],"c":true}],"h":1},{"t":77,"s":[{"i":[[-236.68,-377.79],[-243.39,-371.14],[-246.66,-356.32],[-250.49,-341.98],[-253.67,-328.61],[-254.19,-304.3],[-250.93,-277.22],[-248.05,-252.84],[-243.45,-230.94],[-235.11,-212.77],[-224.32,-197.58],[-214.95,-185.05],[-208.77,-174.05],[-201.8,-157.47],[-193.71,-137.59],[-189.22,-128.42],[-186.08,-122.22],[-180.84,-110.96],[-173.68,-96.11],[-166.17,-102.26],[-156.61,-124.47],[-151.61,-137.7],[-146.99,-157.59],[-148.25,-177.66],[-153.98,-201.12],[-159.68,-224.19],[-165.48,-245.21],[-171.75,-258.24],[-178.64,-267.74],[-189.59,-283.05],[-203.76,-320.16],[-211.77,-334.57],[-213.07,-339.27],[-216.86,-344.13],[-224.22,-355.93],[-229.37,-364.39]],"o":[[-242.06,-375.73],[-245.69,-361.44],[-249.15,-346.42],[-252.75,-333.07],[-254.72,-313.94],[-252.29,-285.94],[-249.08,-260.87],[-245.24,-237.87],[-238.2,-218.23],[-228.17,-202.44],[-217.31,-188.53],[-210.68,-177.82],[-204.45,-164.17],[-196.43,-144.18],[-190.18,-130.31],[-187.17,-124.37],[-183.5,-116.91],[-175.93,-100.56],[-170.11,-95.53],[-159.41,-116.73],[-153.87,-131.4],[-148.18,-150.79],[-147.01,-170.35],[-151.74,-193.04],[-157.94,-216.58],[-163.45,-238.5],[-169.68,-254.88],[-176.23,-264.67],[-185,-276.53],[-199.62,-303.66],[-210.16,-334.36],[-212.93,-336.73],[-215.04,-342.95],[-220.55,-350.16],[-227.82,-362.14],[-233.77,-371.44]],"v":[[-240,-380],[-244.54,-366.29],[-248,-351],[-251.62,-337.53],[-254,-324],[-253.24,-295.12],[-250,-269],[-246.65,-245.36],[-241,-225],[-231.64,-207.61],[-220,-192],[-212.81,-181.43],[-207,-170],[-199.12,-150.83],[-191,-132],[-188.19,-126.4],[-185,-120],[-178.38,-105.76],[-173,-96],[-162.79,-109.5],[-156,-126],[-149.9,-144.24],[-147,-164],[-149.99,-185.35],[-156,-209],[-161.57,-231.34],[-168,-251],[-173.99,-261.46],[-181,-271],[-192,-288],[-210,-334],[-212,-335],[-214,-341],[-218,-346],[-226,-359],[-231,-367]],"c":true}],"h":1},{"t":78,"s":[{"i":[[-238.4,-379.79],[-243.07,-372.06],[-246.05,-359.22],[-247.51,-354.19],[-248.93,-352.26],[-249.39,-349.79],[-249.74,-346.21],[-250.62,-342.97],[-251.77,-340.14],[-254.17,-318.53],[-251.99,-287.09],[-249.36,-261.07],[-246.14,-238.74],[-237.87,-215],[-232.22,-208.65],[-227.08,-201.4],[-224.25,-198.32],[-222.62,-194.8],[-217.53,-190.23],[-216.23,-186.5],[-214.24,-185.41],[-212.71,-182.23],[-205.25,-165.53],[-193.69,-137.5],[-174.69,-96.27],[-157.21,-122.93],[-146.79,-151.32],[-152.58,-196.06],[-167.65,-251.52],[-186.93,-278.38],[-203.43,-319.42],[-211.77,-334.57],[-212.96,-339.07],[-216.88,-344.18],[-224.65,-357.9],[-232.67,-370.3]],"o":[[-241.8,-376.2],[-245.2,-363.57],[-247.04,-354.81],[-248.45,-352.92],[-249.27,-350.93],[-249.63,-347.43],[-250.23,-343.9],[-251.39,-341.09],[-253.93,-329.24],[-253.2,-297.46],[-250.04,-269.2],[-247.41,-245.84],[-242.21,-226.36],[-233.41,-210.34],[-228.9,-204.15],[-225.87,-198.7],[-223.25,-197.02],[-220.1,-191.55],[-215.69,-187.55],[-215.84,-185.65],[-213.37,-183.91],[-207.63,-173.45],[-198.4,-147.56],[-186.05,-122.05],[-167.23,-95.06],[-151.6,-137.15],[-147.21,-178.52],[-162.39,-233.68],[-181.07,-271.59],[-199.16,-301.27],[-210.16,-334.36],[-213.02,-336.94],[-214.93,-342.73],[-221.58,-351.84],[-230.56,-366.89],[-236.3,-376.06]],"v":[[-240,-380],[-244.14,-367.81],[-247,-355],[-247.98,-353.56],[-249,-352],[-249.51,-348.61],[-250,-345],[-251,-342.03],[-252,-339],[-253.68,-307.99],[-251,-278],[-248.39,-253.45],[-244,-232],[-235,-212],[-231,-207],[-226,-199],[-224,-198],[-222,-194],[-216,-188],[-216,-186],[-214,-185],[-212,-181],[-202,-157],[-188,-126],[-173,-96],[-156,-126],[-147,-165],[-157,-213],[-176,-264],[-191,-286],[-210,-334],[-212,-335],[-214,-341],[-218,-346],[-228,-363],[-235,-374]],"c":true}],"h":1},{"t":79,"s":[{"i":[[-236.65,-377.81],[-243.08,-372.03],[-246.08,-359.11],[-247.51,-354.19],[-248.93,-352.26],[-251.25,-342.8],[-253.67,-328.53],[-254.24,-312.11],[-252.64,-294.07],[-251.04,-275.67],[-249.87,-257.71],[-247.4,-244.04],[-244.03,-233.06],[-238.18,-218.27],[-228.63,-203.7],[-219.43,-191.7],[-212.19,-180.44],[-205.01,-164.12],[-201.36,-156.95],[-200.11,-150.57],[-196.93,-144.01],[-189.45,-128.97],[-174.56,-96.25],[-161.73,-113.13],[-151.79,-134.46],[-147.02,-173.61],[-159.43,-222.05],[-168.56,-252.81],[-178.67,-268.4],[-189.31,-282.91],[-198.16,-304.14],[-208.18,-327.55],[-213.02,-339.18],[-216.86,-344.13],[-218.49,-348.17],[-227.24,-361.1]],"o":[[-241.79,-376.22],[-245.22,-363.47],[-247.04,-354.81],[-248.45,-352.92],[-250.16,-347.54],[-253,-333.3],[-254.42,-318.08],[-253.35,-300.1],[-251.35,-281.81],[-250.3,-263.62],[-248.39,-248.01],[-245.22,-236.56],[-240.87,-223.67],[-232.07,-208.28],[-222.09,-195.23],[-214.49,-184.3],[-207.41,-170.76],[-202.54,-157.82],[-200.1,-153.67],[-198.3,-146.38],[-192.63,-134.72],[-183.31,-116.56],[-167.68,-95.14],[-156.82,-124.09],[-145.12,-158.81],[-155.03,-206.62],[-166.41,-244.89],[-174.6,-263.68],[-185.65,-278.04],[-196.26,-296.07],[-204.04,-320.41],[-212.98,-336.92],[-215.04,-342.95],[-218.6,-346.99],[-223.03,-355.48],[-233.81,-371.41]],"v":[[-240,-380],[-244.15,-367.75],[-247,-355],[-247.98,-353.56],[-249,-352],[-252.13,-338.05],[-254,-324],[-253.79,-306.11],[-252,-288],[-250.67,-269.64],[-249,-252],[-246.31,-240.3],[-243,-230],[-235.12,-213.28],[-225,-199],[-216.96,-188],[-210,-176],[-203,-159],[-201,-156],[-199,-148],[-196,-142],[-186,-122],[-173,-96],[-160,-117],[-150,-141],[-151,-190],[-164,-237],[-172,-259],[-182,-273],[-192,-288],[-201,-312],[-212,-335],[-214,-341],[-218,-346],[-219,-349],[-231,-367]],"c":true}],"h":1},{"t":80,"s":[{"i":[[-236.87,-376.92],[-242.16,-375.18],[-244.26,-367.68],[-248.72,-351.99],[-253.5,-331.04],[-254.2,-303.42],[-250.88,-274.61],[-246.29,-236.45],[-238.8,-218.07],[-235.32,-214.42],[-234.5,-211.73],[-227.32,-203.04],[-224.68,-197.89],[-219.05,-191.96],[-205.62,-166.98],[-200.2,-153.5],[-199,-149.19],[-189.22,-129.66],[-175.02,-96.33],[-161.47,-112.68],[-157.98,-122.64],[-153.85,-129.67],[-152,-138.34],[-148.56,-146.99],[-151.44,-191.89],[-165.93,-247.89],[-177.05,-265.87],[-182.48,-273.1],[-185.27,-277.97],[-197.08,-300.07],[-206.01,-322.73],[-213.16,-337.95],[-219.72,-350.67],[-221.3,-352.91],[-224.36,-355.99],[-227.36,-362.46]],"o":[[-241.27,-377.59],[-243.65,-370.22],[-246.72,-358.73],[-252.11,-338.15],[-254.76,-313.36],[-252.26,-284.04],[-248.65,-250.21],[-240.53,-222.41],[-236.76,-214.6],[-234.39,-213.19],[-231.3,-207],[-224.36,-199.16],[-221.82,-194.13],[-210.3,-179.31],[-201.89,-154.63],[-199.23,-151.13],[-192.92,-135.88],[-180.19,-111.28],[-168.58,-95.28],[-158.46,-119.48],[-155.97,-127.46],[-151.89,-135.06],[-150.22,-144.86],[-143.39,-174.61],[-162.51,-230.91],[-174.04,-262.74],[-180.99,-272.18],[-184.92,-276.15],[-192.63,-288.3],[-203.08,-316.79],[-210.8,-333.01],[-217.58,-345.81],[-221.78,-352.82],[-222.68,-355.05],[-226.66,-359.6],[-232.16,-369.88]],"v":[[-240,-380],[-242.9,-372.7],[-245,-365],[-250.41,-345.07],[-254,-324],[-253.23,-293.73],[-250,-265],[-242,-226],[-237,-215],[-235,-214],[-234,-211],[-225,-200],[-224,-197],[-217,-189],[-202,-155],[-200,-153],[-198,-147],[-183,-117],[-173,-96],[-160,-116],[-157,-125],[-153,-132],[-151,-142],[-148,-150],[-158,-215],[-172,-259],[-179,-269],[-184,-275],[-186,-279],[-201,-311],[-208,-327],[-216,-343],[-221,-352],[-222,-354],[-225,-357],[-229,-365]],"c":true}],"h":1},{"t":81,"s":[{"i":[[-238.4,-379.79],[-245.83,-362.69],[-253.34,-332.77],[-254.15,-311.01],[-252.5,-292.9],[-251.14,-274.47],[-249.86,-256.56],[-245.55,-235.09],[-236.66,-215.25],[-230.17,-206.34],[-225.45,-200.93],[-216.18,-187.51],[-206.56,-168.46],[-198.4,-148.48],[-189.83,-130.13],[-181.84,-112.85],[-173.73,-96.12],[-169.5,-97.43],[-165.42,-106],[-160.75,-115.63],[-155.9,-125.64],[-153.79,-131.21],[-152.43,-134.87],[-149.47,-143.89],[-147.24,-156.44],[-147.57,-180.11],[-155.13,-206.15],[-162.64,-232.77],[-170.59,-256.44],[-176.41,-265.71],[-179.81,-270.3],[-187.56,-280.83],[-203.39,-319.86],[-217.8,-346.91],[-225.74,-359.4],[-232.7,-370.35]],"o":[[-242.66,-372.06],[-251.17,-343.05],[-254.4,-317.05],[-253.2,-298.93],[-251.46,-280.69],[-250.34,-262.41],[-247.72,-242.72],[-240.02,-221.36],[-231.69,-208.12],[-227.04,-202.74],[-219.91,-193.53],[-209.51,-174.98],[-200.99,-154.41],[-192.82,-136.34],[-184.73,-119.29],[-176.34,-101.26],[-171.03,-95.68],[-166.69,-102.59],[-162.55,-112.06],[-157.43,-122.42],[-154.32,-129.77],[-152.84,-133.76],[-150.6,-139.67],[-147.79,-152.27],[-146.25,-171.03],[-152.01,-197.66],[-160.34,-224.05],[-167.76,-248.97],[-175.26,-264.06],[-178.69,-268.83],[-184.08,-276.39],[-199.77,-301.66],[-214.04,-341.05],[-223.48,-355.94],[-230.5,-366.98],[-236.3,-376.06]],"v":[[-240,-380],[-248.5,-352.87],[-254,-323],[-253.67,-304.97],[-252,-287],[-250.74,-268.44],[-249,-251],[-242.78,-228.23],[-233,-210],[-228.6,-204.54],[-224,-199],[-212.85,-181.24],[-204,-162],[-195.61,-142.41],[-186,-122],[-179.09,-107.06],[-173,-96],[-168.09,-100.01],[-164,-109],[-159.09,-119.02],[-155,-128],[-153.32,-132.48],[-152,-136],[-148.63,-148.08],[-147,-160],[-149.79,-188.88],[-158,-216],[-165.2,-240.87],[-174,-262],[-177.55,-267.27],[-181,-272],[-190,-285],[-211,-335],[-221,-352],[-228,-363],[-235,-374]],"c":true}],"h":1},{"t":82,"s":[{"i":[[-238.62,-379.46],[-243.35,-371],[-247.58,-356.54],[-252.67,-333.23],[-253.82,-304.6],[-251.18,-265.93],[-244.56,-229],[-235.41,-213.43],[-229.05,-205.67],[-222.84,-197.59],[-216.76,-189],[-208.22,-172.11],[-199.52,-149],[-191.92,-134],[-186.26,-122.82],[-180.37,-109.98],[-173.66,-96.12],[-168.26,-99.25],[-161.78,-112.25],[-153.25,-131.77],[-146.09,-162.09],[-149.82,-189.78],[-157.66,-212.81],[-164.82,-238.28],[-173.21,-261.25],[-178.76,-269.63],[-181.54,-273.52],[-182.7,-274.96],[-183.59,-276.57],[-186.32,-279.58],[-189.15,-283.57],[-198.02,-301.25],[-207.11,-326.17],[-218.25,-347.24],[-230.52,-366.42],[-235.83,-375.37]],"o":[[-241.81,-375.48],[-246.23,-361.53],[-251.26,-342.18],[-253.95,-314.44],[-251.9,-279.67],[-247.51,-240.59],[-237.38,-216.09],[-231.24,-208.22],[-224.96,-200.34],[-218.74,-191.93],[-210.96,-179.11],[-202.5,-157.05],[-193.54,-137.09],[-188.28,-126.86],[-182.79,-115.42],[-175.8,-100.33],[-170.87,-95.62],[-163.72,-107.57],[-157.21,-122.47],[-147.69,-151.57],[-147.74,-181.88],[-154.78,-205.25],[-162.47,-229.66],[-170.19,-254.08],[-177.74,-268.12],[-180.66,-272.33],[-182.4,-274.42],[-183.29,-276.03],[-185.25,-278.3],[-188.27,-282.22],[-194.72,-292.92],[-204.22,-317.87],[-214.24,-340.53],[-226.39,-360.18],[-235.03,-373.64],[-237.63,-378.28]],"v":[[-240,-380],[-244.79,-366.26],[-249,-351],[-253.31,-323.83],[-253,-294],[-249.34,-253.26],[-239,-219],[-233.33,-210.82],[-227,-203],[-220.79,-194.76],[-215,-186],[-205.36,-164.58],[-195,-140],[-190.1,-130.43],[-184,-118],[-178.09,-105.16],[-173,-96],[-165.99,-103.41],[-161,-114],[-150.47,-141.67],[-147,-173],[-152.3,-197.51],[-160,-221],[-167.51,-246.18],[-177,-267],[-179.71,-270.98],[-182,-274],[-182.99,-275.49],[-184,-277],[-187.29,-280.9],[-190,-285],[-201.12,-309.56],[-211,-334],[-222.32,-353.71],[-234,-372],[-236.73,-376.83]],"c":true}],"h":1},{"t":83,"s":[{"i":[[-236.89,-378.93],[-243.29,-371.18],[-247.6,-356.43],[-252.66,-333.4],[-253.79,-305.32],[-252.31,-286.26],[-251.3,-273.25],[-248.34,-246.2],[-238.85,-218.61],[-232.2,-209.5],[-229.88,-206.21],[-226.29,-201.54],[-222.24,-196.7],[-213.2,-182.22],[-203.85,-160.57],[-195.76,-142.69],[-187.44,-126.26],[-181.3,-112.34],[-173.91,-96.16],[-169.52,-97.36],[-165.44,-105.92],[-156.31,-124.91],[-147.85,-148.84],[-147.24,-180.39],[-155.84,-207.57],[-163.93,-235.36],[-171.66,-258.55],[-177.41,-267.7],[-180.82,-272.34],[-187,-280.81],[-205.6,-325.34],[-216.07,-344.55],[-219.41,-348.03],[-220.27,-351.72],[-223.34,-354.94],[-230.25,-365.71]],"o":[[-241.74,-375.72],[-246.22,-361.54],[-251.26,-342.24],[-253.93,-314.94],[-252.66,-290.63],[-251.63,-277.56],[-250.17,-257.14],[-242.68,-226.93],[-233.01,-210.65],[-230.64,-207.28],[-227.67,-203.18],[-223.57,-198.3],[-216.77,-189.19],[-206.73,-167.92],[-198.54,-148.31],[-190.21,-131.67],[-183.84,-118.51],[-176.33,-101.16],[-171.04,-95.65],[-166.72,-102.49],[-160.14,-117.24],[-150.17,-140.71],[-145.83,-170.61],[-152.25,-198.87],[-161.6,-226.58],[-168.96,-251.34],[-176.25,-266.03],[-179.7,-270.85],[-184.57,-277.64],[-199.77,-301.24],[-215.85,-343.51],[-217.48,-346.75],[-220.78,-350.28],[-221.54,-353.96],[-227.35,-361.37],[-235.15,-373.35]],"v":[[-240,-380],[-244.75,-366.36],[-249,-351],[-253.29,-324.17],[-253,-295],[-251.97,-281.91],[-251,-269],[-245.51,-236.56],[-234,-212],[-231.42,-208.39],[-229,-205],[-224.93,-199.92],[-221,-195],[-209.96,-175.07],[-201,-154],[-192.98,-137.18],[-185,-121],[-178.81,-106.75],[-173,-96],[-168.12,-99.93],[-164,-109],[-153.24,-132.81],[-147,-158],[-149.75,-189.63],[-159,-218],[-166.44,-243.35],[-175,-264],[-178.55,-269.28],[-182,-274],[-189,-284],[-215,-342],[-217,-346],[-220,-349],[-221,-353],[-224,-356],[-233,-370]],"c":true}],"h":1},{"t":84,"s":[{"i":[[-237.53,-379.25],[-246.59,-360.84],[-253.93,-328.08],[-253.45,-304.49],[-251.32,-284.68],[-250.38,-263.76],[-248.45,-244.46],[-238.47,-218.89],[-219.79,-194.35],[-208.22,-171.94],[-199.5,-148.95],[-191.9,-133.97],[-186.22,-122.76],[-180.21,-109.78],[-173.5,-96.09],[-167.02,-101.26],[-158.06,-121.4],[-152.41,-135.69],[-147.47,-153],[-147.06,-180.42],[-155.59,-205.85],[-163.47,-232.56],[-169.67,-253.55],[-178.19,-268.29],[-184.74,-277.72],[-195.49,-295.53],[-202.81,-312.85],[-204.37,-319.38],[-208,-325.69],[-210.6,-334.22],[-218.97,-348.5],[-222.75,-353.62],[-224.3,-356.89],[-228.79,-364.31],[-231.75,-367.62],[-233.18,-370.7]],"o":[[-243.12,-371.05],[-251.99,-339.36],[-254.04,-310.9],[-252.09,-291.38],[-250.66,-270.78],[-249.28,-250.6],[-244.07,-227.97],[-226.32,-202.09],[-210.97,-178.97],[-202.48,-156.93],[-193.54,-137.09],[-188.24,-126.8],[-182.71,-115.24],[-175.6,-100.21],[-170.48,-95.56],[-160.8,-114.18],[-154.68,-129.69],[-148.8,-147.34],[-145.77,-171.25],[-151.98,-197.72],[-161.38,-224.79],[-167.61,-246.94],[-173.8,-263.23],[-182.57,-274.84],[-192.08,-288.37],[-200.76,-308.25],[-204.54,-317.43],[-205.9,-323.32],[-210.34,-331.09],[-214.72,-342.41],[-221.15,-353.33],[-223.64,-355],[-227.06,-361.27],[-230.15,-367.33],[-232.71,-369.1],[-235.69,-374.68]],"v":[[-240,-380],[-249.29,-350.1],[-254,-317],[-252.77,-297.94],[-251,-278],[-249.83,-257.18],[-247,-239],[-232.4,-210.49],[-215,-186],[-205.35,-164.44],[-195,-140],[-190.07,-130.39],[-184,-118],[-177.91,-104.99],[-173,-96],[-163.91,-107.71],[-157,-124],[-150.61,-141.52],[-147,-158],[-149.52,-189.07],[-159,-217],[-165.54,-239.75],[-172,-259],[-180,-271],[-187,-281],[-199,-304],[-204,-316],[-205,-321],[-209,-328],[-212,-337],[-221,-353],[-223,-354],[-225,-358],[-230,-367],[-232,-368],[-234,-372]],"c":true}],"h":1},{"t":85,"s":[{"i":[[-237.62,-378.87],[-242.05,-374.83],[-245.15,-366.96],[-246.42,-361.48],[-246.67,-357.26],[-247.94,-353.55],[-249.7,-350.24],[-252.22,-338.55],[-254,-321.6],[-253.59,-308.76],[-252.19,-297.02],[-251.33,-275.76],[-249.48,-251.98],[-245.2,-234.49],[-239.24,-221.49],[-232.31,-210.15],[-224.59,-199.76],[-214.63,-186.51],[-210.14,-174.79],[-190.33,-133.88],[-174.34,-96.24],[-157.89,-121.81],[-148.05,-147.15],[-154.14,-200.54],[-164.96,-236.66],[-171.2,-257.68],[-177.99,-268.77],[-180.75,-271.62],[-182.25,-274.92],[-189.46,-284.58],[-199.18,-304.51],[-203.98,-318.43],[-207.94,-325.53],[-210.74,-333.44],[-226.68,-360.04],[-234.27,-372.84]],"o":[[-240.98,-377.35],[-244.14,-369.63],[-246.33,-362.84],[-246.59,-358.69],[-247.34,-354.68],[-249.12,-351.33],[-251.22,-343.99],[-253.61,-327.35],[-254,-312.5],[-252.69,-301.02],[-251.59,-284.27],[-250.28,-259.62],[-246.83,-239.5],[-241.41,-225.49],[-234.35,-213.87],[-227.07,-203.01],[-218.73,-191.24],[-210.76,-178.4],[-200.93,-152.24],[-177.84,-105.93],[-167.75,-95.07],[-152.69,-134.59],[-144.2,-186.89],[-163.08,-229.81],[-169.4,-250.48],[-175.39,-265.65],[-179.15,-271.33],[-181.72,-273.11],[-186.12,-280.51],[-196.41,-296.69],[-203.11,-314.96],[-205.99,-323.49],[-210.07,-330.5],[-218,-348.2],[-233.8,-371.26],[-236.95,-377.11]],"v":[[-240,-380],[-243.1,-372.23],[-246,-364],[-246.5,-360.08],[-247,-356],[-248.53,-352.44],[-250,-349],[-252.91,-332.95],[-254,-316],[-253.14,-304.89],[-252,-293],[-250.8,-267.69],[-248,-245],[-243.31,-229.99],[-237,-218],[-230,-207],[-222,-196],[-212,-181],[-209,-172],[-181,-113],[-173,-96],[-157,-124],[-147,-158],[-161,-223],[-167,-243],[-174,-263],[-179,-271],[-181,-272],[-183,-276],[-192,-289],[-202,-312],[-205,-321],[-209,-328],[-212,-336],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":86,"s":[{"i":[[-237.65,-378.93],[-245.09,-365.69],[-252.15,-339.53],[-253.46,-312.59],[-251.44,-284.34],[-250.7,-265.48],[-249.86,-252.31],[-246.68,-238.56],[-241.67,-225.69],[-239.62,-222.04],[-239.32,-220.52],[-230.47,-207.9],[-217.39,-190.62],[-209.66,-174.65],[-203.63,-159.7],[-196.07,-143.03],[-187.7,-125.89],[-180.14,-109.68],[-173.46,-96.08],[-166.62,-101.99],[-157.44,-122.91],[-152.62,-135.19],[-147.54,-152.68],[-147.53,-183.44],[-157.96,-212.49],[-161.77,-225.31],[-162.54,-230.45],[-164.61,-234.72],[-171.72,-259.02],[-178.49,-270.47],[-181.86,-274.34],[-194.63,-293.88],[-204.89,-318.18],[-210.12,-332.05],[-226.78,-360.2],[-234.33,-372.94]],"o":[[-242.27,-373.42],[-250.03,-348.75],[-253.74,-321.67],[-252.32,-293.92],[-250.77,-270.08],[-250.24,-256.6],[-248.09,-243.47],[-243.47,-229.67],[-239.71,-222.53],[-239.42,-221.03],[-235.02,-213.59],[-221.65,-196.41],[-211.85,-179.8],[-205.56,-164.6],[-198.72,-148.58],[-190.56,-131.68],[-182.66,-115.14],[-175.54,-100.15],[-170.4,-95.54],[-160.14,-115.68],[-154.84,-129.34],[-148.97,-146.85],[-145.55,-172.19],[-153.74,-203.59],[-161.5,-223.58],[-162.29,-228.74],[-163.42,-233.43],[-168.6,-247.7],[-177.1,-267.79],[-180.56,-272.63],[-189.18,-284.99],[-201.88,-310.67],[-208.49,-328.12],[-217.71,-347.98],[-233.59,-370.94],[-236.89,-377.03]],"v":[[-240,-380],[-247.56,-357.22],[-253,-330],[-252.89,-303.25],[-251,-275],[-250.47,-261.04],[-249,-248],[-245.07,-234.12],[-240,-223],[-239.52,-221.53],[-239,-220],[-226.06,-202.16],[-214,-184],[-207.61,-169.62],[-202,-156],[-193.32,-137.36],[-184,-118],[-177.84,-104.91],[-173,-96],[-163.38,-108.84],[-157,-124],[-150.79,-141.02],[-147,-158],[-150.63,-193.51],[-161,-222],[-162.03,-227.02],[-163,-232],[-165,-236],[-176,-266],[-179,-271],[-183,-276],[-199,-304],[-207,-324],[-212,-336],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":87,"s":[{"i":[[-237.62,-378.87],[-243.17,-372.08],[-246.82,-359.41],[-250.18,-346.85],[-252.7,-334.24],[-253.38,-315.55],[-252.23,-294.61],[-251.68,-273.6],[-250.36,-253.2],[-245.9,-235.83],[-238.89,-221.5],[-229.94,-208.26],[-220.65,-195.52],[-210.55,-176.09],[-200.73,-151.88],[-194.16,-139.71],[-191.03,-134.1],[-188.07,-128.2],[-184.99,-122.2],[-175.27,-96.4],[-166.86,-102.72],[-157.8,-121.99],[-148.09,-147.32],[-148.8,-187.18],[-157.6,-214.15],[-169.12,-254.78],[-180.72,-272.61],[-189.42,-284.67],[-192.27,-291.71],[-195.37,-294.81],[-197.91,-301.5],[-204.9,-318.2],[-219.23,-350.08],[-227.34,-362.98],[-231.59,-367.79],[-234.29,-372.86]],"o":[[-241.76,-376.13],[-245.7,-363.72],[-249.08,-350.98],[-251.98,-338.48],[-253.52,-322.75],[-252.74,-301.48],[-251.75,-280.75],[-250.98,-259.82],[-247.7,-241.08],[-241.49,-226.04],[-233.11,-212.5],[-223.7,-199.77],[-213.69,-183.65],[-204.07,-160.2],[-195.15,-141.41],[-192.1,-136.06],[-189.07,-130.1],[-186.02,-124.25],[-181.25,-113.87],[-169.18,-95.32],[-161.1,-115.37],[-152.69,-134.76],[-145.1,-176.55],[-155.21,-206.74],[-165.07,-235.48],[-178.54,-270.14],[-185.99,-280.44],[-192.77,-290.3],[-193.66,-294.17],[-197.2,-298.26],[-201.8,-310.41],[-211.8,-337.24],[-226.76,-361.11],[-229.43,-366.2],[-233.62,-370.97],[-236.95,-377.11]],"v":[[-240,-380],[-244.43,-367.9],[-248,-355],[-251.08,-342.67],[-253,-330],[-253.06,-308.52],[-252,-288],[-251.33,-266.71],[-249,-247],[-243.7,-230.94],[-236,-217],[-226.82,-204.02],[-218,-191],[-207.31,-168.14],[-196,-143],[-193.13,-137.88],[-190,-132],[-187.04,-126.23],[-184,-120],[-173,-96],[-164,-109],[-157,-124],[-147,-158],[-153,-200],[-160,-221],[-176,-266],[-183,-276],[-192,-289],[-193,-293],[-196,-296],[-199,-304],[-207,-324],[-226,-360],[-228,-364],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":88,"s":[{"i":[[-234.64,-374.1],[-245.39,-364.93],[-252.38,-338.25],[-253.3,-316.27],[-252.25,-297.23],[-251.64,-278.06],[-250.79,-259.63],[-248.14,-243.14],[-243.35,-228.39],[-239.83,-222.34],[-237.57,-219.91],[-236.91,-218.39],[-237.12,-217.26],[-236.49,-216.68],[-235.12,-216.18],[-235.23,-214.51],[-233.25,-213.35],[-217.28,-190.54],[-203.52,-157.85],[-191.02,-134.02],[-174.46,-96.26],[-166.97,-102.46],[-148.91,-141.79],[-156.84,-207.68],[-167.61,-243.88],[-171.97,-256.58],[-180.62,-273.28],[-188.85,-285.35],[-194.63,-294.89],[-198.4,-303.27],[-202.22,-310.96],[-206.45,-322.23],[-210.06,-329.88],[-212.06,-337.06],[-216.08,-342.28],[-220.57,-352.1]],"o":[[-242.45,-373.06],[-250.36,-347.53],[-253.42,-322.66],[-252.71,-303.56],[-251.74,-284.5],[-251.16,-265.63],[-249.22,-248.45],[-245.2,-233.11],[-240.54,-223.14],[-238.34,-220.73],[-236.85,-218.76],[-237.04,-217.64],[-236.93,-216.84],[-235.59,-216.35],[-234.69,-215.54],[-234.86,-213.68],[-224.35,-200.62],[-207.25,-167.3],[-195.39,-141.93],[-184.39,-119.47],[-169.32,-95.35],[-156.5,-125.48],[-143.53,-190.21],[-166.55,-239.01],[-170.59,-252.74],[-177.01,-267.54],[-186.65,-281.7],[-193.04,-292.48],[-198.11,-300.26],[-200.95,-309.22],[-204.91,-318.01],[-208.87,-328.11],[-211.96,-334.17],[-213.94,-340.93],[-219.19,-348.11],[-227.85,-363.81]],"v":[[-240,-380],[-247.87,-356.23],[-253,-329],[-253.01,-309.92],[-252,-291],[-251.4,-271.85],[-250,-254],[-246.67,-238.13],[-241,-224],[-239.08,-221.54],[-237,-219],[-236.97,-218.02],[-237,-217],[-236.04,-216.52],[-235,-216],[-235,-214],[-233,-213],[-211,-176],[-199,-149],[-186,-123],[-173,-96],[-164,-109],[-147,-159],[-165,-234],[-169,-248],[-174,-261],[-184,-278],[-191,-289],[-196,-297],[-200,-307],[-203,-313],[-208,-326],[-211,-332],[-213,-339],[-217,-344],[-223,-356]],"c":true}],"h":1},{"t":89,"s":[{"i":[[-237.4,-378.65],[-248.38,-356.65],[-253.77,-314.24],[-252.64,-287.43],[-252.28,-271.9],[-250.33,-250.89],[-244.08,-229.55],[-239.15,-221.21],[-235.93,-217.35],[-228.54,-206.96],[-219.63,-193.87],[-213.31,-181.23],[-208.9,-169.4],[-203.6,-158.14],[-197.08,-146.98],[-191.61,-136.37],[-186.13,-124.77],[-180.35,-111.02],[-173.94,-96.17],[-169.11,-97.67],[-164.53,-107.6],[-160.04,-116.49],[-157.01,-126.32],[-145.91,-156.15],[-151.68,-197.85],[-157.61,-215.12],[-170.76,-257.78],[-180.27,-272.93],[-184.57,-278.21],[-187.21,-282.8],[-196.93,-298.27],[-203.78,-315.4],[-214.63,-341.64],[-226.82,-361.16],[-230.75,-366.62],[-232.15,-369.69]],"o":[[-244.74,-369.02],[-252.89,-329.25],[-252.75,-292.72],[-252.4,-277.02],[-251.54,-258.86],[-246.6,-236.23],[-240.18,-222.53],[-237.03,-218.62],[-231.73,-211.27],[-222.5,-198.26],[-214.86,-185.03],[-210.33,-173.42],[-205.56,-161.65],[-199.36,-150.8],[-193.29,-139.74],[-188.03,-128.89],[-182.63,-116.93],[-176.01,-100.63],[-170.85,-95.62],[-165.95,-103.65],[-161.59,-114.14],[-157.38,-122.92],[-151.51,-140.92],[-146.08,-181.31],[-156.46,-211.03],[-165.2,-236.26],[-179.71,-272.13],[-182.91,-276.8],[-186.99,-281.24],[-192.44,-290.74],[-202.44,-310.35],[-210.12,-331.38],[-222.94,-356.13],[-229.15,-366.33],[-231.72,-368.11],[-235.21,-374.39]],"v":[[-240,-380],[-250.64,-342.95],[-253,-298],[-252.52,-282.22],[-252,-267],[-248.47,-243.56],[-241,-224],[-238.09,-219.91],[-235,-216],[-225.52,-202.61],[-217,-189],[-211.82,-177.32],[-207,-165],[-201.48,-154.47],[-195,-143],[-189.82,-132.63],[-184,-120],[-178.18,-105.82],[-173,-96],[-167.53,-100.66],[-163,-111],[-159,-119],[-156,-129],[-146,-170],[-155,-207],[-159,-219],[-179,-271],[-181,-274],[-186,-280],[-188,-284],[-200,-305],[-206,-321],[-220,-351],[-229,-366],[-231,-367],[-233,-371]],"c":true}],"h":1},{"t":90,"s":[{"i":[[-237.41,-378.93],[-245.51,-364.8],[-252.34,-337.89],[-253.21,-317.79],[-252.25,-301.62],[-251.95,-285],[-252.39,-268.34],[-247.6,-239.09],[-232.61,-211.77],[-225.75,-202.68],[-223.5,-200.75],[-222.24,-198.4],[-221.39,-195.67],[-219.91,-193.21],[-218.46,-190.87],[-214.34,-182.87],[-209.46,-172.35],[-206.67,-165.47],[-204.82,-159.65],[-199.72,-152.23],[-189.24,-130.97],[-177.95,-104.85],[-167.13,-101.66],[-158.68,-121.45],[-155.19,-128.49],[-153.02,-134.8],[-149.82,-144.74],[-153.09,-200.38],[-171.28,-256.92],[-181.15,-275.11],[-183.18,-278.15],[-187.66,-283.92],[-194.12,-293.48],[-212.07,-341.05],[-228.14,-363.11],[-233.16,-372.12]],"o":[[-242.6,-372.85],[-250.38,-347.32],[-253.34,-322.98],[-252.67,-307.11],[-251.75,-290.58],[-252.27,-273.87],[-251.05,-249.95],[-238.38,-220],[-226.5,-203.31],[-224.25,-201.4],[-222.54,-199.32],[-221.66,-196.58],[-220.42,-194.02],[-218.92,-191.63],[-216.12,-186.44],[-211.01,-175.83],[-207.38,-167.56],[-205.08,-161.97],[-202.47,-154.91],[-191.78,-137.32],[-180.82,-112.12],[-170.26,-89.65],[-160.19,-117.36],[-156.89,-127.37],[-154.07,-131.55],[-151.07,-140.93],[-140.96,-180.06],[-168.58,-243.55],[-179.26,-271.27],[-182.8,-276.84],[-186.22,-281.31],[-191.7,-290.2],[-206.29,-316.28],[-226.34,-360.13],[-231.37,-368.13],[-236.3,-375.4]],"v":[[-240,-380],[-247.95,-356.06],[-253,-328],[-252.94,-312.45],[-252,-296],[-252.11,-279.44],[-252,-263],[-242.99,-229.54],[-227,-204],[-225,-202.04],[-223,-200],[-221.95,-197.49],[-221,-195],[-219.42,-192.42],[-218,-190],[-212.68,-179.35],[-208,-169],[-206,-164],[-204,-158],[-198,-149],[-183,-117],[-176,-101],[-163,-111],[-157,-127],[-155,-129],[-152,-138],[-149,-148],[-163,-228],[-178,-269],[-182,-276],[-184,-279],[-189,-286],[-196,-297],[-224,-357],[-230,-366],[-234,-373]],"c":true}],"h":1},{"t":91,"s":[{"i":[[-237.41,-378.93],[-245.73,-364.33],[-252.43,-336.36],[-253.14,-315.76],[-252.22,-299.57],[-252.01,-283.01],[-252.45,-266.45],[-250.36,-250.27],[-245.59,-235.6],[-242.32,-228.02],[-239.96,-222.62],[-235.97,-218.46],[-234.31,-215.47],[-231.95,-211.52],[-229.44,-208.63],[-221.66,-196.6],[-213.56,-181.17],[-210.2,-174.51],[-208.81,-169.85],[-198.87,-148.67],[-180.34,-112.44],[-176.48,-101.95],[-167.06,-101.6],[-158.59,-121.74],[-155.19,-128.49],[-152.95,-135.02],[-149.77,-144.93],[-153.03,-200.22],[-173.23,-263.62],[-187.94,-284.31],[-190.74,-289.86],[-195.04,-295.27],[-197.87,-301.73],[-213.43,-342.88],[-225.33,-358.94],[-231.75,-370.66]],"o":[[-242.76,-372.65],[-250.56,-346.18],[-253.28,-320.97],[-252.61,-305.06],[-251.78,-288.53],[-252.34,-271.97],[-251.56,-255.72],[-247.37,-240.2],[-243.09,-229.96],[-240.76,-224.35],[-238.25,-219.74],[-234.57,-216.35],[-232.69,-213.02],[-230.63,-209.41],[-225.48,-203.04],[-216.16,-187.1],[-211.89,-175.63],[-209.26,-172.11],[-203.1,-156.85],[-189.45,-129.94],[-176.5,-102.74],[-170.27,-89.66],[-160.44,-116.92],[-156.89,-127.37],[-154.13,-131.33],[-150.93,-141.35],[-140.92,-180.22],[-169.97,-247.43],[-186.3,-282.92],[-190.34,-288.15],[-193.09,-293.85],[-197.23,-299.2],[-207.65,-321.45],[-224.76,-358.02],[-228.39,-363.75],[-236.3,-375.4]],"v":[[-240,-380],[-248.14,-355.25],[-253,-326],[-252.88,-310.41],[-252,-294],[-252.18,-277.49],[-252,-261],[-248.86,-245.24],[-244,-232],[-241.54,-226.18],[-239,-221],[-235,-217],[-234,-215],[-231,-210],[-229,-208],[-219,-192],[-212,-176],[-210,-174],[-208,-168],[-193,-137],[-177,-104],[-176,-101],[-163,-111],[-157,-127],[-155,-129],[-152,-138],[-149,-148],[-163,-228],[-185,-281],[-189,-286],[-192,-292],[-196,-297],[-199,-304],[-224,-357],[-226,-360],[-234,-373]],"c":true}],"h":1},{"t":92,"s":[{"i":[[-235.7,-376.02],[-245.92,-363.97],[-252.54,-335.02],[-253.04,-313.82],[-252.15,-297.52],[-252.1,-280.69],[-252.51,-264.24],[-239.31,-222.18],[-229.67,-207.97],[-227.36,-206.48],[-226.5,-203.73],[-221.65,-196.97],[-209.4,-169.01],[-199.97,-150.68],[-193.76,-141.36],[-180.83,-110.56],[-173.56,-96.1],[-160.69,-115.69],[-154.03,-131.8],[-151.5,-141.12],[-148.62,-149.48],[-147.26,-157.25],[-154.59,-205.88],[-170.88,-253.82],[-180.23,-273.08],[-183.75,-277.63],[-183.77,-279.49],[-185.75,-280.63],[-187.81,-285.19],[-192.01,-290.36],[-196.96,-300.75],[-205.77,-318.61],[-211.13,-333.82],[-219.84,-350.21],[-223.76,-355.6],[-225.85,-360.2]],"o":[[-242.9,-372.46],[-250.74,-345.25],[-253.21,-319.06],[-252.51,-303.05],[-251.84,-286.32],[-252.43,-269.65],[-250.2,-240.52],[-229.33,-209.12],[-228.69,-206.54],[-226.39,-205.19],[-223.74,-199.65],[-213.39,-182.06],[-201.4,-153.99],[-196.47,-144.14],[-187.28,-128.99],[-174.51,-98.04],[-168.01,-95.12],[-156.02,-127.6],[-151.51,-139.5],[-150.04,-146.61],[-147.64,-155.02],[-142.88,-186.1],[-166.96,-239.89],[-177.35,-268.24],[-182.15,-277.32],[-184.31,-278.46],[-184.15,-280.32],[-187.23,-282.83],[-190.2,-288.83],[-195.46,-296.1],[-201.94,-311.11],[-210.1,-329.06],[-215.41,-343.39],[-222.15,-355.34],[-225.17,-357.93],[-230.73,-367.87]],"v":[[-240,-380],[-248.33,-354.61],[-253,-324],[-252.77,-308.44],[-252,-292],[-252.26,-275.17],[-252,-259],[-230,-210],[-229,-207],[-227,-206],[-226,-203],[-220,-194],[-203,-157],[-198,-147],[-192,-138],[-176,-101],[-173,-96],[-159,-120],[-152,-138],[-151,-143],[-148,-153],[-147,-159],[-163,-229],[-175,-263],[-182,-277],[-184,-278],[-184,-280],[-186,-281],[-189,-287],[-193,-292],[-199,-305],[-208,-324],[-213,-338],[-222,-355],[-224,-356],[-227,-362]],"c":true}],"h":1},{"t":93,"s":[{"i":[[-238.95,-380.35],[-246,-363.73],[-252.5,-334.29],[-253.03,-312.9],[-252.11,-296.76],[-252.16,-279.93],[-252.53,-263.18],[-250.58,-249.98],[-246.51,-238.6],[-241.79,-228.23],[-236.08,-219.12],[-225.46,-203.27],[-214.3,-182.62],[-211.49,-174.44],[-210.1,-173.25],[-207.66,-167.16],[-204.43,-159.68],[-201.42,-153.86],[-198.93,-148.71],[-196.11,-144.06],[-192.88,-139.66],[-186.87,-126.74],[-178.47,-105.89],[-174.69,-98.3],[-173.37,-96.07],[-167.53,-99.77],[-161.62,-114.53],[-154.01,-133.22],[-145.75,-164.18],[-149.77,-195.9],[-162.88,-227.19],[-167.28,-240.87],[-176.34,-266.88],[-195.16,-295.38],[-207.21,-323.07],[-228.32,-365.97]],"o":[[-243,-372.34],[-250.75,-344.71],[-253.22,-318.02],[-252.47,-302.27],[-251.89,-285.59],[-252.48,-268.72],[-251.58,-253.93],[-248.05,-242.31],[-243.5,-231.42],[-238.08,-222.09],[-229.8,-209.71],[-217.71,-189.73],[-211.94,-174.82],[-210.57,-173.66],[-208.7,-169.82],[-205.53,-162.09],[-202.21,-155.51],[-199.78,-150.46],[-197.17,-145.48],[-193.96,-141.15],[-189.63,-133.54],[-181.29,-112.91],[-175.25,-99.52],[-173.75,-96.58],[-170.22,-95.51],[-163.23,-109.28],[-157.89,-123.39],[-147.94,-153.62],[-146.32,-184.55],[-158.04,-217.22],[-166.75,-238.12],[-172.04,-255.05],[-187.92,-285.54],[-204.39,-313.73],[-218.43,-349.49],[-239.32,-379.39]],"v":[[-240,-380],[-248.38,-354.22],[-253,-323],[-252.75,-307.59],[-252,-291],[-252.32,-274.33],[-252,-258],[-249.31,-246.15],[-245,-235],[-239.94,-225.16],[-234,-216],[-221.58,-196.5],[-212,-175],[-211.03,-174.05],[-210,-173],[-206.59,-164.63],[-203,-157],[-200.6,-152.16],[-198,-147],[-195.04,-142.6],[-192,-138],[-184.08,-119.82],[-176,-101],[-174.22,-97.44],[-173,-96],[-165.38,-104.53],[-161,-116],[-150.98,-143.42],[-146,-173],[-153.9,-206.56],[-166,-236],[-168,-243],[-182,-276],[-200,-305],[-211,-332],[-239,-379]],"c":true}],"h":1},{"t":94,"s":[{"i":[[-238.95,-380.35],[-247.27,-360.21],[-253.23,-325.14],[-252.7,-306.67],[-251.99,-298.67],[-252.32,-284.6],[-252.6,-267.68],[-248.7,-243.97],[-238.97,-222.9],[-233.45,-214.83],[-231.53,-212.57],[-229.4,-209.96],[-227.55,-206.78],[-224.37,-201.77],[-221.18,-195.22],[-218.32,-190.32],[-215.64,-186.45],[-213.92,-181.8],[-212.69,-176.66],[-210.57,-172.34],[-205.67,-162.93],[-196.75,-146.25],[-186.69,-125.38],[-174.27,-96.21],[-162.23,-113.08],[-145.63,-155.28],[-150.89,-198],[-157.25,-213.91],[-173.43,-265.54],[-188.11,-286.02],[-190.76,-288.61],[-191.55,-291.22],[-195.37,-297.05],[-202.82,-311.43],[-210.34,-329.86],[-229.35,-367.23]],"o":[[-243.9,-370.64],[-251.93,-337.46],[-252.95,-309.33],[-252.22,-301.33],[-252.02,-290.26],[-252.61,-273.31],[-250.96,-252.27],[-242.7,-229.29],[-234.19,-215.8],[-232.12,-213.22],[-230.13,-211.06],[-228.11,-207.81],[-225.53,-203.91],[-222.2,-197.43],[-219.25,-191.59],[-216.52,-187.75],[-214.32,-183.47],[-213.1,-178.4],[-211.43,-173.63],[-207.7,-165.55],[-199.77,-152.03],[-190.3,-133.93],[-181.32,-112.64],[-167.38,-95.09],[-154.7,-130.94],[-146.24,-184.73],[-155.57,-210.04],[-167.77,-238.46],[-186.83,-283.44],[-189.15,-288.33],[-191.58,-289.93],[-193.69,-294.92],[-200.23,-305.82],[-207.52,-323.44],[-220.1,-352.39],[-239.32,-379.39]],"v":[[-240,-380],[-249.6,-348.83],[-253,-312],[-252.46,-304],[-252,-296],[-252.47,-278.96],[-252,-262],[-245.7,-236.63],[-235,-217],[-232.79,-214.02],[-231,-212],[-228.76,-208.88],[-227,-206],[-223.28,-199.6],[-220,-193],[-217.42,-189.03],[-215,-185],[-213.51,-180.1],[-212,-175],[-210,-171],[-203,-158],[-194,-141],[-184,-119],[-173,-96],[-161,-116],[-146,-173],[-154,-206],[-159,-218],[-185,-281],[-189,-288],[-191,-289],[-192,-292],[-197,-300],[-205,-317],[-213,-336],[-239,-379]],"c":true}],"h":1},{"t":95,"s":[{"i":[[-238.95,-380.35],[-247.17,-360.54],[-253.07,-325.96],[-252.73,-308.35],[-251.98,-301.47],[-252.46,-288.34],[-253.35,-272.16],[-250.52,-250],[-242.25,-229.08],[-235.5,-218.38],[-230.67,-210.51],[-228.06,-206.97],[-226.34,-205.52],[-225.25,-203.4],[-224.45,-200.74],[-222.29,-197.37],[-219.76,-193.49],[-214.86,-183.01],[-209.33,-169.62],[-190.79,-136.64],[-184.63,-119.54],[-181.54,-115.31],[-179.27,-106.71],[-172.93,-95.99],[-162.23,-113.08],[-145.86,-155.6],[-148.7,-191.79],[-160.16,-220.73],[-168.78,-243.38],[-178.18,-271.56],[-186.41,-284.5],[-191.17,-289.72],[-193.98,-295.29],[-203.76,-313.14],[-210.09,-329.56],[-228.88,-366.65]],"o":[[-243.88,-370.81],[-251.76,-338.11],[-252.99,-310.62],[-252.23,-303.78],[-252.03,-293.76],[-253.12,-277.54],[-252.4,-258.21],[-245.45,-235.43],[-237.16,-221.13],[-232.25,-213.07],[-228.64,-207.46],[-226.91,-206],[-225.52,-204.27],[-224.72,-201.63],[-223.16,-198.62],[-220.59,-194.8],[-216.69,-187.46],[-211.18,-174.09],[-202.32,-155.75],[-184.35,-121.46],[-183.41,-116.55],[-179.78,-111.07],[-176.06,-99.84],[-167.38,-95.09],[-154.75,-130.82],[-146.07,-182.57],[-154.64,-210.43],[-166.38,-237.37],[-174.39,-260.1],[-185.23,-280.98],[-188.97,-288.54],[-193.27,-292.97],[-199.75,-305.02],[-208.74,-325.23],[-219.39,-351.18],[-239.32,-379.39]],"v":[[-240,-380],[-249.46,-349.32],[-253,-313],[-252.48,-306.06],[-252,-299],[-252.79,-282.94],[-253,-267],[-247.99,-242.72],[-239,-224],[-233.88,-215.73],[-229,-208],[-227.49,-206.49],[-226,-205],[-224.98,-202.51],[-224,-200],[-221.44,-196.08],[-219,-192],[-213.02,-178.55],[-207,-165],[-185,-123],[-184,-118],[-181,-114],[-178,-104],[-173,-96],[-161,-116],[-146,-173],[-151,-199],[-164,-231],[-171,-250],[-183,-278],[-188,-287],[-192,-291],[-195,-297],[-207,-321],[-212,-334],[-239,-379]],"c":true}],"h":1},{"t":96,"s":[{"i":[[-238.95,-380.35],[-245.21,-366.31],[-251.42,-341.7],[-252.23,-321.72],[-251.72,-304.03],[-252.73,-286.65],[-253.44,-269.67],[-251.75,-255.3],[-248.14,-242.9],[-244.01,-233.06],[-238.88,-223.88],[-231.04,-212.17],[-222.59,-199.02],[-216.95,-187.64],[-212.55,-177.41],[-203.74,-159.37],[-190.7,-134.36],[-185.47,-122.94],[-182.74,-117.8],[-179.44,-108.93],[-174.16,-96.19],[-167.5,-99.81],[-161.61,-114.54],[-159.37,-120.23],[-157.56,-126.15],[-156.49,-128.56],[-155.09,-129.74],[-154.04,-133],[-152.52,-138.24],[-149.08,-150.81],[-145.9,-169.39],[-156.66,-211.81],[-169.78,-248.85],[-192.09,-290.76],[-207.22,-323.11],[-228.41,-366.09]],"o":[[-242.5,-373.71],[-249.67,-350.3],[-252.37,-327.45],[-251.91,-310],[-252.26,-292.31],[-253.32,-275.33],[-252.68,-259.85],[-249.48,-246.82],[-245.57,-236.37],[-240.67,-226.81],[-234,-216.41],[-225.34,-203.48],[-218.42,-190.93],[-214.01,-180.87],[-207.89,-167.19],[-195.14,-142.96],[-186.35,-124.54],[-183.66,-119.57],[-181.11,-113.84],[-175.96,-100.11],[-170.19,-95.54],[-163.21,-109.31],[-160.09,-118.15],[-158.11,-124.22],[-156.94,-128.19],[-155.56,-129.33],[-154.53,-131.38],[-153.04,-136.43],[-150.63,-144.61],[-146.72,-163.2],[-146.44,-194.53],[-167.88,-239.62],[-179.09,-275.3],[-204.24,-314.16],[-218.46,-349.53],[-239.32,-379.39]],"v":[[-240,-380],[-247.44,-358.31],[-252,-333],[-252.07,-315.86],[-252,-298],[-253.03,-280.99],[-253,-264],[-250.61,-251.06],[-247,-240],[-242.34,-229.93],[-237,-221],[-228.19,-207.82],[-220,-194],[-215.48,-184.25],[-211,-174],[-199.44,-151.17],[-187,-126],[-184.57,-121.25],[-182,-116],[-177.7,-104.52],[-173,-96],[-165.35,-104.56],[-161,-116],[-158.74,-122.22],[-157,-128],[-156.02,-128.95],[-155,-130],[-153.54,-134.71],[-152,-140],[-147.9,-157],[-146,-174],[-164,-230],[-173,-258],[-200,-306],[-211,-332],[-239,-379]],"c":true}],"h":1},{"t":97,"s":[{"i":[[-238.95,-380.35],[-244.88,-367.27],[-251.3,-342.81],[-252.51,-321.7],[-252.72,-303.93],[-253.55,-285.37],[-253.51,-267.21],[-249.61,-245.29],[-239.47,-225.4],[-230.52,-211.59],[-223.2,-199.49],[-219.62,-192.05],[-217.63,-187.45],[-211.41,-173.91],[-202.41,-157.11],[-192.84,-139.32],[-185.18,-121.72],[-178.61,-106.34],[-173.36,-96.06],[-167.5,-99.81],[-161.61,-114.54],[-157.05,-125.82],[-152.25,-140.28],[-149.93,-148.42],[-148.29,-153.37],[-147.64,-157.07],[-147.13,-160.13],[-147.15,-190.16],[-162.21,-224.56],[-170.08,-245.68],[-174.38,-258.8],[-179.44,-271.35],[-185.57,-283.11],[-195.17,-298.42],[-204.46,-315.01],[-226.14,-363.32]],"o":[[-242.23,-374.12],[-249.41,-351.62],[-252.39,-327.49],[-252.67,-309.92],[-253.29,-291.77],[-253.66,-273.1],[-252.13,-253.09],[-243.28,-231.45],[-233.17,-215.6],[-225.54,-203.54],[-220.3,-193.58],[-218.29,-188.99],[-214.2,-179.6],[-205.51,-162.66],[-195.49,-144.71],[-187.68,-127.82],[-180.68,-110.81],[-174.95,-98.96],[-170.19,-95.54],[-163.21,-109.31],[-158.92,-120.92],[-153.71,-135.5],[-150.54,-146.73],[-148.81,-151.74],[-147.82,-156.01],[-147.29,-159.13],[-144.54,-177.38],[-155.99,-213.75],[-168.64,-241.28],[-172.95,-254.44],[-177.66,-267.29],[-183.4,-279.26],[-191.69,-292.91],[-201.55,-309.46],[-216.3,-342.91],[-239.32,-379.39]],"v":[[-240,-380],[-247.15,-359.45],[-252,-333],[-252.59,-315.81],[-253,-298],[-253.6,-279.24],[-253,-262],[-246.45,-238.37],[-236,-220],[-228.03,-207.56],[-221,-195],[-218.95,-190.52],[-217,-186],[-208.46,-168.29],[-199,-151],[-190.26,-133.57],[-182,-114],[-176.78,-102.65],[-173,-96],[-165.35,-104.56],[-161,-116],[-155.38,-130.66],[-151,-145],[-149.37,-150.08],[-148,-155],[-147.46,-158.1],[-147,-161],[-151.57,-201.95],[-167,-237],[-171.52,-250.06],[-176,-263],[-181.42,-275.31],[-188,-287],[-198.36,-303.94],[-207,-321],[-239,-379]],"c":true}],"h":1},{"t":98,"s":[{"i":[[-235.8,-376.17],[-245.15,-366.56],[-251.35,-341.7],[-252.48,-320.92],[-252.73,-303.18],[-253.54,-284.8],[-253.56,-266.39],[-249.35,-244.41],[-238.51,-224.38],[-232.41,-215.03],[-229.02,-209.69],[-225.52,-203.99],[-222.13,-198.27],[-217.77,-188.71],[-213.33,-177.04],[-211.36,-172.38],[-210.35,-169.71],[-209.16,-167.99],[-207.39,-166.65],[-206.25,-164.35],[-205.36,-161.63],[-196.63,-146.2],[-185.81,-124.22],[-179.42,-108.32],[-173.99,-96.16],[-162.28,-112.95],[-145.63,-157.15],[-156.38,-213.35],[-170.94,-248.97],[-180.73,-274.42],[-195.73,-298.31],[-207.41,-321.96],[-212.63,-334.96],[-219.88,-350.3],[-223.76,-355.59],[-225.78,-360.08]],"o":[[-242.48,-373.71],[-249.59,-350.56],[-252.36,-326.58],[-252.66,-309.22],[-253.26,-291.11],[-253.68,-272.44],[-252.09,-252.22],[-242.56,-230.49],[-233.65,-216.93],[-230.09,-211.41],[-226.71,-205.86],[-223.23,-200.2],[-219.36,-192.69],[-214.76,-180.88],[-211.68,-173.28],[-210.69,-170.59],[-209.71,-168.42],[-208,-167.11],[-206.56,-165.28],[-205.64,-162.52],[-200.48,-153.09],[-189.3,-131.77],[-181.17,-112.99],[-175.83,-99.91],[-167.39,-95.09],[-154.61,-131.14],[-146.42,-195.29],[-167.95,-240.15],[-177.02,-266.91],[-190.74,-290.72],[-203.74,-312.73],[-211.7,-331.98],[-216.51,-343.58],[-222.16,-355.35],[-225.14,-357.93],[-230.75,-367.9]],"v":[[-240,-380],[-247.37,-358.56],[-252,-332],[-252.57,-315.07],[-253,-297],[-253.61,-278.62],[-253,-261],[-245.95,-237.45],[-235,-219],[-231.25,-213.22],[-228,-208],[-224.38,-202.1],[-221,-196],[-216.26,-184.8],[-212,-174],[-211.02,-171.49],[-210,-169],[-208.58,-167.55],[-207,-166],[-205.94,-163.44],[-205,-161],[-192.96,-138.99],[-182,-115],[-177.62,-104.12],[-173,-96],[-161,-116],[-146,-175],[-164,-231],[-174,-258],[-186,-283],[-200,-306],[-210,-328],[-214,-338],[-222,-355],[-224,-356],[-227,-362]],"c":true}],"h":1},{"t":99,"s":[{"i":[[-238.34,-378.97],[-245.36,-366],[-251.45,-339.96],[-252.43,-319.03],[-252.77,-301.71],[-253.52,-284],[-253.56,-266.39],[-249.89,-246.33],[-239.25,-224.48],[-230.85,-212.05],[-224.68,-203.16],[-219.76,-193.02],[-215.63,-181.84],[-207.75,-165.76],[-196.07,-147.09],[-189.27,-132.95],[-184.86,-121.52],[-179.91,-109.31],[-173.88,-96.14],[-167.55,-99.71],[-161.59,-114.3],[-154.3,-134.44],[-145.8,-166.56],[-149.43,-198.33],[-162.85,-226.72],[-170.18,-245.64],[-174.37,-258.62],[-179.87,-272.43],[-186.65,-285.22],[-189.58,-289.63],[-190.79,-290.67],[-198.81,-304.33],[-209.01,-324.93],[-217.59,-344.7],[-226.66,-361.87],[-233.58,-372.93]],"o":[[-242.64,-373.52],[-249.77,-349.22],[-252.29,-324.68],[-252.67,-307.55],[-253.24,-290.05],[-253.68,-272.17],[-252.26,-253.84],[-243.38,-231.65],[-233.01,-214.97],[-226.68,-206.15],[-221.2,-196.6],[-216.98,-185.64],[-211.22,-171.46],[-200.18,-153.57],[-190.59,-136.19],[-186.4,-125.61],[-181.97,-114.49],[-175.87,-100.14],[-170.26,-95.55],[-163.22,-109.08],[-158.15,-124.15],[-148.13,-155.64],[-146.25,-188.22],[-157.73,-217.58],[-168.75,-241.33],[-172.99,-254.28],[-177.79,-267.82],[-184.29,-281.13],[-189.19,-289.3],[-190.39,-290.32],[-195.06,-297.62],[-205.79,-317.99],[-214.76,-338.51],[-223.54,-356.38],[-231.8,-369.77],[-236.39,-377.04]],"v":[[-240,-380],[-247.57,-357.61],[-252,-330],[-252.55,-313.29],[-253,-296],[-253.6,-278.08],[-253,-261],[-246.63,-238.99],[-235,-218],[-228.77,-209.1],[-223,-200],[-218.37,-189.33],[-214,-178],[-203.96,-159.66],[-192,-139],[-187.83,-129.28],[-183,-117],[-177.89,-104.72],[-173,-96],[-165.39,-104.39],[-161,-116],[-151.21,-145.04],[-146,-176],[-153.58,-207.96],[-167,-237],[-171.59,-249.96],[-176,-263],[-182.08,-276.78],[-189,-289],[-189.99,-289.98],[-191,-291],[-202.3,-311.16],[-212,-332],[-220.56,-350.54],[-230,-367],[-235,-375]],"c":true}],"h":1},{"t":100,"s":[{"i":[[-228.06,-367.23],[-245.32,-365.99],[-251.34,-340.61],[-252.45,-321.85],[-252.78,-307.63],[-253.48,-293.46],[-254.01,-279.45],[-252.62,-256.77],[-243.77,-232.8],[-236.18,-220.7],[-231.96,-214.65],[-229.84,-211.03],[-228.44,-208.75],[-226.84,-206.03],[-225.44,-203.75],[-219.83,-192.7],[-213.33,-176.67],[-209.18,-168.69],[-206.04,-163.74],[-196.56,-146.72],[-184.34,-120.64],[-178.24,-106.16],[-173.8,-96.13],[-167.54,-99.71],[-161.61,-114.32],[-154.25,-134.45],[-145.88,-166.73],[-148.7,-195.07],[-160.15,-222.42],[-167.75,-239.74],[-172.52,-252.6],[-179.02,-270.06],[-188.73,-288.78],[-194.32,-297.6],[-197.93,-303.17],[-207.31,-321.47]],"o":[[-242.65,-373.43],[-249.66,-349.58],[-252.31,-326.53],[-252.68,-312.4],[-253.23,-298.23],[-253.87,-284.07],[-253.98,-265.37],[-247.51,-240.48],[-237.7,-222.88],[-233.31,-216.59],[-230.37,-211.91],[-228.87,-209.46],[-227.37,-206.91],[-225.87,-204.46],[-222.17,-198.11],[-215.41,-181.98],[-210.16,-170.32],[-207.12,-165.4],[-200.89,-155.15],[-188.28,-129.47],[-179.84,-110.35],[-175.22,-99.05],[-170.24,-95.55],[-163.23,-109.09],[-158.06,-124.09],[-148.16,-155.77],[-146.12,-185.61],[-155.71,-213.48],[-165.99,-235.44],[-171.02,-248.32],[-176.16,-263.43],[-185.31,-282.74],[-193.11,-295.76],[-196.74,-301.31],[-203.74,-313.13],[-218.93,-348.32]],"v":[[-240,-380],[-247.49,-357.79],[-252,-331],[-252.57,-317.12],[-253,-303],[-253.68,-288.76],[-254,-275],[-250.07,-248.63],[-239,-225],[-234.74,-218.65],[-231,-213],[-229.35,-210.25],[-228,-208],[-226.35,-205.25],[-225,-203],[-217.62,-187.34],[-211,-172],[-208.15,-167.04],[-205,-162],[-192.42,-138.09],[-181,-113],[-176.73,-102.61],[-173,-96],[-165.39,-104.4],[-161,-116],[-151.21,-145.11],[-146,-176],[-152.2,-204.27],[-164,-231],[-169.39,-244.03],[-174,-257],[-182.17,-276.4],[-192,-294],[-195.53,-299.45],[-199,-305],[-211,-330]],"c":true}],"h":1},{"t":101,"s":[{"i":[[-227.99,-367.28],[-245.4,-365.81],[-251.36,-339.96],[-252.42,-320.96],[-252.79,-306.61],[-253.53,-292.06],[-254.11,-277.52],[-252.21,-256.36],[-244.83,-235.95],[-238.53,-224.95],[-233.61,-216.6],[-229.2,-209.78],[-224.91,-203.59],[-223.24,-200.36],[-222.35,-197.73],[-217.05,-185.92],[-209.8,-169.66],[-205.16,-161.8],[-202.9,-157.56],[-197.93,-149.05],[-191.98,-138.32],[-185.53,-122.35],[-174.66,-96.27],[-167.54,-99.71],[-161.61,-114.32],[-157.23,-126.54],[-152.39,-141.78],[-149.91,-150.47],[-148.3,-155.32],[-147.63,-159.07],[-147.12,-162.14],[-154.22,-209.39],[-171.04,-248.19],[-179.98,-274.22],[-194.9,-297.61],[-207.25,-321.53]],"o":[[-242.72,-373.33],[-249.72,-349.12],[-252.28,-325.65],[-252.67,-311.44],[-253.23,-297.05],[-253.97,-282.3],[-253.79,-264.38],[-247.73,-242.15],[-240.23,-227.9],[-235.22,-219.3],[-230.75,-211.98],[-226.28,-205.58],[-223.57,-201.24],[-222.63,-198.6],[-219.39,-191.59],[-212.25,-174.96],[-205.96,-163.27],[-203.63,-158.95],[-199.93,-152.4],[-193.95,-142.01],[-188.95,-131.71],[-178.38,-104.63],[-170.24,-95.55],[-163.23,-109.09],[-159.04,-121.4],[-153.91,-136.73],[-150.52,-148.81],[-148.8,-153.73],[-147.82,-158],[-147.28,-161.14],[-143.15,-190.8],[-168,-239.84],[-176.85,-265.5],[-189.32,-290.55],[-203.58,-313.26],[-219.08,-348.22]],"v":[[-240,-380],[-247.56,-357.47],[-252,-330],[-252.55,-316.2],[-253,-302],[-253.75,-287.18],[-254,-273],[-249.97,-249.25],[-242,-231],[-236.88,-222.12],[-232,-214],[-227.74,-207.68],[-224,-202],[-222.94,-199.48],[-222,-197],[-214.65,-180.44],[-207,-165],[-204.39,-160.38],[-202,-156],[-195.94,-145.53],[-190,-134],[-181.96,-113.49],[-173,-96],[-165.39,-104.4],[-161,-116],[-155.57,-131.63],[-151,-147],[-149.36,-152.1],[-148,-157],[-147.46,-160.1],[-147,-163],[-164,-231],[-174,-257],[-185,-283],[-199,-305],[-211,-330]],"c":true}],"h":1},{"t":102,"s":[{"i":[[-231.14,-370.79],[-245.66,-365.57],[-251.45,-337.54],[-252.34,-317.48],[-252.69,-302.91],[-253.74,-287.69],[-254.34,-272.62],[-251.29,-251.9],[-241.25,-228.84],[-235.23,-219.45],[-232.53,-215.92],[-230.84,-213.03],[-229.44,-210.75],[-227.46,-207.14],[-225.66,-203.29],[-221.55,-194.86],[-216.72,-183.77],[-208.18,-167.13],[-196.15,-147.58],[-189.16,-132.43],[-184.81,-120.53],[-180.32,-109.36],[-172.88,-95.81],[-167.6,-99.84],[-162.46,-111.89],[-154.15,-133.54],[-145.87,-167.73],[-148.65,-196.03],[-160.05,-223.78],[-171.98,-248.14],[-180.93,-275.18],[-185.76,-282.59],[-189.73,-291.29],[-196.77,-302.14],[-205.38,-318.35],[-214.17,-337.03]],"o":[[-242.93,-373.55],[-249.91,-347.57],[-252.25,-322.27],[-252.56,-307.8],[-253.32,-292.88],[-254.25,-277.56],[-253.42,-259.98],[-245.21,-236.33],[-236.22,-220.74],[-233.39,-217.04],[-231.37,-213.91],[-229.87,-211.46],[-228.13,-208.49],[-226.23,-204.54],[-223.19,-198.48],[-218.31,-187.51],[-211.85,-173.09],[-200.33,-154.38],[-190.5,-135.91],[-186.32,-124.74],[-182.38,-114.46],[-175.57,-100.03],[-169.62,-96.14],[-164.02,-107.71],[-158.21,-122.18],[-147.98,-156.32],[-146.13,-186.39],[-155.61,-214.73],[-168.05,-240.41],[-178.12,-266.16],[-184.16,-282.35],[-188.27,-286.93],[-194.37,-298.88],[-202.64,-312.3],[-211.07,-330.63],[-223.3,-356.27]],"v":[[-240,-380],[-247.78,-356.57],[-252,-327],[-252.45,-312.64],[-253,-298],[-253.99,-282.62],[-254,-268],[-248.25,-244.11],[-237,-222],[-234.31,-218.25],[-232,-215],[-230.35,-212.25],[-229,-210],[-226.84,-205.84],[-225,-202],[-219.93,-191.19],[-215,-180],[-204.25,-160.75],[-192,-139],[-187.74,-128.59],[-183,-116],[-177.95,-104.7],[-171,-96],[-165.81,-103.77],[-162,-113],[-151.06,-144.93],[-146,-177],[-152.13,-205.38],[-164,-232],[-175,-257],[-184,-282],[-186,-283],[-192,-295],[-199,-306],[-208,-324],[-217,-343]],"c":true}],"h":1},{"t":103,"s":[{"i":[[-235.88,-377.87],[-245.7,-365.37],[-251.43,-336.87],[-252.33,-316.15],[-252.65,-301.05],[-253.83,-285.74],[-254.44,-270.68],[-249.05,-245.28],[-234.13,-219.13],[-227.41,-207.27],[-224.13,-200.39],[-221.23,-194],[-218.88,-188.05],[-217.08,-184.37],[-215.43,-182.02],[-214.3,-178.69],[-213.48,-174.97],[-211.22,-171],[-207.86,-166.4],[-199.66,-152.7],[-185.78,-124.27],[-175.12,-95.58],[-168.53,-100.14],[-157.37,-125.07],[-147.84,-158.04],[-160.12,-220.79],[-174.41,-256.72],[-179.26,-272.24],[-190.8,-291.49],[-199.06,-307.02],[-200.3,-308.82],[-207.5,-320.58],[-212.93,-335.51],[-221.66,-352.8],[-225.76,-358.59],[-229.01,-365.97]],"o":[[-242.98,-373.43],[-249.92,-347.09],[-252.25,-321.12],[-252.52,-306.11],[-253.36,-290.9],[-254.37,-275.63],[-252.99,-255.22],[-239.62,-227.24],[-228.6,-209.58],[-225.18,-202.68],[-222.04,-195.97],[-219.65,-190.03],[-217.62,-185.11],[-215.99,-182.83],[-214.56,-179.95],[-213.76,-176.2],[-212.29,-172.56],[-209.01,-167.92],[-202.92,-158.42],[-191.18,-137.17],[-179.58,-109.05],[-169.43,-96.16],[-160.81,-114.56],[-151.54,-145.71],[-143.63,-198.1],[-172.27,-249.82],[-178.32,-267.7],[-184.71,-284.01],[-197.43,-302.34],[-200.82,-308.85],[-204.1,-315.22],[-212.17,-330.71],[-217.73,-345.94],[-224.16,-358.35],[-227.41,-361.4],[-233.84,-371]],"v":[[-240,-380],[-247.81,-356.23],[-252,-326],[-252.43,-311.13],[-253,-296],[-254.1,-280.69],[-254,-266],[-244.33,-236.26],[-230,-212],[-226.3,-204.98],[-223,-198],[-220.44,-192.01],[-218,-186],[-216.53,-183.6],[-215,-181],[-214.03,-177.44],[-213,-174],[-210.12,-169.46],[-207,-165],[-196,-146],[-182,-115],[-171,-96],[-167,-103],[-154,-137],[-147,-166],[-169,-242],[-177,-264],[-181,-276],[-196,-300],[-200,-308],[-201,-310],[-210,-326],[-215,-340],[-224,-358],[-226,-359],[-230,-367]],"c":true}],"h":1},{"t":104,"s":[{"i":[[-238.34,-378.97],[-243.52,-372.58],[-246.89,-358.43],[-250.69,-334.96],[-252.31,-305.9],[-253.84,-285.63],[-254.45,-270.79],[-249.02,-245.35],[-234.08,-219.33],[-225.2,-202.99],[-218.58,-188.89],[-216.29,-182.91],[-215.44,-179.97],[-208.18,-166.67],[-195.98,-147.66],[-189.25,-132.48],[-184.78,-120.5],[-180.52,-109.82],[-172.89,-95.83],[-170,-96.96],[-166.87,-101.39],[-161.97,-111.52],[-157.16,-125.22],[-142.68,-179.6],[-165.47,-231.33],[-176.87,-264.09],[-189.25,-289.53],[-195.13,-299.49],[-198.13,-304.49],[-201.13,-309.49],[-202.38,-312.86],[-218.61,-347.24],[-226.36,-362.01],[-230.11,-365.61],[-231.55,-369.23],[-234.04,-373.6]],"o":[[-242.08,-376.62],[-245.93,-363.49],[-249.79,-344.26],[-251.95,-315.78],[-253.37,-290.73],[-254.39,-275.66],[-252.98,-255.18],[-239.57,-227.42],[-227.66,-207.8],[-220.66,-193.53],[-216.56,-183.93],[-215.73,-180.93],[-211.94,-172.33],[-200.2,-154.33],[-190.61,-135.98],[-186.33,-124.74],[-182.57,-114.91],[-175.68,-100.28],[-170.82,-96.02],[-168.03,-99.65],[-163.89,-106.91],[-158.61,-120.67],[-148.37,-153.86],[-155.36,-216.78],[-175.11,-255.93],[-183.44,-280.69],[-194.27,-298.19],[-197.27,-303.19],[-200.27,-308.19],[-202.58,-312.01],[-210.84,-328.5],[-226.54,-360.93],[-227.93,-364.44],[-231.58,-367.9],[-233.14,-371.98],[-236.39,-377.04]],"v":[[-240,-380],[-244.73,-368.04],[-248,-353],[-251.32,-325.37],[-253,-296],[-254.11,-280.64],[-254,-266],[-244.3,-236.38],[-230,-212],[-222.93,-198.26],[-217,-185],[-216.01,-181.92],[-215,-179],[-204.19,-160.5],[-192,-139],[-187.79,-128.61],[-183,-116],[-178.1,-105.05],[-171,-96],[-169.02,-98.3],[-166,-103],[-160.29,-116.1],[-156,-129],[-151,-204],[-172,-248],[-180,-272],[-193,-296],[-196,-301],[-199,-306],[-202,-311],[-203,-314],[-226,-360],[-227,-363],[-231,-367],[-232,-370],[-235,-375]],"c":true}],"h":1},{"t":105,"s":[{"i":[[-238.34,-378.97],[-242.47,-375.91],[-244.12,-368.19],[-246.32,-361.15],[-248.61,-355.01],[-251.41,-334.42],[-252.38,-304.63],[-253.83,-284.69],[-254.49,-269.79],[-247.44,-240.83],[-228.56,-210.57],[-220.91,-193.49],[-216.77,-181.73],[-211.43,-171.5],[-205.07,-162.24],[-197.25,-149.47],[-189.04,-133.11],[-184.13,-120.01],[-180.36,-109.52],[-173.67,-96.89],[-168.69,-98.06],[-161.97,-111.52],[-157.03,-125.55],[-151.77,-143.48],[-147.4,-163.43],[-156.2,-215.31],[-173.88,-254.09],[-181.24,-276.44],[-185.5,-284.89],[-187.76,-286.59],[-188.52,-289.17],[-192.23,-295.13],[-205.79,-316.89],[-211.08,-330.96],[-216.31,-340.4],[-229.11,-366.39]],"o":[[-241.66,-378.06],[-243.7,-370.97],[-245.51,-363.14],[-247.87,-357.08],[-250.72,-344.11],[-252.24,-314.68],[-253.33,-289.8],[-254.41,-274.69],[-252.66,-252.05],[-235.39,-220.09],[-222.27,-197.38],[-218.16,-185.67],[-213.4,-174.63],[-207.27,-165.3],[-200.23,-154.67],[-191.65,-138.69],[-185.2,-123.49],[-181.71,-113.02],[-175.32,-99.86],[-170.36,-95.99],[-163.95,-106.75],[-158.51,-120.93],[-153.82,-136.27],[-148.56,-157.06],[-144.76,-200.33],[-170.7,-245.78],[-179.38,-269.8],[-184.69,-283.39],[-186.16,-286.35],[-188.59,-288.01],[-190.69,-292.93],[-199.65,-307.17],[-210.91,-327.98],[-213.7,-336.8],[-223.12,-354.92],[-236.39,-377.04]],"v":[[-240,-380],[-243.08,-373.44],[-245,-365],[-247.09,-359.12],[-249,-353],[-251.83,-324.55],[-253,-295],[-254.12,-279.69],[-254,-265],[-241.41,-230.46],[-224,-201],[-219.54,-189.58],[-215,-178],[-209.35,-168.4],[-203,-159],[-194.45,-144.08],[-187,-128],[-182.92,-116.51],[-178,-105],[-172.01,-96.44],[-166,-103],[-160.24,-116.23],[-156,-129],[-150.16,-150.27],[-147,-169],[-167,-238],[-177,-263],[-184,-282],[-186,-286],[-188,-287],[-189,-290],[-194,-298],[-210,-326],[-212,-333],[-218,-344],[-235,-375]],"c":true}],"h":1},{"t":106,"s":[{"i":[[-238.34,-378.97],[-243.72,-372.1],[-247,-357.47],[-248.79,-347.67],[-249.78,-341.24],[-250.41,-334.17],[-250.84,-326.68],[-252.82,-304.14],[-254.97,-274.42],[-249.98,-247.96],[-238.29,-226.74],[-234.22,-219.26],[-233.41,-216.72],[-231.31,-215.41],[-230.33,-212.62],[-222.93,-197.16],[-213.77,-175.26],[-202.95,-158.84],[-191.83,-140.62],[-186.24,-123.68],[-183.81,-116.63],[-177.33,-101.82],[-175.31,-99.42],[-169.14,-97.24],[-158.26,-122.53],[-147.81,-158.74],[-156.27,-216.26],[-173.96,-253.95],[-181.28,-276.53],[-185.5,-284.89],[-187.77,-286.58],[-190.81,-293.17],[-205.43,-316.1],[-211.12,-331.08],[-216.17,-340.08],[-229.22,-366.55]],"o":[[-242.22,-376.36],[-246.11,-362.65],[-248.4,-349.8],[-249.48,-343.39],[-250.24,-336.58],[-250.71,-329.22],[-251.58,-314.17],[-254.51,-284.26],[-253.08,-256.09],[-242.58,-233.29],[-234.51,-220.15],[-233.67,-217.55],[-232.78,-215.61],[-230.48,-214.3],[-225.52,-203.56],[-216.45,-182.07],[-207.06,-164.11],[-196.02,-146.85],[-187.61,-130.74],[-180.62,-111.49],[-176.58,-103.23],[-176.91,-100.77],[-170.8,-93.23],[-161.61,-111.04],[-151.55,-144.68],[-144.83,-200.34],[-170.97,-246.05],[-179.27,-269.75],[-184.69,-283.39],[-186.16,-286.35],[-189.76,-290.16],[-198.28,-304.69],[-210.9,-327.96],[-213.75,-336.83],[-223.01,-354.76],[-236.39,-377.04]],"v":[[-240,-380],[-244.91,-367.37],[-248,-352],[-249.13,-345.53],[-250,-339],[-250.56,-331.7],[-251,-324],[-253.66,-294.2],[-254,-265],[-246.28,-240.62],[-235,-221],[-233.94,-218.4],[-233,-216],[-231,-215],[-230,-212],[-219,-188],[-210,-169],[-199,-152],[-189,-134],[-185,-121],[-177,-104],[-177,-101],[-175,-99],[-166,-103],[-156,-130],[-147,-170],[-167,-238],[-177,-263],[-184,-282],[-186,-286],[-188,-287],[-192,-295],[-210,-326],[-212,-333],[-218,-344],[-235,-375]],"c":true}],"h":1},{"t":107,"s":[{"i":[[-235.39,-377.03],[-243.57,-372.58],[-246.93,-357.86],[-251.36,-333.87],[-251.69,-313.81],[-255.76,-277.91],[-252.45,-261.01],[-251.65,-253],[-247.41,-244.97],[-246.34,-239.84],[-244.38,-237.73],[-240.65,-229.88],[-229.35,-211.24],[-220.14,-189.64],[-213.73,-176.14],[-209.97,-170.52],[-207.84,-165.25],[-205.37,-163.39],[-204.67,-160.97],[-199.74,-154.99],[-198.4,-151.68],[-190.47,-136.17],[-186.19,-126.51],[-185.61,-121.71],[-182.68,-116.7],[-176,-95.5],[-167.69,-99.99],[-158.27,-122.29],[-147.85,-159.13],[-163.01,-225.6],[-180.69,-274.59],[-198.23,-304.59],[-209.42,-325.46],[-214.84,-336.39],[-217.68,-345.27],[-224.95,-357.97]],"o":[[-242.1,-376.65],[-245.98,-363.18],[-249.63,-343.09],[-252.33,-318.99],[-252.88,-295.48],[-253.77,-263.31],[-251.28,-255.82],[-250.05,-248.09],[-245.61,-241.18],[-245.82,-238.55],[-242.32,-233.77],[-234.63,-219.37],[-222.49,-196.4],[-215.41,-179.65],[-211.2,-171.55],[-208.13,-167.63],[-206.72,-163.59],[-204.24,-162.19],[-202.65,-158.05],[-198.44,-153.25],[-193.67,-143.69],[-187.89,-127.63],[-185.33,-124.19],[-184.29,-118.02],[-180.51,-111.27],[-170.49,-96.05],[-161.53,-110.97],[-151.55,-145.11],[-144.39,-207.45],[-178,-262.21],[-191.31,-295.4],[-206.84,-320.12],[-213.16,-333.48],[-217.33,-341.97],[-221.45,-353.07],[-231.97,-369.56]],"v":[[-240,-380],[-244.77,-367.88],[-248,-352],[-252,-324],[-252,-309],[-254,-265],[-252,-259],[-251,-251],[-246,-242],[-246,-239],[-244,-237],[-239,-227],[-226,-204],[-217,-183],[-212,-173],[-209,-169],[-207,-164],[-205,-163],[-204,-160],[-199,-154],[-198,-151],[-188,-128],[-186,-126],[-185,-120],[-182,-115],[-171,-96],[-166,-103],[-156,-130],[-147,-171],[-173,-250],[-186,-285],[-204,-315],[-212,-331],[-216,-339],[-219,-348],[-228,-363]],"c":true}],"h":1},{"t":108,"s":[{"i":[[-230.3,-370.33],[-243.23,-372.98],[-247.02,-359.9],[-250.52,-338.35],[-252.3,-312.35],[-253.89,-294.99],[-255.04,-281.97],[-253.44,-261.68],[-246.06,-241.94],[-235.36,-222.2],[-225.3,-202.61],[-222.5,-194.44],[-221.1,-193.25],[-219.02,-187.51],[-216.32,-179.51],[-212.44,-172.89],[-207.96,-167.26],[-206.59,-165.05],[-206.34,-163.46],[-204.7,-161.63],[-202.48,-159.74],[-200.76,-155.38],[-198.02,-150.89],[-189.85,-135.38],[-184.58,-119.97],[-175.2,-95.56],[-167.42,-100.47],[-163.03,-109.5],[-147.96,-156.87],[-165.85,-229.44],[-182.04,-278.71],[-191.93,-294.55],[-197.74,-306.23],[-201.49,-311.12],[-205.64,-317.44],[-212.42,-332.4]],"o":[[-241.72,-376.78],[-245.88,-364.53],[-249.62,-346.92],[-251.86,-321.06],[-253.37,-299.51],[-254.73,-286.22],[-254.91,-269.21],[-249.02,-248.04],[-239.21,-228.65],[-228.4,-209.18],[-222.94,-194.82],[-221.58,-193.66],[-219.86,-190.25],[-217.25,-182.14],[-213.96,-175.01],[-209.44,-169.01],[-206.67,-165.57],[-206.42,-164],[-205.46,-162.26],[-203.21,-160.37],[-201.09,-157.59],[-199.02,-152.24],[-193.1,-141.78],[-185.54,-124.22],[-182.12,-113.79],[-170.4,-96.06],[-164.28,-106.07],[-154.8,-129.52],[-144.8,-209.95],[-178.93,-267.42],[-188.79,-291.35],[-196.32,-301.86],[-200.4,-310.67],[-203.76,-315.04],[-210.09,-325.84],[-221.65,-352.4]],"v":[[-240,-380],[-244.56,-368.75],[-248,-355],[-251.19,-329.7],[-253,-304],[-254.31,-290.6],[-255,-278],[-251.23,-254.86],[-243,-236],[-231.88,-215.69],[-223,-195],[-222.04,-194.05],[-221,-193],[-218.14,-184.82],[-215,-177],[-210.94,-170.95],[-207,-166],[-206.51,-164.53],[-206,-163],[-203.95,-161],[-202,-159],[-200,-154],[-197,-149],[-187,-128],[-183,-116],[-171,-96],[-166,-103],[-162,-112],[-147,-173],[-175,-256],[-187,-288],[-194,-298],[-200,-310],[-202,-312],[-207,-320],[-215,-338]],"c":true}],"h":1},{"t":109,"s":[{"i":[[-233.61,-375.13],[-243.24,-372.94],[-247.06,-359.76],[-249.38,-346.63],[-250.62,-333.55],[-252.88,-310.98],[-255.3,-284.07],[-250.88,-251.55],[-235.77,-223.28],[-223.96,-198.58],[-213.87,-175.16],[-209.1,-167.73],[-207.51,-165.75],[-201.89,-157.5],[-194.78,-145.92],[-192.25,-139.99],[-191.44,-137.04],[-189.29,-132.45],[-186.43,-127.15],[-185.51,-123.9],[-185.3,-120.84],[-183.78,-117.41],[-182.09,-115.23],[-179.68,-107.82],[-173.64,-95.72],[-169.82,-97.09],[-166.77,-101.62],[-159.03,-118.34],[-155.39,-129.58],[-152.39,-145.48],[-147.33,-168.23],[-152.84,-212.49],[-165.02,-233.21],[-178.67,-270.5],[-195.61,-301.87],[-216.29,-339.98]],"o":[[-241.72,-376.81],[-245.91,-364.41],[-248.82,-350.85],[-250.28,-337.98],[-251.73,-320.19],[-254.66,-292.92],[-254.5,-262.41],[-241.52,-231.99],[-227.28,-206.75],[-217.25,-182.78],[-209.59,-168.35],[-208.05,-166.43],[-204.5,-161.29],[-197.03,-149.82],[-192.53,-140.97],[-191.7,-138.03],[-190.32,-134.38],[-187.34,-128.84],[-185.61,-124.98],[-185.35,-121.83],[-184.48,-118.55],[-182.58,-115.76],[-181.11,-112.71],[-175.94,-99.33],[-170.68,-96.03],[-167.87,-99.88],[-161.81,-110.48],[-156.56,-127.66],[-153.13,-137.79],[-149.08,-160.99],[-145.71,-196.66],[-162,-229.78],[-174.77,-251.84],[-190.83,-294.59],[-209.31,-324.13],[-228.54,-363.84]],"v":[[-240,-380],[-244.58,-368.68],[-248,-355],[-249.83,-342.3],[-251,-329],[-253.77,-301.95],[-255,-276],[-246.2,-241.77],[-231,-214],[-220.61,-190.68],[-210,-169],[-208.57,-167.08],[-207,-165],[-199.46,-153.66],[-193,-142],[-191.98,-139.01],[-191,-136],[-188.31,-130.65],[-186,-126],[-185.43,-122.86],[-185,-120],[-183.18,-116.58],[-182,-115],[-177.81,-103.57],[-171,-96],[-168.84,-98.49],[-166,-103],[-157,-126],[-155,-131],[-151,-152],[-147,-174],[-160,-226],[-167,-237],[-187,-287],[-200,-309],[-224,-355]],"c":true}],"h":1},{"t":110,"s":[{"i":[[-236.31,-377.99],[-243.37,-372.74],[-247.04,-359.02],[-250.46,-336.61],[-252.21,-309.64],[-254.12,-291.44],[-255.35,-277.56],[-254.11,-265.84],[-251.78,-256.29],[-247.43,-244.58],[-241.14,-231.81],[-237.01,-224.92],[-233.78,-220.46],[-226.27,-204.15],[-218.21,-182.66],[-211.08,-171.08],[-204.15,-162.32],[-193.31,-143.63],[-189.19,-134.52],[-185.49,-122.46],[-175.29,-95.58],[-167.96,-100.41],[-161.49,-113.12],[-156.36,-127.02],[-144.49,-179.46],[-151.83,-206.47],[-159.34,-223.63],[-172.08,-247.63],[-180.03,-270.55],[-186.36,-284.73],[-191.07,-295.78],[-194.68,-299.57],[-195.55,-302.29],[-202.36,-312.3],[-211.73,-330.96],[-225.71,-359.42]],"o":[[-241.85,-376.73],[-245.97,-363.89],[-249.61,-345.54],[-251.76,-318.66],[-253.44,-296.15],[-255.07,-282.14],[-254.73,-269.44],[-252.64,-259.26],[-249.36,-249.18],[-243.32,-235.9],[-238.12,-226.43],[-234.84,-221.93],[-229.16,-211.82],[-220.79,-189.57],[-213.25,-173.93],[-206.52,-165.28],[-197.49,-152.04],[-190.89,-135.63],[-186.62,-127.41],[-181.93,-113.22],[-169.3,-96.17],[-163.63,-108.35],[-158.04,-122.08],[-147.34,-160],[-150.09,-204.38],[-155.71,-218.51],[-168.57,-240.55],[-177.9,-262.32],[-184.39,-281.48],[-189.93,-291.84],[-193.24,-299.41],[-195.59,-300.78],[-199.3,-308.18],[-208.87,-323.88],[-220,-348.75],[-234.13,-373.07]],"v":[[-240,-380],[-244.67,-368.31],[-248,-354],[-251.11,-327.63],[-253,-301],[-254.6,-286.79],[-255,-273],[-253.38,-262.55],[-251,-254],[-245.37,-240.24],[-239,-228],[-235.93,-223.42],[-233,-219],[-223.53,-196.86],[-215,-177],[-208.8,-168.18],[-202,-159],[-191,-136],[-189,-134],[-183,-116],[-171,-96],[-166,-104],[-160,-117],[-155,-132],[-150,-204],[-152,-207],[-165,-234],[-175,-255],[-183,-278],[-188,-288],[-193,-299],[-195,-300],[-196,-303],[-205,-317],[-215,-338],[-231,-368]],"c":true}],"h":1},{"t":111,"s":[{"i":[[-228.97,-369.31],[-243.38,-372.72],[-247.05,-359.01],[-249.34,-345.63],[-250.62,-332.48],[-253.17,-309.21],[-255.73,-281.79],[-252.44,-258.22],[-244.63,-238.93],[-239.18,-228.89],[-234.98,-221.69],[-229.32,-211.04],[-223.64,-197.2],[-219.28,-186.56],[-214.68,-177.83],[-208.18,-167.57],[-200.99,-157.47],[-194.64,-145.69],[-188.23,-130.18],[-182.32,-113.34],[-173.7,-95.74],[-167.26,-99.84],[-161.44,-111.91],[-158.31,-120.92],[-155.78,-131.95],[-150.71,-151.75],[-146.84,-174.74],[-149.55,-201.15],[-160.67,-227.33],[-169.36,-242.72],[-175.42,-254.82],[-179.79,-267.69],[-183.89,-281.43],[-189.89,-293.48],[-196.82,-304.45],[-208.16,-323.06]],"o":[[-241.85,-376.71],[-245.97,-363.87],[-248.78,-349.89],[-250.26,-336.93],[-251.81,-318.56],[-255.14,-290.82],[-254.38,-265.5],[-247.56,-244.93],[-240.69,-231.55],[-236.33,-223.97],[-231.5,-215.69],[-225.4,-201.79],[-220.69,-189.64],[-216.27,-180.66],[-210.68,-171.09],[-203.33,-160.77],[-196.77,-150.1],[-190.37,-135.73],[-184.72,-120.46],[-176.81,-100.97],[-169.54,-96.14],[-163.21,-107.73],[-159.42,-116.95],[-156.49,-128.43],[-152.79,-143.63],[-147.74,-167.3],[-147.22,-191.73],[-156.28,-218.94],[-167.15,-238.81],[-173.49,-250.72],[-178.6,-263.22],[-182.44,-276.79],[-187.73,-289.75],[-194.44,-300.82],[-203.73,-315.72],[-219.86,-347.23]],"v":[[-240,-380],[-244.67,-368.29],[-248,-354],[-249.8,-341.28],[-251,-328],[-254.15,-300.01],[-255,-273],[-250,-251.58],[-242,-234],[-237.75,-226.43],[-234,-220],[-227.36,-206.41],[-222,-193],[-217.78,-183.61],[-213,-175],[-205.75,-164.17],[-199,-154],[-192.5,-140.71],[-186,-124],[-179.56,-107.15],[-171,-96],[-165.24,-103.78],[-161,-113],[-157.4,-124.67],[-155,-135],[-149.23,-159.53],[-147,-182],[-152.92,-210.04],[-165,-235],[-171.42,-246.72],[-177,-259],[-181.12,-272.24],[-186,-286],[-192.16,-297.15],[-199,-308],[-212,-331]],"c":true}],"h":1},{"t":112,"s":[{"i":[[-228.78,-369.44],[-243.4,-372.61],[-247.1,-358.9],[-249.31,-345.51],[-250.58,-332.43],[-253.26,-308.66],[-255.7,-281.35],[-250.83,-252.23],[-237.58,-227.08],[-228.51,-208.43],[-222.8,-194.32],[-219.34,-185.85],[-216.63,-179.66],[-215.51,-178.37],[-215.35,-177.59],[-211.1,-171.37],[-205.15,-163.55],[-203.49,-160.68],[-202.12,-160.19],[-201.32,-158.74],[-200.31,-156.52],[-195.51,-146.47],[-189.94,-136.56],[-186.05,-124.75],[-184.71,-118.81],[-180.94,-112.2],[-179.42,-107.01],[-177.69,-103.18],[-170.08,-96.39],[-157.29,-124.79],[-146.85,-167.18],[-152.37,-212.3],[-166.96,-238.01],[-177.65,-262.66],[-192.02,-296.73],[-208.04,-323.18]],"o":[[-241.85,-376.66],[-246.03,-363.73],[-248.77,-349.79],[-250.22,-336.83],[-251.92,-318.24],[-255.15,-290.22],[-254.04,-261.44],[-242.6,-235.05],[-230.61,-213.27],[-224.61,-198.96],[-220.28,-188.27],[-217.52,-181.54],[-215.59,-178.57],[-215.39,-177.87],[-213.27,-174.09],[-207.04,-166.1],[-203.92,-160.83],[-202.58,-160.36],[-201.66,-159.48],[-200.64,-157.26],[-197.34,-151.47],[-191.95,-138.72],[-187.4,-129.66],[-184.36,-120.31],[-183.04,-114.54],[-179.39,-108.58],[-178.4,-104.55],[-171.3,-92.19],[-161.21,-112.92],[-150.73,-151.17],[-147.17,-196.7],[-162.2,-230.99],[-175.25,-254.4],[-185.96,-285.82],[-203.75,-315.68],[-220.14,-347.07]],"v":[[-240,-380],[-244.71,-368.17],[-248,-354],[-249.76,-341.17],[-251,-328],[-254.21,-299.44],[-255,-273],[-246.72,-243.64],[-233,-218],[-226.56,-203.69],[-221,-190],[-218.43,-183.69],[-216,-179],[-215.45,-178.12],[-215,-177],[-209.07,-168.73],[-204,-161],[-203.04,-160.52],[-202,-160],[-200.98,-158],[-200,-156],[-193,-141],[-189,-134],[-185,-122],[-184,-117],[-180,-110],[-179,-106],[-177,-102],[-166,-104],[-155,-134],[-147,-181],[-158,-223],[-171,-246],[-181,-272],[-199,-308],[-212,-331]],"c":true}],"h":1},{"t":113,"s":[{"i":[[-237.43,-380],[-241.18,-378.37],[-241.7,-376.89],[-245.93,-362.05],[-250.04,-336.41],[-253.36,-308.13],[-255.81,-280.62],[-249.42,-250.4],[-232.76,-217.82],[-225.41,-201.46],[-222.78,-193.85],[-216.89,-181.27],[-214.64,-175.99],[-211.02,-172.48],[-209.63,-168.82],[-205.83,-165.08],[-204.67,-161.97],[-201.11,-158.72],[-199.44,-154.77],[-194.33,-145.72],[-186.52,-126.05],[-176.94,-95.43],[-162.13,-110.17],[-156.84,-126.61],[-144,-187.77],[-159.79,-225.95],[-173.64,-250.19],[-177.81,-259.48],[-180.87,-272.1],[-196.79,-304.28],[-207.81,-322.85],[-216.94,-341.49],[-223.11,-355.55],[-226.7,-359.6],[-227.6,-362.32],[-230.07,-366.47]],"o":[[-240.84,-378.67],[-241.62,-377.48],[-244.16,-369.6],[-248.87,-345.46],[-251.96,-317.57],[-255.29,-289.66],[-254.04,-261.73],[-238.78,-228.44],[-226.96,-204.22],[-223.19,-196.02],[-219.77,-186.72],[-214.46,-177.07],[-213.11,-173.62],[-209.34,-170.04],[-207.76,-166.37],[-204.33,-163.12],[-203.03,-159.59],[-199.42,-156.1],[-196.48,-149.65],[-189.36,-133.54],[-181.46,-113.03],[-168.02,-96.28],[-157.84,-120.91],[-148.23,-161.21],[-156.67,-220.48],[-169.32,-242.49],[-176.11,-258.37],[-180.19,-266.07],[-187.93,-291.63],[-205.32,-319.01],[-213.85,-334.31],[-221.85,-351.95],[-225.21,-359.38],[-227.56,-360.75],[-228.91,-364.53],[-233.43,-372]],"v":[[-240,-379],[-241.4,-377.92],[-242,-376],[-247.4,-353.75],[-251,-327],[-254.33,-298.89],[-255,-272],[-244.1,-239.42],[-229,-209],[-224,-198],[-222,-192],[-215,-178],[-214,-175],[-210,-171],[-209,-168],[-205,-164],[-204,-161],[-200,-157],[-199,-154],[-192,-140],[-183,-117],[-171,-96],[-161,-113],[-155,-134],[-153,-211],[-165,-235],[-176,-258],[-178,-260],[-183,-278],[-203,-315],[-210,-327],[-220,-348],[-225,-359],[-227,-360],[-228,-363],[-231,-368]],"c":true}],"h":1},{"t":114,"s":[{"i":[[-236.23,-379.01],[-242.24,-375.98],[-244.27,-368.8],[-247.68,-353.76],[-250.25,-333.96],[-253.46,-308.54],[-255.93,-281.05],[-249.26,-250.59],[-232.6,-217.96],[-224.48,-197.84],[-217.31,-181.98],[-214.64,-177.03],[-214.32,-175.5],[-212.78,-173.62],[-210.46,-171.64],[-207.08,-166.82],[-203.02,-160.64],[-200.9,-157.19],[-199.42,-154.68],[-198.4,-153.37],[-197.18,-152.35],[-192.74,-142.36],[-187.7,-126.73],[-183.65,-118.7],[-176.47,-95.48],[-163.06,-108.57],[-157.52,-123.34],[-148.8,-158.78],[-152.25,-212.13],[-172.49,-246.72],[-184.52,-281.79],[-197.05,-305.69],[-209.18,-326.56],[-218.7,-344.09],[-225.22,-359.23],[-231.71,-367.96]],"o":[[-241.36,-378.08],[-243.7,-371.34],[-246.56,-360.03],[-249.53,-340.72],[-251.99,-317.77],[-255.43,-290.18],[-253.95,-261.86],[-238.58,-228.64],[-226.83,-203.6],[-219.72,-187.03],[-214.73,-177.53],[-214.43,-176.01],[-213.55,-174.3],[-211.23,-172.29],[-208.57,-169],[-204.3,-162.64],[-201.44,-158.1],[-199.89,-155.48],[-198.81,-153.7],[-197.59,-152.7],[-194.64,-147.5],[-189.27,-131.98],[-185.47,-120.52],[-181.38,-112.78],[-167.85,-96.3],[-159.27,-117.25],[-152.32,-142.72],[-146.29,-193.91],[-165.04,-236.52],[-182.16,-270.89],[-192.78,-298.77],[-205.35,-318.95],[-215.68,-339.23],[-223.31,-353.93],[-229.17,-366],[-235.48,-373.94]],"v":[[-240,-380],[-242.97,-373.66],[-245,-366],[-248.61,-347.24],[-251,-327],[-254.44,-299.36],[-255,-272],[-243.92,-239.62],[-229,-209],[-222.1,-192.44],[-215,-178],[-214.54,-176.52],[-214,-175],[-212,-172.95],[-210,-171],[-205.69,-164.73],[-202,-159],[-200.4,-156.34],[-199,-154],[-198,-153.03],[-197,-152],[-191,-137.17],[-186,-122],[-183,-117],[-171,-96],[-162,-111],[-156,-129],[-148,-170],[-159,-225],[-177,-258],[-189,-291],[-201,-312],[-213,-334],[-221,-349],[-228,-364],[-233,-370]],"c":true}],"h":1},{"t":115,"s":[{"i":[[-233.39,-373.87],[-242.21,-376.06],[-244.27,-368.8],[-247.71,-353.63],[-250.27,-333.78],[-253.48,-308.45],[-255.95,-281.15],[-249.34,-250.88],[-232.68,-217.53],[-226.49,-202.94],[-223.23,-194.73],[-220.35,-187.86],[-218.04,-181.8],[-214.88,-176.9],[-211.13,-172.54],[-207.03,-166.81],[-203.04,-160.67],[-200.26,-156.56],[-197.65,-153.23],[-192.71,-142.34],[-187.68,-126.68],[-185.15,-120.44],[-183.33,-117.85],[-180.56,-109.51],[-173.73,-95.74],[-163.97,-106.5],[-157.49,-124.18],[-143.96,-186.65],[-154.3,-217.46],[-159.17,-224.78],[-164.04,-234.7],[-174.62,-252.13],[-178.81,-261.48],[-181.82,-273.99],[-213.41,-325.89],[-222.77,-352.52]],"o":[[-241.33,-378.16],[-243.68,-371.38],[-246.57,-359.99],[-249.56,-340.53],[-252.01,-317.62],[-255.45,-290.22],[-254,-262.36],[-238.68,-228.46],[-227.63,-205.82],[-224.29,-197.39],[-221.08,-189.95],[-218.83,-183.78],[-216.06,-178.38],[-212.41,-173.98],[-208.51,-168.97],[-204.29,-162.65],[-201.19,-157.69],[-198.49,-154.33],[-194.62,-147.5],[-189.24,-131.93],[-185.73,-121.26],[-183.94,-118.73],[-182.19,-114.89],[-176.33,-99.93],[-168.52,-96.24],[-158.99,-117.89],[-148.97,-157.49],[-153.78,-214.18],[-156.34,-221.97],[-162.9,-231.33],[-170.12,-244.93],[-177.11,-260.37],[-181.22,-268.14],[-193.24,-305.54],[-221.11,-351.36],[-227.51,-362.53]],"v":[[-240,-380],[-242.95,-373.72],[-245,-366],[-248.63,-347.08],[-251,-327],[-254.46,-299.33],[-255,-272],[-244.01,-239.67],[-229,-209],[-225.39,-200.17],[-222,-192],[-219.59,-185.82],[-217,-180],[-213.64,-175.44],[-210,-171],[-205.66,-164.73],[-202,-159],[-199.38,-155.44],[-197,-152],[-190.98,-137.14],[-186,-122],[-184.54,-119.58],[-183,-117],[-178.44,-104.72],[-171,-96],[-162,-111],[-156,-130],[-153,-212],[-155,-219],[-161,-228],[-166,-238],[-177,-260],[-179,-262],[-184,-280],[-221,-351],[-223,-353]],"c":true}],"h":1},{"t":116,"s":[{"i":[[-235.51,-377.72],[-242.21,-376.06],[-244.27,-368.8],[-247.68,-353.57],[-250.19,-333.82],[-253.59,-308.56],[-255.97,-281.12],[-253.64,-264.51],[-250.1,-254.81],[-244.78,-242.1],[-238.04,-228.29],[-229.94,-209.87],[-221.26,-188.64],[-216.22,-179.98],[-213.78,-176.14],[-205.61,-164.85],[-196.02,-150.19],[-189.56,-133.52],[-183.76,-116.02],[-179.19,-105.69],[-172.83,-95.82],[-168.19,-98.54],[-163.16,-108.36],[-157.54,-124],[-146.05,-167.6],[-154.98,-217.96],[-173.34,-248.37],[-181.06,-271.42],[-190.89,-296.3],[-197.49,-307.47],[-200.96,-311.31],[-201.76,-314.48],[-203.76,-315.59],[-205.16,-318.56],[-216.27,-339.44],[-226.48,-362.37]],"o":[[-241.33,-378.16],[-243.68,-371.38],[-246.59,-359.91],[-249.48,-340.53],[-252.1,-317.75],[-255.52,-290.25],[-254.58,-268.1],[-251.4,-257.86],[-247.01,-246.95],[-240.3,-232.77],[-232.81,-217.31],[-224.17,-195.54],[-217.08,-181.41],[-214.57,-177.35],[-209.1,-169.26],[-199.07,-155.32],[-191.43,-139.26],[-185.73,-121.9],[-181.03,-109.78],[-175.09,-98.71],[-169.86,-96.11],[-164.84,-104.66],[-159.07,-117.65],[-150.57,-151.18],[-149.2,-205.41],[-166.13,-238.05],[-180.26,-265.66],[-185.98,-285.56],[-196.1,-304.79],[-199.63,-309.7],[-202.3,-313.48],[-202.16,-315.35],[-204.87,-317.51],[-211.64,-329.61],[-223.25,-353.55],[-232.98,-369.16]],"v":[[-240,-380],[-242.95,-373.72],[-245,-366],[-248.58,-347.05],[-251,-327],[-254.56,-299.4],[-255,-272],[-252.52,-261.18],[-249,-252],[-242.54,-237.43],[-236,-224],[-227.06,-202.71],[-218,-183],[-215.39,-178.67],[-213,-175],[-202.34,-160.09],[-193,-143],[-187.64,-127.71],[-182,-112],[-177.14,-102.2],[-171,-96],[-166.52,-101.6],[-162,-111],[-156,-130],[-148,-191],[-160,-227],[-178,-260],[-183,-277],[-195,-303],[-198,-308],[-202,-313],[-202,-315],[-204,-316],[-206,-320],[-221,-349],[-229,-365]],"c":true}],"h":1},{"t":117,"s":[{"i":[[-238.34,-378.97],[-242.07,-375.94],[-244.31,-368.64],[-247.64,-353.68],[-250.14,-333.86],[-253.66,-308.67],[-256.02,-281.11],[-251.83,-258.24],[-241.59,-235.27],[-232.17,-215.39],[-224.33,-196.41],[-218.4,-183.46],[-212.4,-174.26],[-206.45,-166.33],[-201.45,-159.48],[-195.19,-147.57],[-189.32,-131.4],[-183.06,-114.03],[-173.73,-95.74],[-159.28,-116.19],[-152.94,-139.98],[-147.03,-199.46],[-161,-229.08],[-165.11,-237.57],[-170.37,-244.07],[-175.77,-256.34],[-178.38,-262.66],[-179.48,-265.56],[-188.07,-289.89],[-198.69,-309.29],[-202.6,-314.33],[-207.01,-323.64],[-212.03,-330.18],[-220.13,-348.48],[-231.19,-367.66],[-234.44,-374.18]],"o":[[-241.17,-378.12],[-243.64,-371.2],[-246.57,-360],[-249.42,-340.61],[-252.15,-317.87],[-255.59,-290.29],[-254.29,-265.61],[-245.49,-243.07],[-235,-221.94],[-226.84,-202.63],[-220.2,-186.83],[-214.5,-177.17],[-208.23,-168.6],[-203.07,-161.78],[-197.29,-152.37],[-191.21,-137.09],[-185.7,-121.41],[-177.08,-101.19],[-167.85,-96.3],[-154.72,-129.77],[-147.06,-173.39],[-156.95,-223.01],[-164.82,-235.34],[-167.8,-241.9],[-174,-250.6],[-177.77,-260.68],[-179.36,-264.77],[-184.06,-278.29],[-195.48,-303.58],[-201.37,-313.6],[-205.41,-319.02],[-210.18,-329],[-217.13,-339.71],[-226.98,-361.79],[-234.63,-372.97],[-236.39,-377.04]],"v":[[-240,-380],[-242.86,-373.57],[-245,-366],[-248.53,-347.15],[-251,-327],[-254.62,-299.48],[-255,-272],[-248.66,-250.66],[-238,-228],[-229.5,-209.01],[-222,-191],[-216.45,-180.31],[-210,-171],[-204.76,-164.06],[-200,-157],[-193.2,-142.33],[-187,-125],[-180.07,-107.61],[-171,-96],[-158,-120],[-151,-151],[-154,-216],[-164,-234],[-166,-239],[-172,-247],[-177,-259],[-179,-264],[-180,-267],[-193,-299],[-201,-313],[-203,-315],[-209,-327],[-213,-332],[-224,-356],[-234,-372],[-235,-375]],"c":true}],"h":1},{"t":118,"s":[{"i":[[-227.94,-366.82],[-242.06,-375.98],[-244.32,-368.65],[-247.63,-353.56],[-250.14,-333.81],[-253.68,-307.64],[-255.93,-280.63],[-253.62,-265.58],[-249.64,-253.97],[-243.35,-239.36],[-236.02,-223.65],[-230.77,-211.57],[-226.32,-201.21],[-223.62,-194.11],[-221.82,-188.58],[-214.04,-175.94],[-202.64,-161.54],[-195.51,-148.15],[-189.39,-131.67],[-183.07,-114.17],[-173.61,-95.75],[-169.31,-97.39],[-165.71,-102.67],[-160.21,-114.45],[-154.99,-131.46],[-150.17,-154.25],[-147.44,-179.71],[-150.01,-203.35],[-156.93,-222.33],[-166.44,-238.83],[-176.38,-255.56],[-183.13,-273.71],[-187.86,-289.38],[-199.93,-311.36],[-206.49,-322.47],[-209.04,-326.3]],"o":[[-241.15,-378.15],[-243.64,-371.23],[-246.56,-359.9],[-249.42,-340.51],[-252.22,-317.32],[-255.54,-289.29],[-254.55,-269.35],[-251.16,-257.89],[-245.85,-244.78],[-238.44,-228.79],[-232.36,-215.22],[-227.75,-204.57],[-224.21,-196.07],[-222.42,-190.36],[-217.97,-181.18],[-206.38,-166.12],[-197.56,-152.82],[-191.42,-137.58],[-185.76,-121.55],[-176.99,-101.27],[-170.45,-96.05],[-166.94,-100.7],[-162.46,-108.72],[-156.47,-125.82],[-151.95,-145.4],[-147.92,-171.4],[-148.55,-196.18],[-154.2,-216.42],[-163,-233.55],[-173.13,-249.83],[-181.45,-268.02],[-186.33,-284.39],[-193.79,-302.16],[-205.1,-319.79],[-208.61,-324.68],[-219.67,-345.08]],"v":[[-240,-380],[-242.85,-373.6],[-245,-366],[-248.53,-347.04],[-251,-327],[-254.61,-298.47],[-255,-273],[-252.39,-261.74],[-248,-250],[-240.9,-234.08],[-234,-219],[-229.26,-208.07],[-225,-198],[-223.02,-192.24],[-221,-187],[-210.21,-171.03],[-200,-157],[-193.47,-142.87],[-187,-125],[-180.03,-107.72],[-171,-96],[-168.12,-99.04],[-165,-104],[-158.34,-120.14],[-154,-136],[-149.04,-162.83],[-148,-188],[-152.11,-209.88],[-160,-228],[-169.79,-244.33],[-179,-262],[-184.73,-279.05],[-190,-294],[-204,-318],[-207,-323],[-210,-328]],"c":true}],"h":1},{"t":119,"s":[{"i":[[-228.63,-368.19],[-241.9,-376.18],[-244.33,-369.51],[-247.33,-355.9],[-249.22,-338.88],[-252.59,-316.83],[-256.05,-293.24],[-254.13,-267.86],[-244.39,-241.37],[-235.37,-222],[-228.79,-206.72],[-225.23,-197.09],[-222.93,-190.87],[-220.99,-186.9],[-219.49,-183.84],[-217.83,-181.66],[-215.48,-179.7],[-214.57,-178],[-214.24,-176.38],[-213.43,-175.36],[-212.23,-174.31],[-209.64,-170.7],[-206.17,-165.63],[-201.89,-161.38],[-198.97,-155.84],[-189.79,-131.55],[-175.42,-95.58],[-168.04,-100.3],[-158.94,-115.84],[-155.87,-130.21],[-152.59,-140.71],[-147.97,-171.08],[-162.06,-229.94],[-181.9,-270.6],[-190.35,-294.03],[-207.09,-322.16]],"o":[[-240.98,-378.18],[-243.58,-371.85],[-246.47,-361.46],[-248.7,-344.61],[-251.07,-324.96],[-255.09,-300.97],[-255.93,-276.67],[-248.36,-250.21],[-237.72,-227.14],[-230.9,-211.8],[-226.02,-199.41],[-223.69,-192.82],[-221.49,-187.98],[-219.99,-184.82],[-218.59,-182.3],[-216.27,-180.35],[-214.7,-178.56],[-214.34,-176.91],[-213.82,-175.71],[-212.63,-174.66],[-210.81,-172.39],[-207.32,-167.33],[-203.95,-162.52],[-199.8,-158.15],[-191.66,-141.99],[-182.45,-113.11],[-168.83,-96.21],[-162.36,-110.6],[-155.73,-126.05],[-154.22,-137.38],[-149.93,-155.48],[-148.1,-215.6],[-178.7,-260.69],[-187.91,-288.82],[-200.04,-312.53],[-221.99,-349.51]],"v":[[-240,-380],[-242.74,-374.02],[-245,-367],[-248.01,-350.25],[-250,-333],[-253.84,-308.9],[-256,-286],[-251.24,-259.03],[-240,-232],[-233.13,-216.9],[-227,-202],[-224.46,-194.96],[-222,-189],[-220.49,-185.86],[-219,-183],[-217.05,-181],[-215,-179],[-214.45,-177.46],[-214,-176],[-213.03,-175.01],[-212,-174],[-208.48,-169.02],[-205,-164],[-201,-160],[-198,-154],[-184,-117],[-171,-96],[-166,-104],[-157,-122],[-155,-134],[-152,-144],[-148,-182],[-174,-252],[-185,-280],[-194,-301],[-213,-333]],"c":true}],"h":1},{"t":120,"s":[{"i":[[-227.96,-366.87],[-245.27,-366.33],[-248.8,-342.03],[-252.62,-316.91],[-256.11,-293.36],[-251.9,-261.01],[-236.17,-224.16],[-229.68,-207.71],[-226.34,-197.97],[-222.08,-189.32],[-217.21,-181.8],[-213.24,-176],[-209.36,-170.79],[-204.24,-163.96],[-199.26,-156.4],[-192.76,-141.95],[-186.3,-121.9],[-180.31,-107.55],[-172.75,-95.83],[-168.29,-98.61],[-163.5,-107.04],[-157.71,-119.85],[-152.99,-138.07],[-150.04,-156.54],[-147.98,-176.77],[-148.72,-194.64],[-152.39,-213.88],[-156.13,-220.25],[-158.01,-226.14],[-170.88,-245.88],[-186.62,-287.54],[-197.18,-305.9],[-202.12,-315.89],[-205.67,-319.56],[-206.6,-322.32],[-209.01,-326.28]],"o":[[-243.37,-373.57],[-247.99,-350.56],[-251.07,-324.98],[-255.15,-301.1],[-255.81,-273.93],[-242.08,-236.12],[-230.76,-210.97],[-227.47,-201.2],[-223.72,-192.17],[-218.82,-184.14],[-214.56,-177.85],[-210.64,-172.47],[-206.11,-166.51],[-200.81,-158.91],[-195.11,-148.5],[-188.36,-128.65],[-182.69,-112.63],[-175.35,-99.15],[-170.04,-96.09],[-165.02,-104.09],[-159.97,-113.81],[-154.23,-131.98],[-151.05,-149.65],[-148.5,-170.09],[-148.02,-187.7],[-150.9,-207.73],[-154.57,-219.45],[-157.83,-223.66],[-164.22,-237.81],[-183.29,-270.42],[-194.6,-303.12],[-200.92,-312.26],[-204.25,-319.41],[-206.56,-320.75],[-208.08,-324.83],[-219.65,-344.77]],"v":[[-240,-380],[-246.63,-358.45],[-250,-333],[-253.88,-309.01],[-256,-286],[-246.99,-248.57],[-232,-214],[-228.57,-204.45],[-225,-195],[-220.45,-186.73],[-216,-180],[-211.94,-174.23],[-208,-169],[-202.53,-161.44],[-198,-154],[-190.56,-135.3],[-184,-116],[-177.83,-103.35],[-171,-96],[-166.65,-101.35],[-163,-108],[-155.97,-125.91],[-152,-144],[-149.27,-163.32],[-148,-182],[-149.81,-201.18],[-154,-218],[-157,-222],[-159,-228],[-176,-256],[-193,-300],[-199,-309],[-204,-319],[-206,-320],[-207,-323],[-210,-328]],"c":true}],"h":1},{"t":121,"s":[{"i":[[-238.14,-379.48],[-244.98,-366.84],[-248.73,-342.94],[-252.68,-317.92],[-256.08,-294.38],[-254.49,-271.46],[-248.15,-251.22],[-241.24,-235.42],[-233.61,-218.88],[-230.43,-209.53],[-227.88,-203.18],[-224.84,-195.44],[-221.45,-187.46],[-213.25,-175.29],[-202.63,-162.49],[-195.34,-148.36],[-189.56,-130.93],[-182.82,-113.18],[-173.38,-95.77],[-168.73,-98.22],[-164.41,-105.3],[-160.57,-113.05],[-156.9,-124.63],[-149.59,-157.48],[-149.56,-203.42],[-161.63,-231.73],[-166.24,-239.81],[-177.45,-257.12],[-183.84,-275.54],[-191.11,-294.54],[-197.79,-308.13],[-206.38,-321.79],[-211.15,-331.12],[-213.77,-333.58],[-223.69,-355.8],[-233.84,-373.75]],"o":[[-243.11,-373.87],[-247.79,-351.37],[-251.14,-325.98],[-255.15,-302.12],[-255.92,-279.1],[-250.61,-257.52],[-243.93,-240.98],[-236.08,-224.37],[-231.24,-211.69],[-228.75,-205.27],[-225.87,-198.22],[-222.63,-190.07],[-216.93,-179.79],[-206.1,-166.64],[-197.31,-153.4],[-191.47,-137.12],[-185.63,-120.3],[-176.69,-100.92],[-170.27,-96.07],[-165.8,-102.83],[-162.11,-109.23],[-157.96,-120.75],[-152.31,-141.77],[-148.21,-188.31],[-156.86,-224.1],[-165.77,-238.2],[-172.32,-249.27],[-182.96,-270.89],[-188.28,-288.78],[-196.67,-305.2],[-202.2,-314.93],[-210.55,-328.49],[-212.16,-333.36],[-219.35,-343.75],[-231.27,-367.5],[-237.46,-377.52]],"v":[[-240,-380],[-246.38,-359.11],[-250,-334],[-253.91,-310.02],[-256,-287],[-252.55,-264.49],[-246,-246],[-238.66,-229.9],[-232,-214],[-229.59,-207.4],[-227,-201],[-223.74,-192.76],[-220,-185],[-209.67,-170.96],[-200,-158],[-193.4,-142.74],[-187,-124],[-179.76,-107.05],[-171,-96],[-167.26,-100.53],[-164,-106],[-159.26,-116.9],[-156,-128],[-148.9,-172.89],[-154,-216],[-165,-237],[-167,-241],[-181,-266],[-185,-279],[-195,-302],[-199,-310],[-209,-326],[-212,-333],[-214,-334],[-229,-364],[-236,-376]],"c":true}],"h":1},{"t":122,"s":[{"i":[[-236.49,-377.4],[-244.93,-366.85],[-248.73,-342.92],[-252.71,-317.96],[-256.14,-294.46],[-251.7,-260.35],[-235.92,-224.28],[-230.12,-209.04],[-227.86,-203.1],[-224.84,-195.42],[-221.41,-187.3],[-213.08,-175.2],[-202.57,-162.4],[-195.34,-148.36],[-189.55,-130.91],[-182.76,-113.05],[-173.36,-95.8],[-168.96,-97.69],[-165.69,-103.74],[-154.56,-130.32],[-147.83,-178.85],[-150.55,-205.05],[-155.31,-221.4],[-163.47,-236.03],[-175.95,-254.43],[-181.9,-268.45],[-184.85,-279.48],[-188.64,-290.09],[-193.42,-299.95],[-198.47,-309.14],[-204.18,-317.98],[-206.7,-322.59],[-207.5,-325.19],[-208.94,-327.3],[-210.59,-329.3],[-224.04,-355.7]],"o":[[-243.06,-373.89],[-247.76,-351.36],[-251.14,-325.98],[-255.21,-302.2],[-255.74,-273.46],[-241.79,-235.76],[-230.95,-211.24],[-228.58,-204.97],[-225.88,-198.27],[-222.6,-189.94],[-216.79,-179.75],[-205.97,-166.52],[-197.31,-153.4],[-191.46,-137.11],[-185.58,-120.15],[-176.65,-100.88],[-170.11,-96.07],[-166.75,-101.53],[-159.15,-115.65],[-148.9,-161.93],[-149.39,-199.1],[-153.51,-216.2],[-159.5,-230.32],[-171.7,-248.09],[-180.72,-264.7],[-183.96,-275.84],[-187.18,-286.61],[-191.76,-296.76],[-196.63,-306.15],[-202.24,-315.05],[-206.45,-321.74],[-207.23,-324.31],[-208.4,-326.65],[-210.04,-328.62],[-217.88,-341.89],[-232.68,-370.63]],"v":[[-240,-380],[-246.35,-359.11],[-250,-334],[-253.96,-310.08],[-256,-287],[-246.75,-248.06],[-232,-214],[-229.35,-207],[-227,-201],[-223.72,-192.68],[-220,-185],[-209.52,-170.86],[-200,-158],[-193.4,-142.74],[-187,-124],[-179.71,-106.96],[-171,-96],[-167.85,-99.61],[-165,-105],[-151.73,-146.12],[-149,-194],[-152.03,-210.63],[-157,-225],[-167.59,-242.06],[-179,-261],[-182.93,-272.14],[-186,-283],[-190.2,-293.42],[-195,-303],[-200.35,-312.09],[-206,-321],[-206.96,-323.45],[-208,-326],[-209.49,-327.96],[-211,-330],[-230,-366]],"c":true}],"h":1},{"t":123,"s":[{"i":[[-237.51,-378.68],[-244.82,-367.09],[-248.67,-343.78],[-252.64,-319.7],[-256,-297.03],[-254.34,-271.65],[-245.18,-245.75],[-236.65,-225.5],[-230.71,-209.81],[-226.42,-197.76],[-221.5,-186.57],[-218.46,-183.28],[-216.57,-180.78],[-210.77,-173.23],[-203.15,-163.42],[-193.48,-144.2],[-184.84,-117.06],[-177.46,-102.13],[-172.31,-95.89],[-169.21,-97.63],[-165.47,-103.18],[-157,-121.75],[-150.91,-153.07],[-149.16,-173.76],[-148.63,-188.24],[-155.91,-223.41],[-176.46,-254.15],[-184.72,-276.13],[-187.58,-287.36],[-191.82,-297.4],[-196.86,-307.48],[-199.76,-310.59],[-203.42,-318.67],[-209.01,-327.53],[-213.94,-335.05],[-227.06,-361.48]],"o":[[-242.99,-373.96],[-247.67,-352],[-251.14,-327.44],[-255.07,-304.5],[-256,-280.28],[-248.93,-254.39],[-238.79,-230.85],[-232.61,-214.98],[-227.92,-201.97],[-223.21,-190.05],[-219.17,-184.13],[-217.16,-181.6],[-213.45,-176.51],[-205.62,-166.68],[-196.56,-152.92],[-187.62,-126.27],[-179.3,-105.44],[-173.96,-97.36],[-170.48,-96.04],[-166.71,-101.2],[-160.29,-112.22],[-152.31,-142.18],[-149.59,-168.89],[-148.68,-183.44],[-150.43,-211.58],[-168.93,-244.69],[-183.68,-272.2],[-186.67,-283.71],[-190.14,-293.92],[-195.18,-304.18],[-198.16,-310.35],[-202,-314.46],[-207.27,-324.34],[-212.26,-333.19],[-221.14,-348.27],[-235.13,-374.42]],"v":[[-240,-380],[-246.24,-359.55],[-250,-335],[-253.86,-312.1],[-256,-290],[-251.63,-263.02],[-241,-236],[-234.63,-220.24],[-229,-205],[-224.82,-193.9],[-220,-185],[-217.81,-182.44],[-216,-180],[-208.19,-169.95],[-201,-160],[-190.55,-135.23],[-181,-109],[-175.71,-99.75],[-171,-96],[-167.96,-99.42],[-165,-104],[-154.65,-131.97],[-150,-164],[-148.92,-178.6],[-149,-193],[-162.42,-234.05],[-182,-268],[-185.7,-279.92],[-189,-291],[-193.5,-300.79],[-198,-310],[-200,-311],[-205,-321],[-211,-331],[-215,-337],[-233,-371]],"c":true}],"h":1},{"t":124,"s":[{"i":[[-238.14,-379.48],[-244.93,-366.8],[-248.6,-342.82],[-252.84,-318.38],[-256.19,-295.44],[-251.49,-261.5],[-235.13,-222.08],[-229.65,-206.62],[-227.86,-199.94],[-224.85,-193.41],[-220.71,-185.74],[-218.44,-183.26],[-216.63,-180.85],[-210.64,-173.21],[-203,-163.41],[-193.78,-144.24],[-183.79,-115.64],[-173.94,-96.73],[-167.99,-98.78],[-160.88,-112.05],[-155.99,-125.69],[-153.85,-134.33],[-152.31,-139.83],[-150.6,-155.42],[-148.94,-203.75],[-163.47,-235.94],[-181.86,-266.18],[-188.01,-289.15],[-194.06,-300.22],[-199,-311.6],[-202.5,-316.13],[-205.13,-320.49],[-208.13,-325.49],[-212.49,-332.31],[-225.54,-357.54],[-234.56,-374.49]],"o":[[-243.13,-373.89],[-247.66,-351.26],[-251.25,-326.17],[-255.31,-303.02],[-255.67,-275.21],[-241.22,-234.93],[-230.22,-208.9],[-228.47,-202.14],[-226.24,-196.29],[-222.08,-188.14],[-219.13,-184.09],[-217.2,-181.64],[-213.39,-176.51],[-205.44,-166.66],[-197.14,-153.42],[-187.11,-125.35],[-176.2,-100.34],[-169.84,-95.95],[-162.88,-107.7],[-157.43,-121.04],[-154.44,-132.42],[-152.78,-138.04],[-151.06,-148.55],[-147.95,-184.29],[-158.23,-228.65],[-175.18,-254.18],[-187.63,-284.05],[-191.29,-297.16],[-197.77,-307.45],[-201.39,-315.66],[-204.27,-319.19],[-207.27,-324.19],[-210.86,-330.21],[-220.24,-346.13],[-232.58,-369.73],[-237.46,-377.52]],"v":[[-240,-380],[-246.3,-359.03],[-250,-334],[-254.08,-310.7],[-256,-288],[-246.35,-248.21],[-231,-211],[-229.06,-204.38],[-227,-198],[-223.46,-190.77],[-220,-185],[-217.82,-182.45],[-216,-180],[-208.04,-169.93],[-201,-160],[-190.45,-134.79],[-180,-108],[-171.89,-96.34],[-165,-104],[-159.16,-116.55],[-155,-130],[-153.31,-136.18],[-152,-142],[-150,-162],[-155,-220],[-168,-243],[-186,-279],[-190,-294],[-196,-304],[-201,-315],[-203,-317],[-206,-322],[-209,-327],[-214,-335],[-231,-367],[-236,-376]],"c":true}],"h":1},{"t":125,"s":[{"i":[[-237.51,-378.68],[-244.93,-366.81],[-248.58,-342.89],[-252.93,-318.15],[-256.32,-294.77],[-254.66,-275.24],[-249.78,-257.54],[-247.08,-251.05],[-245.44,-248.09],[-243.61,-242.78],[-241.84,-236.09],[-240.1,-232.38],[-238.36,-229.9],[-234.7,-220.23],[-230.38,-207.61],[-226.45,-197.42],[-221.34,-186.4],[-219.58,-184.36],[-219.32,-183.41],[-210.44,-174.05],[-206.81,-168.08],[-202.51,-162.58],[-188.31,-125.35],[-175,-95.67],[-163.42,-107.18],[-158.37,-117.91],[-152.12,-145.77],[-148.65,-182.27],[-155.69,-223.87],[-176.57,-253.93],[-188.8,-290.96],[-208.62,-325.06],[-215.77,-337.58],[-220.54,-350.43],[-223.3,-353.82],[-229.98,-366.16]],"o":[[-243.14,-373.87],[-247.65,-351.33],[-251.27,-326.01],[-255.45,-302.53],[-255.77,-281.47],[-251.67,-263.28],[-247.61,-252.01],[-245.99,-249.09],[-244.19,-244.99],[-242.44,-238.33],[-240.67,-233.19],[-238.95,-230.74],[-236.27,-224.68],[-231.76,-211.7],[-228.04,-201.47],[-223.11,-189.88],[-219.67,-184.65],[-219.41,-183.74],[-215.71,-178.79],[-207.06,-169.83],[-204.16,-164.56],[-193.38,-146.93],[-179.15,-106.11],[-168.81,-96.18],[-160.86,-112.15],[-152.8,-134.49],[-149.74,-169.59],[-151.56,-209.74],[-168.89,-246.57],[-187.25,-280.62],[-198.94,-312.78],[-214.16,-337.35],[-218.38,-342.27],[-223.82,-353.85],[-227.41,-360.74],[-235.13,-374.42]],"v":[[-240,-380],[-246.29,-359.07],[-250,-334],[-254.19,-310.34],[-256,-287],[-253.16,-269.26],[-248,-253],[-246.54,-250.07],[-245,-247],[-243.02,-240.56],[-241,-234],[-239.52,-231.56],[-238,-229],[-233.23,-215.97],[-229,-204],[-224.78,-193.65],[-220,-185],[-219.49,-184.05],[-219,-183],[-208,-171],[-206,-167],[-201,-160],[-181,-110],[-171,-96],[-163,-108],[-157,-122],[-151,-157],[-150,-195],[-161,-233],[-183,-270],[-193,-300],[-214,-337],[-216,-338],[-223,-353],[-224,-355],[-233,-371]],"c":true}],"h":1},{"t":126,"s":[{"i":[[-232.7,-372.32],[-245.03,-366.46],[-248.55,-342.55],[-253.01,-317.99],[-256.29,-295.04],[-253.82,-271.34],[-245.35,-247.37],[-239.11,-231.21],[-235.34,-219.7],[-233.37,-214.1],[-232.41,-211.03],[-231.06,-208.26],[-229.34,-205.85],[-227.59,-200.66],[-225.89,-194.7],[-222.82,-191.26],[-220.92,-186.35],[-218.36,-184.48],[-217.55,-181.76],[-215.38,-180.5],[-214.6,-177.77],[-211.8,-174.99],[-209.09,-171.4],[-193.97,-144.6],[-177.42,-95.47],[-163.24,-107.08],[-148.79,-159.18],[-149.86,-196.67],[-159.27,-229.96],[-174.58,-253.61],[-181.75,-266.04],[-184.7,-276.99],[-192.69,-297.37],[-196.76,-306.54],[-202.13,-316.36],[-216.26,-340.08]],"o":[[-243.26,-373.68],[-247.68,-350.89],[-251.36,-325.97],[-255.47,-302.53],[-255.65,-279.4],[-248.67,-255.32],[-240.45,-235.11],[-236.56,-223.51],[-233.67,-215.08],[-232.74,-212.07],[-231.64,-209.09],[-229.91,-206.65],[-228.14,-202.82],[-226.46,-196.6],[-224.45,-191.95],[-221,-188.47],[-219.69,-184.54],[-217.36,-183.15],[-216.66,-180.53],[-214.35,-179.13],[-213.12,-175.86],[-209.88,-172.62],[-198.49,-157.81],[-185.5,-121.03],[-168.47,-96.21],[-152.79,-129.99],[-149.07,-188.4],[-153.72,-221.39],[-170.6,-247.6],[-179.58,-262.95],[-184.66,-272.94],[-188.81,-289.68],[-195.1,-305.35],[-199.92,-312.7],[-210.87,-330.49],[-226.7,-359.73]],"v":[[-240,-380],[-246.36,-358.67],[-250,-334],[-254.24,-310.26],[-256,-288],[-251.25,-263.33],[-242,-239],[-237.84,-227.36],[-234,-216],[-233.05,-213.08],[-232,-210],[-230.48,-207.45],[-229,-205],[-227.02,-198.63],[-225,-193],[-222,-190],[-220,-185],[-218,-184],[-217,-181],[-215,-180],[-214,-177],[-211,-174],[-208,-170],[-188,-128],[-171,-96],[-161,-112],[-149,-181],[-151,-204],[-167,-242],[-178,-260],[-183,-269],[-186,-281],[-195,-305],[-197,-307],[-205,-321],[-221,-349]],"c":true}],"h":1},{"t":127,"s":[{"i":[[-237.41,-378.93],[-244.75,-367.03],[-248.57,-343.53],[-252.98,-319.44],[-256.31,-296.65],[-251.8,-265.15],[-237.5,-227.81],[-231.27,-209.65],[-227.52,-198.15],[-223.88,-191.4],[-220.09,-186.57],[-212.73,-176.4],[-203.49,-163.98],[-193.79,-144.62],[-184.86,-117.01],[-178.39,-103.69],[-172.7,-95.86],[-168.46,-98.51],[-163.34,-106.4],[-162.2,-108.7],[-161.31,-111.31],[-154.11,-132.36],[-148.98,-169.26],[-150.12,-199.76],[-156.69,-225.63],[-167.55,-243.96],[-180.39,-262.97],[-187.47,-281.97],[-191.92,-296.39],[-197,-307.16],[-201.81,-316.36],[-204.76,-319.59],[-206.72,-324.87],[-213.69,-334.89],[-225.5,-356.91],[-233.01,-371.96]],"o":[[-242.96,-374.01],[-247.55,-351.79],[-251.32,-327.11],[-255.47,-304.21],[-255.55,-278],[-242.78,-240.06],[-232.51,-213.82],[-228.78,-201.82],[-225.09,-193.11],[-221.39,-188.13],[-215.99,-180.66],[-206.48,-168.06],[-196.86,-153.36],[-187.79,-126.44],[-180.04,-107.01],[-174.72,-98.11],[-170.29,-96.06],[-164.99,-103.68],[-162.54,-107.8],[-161.59,-110.46],[-157.13,-120.48],[-150.04,-156.75],[-149.03,-189.69],[-153.96,-217.73],[-163.36,-238.47],[-176.07,-256.21],[-186.01,-277.03],[-190.43,-291.65],[-195.34,-303.98],[-200.23,-313.35],[-203.16,-319.35],[-206.2,-322.04],[-210.51,-331.17],[-221.01,-347.91],[-231.33,-367.39],[-236.3,-375.4]],"v":[[-240,-380],[-246.15,-359.41],[-250,-335],[-254.23,-311.83],[-256,-289],[-247.29,-252.6],[-234,-218],[-230.02,-205.73],[-226,-195],[-222.63,-189.76],[-219,-185],[-209.6,-172.23],[-201,-160],[-190.79,-135.53],[-181,-109],[-176.55,-100.9],[-171,-96],[-166.73,-101.09],[-163,-107],[-161.89,-109.58],[-161,-112],[-152.08,-144.56],[-149,-179],[-152.04,-208.74],[-160,-232],[-171.81,-250.08],[-184,-272],[-188.95,-286.81],[-194,-301],[-198.61,-310.25],[-203,-319],[-205,-320],[-208,-327],[-216,-339],[-230,-365],[-234,-373]],"c":true}],"h":1},{"t":128,"s":[{"i":[[-231.69,-372],[-244.3,-368.04],[-248.64,-346.81],[-252.59,-324.52],[-255.73,-303.15],[-254.15,-272.68],[-243.18,-242.62],[-235.25,-219.65],[-228.07,-198.52],[-223.98,-191.71],[-222.27,-190.36],[-221.57,-189.02],[-221.26,-187.37],[-217.34,-182.19],[-211.44,-175.55],[-209.68,-171.9],[-207.41,-170.44],[-206.68,-167.94],[-204.39,-166.42],[-200.98,-160.87],[-193.56,-141.35],[-189.08,-127.82],[-175.88,-95.58],[-167.7,-100.23],[-157.2,-121.04],[-150.18,-158.07],[-149.38,-187.01],[-159.62,-231.52],[-168.7,-245.54],[-171.63,-249.81],[-176.75,-256.81],[-187.85,-286.11],[-200.84,-314.07],[-205.27,-321.84],[-212.01,-332.83],[-218.58,-343.38]],"o":[[-242.47,-374.38],[-247.38,-354.26],[-251.22,-331.94],[-254.84,-310.12],[-256.56,-284.12],[-247.46,-251.93],[-237.47,-227.14],[-230.55,-205.34],[-224.6,-192.28],[-222.82,-190.75],[-221.69,-189.59],[-221.35,-187.92],[-219.37,-184.66],[-213.38,-177.63],[-209.27,-173.21],[-208.66,-170.55],[-206.25,-169.2],[-205.69,-166.57],[-202.21,-164.07],[-196.18,-151.7],[-189.9,-130.85],[-186.03,-119.86],[-169.93,-96.09],[-160.96,-111.2],[-150.76,-144.32],[-149.93,-179.02],[-151.68,-216.53],[-168.42,-244.63],[-170.56,-248.36],[-174.87,-255],[-185.1,-271.49],[-195.84,-306.1],[-204.99,-320.54],[-209.44,-328.47],[-216.58,-340.72],[-226.39,-357.77]],"v":[[-240,-380],[-245.84,-361.15],[-250,-339],[-253.72,-317.32],[-256,-297],[-250.81,-262.31],[-240,-234],[-232.9,-212.5],[-225,-193],[-223.4,-191.23],[-222,-190],[-221.46,-188.47],[-221,-187],[-215.36,-179.91],[-210,-174],[-209,-171],[-207,-170],[-206,-167],[-204,-166],[-200,-159],[-191,-134],[-188,-125],[-171,-96],[-166,-103],[-155,-129],[-150,-173],[-150,-195],[-168,-244],[-169,-246],[-173,-252],[-178,-259],[-193,-299],[-204,-319],[-206,-323],[-215,-338],[-220,-346]],"c":true}],"h":1},{"t":129,"s":[{"i":[[-230.97,-370.38],[-244.22,-368.06],[-248.57,-346.84],[-252.69,-324.54],[-255.77,-303.31],[-254.73,-276.15],[-245.66,-248.88],[-239.11,-230.46],[-235.34,-217.85],[-230.19,-204.46],[-223.09,-191.12],[-214.39,-179.04],[-204.49,-166.36],[-195.4,-147.92],[-187.75,-125.38],[-181.28,-109.9],[-173.36,-95.8],[-168.34,-98.56],[-163.79,-107.44],[-159.93,-115.03],[-155.7,-124.5],[-152.63,-137.21],[-150.25,-154.53],[-149.56,-189.88],[-156.92,-226.14],[-162.72,-236.66],[-163.55,-239.29],[-164.55,-240.35],[-165.83,-240.77],[-166.43,-241.98],[-166.74,-243.63],[-171.89,-250.73],[-178.98,-261.07],[-186.68,-278.82],[-193.11,-299.98],[-210.38,-329.23]],"o":[[-242.44,-374.4],[-247.29,-354.28],[-251.3,-331.89],[-254.92,-310.26],[-256.4,-285.71],[-249.36,-257.73],[-240.44,-234.78],[-236.56,-221.99],[-232.4,-209.4],[-225.54,-195.32],[-217.89,-183.36],[-207.69,-170.54],[-198.27,-155.48],[-190.13,-132.87],[-183.6,-115.75],[-176.16,-99.92],[-169.94,-96.09],[-165.27,-104.24],[-161.58,-111.78],[-156.99,-121.4],[-153.76,-131.44],[-150.88,-148.75],[-149.1,-175.3],[-153.47,-215.29],[-162.44,-235.77],[-163.27,-238.42],[-164.13,-240.21],[-165.4,-240.63],[-166.31,-241.41],[-166.64,-243.08],[-169.4,-247.45],[-176.68,-257.54],[-184.38,-271.58],[-191.05,-293.02],[-201.86,-318.21],[-224.17,-353.75]],"v":[[-240,-380],[-245.75,-361.17],[-250,-339],[-253.8,-317.4],[-256,-297],[-252.05,-266.94],[-242,-239],[-237.83,-226.22],[-234,-214],[-227.87,-199.89],[-221,-188],[-211.04,-174.79],[-202,-162],[-192.76,-140.4],[-185,-119],[-178.72,-104.91],[-171,-96],[-166.8,-101.4],[-163,-109],[-158.46,-118.21],[-155,-127],[-151.75,-142.98],[-150,-159],[-151.52,-202.58],[-162,-235],[-162.99,-237.54],[-164,-240],[-164.97,-240.49],[-166,-241],[-166.54,-242.53],[-167,-244],[-174.29,-254.14],[-181,-265],[-188.86,-285.92],[-196,-306],[-217,-341]],"c":true}],"h":1},{"t":130,"s":[{"i":[[-235.09,-375.63],[-244.75,-366.52],[-248.48,-343.2],[-253.18,-319.66],[-256.48,-296.87],[-253.46,-271.82],[-244.99,-246.44],[-239.29,-229.95],[-235.39,-217.85],[-232.46,-210.23],[-229.78,-204.74],[-226.06,-194.39],[-222.33,-190.44],[-221.55,-187.76],[-219.38,-186.5],[-218.59,-183.77],[-216.39,-182.52],[-215.61,-179.78],[-213.42,-178.45],[-212.69,-175.87],[-206.93,-170.67],[-203.95,-164.5],[-200.82,-160.64],[-193.16,-138.42],[-175.86,-95.58],[-166.53,-101.44],[-144.5,-203.56],[-163.28,-236.82],[-165.14,-241.68],[-177.32,-258.38],[-191.2,-296.14],[-203.56,-319.42],[-209.34,-327.96],[-211.12,-332.59],[-214.05,-336.49],[-223.31,-353.32]],"o":[[-243.02,-373.67],[-247.49,-351.28],[-251.44,-327.23],[-255.7,-304.48],[-255.47,-280.35],[-248.22,-254.87],[-240.59,-234.03],[-236.69,-221.86],[-233.32,-212.11],[-230.69,-206.55],[-227.06,-198.71],[-223.75,-190.58],[-221.36,-189.15],[-220.66,-186.53],[-218.35,-185.13],[-217.63,-182.52],[-215.34,-181.12],[-214.64,-178.54],[-212.28,-177.22],[-209.93,-172.38],[-204.14,-166.81],[-202.06,-161.53],[-195.43,-149.87],[-186.01,-119.82],[-170.51,-96.04],[-146.3,-135.16],[-161.64,-236.23],[-164.89,-239.46],[-171.69,-251.69],[-188.42,-281.21],[-199.89,-313.9],[-208.12,-326.82],[-210.83,-330.31],[-212.85,-335.36],[-219.44,-345.08],[-230.76,-366.81]],"v":[[-240,-380],[-246.12,-358.9],[-250,-335],[-254.44,-312.07],[-256,-289],[-250.84,-263.34],[-242,-238],[-237.99,-225.91],[-234,-214],[-231.58,-208.39],[-229,-203],[-224,-191],[-222,-190],[-221,-187],[-219,-186],[-218,-183],[-216,-182],[-215,-179],[-213,-178],[-212,-175],[-205,-168],[-203,-163],[-200,-159],[-188,-125],[-171,-96],[-165,-104],[-161,-235],[-164,-238],[-166,-243],[-182,-268],[-197,-308],[-207,-325],[-210,-329],[-212,-334],[-215,-338],[-227,-360]],"c":true}],"h":1},{"t":131,"s":[{"i":[[-235.48,-377.46],[-244.41,-367.7],[-247.99,-346.96],[-252.46,-324.12],[-256.54,-298.75],[-253.41,-272.52],[-244.92,-247.43],[-237.2,-224.02],[-230.08,-202.99],[-225.14,-193.89],[-222.59,-190.79],[-221.57,-189.02],[-221.28,-187.38],[-220.42,-186.64],[-219.19,-186.25],[-218.62,-183.78],[-211.6,-176.41],[-207.79,-171.28],[-205.55,-168.78],[-194.96,-142.43],[-175.59,-95.55],[-167.44,-100.65],[-160.43,-113.74],[-150.1,-150.43],[-151.88,-211.84],[-163.43,-240.32],[-168.95,-246.43],[-179.32,-261.31],[-189.5,-289.89],[-196.68,-308.07],[-199.77,-311.57],[-201.75,-316.8],[-211.48,-332.07],[-220.5,-350.39],[-226.79,-360.31],[-229.77,-363.58]],"o":[[-242.66,-374.47],[-247.07,-353.95],[-250.44,-332.49],[-255.51,-307.25],[-255.45,-281.05],[-248.15,-255.71],[-239.41,-231.53],[-232.54,-209.75],[-226.1,-195.25],[-223.39,-191.66],[-221.68,-189.58],[-221.37,-187.92],[-220.83,-186.76],[-219.6,-186.38],[-218.34,-185.12],[-215.58,-179.95],[-208.77,-172.14],[-206.4,-169.02],[-196.24,-155.49],[-185.37,-118.41],[-169.88,-96.11],[-162.3,-109.01],[-152.7,-133.67],[-149.88,-192.11],[-160.02,-232],[-167.62,-244.69],[-174.83,-255.24],[-187.9,-279.25],[-194.57,-303.1],[-198.16,-311.36],[-201.16,-314.16],[-206.86,-325.78],[-217.67,-342.5],[-225.63,-355.75],[-228.16,-363.35],[-233.12,-369.6]],"v":[[-240,-380],[-245.74,-360.82],[-249,-341],[-253.99,-315.68],[-256,-290],[-250.78,-264.12],[-242,-239],[-234.87,-216.89],[-227,-197],[-224.27,-192.78],[-222,-190],[-221.47,-188.47],[-221,-187],[-220.01,-186.51],[-219,-186],[-218,-183],[-210,-174],[-207,-170],[-205,-168],[-188,-125],[-171,-96],[-166,-103],[-158,-120],[-150,-169],[-158,-227],[-166,-243],[-170,-248],[-183,-269],[-193,-299],[-198,-311],[-200,-312],[-203,-319],[-215,-338],[-223,-353],[-228,-363],[-230,-364]],"c":true}],"h":1},{"t":132,"s":[{"i":[[-236.77,-379.25],[-244.64,-366.64],[-248.48,-343.96],[-253.09,-321],[-256.32,-298.96],[-254.1,-276.6],[-246.86,-251.53],[-238.58,-226.29],[-230.74,-203.67],[-227.03,-196.7],[-225.25,-195.34],[-224.57,-194.03],[-224.24,-192.36],[-222.24,-189.59],[-219.66,-186.71],[-218.57,-185.08],[-218.34,-183.41],[-216.72,-181.67],[-214.62,-179.77],[-204.28,-167.4],[-190.56,-130.51],[-174.79,-95.63],[-163.24,-107.55],[-150.89,-140.85],[-150.39,-205.81],[-163.5,-238.47],[-167.75,-244.63],[-167.77,-246.49],[-169.75,-247.64],[-171.65,-252.1],[-175.88,-257.28],[-182.1,-266.81],[-190.29,-291.48],[-202.7,-318.38],[-225.55,-355.69],[-233.76,-370.59]],"o":[[-242.9,-373.66],[-247.43,-351.79],[-251.43,-328.51],[-255.53,-306.22],[-255.66,-284.59],[-249.7,-260.08],[-241.22,-234.71],[-233.35,-210.77],[-227.65,-197.28],[-225.83,-195.73],[-224.7,-194.6],[-224.34,-192.91],[-223.16,-190.73],[-220.49,-187.57],[-218.65,-185.62],[-218.42,-183.97],[-217.41,-182.29],[-215.32,-180.42],[-209.17,-172.95],[-194.32,-147.99],[-181.74,-110.67],[-168.91,-96.2],[-155.44,-122.39],[-148.62,-181.84],[-159.78,-231.65],[-166.15,-244.32],[-168.31,-245.46],[-168.14,-247.32],[-171.18,-249.73],[-174.18,-255.66],[-179.44,-262.74],[-188.64,-281.28],[-197.6,-310.22],[-216.53,-340.86],[-232.16,-370.35],[-235.99,-374.39]],"v":[[-240,-380],[-246.04,-359.22],[-250,-336],[-254.31,-313.61],[-256,-292],[-251.9,-268.34],[-244,-243],[-235.97,-218.53],[-228,-198],[-226.43,-196.21],[-225,-195],[-224.45,-193.47],[-224,-192],[-221.36,-188.58],[-219,-186],[-218.49,-184.53],[-218,-183],[-216.02,-181.04],[-214,-179],[-201,-161],[-185,-118],[-171,-96],[-163,-108],[-150,-157],[-157,-224],[-166,-244],[-168,-245],[-168,-247],[-170,-248],[-173,-254],[-177,-259],[-184,-271],[-194,-301],[-208,-327],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":133,"s":[{"i":[[-236.78,-379.28],[-244.46,-367],[-248.45,-344.81],[-253.09,-322.46],[-256.3,-300.45],[-254.01,-277.51],[-246.64,-253.3],[-238.99,-228.32],[-231.76,-205.71],[-226.58,-195.95],[-222.22,-190.69],[-220.57,-188],[-220.3,-186.4],[-219.4,-185.36],[-218.29,-184.37],[-215.5,-180.83],[-212.22,-176.58],[-209.73,-173.68],[-207.51,-171.71],[-198.08,-154.62],[-188.62,-126.14],[-180.82,-108.74],[-172.9,-95.81],[-163.21,-107.61],[-158.46,-118.03],[-147.2,-204.22],[-174.93,-254.32],[-188.4,-281.94],[-193.11,-297.15],[-198.81,-310.9],[-204.06,-322.02],[-206.18,-325.15],[-207.3,-326.85],[-218.55,-343.99],[-229.63,-364.73],[-233.76,-370.59]],"o":[[-242.74,-373.84],[-247.32,-352.48],[-251.44,-329.74],[-255.52,-307.82],[-255.69,-285.36],[-249.48,-261.48],[-241.37,-236.72],[-234.19,-212.82],[-227.96,-197.86],[-223.71,-192.37],[-220.67,-188.55],[-220.39,-186.92],[-219.75,-185.67],[-218.67,-184.7],[-216.64,-182.29],[-213.29,-177.97],[-210.48,-174.32],[-208.25,-172.37],[-201.77,-163.8],[-191.51,-135.79],[-183.37,-114.34],[-175.58,-99.48],[-169.07,-96.19],[-160.77,-112.24],[-146.1,-151.57],[-166.72,-246.87],[-186.6,-275.78],[-191.63,-292.19],[-196.82,-306.67],[-202.35,-317.54],[-205.8,-323.84],[-207.81,-326.84],[-213.19,-336.5],[-226.31,-357.96],[-232.16,-370.35],[-235.95,-374.33]],"v":[[-240,-380],[-245.89,-359.74],[-250,-337],[-254.31,-315.14],[-256,-293],[-251.74,-269.49],[-244,-245],[-236.59,-220.57],[-229,-200],[-225.14,-194.16],[-221,-189],[-220.48,-187.46],[-220,-186],[-219.03,-185.03],[-218,-184],[-214.39,-179.4],[-211,-175],[-208.99,-173.02],[-207,-171],[-194.79,-145.2],[-185,-118],[-178.2,-104.11],[-171,-96],[-163,-108],[-157,-122],[-159,-230],[-184,-271],[-190,-287],[-195,-302],[-201,-315],[-205,-323],[-207,-326],[-208,-328],[-223,-352],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":134,"s":[{"i":[[-236.78,-379.28],[-244.39,-367.34],[-248.4,-345.06],[-253.06,-322.8],[-256.3,-301.32],[-254.04,-277.16],[-246.77,-251.77],[-241.39,-234.91],[-237.33,-222.87],[-233.22,-210.58],[-228.83,-199.04],[-225.32,-195.43],[-224.55,-192.76],[-219.94,-187.42],[-215.66,-181.09],[-204.17,-167.55],[-194.07,-139.89],[-182.58,-112.13],[-174.38,-95.67],[-163.75,-106.67],[-153.48,-128.52],[-150.36,-148.2],[-150.56,-201.16],[-156.97,-224.14],[-159.78,-233.52],[-165.66,-241.92],[-168.16,-247.72],[-173.17,-253.75],[-175.49,-256.26],[-177.23,-260.83],[-179.65,-262.54],[-180.56,-265.3],[-190.03,-290.23],[-202.79,-318.43],[-225.55,-355.69],[-233.76,-370.59]],"o":[[-242.69,-374.06],[-247.24,-352.84],[-251.41,-329.89],[-255.5,-308.52],[-255.65,-285.52],[-249.6,-260.28],[-242.73,-238.97],[-238.69,-226.85],[-234.56,-214.8],[-230.36,-202.7],[-226.75,-195.59],[-224.37,-194.16],[-222.43,-189.82],[-217.33,-183.48],[-209.08,-172.81],[-196.11,-150.9],[-186.01,-120.12],[-178.56,-104.15],[-169.33,-96.16],[-158.37,-116.21],[-151.05,-142.43],[-148.71,-174.81],[-155.81,-221.09],[-159.13,-230.15],[-162.51,-239.08],[-167.99,-245.53],[-170.28,-250.95],[-174.59,-255.9],[-176.79,-258.15],[-178.29,-262.44],[-180.58,-263.77],[-187.52,-276.47],[-197.45,-310.38],[-216.47,-340.94],[-232.16,-370.35],[-235.95,-374.33]],"v":[[-240,-380],[-245.82,-360.09],[-250,-337],[-254.28,-315.66],[-256,-294],[-251.82,-268.72],[-244,-243],[-240.04,-230.88],[-236,-219],[-231.79,-206.64],[-227,-196],[-225,-195],[-224,-192],[-219,-186],[-214,-179],[-201,-161],[-188,-125],[-181,-109],[-171,-96],[-163,-108],[-152,-137],[-150,-154],[-155,-218],[-158,-227],[-161,-236],[-167,-244],[-169,-249],[-174,-255],[-176,-257],[-178,-262],[-180,-263],[-181,-266],[-194,-301],[-208,-327],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":135,"s":[{"i":[[-233.81,-373.27],[-244.18,-367.89],[-248.44,-346.76],[-252.91,-325.19],[-256.1,-303.9],[-254.32,-279.87],[-246.89,-253.35],[-240.23,-231.45],[-234.24,-213.11],[-230.31,-203.7],[-227.98,-197.63],[-226.46,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.26,-192.37],[-216.32,-182.3],[-204.64,-168.14],[-195.62,-147.92],[-188.13,-124.75],[-180.11,-107.77],[-172.54,-95.85],[-168.79,-98.25],[-165.3,-105.32],[-164.48,-106.32],[-163.12,-106.79],[-160.11,-114.41],[-154.44,-128.75],[-149.47,-178.47],[-156.6,-227.32],[-166.05,-244.05],[-181.32,-264.29],[-193.62,-300.64],[-199.33,-313.51],[-201.77,-315.57],[-203.72,-320.8],[-217.35,-343.05]],"o":[[-242.46,-374.26],[-247.17,-354.14],[-251.36,-332.23],[-255.28,-311.02],[-255.88,-288.44],[-249.83,-262.32],[-242.11,-237.89],[-236.29,-219.06],[-231.07,-205.88],[-228.77,-199.57],[-226.88,-195.79],[-225.6,-195.36],[-224.69,-194.59],[-224.35,-192.92],[-220.5,-186.98],[-208.39,-172.88],[-198.3,-155.79],[-190.53,-132.4],[-182.84,-113.34],[-174.96,-99.02],[-170.14,-96.08],[-166.37,-102.87],[-164.92,-106.18],[-163.58,-106.63],[-161.48,-109.77],[-156.68,-122.42],[-148.53,-154.46],[-153.78,-213.48],[-163.49,-240.96],[-174.3,-256.55],[-190.82,-286.02],[-198.97,-312.07],[-200.16,-315.36],[-203.16,-318.16],[-210.89,-333.14],[-228.21,-362.18]],"v":[[-240,-380],[-245.67,-361.01],[-250,-339],[-254.09,-318.1],[-256,-297],[-252.08,-271.09],[-244,-244],[-238.26,-225.25],[-232,-208],[-229.54,-201.64],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.46,-193.47],[-224,-192],[-212.36,-177.59],[-202,-163],[-193.07,-140.16],[-185,-118],[-177.53,-103.39],[-171,-96],[-167.58,-100.56],[-165,-106],[-164.03,-106.47],[-163,-107],[-159,-117],[-153,-135],[-152,-199],[-162,-238],[-168,-247],[-186,-275],[-198,-310],[-200,-315],[-202,-316],[-205,-323],[-223,-353]],"c":true}],"h":1},{"t":136,"s":[{"i":[[-236.4,-377.32],[-244.17,-367.91],[-248.44,-346.75],[-252.96,-325.2],[-256.18,-303.99],[-254.2,-280.05],[-246.83,-253.35],[-241.53,-235.23],[-238.25,-222.85],[-235.55,-215.31],[-232.78,-209.76],[-230.33,-203.74],[-228,-197.64],[-226.45,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.28,-192.38],[-223.42,-191.64],[-222.19,-191.25],[-221.57,-190.01],[-221.3,-188.39],[-206.54,-171.84],[-191.27,-131.51],[-181.58,-111.14],[-172.36,-92.41],[-154.63,-125.29],[-149.76,-181.33],[-157.32,-229.18],[-165.1,-241.52],[-167.13,-246.69],[-180.39,-263.38],[-190.81,-289.11],[-195.36,-301.33],[-199.65,-315.55],[-204.02,-321.31],[-222.32,-351.73]],"o":[[-242.45,-374.28],[-247.17,-354.14],[-251.37,-332.2],[-255.36,-311.1],[-255.78,-288.62],[-249.73,-262.42],[-242.65,-239.55],[-239.32,-226.88],[-236.41,-217.17],[-233.73,-211.6],[-231.08,-205.92],[-228.79,-199.6],[-226.87,-195.79],[-225.6,-195.36],[-224.68,-194.58],[-224.37,-192.92],[-223.83,-191.76],[-222.6,-191.38],[-221.67,-190.56],[-221.39,-188.92],[-214.53,-179.71],[-194.6,-148.59],[-183.46,-114.68],[-172.43,-93.08],[-158.96,-114.72],[-148.38,-157.88],[-153.81,-215.07],[-163.67,-241.28],[-166.8,-244.31],[-173.73,-256.6],[-188.49,-280.29],[-194.03,-299.25],[-197.87,-307.91],[-203.61,-319.68],[-213.19,-337.1],[-232.89,-369.99]],"v":[[-240,-380],[-245.67,-361.02],[-250,-339],[-254.16,-318.15],[-256,-297],[-251.96,-271.23],[-244,-244],[-240.42,-231.05],[-237,-219],[-234.64,-213.45],[-232,-208],[-229.56,-201.67],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.47,-193.47],[-224,-192],[-223.01,-191.51],[-222,-191],[-221.48,-189.46],[-221,-188],[-202,-163],[-185,-118],[-181,-110],[-166,-103],[-152,-139],[-152,-200],[-163,-240],[-166,-243],[-168,-248],[-185,-273],[-193,-296],[-196,-303],[-202,-318],[-205,-323],[-230,-365]],"c":true}],"h":1},{"t":137,"s":[{"i":[[-236.47,-377.43],[-244.11,-368.14],[-248.4,-347.5],[-252.95,-326.42],[-256.07,-305.67],[-254.29,-281.57],[-246.79,-254.72],[-241.56,-235.82],[-238.29,-222.93],[-235.58,-215.35],[-232.89,-209.95],[-230.39,-203.95],[-228.01,-197.66],[-226.45,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.28,-192.38],[-223.42,-191.64],[-222.19,-191.25],[-221.57,-190],[-221.31,-188.39],[-216.12,-182.62],[-204.87,-168.7],[-197.15,-150.44],[-188.66,-125.9],[-174.07,-95.69],[-164.78,-105.59],[-151.11,-135.7],[-149.92,-176.29],[-153.77,-211.94],[-164.36,-241.62],[-181.46,-265.11],[-192.78,-294.2],[-199.57,-315.47],[-202.3,-318.82],[-221.72,-350.7]],"o":[[-242.41,-374.39],[-247.11,-354.7],[-251.42,-333.34],[-255.28,-312.59],[-255.9,-290.21],[-249.74,-263.82],[-242.67,-240.36],[-239.38,-227.11],[-236.38,-217.13],[-233.84,-211.76],[-231.14,-206.12],[-228.83,-199.72],[-226.87,-195.79],[-225.6,-195.36],[-224.68,-194.58],[-224.37,-192.92],[-223.83,-191.76],[-222.6,-191.38],[-221.67,-190.56],[-221.39,-188.92],[-218.9,-185.34],[-209.36,-174.28],[-198.91,-156.88],[-191.82,-134.49],[-180.68,-108.68],[-169.02,-96.2],[-157.46,-118.84],[-148.85,-162.78],[-152.16,-200.58],[-160.25,-234.13],[-175.12,-257.6],[-190.33,-284.44],[-197.8,-307.92],[-202.82,-318.85],[-211.89,-334.96],[-232.77,-369.79]],"v":[[-240,-380],[-245.61,-361.42],[-250,-340],[-254.12,-319.51],[-256,-299],[-252.02,-272.7],[-244,-245],[-240.47,-231.47],[-237,-219],[-234.71,-213.56],[-232,-208],[-229.61,-201.83],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.47,-193.47],[-224,-192],[-223.01,-191.51],[-222,-191],[-221.48,-189.46],[-221,-188],[-214,-180],[-202,-163],[-195,-144],[-185,-118],[-171,-96],[-164,-107],[-150,-149],[-151,-188],[-157,-223],[-170,-250],[-186,-275],[-196,-303],[-202,-318],[-203,-320],[-230,-365]],"c":true}],"h":1},{"t":138,"s":[{"i":[[-236.9,-379.12],[-242.73,-373.59],[-245.01,-362.38],[-250.58,-338.83],[-256.12,-308.14],[-254.3,-280.91],[-247.35,-254.57],[-240.55,-228.88],[-234.65,-213.84],[-230.01,-201.25],[-226.33,-197.44],[-225.55,-194.76],[-220.95,-189.44],[-211.44,-177.86],[-196.31,-145.67],[-185.37,-117.86],[-173.5,-96.07],[-165.41,-104.34],[-160.57,-112.33],[-153.75,-128.32],[-149.24,-170.44],[-153.84,-211.78],[-164.5,-241.24],[-169.75,-249.63],[-169.77,-251.49],[-171.75,-252.65],[-182.18,-267.04],[-192.47,-295.98],[-204.19,-321.99],[-211.77,-333.06],[-214.77,-339.96],[-218.84,-345.08],[-221.77,-351.91],[-224.5,-355.23],[-228.2,-362.86],[-232.89,-369.15]],"o":[[-241.72,-376.89],[-244.37,-366.33],[-248.02,-349.01],[-254.63,-318.39],[-255.88,-289.88],[-250.03,-263.26],[-242.74,-237.75],[-236.73,-217.08],[-231.22,-205.86],[-227.74,-197.58],[-225.37,-196.16],[-223.37,-191.75],[-216.26,-182.37],[-198.88,-160.12],[-187.26,-123.8],[-179.19,-105.28],[-169.16,-95.43],[-162.06,-110.66],[-157.14,-120.35],[-148.31,-147.72],[-152.24,-200.3],[-160.05,-233.83],[-168.15,-249.32],[-170.31,-250.46],[-170.14,-252.31],[-177.19,-260.22],[-190.68,-284.77],[-199.37,-313.61],[-210.05,-331.76],[-214.22,-336.94],[-217.14,-343.9],[-221.21,-349.01],[-223.35,-354.59],[-227.08,-359.21],[-230.99,-367.72],[-236.08,-374.45]],"v":[[-240,-380],[-243.55,-369.96],[-246,-358],[-252.61,-328.61],[-256,-299],[-252.17,-272.09],[-245,-246],[-238,-221],[-233,-210],[-228,-198],[-226,-197],[-225,-194],[-220,-188],[-208,-173],[-189,-128],[-182,-111],[-173,-96],[-164,-107],[-159,-116],[-153,-131],[-151,-188],[-157,-223],[-168,-249],[-170,-250],[-170,-252],[-172,-253],[-186,-275],[-196,-305],[-209,-330],[-213,-335],[-216,-342],[-220,-347],[-223,-354],[-225,-356],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":139,"s":[{"i":[[-236.88,-379.08],[-243.88,-368.38],[-248.39,-348.32],[-252.86,-328.18],[-256,-308.24],[-255.08,-288.19],[-250.66,-268.35],[-244.97,-246.08],[-238.44,-222.49],[-235.38,-214.65],[-234.32,-212.75],[-233.58,-210.3],[-233.31,-207.64],[-230.86,-203.18],[-226.94,-197.51],[-223.31,-192.12],[-219.43,-187.73],[-206.81,-172.42],[-195.42,-143.31],[-185.25,-117.62],[-173.27,-96.04],[-164.62,-104.9],[-157.4,-120.39],[-148.74,-171.58],[-161.48,-238.79],[-182.96,-267.98],[-190.61,-285.81],[-194.25,-300.37],[-204.35,-322.15],[-212.22,-336.19],[-214.18,-339.15],[-218.96,-345.27],[-221.68,-351.75],[-225.95,-357.26],[-228.72,-363.82],[-233.03,-369.39]],"o":[[-242.18,-374.47],[-246.99,-355.3],[-251.36,-334.81],[-255.18,-314.89],[-256,-295.02],[-252.41,-274.86],[-247,-254.33],[-240.69,-230.16],[-235.73,-215.27],[-234.68,-213.39],[-233.67,-211.23],[-233.39,-208.51],[-232.14,-205.18],[-228.26,-199.35],[-224.59,-193.75],[-220.73,-189.11],[-212.42,-179.24],[-197.74,-154.76],[-187.05,-123.35],[-178.92,-104.73],[-169.39,-95.46],[-159.97,-113.79],[-146.61,-148.26],[-154.99,-222.23],[-176.86,-261.03],[-188.95,-281.34],[-193.68,-295.08],[-199.28,-313.69],[-210.34,-332.26],[-213.8,-337.84],[-216.89,-341.98],[-221.38,-349.3],[-224.03,-355.75],[-228.32,-361.2],[-231,-367.7],[-236.13,-374.53]],"v":[[-240,-380],[-245.43,-361.84],[-250,-341],[-254.02,-321.53],[-256,-302],[-253.74,-281.53],[-249,-262],[-242.83,-238.12],[-236,-216],[-235.03,-214.02],[-234,-212],[-233.48,-209.4],[-233,-207],[-229.56,-201.27],[-226,-196],[-222.02,-190.61],[-218,-186],[-203,-165],[-189,-128],[-182,-111],[-173,-96],[-163,-108],[-156,-124],[-152,-198],[-172,-254],[-187,-277],[-192,-290],[-196,-305],[-209,-330],[-213,-337],[-215,-340],[-220,-347],[-223,-354],[-227,-359],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":140,"s":[{"i":[[-236.9,-379.12],[-243.99,-367.98],[-248.44,-348.07],[-252.89,-328.26],[-256.01,-308.47],[-255,-287.96],[-250.54,-268.15],[-243.18,-237.73],[-231.74,-204],[-224.25,-193.5],[-221.9,-190.14],[-217.23,-184.53],[-211.25,-177.74],[-206.39,-171.08],[-203.76,-166.55],[-195.57,-142.55],[-185.44,-118.94],[-173.91,-96.14],[-157.36,-120.48],[-148.81,-171.16],[-157.89,-230.06],[-167.46,-248.43],[-169.18,-251.15],[-172.01,-254.78],[-175.56,-259.54],[-177.18,-262.15],[-179.18,-265.15],[-181.18,-268.15],[-185.54,-273.96],[-194.97,-301.59],[-200.91,-315.78],[-214.85,-338.44],[-221.76,-351.88],[-225.95,-357.26],[-228.71,-363.79],[-232.89,-369.15]],"o":[[-242.28,-374.2],[-247.07,-354.92],[-251.38,-334.77],[-255.2,-315.1],[-255.98,-294.88],[-252.28,-274.59],[-246.06,-250.23],[-236.02,-214.61],[-225.05,-194.68],[-222.67,-191.23],[-219.36,-186.91],[-213.18,-179.95],[-208.04,-173.27],[-204.12,-167.68],[-198.21,-155.2],[-188.3,-124.86],[-179.17,-106.29],[-167.2,-95.09],[-147.09,-147.01],[-154.07,-213.78],[-165,-243.95],[-168.8,-249.84],[-171.45,-253.51],[-174.07,-257.31],[-176.8,-260.84],[-178.8,-263.84],[-180.8,-266.84],[-184.35,-271.45],[-192.05,-287.53],[-200.08,-313.52],[-207.15,-328.46],[-221.34,-349.22],[-224.03,-355.75],[-228.3,-361.15],[-231.01,-367.72],[-236.08,-374.45]],"v":[[-240,-380],[-245.53,-361.45],[-250,-341],[-254.04,-321.68],[-256,-302],[-253.64,-281.27],[-249,-262],[-239.6,-226.17],[-226,-196],[-223.46,-192.36],[-221,-189],[-215.21,-182.24],[-210,-176],[-205,-169],[-203,-165],[-190,-129],[-182,-112],[-173,-96],[-156,-124],[-152,-197],[-164,-242],[-168,-249],[-170,-252],[-173,-256],[-176,-260],[-178,-263],[-180,-266],[-182,-269],[-187,-277],[-199,-311],[-202,-318],[-220,-347],[-223,-354],[-227,-359],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":141,"s":[{"i":[[-235.72,-377.23],[-243.87,-368.26],[-248.47,-348.74],[-252.92,-329.14],[-256,-309.34],[-254.99,-288.82],[-250.47,-269.09],[-244.58,-243.28],[-236.79,-214.73],[-228.58,-199.43],[-220.38,-188.96],[-215.11,-182.48],[-211.02,-177.42],[-208.08,-173.34],[-205.63,-169.94],[-204.25,-167.73],[-203.38,-165.78],[-198.8,-154.46],[-192.87,-135.7],[-185.45,-119.07],[-173.87,-96.14],[-165.73,-104.75],[-157.24,-120.3],[-149.33,-147.93],[-150.33,-182.03],[-154.99,-217.07],[-165.72,-245.15],[-182.6,-267.82],[-193.62,-293.75],[-196.98,-307.45],[-203.36,-319.13],[-206.2,-325.58],[-210.45,-332.47],[-214.34,-337.96],[-216.13,-342.57],[-226.89,-358.56]],"o":[[-242.13,-374.39],[-247.04,-355.44],[-251.42,-335.72],[-255.21,-315.95],[-256,-295.77],[-252.22,-275.48],[-246.68,-253.42],[-239.63,-223.94],[-231.14,-203.2],[-223.2,-192.31],[-216.6,-184.27],[-212.32,-179.05],[-209.01,-174.62],[-206.38,-171],[-204.56,-168.34],[-203.66,-166.45],[-200.61,-160.11],[-194.93,-142.26],[-188.22,-124.86],[-179.21,-106.28],[-168.58,-95.31],[-160.71,-114.16],[-151.33,-135.36],[-148.59,-170.47],[-153.59,-205.34],[-160.92,-236.65],[-176.18,-260.7],[-190.78,-284.88],[-196.88,-303.69],[-199.69,-314.2],[-205.96,-323.67],[-208.48,-329.62],[-213.12,-336.82],[-215.83,-340.31],[-221.04,-350.62],[-233.19,-369.58]],"v":[[-240,-380],[-245.45,-361.85],[-250,-342],[-254.07,-322.54],[-256,-303],[-253.61,-282.15],[-249,-263],[-242.11,-233.61],[-233,-207],[-225.89,-195.87],[-218,-186],[-213.71,-180.76],[-210,-176],[-207.23,-172.17],[-205,-169],[-203.95,-167.09],[-203,-165],[-196.86,-148.36],[-190,-129],[-182,-112],[-173,-96],[-164,-108],[-155,-126],[-149,-158],[-152,-194],[-158,-227],[-171,-253],[-187,-277],[-196,-301],[-198,-310],[-205,-322],[-207,-327],[-212,-335],[-215,-339],[-217,-344],[-230,-364]],"c":true}],"h":1},{"t":142,"s":[{"i":[[-236.9,-379.12],[-243.88,-368.24],[-248.43,-348.82],[-252.95,-329.21],[-256.04,-309.37],[-254.92,-288.85],[-250.44,-269.05],[-244.67,-243.37],[-236.83,-214.53],[-223.35,-192.53],[-206.61,-172.63],[-198.87,-154.4],[-192.91,-135.69],[-187.98,-124.45],[-183.75,-115.52],[-178.54,-105.24],[-173.36,-96.06],[-169.31,-97.52],[-165.22,-105.72],[-156.59,-122.54],[-149.53,-146.4],[-149.02,-170.65],[-151.84,-193.38],[-155.16,-214.38],[-159.86,-233.37],[-163.32,-240.61],[-165.28,-243.77],[-170.33,-251.91],[-176.99,-261.22],[-185.68,-273.95],[-195.88,-304],[-208.81,-329.83],[-217.74,-344.45],[-222.8,-352.01],[-227.65,-361.99],[-232.89,-369.15]],"o":[[-242.17,-374.33],[-247.01,-355.49],[-251.43,-335.78],[-255.26,-316.01],[-255.95,-295.83],[-252.17,-275.46],[-246.76,-253.6],[-239.71,-223.84],[-229.05,-199.22],[-212.13,-179.24],[-200.66,-160.05],[-194.99,-142.22],[-189.1,-126.94],[-185.3,-118.74],[-180.61,-109.21],[-174.92,-98.67],[-170.95,-95.66],[-166.44,-102.55],[-160.08,-115.34],[-151.32,-138.07],[-148.6,-163.21],[-150.64,-185.74],[-153.98,-207.44],[-158.1,-227.34],[-162.68,-239.48],[-164.62,-242.76],[-168.08,-248.55],[-174.78,-258.24],[-182.55,-268.92],[-192.77,-289.4],[-203.98,-321.69],[-215.63,-341.51],[-221.3,-350.04],[-226.33,-357.88],[-231.01,-367.72],[-236.08,-374.45]],"v":[[-240,-380],[-245.45,-361.86],[-250,-342],[-254.11,-322.61],[-256,-303],[-253.54,-282.16],[-249,-263],[-242.19,-233.6],[-233,-207],[-217.74,-185.89],[-203,-165],[-196.93,-148.31],[-190,-129],[-186.64,-121.59],[-182,-112],[-176.73,-101.95],[-173,-96],[-167.88,-100.03],[-164,-108],[-153.96,-130.3],[-149,-156],[-149.83,-178.19],[-153,-201],[-156.63,-220.86],[-162,-238],[-163.97,-241.69],[-166,-245],[-172.56,-255.08],[-179,-264],[-188,-279],[-200,-313],[-213,-337],[-220,-348],[-224,-354],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":143,"s":[{"i":[[-235.43,-376.46],[-243.36,-369.91],[-247.73,-353.6],[-251.39,-337.61],[-254.45,-321.96],[-255.62,-298.97],[-251.64,-275.44],[-243.47,-236.82],[-234.16,-208.26],[-229.32,-202.43],[-228.55,-199.76],[-224.36,-193.78],[-221.58,-190.73],[-208.1,-175.33],[-196.84,-144.72],[-185.53,-119.18],[-173.47,-96.07],[-165.37,-104.46],[-158.38,-116.81],[-155.96,-125.28],[-152.59,-132.72],[-148.3,-163.89],[-154.29,-211.54],[-162.21,-239.7],[-172.67,-255.48],[-176.46,-260.25],[-178.18,-264.81],[-180.63,-266.6],[-181.34,-269],[-183.65,-270.53],[-184.56,-273.3],[-194.15,-294.32],[-197.9,-309.31],[-202.64,-317.3],[-206.41,-326.13],[-221.9,-350.57]],"o":[[-241.74,-375.12],[-246.35,-359.16],[-250.16,-342.88],[-253.53,-327.15],[-256.05,-307.5],[-253.41,-282.94],[-246.53,-252.26],[-236.68,-215.83],[-230.75,-202.59],[-228.37,-201.16],[-226.23,-196.55],[-222.5,-191.35],[-215.1,-182.61],[-198.6,-156.02],[-187.9,-124.16],[-178.96,-105.81],[-169.44,-95.43],[-161,-112.54],[-155.96,-122.41],[-154.19,-130.28],[-148.43,-148.84],[-151.86,-195.51],[-160,-232.25],[-167.45,-249.66],[-175.61,-259.92],[-177.9,-262.27],[-179.29,-266.42],[-181.76,-267.82],[-182.29,-270.44],[-184.58,-271.77],[-190.07,-282.13],[-198.01,-306.08],[-200.05,-314.56],[-205.59,-323.14],[-214.29,-340.34],[-231.54,-367.05]],"v":[[-240,-380],[-244.85,-364.53],[-249,-348],[-252.46,-332.38],[-255,-317],[-254.51,-290.95],[-250,-268],[-239,-223],[-231,-203],[-229,-202],[-228,-199],[-223,-192],[-221,-190],[-204,-167],[-190,-129],[-182,-112],[-173,-96],[-164,-107],[-157,-120],[-155,-128],[-152,-135],[-150,-179],[-158,-225],[-165,-245],[-175,-259],[-177,-261],[-179,-266],[-181,-267],[-182,-270],[-184,-271],[-185,-274],[-197,-303],[-199,-312],[-204,-320],[-208,-329],[-228,-361]],"c":true}],"h":1},{"t":144,"s":[{"i":[[-237.01,-377.34],[-246.28,-359.98],[-254.24,-326.01],[-251.86,-276.54],[-240.72,-222.51],[-224.85,-195.78],[-210.87,-178.61],[-197.98,-149.87],[-193.2,-138.51],[-193.27,-135.89],[-191.21,-133.49],[-190.71,-129.63],[-187.74,-125.55],[-174.99,-96.34],[-165.77,-103.73],[-157.89,-117.93],[-156.02,-125.14],[-152.62,-132.6],[-148.09,-157.44],[-152.51,-196.83],[-160.66,-236.41],[-169.68,-250.98],[-172.16,-256.77],[-174.63,-258.6],[-175.32,-261.05],[-177.61,-262.58],[-180.42,-267.68],[-186.34,-275.6],[-195.72,-302.76],[-205.95,-325.45],[-209.76,-330.59],[-211.87,-335.06],[-217.87,-344.52],[-221.31,-351.48],[-223.76,-353.6],[-227.61,-362.02]],"o":[[-243.35,-370.63],[-251.33,-337.71],[-256.7,-293.53],[-244.11,-241.33],[-230.59,-202.15],[-215.92,-184.69],[-202.46,-164.25],[-194.89,-139.63],[-192.66,-137.13],[-192.89,-134.63],[-190.27,-131.3],[-189.37,-126.54],[-184.1,-117.96],[-169.62,-95.42],[-161.42,-111.76],[-155.98,-122.37],[-154.18,-130.32],[-149.06,-146.4],[-149.79,-182.84],[-157.49,-223.19],[-166.48,-247.93],[-171.88,-254.34],[-173.29,-258.42],[-175.75,-259.8],[-176.31,-262.43],[-180.15,-265.31],[-183.96,-272.89],[-193.66,-290.59],[-202.29,-318.49],[-208.16,-330.35],[-211.03,-332.78],[-215.55,-341.37],[-221.23,-350.01],[-222.15,-353.34],[-226.32,-357.87],[-232.68,-370.46]],"v":[[-240,-380],[-249,-348],[-255,-316],[-248,-259],[-234,-209],[-221,-191],[-207,-172],[-195,-140],[-193,-138],[-193,-135],[-191,-133],[-190,-128],[-187,-124],[-173,-96],[-164,-107],[-157,-120],[-155,-128],[-152,-135],[-149,-171],[-155,-210],[-165,-245],[-171,-253],[-173,-258],[-175,-259],[-176,-262],[-178,-263],[-182,-270],[-188,-279],[-200,-313],[-208,-330],[-210,-331],[-213,-337],[-220,-348],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":145,"s":[{"i":[[-236.89,-377.17],[-243.28,-370.26],[-247.64,-353.76],[-251.56,-337.25],[-254.64,-321.06],[-254.5,-289.94],[-247.11,-255.4],[-244.35,-242.73],[-243.41,-237.64],[-240.4,-226.1],[-235.91,-213.66],[-230.16,-202.21],[-228.69,-199.97],[-219.33,-189.92],[-215.82,-184.08],[-207.32,-173.53],[-203.27,-163.11],[-194.69,-139.39],[-184.05,-118.07],[-174.93,-90.89],[-159.83,-115.82],[-149.91,-140.18],[-150.02,-179.79],[-156.48,-218.64],[-163.82,-242.87],[-168.2,-248.78],[-170.08,-253.63],[-172.65,-255.53],[-173.48,-258.25],[-184.26,-271.58],[-194.95,-297.22],[-206.57,-327.17],[-217.54,-344.16],[-221.31,-351.48],[-223.76,-353.6],[-227.73,-362.22]],"o":[[-241.71,-375.38],[-246.24,-359.45],[-250.25,-342.73],[-253.76,-326.42],[-255.95,-302.74],[-250.08,-266.28],[-244.64,-244.41],[-243.73,-239.35],[-241.7,-230.77],[-237.51,-217.54],[-232.54,-207.21],[-228.27,-200.23],[-225.02,-194.78],[-216.06,-185.82],[-211.49,-178.41],[-203.54,-166.15],[-198.35,-151.05],[-187.31,-123.32],[-175.13,-100.32],[-163.54,-105.86],[-153.9,-129.37],[-147.51,-165.95],[-154.33,-206.35],[-161.96,-236.31],[-166.67,-248.27],[-170.01,-251.54],[-171.3,-255.45],[-173.62,-256.83],[-178.83,-265.93],[-192.49,-287.92],[-201.39,-315.76],[-214.18,-338.9],[-221.27,-349.98],[-222.15,-353.34],[-226.27,-357.71],[-232.7,-370.49]],"v":[[-240,-380],[-244.76,-364.86],[-249,-348],[-252.66,-331.84],[-255,-316],[-252.29,-278.11],[-245,-246],[-244.04,-241.04],[-243,-236],[-238.95,-221.82],[-234,-210],[-229,-201],[-228,-199],[-217,-187],[-215,-183],[-205,-169],[-202,-160],[-189,-127],[-181,-112],[-168,-100],[-158,-120],[-149,-150],[-152,-192],[-160,-230],[-166,-247],[-169,-250],[-171,-255],[-173,-256],[-174,-259],[-188,-279],[-198,-306],[-211,-334],[-220,-348],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":146,"s":[{"i":[[-235.38,-375.62],[-243.42,-370.23],[-247.54,-354.07],[-251.51,-337.7],[-254.62,-321.35],[-255.31,-299.84],[-252.36,-279.26],[-248.26,-257.98],[-243.55,-237.08],[-241.44,-229.4],[-240.3,-226.95],[-234.55,-207.71],[-230.7,-203.04],[-226,-198.25],[-223.97,-194.22],[-214.85,-184.1],[-211.25,-179.35],[-209.58,-175.28],[-207.24,-173.41],[-198.6,-149.52],[-189.48,-129.16],[-175.35,-96.4],[-165.45,-103.4],[-159.41,-116.76],[-147.43,-153.66],[-153.35,-200.3],[-165.65,-249.89],[-178.64,-265.18],[-182,-269.57],[-194,-294.58],[-206.52,-327.08],[-217.82,-345.16],[-221.75,-350.63],[-221.77,-352.49],[-223.76,-353.61],[-225.9,-358.12]],"o":[[-241.9,-375.19],[-246.24,-359.67],[-250.2,-343.03],[-253.72,-326.86],[-255.63,-307.21],[-253.67,-285.86],[-249.73,-265.19],[-245.17,-243.93],[-241.79,-230.17],[-240.7,-227.79],[-237.43,-217.93],[-230.23,-203.2],[-228.76,-200.14],[-223.95,-195.69],[-219.71,-188.86],[-212.86,-179.69],[-209.85,-177.4],[-208.84,-173.65],[-200.94,-162.53],[-192.13,-133.31],[-183.95,-117.66],[-170.39,-95.55],[-160.56,-112.16],[-151.05,-135.91],[-149.93,-186.13],[-160.32,-233.75],[-177.9,-263.04],[-181.06,-268.41],[-189.93,-280.96],[-201.41,-315.75],[-214.42,-339.28],[-220.15,-350.32],[-222.31,-351.46],[-222.15,-353.34],[-225.04,-355.68],[-230.92,-366.71]],"v":[[-240,-380],[-244.83,-364.95],[-249,-348],[-252.61,-332.28],[-255,-316],[-254.49,-292.85],[-251,-272],[-246.71,-250.95],[-242,-231],[-241.07,-228.59],[-240,-226],[-231,-204],[-230,-202],[-225,-197],[-223,-193],[-213,-180],[-211,-179],[-209,-174],[-207,-173],[-194,-138],[-187,-124],[-173,-96],[-164,-106],[-158,-120],[-149,-174],[-156,-213],[-176,-261],[-180,-267],[-183,-271],[-198,-306],[-211,-334],[-220,-350],[-222,-351],[-222,-353],[-224,-354],[-227,-360]],"c":true}],"h":1},{"t":147,"s":[{"i":[[-234.31,-374.97],[-243.37,-370.45],[-247.49,-354.08],[-252.88,-331.89],[-255.73,-306.49],[-253,-281.55],[-247.65,-257],[-243.91,-238.5],[-240.41,-223.65],[-236.03,-213.28],[-230.61,-204.13],[-228.01,-200.68],[-226.49,-198.63],[-219.58,-189.99],[-210.45,-178.18],[-198.51,-149.04],[-186.87,-122.83],[-173.98,-96.16],[-167.77,-101.15],[-161,-111.9],[-157.3,-122.62],[-153.54,-129.49],[-150.79,-138.85],[-149.28,-174.31],[-152.93,-198.26],[-160.85,-237.75],[-169.2,-250.78],[-171.08,-255.63],[-173.65,-257.53],[-174.48,-260.25],[-185.36,-273.56],[-197.34,-304.93],[-211.3,-333.79],[-216.76,-342.6],[-218.94,-347.19],[-223.61,-355.14]],"o":[[-241.88,-375.41],[-246.18,-359.78],[-251.01,-339.89],[-255.24,-315.19],[-254.43,-289.56],[-249.61,-265.28],[-244.95,-243.92],[-241.64,-228.36],[-237.73,-216.71],[-232.47,-206.99],[-228.52,-201.36],[-227,-199.31],[-222.85,-193.9],[-213.38,-182.13],[-201.83,-163.48],[-189.8,-128.93],[-180.09,-109.11],[-169.86,-95.49],[-165.17,-105.34],[-157.93,-118.36],[-155.38,-127.6],[-151.38,-135.5],[-147.28,-157.21],[-152.22,-192.57],[-156.98,-220.02],[-167.69,-250.27],[-171.01,-253.54],[-172.3,-257.45],[-174.62,-258.83],[-179.81,-267.9],[-194.48,-292.18],[-204.83,-323.49],[-215.15,-342.34],[-218.05,-344.72],[-221.84,-352.16],[-230.28,-364.06]],"v":[[-240,-380],[-244.78,-365.11],[-249,-348],[-254.06,-323.54],[-255,-297],[-251.3,-273.42],[-246,-249],[-242.77,-233.43],[-239,-220],[-234.25,-210.13],[-229,-202],[-227.5,-199.99],[-226,-198],[-216.48,-186.06],[-208,-174],[-192,-134],[-183,-115],[-173,-96],[-166,-104],[-160,-114],[-156,-126],[-153,-131],[-150,-143],[-151,-185],[-154,-204],[-167,-249],[-170,-252],[-172,-257],[-174,-258],[-175,-261],[-189,-281],[-201,-314],[-215,-342],[-217,-343],[-220,-349],[-225,-357]],"c":true}],"h":1},{"t":148,"s":[{"i":[[-236.45,-377.5],[-243.52,-370.01],[-247.63,-353.75],[-251.56,-337.49],[-254.64,-321.42],[-255.16,-302.52],[-252.87,-285.24],[-251,-273.57],[-249.56,-264.06],[-246.9,-248.95],[-242.96,-230.75],[-236.91,-214.74],[-228.78,-200.65],[-225.1,-196.29],[-223.34,-195.42],[-222.22,-193.64],[-221.5,-191.61],[-220.08,-190.29],[-218.34,-189.43],[-217.22,-187.66],[-216.47,-185.61],[-203.93,-167.04],[-197.31,-145.34],[-192.43,-136.23],[-186.97,-121.9],[-173.52,-96.08],[-165.36,-104.65],[-153.37,-129.24],[-149.93,-179.72],[-160.78,-234.36],[-172.48,-256.98],[-179.23,-266.58],[-183.1,-270.79],[-185.19,-275.62],[-196.13,-300.37],[-220.64,-349.33]],"o":[[-241.95,-375.14],[-246.36,-359.32],[-250.24,-342.78],[-253.76,-326.82],[-255.48,-308.9],[-253.86,-290.69],[-251.47,-276.79],[-250.04,-267.2],[-247.92,-255.07],[-244.41,-236.79],[-239.27,-219.91],[-231.67,-205.11],[-225.68,-196.58],[-223.93,-195.71],[-222.47,-194.34],[-221.73,-192.28],[-220.66,-190.58],[-218.92,-189.72],[-217.48,-188.35],[-216.71,-186.29],[-208.21,-174.86],[-197.78,-149.51],[-194.69,-138.65],[-188.77,-127.98],[-180.45,-108.93],[-169.58,-95.44],[-158.51,-116.48],[-145.09,-163.38],[-158,-219.97],[-167.34,-250.9],[-177.71,-264.43],[-181.77,-270.06],[-184.87,-273.18],[-192.42,-287.97],[-208.49,-332.4],[-232.83,-369.73]],"v":[[-240,-380],[-244.94,-364.67],[-249,-348],[-252.66,-332.16],[-255,-316],[-254.51,-296.61],[-252,-280],[-250.52,-270.39],[-249,-261],[-245.65,-242.87],[-241,-225],[-234.29,-209.93],[-226,-197],[-224.51,-196],[-223,-195],[-221.98,-192.96],[-221,-191],[-219.5,-190.01],[-218,-189],[-216.96,-186.97],[-216,-185],[-199,-153],[-196,-142],[-191,-133],[-183,-114],[-173,-96],[-164,-107],[-151,-139],[-155,-205],[-165,-245],[-176,-262],[-181,-269],[-184,-272],[-186,-277],[-201,-313],[-230,-365]],"c":true}],"h":1},{"t":149,"s":[{"i":[[-235.8,-376.23],[-243.62,-369.94],[-247.49,-353.22],[-252.54,-332.53],[-255.56,-309.62],[-252.44,-278.72],[-245.19,-242.98],[-242.62,-231.58],[-242.32,-228],[-239.83,-221.73],[-235.83,-214.67],[-233.82,-208.36],[-230.1,-204.52],[-228.6,-200.79],[-226.59,-198.78],[-222.43,-192.83],[-218.67,-189.85],[-216.05,-185.49],[-212.2,-180.84],[-199.81,-154.59],[-194.21,-140.5],[-193.66,-136.51],[-190.66,-132.47],[-189.68,-127.56],[-186.73,-123.49],[-175.06,-96.33],[-168.34,-100.2],[-160.29,-113.74],[-154.44,-127],[-152.24,-194.04],[-163.57,-242.89],[-174.86,-260.63],[-185.08,-274.69],[-200.64,-316.69],[-212.47,-336.54],[-223.5,-354.73]],"o":[[-242.12,-375.08],[-246.31,-359.01],[-250.76,-339.73],[-254.94,-317.48],[-254.35,-290.98],[-247.86,-254.72],[-242.71,-232.83],[-242.43,-229.16],[-241.16,-224.39],[-237.17,-216.86],[-234.01,-211.03],[-232.1,-205.51],[-228.34,-202.1],[-227.48,-199.32],[-224.11,-195.51],[-220.34,-190.16],[-216.93,-187.66],[-213.69,-182.14],[-204.12,-168.48],[-195.89,-141.63],[-193.36,-138.49],[-192.36,-133.52],[-189.3,-129.45],[-188.46,-124.76],[-183.42,-116.69],[-170.09,-95.53],[-163.45,-108.14],[-156.85,-122.45],[-142.66,-159.73],[-160.41,-230.85],[-170.75,-256.03],[-181.67,-270.11],[-196.75,-295.88],[-210.39,-334.54],[-218.83,-346.77],[-231.62,-367.85]],"v":[[-240,-380],[-244.96,-364.47],[-249,-347],[-253.74,-325.01],[-255,-301],[-250.15,-266.72],[-243,-234],[-242.53,-230.37],[-242,-227],[-238.5,-219.3],[-235,-213],[-233,-207],[-229,-203],[-228,-200],[-226,-198],[-221,-191],[-218,-189],[-215,-184],[-211,-179],[-196,-142],[-194,-140],[-193,-135],[-190,-131],[-189,-126],[-186,-122],[-173,-96],[-166,-104],[-159,-117],[-153,-131],[-158,-220],[-168,-251],[-178,-265],[-188,-280],[-209,-332],[-214,-339],[-228,-362]],"c":true}],"h":1},{"t":150,"s":[{"i":[[-235.09,-375.53],[-243.55,-370.23],[-247.4,-353.46],[-252.55,-332.73],[-255.55,-310.23],[-253.19,-285.74],[-248.44,-260.31],[-245.64,-243.79],[-243.21,-231.81],[-239.84,-222.39],[-235.98,-214.95],[-234.27,-210.97],[-233.38,-207.62],[-232.45,-206.65],[-231.16,-206.22],[-230.57,-205.01],[-230.29,-203.38],[-227.08,-200.41],[-222.2,-192.79],[-215.1,-185.02],[-200.63,-152.93],[-185.66,-121.28],[-174.46,-96.24],[-166.73,-102.62],[-149.07,-137.56],[-153.29,-198.94],[-159.64,-227.93],[-162.83,-236.47],[-164.02,-242.78],[-180.65,-266.92],[-200.55,-316.53],[-211.95,-335.28],[-214.92,-341.24],[-218.78,-346.07],[-221.66,-352.87],[-225.83,-358.15]],"o":[[-242.1,-375.25],[-246.2,-359.33],[-250.77,-339.86],[-254.94,-317.92],[-254.47,-294.08],[-250.18,-268.86],[-246.29,-247.88],[-244.1,-235.75],[-241.1,-225.16],[-237.28,-217.28],[-234.58,-212.16],[-233.67,-208.7],[-232.87,-206.79],[-231.6,-206.36],[-230.68,-205.57],[-230.38,-203.92],[-229.06,-201.75],[-223.86,-196.19],[-217.7,-187.09],[-202.45,-166.8],[-188.76,-127.13],[-178.39,-106.83],[-169.47,-95.43],[-155.94,-123.9],[-146.78,-179.11],[-158.55,-221.71],[-161.09,-234.38],[-163.75,-239.33],[-171.04,-258.65],[-197.76,-297.35],[-209.96,-333.76],[-214.16,-338.88],[-217.15,-344.88],[-221.27,-350.01],[-224.09,-356.74],[-231.2,-366.68]],"v":[[-240,-380],[-244.88,-364.78],[-249,-347],[-253.74,-325.32],[-255,-302],[-251.68,-277.3],[-247,-252],[-244.87,-239.77],[-242,-228],[-238.56,-219.83],[-235,-213],[-233.97,-209.84],[-233,-207],[-232.03,-206.51],[-231,-206],[-230.47,-204.47],[-230,-203],[-226,-199],[-220,-190],[-213,-182],[-191,-132],[-182,-114],[-173,-96],[-164,-108],[-148,-157],[-157,-215],[-161,-234],[-163,-237],[-165,-245],[-188,-280],[-209,-332],[-213,-337],[-216,-343],[-220,-348],[-223,-355],[-227,-360]],"c":true}],"h":1},{"t":151,"s":[{"i":[[-237.58,-379.62],[-243.65,-369.86],[-247.48,-353.13],[-251.69,-336.33],[-254.78,-319.67],[-254.33,-295.46],[-249.45,-267.54],[-245.81,-244.26],[-241.22,-225.32],[-236.38,-214.43],[-232.23,-207.74],[-226.17,-199.2],[-219.25,-189.89],[-212.74,-181.22],[-207.49,-172.22],[-204.4,-165.15],[-202.73,-159.95],[-199.42,-151.43],[-194.72,-140.74],[-190.46,-130.96],[-186.06,-120.19],[-173.34,-96.05],[-162.79,-111.28],[-152.69,-130.95],[-148.33,-173.19],[-158.24,-220.4],[-166.08,-247.75],[-175.71,-262.46],[-186.19,-276.79],[-201.57,-318.63],[-211.53,-335.28],[-215.2,-342.06],[-219.91,-348.22],[-222.64,-354.84],[-226.97,-360.35],[-232.89,-369.56]],"o":[[-242.16,-375.04],[-246.31,-358.91],[-250.3,-341.75],[-253.93,-325.29],[-255.36,-304.69],[-251.38,-276.88],[-246.95,-251.1],[-242.95,-231.37],[-237.77,-217.06],[-233.61,-209.77],[-228.54,-202.51],[-221.52,-192.89],[-214.75,-184.11],[-209.11,-175.28],[-205.04,-166.92],[-203.25,-161.66],[-200.81,-154.81],[-196.37,-144.4],[-191.68,-134.11],[-187.65,-124],[-181.32,-110.55],[-167.73,-95.14],[-157.27,-122.75],[-145.68,-155.96],[-155.14,-206.26],[-164.32,-240.78],[-171.64,-257.75],[-182.6,-271.97],[-198.42,-299.45],[-210.3,-334.54],[-214.12,-339.27],[-218.08,-346.76],[-222.38,-352.25],[-225.05,-358.67],[-230.63,-366.21],[-236.69,-375.75]],"v":[[-240,-380],[-244.98,-364.38],[-249,-347],[-252.81,-330.81],[-255,-314],[-252.86,-286.17],[-248,-258],[-244.38,-237.82],[-239,-220],[-235,-212.1],[-231,-206],[-223.85,-196.05],[-217,-187],[-210.92,-178.25],[-206,-169],[-203.83,-163.4],[-202,-158],[-197.9,-147.92],[-193,-137],[-189.05,-127.48],[-184,-116],[-173,-96],[-161,-115],[-151,-137],[-152,-191],[-162,-233],[-169,-253],[-179,-267],[-189,-282],[-210,-334],[-212,-336],[-217,-345],[-221,-350],[-224,-357],[-228,-362],[-235,-373]],"c":true}],"h":1},{"t":152,"s":[{"i":[[-234.68,-374.7],[-243.52,-369.45],[-248.47,-352.28],[-252.55,-334.8],[-254.98,-316.85],[-254.17,-297.94],[-250.81,-278.4],[-248.42,-258.7],[-245.54,-239.84],[-240.39,-222.57],[-232.97,-208.21],[-223.55,-195.73],[-213.71,-183.62],[-207.66,-172.6],[-203.45,-161.9],[-199.4,-151.35],[-194.74,-140.79],[-191.45,-133.84],[-188.87,-128.87],[-183.57,-116.35],[-174.45,-96.23],[-168.8,-98.05],[-163.23,-110.36],[-157.44,-121.97],[-151.99,-133.45],[-148.55,-148.37],[-147.57,-166.64],[-149.34,-182.41],[-152.85,-198.09],[-159.09,-225.03],[-169.58,-254.76],[-176.82,-264.58],[-179.49,-268.47],[-186.28,-277.1],[-196.67,-300.8],[-215.89,-342.45]],"o":[[-241.79,-374.81],[-246.86,-358.19],[-251.31,-340.63],[-254.39,-322.91],[-255.02,-304.49],[-252.07,-284.9],[-249.15,-265.28],[-246.62,-245.98],[-242.4,-227.96],[-235.67,-212.69],[-226.95,-199.67],[-216.93,-187.7],[-209.18,-175.9],[-204.79,-165.6],[-200.78,-154.71],[-196.38,-144.39],[-192.27,-135.41],[-189.76,-130.57],[-186.59,-123.99],[-177.49,-102.48],[-170.69,-95.62],[-165.08,-105.42],[-159.44,-118.25],[-153.71,-129.57],[-149.51,-142.3],[-147.57,-160.54],[-148.41,-177.12],[-151.56,-192.9],[-156.55,-213.9],[-165.61,-245.46],[-175.82,-263.1],[-178.65,-267.27],[-183.82,-272.98],[-194,-291.01],[-206.65,-328.38],[-229.89,-364.82]],"v":[[-240,-380],[-245.19,-363.82],[-250,-346],[-253.47,-328.86],[-255,-311],[-253.12,-291.42],[-250,-272],[-247.52,-252.34],[-244,-234],[-238.03,-217.63],[-230,-204],[-220.24,-191.72],[-211,-179],[-206.22,-169.1],[-202,-158],[-197.89,-147.87],[-193,-137],[-190.6,-132.21],[-188,-127],[-180.53,-109.42],[-173,-96],[-166.94,-101.74],[-161,-115],[-155.57,-125.77],[-151,-137],[-148.06,-154.46],[-148,-172],[-150.45,-187.66],[-154,-203],[-162.35,-235.24],[-175,-262],[-177.74,-265.93],[-180,-269],[-189,-282],[-200,-310],[-225,-357]],"c":true}],"h":1},{"t":153,"s":[{"i":[[-237.41,-378.78],[-243.53,-369.46],[-248.46,-352.34],[-252.54,-334.87],[-255,-316.89],[-254.14,-298.02],[-250.79,-278.43],[-249.35,-265.12],[-248.55,-255.16],[-244.02,-233.4],[-234.43,-210.32],[-223.61,-195.79],[-213.69,-183.59],[-207.66,-172.58],[-203.45,-161.87],[-199.36,-151.29],[-194.73,-140.78],[-191.46,-133.81],[-188.9,-128.86],[-183.51,-116.54],[-174.25,-96.2],[-168.72,-98.19],[-163.1,-110.64],[-157.29,-122.29],[-152.02,-133.43],[-148.56,-176.68],[-160.57,-234.2],[-175.45,-262.72],[-187.08,-278.6],[-201.84,-319.13],[-211.52,-335.17],[-217.29,-345.7],[-224.7,-357.35],[-228.4,-363.68],[-230.76,-365.61],[-232.87,-370.12]],"o":[[-241.8,-374.79],[-246.86,-358.23],[-251.29,-340.68],[-254.39,-322.98],[-255,-304.56],[-252.04,-284.96],[-249.58,-268.54],[-248.84,-258.43],[-246.3,-242.24],[-238.08,-217.45],[-227.01,-199.74],[-216.95,-187.71],[-209.18,-175.9],[-204.79,-165.57],[-200.75,-154.65],[-196.36,-144.36],[-192.26,-135.38],[-189.78,-130.55],[-186.64,-124.19],[-177.32,-102.55],[-170.67,-95.62],[-164.93,-105.7],[-159.28,-118.58],[-153.66,-129.72],[-145.58,-155.96],[-156.38,-211.47],[-170.35,-256.7],[-183.52,-273.86],[-199.29,-301.22],[-210.33,-334.61],[-214.97,-341.14],[-222.5,-353.98],[-227.98,-362.56],[-229.15,-365.34],[-232.05,-367.68],[-236.06,-375.43]],"v":[[-240,-380],[-245.19,-363.84],[-250,-346],[-253.47,-328.92],[-255,-311],[-253.09,-291.49],[-250,-272],[-249.09,-261.77],[-248,-252],[-241.05,-225.42],[-230,-204],[-220.28,-191.75],[-211,-179],[-206.22,-169.08],[-202,-158],[-197.86,-147.82],[-193,-137],[-190.62,-132.18],[-188,-127],[-180.42,-109.54],[-173,-96],[-166.82,-101.95],[-161,-115],[-155.47,-126.01],[-151,-137],[-152,-192],[-167,-249],[-180,-269],[-190,-284],[-210,-334],[-212,-336],[-220,-350],[-227,-361],[-229,-365],[-231,-366],[-234,-372]],"c":true}],"h":1},{"t":154,"s":[{"i":[[-236.88,-379.14],[-243.42,-369.78],[-248.52,-353.06],[-252.55,-335.81],[-255,-317.8],[-254.54,-303.51],[-252.59,-289.69],[-249.39,-262.04],[-243.65,-230.48],[-237.99,-217.33],[-234.76,-210.79],[-232.51,-208.33],[-230.61,-205.83],[-227.95,-202.12],[-225.48,-198.08],[-224.49,-196.68],[-223.12,-196.16],[-219.56,-191.82],[-216.75,-187.07],[-205.13,-168.2],[-198.52,-148.69],[-191.52,-133.12],[-174.9,-96.31],[-163.58,-108.94],[-150.6,-139.34],[-148.76,-178.55],[-152.21,-196.5],[-154.86,-202.47],[-162.21,-239.31],[-173.85,-260.81],[-184.43,-274.17],[-200.95,-316.35],[-211.92,-335.18],[-214.83,-341.07],[-228.21,-361.6],[-233.76,-370.6]],"o":[[-241.66,-375],[-246.85,-358.81],[-251.3,-341.67],[-254.4,-323.88],[-255,-307.92],[-253.34,-294.4],[-250.56,-273.55],[-245.93,-240.5],[-239.11,-219.93],[-235.81,-212.76],[-233.2,-209.17],[-231.21,-206.66],[-228.95,-203.58],[-226.21,-199.37],[-224.93,-196.85],[-223.59,-196.34],[-220.83,-193.17],[-217.2,-189.07],[-209.96,-177.35],[-199.24,-152.23],[-194.21,-138.22],[-186.06,-122.08],[-168.21,-95.22],[-155.68,-126.28],[-145.65,-162.99],[-151.84,-192.92],[-153.08,-200.37],[-159.6,-220.72],[-170.86,-256.76],[-179.82,-269.69],[-198.2,-296.65],[-209.89,-333.73],[-214.18,-338.99],[-221.42,-351.96],[-232.15,-370.34],[-236.1,-374.43]],"v":[[-240,-380],[-245.13,-364.29],[-250,-347],[-253.48,-329.85],[-255,-312],[-253.94,-298.95],[-252,-285],[-247.66,-251.27],[-240,-222],[-236.9,-215.04],[-234,-210],[-231.86,-207.5],[-230,-205],[-227.08,-200.74],[-225,-197],[-224.04,-196.51],[-223,-196],[-218,-190],[-216,-186],[-201,-157],[-197,-145],[-188,-126],[-173,-96],[-159,-119],[-149,-147],[-151,-189],[-153,-200],[-155,-203],[-169,-253],[-176,-264],[-188,-280],[-209,-332],[-213,-337],[-216,-343],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":155,"s":[{"i":[[-237.41,-378.78],[-244.24,-367.06],[-250.43,-345.76],[-254.06,-323.69],[-253.77,-300.95],[-250.86,-272.06],[-246.14,-241.55],[-242.4,-228.42],[-240.17,-222.44],[-237.24,-216.13],[-234.59,-210.61],[-230.69,-206.3],[-226.29,-200.68],[-221.6,-194.15],[-216.41,-186.47],[-211.94,-181.01],[-209.15,-174.45],[-206.66,-169.66],[-204.46,-166.24],[-203.32,-162.25],[-202.62,-157.64],[-200.85,-153.79],[-198.55,-150.3],[-197.55,-147.54],[-197.21,-145.51],[-194.2,-138.56],[-189.65,-129.34],[-183.81,-116.68],[-174.01,-96.16],[-169.67,-98.56],[-155.84,-125.14],[-147.63,-175.76],[-163.71,-243.9],[-187.3,-279.04],[-202.97,-319.98],[-227.19,-360.68]],"o":[[-242.03,-373.68],[-248.44,-353.1],[-253.42,-330.96],[-254.23,-308.68],[-252.04,-283.04],[-247.91,-251.31],[-243.06,-230.7],[-240.95,-224.29],[-238.2,-218.32],[-235.44,-212.28],[-232.29,-208.21],[-227.69,-202.54],[-223.4,-196.91],[-218.11,-188.93],[-213.11,-183.03],[-209.95,-176.71],[-207.43,-170.79],[-205.17,-167.39],[-203.51,-163.68],[-202.88,-159.23],[-201.58,-154.9],[-199.34,-151.5],[-197.7,-148.28],[-197.31,-146.15],[-195.62,-141.64],[-191.21,-132.41],[-187.06,-124.1],[-177.29,-102.71],[-169.76,-95.47],[-162.74,-110.07],[-144.31,-155.59],[-158.02,-216.86],[-175.18,-264.52],[-199.91,-302.78],[-217.72,-347.57],[-236.06,-375.43]],"v":[[-240,-380],[-246.34,-360.08],[-252,-338],[-254.14,-316.19],[-253,-293],[-249.38,-261.69],[-244,-234],[-241.67,-226.35],[-239,-220],[-236.34,-214.2],[-234,-210],[-229.19,-204.42],[-225,-199],[-219.86,-191.54],[-215,-185],[-210.95,-178.86],[-208,-172],[-205.92,-168.52],[-204,-165],[-203.1,-160.74],[-202,-156],[-200.1,-152.65],[-198,-149],[-197.43,-146.84],[-197,-145],[-192.7,-135.49],[-188,-126],[-180.55,-109.7],[-173,-96],[-167,-103],[-154,-130],[-153,-197],[-171,-257],[-191,-286],[-211,-335],[-234,-372]],"c":true}],"h":1},{"t":156,"s":[{"i":[[-238.4,-379.79],[-243.39,-371.14],[-246.66,-356.32],[-250.49,-341.98],[-253.67,-328.61],[-254.19,-304.68],[-250.95,-278.26],[-248.96,-258.77],[-247.22,-242.88],[-239.85,-220.66],[-225.44,-199.23],[-215.01,-185.09],[-208.82,-174.21],[-201.89,-157.58],[-193.66,-137.5],[-189.22,-128.4],[-186.08,-122.2],[-180.82,-111.01],[-173.64,-96.1],[-169.08,-98.15],[-163.79,-107.38],[-159.9,-115.79],[-156.83,-123.89],[-151.6,-137.6],[-147,-157.33],[-148.4,-179.59],[-154.8,-203.79],[-161.05,-228.35],[-167.74,-250.94],[-173.28,-258.81],[-174.88,-263.34],[-180.34,-269.71],[-189.48,-283.01],[-203.96,-322.18],[-220.59,-351.06],[-231.9,-369.07]],"o":[[-242.06,-375.73],[-245.69,-361.44],[-249.15,-346.42],[-252.75,-333.07],[-254.71,-314.05],[-252.3,-286.78],[-249.35,-264.33],[-247.9,-248.04],[-243.63,-228.55],[-230.76,-206],[-217.35,-188.48],[-210.74,-177.95],[-204.55,-164.33],[-196.44,-144.17],[-190.18,-130.3],[-187.17,-124.34],[-183.5,-116.96],[-175.89,-100.58],[-171.18,-95.71],[-165.39,-103.99],[-161.24,-112.59],[-157.7,-121.44],[-153.85,-131.43],[-148.18,-150.55],[-147,-171.7],[-152.3,-195.64],[-159.18,-220.13],[-165.33,-243.75],[-171.66,-258.22],[-175.02,-261.68],[-177.54,-267.28],[-185.88,-277.35],[-200.51,-304.87],[-215.91,-344.21],[-228.41,-363.36],[-236.3,-376.06]],"v":[[-240,-380],[-244.54,-366.29],[-248,-351],[-251.62,-337.53],[-254,-324],[-253.25,-295.73],[-250,-270],[-248.43,-253.41],[-246,-238],[-235.3,-213.33],[-220,-192],[-212.88,-181.52],[-207,-170],[-199.16,-150.88],[-191,-132],[-188.2,-126.37],[-185,-120],[-178.35,-105.8],[-173,-96],[-167.23,-101.07],[-163,-109],[-158.8,-118.61],[-156,-126],[-149.89,-144.08],[-147,-164],[-150.35,-187.62],[-157,-212],[-163.19,-236.05],[-171,-257],[-174,-260],[-176,-265],[-182,-272],[-192,-288],[-212,-337],[-225,-358],[-235,-374]],"c":true}],"h":1},{"t":157,"s":[{"i":[[-238.32,-379.7],[-243.08,-372.03],[-246.08,-359.11],[-247.51,-354.19],[-248.93,-352.26],[-251.2,-343.03],[-253.66,-328.7],[-254.19,-304.97],[-251.07,-274.1],[-248.83,-254.6],[-246.18,-241.32],[-244.59,-234.58],[-244.33,-231],[-243.16,-228.34],[-241.36,-225.87],[-236.89,-213.98],[-232.15,-208.57],[-222.55,-195.84],[-216.76,-187.7],[-214.24,-185.41],[-212.89,-182.54],[-208.14,-173.14],[-203.7,-161.4],[-188.3,-126.57],[-173.57,-96.09],[-165.75,-104.23],[-154.41,-127.67],[-146.8,-155.72],[-154.71,-203.23],[-162.27,-231.26],[-168.43,-252.59],[-178.76,-268.48],[-189.29,-282.85],[-204.15,-322.12],[-220.52,-350.96],[-231.9,-369.08]],"o":[[-241.79,-376.22],[-245.22,-363.47],[-247.04,-354.81],[-248.45,-352.92],[-250.12,-347.67],[-252.97,-333.54],[-254.65,-314.92],[-252.4,-284.56],[-249.49,-259.19],[-247.18,-245.67],[-244.68,-235.83],[-244.42,-232.17],[-243.73,-229.16],[-241.98,-226.7],[-239.25,-220.83],[-233.34,-210.27],[-226.85,-201.37],[-217.56,-189.04],[-215.84,-185.65],[-213.15,-183.54],[-209.99,-177.53],[-205.29,-165.28],[-196.39,-142.51],[-178.18,-104.99],[-169.22,-95.39],[-159.06,-118.27],[-148.92,-144.37],[-147.31,-182.59],[-160.47,-225.75],[-166.38,-244.9],[-174.57,-263.62],[-185.64,-278.07],[-200.84,-304.83],[-215.8,-344.2],[-228.42,-363.37],[-236.33,-376.11]],"v":[[-240,-380],[-244.15,-367.75],[-247,-355],[-247.98,-353.56],[-249,-352],[-252.09,-338.28],[-254,-324],[-253.29,-294.76],[-250,-264],[-248,-250.13],[-245,-237],[-244.5,-233.38],[-244,-230],[-242.57,-227.52],[-241,-225],[-235,-212],[-231,-207],[-219,-191],[-216,-186],[-214,-185],[-212,-181],[-207,-170],[-202,-157],[-181,-111],[-173,-96],[-163,-110],[-152,-135],[-147,-166],[-159,-220],[-164,-237],[-172,-259],[-182,-273],[-192,-288],[-212,-337],[-225,-358],[-235,-374]],"c":true}],"h":1},{"t":158,"s":[{"i":[[-236.84,-376.87],[-242.14,-375.22],[-244.23,-367.8],[-248.72,-351.95],[-253.51,-330.89],[-254.12,-304.95],[-250.91,-275],[-246.3,-236.47],[-237.42,-215.48],[-231.39,-208.02],[-226.55,-201.8],[-223.94,-197.21],[-215.53,-187.24],[-208.11,-172.34],[-204.22,-161.1],[-200.03,-153.46],[-197.34,-144.95],[-190.56,-132.22],[-175.19,-96.35],[-165.76,-104.2],[-158.54,-119.92],[-155.2,-126.5],[-154.59,-130.44],[-150.04,-141.25],[-150.93,-190.06],[-165.82,-247.68],[-177.14,-266.41],[-181.24,-272.32],[-183.75,-274.62],[-185.23,-277.86],[-194.81,-293.74],[-204.81,-320.16],[-213.11,-337.86],[-218.5,-348.61],[-223.49,-354.65],[-227.36,-362.46]],"o":[[-241.27,-377.57],[-243.62,-370.34],[-246.72,-358.75],[-252.11,-338.02],[-254.67,-314.7],[-252.24,-285.1],[-248.65,-250.19],[-240.51,-222.36],[-233.64,-211.53],[-228,-203.1],[-224.11,-198.96],[-219.5,-191.49],[-209.91,-177.81],[-204.92,-164.27],[-202.13,-155.79],[-197.82,-148.19],[-193.82,-137.21],[-186.01,-122.95],[-169.26,-95.39],[-160.44,-115.37],[-156.89,-125.37],[-154.38,-128.54],[-152.28,-136.53],[-143.08,-172.95],[-162.64,-231.36],[-173.99,-262.65],[-180.46,-271.04],[-182.15,-274.33],[-184.83,-276.29],[-190.92,-286.25],[-201.41,-310.83],[-210.87,-333.15],[-217.5,-345.67],[-221.4,-353.23],[-226.58,-359.47],[-232.18,-369.91]],"v":[[-240,-380],[-242.88,-372.78],[-245,-365],[-250.42,-344.98],[-254,-324],[-253.18,-295.03],[-250,-265],[-242,-226],[-236,-214],[-230,-206],[-225,-200],[-223,-196],[-213,-183],[-206,-167],[-203,-158],[-199,-151],[-196,-142],[-188,-127],[-173,-96],[-163,-110],[-157,-125],[-155,-127],[-154,-132],[-149,-146],[-158,-215],[-172,-259],[-179,-269],[-182,-274],[-184,-275],[-186,-279],[-198,-302],[-208,-327],[-216,-343],[-220,-351],[-225,-357],[-229,-365]],"c":true}],"h":1},{"t":159,"s":[{"i":[[-234.15,-373.91],[-242.14,-375.23],[-244.24,-367.75],[-246.31,-360.68],[-248.43,-354.19],[-253.12,-329.56],[-253.06,-293.67],[-250.82,-266.67],[-248.35,-246.69],[-243.61,-229.51],[-236.06,-214.49],[-226.48,-201.27],[-216.61,-188.55],[-207.68,-171.18],[-199.75,-150.88],[-193.03,-136.54],[-186.87,-123.81],[-180.22,-109.85],[-173.6,-96.1],[-169.5,-97.43],[-165.42,-106],[-160.75,-115.61],[-155.92,-125.58],[-153.69,-131.61],[-152.42,-135.67],[-149.56,-145.09],[-147.23,-156.96],[-147.25,-176.1],[-151.98,-194.07],[-163.75,-242.2],[-181.76,-272.84],[-194.65,-292.38],[-198,-303.4],[-201.23,-309.9],[-205.17,-321.51],[-217.77,-346.21]],"o":[[-241.26,-377.61],[-243.63,-370.3],[-245.59,-362.83],[-247.73,-356.36],[-251.83,-340.98],[-253.73,-305.91],[-251.4,-273.83],[-249.3,-253.1],[-245.58,-235.01],[-238.85,-219.25],[-229.93,-205.49],[-219.82,-192.8],[-210.56,-177.99],[-202.28,-157.62],[-194.84,-140.38],[-189.04,-128.25],[-182.66,-115.3],[-175.69,-100.25],[-171.03,-95.68],[-166.69,-102.59],[-162.54,-112.08],[-157.44,-122.36],[-154.23,-130.03],[-152.79,-134.43],[-150.69,-141.11],[-147.83,-153.02],[-146.51,-169.56],[-149.98,-188.35],[-159.77,-220.76],[-176.14,-265.94],[-190.74,-286.82],[-197.95,-300.26],[-199.8,-308.07],[-203.95,-317.29],[-211.74,-337.61],[-229.28,-364.29]],"v":[[-240,-380],[-242.88,-372.77],[-245,-365],[-247.02,-358.52],[-249,-352],[-253.42,-317.74],[-252,-281],[-250.06,-259.88],[-247,-241],[-241.23,-224.38],[-233,-210],[-223.15,-197.03],[-214,-184],[-204.98,-164.4],[-197,-145],[-191.04,-132.4],[-184,-118],[-177.95,-105.05],[-173,-96],[-168.09,-100.01],[-164,-109],[-159.1,-118.99],[-155,-128],[-153.24,-133.02],[-152,-137],[-148.69,-149.05],[-147,-161],[-148.62,-182.22],[-154,-201],[-172,-258],[-187,-281],[-197,-298],[-199,-306],[-202,-312],[-207,-326],[-224,-356]],"c":true}],"h":1},{"t":160,"s":[{"i":[[-237.23,-378.9],[-243.17,-371.32],[-247.65,-357.18],[-252.75,-334.14],[-253.88,-305.59],[-251.1,-266.57],[-244.62,-229.11],[-234.36,-211.84],[-226.2,-201.85],[-223.05,-197.75],[-221.49,-195.66],[-211.09,-178.38],[-200.52,-150.98],[-191.94,-134],[-186.27,-122.78],[-180.37,-109.94],[-173.74,-96.12],[-169.96,-96.99],[-166.46,-104.05],[-162.46,-111.74],[-158.65,-118.47],[-157.26,-122.51],[-156.49,-126.73],[-155.46,-128.85],[-154.19,-130.51],[-150.47,-140.91],[-147.31,-155.43],[-147.68,-181.58],[-156.04,-207.79],[-164.04,-236],[-172.95,-260.86],[-181.03,-272.99],[-183.18,-276.15],[-188.32,-282.18],[-203.42,-318.71],[-226.98,-360.75]],"o":[[-241.59,-375.73],[-246.2,-362.04],[-251.31,-343.1],[-254.04,-315.39],[-251.79,-280.52],[-247.52,-240.87],[-237.01,-215.42],[-228.95,-205.06],[-223.55,-198.42],[-222.01,-196.37],[-214.83,-186.64],[-203.93,-160.55],[-193.55,-137.11],[-188.3,-126.83],[-182.75,-115.38],[-175.87,-100.31],[-171.23,-95.71],[-167.58,-101.15],[-163.88,-109.25],[-159.84,-116.34],[-157.52,-121.15],[-156.75,-125.3],[-155.87,-128.35],[-154.63,-129.93],[-152.06,-135.95],[-148.09,-150.65],[-146.16,-172.18],[-152.62,-199.38],[-161.56,-226.82],[-169.73,-253.02],[-178.47,-269.24],[-182.8,-274.84],[-186.54,-279.65],[-199.56,-301.05],[-217.49,-347.08],[-236.11,-375.37]],"v":[[-240,-380],[-244.69,-366.68],[-249,-352],[-253.4,-324.76],[-253,-295],[-249.31,-253.72],[-239,-219],[-231.66,-208.45],[-224,-199],[-222.53,-197.06],[-221,-195],[-207.51,-169.46],[-195,-140],[-190.12,-130.42],[-184,-118],[-178.12,-105.12],[-173,-96],[-168.77,-99.07],[-165,-107],[-161.15,-114.04],[-158,-120],[-157,-123.9],[-156,-128],[-155.04,-129.39],[-154,-131],[-149.28,-145.78],[-147,-160],[-150.15,-190.48],[-159,-218],[-166.88,-244.51],[-177,-267],[-182,-274],[-184,-277],[-190,-285],[-211,-334],[-234,-372]],"c":true}],"h":1},{"t":161,"s":[{"i":[[-236.79,-378.81],[-245.96,-362.51],[-253.39,-332.01],[-253.97,-305.01],[-251.61,-278.59],[-249.26,-251.45],[-243.34,-226.88],[-239.1,-219.97],[-237.28,-218.48],[-235.57,-215.15],[-233.82,-211.17],[-232.04,-208.94],[-230.37,-207.5],[-227.14,-203.08],[-223.35,-197.83],[-215.25,-185.74],[-207.51,-169.18],[-200.61,-153.05],[-192.19,-136.34],[-186.43,-125.11],[-184.83,-119.03],[-181.66,-114.46],[-174.38,-96.24],[-161.74,-112.08],[-149.5,-143.74],[-152.24,-195.7],[-166.98,-249.8],[-178.31,-267.88],[-181.31,-273.02],[-186.98,-280.77],[-205.55,-325.24],[-216.26,-344.85],[-219.39,-348],[-220.27,-351.72],[-223.34,-354.94],[-230.39,-365.93]],"o":[[-242.76,-371.75],[-251.27,-342.64],[-254.42,-313.46],[-252.57,-287.57],[-250.34,-260.76],[-245.76,-234.51],[-239.71,-220.48],[-237.88,-218.97],[-236.16,-216.57],[-234.4,-212.45],[-232.6,-209.44],[-230.92,-207.97],[-228.47,-204.91],[-224.58,-199.54],[-218.24,-190.9],[-209.88,-174.88],[-203.02,-158.12],[-195.2,-142.16],[-188,-128.01],[-184.29,-120.45],[-183.46,-115.66],[-177.95,-106.3],[-168.72,-95.24],[-154.22,-130.02],[-143.06,-179.13],[-163.64,-233.31],[-174.99,-264.7],[-180.97,-271.22],[-184.56,-277.64],[-199.73,-301.16],[-215.66,-343.16],[-217.66,-347.04],[-220.78,-350.28],[-221.54,-353.96],[-227.27,-361.25],[-235.36,-373.69]],"v":[[-240,-380],[-248.62,-352.57],[-254,-321],[-253.27,-296.29],[-251,-270],[-247.51,-242.98],[-240,-221],[-238.49,-219.47],[-237,-218],[-234.98,-213.8],[-233,-210],[-231.48,-208.46],[-230,-207],[-225.86,-201.31],[-222,-196],[-212.57,-180.31],[-205,-163],[-197.91,-147.6],[-189,-130],[-185,-122],[-184,-117],[-181,-113],[-173,-96],[-158,-121],[-148,-152],[-159,-218],[-173,-261],[-180,-270],[-182,-274],[-189,-284],[-215,-342],[-217,-346],[-220,-349],[-221,-353],[-224,-356],[-233,-370]],"c":true}],"h":1},{"t":162,"s":[{"i":[[-237.53,-379.25],[-246.56,-360.82],[-253.89,-328.16],[-253.47,-304.48],[-251.32,-284.67],[-250.38,-263.77],[-248.44,-244.47],[-238.49,-218.89],[-219.78,-194.34],[-208.22,-171.94],[-199.5,-148.95],[-191.9,-133.97],[-186.22,-122.76],[-180.21,-109.78],[-173.5,-96.09],[-167.02,-101.25],[-158.06,-121.39],[-150.66,-140.36],[-146,-166.36],[-149.43,-188.54],[-156.66,-210.43],[-167.49,-248.43],[-178.19,-268.29],[-184.7,-277.67],[-188.16,-283.69],[-191.39,-286.93],[-199.24,-304.71],[-203.88,-318.13],[-207.85,-325.35],[-210.66,-334.33],[-218.82,-348.16],[-222.75,-353.62],[-224.3,-356.89],[-228.79,-364.31],[-231.75,-367.62],[-233.18,-370.7]],"o":[[-243.11,-370.99],[-251.95,-339.41],[-254.06,-310.89],[-252.1,-291.37],[-250.66,-270.79],[-249.27,-250.61],[-244.1,-227.97],[-226.33,-202.08],[-210.97,-178.97],[-202.48,-156.93],[-193.54,-137.09],[-188.24,-126.8],[-182.71,-115.24],[-175.6,-100.21],[-170.48,-95.55],[-160.81,-114.17],[-153.66,-132.19],[-146.83,-157.45],[-147.6,-181.82],[-153.96,-202.85],[-163.66,-233.05],[-173.8,-263.23],[-182.63,-274.92],[-187.96,-282.4],[-189.75,-286.18],[-196.19,-295.35],[-203.12,-314.97],[-205.96,-323.45],[-210.24,-330.87],[-214.71,-342.38],[-221.15,-353.33],[-223.64,-355],[-227.06,-361.27],[-230.15,-367.33],[-232.71,-369.1],[-235.69,-374.68]],"v":[[-240,-380],[-249.25,-350.11],[-254,-317],[-252.78,-297.92],[-251,-278],[-249.82,-257.19],[-247,-239],[-232.41,-210.48],[-215,-186],[-205.35,-164.44],[-195,-140],[-190.07,-130.39],[-184,-118],[-177.91,-104.99],[-173,-96],[-163.91,-107.71],[-157,-124],[-148.75,-148.91],[-147,-176],[-151.69,-195.69],[-159,-218],[-172,-259],[-180,-271],[-187,-281],[-189,-285],[-192,-288],[-202,-312],[-205,-321],[-209,-328],[-212,-337],[-221,-353],[-223,-354],[-225,-358],[-230,-367],[-232,-368],[-234,-372]],"c":true}],"h":1},{"t":163,"s":[{"i":[[-237.65,-378.93],[-246.6,-360.87],[-253.97,-328.07],[-253.7,-305.6],[-252.37,-287.76],[-250.44,-260.18],[-245.33,-233.05],[-241.18,-224.09],[-240.33,-221.74],[-239.48,-220.68],[-238.12,-220.2],[-237,-218.01],[-235.7,-215.06],[-232.26,-210.02],[-228.17,-204.56],[-225.83,-201.4],[-224.21,-199.21],[-220.34,-194.08],[-213.67,-184.41],[-208.89,-171.58],[-193.41,-139.66],[-175.29,-96.4],[-157.89,-121.81],[-148.05,-147.15],[-154.16,-200.14],[-167.77,-251.32],[-177.9,-268.55],[-180.75,-271.62],[-182.25,-274.92],[-189.46,-284.58],[-201.12,-308.18],[-204.45,-319.63],[-207.94,-325.53],[-210.75,-333.46],[-226.64,-359.98],[-234.27,-372.84]],"o":[[-243.11,-371.09],[-252.03,-339.36],[-254.01,-311.47],[-252.87,-293.74],[-251.28,-270.66],[-247.47,-241.38],[-241.51,-224.97],[-240.59,-222.48],[-239.92,-220.83],[-238.58,-220.37],[-237.4,-218.98],[-236.15,-216.05],[-233.67,-211.99],[-229.5,-206.31],[-226.47,-202.29],[-224.69,-199.86],[-221.78,-196.69],[-216.49,-188.1],[-209.52,-175.94],[-199.77,-149.51],[-182.06,-115.82],[-167.75,-95.07],[-152.69,-134.59],[-144.19,-187.04],[-165.11,-236.73],[-175.54,-265.89],[-179.15,-271.33],[-181.72,-273.11],[-186.08,-280.46],[-196.79,-297.35],[-204.49,-317.33],[-205.99,-323.49],[-210.18,-330.75],[-218.04,-348.29],[-233.8,-371.26],[-236.89,-377.03]],"v":[[-240,-380],[-249.31,-350.12],[-254,-317],[-253.28,-299.67],[-252,-282],[-248.95,-250.78],[-242,-226],[-240.88,-223.28],[-240,-221],[-239.03,-220.52],[-238,-220],[-236.57,-217.03],[-235,-214],[-230.88,-208.16],[-227,-203],[-225.26,-200.63],[-224,-199],[-219,-192],[-212,-181],[-207,-167],[-185,-122],[-173,-96],[-157,-124],[-147,-158],[-161,-223],[-174,-263],[-179,-271],[-181,-272],[-183,-276],[-192,-289],[-204,-316],[-205,-321],[-209,-328],[-212,-336],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":164,"s":[{"i":[[-237.65,-378.93],[-247.71,-358.76],[-253.94,-318.66],[-252.35,-288.72],[-251.55,-267.58],[-248.4,-244.03],[-240.27,-223.1],[-231.97,-210.37],[-224.39,-199.46],[-221,-194.92],[-219.39,-193.61],[-218.34,-191.78],[-217.38,-189.65],[-212.41,-180.38],[-206.79,-167.26],[-197.56,-146.83],[-184.88,-121.68],[-177.88,-105.53],[-173.68,-96.12],[-166.62,-101.99],[-157.44,-122.91],[-152.59,-135.18],[-147.52,-152.61],[-146.57,-174.15],[-150.92,-192.47],[-157.4,-212.87],[-163.86,-233.26],[-169.16,-250.08],[-174.04,-262.8],[-178.47,-269.8],[-181.81,-274.3],[-189.34,-284.46],[-203.17,-313.44],[-210.14,-332.13],[-226.71,-360.09],[-234.33,-372.94]],"o":[[-243.99,-370.18],[-252.69,-333],[-252.57,-295.93],[-251.84,-274.54],[-250.27,-252.23],[-243.4,-229.46],[-234.52,-214.14],[-226.91,-203.03],[-221.56,-195.36],[-219.92,-194.04],[-218.65,-192.46],[-217.71,-190.38],[-214.51,-184.75],[-208.55,-171.63],[-201.62,-154.99],[-189.19,-130.18],[-179.53,-109.72],[-174.95,-98.73],[-170.4,-95.54],[-160.14,-115.68],[-154.83,-129.37],[-148.94,-146.8],[-146.11,-167.17],[-148.98,-186.81],[-155.22,-205.99],[-161.72,-226.51],[-167.65,-245.18],[-172.36,-258.88],[-177.32,-268.15],[-180.72,-272.87],[-186.03,-280.32],[-198.16,-299.52],[-208.64,-328.52],[-217.83,-348.13],[-233.59,-370.94],[-236.89,-377.03]],"v":[[-240,-380],[-250.2,-345.88],[-253,-303],[-252.09,-281.63],[-251,-261],[-245.9,-236.74],[-237,-218],[-229.44,-206.7],[-222,-196],[-220.46,-194.48],[-219,-193],[-218.03,-191.08],[-217,-189],[-210.48,-176],[-205,-163],[-193.38,-138.5],[-181,-113],[-176.41,-102.13],[-173,-96],[-163.38,-108.84],[-157,-124],[-150.77,-140.99],[-147,-158],[-147.78,-180.48],[-153,-199],[-159.56,-219.69],[-166,-240],[-170.76,-254.48],[-176,-266],[-179.59,-271.34],[-183,-276],[-192,-289],[-207,-324],[-212,-336],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":165,"s":[{"i":[[-237.7,-378.98],[-243.17,-372.09],[-246.81,-359.41],[-250.18,-346.85],[-252.7,-334.24],[-253.39,-315.52],[-252.23,-294.66],[-251.67,-273.65],[-250.33,-253.21],[-245.91,-235.83],[-238.86,-221.54],[-229.97,-208.22],[-220.65,-195.52],[-210.54,-176.09],[-200.7,-151.88],[-191.94,-135.52],[-185.75,-123.84],[-180.43,-111.04],[-174.15,-96.2],[-169.65,-97.3],[-165.48,-105.75],[-154.3,-129.85],[-145.45,-165.14],[-149.74,-192.18],[-157.59,-213.95],[-169.01,-254.61],[-180.71,-272.61],[-189.42,-284.67],[-192.27,-291.71],[-195.37,-294.81],[-197.91,-301.5],[-204.84,-318.05],[-219.21,-350.04],[-227.34,-362.98],[-231.67,-367.93],[-234.07,-372.51]],"o":[[-241.76,-376.14],[-245.69,-363.73],[-249.08,-350.98],[-251.98,-338.48],[-253.52,-322.69],[-252.74,-301.5],[-251.75,-280.79],[-250.95,-259.86],[-247.73,-241.06],[-241.47,-226.07],[-233.14,-212.46],[-223.72,-199.75],[-213.69,-183.66],[-204.05,-160.2],[-194.06,-139.34],[-187.78,-127.76],[-182.61,-116.94],[-176.2,-100.67],[-171.16,-95.67],[-166.81,-102.34],[-159.32,-119.28],[-147.36,-152.78],[-147.69,-185.21],[-154.69,-206.55],[-165.05,-235.77],[-178.54,-270.14],[-185.91,-280.3],[-192.77,-290.3],[-193.66,-294.17],[-197.4,-298.64],[-201.93,-310.71],[-211.73,-337.02],[-226.76,-361.11],[-229.45,-366.23],[-233.76,-371.19],[-236.79,-376.86]],"v":[[-240,-380],[-244.43,-367.91],[-248,-355],[-251.08,-342.67],[-253,-330],[-253.07,-308.51],[-252,-288],[-251.31,-266.76],[-249,-247],[-243.69,-230.95],[-236,-217],[-226.84,-203.98],[-218,-191],[-207.3,-168.15],[-196,-143],[-189.86,-131.64],[-184,-120],[-178.32,-105.85],[-173,-96],[-168.23,-99.82],[-164,-109],[-150.83,-141.31],[-147,-179],[-152.21,-199.37],[-160,-221],[-176,-266],[-183,-276],[-192,-289],[-193,-293],[-196,-296],[-199,-304],[-207,-324],[-226,-360],[-228,-364],[-233,-370],[-235,-374]],"c":true}],"h":1},{"t":166,"s":[{"i":[[-237.77,-379.1],[-245.42,-364.78],[-252.41,-338.24],[-253.34,-317.14],[-252.26,-298.08],[-251.59,-279.01],[-250.73,-260.77],[-245,-233.19],[-230.59,-208.78],[-219.87,-193.44],[-213.07,-180.8],[-207.24,-167.08],[-201.25,-153.41],[-195.2,-141.72],[-188.51,-128.51],[-182.31,-114.55],[-173.73,-96.13],[-169.65,-97.29],[-165.49,-105.73],[-156.47,-125.44],[-147.96,-150.37],[-146.82,-181.82],[-156.08,-208.77],[-164.8,-235.9],[-172.56,-260.39],[-177.17,-268.01],[-178.75,-270.74],[-179.3,-271.91],[-182.45,-275.16],[-187.3,-283.5],[-191.66,-290.39],[-195.44,-294.96],[-197.91,-301.63],[-203.98,-314.77],[-214.5,-340.84],[-230.5,-366.81]],"o":[[-242.47,-373.15],[-250.39,-347.32],[-253.46,-323.6],[-252.74,-304.38],[-251.72,-285.37],[-251.09,-266.71],[-248.45,-242.8],[-236.07,-216.18],[-222.33,-197.29],[-215.24,-185.2],[-209.11,-171.63],[-203.31,-157.97],[-197.2,-145.47],[-190.86,-133.24],[-185.2,-121.23],[-176.58,-102],[-171.16,-95.67],[-166.82,-102.32],[-160.24,-117.25],[-150.33,-142],[-145.53,-172.18],[-152.1,-200.11],[-162.51,-227.21],[-169.82,-252.49],[-176.55,-266.9],[-178.27,-269.93],[-179.78,-271.82],[-180.61,-273.95],[-185.16,-279.3],[-190.81,-288.66],[-193.47,-293.92],[-197.19,-298.21],[-201.45,-309.36],[-210.25,-331.04],[-225.04,-358.41],[-236.66,-376.66]],"v":[[-240,-380],[-247.91,-356.05],[-253,-330],[-253.04,-310.76],[-252,-292],[-251.34,-272.86],[-250,-255],[-240.53,-224.69],[-225,-201],[-217.55,-189.32],[-211,-176],[-205.27,-162.53],[-199,-149],[-193.03,-137.48],[-186,-123],[-179.44,-108.27],[-173,-96],[-168.23,-99.81],[-164,-109],[-153.4,-133.72],[-147,-159],[-149.46,-190.97],[-160,-220],[-167.31,-244.2],[-176,-266],[-177.72,-268.97],[-179,-271],[-180,-273],[-183,-276],[-189,-286],[-193,-293],[-196,-296],[-199,-304],[-206,-320],[-220,-350],[-235,-374]],"c":true}],"h":1},{"t":167,"s":[{"i":[[-237.77,-379.1],[-245.4,-364.93],[-252.34,-338.23],[-253.31,-316.4],[-252.23,-297.2],[-251.68,-277.94],[-250.86,-259.57],[-248.1,-243.11],[-243.41,-228.33],[-238.59,-220.26],[-234.32,-214.87],[-224.74,-201.29],[-214.05,-183.24],[-202.89,-157.81],[-190.76,-133.21],[-181.86,-113.55],[-173.79,-96.14],[-169.2,-97.7],[-164.52,-107.62],[-158.32,-121.45],[-152.36,-136.87],[-149.93,-145.42],[-148.3,-150.3],[-147.64,-153.82],[-147.1,-156.31],[-151.21,-195.89],[-163.61,-232.61],[-172.59,-260.44],[-181.33,-274.3],[-184.75,-278.64],[-190.29,-289.21],[-195.29,-297.26],[-196.3,-298.8],[-203.3,-313.21],[-214.62,-340.68],[-230.52,-366.83]],"o":[[-242.48,-373.06],[-250.33,-347.51],[-253.44,-322.8],[-252.7,-303.6],[-251.75,-284.4],[-251.24,-265.52],[-249.14,-248.45],[-245.23,-233.06],[-239.93,-222.07],[-235.78,-216.66],[-228.72,-206.91],[-217.41,-189.45],[-206.77,-165.95],[-194.89,-141.44],[-184.71,-120.23],[-176.4,-101.51],[-170.94,-95.64],[-165.99,-103.69],[-160.63,-116.27],[-154.18,-131.76],[-150.53,-143.77],[-148.81,-148.68],[-147.84,-152.92],[-147.27,-155.52],[-143.59,-179.91],[-161.78,-224.54],[-168.58,-247.97],[-178.66,-270.34],[-183.14,-278.32],[-187.24,-282.23],[-193.7,-292.78],[-196.83,-298.86],[-200.64,-306.28],[-210.31,-330.86],[-224.88,-358.46],[-236.66,-376.66]],"v":[[-240,-380],[-247.86,-356.22],[-253,-329],[-253.01,-310],[-252,-291],[-251.46,-271.73],[-250,-254],[-246.66,-238.09],[-241,-224],[-237.19,-218.46],[-233,-213],[-221.08,-195.37],[-211,-176],[-198.89,-149.62],[-186,-123],[-179.13,-107.53],[-173,-96],[-167.6,-100.69],[-163,-111],[-156.25,-126.6],[-151,-142],[-149.37,-147.05],[-148,-152],[-147.46,-154.67],[-147,-157],[-159,-217],[-166,-240],[-176,-266],[-183,-278],[-185,-279],[-192,-291],[-196,-298],[-197,-300],[-206,-320],[-220,-350],[-235,-374]],"c":true}],"h":1},{"t":168,"s":[{"i":[[-237.41,-378.93],[-245.36,-365.28],[-252.32,-338.2],[-253.22,-317.63],[-252.25,-301.53],[-251.93,-284.57],[-252.38,-268.27],[-248.62,-242.55],[-237.35,-219.2],[-229.91,-208.59],[-225.19,-202.28],[-223.53,-200.09],[-223.33,-198.5],[-222.03,-196.92],[-220.38,-195.59],[-218.69,-192.24],[-210.36,-173.76],[-195.16,-143.53],[-185.67,-121.84],[-181.63,-115.47],[-179.73,-108.58],[-178.52,-105.13],[-168.22,-99.32],[-158.65,-121.55],[-155.19,-128.49],[-152.95,-135.01],[-149.77,-144.93],[-153.18,-200.16],[-171.26,-256.89],[-181.1,-275.06],[-183.18,-278.15],[-187.66,-283.92],[-194.12,-293.48],[-211.98,-340.93],[-228.14,-363.11],[-233.16,-372.12]],"o":[[-242.45,-373.17],[-250.29,-347.79],[-253.34,-322.87],[-252.67,-306.96],[-251.74,-290.19],[-252.25,-273.62],[-251.19,-251.95],[-241.7,-226.17],[-231.56,-210.95],[-226.73,-204.26],[-223.62,-200.59],[-223.39,-199.05],[-222.59,-197.37],[-220.92,-196.03],[-219.09,-193.58],[-212.9,-181.88],[-202.36,-155.86],[-187.33,-127.61],[-183.42,-116.67],[-179.9,-111.44],[-178.73,-106.42],[-170.97,-88.81],[-160.36,-116.9],[-156.89,-127.37],[-154.14,-131.36],[-150.93,-141.35],[-140.95,-180.09],[-168.51,-243.64],[-179.26,-271.26],[-182.8,-276.84],[-186.22,-281.31],[-191.7,-290.2],[-206.33,-316.36],[-226.34,-360.13],[-231.37,-368.13],[-236.3,-375.4]],"v":[[-240,-380],[-247.83,-356.53],[-253,-328],[-252.95,-312.3],[-252,-296],[-252.09,-279.1],[-252,-263],[-245.16,-234.36],[-233,-213],[-228.32,-206.43],[-224,-201],[-223.46,-199.57],[-223,-198],[-221.48,-196.47],[-220,-195],[-218,-191],[-206,-164],[-189,-131],[-184,-118],[-181,-114],[-179,-107],[-178,-104],[-163,-111],[-157,-127],[-155,-129],[-152,-138],[-149,-148],[-163,-228],[-178,-269],[-182,-276],[-184,-279],[-189,-286],[-196,-297],[-224,-357],[-230,-366],[-234,-373]],"c":true}],"h":1},{"t":169,"s":[{"i":[[-237.41,-378.93],[-245.54,-364.9],[-252.4,-336.82],[-253.13,-316.07],[-252.23,-300.37],[-251.97,-283.81],[-252.39,-267.11],[-250.72,-252.48],[-247.15,-239.16],[-243.48,-229.9],[-239.56,-223.43],[-234.53,-215.59],[-229.6,-208.23],[-225.98,-204.33],[-223.95,-199.49],[-220.69,-196.22],[-218.69,-192.26],[-210.29,-173.55],[-190.77,-135.53],[-184.73,-119.81],[-181.55,-115.31],[-179.73,-108.59],[-178.52,-105.13],[-168.08,-99.23],[-158.59,-121.74],[-155.19,-128.49],[-152.95,-135.02],[-149.77,-144.93],[-153.04,-200.24],[-168.62,-247.13],[-179.28,-272.55],[-187.94,-284.31],[-192.67,-291.95],[-211.43,-340.2],[-225.33,-358.94],[-231.75,-370.66]],"o":[[-242.59,-372.99],[-250.45,-346.81],[-253.27,-321.13],[-252.61,-305.69],[-251.77,-289.5],[-252.28,-272.62],[-251.64,-257.4],[-248.47,-243.36],[-244.7,-232.44],[-240.91,-225.4],[-236.23,-218.23],[-231.21,-210.59],[-227.07,-204.7],[-224.09,-201.77],[-222.21,-196.75],[-219.13,-193.46],[-213.09,-181.98],[-201.61,-154.21],[-184.3,-121.47],[-183.41,-116.54],[-179.91,-111.42],[-178.73,-106.42],[-171.02,-88.92],[-160.44,-116.92],[-156.89,-127.37],[-154.13,-131.33],[-150.93,-141.35],[-140.92,-180.21],[-166.59,-238.02],[-175.19,-264.39],[-186.3,-282.92],[-190.91,-289.06],[-206.23,-312.87],[-224.76,-358.02],[-228.39,-363.75],[-236.3,-375.4]],"v":[[-240,-380],[-248,-355.85],[-253,-326],[-252.87,-310.88],[-252,-295],[-252.12,-278.21],[-252,-262],[-249.6,-247.92],[-246,-236],[-242.19,-227.65],[-238,-221],[-232.87,-213.09],[-228,-206],[-225,-203],[-223,-198],[-220,-195],[-218,-191],[-206,-164],[-185,-123],[-184,-118],[-181,-114],[-179,-107],[-178,-104],[-163,-111],[-157,-127],[-155,-129],[-152,-138],[-149,-148],[-163,-228],[-172,-256],[-185,-281],[-189,-286],[-194,-294],[-224,-357],[-226,-360],[-234,-373]],"c":true}],"h":1},{"t":170,"s":[{"i":[[-234.46,-373.85],[-245.93,-363.96],[-252.54,-335],[-253.05,-313.8],[-252.17,-297.53],[-252.08,-280.69],[-252.51,-264.25],[-249.12,-243.7],[-239.25,-222.26],[-233.19,-213.63],[-230.57,-210.75],[-229.58,-209.06],[-229.33,-207.49],[-228.43,-206.64],[-227.18,-206.24],[-226.5,-203.73],[-221.56,-196.82],[-209.23,-168.94],[-196.93,-144.62],[-191.28,-136.38],[-190.28,-133.57],[-185.63,-122.93],[-178.01,-104.98],[-168.07,-98.18],[-160.59,-117.96],[-157.39,-124.01],[-145.78,-157.1],[-149.99,-194.42],[-158.56,-215.65],[-167.4,-240.16],[-172.06,-257.52],[-180.01,-273.34],[-187.17,-284.06],[-190.59,-288.33],[-202.2,-309.51],[-216.16,-344.82]],"o":[[-242.91,-372.46],[-250.74,-345.23],[-253.21,-319.04],[-252.53,-303.04],[-251.82,-286.32],[-252.42,-269.66],[-251.25,-251.32],[-243.12,-229.17],[-234.16,-214.76],[-231.4,-211.63],[-229.66,-209.56],[-229.42,-208.02],[-228.84,-206.77],[-227.6,-206.38],[-226.39,-205.19],[-223.86,-199.83],[-213.36,-182.02],[-199.88,-151.02],[-192.82,-136.65],[-190.51,-135.35],[-187.11,-127.05],[-180.79,-112.01],[-171.26,-91.62],[-161.81,-111.74],[-158.72,-122.71],[-152.02,-137.69],[-146.17,-183.45],[-155.68,-210.64],[-164.54,-231.21],[-171.55,-252.69],[-175.97,-266.53],[-184.71,-279.63],[-189.37,-287.6],[-196.95,-298.7],[-211.42,-332.55],[-228.11,-364.35]],"v":[[-240,-380],[-248.33,-354.6],[-253,-324],[-252.79,-308.42],[-252,-292],[-252.25,-275.17],[-252,-259],[-246.12,-236.43],[-235,-216],[-232.3,-212.63],[-230,-210],[-229.5,-208.54],[-229,-207],[-228.02,-206.51],[-227,-206],[-226,-203],[-220,-194],[-203,-157],[-193,-137],[-191,-136],[-190,-133],[-183,-117],[-176,-101],[-164,-107],[-159,-122],[-157,-125],[-146,-172],[-153,-203],[-161,-222],[-170,-248],[-174,-262],[-182,-276],[-189,-287],[-191,-289],[-206,-319],[-223,-356]],"c":true}],"h":1},{"t":171,"s":[{"i":[[-238.95,-380.35],[-246,-363.73],[-252.52,-334.3],[-253.02,-312.9],[-252.11,-296.76],[-252.16,-279.93],[-252.53,-263.18],[-249.57,-245.67],[-242.42,-229.22],[-239.32,-223.41],[-238.45,-220.75],[-236.82,-218.67],[-234.54,-216.8],[-229.97,-210.14],[-223.84,-201.05],[-215.09,-184.54],[-206.48,-163.53],[-201.42,-153.86],[-198.91,-148.67],[-196.1,-144.05],[-192.87,-139.68],[-186.87,-126.64],[-178.48,-105.9],[-174.73,-98.35],[-173.42,-96.07],[-167.53,-99.77],[-161.62,-114.53],[-154.01,-133.22],[-145.75,-164.18],[-149.77,-195.9],[-162.88,-227.19],[-170.47,-250.13],[-180.3,-273.17],[-196.06,-297.01],[-207.24,-323.15],[-228.31,-365.96]],"o":[[-242.99,-372.33],[-250.77,-344.72],[-253.21,-318.02],[-252.47,-302.28],[-251.89,-285.59],[-252.48,-268.72],[-251.36,-251.81],[-245.1,-234.37],[-239.59,-224.28],[-238.75,-221.64],[-237.55,-219.27],[-235.32,-217.43],[-232.05,-213.12],[-225.86,-204.11],[-218.1,-191.53],[-209.28,-170.54],[-202.22,-155.53],[-199.77,-150.43],[-197.16,-145.46],[-193.95,-141.16],[-189.63,-133.44],[-181.3,-112.87],[-175.27,-99.56],[-173.81,-96.61],[-170.22,-95.51],[-163.23,-109.28],[-157.89,-123.39],[-147.94,-153.62],[-146.32,-184.55],[-158.04,-217.22],[-168.7,-243.63],[-176.26,-265.87],[-190.89,-289.58],[-204.22,-313.55],[-218.44,-349.51],[-239.32,-379.39]],"v":[[-240,-380],[-248.38,-354.22],[-253,-323],[-252.74,-307.59],[-252,-291],[-252.32,-274.33],[-252,-258],[-247.33,-240.02],[-240,-225],[-239.03,-222.52],[-238,-220],[-236.07,-218.05],[-234,-216],[-227.91,-207.13],[-222,-198],[-212.19,-177.54],[-203,-157],[-200.59,-152.15],[-198,-147],[-195.02,-142.61],[-192,-138],[-184.08,-119.76],[-176,-101],[-174.27,-97.48],[-173,-96],[-165.38,-104.53],[-161,-116],[-150.98,-143.42],[-146,-173],[-153.9,-206.56],[-166,-236],[-173,-257],[-186,-282],[-200,-305],[-211,-332],[-239,-379]],"c":true}],"h":1},{"t":172,"s":[{"i":[[-238.95,-380.35],[-244.79,-367.7],[-250.05,-347.4],[-252.69,-320.15],[-252.93,-288.84],[-252.47,-262.56],[-247.84,-239.26],[-241.95,-227.24],[-236.61,-219.43],[-232.16,-212.93],[-228.05,-207.5],[-224.37,-201.78],[-221.21,-195.28],[-218.33,-190.31],[-215.65,-186.45],[-213.91,-181.81],[-212.68,-176.66],[-211.36,-173.65],[-210.28,-171.67],[-207.76,-166.22],[-204.4,-160.59],[-196.73,-146.21],[-186.7,-125.4],[-174.14,-96.18],[-165.79,-104.53],[-157.9,-124.53],[-150.73,-142.1],[-147.82,-190.12],[-157.25,-213.91],[-173.42,-265.52],[-188.11,-286.02],[-190.76,-288.61],[-191.55,-291.22],[-195.48,-297.26],[-205.91,-320.3],[-228.27,-365.9]],"o":[[-242.52,-374],[-248.56,-354.4],[-252.22,-330.49],[-253.04,-299.33],[-253.05,-270.93],[-249.87,-246.73],[-243.65,-230.02],[-238.43,-221.94],[-233.63,-214.94],[-229.37,-209.21],[-225.51,-203.89],[-222.22,-197.48],[-219.25,-191.59],[-216.53,-187.74],[-214.32,-183.48],[-213.09,-178.4],[-211.72,-174.32],[-210.64,-172.33],[-208.81,-168.17],[-205.56,-162.43],[-199.7,-151.9],[-190.29,-133.91],[-181.19,-112.33],[-168.88,-95.33],[-159.09,-120.06],[-154.11,-135.44],[-143.49,-170.97],[-155.57,-210.04],[-167.78,-238.47],[-186.83,-283.44],[-189.15,-288.33],[-191.58,-289.93],[-193.74,-295.01],[-202.26,-309.5],[-217.66,-348.17],[-239.32,-379.39]],"v":[[-240,-380],[-246.68,-361.05],[-251,-340],[-252.86,-309.74],[-253,-279],[-251.17,-254.64],[-245,-233],[-240.19,-224.59],[-235,-217],[-230.77,-211.07],[-227,-206],[-223.29,-199.63],[-220,-193],[-217.43,-189.03],[-215,-185],[-213.5,-180.1],[-212,-175],[-211,-172.99],[-210,-171],[-206.66,-164.32],[-203,-158],[-194,-141],[-184,-119],[-173,-96],[-163,-111],[-156,-130],[-149,-149],[-154,-206],[-159,-218],[-185,-281],[-189,-288],[-191,-289],[-192,-292],[-197,-300],[-210,-330],[-239,-379]],"c":true}],"h":1},{"t":173,"s":[{"i":[[-238.95,-380.35],[-247.17,-360.51],[-253.07,-326.04],[-252.73,-308.12],[-251.98,-300.58],[-252.43,-288.05],[-253.31,-272.94],[-250.62,-250.51],[-242.36,-229.26],[-235.49,-218.37],[-230.69,-210.54],[-228.06,-206.97],[-226.34,-205.52],[-225.25,-203.4],[-224.45,-200.74],[-222.28,-197.35],[-219.72,-193.42],[-214.8,-182.9],[-209.31,-169.56],[-200.61,-153.28],[-187.89,-129.82],[-184.63,-119.54],[-181.54,-115.31],[-179.27,-106.71],[-172.93,-95.99],[-162.23,-113.08],[-145.86,-155.45],[-150.94,-198.75],[-162.88,-228.37],[-175.97,-268.6],[-186.41,-284.48],[-191.18,-289.73],[-193.98,-295.29],[-203.75,-313.12],[-210.09,-329.56],[-228.86,-366.63]],"o":[[-243.89,-370.74],[-251.76,-338.16],[-252.99,-310.58],[-252.23,-303.12],[-252.03,-293.08],[-253.07,-277.98],[-252.43,-258.88],[-245.58,-235.7],[-237.14,-221.1],[-232.26,-213.09],[-228.64,-207.46],[-226.91,-206],[-225.52,-204.27],[-224.72,-201.63],[-223.17,-198.64],[-220.56,-194.74],[-216.65,-187.37],[-211.13,-174],[-204.66,-160.38],[-192.22,-138.01],[-184.35,-121.46],[-183.41,-116.55],[-179.78,-111.07],[-176.06,-99.84],[-167.38,-95.09],[-154.72,-130.9],[-146.12,-188.47],[-159.43,-219.3],[-170.82,-250.33],[-185.26,-281.02],[-188.97,-288.53],[-193.27,-292.97],[-199.8,-305.1],[-208.74,-325.23],[-219.4,-351.21],[-239.32,-379.39]],"v":[[-240,-380],[-249.47,-349.34],[-253,-313],[-252.48,-305.62],[-252,-298],[-252.75,-283.01],[-253,-268],[-248.1,-243.1],[-239,-224],[-233.88,-215.73],[-229,-208],[-227.49,-206.49],[-226,-205],[-224.98,-202.51],[-224,-200],[-221.42,-196.05],[-219,-192],[-212.97,-178.45],[-207,-165],[-196.42,-145.65],[-185,-123],[-184,-118],[-181,-114],[-178,-104],[-173,-96],[-161,-116],[-146,-173],[-156,-211],[-166,-237],[-183,-278],[-188,-287],[-192,-291],[-195,-297],[-207,-321],[-212,-334],[-239,-379]],"c":true}],"h":1},{"t":174,"s":[{"i":[[-238.95,-380.35],[-245.09,-366.56],[-251.4,-342.39],[-252.26,-322.71],[-251.74,-305.01],[-252.71,-287.65],[-253.41,-270.67],[-251.94,-257.15],[-248.9,-245.54],[-239.58,-225.14],[-223.56,-200.91],[-216.12,-185.7],[-210.69,-172.54],[-202.68,-156.86],[-192.98,-140.06],[-184.86,-121.13],[-174.66,-96.27],[-167.5,-99.81],[-161.61,-114.54],[-159.38,-120.2],[-157.58,-126.09],[-155.18,-129.48],[-145.91,-161.67],[-151.23,-201.2],[-159.92,-221.15],[-164.62,-232],[-176.38,-265.53],[-183.75,-278.63],[-183.77,-280.49],[-185.76,-281.61],[-187.67,-285.88],[-190.4,-290.68],[-192.76,-292.61],[-194.8,-296.92],[-206.18,-320.79],[-228.36,-366.03]],"o":[[-242.39,-373.87],[-249.6,-350.82],[-252.4,-328.45],[-251.93,-310.99],[-252.25,-293.31],[-253.29,-276.33],[-252.74,-261.38],[-250.02,-249.23],[-244.8,-233.93],[-228.96,-208.63],[-218.03,-190.18],[-212.45,-176.89],[-205.95,-162.58],[-196.2,-145.6],[-188.28,-130.5],[-178.05,-104.02],[-170.19,-95.54],[-163.21,-109.31],[-160.09,-118.15],[-158.12,-124.16],[-156.89,-128.37],[-150.69,-142.49],[-146.11,-187.15],[-157.33,-215.45],[-163.54,-229.6],[-171.15,-250.96],[-182.15,-278.32],[-184.31,-279.46],[-184.15,-281.33],[-187.3,-284.06],[-189.98,-289.56],[-191.15,-292.34],[-194.18,-294.91],[-201.95,-309.32],[-218.51,-349.48],[-239.32,-379.39]],"v":[[-240,-380],[-247.34,-358.69],[-252,-334],[-252.1,-316.85],[-252,-299],[-253,-281.99],[-253,-265],[-250.98,-253.19],[-248,-243],[-234.27,-216.88],[-220,-194],[-214.29,-181.29],[-209,-169],[-199.44,-151.23],[-190,-134],[-181.45,-112.57],[-173,-96],[-165.35,-104.56],[-161,-116],[-158.75,-122.18],[-157,-128],[-155,-130],[-146,-173],[-155,-210],[-162,-226],[-166,-236],[-182,-278],[-184,-279],[-184,-281],[-186,-282],[-189,-288],[-191,-292],[-193,-293],[-196,-299],[-211,-332],[-239,-379]],"c":true}],"h":1},{"t":175,"s":[{"i":[[-238.95,-380.35],[-244.87,-367.29],[-251.34,-342.8],[-252.47,-321.76],[-252.72,-303.92],[-253.55,-285.38],[-253.51,-267.21],[-249.05,-243.1],[-237.11,-221.23],[-228.25,-207.92],[-221.8,-197.6],[-216.32,-185.92],[-211.08,-173.19],[-204.91,-161.31],[-198.21,-149.96],[-191.98,-137.98],[-186.9,-125.44],[-181.06,-111.71],[-173.77,-96.13],[-167.5,-99.81],[-161.61,-114.54],[-157.05,-125.82],[-152.25,-140.28],[-149.93,-148.42],[-148.29,-153.37],[-147.64,-157.07],[-147.13,-160.13],[-147.16,-190.16],[-162.24,-224.55],[-168.43,-241.28],[-170.28,-247.89],[-175.85,-263.44],[-184.33,-281.23],[-192.97,-293.6],[-203.66,-313.13],[-226.13,-363.3]],"o":[[-242.2,-374.13],[-249.44,-351.62],[-252.36,-327.55],[-252.65,-309.94],[-253.3,-291.77],[-253.66,-273.1],[-252,-251.74],[-241.61,-227.85],[-230.6,-211.36],[-223.85,-201.04],[-218.04,-190.08],[-212.84,-177.48],[-207.06,-165.08],[-200.48,-153.75],[-193.78,-142.01],[-188.54,-129.7],[-183.67,-117.9],[-176.11,-100.82],[-170.19,-95.54],[-163.21,-109.31],[-158.92,-120.92],[-153.71,-135.5],[-150.54,-146.73],[-148.81,-151.74],[-147.82,-156.01],[-147.29,-159.13],[-144.54,-177.38],[-156.01,-213.74],[-167.79,-239.08],[-169.67,-245.68],[-173.44,-257.08],[-181.3,-275.52],[-190.24,-290.52],[-199.81,-305.04],[-216.29,-342.87],[-239.32,-379.39]],"v":[[-240,-380],[-247.16,-359.45],[-252,-333],[-252.56,-315.85],[-253,-298],[-253.6,-279.24],[-253,-262],[-245.33,-235.47],[-233,-215],[-226.05,-204.48],[-220,-194],[-214.58,-181.7],[-209,-169],[-202.7,-157.53],[-196,-146],[-190.26,-133.84],[-185,-121],[-178.59,-106.27],[-173,-96],[-165.35,-104.56],[-161,-116],[-155.38,-130.66],[-151,-145],[-149.37,-150.08],[-148,-155],[-147.46,-158.1],[-147,-161],[-151.59,-201.95],[-167,-237],[-169.05,-243.48],[-171,-250],[-178.58,-269.48],[-188,-287],[-195,-297],[-207,-321],[-239,-379]],"c":true}],"h":1},{"t":176,"s":[{"i":[[-235.76,-376.1],[-245.15,-366.56],[-251.35,-341.7],[-252.47,-320.92],[-252.72,-303.17],[-253.54,-284.8],[-253.55,-266.38],[-249.35,-244.41],[-238.51,-224.38],[-232.41,-215.03],[-229.02,-209.69],[-225.52,-203.99],[-222.13,-198.27],[-217.77,-188.71],[-213.33,-177.04],[-211.36,-172.38],[-210.35,-169.71],[-209.16,-167.99],[-207.39,-166.65],[-206.25,-164.35],[-205.36,-161.63],[-196.63,-146.2],[-185.81,-124.22],[-179.42,-108.32],[-173.99,-96.16],[-162.28,-112.95],[-145.63,-157.15],[-156.49,-213.18],[-170.78,-248.67],[-180.72,-274.4],[-195.73,-298.3],[-207.41,-321.96],[-212.63,-334.96],[-219.88,-350.3],[-223.76,-355.59],[-225.78,-360.08]],"o":[[-242.48,-373.71],[-249.59,-350.56],[-252.36,-326.59],[-252.65,-309.21],[-253.27,-291.11],[-253.69,-272.44],[-252.09,-252.22],[-242.56,-230.49],[-233.65,-216.93],[-230.09,-211.41],[-226.71,-205.86],[-223.23,-200.2],[-219.36,-192.69],[-214.76,-180.88],[-211.68,-173.28],[-210.69,-170.59],[-209.71,-168.42],[-208,-167.11],[-206.56,-165.28],[-205.64,-162.52],[-200.48,-153.09],[-189.3,-131.77],[-181.17,-112.99],[-175.83,-99.91],[-167.39,-95.09],[-154.61,-131.14],[-146.42,-195.36],[-167.89,-240.23],[-176.99,-266.65],[-190.74,-290.72],[-203.73,-312.74],[-211.7,-331.98],[-216.51,-343.58],[-222.16,-355.35],[-225.14,-357.93],[-230.8,-367.97]],"v":[[-240,-380],[-247.37,-358.56],[-252,-332],[-252.56,-315.07],[-253,-297],[-253.62,-278.62],[-253,-261],[-245.95,-237.45],[-235,-219],[-231.25,-213.22],[-228,-208],[-224.38,-202.1],[-221,-196],[-216.26,-184.8],[-212,-174],[-211.02,-171.49],[-210,-169],[-208.58,-167.55],[-207,-166],[-205.94,-163.44],[-205,-161],[-192.96,-138.99],[-182,-115],[-177.62,-104.12],[-173,-96],[-161,-116],[-146,-175],[-164,-231],[-174,-258],[-186,-283],[-200,-306],[-210,-328],[-214,-338],[-222,-355],[-224,-356],[-227,-362]],"c":true}],"h":1},{"t":177,"s":[{"i":[[-234.32,-373.81],[-245.36,-366],[-251.45,-339.96],[-252.43,-319.03],[-252.77,-301.71],[-253.52,-284],[-253.56,-266.39],[-249.89,-246.34],[-239.27,-224.5],[-230.85,-212.05],[-224.68,-203.16],[-218.04,-189.3],[-211.36,-172.52],[-207.6,-165.44],[-205.54,-161.94],[-202.73,-157.13],[-199.27,-151.27],[-192.66,-139.1],[-185.87,-123.97],[-179.91,-109.31],[-173.88,-96.14],[-167.53,-99.73],[-161.57,-114.36],[-154.4,-134.21],[-145.93,-165.8],[-149.19,-197.63],[-162.69,-226.21],[-170.15,-245.6],[-174.37,-258.62],[-179.91,-272.53],[-186.68,-285.26],[-193.21,-295.5],[-199.35,-304.96],[-205.1,-316.07],[-210.36,-328.13],[-220,-349.98]],"o":[[-242.64,-373.52],[-249.77,-349.22],[-252.29,-324.68],[-252.67,-307.55],[-253.24,-290.05],[-253.68,-272.17],[-252.26,-253.84],[-243.39,-231.67],[-233.01,-214.97],[-226.68,-206.15],[-220.37,-195.04],[-213.54,-178.04],[-208.33,-166.72],[-206.21,-163.05],[-203.84,-159],[-200.44,-153.27],[-194.98,-143.61],[-188.11,-129.28],[-181.97,-114.49],[-175.87,-100.14],[-170.24,-95.55],[-163.19,-109.14],[-158.18,-124.05],[-148.27,-155.08],[-146.09,-187.52],[-157.49,-216.97],[-168.71,-241.29],[-172.98,-254.26],[-177.82,-267.9],[-184.34,-281.21],[-191.03,-292.27],[-197.37,-301.85],[-203.17,-312],[-208.7,-324.13],[-215.84,-341.08],[-229.24,-366.35]],"v":[[-240,-380],[-247.57,-357.61],[-252,-330],[-252.55,-313.29],[-253,-296],[-253.6,-278.08],[-253,-261],[-246.64,-239.01],[-235,-218],[-228.77,-209.1],[-223,-200],[-215.79,-183.67],[-209,-168],[-206.91,-164.24],[-205,-161],[-201.59,-155.2],[-198,-149],[-190.39,-134.19],[-183,-117],[-177.89,-104.72],[-173,-96],[-165.36,-104.44],[-161,-116],[-151.34,-144.65],[-146,-175],[-153.34,-207.3],[-167,-237],[-171.56,-249.93],[-176,-263],[-182.12,-276.87],[-189,-289],[-195.29,-298.67],[-201,-308],[-206.9,-320.1],[-212,-332],[-224.62,-358.16]],"c":true}],"h":1},{"t":178,"s":[{"i":[[-234.03,-373.62],[-245.59,-365.3],[-251.47,-338.61],[-252.37,-320.34],[-252.79,-306.54],[-253.48,-292.53],[-254.01,-278.47],[-252.31,-255.39],[-243.67,-233.21],[-238.1,-224],[-234.98,-219.53],[-225.64,-204.4],[-215.29,-182.58],[-212.5,-174.44],[-211.11,-173.24],[-208.35,-167.31],[-204.5,-160.49],[-195.79,-145.36],[-186.33,-125.1],[-179.91,-109.4],[-173.82,-96.13],[-167.54,-99.71],[-161.61,-114.32],[-154.25,-134.44],[-145.86,-166.76],[-148.73,-194.99],[-160.17,-222.44],[-167.75,-239.78],[-172.51,-252.63],[-179.05,-270.1],[-188.68,-288.74],[-194.37,-297.65],[-197.94,-303.15],[-203.42,-313.2],[-209.15,-325.73],[-219.23,-348.47]],"o":[[-242.86,-373.24],[-249.9,-347.98],[-252.23,-324.82],[-252.65,-311.2],[-253.22,-297.3],[-253.87,-283.12],[-253.97,-264.04],[-247.15,-239.98],[-239.1,-225.48],[-236.04,-221.03],[-229.74,-211.36],[-218.41,-190.01],[-212.94,-174.82],[-211.58,-173.65],[-209.6,-169.82],[-205.8,-162.65],[-199.12,-151.56],[-189.39,-132.13],[-182.01,-114.58],[-175.82,-100.17],[-170.24,-95.55],[-163.23,-109.09],[-158.07,-124.06],[-148.15,-155.79],[-146.14,-185.52],[-155.74,-213.45],[-166,-235.46],[-171.01,-248.36],[-176.21,-263.48],[-185.28,-282.73],[-193.15,-295.82],[-196.77,-301.31],[-201.34,-309.09],[-207.32,-321.52],[-214.96,-339.16],[-228.76,-365.69]],"v":[[-240,-380],[-247.74,-356.64],[-252,-329],[-252.51,-315.77],[-253,-302],[-253.67,-287.82],[-254,-274],[-249.73,-247.68],[-240,-227],[-237.07,-222.51],[-234,-218],[-222.02,-197.2],[-213,-175],[-212.04,-174.05],[-211,-173],[-207.07,-164.98],[-203,-158],[-192.59,-138.75],[-183,-117],[-177.87,-104.79],[-173,-96],[-165.39,-104.4],[-161,-116],[-151.2,-145.11],[-146,-176],[-152.23,-204.22],[-164,-231],[-169.38,-244.07],[-174,-257],[-182.16,-276.42],[-192,-294],[-195.57,-299.48],[-199,-305],[-205.37,-317.36],[-211,-330],[-224,-357.08]],"c":true}],"h":1},{"t":179,"s":[{"i":[[-235.61,-375.35],[-245.41,-365.8],[-251.36,-339.93],[-252.42,-320.94],[-252.79,-306.61],[-253.53,-292.06],[-254.09,-277.52],[-251.98,-254.76],[-243.35,-232.78],[-237.93,-223.46],[-234.81,-218.3],[-231.31,-213],[-227.16,-207.08],[-222.3,-197.56],[-217.71,-186.01],[-209.34,-168.84],[-197.24,-149.44],[-188.73,-131.83],[-182.54,-116.77],[-178.3,-106.15],[-173.77,-96.12],[-165.45,-103.49],[-155.61,-130.07],[-150.6,-146.69],[-145.84,-170.75],[-150.51,-202.01],[-166.37,-234.57],[-171.45,-248.53],[-173.22,-255.7],[-178.38,-269.31],[-186.3,-284.52],[-190.91,-292.22],[-193.25,-296],[-203.06,-311.55],[-213.79,-335.96],[-223.61,-356.63]],"o":[[-242.73,-373.33],[-249.73,-349.09],[-252.28,-325.63],[-252.67,-311.43],[-253.23,-297.05],[-253.96,-282.3],[-253.8,-263.37],[-246.75,-239.47],[-239.02,-225.31],[-235.82,-219.95],[-232.73,-214.96],[-228.52,-209.06],[-223.95,-201.3],[-219.18,-189.91],[-212.97,-174.87],[-201.47,-156.12],[-190.96,-136.95],[-184.52,-121.75],[-179.92,-110.34],[-175.23,-99.04],[-169.64,-95.46],[-158.43,-120.8],[-152.92,-138.56],[-147.06,-162.78],[-146.32,-189.98],[-160.54,-224.31],[-170.84,-246.18],[-172.64,-253.29],[-175.97,-263.8],[-183.54,-279.67],[-190.03,-290.72],[-192.52,-294.86],[-198.91,-303.57],[-210.5,-327.75],[-220.06,-349.71],[-231.39,-369.45]],"v":[[-240,-380],[-247.57,-357.45],[-252,-330],[-252.55,-316.18],[-253,-302],[-253.74,-287.18],[-254,-273],[-249.36,-247.11],[-240,-227],[-236.87,-221.71],[-234,-217],[-229.92,-211.03],[-226,-205],[-220.74,-193.74],[-216,-182],[-205.41,-162.48],[-193,-141],[-186.62,-126.79],[-181,-113],[-176.77,-102.6],[-173,-96],[-161.94,-112.15],[-155,-132],[-148.83,-154.74],[-146,-177],[-155.52,-213.16],[-170,-244],[-172.04,-250.91],[-174,-258],[-180.96,-274.49],[-189,-289],[-191.71,-293.54],[-194,-297],[-206.78,-319.65],[-217,-343],[-227.5,-363.04]],"c":true}],"h":1},{"t":180,"s":[{"i":[[-235.88,-377.87],[-245.36,-366.47],[-251.36,-338.98],[-252.45,-308.7],[-254.13,-258.3],[-241.97,-230.73],[-236.64,-223.01],[-234.79,-218.29],[-232.52,-215.9],[-229.76,-212.02],[-228.4,-208.67],[-219.43,-190.81],[-211.3,-172.33],[-206.61,-165.05],[-202.94,-157.29],[-198.85,-151.51],[-196.9,-146.63],[-194.3,-144.4],[-193.31,-141.6],[-192.05,-137.32],[-187.5,-129.62],[-186.27,-123.88],[-184.2,-121.51],[-182.77,-116.9],[-174.91,-95.6],[-162.92,-110.77],[-145.75,-158.42],[-161.26,-223],[-174.47,-256.8],[-179.18,-272.13],[-191.13,-291.98],[-207.52,-322.17],[-218.61,-346.63],[-224.91,-359.86],[-227.18,-363.15],[-229.18,-366.15]],"o":[[-242.67,-373.98],[-249.7,-348.97],[-252.54,-318.75],[-254.16,-278.38],[-246.34,-238.12],[-237.88,-224.22],[-235.03,-220.47],[-233.58,-216.32],[-230.84,-213],[-228.44,-210.25],[-223.31,-200.06],[-213.74,-177.85],[-207.98,-166.07],[-204.26,-161.02],[-200.11,-152.49],[-197.09,-148.39],[-195.79,-144.62],[-193.49,-143.32],[-192.08,-139.23],[-190.01,-132.8],[-185.65,-125.15],[-185.89,-122.63],[-183.16,-118.86],[-180.45,-111.2],[-168.23,-96.28],[-154.41,-131.39],[-146.34,-201.99],[-172.14,-249.71],[-178.29,-267.68],[-184.81,-284.1],[-202.32,-310.42],[-215.15,-340.62],[-223.29,-355.42],[-226.8,-361.84],[-228.8,-364.84],[-233.84,-371]],"v":[[-240,-380],[-247.53,-357.72],[-252,-328],[-253,-299],[-249,-245],[-239,-226],[-236,-222],[-234,-217],[-232,-215],[-229,-211],[-228,-208],[-216,-183],[-209,-168],[-206,-164],[-201,-154],[-198,-150],[-196,-145],[-194,-144],[-193,-141],[-191,-135],[-186,-126],[-186,-123],[-184,-121],[-182,-115],[-171,-96],[-162,-113],[-146,-177],[-169,-242],[-177,-264],[-181,-276],[-196,-300],[-212,-333],[-222,-353],[-226,-361],[-228,-364],[-230,-367]],"c":true}],"h":1},{"t":181,"s":[{"i":[[-238.34,-378.97],[-245.62,-365.56],[-251.44,-337.53],[-252.33,-317.45],[-252.66,-302.92],[-254.14,-277.07],[-251.26,-250.95],[-243.95,-234.65],[-236.87,-223.23],[-233.84,-218.03],[-232.44,-215.75],[-230.84,-213.03],[-229.44,-210.75],[-227.46,-207.14],[-225.65,-203.27],[-221.53,-194.83],[-216.67,-183.74],[-208.21,-167.08],[-196.15,-147.64],[-189.19,-132.46],[-184.81,-120.52],[-180.32,-109.36],[-172.88,-95.81],[-169.34,-97.43],[-166.93,-103.18],[-162.26,-111.82],[-155.89,-131.41],[-144.69,-171.06],[-159.58,-221.44],[-173.98,-254.28],[-179.17,-272.1],[-185.7,-283.12],[-191.85,-294.46],[-198.86,-305.14],[-215.88,-341.38],[-231.56,-369.96]],"o":[[-242.9,-373.55],[-249.89,-347.56],[-252.25,-322.24],[-252.54,-307.79],[-253.76,-286.84],[-252.89,-259.12],[-246.27,-238.78],[-239.26,-226.88],[-234.37,-218.91],[-232.87,-216.46],[-231.37,-213.91],[-229.87,-211.46],[-228.14,-208.51],[-226.22,-204.52],[-223.19,-198.46],[-218.26,-187.47],[-211.88,-173.01],[-200.34,-154.39],[-190.53,-135.95],[-186.32,-124.74],[-182.38,-114.46],[-175.57,-100.03],[-170.13,-96.09],[-167.74,-100.98],[-164.94,-107.07],[-157.65,-123.46],[-148.84,-155.97],[-149.31,-204.96],[-170.22,-245.19],[-178.63,-267.71],[-182.9,-280.04],[-190.13,-290.58],[-196.25,-301.71],[-209.77,-324.82],[-227.63,-362.54],[-236.39,-377.04]],"v":[[-240,-380],[-247.75,-356.56],[-252,-327],[-252.44,-312.62],[-253,-298],[-253.52,-268.09],[-248,-243],[-241.6,-230.76],[-235,-220],[-233.35,-217.25],[-232,-215],[-230.35,-212.25],[-229,-210],[-226.84,-205.83],[-225,-202],[-219.89,-191.15],[-215,-180],[-204.27,-160.73],[-192,-139],[-187.76,-128.6],[-183,-116],[-177.95,-104.7],[-171,-96],[-168.54,-99.21],[-166,-105],[-161,-115],[-154,-138],[-147,-188],[-167,-238],[-177,-263],[-181,-276],[-188,-287],[-194,-298],[-201,-309],[-224,-356],[-235,-375]],"c":true}],"h":1},{"t":182,"s":[{"i":[[-238.34,-378.97],[-243.52,-372.58],[-246.89,-358.43],[-250.71,-334.95],[-252.31,-306.08],[-253.81,-285.82],[-254.44,-270.69],[-250.83,-250.61],[-240.07,-227.65],[-233.99,-217.98],[-230.9,-213.61],[-225.2,-202.9],[-218.71,-188.91],[-216.33,-183.09],[-215.43,-179.94],[-200.1,-156.19],[-186.59,-124.98],[-174.7,-95.66],[-168.58,-100.09],[-165.24,-103.49],[-165.38,-106.17],[-163.53,-109.78],[-156.54,-127.6],[-151.8,-142.93],[-145.26,-187.17],[-165.37,-231.06],[-176.92,-264.23],[-189.3,-289.62],[-193.36,-298.01],[-197.08,-301.48],[-201.06,-310.29],[-218.58,-347.18],[-226.36,-362.01],[-230.05,-365.52],[-231.55,-369.23],[-234.04,-373.6]],"o":[[-242.08,-376.62],[-245.93,-363.49],[-249.81,-344.15],[-251.97,-315.91],[-253.34,-290.98],[-254.36,-275.68],[-253.3,-258.54],[-244.22,-235.17],[-235.04,-219.43],[-231.92,-215.07],[-227.6,-207.69],[-220.76,-193.51],[-216.61,-184.11],[-215.74,-181],[-208.91,-165.69],[-189.16,-132.98],[-182.16,-113.91],[-169.37,-96.15],[-166.77,-103.42],[-164.61,-104.82],[-164.42,-108.28],[-158.33,-121.81],[-153.09,-140.38],[-146.38,-163.62],[-155.34,-216.72],[-175.09,-255.89],[-183.36,-280.48],[-193.54,-296.93],[-195.13,-300.75],[-200.16,-306.58],[-210.65,-328.66],[-226.54,-360.93],[-227.87,-364.35],[-231.58,-367.9],[-233.14,-371.98],[-236.39,-377.04]],"v":[[-240,-380],[-244.73,-368.04],[-248,-353],[-251.34,-325.43],[-253,-296],[-254.09,-280.75],[-254,-266],[-247.53,-242.89],[-236,-221],[-232.95,-216.53],[-230,-212],[-222.98,-198.2],[-217,-185],[-216.03,-182.04],[-215,-179],[-192,-139],[-183,-116],[-171,-96],[-167,-103],[-165,-104],[-165,-107],[-163,-111],[-154,-137],[-151,-146],[-151,-204],[-172,-248],[-180,-272],[-193,-296],[-194,-299],[-198,-303],[-203,-314],[-226,-360],[-227,-363],[-231,-367],[-232,-370],[-235,-375]],"c":true}],"h":1},{"t":183,"s":[{"i":[[-234.89,-375.66],[-242.47,-375.91],[-244.12,-368.19],[-246.31,-361.19],[-248.61,-354.99],[-251.39,-334.41],[-252.34,-304.62],[-253.85,-284.65],[-254.49,-269.79],[-247.44,-240.81],[-228.55,-210.57],[-220.92,-193.5],[-216.78,-181.75],[-211.41,-171.5],[-205.04,-162.26],[-197.27,-149.4],[-189.04,-133.1],[-184.66,-120.2],[-175.08,-95.66],[-169.53,-98.22],[-166.35,-101.36],[-163.95,-108.74],[-159.85,-116.53],[-153.32,-137.89],[-147.52,-160.99],[-155.13,-213.61],[-172.35,-248.21],[-179,-271.57],[-187.55,-287.96],[-193,-295.36],[-195.73,-301.92],[-199.91,-307.14],[-208.21,-322.09],[-212.07,-332.81],[-214.58,-337.01],[-222.16,-353.51]],"o":[[-241.66,-378.06],[-243.7,-370.97],[-245.5,-363.19],[-247.86,-357.09],[-250.72,-344.1],[-252.2,-314.67],[-253.36,-289.76],[-254.42,-274.67],[-252.66,-252.02],[-235.39,-220.08],[-222.27,-197.38],[-218.17,-185.69],[-213.39,-174.62],[-207.24,-165.33],[-200.25,-154.61],[-191.66,-138.65],[-185.63,-124.56],[-181.52,-112.25],[-169.83,-96.1],[-168.34,-99.97],[-164.43,-104.81],[-161.82,-113.8],[-155.62,-128.76],[-149.31,-153.63],[-144.4,-196.82],[-168.68,-241.59],[-177.47,-263.26],[-184.8,-283.79],[-191.03,-293.7],[-195.39,-299.28],[-198.13,-305.86],[-204.85,-315.57],[-212.05,-330.22],[-213.31,-335.72],[-218.54,-346.25],[-230.08,-366.9]],"v":[[-240,-380],[-243.08,-373.44],[-245,-365],[-247.08,-359.14],[-249,-353],[-251.8,-324.54],[-253,-295],[-254.14,-279.66],[-254,-265],[-241.41,-230.45],[-224,-201],[-219.54,-189.59],[-215,-178],[-209.33,-168.41],[-203,-159],[-194.47,-144.03],[-187,-128],[-183,-116],[-171,-96],[-169,-99],[-166,-102],[-163,-111],[-159,-119],[-151,-147],[-147,-167],[-165,-234],[-175,-256],[-183,-280],[-190,-292],[-194,-297],[-197,-304],[-201,-309],[-211,-328],[-213,-335],[-215,-338],[-226,-360]],"c":true}],"h":1},{"t":184,"s":[{"i":[[-238.34,-378.97],[-243.72,-372.09],[-246.97,-357.53],[-248.62,-350.21],[-249.87,-347.89],[-250.74,-338.93],[-250.77,-327.89],[-252.82,-304.13],[-254.97,-274.43],[-249.55,-246.61],[-236.06,-222.19],[-228.38,-208.43],[-223.52,-198.5],[-219.25,-188.16],[-214.86,-177.44],[-209.32,-168.04],[-202.96,-159.21],[-197.18,-149.18],[-191.59,-137.46],[-188.4,-130.25],[-186.55,-124.81],[-185.49,-122.44],[-184.09,-121.26],[-182.86,-117.14],[-176.11,-95.54],[-167.48,-100.29],[-157.94,-122.55],[-147.93,-156.7],[-157.93,-217.32],[-178.67,-272.2],[-187.88,-287.05],[-189.52,-291.16],[-193.22,-297.13],[-201.14,-309.79],[-210.05,-326.53],[-226.88,-363.13]],"o":[[-242.24,-376.33],[-246.09,-362.69],[-248.18,-351.01],[-249.46,-348.65],[-250.61,-342.74],[-250.82,-331.51],[-251.58,-314.17],[-254.51,-284.27],[-253.02,-255.52],[-241.07,-229.95],[-230.12,-211.67],[-225.08,-201.84],[-220.57,-191.69],[-216.39,-181.03],[-211.34,-170.94],[-205.13,-162.18],[-199.13,-152.95],[-193.41,-141.43],[-189.12,-132.1],[-187.11,-126.61],[-185.94,-122.81],[-184.56,-121.66],[-183.3,-119.06],[-180.18,-110.49],[-170.45,-96.05],[-162.07,-110.2],[-151.58,-143.73],[-144.47,-202.32],[-175.12,-254.1],[-185.93,-285.74],[-189.59,-290.02],[-191.69,-294.93],[-197.6,-304.2],[-207.09,-320.06],[-219.8,-347.94],[-236.39,-377.04]],"v":[[-240,-380],[-244.91,-367.39],[-248,-352],[-249.04,-349.43],[-250,-347],[-250.78,-335.22],[-251,-324],[-253.67,-294.2],[-254,-265],[-245.31,-238.28],[-232,-215],[-226.73,-205.13],[-222,-195],[-217.82,-184.59],[-213,-174],[-207.23,-165.11],[-201,-156],[-195.29,-145.3],[-190,-134],[-187.75,-128.43],[-186,-123],[-185.03,-122.05],[-184,-121],[-182,-115],[-171,-96],[-166,-103],[-156,-129],[-147,-169],[-169,-241],[-185,-284],[-189,-289],[-190,-292],[-195,-300],[-203,-313],[-213,-333],[-235,-375]],"c":true}],"h":1},{"t":185,"s":[{"i":[[-235.39,-377.03],[-243.72,-372.1],[-247,-357.47],[-248.8,-347.67],[-249.77,-341.35],[-250.41,-334.1],[-250.83,-326.71],[-252.9,-304.18],[-255.03,-274.47],[-250.84,-250.96],[-241.72,-232.61],[-233.16,-218.06],[-225.2,-203.11],[-220.25,-190.93],[-215.97,-179.77],[-206.97,-164.69],[-194.69,-146.32],[-186.44,-126.3],[-181.32,-111.51],[-173.73,-96.97],[-168.69,-98.19],[-161.89,-111.68],[-157.17,-126.03],[-151.84,-144.32],[-147.41,-164.25],[-149.67,-202.41],[-168.02,-237.54],[-177.38,-262.3],[-183.32,-279.74],[-191.72,-295.07],[-201.16,-309.78],[-206.76,-320.19],[-210.71,-328.23],[-214.84,-336.39],[-217.68,-345.27],[-225,-358.05]],"o":[[-242.22,-376.36],[-246.11,-362.65],[-248.41,-349.74],[-249.47,-343.47],[-250.25,-336.49],[-250.7,-329.2],[-251.63,-314.2],[-254.59,-284.32],[-253.23,-257.91],[-245.08,-238.32],[-236.06,-223],[-227.73,-208.11],[-221.51,-194.54],[-217.48,-183.54],[-210.87,-170.03],[-198.87,-152.83],[-188.03,-131.3],[-183.09,-116.41],[-175.38,-99.87],[-170.39,-96.13],[-163.81,-106.91],[-158.57,-121.24],[-153.88,-137.19],[-148.6,-157.85],[-145.66,-188.64],[-160.85,-226.86],[-175.47,-256.18],[-181.3,-274.08],[-188.64,-290.18],[-197.98,-304.87],[-205.4,-317.58],[-209.41,-325.52],[-213.16,-333.48],[-217.33,-341.97],[-221.46,-353.1],[-231.97,-369.56]],"v":[[-240,-380],[-244.91,-367.37],[-248,-352],[-249.13,-345.57],[-250,-339],[-250.55,-331.65],[-251,-324],[-253.74,-294.25],[-254,-265],[-247.96,-244.64],[-239,-228],[-230.44,-213.09],[-223,-198],[-218.87,-187.24],[-214,-176],[-202.92,-158.76],[-191,-138],[-184.76,-121.35],[-178,-105],[-172.06,-96.55],[-166,-103],[-160.23,-116.46],[-156,-130],[-150.22,-151.08],[-147,-170],[-155.26,-214.64],[-173,-250],[-179.34,-268.19],[-186,-285],[-194.85,-299.97],[-204,-315],[-208.08,-322.85],[-212,-331],[-216,-339],[-219,-348],[-228,-363]],"c":true}],"h":1},{"t":186,"s":[{"i":[[-230.3,-370.33],[-243.24,-372.97],[-246.99,-359.93],[-250.55,-338.42],[-252.3,-312.35],[-253.92,-294.62],[-255.07,-281.09],[-253.09,-259.68],[-243.47,-234.9],[-238.44,-226.37],[-237.2,-225.31],[-235.45,-222.18],[-233.74,-218.33],[-227.31,-205.93],[-219.64,-188.67],[-209.7,-169.7],[-197.26,-150.15],[-188.78,-131.43],[-182.8,-116.46],[-179.5,-107.97],[-176.95,-101.51],[-172.13,-95.66],[-167.72,-99.93],[-161.8,-111.79],[-157.11,-126.05],[-151.83,-144.9],[-147.42,-165.09],[-165.69,-228.96],[-182.08,-278.79],[-191.86,-294.49],[-195.82,-302.12],[-198.4,-306.68],[-200.76,-308.6],[-201.92,-313.06],[-206.02,-318.15],[-212.39,-332.35]],"o":[[-241.75,-376.75],[-245.86,-364.56],[-249.64,-346.99],[-251.88,-321.1],[-253.39,-299.32],[-254.76,-285.5],[-254.85,-268.23],[-247.4,-243.02],[-238.84,-226.71],[-237.61,-225.67],[-236.08,-223.52],[-234.28,-219.59],[-229.99,-211.6],[-222.13,-194.47],[-213.57,-175.62],[-201.55,-156.96],[-190.88,-136.46],[-184.74,-121.44],[-180.28,-110.21],[-177.84,-103.62],[-173.77,-96.45],[-169.1,-97.4],[-163.75,-107.02],[-158.48,-121.31],[-153.87,-137.61],[-148.61,-158.64],[-144.27,-209.13],[-178.92,-267.38],[-188.81,-291.38],[-195.18,-299.94],[-197.98,-305.56],[-199.16,-308.35],[-202.01,-310.7],[-203.92,-316.67],[-210.22,-326.06],[-221.65,-352.4]],"v":[[-240,-380],[-244.55,-368.76],[-248,-355],[-251.21,-329.76],[-253,-304],[-254.34,-290.06],[-255,-277],[-250.24,-251.35],[-239,-227],[-238.03,-226.02],[-237,-225],[-234.86,-220.89],[-233,-217],[-224.72,-200.2],[-217,-183],[-205.62,-163.33],[-193,-141],[-186.76,-126.44],[-181,-112],[-178.67,-105.79],[-176,-100],[-170.62,-96.53],[-166,-103],[-160.14,-116.55],[-156,-130],[-150.22,-151.77],[-147,-171],[-175,-256],[-187,-288],[-194,-298],[-197,-304],[-199,-308],[-201,-309],[-203,-315],[-207,-320],[-215,-338]],"c":true}],"h":1},{"t":187,"s":[{"i":[[-235.82,-376.53],[-241.67,-376.64],[-243.91,-370.81],[-245.87,-364.32],[-247.53,-357.38],[-250.54,-337.99],[-252.3,-311.56],[-253.96,-293.66],[-255.15,-280.19],[-253.08,-260],[-245.77,-240.1],[-237.75,-225.8],[-230.2,-212.68],[-222.53,-195.31],[-213.91,-176.06],[-206.54,-164.78],[-200.91,-156.22],[-192.84,-140.91],[-184.05,-119.24],[-178.9,-106.14],[-172.86,-95.8],[-169.81,-97.16],[-166.69,-101.76],[-164.39,-106.16],[-162.51,-110.75],[-154.99,-131.56],[-147.58,-163.81],[-149.94,-204.26],[-168.98,-239.74],[-177.32,-261.05],[-181.44,-274.02],[-189.2,-291.32],[-200.35,-309.55],[-209.48,-326.09],[-217.38,-341.78],[-225.77,-359.2]],"o":[[-240.86,-378.4],[-243.2,-372.84],[-245.25,-366.54],[-247.01,-359.73],[-249.64,-346.71],[-251.87,-320.42],[-253.38,-298.31],[-254.84,-284.59],[-254.69,-267.71],[-248.61,-246.2],[-240.4,-230.21],[-232.65,-217.04],[-225.08,-201.78],[-216.94,-182.45],[-208.33,-167.42],[-202.83,-159.18],[-196.06,-148.04],[-186.83,-126.51],[-180.72,-110.74],[-174.98,-98.67],[-170.72,-96.03],[-167.8,-100.03],[-165.14,-104.54],[-163.08,-109.27],[-158.45,-120.65],[-149.55,-153.14],[-145.7,-190.39],[-161.58,-228.94],[-175.86,-256.53],[-180.11,-269.79],[-185.77,-285.05],[-196.49,-303.57],[-206.79,-320.95],[-214.77,-336.51],[-222.86,-352.69],[-232.25,-371.12]],"v":[[-240,-380],[-242.43,-374.74],[-244.58,-368.68],[-246.44,-362.03],[-248,-355],[-251.21,-329.21],[-253,-303],[-254.4,-289.13],[-255,-276],[-250.85,-253.1],[-243,-235],[-235.2,-221.42],[-228,-208],[-219.74,-188.88],[-210,-170],[-204.68,-161.98],[-199,-153],[-189.84,-133.71],[-182,-114],[-176.94,-102.41],[-171,-96],[-168.81,-98.59],[-166,-103],[-163.74,-107.71],[-162,-112],[-152.27,-142.35],[-147,-172],[-155.76,-216.6],[-174,-252],[-178.72,-265.42],[-183,-278],[-192.85,-297.45],[-204,-316],[-212.13,-331.3],[-220,-347],[-229.01,-365.16]],"c":true}],"h":1},{"t":188,"s":[{"i":[[-236.31,-378],[-243.22,-372.99],[-247.05,-359.9],[-249.35,-346.64],[-250.62,-333.37],[-253.35,-305.82],[-254.72,-273.36],[-252.38,-259.71],[-251.51,-253.51],[-249.61,-249.04],[-246.71,-244.49],[-240.94,-232.68],[-233.3,-217.67],[-224.8,-199.31],[-215.64,-178.91],[-205.06,-162.8],[-193.39,-144.28],[-188.64,-130.1],[-186.19,-126.51],[-185.63,-121.78],[-182.08,-115.2],[-176.33,-95.48],[-166.16,-101.84],[-156.07,-127.19],[-145.12,-182.28],[-151.83,-206.47],[-159.4,-223.49],[-172.07,-247.59],[-180,-270.49],[-186.24,-284.49],[-191.15,-295.9],[-194.68,-299.57],[-195.55,-302.29],[-202.36,-312.3],[-211.73,-330.96],[-225.71,-359.42]],"o":[[-241.69,-376.79],[-245.9,-364.54],[-248.78,-350.95],[-250.27,-337.85],[-251.99,-317.39],[-254.72,-283.8],[-252.62,-261.95],[-251.82,-255.48],[-250.5,-250.54],[-247.71,-246.01],[-243.54,-237.84],[-235.82,-222.59],[-227.73,-206.36],[-218.75,-185.59],[-208.87,-167.91],[-197.33,-150.99],[-189.15,-133.94],[-187.89,-127.63],[-185.34,-124.23],[-184.1,-117.49],[-180.23,-110.43],[-170.41,-96.06],[-160.28,-112.79],[-148.31,-156.46],[-150.09,-204.38],[-155.74,-218.58],[-168.46,-240.49],[-177.93,-262.39],[-184.4,-281.51],[-189.81,-291.61],[-193.24,-299.41],[-195.59,-300.78],[-199.3,-308.18],[-208.87,-323.88],[-220,-348.75],[-234.15,-373.11]],"v":[[-240,-380],[-244.56,-368.77],[-248,-355],[-249.81,-342.24],[-251,-329],[-254.04,-294.81],[-253,-264],[-252.1,-257.6],[-251,-252],[-248.66,-247.52],[-246,-243],[-238.38,-227.63],[-231,-213],[-221.77,-192.45],[-212,-173],[-201.2,-156.89],[-190,-136],[-188,-128],[-186,-126],[-185,-120],[-182,-115],[-171,-96],[-165,-104],[-154,-135],[-150,-204],[-152,-207],[-165,-234],[-175,-255],[-183,-278],[-188,-288],[-193,-299],[-195,-300],[-196,-303],[-205,-317],[-215,-338],[-231,-368]],"c":true}],"h":1},{"t":189,"s":[{"i":[[-229.63,-369.74],[-243.38,-372.71],[-247.05,-359],[-249.34,-345.63],[-250.62,-332.48],[-253.15,-309.22],[-255.68,-281.81],[-253.87,-265.21],[-250.87,-255.45],[-249.25,-250.17],[-248.48,-246.12],[-245.88,-240.65],[-242.16,-234.17],[-236.12,-223.3],[-228.82,-210.2],[-222.95,-196.01],[-217.28,-182.14],[-209.5,-169.2],[-201.13,-157.71],[-190.47,-136.35],[-176.26,-95.48],[-168.22,-99.94],[-161.46,-113.21],[-158.53,-120.38],[-144.54,-174.28],[-153.52,-212.05],[-160.96,-227.57],[-172.36,-246.83],[-175.29,-257],[-178.44,-262.41],[-183.87,-280.4],[-190.97,-293.57],[-196.01,-303.72],[-201.94,-312.17],[-207.99,-322.17],[-213.28,-333.31]],"o":[[-241.86,-376.7],[-245.98,-363.86],[-248.78,-349.89],[-250.26,-336.93],[-251.81,-318.56],[-255.08,-290.84],[-254.69,-268.98],[-251.96,-258.44],[-249.51,-251.61],[-248.74,-247.43],[-247.06,-242.82],[-243.43,-236.33],[-238.71,-227.7],[-231.17,-214.55],[-224.81,-200.94],[-219.18,-186.6],[-212.43,-173.35],[-203.85,-161.39],[-194.53,-146.21],[-183.46,-116.97],[-169.29,-96.17],[-163.69,-108.23],[-159.36,-118.66],[-149.99,-146.7],[-150.81,-206.23],[-159.16,-223.31],[-167.68,-239.57],[-175.74,-254.72],[-176.57,-260.59],[-181.8,-272.01],[-188.78,-290.75],[-194.87,-300.17],[-199.53,-309.52],[-205.52,-318.36],[-211.9,-329.63],[-222.12,-352.26]],"v":[[-240,-380],[-244.68,-368.28],[-248,-354],[-249.8,-341.28],[-251,-328],[-254.11,-300.03],[-255,-273],[-252.92,-261.82],[-250,-253],[-248.99,-248.8],[-248,-245],[-244.66,-238.49],[-241,-232],[-233.64,-218.93],[-227,-206],[-221.07,-191.31],[-215,-178],[-206.67,-165.3],[-199,-154],[-186,-124],[-171,-96],[-166,-104],[-160,-117],[-158,-122],[-149,-197],[-156,-217],[-164,-233],[-175,-253],[-176,-259],[-179,-264],[-187,-287],[-193,-297],[-198,-307],[-203,-314],[-210,-326],[-215,-337]],"c":true}],"h":1},{"t":190,"s":[{"i":[[-228.75,-369.39],[-245.53,-366.3],[-250.09,-338.36],[-253.21,-308.72],[-255.71,-281.49],[-253.52,-262.82],[-249.45,-250.49],[-246.67,-243.54],[-244.77,-238.52],[-243.15,-236],[-241.39,-234.65],[-240.26,-232.38],[-239.38,-229.69],[-237.26,-225.91],[-234.74,-221.41],[-231.32,-214.38],[-227.96,-206.08],[-225.88,-201.51],[-224.5,-198.2],[-220.4,-188.8],[-214.79,-177.89],[-212.65,-172.98],[-209.05,-169.49],[-207.53,-165.77],[-202.6,-160.43],[-200.49,-155.78],[-191.1,-138.3],[-182.91,-116.75],[-175.47,-95.57],[-167.96,-100.35],[-157.29,-124.79],[-143.28,-191.61],[-165.97,-236.05],[-177.78,-262.62],[-192.12,-296.89],[-208.03,-323.16]],"o":[[-243.23,-374.12],[-248.96,-348.42],[-251.86,-318.22],[-255.14,-290.35],[-254.55,-267.57],[-250.98,-254.28],[-247.28,-245.28],[-245.41,-240.16],[-243.71,-236.42],[-242,-235.11],[-240.57,-233.29],[-239.67,-230.58],[-238.14,-227.46],[-235.57,-222.89],[-232.59,-217.33],[-229,-208.75],[-226.38,-202.66],[-224.94,-199.28],[-222.25,-192.85],[-216.67,-181.31],[-212.43,-174.08],[-211.03,-170.53],[-207.38,-167.12],[-205.08,-162.19],[-200.4,-157.08],[-195.56,-147.87],[-185.84,-124.22],[-178.55,-105.88],[-168.9,-96.2],[-161.21,-112.92],[-147.26,-165.12],[-159.94,-227.71],[-175.24,-254.39],[-185.76,-285.85],[-203.77,-315.7],[-220.15,-347.09]],"v":[[-240,-380],[-247.24,-357.36],[-251,-328],[-254.17,-299.54],[-255,-273],[-252.25,-258.55],[-248,-247],[-246.04,-241.85],[-244,-237],[-242.58,-235.55],[-241,-234],[-239.96,-231.48],[-239,-229],[-236.41,-224.4],[-234,-220],[-230.16,-211.56],[-227,-204],[-225.41,-200.39],[-224,-197],[-218.53,-185.05],[-213,-175],[-212,-172],[-208,-168],[-207,-165],[-201,-158],[-200,-155],[-188,-130],[-181,-112],[-171,-96],[-166,-104],[-155,-134],[-155,-217],[-171,-246],[-181,-272],[-199,-308],[-212,-331]],"c":true}],"h":1},{"t":191,"s":[{"i":[[-237.44,-380],[-240.93,-378.55],[-241.78,-377.52],[-244.58,-369.64],[-247.2,-357.41],[-249.25,-344.8],[-250.53,-331.65],[-253.34,-308.32],[-255.81,-280.62],[-236.21,-226.93],[-225.43,-201.52],[-217.82,-182.87],[-214.64,-175.99],[-210.99,-172.43],[-209.63,-168.82],[-205.83,-165.08],[-204.67,-161.99],[-200.88,-158.48],[-196.96,-150.66],[-195.59,-147.21],[-187.55,-128.72],[-176.96,-95.43],[-162.12,-110.2],[-156.7,-127.16],[-143.87,-187.43],[-159.86,-226.18],[-173.62,-250.11],[-177.81,-259.48],[-180.83,-271.99],[-193.92,-299.62],[-201.84,-313],[-207.82,-322.86],[-219.28,-348.58],[-226.7,-359.6],[-227.6,-362.32],[-229.94,-366.26]],"o":[[-240.54,-378.79],[-241.55,-377.91],[-243.48,-373.44],[-246.44,-361.63],[-248.73,-348.97],[-250.14,-336.14],[-251.94,-317.76],[-255.28,-289.75],[-253.04,-251.17],[-227.12,-204.32],[-221.02,-190.68],[-214.46,-177.07],[-213.03,-173.5],[-209.34,-170.04],[-207.76,-166.37],[-204.32,-163.12],[-203.06,-159.6],[-198.43,-154.36],[-195.4,-147.96],[-190.51,-136.74],[-181.4,-112.88],[-167.95,-96.29],[-157.87,-120.81],[-148.14,-161.57],[-156.64,-220.4],[-169.39,-242.54],[-176.11,-258.37],[-180.17,-266],[-186.99,-289.03],[-200.61,-310.65],[-205.27,-318.92],[-215.8,-338.01],[-225.21,-359.38],[-227.56,-360.75],[-229.02,-364.72],[-233.49,-372.09]],"v":[[-240,-379],[-241.24,-378.23],[-242,-377],[-245.51,-365.63],[-248,-353],[-249.7,-340.47],[-251,-327],[-254.31,-299.03],[-255,-272],[-229,-209],[-224,-198],[-215,-178],[-214,-175],[-210,-171],[-209,-168],[-205,-164],[-204,-161],[-200,-157],[-196,-149],[-195,-146],[-183,-117],[-171,-96],[-161,-113],[-155,-134],[-153,-211],[-165,-235],[-176,-258],[-178,-260],[-183,-278],[-199,-308],[-203,-315],[-210,-327],[-225,-359],[-227,-360],[-228,-363],[-231,-368]],"c":true}],"h":1},{"t":192,"s":[{"i":[[-235.68,-377.07],[-242.24,-375.98],[-244.27,-368.8],[-247.69,-353.76],[-250.24,-334.05],[-253.46,-308.55],[-255.93,-281.04],[-249.25,-250.56],[-232.61,-217.98],[-224.49,-197.86],[-217.31,-181.99],[-214.64,-177.03],[-214.32,-175.5],[-212.78,-173.62],[-210.46,-171.64],[-204.04,-162.28],[-199.85,-155.36],[-197.37,-152.7],[-189.4,-131.46],[-183.65,-118.7],[-176.47,-95.48],[-163.61,-107.3],[-157.38,-123.86],[-143.98,-179.11],[-154.2,-214.4],[-157.11,-222.29],[-170.12,-242.82],[-180.31,-269.5],[-194.49,-300.49],[-200.36,-312.01],[-204.2,-315.66],[-208.36,-323.89],[-216.88,-341.36],[-223.16,-355.64],[-226.7,-359.6],[-227.6,-362.32]],"o":[[-241.36,-378.08],[-243.7,-371.34],[-246.57,-359.99],[-249.53,-340.8],[-251.99,-317.79],[-255.43,-290.18],[-253.95,-261.82],[-238.58,-228.64],[-226.83,-203.61],[-219.73,-187.05],[-214.73,-177.53],[-214.43,-176.01],[-213.55,-174.3],[-211.23,-172.29],[-207.14,-167],[-200.88,-157.2],[-198.63,-153.4],[-192.27,-143],[-185.47,-120.52],[-181.38,-112.78],[-168.25,-96.26],[-159.38,-117.01],[-149.53,-153.1],[-151.49,-210.18],[-156.91,-219.82],[-163.5,-234.52],[-178.2,-261.34],[-187.62,-289.87],[-200.54,-310.93],[-201.83,-314.29],[-206.86,-320.1],[-213.88,-334.37],[-221.66,-351.54],[-225.21,-359.38],[-227.56,-360.75],[-231.62,-369.11]],"v":[[-240,-380],[-242.97,-373.66],[-245,-366],[-248.61,-347.28],[-251,-327],[-254.44,-299.37],[-255,-272],[-243.92,-239.6],[-229,-209],[-222.11,-192.45],[-215,-178],[-214.54,-176.52],[-214,-175],[-212,-172.95],[-210,-171],[-202,-159],[-199,-154],[-197,-152],[-186,-122],[-183,-117],[-171,-96],[-162,-111],[-156,-129],[-150,-204],[-156,-218],[-158,-224],[-175,-254],[-183,-277],[-200,-310],[-201,-313],[-205,-317],[-210,-327],[-220,-348],[-225,-359],[-227,-360],[-228,-363]],"c":true}],"h":1},{"t":193,"s":[{"i":[[-238.34,-378.97],[-242.23,-376.01],[-244.31,-368.65],[-247.71,-353.63],[-250.26,-333.88],[-253.5,-308.41],[-255.96,-281.3],[-251.16,-254.95],[-239.17,-230.76],[-229.88,-210.44],[-223.29,-193.98],[-219.21,-184.88],[-216.79,-179.31],[-215.46,-177.65],[-214.16,-177.22],[-213.57,-176.02],[-213.27,-174.38],[-211.17,-171.42],[-208.68,-167.89],[-204.83,-164.08],[-203.67,-160.99],[-199.94,-157.58],[-198.13,-152.21],[-188.76,-130.79],[-175.2,-95.6],[-163.97,-106.5],[-157.49,-124.17],[-148.74,-159.93],[-155.85,-220.14],[-175.87,-255.59],[-184.2,-281.57],[-197.97,-307.52],[-205.4,-319.23],[-218.27,-345.03],[-231.07,-367.47],[-234.44,-374.18]],"o":[[-241.32,-378.19],[-243.72,-371.24],[-246.58,-359.94],[-249.55,-340.6],[-252.02,-317.5],[-255.47,-290.31],[-254.08,-263.07],[-243.71,-238.8],[-232.24,-216.2],[-225.41,-199.34],[-220.07,-186.97],[-217.57,-181.04],[-215.88,-177.79],[-214.6,-177.36],[-213.68,-176.58],[-213.37,-174.92],[-212.08,-172.72],[-209.47,-169.01],[-206.76,-165.37],[-203.32,-162.12],[-201.82,-158.25],[-197.82,-154.01],[-190.99,-138.26],[-180.7,-110.08],[-168.52,-96.24],[-158.99,-117.89],[-152.4,-144.11],[-145.81,-203.61],[-172.21,-248.22],[-182.06,-272.24],[-191.66,-298.12],[-203.71,-316.75],[-213.42,-333.1],[-227.22,-362.18],[-234.63,-372.97],[-236.39,-377.04]],"v":[[-240,-380],[-242.97,-373.63],[-245,-366],[-248.63,-347.11],[-251,-327],[-254.48,-299.36],[-255,-272],[-247.44,-246.88],[-235,-222],[-227.65,-204.89],[-221,-189],[-218.39,-182.96],[-216,-178],[-215.03,-177.51],[-214,-177],[-213.47,-175.47],[-213,-174],[-210.32,-170.21],[-208,-167],[-204,-163],[-203,-160],[-199,-156],[-197,-150],[-183,-116],[-171,-96],[-162,-111],[-156,-130],[-148,-171],[-168,-241],[-179,-264],[-188,-290],[-202,-314],[-207,-322],[-224,-356],[-234,-372],[-235,-375]],"c":true}],"h":1},{"t":194,"s":[{"i":[[-235.51,-377.73],[-242.15,-376.72],[-243.3,-370.51],[-246.43,-358.67],[-249.33,-343.5],[-251.93,-323.3],[-254.61,-301.49],[-255.38,-287.06],[-255.32,-275.07],[-251.35,-256.84],[-239.69,-232.5],[-227.43,-204.49],[-221.99,-192.11],[-218.21,-181.56],[-214.33,-177.44],[-213.58,-174.77],[-203.85,-162.93],[-195.6,-148.62],[-187.8,-128],[-176.02,-95.52],[-167.75,-99.84],[-159.06,-117.22],[-152.65,-142.03],[-146.49,-175.95],[-155.48,-218.88],[-173.66,-249.17],[-181.29,-272.09],[-187.73,-287.31],[-192.78,-299.73],[-197.29,-307.26],[-200.96,-311.31],[-201.76,-314.48],[-203.76,-315.59],[-205.17,-318.58],[-216.32,-339.55],[-226.48,-362.37]],"o":[[-241.5,-378.46],[-243.05,-372.75],[-245.27,-363.42],[-248.46,-348.71],[-250.88,-330.8],[-253.79,-308.64],[-255.23,-291.27],[-255.43,-278.95],[-254.26,-264.84],[-244.07,-240.67],[-231.51,-215.86],[-223.05,-193.65],[-219.09,-185.94],[-215.74,-177.58],[-213.35,-176.14],[-209.09,-168.8],[-198.64,-153.92],[-189.6,-135.04],[-181.6,-112.51],[-169.61,-96.13],[-161.73,-110.72],[-154.86,-133.06],[-148.35,-165.45],[-149.27,-205.57],[-166.19,-238.11],[-180.41,-266.03],[-185,-282.77],[-191.47,-295.03],[-195.7,-302.78],[-199.63,-309.7],[-202.3,-313.48],[-202.16,-315.35],[-204.72,-317.24],[-211.53,-329.43],[-223.25,-353.55],[-233.01,-369.18]],"v":[[-240,-380],[-242.6,-374.73],[-244,-368],[-247.45,-353.69],[-250,-338],[-252.86,-315.97],[-255,-295],[-255.41,-283],[-255,-272],[-247.71,-248.76],[-236,-225],[-224,-196],[-221,-190],[-216,-178],[-214,-177],[-213,-174],[-201,-158],[-194,-145],[-183,-116],[-171,-96],[-166,-103],[-157,-125],[-151,-151],[-148,-192],[-160,-227],[-178,-260],[-183,-277],[-190,-292],[-194,-301],[-198,-308],[-202,-313],[-202,-315],[-204,-316],[-206,-320],[-221,-349],[-229,-365]],"c":true}],"h":1},{"t":195,"s":[{"i":[[-238.34,-378.97],[-242.15,-376.72],[-243.3,-370.51],[-246.4,-358.68],[-249.26,-343.51],[-251.99,-323.66],[-254.61,-302.35],[-255.71,-278.38],[-235.34,-224.35],[-222.66,-189.55],[-218.03,-182.03],[-217.7,-181.09],[-214.58,-177.86],[-211.51,-172.04],[-202.8,-161.78],[-191.78,-138.21],[-183.08,-116.33],[-181.68,-110.51],[-173.56,-95.75],[-159.28,-116.19],[-152.94,-139.98],[-147.03,-199.46],[-161,-229.08],[-165.11,-237.57],[-170.37,-244.07],[-175.77,-256.34],[-178.38,-262.66],[-179.48,-265.56],[-188.01,-289.79],[-198.76,-309.4],[-202.59,-314.33],[-207.04,-323.48],[-212.03,-330.19],[-220.13,-348.48],[-231.19,-367.66],[-234.44,-374.18]],"o":[[-241.5,-378.46],[-243.05,-372.75],[-245.27,-363.43],[-248.4,-348.72],[-250.93,-330.99],[-253.83,-309.34],[-255.47,-288.3],[-252.79,-252.28],[-224.72,-197.81],[-219.06,-183.11],[-217.22,-181.18],[-216.38,-179.03],[-212.31,-174.49],[-206.62,-165.43],[-195.09,-148.64],[-185.57,-121.05],[-181.17,-112.21],[-177.16,-100.44],[-167.85,-96.3],[-154.72,-129.77],[-147.06,-173.39],[-156.95,-223.01],[-164.82,-235.34],[-167.8,-241.9],[-174,-250.6],[-177.77,-260.68],[-179.36,-264.77],[-184.09,-278.38],[-195.35,-303.34],[-201.37,-313.6],[-205.54,-319.13],[-210.12,-329.02],[-217.13,-339.71],[-226.98,-361.79],[-234.63,-372.97],[-236.39,-377.04]],"v":[[-240,-380],[-242.6,-374.73],[-244,-368],[-247.4,-353.7],[-250,-338],[-252.91,-316.5],[-255,-296],[-255,-272],[-228,-206],[-219,-183],[-218,-182],[-217,-180],[-214,-177],[-210,-170],[-200,-157],[-187,-125],[-182,-114],[-181,-109],[-171,-96],[-158,-120],[-151,-151],[-154,-216],[-164,-234],[-166,-239],[-172,-247],[-177,-259],[-179,-264],[-180,-267],[-193,-299],[-201,-313],[-203,-315],[-209,-327],[-213,-332],[-224,-356],[-234,-372],[-235,-375]],"c":true}],"h":1},{"t":196,"s":[{"i":[[-227.83,-366.9],[-242,-376.65],[-243.33,-370.4],[-246.39,-358.92],[-249.32,-344.24],[-251.97,-324.67],[-254.61,-303.36],[-255.39,-277.94],[-250.96,-257.18],[-241.66,-235.55],[-231.84,-214.16],[-226.03,-199.08],[-221.68,-188.03],[-216.93,-180.12],[-211.6,-173.17],[-206.28,-166.07],[-201.28,-159.18],[-195.5,-148.16],[-189.39,-131.66],[-183.05,-114.15],[-173.6,-95.75],[-169.24,-97.42],[-165.69,-102.72],[-160.18,-114.53],[-154.97,-131.54],[-150.11,-154.5],[-147.44,-179.67],[-154.63,-218.47],[-174.38,-250.44],[-182.92,-273.3],[-187.78,-289.21],[-194.4,-302.47],[-201.99,-314.72],[-205.14,-319.96],[-206.75,-322.74],[-209.02,-326.31]],"o":[[-241.33,-378.46],[-243,-372.63],[-245.23,-363.55],[-248.43,-349.26],[-250.91,-331.99],[-253.82,-310.36],[-255.66,-286.1],[-253.04,-263.48],[-244.99,-242.72],[-235.08,-221.27],[-227.44,-203.07],[-223.15,-191.56],[-218.63,-182.53],[-213.42,-175.44],[-208.14,-168.48],[-202.85,-161.42],[-197.56,-152.83],[-191.42,-137.57],[-185.75,-121.52],[-176.98,-101.26],[-170.39,-96.06],[-166.88,-100.75],[-162.44,-108.76],[-156.44,-125.92],[-151.89,-145.66],[-147.89,-171.5],[-149.19,-205.75],[-167.22,-240.82],[-181.28,-267.69],[-186.17,-284.06],[-191.91,-298.11],[-199.44,-310.78],[-204.52,-318.84],[-206.26,-321.92],[-208.61,-324.68],[-219.83,-344.99]],"v":[[-240,-380],[-242.5,-374.64],[-244,-368],[-247.41,-354.09],[-250,-339],[-252.9,-317.52],[-255,-297],[-254.22,-270.71],[-248,-250],[-238.37,-228.41],[-229,-207],[-224.59,-195.32],[-220,-185],[-215.17,-177.78],[-210,-171],[-204.57,-163.75],[-200,-157],[-193.46,-142.87],[-187,-125],[-180.01,-107.7],[-171,-96],[-168.06,-99.09],[-165,-104],[-158.31,-120.22],[-154,-136],[-149,-163],[-148,-188],[-160.93,-229.65],[-179,-262],[-184.54,-278.68],[-190,-294],[-196.92,-306.62],[-204,-318],[-205.7,-320.94],[-207,-323],[-210,-328]],"c":true}],"h":1},{"t":197,"s":[{"i":[[-228.62,-368.18],[-241.64,-377.66],[-242.47,-373.68],[-247.11,-355.93],[-250.98,-329.35],[-253.72,-309.21],[-256.08,-290.48],[-251.26,-257.98],[-233.39,-219.16],[-225.88,-199.26],[-221.18,-186.71],[-217.83,-181.66],[-215.48,-179.7],[-214.57,-178],[-214.24,-176.38],[-213.43,-175.36],[-212.23,-174.31],[-209.64,-170.67],[-206.18,-165.63],[-203.69,-162.61],[-201.53,-160.82],[-199.95,-158.13],[-198.56,-155.06],[-192.8,-142.42],[-186.88,-124.24],[-181.08,-109.7],[-173.21,-95.79],[-167.45,-99.78],[-161.3,-111.33],[-158.21,-119.37],[-155.7,-129.96],[-145.86,-177.82],[-164.18,-233.87],[-181.9,-270.6],[-190.35,-294.03],[-207.09,-322.16]],"o":[[-241.15,-378.82],[-242.29,-375.09],[-245.37,-364.51],[-249.91,-338.35],[-252.68,-315.48],[-255.42,-296.71],[-255.81,-271.66],[-240.05,-231.73],[-227.29,-203.65],[-222.83,-190.79],[-218.59,-182.3],[-216.27,-180.35],[-214.7,-178.56],[-214.34,-176.91],[-213.82,-175.71],[-212.63,-174.66],[-210.8,-172.35],[-207.33,-167.31],[-204.42,-163.21],[-202.24,-161.42],[-200.42,-159.1],[-199.02,-156.11],[-194.85,-148.04],[-188.81,-130.52],[-183.23,-115.06],[-176.07,-100.07],[-169.8,-96.11],[-163.2,-107.39],[-159.36,-115.64],[-156.38,-126.53],[-149,-159.09],[-154.03,-223.61],[-178.7,-260.69],[-187.91,-288.82],[-200.04,-312.53],[-222,-349.52]],"v":[[-240,-380],[-241.96,-376.38],[-243,-372],[-248.51,-347.14],[-252,-321],[-254.57,-302.96],[-256,-285],[-245.65,-244.86],[-229,-208],[-224.35,-195.03],[-219,-183],[-217.05,-181],[-215,-179],[-214.45,-177.46],[-214,-176],[-213.03,-175.01],[-212,-174],[-208.48,-168.99],[-205,-164],[-202.96,-162.02],[-201,-160],[-199.48,-157.12],[-198,-154],[-190.8,-136.47],[-184,-117],[-178.58,-104.88],[-171,-96],[-165.33,-103.59],[-161,-112],[-157.29,-122.95],[-155,-133],[-150,-201],[-174,-252],[-185,-280],[-194,-301],[-213,-333]],"c":true}],"h":1},{"t":198,"s":[{"i":[[-229.83,-368.96],[-245.27,-366.33],[-248.8,-342.03],[-252.62,-316.91],[-256.11,-293.36],[-253.07,-262.62],[-240.54,-234.48],[-233.11,-216.85],[-229.31,-206.32],[-224.29,-194.41],[-217.99,-182.98],[-213.24,-176],[-209.36,-170.79],[-204.24,-163.96],[-199.25,-156.39],[-193.25,-142.83],[-186.38,-121.96],[-182.77,-113.58],[-180.53,-110.14],[-176.82,-101.53],[-173,-95.81],[-168.3,-98.66],[-163.43,-107.15],[-157.8,-119.86],[-152.99,-138.08],[-151.25,-148.28],[-150.24,-154.2],[-148.77,-207.4],[-161.93,-231.64],[-165.89,-239.25],[-176.56,-255.41],[-186.77,-285.81],[-195.54,-304.75],[-204.28,-317.32],[-208.8,-326.88],[-212.75,-333.7]],"o":[[-243.37,-373.57],[-247.99,-350.56],[-251.07,-324.98],[-255.15,-301.1],[-255.8,-272.88],[-245.44,-243.42],[-234.46,-220.44],[-230.54,-209.79],[-226.29,-198.67],[-220.14,-186.56],[-214.56,-177.85],[-210.64,-172.47],[-206.11,-166.52],[-200.81,-158.9],[-195.56,-149.36],[-188.66,-129.13],[-183.51,-114.77],[-181.29,-111.27],[-178.06,-104.87],[-174.28,-96.99],[-170.08,-96.09],[-164.97,-104.19],[-160.06,-113.82],[-154.27,-131.99],[-151.63,-146.18],[-150.56,-152.29],[-146.63,-181.26],[-159.28,-228.59],[-165.16,-236.89],[-171.54,-248.19],[-184.47,-275.17],[-193.21,-299.8],[-200.61,-313.53],[-208.23,-324.12],[-211.36,-331.4],[-221.89,-350.48]],"v":[[-240,-380],[-246.63,-358.45],[-250,-333],[-253.88,-309.01],[-256,-286],[-249.25,-253.02],[-236,-224],[-231.83,-213.32],[-228,-203],[-222.21,-190.48],[-216,-180],[-211.94,-174.23],[-208,-169],[-202.53,-161.43],[-198,-154],[-190.96,-135.98],[-184,-116],[-182.03,-112.43],[-180,-109],[-175.55,-99.26],[-171,-96],[-166.64,-101.43],[-163,-108],[-156.04,-125.93],[-152,-144],[-150.91,-150.28],[-150,-156],[-157,-224],[-164,-235],[-167,-241],[-180,-264],[-191,-295],[-198,-309],[-207,-322],[-210,-329],[-214,-336]],"c":true}],"h":1},{"t":199,"s":[{"i":[[-236.45,-377.33],[-245.03,-366.88],[-248.73,-342.93],[-252.68,-317.89],[-256.08,-294.33],[-252.33,-262.31],[-237.43,-227.1],[-229.67,-207.26],[-224.73,-194.5],[-221.25,-187.51],[-218.48,-182.5],[-216.46,-180.28],[-214.62,-177.85],[-208.64,-170.02],[-200.98,-159.63],[-194.96,-147.12],[-189.36,-130.39],[-182.82,-113.18],[-173.38,-95.77],[-167.91,-98.92],[-162.65,-108.61],[-155.28,-128.32],[-149.48,-160.26],[-148.63,-177.29],[-148.64,-192.22],[-150.56,-204.87],[-154.88,-218.4],[-157.4,-224.17],[-159.18,-227.55],[-161.04,-232.38],[-163.68,-234.57],[-164.56,-237.3],[-175.41,-253.05],[-183.65,-276.04],[-198.84,-309.19],[-222.28,-352.66]],"o":[[-243.16,-373.92],[-247.81,-351.38],[-251.14,-325.98],[-255.15,-302.07],[-255.87,-274.51],[-243.12,-238.6],[-231.31,-211.76],[-226.38,-198.64],[-222.26,-189.51],[-219.36,-184.01],[-217.15,-181.11],[-215.19,-178.65],[-211.4,-173.45],[-203.43,-163.11],[-196.78,-151.92],[-191.25,-136.35],[-185.63,-120.3],[-176.69,-100.92],[-169.84,-96.11],[-164.32,-105.16],[-158.29,-117.94],[-150.88,-149.48],[-148.81,-172.43],[-148.55,-187.18],[-149.37,-199.92],[-153.32,-214.11],[-156.81,-222.89],[-158.59,-226.5],[-160.93,-230.65],[-162.24,-234.4],[-164.58,-235.77],[-169.79,-245.69],[-182.38,-268.49],[-191.03,-297.95],[-214.81,-335.52],[-232.79,-370.81]],"v":[[-240,-380],[-246.42,-359.13],[-250,-334],[-253.91,-309.98],[-256,-287],[-247.73,-250.45],[-233,-216],[-228.02,-202.95],[-223,-191],[-220.31,-185.76],[-218,-182],[-215.83,-179.47],[-214,-177],[-206.04,-166.57],[-199,-156],[-193.1,-141.74],[-187,-124],[-179.76,-107.05],[-171,-96],[-166.12,-102.04],[-162,-110],[-153.08,-138.9],[-149,-169],[-148.59,-182.23],[-149,-196],[-151.94,-209.49],[-156,-221],[-158,-225.33],[-160,-229],[-162,-234],[-164,-235],[-165,-238],[-179,-261],[-186,-283],[-206,-321],[-230,-366]],"c":true}],"h":1},{"t":200,"s":[{"i":[[-238.14,-379.48],[-244.97,-366.85],[-248.73,-342.93],[-253.96,-310.03],[-255.89,-276.46],[-252.19,-262.74],[-250.46,-259.28],[-249.31,-255.38],[-248.49,-251.21],[-247.45,-249.14],[-246.2,-247.5],[-245.61,-245.59],[-245.32,-243.74],[-242.66,-238.41],[-238.77,-231.8],[-237.25,-227.47],[-236.52,-223.29],[-235.45,-221.14],[-234.2,-219.5],[-228.83,-205.16],[-220.67,-186.39],[-211.06,-173.05],[-202.32,-161.97],[-192.2,-138.08],[-180.71,-110.51],[-174.6,-95.7],[-166.33,-102.58],[-143.68,-177.31],[-154.68,-220.07],[-169.93,-243.79],[-183.33,-273.57],[-191.72,-295.71],[-197.79,-308.13],[-210.69,-329.55],[-225.78,-358.3],[-234.69,-374.63]],"o":[[-243.11,-373.89],[-247.79,-351.37],[-251.77,-321.55],[-256.03,-287.48],[-252.71,-263.85],[-251.06,-260.45],[-249.56,-256.78],[-248.77,-252.6],[-247.86,-249.64],[-246.62,-248.07],[-245.69,-246.22],[-245.42,-244.35],[-244.02,-240.76],[-240.03,-233.93],[-237.49,-228.82],[-236.76,-224.7],[-235.86,-221.64],[-234.62,-220.07],[-231.24,-211.97],[-223.54,-192.37],[-214.14,-176.81],[-205.15,-165.63],[-194.6,-148.77],[-185.52,-120],[-175.2,-98.87],[-169.25,-96.14],[-151.76,-129.06],[-153.14,-214.48],[-161.59,-234.76],[-180.49,-263.3],[-188.68,-290.47],[-196.67,-305.2],[-204.37,-318.29],[-220.79,-347.01],[-232.39,-369.32],[-237.46,-377.52]],"v":[[-240,-380],[-246.38,-359.11],[-250,-334],[-254.99,-298.76],[-253,-265],[-251.62,-261.6],[-250,-258],[-249.04,-253.99],[-248,-250],[-247.04,-248.61],[-246,-247],[-245.51,-244.97],[-245,-243],[-241.35,-236.17],[-238,-230],[-237.01,-226.08],[-236,-222],[-235.04,-220.61],[-234,-219],[-226.18,-198.76],[-217,-181],[-208.1,-169.34],[-200,-158],[-187,-124],[-180,-109],[-171,-96],[-165,-105],[-152,-210],[-157,-225],[-176,-255],[-186,-282],[-195,-302],[-199,-310],[-215,-337],[-231,-367],[-236,-376]],"c":true}],"h":1},{"t":201,"s":[{"i":[[-237.51,-378.68],[-244.82,-367.09],[-248.67,-343.78],[-252.68,-319.43],[-256.04,-296.26],[-252.69,-265.11],[-238.51,-230.73],[-230.38,-208.59],[-225.15,-193.77],[-222.09,-188.96],[-220.3,-187.5],[-219.54,-185.67],[-219.36,-183.64],[-218.08,-181.88],[-216.42,-180.6],[-210.82,-173.12],[-203.03,-163.24],[-193.8,-144.75],[-184.61,-116.76],[-178.37,-103.58],[-172.69,-95.86],[-169.21,-97.63],[-165.47,-103.18],[-157,-121.75],[-150.91,-153.07],[-149.17,-173.77],[-148.65,-188.24],[-155.73,-222.91],[-176.3,-253.76],[-186.16,-283.73],[-195.71,-304.92],[-199.76,-310.59],[-202.93,-317.89],[-208.71,-327.02],[-213.94,-335.05],[-227.06,-361.48]],"o":[[-242.99,-373.96],[-247.67,-352],[-251.16,-327.3],[-255.12,-303.91],[-255.93,-276.75],[-243.98,-242.1],[-232.06,-213.95],[-226.93,-198.5],[-222.69,-189.46],[-220.9,-187.98],[-219.61,-186.35],[-219.42,-184.32],[-218.62,-182.33],[-216.98,-181.02],[-213.56,-176.5],[-205.56,-166.49],[-197,-153.62],[-187.6,-126.32],[-180.02,-106.9],[-174.7,-98.06],[-170.48,-96.04],[-166.71,-101.2],[-160.29,-112.22],[-152.31,-142.18],[-149.59,-168.9],[-148.7,-183.44],[-150.33,-211.28],[-168.72,-244.15],[-185.36,-276.4],[-191.28,-296.86],[-198.16,-310.35],[-201.41,-313.4],[-207.47,-322.62],[-212.26,-333.19],[-221.14,-348.27],[-235.13,-374.42]],"v":[[-240,-380],[-246.24,-359.55],[-250,-335],[-253.9,-311.67],[-256,-289],[-248.33,-253.61],[-234,-219],[-228.66,-203.55],[-223,-190],[-221.5,-188.47],[-220,-187],[-219.48,-185],[-219,-183],[-217.53,-181.45],[-216,-180],[-208.19,-169.8],[-201,-160],[-190.7,-135.54],[-181,-109],[-176.53,-100.82],[-171,-96],[-167.96,-99.42],[-165,-104],[-154.65,-131.97],[-150,-164],[-148.93,-178.6],[-149,-193],[-162.22,-233.53],[-182,-268],[-189,-291],[-198,-310],[-200,-311],[-204,-319],[-211,-331],[-215,-337],[-233,-371]],"c":true}],"h":1},{"t":202,"s":[{"i":[[-238.14,-379.48],[-244.94,-366.82],[-248.65,-342.89],[-252.79,-318.36],[-256.19,-295.44],[-254.07,-270.52],[-245.11,-244.58],[-236.74,-224.84],[-230.76,-209.66],[-226.34,-197.69],[-221.55,-186.61],[-218.44,-183.26],[-216.63,-180.85],[-210.68,-173.17],[-203.14,-163.42],[-196.85,-151.88],[-192.56,-138.49],[-189.75,-131.23],[-187.53,-127.44],[-183.16,-113.47],[-173.7,-95.77],[-166.25,-101.81],[-151.93,-142.06],[-148.29,-182.31],[-158.97,-230.23],[-170.93,-247.38],[-178.22,-260.49],[-185.91,-280.57],[-192.85,-297.87],[-199.05,-311.7],[-202.5,-316.13],[-205.13,-320.49],[-208.13,-325.49],[-212.37,-332.1],[-225.59,-357.62],[-234.7,-374.64]],"o":[[-243.12,-373.87],[-247.71,-351.32],[-251.19,-326.14],[-255.29,-303.01],[-255.77,-278.98],[-248.74,-253.32],[-238.86,-230.01],[-232.69,-214.67],[-227.82,-201.88],[-223.21,-190.05],[-219.13,-184.09],[-217.2,-181.64],[-213.36,-176.46],[-205.57,-166.65],[-198.57,-156.13],[-193.85,-143.06],[-190.48,-132.5],[-188.27,-128.7],[-185.5,-121.94],[-177.45,-101.65],[-169.99,-96.08],[-155.8,-120.05],[-149.08,-172.96],[-150.41,-211.37],[-169.21,-245.84],[-176.06,-255.17],[-183.9,-273.79],[-190.5,-294.69],[-197.81,-307.52],[-201.39,-315.66],[-204.27,-319.19],[-207.27,-324.19],[-210.81,-330.13],[-220.36,-346.35],[-232.35,-369.33],[-237.46,-377.52]],"v":[[-240,-380],[-246.33,-359.07],[-250,-334],[-254.04,-310.69],[-256,-288],[-251.41,-261.92],[-241,-235],[-234.72,-219.75],[-229,-205],[-224.77,-193.87],[-220,-185],[-217.82,-182.45],[-216,-180],[-208.13,-169.91],[-201,-160],[-195.35,-147.47],[-191,-134],[-189.01,-129.96],[-187,-126],[-181,-109],[-171,-96],[-165,-104],[-150,-163],[-149,-192],[-168,-244],[-172,-249],[-181,-267],[-188,-287],[-196,-304],[-201,-315],[-203,-317],[-206,-322],[-209,-327],[-214,-335],[-231,-367],[-236,-376]],"c":true}],"h":1},{"t":203,"s":[{"i":[[-237.51,-378.68],[-244.93,-366.81],[-248.58,-342.89],[-252.93,-318.15],[-256.32,-294.77],[-255.1,-277.58],[-251.6,-263.77],[-247.67,-252.58],[-244.08,-243.87],[-241.19,-236.47],[-238.67,-230.67],[-237.29,-226.76],[-236.4,-223.09],[-232.77,-213.58],[-227.73,-201.78],[-224.02,-193.13],[-220.99,-186.04],[-219.58,-184.36],[-219.32,-183.41],[-215.23,-178.68],[-209.25,-172.57],[-206.87,-168.19],[-190.04,-129],[-175,-95.67],[-163.9,-107.05],[-158.67,-116.29],[-157.7,-121.81],[-147.8,-169.61],[-155.95,-224.31],[-176.52,-253.82],[-188.81,-290.98],[-208.61,-325.05],[-215.77,-337.58],[-220.54,-350.44],[-223.3,-353.82],[-229.98,-366.16]],"o":[[-243.14,-373.87],[-247.65,-351.33],[-251.27,-326.01],[-255.45,-302.53],[-255.8,-282.19],[-253,-268.37],[-248.87,-255.64],[-245.27,-246.69],[-242.11,-238.64],[-239.47,-232.49],[-237.59,-227.97],[-236.7,-224.32],[-234.4,-217.69],[-229.43,-205.62],[-225.02,-195.86],[-222,-188.22],[-219.67,-184.65],[-219.41,-183.74],[-217.36,-180.9],[-211.18,-174.52],[-207.18,-169.97],[-194.45,-151.29],[-179.08,-105.97],[-168.39,-96.22],[-161.68,-111.87],[-157.33,-119.7],[-151.44,-141.41],[-150.04,-205.69],[-168.94,-246.65],[-187.22,-280.54],[-198.92,-312.75],[-214.16,-337.36],[-218.35,-342.28],[-223.82,-353.85],[-227.41,-360.74],[-235.13,-374.42]],"v":[[-240,-380],[-246.29,-359.07],[-250,-334],[-254.19,-310.34],[-256,-287],[-254.05,-272.98],[-250,-259],[-246.47,-249.63],[-243,-241],[-240.33,-234.48],[-238,-229],[-236.99,-225.54],[-236,-222],[-231.1,-209.6],[-226,-198],[-223.01,-190.68],[-220,-185],[-219.49,-184.05],[-219,-183],[-213.21,-176.6],[-208,-171],[-206,-167],[-181,-110],[-171,-96],[-163,-109],[-158,-118],[-157,-124],[-149,-189],[-161,-233],[-183,-270],[-193,-300],[-214,-337],[-216,-338],[-223,-353],[-224,-355],[-233,-371]],"c":true}],"h":1},{"t":204,"s":[{"i":[[-232.44,-372.15],[-244.96,-366.8],[-248.49,-342.9],[-252.98,-318.52],[-256.31,-295.61],[-253.89,-271.98],[-245.45,-247.63],[-239.19,-231.39],[-235.38,-219.81],[-232.84,-212.34],[-229.6,-206.53],[-226.75,-196.33],[-222.73,-191.17],[-220.77,-186.15],[-218.35,-184.47],[-217.55,-181.76],[-215.38,-180.5],[-214.57,-177.77],[-205.04,-167.01],[-190.42,-132.32],[-176.54,-95.54],[-168.92,-97.98],[-152.92,-135.31],[-148.55,-191.3],[-157.3,-225.36],[-165.86,-240.66],[-181.12,-264.16],[-191.28,-296.57],[-196.62,-305.27],[-199.98,-313.56],[-203.5,-318.13],[-206.13,-322.49],[-209.13,-327.49],[-212.13,-332.49],[-215.13,-337.49],[-218.56,-344.31]],"o":[[-243.22,-373.85],[-247.59,-351.33],[-251.32,-326.21],[-255.47,-303.22],[-255.67,-279.91],[-248.79,-255.83],[-240.49,-235.24],[-236.63,-223.68],[-233.27,-213.99],[-231.49,-208.59],[-227.42,-200.97],[-224.47,-191.99],[-221.14,-188.61],[-219.7,-184.55],[-217.36,-183.15],[-216.66,-180.53],[-214.35,-179.14],[-209.77,-171.36],[-195.79,-151.77],[-183.2,-114.57],[-169.87,-96.09],[-158,-115.13],[-149.07,-172.76],[-154.11,-218.25],[-163.46,-236.42],[-174.22,-253.7],[-188.5,-284.78],[-195.5,-305],[-198.82,-309.53],[-202.39,-317.66],[-205.27,-321.19],[-208.27,-326.19],[-211.27,-331.19],[-214.27,-336.19],[-217.75,-342.02],[-225.91,-358.02]],"v":[[-240,-380],[-246.28,-359.06],[-250,-334],[-254.23,-310.87],[-256,-288],[-251.34,-263.91],[-242,-239],[-237.91,-227.53],[-234,-216],[-232,-210],[-229,-205],[-225,-193],[-222,-190],[-220,-185],[-218,-184],[-217,-181],[-215,-180],[-214,-177],[-202,-162],[-185,-119],[-171,-96],[-167,-101],[-151,-154],[-152,-208],[-161,-232],[-168,-244],[-185,-275],[-195,-304],[-197,-306],[-202,-317],[-204,-319],[-207,-324],[-210,-329],[-213,-334],[-216,-339],[-220,-347]],"c":true}],"h":1},{"t":205,"s":[{"i":[[-234.36,-375.82],[-244.4,-367.77],[-248.7,-345.94],[-252.61,-322.92],[-255.77,-301.28],[-253.68,-269.81],[-241.41,-237.9],[-233.96,-217.21],[-228.15,-199.46],[-222.91,-191.39],[-221.03,-186.5],[-218.36,-184.48],[-217.55,-181.76],[-215.38,-180.5],[-214.6,-177.77],[-211.86,-175.06],[-204.38,-165.99],[-190.45,-132.14],[-175.61,-95.62],[-163.76,-105.66],[-161.71,-110.45],[-148.89,-160.34],[-153.39,-219.26],[-177.17,-254.5],[-187.07,-283.36],[-192.91,-297.64],[-194.32,-303.59],[-197.08,-307.37],[-199.17,-312.61],[-201.68,-314.57],[-202.56,-317.3],[-205.18,-320.64],[-207.12,-325.55],[-213.22,-334.92],[-218.95,-346.14],[-225.33,-355.92]],"o":[[-242.55,-374.3],[-247.47,-353.59],[-251.22,-330.53],[-254.89,-308.29],[-256.47,-281.86],[-246.14,-247.83],[-235.88,-223.48],[-230.1,-205.2],[-225.02,-192.96],[-221,-188.47],[-219.69,-184.54],[-217.36,-183.15],[-216.66,-180.53],[-214.35,-179.13],[-213.16,-175.91],[-207.67,-169.88],[-195.85,-151.68],[-182.29,-112.47],[-169.67,-96.11],[-161.99,-108.76],[-152.98,-129.55],[-149.11,-200.49],[-166.72,-244.95],[-186.1,-277.39],[-190.37,-293],[-194.67,-301.45],[-195.61,-306.27],[-198.85,-310.5],[-200.24,-314.41],[-202.58,-315.78],[-203.94,-319.5],[-206.82,-323.36],[-210.32,-330.81],[-217.16,-341.73],[-222.65,-353.11],[-230.9,-366.18]],"v":[[-240,-380],[-245.94,-360.68],[-250,-338],[-253.75,-315.61],[-256,-295],[-249.91,-258.82],[-238,-229],[-232.03,-211.2],[-226,-195],[-222,-190],[-220,-185],[-218,-184],[-217,-181],[-215,-180],[-214,-177],[-211,-174],[-202,-162],[-185,-119],[-171,-96],[-163,-107],[-161,-112],[-149,-180],[-160,-232],[-184,-272],[-189,-289],[-194,-300],[-195,-305],[-198,-309],[-200,-314],[-202,-315],[-203,-318],[-206,-322],[-208,-327],[-215,-338],[-221,-350],[-227,-359]],"c":true}],"h":1},{"t":206,"s":[{"i":[[-238.14,-379.48],[-244.21,-368.33],[-248.64,-347.09],[-252.53,-324.71],[-255.73,-303.3],[-255.48,-280.21],[-249.67,-259.28],[-242.24,-238.97],[-234.98,-219.19],[-229.07,-203.55],[-222.85,-190.16],[-212.89,-176.74],[-202.5,-163.78],[-196.48,-150.94],[-192.28,-137.68],[-189.97,-130.88],[-188.54,-126.41],[-183.94,-115.01],[-173.4,-95.8],[-168.56,-98.42],[-163.44,-106.22],[-162.15,-108.79],[-161.3,-111.35],[-158.06,-118.75],[-154.66,-128.34],[-148.98,-167.07],[-152.12,-211.95],[-162.72,-237.01],[-168.77,-245.16],[-183.42,-268.93],[-190.34,-292.67],[-201.37,-316.82],[-214.56,-336.8],[-224.2,-355.74],[-230.06,-364.34],[-234.35,-374.28]],"o":[[-242.39,-374.54],[-247.34,-354.61],[-251.16,-332.06],[-254.81,-310.33],[-256.4,-287.82],[-252.12,-265.94],[-244.75,-245.88],[-237.35,-225.63],[-230.89,-208.47],[-225.05,-194.4],[-216.64,-181.1],[-205.82,-168.08],[-198.09,-155.35],[-193.57,-142.1],[-190.45,-132.43],[-189.02,-127.87],[-186.99,-122.36],[-177.15,-101.73],[-170.33,-96.05],[-165.11,-103.5],[-162.5,-107.87],[-161.55,-110.53],[-159.48,-115.33],[-155.65,-125.26],[-150.11,-146.55],[-149.03,-195.74],[-159.58,-230.37],[-167.07,-243.62],[-177.32,-257.98],[-189.59,-287.87],[-195.33,-305.68],[-210.79,-329.4],[-221.44,-349.21],[-227.83,-362.56],[-232.55,-368.73],[-237.46,-377.52]],"v":[[-240,-380],[-245.77,-361.47],[-250,-339],[-253.67,-317.52],[-256,-297],[-253.8,-273.08],[-247,-252],[-239.8,-232.3],[-233,-214],[-227.06,-198.97],[-220,-186],[-209.36,-172.41],[-200,-159],[-195.03,-146.52],[-191,-134],[-189.49,-129.38],[-188,-125],[-180.54,-108.37],[-171,-96],[-166.83,-100.96],[-163,-107],[-161.85,-109.66],[-161,-112],[-156.86,-122],[-154,-131],[-149,-178],[-157,-224],[-166,-242],[-170,-247],[-188,-283],[-192,-297],[-206,-323],[-218,-343],[-227,-361],[-231,-366],[-236,-376]],"c":true}],"h":1},{"t":207,"s":[{"i":[[-236.78,-379.28],[-244.75,-367.01],[-248.49,-343.44],[-253.02,-319.83],[-256.31,-297.53],[-253.82,-273.03],[-245.34,-247.87],[-237.49,-226.23],[-231.29,-208.23],[-227.38,-198.85],[-224.98,-192.64],[-223.46,-190.65],[-222.16,-190.22],[-221.57,-189.02],[-221.26,-187.37],[-218.21,-183.58],[-213.83,-179.11],[-212.57,-177],[-212.31,-175.39],[-209.65,-172.55],[-205.86,-169.19],[-204.23,-166.43],[-203.44,-163.72],[-200.72,-160.41],[-188.44,-124.13],[-174.4,-95.71],[-167.92,-100.09],[-167.7,-100.91],[-157.15,-119.3],[-148.45,-172.66],[-157.94,-228.54],[-179.6,-260.16],[-187.39,-284.06],[-201.27,-315.22],[-225.81,-356.27],[-233.76,-370.59]],"o":[[-243,-374.04],[-247.49,-351.71],[-251.37,-327.32],[-255.49,-304.94],[-255.65,-281.34],[-248.67,-256.29],[-239.59,-232.62],[-233.34,-214.04],[-228.14,-201.03],[-225.8,-194.65],[-223.88,-190.79],[-222.6,-190.36],[-221.69,-189.59],[-221.35,-187.92],[-219.79,-185.27],[-215.23,-180.5],[-212.67,-177.56],[-212.4,-175.92],[-210.97,-173.71],[-207.09,-170.29],[-204.51,-167.32],[-203.7,-164.63],[-202.02,-161.4],[-193.01,-145.37],[-179.08,-105.09],[-169.96,-96.09],[-167.22,-100.82],[-162.39,-109.18],[-150.07,-144.66],[-151.39,-213.14],[-172.32,-251.87],[-187.02,-279.17],[-193.89,-304],[-217.27,-341.67],[-232.16,-370.35],[-235.95,-374.33]],"v":[[-240,-380],[-246.12,-359.36],[-250,-335],[-254.26,-312.38],[-256,-290],[-251.24,-264.66],[-242,-239],[-235.41,-220.13],[-229,-203],[-226.59,-196.75],[-224,-191],[-223.03,-190.51],[-222,-190],[-221.46,-188.47],[-221,-187],[-216.72,-182.04],[-213,-178],[-212.48,-176.46],[-212,-175],[-208.37,-171.42],[-205,-168],[-203.96,-165.53],[-203,-163],[-200,-159],[-181,-109],[-171,-96],[-168,-100],[-167,-102],[-155,-127],[-150,-194],[-165,-240],[-185,-274],[-189,-289],[-209,-328],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":208,"s":[{"i":[[-235.08,-375.59],[-244.75,-366.52],[-248.48,-343.2],[-253.18,-319.66],[-256.48,-296.87],[-253.46,-271.73],[-244.99,-246.45],[-239.28,-229.92],[-235.38,-217.83],[-232.48,-210.26],[-229.83,-204.83],[-227.3,-198.71],[-225.02,-192.69],[-223.46,-190.65],[-222.16,-190.22],[-221.52,-187.74],[-216.86,-183.15],[-215.61,-179.78],[-213.42,-178.45],[-212.69,-175.87],[-206.8,-170.49],[-203.87,-164.36],[-200.9,-160.81],[-193.16,-138.42],[-175.86,-95.58],[-166.13,-102.12],[-147.74,-161.96],[-155.26,-224.07],[-163.21,-236.7],[-165.17,-241.73],[-177.56,-258.66],[-190.93,-295.6],[-206.36,-323.02],[-211.12,-332.54],[-213.97,-336.37],[-223.25,-353.21]],"o":[[-243.02,-373.67],[-247.49,-351.28],[-251.44,-327.23],[-255.7,-304.48],[-255.46,-280.26],[-248.22,-254.83],[-240.59,-234.01],[-236.68,-221.83],[-233.31,-212.1],[-230.73,-206.63],[-228.04,-200.87],[-225.79,-194.63],[-223.88,-190.79],[-222.6,-190.36],[-221.38,-189.17],[-219.47,-184.81],[-215.34,-181.12],[-214.64,-178.54],[-212.28,-177.22],[-209.94,-172.4],[-203.96,-166.56],[-201.88,-161.24],[-195.43,-149.87],[-186.01,-119.82],[-170.35,-96.05],[-152.26,-125.23],[-151,-206.73],[-161.6,-236.15],[-164.89,-239.47],[-171.66,-251.64],[-188.11,-280.86],[-200.6,-315.36],[-210.92,-330.51],[-212.85,-335.4],[-219.48,-345.13],[-230.83,-366.93]],"v":[[-240,-380],[-246.12,-358.9],[-250,-335],[-254.44,-312.07],[-256,-289],[-250.84,-263.28],[-242,-238],[-237.98,-225.88],[-234,-214],[-231.6,-208.45],[-229,-203],[-226.54,-196.67],[-224,-191],[-223.03,-190.51],[-222,-190],[-221,-187],[-216,-182],[-215,-179],[-213,-178],[-212,-175],[-205,-168],[-203,-163],[-200,-159],[-188,-125],[-171,-96],[-165,-104],[-150,-193],[-161,-235],[-164,-238],[-166,-243],[-182,-268],[-197,-308],[-210,-329],[-212,-334],[-215,-338],[-227,-360]],"c":true}],"h":1},{"t":209,"s":[{"i":[[-235.54,-377.57],[-244.19,-367.95],[-248.58,-346.58],[-252.71,-324.73],[-255.78,-304.13],[-254.66,-276.84],[-245.5,-248.97],[-239.19,-230.41],[-235.44,-218],[-232.5,-210.29],[-229.87,-204.91],[-227.32,-198.77],[-225.02,-192.64],[-223.45,-190.65],[-222.17,-190.22],[-221.57,-189.02],[-221.28,-187.38],[-219.38,-186.5],[-218.62,-183.78],[-211.58,-176.38],[-207.79,-171.28],[-205.55,-168.78],[-194.96,-142.43],[-175.55,-95.55],[-163.05,-107.91],[-150.93,-141.28],[-152.01,-217.72],[-176.08,-254.53],[-189.5,-289.87],[-196.74,-308.21],[-199.77,-311.57],[-201.75,-316.8],[-211.31,-331.8],[-220.56,-350.45],[-226.79,-360.31],[-229.77,-363.58]],"o":[[-242.4,-374.41],[-247.29,-354.03],[-251.32,-331.92],[-254.94,-310.84],[-256.41,-286.6],[-249.2,-258.03],[-240.48,-234.66],[-236.67,-222.08],[-233.31,-212.08],[-230.78,-206.7],[-228.07,-200.95],[-225.8,-194.62],[-223.87,-190.79],[-222.6,-190.37],[-221.68,-189.58],[-221.37,-187.92],[-220.66,-186.53],[-218.34,-185.12],[-215.4,-179.72],[-208.77,-172.14],[-206.4,-169.02],[-196.24,-155.49],[-185.34,-118.34],[-169.08,-96.19],[-155.69,-121.91],[-148.29,-188.92],[-166.89,-246.32],[-187.94,-279.33],[-194.44,-302.74],[-198.16,-311.36],[-201.16,-314.16],[-206.96,-325.96],[-217.6,-342.38],[-225.63,-355.75],[-228.16,-363.35],[-233.05,-369.48]],"v":[[-240,-380],[-245.74,-360.99],[-250,-339],[-253.83,-317.79],[-256,-298],[-251.93,-267.43],[-242,-239],[-237.93,-226.25],[-234,-214],[-231.64,-208.5],[-229,-203],[-226.56,-196.69],[-224,-191],[-223.03,-190.51],[-222,-190],[-221.47,-188.47],[-221,-187],[-219,-186],[-218,-183],[-210,-174],[-207,-170],[-205,-168],[-188,-125],[-171,-96],[-163,-108],[-150,-158],[-161,-235],[-183,-269],[-193,-299],[-198,-311],[-200,-312],[-203,-319],[-215,-338],[-223,-353],[-228,-363],[-230,-364]],"c":true}],"h":1},{"t":210,"s":[{"i":[[-236.78,-379.28],[-244.65,-366.78],[-248.45,-344.12],[-253.04,-321.48],[-256.3,-299.44],[-254.08,-276.25],[-246.78,-251.29],[-238.63,-226.4],[-230.79,-203.78],[-227.03,-196.7],[-225.25,-195.34],[-224.57,-194.03],[-224.24,-192.36],[-222.24,-189.59],[-219.66,-186.71],[-218.69,-183.83],[-215.03,-180.3],[-204.24,-167.32],[-190.56,-130.51],[-174.79,-95.63],[-167.28,-100.92],[-160.67,-113.12],[-153.3,-134.5],[-150.56,-215.59],[-164.95,-240.34],[-165.76,-243.48],[-167.75,-244.63],[-167.77,-246.49],[-169.75,-247.63],[-171.34,-251.31],[-175.5,-256.67],[-182.1,-266.8],[-190.26,-291.6],[-202.65,-318.36],[-225.54,-355.66],[-233.76,-370.59]],"o":[[-242.93,-373.72],[-247.41,-351.98],[-251.38,-328.75],[-255.5,-306.82],[-255.69,-284.36],[-249.63,-259.72],[-241.23,-234.76],[-233.41,-210.91],[-227.65,-197.28],[-225.83,-195.73],[-224.7,-194.6],[-224.34,-192.91],[-223.16,-190.73],[-220.49,-187.57],[-218.29,-185.24],[-216.84,-181.6],[-209.15,-172.93],[-194.32,-147.99],[-181.74,-110.67],[-169.67,-96.13],[-161.9,-109.66],[-155.03,-127.67],[-146.98,-175.89],[-162.94,-238.76],[-166.3,-242.48],[-166.15,-244.32],[-168.31,-245.46],[-168.14,-247.32],[-171.16,-249.72],[-174.22,-254.32],[-179.43,-262.78],[-188.65,-281.3],[-197.68,-310.25],[-216.55,-340.82],[-232.16,-370.35],[-235.95,-374.33]],"v":[[-240,-380],[-246.03,-359.38],[-250,-336],[-254.27,-314.15],[-256,-292],[-251.85,-267.98],[-244,-243],[-236.02,-218.66],[-228,-198],[-226.43,-196.21],[-225,-195],[-224.45,-193.47],[-224,-192],[-221.36,-188.58],[-219,-186],[-218,-183],[-214,-179],[-201,-161],[-185,-118],[-171,-96],[-166,-103],[-158,-120],[-152,-143],[-162,-237],[-166,-242],[-166,-244],[-168,-245],[-168,-247],[-170,-248],[-172,-252],[-177,-259],[-184,-271],[-194,-301],[-208,-327],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":211,"s":[{"i":[[-238.39,-379.63],[-244.49,-367.04],[-248.5,-344.82],[-253.05,-322.44],[-256.3,-300.45],[-254.1,-277.11],[-247.35,-253.42],[-241.29,-234.43],[-235.74,-217.95],[-232.7,-209.15],[-230.72,-203.54],[-220.72,-187.12],[-204.51,-167.83],[-195.05,-146.87],[-187.78,-124.25],[-180.82,-108.74],[-172.9,-95.81],[-168.03,-98.93],[-163.18,-107.65],[-156.35,-122.97],[-150.43,-148.15],[-149.5,-183.81],[-155.02,-221.31],[-159.94,-231.96],[-161.51,-235.05],[-169.32,-248.08],[-180.84,-264.4],[-188.06,-281.3],[-192.21,-296.34],[-197.99,-310.01],[-205.41,-322.73],[-216.57,-341.09],[-228.78,-362.86],[-232.52,-370.32],[-233.88,-370.8],[-235.69,-374.76]],"o":[[-242.74,-373.88],[-247.37,-352.51],[-251.39,-329.72],[-255.5,-307.81],[-255.68,-285.15],[-249.94,-261.24],[-243.17,-240.2],[-237.58,-223.3],[-233.34,-211.13],[-231.39,-205.35],[-226.22,-193.96],[-209.87,-174.06],[-197.66,-154.49],[-190.11,-131.75],[-183.37,-114.34],[-175.58,-99.48],[-169.94,-96.1],[-164.65,-104.7],[-159.38,-114.89],[-151.88,-139.6],[-149.24,-169.66],[-152.39,-209.64],[-159.43,-230.94],[-160.98,-234.02],[-165.4,-242.62],[-177.04,-258.97],[-186.45,-276.13],[-190.94,-291.41],[-195.79,-305.65],[-202.81,-318.55],[-212.18,-333.91],[-224.87,-355.57],[-232.08,-370.17],[-233.42,-370.63],[-235,-372.7],[-237.39,-378.22]],"v":[[-240,-380],[-245.93,-359.77],[-250,-337],[-254.27,-315.12],[-256,-293],[-252.02,-269.18],[-245,-246],[-239.43,-228.86],[-234,-213],[-232.05,-207.25],[-230,-202],[-215.29,-180.59],[-201,-161],[-192.58,-139.31],[-185,-118],[-178.2,-104.11],[-171,-96],[-166.34,-101.81],[-163,-108],[-154.11,-131.28],[-150,-156],[-150.95,-196.72],[-159,-230],[-160.46,-232.99],[-162,-236],[-173.18,-253.52],[-184,-271],[-189.5,-286.36],[-194,-301],[-200.4,-314.28],[-208,-327],[-220.72,-348.33],[-232,-370],[-232.97,-370.48],[-234,-371],[-236.54,-376.49]],"c":true}],"h":1},{"t":212,"s":[{"i":[[-236.78,-379.28],[-244.27,-367.6],[-248.44,-345.75],[-253.05,-323.65],[-256.21,-302.2],[-254.16,-277.79],[-246.83,-251.93],[-241.39,-234.94],[-237.33,-222.97],[-233.28,-210.69],[-228.75,-198.92],[-226.46,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.27,-192.38],[-222.18,-189.73],[-219.48,-186.72],[-217.87,-184.13],[-216.51,-181.67],[-215.4,-180.36],[-214.29,-179.36],[-209.06,-172.99],[-202.64,-164.25],[-196.74,-150.78],[-191,-132.51],[-182.57,-112.12],[-174.38,-95.67],[-163.94,-106.34],[-153.46,-128.6],[-149.64,-173.69],[-152.62,-212.11],[-173.62,-251.92],[-191.42,-292.79],[-202.78,-319.47],[-225.59,-355.77],[-233.76,-370.59]],"o":[[-242.55,-374.22],[-247.22,-353.36],[-251.45,-330.8],[-255.44,-309.35],[-255.74,-286.32],[-249.7,-260.59],[-242.72,-238.95],[-238.69,-226.95],[-234.65,-214.98],[-230.33,-202.66],[-226.88,-195.79],[-225.6,-195.36],[-224.68,-194.58],[-224.37,-192.92],[-223.19,-190.87],[-220.32,-187.66],[-218.37,-185.05],[-216.94,-182.44],[-215.75,-180.68],[-214.67,-179.7],[-211.49,-175.87],[-204.63,-167.18],[-198.49,-156.03],[-192.99,-139.02],[-186.05,-120.11],[-178.56,-104.15],[-169.35,-96.16],[-158.53,-115.92],[-149.19,-153.12],[-151.9,-200.86],[-161.71,-241.38],[-189.26,-280.67],[-198.65,-311.37],[-216.66,-342.14],[-232.16,-370.35],[-235.95,-374.33]],"v":[[-240,-380],[-245.74,-360.48],[-250,-338],[-254.25,-316.5],[-256,-295],[-251.93,-269.19],[-244,-243],[-240.04,-230.94],[-236,-219],[-231.8,-206.67],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.47,-193.47],[-224,-192],[-221.25,-188.69],[-219,-186],[-217.41,-183.28],[-216,-181],[-215.03,-180.03],[-214,-179],[-206.85,-170.09],[-201,-161],[-194.87,-144.9],[-188,-125],[-181,-109],[-171,-96],[-163,-108],[-152,-137],[-151,-190],[-156,-223],[-184,-271],[-195,-302],[-208,-328],[-232,-370],[-234,-371]],"c":true}],"h":1},{"t":213,"s":[{"i":[[-233.85,-373.32],[-244.36,-367.27],[-248.46,-345.74],[-252.94,-324.23],[-256.18,-303.01],[-253.12,-273.54],[-242.81,-241.18],[-239.37,-230.11],[-238.32,-227.09],[-237.6,-223.68],[-237.32,-219.97],[-235.52,-215.26],[-232.75,-209.74],[-230.31,-203.68],[-227.93,-197.56],[-226.46,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.26,-192.37],[-216.31,-182.24],[-204.71,-168.17],[-197.63,-152.68],[-191.75,-133.88],[-175.64,-95.54],[-165.66,-104.54],[-163.23,-106.58],[-158.46,-117.2],[-150.64,-143.39],[-152.18,-218.59],[-164.21,-240.74],[-180.26,-261.88],[-193.61,-300.61],[-199.33,-313.51],[-201.77,-315.57],[-206.39,-324.76],[-218.53,-345.14]],"o":[[-242.63,-373.9],[-247.27,-353.19],[-251.35,-331.23],[-255.35,-310.12],[-255.72,-284.95],[-246.67,-251.66],[-239.71,-231.07],[-238.67,-228.12],[-237.69,-224.94],[-237.42,-221.19],[-236.39,-217.14],[-233.7,-211.56],[-231.09,-205.9],[-228.73,-199.51],[-226.88,-195.79],[-225.6,-195.36],[-224.69,-194.59],[-224.35,-192.92],[-220.45,-186.91],[-208.43,-172.87],[-199.5,-158.23],[-193.75,-140.5],[-186.31,-120.27],[-169.36,-96.16],[-164.84,-106.36],[-160.63,-111.32],[-152.84,-131.83],[-147.96,-183.44],[-162.6,-239.19],[-172.4,-253.82],[-190.81,-286],[-198.97,-312.07],[-200.16,-315.36],[-204.42,-320.51],[-213.91,-336.98],[-228.15,-362.07]],"v":[[-240,-380],[-245.81,-360.23],[-250,-338],[-254.15,-317.18],[-256,-296],[-249.89,-262.6],[-240,-232],[-239.02,-229.12],[-238,-226],[-237.51,-222.44],[-237,-219],[-234.61,-213.41],[-232,-208],[-229.52,-201.59],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.46,-193.47],[-224,-192],[-212.37,-177.56],[-202,-163],[-195.69,-146.59],[-189,-127],[-171,-96],[-165,-106],[-163,-107],[-157,-121],[-150,-153],[-162,-238],[-165,-242],[-186,-275],[-198,-310],[-200,-315],[-202,-316],[-209,-329],[-223,-353]],"c":true}],"h":1},{"t":214,"s":[{"i":[[-236.45,-377.41],[-244.17,-367.91],[-248.44,-346.75],[-252.96,-325.2],[-256.18,-303.99],[-254.2,-280.01],[-246.83,-253.34],[-240.07,-230.77],[-234.28,-213.2],[-230.31,-203.7],[-227.98,-197.63],[-226.46,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.26,-192.37],[-216.33,-182.33],[-204.67,-168.21],[-195.62,-147.92],[-188.13,-124.75],[-183.37,-114.62],[-181.29,-110.57],[-174.48,-97.18],[-169.11,-97.94],[-159.64,-114.33],[-153.29,-132.26],[-149.65,-180.49],[-157.34,-229.64],[-165.01,-241.49],[-167.05,-246.59],[-169.65,-248.53],[-170.48,-251.25],[-180.65,-265.01],[-190.65,-289.02],[-198.74,-314.6],[-204.02,-321.31],[-222.21,-351.54]],"o":[[-242.45,-374.28],[-247.17,-354.14],[-251.37,-332.2],[-255.36,-311.1],[-255.78,-288.59],[-249.72,-262.39],[-241.93,-237.17],[-236.24,-218.79],[-231.07,-205.88],[-228.77,-199.57],[-226.88,-195.79],[-225.6,-195.36],[-224.69,-194.59],[-224.35,-192.92],[-220.5,-186.98],[-208.42,-172.94],[-198.3,-155.79],[-190.53,-132.4],[-184.23,-116.34],[-181.9,-111.74],[-176.67,-101.46],[-170.7,-95.42],[-162.49,-108.7],[-155.04,-126.11],[-148.37,-157.91],[-153.82,-215.09],[-163.72,-241.32],[-166.93,-244.42],[-168.3,-248.45],[-170.62,-249.83],[-176.02,-259.2],[-188.77,-279.93],[-195.02,-302],[-203.61,-319.68],[-213.18,-337.08],[-232.8,-369.84]],"v":[[-240,-380],[-245.67,-361.02],[-250,-339],[-254.16,-318.15],[-256,-297],[-251.96,-271.2],[-244,-244],[-238.16,-224.78],[-232,-208],[-229.54,-201.64],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.46,-193.47],[-224,-192],[-212.38,-177.64],[-202,-163],[-193.07,-140.16],[-185,-118],[-182.64,-113.18],[-181,-110],[-172.59,-96.3],[-166,-103],[-157.34,-120.22],[-152,-139],[-152,-200],[-163,-240],[-166,-243],[-168,-248],[-170,-249],[-171,-252],[-185,-273],[-193,-296],[-202,-318],[-205,-323],[-230,-365]],"c":true}],"h":1},{"t":215,"s":[{"i":[[-236.44,-377.38],[-244.06,-368.13],[-248.47,-347.45],[-252.9,-326.39],[-256.04,-305.7],[-254.37,-281.53],[-246.83,-254.72],[-241.54,-235.8],[-238.3,-222.96],[-235.58,-215.35],[-232.89,-209.95],[-230.4,-203.97],[-228.01,-197.65],[-226.45,-195.65],[-225.16,-195.22],[-224.57,-194.02],[-224.28,-192.38],[-223.42,-191.64],[-222.19,-191.25],[-221.57,-190],[-221.31,-188.39],[-216.12,-182.62],[-204.87,-168.7],[-197.17,-150.41],[-188.7,-125.96],[-181.57,-111.13],[-172.38,-92.39],[-154.76,-125.28],[-149.5,-173.69],[-153.87,-212.29],[-164.43,-241.59],[-181.54,-265.04],[-192.85,-294.38],[-199.7,-315.6],[-202.3,-318.82],[-221.68,-350.63]],"o":[[-242.33,-374.41],[-247.13,-354.65],[-251.38,-333.29],[-255.23,-312.59],[-255.95,-290.17],[-249.81,-263.81],[-242.64,-240.32],[-239.37,-227.12],[-236.38,-217.13],[-233.84,-211.76],[-231.15,-206.15],[-228.83,-199.72],[-226.87,-195.79],[-225.6,-195.36],[-224.68,-194.58],[-224.37,-192.92],[-223.83,-191.76],[-222.6,-191.38],[-221.67,-190.56],[-221.39,-188.92],[-218.9,-185.34],[-209.36,-174.28],[-198.92,-156.89],[-191.79,-134.53],[-183.5,-114.77],[-172.47,-93.16],[-158.79,-114.99],[-149,-153.95],[-152.18,-201.03],[-160.25,-234.12],[-175.04,-257.6],[-190.28,-284.54],[-197.82,-307.97],[-202.82,-318.85],[-211.85,-334.9],[-232.82,-369.88]],"v":[[-240,-380],[-245.6,-361.39],[-250,-340],[-254.06,-319.49],[-256,-299],[-252.09,-272.67],[-244,-245],[-240.45,-231.46],[-237,-219],[-234.71,-213.56],[-232,-208],[-229.62,-201.85],[-227,-196],[-226.03,-195.51],[-225,-195],[-224.47,-193.47],[-224,-192],[-223.01,-191.51],[-222,-191],[-221.48,-189.46],[-221,-188],[-214,-180],[-202,-163],[-195,-144],[-185,-118],[-181,-110],[-166,-103],[-152,-139],[-151,-189],[-157,-223],[-170,-250],[-186,-275],[-196,-303],[-202,-318],[-203,-320],[-230,-365]],"c":true}],"h":1},{"t":216,"s":[{"i":[[-236.9,-379.12],[-244.22,-367.75],[-248.45,-347.22],[-252.97,-326.52],[-256.09,-305.81],[-253.43,-276.22],[-243.65,-243.1],[-239.28,-225],[-234.65,-213.84],[-230.01,-201.25],[-226.33,-197.44],[-225.55,-194.76],[-220.95,-189.44],[-216.86,-183.32],[-209.96,-175.77],[-196.31,-145.67],[-185.37,-117.86],[-173.52,-96.08],[-165.17,-103.96],[-151.05,-135.36],[-149.78,-177.43],[-153.92,-212.07],[-164.5,-241.24],[-169.75,-249.63],[-169.77,-251.49],[-171.75,-252.65],[-182.13,-266.94],[-192.47,-295.98],[-204.19,-321.99],[-211.77,-333.06],[-214.77,-339.96],[-218.84,-345.08],[-221.77,-351.91],[-224.5,-355.23],[-228.2,-362.86],[-232.89,-369.15]],"o":[[-242.49,-374.14],[-247.2,-354.29],[-251.42,-333.36],[-255.3,-312.74],[-255.85,-287.92],[-247.33,-253.81],[-239.74,-229.66],[-236.75,-217.08],[-231.22,-205.86],[-227.74,-197.58],[-225.37,-196.16],[-223.37,-191.75],[-218.15,-185.21],[-212.74,-178.17],[-198.88,-160.12],[-187.26,-123.8],[-179.19,-105.28],[-169.78,-95.52],[-157.08,-118.06],[-149,-163.98],[-152.28,-201.16],[-160.05,-233.83],[-168.15,-249.32],[-170.31,-250.46],[-170.14,-252.31],[-177.21,-260.25],[-190.68,-284.77],[-199.37,-313.61],[-210.05,-331.76],[-214.22,-336.94],[-217.14,-343.9],[-221.21,-349.01],[-223.35,-354.59],[-227.08,-359.21],[-230.99,-367.72],[-236.08,-374.45]],"v":[[-240,-380],[-245.71,-361.02],[-250,-340],[-254.14,-319.63],[-256,-299],[-250.38,-265.01],[-241,-234],[-238,-221],[-233,-210],[-228,-198],[-226,-197],[-225,-194],[-220,-188],[-215,-181],[-208,-173],[-189,-128],[-182,-111],[-173,-96],[-164,-106],[-150,-150],[-151,-189],[-157,-223],[-168,-249],[-170,-250],[-170,-252],[-172,-253],[-186,-275],[-196,-305],[-209,-330],[-213,-335],[-216,-342],[-220,-347],[-223,-354],[-225,-356],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":217,"s":[{"i":[[-236.88,-379.08],[-243.92,-368.24],[-248.43,-348.17],[-252.94,-327.73],[-256.02,-307.53],[-255.05,-287.25],[-250.63,-267.26],[-244.91,-245.37],[-238.29,-222.42],[-234.65,-213.54],[-233.61,-208.29],[-227.92,-199.08],[-220.77,-189.36],[-206.86,-172.51],[-195.42,-143.31],[-185.25,-117.62],[-173.08,-91.75],[-163.73,-107.6],[-156,-123.34],[-149.59,-175.54],[-154.46,-215.06],[-157.85,-224.47],[-162.39,-238.7],[-170.59,-252.57],[-175.93,-258.49],[-178.73,-264.06],[-182.98,-269.29],[-192.17,-294.63],[-204.34,-322.14],[-212.22,-336.19],[-214.18,-339.15],[-218.96,-345.27],[-221.68,-351.75],[-225.95,-357.26],[-228.71,-363.79],[-233.03,-369.39]],"o":[[-242.2,-374.4],[-247.03,-355.13],[-251.43,-334.46],[-255.23,-314.26],[-255.98,-294.12],[-252.37,-273.82],[-247.02,-253.41],[-240.55,-229.88],[-235.51,-214.63],[-233.35,-210.45],[-231.21,-203.23],[-223.23,-191.57],[-212.26,-179.05],[-197.74,-154.76],[-187.05,-123.35],[-176.68,-100.18],[-165.83,-103.52],[-158.29,-118.31],[-146.87,-153.7],[-154.12,-208.06],[-156.08,-222.38],[-160.51,-233.74],[-168.11,-248.68],[-174.03,-257.47],[-178.26,-261.78],[-181.11,-267.7],[-190.06,-281.15],[-199.22,-313.72],[-210.34,-332.26],[-213.8,-337.84],[-216.89,-341.98],[-221.38,-349.3],[-224.03,-355.75],[-228.3,-361.15],[-231,-367.7],[-236.13,-374.53]],"v":[[-240,-380],[-245.47,-361.68],[-250,-341],[-254.09,-321],[-256,-301],[-253.71,-280.54],[-249,-261],[-242.73,-237.62],[-236,-216],[-234,-212],[-233,-207],[-226,-196],[-218,-186],[-203,-165],[-189,-128],[-182,-111],[-168,-100],[-162,-111],[-154,-130],[-153,-200],[-156,-222],[-158,-225],[-166,-245],[-173,-256],[-177,-260],[-180,-266],[-184,-271],[-196,-305],[-209,-330],[-213,-337],[-215,-340],[-220,-347],[-223,-354],[-227,-359],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":218,"s":[{"i":[[-236.4,-377.4],[-243.91,-368.3],[-248.43,-348.16],[-252.92,-328.02],[-256.01,-308.36],[-255.04,-288.29],[-250.61,-268.43],[-243.2,-237.9],[-231.67,-203.91],[-224.25,-193.5],[-221.9,-190.14],[-213.97,-180.56],[-203.83,-167.27],[-196.02,-147.05],[-185.96,-118.87],[-178.21,-104.17],[-173.02,-96],[-157.34,-120.54],[-148.76,-170.76],[-155.21,-219.49],[-164.43,-242.3],[-168.75,-248.63],[-168.77,-250.49],[-170.75,-251.63],[-172.12,-255.09],[-173.33,-257.09],[-177.67,-261.08],[-180.82,-267.18],[-184.89,-272.85],[-192.72,-294.18],[-198.86,-310.34],[-203.01,-319.5],[-206.31,-326.48],[-208.76,-328.59],[-210.94,-333.21],[-224.47,-355.64]],"o":[[-242.2,-374.47],[-247.03,-355.14],[-251.41,-334.59],[-255.22,-314.9],[-255.98,-295.08],[-252.35,-274.97],[-246.11,-250.45],[-235.98,-214.63],[-225.05,-194.68],[-222.67,-191.23],[-217.8,-184.92],[-206.98,-171.73],[-199.04,-156.11],[-189.48,-128.43],[-180.45,-107.91],[-174.5,-98.21],[-167.28,-95.1],[-146.94,-147.41],[-153.37,-208.11],[-160.23,-234.81],[-167.15,-248.32],[-169.31,-249.46],[-169.14,-251.32],[-172.26,-253.87],[-173.7,-256.73],[-175.32,-259.78],[-180.12,-264.62],[-183.43,-271.2],[-190.77,-284.3],[-197.57,-307.23],[-201.9,-317.43],[-206.16,-325.04],[-207.16,-328.34],[-210.14,-330.92],[-218,-345.12],[-232.87,-369.86]],"v":[[-240,-380],[-245.47,-361.72],[-250,-341],[-254.07,-321.46],[-256,-302],[-253.69,-281.63],[-249,-262],[-239.59,-226.27],[-226,-196],[-223.46,-192.36],[-221,-189],[-210.48,-176.15],[-202,-163],[-192.75,-137.74],[-182,-111],[-176.35,-101.19],[-173,-96],[-156,-124],[-152,-197],[-158,-228],[-167,-248],[-169,-249],[-169,-251],[-171,-252],[-173,-256],[-174,-258],[-179,-263],[-182,-269],[-186,-275],[-196,-303],[-200,-313],[-205,-323],[-207,-328],[-209,-329],[-212,-335],[-230,-365]],"c":true}],"h":1},{"t":219,"s":[{"i":[[-236.9,-379.12],[-243.99,-368],[-248.43,-348.08],[-252.9,-328.25],[-256.05,-308.4],[-254.28,-283.05],[-247.22,-255.94],[-242.8,-238.06],[-239.34,-225.14],[-236.79,-216.97],[-234.81,-210.73],[-231.47,-204.54],[-226.8,-198.07],[-225.57,-196.02],[-225.28,-194.38],[-223.38,-193.5],[-222.63,-190.78],[-219.02,-188.22],[-217.54,-184.71],[-215.58,-182.72],[-206.03,-171.2],[-195.63,-142.44],[-185.45,-118.95],[-173.91,-96.14],[-168.04,-100.67],[-154.24,-126.08],[-151.13,-194.11],[-159.89,-233.55],[-179.78,-261.94],[-196.12,-306.01],[-214.17,-337.5],[-219.76,-346.6],[-221.68,-351.81],[-225.89,-357.16],[-228.71,-363.79],[-232.89,-369.15]],"o":[[-242.27,-374.21],[-247.07,-354.93],[-251.37,-334.8],[-255.23,-315.05],[-255.92,-292.33],[-249.93,-264.86],[-243.88,-242.49],[-240.53,-229.39],[-237.39,-219.1],[-235.51,-212.78],[-233.06,-207.01],[-228.34,-200.08],[-225.68,-196.58],[-225.37,-194.92],[-224.66,-193.53],[-222.33,-192.11],[-220.97,-188.71],[-217.37,-186.25],[-216.51,-183.35],[-210.54,-176.46],[-198.23,-155.24],[-188.27,-124.87],[-179.17,-106.29],[-169.72,-95.48],[-160.63,-112.77],[-145.25,-161.93],[-158.12,-225.54],[-169.12,-252.71],[-193.29,-290.12],[-206.47,-327.12],[-218.15,-346.34],[-221.24,-349.09],[-224.14,-355.9],[-228.3,-361.15],[-231.01,-367.72],[-236.08,-374.45]],"v":[[-240,-380],[-245.53,-361.46],[-250,-341],[-254.06,-321.65],[-256,-302],[-252.11,-273.96],[-245,-247],[-241.66,-233.72],[-238,-221],[-236.15,-214.87],[-234,-209],[-229.9,-202.31],[-226,-197],[-225.47,-195.47],[-225,-194],[-223,-193],[-222,-190],[-218,-187],[-217,-184],[-215,-182],[-203,-165],[-190,-129],[-182,-112],[-173,-96],[-166,-104],[-152,-135],[-156,-216],[-163,-240],[-187,-277],[-202,-318],[-218,-346],[-220,-347],[-223,-354],[-227,-359],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":220,"s":[{"i":[[-236.9,-379.12],[-243.88,-368.24],[-248.43,-348.82],[-252.96,-329.21],[-256.05,-309.38],[-254.92,-288.85],[-250.44,-269.05],[-244.67,-243.38],[-236.83,-214.53],[-228.54,-199.49],[-220.36,-188.92],[-216.96,-184.9],[-215.48,-183.61],[-214.3,-181.76],[-213.48,-179.62],[-208.4,-175.06],[-205.72,-170.24],[-196.63,-144.24],[-185.45,-119.08],[-173.87,-96.14],[-167.66,-100.4],[-162.42,-110.06],[-150,-139.43],[-150.31,-181.07],[-156.55,-223.73],[-166.17,-245.93],[-169.75,-250.63],[-169.77,-252.49],[-171.75,-253.63],[-183.65,-269.52],[-195.88,-304],[-208.6,-329.95],[-217.75,-344.2],[-222.8,-352],[-227.65,-361.99],[-232.89,-369.15]],"o":[[-242.17,-374.33],[-247.01,-355.49],[-251.43,-335.77],[-255.26,-316.01],[-255.95,-295.83],[-252.17,-275.46],[-246.76,-253.61],[-239.71,-223.84],[-231.11,-203.28],[-223.17,-192.31],[-217.47,-185.34],[-215.96,-184.03],[-214.56,-182.44],[-213.76,-180.34],[-211.31,-176.81],[-206.35,-172.04],[-198.42,-157.7],[-188.2,-124.86],[-179.21,-106.28],[-170.51,-95.61],[-164.44,-105.45],[-154.32,-126.8],[-148.21,-168.98],[-154.1,-207.8],[-163.1,-240.32],[-168.15,-250.32],[-170.31,-251.46],[-170.14,-253.32],[-177.27,-261.8],[-192.77,-289.4],[-203.97,-321.67],[-215.52,-341.03],[-221.14,-349.93],[-226.33,-357.88],[-231.01,-367.72],[-236.08,-374.45]],"v":[[-240,-380],[-245.45,-361.86],[-250,-342],[-254.11,-322.61],[-256,-303],[-253.54,-282.16],[-249,-263],[-242.19,-233.61],[-233,-207],[-225.85,-195.9],[-218,-186],[-216.46,-184.46],[-215,-183],[-214.03,-181.05],[-213,-179],[-207,-173],[-205,-169],[-190,-129],[-182,-112],[-173,-96],[-166,-103],[-161,-113],[-149,-156],[-152,-193],[-161,-235],[-168,-250],[-170,-251],[-170,-253],[-172,-254],[-188,-279],[-200,-313],[-213,-337],[-220,-348],[-224,-354],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":221,"s":[{"i":[[-236.9,-379.12],[-243.36,-369.91],[-247.73,-353.6],[-251.39,-337.61],[-254.45,-321.96],[-255.6,-299.06],[-251.62,-275.37],[-246.6,-252.18],[-241.24,-229.93],[-236.68,-215.85],[-232.61,-205.67],[-229.83,-201.64],[-227.51,-199.7],[-226.57,-198],[-226.3,-196.39],[-221.49,-190.37],[-214.9,-182.53],[-209.31,-175.11],[-204.13,-167.44],[-195.83,-142.4],[-185.48,-119.09],[-173.69,-96.11],[-165.73,-103.81],[-150.13,-137.07],[-153.42,-205.15],[-161.48,-237.87],[-167.9,-248.76],[-183.35,-269.3],[-195.77,-303.05],[-205.96,-325.48],[-209.76,-330.59],[-211.84,-335.07],[-217.81,-344.56],[-222.8,-352],[-227.69,-362.06],[-232.89,-369.15]],"o":[[-241.74,-375.12],[-246.35,-359.16],[-250.16,-342.88],[-253.53,-327.15],[-256.03,-307.62],[-253.39,-282.93],[-248.23,-259.97],[-243.11,-237.16],[-237.87,-219.52],[-234.04,-208.93],[-230.58,-202.29],[-228.3,-200.35],[-226.67,-198.55],[-226.39,-196.92],[-223.79,-193.11],[-217.05,-185.09],[-211.04,-177.39],[-206.33,-170.31],[-198.31,-154.85],[-188.2,-124.85],[-179.28,-106.46],[-169.81,-95.49],[-156.34,-121.15],[-147.47,-176.82],[-159.96,-230.65],[-165.32,-245.68],[-175.98,-261.23],[-193.21,-289.86],[-202.32,-318.46],[-208.16,-330.35],[-211.04,-332.77],[-215.65,-341.41],[-221.35,-350.12],[-226.31,-357.84],[-231.01,-367.72],[-236.08,-374.45]],"v":[[-240,-380],[-244.85,-364.53],[-249,-348],[-252.46,-332.38],[-255,-317],[-254.49,-290.99],[-250,-268],[-244.85,-244.67],[-239,-223],[-235.36,-212.39],[-231,-203],[-229.07,-201],[-227,-199],[-226.48,-197.46],[-226,-196],[-219.27,-187.73],[-213,-180],[-208,-173],[-203,-165],[-190,-129],[-182,-112],[-173,-96],[-164,-107],[-149,-154],[-158,-223],[-164,-243],[-170,-252],[-188,-279],[-200,-313],[-208,-330],[-210,-331],[-213,-337],[-220,-348],[-224,-354],[-230,-366],[-234,-371]],"c":true}],"h":1},{"t":222,"s":[{"i":[[-236.89,-377.17],[-246.28,-359.98],[-254.21,-326.37],[-250.41,-269.49],[-241.07,-230.34],[-234.31,-208.51],[-228.63,-200.89],[-222.31,-192.04],[-210.32,-177.67],[-198.06,-150.13],[-193.2,-138.51],[-193.27,-135.89],[-191.21,-133.49],[-190.71,-129.63],[-187.74,-125.55],[-175.53,-96.44],[-166.07,-103.18],[-158.09,-117.47],[-156.02,-125.14],[-152.6,-132.66],[-150.7,-186.4],[-161.02,-237.12],[-170.62,-252.93],[-173.49,-256.26],[-175.16,-260.82],[-177.62,-262.59],[-180.57,-267.92],[-184.16,-272.66],[-195.12,-301.33],[-205.95,-325.45],[-209.76,-330.59],[-213.75,-339.33],[-219.05,-346.45],[-221.31,-351.48],[-223.76,-353.6],[-227.79,-362.32]],"o":[[-243.35,-370.63],[-251.29,-337.92],[-257.1,-288.31],[-242.93,-236.99],[-236.33,-215.82],[-230.54,-202.23],[-224.65,-195.24],[-214.69,-182.74],[-201.9,-163.3],[-194.89,-139.63],[-192.66,-137.13],[-192.89,-134.63],[-190.27,-131.3],[-189.37,-126.54],[-184.24,-118.25],[-169.89,-95.46],[-161.31,-111.97],[-155.98,-122.37],[-154.16,-130.37],[-145.59,-159.86],[-157.56,-224.08],[-166.59,-248.14],[-172.59,-255.9],[-174.89,-258.29],[-176.3,-262.43],[-180.04,-265.19],[-182.94,-271.37],[-192.29,-285.71],[-202.29,-318.49],[-208.16,-330.35],[-212.19,-334.79],[-216.98,-344.6],[-221.23,-350.01],[-222.15,-353.34],[-226.24,-357.75],[-232.7,-370.49]],"v":[[-240,-380],[-249,-348],[-255,-316],[-245,-246],[-239,-224],[-231,-203],[-228,-200],[-219,-188],[-207,-172],[-195,-140],[-193,-138],[-193,-135],[-191,-133],[-190,-128],[-187,-124],[-173,-96],[-164,-107],[-157,-120],[-155,-128],[-152,-135],[-155,-210],[-165,-245],[-172,-255],[-174,-257],[-176,-262],[-178,-263],[-182,-270],[-185,-274],[-200,-313],[-208,-330],[-210,-331],[-216,-343],[-220,-348],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":223,"s":[{"i":[[-236.89,-377.17],[-243.25,-370.38],[-247.56,-354.11],[-251.49,-337.65],[-254.62,-321.23],[-255.05,-294.57],[-249.93,-268.06],[-245.71,-247.41],[-241.84,-229.72],[-234.91,-211.39],[-224.48,-195.21],[-215.9,-184.79],[-208.92,-175.27],[-197.98,-149.87],[-193.2,-138.51],[-193.27,-135.89],[-191.21,-133.49],[-190.71,-129.63],[-187.74,-125.55],[-175.15,-96.37],[-164.98,-104.24],[-159.39,-116.81],[-149.86,-140.65],[-150.05,-179.59],[-156.62,-219.09],[-163.78,-242.78],[-173.78,-257.65],[-178.38,-264.06],[-180.49,-266.26],[-182.12,-270.66],[-185.01,-274.41],[-194.22,-298.04],[-212.6,-337.23],[-221.4,-351.68],[-223.76,-353.6],[-227.69,-362.16]],"o":[[-241.72,-375.32],[-246.17,-359.77],[-250.17,-343.04],[-253.71,-326.75],[-255.84,-304.29],[-252.1,-276.46],[-246.79,-253.3],[-243.23,-235.62],[-237.92,-217.54],[-228.19,-200.23],[-218.44,-187.9],[-211.14,-178.48],[-202.33,-164.04],[-194.89,-139.63],[-192.66,-137.13],[-192.89,-134.63],[-190.27,-131.3],[-189.37,-126.54],[-184.37,-118.53],[-170.14,-95.51],[-160.5,-112.26],[-153.88,-129.41],[-147.69,-166.78],[-154.21,-206.02],[-162.02,-236.52],[-168.39,-251.53],[-177.1,-262.66],[-179.59,-265.9],[-181.84,-268.23],[-183.89,-273.37],[-191.87,-285.43],[-203.55,-322.63],[-220.98,-350.56],[-222.15,-353.34],[-226.29,-357.74],[-232.7,-370.49]],"v":[[-240,-380],[-244.71,-365.07],[-249,-348],[-252.6,-332.2],[-255,-316],[-253.57,-285.52],[-248,-259],[-244.47,-241.52],[-240,-224],[-231.55,-205.81],[-221,-191],[-213.52,-181.63],[-207,-172],[-195,-140],[-193,-138],[-193,-135],[-191,-133],[-190,-128],[-187,-124],[-173,-96],[-164,-106],[-158,-120],[-149,-151],[-152,-192],[-160,-230],[-166,-247],[-176,-261],[-179,-265],[-181,-267],[-183,-272],[-186,-276],[-198,-308],[-220,-349],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":224,"s":[{"i":[[-236.99,-377.31],[-243.39,-370.14],[-247.6,-353.82],[-251.58,-337.35],[-254.63,-321.16],[-255.28,-300.07],[-252.34,-279.19],[-245.06,-242.98],[-240.62,-227.94],[-234.57,-207.72],[-230.7,-203.04],[-226,-198.25],[-223.79,-193.99],[-214.94,-184.3],[-211.25,-179.37],[-211.23,-177.51],[-209.24,-176.38],[-209.23,-174.52],[-207.24,-173.41],[-198.49,-149.24],[-189.47,-129.13],[-175.08,-96.36],[-169.95,-97.44],[-159.83,-115.82],[-149.91,-140.18],[-151.86,-191.88],[-161.61,-238.32],[-168.28,-248.82],[-170.12,-253.68],[-183.49,-270.21],[-195.02,-297.49],[-206.5,-327.05],[-217.46,-344.04],[-221.31,-351.48],[-223.76,-353.6],[-227.73,-362.22]],"o":[[-241.84,-375.23],[-246.27,-359.43],[-250.26,-342.77],[-253.76,-326.54],[-255.61,-307.47],[-253.65,-285.92],[-248.48,-258.5],[-241.48,-228.96],[-237.41,-217.89],[-230.23,-203.2],[-228.76,-200.14],[-223.96,-195.7],[-219.46,-188.55],[-212.85,-179.68],[-210.69,-178.54],[-210.85,-176.67],[-208.7,-175.53],[-208.84,-173.65],[-200.97,-162.58],[-192.14,-133.34],[-183.63,-116.99],[-171.1,-95.67],[-163.54,-105.86],[-153.9,-129.37],[-146.7,-174.67],[-158.76,-225.39],[-166.62,-248.23],[-169.89,-251.47],[-176.67,-263.51],[-192.56,-287.89],[-201.43,-315.8],[-214.2,-338.94],[-221.27,-349.98],[-222.15,-353.34],[-226.27,-357.71],[-232.71,-370.5]],"v":[[-240,-380],[-244.83,-364.79],[-249,-348],[-252.67,-331.95],[-255,-316],[-254.46,-293],[-251,-272],[-242,-231],[-240,-226],[-231,-204],[-230,-202],[-225,-197],[-223,-193],[-213,-180],[-211,-179],[-211,-177],[-209,-176],[-209,-174],[-207,-173],[-194,-138],[-187,-124],[-173,-96],[-168,-100],[-158,-120],[-149,-150],[-156,-212],[-166,-247],[-169,-250],[-171,-255],[-188,-279],[-198,-306],[-211,-334],[-220,-348],[-222,-353],[-224,-354],[-230,-366]],"c":true}],"h":1},{"t":225,"s":[{"i":[[-234.36,-374.21],[-243.53,-369.87],[-247.59,-353.66],[-251.57,-337.55],[-254.62,-321.28],[-255.24,-302.01],[-252.93,-284.34],[-246.74,-248.3],[-234.31,-207.88],[-220.61,-190.26],[-210.75,-178.69],[-202.95,-163.24],[-195.41,-141.87],[-189.66,-128.75],[-185.07,-119.2],[-179.49,-107.7],[-173.55,-96.09],[-170.23,-96.97],[-166.97,-102.43],[-163.13,-109.04],[-159.02,-117.64],[-156.2,-123.79],[-153.58,-129.21],[-151.66,-135.37],[-150.42,-140.8],[-150.34,-181.74],[-160.43,-236.98],[-176.78,-262.15],[-181.49,-268.26],[-183.18,-272.75],[-185.65,-274.54],[-186.56,-277.3],[-195.49,-299.61],[-207.69,-328.56],[-215.22,-341.13],[-221.68,-351.22]],"o":[[-241.98,-375.04],[-246.33,-359.18],[-250.26,-342.91],[-253.75,-326.74],[-255.53,-308.58],[-253.94,-289.88],[-249.33,-263.61],[-239.22,-220.44],[-223.98,-193.92],[-213.99,-182.65],[-205.25,-169.31],[-198.03,-149.53],[-190.88,-131.4],[-186.76,-122.65],[-181.71,-112.4],[-175.41,-99.54],[-171.5,-95.76],[-167.97,-100.31],[-164.62,-106.22],[-160.33,-114.75],[-157.16,-121.94],[-154.41,-127.43],[-152.2,-133.47],[-150.77,-139.03],[-146.12,-163.28],[-157.22,-219.83],[-170.32,-255.09],[-180.59,-267.9],[-182.9,-270.32],[-184.29,-274.44],[-186.58,-275.77],[-192.61,-287.01],[-202.74,-319.02],[-213.69,-338.93],[-219.37,-347.83],[-228.89,-362.96]],"v":[[-240,-380],[-244.93,-364.53],[-249,-348],[-252.66,-332.14],[-255,-316],[-254.59,-295.94],[-252,-279],[-242.98,-234.37],[-227,-198],[-217.3,-186.46],[-208,-174],[-200.49,-156.39],[-192,-134],[-188.21,-125.7],[-183,-115],[-177.45,-103.62],[-173,-96],[-169.1,-98.64],[-166,-104],[-161.73,-111.9],[-158,-120],[-155.31,-125.61],[-153,-131],[-151.21,-137.2],[-150,-143],[-154,-202],[-167,-249],[-180,-267],[-182,-269],[-184,-274],[-186,-275],[-187,-278],[-199,-309],[-212,-336],[-217,-344],[-224,-355]],"c":true}],"h":1},{"t":226,"s":[{"i":[[-234.34,-375.02],[-243.56,-369.88],[-247.68,-353.55],[-251.58,-337.39],[-254.64,-321.36],[-254.81,-294.34],[-249.57,-266.74],[-246.79,-251.29],[-244.8,-241.31],[-240.76,-226.04],[-234.63,-211.44],[-231.19,-205.4],[-230.24,-203.25],[-229.55,-202.36],[-229.35,-201.51],[-225.48,-197.92],[-218.93,-188.78],[-210.19,-177.74],[-198.81,-149.61],[-187.11,-123.3],[-174.1,-96.18],[-168.01,-100.77],[-161.08,-111.71],[-157.33,-122.59],[-153.69,-129.09],[-149.86,-142.55],[-149.86,-180.79],[-157.04,-220.03],[-167.64,-248.54],[-172.75,-256.63],[-172.77,-258.49],[-176.36,-262.13],[-185.8,-274.64],[-197.2,-303.99],[-213.86,-338.79],[-223.6,-355.13]],"o":[[-241.97,-375.1],[-246.41,-359.1],[-250.26,-342.71],[-253.77,-326.72],[-255.77,-304.47],[-251.71,-275.47],[-247.4,-254.64],[-245.5,-244.63],[-242.45,-231.57],[-236.85,-215.97],[-231.57,-206.28],[-230.53,-203.89],[-229.62,-202.61],[-229.41,-201.81],[-227.69,-199.07],[-221.34,-192.54],[-213.34,-181.56],[-202.5,-164.62],[-189.8,-128.97],[-180.43,-109.8],[-169.98,-95.51],[-164.99,-105.62],[-158.07,-118.1],[-155.24,-127.95],[-151,-136.57],[-146.62,-166.77],[-155.24,-208.53],[-163.05,-240.27],[-171.15,-256.32],[-173.31,-257.46],[-173.58,-260.29],[-181.53,-269.13],[-194.45,-291.86],[-205.86,-326.79],[-221.89,-352.15],[-230.28,-364.05]],"v":[[-240,-380],[-244.98,-364.49],[-249,-348],[-252.68,-332.06],[-255,-316],[-253.26,-284.91],[-248,-258],[-246.15,-247.96],[-244,-238],[-238.81,-221],[-232,-207],[-230.86,-204.65],[-230,-203],[-229.48,-202.09],[-229,-201],[-224,-196],[-216,-185],[-208,-174],[-192,-134],[-183,-115],[-173,-96],[-166,-104],[-160,-114],[-156,-126],[-153,-131],[-149,-149],[-153,-197],[-160,-230],[-171,-256],[-173,-257],[-173,-259],[-177,-263],[-189,-281],[-201,-314],[-220,-349],[-225,-357]],"c":true}],"h":1},{"t":227,"s":[{"i":[[-235.8,-376.23],[-243.58,-369.83],[-247.64,-353.6],[-252.63,-333.07],[-255.55,-309.94],[-253.28,-284.58],[-248.54,-259.23],[-244.97,-240.49],[-241.5,-226.42],[-238.4,-218.4],[-235.68,-214.37],[-234.25,-210.91],[-233.48,-207.8],[-232.46,-206.65],[-231.16,-206.22],[-230.55,-203.76],[-225.94,-198.42],[-221.79,-192.25],[-210.48,-178.56],[-198.83,-151.36],[-194.21,-140.5],[-193.66,-136.51],[-190.66,-132.48],[-189.74,-127.7],[-186.84,-123.72],[-174.97,-96.32],[-168.56,-100.77],[-161.59,-111.66],[-152.9,-131.33],[-152.74,-196.27],[-163.57,-242.89],[-174.85,-260.65],[-185.09,-274.71],[-198.62,-310.63],[-211.13,-334.39],[-223.5,-354.73]],"o":[[-242.01,-375.03],[-246.39,-359.12],[-250.86,-340.35],[-254.98,-317.87],[-254.51,-292.97],[-250.3,-267.71],[-245.97,-245.53],[-242.74,-230.93],[-239.31,-219.97],[-236.59,-215.6],[-234.51,-212.02],[-233.73,-208.81],[-232.88,-206.79],[-231.6,-206.36],[-230.37,-205.16],[-228.43,-200.82],[-223.29,-194.43],[-215.15,-183.89],[-203.13,-164.71],[-195.89,-141.63],[-193.36,-138.49],[-192.41,-133.65],[-189.27,-129.37],[-188.42,-124.66],[-183.52,-116.91],[-169.29,-95.4],[-164.26,-107.87],[-156.09,-123.23],[-144.13,-166.77],[-160.41,-230.85],[-170.74,-256.02],[-181.65,-270.05],[-195.28,-293.21],[-207.85,-329.97],[-218.83,-346.77],[-231.62,-367.85]],"v":[[-240,-380],[-244.98,-364.47],[-249,-348],[-253.81,-325.47],[-255,-301],[-251.79,-276.14],[-247,-251],[-243.85,-235.71],[-240,-222],[-237.5,-217],[-235,-213],[-233.99,-209.86],[-233,-207],[-232.03,-206.51],[-231,-206],[-230,-203],[-225,-197],[-220,-190],[-207,-172],[-196,-142],[-194,-140],[-193,-135],[-190,-131],[-189,-126],[-186,-122],[-173,-96],[-166,-105],[-160,-115],[-151,-139],[-158,-220],[-168,-251],[-178,-265],[-188,-280],[-205,-324],[-214,-339],[-228,-362]],"c":true}],"h":1},{"t":228,"s":[{"i":[[-235.09,-375.53],[-243.55,-370.23],[-247.4,-353.46],[-252.55,-332.73],[-255.55,-310.23],[-253.22,-285.75],[-248.5,-260.3],[-244.44,-235.71],[-236.95,-216.9],[-233.76,-208.25],[-231.33,-206.44],[-230.58,-203.77],[-227.08,-200.41],[-222.19,-192.8],[-215.04,-184.91],[-205.64,-169.85],[-200.24,-156.35],[-197.35,-145.43],[-192.52,-136.33],[-186.81,-121.58],[-173.38,-96.06],[-163.61,-109.08],[-156.47,-122.94],[-148.45,-148.54],[-153.43,-199.52],[-159.62,-227.85],[-162.83,-236.47],[-163.99,-242.73],[-180.79,-267.19],[-200.3,-316.07],[-211.88,-335.17],[-214.92,-341.24],[-217.38,-345.63],[-219.76,-347.61],[-221.66,-352.87],[-225.83,-358.15]],"o":[[-242.1,-375.25],[-246.2,-359.33],[-250.77,-339.86],[-254.94,-317.92],[-254.47,-294.1],[-250.23,-268.85],[-245.51,-243.78],[-240.2,-222.32],[-234.16,-211.32],[-232.75,-206.58],[-230.35,-205.14],[-229.06,-201.75],[-223.85,-196.18],[-217.75,-187.12],[-208.78,-175.99],[-201.72,-159.68],[-197.65,-149.34],[-194.7,-138.69],[-188.91,-128.41],[-180.09,-108.22],[-168.62,-95.29],[-159.15,-117.16],[-151.65,-136.22],[-147.09,-180.03],[-158.61,-222],[-161.09,-234.38],[-163.79,-239.47],[-171.05,-258.66],[-197.68,-297.22],[-209.95,-333.73],[-214.03,-338.67],[-217.08,-344.76],[-218.15,-347.33],[-221.27,-350.01],[-224.09,-356.74],[-231.2,-366.68]],"v":[[-240,-380],[-244.88,-364.78],[-249,-347],[-253.74,-325.32],[-255,-302],[-251.73,-277.3],[-247,-252],[-242,-228],[-235,-213],[-233,-207],[-231,-206],[-230,-203],[-226,-199],[-220,-190],[-213,-182],[-203,-163],[-199,-153],[-196,-142],[-191,-133],[-183,-114],[-173,-96],[-162,-112],[-155,-127],[-148,-159],[-157,-215],[-161,-234],[-163,-237],[-165,-245],[-188,-280],[-209,-332],[-213,-337],[-216,-343],[-218,-347],[-220,-348],[-223,-355],[-227,-360]],"c":true}],"h":1},{"t":229,"s":[{"i":[[-237.67,-379.75],[-243.65,-369.86],[-247.48,-353.13],[-251.69,-336.33],[-254.78,-319.67],[-254.55,-299.43],[-251.03,-278.06],[-246.91,-249.39],[-239.98,-220.46],[-226.12,-198.3],[-209.63,-177.83],[-201.84,-159.6],[-194.23,-138.93],[-188.61,-127.05],[-183.8,-117.57],[-178.55,-106.48],[-173.69,-96.11],[-169.84,-97.25],[-165.5,-105.04],[-156.54,-123.16],[-148.58,-147.5],[-148.08,-174.55],[-153.62,-198.5],[-159.01,-222.99],[-163.87,-242.11],[-169.78,-254.28],[-176.67,-263.78],[-186.2,-276.82],[-201.2,-318.22],[-211.53,-335.27],[-219.05,-347.68],[-222.75,-352.63],[-222.77,-354.49],[-224.76,-355.61],[-226.87,-360.06],[-232.89,-369.56]],"o":[[-242.16,-375.04],[-246.31,-358.91],[-250.3,-341.75],[-253.93,-325.29],[-255.28,-306.65],[-252.42,-285.14],[-248.42,-260.15],[-242.69,-229.54],[-231.8,-205.13],[-215.03,-184.65],[-203.98,-165.64],[-196.97,-146.25],[-189.96,-129.76],[-185.52,-120.96],[-180.45,-110.93],[-175.17,-99.08],[-171.34,-95.73],[-166.92,-101.9],[-160.24,-115.41],[-150.71,-139.2],[-147.27,-166.55],[-151.26,-190.52],[-157.57,-215.94],[-162.16,-236.08],[-167.69,-250.89],[-174.27,-260.72],[-182.51,-271.85],[-198.37,-299.35],[-210.31,-334.55],[-215.16,-340.88],[-221.15,-352.32],[-223.31,-353.46],[-223.15,-355.33],[-226.13,-357.79],[-230.55,-366.38],[-236.51,-375.46]],"v":[[-240,-380],[-244.98,-364.38],[-249,-347],[-252.81,-330.81],[-255,-314],[-253.48,-292.28],[-250,-271],[-244.8,-239.46],[-236,-213],[-220.58,-191.47],[-206,-170],[-199.4,-152.93],[-191,-132],[-187.07,-124],[-182,-114],[-176.86,-102.78],[-173,-96],[-168.38,-99.58],[-164,-108],[-153.62,-131.18],[-148,-156],[-149.67,-182.54],[-156,-209],[-160.59,-229.54],[-166,-247],[-172.02,-257.5],[-179,-267],[-189,-282],[-210,-334],[-212,-336],[-221,-352],[-223,-353],[-223,-355],[-225,-356],[-228,-362],[-235,-373]],"c":true}],"h":1},{"t":230,"s":[{"i":[[-238.95,-380.35],[-243.65,-369.86],[-247.48,-353.13],[-251.7,-336.34],[-254.81,-319.66],[-254.7,-300.53],[-251.94,-280.44],[-248.21,-254.01],[-242.31,-226.31],[-235.99,-213.33],[-231.06,-205.34],[-229.49,-202.68],[-228.12,-202.18],[-227.26,-200.61],[-226.55,-198.71],[-225.1,-197.29],[-223.34,-196.42],[-222.29,-194.74],[-221.38,-192.48],[-217.49,-187.79],[-212.49,-181.5],[-207.58,-172.46],[-203.33,-161.61],[-196.47,-144.57],[-189.74,-130.74],[-175.89,-96.47],[-162.79,-111.28],[-152.69,-130.95],[-149.3,-182.21],[-162.21,-237.85],[-170.68,-255.85],[-183.06,-271.58],[-196.06,-297.66],[-205.38,-324.51],[-219.24,-348.36],[-233.59,-372.42]],"o":[[-242.16,-375.04],[-246.31,-358.91],[-250.3,-341.76],[-253.96,-325.29],[-255.23,-307.31],[-253.05,-287.09],[-249.55,-264.1],[-244.58,-235.11],[-237.71,-216.16],[-232.66,-207.92],[-229.93,-202.84],[-228.59,-202.35],[-227.49,-201.26],[-226.79,-199.34],[-225.68,-197.58],[-223.93,-196.71],[-222.6,-195.5],[-221.68,-193.23],[-219.24,-189.79],[-214.11,-183.64],[-209.1,-175.8],[-204.16,-164.97],[-199.59,-151.46],[-191.54,-133.81],[-185.19,-120.97],[-167.73,-95.14],[-157.27,-122.75],[-144.77,-159.24],[-158.33,-220.24],[-170.12,-253.17],[-176.6,-265.53],[-192.84,-288.25],[-202.43,-315.74],[-214.28,-340.86],[-228.93,-363.91],[-239.32,-379.39]],"v":[[-240,-380],[-244.98,-364.38],[-249,-347],[-252.83,-330.82],[-255,-314],[-253.88,-293.81],[-251,-274],[-246.39,-244.56],[-239,-219],[-234.33,-210.63],[-230,-203],[-229.04,-202.52],[-228,-202],[-227.03,-199.98],[-226,-198],[-224.51,-197],[-223,-196],[-221.99,-193.98],[-221,-192],[-215.8,-185.72],[-211,-179],[-206,-169],[-202,-158],[-193,-137],[-188,-127],[-173,-96],[-161,-115],[-151,-137],[-154,-202],[-169,-251],[-172,-258],[-188,-280],[-199,-306],[-210,-333],[-224,-356],[-239,-379]],"c":true}],"h":1},{"t":231,"s":[{"i":[[-237.41,-378.78],[-243.53,-369.46],[-248.46,-352.34],[-252.54,-334.87],[-255,-316.89],[-254.16,-298.04],[-250.82,-278.45],[-248.43,-258.56],[-245.59,-239.79],[-240.34,-222.58],[-233,-208.2],[-223.53,-195.75],[-213.72,-183.64],[-207.65,-172.6],[-203.43,-161.9],[-199.39,-151.32],[-194.73,-140.77],[-189.81,-130.72],[-175.51,-96.41],[-166.57,-102],[-158.17,-118.35],[-156.03,-126.31],[-153.39,-131.02],[-148.49,-147.79],[-151.43,-189.48],[-162.67,-241.82],[-176.72,-264.46],[-187.08,-278.6],[-201.82,-319.09],[-211.52,-335.17],[-215.4,-341.38],[-218.86,-348.26],[-224.72,-357.37],[-228.4,-363.68],[-230.76,-365.61],[-232.87,-370.12]],"o":[[-241.8,-374.79],[-246.86,-358.23],[-251.29,-340.68],[-254.39,-322.98],[-255,-304.57],[-252.07,-284.99],[-249.13,-265.17],[-246.66,-245.87],[-242.34,-227.98],[-235.67,-212.69],[-226.92,-199.68],[-216.93,-187.73],[-209.18,-175.9],[-204.78,-165.6],[-200.78,-154.68],[-196.37,-144.36],[-191.51,-133.76],[-185.27,-121.38],[-170.42,-95.58],[-160.93,-112.96],[-155.98,-123.3],[-154.73,-129.69],[-150.46,-138.49],[-145.87,-175.82],[-159.15,-223.06],[-172.69,-259.84],[-183.52,-273.86],[-199.3,-301.23],[-210.33,-334.61],[-213.84,-339.19],[-218.16,-345.89],[-222.53,-353.85],[-227.98,-362.56],[-229.15,-365.34],[-232.05,-367.68],[-236.06,-375.43]],"v":[[-240,-380],[-245.19,-363.84],[-250,-346],[-253.47,-328.92],[-255,-311],[-253.11,-291.51],[-250,-272],[-247.55,-252.22],[-244,-234],[-238,-217.63],[-230,-204],[-220.23,-191.74],[-211,-179],[-206.21,-169.1],[-202,-158],[-197.88,-147.84],[-193,-137],[-188,-127],[-173,-96],[-164,-107],[-157,-121],[-155,-129],[-153,-132],[-148,-153],[-155,-205],[-170,-255],[-180,-269],[-190,-284],[-210,-334],[-212,-336],[-217,-344],[-220,-350],[-227,-361],[-229,-365],[-231,-366],[-234,-372]],"c":true}],"h":1},{"t":232,"s":[{"i":[[-237.41,-378.78],[-243.6,-369.41],[-248.5,-352.21],[-252.58,-334.74],[-255.01,-316.98],[-254.55,-302.59],[-252.63,-288.67],[-249.31,-261.12],[-243.65,-229.32],[-238.2,-217.26],[-234.48,-210.5],[-232.51,-208.33],[-230.61,-205.83],[-227.95,-202.12],[-225.48,-198.08],[-224.49,-196.68],[-223.12,-196.16],[-221.08,-193.57],[-218.76,-190.89],[-217.29,-188.8],[-216.37,-186.54],[-205.13,-168.22],[-198.5,-148.64],[-191.46,-132.99],[-174.9,-96.31],[-163.6,-108.92],[-150.64,-139.14],[-147.55,-170.37],[-154.59,-201.44],[-167.22,-250.37],[-185.87,-276.35],[-201.86,-318.84],[-211.53,-335.19],[-217.29,-345.7],[-224.7,-357.35],[-231.68,-368.14]],"o":[[-241.85,-374.8],[-246.93,-358.11],[-251.32,-340.5],[-254.43,-322.98],[-254.99,-307.01],[-253.37,-293.42],[-250.49,-272.71],[-245.89,-239.42],[-239.46,-219.77],[-235.71,-212.63],[-233.2,-209.17],[-231.21,-206.66],[-228.95,-203.58],[-226.21,-199.37],[-224.93,-196.85],[-223.59,-196.34],[-221.95,-194.63],[-219.48,-191.7],[-217.6,-189.53],[-216.67,-187.3],[-209.95,-177.35],[-199.22,-152.16],[-194.25,-138.32],[-186.06,-122.08],[-168.21,-95.22],[-155.68,-126.29],[-147.58,-153.77],[-149.17,-187.01],[-162.5,-235.21],[-180.09,-269.6],[-199.07,-300.79],[-210.32,-334.59],[-214.97,-341.14],[-222.5,-353.98],[-229.55,-365.06],[-236.06,-375.43]],"v":[[-240,-380],[-245.26,-363.76],[-250,-346],[-253.5,-328.86],[-255,-311],[-253.96,-298.01],[-252,-284],[-247.6,-250.27],[-240,-221],[-236.95,-214.95],[-234,-210],[-231.86,-207.5],[-230,-205],[-227.08,-200.74],[-225,-197],[-224.04,-196.51],[-223,-196],[-220.28,-192.64],[-218,-190],[-216.98,-188.05],[-216,-186],[-201,-157],[-197,-145],[-188,-126],[-173,-96],[-159,-119],[-149,-147],[-148,-175],[-158,-216],[-175,-262],[-190,-284],[-210,-334],[-212,-336],[-220,-350],[-227,-361],[-234,-372]],"c":true}],"h":1},{"t":233,"s":[{"i":[[-236.49,-376.56],[-243.36,-369.98],[-248.44,-353.37],[-252.53,-335.88],[-255,-317.74],[-254.53,-303.4],[-252.57,-289.65],[-249.47,-261.93],[-243.74,-230.41],[-237.99,-217.42],[-234.74,-210.77],[-230.68,-206.31],[-226.29,-200.68],[-221.59,-194.11],[-216.46,-186.52],[-205.33,-168.06],[-200.76,-155.29],[-197.96,-147.32],[-191.47,-133.02],[-174.95,-96.32],[-160.72,-115.17],[-154.71,-127.14],[-146.76,-162.18],[-154.34,-202.34],[-165.33,-246.8],[-178.88,-267.31],[-182.75,-272.64],[-186.72,-277.99],[-189.32,-282.77],[-198.36,-306.14],[-205.92,-322.51],[-208.49,-331.12],[-213.52,-338.55],[-217.56,-346.69],[-222.64,-352.88],[-226.42,-360.47]],"o":[[-241.63,-375.04],[-246.76,-359.14],[-251.28,-341.76],[-254.39,-323.87],[-255,-307.82],[-253.32,-294.32],[-250.6,-273.47],[-246.04,-240.39],[-239.12,-220.03],[-235.8,-212.79],[-232.29,-208.22],[-227.68,-202.54],[-223.36,-196.85],[-218.14,-188.95],[-209.57,-179.33],[-202.02,-158.05],[-199.08,-150.23],[-194.16,-138.11],[-186.1,-122.15],[-167.61,-95.13],[-157.66,-121.99],[-149.14,-142.96],[-149.19,-187.3],[-161.7,-231.8],[-173.97,-262.35],[-181.14,-272.32],[-184.93,-275.79],[-188.9,-281.41],[-195.87,-294.6],[-203.99,-320.52],[-208.3,-328],[-211.22,-336.33],[-216.59,-343.63],[-220.42,-351.27],[-225.62,-357.52],[-231.45,-368.51]],"v":[[-240,-380],[-245.06,-364.56],[-250,-347],[-253.46,-329.88],[-255,-312],[-253.92,-298.86],[-252,-285],[-247.75,-251.16],[-240,-222],[-236.9,-215.1],[-234,-210],[-229.18,-204.43],[-225,-199],[-219.86,-191.53],[-215,-185],[-203,-161],[-200,-153],[-197,-145],[-188,-126],[-173,-96],[-159,-119],[-153,-132],[-148,-175],[-158,-217],[-171,-257],[-181,-272],[-183,-273],[-188,-280],[-190,-284],[-203,-318],[-207,-325],[-210,-334],[-215,-341],[-219,-349],[-224,-355],[-228,-363]],"c":true}],"h":1},{"t":234,"s":[{"i":[[-236.68,-377.79],[-243.39,-371.14],[-246.66,-356.32],[-250.49,-341.98],[-253.67,-328.61],[-254.21,-300.02],[-249.72,-264.21],[-246.59,-244.25],[-244.13,-233.35],[-242.13,-227.68],[-240.57,-224.3],[-237.91,-218],[-234.19,-210.24],[-232.3,-208.04],[-231.41,-206.42],[-228.88,-203.72],[-225.97,-200.25],[-219.66,-191.98],[-212.27,-180.45],[-204.87,-164.81],[-198.19,-147.29],[-192.83,-135.03],[-187.81,-125.65],[-174.71,-96.28],[-157.21,-122.93],[-147.07,-151.03],[-150.23,-186.3],[-162.93,-242.48],[-177.5,-266.13],[-188.35,-281.01],[-203.56,-319.72],[-211.77,-334.57],[-213.07,-339.27],[-216.86,-344.13],[-224.22,-355.93],[-229.36,-364.36]],"o":[[-242.06,-375.73],[-245.69,-361.44],[-249.15,-346.42],[-252.75,-333.07],[-254.85,-312.16],[-251.65,-276.04],[-247.28,-248.32],[-245.02,-236.76],[-242.59,-228.78],[-241.12,-225.44],[-239.06,-220.88],[-235.47,-212.68],[-232.6,-208.58],[-231.71,-206.97],[-229.9,-204.85],[-226.92,-201.42],[-222.28,-195.5],[-214.66,-184.45],[-207.28,-170.67],[-200.33,-153.13],[-194.43,-138.2],[-189.52,-128.75],[-183.26,-116.46],[-167.23,-95.06],[-151.69,-136.91],[-146.93,-177.02],[-158.19,-217.03],[-173.57,-261.63],[-184.52,-275.91],[-199.27,-301.56],[-210.16,-334.36],[-212.92,-336.74],[-215.04,-342.95],[-220.55,-350.16],[-227.87,-362.22],[-233.77,-371.44]],"v":[[-240,-380],[-244.54,-366.29],[-248,-351],[-251.62,-337.53],[-254,-324],[-252.93,-288.03],[-248,-253],[-245.81,-240.5],[-243,-230],[-241.62,-226.56],[-240,-223],[-236.69,-215.34],[-233,-209],[-232,-207.5],[-231,-206],[-227.9,-202.57],[-225,-199],[-217.16,-188.22],[-210,-176],[-202.6,-158.97],[-196,-142],[-191.18,-131.89],[-186,-122],[-173,-96],[-156,-126],[-147,-164],[-153,-197],[-171,-257],[-181,-271],[-191,-286],[-210,-334],[-212,-335],[-214,-341],[-218,-346],[-226,-359],[-231,-367]],"c":true}],"h":1},{"t":235,"s":[{"i":[[-238.4,-379.79],[-243.08,-372.03],[-246.08,-359.11],[-247.51,-354.19],[-248.93,-352.26],[-251.25,-342.8],[-253.67,-328.53],[-254.22,-304.54],[-251.08,-273.96],[-245.47,-235.82],[-236.88,-213.97],[-232.22,-208.65],[-225.79,-200.58],[-222.6,-194.78],[-217.55,-190.28],[-216.23,-186.51],[-214.24,-185.41],[-212.71,-182.23],[-208.31,-173.18],[-203.69,-161.47],[-193.71,-137.56],[-174.69,-96.27],[-165.75,-104.23],[-154.41,-127.67],[-146.75,-155.78],[-150.97,-188.62],[-161.65,-229.11],[-169.36,-253.46],[-185.35,-275.64],[-198.04,-302.75],[-207.66,-326.37],[-212.38,-337.98],[-216.95,-344.29],[-219.78,-350.14],[-225.73,-359.54],[-232.76,-370.43]],"o":[[-241.79,-376.22],[-245.22,-363.47],[-247.04,-354.81],[-248.45,-352.92],[-250.16,-347.54],[-253,-333.3],[-254.68,-314.55],[-252.42,-284.24],[-248.42,-249.41],[-239.28,-220.83],[-233.41,-210.34],[-228.49,-203.58],[-223.33,-197.03],[-220.21,-191.65],[-215.69,-187.55],[-215.84,-185.65],[-213.37,-183.91],[-209.87,-177.31],[-205.13,-165.45],[-198.39,-147.45],[-186.05,-122.05],[-169.22,-95.39],[-159.06,-118.27],[-148.92,-144.35],[-147.28,-177.41],[-157.54,-213.29],[-167.18,-247.11],[-177.96,-268.24],[-195.5,-294.24],[-203.62,-318.32],[-211.44,-335.48],[-214.94,-342.76],[-219.19,-347.94],[-223.42,-355.68],[-230.5,-366.81],[-236.3,-376.06]],"v":[[-240,-380],[-244.15,-367.75],[-247,-355],[-247.98,-353.56],[-249,-352],[-252.13,-338.05],[-254,-324],[-253.32,-294.39],[-250,-264],[-241,-225],[-235,-212],[-231,-207],[-224,-198],[-222,-194],[-216,-188],[-216,-186],[-214,-185],[-212,-181],[-207,-170],[-202,-157],[-188,-126],[-173,-96],[-163,-110],[-152,-135],[-147,-166],[-154,-200],[-165,-240],[-172,-258],[-191,-286],[-201,-311],[-210,-332],[-214,-341],[-218,-346],[-221,-352],[-228,-363],[-235,-374]],"c":true}],"h":1},{"t":236,"s":[{"i":[[-236.65,-377.81],[-242.13,-375.23],[-244.23,-367.77],[-248.72,-351.95],[-253.51,-330.84],[-254.12,-304.97],[-250.91,-275],[-248.4,-250.55],[-244.14,-231.21],[-240.11,-221.57],[-236.68,-214.71],[-233.67,-211.27],[-230.7,-207.01],[-226.55,-201.8],[-223.76,-196.97],[-215.6,-187.22],[-210.27,-177.68],[-207.05,-169.59],[-204.25,-161.24],[-200.03,-153.46],[-197.36,-144.99],[-190.56,-132.22],[-175.19,-96.35],[-165.75,-104.22],[-146.37,-144.19],[-152.48,-194.92],[-163.96,-241.41],[-177.38,-266.62],[-193.28,-289.79],[-199.44,-307.84],[-203.39,-315.42],[-205.08,-321.8],[-211.3,-335.97],[-216.86,-344.13],[-218.49,-348.17],[-227.24,-361.1]],"o":[[-241.26,-377.59],[-243.62,-370.32],[-246.72,-358.78],[-252.12,-337.98],[-254.66,-314.72],[-252.24,-285.11],[-249.33,-257.7],[-245.81,-237.31],[-241.27,-224.21],[-237.81,-216.82],[-234.82,-212.77],[-231.61,-208.39],[-228,-203.1],[-224.15,-199.01],[-219.48,-191.47],[-211.57,-180.67],[-207.81,-172.48],[-204.78,-163.98],[-202.14,-155.79],[-197.84,-148.24],[-193.82,-137.21],[-186.01,-122.95],[-169.24,-95.39],[-154.58,-127.68],[-147.36,-179.97],[-161.13,-225.7],[-172.34,-260.69],[-188.09,-281.42],[-198.75,-303.35],[-201.57,-313.53],[-204.95,-319.46],[-208.42,-329.75],[-215.04,-342.95],[-218.6,-346.99],[-223.03,-355.48],[-233.81,-371.41]],"v":[[-240,-380],[-242.87,-372.77],[-245,-365],[-250.42,-344.96],[-254,-324],[-253.18,-295.04],[-250,-265],[-247.1,-243.93],[-242,-226],[-238.96,-219.19],[-236,-214],[-232.64,-209.83],[-230,-206],[-225,-200],[-223,-196],[-213,-183],[-209,-175],[-206,-167],[-203,-158],[-199,-151],[-196,-142],[-188,-127],[-173,-96],[-163,-110],[-147,-167],[-157,-211],[-169,-253],[-182,-273],[-197,-299],[-201,-312],[-204,-317],[-206,-324],[-214,-341],[-218,-346],[-219,-349],[-231,-367]],"c":true}],"h":1},{"t":237,"s":[{"i":[[-234.16,-373.93],[-242.14,-375.22],[-244.23,-367.8],[-248.72,-351.95],[-253.51,-330.89],[-254.11,-304.37],[-250.81,-274.77],[-249.16,-255.52],[-247.12,-242.25],[-242.75,-228.03],[-236.14,-215.04],[-227.01,-202.62],[-216.76,-188.81],[-207.7,-171.2],[-199.71,-150.79],[-193.02,-136.53],[-186.88,-123.83],[-180.21,-109.84],[-173.6,-96.1],[-168.02,-99.75],[-160.8,-114.19],[-158.77,-119.3],[-157.46,-123.88],[-155.69,-127.42],[-153.42,-130.85],[-149.97,-141.57],[-147.26,-156.53],[-147.28,-176.09],[-152.03,-194.06],[-163.75,-242.19],[-181.76,-272.84],[-194.65,-292.4],[-198.07,-303.57],[-201.27,-310],[-205.13,-321.82],[-217.79,-346.24]],"o":[[-241.27,-377.57],[-243.62,-370.34],[-246.72,-358.75],[-252.11,-338.02],[-254.7,-314.23],[-252.16,-284.64],[-249.6,-260.14],[-247.92,-246.57],[-244.68,-233.01],[-238.48,-219.04],[-230.63,-207.21],[-220.07,-193.42],[-210.6,-178.06],[-202.26,-157.57],[-194.83,-140.36],[-189.05,-128.26],[-182.66,-115.29],[-175.68,-100.24],[-170.87,-95.65],[-162.98,-109.02],[-159.29,-117.61],[-157.86,-122.44],[-156.48,-126.24],[-154.16,-129.72],[-151.35,-136.56],[-147.93,-151.56],[-146.51,-169.56],[-150.04,-188.34],[-159.62,-220.81],[-176.14,-265.94],[-190.83,-286.97],[-197.97,-300.31],[-199.76,-307.99],[-204.11,-317.8],[-212.09,-337.34],[-229.23,-364.22]],"v":[[-240,-380],[-242.88,-372.78],[-245,-365],[-250.42,-344.98],[-254,-324],[-253.13,-294.5],[-250,-265],[-248.54,-251.05],[-246,-238],[-240.62,-223.53],[-234,-212],[-223.54,-198.02],[-214,-184],[-204.98,-164.39],[-197,-145],[-191.04,-132.39],[-184,-118],[-177.94,-105.04],[-173,-96],[-165.5,-104.39],[-160,-116],[-158.31,-120.87],[-157,-125],[-154.93,-128.57],[-153,-132],[-148.95,-146.56],[-147,-161],[-148.66,-182.22],[-154,-201],[-172,-258],[-187,-281],[-197,-298],[-199,-306],[-202,-312],[-207,-326],[-224,-356]],"c":true}],"h":1},{"t":238,"s":[{"i":[[-238.32,-379.7],[-243.28,-371.2],[-247.59,-356.51],[-252.74,-333.19],[-253.92,-304.67],[-251,-265.93],[-244.45,-228.81],[-236.74,-215.39],[-232.93,-210.3],[-230.21,-206.49],[-227.84,-203.14],[-226.04,-200.96],[-224.42,-199.56],[-217.41,-189.51],[-209.06,-174.06],[-205.95,-166.01],[-204.52,-161.27],[-202.81,-157.76],[-200.52,-154.24],[-199.03,-150.15],[-197.69,-145.45],[-186.94,-124.64],[-174.13,-96.18],[-166.82,-102.99],[-156.79,-123.3],[-152.21,-136.87],[-146.13,-163.06],[-154.48,-202.6],[-166.58,-249.25],[-183.31,-274.04],[-187.75,-280.62],[-189.39,-283.96],[-203.24,-319.57],[-217.82,-346.94],[-225.75,-359.39],[-232.73,-370.39]],"o":[[-241.74,-375.69],[-246.21,-361.6],[-251.28,-342.11],[-254.06,-314.47],[-251.78,-279.77],[-247.34,-240.45],[-238.02,-217.25],[-234.19,-211.92],[-231.04,-207.67],[-228.61,-204.22],[-226.58,-201.43],[-224.96,-200.02],[-220.63,-194.48],[-211.63,-179.3],[-206.44,-167.63],[-204.99,-162.83],[-203.54,-158.89],[-201.3,-155.43],[-199.44,-151.68],[-198.16,-147.04],[-191.45,-132.35],[-178.05,-105.72],[-169.09,-95.37],[-161.24,-114.88],[-153.1,-132.98],[-148.24,-150.45],[-148.26,-187.41],[-163.44,-233.14],[-176.69,-267.75],[-186.15,-280.33],[-188.67,-282.04],[-199.69,-301.52],[-214.02,-341.02],[-223.48,-355.95],[-230.49,-367],[-236.33,-376.11]],"v":[[-240,-380],[-244.75,-366.4],[-249,-351],[-253.4,-323.83],[-253,-294],[-249.17,-253.19],[-239,-219],[-235.47,-213.66],[-232,-209],[-229.41,-205.35],[-227,-202],[-225.5,-200.49],[-224,-199],[-214.52,-184.4],[-207,-169],[-205.47,-164.42],[-204,-160],[-202.05,-156.6],[-200,-153],[-198.6,-148.6],[-197,-144],[-181,-112],[-173,-96],[-164,-109],[-155,-128],[-151,-141],[-147,-173],[-159,-218],[-173,-261],[-186,-280],[-188,-281],[-190,-285],[-211,-335],[-221,-352],[-228,-363],[-235,-374]],"c":true}],"h":1},{"t":239,"s":[{"i":[[-236.82,-378.85],[-245.96,-362.51],[-253.39,-332.01],[-254.06,-309.11],[-252.47,-290.89],[-251.2,-272.85],[-249.88,-255.41],[-243.8,-230.18],[-229.54,-205.36],[-218.66,-191.06],[-210.99,-179.51],[-208.25,-172.74],[-207.39,-169],[-200.45,-152.21],[-190.29,-131.14],[-182.18,-113.81],[-173.48,-96.08],[-168.04,-99.64],[-159.87,-116.54],[-151.51,-137.22],[-146.14,-164.14],[-149.37,-187.49],[-156.62,-210.16],[-163.3,-233.62],[-169.94,-255.4],[-175.78,-265.51],[-180.58,-271.98],[-183.66,-276.08],[-186.28,-278.97],[-189.54,-285.42],[-206.24,-326.48],[-216.08,-344.57],[-219.36,-347.95],[-220.27,-351.72],[-223.21,-354.74],[-230.15,-365.55]],"o":[[-242.76,-371.75],[-251.27,-342.64],[-254.32,-315.16],[-253.14,-296.97],[-251.51,-278.9],[-250.39,-261.11],[-247.29,-239.5],[-234.93,-213.11],[-221.41,-194.56],[-213.45,-183.54],[-208.55,-173.99],[-207.66,-170.24],[-203.55,-159.14],[-193.81,-138.21],[-185.19,-120.27],[-176.33,-101.72],[-170.86,-95.62],[-162.55,-110.1],[-154.69,-128.9],[-147.23,-154.84],[-147.56,-180.4],[-153.9,-202.37],[-161.33,-225.67],[-167.6,-248.48],[-174.24,-263.27],[-178.95,-269.86],[-182.77,-275.09],[-185.42,-278.02],[-188.66,-282.38],[-200.49,-304.72],[-215.68,-343.2],[-217.61,-346.96],[-220.78,-350.28],[-221.76,-354.35],[-227.58,-361.73],[-235.33,-373.63]],"v":[[-240,-380],[-248.62,-352.57],[-254,-321],[-253.6,-303.04],[-252,-285],[-250.79,-266.98],[-249,-250],[-239.37,-221.64],[-224,-198],[-216.05,-187.3],[-209,-175],[-207.96,-171.49],[-207,-168],[-197.13,-145.21],[-186,-122],[-179.25,-107.77],[-173,-96],[-165.3,-104.87],[-158,-121],[-149.37,-146.03],[-147,-174],[-151.64,-194.93],[-159,-218],[-165.45,-241.05],[-173,-261],[-177.36,-267.69],[-182,-274],[-184.54,-277.05],[-187,-280],[-191,-288],[-215,-342],[-217,-346],[-220,-349],[-221,-353],[-224,-356],[-233,-370]],"c":true}],"h":1}]},"_render":true},{"ty":"fl","c":{"a":0,"k":[0.0314,0.3412,0.6275,1]},"o":{"a":0,"k":100},"r":1,"bm":0,"_render":true},{"ty":"tr","p":{"a":0,"k":[-200.03,-237.99]},"a":{"a":0,"k":[-200.03,-237.99]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0},"_render":true}],"bm":0,"_render":true}],"ip":0,"op":240,"st":0,"bm":0,"completed":true}]}],"markers":[],"__complete":true} \ No newline at end of file diff --git a/FE/src/assets/lottie/gameCreate.json b/FE/src/assets/lottie/gameCreate.json new file mode 100644 index 00000000..69338389 --- /dev/null +++ b/FE/src/assets/lottie/gameCreate.json @@ -0,0 +1 @@ +{"v":"4.8.0","meta":{"g":"LottieFiles AE 3.0.0","a":"","k":"","d":"","tc":"#FFFFFF"},"fr":30,"ip":0,"op":61,"w":400,"h":400,"ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-6]},{"t":60,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[200,212.93,0],"to":[0,-17.5,0],"ti":[0,0,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[200,107.93,0],"to":[0,0,0],"ti":[0,-17.5,0]},{"t":60,"s":[200,212.93,0]}]},"a":{"a":0,"k":[0,-44.43,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[21.18,21.18]},"p":{"a":0,"k":[0,0]}},{"ty":"fl","c":{"a":0,"k":[1,0.180392156863,0.372549019608,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":0,"k":[102.24,-30.66]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0},{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[21.18,21.18]},"p":{"a":0,"k":[0,0]}},{"ty":"fl","c":{"a":0,"k":[0,0.909803981407,0.964705942191,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":0,"k":[77.99,-6.41]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0},{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[21.18,21.18]},"p":{"a":0,"k":[0,0]}},{"ty":"fl","c":{"a":0,"k":[0.517647058824,0.882353001015,0.239215701234,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":0,"k":[52.54,-30.28]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0},{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[21.18,21.18]},"p":{"a":0,"k":[0,0]}},{"ty":"fl","c":{"a":0,"k":[0.968627510819,0.847058883368,0.133333333333,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":0,"k":[77.99,-54.16]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-81.83,-55.35],[-81.83,-7.35]],"c":false}}},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":1,"ml":10,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.180392156863,0.372549019608,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-105.83,-31.35],[-57.83,-31.35]],"c":false}}},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":1,"ml":10,"bm":0},{"ty":"fl","c":{"a":0,"k":[1,0.180392156863,0.372549019608,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":-10,"s":[100]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[100]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[100]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[100]},{"t":60,"s":[0]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-6]},{"t":60,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[200,212.93,0],"to":[0,-17.5,0],"ti":[0,0,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[200,107.93,0],"to":[0,0,0],"ti":[0,-17.5,0]},{"t":60,"s":[200,212.93,0]}]},"a":{"a":0,"k":[0,-44.43,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[35.66,35.66]},"p":{"a":0,"k":[0,0]}},{"ty":"fl","c":{"a":0,"k":[0.070588175456,1,0,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":0,"k":[45.86,29.34]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[100]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[100]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[100]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[100]},{"t":70,"s":[0]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-6]},{"t":60,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[200,212.93,0],"to":[0,-17.5,0],"ti":[0,0,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[200,107.93,0],"to":[0,0,0],"ti":[0,-17.5,0]},{"t":60,"s":[200,212.93,0]}]},"a":{"a":0,"k":[0,-44.43,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[35.66,35.66]},"p":{"a":0,"k":[0,0]}},{"ty":"fl","c":{"a":0,"k":[1,0.180392156863,0.372549019608,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":0,"k":[-45.1,29.34]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":-10,"s":[100]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[100]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[100]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[100]},{"t":60,"s":[0]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-6]},{"t":60,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[200,212.93,0],"to":[0,-17.5,0],"ti":[0,0,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[200,107.93,0],"to":[0,0,0],"ti":[0,-2.25,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[200,113.43,0],"to":[0,16.48,0],"ti":[0,-15.4,0]},{"t":60,"s":[200,212.93,0]}]},"a":{"a":0,"k":[0,-44.43,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ef":[{"ty":29,"en":1,"ef":[{"ty":0,"v":{"a":0,"k":3}},{"ty":7,"v":{"a":0,"k":1}},{"ty":7,"v":{"a":0,"k":0}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[35.66,35.66]},"p":{"a":0,"k":[0,0]}},{"ty":"fl","c":{"a":0,"k":[0.321568627451,0.411764735802,0.847058883368,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":0,"k":[45.86,29.34]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[100]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":10,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":20,"s":[100]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":30,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":40,"s":[100]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":50,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":60,"s":[100]},{"t":70,"s":[0]}]},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-6]},{"t":60,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[200,212.93,0],"to":[0,-17.5,0],"ti":[0,0,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[200,107.93,0],"to":[0,0,0],"ti":[0,-2.25,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":31,"s":[200,113.43,0],"to":[0,16.48,0],"ti":[0,-15.4,0]},{"t":60,"s":[200,212.93,0]}]},"a":{"a":0,"k":[0,-44.43,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"ef":[{"ty":29,"en":1,"ef":[{"ty":0,"v":{"a":0,"k":3}},{"ty":7,"v":{"a":0,"k":1}},{"ty":7,"v":{"a":0,"k":0}}]}],"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[35.66,35.66]},"p":{"a":0,"k":[0,0]}},{"ty":"fl","c":{"a":0,"k":[0.321568627451,0.411764735802,0.847058883368,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":0,"k":[-45.1,29.34]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-6]},{"t":60,"s":[0]}]},"p":{"a":0,"k":[200,213,0],"x":"var $bm_rt;\n$bm_rt = thisComp.layer('layer').transform.position;"},"a":{"a":0,"k":[0,-44,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[15.3,23.29],[23.29,-15.3],[3.14,-3.8],[0,0],[15.67,0],[0,-27.86],[-27.86,0],[0,0],[0,0],[-0.1,-1.31],[-15.2,0],[-4.48,10.3],[0,3.67],[0,0],[-15.2,0],[0,15.2],[0.1,1.31],[0,0],[0,0],[-8.24,5.42]],"o":[[-15.3,-23.29],[-4.34,2.85],[0,0],[-9.25,-11.2],[-27.86,0],[0,27.86],[0,0],[0,0],[-0.1,1.31],[0,15.2],[11.23,0.31],[1.56,-3.58],[0,0],[0,15.2],[15.2,0],[0.1,-1.31],[0,0],[0,0],[9.87,0.01],[23.29,-15.3]],"v":[[120.37,-57.98],[50.51,-72.45],[39.28,-62.39],[-39.05,-62.39],[-77.97,-80.73],[-128.42,-30.28],[-77.97,20.17],[-73.38,20.17],[-73.38,25.39],[-73.38,29.34],[-45.86,56.86],[-19.86,40.32],[-17.58,29.34],[18.35,29.34],[45.86,56.86],[73.38,29.34],[73.38,25.39],[72.28,20.17],[78.15,20.17],[105.91,11.88]],"c":true}}},{"ty":"fl","c":{"a":0,"k":[0,0.090196078431,0.372549019608,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":0,"s":[0]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":5,"s":[15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":15,"s":[-15]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":25,"s":[11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":35,"s":[-11]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":45,"s":[7]},{"i":{"x":[0.83],"y":[0.83]},"o":{"x":[0.17],"y":[0.17]},"t":55,"s":[-6]},{"t":60,"s":[0]}]},"p":{"a":1,"k":[{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":0,"s":[200,212.93,0],"to":[0,-17.5,0],"ti":[0,0,0]},{"i":{"x":0.83,"y":0.83},"o":{"x":0.17,"y":0.17},"t":30,"s":[200,107.93,0],"to":[0,0,0],"ti":[0,-17.5,0]},{"t":60,"s":[200,212.93,0]}]},"a":{"a":0,"k":[0,-44.07,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[5.72,36.7],[32.88,-0.23],[11.13,-11.64],[0,0],[0,0],[3.37,0],[0,0],[0,-3.37],[0,0],[0,0],[23.76,-22.72],[0.11,-16.1],[0.38,-37.14],[-17.61,-3.3],[-3.33,0],[-4.48,15.56],[-3.94,8.44],[-8.39,18.44],[-0.53,2.07],[0,0],[-19.61,5.09],[-1.9,0.86],[-3.58,-10.18],[-16.22,0.34],[-3.29,0.67],[0,22.2]],"o":[[-0.23,-32.88],[-16.1,0.11],[0,0],[0,0],[0,-3.37],[0,0],[-3.36,0],[0,0],[0,0],[-22.72,-23.76],[-11.64,11.13],[-5.72,36.7],[0,22.2],[3.26,0.67],[16.19,0.3],[3.58,-10.09],[18.44,8.4],[0.88,-1.94],[0,0],[5.09,19.61],[2.02,-0.52],[3.94,8.35],[4.49,15.59],[3.36,0],[17.52,-3.58],[-0.38,-37.14]],"v":[[137.59,-30.83],[77.64,-89.94],[35.04,-71.56],[7.12,-71.56],[7.12,-139.98],[1.02,-146.07],[-0.77,-146.07],[-6.87,-139.98],[-6.87,-71.56],[-35.04,-71.56],[-119.2,-73.43],[-137.59,-30.83],[-146.76,80.06],[-119.98,120.05],[-110.07,121.06],[-75.03,95.2],[-61.09,62.73],[-12.49,44.53],[-10.36,38.51],[10.37,38.51],[55.09,64.81],[61,62.73],[74.94,95.2],[110.07,121.06],[120.07,120.05],[146.76,80.06]],"c":true}}},{"ty":"fl","c":{"a":0,"k":[0,0.592156862745,1,1]},"o":{"a":0,"k":100},"r":1,"bm":0},{"ty":"tr","p":{"a":0,"k":[0,0]},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"r":{"a":0,"k":0},"o":{"a":0,"k":100},"sk":{"a":0,"k":0},"sa":{"a":0,"k":0}}],"bm":0}],"ip":0,"op":61,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/FE/src/assets/lottie/pin.json b/FE/src/assets/lottie/pin.json new file mode 100644 index 00000000..4f81096c --- /dev/null +++ b/FE/src/assets/lottie/pin.json @@ -0,0 +1 @@ +{"nm":"location layer","ddd":0,"h":500,"w":500,"meta":{"g":"@lottiefiles/toolkit-js 0.26.1"},"layers":[{"ty":3,"nm":"Null 1","sr":1,"st":0,"op":3821,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[76.409,76.409,0]},"r":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0],"t":0},{"s":[-360],"t":251}]},"sa":{"a":0,"k":0},"o":{"a":0,"k":0}},"ef":[],"ind":1,"parent":13,"completed":true},{"ty":4,"nm":"bulut ufak","sr":1,"st":0,"op":3821,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[23.781,15.528,0]},"s":{"a":0,"k":[100,100,100]},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[6.017,100.189,0],"t":0,"ti":null,"to":null},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[37.017,100.189,0],"t":125,"ti":null,"to":null},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[6.017,100.189,0],"t":250,"ti":null,"to":null},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[37.017,100.189,0],"t":375,"ti":null,"to":null},{"s":[6.017,100.189,0],"t":500}]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[20.412,0.761],[12.713,0.761],[11.637,-6.643000000000001],[-4.854,-14.628],[-10.715,-8.765],[-12.45,-6.7379999999999995],[-13.419,-5.598],[-23.532,-1.0469999999999997],[-18.981,14.628],[-3.622,14.628],[-0.04,14.628],[16.598,14.628],[23.532,11.509]],"o":[[16.598,0.761],[12.914,-2.908],[3.6519999999999992,-14.628],[-10.051,-9.429],[-11.673,-7.808000000000001],[-13.055,-5.598],[-18.981,-5.598],[-23.532,10.078],[-13.419,14.628],[-3.622,14.628],[-0.04,14.628],[20.412,14.628],[23.532,3.8819999999999997]],"v":[[16.598,0.761],[12.713,0.761],[8.85,-9.429],[-10.051,-9.429],[-10.715,-8.765],[-13.055,-5.598],[-13.419,-5.598],[-23.532,4.516],[-13.419,14.628],[-3.622,14.628],[-0.04,14.628],[16.598,14.628],[23.532,7.696]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.5725,0.6549,0.9961,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[23.781,14.878]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":2,"parent":13,"completed":true},{"ty":4,"nm":"bulut buyuk","sr":1,"st":0,"op":3821,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[40.184,26.178,0]},"s":{"a":0,"k":[100,100,100]},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[150.786,61.201,0],"t":0,"ti":null,"to":null},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[132.286,61.201,0],"t":125,"ti":null,"to":null},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[150.786,61.201,0],"t":250,"ti":null,"to":null},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[132.286,61.201,0],"t":375,"ti":null,"to":null},{"s":[150.786,61.201,0],"t":500}]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[34.64,1.291],[21.573,1.291],[19.746000000000002,-11.275000000000002],[-8.235000000000001,-24.825000000000003],[-18.185,-14.877],[-21.128,-11.437000000000001],[-22.771,-9.502],[-39.935,-1.7779999999999996],[-32.211,24.825],[-6.146,24.825],[-0.069,24.825],[28.168,24.825],[39.935,19.53]],"o":[[28.168,1.291],[21.915,-4.9350000000000005],[6.197000000000001,-24.825000000000003],[-17.056,-16.004],[-19.808999999999997,-13.253],[-22.154,-9.502],[-32.211,-9.502],[-39.935,17.102],[-22.771,24.825],[-6.146,24.825],[-0.069,24.825],[34.64,24.825],[39.935,6.585999999999999]],"v":[[28.168,1.291],[21.573,1.291],[15.018,-16.004],[-17.056,-16.004],[-18.185,-14.877],[-22.154,-9.502],[-22.771,-9.502],[-39.935,7.662],[-22.771,24.825],[-6.146,24.825],[-0.069,24.825],[28.168,24.825],[39.935,13.058]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.5725,0.6549,0.9961,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[40.184,25.075]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":3,"parent":13,"completed":true},{"ty":4,"nm":"pin","sr":1,"st":0,"op":3821,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[25.197,70.234,0]},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":0},{"o":{"x":0.333,"y":0},"i":{"x":0.504,"y":1},"s":[100,86,100],"t":6},{"o":{"x":0.627,"y":0},"i":{"x":0.667,"y":1},"s":[100,110,100],"t":11},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[100,100,100],"t":16},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[100,98,100],"t":20},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":50},{"o":{"x":0.333,"y":0},"i":{"x":0.504,"y":1},"s":[100,86,100],"t":56},{"o":{"x":0.627,"y":0},"i":{"x":0.667,"y":1},"s":[100,110,100],"t":61},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[100,100,100],"t":66},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[100,98,100],"t":70},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":100},{"o":{"x":0.333,"y":0},"i":{"x":0.504,"y":1},"s":[100,86,100],"t":106},{"o":{"x":0.627,"y":0},"i":{"x":0.667,"y":1},"s":[100,110,100],"t":111},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[100,100,100],"t":116},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[100,98,100],"t":120},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":150},{"o":{"x":0.333,"y":0},"i":{"x":0.504,"y":1},"s":[100,86,100],"t":156},{"o":{"x":0.627,"y":0},"i":{"x":0.667,"y":1},"s":[100,110,100],"t":161},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[100,100,100],"t":166},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[100,98,100],"t":170},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":200},{"o":{"x":0.333,"y":0},"i":{"x":0.504,"y":1},"s":[100,86,100],"t":206},{"o":{"x":0.627,"y":0},"i":{"x":0.667,"y":1},"s":[100,110,100],"t":211},{"o":{"x":0.167,"y":0},"i":{"x":0.833,"y":1},"s":[100,100,100],"t":216},{"s":[100,98,100],"t":220}]},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0},"i":{"x":0.338,"y":1},"s":[76.409,40.348,0],"t":6,"ti":null,"to":null},{"o":{"x":0.627,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,29.098,0],"t":11,"ti":null,"to":null},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,40.348,0],"t":16,"ti":null,"to":null},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,36.848,0],"t":20,"ti":null,"to":null},{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":0.667},"s":[76.409,40.348,0],"t":24,"ti":null,"to":null},{"o":{"x":0.167,"y":0},"i":{"x":0.338,"y":1},"s":[76.409,40.348,0],"t":56,"ti":null,"to":null},{"o":{"x":0.627,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,29.098,0],"t":61,"ti":null,"to":null},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,40.348,0],"t":66,"ti":null,"to":null},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,36.848,0],"t":70,"ti":null,"to":null},{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":0.667},"s":[76.409,40.348,0],"t":74,"ti":null,"to":null},{"o":{"x":0.167,"y":0},"i":{"x":0.338,"y":1},"s":[76.409,40.348,0],"t":106,"ti":null,"to":null},{"o":{"x":0.627,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,29.098,0],"t":111,"ti":null,"to":null},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,40.348,0],"t":116,"ti":null,"to":null},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,36.848,0],"t":120,"ti":null,"to":null},{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":0.667},"s":[76.409,40.348,0],"t":124,"ti":null,"to":null},{"o":{"x":0.167,"y":0},"i":{"x":0.338,"y":1},"s":[76.409,40.348,0],"t":156,"ti":null,"to":null},{"o":{"x":0.627,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,29.098,0],"t":161,"ti":null,"to":null},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,40.348,0],"t":166,"ti":null,"to":null},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,36.848,0],"t":170,"ti":null,"to":null},{"o":{"x":0.167,"y":0.167},"i":{"x":0.667,"y":0.667},"s":[76.409,40.348,0],"t":174,"ti":null,"to":null},{"o":{"x":0.167,"y":0},"i":{"x":0.338,"y":1},"s":[76.409,40.348,0],"t":206,"ti":null,"to":null},{"o":{"x":0.627,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,29.098,0],"t":211,"ti":null,"to":null},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,40.348,0],"t":216,"ti":null,"to":null},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[76.409,36.848,0],"t":220,"ti":null,"to":null},{"s":[76.409,40.348,0],"t":224}]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[11.744,-6.486],[6.486,11.744],[-11.744,6.486],[-6.486,-11.744]],"o":[[11.744,6.486],[-6.486,11.744],[-11.744,-6.486],[6.486,-11.744]],"v":[[11.744,0],[0,11.744],[-11.744,0],[0,-11.744]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[1,1,1,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[25.198,25.197]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 2","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[24.948,-24.065],[0,35.234],[-24.948,3.4909999999999997],[-13.778,-35.234]],"o":[[24.948,3.4909999999999997],[0,35.234],[-24.948,-24.065],[13.778,-35.234]],"v":[[24.948,-10.287],[0,35.234],[-24.948,-10.287],[0,-35.234]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.0846,0.2668,0.9954,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[25.197,35.484]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":4,"parent":13,"completed":true},{"ty":4,"nm":"Layer 14 Outlines","sr":1,"st":0,"op":3821,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[6.799,2.486,0]},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.389,"y":1},"s":[100,100,100],"t":6},{"o":{"x":0.709,"y":0},"i":{"x":0.667,"y":1},"s":[0,0,100],"t":11},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[100,100,100],"t":16},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[50,50,100],"t":20},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":24},{"o":{"x":0.333,"y":0},"i":{"x":0.389,"y":1},"s":[100,100,100],"t":56},{"o":{"x":0.709,"y":0},"i":{"x":0.667,"y":1},"s":[0,0,100],"t":61},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[100,100,100],"t":66},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[50,50,100],"t":70},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":74},{"o":{"x":0.333,"y":0},"i":{"x":0.389,"y":1},"s":[100,100,100],"t":106},{"o":{"x":0.709,"y":0},"i":{"x":0.667,"y":1},"s":[0,0,100],"t":111},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[100,100,100],"t":116},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[50,50,100],"t":120},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":124},{"o":{"x":0.333,"y":0},"i":{"x":0.389,"y":1},"s":[100,100,100],"t":156},{"o":{"x":0.709,"y":0},"i":{"x":0.667,"y":1},"s":[0,0,100],"t":161},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[100,100,100],"t":166},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[50,50,100],"t":170},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100,100,100],"t":174},{"o":{"x":0.333,"y":0},"i":{"x":0.389,"y":1},"s":[100,100,100],"t":206},{"o":{"x":0.709,"y":0},"i":{"x":0.667,"y":1},"s":[0,0,100],"t":211},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[100,100,100],"t":216},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[50,50,100],"t":220},{"s":[100,100,100],"t":224}]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[76.409,40.275,0]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.389,"y":1},"s":[50],"t":6},{"o":{"x":0.709,"y":0},"i":{"x":0.667,"y":1},"s":[25],"t":11},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[50],"t":16},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[25],"t":20},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[50],"t":24},{"o":{"x":0.333,"y":0},"i":{"x":0.389,"y":1},"s":[50],"t":56},{"o":{"x":0.709,"y":0},"i":{"x":0.667,"y":1},"s":[25],"t":61},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[50],"t":66},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[25],"t":70},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[50],"t":74},{"o":{"x":0.333,"y":0},"i":{"x":0.389,"y":1},"s":[50],"t":106},{"o":{"x":0.709,"y":0},"i":{"x":0.667,"y":1},"s":[25],"t":111},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[50],"t":116},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[25],"t":120},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[50],"t":124},{"o":{"x":0.333,"y":0},"i":{"x":0.389,"y":1},"s":[50],"t":156},{"o":{"x":0.709,"y":0},"i":{"x":0.667,"y":1},"s":[25],"t":161},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[50],"t":166},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[25],"t":170},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[50],"t":174},{"o":{"x":0.333,"y":0},"i":{"x":0.389,"y":1},"s":[50],"t":206},{"o":{"x":0.709,"y":0},"i":{"x":0.667,"y":1},"s":[25],"t":211},{"o":{"x":0.333,"y":0},"i":{"x":0.833,"y":1},"s":[50],"t":216},{"o":{"x":0.167,"y":0},"i":{"x":0.667,"y":1},"s":[25],"t":220},{"s":[50],"t":224}]}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[6.799,-1.373],[3.755,2.486],[-6.798,1.373],[-3.754,-2.486]],"o":[[6.799,1.373],[-3.754,2.486],[-6.798,-1.373],[3.755,-2.486]],"v":[[6.799,0],[0,2.486],[-6.798,0],[0,-2.486]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.0846,0.2668,0.9954,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[6.799,2.486]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":5,"parent":13,"completed":true},{"ty":4,"nm":"Layer 4 Outlines","sr":1,"st":0,"op":3821,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[6.573,6.573,0]},"s":{"a":0,"k":[100,100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[64.544,62.967,0]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[6.323,-3.492],[3.493,6.323],[-6.323,3.492],[-3.491,-6.323]],"o":[[6.323,3.492],[-3.491,6.323],[-6.323,-3.492],[3.493,-6.323]],"v":[[6.323,0],[0.001,6.323],[-6.323,0],[0.001,-6.323]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.88,0.904,1,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[6.573,6.573]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":6,"parent":1,"completed":true},{"ty":4,"nm":"Layer 5 Outlines","sr":1,"st":0,"op":3821,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[11.067,11.067,0]},"s":{"a":0,"k":[100,100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[64.544,62.967,0]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[9.817,-5.422],[5.422000000000001,9.816],[-9.817,5.422],[-5.420999999999999,-9.816]],"o":[[9.817,5.422],[-5.420999999999999,9.816],[-9.817,-5.422],[5.422000000000001,-9.816]],"v":[[9.817,0],[0.001,9.816],[-9.817,0],[0.001,-9.816]]}},"_render":true},{"ty":"st","bm":0,"hd":false,"nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":0.5},"c":{"a":0,"k":[0.88,0.904,1,1]},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[11.067,11.067]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":7,"parent":1,"completed":true},{"ty":4,"nm":"Layer 6 Outlines","sr":1,"st":0,"op":3821,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[11.112,11.112,0]},"s":{"a":0,"k":[100,100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[-60.058,-67.299,0]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[9.817,-5.422],[5.421,9.817],[-9.817,5.422],[-5.422,-9.817]],"o":[[9.817,5.422],[-5.422,9.817],[-9.817,-5.422],[5.421,-9.817]],"v":[[9.817,0],[0,9.817],[-9.817,0],[0,-9.817]]}},"_render":true},{"ty":"st","bm":0,"hd":false,"nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":0.518},"c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[11.112,11.112]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":8,"parent":1,"completed":true},{"ty":4,"nm":"Layer 7 Outlines","sr":1,"st":0,"op":3821,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[6.573,6.573,0]},"s":{"a":0,"k":[100,100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[-59.995,-67.299,0]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[6.323,-3.492],[3.492,6.323],[-6.323,3.492],[-3.491,-6.323]],"o":[[6.323,3.492],[-3.491,6.323],[-6.323,-3.492],[3.492,-6.323]],"v":[[6.323,0],[0,6.323],[-6.323,0],[0,-6.323]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[6.573,6.573]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":9,"parent":1,"completed":true},{"ty":4,"nm":"Layer 11 Outlines","sr":1,"st":0,"op":3821,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[92.631,92.631,0]},"s":{"a":0,"k":[100,100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[0,0.001,0]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[90.042,-49.729],[49.728,90.042],[-90.042,49.728],[-49.73,-90.042]],"o":[[90.042,49.728],[-49.73,90.042],[-90.042,-49.729],[49.728,-90.042]],"v":[[90.042,-0.001],[-0.001,90.042],[-90.042,-0.001],[-0.001,-90.042]]}},"_render":true},{"ty":"st","bm":0,"hd":false,"nm":"Stroke 1","lc":1,"lj":1,"ml":10,"o":{"a":0,"k":100},"w":{"a":0,"k":1.036},"d":[{"nm":"dash","n":"d","v":{"a":0,"k":3.109}},{"nm":"gap","n":"g","v":{"a":0,"k":3.109}},{"nm":"offset","n":"o","v":{"a":0,"k":0}}],"c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[92.631,92.631]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":10,"parent":1,"completed":true},{"ty":4,"nm":"Layer 1 Outlines 2","sr":1,"st":0,"op":3821,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"td":1,"ao":0,"ks":{"a":{"a":0,"k":[76.409,76.409,0]},"s":{"a":0,"k":[100,100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[76.409,76.409,0]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[76.159,-42.062],[42.061,76.159],[-76.159,42.062],[-42.062,-76.159]],"o":[[76.159,42.062],[-42.062,76.159],[-76.159,-42.062],[42.061,-76.159]],"v":[[76.159,0],[0,76.159],[-76.159,0],[0,-76.159]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.88,0.904,1,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[76.409,76.409]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":11,"parent":13,"completed":true},{"ty":0,"nm":"harita","sr":1,"st":-125,"op":3696,"ip":0,"hd":false,"ddd":0,"bm":0,"tt":1,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[250,250,0]},"s":{"a":0,"k":[100,100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"w":500,"h":500,"refId":"comp_0","ind":12,"completed":true,"layers":[{"ty":4,"nm":"Layer 12 Outlines 4","sr":1,"st":375,"op":626,"ip":375,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[113.024,66.425,0]},"s":{"a":0,"k":[200,200,100]},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-233.69,259.035,0],"t":375,"ti":[0,0,0],"to":[0,0,0]},{"s":[737.31,259.035,0],"t":625}]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-8.234,1.218],[-6.919,2.533],[-4.181,3.578],[-2.453,1.852],[0.05600000000000005,0.188],[5.715,0.188],[6.329,0.064],[7.218,-0.825],[7.514,-3.579],[4.024,-3.579],[3.409,-3.4539999999999997],[2.946,-2.99],[0.41900000000000004,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.063,-1.203],[-7.357,-0.926]],"o":[[-7.407,2.045],[-5.874,3.578],[-3.136,2.533],[-1.388,0.7870000000000001],[1.562,0.188],[6.029,0.188],[6.551,-0.158],[8.234,-1.8419999999999999],[6.077,-3.579],[3.71,-3.579],[3.187,-3.231],[1.8730000000000002,-1.9180000000000001],[-1.097,-1.316],[-3.038,-1.316],[-6.774,-1.316],[-7.282,-0.997],[-8.211,-0.127]],"v":[[-7.407,2.045],[-6.919,2.533],[-3.136,2.533],[-2.453,1.852],[1.562,0.188],[5.715,0.188],[6.551,-0.158],[7.218,-0.825],[6.077,-3.579],[4.024,-3.579],[3.187,-3.231],[2.946,-2.99],[-1.097,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.282,-0.997],[-7.357,-0.926]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[74.11,5.597]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 2","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-14.83,-0.45899999999999996],[-11.507,2.865],[-10.755,3.9989999999999997],[-10.755,5.354],[-10.337,7.411],[-9.108,8.641],[-6.12,9.781],[-3.177,6.837],[-0.8619999999999999,5.303],[3.022,5.303],[5.5840000000000005,4.783],[13.23,-2.862],[14.844000000000001,-7.093000000000001],[11.609,-9.781],[1.499,-9.781],[-1.8379999999999999,-9.105],[-4.044,-6.898],[-5.696,-5.803],[-10.216,-5.803],[-12.087,-5.417],[-13.547,-3.919]],"o":[[-13.515,0.856],[-11.025,3.3470000000000004],[-10.755,4.68],[-10.755,6.404],[-9.595,8.154],[-7.968000000000001,9.781],[-4.981,8.641],[-2.1950000000000003,5.8549999999999995],[0.528,5.303],[4.33,5.303],[6.509,3.858],[14.844000000000001,-4.477],[12.542,-9.395000000000001],[10.636,-9.781],[-0.20399999999999996,-9.781],[-3.042,-7.901],[-4.744999999999999,-6.197],[-6.688,-5.803],[-11.171999999999999,-5.803],[-12.754,-4.733],[-14.844000000000001,-2.5869999999999997]],"v":[[-13.515,0.856],[-11.507,2.865],[-10.755,4.68],[-10.755,5.354],[-9.595,8.154],[-9.108,8.641],[-4.981,8.641],[-3.177,6.837],[0.528,5.303],[3.022,5.303],[6.509,3.858],[13.23,-2.862],[13.23,-8.707],[10.636,-9.781],[1.499,-9.781],[-3.042,-7.901],[-4.044,-6.898],[-6.688,-5.803],[-10.216,-5.803],[-12.754,-4.733],[-13.547,-3.919]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[94.717,10.032]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 3","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-52.302,-19.091],[-49.564,-21.828],[-49.049,-22.169],[-36.561,-22.169],[-35.956,-22.047],[-33.306,-19.397],[-32.966,-18.883000000000003],[-32.966,-12.62],[-33.087999999999994,-12.016],[-40.493,-4.611],[-40.835,-4.0969999999999995],[-40.835,2.079],[-40.712,2.684],[-10.697,32.698],[-8.71,32.912],[-8.71,31.061],[-8.832,30.456],[-12.541,26.747],[-12.882,26.233],[-12.882,23.507],[-13.634,19.796],[-15.82,17.611],[-16.161,17.095000000000002],[-17.415,15.231],[-19.33,17.146],[-20.522,17.6],[-23.199,14.922],[-23.54,14.407],[-23.54,8.578],[-23.417,7.973],[-19.514,4.07],[-19,3.729],[-11.829,3.729],[-11.224,3.8510000000000004],[-9.054,6.022],[-7.067,6.236000000000001],[-7.067,4.082],[-6.944,3.477],[-0.523,-2.944],[3.075,-5.328],[8.844,-5.328],[10.946,-5.755],[17.019,-11.828],[18.441,-15.556000000000001],[14.64,-19.357],[12.876,-20.526],[10.013,-20.526],[7.9510000000000005,-20.108999999999998],[3.997,-16.155],[3.483,-15.814],[-0.834,-15.814],[-1.439,-15.936000000000002],[-5.227,-19.724],[-5.682,-20.916],[0.072,-26.672],[0.587,-27.012],[7.022,-27.012],[7.627,-27.134],[10.659,-30.167],[11.113000000000001,-31.359],[9.711,-32.76],[8.519,-33.214999999999996],[7.067,-31.763],[6.553,-31.422],[-2.39,-31.422],[-2.995,-31.3],[-4.304,-29.991],[-4.819,-29.65],[-17.437,-29.65],[-18.042,-29.773],[-21.362,-33.092],[-21.875999999999998,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.525,-33.31],[-42.493,-31.341],[-43.008,-31],[-48.221,-31],[-48.826,-30.878],[-55.945,-23.759],[-56.400000000000006,-22.587],[-53.504,-19.569]],"o":[[-51.841,-19.552],[-49.345,-22.047],[-48.74,-22.169],[-36.252,-22.169],[-35.737,-21.828],[-33.087999999999994,-19.179],[-32.966,-18.574],[-32.966,-12.312],[-33.306,-11.797],[-40.712,-4.393],[-40.835,-3.788],[-40.835,2.3880000000000003],[-40.493,2.902],[-9.963999999999999,33.432],[-8.71,31.875],[-8.71,30.752],[-9.05,30.238],[-12.759,26.529],[-12.882,25.924],[-12.882,21.613000000000003],[-14.974,18.457],[-16.038,17.392],[-16.161,15.749000000000002],[-18.149,15.964],[-19.784,17.6],[-20.976,17.146],[-23.417,14.704],[-23.54,14.099],[-23.54,8.269],[-23.199,7.755],[-19.296,3.8510000000000004],[-18.691,3.729],[-11.521,3.729],[-11.006,4.07],[-8.32,6.755],[-7.067,5.198],[-7.067,3.7729999999999997],[-6.726,3.259],[1.004,-4.47],[5.235,-5.328],[9.917,-5.328],[11.705,-6.513],[18.441,-13.25],[17.019,-16.978],[13.891,-20.105999999999998],[11.817,-20.526],[8.96,-20.526],[7.206,-19.365],[3.779,-15.936000000000002],[3.174,-15.814],[-1.143,-15.814],[-1.657,-16.155],[-5.682,-20.179],[-5.227,-21.371],[0.291,-26.89],[0.895,-27.012],[7.331,-27.012],[7.845,-27.353],[11.113000000000001,-30.622],[10.659,-31.814],[9.256,-33.214999999999996],[8.064,-32.76],[6.848,-31.545],[6.243,-31.422],[-2.6990000000000003,-31.422],[-3.214,-31.082],[-4.523000000000001,-29.773],[-5.128,-29.65],[-17.746000000000002,-29.65],[-18.26,-29.991],[-21.58,-33.31],[-22.185,-33.432],[-34.695,-33.432],[-40.229,-33.432],[-40.743,-33.092],[-42.712,-31.123],[-43.317,-31],[-48.529999999999994,-31],[-49.045,-30.659],[-56.393,-23.311],[-55.962,-22.13],[-53.052,-19.098]],"v":[[-51.841,-19.552],[-49.564,-21.828],[-48.74,-22.169],[-36.561,-22.169],[-35.737,-21.828],[-33.306,-19.397],[-32.966,-18.574],[-32.966,-12.62],[-33.306,-11.797],[-40.493,-4.611],[-40.835,-3.788],[-40.835,2.079],[-40.493,2.902],[-10.697,32.698],[-8.71,31.875],[-8.71,31.061],[-9.05,30.238],[-12.541,26.747],[-12.882,25.924],[-12.882,23.507],[-14.974,18.457],[-15.82,17.611],[-16.161,16.786],[-18.149,15.964],[-19.33,17.146],[-20.976,17.146],[-23.199,14.922],[-23.54,14.099],[-23.54,8.578],[-23.199,7.755],[-19.514,4.07],[-18.691,3.729],[-11.829,3.729],[-11.006,4.07],[-9.054,6.022],[-7.067,5.198],[-7.067,4.082],[-6.726,3.259],[-0.523,-2.944],[5.235,-5.328],[8.844,-5.328],[11.705,-6.513],[17.019,-11.828],[17.019,-16.978],[14.64,-19.357],[11.817,-20.526],[10.013,-20.526],[7.206,-19.365],[3.997,-16.155],[3.174,-15.814],[-0.834,-15.814],[-1.657,-16.155],[-5.227,-19.724],[-5.227,-21.371],[0.072,-26.672],[0.895,-27.012],[7.022,-27.012],[7.845,-27.353],[10.659,-30.167],[10.659,-31.814],[9.711,-32.76],[8.064,-32.76],[7.067,-31.763],[6.243,-31.422],[-2.39,-31.422],[-3.214,-31.082],[-4.304,-29.991],[-5.128,-29.65],[-17.437,-29.65],[-18.26,-29.991],[-21.362,-33.092],[-22.185,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.743,-33.092],[-42.493,-31.341],[-43.317,-31],[-48.221,-31],[-49.045,-30.659],[-55.945,-23.759],[-55.962,-22.13],[-53.504,-19.569]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[56.65,43.52]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 4","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-18.884,-27.953],[-15.534,-31.303],[-13.216,-32.839],[-7.757,-32.839],[-5.063000000000001,-32.293],[-1.266,-28.496],[1.509,-26.656],[4.088,-26.471],[8.462,-22.097],[11.726,-19.933],[15.732,-19.518],[18.587,-16.663],[20.062,-14.437000000000001],[20.062,-12.023],[19.66,-10.040999999999999],[15.869,-6.25],[15.355,-5.473999999999999],[15.355,-3.231],[14.638,0.30600000000000005],[2.975,11.968],[1.649,13.969999999999999],[1.081,17.97],[-1.898,20.948],[-2.413,21.726],[-2.413,27.397],[-2.2279999999999998,28.310000000000002],[-0.699,29.839],[-0.3759999999999999,32.839],[-2.855,32.653],[-6.756,28.752],[-10.824,24.684],[-11.339,23.907],[-11.339,5.642],[-11.339,2.314],[-12.384,-2.84],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-11.512],[-20.062,-25.655],[-19.962,-26.333000000000002],[-19.026,-27.76]],"o":[[-18.799,-28.038],[-14.55,-32.286],[-11.825,-32.839],[-6.382,-32.839],[-4.091,-31.32],[-0.08899999999999997,-27.317999999999998],[3.6399999999999997,-26.656],[4.417,-26.142],[9.847,-20.711000000000002],[14.73,-19.933],[16.471,-18.779],[19.532,-15.719000000000001],[20.062,-13.101],[20.062,-11.011],[18.945,-9.325],[15.54,-5.92],[15.355,-5.007],[15.355,-1.426],[13.361,1.582],[2.1260000000000003,12.817],[1.649,16.599999999999998],[0.071,18.98],[-2.2279999999999998,21.278],[-2.413,22.191],[-2.413,27.862],[-1.898,28.64],[0.40900000000000014,30.945],[-2.408,32.839],[-3.184,32.324],[-6.756,28.752],[-11.154,24.355],[-11.339,23.441],[-11.339,5.642],[-11.339,-0.3169999999999997],[-14.244,-4.7],[-15.911,-6.367],[-19.360000000000003,-9.815],[-20.062,-13.279],[-20.062,-25.998],[-19.774,-26.62],[-18.96,-27.859]],"v":[[-18.799,-28.038],[-15.534,-31.303],[-11.825,-32.839],[-7.757,-32.839],[-4.091,-31.32],[-1.266,-28.496],[3.175,-26.656],[4.417,-26.142],[8.462,-22.097],[13.685,-19.933],[16.471,-18.779],[18.587,-16.663],[20.062,-13.101],[20.062,-12.023],[18.945,-9.325],[15.869,-6.25],[15.355,-5.007],[15.355,-3.231],[13.361,1.582],[2.975,11.968],[1.649,15.171],[0.071,18.98],[-1.898,20.948],[-2.413,22.191],[-2.413,27.397],[-1.898,28.64],[-0.699,29.839],[-1.942,32.839],[-3.184,32.324],[-6.756,28.752],[-10.824,24.684],[-11.339,23.441],[-11.339,5.642],[-11.339,2.314],[-14.244,-4.7],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-13.279],[-20.062,-25.655],[-19.774,-26.62],[-19.026,-27.76]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[67.169,99.76]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 5","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-23.953,-47.502],[-30.254,-41.201],[-31.296,-39.628],[-30.924000000000003,-36.846000000000004],[-27.782,-33.704],[-27.751,-33.657],[-28.114,-31.841],[-29.155,-30.799],[-31.146,-29.479],[-33.301,-29.479],[-35.993,-28.933],[-41.067,-23.86],[-42.646,-21.477],[-42.646,-18.446],[-42.362,-17.046],[-40.748,-15.806],[-38.321,-15.806],[-36.017,-16.273],[-30.957,-21.333],[-27.465,-22.665],[-25.425,-20.625],[-23.194,-19.146],[-18.996,-19.146],[-16.636,-19.624],[-15.619,-20.641],[-13.505,-22.043],[-9.678,-21.524],[-8.477,-20.322],[-6.889,-17.927],[-7.3790000000000004,-14.072],[-9.199,-12.252],[-11.513,-10.718],[-19.187,-10.718],[-22.445,-11.379],[-25.325,-14.259],[-28.865000000000002,-15.61],[-33.281,-12.228],[-39.785,-12.228],[-43.373,-11.5],[-50.475,-4.398],[-51.974,-2.137],[-51.974,4.274],[-51.309999999999995,7.545999999999999],[-45.992,12.865],[-43.331999999999994,14.627],[-37.699,14.627],[-34.223000000000006,15.332],[-29.739,19.816],[-28.95,20.606],[-26.608,24.139000000000003],[-26.608,32.717],[-26.009,35.672000000000004],[-24.746,36.935],[-22.986,39.591],[-22.986,44.015],[-22.401000000000003,46.900000000000006],[-18.133,51.167],[-15.937,52.622],[-11.674999999999999,52.026],[-6.195,46.545],[-4.535,44.041],[-4.535,37.369],[-4.083,35.14],[-3.255,34.312],[-1.226,31.251],[-1.226,24.594],[-0.359,20.392999999999997],[6.612,13.615],[8.038,11.511],[8.038,9.858],[7.414,6.840999999999999],[6.28,5.768],[5.183999999999999,3.0889999999999995],[9.359,-1.084],[10.47,-2.76],[10.47,-3.847],[10.905000000000001,-6.005],[11.700000000000001,-6.799],[13.037,-7.688],[15.679,-7.688],[19.667,-6.880000000000001],[29.22,2.674],[33.528999999999996,4.318],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[12.689,-46.995],[5.857,-46.995],[3.075,-46.431],[0.364,-43.72],[-1.809,-42.28],[-9.707,-42.28],[-12.489999999999998,-42.843999999999994],[-16.38,-46.735],[-18.368,-48.038],[-21.781,-47.974]],"o":[[-24.739,-46.716],[-30.921000000000003,-40.534],[-31.296,-37.745999999999995],[-30.26,-36.182],[-27.762,-33.684],[-27.751,-32.716],[-28.759,-31.195],[-30,-29.954],[-32.341,-29.479],[-34.675000000000004,-29.479],[-36.965,-27.962],[-42.078,-22.848],[-42.646,-20.047],[-42.646,-17.732000000000003],[-41.386,-16.07],[-40.083,-15.806],[-37.144999999999996,-15.806],[-35.186,-17.104],[-29.625,-22.665],[-26.133,-21.333],[-24.478,-19.677],[-21.855,-19.146],[-17.790999999999997,-19.146],[-15.783,-20.476],[-14.722,-21.537999999999997],[-10.93,-22.043],[-8.755,-20.6],[-7.460000000000001,-19.305999999999997],[-6.889,-15.255999999999998],[-8.252,-13.2],[-10.182,-11.270000000000001],[-12.902,-10.718],[-20.85,-10.718],[-23.62,-12.555],[-26.676,-15.61],[-31.516000000000002,-12.959],[-35.121,-12.228],[-41.617,-12.228],[-44.668,-10.205],[-51.435,-3.4389999999999996],[-51.974,-0.78],[-51.974,5.945],[-50.129,8.728],[-44.864,13.993],[-41.736,14.627],[-35.925,14.627],[-32.968,16.587],[-29.739,19.816],[-27.45,22.106],[-26.608,26.26],[-26.608,34.226],[-24.942,36.74],[-23.618,38.062000000000005],[-22.986,41.186],[-22.986,45.488],[-21.359,47.941],[-17.201,52.099000000000004],[-13.116,52.622],[-10.613,50.963],[-5.132000000000001,45.483000000000004],[-4.535,42.538],[-4.535,36.232],[-3.279,34.335],[-1.956,33.013],[-1.226,29.414],[-1.226,22.448],[1.18,18.897],[7.523,12.728],[8.038,10.24],[8.038,8.283000000000001],[6.299,5.784999999999999],[5.212,4.754],[6.209,2.066],[10.071,-1.796],[10.47,-3.766],[10.47,-4.9559999999999995],[11.689,-6.787999999999999],[12.273000000000001,-7.372],[13.833,-7.688],[17.715,-7.688],[21.106,-5.44],[30.863999999999997,4.318],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[14.797999999999998,-47.869],[10.491,-46.995],[4.437,-46.995],[2.071,-45.427],[-0.558,-42.798],[-3.114,-42.28],[-11.128,-42.28],[-13.495,-43.849],[-17.221999999999998,-47.575],[-19.558,-48.016],[-22.893,-47.952999999999996]],"v":[[-24.739,-46.716],[-30.254,-41.201],[-31.296,-38.684],[-30.26,-36.182],[-27.782,-33.704],[-27.751,-33.629],[-28.759,-31.195],[-29.155,-30.799],[-32.341,-29.479],[-33.301,-29.479],[-36.965,-27.962],[-41.067,-23.86],[-42.646,-20.047],[-42.646,-18.446],[-41.856,-16.54],[-40.083,-15.806],[-38.321,-15.806],[-35.186,-17.104],[-30.957,-21.333],[-26.133,-21.333],[-25.425,-20.625],[-21.855,-19.146],[-18.996,-19.146],[-15.783,-20.476],[-15.619,-20.641],[-12.236,-22.043],[-8.755,-20.6],[-8.477,-20.322],[-6.889,-16.49],[-8.252,-13.2],[-9.199,-12.252],[-12.902,-10.718],[-19.187,-10.718],[-23.62,-12.555],[-25.325,-14.259],[-30.216,-14.259],[-35.121,-12.228],[-39.785,-12.228],[-44.668,-10.205],[-50.475,-4.398],[-51.974,-0.78],[-51.974,4.274],[-50.129,8.728],[-45.992,12.865],[-41.736,14.627],[-37.699,14.627],[-32.968,16.587],[-29.739,19.816],[-28.95,20.606],[-26.608,26.26],[-26.608,32.717],[-24.942,36.74],[-24.746,36.935],[-22.986,41.186],[-22.986,44.015],[-21.359,47.941],[-18.133,51.167],[-14.619,52.622],[-10.613,50.963],[-6.195,46.545],[-4.535,42.538],[-4.535,37.369],[-3.279,34.335],[-3.255,34.312],[-1.226,29.414],[-1.226,24.594],[1.18,18.897],[6.612,13.615],[8.038,10.24],[8.038,9.858],[6.317,5.802],[6.261,5.75],[6.209,2.066],[9.359,-1.084],[10.47,-3.766],[10.47,-3.847],[11.678,-6.778],[11.71,-6.809],[13.833,-7.688],[15.679,-7.688],[21.106,-5.44],[29.22,2.674],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[10.491,-46.995],[5.857,-46.995],[2.071,-45.427],[0.364,-43.72],[-3.114,-42.28],[-9.707,-42.28],[-13.495,-43.849],[-16.38,-46.735],[-19.558,-48.016],[-21.781,-47.974]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[138.554,58.917]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]}],"ind":1,"completed":true},{"ty":4,"nm":"Layer 12 Outlines 3","sr":1,"st":250,"op":501,"ip":250,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[113.024,66.425,0]},"s":{"a":0,"k":[200,200,100]},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-233.69,259.035,0],"t":250,"ti":[0,0,0],"to":[0,0,0]},{"s":[737.31,259.035,0],"t":500}]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-8.234,1.218],[-6.919,2.533],[-4.181,3.578],[-2.453,1.852],[0.05600000000000005,0.188],[5.715,0.188],[6.329,0.064],[7.218,-0.825],[7.514,-3.579],[4.024,-3.579],[3.409,-3.4539999999999997],[2.946,-2.99],[0.41900000000000004,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.063,-1.203],[-7.357,-0.926]],"o":[[-7.407,2.045],[-5.874,3.578],[-3.136,2.533],[-1.388,0.7870000000000001],[1.562,0.188],[6.029,0.188],[6.551,-0.158],[8.234,-1.8419999999999999],[6.077,-3.579],[3.71,-3.579],[3.187,-3.231],[1.8730000000000002,-1.9180000000000001],[-1.097,-1.316],[-3.038,-1.316],[-6.774,-1.316],[-7.282,-0.997],[-8.211,-0.127]],"v":[[-7.407,2.045],[-6.919,2.533],[-3.136,2.533],[-2.453,1.852],[1.562,0.188],[5.715,0.188],[6.551,-0.158],[7.218,-0.825],[6.077,-3.579],[4.024,-3.579],[3.187,-3.231],[2.946,-2.99],[-1.097,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.282,-0.997],[-7.357,-0.926]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[74.11,5.597]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 2","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-14.83,-0.45899999999999996],[-11.507,2.865],[-10.755,3.9989999999999997],[-10.755,5.354],[-10.337,7.411],[-9.108,8.641],[-6.12,9.781],[-3.177,6.837],[-0.8619999999999999,5.303],[3.022,5.303],[5.5840000000000005,4.783],[13.23,-2.862],[14.844000000000001,-7.093000000000001],[11.609,-9.781],[1.499,-9.781],[-1.8379999999999999,-9.105],[-4.044,-6.898],[-5.696,-5.803],[-10.216,-5.803],[-12.087,-5.417],[-13.547,-3.919]],"o":[[-13.515,0.856],[-11.025,3.3470000000000004],[-10.755,4.68],[-10.755,6.404],[-9.595,8.154],[-7.968000000000001,9.781],[-4.981,8.641],[-2.1950000000000003,5.8549999999999995],[0.528,5.303],[4.33,5.303],[6.509,3.858],[14.844000000000001,-4.477],[12.542,-9.395000000000001],[10.636,-9.781],[-0.20399999999999996,-9.781],[-3.042,-7.901],[-4.744999999999999,-6.197],[-6.688,-5.803],[-11.171999999999999,-5.803],[-12.754,-4.733],[-14.844000000000001,-2.5869999999999997]],"v":[[-13.515,0.856],[-11.507,2.865],[-10.755,4.68],[-10.755,5.354],[-9.595,8.154],[-9.108,8.641],[-4.981,8.641],[-3.177,6.837],[0.528,5.303],[3.022,5.303],[6.509,3.858],[13.23,-2.862],[13.23,-8.707],[10.636,-9.781],[1.499,-9.781],[-3.042,-7.901],[-4.044,-6.898],[-6.688,-5.803],[-10.216,-5.803],[-12.754,-4.733],[-13.547,-3.919]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[94.717,10.032]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 3","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-52.302,-19.091],[-49.564,-21.828],[-49.049,-22.169],[-36.561,-22.169],[-35.956,-22.047],[-33.306,-19.397],[-32.966,-18.883000000000003],[-32.966,-12.62],[-33.087999999999994,-12.016],[-40.493,-4.611],[-40.835,-4.0969999999999995],[-40.835,2.079],[-40.712,2.684],[-10.697,32.698],[-8.71,32.912],[-8.71,31.061],[-8.832,30.456],[-12.541,26.747],[-12.882,26.233],[-12.882,23.507],[-13.634,19.796],[-15.82,17.611],[-16.161,17.095000000000002],[-17.415,15.231],[-19.33,17.146],[-20.522,17.6],[-23.199,14.922],[-23.54,14.407],[-23.54,8.578],[-23.417,7.973],[-19.514,4.07],[-19,3.729],[-11.829,3.729],[-11.224,3.8510000000000004],[-9.054,6.022],[-7.067,6.236000000000001],[-7.067,4.082],[-6.944,3.477],[-0.523,-2.944],[3.075,-5.328],[8.844,-5.328],[10.946,-5.755],[17.019,-11.828],[18.441,-15.556000000000001],[14.64,-19.357],[12.876,-20.526],[10.013,-20.526],[7.9510000000000005,-20.108999999999998],[3.997,-16.155],[3.483,-15.814],[-0.834,-15.814],[-1.439,-15.936000000000002],[-5.227,-19.724],[-5.682,-20.916],[0.072,-26.672],[0.587,-27.012],[7.022,-27.012],[7.627,-27.134],[10.659,-30.167],[11.113000000000001,-31.359],[9.711,-32.76],[8.519,-33.214999999999996],[7.067,-31.763],[6.553,-31.422],[-2.39,-31.422],[-2.995,-31.3],[-4.304,-29.991],[-4.819,-29.65],[-17.437,-29.65],[-18.042,-29.773],[-21.362,-33.092],[-21.875999999999998,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.525,-33.31],[-42.493,-31.341],[-43.008,-31],[-48.221,-31],[-48.826,-30.878],[-55.945,-23.759],[-56.400000000000006,-22.587],[-53.504,-19.569]],"o":[[-51.841,-19.552],[-49.345,-22.047],[-48.74,-22.169],[-36.252,-22.169],[-35.737,-21.828],[-33.087999999999994,-19.179],[-32.966,-18.574],[-32.966,-12.312],[-33.306,-11.797],[-40.712,-4.393],[-40.835,-3.788],[-40.835,2.3880000000000003],[-40.493,2.902],[-9.963999999999999,33.432],[-8.71,31.875],[-8.71,30.752],[-9.05,30.238],[-12.759,26.529],[-12.882,25.924],[-12.882,21.613000000000003],[-14.974,18.457],[-16.038,17.392],[-16.161,15.749000000000002],[-18.149,15.964],[-19.784,17.6],[-20.976,17.146],[-23.417,14.704],[-23.54,14.099],[-23.54,8.269],[-23.199,7.755],[-19.296,3.8510000000000004],[-18.691,3.729],[-11.521,3.729],[-11.006,4.07],[-8.32,6.755],[-7.067,5.198],[-7.067,3.7729999999999997],[-6.726,3.259],[1.004,-4.47],[5.235,-5.328],[9.917,-5.328],[11.705,-6.513],[18.441,-13.25],[17.019,-16.978],[13.891,-20.105999999999998],[11.817,-20.526],[8.96,-20.526],[7.206,-19.365],[3.779,-15.936000000000002],[3.174,-15.814],[-1.143,-15.814],[-1.657,-16.155],[-5.682,-20.179],[-5.227,-21.371],[0.291,-26.89],[0.895,-27.012],[7.331,-27.012],[7.845,-27.353],[11.113000000000001,-30.622],[10.659,-31.814],[9.256,-33.214999999999996],[8.064,-32.76],[6.848,-31.545],[6.243,-31.422],[-2.6990000000000003,-31.422],[-3.214,-31.082],[-4.523000000000001,-29.773],[-5.128,-29.65],[-17.746000000000002,-29.65],[-18.26,-29.991],[-21.58,-33.31],[-22.185,-33.432],[-34.695,-33.432],[-40.229,-33.432],[-40.743,-33.092],[-42.712,-31.123],[-43.317,-31],[-48.529999999999994,-31],[-49.045,-30.659],[-56.393,-23.311],[-55.962,-22.13],[-53.052,-19.098]],"v":[[-51.841,-19.552],[-49.564,-21.828],[-48.74,-22.169],[-36.561,-22.169],[-35.737,-21.828],[-33.306,-19.397],[-32.966,-18.574],[-32.966,-12.62],[-33.306,-11.797],[-40.493,-4.611],[-40.835,-3.788],[-40.835,2.079],[-40.493,2.902],[-10.697,32.698],[-8.71,31.875],[-8.71,31.061],[-9.05,30.238],[-12.541,26.747],[-12.882,25.924],[-12.882,23.507],[-14.974,18.457],[-15.82,17.611],[-16.161,16.786],[-18.149,15.964],[-19.33,17.146],[-20.976,17.146],[-23.199,14.922],[-23.54,14.099],[-23.54,8.578],[-23.199,7.755],[-19.514,4.07],[-18.691,3.729],[-11.829,3.729],[-11.006,4.07],[-9.054,6.022],[-7.067,5.198],[-7.067,4.082],[-6.726,3.259],[-0.523,-2.944],[5.235,-5.328],[8.844,-5.328],[11.705,-6.513],[17.019,-11.828],[17.019,-16.978],[14.64,-19.357],[11.817,-20.526],[10.013,-20.526],[7.206,-19.365],[3.997,-16.155],[3.174,-15.814],[-0.834,-15.814],[-1.657,-16.155],[-5.227,-19.724],[-5.227,-21.371],[0.072,-26.672],[0.895,-27.012],[7.022,-27.012],[7.845,-27.353],[10.659,-30.167],[10.659,-31.814],[9.711,-32.76],[8.064,-32.76],[7.067,-31.763],[6.243,-31.422],[-2.39,-31.422],[-3.214,-31.082],[-4.304,-29.991],[-5.128,-29.65],[-17.437,-29.65],[-18.26,-29.991],[-21.362,-33.092],[-22.185,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.743,-33.092],[-42.493,-31.341],[-43.317,-31],[-48.221,-31],[-49.045,-30.659],[-55.945,-23.759],[-55.962,-22.13],[-53.504,-19.569]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[56.65,43.52]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 4","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-18.884,-27.953],[-15.534,-31.303],[-13.216,-32.839],[-7.757,-32.839],[-5.063000000000001,-32.293],[-1.266,-28.496],[1.509,-26.656],[4.088,-26.471],[8.462,-22.097],[11.726,-19.933],[15.732,-19.518],[18.587,-16.663],[20.062,-14.437000000000001],[20.062,-12.023],[19.66,-10.040999999999999],[15.869,-6.25],[15.355,-5.473999999999999],[15.355,-3.231],[14.638,0.30600000000000005],[2.975,11.968],[1.649,13.969999999999999],[1.081,17.97],[-1.898,20.948],[-2.413,21.726],[-2.413,27.397],[-2.2279999999999998,28.310000000000002],[-0.699,29.839],[-0.3759999999999999,32.839],[-2.855,32.653],[-6.756,28.752],[-10.824,24.684],[-11.339,23.907],[-11.339,5.642],[-11.339,2.314],[-12.384,-2.84],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-11.512],[-20.062,-25.655],[-19.962,-26.333000000000002],[-19.026,-27.76]],"o":[[-18.799,-28.038],[-14.55,-32.286],[-11.825,-32.839],[-6.382,-32.839],[-4.091,-31.32],[-0.08899999999999997,-27.317999999999998],[3.6399999999999997,-26.656],[4.417,-26.142],[9.847,-20.711000000000002],[14.73,-19.933],[16.471,-18.779],[19.532,-15.719000000000001],[20.062,-13.101],[20.062,-11.011],[18.945,-9.325],[15.54,-5.92],[15.355,-5.007],[15.355,-1.426],[13.361,1.582],[2.1260000000000003,12.817],[1.649,16.599999999999998],[0.071,18.98],[-2.2279999999999998,21.278],[-2.413,22.191],[-2.413,27.862],[-1.898,28.64],[0.40900000000000014,30.945],[-2.408,32.839],[-3.184,32.324],[-6.756,28.752],[-11.154,24.355],[-11.339,23.441],[-11.339,5.642],[-11.339,-0.3169999999999997],[-14.244,-4.7],[-15.911,-6.367],[-19.360000000000003,-9.815],[-20.062,-13.279],[-20.062,-25.998],[-19.774,-26.62],[-18.96,-27.859]],"v":[[-18.799,-28.038],[-15.534,-31.303],[-11.825,-32.839],[-7.757,-32.839],[-4.091,-31.32],[-1.266,-28.496],[3.175,-26.656],[4.417,-26.142],[8.462,-22.097],[13.685,-19.933],[16.471,-18.779],[18.587,-16.663],[20.062,-13.101],[20.062,-12.023],[18.945,-9.325],[15.869,-6.25],[15.355,-5.007],[15.355,-3.231],[13.361,1.582],[2.975,11.968],[1.649,15.171],[0.071,18.98],[-1.898,20.948],[-2.413,22.191],[-2.413,27.397],[-1.898,28.64],[-0.699,29.839],[-1.942,32.839],[-3.184,32.324],[-6.756,28.752],[-10.824,24.684],[-11.339,23.441],[-11.339,5.642],[-11.339,2.314],[-14.244,-4.7],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-13.279],[-20.062,-25.655],[-19.774,-26.62],[-19.026,-27.76]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[67.169,99.76]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 5","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-23.953,-47.502],[-30.254,-41.201],[-31.296,-39.628],[-30.924000000000003,-36.846000000000004],[-27.782,-33.704],[-27.751,-33.657],[-28.114,-31.841],[-29.155,-30.799],[-31.146,-29.479],[-33.301,-29.479],[-35.993,-28.933],[-41.067,-23.86],[-42.646,-21.477],[-42.646,-18.446],[-42.362,-17.046],[-40.748,-15.806],[-38.321,-15.806],[-36.017,-16.273],[-30.957,-21.333],[-27.465,-22.665],[-25.425,-20.625],[-23.194,-19.146],[-18.996,-19.146],[-16.636,-19.624],[-15.619,-20.641],[-13.505,-22.043],[-9.678,-21.524],[-8.477,-20.322],[-6.889,-17.927],[-7.3790000000000004,-14.072],[-9.199,-12.252],[-11.513,-10.718],[-19.187,-10.718],[-22.445,-11.379],[-25.325,-14.259],[-28.865000000000002,-15.61],[-33.281,-12.228],[-39.785,-12.228],[-43.373,-11.5],[-50.475,-4.398],[-51.974,-2.137],[-51.974,4.274],[-51.309999999999995,7.545999999999999],[-45.992,12.865],[-43.331999999999994,14.627],[-37.699,14.627],[-34.223000000000006,15.332],[-29.739,19.816],[-28.95,20.606],[-26.608,24.139000000000003],[-26.608,32.717],[-26.009,35.672000000000004],[-24.746,36.935],[-22.986,39.591],[-22.986,44.015],[-22.401000000000003,46.900000000000006],[-18.133,51.167],[-15.937,52.622],[-11.674999999999999,52.026],[-6.195,46.545],[-4.535,44.041],[-4.535,37.369],[-4.083,35.14],[-3.255,34.312],[-1.226,31.251],[-1.226,24.594],[-0.359,20.392999999999997],[6.612,13.615],[8.038,11.511],[8.038,9.858],[7.414,6.840999999999999],[6.28,5.768],[5.183999999999999,3.0889999999999995],[9.359,-1.084],[10.47,-2.76],[10.47,-3.847],[10.905000000000001,-6.005],[11.700000000000001,-6.799],[13.037,-7.688],[15.679,-7.688],[19.667,-6.880000000000001],[29.22,2.674],[33.528999999999996,4.318],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[12.689,-46.995],[5.857,-46.995],[3.075,-46.431],[0.364,-43.72],[-1.809,-42.28],[-9.707,-42.28],[-12.489999999999998,-42.843999999999994],[-16.38,-46.735],[-18.368,-48.038],[-21.781,-47.974]],"o":[[-24.739,-46.716],[-30.921000000000003,-40.534],[-31.296,-37.745999999999995],[-30.26,-36.182],[-27.762,-33.684],[-27.751,-32.716],[-28.759,-31.195],[-30,-29.954],[-32.341,-29.479],[-34.675000000000004,-29.479],[-36.965,-27.962],[-42.078,-22.848],[-42.646,-20.047],[-42.646,-17.732000000000003],[-41.386,-16.07],[-40.083,-15.806],[-37.144999999999996,-15.806],[-35.186,-17.104],[-29.625,-22.665],[-26.133,-21.333],[-24.478,-19.677],[-21.855,-19.146],[-17.790999999999997,-19.146],[-15.783,-20.476],[-14.722,-21.537999999999997],[-10.93,-22.043],[-8.755,-20.6],[-7.460000000000001,-19.305999999999997],[-6.889,-15.255999999999998],[-8.252,-13.2],[-10.182,-11.270000000000001],[-12.902,-10.718],[-20.85,-10.718],[-23.62,-12.555],[-26.676,-15.61],[-31.516000000000002,-12.959],[-35.121,-12.228],[-41.617,-12.228],[-44.668,-10.205],[-51.435,-3.4389999999999996],[-51.974,-0.78],[-51.974,5.945],[-50.129,8.728],[-44.864,13.993],[-41.736,14.627],[-35.925,14.627],[-32.968,16.587],[-29.739,19.816],[-27.45,22.106],[-26.608,26.26],[-26.608,34.226],[-24.942,36.74],[-23.618,38.062000000000005],[-22.986,41.186],[-22.986,45.488],[-21.359,47.941],[-17.201,52.099000000000004],[-13.116,52.622],[-10.613,50.963],[-5.132000000000001,45.483000000000004],[-4.535,42.538],[-4.535,36.232],[-3.279,34.335],[-1.956,33.013],[-1.226,29.414],[-1.226,22.448],[1.18,18.897],[7.523,12.728],[8.038,10.24],[8.038,8.283000000000001],[6.299,5.784999999999999],[5.212,4.754],[6.209,2.066],[10.071,-1.796],[10.47,-3.766],[10.47,-4.9559999999999995],[11.689,-6.787999999999999],[12.273000000000001,-7.372],[13.833,-7.688],[17.715,-7.688],[21.106,-5.44],[30.863999999999997,4.318],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[14.797999999999998,-47.869],[10.491,-46.995],[4.437,-46.995],[2.071,-45.427],[-0.558,-42.798],[-3.114,-42.28],[-11.128,-42.28],[-13.495,-43.849],[-17.221999999999998,-47.575],[-19.558,-48.016],[-22.893,-47.952999999999996]],"v":[[-24.739,-46.716],[-30.254,-41.201],[-31.296,-38.684],[-30.26,-36.182],[-27.782,-33.704],[-27.751,-33.629],[-28.759,-31.195],[-29.155,-30.799],[-32.341,-29.479],[-33.301,-29.479],[-36.965,-27.962],[-41.067,-23.86],[-42.646,-20.047],[-42.646,-18.446],[-41.856,-16.54],[-40.083,-15.806],[-38.321,-15.806],[-35.186,-17.104],[-30.957,-21.333],[-26.133,-21.333],[-25.425,-20.625],[-21.855,-19.146],[-18.996,-19.146],[-15.783,-20.476],[-15.619,-20.641],[-12.236,-22.043],[-8.755,-20.6],[-8.477,-20.322],[-6.889,-16.49],[-8.252,-13.2],[-9.199,-12.252],[-12.902,-10.718],[-19.187,-10.718],[-23.62,-12.555],[-25.325,-14.259],[-30.216,-14.259],[-35.121,-12.228],[-39.785,-12.228],[-44.668,-10.205],[-50.475,-4.398],[-51.974,-0.78],[-51.974,4.274],[-50.129,8.728],[-45.992,12.865],[-41.736,14.627],[-37.699,14.627],[-32.968,16.587],[-29.739,19.816],[-28.95,20.606],[-26.608,26.26],[-26.608,32.717],[-24.942,36.74],[-24.746,36.935],[-22.986,41.186],[-22.986,44.015],[-21.359,47.941],[-18.133,51.167],[-14.619,52.622],[-10.613,50.963],[-6.195,46.545],[-4.535,42.538],[-4.535,37.369],[-3.279,34.335],[-3.255,34.312],[-1.226,29.414],[-1.226,24.594],[1.18,18.897],[6.612,13.615],[8.038,10.24],[8.038,9.858],[6.317,5.802],[6.261,5.75],[6.209,2.066],[9.359,-1.084],[10.47,-3.766],[10.47,-3.847],[11.678,-6.778],[11.71,-6.809],[13.833,-7.688],[15.679,-7.688],[21.106,-5.44],[29.22,2.674],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[10.491,-46.995],[5.857,-46.995],[2.071,-45.427],[0.364,-43.72],[-3.114,-42.28],[-9.707,-42.28],[-13.495,-43.849],[-16.38,-46.735],[-19.558,-48.016],[-21.781,-47.974]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[138.554,58.917]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]}],"ind":2,"completed":true},{"ty":4,"nm":"Layer 12 Outlines 2","sr":1,"st":125,"op":376,"ip":125,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[113.024,66.425,0]},"s":{"a":0,"k":[200,200,100]},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-233.69,259.035,0],"t":125,"ti":null,"to":null},{"s":[737.31,259.035,0],"t":375}]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-8.234,1.218],[-6.919,2.533],[-4.181,3.578],[-2.453,1.852],[0.05600000000000005,0.188],[5.715,0.188],[6.329,0.064],[7.218,-0.825],[7.514,-3.579],[4.024,-3.579],[3.409,-3.4539999999999997],[2.946,-2.99],[0.41900000000000004,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.063,-1.203],[-7.357,-0.926]],"o":[[-7.407,2.045],[-5.874,3.578],[-3.136,2.533],[-1.388,0.7870000000000001],[1.562,0.188],[6.029,0.188],[6.551,-0.158],[8.234,-1.8419999999999999],[6.077,-3.579],[3.71,-3.579],[3.187,-3.231],[1.8730000000000002,-1.9180000000000001],[-1.097,-1.316],[-3.038,-1.316],[-6.774,-1.316],[-7.282,-0.997],[-8.211,-0.127]],"v":[[-7.407,2.045],[-6.919,2.533],[-3.136,2.533],[-2.453,1.852],[1.562,0.188],[5.715,0.188],[6.551,-0.158],[7.218,-0.825],[6.077,-3.579],[4.024,-3.579],[3.187,-3.231],[2.946,-2.99],[-1.097,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.282,-0.997],[-7.357,-0.926]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[74.11,5.597]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 2","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-14.83,-0.45899999999999996],[-11.507,2.865],[-10.755,3.9989999999999997],[-10.755,5.354],[-10.337,7.411],[-9.108,8.641],[-6.12,9.781],[-3.177,6.837],[-0.8619999999999999,5.303],[3.022,5.303],[5.5840000000000005,4.783],[13.23,-2.862],[14.844000000000001,-7.093000000000001],[11.609,-9.781],[1.499,-9.781],[-1.8379999999999999,-9.105],[-4.044,-6.898],[-5.696,-5.803],[-10.216,-5.803],[-12.087,-5.417],[-13.547,-3.919]],"o":[[-13.515,0.856],[-11.025,3.3470000000000004],[-10.755,4.68],[-10.755,6.404],[-9.595,8.154],[-7.968000000000001,9.781],[-4.981,8.641],[-2.1950000000000003,5.8549999999999995],[0.528,5.303],[4.33,5.303],[6.509,3.858],[14.844000000000001,-4.477],[12.542,-9.395000000000001],[10.636,-9.781],[-0.20399999999999996,-9.781],[-3.042,-7.901],[-4.744999999999999,-6.197],[-6.688,-5.803],[-11.171999999999999,-5.803],[-12.754,-4.733],[-14.844000000000001,-2.5869999999999997]],"v":[[-13.515,0.856],[-11.507,2.865],[-10.755,4.68],[-10.755,5.354],[-9.595,8.154],[-9.108,8.641],[-4.981,8.641],[-3.177,6.837],[0.528,5.303],[3.022,5.303],[6.509,3.858],[13.23,-2.862],[13.23,-8.707],[10.636,-9.781],[1.499,-9.781],[-3.042,-7.901],[-4.044,-6.898],[-6.688,-5.803],[-10.216,-5.803],[-12.754,-4.733],[-13.547,-3.919]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[94.717,10.032]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 3","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-52.302,-19.091],[-49.564,-21.828],[-49.049,-22.169],[-36.561,-22.169],[-35.956,-22.047],[-33.306,-19.397],[-32.966,-18.883000000000003],[-32.966,-12.62],[-33.087999999999994,-12.016],[-40.493,-4.611],[-40.835,-4.0969999999999995],[-40.835,2.079],[-40.712,2.684],[-10.697,32.698],[-8.71,32.912],[-8.71,31.061],[-8.832,30.456],[-12.541,26.747],[-12.882,26.233],[-12.882,23.507],[-13.634,19.796],[-15.82,17.611],[-16.161,17.095000000000002],[-17.415,15.231],[-19.33,17.146],[-20.522,17.6],[-23.199,14.922],[-23.54,14.407],[-23.54,8.578],[-23.417,7.973],[-19.514,4.07],[-19,3.729],[-11.829,3.729],[-11.224,3.8510000000000004],[-9.054,6.022],[-7.067,6.236000000000001],[-7.067,4.082],[-6.944,3.477],[-0.523,-2.944],[3.075,-5.328],[8.844,-5.328],[10.946,-5.755],[17.019,-11.828],[18.441,-15.556000000000001],[14.64,-19.357],[12.876,-20.526],[10.013,-20.526],[7.9510000000000005,-20.108999999999998],[3.997,-16.155],[3.483,-15.814],[-0.834,-15.814],[-1.439,-15.936000000000002],[-5.227,-19.724],[-5.682,-20.916],[0.072,-26.672],[0.587,-27.012],[7.022,-27.012],[7.627,-27.134],[10.659,-30.167],[11.113000000000001,-31.359],[9.711,-32.76],[8.519,-33.214999999999996],[7.067,-31.763],[6.553,-31.422],[-2.39,-31.422],[-2.995,-31.3],[-4.304,-29.991],[-4.819,-29.65],[-17.437,-29.65],[-18.042,-29.773],[-21.362,-33.092],[-21.875999999999998,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.525,-33.31],[-42.493,-31.341],[-43.008,-31],[-48.221,-31],[-48.826,-30.878],[-55.945,-23.759],[-56.400000000000006,-22.587],[-53.504,-19.569]],"o":[[-51.841,-19.552],[-49.345,-22.047],[-48.74,-22.169],[-36.252,-22.169],[-35.737,-21.828],[-33.087999999999994,-19.179],[-32.966,-18.574],[-32.966,-12.312],[-33.306,-11.797],[-40.712,-4.393],[-40.835,-3.788],[-40.835,2.3880000000000003],[-40.493,2.902],[-9.963999999999999,33.432],[-8.71,31.875],[-8.71,30.752],[-9.05,30.238],[-12.759,26.529],[-12.882,25.924],[-12.882,21.613000000000003],[-14.974,18.457],[-16.038,17.392],[-16.161,15.749000000000002],[-18.149,15.964],[-19.784,17.6],[-20.976,17.146],[-23.417,14.704],[-23.54,14.099],[-23.54,8.269],[-23.199,7.755],[-19.296,3.8510000000000004],[-18.691,3.729],[-11.521,3.729],[-11.006,4.07],[-8.32,6.755],[-7.067,5.198],[-7.067,3.7729999999999997],[-6.726,3.259],[1.004,-4.47],[5.235,-5.328],[9.917,-5.328],[11.705,-6.513],[18.441,-13.25],[17.019,-16.978],[13.891,-20.105999999999998],[11.817,-20.526],[8.96,-20.526],[7.206,-19.365],[3.779,-15.936000000000002],[3.174,-15.814],[-1.143,-15.814],[-1.657,-16.155],[-5.682,-20.179],[-5.227,-21.371],[0.291,-26.89],[0.895,-27.012],[7.331,-27.012],[7.845,-27.353],[11.113000000000001,-30.622],[10.659,-31.814],[9.256,-33.214999999999996],[8.064,-32.76],[6.848,-31.545],[6.243,-31.422],[-2.6990000000000003,-31.422],[-3.214,-31.082],[-4.523000000000001,-29.773],[-5.128,-29.65],[-17.746000000000002,-29.65],[-18.26,-29.991],[-21.58,-33.31],[-22.185,-33.432],[-34.695,-33.432],[-40.229,-33.432],[-40.743,-33.092],[-42.712,-31.123],[-43.317,-31],[-48.529999999999994,-31],[-49.045,-30.659],[-56.393,-23.311],[-55.962,-22.13],[-53.052,-19.098]],"v":[[-51.841,-19.552],[-49.564,-21.828],[-48.74,-22.169],[-36.561,-22.169],[-35.737,-21.828],[-33.306,-19.397],[-32.966,-18.574],[-32.966,-12.62],[-33.306,-11.797],[-40.493,-4.611],[-40.835,-3.788],[-40.835,2.079],[-40.493,2.902],[-10.697,32.698],[-8.71,31.875],[-8.71,31.061],[-9.05,30.238],[-12.541,26.747],[-12.882,25.924],[-12.882,23.507],[-14.974,18.457],[-15.82,17.611],[-16.161,16.786],[-18.149,15.964],[-19.33,17.146],[-20.976,17.146],[-23.199,14.922],[-23.54,14.099],[-23.54,8.578],[-23.199,7.755],[-19.514,4.07],[-18.691,3.729],[-11.829,3.729],[-11.006,4.07],[-9.054,6.022],[-7.067,5.198],[-7.067,4.082],[-6.726,3.259],[-0.523,-2.944],[5.235,-5.328],[8.844,-5.328],[11.705,-6.513],[17.019,-11.828],[17.019,-16.978],[14.64,-19.357],[11.817,-20.526],[10.013,-20.526],[7.206,-19.365],[3.997,-16.155],[3.174,-15.814],[-0.834,-15.814],[-1.657,-16.155],[-5.227,-19.724],[-5.227,-21.371],[0.072,-26.672],[0.895,-27.012],[7.022,-27.012],[7.845,-27.353],[10.659,-30.167],[10.659,-31.814],[9.711,-32.76],[8.064,-32.76],[7.067,-31.763],[6.243,-31.422],[-2.39,-31.422],[-3.214,-31.082],[-4.304,-29.991],[-5.128,-29.65],[-17.437,-29.65],[-18.26,-29.991],[-21.362,-33.092],[-22.185,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.743,-33.092],[-42.493,-31.341],[-43.317,-31],[-48.221,-31],[-49.045,-30.659],[-55.945,-23.759],[-55.962,-22.13],[-53.504,-19.569]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[56.65,43.52]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 4","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-18.884,-27.953],[-15.534,-31.303],[-13.216,-32.839],[-7.757,-32.839],[-5.063000000000001,-32.293],[-1.266,-28.496],[1.509,-26.656],[4.088,-26.471],[8.462,-22.097],[11.726,-19.933],[15.732,-19.518],[18.587,-16.663],[20.062,-14.437000000000001],[20.062,-12.023],[19.66,-10.040999999999999],[15.869,-6.25],[15.355,-5.473999999999999],[15.355,-3.231],[14.638,0.30600000000000005],[2.975,11.968],[1.649,13.969999999999999],[1.081,17.97],[-1.898,20.948],[-2.413,21.726],[-2.413,27.397],[-2.2279999999999998,28.310000000000002],[-0.699,29.839],[-0.3759999999999999,32.839],[-2.855,32.653],[-6.756,28.752],[-10.824,24.684],[-11.339,23.907],[-11.339,5.642],[-11.339,2.314],[-12.384,-2.84],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-11.512],[-20.062,-25.655],[-19.962,-26.333000000000002],[-19.026,-27.76]],"o":[[-18.799,-28.038],[-14.55,-32.286],[-11.825,-32.839],[-6.382,-32.839],[-4.091,-31.32],[-0.08899999999999997,-27.317999999999998],[3.6399999999999997,-26.656],[4.417,-26.142],[9.847,-20.711000000000002],[14.73,-19.933],[16.471,-18.779],[19.532,-15.719000000000001],[20.062,-13.101],[20.062,-11.011],[18.945,-9.325],[15.54,-5.92],[15.355,-5.007],[15.355,-1.426],[13.361,1.582],[2.1260000000000003,12.817],[1.649,16.599999999999998],[0.071,18.98],[-2.2279999999999998,21.278],[-2.413,22.191],[-2.413,27.862],[-1.898,28.64],[0.40900000000000014,30.945],[-2.408,32.839],[-3.184,32.324],[-6.756,28.752],[-11.154,24.355],[-11.339,23.441],[-11.339,5.642],[-11.339,-0.3169999999999997],[-14.244,-4.7],[-15.911,-6.367],[-19.360000000000003,-9.815],[-20.062,-13.279],[-20.062,-25.998],[-19.774,-26.62],[-18.96,-27.859]],"v":[[-18.799,-28.038],[-15.534,-31.303],[-11.825,-32.839],[-7.757,-32.839],[-4.091,-31.32],[-1.266,-28.496],[3.175,-26.656],[4.417,-26.142],[8.462,-22.097],[13.685,-19.933],[16.471,-18.779],[18.587,-16.663],[20.062,-13.101],[20.062,-12.023],[18.945,-9.325],[15.869,-6.25],[15.355,-5.007],[15.355,-3.231],[13.361,1.582],[2.975,11.968],[1.649,15.171],[0.071,18.98],[-1.898,20.948],[-2.413,22.191],[-2.413,27.397],[-1.898,28.64],[-0.699,29.839],[-1.942,32.839],[-3.184,32.324],[-6.756,28.752],[-10.824,24.684],[-11.339,23.441],[-11.339,5.642],[-11.339,2.314],[-14.244,-4.7],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-13.279],[-20.062,-25.655],[-19.774,-26.62],[-19.026,-27.76]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[67.169,99.76]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 5","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-23.953,-47.502],[-30.254,-41.201],[-31.296,-39.628],[-30.924000000000003,-36.846000000000004],[-27.782,-33.704],[-27.751,-33.657],[-28.114,-31.841],[-29.155,-30.799],[-31.146,-29.479],[-33.301,-29.479],[-35.993,-28.933],[-41.067,-23.86],[-42.646,-21.477],[-42.646,-18.446],[-42.362,-17.046],[-40.748,-15.806],[-38.321,-15.806],[-36.017,-16.273],[-30.957,-21.333],[-27.465,-22.665],[-25.425,-20.625],[-23.194,-19.146],[-18.996,-19.146],[-16.636,-19.624],[-15.619,-20.641],[-13.505,-22.043],[-9.678,-21.524],[-8.477,-20.322],[-6.889,-17.927],[-7.3790000000000004,-14.072],[-9.199,-12.252],[-11.513,-10.718],[-19.187,-10.718],[-22.445,-11.379],[-25.325,-14.259],[-28.865000000000002,-15.61],[-33.281,-12.228],[-39.785,-12.228],[-43.373,-11.5],[-50.475,-4.398],[-51.974,-2.137],[-51.974,4.274],[-51.309999999999995,7.545999999999999],[-45.992,12.865],[-43.331999999999994,14.627],[-37.699,14.627],[-34.223000000000006,15.332],[-29.739,19.816],[-28.95,20.606],[-26.608,24.139000000000003],[-26.608,32.717],[-26.009,35.672000000000004],[-24.746,36.935],[-22.986,39.591],[-22.986,44.015],[-22.401000000000003,46.900000000000006],[-18.133,51.167],[-15.937,52.622],[-11.674999999999999,52.026],[-6.195,46.545],[-4.535,44.041],[-4.535,37.369],[-4.083,35.14],[-3.255,34.312],[-1.226,31.251],[-1.226,24.594],[-0.359,20.392999999999997],[6.612,13.615],[8.038,11.511],[8.038,9.858],[7.414,6.840999999999999],[6.28,5.768],[5.183999999999999,3.0889999999999995],[9.359,-1.084],[10.47,-2.76],[10.47,-3.847],[10.905000000000001,-6.005],[11.700000000000001,-6.799],[13.037,-7.688],[15.679,-7.688],[19.667,-6.880000000000001],[29.22,2.674],[33.528999999999996,4.318],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[12.689,-46.995],[5.857,-46.995],[3.075,-46.431],[0.364,-43.72],[-1.809,-42.28],[-9.707,-42.28],[-12.489999999999998,-42.843999999999994],[-16.38,-46.735],[-18.368,-48.038],[-21.781,-47.974]],"o":[[-24.739,-46.716],[-30.921000000000003,-40.534],[-31.296,-37.745999999999995],[-30.26,-36.182],[-27.762,-33.684],[-27.751,-32.716],[-28.759,-31.195],[-30,-29.954],[-32.341,-29.479],[-34.675000000000004,-29.479],[-36.965,-27.962],[-42.078,-22.848],[-42.646,-20.047],[-42.646,-17.732000000000003],[-41.386,-16.07],[-40.083,-15.806],[-37.144999999999996,-15.806],[-35.186,-17.104],[-29.625,-22.665],[-26.133,-21.333],[-24.478,-19.677],[-21.855,-19.146],[-17.790999999999997,-19.146],[-15.783,-20.476],[-14.722,-21.537999999999997],[-10.93,-22.043],[-8.755,-20.6],[-7.460000000000001,-19.305999999999997],[-6.889,-15.255999999999998],[-8.252,-13.2],[-10.182,-11.270000000000001],[-12.902,-10.718],[-20.85,-10.718],[-23.62,-12.555],[-26.676,-15.61],[-31.516000000000002,-12.959],[-35.121,-12.228],[-41.617,-12.228],[-44.668,-10.205],[-51.435,-3.4389999999999996],[-51.974,-0.78],[-51.974,5.945],[-50.129,8.728],[-44.864,13.993],[-41.736,14.627],[-35.925,14.627],[-32.968,16.587],[-29.739,19.816],[-27.45,22.106],[-26.608,26.26],[-26.608,34.226],[-24.942,36.74],[-23.618,38.062000000000005],[-22.986,41.186],[-22.986,45.488],[-21.359,47.941],[-17.201,52.099000000000004],[-13.116,52.622],[-10.613,50.963],[-5.132000000000001,45.483000000000004],[-4.535,42.538],[-4.535,36.232],[-3.279,34.335],[-1.956,33.013],[-1.226,29.414],[-1.226,22.448],[1.18,18.897],[7.523,12.728],[8.038,10.24],[8.038,8.283000000000001],[6.299,5.784999999999999],[5.212,4.754],[6.209,2.066],[10.071,-1.796],[10.47,-3.766],[10.47,-4.9559999999999995],[11.689,-6.787999999999999],[12.273000000000001,-7.372],[13.833,-7.688],[17.715,-7.688],[21.106,-5.44],[30.863999999999997,4.318],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[14.797999999999998,-47.869],[10.491,-46.995],[4.437,-46.995],[2.071,-45.427],[-0.558,-42.798],[-3.114,-42.28],[-11.128,-42.28],[-13.495,-43.849],[-17.221999999999998,-47.575],[-19.558,-48.016],[-22.893,-47.952999999999996]],"v":[[-24.739,-46.716],[-30.254,-41.201],[-31.296,-38.684],[-30.26,-36.182],[-27.782,-33.704],[-27.751,-33.629],[-28.759,-31.195],[-29.155,-30.799],[-32.341,-29.479],[-33.301,-29.479],[-36.965,-27.962],[-41.067,-23.86],[-42.646,-20.047],[-42.646,-18.446],[-41.856,-16.54],[-40.083,-15.806],[-38.321,-15.806],[-35.186,-17.104],[-30.957,-21.333],[-26.133,-21.333],[-25.425,-20.625],[-21.855,-19.146],[-18.996,-19.146],[-15.783,-20.476],[-15.619,-20.641],[-12.236,-22.043],[-8.755,-20.6],[-8.477,-20.322],[-6.889,-16.49],[-8.252,-13.2],[-9.199,-12.252],[-12.902,-10.718],[-19.187,-10.718],[-23.62,-12.555],[-25.325,-14.259],[-30.216,-14.259],[-35.121,-12.228],[-39.785,-12.228],[-44.668,-10.205],[-50.475,-4.398],[-51.974,-0.78],[-51.974,4.274],[-50.129,8.728],[-45.992,12.865],[-41.736,14.627],[-37.699,14.627],[-32.968,16.587],[-29.739,19.816],[-28.95,20.606],[-26.608,26.26],[-26.608,32.717],[-24.942,36.74],[-24.746,36.935],[-22.986,41.186],[-22.986,44.015],[-21.359,47.941],[-18.133,51.167],[-14.619,52.622],[-10.613,50.963],[-6.195,46.545],[-4.535,42.538],[-4.535,37.369],[-3.279,34.335],[-3.255,34.312],[-1.226,29.414],[-1.226,24.594],[1.18,18.897],[6.612,13.615],[8.038,10.24],[8.038,9.858],[6.317,5.802],[6.261,5.75],[6.209,2.066],[9.359,-1.084],[10.47,-3.766],[10.47,-3.847],[11.678,-6.778],[11.71,-6.809],[13.833,-7.688],[15.679,-7.688],[21.106,-5.44],[29.22,2.674],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[10.491,-46.995],[5.857,-46.995],[2.071,-45.427],[0.364,-43.72],[-3.114,-42.28],[-9.707,-42.28],[-13.495,-43.849],[-16.38,-46.735],[-19.558,-48.016],[-21.781,-47.974]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[138.554,58.917]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":3,"completed":true},{"ty":4,"nm":"Layer 12 Outlines","sr":1,"st":0,"op":251,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[113.024,66.425,0]},"s":{"a":0,"k":[200,200,100]},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-233.69,259.035,0],"t":0,"ti":null,"to":null},{"s":[737.31,259.035,0],"t":250}]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-8.234,1.218],[-6.919,2.533],[-4.181,3.578],[-2.453,1.852],[0.05600000000000005,0.188],[5.715,0.188],[6.329,0.064],[7.218,-0.825],[7.514,-3.579],[4.024,-3.579],[3.409,-3.4539999999999997],[2.946,-2.99],[0.41900000000000004,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.063,-1.203],[-7.357,-0.926]],"o":[[-7.407,2.045],[-5.874,3.578],[-3.136,2.533],[-1.388,0.7870000000000001],[1.562,0.188],[6.029,0.188],[6.551,-0.158],[8.234,-1.8419999999999999],[6.077,-3.579],[3.71,-3.579],[3.187,-3.231],[1.8730000000000002,-1.9180000000000001],[-1.097,-1.316],[-3.038,-1.316],[-6.774,-1.316],[-7.282,-0.997],[-8.211,-0.127]],"v":[[-7.407,2.045],[-6.919,2.533],[-3.136,2.533],[-2.453,1.852],[1.562,0.188],[5.715,0.188],[6.551,-0.158],[7.218,-0.825],[6.077,-3.579],[4.024,-3.579],[3.187,-3.231],[2.946,-2.99],[-1.097,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.282,-0.997],[-7.357,-0.926]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[74.11,5.597]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 2","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-14.83,-0.45899999999999996],[-11.507,2.865],[-10.755,3.9989999999999997],[-10.755,5.354],[-10.337,7.411],[-9.108,8.641],[-6.12,9.781],[-3.177,6.837],[-0.8619999999999999,5.303],[3.022,5.303],[5.5840000000000005,4.783],[13.23,-2.862],[14.844000000000001,-7.093000000000001],[11.609,-9.781],[1.499,-9.781],[-1.8379999999999999,-9.105],[-4.044,-6.898],[-5.696,-5.803],[-10.216,-5.803],[-12.087,-5.417],[-13.547,-3.919]],"o":[[-13.515,0.856],[-11.025,3.3470000000000004],[-10.755,4.68],[-10.755,6.404],[-9.595,8.154],[-7.968000000000001,9.781],[-4.981,8.641],[-2.1950000000000003,5.8549999999999995],[0.528,5.303],[4.33,5.303],[6.509,3.858],[14.844000000000001,-4.477],[12.542,-9.395000000000001],[10.636,-9.781],[-0.20399999999999996,-9.781],[-3.042,-7.901],[-4.744999999999999,-6.197],[-6.688,-5.803],[-11.171999999999999,-5.803],[-12.754,-4.733],[-14.844000000000001,-2.5869999999999997]],"v":[[-13.515,0.856],[-11.507,2.865],[-10.755,4.68],[-10.755,5.354],[-9.595,8.154],[-9.108,8.641],[-4.981,8.641],[-3.177,6.837],[0.528,5.303],[3.022,5.303],[6.509,3.858],[13.23,-2.862],[13.23,-8.707],[10.636,-9.781],[1.499,-9.781],[-3.042,-7.901],[-4.044,-6.898],[-6.688,-5.803],[-10.216,-5.803],[-12.754,-4.733],[-13.547,-3.919]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[94.717,10.032]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 3","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-52.302,-19.091],[-49.564,-21.828],[-49.049,-22.169],[-36.561,-22.169],[-35.956,-22.047],[-33.306,-19.397],[-32.966,-18.883000000000003],[-32.966,-12.62],[-33.087999999999994,-12.016],[-40.493,-4.611],[-40.835,-4.0969999999999995],[-40.835,2.079],[-40.712,2.684],[-10.697,32.698],[-8.71,32.912],[-8.71,31.061],[-8.832,30.456],[-12.541,26.747],[-12.882,26.233],[-12.882,23.507],[-13.634,19.796],[-15.82,17.611],[-16.161,17.095000000000002],[-17.415,15.231],[-19.33,17.146],[-20.522,17.6],[-23.199,14.922],[-23.54,14.407],[-23.54,8.578],[-23.417,7.973],[-19.514,4.07],[-19,3.729],[-11.829,3.729],[-11.224,3.8510000000000004],[-9.054,6.022],[-7.067,6.236000000000001],[-7.067,4.082],[-6.944,3.477],[-0.523,-2.944],[3.075,-5.328],[8.844,-5.328],[10.946,-5.755],[17.019,-11.828],[18.441,-15.556000000000001],[14.64,-19.357],[12.876,-20.526],[10.013,-20.526],[7.9510000000000005,-20.108999999999998],[3.997,-16.155],[3.483,-15.814],[-0.834,-15.814],[-1.439,-15.936000000000002],[-5.227,-19.724],[-5.682,-20.916],[0.072,-26.672],[0.587,-27.012],[7.022,-27.012],[7.627,-27.134],[10.659,-30.167],[11.113000000000001,-31.359],[9.711,-32.76],[8.519,-33.214999999999996],[7.067,-31.763],[6.553,-31.422],[-2.39,-31.422],[-2.995,-31.3],[-4.304,-29.991],[-4.819,-29.65],[-17.437,-29.65],[-18.042,-29.773],[-21.362,-33.092],[-21.875999999999998,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.525,-33.31],[-42.493,-31.341],[-43.008,-31],[-48.221,-31],[-48.826,-30.878],[-55.945,-23.759],[-56.400000000000006,-22.587],[-53.504,-19.569]],"o":[[-51.841,-19.552],[-49.345,-22.047],[-48.74,-22.169],[-36.252,-22.169],[-35.737,-21.828],[-33.087999999999994,-19.179],[-32.966,-18.574],[-32.966,-12.312],[-33.306,-11.797],[-40.712,-4.393],[-40.835,-3.788],[-40.835,2.3880000000000003],[-40.493,2.902],[-9.963999999999999,33.432],[-8.71,31.875],[-8.71,30.752],[-9.05,30.238],[-12.759,26.529],[-12.882,25.924],[-12.882,21.613000000000003],[-14.974,18.457],[-16.038,17.392],[-16.161,15.749000000000002],[-18.149,15.964],[-19.784,17.6],[-20.976,17.146],[-23.417,14.704],[-23.54,14.099],[-23.54,8.269],[-23.199,7.755],[-19.296,3.8510000000000004],[-18.691,3.729],[-11.521,3.729],[-11.006,4.07],[-8.32,6.755],[-7.067,5.198],[-7.067,3.7729999999999997],[-6.726,3.259],[1.004,-4.47],[5.235,-5.328],[9.917,-5.328],[11.705,-6.513],[18.441,-13.25],[17.019,-16.978],[13.891,-20.105999999999998],[11.817,-20.526],[8.96,-20.526],[7.206,-19.365],[3.779,-15.936000000000002],[3.174,-15.814],[-1.143,-15.814],[-1.657,-16.155],[-5.682,-20.179],[-5.227,-21.371],[0.291,-26.89],[0.895,-27.012],[7.331,-27.012],[7.845,-27.353],[11.113000000000001,-30.622],[10.659,-31.814],[9.256,-33.214999999999996],[8.064,-32.76],[6.848,-31.545],[6.243,-31.422],[-2.6990000000000003,-31.422],[-3.214,-31.082],[-4.523000000000001,-29.773],[-5.128,-29.65],[-17.746000000000002,-29.65],[-18.26,-29.991],[-21.58,-33.31],[-22.185,-33.432],[-34.695,-33.432],[-40.229,-33.432],[-40.743,-33.092],[-42.712,-31.123],[-43.317,-31],[-48.529999999999994,-31],[-49.045,-30.659],[-56.393,-23.311],[-55.962,-22.13],[-53.052,-19.098]],"v":[[-51.841,-19.552],[-49.564,-21.828],[-48.74,-22.169],[-36.561,-22.169],[-35.737,-21.828],[-33.306,-19.397],[-32.966,-18.574],[-32.966,-12.62],[-33.306,-11.797],[-40.493,-4.611],[-40.835,-3.788],[-40.835,2.079],[-40.493,2.902],[-10.697,32.698],[-8.71,31.875],[-8.71,31.061],[-9.05,30.238],[-12.541,26.747],[-12.882,25.924],[-12.882,23.507],[-14.974,18.457],[-15.82,17.611],[-16.161,16.786],[-18.149,15.964],[-19.33,17.146],[-20.976,17.146],[-23.199,14.922],[-23.54,14.099],[-23.54,8.578],[-23.199,7.755],[-19.514,4.07],[-18.691,3.729],[-11.829,3.729],[-11.006,4.07],[-9.054,6.022],[-7.067,5.198],[-7.067,4.082],[-6.726,3.259],[-0.523,-2.944],[5.235,-5.328],[8.844,-5.328],[11.705,-6.513],[17.019,-11.828],[17.019,-16.978],[14.64,-19.357],[11.817,-20.526],[10.013,-20.526],[7.206,-19.365],[3.997,-16.155],[3.174,-15.814],[-0.834,-15.814],[-1.657,-16.155],[-5.227,-19.724],[-5.227,-21.371],[0.072,-26.672],[0.895,-27.012],[7.022,-27.012],[7.845,-27.353],[10.659,-30.167],[10.659,-31.814],[9.711,-32.76],[8.064,-32.76],[7.067,-31.763],[6.243,-31.422],[-2.39,-31.422],[-3.214,-31.082],[-4.304,-29.991],[-5.128,-29.65],[-17.437,-29.65],[-18.26,-29.991],[-21.362,-33.092],[-22.185,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.743,-33.092],[-42.493,-31.341],[-43.317,-31],[-48.221,-31],[-49.045,-30.659],[-55.945,-23.759],[-55.962,-22.13],[-53.504,-19.569]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[56.65,43.52]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 4","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-18.884,-27.953],[-15.534,-31.303],[-13.216,-32.839],[-7.757,-32.839],[-5.063000000000001,-32.293],[-1.266,-28.496],[1.509,-26.656],[4.088,-26.471],[8.462,-22.097],[11.726,-19.933],[15.732,-19.518],[18.587,-16.663],[20.062,-14.437000000000001],[20.062,-12.023],[19.66,-10.040999999999999],[15.869,-6.25],[15.355,-5.473999999999999],[15.355,-3.231],[14.638,0.30600000000000005],[2.975,11.968],[1.649,13.969999999999999],[1.081,17.97],[-1.898,20.948],[-2.413,21.726],[-2.413,27.397],[-2.2279999999999998,28.310000000000002],[-0.699,29.839],[-0.3759999999999999,32.839],[-2.855,32.653],[-6.756,28.752],[-10.824,24.684],[-11.339,23.907],[-11.339,5.642],[-11.339,2.314],[-12.384,-2.84],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-11.512],[-20.062,-25.655],[-19.962,-26.333000000000002],[-19.026,-27.76]],"o":[[-18.799,-28.038],[-14.55,-32.286],[-11.825,-32.839],[-6.382,-32.839],[-4.091,-31.32],[-0.08899999999999997,-27.317999999999998],[3.6399999999999997,-26.656],[4.417,-26.142],[9.847,-20.711000000000002],[14.73,-19.933],[16.471,-18.779],[19.532,-15.719000000000001],[20.062,-13.101],[20.062,-11.011],[18.945,-9.325],[15.54,-5.92],[15.355,-5.007],[15.355,-1.426],[13.361,1.582],[2.1260000000000003,12.817],[1.649,16.599999999999998],[0.071,18.98],[-2.2279999999999998,21.278],[-2.413,22.191],[-2.413,27.862],[-1.898,28.64],[0.40900000000000014,30.945],[-2.408,32.839],[-3.184,32.324],[-6.756,28.752],[-11.154,24.355],[-11.339,23.441],[-11.339,5.642],[-11.339,-0.3169999999999997],[-14.244,-4.7],[-15.911,-6.367],[-19.360000000000003,-9.815],[-20.062,-13.279],[-20.062,-25.998],[-19.774,-26.62],[-18.96,-27.859]],"v":[[-18.799,-28.038],[-15.534,-31.303],[-11.825,-32.839],[-7.757,-32.839],[-4.091,-31.32],[-1.266,-28.496],[3.175,-26.656],[4.417,-26.142],[8.462,-22.097],[13.685,-19.933],[16.471,-18.779],[18.587,-16.663],[20.062,-13.101],[20.062,-12.023],[18.945,-9.325],[15.869,-6.25],[15.355,-5.007],[15.355,-3.231],[13.361,1.582],[2.975,11.968],[1.649,15.171],[0.071,18.98],[-1.898,20.948],[-2.413,22.191],[-2.413,27.397],[-1.898,28.64],[-0.699,29.839],[-1.942,32.839],[-3.184,32.324],[-6.756,28.752],[-10.824,24.684],[-11.339,23.441],[-11.339,5.642],[-11.339,2.314],[-14.244,-4.7],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-13.279],[-20.062,-25.655],[-19.774,-26.62],[-19.026,-27.76]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[67.169,99.76]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 5","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-23.953,-47.502],[-30.254,-41.201],[-31.296,-39.628],[-30.924000000000003,-36.846000000000004],[-27.782,-33.704],[-27.751,-33.657],[-28.114,-31.841],[-29.155,-30.799],[-31.146,-29.479],[-33.301,-29.479],[-35.993,-28.933],[-41.067,-23.86],[-42.646,-21.477],[-42.646,-18.446],[-42.362,-17.046],[-40.748,-15.806],[-38.321,-15.806],[-36.017,-16.273],[-30.957,-21.333],[-27.465,-22.665],[-25.425,-20.625],[-23.194,-19.146],[-18.996,-19.146],[-16.636,-19.624],[-15.619,-20.641],[-13.505,-22.043],[-9.678,-21.524],[-8.477,-20.322],[-6.889,-17.927],[-7.3790000000000004,-14.072],[-9.199,-12.252],[-11.513,-10.718],[-19.187,-10.718],[-22.445,-11.379],[-25.325,-14.259],[-28.865000000000002,-15.61],[-33.281,-12.228],[-39.785,-12.228],[-43.373,-11.5],[-50.475,-4.398],[-51.974,-2.137],[-51.974,4.274],[-51.309999999999995,7.545999999999999],[-45.992,12.865],[-43.331999999999994,14.627],[-37.699,14.627],[-34.223000000000006,15.332],[-29.739,19.816],[-28.95,20.606],[-26.608,24.139000000000003],[-26.608,32.717],[-26.009,35.672000000000004],[-24.746,36.935],[-22.986,39.591],[-22.986,44.015],[-22.401000000000003,46.900000000000006],[-18.133,51.167],[-15.937,52.622],[-11.674999999999999,52.026],[-6.195,46.545],[-4.535,44.041],[-4.535,37.369],[-4.083,35.14],[-3.255,34.312],[-1.226,31.251],[-1.226,24.594],[-0.359,20.392999999999997],[6.612,13.615],[8.038,11.511],[8.038,9.858],[7.414,6.840999999999999],[6.28,5.768],[5.183999999999999,3.0889999999999995],[9.359,-1.084],[10.47,-2.76],[10.47,-3.847],[10.905000000000001,-6.005],[11.700000000000001,-6.799],[13.037,-7.688],[15.679,-7.688],[19.667,-6.880000000000001],[29.22,2.674],[33.528999999999996,4.318],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[12.689,-46.995],[5.857,-46.995],[3.075,-46.431],[0.364,-43.72],[-1.809,-42.28],[-9.707,-42.28],[-12.489999999999998,-42.843999999999994],[-16.38,-46.735],[-18.368,-48.038],[-21.781,-47.974]],"o":[[-24.739,-46.716],[-30.921000000000003,-40.534],[-31.296,-37.745999999999995],[-30.26,-36.182],[-27.762,-33.684],[-27.751,-32.716],[-28.759,-31.195],[-30,-29.954],[-32.341,-29.479],[-34.675000000000004,-29.479],[-36.965,-27.962],[-42.078,-22.848],[-42.646,-20.047],[-42.646,-17.732000000000003],[-41.386,-16.07],[-40.083,-15.806],[-37.144999999999996,-15.806],[-35.186,-17.104],[-29.625,-22.665],[-26.133,-21.333],[-24.478,-19.677],[-21.855,-19.146],[-17.790999999999997,-19.146],[-15.783,-20.476],[-14.722,-21.537999999999997],[-10.93,-22.043],[-8.755,-20.6],[-7.460000000000001,-19.305999999999997],[-6.889,-15.255999999999998],[-8.252,-13.2],[-10.182,-11.270000000000001],[-12.902,-10.718],[-20.85,-10.718],[-23.62,-12.555],[-26.676,-15.61],[-31.516000000000002,-12.959],[-35.121,-12.228],[-41.617,-12.228],[-44.668,-10.205],[-51.435,-3.4389999999999996],[-51.974,-0.78],[-51.974,5.945],[-50.129,8.728],[-44.864,13.993],[-41.736,14.627],[-35.925,14.627],[-32.968,16.587],[-29.739,19.816],[-27.45,22.106],[-26.608,26.26],[-26.608,34.226],[-24.942,36.74],[-23.618,38.062000000000005],[-22.986,41.186],[-22.986,45.488],[-21.359,47.941],[-17.201,52.099000000000004],[-13.116,52.622],[-10.613,50.963],[-5.132000000000001,45.483000000000004],[-4.535,42.538],[-4.535,36.232],[-3.279,34.335],[-1.956,33.013],[-1.226,29.414],[-1.226,22.448],[1.18,18.897],[7.523,12.728],[8.038,10.24],[8.038,8.283000000000001],[6.299,5.784999999999999],[5.212,4.754],[6.209,2.066],[10.071,-1.796],[10.47,-3.766],[10.47,-4.9559999999999995],[11.689,-6.787999999999999],[12.273000000000001,-7.372],[13.833,-7.688],[17.715,-7.688],[21.106,-5.44],[30.863999999999997,4.318],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[14.797999999999998,-47.869],[10.491,-46.995],[4.437,-46.995],[2.071,-45.427],[-0.558,-42.798],[-3.114,-42.28],[-11.128,-42.28],[-13.495,-43.849],[-17.221999999999998,-47.575],[-19.558,-48.016],[-22.893,-47.952999999999996]],"v":[[-24.739,-46.716],[-30.254,-41.201],[-31.296,-38.684],[-30.26,-36.182],[-27.782,-33.704],[-27.751,-33.629],[-28.759,-31.195],[-29.155,-30.799],[-32.341,-29.479],[-33.301,-29.479],[-36.965,-27.962],[-41.067,-23.86],[-42.646,-20.047],[-42.646,-18.446],[-41.856,-16.54],[-40.083,-15.806],[-38.321,-15.806],[-35.186,-17.104],[-30.957,-21.333],[-26.133,-21.333],[-25.425,-20.625],[-21.855,-19.146],[-18.996,-19.146],[-15.783,-20.476],[-15.619,-20.641],[-12.236,-22.043],[-8.755,-20.6],[-8.477,-20.322],[-6.889,-16.49],[-8.252,-13.2],[-9.199,-12.252],[-12.902,-10.718],[-19.187,-10.718],[-23.62,-12.555],[-25.325,-14.259],[-30.216,-14.259],[-35.121,-12.228],[-39.785,-12.228],[-44.668,-10.205],[-50.475,-4.398],[-51.974,-0.78],[-51.974,4.274],[-50.129,8.728],[-45.992,12.865],[-41.736,14.627],[-37.699,14.627],[-32.968,16.587],[-29.739,19.816],[-28.95,20.606],[-26.608,26.26],[-26.608,32.717],[-24.942,36.74],[-24.746,36.935],[-22.986,41.186],[-22.986,44.015],[-21.359,47.941],[-18.133,51.167],[-14.619,52.622],[-10.613,50.963],[-6.195,46.545],[-4.535,42.538],[-4.535,37.369],[-3.279,34.335],[-3.255,34.312],[-1.226,29.414],[-1.226,24.594],[1.18,18.897],[6.612,13.615],[8.038,10.24],[8.038,9.858],[6.317,5.802],[6.261,5.75],[6.209,2.066],[9.359,-1.084],[10.47,-3.766],[10.47,-3.847],[11.678,-6.778],[11.71,-6.809],[13.833,-7.688],[15.679,-7.688],[21.106,-5.44],[29.22,2.674],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[10.491,-46.995],[5.857,-46.995],[2.071,-45.427],[0.364,-43.72],[-3.114,-42.28],[-9.707,-42.28],[-13.495,-43.849],[-16.38,-46.735],[-19.558,-48.016],[-21.781,-47.974]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[138.554,58.917]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":4,"completed":true}]},{"ty":4,"nm":"earth","sr":1,"st":0,"op":3821,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[76.409,76.409,0]},"s":{"a":0,"k":[200,200,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[250,250,0]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[76.159,-42.062],[42.061,76.159],[-76.159,42.062],[-42.062,-76.159]],"o":[[76.159,42.062],[-42.062,76.159],[-76.159,-42.062],[42.061,-76.159]],"v":[[76.159,0],[0,76.159],[-76.159,0],[0,-76.159]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.88,0.904,1,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[76.409,76.409]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":13,"completed":true}],"v":"5.5.9","fr":25,"op":251,"ip":0,"assets":[{"nm":"","id":"comp_0","layers":[{"ty":4,"nm":"Layer 12 Outlines 4","sr":1,"st":375,"op":626,"ip":375,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[113.024,66.425,0]},"s":{"a":0,"k":[200,200,100]},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-233.69,259.035,0],"t":375,"ti":[0,0,0],"to":[0,0,0]},{"s":[737.31,259.035,0],"t":625}]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-8.234,1.218],[-6.919,2.533],[-4.181,3.578],[-2.453,1.852],[0.05600000000000005,0.188],[5.715,0.188],[6.329,0.064],[7.218,-0.825],[7.514,-3.579],[4.024,-3.579],[3.409,-3.4539999999999997],[2.946,-2.99],[0.41900000000000004,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.063,-1.203],[-7.357,-0.926]],"o":[[-7.407,2.045],[-5.874,3.578],[-3.136,2.533],[-1.388,0.7870000000000001],[1.562,0.188],[6.029,0.188],[6.551,-0.158],[8.234,-1.8419999999999999],[6.077,-3.579],[3.71,-3.579],[3.187,-3.231],[1.8730000000000002,-1.9180000000000001],[-1.097,-1.316],[-3.038,-1.316],[-6.774,-1.316],[-7.282,-0.997],[-8.211,-0.127]],"v":[[-7.407,2.045],[-6.919,2.533],[-3.136,2.533],[-2.453,1.852],[1.562,0.188],[5.715,0.188],[6.551,-0.158],[7.218,-0.825],[6.077,-3.579],[4.024,-3.579],[3.187,-3.231],[2.946,-2.99],[-1.097,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.282,-0.997],[-7.357,-0.926]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[74.11,5.597]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 2","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-14.83,-0.45899999999999996],[-11.507,2.865],[-10.755,3.9989999999999997],[-10.755,5.354],[-10.337,7.411],[-9.108,8.641],[-6.12,9.781],[-3.177,6.837],[-0.8619999999999999,5.303],[3.022,5.303],[5.5840000000000005,4.783],[13.23,-2.862],[14.844000000000001,-7.093000000000001],[11.609,-9.781],[1.499,-9.781],[-1.8379999999999999,-9.105],[-4.044,-6.898],[-5.696,-5.803],[-10.216,-5.803],[-12.087,-5.417],[-13.547,-3.919]],"o":[[-13.515,0.856],[-11.025,3.3470000000000004],[-10.755,4.68],[-10.755,6.404],[-9.595,8.154],[-7.968000000000001,9.781],[-4.981,8.641],[-2.1950000000000003,5.8549999999999995],[0.528,5.303],[4.33,5.303],[6.509,3.858],[14.844000000000001,-4.477],[12.542,-9.395000000000001],[10.636,-9.781],[-0.20399999999999996,-9.781],[-3.042,-7.901],[-4.744999999999999,-6.197],[-6.688,-5.803],[-11.171999999999999,-5.803],[-12.754,-4.733],[-14.844000000000001,-2.5869999999999997]],"v":[[-13.515,0.856],[-11.507,2.865],[-10.755,4.68],[-10.755,5.354],[-9.595,8.154],[-9.108,8.641],[-4.981,8.641],[-3.177,6.837],[0.528,5.303],[3.022,5.303],[6.509,3.858],[13.23,-2.862],[13.23,-8.707],[10.636,-9.781],[1.499,-9.781],[-3.042,-7.901],[-4.044,-6.898],[-6.688,-5.803],[-10.216,-5.803],[-12.754,-4.733],[-13.547,-3.919]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[94.717,10.032]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 3","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-52.302,-19.091],[-49.564,-21.828],[-49.049,-22.169],[-36.561,-22.169],[-35.956,-22.047],[-33.306,-19.397],[-32.966,-18.883000000000003],[-32.966,-12.62],[-33.087999999999994,-12.016],[-40.493,-4.611],[-40.835,-4.0969999999999995],[-40.835,2.079],[-40.712,2.684],[-10.697,32.698],[-8.71,32.912],[-8.71,31.061],[-8.832,30.456],[-12.541,26.747],[-12.882,26.233],[-12.882,23.507],[-13.634,19.796],[-15.82,17.611],[-16.161,17.095000000000002],[-17.415,15.231],[-19.33,17.146],[-20.522,17.6],[-23.199,14.922],[-23.54,14.407],[-23.54,8.578],[-23.417,7.973],[-19.514,4.07],[-19,3.729],[-11.829,3.729],[-11.224,3.8510000000000004],[-9.054,6.022],[-7.067,6.236000000000001],[-7.067,4.082],[-6.944,3.477],[-0.523,-2.944],[3.075,-5.328],[8.844,-5.328],[10.946,-5.755],[17.019,-11.828],[18.441,-15.556000000000001],[14.64,-19.357],[12.876,-20.526],[10.013,-20.526],[7.9510000000000005,-20.108999999999998],[3.997,-16.155],[3.483,-15.814],[-0.834,-15.814],[-1.439,-15.936000000000002],[-5.227,-19.724],[-5.682,-20.916],[0.072,-26.672],[0.587,-27.012],[7.022,-27.012],[7.627,-27.134],[10.659,-30.167],[11.113000000000001,-31.359],[9.711,-32.76],[8.519,-33.214999999999996],[7.067,-31.763],[6.553,-31.422],[-2.39,-31.422],[-2.995,-31.3],[-4.304,-29.991],[-4.819,-29.65],[-17.437,-29.65],[-18.042,-29.773],[-21.362,-33.092],[-21.875999999999998,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.525,-33.31],[-42.493,-31.341],[-43.008,-31],[-48.221,-31],[-48.826,-30.878],[-55.945,-23.759],[-56.400000000000006,-22.587],[-53.504,-19.569]],"o":[[-51.841,-19.552],[-49.345,-22.047],[-48.74,-22.169],[-36.252,-22.169],[-35.737,-21.828],[-33.087999999999994,-19.179],[-32.966,-18.574],[-32.966,-12.312],[-33.306,-11.797],[-40.712,-4.393],[-40.835,-3.788],[-40.835,2.3880000000000003],[-40.493,2.902],[-9.963999999999999,33.432],[-8.71,31.875],[-8.71,30.752],[-9.05,30.238],[-12.759,26.529],[-12.882,25.924],[-12.882,21.613000000000003],[-14.974,18.457],[-16.038,17.392],[-16.161,15.749000000000002],[-18.149,15.964],[-19.784,17.6],[-20.976,17.146],[-23.417,14.704],[-23.54,14.099],[-23.54,8.269],[-23.199,7.755],[-19.296,3.8510000000000004],[-18.691,3.729],[-11.521,3.729],[-11.006,4.07],[-8.32,6.755],[-7.067,5.198],[-7.067,3.7729999999999997],[-6.726,3.259],[1.004,-4.47],[5.235,-5.328],[9.917,-5.328],[11.705,-6.513],[18.441,-13.25],[17.019,-16.978],[13.891,-20.105999999999998],[11.817,-20.526],[8.96,-20.526],[7.206,-19.365],[3.779,-15.936000000000002],[3.174,-15.814],[-1.143,-15.814],[-1.657,-16.155],[-5.682,-20.179],[-5.227,-21.371],[0.291,-26.89],[0.895,-27.012],[7.331,-27.012],[7.845,-27.353],[11.113000000000001,-30.622],[10.659,-31.814],[9.256,-33.214999999999996],[8.064,-32.76],[6.848,-31.545],[6.243,-31.422],[-2.6990000000000003,-31.422],[-3.214,-31.082],[-4.523000000000001,-29.773],[-5.128,-29.65],[-17.746000000000002,-29.65],[-18.26,-29.991],[-21.58,-33.31],[-22.185,-33.432],[-34.695,-33.432],[-40.229,-33.432],[-40.743,-33.092],[-42.712,-31.123],[-43.317,-31],[-48.529999999999994,-31],[-49.045,-30.659],[-56.393,-23.311],[-55.962,-22.13],[-53.052,-19.098]],"v":[[-51.841,-19.552],[-49.564,-21.828],[-48.74,-22.169],[-36.561,-22.169],[-35.737,-21.828],[-33.306,-19.397],[-32.966,-18.574],[-32.966,-12.62],[-33.306,-11.797],[-40.493,-4.611],[-40.835,-3.788],[-40.835,2.079],[-40.493,2.902],[-10.697,32.698],[-8.71,31.875],[-8.71,31.061],[-9.05,30.238],[-12.541,26.747],[-12.882,25.924],[-12.882,23.507],[-14.974,18.457],[-15.82,17.611],[-16.161,16.786],[-18.149,15.964],[-19.33,17.146],[-20.976,17.146],[-23.199,14.922],[-23.54,14.099],[-23.54,8.578],[-23.199,7.755],[-19.514,4.07],[-18.691,3.729],[-11.829,3.729],[-11.006,4.07],[-9.054,6.022],[-7.067,5.198],[-7.067,4.082],[-6.726,3.259],[-0.523,-2.944],[5.235,-5.328],[8.844,-5.328],[11.705,-6.513],[17.019,-11.828],[17.019,-16.978],[14.64,-19.357],[11.817,-20.526],[10.013,-20.526],[7.206,-19.365],[3.997,-16.155],[3.174,-15.814],[-0.834,-15.814],[-1.657,-16.155],[-5.227,-19.724],[-5.227,-21.371],[0.072,-26.672],[0.895,-27.012],[7.022,-27.012],[7.845,-27.353],[10.659,-30.167],[10.659,-31.814],[9.711,-32.76],[8.064,-32.76],[7.067,-31.763],[6.243,-31.422],[-2.39,-31.422],[-3.214,-31.082],[-4.304,-29.991],[-5.128,-29.65],[-17.437,-29.65],[-18.26,-29.991],[-21.362,-33.092],[-22.185,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.743,-33.092],[-42.493,-31.341],[-43.317,-31],[-48.221,-31],[-49.045,-30.659],[-55.945,-23.759],[-55.962,-22.13],[-53.504,-19.569]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[56.65,43.52]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 4","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-18.884,-27.953],[-15.534,-31.303],[-13.216,-32.839],[-7.757,-32.839],[-5.063000000000001,-32.293],[-1.266,-28.496],[1.509,-26.656],[4.088,-26.471],[8.462,-22.097],[11.726,-19.933],[15.732,-19.518],[18.587,-16.663],[20.062,-14.437000000000001],[20.062,-12.023],[19.66,-10.040999999999999],[15.869,-6.25],[15.355,-5.473999999999999],[15.355,-3.231],[14.638,0.30600000000000005],[2.975,11.968],[1.649,13.969999999999999],[1.081,17.97],[-1.898,20.948],[-2.413,21.726],[-2.413,27.397],[-2.2279999999999998,28.310000000000002],[-0.699,29.839],[-0.3759999999999999,32.839],[-2.855,32.653],[-6.756,28.752],[-10.824,24.684],[-11.339,23.907],[-11.339,5.642],[-11.339,2.314],[-12.384,-2.84],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-11.512],[-20.062,-25.655],[-19.962,-26.333000000000002],[-19.026,-27.76]],"o":[[-18.799,-28.038],[-14.55,-32.286],[-11.825,-32.839],[-6.382,-32.839],[-4.091,-31.32],[-0.08899999999999997,-27.317999999999998],[3.6399999999999997,-26.656],[4.417,-26.142],[9.847,-20.711000000000002],[14.73,-19.933],[16.471,-18.779],[19.532,-15.719000000000001],[20.062,-13.101],[20.062,-11.011],[18.945,-9.325],[15.54,-5.92],[15.355,-5.007],[15.355,-1.426],[13.361,1.582],[2.1260000000000003,12.817],[1.649,16.599999999999998],[0.071,18.98],[-2.2279999999999998,21.278],[-2.413,22.191],[-2.413,27.862],[-1.898,28.64],[0.40900000000000014,30.945],[-2.408,32.839],[-3.184,32.324],[-6.756,28.752],[-11.154,24.355],[-11.339,23.441],[-11.339,5.642],[-11.339,-0.3169999999999997],[-14.244,-4.7],[-15.911,-6.367],[-19.360000000000003,-9.815],[-20.062,-13.279],[-20.062,-25.998],[-19.774,-26.62],[-18.96,-27.859]],"v":[[-18.799,-28.038],[-15.534,-31.303],[-11.825,-32.839],[-7.757,-32.839],[-4.091,-31.32],[-1.266,-28.496],[3.175,-26.656],[4.417,-26.142],[8.462,-22.097],[13.685,-19.933],[16.471,-18.779],[18.587,-16.663],[20.062,-13.101],[20.062,-12.023],[18.945,-9.325],[15.869,-6.25],[15.355,-5.007],[15.355,-3.231],[13.361,1.582],[2.975,11.968],[1.649,15.171],[0.071,18.98],[-1.898,20.948],[-2.413,22.191],[-2.413,27.397],[-1.898,28.64],[-0.699,29.839],[-1.942,32.839],[-3.184,32.324],[-6.756,28.752],[-10.824,24.684],[-11.339,23.441],[-11.339,5.642],[-11.339,2.314],[-14.244,-4.7],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-13.279],[-20.062,-25.655],[-19.774,-26.62],[-19.026,-27.76]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[67.169,99.76]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 5","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-23.953,-47.502],[-30.254,-41.201],[-31.296,-39.628],[-30.924000000000003,-36.846000000000004],[-27.782,-33.704],[-27.751,-33.657],[-28.114,-31.841],[-29.155,-30.799],[-31.146,-29.479],[-33.301,-29.479],[-35.993,-28.933],[-41.067,-23.86],[-42.646,-21.477],[-42.646,-18.446],[-42.362,-17.046],[-40.748,-15.806],[-38.321,-15.806],[-36.017,-16.273],[-30.957,-21.333],[-27.465,-22.665],[-25.425,-20.625],[-23.194,-19.146],[-18.996,-19.146],[-16.636,-19.624],[-15.619,-20.641],[-13.505,-22.043],[-9.678,-21.524],[-8.477,-20.322],[-6.889,-17.927],[-7.3790000000000004,-14.072],[-9.199,-12.252],[-11.513,-10.718],[-19.187,-10.718],[-22.445,-11.379],[-25.325,-14.259],[-28.865000000000002,-15.61],[-33.281,-12.228],[-39.785,-12.228],[-43.373,-11.5],[-50.475,-4.398],[-51.974,-2.137],[-51.974,4.274],[-51.309999999999995,7.545999999999999],[-45.992,12.865],[-43.331999999999994,14.627],[-37.699,14.627],[-34.223000000000006,15.332],[-29.739,19.816],[-28.95,20.606],[-26.608,24.139000000000003],[-26.608,32.717],[-26.009,35.672000000000004],[-24.746,36.935],[-22.986,39.591],[-22.986,44.015],[-22.401000000000003,46.900000000000006],[-18.133,51.167],[-15.937,52.622],[-11.674999999999999,52.026],[-6.195,46.545],[-4.535,44.041],[-4.535,37.369],[-4.083,35.14],[-3.255,34.312],[-1.226,31.251],[-1.226,24.594],[-0.359,20.392999999999997],[6.612,13.615],[8.038,11.511],[8.038,9.858],[7.414,6.840999999999999],[6.28,5.768],[5.183999999999999,3.0889999999999995],[9.359,-1.084],[10.47,-2.76],[10.47,-3.847],[10.905000000000001,-6.005],[11.700000000000001,-6.799],[13.037,-7.688],[15.679,-7.688],[19.667,-6.880000000000001],[29.22,2.674],[33.528999999999996,4.318],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[12.689,-46.995],[5.857,-46.995],[3.075,-46.431],[0.364,-43.72],[-1.809,-42.28],[-9.707,-42.28],[-12.489999999999998,-42.843999999999994],[-16.38,-46.735],[-18.368,-48.038],[-21.781,-47.974]],"o":[[-24.739,-46.716],[-30.921000000000003,-40.534],[-31.296,-37.745999999999995],[-30.26,-36.182],[-27.762,-33.684],[-27.751,-32.716],[-28.759,-31.195],[-30,-29.954],[-32.341,-29.479],[-34.675000000000004,-29.479],[-36.965,-27.962],[-42.078,-22.848],[-42.646,-20.047],[-42.646,-17.732000000000003],[-41.386,-16.07],[-40.083,-15.806],[-37.144999999999996,-15.806],[-35.186,-17.104],[-29.625,-22.665],[-26.133,-21.333],[-24.478,-19.677],[-21.855,-19.146],[-17.790999999999997,-19.146],[-15.783,-20.476],[-14.722,-21.537999999999997],[-10.93,-22.043],[-8.755,-20.6],[-7.460000000000001,-19.305999999999997],[-6.889,-15.255999999999998],[-8.252,-13.2],[-10.182,-11.270000000000001],[-12.902,-10.718],[-20.85,-10.718],[-23.62,-12.555],[-26.676,-15.61],[-31.516000000000002,-12.959],[-35.121,-12.228],[-41.617,-12.228],[-44.668,-10.205],[-51.435,-3.4389999999999996],[-51.974,-0.78],[-51.974,5.945],[-50.129,8.728],[-44.864,13.993],[-41.736,14.627],[-35.925,14.627],[-32.968,16.587],[-29.739,19.816],[-27.45,22.106],[-26.608,26.26],[-26.608,34.226],[-24.942,36.74],[-23.618,38.062000000000005],[-22.986,41.186],[-22.986,45.488],[-21.359,47.941],[-17.201,52.099000000000004],[-13.116,52.622],[-10.613,50.963],[-5.132000000000001,45.483000000000004],[-4.535,42.538],[-4.535,36.232],[-3.279,34.335],[-1.956,33.013],[-1.226,29.414],[-1.226,22.448],[1.18,18.897],[7.523,12.728],[8.038,10.24],[8.038,8.283000000000001],[6.299,5.784999999999999],[5.212,4.754],[6.209,2.066],[10.071,-1.796],[10.47,-3.766],[10.47,-4.9559999999999995],[11.689,-6.787999999999999],[12.273000000000001,-7.372],[13.833,-7.688],[17.715,-7.688],[21.106,-5.44],[30.863999999999997,4.318],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[14.797999999999998,-47.869],[10.491,-46.995],[4.437,-46.995],[2.071,-45.427],[-0.558,-42.798],[-3.114,-42.28],[-11.128,-42.28],[-13.495,-43.849],[-17.221999999999998,-47.575],[-19.558,-48.016],[-22.893,-47.952999999999996]],"v":[[-24.739,-46.716],[-30.254,-41.201],[-31.296,-38.684],[-30.26,-36.182],[-27.782,-33.704],[-27.751,-33.629],[-28.759,-31.195],[-29.155,-30.799],[-32.341,-29.479],[-33.301,-29.479],[-36.965,-27.962],[-41.067,-23.86],[-42.646,-20.047],[-42.646,-18.446],[-41.856,-16.54],[-40.083,-15.806],[-38.321,-15.806],[-35.186,-17.104],[-30.957,-21.333],[-26.133,-21.333],[-25.425,-20.625],[-21.855,-19.146],[-18.996,-19.146],[-15.783,-20.476],[-15.619,-20.641],[-12.236,-22.043],[-8.755,-20.6],[-8.477,-20.322],[-6.889,-16.49],[-8.252,-13.2],[-9.199,-12.252],[-12.902,-10.718],[-19.187,-10.718],[-23.62,-12.555],[-25.325,-14.259],[-30.216,-14.259],[-35.121,-12.228],[-39.785,-12.228],[-44.668,-10.205],[-50.475,-4.398],[-51.974,-0.78],[-51.974,4.274],[-50.129,8.728],[-45.992,12.865],[-41.736,14.627],[-37.699,14.627],[-32.968,16.587],[-29.739,19.816],[-28.95,20.606],[-26.608,26.26],[-26.608,32.717],[-24.942,36.74],[-24.746,36.935],[-22.986,41.186],[-22.986,44.015],[-21.359,47.941],[-18.133,51.167],[-14.619,52.622],[-10.613,50.963],[-6.195,46.545],[-4.535,42.538],[-4.535,37.369],[-3.279,34.335],[-3.255,34.312],[-1.226,29.414],[-1.226,24.594],[1.18,18.897],[6.612,13.615],[8.038,10.24],[8.038,9.858],[6.317,5.802],[6.261,5.75],[6.209,2.066],[9.359,-1.084],[10.47,-3.766],[10.47,-3.847],[11.678,-6.778],[11.71,-6.809],[13.833,-7.688],[15.679,-7.688],[21.106,-5.44],[29.22,2.674],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[10.491,-46.995],[5.857,-46.995],[2.071,-45.427],[0.364,-43.72],[-3.114,-42.28],[-9.707,-42.28],[-13.495,-43.849],[-16.38,-46.735],[-19.558,-48.016],[-21.781,-47.974]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[138.554,58.917]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]}],"ind":1,"completed":true},{"ty":4,"nm":"Layer 12 Outlines 3","sr":1,"st":250,"op":501,"ip":250,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[113.024,66.425,0]},"s":{"a":0,"k":[200,200,100]},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-233.69,259.035,0],"t":250,"ti":[0,0,0],"to":[0,0,0]},{"s":[737.31,259.035,0],"t":500}]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-8.234,1.218],[-6.919,2.533],[-4.181,3.578],[-2.453,1.852],[0.05600000000000005,0.188],[5.715,0.188],[6.329,0.064],[7.218,-0.825],[7.514,-3.579],[4.024,-3.579],[3.409,-3.4539999999999997],[2.946,-2.99],[0.41900000000000004,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.063,-1.203],[-7.357,-0.926]],"o":[[-7.407,2.045],[-5.874,3.578],[-3.136,2.533],[-1.388,0.7870000000000001],[1.562,0.188],[6.029,0.188],[6.551,-0.158],[8.234,-1.8419999999999999],[6.077,-3.579],[3.71,-3.579],[3.187,-3.231],[1.8730000000000002,-1.9180000000000001],[-1.097,-1.316],[-3.038,-1.316],[-6.774,-1.316],[-7.282,-0.997],[-8.211,-0.127]],"v":[[-7.407,2.045],[-6.919,2.533],[-3.136,2.533],[-2.453,1.852],[1.562,0.188],[5.715,0.188],[6.551,-0.158],[7.218,-0.825],[6.077,-3.579],[4.024,-3.579],[3.187,-3.231],[2.946,-2.99],[-1.097,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.282,-0.997],[-7.357,-0.926]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[74.11,5.597]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 2","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-14.83,-0.45899999999999996],[-11.507,2.865],[-10.755,3.9989999999999997],[-10.755,5.354],[-10.337,7.411],[-9.108,8.641],[-6.12,9.781],[-3.177,6.837],[-0.8619999999999999,5.303],[3.022,5.303],[5.5840000000000005,4.783],[13.23,-2.862],[14.844000000000001,-7.093000000000001],[11.609,-9.781],[1.499,-9.781],[-1.8379999999999999,-9.105],[-4.044,-6.898],[-5.696,-5.803],[-10.216,-5.803],[-12.087,-5.417],[-13.547,-3.919]],"o":[[-13.515,0.856],[-11.025,3.3470000000000004],[-10.755,4.68],[-10.755,6.404],[-9.595,8.154],[-7.968000000000001,9.781],[-4.981,8.641],[-2.1950000000000003,5.8549999999999995],[0.528,5.303],[4.33,5.303],[6.509,3.858],[14.844000000000001,-4.477],[12.542,-9.395000000000001],[10.636,-9.781],[-0.20399999999999996,-9.781],[-3.042,-7.901],[-4.744999999999999,-6.197],[-6.688,-5.803],[-11.171999999999999,-5.803],[-12.754,-4.733],[-14.844000000000001,-2.5869999999999997]],"v":[[-13.515,0.856],[-11.507,2.865],[-10.755,4.68],[-10.755,5.354],[-9.595,8.154],[-9.108,8.641],[-4.981,8.641],[-3.177,6.837],[0.528,5.303],[3.022,5.303],[6.509,3.858],[13.23,-2.862],[13.23,-8.707],[10.636,-9.781],[1.499,-9.781],[-3.042,-7.901],[-4.044,-6.898],[-6.688,-5.803],[-10.216,-5.803],[-12.754,-4.733],[-13.547,-3.919]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[94.717,10.032]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 3","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-52.302,-19.091],[-49.564,-21.828],[-49.049,-22.169],[-36.561,-22.169],[-35.956,-22.047],[-33.306,-19.397],[-32.966,-18.883000000000003],[-32.966,-12.62],[-33.087999999999994,-12.016],[-40.493,-4.611],[-40.835,-4.0969999999999995],[-40.835,2.079],[-40.712,2.684],[-10.697,32.698],[-8.71,32.912],[-8.71,31.061],[-8.832,30.456],[-12.541,26.747],[-12.882,26.233],[-12.882,23.507],[-13.634,19.796],[-15.82,17.611],[-16.161,17.095000000000002],[-17.415,15.231],[-19.33,17.146],[-20.522,17.6],[-23.199,14.922],[-23.54,14.407],[-23.54,8.578],[-23.417,7.973],[-19.514,4.07],[-19,3.729],[-11.829,3.729],[-11.224,3.8510000000000004],[-9.054,6.022],[-7.067,6.236000000000001],[-7.067,4.082],[-6.944,3.477],[-0.523,-2.944],[3.075,-5.328],[8.844,-5.328],[10.946,-5.755],[17.019,-11.828],[18.441,-15.556000000000001],[14.64,-19.357],[12.876,-20.526],[10.013,-20.526],[7.9510000000000005,-20.108999999999998],[3.997,-16.155],[3.483,-15.814],[-0.834,-15.814],[-1.439,-15.936000000000002],[-5.227,-19.724],[-5.682,-20.916],[0.072,-26.672],[0.587,-27.012],[7.022,-27.012],[7.627,-27.134],[10.659,-30.167],[11.113000000000001,-31.359],[9.711,-32.76],[8.519,-33.214999999999996],[7.067,-31.763],[6.553,-31.422],[-2.39,-31.422],[-2.995,-31.3],[-4.304,-29.991],[-4.819,-29.65],[-17.437,-29.65],[-18.042,-29.773],[-21.362,-33.092],[-21.875999999999998,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.525,-33.31],[-42.493,-31.341],[-43.008,-31],[-48.221,-31],[-48.826,-30.878],[-55.945,-23.759],[-56.400000000000006,-22.587],[-53.504,-19.569]],"o":[[-51.841,-19.552],[-49.345,-22.047],[-48.74,-22.169],[-36.252,-22.169],[-35.737,-21.828],[-33.087999999999994,-19.179],[-32.966,-18.574],[-32.966,-12.312],[-33.306,-11.797],[-40.712,-4.393],[-40.835,-3.788],[-40.835,2.3880000000000003],[-40.493,2.902],[-9.963999999999999,33.432],[-8.71,31.875],[-8.71,30.752],[-9.05,30.238],[-12.759,26.529],[-12.882,25.924],[-12.882,21.613000000000003],[-14.974,18.457],[-16.038,17.392],[-16.161,15.749000000000002],[-18.149,15.964],[-19.784,17.6],[-20.976,17.146],[-23.417,14.704],[-23.54,14.099],[-23.54,8.269],[-23.199,7.755],[-19.296,3.8510000000000004],[-18.691,3.729],[-11.521,3.729],[-11.006,4.07],[-8.32,6.755],[-7.067,5.198],[-7.067,3.7729999999999997],[-6.726,3.259],[1.004,-4.47],[5.235,-5.328],[9.917,-5.328],[11.705,-6.513],[18.441,-13.25],[17.019,-16.978],[13.891,-20.105999999999998],[11.817,-20.526],[8.96,-20.526],[7.206,-19.365],[3.779,-15.936000000000002],[3.174,-15.814],[-1.143,-15.814],[-1.657,-16.155],[-5.682,-20.179],[-5.227,-21.371],[0.291,-26.89],[0.895,-27.012],[7.331,-27.012],[7.845,-27.353],[11.113000000000001,-30.622],[10.659,-31.814],[9.256,-33.214999999999996],[8.064,-32.76],[6.848,-31.545],[6.243,-31.422],[-2.6990000000000003,-31.422],[-3.214,-31.082],[-4.523000000000001,-29.773],[-5.128,-29.65],[-17.746000000000002,-29.65],[-18.26,-29.991],[-21.58,-33.31],[-22.185,-33.432],[-34.695,-33.432],[-40.229,-33.432],[-40.743,-33.092],[-42.712,-31.123],[-43.317,-31],[-48.529999999999994,-31],[-49.045,-30.659],[-56.393,-23.311],[-55.962,-22.13],[-53.052,-19.098]],"v":[[-51.841,-19.552],[-49.564,-21.828],[-48.74,-22.169],[-36.561,-22.169],[-35.737,-21.828],[-33.306,-19.397],[-32.966,-18.574],[-32.966,-12.62],[-33.306,-11.797],[-40.493,-4.611],[-40.835,-3.788],[-40.835,2.079],[-40.493,2.902],[-10.697,32.698],[-8.71,31.875],[-8.71,31.061],[-9.05,30.238],[-12.541,26.747],[-12.882,25.924],[-12.882,23.507],[-14.974,18.457],[-15.82,17.611],[-16.161,16.786],[-18.149,15.964],[-19.33,17.146],[-20.976,17.146],[-23.199,14.922],[-23.54,14.099],[-23.54,8.578],[-23.199,7.755],[-19.514,4.07],[-18.691,3.729],[-11.829,3.729],[-11.006,4.07],[-9.054,6.022],[-7.067,5.198],[-7.067,4.082],[-6.726,3.259],[-0.523,-2.944],[5.235,-5.328],[8.844,-5.328],[11.705,-6.513],[17.019,-11.828],[17.019,-16.978],[14.64,-19.357],[11.817,-20.526],[10.013,-20.526],[7.206,-19.365],[3.997,-16.155],[3.174,-15.814],[-0.834,-15.814],[-1.657,-16.155],[-5.227,-19.724],[-5.227,-21.371],[0.072,-26.672],[0.895,-27.012],[7.022,-27.012],[7.845,-27.353],[10.659,-30.167],[10.659,-31.814],[9.711,-32.76],[8.064,-32.76],[7.067,-31.763],[6.243,-31.422],[-2.39,-31.422],[-3.214,-31.082],[-4.304,-29.991],[-5.128,-29.65],[-17.437,-29.65],[-18.26,-29.991],[-21.362,-33.092],[-22.185,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.743,-33.092],[-42.493,-31.341],[-43.317,-31],[-48.221,-31],[-49.045,-30.659],[-55.945,-23.759],[-55.962,-22.13],[-53.504,-19.569]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[56.65,43.52]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 4","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-18.884,-27.953],[-15.534,-31.303],[-13.216,-32.839],[-7.757,-32.839],[-5.063000000000001,-32.293],[-1.266,-28.496],[1.509,-26.656],[4.088,-26.471],[8.462,-22.097],[11.726,-19.933],[15.732,-19.518],[18.587,-16.663],[20.062,-14.437000000000001],[20.062,-12.023],[19.66,-10.040999999999999],[15.869,-6.25],[15.355,-5.473999999999999],[15.355,-3.231],[14.638,0.30600000000000005],[2.975,11.968],[1.649,13.969999999999999],[1.081,17.97],[-1.898,20.948],[-2.413,21.726],[-2.413,27.397],[-2.2279999999999998,28.310000000000002],[-0.699,29.839],[-0.3759999999999999,32.839],[-2.855,32.653],[-6.756,28.752],[-10.824,24.684],[-11.339,23.907],[-11.339,5.642],[-11.339,2.314],[-12.384,-2.84],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-11.512],[-20.062,-25.655],[-19.962,-26.333000000000002],[-19.026,-27.76]],"o":[[-18.799,-28.038],[-14.55,-32.286],[-11.825,-32.839],[-6.382,-32.839],[-4.091,-31.32],[-0.08899999999999997,-27.317999999999998],[3.6399999999999997,-26.656],[4.417,-26.142],[9.847,-20.711000000000002],[14.73,-19.933],[16.471,-18.779],[19.532,-15.719000000000001],[20.062,-13.101],[20.062,-11.011],[18.945,-9.325],[15.54,-5.92],[15.355,-5.007],[15.355,-1.426],[13.361,1.582],[2.1260000000000003,12.817],[1.649,16.599999999999998],[0.071,18.98],[-2.2279999999999998,21.278],[-2.413,22.191],[-2.413,27.862],[-1.898,28.64],[0.40900000000000014,30.945],[-2.408,32.839],[-3.184,32.324],[-6.756,28.752],[-11.154,24.355],[-11.339,23.441],[-11.339,5.642],[-11.339,-0.3169999999999997],[-14.244,-4.7],[-15.911,-6.367],[-19.360000000000003,-9.815],[-20.062,-13.279],[-20.062,-25.998],[-19.774,-26.62],[-18.96,-27.859]],"v":[[-18.799,-28.038],[-15.534,-31.303],[-11.825,-32.839],[-7.757,-32.839],[-4.091,-31.32],[-1.266,-28.496],[3.175,-26.656],[4.417,-26.142],[8.462,-22.097],[13.685,-19.933],[16.471,-18.779],[18.587,-16.663],[20.062,-13.101],[20.062,-12.023],[18.945,-9.325],[15.869,-6.25],[15.355,-5.007],[15.355,-3.231],[13.361,1.582],[2.975,11.968],[1.649,15.171],[0.071,18.98],[-1.898,20.948],[-2.413,22.191],[-2.413,27.397],[-1.898,28.64],[-0.699,29.839],[-1.942,32.839],[-3.184,32.324],[-6.756,28.752],[-10.824,24.684],[-11.339,23.441],[-11.339,5.642],[-11.339,2.314],[-14.244,-4.7],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-13.279],[-20.062,-25.655],[-19.774,-26.62],[-19.026,-27.76]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[67.169,99.76]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]},{"ty":"gr","bm":0,"hd":false,"nm":"Group 5","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-23.953,-47.502],[-30.254,-41.201],[-31.296,-39.628],[-30.924000000000003,-36.846000000000004],[-27.782,-33.704],[-27.751,-33.657],[-28.114,-31.841],[-29.155,-30.799],[-31.146,-29.479],[-33.301,-29.479],[-35.993,-28.933],[-41.067,-23.86],[-42.646,-21.477],[-42.646,-18.446],[-42.362,-17.046],[-40.748,-15.806],[-38.321,-15.806],[-36.017,-16.273],[-30.957,-21.333],[-27.465,-22.665],[-25.425,-20.625],[-23.194,-19.146],[-18.996,-19.146],[-16.636,-19.624],[-15.619,-20.641],[-13.505,-22.043],[-9.678,-21.524],[-8.477,-20.322],[-6.889,-17.927],[-7.3790000000000004,-14.072],[-9.199,-12.252],[-11.513,-10.718],[-19.187,-10.718],[-22.445,-11.379],[-25.325,-14.259],[-28.865000000000002,-15.61],[-33.281,-12.228],[-39.785,-12.228],[-43.373,-11.5],[-50.475,-4.398],[-51.974,-2.137],[-51.974,4.274],[-51.309999999999995,7.545999999999999],[-45.992,12.865],[-43.331999999999994,14.627],[-37.699,14.627],[-34.223000000000006,15.332],[-29.739,19.816],[-28.95,20.606],[-26.608,24.139000000000003],[-26.608,32.717],[-26.009,35.672000000000004],[-24.746,36.935],[-22.986,39.591],[-22.986,44.015],[-22.401000000000003,46.900000000000006],[-18.133,51.167],[-15.937,52.622],[-11.674999999999999,52.026],[-6.195,46.545],[-4.535,44.041],[-4.535,37.369],[-4.083,35.14],[-3.255,34.312],[-1.226,31.251],[-1.226,24.594],[-0.359,20.392999999999997],[6.612,13.615],[8.038,11.511],[8.038,9.858],[7.414,6.840999999999999],[6.28,5.768],[5.183999999999999,3.0889999999999995],[9.359,-1.084],[10.47,-2.76],[10.47,-3.847],[10.905000000000001,-6.005],[11.700000000000001,-6.799],[13.037,-7.688],[15.679,-7.688],[19.667,-6.880000000000001],[29.22,2.674],[33.528999999999996,4.318],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[12.689,-46.995],[5.857,-46.995],[3.075,-46.431],[0.364,-43.72],[-1.809,-42.28],[-9.707,-42.28],[-12.489999999999998,-42.843999999999994],[-16.38,-46.735],[-18.368,-48.038],[-21.781,-47.974]],"o":[[-24.739,-46.716],[-30.921000000000003,-40.534],[-31.296,-37.745999999999995],[-30.26,-36.182],[-27.762,-33.684],[-27.751,-32.716],[-28.759,-31.195],[-30,-29.954],[-32.341,-29.479],[-34.675000000000004,-29.479],[-36.965,-27.962],[-42.078,-22.848],[-42.646,-20.047],[-42.646,-17.732000000000003],[-41.386,-16.07],[-40.083,-15.806],[-37.144999999999996,-15.806],[-35.186,-17.104],[-29.625,-22.665],[-26.133,-21.333],[-24.478,-19.677],[-21.855,-19.146],[-17.790999999999997,-19.146],[-15.783,-20.476],[-14.722,-21.537999999999997],[-10.93,-22.043],[-8.755,-20.6],[-7.460000000000001,-19.305999999999997],[-6.889,-15.255999999999998],[-8.252,-13.2],[-10.182,-11.270000000000001],[-12.902,-10.718],[-20.85,-10.718],[-23.62,-12.555],[-26.676,-15.61],[-31.516000000000002,-12.959],[-35.121,-12.228],[-41.617,-12.228],[-44.668,-10.205],[-51.435,-3.4389999999999996],[-51.974,-0.78],[-51.974,5.945],[-50.129,8.728],[-44.864,13.993],[-41.736,14.627],[-35.925,14.627],[-32.968,16.587],[-29.739,19.816],[-27.45,22.106],[-26.608,26.26],[-26.608,34.226],[-24.942,36.74],[-23.618,38.062000000000005],[-22.986,41.186],[-22.986,45.488],[-21.359,47.941],[-17.201,52.099000000000004],[-13.116,52.622],[-10.613,50.963],[-5.132000000000001,45.483000000000004],[-4.535,42.538],[-4.535,36.232],[-3.279,34.335],[-1.956,33.013],[-1.226,29.414],[-1.226,22.448],[1.18,18.897],[7.523,12.728],[8.038,10.24],[8.038,8.283000000000001],[6.299,5.784999999999999],[5.212,4.754],[6.209,2.066],[10.071,-1.796],[10.47,-3.766],[10.47,-4.9559999999999995],[11.689,-6.787999999999999],[12.273000000000001,-7.372],[13.833,-7.688],[17.715,-7.688],[21.106,-5.44],[30.863999999999997,4.318],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[14.797999999999998,-47.869],[10.491,-46.995],[4.437,-46.995],[2.071,-45.427],[-0.558,-42.798],[-3.114,-42.28],[-11.128,-42.28],[-13.495,-43.849],[-17.221999999999998,-47.575],[-19.558,-48.016],[-22.893,-47.952999999999996]],"v":[[-24.739,-46.716],[-30.254,-41.201],[-31.296,-38.684],[-30.26,-36.182],[-27.782,-33.704],[-27.751,-33.629],[-28.759,-31.195],[-29.155,-30.799],[-32.341,-29.479],[-33.301,-29.479],[-36.965,-27.962],[-41.067,-23.86],[-42.646,-20.047],[-42.646,-18.446],[-41.856,-16.54],[-40.083,-15.806],[-38.321,-15.806],[-35.186,-17.104],[-30.957,-21.333],[-26.133,-21.333],[-25.425,-20.625],[-21.855,-19.146],[-18.996,-19.146],[-15.783,-20.476],[-15.619,-20.641],[-12.236,-22.043],[-8.755,-20.6],[-8.477,-20.322],[-6.889,-16.49],[-8.252,-13.2],[-9.199,-12.252],[-12.902,-10.718],[-19.187,-10.718],[-23.62,-12.555],[-25.325,-14.259],[-30.216,-14.259],[-35.121,-12.228],[-39.785,-12.228],[-44.668,-10.205],[-50.475,-4.398],[-51.974,-0.78],[-51.974,4.274],[-50.129,8.728],[-45.992,12.865],[-41.736,14.627],[-37.699,14.627],[-32.968,16.587],[-29.739,19.816],[-28.95,20.606],[-26.608,26.26],[-26.608,32.717],[-24.942,36.74],[-24.746,36.935],[-22.986,41.186],[-22.986,44.015],[-21.359,47.941],[-18.133,51.167],[-14.619,52.622],[-10.613,50.963],[-6.195,46.545],[-4.535,42.538],[-4.535,37.369],[-3.279,34.335],[-3.255,34.312],[-1.226,29.414],[-1.226,24.594],[1.18,18.897],[6.612,13.615],[8.038,10.24],[8.038,9.858],[6.317,5.802],[6.261,5.75],[6.209,2.066],[9.359,-1.084],[10.47,-3.766],[10.47,-3.847],[11.678,-6.778],[11.71,-6.809],[13.833,-7.688],[15.679,-7.688],[21.106,-5.44],[29.22,2.674],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[10.491,-46.995],[5.857,-46.995],[2.071,-45.427],[0.364,-43.72],[-3.114,-42.28],[-9.707,-42.28],[-13.495,-43.849],[-16.38,-46.735],[-19.558,-48.016],[-21.781,-47.974]]}}},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100}},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[138.554,58.917]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}}]}],"ind":2,"completed":true},{"ty":4,"nm":"Layer 12 Outlines 2","sr":1,"st":125,"op":376,"ip":125,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[113.024,66.425,0]},"s":{"a":0,"k":[200,200,100]},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-233.69,259.035,0],"t":125,"ti":null,"to":null},{"s":[737.31,259.035,0],"t":375}]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-8.234,1.218],[-6.919,2.533],[-4.181,3.578],[-2.453,1.852],[0.05600000000000005,0.188],[5.715,0.188],[6.329,0.064],[7.218,-0.825],[7.514,-3.579],[4.024,-3.579],[3.409,-3.4539999999999997],[2.946,-2.99],[0.41900000000000004,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.063,-1.203],[-7.357,-0.926]],"o":[[-7.407,2.045],[-5.874,3.578],[-3.136,2.533],[-1.388,0.7870000000000001],[1.562,0.188],[6.029,0.188],[6.551,-0.158],[8.234,-1.8419999999999999],[6.077,-3.579],[3.71,-3.579],[3.187,-3.231],[1.8730000000000002,-1.9180000000000001],[-1.097,-1.316],[-3.038,-1.316],[-6.774,-1.316],[-7.282,-0.997],[-8.211,-0.127]],"v":[[-7.407,2.045],[-6.919,2.533],[-3.136,2.533],[-2.453,1.852],[1.562,0.188],[5.715,0.188],[6.551,-0.158],[7.218,-0.825],[6.077,-3.579],[4.024,-3.579],[3.187,-3.231],[2.946,-2.99],[-1.097,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.282,-0.997],[-7.357,-0.926]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[74.11,5.597]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 2","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-14.83,-0.45899999999999996],[-11.507,2.865],[-10.755,3.9989999999999997],[-10.755,5.354],[-10.337,7.411],[-9.108,8.641],[-6.12,9.781],[-3.177,6.837],[-0.8619999999999999,5.303],[3.022,5.303],[5.5840000000000005,4.783],[13.23,-2.862],[14.844000000000001,-7.093000000000001],[11.609,-9.781],[1.499,-9.781],[-1.8379999999999999,-9.105],[-4.044,-6.898],[-5.696,-5.803],[-10.216,-5.803],[-12.087,-5.417],[-13.547,-3.919]],"o":[[-13.515,0.856],[-11.025,3.3470000000000004],[-10.755,4.68],[-10.755,6.404],[-9.595,8.154],[-7.968000000000001,9.781],[-4.981,8.641],[-2.1950000000000003,5.8549999999999995],[0.528,5.303],[4.33,5.303],[6.509,3.858],[14.844000000000001,-4.477],[12.542,-9.395000000000001],[10.636,-9.781],[-0.20399999999999996,-9.781],[-3.042,-7.901],[-4.744999999999999,-6.197],[-6.688,-5.803],[-11.171999999999999,-5.803],[-12.754,-4.733],[-14.844000000000001,-2.5869999999999997]],"v":[[-13.515,0.856],[-11.507,2.865],[-10.755,4.68],[-10.755,5.354],[-9.595,8.154],[-9.108,8.641],[-4.981,8.641],[-3.177,6.837],[0.528,5.303],[3.022,5.303],[6.509,3.858],[13.23,-2.862],[13.23,-8.707],[10.636,-9.781],[1.499,-9.781],[-3.042,-7.901],[-4.044,-6.898],[-6.688,-5.803],[-10.216,-5.803],[-12.754,-4.733],[-13.547,-3.919]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[94.717,10.032]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 3","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-52.302,-19.091],[-49.564,-21.828],[-49.049,-22.169],[-36.561,-22.169],[-35.956,-22.047],[-33.306,-19.397],[-32.966,-18.883000000000003],[-32.966,-12.62],[-33.087999999999994,-12.016],[-40.493,-4.611],[-40.835,-4.0969999999999995],[-40.835,2.079],[-40.712,2.684],[-10.697,32.698],[-8.71,32.912],[-8.71,31.061],[-8.832,30.456],[-12.541,26.747],[-12.882,26.233],[-12.882,23.507],[-13.634,19.796],[-15.82,17.611],[-16.161,17.095000000000002],[-17.415,15.231],[-19.33,17.146],[-20.522,17.6],[-23.199,14.922],[-23.54,14.407],[-23.54,8.578],[-23.417,7.973],[-19.514,4.07],[-19,3.729],[-11.829,3.729],[-11.224,3.8510000000000004],[-9.054,6.022],[-7.067,6.236000000000001],[-7.067,4.082],[-6.944,3.477],[-0.523,-2.944],[3.075,-5.328],[8.844,-5.328],[10.946,-5.755],[17.019,-11.828],[18.441,-15.556000000000001],[14.64,-19.357],[12.876,-20.526],[10.013,-20.526],[7.9510000000000005,-20.108999999999998],[3.997,-16.155],[3.483,-15.814],[-0.834,-15.814],[-1.439,-15.936000000000002],[-5.227,-19.724],[-5.682,-20.916],[0.072,-26.672],[0.587,-27.012],[7.022,-27.012],[7.627,-27.134],[10.659,-30.167],[11.113000000000001,-31.359],[9.711,-32.76],[8.519,-33.214999999999996],[7.067,-31.763],[6.553,-31.422],[-2.39,-31.422],[-2.995,-31.3],[-4.304,-29.991],[-4.819,-29.65],[-17.437,-29.65],[-18.042,-29.773],[-21.362,-33.092],[-21.875999999999998,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.525,-33.31],[-42.493,-31.341],[-43.008,-31],[-48.221,-31],[-48.826,-30.878],[-55.945,-23.759],[-56.400000000000006,-22.587],[-53.504,-19.569]],"o":[[-51.841,-19.552],[-49.345,-22.047],[-48.74,-22.169],[-36.252,-22.169],[-35.737,-21.828],[-33.087999999999994,-19.179],[-32.966,-18.574],[-32.966,-12.312],[-33.306,-11.797],[-40.712,-4.393],[-40.835,-3.788],[-40.835,2.3880000000000003],[-40.493,2.902],[-9.963999999999999,33.432],[-8.71,31.875],[-8.71,30.752],[-9.05,30.238],[-12.759,26.529],[-12.882,25.924],[-12.882,21.613000000000003],[-14.974,18.457],[-16.038,17.392],[-16.161,15.749000000000002],[-18.149,15.964],[-19.784,17.6],[-20.976,17.146],[-23.417,14.704],[-23.54,14.099],[-23.54,8.269],[-23.199,7.755],[-19.296,3.8510000000000004],[-18.691,3.729],[-11.521,3.729],[-11.006,4.07],[-8.32,6.755],[-7.067,5.198],[-7.067,3.7729999999999997],[-6.726,3.259],[1.004,-4.47],[5.235,-5.328],[9.917,-5.328],[11.705,-6.513],[18.441,-13.25],[17.019,-16.978],[13.891,-20.105999999999998],[11.817,-20.526],[8.96,-20.526],[7.206,-19.365],[3.779,-15.936000000000002],[3.174,-15.814],[-1.143,-15.814],[-1.657,-16.155],[-5.682,-20.179],[-5.227,-21.371],[0.291,-26.89],[0.895,-27.012],[7.331,-27.012],[7.845,-27.353],[11.113000000000001,-30.622],[10.659,-31.814],[9.256,-33.214999999999996],[8.064,-32.76],[6.848,-31.545],[6.243,-31.422],[-2.6990000000000003,-31.422],[-3.214,-31.082],[-4.523000000000001,-29.773],[-5.128,-29.65],[-17.746000000000002,-29.65],[-18.26,-29.991],[-21.58,-33.31],[-22.185,-33.432],[-34.695,-33.432],[-40.229,-33.432],[-40.743,-33.092],[-42.712,-31.123],[-43.317,-31],[-48.529999999999994,-31],[-49.045,-30.659],[-56.393,-23.311],[-55.962,-22.13],[-53.052,-19.098]],"v":[[-51.841,-19.552],[-49.564,-21.828],[-48.74,-22.169],[-36.561,-22.169],[-35.737,-21.828],[-33.306,-19.397],[-32.966,-18.574],[-32.966,-12.62],[-33.306,-11.797],[-40.493,-4.611],[-40.835,-3.788],[-40.835,2.079],[-40.493,2.902],[-10.697,32.698],[-8.71,31.875],[-8.71,31.061],[-9.05,30.238],[-12.541,26.747],[-12.882,25.924],[-12.882,23.507],[-14.974,18.457],[-15.82,17.611],[-16.161,16.786],[-18.149,15.964],[-19.33,17.146],[-20.976,17.146],[-23.199,14.922],[-23.54,14.099],[-23.54,8.578],[-23.199,7.755],[-19.514,4.07],[-18.691,3.729],[-11.829,3.729],[-11.006,4.07],[-9.054,6.022],[-7.067,5.198],[-7.067,4.082],[-6.726,3.259],[-0.523,-2.944],[5.235,-5.328],[8.844,-5.328],[11.705,-6.513],[17.019,-11.828],[17.019,-16.978],[14.64,-19.357],[11.817,-20.526],[10.013,-20.526],[7.206,-19.365],[3.997,-16.155],[3.174,-15.814],[-0.834,-15.814],[-1.657,-16.155],[-5.227,-19.724],[-5.227,-21.371],[0.072,-26.672],[0.895,-27.012],[7.022,-27.012],[7.845,-27.353],[10.659,-30.167],[10.659,-31.814],[9.711,-32.76],[8.064,-32.76],[7.067,-31.763],[6.243,-31.422],[-2.39,-31.422],[-3.214,-31.082],[-4.304,-29.991],[-5.128,-29.65],[-17.437,-29.65],[-18.26,-29.991],[-21.362,-33.092],[-22.185,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.743,-33.092],[-42.493,-31.341],[-43.317,-31],[-48.221,-31],[-49.045,-30.659],[-55.945,-23.759],[-55.962,-22.13],[-53.504,-19.569]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[56.65,43.52]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 4","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-18.884,-27.953],[-15.534,-31.303],[-13.216,-32.839],[-7.757,-32.839],[-5.063000000000001,-32.293],[-1.266,-28.496],[1.509,-26.656],[4.088,-26.471],[8.462,-22.097],[11.726,-19.933],[15.732,-19.518],[18.587,-16.663],[20.062,-14.437000000000001],[20.062,-12.023],[19.66,-10.040999999999999],[15.869,-6.25],[15.355,-5.473999999999999],[15.355,-3.231],[14.638,0.30600000000000005],[2.975,11.968],[1.649,13.969999999999999],[1.081,17.97],[-1.898,20.948],[-2.413,21.726],[-2.413,27.397],[-2.2279999999999998,28.310000000000002],[-0.699,29.839],[-0.3759999999999999,32.839],[-2.855,32.653],[-6.756,28.752],[-10.824,24.684],[-11.339,23.907],[-11.339,5.642],[-11.339,2.314],[-12.384,-2.84],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-11.512],[-20.062,-25.655],[-19.962,-26.333000000000002],[-19.026,-27.76]],"o":[[-18.799,-28.038],[-14.55,-32.286],[-11.825,-32.839],[-6.382,-32.839],[-4.091,-31.32],[-0.08899999999999997,-27.317999999999998],[3.6399999999999997,-26.656],[4.417,-26.142],[9.847,-20.711000000000002],[14.73,-19.933],[16.471,-18.779],[19.532,-15.719000000000001],[20.062,-13.101],[20.062,-11.011],[18.945,-9.325],[15.54,-5.92],[15.355,-5.007],[15.355,-1.426],[13.361,1.582],[2.1260000000000003,12.817],[1.649,16.599999999999998],[0.071,18.98],[-2.2279999999999998,21.278],[-2.413,22.191],[-2.413,27.862],[-1.898,28.64],[0.40900000000000014,30.945],[-2.408,32.839],[-3.184,32.324],[-6.756,28.752],[-11.154,24.355],[-11.339,23.441],[-11.339,5.642],[-11.339,-0.3169999999999997],[-14.244,-4.7],[-15.911,-6.367],[-19.360000000000003,-9.815],[-20.062,-13.279],[-20.062,-25.998],[-19.774,-26.62],[-18.96,-27.859]],"v":[[-18.799,-28.038],[-15.534,-31.303],[-11.825,-32.839],[-7.757,-32.839],[-4.091,-31.32],[-1.266,-28.496],[3.175,-26.656],[4.417,-26.142],[8.462,-22.097],[13.685,-19.933],[16.471,-18.779],[18.587,-16.663],[20.062,-13.101],[20.062,-12.023],[18.945,-9.325],[15.869,-6.25],[15.355,-5.007],[15.355,-3.231],[13.361,1.582],[2.975,11.968],[1.649,15.171],[0.071,18.98],[-1.898,20.948],[-2.413,22.191],[-2.413,27.397],[-1.898,28.64],[-0.699,29.839],[-1.942,32.839],[-3.184,32.324],[-6.756,28.752],[-10.824,24.684],[-11.339,23.441],[-11.339,5.642],[-11.339,2.314],[-14.244,-4.7],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-13.279],[-20.062,-25.655],[-19.774,-26.62],[-19.026,-27.76]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[67.169,99.76]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 5","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-23.953,-47.502],[-30.254,-41.201],[-31.296,-39.628],[-30.924000000000003,-36.846000000000004],[-27.782,-33.704],[-27.751,-33.657],[-28.114,-31.841],[-29.155,-30.799],[-31.146,-29.479],[-33.301,-29.479],[-35.993,-28.933],[-41.067,-23.86],[-42.646,-21.477],[-42.646,-18.446],[-42.362,-17.046],[-40.748,-15.806],[-38.321,-15.806],[-36.017,-16.273],[-30.957,-21.333],[-27.465,-22.665],[-25.425,-20.625],[-23.194,-19.146],[-18.996,-19.146],[-16.636,-19.624],[-15.619,-20.641],[-13.505,-22.043],[-9.678,-21.524],[-8.477,-20.322],[-6.889,-17.927],[-7.3790000000000004,-14.072],[-9.199,-12.252],[-11.513,-10.718],[-19.187,-10.718],[-22.445,-11.379],[-25.325,-14.259],[-28.865000000000002,-15.61],[-33.281,-12.228],[-39.785,-12.228],[-43.373,-11.5],[-50.475,-4.398],[-51.974,-2.137],[-51.974,4.274],[-51.309999999999995,7.545999999999999],[-45.992,12.865],[-43.331999999999994,14.627],[-37.699,14.627],[-34.223000000000006,15.332],[-29.739,19.816],[-28.95,20.606],[-26.608,24.139000000000003],[-26.608,32.717],[-26.009,35.672000000000004],[-24.746,36.935],[-22.986,39.591],[-22.986,44.015],[-22.401000000000003,46.900000000000006],[-18.133,51.167],[-15.937,52.622],[-11.674999999999999,52.026],[-6.195,46.545],[-4.535,44.041],[-4.535,37.369],[-4.083,35.14],[-3.255,34.312],[-1.226,31.251],[-1.226,24.594],[-0.359,20.392999999999997],[6.612,13.615],[8.038,11.511],[8.038,9.858],[7.414,6.840999999999999],[6.28,5.768],[5.183999999999999,3.0889999999999995],[9.359,-1.084],[10.47,-2.76],[10.47,-3.847],[10.905000000000001,-6.005],[11.700000000000001,-6.799],[13.037,-7.688],[15.679,-7.688],[19.667,-6.880000000000001],[29.22,2.674],[33.528999999999996,4.318],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[12.689,-46.995],[5.857,-46.995],[3.075,-46.431],[0.364,-43.72],[-1.809,-42.28],[-9.707,-42.28],[-12.489999999999998,-42.843999999999994],[-16.38,-46.735],[-18.368,-48.038],[-21.781,-47.974]],"o":[[-24.739,-46.716],[-30.921000000000003,-40.534],[-31.296,-37.745999999999995],[-30.26,-36.182],[-27.762,-33.684],[-27.751,-32.716],[-28.759,-31.195],[-30,-29.954],[-32.341,-29.479],[-34.675000000000004,-29.479],[-36.965,-27.962],[-42.078,-22.848],[-42.646,-20.047],[-42.646,-17.732000000000003],[-41.386,-16.07],[-40.083,-15.806],[-37.144999999999996,-15.806],[-35.186,-17.104],[-29.625,-22.665],[-26.133,-21.333],[-24.478,-19.677],[-21.855,-19.146],[-17.790999999999997,-19.146],[-15.783,-20.476],[-14.722,-21.537999999999997],[-10.93,-22.043],[-8.755,-20.6],[-7.460000000000001,-19.305999999999997],[-6.889,-15.255999999999998],[-8.252,-13.2],[-10.182,-11.270000000000001],[-12.902,-10.718],[-20.85,-10.718],[-23.62,-12.555],[-26.676,-15.61],[-31.516000000000002,-12.959],[-35.121,-12.228],[-41.617,-12.228],[-44.668,-10.205],[-51.435,-3.4389999999999996],[-51.974,-0.78],[-51.974,5.945],[-50.129,8.728],[-44.864,13.993],[-41.736,14.627],[-35.925,14.627],[-32.968,16.587],[-29.739,19.816],[-27.45,22.106],[-26.608,26.26],[-26.608,34.226],[-24.942,36.74],[-23.618,38.062000000000005],[-22.986,41.186],[-22.986,45.488],[-21.359,47.941],[-17.201,52.099000000000004],[-13.116,52.622],[-10.613,50.963],[-5.132000000000001,45.483000000000004],[-4.535,42.538],[-4.535,36.232],[-3.279,34.335],[-1.956,33.013],[-1.226,29.414],[-1.226,22.448],[1.18,18.897],[7.523,12.728],[8.038,10.24],[8.038,8.283000000000001],[6.299,5.784999999999999],[5.212,4.754],[6.209,2.066],[10.071,-1.796],[10.47,-3.766],[10.47,-4.9559999999999995],[11.689,-6.787999999999999],[12.273000000000001,-7.372],[13.833,-7.688],[17.715,-7.688],[21.106,-5.44],[30.863999999999997,4.318],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[14.797999999999998,-47.869],[10.491,-46.995],[4.437,-46.995],[2.071,-45.427],[-0.558,-42.798],[-3.114,-42.28],[-11.128,-42.28],[-13.495,-43.849],[-17.221999999999998,-47.575],[-19.558,-48.016],[-22.893,-47.952999999999996]],"v":[[-24.739,-46.716],[-30.254,-41.201],[-31.296,-38.684],[-30.26,-36.182],[-27.782,-33.704],[-27.751,-33.629],[-28.759,-31.195],[-29.155,-30.799],[-32.341,-29.479],[-33.301,-29.479],[-36.965,-27.962],[-41.067,-23.86],[-42.646,-20.047],[-42.646,-18.446],[-41.856,-16.54],[-40.083,-15.806],[-38.321,-15.806],[-35.186,-17.104],[-30.957,-21.333],[-26.133,-21.333],[-25.425,-20.625],[-21.855,-19.146],[-18.996,-19.146],[-15.783,-20.476],[-15.619,-20.641],[-12.236,-22.043],[-8.755,-20.6],[-8.477,-20.322],[-6.889,-16.49],[-8.252,-13.2],[-9.199,-12.252],[-12.902,-10.718],[-19.187,-10.718],[-23.62,-12.555],[-25.325,-14.259],[-30.216,-14.259],[-35.121,-12.228],[-39.785,-12.228],[-44.668,-10.205],[-50.475,-4.398],[-51.974,-0.78],[-51.974,4.274],[-50.129,8.728],[-45.992,12.865],[-41.736,14.627],[-37.699,14.627],[-32.968,16.587],[-29.739,19.816],[-28.95,20.606],[-26.608,26.26],[-26.608,32.717],[-24.942,36.74],[-24.746,36.935],[-22.986,41.186],[-22.986,44.015],[-21.359,47.941],[-18.133,51.167],[-14.619,52.622],[-10.613,50.963],[-6.195,46.545],[-4.535,42.538],[-4.535,37.369],[-3.279,34.335],[-3.255,34.312],[-1.226,29.414],[-1.226,24.594],[1.18,18.897],[6.612,13.615],[8.038,10.24],[8.038,9.858],[6.317,5.802],[6.261,5.75],[6.209,2.066],[9.359,-1.084],[10.47,-3.766],[10.47,-3.847],[11.678,-6.778],[11.71,-6.809],[13.833,-7.688],[15.679,-7.688],[21.106,-5.44],[29.22,2.674],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[10.491,-46.995],[5.857,-46.995],[2.071,-45.427],[0.364,-43.72],[-3.114,-42.28],[-9.707,-42.28],[-13.495,-43.849],[-16.38,-46.735],[-19.558,-48.016],[-21.781,-47.974]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[138.554,58.917]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":3,"completed":true},{"ty":4,"nm":"Layer 12 Outlines","sr":1,"st":0,"op":251,"ip":0,"hd":false,"ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[113.024,66.425,0]},"s":{"a":0,"k":[200,200,100]},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-233.69,259.035,0],"t":0,"ti":null,"to":null},{"s":[737.31,259.035,0],"t":250}]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100}},"ef":[],"shapes":[{"ty":"gr","bm":0,"hd":false,"nm":"Group 1","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-8.234,1.218],[-6.919,2.533],[-4.181,3.578],[-2.453,1.852],[0.05600000000000005,0.188],[5.715,0.188],[6.329,0.064],[7.218,-0.825],[7.514,-3.579],[4.024,-3.579],[3.409,-3.4539999999999997],[2.946,-2.99],[0.41900000000000004,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.063,-1.203],[-7.357,-0.926]],"o":[[-7.407,2.045],[-5.874,3.578],[-3.136,2.533],[-1.388,0.7870000000000001],[1.562,0.188],[6.029,0.188],[6.551,-0.158],[8.234,-1.8419999999999999],[6.077,-3.579],[3.71,-3.579],[3.187,-3.231],[1.8730000000000002,-1.9180000000000001],[-1.097,-1.316],[-3.038,-1.316],[-6.774,-1.316],[-7.282,-0.997],[-8.211,-0.127]],"v":[[-7.407,2.045],[-6.919,2.533],[-3.136,2.533],[-2.453,1.852],[1.562,0.188],[5.715,0.188],[6.551,-0.158],[7.218,-0.825],[6.077,-3.579],[4.024,-3.579],[3.187,-3.231],[2.946,-2.99],[-1.097,-1.316],[-3.038,-1.316],[-6.474,-1.316],[-7.282,-0.997],[-7.357,-0.926]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[74.11,5.597]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 2","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-14.83,-0.45899999999999996],[-11.507,2.865],[-10.755,3.9989999999999997],[-10.755,5.354],[-10.337,7.411],[-9.108,8.641],[-6.12,9.781],[-3.177,6.837],[-0.8619999999999999,5.303],[3.022,5.303],[5.5840000000000005,4.783],[13.23,-2.862],[14.844000000000001,-7.093000000000001],[11.609,-9.781],[1.499,-9.781],[-1.8379999999999999,-9.105],[-4.044,-6.898],[-5.696,-5.803],[-10.216,-5.803],[-12.087,-5.417],[-13.547,-3.919]],"o":[[-13.515,0.856],[-11.025,3.3470000000000004],[-10.755,4.68],[-10.755,6.404],[-9.595,8.154],[-7.968000000000001,9.781],[-4.981,8.641],[-2.1950000000000003,5.8549999999999995],[0.528,5.303],[4.33,5.303],[6.509,3.858],[14.844000000000001,-4.477],[12.542,-9.395000000000001],[10.636,-9.781],[-0.20399999999999996,-9.781],[-3.042,-7.901],[-4.744999999999999,-6.197],[-6.688,-5.803],[-11.171999999999999,-5.803],[-12.754,-4.733],[-14.844000000000001,-2.5869999999999997]],"v":[[-13.515,0.856],[-11.507,2.865],[-10.755,4.68],[-10.755,5.354],[-9.595,8.154],[-9.108,8.641],[-4.981,8.641],[-3.177,6.837],[0.528,5.303],[3.022,5.303],[6.509,3.858],[13.23,-2.862],[13.23,-8.707],[10.636,-9.781],[1.499,-9.781],[-3.042,-7.901],[-4.044,-6.898],[-6.688,-5.803],[-10.216,-5.803],[-12.754,-4.733],[-13.547,-3.919]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[94.717,10.032]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 3","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-52.302,-19.091],[-49.564,-21.828],[-49.049,-22.169],[-36.561,-22.169],[-35.956,-22.047],[-33.306,-19.397],[-32.966,-18.883000000000003],[-32.966,-12.62],[-33.087999999999994,-12.016],[-40.493,-4.611],[-40.835,-4.0969999999999995],[-40.835,2.079],[-40.712,2.684],[-10.697,32.698],[-8.71,32.912],[-8.71,31.061],[-8.832,30.456],[-12.541,26.747],[-12.882,26.233],[-12.882,23.507],[-13.634,19.796],[-15.82,17.611],[-16.161,17.095000000000002],[-17.415,15.231],[-19.33,17.146],[-20.522,17.6],[-23.199,14.922],[-23.54,14.407],[-23.54,8.578],[-23.417,7.973],[-19.514,4.07],[-19,3.729],[-11.829,3.729],[-11.224,3.8510000000000004],[-9.054,6.022],[-7.067,6.236000000000001],[-7.067,4.082],[-6.944,3.477],[-0.523,-2.944],[3.075,-5.328],[8.844,-5.328],[10.946,-5.755],[17.019,-11.828],[18.441,-15.556000000000001],[14.64,-19.357],[12.876,-20.526],[10.013,-20.526],[7.9510000000000005,-20.108999999999998],[3.997,-16.155],[3.483,-15.814],[-0.834,-15.814],[-1.439,-15.936000000000002],[-5.227,-19.724],[-5.682,-20.916],[0.072,-26.672],[0.587,-27.012],[7.022,-27.012],[7.627,-27.134],[10.659,-30.167],[11.113000000000001,-31.359],[9.711,-32.76],[8.519,-33.214999999999996],[7.067,-31.763],[6.553,-31.422],[-2.39,-31.422],[-2.995,-31.3],[-4.304,-29.991],[-4.819,-29.65],[-17.437,-29.65],[-18.042,-29.773],[-21.362,-33.092],[-21.875999999999998,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.525,-33.31],[-42.493,-31.341],[-43.008,-31],[-48.221,-31],[-48.826,-30.878],[-55.945,-23.759],[-56.400000000000006,-22.587],[-53.504,-19.569]],"o":[[-51.841,-19.552],[-49.345,-22.047],[-48.74,-22.169],[-36.252,-22.169],[-35.737,-21.828],[-33.087999999999994,-19.179],[-32.966,-18.574],[-32.966,-12.312],[-33.306,-11.797],[-40.712,-4.393],[-40.835,-3.788],[-40.835,2.3880000000000003],[-40.493,2.902],[-9.963999999999999,33.432],[-8.71,31.875],[-8.71,30.752],[-9.05,30.238],[-12.759,26.529],[-12.882,25.924],[-12.882,21.613000000000003],[-14.974,18.457],[-16.038,17.392],[-16.161,15.749000000000002],[-18.149,15.964],[-19.784,17.6],[-20.976,17.146],[-23.417,14.704],[-23.54,14.099],[-23.54,8.269],[-23.199,7.755],[-19.296,3.8510000000000004],[-18.691,3.729],[-11.521,3.729],[-11.006,4.07],[-8.32,6.755],[-7.067,5.198],[-7.067,3.7729999999999997],[-6.726,3.259],[1.004,-4.47],[5.235,-5.328],[9.917,-5.328],[11.705,-6.513],[18.441,-13.25],[17.019,-16.978],[13.891,-20.105999999999998],[11.817,-20.526],[8.96,-20.526],[7.206,-19.365],[3.779,-15.936000000000002],[3.174,-15.814],[-1.143,-15.814],[-1.657,-16.155],[-5.682,-20.179],[-5.227,-21.371],[0.291,-26.89],[0.895,-27.012],[7.331,-27.012],[7.845,-27.353],[11.113000000000001,-30.622],[10.659,-31.814],[9.256,-33.214999999999996],[8.064,-32.76],[6.848,-31.545],[6.243,-31.422],[-2.6990000000000003,-31.422],[-3.214,-31.082],[-4.523000000000001,-29.773],[-5.128,-29.65],[-17.746000000000002,-29.65],[-18.26,-29.991],[-21.58,-33.31],[-22.185,-33.432],[-34.695,-33.432],[-40.229,-33.432],[-40.743,-33.092],[-42.712,-31.123],[-43.317,-31],[-48.529999999999994,-31],[-49.045,-30.659],[-56.393,-23.311],[-55.962,-22.13],[-53.052,-19.098]],"v":[[-51.841,-19.552],[-49.564,-21.828],[-48.74,-22.169],[-36.561,-22.169],[-35.737,-21.828],[-33.306,-19.397],[-32.966,-18.574],[-32.966,-12.62],[-33.306,-11.797],[-40.493,-4.611],[-40.835,-3.788],[-40.835,2.079],[-40.493,2.902],[-10.697,32.698],[-8.71,31.875],[-8.71,31.061],[-9.05,30.238],[-12.541,26.747],[-12.882,25.924],[-12.882,23.507],[-14.974,18.457],[-15.82,17.611],[-16.161,16.786],[-18.149,15.964],[-19.33,17.146],[-20.976,17.146],[-23.199,14.922],[-23.54,14.099],[-23.54,8.578],[-23.199,7.755],[-19.514,4.07],[-18.691,3.729],[-11.829,3.729],[-11.006,4.07],[-9.054,6.022],[-7.067,5.198],[-7.067,4.082],[-6.726,3.259],[-0.523,-2.944],[5.235,-5.328],[8.844,-5.328],[11.705,-6.513],[17.019,-11.828],[17.019,-16.978],[14.64,-19.357],[11.817,-20.526],[10.013,-20.526],[7.206,-19.365],[3.997,-16.155],[3.174,-15.814],[-0.834,-15.814],[-1.657,-16.155],[-5.227,-19.724],[-5.227,-21.371],[0.072,-26.672],[0.895,-27.012],[7.022,-27.012],[7.845,-27.353],[10.659,-30.167],[10.659,-31.814],[9.711,-32.76],[8.064,-32.76],[7.067,-31.763],[6.243,-31.422],[-2.39,-31.422],[-3.214,-31.082],[-4.304,-29.991],[-5.128,-29.65],[-17.437,-29.65],[-18.26,-29.991],[-21.362,-33.092],[-22.185,-33.432],[-34.695,-33.432],[-39.92,-33.432],[-40.743,-33.092],[-42.493,-31.341],[-43.317,-31],[-48.221,-31],[-49.045,-30.659],[-55.945,-23.759],[-55.962,-22.13],[-53.504,-19.569]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[56.65,43.52]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 4","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-18.884,-27.953],[-15.534,-31.303],[-13.216,-32.839],[-7.757,-32.839],[-5.063000000000001,-32.293],[-1.266,-28.496],[1.509,-26.656],[4.088,-26.471],[8.462,-22.097],[11.726,-19.933],[15.732,-19.518],[18.587,-16.663],[20.062,-14.437000000000001],[20.062,-12.023],[19.66,-10.040999999999999],[15.869,-6.25],[15.355,-5.473999999999999],[15.355,-3.231],[14.638,0.30600000000000005],[2.975,11.968],[1.649,13.969999999999999],[1.081,17.97],[-1.898,20.948],[-2.413,21.726],[-2.413,27.397],[-2.2279999999999998,28.310000000000002],[-0.699,29.839],[-0.3759999999999999,32.839],[-2.855,32.653],[-6.756,28.752],[-10.824,24.684],[-11.339,23.907],[-11.339,5.642],[-11.339,2.314],[-12.384,-2.84],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-11.512],[-20.062,-25.655],[-19.962,-26.333000000000002],[-19.026,-27.76]],"o":[[-18.799,-28.038],[-14.55,-32.286],[-11.825,-32.839],[-6.382,-32.839],[-4.091,-31.32],[-0.08899999999999997,-27.317999999999998],[3.6399999999999997,-26.656],[4.417,-26.142],[9.847,-20.711000000000002],[14.73,-19.933],[16.471,-18.779],[19.532,-15.719000000000001],[20.062,-13.101],[20.062,-11.011],[18.945,-9.325],[15.54,-5.92],[15.355,-5.007],[15.355,-1.426],[13.361,1.582],[2.1260000000000003,12.817],[1.649,16.599999999999998],[0.071,18.98],[-2.2279999999999998,21.278],[-2.413,22.191],[-2.413,27.862],[-1.898,28.64],[0.40900000000000014,30.945],[-2.408,32.839],[-3.184,32.324],[-6.756,28.752],[-11.154,24.355],[-11.339,23.441],[-11.339,5.642],[-11.339,-0.3169999999999997],[-14.244,-4.7],[-15.911,-6.367],[-19.360000000000003,-9.815],[-20.062,-13.279],[-20.062,-25.998],[-19.774,-26.62],[-18.96,-27.859]],"v":[[-18.799,-28.038],[-15.534,-31.303],[-11.825,-32.839],[-7.757,-32.839],[-4.091,-31.32],[-1.266,-28.496],[3.175,-26.656],[4.417,-26.142],[8.462,-22.097],[13.685,-19.933],[16.471,-18.779],[18.587,-16.663],[20.062,-13.101],[20.062,-12.023],[18.945,-9.325],[15.869,-6.25],[15.355,-5.007],[15.355,-3.231],[13.361,1.582],[2.975,11.968],[1.649,15.171],[0.071,18.98],[-1.898,20.948],[-2.413,22.191],[-2.413,27.397],[-1.898,28.64],[-0.699,29.839],[-1.942,32.839],[-3.184,32.324],[-6.756,28.752],[-10.824,24.684],[-11.339,23.441],[-11.339,5.642],[-11.339,2.314],[-14.244,-4.7],[-15.911,-6.367],[-18.109,-8.565],[-20.062,-13.279],[-20.062,-25.655],[-19.774,-26.62],[-19.026,-27.76]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[67.169,99.76]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true},{"ty":"gr","bm":0,"hd":false,"nm":"Group 5","it":[{"ty":"sh","bm":0,"hd":false,"nm":"Path 1","d":1,"ks":{"a":0,"k":{"c":true,"i":[[-23.953,-47.502],[-30.254,-41.201],[-31.296,-39.628],[-30.924000000000003,-36.846000000000004],[-27.782,-33.704],[-27.751,-33.657],[-28.114,-31.841],[-29.155,-30.799],[-31.146,-29.479],[-33.301,-29.479],[-35.993,-28.933],[-41.067,-23.86],[-42.646,-21.477],[-42.646,-18.446],[-42.362,-17.046],[-40.748,-15.806],[-38.321,-15.806],[-36.017,-16.273],[-30.957,-21.333],[-27.465,-22.665],[-25.425,-20.625],[-23.194,-19.146],[-18.996,-19.146],[-16.636,-19.624],[-15.619,-20.641],[-13.505,-22.043],[-9.678,-21.524],[-8.477,-20.322],[-6.889,-17.927],[-7.3790000000000004,-14.072],[-9.199,-12.252],[-11.513,-10.718],[-19.187,-10.718],[-22.445,-11.379],[-25.325,-14.259],[-28.865000000000002,-15.61],[-33.281,-12.228],[-39.785,-12.228],[-43.373,-11.5],[-50.475,-4.398],[-51.974,-2.137],[-51.974,4.274],[-51.309999999999995,7.545999999999999],[-45.992,12.865],[-43.331999999999994,14.627],[-37.699,14.627],[-34.223000000000006,15.332],[-29.739,19.816],[-28.95,20.606],[-26.608,24.139000000000003],[-26.608,32.717],[-26.009,35.672000000000004],[-24.746,36.935],[-22.986,39.591],[-22.986,44.015],[-22.401000000000003,46.900000000000006],[-18.133,51.167],[-15.937,52.622],[-11.674999999999999,52.026],[-6.195,46.545],[-4.535,44.041],[-4.535,37.369],[-4.083,35.14],[-3.255,34.312],[-1.226,31.251],[-1.226,24.594],[-0.359,20.392999999999997],[6.612,13.615],[8.038,11.511],[8.038,9.858],[7.414,6.840999999999999],[6.28,5.768],[5.183999999999999,3.0889999999999995],[9.359,-1.084],[10.47,-2.76],[10.47,-3.847],[10.905000000000001,-6.005],[11.700000000000001,-6.799],[13.037,-7.688],[15.679,-7.688],[19.667,-6.880000000000001],[29.22,2.674],[33.528999999999996,4.318],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[12.689,-46.995],[5.857,-46.995],[3.075,-46.431],[0.364,-43.72],[-1.809,-42.28],[-9.707,-42.28],[-12.489999999999998,-42.843999999999994],[-16.38,-46.735],[-18.368,-48.038],[-21.781,-47.974]],"o":[[-24.739,-46.716],[-30.921000000000003,-40.534],[-31.296,-37.745999999999995],[-30.26,-36.182],[-27.762,-33.684],[-27.751,-32.716],[-28.759,-31.195],[-30,-29.954],[-32.341,-29.479],[-34.675000000000004,-29.479],[-36.965,-27.962],[-42.078,-22.848],[-42.646,-20.047],[-42.646,-17.732000000000003],[-41.386,-16.07],[-40.083,-15.806],[-37.144999999999996,-15.806],[-35.186,-17.104],[-29.625,-22.665],[-26.133,-21.333],[-24.478,-19.677],[-21.855,-19.146],[-17.790999999999997,-19.146],[-15.783,-20.476],[-14.722,-21.537999999999997],[-10.93,-22.043],[-8.755,-20.6],[-7.460000000000001,-19.305999999999997],[-6.889,-15.255999999999998],[-8.252,-13.2],[-10.182,-11.270000000000001],[-12.902,-10.718],[-20.85,-10.718],[-23.62,-12.555],[-26.676,-15.61],[-31.516000000000002,-12.959],[-35.121,-12.228],[-41.617,-12.228],[-44.668,-10.205],[-51.435,-3.4389999999999996],[-51.974,-0.78],[-51.974,5.945],[-50.129,8.728],[-44.864,13.993],[-41.736,14.627],[-35.925,14.627],[-32.968,16.587],[-29.739,19.816],[-27.45,22.106],[-26.608,26.26],[-26.608,34.226],[-24.942,36.74],[-23.618,38.062000000000005],[-22.986,41.186],[-22.986,45.488],[-21.359,47.941],[-17.201,52.099000000000004],[-13.116,52.622],[-10.613,50.963],[-5.132000000000001,45.483000000000004],[-4.535,42.538],[-4.535,36.232],[-3.279,34.335],[-1.956,33.013],[-1.226,29.414],[-1.226,22.448],[1.18,18.897],[7.523,12.728],[8.038,10.24],[8.038,8.283000000000001],[6.299,5.784999999999999],[5.212,4.754],[6.209,2.066],[10.071,-1.796],[10.47,-3.766],[10.47,-4.9559999999999995],[11.689,-6.787999999999999],[12.273000000000001,-7.372],[13.833,-7.688],[17.715,-7.688],[21.106,-5.44],[30.863999999999997,4.318],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[14.797999999999998,-47.869],[10.491,-46.995],[4.437,-46.995],[2.071,-45.427],[-0.558,-42.798],[-3.114,-42.28],[-11.128,-42.28],[-13.495,-43.849],[-17.221999999999998,-47.575],[-19.558,-48.016],[-22.893,-47.952999999999996]],"v":[[-24.739,-46.716],[-30.254,-41.201],[-31.296,-38.684],[-30.26,-36.182],[-27.782,-33.704],[-27.751,-33.629],[-28.759,-31.195],[-29.155,-30.799],[-32.341,-29.479],[-33.301,-29.479],[-36.965,-27.962],[-41.067,-23.86],[-42.646,-20.047],[-42.646,-18.446],[-41.856,-16.54],[-40.083,-15.806],[-38.321,-15.806],[-35.186,-17.104],[-30.957,-21.333],[-26.133,-21.333],[-25.425,-20.625],[-21.855,-19.146],[-18.996,-19.146],[-15.783,-20.476],[-15.619,-20.641],[-12.236,-22.043],[-8.755,-20.6],[-8.477,-20.322],[-6.889,-16.49],[-8.252,-13.2],[-9.199,-12.252],[-12.902,-10.718],[-19.187,-10.718],[-23.62,-12.555],[-25.325,-14.259],[-30.216,-14.259],[-35.121,-12.228],[-39.785,-12.228],[-44.668,-10.205],[-50.475,-4.398],[-51.974,-0.78],[-51.974,4.274],[-50.129,8.728],[-45.992,12.865],[-41.736,14.627],[-37.699,14.627],[-32.968,16.587],[-29.739,19.816],[-28.95,20.606],[-26.608,26.26],[-26.608,32.717],[-24.942,36.74],[-24.746,36.935],[-22.986,41.186],[-22.986,44.015],[-21.359,47.941],[-18.133,51.167],[-14.619,52.622],[-10.613,50.963],[-6.195,46.545],[-4.535,42.538],[-4.535,37.369],[-3.279,34.335],[-3.255,34.312],[-1.226,29.414],[-1.226,24.594],[1.18,18.897],[6.612,13.615],[8.038,10.24],[8.038,9.858],[6.317,5.802],[6.261,5.75],[6.209,2.066],[9.359,-1.084],[10.47,-3.766],[10.47,-3.847],[11.678,-6.778],[11.71,-6.809],[13.833,-7.688],[15.679,-7.688],[21.106,-5.44],[29.22,2.674],[35.174,2.674],[40.045,-2.197],[43.157,0.916],[43.157,5.326],[48.13,10.298],[55.523,10.298],[58.528,7.293],[58.528,-1.764],[63.165,-6.402],[63.165,-19.059],[65.554,-19.059],[71.261,-24.766],[71.261,-32.03],[65.295,-37.997],[69.965,-42.667],[74.72,-42.667],[74.72,-34.798],[80.168,-29.349],[83.627,-32.808],[83.627,-40.159],[87.13,-43.661],[82.59,-48.201],[71.607,-48.201],[68.711,-51.098],[44.801,-51.098],[42.011,-48.309],[33.213,-48.309],[28.9,-52.622],[19.551,-52.622],[16.351,-49.423],[10.491,-46.995],[5.857,-46.995],[2.071,-45.427],[0.364,-43.72],[-3.114,-42.28],[-9.707,-42.28],[-13.495,-43.849],[-16.38,-46.735],[-19.558,-48.016],[-21.781,-47.974]]}},"_render":true},{"ty":"fl","bm":0,"hd":false,"nm":"Fill 1","c":{"a":0,"k":[0.1804,0.0118,0.898,1]},"r":1,"o":{"a":0,"k":100},"_render":true},{"ty":"tr","a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"sk":{"a":0,"k":0},"p":{"a":0,"k":[138.554,58.917]},"r":{"a":0,"k":0},"sa":{"a":0,"k":0},"o":{"a":0,"k":100},"_render":true}],"_render":true}],"ind":4,"completed":true}]}],"__complete":true} \ No newline at end of file diff --git a/FE/src/assets/lottie/refresh.json b/FE/src/assets/lottie/refresh.json new file mode 100644 index 00000000..b8b35a4b --- /dev/null +++ b/FE/src/assets/lottie/refresh.json @@ -0,0 +1 @@ +{"v":"5.5.7","meta":{"g":"LottieFiles AE 0.1.9","a":"","k":"","d":"","tc":""},"fr":30,"ip":0,"op":60,"w":300,"h":300,"nm":"delete_folder_02_05","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Layer 42","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[230]},{"t":45,"s":[579]}],"ix":10},"p":{"s":true,"x":{"a":0,"k":155,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.32],"y":[1.27]},"o":{"x":[0.17],"y":[0.89]},"t":20,"s":[165.167]},{"i":{"x":[0.32],"y":[1.27]},"o":{"x":[0.17],"y":[0.89]},"t":25,"s":[170.167]},{"i":{"x":[0.32],"y":[1.27]},"o":{"x":[0.17],"y":[0.89]},"t":30.001,"s":[160.167]},{"t":35,"s":[170.167]}],"ix":4}},"a":{"a":0,"k":[5,67.375,0],"ix":1},"s":{"a":0,"k":[85,85,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":[[17.796,126.079],[3.429,111.712],[18.469,96.671]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":12,"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":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-17.25],[24.301,0]],"o":[[29.791,0],[0,24.301],[0,0]],"v":[[5.503,23.682],[49,67.487],[5,111.487]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":12,"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 3","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":[[0,0],[0,16.99],[-24.301,0]],"o":[[-14.099,-7.332],[0,-24.301],[0,0]],"v":[[-15.272,106.55],[-39,67.487],[5,23.487]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":12,"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 4","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":20,"op":80,"st":20,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":0,"k":149.778,"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.32],"y":[1.27]},"o":{"x":[0.17],"y":[0.89]},"t":25,"s":[150.167]},{"i":{"x":[0.32],"y":[1.27]},"o":{"x":[0.17],"y":[0.89]},"t":30,"s":[155.167]},{"i":{"x":[0.32],"y":[1.27]},"o":{"x":[0.17],"y":[0.89]},"t":35.001,"s":[145.167]},{"t":40,"s":[155.167]}],"ix":4}},"a":{"a":0,"k":[-0.222,0.167,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":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[104.444,89.5],[-104.889,89.5],[-104.889,-57.167],[-0.222,-57.167],[32.278,-89.167],[104.444,-89.167]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":12,"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.5],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":15,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim In Path","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":60,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/FE/src/assets/lottie/watiRoom.json b/FE/src/assets/lottie/watiRoom.json new file mode 100644 index 00000000..9d821f4a --- /dev/null +++ b/FE/src/assets/lottie/watiRoom.json @@ -0,0 +1 @@ +{"v":"5.5.7","meta":{"g":"LottieFiles AE 0.1.20","a":"","k":"","d":"","tc":""},"fr":25,"ip":0,"op":125,"w":30,"h":30,"nm":"Groups","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":44,"s":[25.503,13.134,0],"to":null,"ti":null},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[25.503,12.556,0],"to":null,"ti":null},{"t":74,"s":[25.503,13.134,0]}],"ix":2},"a":{"a":0,"k":[0,0,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":[[-2.807,-5.498],[-2.716,-5.527],[-2.245,-5.572],[3.569,-3.077],[1.0739999999999998,5.572]],"o":[[-2.807,-5.498],[-2.716,-5.527],[1.0739999999999998,-5.572],[3.569,3.077],[-2.003,5.572]],"v":[[-2.807,-5.498],[-2.716,-5.527],[-2.003,-5.572],[3.569,0],[-2.003,5.572]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[0.3255,0.349,0.9922,1]},{"t":26,"s":[0,0.5725,0.8941,1]}],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"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","_render":true}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":125,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[26.912,20.33,0],"ix":2},"a":{"a":0,"k":[0,0,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":[[0.904,2.107],[-0.3340000000000001,-1.5490000000000002]],"o":[[1.046,0.11500000000000021],[-1.046,-2.107]],"v":[[0.904,2.107],[-1.046,-2.107]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[0.3255,0.349,0.9922,1]},{"t":26,"s":[0,0.5725,0.8941,1]}],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"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","_render":true}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":125,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[3.018,20.33,0],"ix":2},"a":{"a":0,"k":[0,0,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":[[-0.904,2.107],[0.3340000000000001,-1.5490000000000002]],"o":[[-1.046,0.11500000000000021],[1.046,-2.107]],"v":[[-0.904,2.107],[1.046,-2.107]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[0.3255,0.349,0.9922,1]},{"t":26,"s":[0,0.5725,0.8941,1]}],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"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","_render":true}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":125,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":29,"s":[4.458,13.134,0],"to":null,"ti":null},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":43,"s":[4.458,12.509,0],"to":null,"ti":null},{"t":59,"s":[4.458,13.134,0]}],"ix":2},"a":{"a":0,"k":[0,0,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":[[3.376,-5.395],[2.4170000000000003,-5.572],[-3.599,-3.077],[-1.1039999999999999,5.572]],"o":[[2.848,-5.52],[-1.1039999999999999,-5.572],[-3.599,3.077],[1.973,5.572]],"v":[[3.262,-5.422],[1.973,-5.572],[-3.599,0],[1.973,5.572]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[0.3255,0.349,0.9922,1]},{"t":26,"s":[0,0.5725,0.8941,1]}],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"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","_render":true}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":125,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":5,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[9.953,22.883,0],"ix":2},"a":{"a":0,"k":[0,0,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":[[-1.337,3.117],[0.4950000000000001,-2.292]],"o":[[-1.547,0.17099999999999982],[1.548,-3.117]],"v":[[-1.337,3.117],[1.548,-3.117]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[0.3255,0.349,0.9922,1]},{"t":26,"s":[0,0.5725,0.8941,1]}],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"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","_render":true}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":125,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":6,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[20.047,22.883,0],"ix":2},"a":{"a":0,"k":[0,0,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":[[1.337,3.117],[-0.4950000000000001,-2.292]],"o":[[1.547,0.17099999999999982],[-1.548,-3.117]],"v":[[1.337,3.117],[-1.548,-3.117]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[0.3255,0.349,0.9922,1]},{"t":26,"s":[0,0.5725,0.8941,1]}],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"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","_render":true}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":125,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":7,"ty":3,"nm":"Null 2","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[4]},{"t":46,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":24,"s":[14.75,20,0],"to":null,"ti":null},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":35,"s":[14.75,19.5,0],"to":null,"ti":null},{"t":46,"s":[14.75,20,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[11,11,100],"ix":6}},"ao":0,"ip":0,"op":125,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":8,"ty":4,"nm":"mouth","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[2.875,-63.072,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[909.091,909.091,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.309,-0.41],[-0.6,0.41],[1.1099999999999999,0.069]],"o":[[-1.1099999999999999,0.069],[0.6,0.41],[1.309,-0.41]],"v":[[-1.309,-0.41],[0,0.41],[1.309,-0.41]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[0.3255,0.349,0.9922,1]},{"t":26,"s":[0,0.5725,0.8941,1]}],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"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","_render":true}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":125,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":9,"ty":4,"nm":"eye L","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-38.865,-71.913,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":26,"s":[909.091,909.091,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":29.637,"s":[909.091,168.364,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":34,"s":[909.091,909.091,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":53,"s":[909.091,909.091,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":56.637,"s":[909.091,168.364,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":61,"s":[909.091,909.091,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":83,"s":[909.091,909.091,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":86.637,"s":[909.091,168.364,100]},{"t":91,"s":[909.091,909.091,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.377],[0,0.377]],"o":[[0,-0.377],[0,0.377]],"v":[[0,-0.377],[0,0.377]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[0.3255,0.349,0.9922,1]},{"t":26,"s":[0,0.5725,0.8941,1]}],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"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","_render":true}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":125,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":10,"ty":4,"nm":"Eye R","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[43.411,-71.913,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":26,"s":[909.091,909.091,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":29.637,"s":[909.091,168.364,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":34,"s":[909.091,909.091,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":53,"s":[909.091,909.091,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":56.637,"s":[909.091,168.364,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":61,"s":[909.091,909.091,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":83,"s":[909.091,909.091,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":86.637,"s":[909.091,168.364,100]},{"t":91,"s":[909.091,909.091,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.377],[0,0.377]],"o":[[0,-0.377],[0,0.377]],"v":[[0,-0.377],[0,0.377]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[0.3255,0.349,0.9922,1]},{"t":26,"s":[0,0.5725,0.8941,1]}],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"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","_render":true}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":125,"st":0,"bm":0,"completed":true},{"ddd":0,"ind":11,"ty":4,"nm":"Shape Layer 1","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[2.273,-70.536,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[909.091,909.091,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.241,-4.551],[4.551,8.241],[-8.241,4.551],[-4.551,-8.241]],"o":[[8.241,4.551],[-4.551,8.241],[-8.241,-4.551],[4.551,-8.241]],"v":[[8.241,0],[0,8.241],[-8.241,0],[0,-8.241]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false,"_render":true},{"ty":"st","c":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":22,"s":[0.3255,0.349,0.9922,1]},{"t":26,"s":[0,0.5725,0.8941,1]}],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.5,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false,"_render":true},{"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","_render":true}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false,"_render":true}],"ip":0,"op":125,"st":0,"bm":0,"completed":true}],"markers":[],"__complete":true} \ No newline at end of file From cdaf0c3decd7346fbc43e262ac228e03a1016a75 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:04:01 +0900 Subject: [PATCH 41/58] =?UTF-8?q?feat:=20=EB=A1=9C=ED=8B=B0=20=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=20index=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/assets/lottie/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 FE/src/assets/lottie/index.ts diff --git a/FE/src/assets/lottie/index.ts b/FE/src/assets/lottie/index.ts new file mode 100644 index 00000000..de2658fc --- /dev/null +++ b/FE/src/assets/lottie/index.ts @@ -0,0 +1,6 @@ +import gameCreate from './gameCreate.json'; +import waitRoom from './watiRoom.json'; +import pin from './pin.json'; +import createQuiz from './createQuiz.json'; + +export { gameCreate, waitRoom, pin, createQuiz }; From 0922e59fedef7782b5095714d2761a6eaa382f6f Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:04:11 +0900 Subject: [PATCH 42/58] =?UTF-8?q?feat:=20=EC=BB=A4=EC=8A=A4=ED=85=80=20?= =?UTF-8?q?=EB=B2=84=ED=8A=BC=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/components/CustomButton.tsx | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 FE/src/components/CustomButton.tsx diff --git a/FE/src/components/CustomButton.tsx b/FE/src/components/CustomButton.tsx new file mode 100644 index 00000000..29b12d38 --- /dev/null +++ b/FE/src/components/CustomButton.tsx @@ -0,0 +1,40 @@ +type CustomButtonProps = { + text: string; + onClick?: () => void; + className?: string; + color?: 'blue' | 'green' | 'red' | 'yellow'; // 색상 옵션 + size?: 'full' | 'half' | 'third' | 'small'; // 버튼 크기 옵션 +}; + +const CustomButton: React.FC = ({ + text, + onClick, + className, + color = 'blue', + size = 'full' +}) => { + const colorClass = { + blue: 'bg-blue-500 hover:bg-blue-600 active:bg-blue-700', + green: 'bg-green-500 hover:bg-green-600 active:bg-green-700', + red: 'bg-red-500 hover:bg-red-600 active:bg-red-700', + yellow: 'bg-yellow-500 hover:bg-yellow-600 active:bg-yellow-700' + }; + + const sizeClass = { + full: 'w-full', // 기본 크기 + half: 'w-1/2', + third: 'w-1/3', + small: 'w-32' // 작은 버튼 예시 (8rem) + }; + + return ( + + ); +}; + +export default CustomButton; From 70cad55d53fe40ea377c79fae24468056ddfc9f4 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:04:33 +0900 Subject: [PATCH 43/58] =?UTF-8?q?feat:=20=ED=97=A4=EB=8D=94=20=EC=BB=B4?= =?UTF-8?q?=ED=8F=AC=EB=84=8C=ED=8A=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/components/Header.tsx | 65 ++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 FE/src/components/Header.tsx diff --git a/FE/src/components/Header.tsx b/FE/src/components/Header.tsx new file mode 100644 index 00000000..60dc1c73 --- /dev/null +++ b/FE/src/components/Header.tsx @@ -0,0 +1,65 @@ +import { useEffect, useState } from 'react'; +import { Logo } from './Logo'; + +// export const Header = () => { +// const navigate = useNavigate(); +// return ( +//
+//
+//

navigate('/')} +// > +// QuizGround +//

+//
+//
+// ); +// }; +export const Header = () => { + const [isSticky, setIsSticky] = useState(false); + + useEffect(() => { + const handleResize = () => { + if (window.innerWidth <= 950) { + setIsSticky(true); + } else { + setIsSticky(false); + } + }; + + const handleScroll = () => { + if (window.scrollY > 50 || window.innerWidth <= 950) { + setIsSticky(true); + } else { + setIsSticky(false); + } + }; + + window.addEventListener('resize', handleResize); + window.addEventListener('scroll', handleScroll); + + return () => { + window.removeEventListener('resize', handleResize); + window.removeEventListener('scroll', handleScroll); + }; + }, []); + + return ( +
+
+ {/*

navigate('/')} + > + QuizGround +

*/} + +
+
+ ); +}; From d7c8638c09aa19a56365ea29f3f6758c58e77b0f Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:06:49 +0900 Subject: [PATCH 44/58] =?UTF-8?q?feat:=20=EB=A1=9C=EA=B3=A0=20=EC=BB=B4?= =?UTF-8?q?=ED=8F=AC=EB=84=8C=ED=8A=B8=20=EA=B5=AC=ED=98=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/components/Logo.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 FE/src/components/Logo.tsx diff --git a/FE/src/components/Logo.tsx b/FE/src/components/Logo.tsx new file mode 100644 index 00000000..49dd7f80 --- /dev/null +++ b/FE/src/components/Logo.tsx @@ -0,0 +1,18 @@ +import { useNavigate } from 'react-router-dom'; + +const color = 'text-blue-800'; +const shadowStyle = '-2px 0 white, 0 2px white, 2px 0 white, 0 -2px white'; +// const shadowStyle = '4px 4px #558ABB'; + +export const Logo = () => { + const navigate = useNavigate(); + return ( +
navigate('/')}> +

+ QuizGround +

+
+ ); +}; From f9bba04ebaf677772619741b3e045df4862636c4 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:07:04 +0900 Subject: [PATCH 45/58] =?UTF-8?q?feat:=20=ED=97=A4=EB=8D=94=EB=B0=94=20?= =?UTF-8?q?=EC=BB=B4=ED=8F=AC=EB=84=8C=ED=8A=B8=EC=97=90=20=EB=A1=9C?= =?UTF-8?q?=EA=B3=A0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/components/HeaderBar.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/FE/src/components/HeaderBar.tsx b/FE/src/components/HeaderBar.tsx index 8a5dae82..fecfc75d 100644 --- a/FE/src/components/HeaderBar.tsx +++ b/FE/src/components/HeaderBar.tsx @@ -1,13 +1,14 @@ import { useNavigate } from 'react-router-dom'; +import { Logo } from './Logo.tsx'; export const HeaderBar = () => { const navigate = useNavigate(); return (
navigate('/')} > - QuizGround +
); }; From cb2808b586d22278e2a881f52a2d4a0538c02fe7 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:07:26 +0900 Subject: [PATCH 46/58] =?UTF-8?q?feat:=20=ED=85=8D=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EC=9D=B8=ED=92=8B=20=EA=B2=BD=EA=B3=A0=20=EB=AC=B8=EA=B5=AC=20?= =?UTF-8?q?=EB=A7=90=ED=92=8D=EC=84=A0=EC=9C=BC=EB=A1=9C=20=EB=9C=A8?= =?UTF-8?q?=EA=B2=8C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/components/TextInput.tsx | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/FE/src/components/TextInput.tsx b/FE/src/components/TextInput.tsx index 22d94000..389fb560 100644 --- a/FE/src/components/TextInput.tsx +++ b/FE/src/components/TextInput.tsx @@ -1,4 +1,3 @@ -import { TextField } from '@mui/material'; import { ReactNode, useEffect, useRef } from 'react'; type InputProps = { @@ -16,30 +15,38 @@ export const TextInput = (props: InputProps) => { useEffect(() => { if (props.error && inputRef.current) { - inputRef.current.querySelector('input')?.focus(); + inputRef.current.focus(); } }, [props.error, inputRef]); return ( -
+
- {props.children}
-

{props.error}

+ {props.error && ( +
+

+ {props.error} +

+
+
+ )}
); }; From bd596aed47f5ff7ee3cda25e0ff72857a8113e13 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:07:39 +0900 Subject: [PATCH 47/58] =?UTF-8?q?feat:=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20?= =?UTF-8?q?=EB=AA=A8=EB=8B=AC=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/auth/LoginModal.tsx | 212 ++++++++++++++++++++++++++++ 1 file changed, 212 insertions(+) create mode 100644 FE/src/features/auth/LoginModal.tsx diff --git a/FE/src/features/auth/LoginModal.tsx b/FE/src/features/auth/LoginModal.tsx new file mode 100644 index 00000000..64084217 --- /dev/null +++ b/FE/src/features/auth/LoginModal.tsx @@ -0,0 +1,212 @@ +import { useState } from 'react'; +import { login, signUp } from '@/api/rest/authApi'; +import { TextInput } from '@/components/TextInput'; + +type Props = { + isOpen: boolean; + onClose: () => void; +}; + +export const LoginModal = ({ isOpen, onClose }: Props) => { + const [isSignUp, setIsSignUp] = useState(false); + + const handleLogin = async (email: string, password: string) => { + const response = await login(email, password); + if (response) { + console.log(response); + console.log(response.access_token); + localStorage.setItem('accessToken', response.access_token); + } else { + alert('로그인에 실패했습니다. 이메일과 비밀번호를 확인해주세요.'); + } + }; + if (!isOpen) return null; + + return ( +
+
e.stopPropagation()} + > +
+
+ + +
+
+
+
+
+ +
+ {isSignUp ? ( + + ) : ( + + )} + +
+
+
+ ); +}; + +type LoginFormProps = { + handleLogin: (email: string, password: string) => void; +}; + +const LoginForm: React.FC = ({ handleLogin }) => { + const [email, setEmail] = useState(''); + const [password, setPassword] = useState(''); + const [emailError, setEmailError] = useState(''); + const [passwordError, setPasswordError] = useState(''); + + const onSubmit = () => { + if (!email) { + setEmailError('이메일을 입력해주세요'); + return; + } + if (!password) { + setPasswordError('비밀번호를 입력해주세요'); + return; + } + handleLogin(email, password); + }; + + return ( +
+
+ { + setEmail(e.target.value); + setEmailError(''); + }} + error={emailError} + className="mb-2" + /> + { + setPassword(e.target.value); + setPasswordError(''); + }} + error={passwordError} + /> +
+ + +
+ ); +}; + +type SignUpFormProps = { + setIsSignUp: (value: boolean) => void; // props 타입 정의 +}; + +const SignUpForm: React.FC = ({ setIsSignUp }) => { + const [email, setEmail] = useState(''); + const [password, setPassword] = useState(''); + const [nickname, setNickname] = useState(''); + const [emailError, setEmailError] = useState(''); + const [passwordError, setPasswordError] = useState(''); + const [nicknameError, setNicknameError] = useState(''); + + const handleSignUp = async () => { + if (!nickname) { + setNicknameError('이메일을 입력해주세요'); + return; + } + if (!email) { + setEmailError('이메일을 입력해주세요'); + return; + } + if (!password) { + setPasswordError('비밀번호를 입력해주세요'); + return; + } + + const result = await signUp({ email, password, nickname }); + + if (result) { + alert('회원가입에 성공했습니다!'); + setIsSignUp(false); + } else { + alert('회원가입에 실패했습니다. 다시 시도해주세요.'); + } + }; + + return ( +
+
+ { + setNickname(e.target.value); + setNicknameError(''); + }} + error={nicknameError} + className="mb-2" + /> + { + setEmail(e.target.value); + setEmailError(''); + }} + error={emailError} + className="mb-2" + /> + { + setPassword(e.target.value); + setPasswordError(''); + }} + error={passwordError} + /> +
+ + +
+ ); +}; From 7668ae2884138d86a2921597a5bccb47c77f2030 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:08:02 +0900 Subject: [PATCH 48/58] =?UTF-8?q?feat:=20=EC=B1=84=ED=8C=85=20=EC=A3=BD?= =?UTF-8?q?=EC=9D=80=20=EC=82=AC=EB=9E=8C=20=EC=9C=A0=EB=A0=B9=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=ED=91=9C=EC=8B=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/components/Chat.tsx | 41 +++++++++++------------- 1 file changed, 19 insertions(+), 22 deletions(-) diff --git a/FE/src/features/game/components/Chat.tsx b/FE/src/features/game/components/Chat.tsx index 3afbb5c0..6e4580ea 100644 --- a/FE/src/features/game/components/Chat.tsx +++ b/FE/src/features/game/components/Chat.tsx @@ -2,7 +2,6 @@ import { socketService } from '@/api/socket'; import { useChatStore } from '@/features/game/data/store/useChatStore'; import { usePlayerStore } from '@/features/game/data/store/usePlayerStore'; import { useRoomStore } from '@/features/game/data/store/useRoomStore'; -import { Button } from '@mui/material'; import { ReactElement, useEffect, useRef, useState } from 'react'; const Chat = () => { @@ -98,7 +97,10 @@ const Chat = () => { color: e.playerId === currentPlayerId ? 'cornflowerblue' : 'inherit' }} > - {e.playerName} + + {players.has(e.playerId) && !players.get(e.playerId)!.isAlive && '👻'} + {e.playerName} + {e.message}
)) @@ -122,12 +124,6 @@ const Chat = () => {
🎉 QuizGround에 오신 것을 환영합니다 🎉
- {/* {messages.map((e, i) => ( -
- {e.playerName} - {e.message} -
- ))} */} {chatList} {myMessages.map((e, i) => (
@@ -151,20 +147,21 @@ const Chat = () => { />
- {newMessage && !isAtBottom && ( - - )} +
+ {newMessage && !isAtBottom && ( + + )} +
); }; From f1eb6d5717ecfea86ee34dc189319a7a139e2a2f Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:09:09 +0900 Subject: [PATCH 49/58] =?UTF-8?q?design:=20=20=EC=B0=B8=EA=B0=80=EC=9E=90?= =?UTF-8?q?=20=EC=9D=B4=EB=A6=84=20=EB=B3=BC=EB=93=9C=EC=B2=B4=EB=A1=9C=20?= =?UTF-8?q?=ED=91=9C=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/components/ParticipantDisplay.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FE/src/features/game/components/ParticipantDisplay.tsx b/FE/src/features/game/components/ParticipantDisplay.tsx index ae427bbc..e5732cb0 100644 --- a/FE/src/features/game/components/ParticipantDisplay.tsx +++ b/FE/src/features/game/components/ParticipantDisplay.tsx @@ -33,7 +33,7 @@ const ParticipantDisplay: React.FC = ({ gameState }) => className="flex justify-between mt-2 pb-2 border-b border-default" key={player.playerId} > -
{player.emoji + ' ' + player.playerName}
+
{player.emoji + ' ' + player.playerName}
{isHost && currentPlayerId !== player.playerId && ( -

- - - -
- 최대 인원 -
- {RoomConfig.MIN_PLAYERS} - setMaxPlayerCount(newValue as number)} - className="flex-1 mx-4" - sx={{ - '& .MuiSlider-thumb': { - backgroundColor: '#1E40AF' // 파란색 슬라이더 thumb - } - }} - /> - {RoomConfig.MAX_PLAYERS} -
-
- - { - const value = Number(e.target.value); - if (value >= RoomConfig.MIN_PLAYERS && value <= RoomConfig.MAX_PLAYERS) { - setMaxPlayerCount(value); - } - }} - className="w-16 text-right border border-gray-300 rounded-md px-2 py-1 focus:outline-none focus:ring-2 focus:ring-blue-500" - /> + <> +
+
+
+ {/* 뒤로가기 버튼 */} +
+ navigate('/')} size="small" />
-
-
-
- 게임 모드 선택 -
- -
-
- 방 공개 여부 - setRoomPublic(newValue)} - sx={{ - '& .MuiSwitch-switchBase.Mui-checked': { - color: '#1E40AF' // 파란색 스위치 - }, - '& .MuiSwitch-track': { - backgroundColor: '#1E40AF' - } - }} - /> -
-
+
-
- +
+
+ 게임 모드 선택 +
+ + +
+
+
+ 방 공개 여부 + setRoomPublic(newValue)} + sx={{ + '& .MuiSwitch-switchBase.Mui-checked': { + color: '#1E40AF' // 파란색 스위치 + }, + '& .MuiSwitch-track': { + backgroundColor: '#1E40AF' + } + }} + /> +
+
+ +
+ +
-
+ ); }; From 87af633d66dc7d3e911db43f42229a1d3d69eb70 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:13:46 +0900 Subject: [PATCH 55/58] =?UTF-8?q?design:=20=EC=BB=A8=EC=85=89=EC=97=90=20?= =?UTF-8?q?=EB=A7=9E=EA=B2=8C=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=EB=94=94?= =?UTF-8?q?=EC=9E=90=EC=9D=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/features/game/pages/PinPage.tsx | 41 +++---- FE/src/features/lobby/GameLobbyPage.tsx | 8 +- FE/src/features/lobby/LobbyList.tsx | 18 ++- FE/src/features/quiz/QuizSetupPage.tsx | 154 +++++++++++++----------- 4 files changed, 116 insertions(+), 105 deletions(-) diff --git a/FE/src/features/game/pages/PinPage.tsx b/FE/src/features/game/pages/PinPage.tsx index a9639572..7119f9e1 100644 --- a/FE/src/features/game/pages/PinPage.tsx +++ b/FE/src/features/game/pages/PinPage.tsx @@ -1,9 +1,9 @@ - import { socketService, useSocketEvent } from '@/api/socket'; -import { HeaderBar } from '@/components/HeaderBar'; +import { Header } from '@/components/Header'; import { TextInput } from '@/components/TextInput'; import { useState } from 'react'; import { useNavigate } from 'react-router-dom'; +import CustomButton from '../../../components/CustomButton'; export const PinPage = () => { const [pin, setPin] = useState(''); @@ -31,33 +31,20 @@ export const PinPage = () => { }; return ( -
-
-

navigate('/')} - > - QuizGround -

-
- +
+

PIN 번호로 입장

- { - setPin(e.target.value); - if (errors.pin) setErrors((prev) => ({ ...prev, pin: '' })); - }} - error={errors.pin} - /> - + { + setPin(e.target.value); + if (errors.pin) setErrors((prev) => ({ ...prev, pin: '' })); + }} + error={errors.pin} + /> +
); diff --git a/FE/src/features/lobby/GameLobbyPage.tsx b/FE/src/features/lobby/GameLobbyPage.tsx index c16a2b16..7afb6e15 100644 --- a/FE/src/features/lobby/GameLobbyPage.tsx +++ b/FE/src/features/lobby/GameLobbyPage.tsx @@ -1,7 +1,8 @@ -import { HeaderBar } from '@/components/HeaderBar'; +// import { HeaderBar } from '@/components/HeaderBar'; import { LobbyList } from '@/features/lobby/LobbyList'; import { useState, useEffect, useCallback } from 'react'; import { getRoomList } from '@/api/rest/roomApi'; +import { Header } from '@/components/Header'; type Room = { title: string; @@ -21,7 +22,6 @@ export const GameLobbyPage = () => { const [rooms, setRooms] = useState([]); const [paging, setPaging] = useState(null); const [isLoading, setIsLoading] = useState(false); - const loadRooms = useCallback( async (cursor: string | null, take: number = 10) => { if (isLoading) return; @@ -69,8 +69,8 @@ export const GameLobbyPage = () => { }, [handleScroll]); return ( -
- +
+
{isLoading &&
Loading...
}
diff --git a/FE/src/features/lobby/LobbyList.tsx b/FE/src/features/lobby/LobbyList.tsx index 3666d8e0..29450acb 100644 --- a/FE/src/features/lobby/LobbyList.tsx +++ b/FE/src/features/lobby/LobbyList.tsx @@ -1,3 +1,5 @@ +import Lottie from 'lottie-react'; +import refreshIcon from '../../assets/lottie/refresh.json'; type Room = { title: string; gameMode: string; @@ -21,8 +23,18 @@ export const LobbyList: React.FC = ({ rooms }) => { }; return (
-
-

게임 대기실 목록

+
+

게임 대기실 목록

+
{rooms.map((room) => ( @@ -52,7 +64,7 @@ export const LobbyList: React.FC = ({ rooms }) => {
))} {!rooms.length && ( -
+
현재 표시할 방이 없습니다.
)} diff --git a/FE/src/features/quiz/QuizSetupPage.tsx b/FE/src/features/quiz/QuizSetupPage.tsx index c2561a98..6979c5dc 100644 --- a/FE/src/features/quiz/QuizSetupPage.tsx +++ b/FE/src/features/quiz/QuizSetupPage.tsx @@ -1,17 +1,10 @@ import { useCallback, useEffect, useState } from 'react'; -import { - TextField, - Button, - Select, - MenuItem, - Box, - Typography, - SelectChangeEvent -} from '@mui/material'; -import { HeaderBar } from '@/components/HeaderBar'; +import { TextField, Select, MenuItem, Box, Typography, SelectChangeEvent } from '@mui/material'; import { TextInput } from '@/components/TextInput'; import { createQuizSet } from '@/api/rest/quizApi'; import { CreateQuizSetPayload } from '@/api/rest/quizTypes'; +import { Header } from '@/components/Header'; +import CustomButton from '../../components/CustomButton'; /* { title: string, // 퀴즈셋의 제목 @@ -53,7 +46,6 @@ export const QuizSetupPage: React.FC = () => { const [quizErrorIndex, setQuizErrorIndex] = useState(null); const [choiceErrorIndex, setChoiceErrorIndex] = useState(null); const [isSubmitting, setIsSubmitting] = useState(false); - // 빌드가 되기 위해 변수 사용 console.log(isSubmitting); @@ -79,7 +71,7 @@ export const QuizSetupPage: React.FC = () => { const updatedQuizSet = [...quizSet]; let newLimitTime = parseInt(value, 10); if (newLimitTime > 99) newLimitTime %= 10; - updatedQuizSet[index].limitTime = Math.min(60, Math.max(1, newLimitTime)); + updatedQuizSet[index].limitTime = Math.min(60, Math.max(3, newLimitTime)); setQuizSet(updatedQuizSet); }; @@ -117,7 +109,10 @@ export const QuizSetupPage: React.FC = () => { { quiz: '', limitTime: 10, - choiceList: [{ choiceContent: '', choiceOrder: 1, isAnswer: true }] + choiceList: [ + { choiceContent: '', choiceOrder: 1, isAnswer: true }, + { choiceContent: '', choiceOrder: 2, isAnswer: false } + ] } ]); }, [quizSet]); @@ -207,15 +202,20 @@ export const QuizSetupPage: React.FC = () => { }, [quizSet, addQuiz]); return ( - <> - - - +
+
+
+
퀴즈셋 생성하기 - - - +
+ + {/* 퀴즈 리스트 */} {quizSet.map((quiz, quizIndex) => ( - -
- + + {/* 퀴즈 헤더 */} +
+ 퀴즈 {quizIndex + 1} {quizSet.length > 1 && ( - )}
+ {/* 퀴즈 입력 */} handleQuizChange(quizIndex, e.target.value)} - error={quizErrorIndex === quizIndex ? '퀴즈를 입력해주세요' : ''} + error={quizErrorIndex === quizIndex ? '퀴즈를 입력해주세요.' : ''} + className="mb-4" /> + + {/* 제한 시간 */} handleLimitTimeChange(quizIndex, e.target.value)} + className="mb-6 w-full" /> - + {/* 선택지 추가 버튼 */} +
+ 선택지 + addChoice(quizIndex)} + size="third" + color="green" + /> +
+ {/* 선택지 입력 */} + {quiz.choiceList.map((choice, choiceIndex) => ( - - handleChoiceChange(quizIndex, choiceIndex, 'choiceContent', e.target.value) - } - error={ - choiceErrorIndex && - quizIndex === choiceErrorIndex[0] && - choiceIndex === choiceErrorIndex[1] - ? '선택지를 입력해주세요' - : '' - } - > + + + handleChoiceChange(quizIndex, choiceIndex, 'choiceContent', e.target.value) + } + error={ + choiceErrorIndex && + quizIndex === choiceErrorIndex[0] && + choiceIndex === choiceErrorIndex[1] + ? '선택지를 입력해주세요.' + : '' + } + className="flex-1" + /> - - + {quiz.choiceList.length > 2 && ( + + )} + ))} -
))} - - -
- + {/* 퀴즈 추가/제출 버튼 */} + + +
+
); }; From ff38ab1857977e9efb047117636ba832f4c5a216 Mon Sep 17 00:00:00 2001 From: ijun17 Date: Thu, 28 Nov 2024 01:15:47 +0900 Subject: [PATCH 56/58] =?UTF-8?q?feat:=20=EB=A9=94=EC=9D=B8=20=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EB=AA=A8?= =?UTF-8?q?=EB=8B=AC=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/pages/InfoCard.tsx | 33 ++++++++++++++--------- FE/src/pages/MainPage.tsx | 55 ++++++++++++++++++++++++--------------- 2 files changed, 55 insertions(+), 33 deletions(-) diff --git a/FE/src/pages/InfoCard.tsx b/FE/src/pages/InfoCard.tsx index f7e4e285..92390b7b 100644 --- a/FE/src/pages/InfoCard.tsx +++ b/FE/src/pages/InfoCard.tsx @@ -1,31 +1,40 @@ -import { Button } from '@mui/material'; +import Lottie from 'lottie-react'; import { FC } from 'react'; import { useNavigate } from 'react-router-dom'; +import { AnimationConfigWithData } from 'lottie-web'; +import CustomButton from '@/components/CustomButton'; type CardProps = { title: string; - description: string; - path?: string; action?: () => void; + path?: string; + icon: AnimationConfigWithData['animationData']; }; -export const InfoCard: FC = ({ title, description, path, action }) => { +export const InfoCard: FC = ({ title, icon, path, action }) => { const navigate = useNavigate(); return ( -
+

{title}

-

{description}

- + />
); }; diff --git a/FE/src/pages/MainPage.tsx b/FE/src/pages/MainPage.tsx index 96fa40fb..3444296f 100644 --- a/FE/src/pages/MainPage.tsx +++ b/FE/src/pages/MainPage.tsx @@ -5,10 +5,13 @@ import { socketService } from '@/api/socket'; import Lottie from 'lottie-react'; import mainCube from '../assets/lottie/mainLottie.json'; import { InfoCard } from './InfoCard'; - +import { gameCreate, waitRoom, pin, createQuiz } from '../assets/lottie'; +import { LoginModal } from '@/features/auth/LoginModal'; +import { Logo } from '@/components/Logo'; export const MainPage = () => { const navigate = useNavigate(); const [isLoggedIn, setIsLoggedIn] = useState(false); + const [isOpenLoginModal, setIsOpenLoginModal] = useState(false); useEffect(() => { socketService.disconnect(); @@ -22,11 +25,13 @@ export const MainPage = () => { }, []); const handleQuizCreate = () => { - if (isLoggedIn) navigate('/quiz/setup'); - else { - alert('로그인이 필요한 서비스 입니다.'); - navigate('/login'); - } + // dev Mode + navigate('/quiz/setup'); + // if (isLoggedIn) navigate('/quiz/setup'); + // else { + // alert('로그인이 필요한 서비스 입니다.'); + // navigate('/login'); + // } }; type ActionButtonProps = { @@ -36,28 +41,35 @@ export const MainPage = () => { const ActionButton: FC = ({ label, navigatePath }) => { return ( -
navigate(navigatePath)} > {label} -
+ ); }; return (
-
-

QuizGround

+
+ +
- + {isLoggedIn ? ( + + ) : ( + + )}
{/*소개 및 카드 섹션 */} -
+

퀴즈 게임을 시작해보세요!

@@ -82,13 +94,14 @@ export const MainPage = () => { ))}
+ setIsOpenLoginModal(false)} />
); }; @@ -96,22 +109,22 @@ export const MainPage = () => { const cardData = [ { title: '게임방 만들기', - description: '새로운 퀴즈 방을 만들고 친구들과 함께 퀴즈를 풀어보세요.', + icon: gameCreate, path: '/game/setup' }, { title: '대기방 목록', - description: '현재 대기 중인 방 목록을 확인하고 대기실로 입장하세요.', + icon: waitRoom, path: '/game/lobby' }, { title: 'PIN으로 방 찾기', - description: '특정 PIN 번호로 방을 찾아서 바로 입장하세요.', + icon: pin, path: '/pin' }, { - title: '퀴즈 생성', - description: '퀴즈를 만들어 친구들과 함께 즐겨보세요.', + title: '퀴즈 생성 하기', + icon: createQuiz, action: 'handleQuizCreate' // Navigate 대신 특정 핸들러 호출 } ]; From 0223ed791bc89823d525b242b760ca70732bf416 Mon Sep 17 00:00:00 2001 From: Jungi-Kim <54887575+ijun17@users.noreply.github.com> Date: Thu, 28 Nov 2024 11:03:34 +0900 Subject: [PATCH 57/58] Update FE/src/features/auth/LoginModal.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- FE/src/features/auth/LoginModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FE/src/features/auth/LoginModal.tsx b/FE/src/features/auth/LoginModal.tsx index 64084217..4546f953 100644 --- a/FE/src/features/auth/LoginModal.tsx +++ b/FE/src/features/auth/LoginModal.tsx @@ -143,7 +143,7 @@ const SignUpForm: React.FC = ({ setIsSignUp }) => { const handleSignUp = async () => { if (!nickname) { - setNicknameError('이메일을 입력해주세요'); + setNicknameError('닉네임을 입력해주세요'); return; } if (!email) { From dc6d17f2b35e8e2b745891f521d31d0fe5859975 Mon Sep 17 00:00:00 2001 From: Jungi-Kim <54887575+ijun17@users.noreply.github.com> Date: Thu, 28 Nov 2024 11:03:40 +0900 Subject: [PATCH 58/58] Update FE/src/features/game/utils/emoji.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- FE/src/features/game/utils/emoji.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FE/src/features/game/utils/emoji.ts b/FE/src/features/game/utils/emoji.ts index d39110c1..25a97df6 100644 --- a/FE/src/features/game/utils/emoji.ts +++ b/FE/src/features/game/utils/emoji.ts @@ -1,7 +1,7 @@ export function getEmojiByUUID(uuid: string) { const uuid8Arr = uuid.slice(0, 8).toLowerCase().split(''); for (let i = 0; i < uuid8Arr.length; i++) { - if ((uuid >= '0' && uuid <= '9') || (uuid >= 'a' && uuid <= 'f')) continue; + if ((uuid8Arr[i] >= '0' && uuid8Arr[i] <= '9') || (uuid8Arr[i] >= 'a' && uuid8Arr[i] <= 'f')) continue; const char = (uuid.charCodeAt(i) * 3457) % 16; uuid8Arr[i] = char.toString(16); }