commit f0b94ab9bd8bc78d59ef8079ee862042d074b4e6 Author: ro Date: Mon Jul 1 22:49:56 2024 +0300 init devika repo diff --git a/.assets/devika-avatar.png b/.assets/devika-avatar.png new file mode 100644 index 0000000..963c6c7 Binary files /dev/null and b/.assets/devika-avatar.png differ diff --git a/.assets/devika-pygame-demo.mp4 b/.assets/devika-pygame-demo.mp4 new file mode 100644 index 0000000..7e5cf5e Binary files /dev/null and b/.assets/devika-pygame-demo.mp4 differ diff --git a/.assets/devika-screenshot.png b/.assets/devika-screenshot.png new file mode 100644 index 0000000..b969b57 Binary files /dev/null and b/.assets/devika-screenshot.png differ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fec312f --- /dev/null +++ b/.gitignore @@ -0,0 +1,163 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ +config.toml + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +.idea/ + +notes.md +data/ \ No newline at end of file diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md new file mode 100644 index 0000000..cd89e2e --- /dev/null +++ b/ARCHITECTURE.md @@ -0,0 +1,251 @@ +# Devika Architecture + +Devika is an advanced AI software engineer that can understand high-level human instructions, break them down into steps, research relevant information, and write code to achieve a given objective. This document provides a detailed technical overview of Devika's system architecture and how the various components work together. + +## Table of Contents + +1. [Overview](#overview) +2. [Agent Core](#agent-core) +3. [Agents](#agents) + - [Planner](#planner) + - [Researcher](#researcher) + - [Coder](#coder) + - [Action](#action) + - [Runner](#runner) + - [Feature](#feature) + - [Patcher](#patcher) + - [Reporter](#reporter) + - [Decision](#decision) +4. [Language Models](#language-models) +5. [Browser Interaction](#browser-interaction) +6. [Project Management](#project-management) +7. [Agent State Management](#agent-state-management) +8. [Services](#services) +9. [Utilities](#utilities) +10. [Conclusion](#conclusion) + +## Overview + +At a high level, Devika consists of the following key components: + +- **Agent Core**: Orchestrates the overall AI planning, reasoning and execution process. Communicates with various sub-agents. +- **Agents**: Specialized sub-agents that handle specific tasks like planning, research, coding, patching, reporting etc. +- **Language Models**: Leverages large language models (LLMs) like Claude, GPT-4, GPT-3 for natural language understanding and generation. +- **Browser Interaction**: Enables web browsing, information gathering, and interaction with web elements. +- **Project Management**: Handles organization and persistence of project-related data. +- **Agent State Management**: Tracks and persists the dynamic state of the AI agent across interactions. +- **Services**: Integrations with external services like GitHub, Netlify for enhanced capabilities. +- **Utilities**: Supporting modules for configuration, logging, vector search, PDF generation etc. + +Let's dive into each of these components in more detail. + +## Agent Core + +The `Agent` class serves as the central engine that drives Devika's AI planning and execution loop. Here's how it works: + +1. When a user provides a high-level prompt, the `execute` method is invoked on the Agent. +2. The prompt is first passed to the Planner agent to generate a step-by-step plan. +3. The Researcher agent then takes this plan and extracts relevant search queries and context. +4. The Agent performs web searches using Bing Search API and crawls the top results. +5. The raw crawled content is passed through the Formatter agent to extract clean, relevant information. +6. This researched context, along with the step-by-step plan, is fed to the Coder agent to generate code. +7. The generated code is saved to the project directory on disk. +8. If the user interacts further with a follow-up prompt, the `subsequent_execute` method is invoked. +9. The Action agent determines the appropriate action to take based on the user's message (run code, deploy, write tests, add feature, fix bug, write report etc.) +10. The corresponding specialized agent is invoked to perform the action (Runner, Feature, Patcher, Reporter). +11. Results are communicated back to the user and the project files are updated. + +Throughout this process, the Agent Core is responsible for: +- Managing conversation history and project-specific context +- Updating agent state and internal monologue +- Accumulating context keywords across agent prompts +- Emulating the "thinking" process of the AI through timed agent state updates +- Handling special commands through the Decision agent (e.g. git clone, browser interaction session) + +## Agents + +Devika's cognitive abilities are powered by a collection of specialized sub-agents. Each agent is implemented as a separate Python class. Agents communicate with the underlying LLMs through prompt templates defined in Jinja2 format. Key agents include: + +### Planner +- Generates a high-level step-by-step plan based on the user's prompt +- Extracts focus area and provides a summary +- Uses few-shot prompting to provide examples of the expected response format + +### Researcher +- Takes the generated plan and extracts relevant search queries +- Ranks and filters queries based on relevance and specificity +- Prompts the user for additional context if required +- Aims to maximize information gain while minimizing number of searches + +### Coder +- Generates code based on the step-by-step plan and researched context +- Segments code into appropriate files and directories +- Includes informative comments and documentation +- Handles a variety of languages and frameworks +- Validates code syntax and style + +### Action +- Determines the appropriate action to take based on the user's follow-up prompt +- Maps user intent to a specific action keyword (run, test, deploy, fix, implement, report) +- Provides a human-like confirmation of the action to the user + +### Runner +- Executes the written code in a sandboxed environment +- Handles different OS environments (Mac, Linux, Windows) +- Streams command output to user in real-time +- Gracefully handles errors and exceptions + +### Feature +- Implements a new feature based on user's specification +- Modifies existing project files while maintaining code structure and style +- Performs incremental testing to verify feature is working as expected + +### Patcher +- Debugs and fixes issues based on user's description or error message +- Analyzes existing code to identify potential root causes +- Suggests and implements fix, with explanation of the changes made + +### Reporter +- Generates a comprehensive report summarizing the project +- Includes high-level overview, technical design, setup instructions, API docs etc. +- Formats report in a clean, readable structure with table of contents +- Exports report as a PDF document + +### Decision +- Handles special command-like instructions that don't fit other agents +- Maps commands to specific functions (git clone, browser interaction etc.) +- Executes the corresponding function with provided arguments + +Each agent follows a common pattern: +1. Prepare a prompt by rendering the Jinja2 template with current context +2. Query the LLM to get a response based on the prompt +3. Validate and parse the LLM's response to extract structured output +4. Perform any additional processing or side-effects (e.g. save to disk) +5. Return the result to the Agent Core for further action + +Agents aim to be stateless and idempotent where possible. State and history is managed by the Agent Core and passed into the agents as needed. This allows for a modular, composable design. + +## Language Models + +Devika's natural language processing capabilities are driven by state-of-the-art LLMs. The `LLM` class provides a unified interface to interact with different language models: + +- **Claude** (Anthropic): Claude models like claude-v1.3, claude-instant-v1.0 etc. +- **GPT-4/GPT-3** (OpenAI): Models like gpt-4, gpt-3.5-turbo etc. +- **Self-hosted models** (via [Ollama](https://ollama.com/)): Allows using open-source models in a self-hosted environment + +The `LLM` class abstracts out the specifics of each provider's API, allowing agents to interact with the models in a consistent way. It supports: +- Listing available models +- Generating completions based on a prompt +- Tracking and accumulating token usage over time + +Choosing the right model for a given use case depends on factors like desired quality, speed, cost etc. The modular design allows swapping out models easily. + +## Browser Interaction + +Devika can interact with webpages in an automated fashion to gather information and perform actions. This is powered by the `Browser` and `Crawler` classes. + +The `Browser` class uses Playwright to provide high-level web automation primitives: +- Spawning a browser instance (Chromium) +- Navigating to a URL +- Querying DOM elements +- Extracting page content as text, Markdown, PDF etc. +- Taking a screenshot of the page + +The `Crawler` class defines an agent that can interact with a webpage based on natural language instructions. It leverages: +- Pre-defined browser actions like scroll, click, type etc. +- A prompt template that provides examples of how to use these actions +- LLM to determine the best action to take based on current page content and objective + +The `start_interaction` function sets up a loop where: +1. The current page content and objective is passed to the LLM +2. The LLM returns the next best action to take (e.g. "CLICK 12" or "TYPE 7 machine learning") +3. The Crawler executes this action on the live page +4. The process repeats from the updated page state + +This allows performing a sequence of actions to achieve a higher-level objective (e.g. research a topic, fill out a form, interact with an app etc.) + +## Project Management + +The `ProjectManager` class is responsible for creating, updating and querying projects and their associated metadata. Key functions include: + +- Creating a new project and initializing its directory structure +- Deleting a project and its associated files +- Adding a message to a project's conversation history +- Retrieving messages for a given project +- Getting the latest user/AI message in a conversation +- Listing all projects +- Zipping a project's files for export + +Project metadata is persisted in a SQLite database using SQLModel. The `Projects` table stores: +- Project name +- JSON-serialized conversation history + +This allows the agent to work on multiple projects simultaneously and retain conversation history across sessions. + +## Agent State Management + +As the AI agent works on a task, we need to track and display its internal state to the user. The `AgentState` class handles this by providing an interface to: + +- Initialize a new agent state +- Add a state to the current sequence of states for a project +- Update the latest state for a project +- Query the latest state or entire state history for a project +- Mark the agent as active/inactive or task as completed + +Agent state includes information like: +- Current step or action being executed +- Internal monologue reflecting the agent's current "thoughts" +- Browser interactions (URL visited, screenshot) +- Terminal interactions (command executed, output) +- Token usage so far + +Like projects, agent states are also persisted in the SQLite DB using SQLModel. The `AgentStateModel` table stores: +- Project name +- JSON-serialized list of states + +Having a persistent log of agent states is useful for: +- Providing real-time visibility to the user +- Auditing and debugging agent behavior +- Resuming from interruptions or failures + +## Services + +Devika integrates with external services to augment its capabilities: + +- **GitHub**: Performing git operations like clone/pull, listing repos/commits/files etc. +- **Netlify**: Deploying web apps and sites seamlessly + +The `GitHub` and `Netlify` classes provide lightweight wrappers around the respective service APIs. +They handle authentication, making HTTP requests, and parsing responses. + +This allows Devika to perform actions like: +- Cloning a repo given a GitHub URL +- Listing a user's GitHub repos +- Creating a new Netlify site +- Deploying a directory to Netlify +- Providing the deployed site URL to the user + +Integrations are done in a modular way so that new services can be added easily. + +## Utilities + +Devika makes use of several utility modules to support its functioning: + +- `Config`: Loads and provides access to configuration settings (API keys, folder paths etc.) +- `Logger`: Sets up logging to console and file, with support for log levels and colors +- `ReadCode`: Recursively reads code files in a directory and converts them into a Markdown format +- `SentenceBERT`: Extracts keywords and semantic information from text using SentenceBERT embeddings +- `Experts`: A collection of domain-specific knowledge bases to assist in certain areas (e.g. webdev, physics, chemistry, math) + +The utility modules aim to provide reusable functionality that is used across different parts of the system. + +## Conclusion + +Devika is a complex system that combines multiple AI and automation techniques to deliver an intelligent programming assistant. Key design principles include: + +- Modularity: Breaking down functionality into specialized agents and services +- Flexibility: Supporting different LLMs, services and domains in a pluggable fashion +- Persistence: Storing project and agent state in a DB to enable pause/resume and auditing +- Transparency: Surfacing agent thought process and interactions to user in real-time + +By understanding how the different components work together, we can extend, optimize and scale Devika to take on increasingly sophisticated software engineering tasks. The agent-based architecture provides a strong foundation to build more advanced AI capabilities in the future. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..e6f84e6 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,38 @@ +# Welcome Contributors +We welcome contributions to enhance Devika's capabilities and improve its performance. To report bugs, create a [GitHub issue](https://github.com/stitionai/devika/issues). + +> Before contributing, read through the existing issues and pull requests to see if someone else is already working on something similar. That way you can avoid duplicating efforts. + +To contribute, please follow these steps: + +1. Fork the Devika repository on GitHub. +2. Create a new branch for your feature or bug fix. +3. Make your changes and ensure that the code passes all tests. +4. Submit a pull request describing your changes and their benefits. + + +### Pull Request Guidelines +When submitting a pull request, please follow these guidelines: + +1. **Title**: please include following prefixes: + - `Feature:` for new features + - `Fix:` for bug fixes + - `Docs:` for documentation changes + - `Refactor:` for code refactoring + - `Improve:` for performance improvements + - `Other:` for other changes + + for example: + - `Feature: added new feature to the code` + - `Fix: fixed the bug in the code` + +2. **Description**: Provide a clear and detailed description of your changes in the pull request. Explain the problem you are solving, the approach you took, and any potential side effects or limitations of your changes. +3. **Documentation**: Update the relevant documentation to reflect your changes. This includes the README file, code comments, and any other relevant documentation. +4. **Dependencies**: If your changes require new dependencies, ensure that they are properly documented and added to the `requirements.txt` or `package.json` files. +5. if the pull request does not meet the above guidelines, it may be closed without merging. + + +**Note**: Please ensure that you have the latest version of the code before creating a pull request. If you have an existing fork, just sync your fork with the latest version of the Devika repository. + + +Please adhere to the coding conventions, maintain clear documentation, and provide thorough testing for your contributions. diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..649d6dd --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 stition + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a4f0b78 --- /dev/null +++ b/Makefile @@ -0,0 +1,33 @@ + +.PHONY = setup deps compose-up compose-down compose-destroy + +# to check if docker is installed on the machine +DOCKER := $(shell command -v docker) +DOCKER_COMPOSE := $(shell command -v docker-compose) +deps: +ifndef DOCKER + @echo "Docker is not available. Please install docker" + @echo "try running sudo apt-get install docker" + @exit 1 +endif +ifndef DOCKER_COMPOSE + @echo "docker-compose is not available. Please install docker-compose" + @echo "try running sudo apt-get install docker-compose" + @exit 1 +endif + +setup: + sh +x build + +compose-down: deps + docker volume ls + docker-compose ps + docker images + docker-compose down; + +compose-up: deps compose-down + docker-compose up --build + +compose-destroy: deps + docker images | grep -i devika | awk '{print $$3}' | xargs docker rmi -f + docker volume prune \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..63c8961 --- /dev/null +++ b/README.md @@ -0,0 +1,183 @@ +

+ Devika Logo +

+ +

🚀 Devika - Agentic AI Software Engineer 👩‍💻

+ +![devika screenshot](.assets/devika-screenshot.png) + +> [!IMPORTANT] +> This project is currently in a very early development/experimental stage. There are a lot of unimplemented/broken features at the moment. Contributions are welcome to help out with the progress! + +## Table of Contents + +- [About](#about) +- [Key Features](#key-features) +- [System Architecture](#system-architecture) +- [Getting Started](#getting-started) + - [Requirements](#requirements) + - [Installation](#installation) + - [How to use](#how-to-use) +- [Configuration](#configuration) +- [Contributing](#contributing) +- [Help and Support](#help-and-support) +- [License](#license) + +## About + +Devika is an advanced AI software engineer that can understand high-level human instructions, break them down into steps, research relevant information, and write code to achieve the given objective. Devika utilizes large language models, planning and reasoning algorithms, and web browsing abilities to intelligently develop software. + +Devika aims to revolutionize the way we build software by providing an AI pair programmer who can take on complex coding tasks with minimal human guidance. Whether you need to create a new feature, fix a bug, or develop an entire project from scratch, Devika is here to assist you. + +> [!NOTE] +> Devika is modeled after [Devin](https://www.cognition-labs.com/introducing-devin) by Cognition AI. This project aims to be an open-source alternative to Devin with an "overly ambitious" goal to meet the same score as Devin in the [SWE-bench](https://www.swebench.com/) Benchmarks... and eventually beat it? + +## Demos + +https://github.com/stitionai/devika/assets/26198477/cfed6945-d53b-4189-9fbe-669690204206 + +## Key Features + +- 🤖 Supports **Claude 3**, **GPT-4**, **Gemini**, **Mistral** , **Groq** and **Local LLMs** via [Ollama](https://ollama.com). For optimal performance: Use the **Claude 3** family of models. +- 🧠 Advanced AI planning and reasoning capabilities +- 🔍 Contextual keyword extraction for focused research +- 🌐 Seamless web browsing and information gathering +- 💻 Code writing in multiple programming languages +- 📊 Dynamic agent state tracking and visualization +- 💬 Natural language interaction via chat interface +- 📂 Project-based organization and management +- 🔌 Extensible architecture for adding new features and integrations + +## System Architecture + +Read [**README.md**](docs/architecture) for the detailed documentation. + + +## Getting Started + +### Requirements +``` +Version's requirements + - Python >= 3.10 and < 3.12 + - NodeJs >= 18 + - bun +``` + +- Install uv - Python Package manager [download](https://github.com/astral-sh/uv) +- Install bun - JavaScript runtime [download](https://bun.sh/docs/installation) +- For ollama [ollama setup guide](docs/Installation/ollama.md) (optinal: if you don't want to use the local models then you can skip this step) +- For API models, configure the API keys via setting page in UI. + + +### Installation + +To install Devika, follow these steps: + +1. Clone the Devika repository: + ```bash + git clone https://github.com/stitionai/devika.git + ``` +2. Navigate to the project directory: + ```bash + cd devika + ``` +3. Create a virtual environment and install the required dependencies (you can use any virtual environment manager): + ```bash + uv venv + + # On macOS and Linux. + source .venv/bin/activate + + # On Windows. + .venv\Scripts\activate + + uv pip install -r requirements.txt + ``` +4. Install the playwright for browsering capabilities: + ```bash + playwright install --with-deps # installs browsers in playwright (and their deps) if required + ``` +5. Start the Devika server: + ```bash + python devika.py + ``` +6. if everything is working fine, you see the following output: + ```bash + root: INFO : Devika is up and running! + ``` +7. Now, for frontend, open a new terminal and navigate to the `ui` directory: + ```bash + cd ui/ + bun install + bun run start + ``` +8. Access the Devika web interface by opening a browser and navigating to `http://127.0.0.1:3001` + +### how to use + +To start using Devika, follow these steps: + +1. Open the Devika web interface in your browser. +2. To create a project, click on 'select project' and then click on 'new project'. +3. Select the search engine and model configuration for your project. +4. In the chat interface, provide a high-level objective or task description for Devika to work on. +5. Devika will process your request, break it down into steps, and start working on the task. +6. Monitor Devika's progress, view generated code, and provide additional guidance or feedback as needed. +7. Once Devika completes the task, review the generated code and project files. +8. Iterate and refine the project as desired by providing further instructions or modifications. + +## Configuration + +Devika requires certain configuration settings and API keys to function properly: + +when you first time run Devika, it will create a `config.toml` file for you in the root directory. You can configure the following settings in the settings page via UI: + +- API KEYS + - `BING`: Your Bing Search API key for web searching capabilities. + - `GOOGLE_SEARCH`: Your Google Search API key for web searching capabilities. + - `GOOGLE_SEARCH_ENGINE_ID`: Your Google Search Engine ID for web searching using Google. + - `OPENAI`: Your OpenAI API key for accessing GPT models. + - `GEMINI`: Your Gemini API key for accessing Gemini models. + - `CLAUDE`: Your Anthropic API key for accessing Claude models. + - `MISTRAL`: Your Mistral API key for accessing Mistral models. + - `GROQ`: Your Groq API key for accessing Groq models. + - `NETLIFY`: Your Netlify API key for deploying and managing web projects. + +- API_ENDPOINTS + - `BING`: The Bing API endpoint for web searching. + - `GOOGLE`: The Google API endpoint for web searching. + - `OLLAMA`: The Ollama API endpoint for accessing Local LLMs. + - `OPENAI`: The OpenAI API endpoint for accessing OpenAI models. + +Make sure to keep your API keys secure and do not share them publicly. For setting up the Bing and Google search API keys, follow the instructions in the [search engine setup](docs/Installation/search_engine.md) + + +## Contributing + +We welcome contributions to enhance Devika's capabilities and improve its performance. To contribute, please see the [`CONTRIBUTING.md`](CONTRIBUTING.md) file for steps. + +## Help and Support + +If you have any questions, feedback, or suggestions, please feel free to reach out to us. you can raise an issue in the [issue tracker](https://github.com/stitionai/devika/issues) or join the [discussions](https://github.com/stitionai/devika/discussions) for general discussions. + +We also have a Discord server for the Devika community, where you can connect with other users, share your experiences, ask questions, and collaborate on the project. To join the Devika community Discord server, [click here](https://discord.gg/CYRp43878y). + +## License + +Devika is released under the [MIT License](https://opensource.org/licenses/MIT). See the `LICENSE` file for more information. + +## Star History + +
+ + + + + Star History Chart + + +
+ +--- + +We hope you find Devika to be a valuable tool in your software development journey. If you have any questions, feedback, or suggestions, please don't hesitate to reach out. Happy coding with Devika! diff --git a/ROADMAP.md b/ROADMAP.md new file mode 100644 index 0000000..3dc7bb3 --- /dev/null +++ b/ROADMAP.md @@ -0,0 +1,7 @@ +# Roadmap + +- [ ] Create an extensive testing suite for all [Agents](https://github.com/stitionai/devika/tree/main/src/agents). +- [ ] Catch down on all runtime errors and prepare for Project Devika stable release. +- [ ] Document and implement easy cross-platform installation/setup scripts and packages. +- [ ] Create tutorial videos on the installation steps, setup, and usage for Windows, Linux, and MacOS. +- [ ] Focusing on the Claude 3 Opus model, test Devika on the [SWE-Bench](https://www.swebench.com/) benchmarks. \ No newline at end of file diff --git a/app.dockerfile b/app.dockerfile new file mode 100644 index 0000000..693addb --- /dev/null +++ b/app.dockerfile @@ -0,0 +1,29 @@ +FROM debian:12 + +# setting up build variable +ARG VITE_API_BASE_URL +ENV VITE_API_BASE_URL=${VITE_API_BASE_URL} + +# setting up os env +USER root +WORKDIR /home/nonroot/client +RUN groupadd -r nonroot && useradd -r -g nonroot -d /home/nonroot/client -s /bin/bash nonroot + +# install node js +RUN apt-get update && apt-get upgrade -y +RUN apt-get install -y build-essential software-properties-common curl sudo wget git +RUN curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - +RUN apt-get install nodejs + +# copying devika app client only +COPY ui /home/nonroot/client/ui +COPY src /home/nonroot/client/src +COPY config.toml /home/nonroot/client/ + +RUN cd ui && npm install && npm install -g npm && npm install -g bun +RUN chown -R nonroot:nonroot /home/nonroot/client + +USER nonroot +WORKDIR /home/nonroot/client/ui + +ENTRYPOINT [ "npx", "bun", "run", "dev", "--", "--host" ] \ No newline at end of file diff --git a/benchmarks/BENCHMARKS.md b/benchmarks/BENCHMARKS.md new file mode 100644 index 0000000..e69de29 diff --git a/benchmarks/SWE-bench.md b/benchmarks/SWE-bench.md new file mode 100644 index 0000000..248cdf9 --- /dev/null +++ b/benchmarks/SWE-bench.md @@ -0,0 +1 @@ +> ...Not yet \ No newline at end of file diff --git a/devika.dockerfile b/devika.dockerfile new file mode 100644 index 0000000..191cd91 --- /dev/null +++ b/devika.dockerfile @@ -0,0 +1,38 @@ +FROM debian:12 + +# setting up os env +USER root +WORKDIR /home/nonroot/devika +RUN groupadd -r nonroot && useradd -r -g nonroot -d /home/nonroot/devika -s /bin/bash nonroot + +ENV PYTHONUNBUFFERED 1 +ENV PYTHONDONTWRITEBYTECODE 1 + +# setting up python3 +RUN apt-get update && apt-get upgrade -y +RUN apt-get install -y build-essential software-properties-common curl sudo wget git +RUN apt-get install -y python3 python3-pip +RUN curl -fsSL https://astral.sh/uv/install.sh | sudo -E bash - +RUN $HOME/.cargo/bin/uv venv +ENV PATH="/home/nonroot/devika/.venv/bin:$HOME/.cargo/bin:$PATH" + +# copy devika python engine only +RUN $HOME/.cargo/bin/uv venv +COPY requirements.txt /home/nonroot/devika/ +RUN UV_HTTP_TIMEOUT=100000 $HOME/.cargo/bin/uv pip install -r requirements.txt + +RUN playwright install-deps chromium +RUN playwright install chromium + +COPY src /home/nonroot/devika/src +COPY config.toml /home/nonroot/devika/ +COPY sample.config.toml /home/nonroot/devika/ +COPY devika.py /home/nonroot/devika/ +RUN chown -R nonroot:nonroot /home/nonroot/devika + +USER nonroot +WORKDIR /home/nonroot/devika +ENV PATH="/home/nonroot/devika/.venv/bin:$HOME/.cargo/bin:$PATH" +RUN mkdir /home/nonroot/devika/db + +ENTRYPOINT [ "python3", "-m", "devika" ] diff --git a/devika.py b/devika.py new file mode 100644 index 0000000..961b792 --- /dev/null +++ b/devika.py @@ -0,0 +1,209 @@ +""" + DO NOT REARRANGE THE ORDER OF THE FUNCTION CALLS AND VARIABLE DECLARATIONS + AS IT MAY CAUSE IMPORT ERRORS AND OTHER ISSUES +""" +from gevent import monkey +monkey.patch_all() +from src.init import init_devika +init_devika() + + +from flask import Flask, request, jsonify, send_file +from flask_cors import CORS +from src.socket_instance import socketio, emit_agent +import os +import logging +from threading import Thread +import tiktoken + +from src.apis.project import project_bp +from src.config import Config +from src.logger import Logger, route_logger +from src.project import ProjectManager +from src.state import AgentState +from src.agents import Agent +from src.llm import LLM + + +app = Flask(__name__) +CORS(app, resources={r"/*": {"origins": # Change the origin to your frontend URL + [ + "https://localhost:3000", + "http://localhost:3000", + ]}}) +app.register_blueprint(project_bp) +socketio.init_app(app) + + +log = logging.getLogger("werkzeug") +log.disabled = True + + +TIKTOKEN_ENC = tiktoken.get_encoding("cl100k_base") + +os.environ["TOKENIZERS_PARALLELISM"] = "false" + +manager = ProjectManager() +AgentState = AgentState() +config = Config() +logger = Logger() + + +# initial socket +@socketio.on('socket_connect') +def test_connect(data): + print("Socket connected :: ", data) + emit_agent("socket_response", {"data": "Server Connected"}) + + +@app.route("/api/data", methods=["GET"]) +@route_logger(logger) +def data(): + project = manager.get_project_list() + models = LLM().list_models() + search_engines = ["Bing", "Google", "DuckDuckGo"] + return jsonify({"projects": project, "models": models, "search_engines": search_engines}) + + +@app.route("/api/messages", methods=["POST"]) +def get_messages(): + data = request.json + project_name = data.get("project_name") + messages = manager.get_messages(project_name) + return jsonify({"messages": messages}) + + +# Main socket +@socketio.on('user-message') +def handle_message(data): + logger.info(f"User message: {data}") + message = data.get('message') + base_model = data.get('base_model') + project_name = data.get('project_name') + search_engine = data.get('search_engine').lower() + + agent = Agent(base_model=base_model, search_engine=search_engine) + + state = AgentState.get_latest_state(project_name) + if not state: + thread = Thread(target=lambda: agent.execute(message, project_name)) + thread.start() + else: + if AgentState.is_agent_completed(project_name): + thread = Thread(target=lambda: agent.subsequent_execute(message, project_name)) + thread.start() + else: + emit_agent("info", {"type": "warning", "message": "previous agent doesn't completed it's task."}) + last_state = AgentState.get_latest_state(project_name) + if last_state["agent_is_active"] or not last_state["completed"]: + thread = Thread(target=lambda: agent.execute(message, project_name)) + thread.start() + else: + thread = Thread(target=lambda: agent.subsequent_execute(message, project_name)) + thread.start() + +@app.route("/api/is-agent-active", methods=["POST"]) +@route_logger(logger) +def is_agent_active(): + data = request.json + project_name = data.get("project_name") + is_active = AgentState.is_agent_active(project_name) + return jsonify({"is_active": is_active}) + + +@app.route("/api/get-agent-state", methods=["POST"]) +@route_logger(logger) +def get_agent_state(): + data = request.json + project_name = data.get("project_name") + agent_state = AgentState.get_latest_state(project_name) + return jsonify({"state": agent_state}) + + +@app.route("/api/get-browser-snapshot", methods=["GET"]) +@route_logger(logger) +def browser_snapshot(): + snapshot_path = request.args.get("snapshot_path") + return send_file(snapshot_path, as_attachment=True) + + +@app.route("/api/get-browser-session", methods=["GET"]) +@route_logger(logger) +def get_browser_session(): + project_name = request.args.get("project_name") + agent_state = AgentState.get_latest_state(project_name) + if not agent_state: + return jsonify({"session": None}) + else: + browser_session = agent_state["browser_session"] + return jsonify({"session": browser_session}) + + +@app.route("/api/get-terminal-session", methods=["GET"]) +@route_logger(logger) +def get_terminal_session(): + project_name = request.args.get("project_name") + agent_state = AgentState.get_latest_state(project_name) + if not agent_state: + return jsonify({"terminal_state": None}) + else: + terminal_state = agent_state["terminal_session"] + return jsonify({"terminal_state": terminal_state}) + + +@app.route("/api/run-code", methods=["POST"]) +@route_logger(logger) +def run_code(): + data = request.json + project_name = data.get("project_name") + code = data.get("code") + # TODO: Implement code execution logic + return jsonify({"message": "Code execution started"}) + + +@app.route("/api/calculate-tokens", methods=["POST"]) +@route_logger(logger) +def calculate_tokens(): + data = request.json + prompt = data.get("prompt") + tokens = len(TIKTOKEN_ENC.encode(prompt)) + return jsonify({"token_usage": tokens}) + + +@app.route("/api/token-usage", methods=["GET"]) +@route_logger(logger) +def token_usage(): + project_name = request.args.get("project_name") + token_count = AgentState.get_latest_token_usage(project_name) + return jsonify({"token_usage": token_count}) + + +@app.route("/api/logs", methods=["GET"]) +def real_time_logs(): + log_file = logger.read_log_file() + return jsonify({"logs": log_file}) + + +@app.route("/api/settings", methods=["POST"]) +@route_logger(logger) +def set_settings(): + data = request.json + config.update_config(data) + return jsonify({"message": "Settings updated"}) + + +@app.route("/api/settings", methods=["GET"]) +@route_logger(logger) +def get_settings(): + configs = config.get_config() + return jsonify({"settings": configs}) + + +@app.route("/api/status", methods=["GET"]) +@route_logger(logger) +def status(): + return jsonify({"status": "server is running!"}) + +if __name__ == "__main__": + logger.info("Devika is up and running!") + socketio.run(app, debug=False, port=1337, host="0.0.0.0") diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..cb7d06c --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,61 @@ +version: "3.9" + +services: + ollama-service: + image: ollama/ollama:latest + expose: + - 11434 + ports: + - 11434:11434 + healthcheck: + test: ["CMD-SHELL", "curl -f http://localhost:11434/ || exit 1"] + interval: 5s + timeout: 30s + retries: 5 + start_period: 30s + networks: + - devika-subnetwork + + devika-backend-engine: + build: + context: . + dockerfile: devika.dockerfile + depends_on: + - ollama-service + expose: + - 1337 + ports: + - 1337:1337 + environment: + - OLLAMA_HOST=http://ollama-service:11434 + healthcheck: + test: ["CMD-SHELL", "curl -f http://localhost:1337/ || exit 1"] + interval: 5s + timeout: 30s + retries: 5 + start_period: 30s + volumes: + - devika-backend-dbstore:/home/nonroot/devika/db + networks: + - devika-subnetwork + + devika-frontend-app: + build: + context: . + dockerfile: app.dockerfile + args: + - VITE_API_BASE_URL=http://127.0.0.1:1337 + depends_on: + - devika-backend-engine + expose: + - 3000 + ports: + - 3000:3000 + networks: + - devika-subnetwork + +networks: + devika-subnetwork: + +volumes: + devika-backend-dbstore: \ No newline at end of file diff --git a/docs/Installation/images/bing-1.png b/docs/Installation/images/bing-1.png new file mode 100644 index 0000000..9c2d3e8 Binary files /dev/null and b/docs/Installation/images/bing-1.png differ diff --git a/docs/Installation/images/bing.png b/docs/Installation/images/bing.png new file mode 100644 index 0000000..1396205 Binary files /dev/null and b/docs/Installation/images/bing.png differ diff --git a/docs/Installation/images/google-2.png b/docs/Installation/images/google-2.png new file mode 100644 index 0000000..963a0c5 Binary files /dev/null and b/docs/Installation/images/google-2.png differ diff --git a/docs/Installation/images/google.png b/docs/Installation/images/google.png new file mode 100644 index 0000000..328afa5 Binary files /dev/null and b/docs/Installation/images/google.png differ diff --git a/docs/Installation/ollama.md b/docs/Installation/ollama.md new file mode 100644 index 0000000..b2fc157 --- /dev/null +++ b/docs/Installation/ollama.md @@ -0,0 +1,20 @@ +# Ollama Installation Guide + +This guide will help you set up Ollama for Devika. Ollama is a tool that allows you to run open-source large language models (LLMs) locally on your machine. It supports varity of models like Llama-2, mistral, code-llama and many more. + +## Installation + +1. go to the [Ollama](https://ollama.com) website. +2. Download the latest version of the Ollama. +3. After installing the Ollama, you have to download the model you want to use. [Models](https://ollama.com/library) +4. select the model you want to download and copy the command. for example, `ollama run llama2`.it will download the model and start the server. +5. `ollama list` will show the list of models you have downloaded. +6. if the server isn't running then you can manually start by `ollama serve`. default address for the server is `http://localhost:11434` +7. for changing port and other configurations, follow the FAQ [here](https://github.com/ollama/ollama/blob/main/docs/faq.md) +8. for more information, `ollama [command] --help` will show the help menu. for example, `ollama run --help` will show the help menu for the run command. + + +## Devika Configuration + +- if you serve the Ollama on a different address, you can change the port in the `config.toml` file or you can change it via UI. +- if you are using the default address, devika will automatically detect the server and and fetch the models list. diff --git a/docs/Installation/search_engine.md b/docs/Installation/search_engine.md new file mode 100644 index 0000000..0334457 --- /dev/null +++ b/docs/Installation/search_engine.md @@ -0,0 +1,33 @@ +# search Engine setup + +To use the search engine capabilities of Devika, you need to set up the search engine API keys. Currently, Devika supports Bing, Google and DuckDuckGo search engines. If you want to use duckduckgo, you don't need to set up any API keys. + +For Bing and Google search engines, you need to set up the API keys. Here's how you can do it: + +## Bing Search API +- Create Azure account. You can create a free account [here](https://azure.microsoft.com/en-us/free/). +- Go to the [Bing Search API](https://www.microsoft.com/en-us/bing/apis/bing-web-search-api) website. +- click on the `Try now` button. +- Sign in/sign up with your Azure account. +- Create a new resource group (if you don't have any). +![alt text](images/bing.png) +- click on the `Review and create` button. +- if everything is fine, click on the `Create` button. +- Once the resource is created, go to the `Keys and Endpoint` tab. +![alt text](images/bing-1.png) +- Copy either `Key1` or `Key2` and paste it into the `API_KEYS` field with the name `BING` in the `config.toml` file located in the root directory of Devika, or you can set it via the UI. +- Copy the `Endpoint` and paste it into the `API_Endpoints` field with the name `BING` in the `config.toml` file located in the root directory of Devika, or you can set it via the UI. + + +## Google Search API +- if don't have then create GCP account [Google Cloud Console](https://console.cloud.google.com/). +- visit [Here](https://developers.google.com/custom-search/v1/overview) is the official documentation. +- click on `Get a Key`. +- select the project you have or create a new project. click on next. +![alt text](images/google.png) +- it enable the Custom Search API for the project and create the API key. +- Copy the API key and paste it in the API_KEYS field with the name `GOOGLE_SEARCH` in the `config.toml` file in the root directory of Devika or you can set it via UI. +- for the search engine id, go to the [Google Custom Search Engine](https://programmablesearchengine.google.com/controlpanel/all) website. +- click on the `Add` button. +![alt text](images/google-2.png) +- After creating the engine. Copy the `Search Engine ID` and paste it in the API_Endpoints field with the name `GOOGLE_SEARCH_ENGINE_ID` in the `config.toml` file in the root directory of Devika or you can set it via UI. diff --git a/docs/architecture/ARCHITECTURE.md b/docs/architecture/ARCHITECTURE.md new file mode 100644 index 0000000..cd89e2e --- /dev/null +++ b/docs/architecture/ARCHITECTURE.md @@ -0,0 +1,251 @@ +# Devika Architecture + +Devika is an advanced AI software engineer that can understand high-level human instructions, break them down into steps, research relevant information, and write code to achieve a given objective. This document provides a detailed technical overview of Devika's system architecture and how the various components work together. + +## Table of Contents + +1. [Overview](#overview) +2. [Agent Core](#agent-core) +3. [Agents](#agents) + - [Planner](#planner) + - [Researcher](#researcher) + - [Coder](#coder) + - [Action](#action) + - [Runner](#runner) + - [Feature](#feature) + - [Patcher](#patcher) + - [Reporter](#reporter) + - [Decision](#decision) +4. [Language Models](#language-models) +5. [Browser Interaction](#browser-interaction) +6. [Project Management](#project-management) +7. [Agent State Management](#agent-state-management) +8. [Services](#services) +9. [Utilities](#utilities) +10. [Conclusion](#conclusion) + +## Overview + +At a high level, Devika consists of the following key components: + +- **Agent Core**: Orchestrates the overall AI planning, reasoning and execution process. Communicates with various sub-agents. +- **Agents**: Specialized sub-agents that handle specific tasks like planning, research, coding, patching, reporting etc. +- **Language Models**: Leverages large language models (LLMs) like Claude, GPT-4, GPT-3 for natural language understanding and generation. +- **Browser Interaction**: Enables web browsing, information gathering, and interaction with web elements. +- **Project Management**: Handles organization and persistence of project-related data. +- **Agent State Management**: Tracks and persists the dynamic state of the AI agent across interactions. +- **Services**: Integrations with external services like GitHub, Netlify for enhanced capabilities. +- **Utilities**: Supporting modules for configuration, logging, vector search, PDF generation etc. + +Let's dive into each of these components in more detail. + +## Agent Core + +The `Agent` class serves as the central engine that drives Devika's AI planning and execution loop. Here's how it works: + +1. When a user provides a high-level prompt, the `execute` method is invoked on the Agent. +2. The prompt is first passed to the Planner agent to generate a step-by-step plan. +3. The Researcher agent then takes this plan and extracts relevant search queries and context. +4. The Agent performs web searches using Bing Search API and crawls the top results. +5. The raw crawled content is passed through the Formatter agent to extract clean, relevant information. +6. This researched context, along with the step-by-step plan, is fed to the Coder agent to generate code. +7. The generated code is saved to the project directory on disk. +8. If the user interacts further with a follow-up prompt, the `subsequent_execute` method is invoked. +9. The Action agent determines the appropriate action to take based on the user's message (run code, deploy, write tests, add feature, fix bug, write report etc.) +10. The corresponding specialized agent is invoked to perform the action (Runner, Feature, Patcher, Reporter). +11. Results are communicated back to the user and the project files are updated. + +Throughout this process, the Agent Core is responsible for: +- Managing conversation history and project-specific context +- Updating agent state and internal monologue +- Accumulating context keywords across agent prompts +- Emulating the "thinking" process of the AI through timed agent state updates +- Handling special commands through the Decision agent (e.g. git clone, browser interaction session) + +## Agents + +Devika's cognitive abilities are powered by a collection of specialized sub-agents. Each agent is implemented as a separate Python class. Agents communicate with the underlying LLMs through prompt templates defined in Jinja2 format. Key agents include: + +### Planner +- Generates a high-level step-by-step plan based on the user's prompt +- Extracts focus area and provides a summary +- Uses few-shot prompting to provide examples of the expected response format + +### Researcher +- Takes the generated plan and extracts relevant search queries +- Ranks and filters queries based on relevance and specificity +- Prompts the user for additional context if required +- Aims to maximize information gain while minimizing number of searches + +### Coder +- Generates code based on the step-by-step plan and researched context +- Segments code into appropriate files and directories +- Includes informative comments and documentation +- Handles a variety of languages and frameworks +- Validates code syntax and style + +### Action +- Determines the appropriate action to take based on the user's follow-up prompt +- Maps user intent to a specific action keyword (run, test, deploy, fix, implement, report) +- Provides a human-like confirmation of the action to the user + +### Runner +- Executes the written code in a sandboxed environment +- Handles different OS environments (Mac, Linux, Windows) +- Streams command output to user in real-time +- Gracefully handles errors and exceptions + +### Feature +- Implements a new feature based on user's specification +- Modifies existing project files while maintaining code structure and style +- Performs incremental testing to verify feature is working as expected + +### Patcher +- Debugs and fixes issues based on user's description or error message +- Analyzes existing code to identify potential root causes +- Suggests and implements fix, with explanation of the changes made + +### Reporter +- Generates a comprehensive report summarizing the project +- Includes high-level overview, technical design, setup instructions, API docs etc. +- Formats report in a clean, readable structure with table of contents +- Exports report as a PDF document + +### Decision +- Handles special command-like instructions that don't fit other agents +- Maps commands to specific functions (git clone, browser interaction etc.) +- Executes the corresponding function with provided arguments + +Each agent follows a common pattern: +1. Prepare a prompt by rendering the Jinja2 template with current context +2. Query the LLM to get a response based on the prompt +3. Validate and parse the LLM's response to extract structured output +4. Perform any additional processing or side-effects (e.g. save to disk) +5. Return the result to the Agent Core for further action + +Agents aim to be stateless and idempotent where possible. State and history is managed by the Agent Core and passed into the agents as needed. This allows for a modular, composable design. + +## Language Models + +Devika's natural language processing capabilities are driven by state-of-the-art LLMs. The `LLM` class provides a unified interface to interact with different language models: + +- **Claude** (Anthropic): Claude models like claude-v1.3, claude-instant-v1.0 etc. +- **GPT-4/GPT-3** (OpenAI): Models like gpt-4, gpt-3.5-turbo etc. +- **Self-hosted models** (via [Ollama](https://ollama.com/)): Allows using open-source models in a self-hosted environment + +The `LLM` class abstracts out the specifics of each provider's API, allowing agents to interact with the models in a consistent way. It supports: +- Listing available models +- Generating completions based on a prompt +- Tracking and accumulating token usage over time + +Choosing the right model for a given use case depends on factors like desired quality, speed, cost etc. The modular design allows swapping out models easily. + +## Browser Interaction + +Devika can interact with webpages in an automated fashion to gather information and perform actions. This is powered by the `Browser` and `Crawler` classes. + +The `Browser` class uses Playwright to provide high-level web automation primitives: +- Spawning a browser instance (Chromium) +- Navigating to a URL +- Querying DOM elements +- Extracting page content as text, Markdown, PDF etc. +- Taking a screenshot of the page + +The `Crawler` class defines an agent that can interact with a webpage based on natural language instructions. It leverages: +- Pre-defined browser actions like scroll, click, type etc. +- A prompt template that provides examples of how to use these actions +- LLM to determine the best action to take based on current page content and objective + +The `start_interaction` function sets up a loop where: +1. The current page content and objective is passed to the LLM +2. The LLM returns the next best action to take (e.g. "CLICK 12" or "TYPE 7 machine learning") +3. The Crawler executes this action on the live page +4. The process repeats from the updated page state + +This allows performing a sequence of actions to achieve a higher-level objective (e.g. research a topic, fill out a form, interact with an app etc.) + +## Project Management + +The `ProjectManager` class is responsible for creating, updating and querying projects and their associated metadata. Key functions include: + +- Creating a new project and initializing its directory structure +- Deleting a project and its associated files +- Adding a message to a project's conversation history +- Retrieving messages for a given project +- Getting the latest user/AI message in a conversation +- Listing all projects +- Zipping a project's files for export + +Project metadata is persisted in a SQLite database using SQLModel. The `Projects` table stores: +- Project name +- JSON-serialized conversation history + +This allows the agent to work on multiple projects simultaneously and retain conversation history across sessions. + +## Agent State Management + +As the AI agent works on a task, we need to track and display its internal state to the user. The `AgentState` class handles this by providing an interface to: + +- Initialize a new agent state +- Add a state to the current sequence of states for a project +- Update the latest state for a project +- Query the latest state or entire state history for a project +- Mark the agent as active/inactive or task as completed + +Agent state includes information like: +- Current step or action being executed +- Internal monologue reflecting the agent's current "thoughts" +- Browser interactions (URL visited, screenshot) +- Terminal interactions (command executed, output) +- Token usage so far + +Like projects, agent states are also persisted in the SQLite DB using SQLModel. The `AgentStateModel` table stores: +- Project name +- JSON-serialized list of states + +Having a persistent log of agent states is useful for: +- Providing real-time visibility to the user +- Auditing and debugging agent behavior +- Resuming from interruptions or failures + +## Services + +Devika integrates with external services to augment its capabilities: + +- **GitHub**: Performing git operations like clone/pull, listing repos/commits/files etc. +- **Netlify**: Deploying web apps and sites seamlessly + +The `GitHub` and `Netlify` classes provide lightweight wrappers around the respective service APIs. +They handle authentication, making HTTP requests, and parsing responses. + +This allows Devika to perform actions like: +- Cloning a repo given a GitHub URL +- Listing a user's GitHub repos +- Creating a new Netlify site +- Deploying a directory to Netlify +- Providing the deployed site URL to the user + +Integrations are done in a modular way so that new services can be added easily. + +## Utilities + +Devika makes use of several utility modules to support its functioning: + +- `Config`: Loads and provides access to configuration settings (API keys, folder paths etc.) +- `Logger`: Sets up logging to console and file, with support for log levels and colors +- `ReadCode`: Recursively reads code files in a directory and converts them into a Markdown format +- `SentenceBERT`: Extracts keywords and semantic information from text using SentenceBERT embeddings +- `Experts`: A collection of domain-specific knowledge bases to assist in certain areas (e.g. webdev, physics, chemistry, math) + +The utility modules aim to provide reusable functionality that is used across different parts of the system. + +## Conclusion + +Devika is a complex system that combines multiple AI and automation techniques to deliver an intelligent programming assistant. Key design principles include: + +- Modularity: Breaking down functionality into specialized agents and services +- Flexibility: Supporting different LLMs, services and domains in a pluggable fashion +- Persistence: Storing project and agent state in a DB to enable pause/resume and auditing +- Transparency: Surfacing agent thought process and interactions to user in real-time + +By understanding how the different components work together, we can extend, optimize and scale Devika to take on increasingly sophisticated software engineering tasks. The agent-based architecture provides a strong foundation to build more advanced AI capabilities in the future. diff --git a/docs/architecture/README.md b/docs/architecture/README.md new file mode 100644 index 0000000..7fa3bc1 --- /dev/null +++ b/docs/architecture/README.md @@ -0,0 +1,16 @@ +## System Architecture + +Devika's system architecture consists of the following key components: + +1. **User Interface**: A web-based chat interface for interacting with Devika, viewing project files, and monitoring the agent's state. +2. **Agent Core**: The central component that orchestrates the AI planning, reasoning, and execution process. It communicates with various sub-agents and modules to accomplish tasks. +3. **Large Language Models**: Devika leverages state-of-the-art language models like **Claude**, **GPT-4**, and **Local LLMs via Ollama** for natural language understanding, generation, and reasoning. +4. **Planning and Reasoning Engine**: Responsible for breaking down high-level objectives into actionable steps and making decisions based on the current context. +5. **Research Module**: Utilizes keyword extraction and web browsing capabilities to gather relevant information for the task at hand. +6. **Code Writing Module**: Generates code based on the plan, research findings, and user requirements. Supports multiple programming languages. +7. **Browser Interaction Module**: Enables Devika to navigate websites, extract information, and interact with web elements as needed. +8. **Knowledge Base**: Stores and retrieves project-specific information, code snippets, and learned knowledge for efficient access. +9. **Database**: Persists project data, agent states, and configuration settings. + +Read [ARCHITECTURE.md](https://github.com/stitionai/devika/Docs/architecture/ARCHITECTURE.md) for the detailed architecture of Devika. +Read [UNDER_THE_HOOD.md](https://github.com/stitionai/devika/Docs/architecture/UNDER_THE_HOOD.md) for the detailed working of Devika. diff --git a/docs/architecture/UNDER_THE_HOOD.md b/docs/architecture/UNDER_THE_HOOD.md new file mode 100644 index 0000000..ad1d5b1 --- /dev/null +++ b/docs/architecture/UNDER_THE_HOOD.md @@ -0,0 +1,50 @@ +## Under The Hood + +Let's dive deeper into some of the key components and techniques used in Devika: + +### AI Planning and Reasoning + +Devika employs advanced AI planning and reasoning algorithms to break down high-level objectives into actionable steps. The planning process involves the following stages: + +1. **Objective Understanding**: Devika analyzes the given objective or task description to understand the user's intent and requirements. +2. **Context Gathering**: Relevant context is collected from the conversation history, project files, and knowledge base to inform the planning process. +3. **Step Generation**: Based on the objective and context, Devika generates a sequence of high-level steps to accomplish the task. +4. **Refinement and Validation**: The generated steps are refined and validated to ensure their feasibility and alignment with the objective. +5. **Execution**: Devika executes each step in the plan, utilizing various sub-agents and modules as needed. + +The reasoning engine constantly evaluates the progress and makes adjustments to the plan based on new information or feedback received during execution. + +### Keyword Extraction + +To enable focused research and information gathering, Devika employs keyword extraction techniques. The process involves the following steps: + +1. **Preprocessing**: The input text (objective, conversation history, or project files) is preprocessed by removing stop words, tokenizing, and normalizing the text. +2. **Keyword Identification**: Devika uses the BERT (Bidirectional Encoder Representations from Transformers) model to identify important keywords and phrases from the preprocessed text. BERT's pre-training on a large corpus allows it to capture semantic relationships and understand the significance of words in the given context. +3. **Keyword Ranking**: The identified keywords are ranked based on their relevance and importance to the task at hand. Techniques like TF-IDF (Term Frequency-Inverse Document Frequency) and TextRank are used to assign scores to each keyword. +4. **Keyword Selection**: The top-ranked keywords are selected as the most relevant and informative for the current context. These keywords are used to guide the research and information gathering process. + +By extracting contextually relevant keywords, Devika can focus its research efforts and retrieve pertinent information to assist in the task completion. + +### Browser Interaction + +Devika incorporates browser interaction capabilities to navigate websites, extract information, and interact with web elements. The browser interaction module leverages the Playwright library to automate web interactions. The process involves the following steps: + +1. **Navigation**: Devika uses Playwright to navigate to specific URLs or perform searches based on the keywords or requirements provided. +2. **Element Interaction**: Playwright allows Devika to interact with web elements such as clicking buttons, filling forms, and extracting text from specific elements. +3. **Page Parsing**: Devika parses the HTML structure of the web pages visited to extract relevant information. It uses techniques like CSS selectors and XPath to locate and extract specific data points. +4. **JavaScript Execution**: Playwright enables Devika to execute JavaScript code within the browser context, allowing for dynamic interactions and data retrieval. +5. **Screenshot Capture**: Devika can capture screenshots of the web pages visited, which can be useful for visual reference or debugging purposes. + +The browser interaction module empowers Devika to gather information from the web, interact with online resources, and incorporate real-time data into its decision-making and code generation processes. + +### Code Writing + +Devika's code writing module generates code based on the plan, research findings, and user requirements. The process involves the following steps: + +1. **Language Selection**: Devika identifies the programming language specified by the user or infers it based on the project context. +2. **Code Structure Generation**: Based on the plan and language-specific patterns, Devika generates the high-level structure of the code, including classes, functions, and modules. +3. **Code Population**: Devika fills in the code structure with specific logic, algorithms, and data manipulation statements. It leverages the research findings, code snippets from the knowledge base, and its own understanding of programming concepts to generate meaningful code. +4. **Code Formatting**: The generated code is formatted according to the language-specific conventions and best practices to ensure readability and maintainability. +5. **Code Review and Refinement**: Devika reviews the generated code for syntax errors, logical inconsistencies, and potential improvements. It iteratively refines the code based on its own analysis and any feedback provided by the user. + +Devika's code writing capabilities enable it to generate functional and efficient code in various programming languages, taking into account the specific requirements and context of each project. \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..d2bdc16 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,32 @@ +flask +flask-cors +toml +urllib3 +requests +colorama +fastlogging +Jinja2 +mistletoe +markdownify +pdfminer.six +playwright +pytest-playwright +tiktoken +ollama +openai +anthropic +google-generativeai +sqlmodel +keybert +GitPython +netlify-py +Markdown +xhtml2pdf +mistralai +Flask-SocketIO +eventlet +groq +duckduckgo-search +orjson +gevent +gevent-websocket diff --git a/sample.config.toml b/sample.config.toml new file mode 100644 index 0000000..cd79613 --- /dev/null +++ b/sample.config.toml @@ -0,0 +1,31 @@ +[STORAGE] +SQLITE_DB = "data/db/devika.db" +SCREENSHOTS_DIR = "data/screenshots" +PDFS_DIR = "data/pdfs" +PROJECTS_DIR = "data/projects" +LOGS_DIR = "data/logs" +REPOS_DIR = "data/repos" + +[API_KEYS] +BING = "" +GOOGLE_SEARCH = "" +GOOGLE_SEARCH_ENGINE_ID = "" +CLAUDE = "" +OPENAI = "" +GEMINI = "" +MISTRAL = "" +GROQ = "" +NETLIFY = "" + +[API_ENDPOINTS] +BING = "https://api.bing.microsoft.com/v7.0/search" +GOOGLE = "https://www.googleapis.com/customsearch/v1" +OLLAMA = "http://127.0.0.1:11434" +OPENAI = "https://api.openai.com/v1" + +[LOGGING] +LOG_REST_API = "true" +LOG_PROMPTS = "false" + +[TIMEOUT] +INFERENCE = 60 \ No newline at end of file diff --git a/setup.sh b/setup.sh new file mode 100644 index 0000000..9ddd3d2 --- /dev/null +++ b/setup.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +pip3 install -r requirements.txt +playwright install +python3 -m playwright install-deps +cd ui/ +bun install diff --git a/src/agents/__init__.py b/src/agents/__init__.py new file mode 100644 index 0000000..a9c4dcf --- /dev/null +++ b/src/agents/__init__.py @@ -0,0 +1,9 @@ +from .agent import Agent + +from .planner import Planner +from .internal_monologue import InternalMonologue +from .researcher import Researcher +from .formatter import Formatter +from .coder import Coder +from .action import Action +from .runner import Runner \ No newline at end of file diff --git a/src/agents/action/__init__.py b/src/agents/action/__init__.py new file mode 100644 index 0000000..0bf7f45 --- /dev/null +++ b/src/agents/action/__init__.py @@ -0,0 +1 @@ +from .action import Action \ No newline at end of file diff --git a/src/agents/action/action.py b/src/agents/action/action.py new file mode 100644 index 0000000..f7563ec --- /dev/null +++ b/src/agents/action/action.py @@ -0,0 +1,41 @@ +import json + +from jinja2 import Environment, BaseLoader + +from src.services.utils import retry_wrapper, validate_responses +from src.config import Config +from src.llm import LLM + +PROMPT = open("src/agents/action/prompt.jinja2", "r").read().strip() + +class Action: + def __init__(self, base_model: str): + config = Config() + self.project_dir = config.get_projects_dir() + + self.llm = LLM(model_id=base_model) + + def render( + self, conversation: str + ) -> str: + env = Environment(loader=BaseLoader()) + template = env.from_string(PROMPT) + return template.render( + conversation=conversation + ) + + @validate_responses + def validate_response(self, response: str): + if "response" not in response and "action" not in response: + return False + else: + return response["response"], response["action"] + + @retry_wrapper + def execute(self, conversation: list, project_name: str) -> str: + prompt = self.render(conversation) + response = self.llm.inference(prompt, project_name) + + valid_response = self.validate_response(response) + + return valid_response diff --git a/src/agents/action/prompt.jinja2 b/src/agents/action/prompt.jinja2 new file mode 100644 index 0000000..629d482 --- /dev/null +++ b/src/agents/action/prompt.jinja2 @@ -0,0 +1,31 @@ +You are Devika, an AI Software Engineer. You have been talking to the user and this is your exchanges so far: + +``` +{% for message in conversation %} +{{ message }} +{% endfor %} +``` + +User's last message: {{ conversation[-1] }} + +You are now going to respond to the user's last message according to the specific request. + +The user could be asking the following: +- `answer` - Answer a question about the project. +- `run` - Run the project. +- `deploy` - Deploy the project. +- `feature` - Add a new feature to the project. +- `bug` - Fix a bug in the project. +- `report` - Generate a report on the project. + +Your response should be in the following format: +``` +{ + "response": "Your human-like response to the user's message here describing the action you are taking." + "action": "run" +} +``` + +The action can only be one, read the user's last message carefully to determine which action to take. Sometimes the user's prompt might indicate multiple actions but you should only take one optimal action and use your answer response to convey what you are doing. + +Any response other than the JSON format will be rejected by the system. \ No newline at end of file diff --git a/src/agents/agent.py b/src/agents/agent.py new file mode 100644 index 0000000..2018337 --- /dev/null +++ b/src/agents/agent.py @@ -0,0 +1,365 @@ +from .planner import Planner +from .researcher import Researcher +from .formatter import Formatter +from .coder import Coder +from .action import Action +from .internal_monologue import InternalMonologue +from .answer import Answer +from .runner import Runner +from .feature import Feature +from .patcher import Patcher +from .reporter import Reporter +from .decision import Decision + +from src.project import ProjectManager +from src.state import AgentState +from src.logger import Logger + +from src.bert.sentence import SentenceBert +from src.memory import KnowledgeBase +from src.browser.search import BingSearch, GoogleSearch, DuckDuckGoSearch +from src.browser import Browser +from src.browser import start_interaction +from src.filesystem import ReadCode +from src.services import Netlify +from src.documenter.pdf import PDF + +import json +import time +import platform +import tiktoken +import asyncio + +from src.socket_instance import emit_agent + + +class Agent: + def __init__(self, base_model: str, search_engine: str, browser: Browser = None): + if not base_model: + raise ValueError("base_model is required") + + self.logger = Logger() + + """ + Accumulate contextual keywords from chained prompts of all preparation agents + """ + self.collected_context_keywords = [] + + """ + Agents + """ + self.planner = Planner(base_model=base_model) + self.researcher = Researcher(base_model=base_model) + self.formatter = Formatter(base_model=base_model) + self.coder = Coder(base_model=base_model) + self.action = Action(base_model=base_model) + self.internal_monologue = InternalMonologue(base_model=base_model) + self.answer = Answer(base_model=base_model) + self.runner = Runner(base_model=base_model) + self.feature = Feature(base_model=base_model) + self.patcher = Patcher(base_model=base_model) + self.reporter = Reporter(base_model=base_model) + self.decision = Decision(base_model=base_model) + + self.project_manager = ProjectManager() + self.agent_state = AgentState() + self.engine = search_engine + self.tokenizer = tiktoken.get_encoding("cl100k_base") + + async def open_page(self, project_name, url): + browser = await Browser().start() + + await browser.go_to(url) + _, raw = await browser.screenshot(project_name) + data = await browser.extract_text() + await browser.close() + + return browser, raw, data + + def search_queries(self, queries: list, project_name: str) -> dict: + results = {} + + knowledge_base = KnowledgeBase() + + if self.engine == "bing": + web_search = BingSearch() + elif self.engine == "google": + web_search = GoogleSearch() + else: + web_search = DuckDuckGoSearch() + + self.logger.info(f"\nSearch Engine :: {self.engine}") + + for query in queries: + query = query.strip().lower() + + # knowledge = knowledge_base.get_knowledge(tag=query) + # if knowledge: + # results[query] = knowledge + # continue + + loop = asyncio.new_event_loop() + asyncio.set_event_loop(loop) + + web_search.search(query) + + link = web_search.get_first_link() + print("\nLink :: ", link, '\n') + if not link: + continue + browser, raw, data = loop.run_until_complete(self.open_page(project_name, link)) + emit_agent("screenshot", {"data": raw, "project_name": project_name}, False) + results[query] = self.formatter.execute(data, project_name) + + self.logger.info(f"got the search results for : {query}") + # knowledge_base.add_knowledge(tag=query, contents=results[query]) + return results + + def update_contextual_keywords(self, sentence: str): + """ + Update the context keywords with the latest sentence/prompt + """ + keywords = SentenceBert(sentence).extract_keywords() + for keyword in keywords: + self.collected_context_keywords.append(keyword[0]) + + return self.collected_context_keywords + + def make_decision(self, prompt: str, project_name: str) -> str: + decision = self.decision.execute(prompt, project_name) + + for item in decision: + function = item["function"] + args = item["args"] + reply = item["reply"] + + self.project_manager.add_message_from_devika(project_name, reply) + + if function == "git_clone": + url = args["url"] + # Implement git clone functionality here + + elif function == "generate_pdf_document": + user_prompt = args["user_prompt"] + # Call the reporter agent to generate the PDF document + markdown = self.reporter.execute([user_prompt], "", project_name) + _out_pdf_file = PDF().markdown_to_pdf(markdown, project_name) + + project_name_space_url = project_name.replace(" ", "%20") + pdf_download_url = "http://127.0.0.1:1337/api/download-project-pdf?project_name={}".format( + project_name_space_url) + response = f"I have generated the PDF document. You can download it from here: {pdf_download_url}" + + #asyncio.run(self.open_page(project_name, pdf_download_url)) + + self.project_manager.add_message_from_devika(project_name, response) + + elif function == "browser_interaction": + user_prompt = args["user_prompt"] + # Call the interaction agent to interact with the browser + start_interaction(self.base_model, user_prompt, project_name) + + elif function == "coding_project": + user_prompt = args["user_prompt"] + # Call the planner, researcher, coder agents in sequence + plan = self.planner.execute(user_prompt, project_name) + planner_response = self.planner.parse_response(plan) + + research = self.researcher.execute(plan, self.collected_context_keywords, project_name) + search_results = self.search_queries(research["queries"], project_name) + + code = self.coder.execute( + step_by_step_plan=plan, + user_context=research["ask_user"], + search_results=search_results, + project_name=project_name + ) + self.coder.save_code_to_project(code, project_name) + + def subsequent_execute(self, prompt: str, project_name: str): + """ + Subsequent flow of execution + """ + new_message = self.project_manager.new_message() + new_message['message'] = prompt + new_message['from_devika'] = False + self.project_manager.add_message_from_user(project_name, new_message['message']) + + os_system = platform.platform() + + self.agent_state.set_agent_active(project_name, True) + + conversation = self.project_manager.get_all_messages_formatted(project_name) + code_markdown = ReadCode(project_name).code_set_to_markdown() + + response, action = self.action.execute(conversation, project_name) + + self.project_manager.add_message_from_devika(project_name, response) + + print("\naction :: ", action, '\n') + + if action == "answer": + response = self.answer.execute( + conversation=conversation, + code_markdown=code_markdown, + project_name=project_name + ) + self.project_manager.add_message_from_devika(project_name, response) + + elif action == "run": + project_path = self.project_manager.get_project_path(project_name) + self.runner.execute( + conversation=conversation, + code_markdown=code_markdown, + os_system=os_system, + project_path=project_path, + project_name=project_name + ) + + elif action == "deploy": + deploy_metadata = Netlify().deploy(project_name) + deploy_url = deploy_metadata["deploy_url"] + + response = { + "message": "Done! I deployed your project on Netlify.", + "deploy_url": deploy_url + } + response = json.dumps(response, indent=4) + + self.project_manager.add_message_from_devika(project_name, response) + + elif action == "feature": + code = self.feature.execute( + conversation=conversation, + code_markdown=code_markdown, + system_os=os_system, + project_name=project_name + ) + print("\nfeature code :: ", code, '\n') + self.feature.save_code_to_project(code, project_name) + + elif action == "bug": + code = self.patcher.execute( + conversation=conversation, + code_markdown=code_markdown, + commands=None, + error=prompt, + system_os=os_system, + project_name=project_name + ) + print("\nbug code :: ", code, '\n') + self.patcher.save_code_to_project(code, project_name) + + elif action == "report": + markdown = self.reporter.execute(conversation, code_markdown, project_name) + + _out_pdf_file = PDF().markdown_to_pdf(markdown, project_name) + + project_name_space_url = project_name.replace(" ", "%20") + pdf_download_url = "http://127.0.0.1:1337/api/download-project-pdf?project_name={}".format( + project_name_space_url) + response = f"I have generated the PDF document. You can download it from here: {pdf_download_url}" + + #asyncio.run(self.open_page(project_name, pdf_download_url)) + + self.project_manager.add_message_from_devika(project_name, response) + + self.agent_state.set_agent_active(project_name, False) + self.agent_state.set_agent_completed(project_name, True) + + def execute(self, prompt: str, project_name: str) -> str: + """ + Agentic flow of execution + """ + if project_name: + self.project_manager.add_message_from_user(project_name, prompt) + + self.agent_state.create_state(project=project_name) + + plan = self.planner.execute(prompt, project_name) + print("\nplan :: ", plan, '\n') + + planner_response = self.planner.parse_response(plan) + reply = planner_response["reply"] + focus = planner_response["focus"] + plans = planner_response["plans"] + summary = planner_response["summary"] + + self.project_manager.add_message_from_devika(project_name, reply) + self.project_manager.add_message_from_devika(project_name, json.dumps(plans, indent=4)) + # self.project_manager.add_message_from_devika(project_name, f"In summary: {summary}") + + self.update_contextual_keywords(focus) + print("\ncontext_keywords :: ", self.collected_context_keywords, '\n') + + internal_monologue = self.internal_monologue.execute(current_prompt=plan, project_name=project_name) + print("\ninternal_monologue :: ", internal_monologue, '\n') + + new_state = self.agent_state.new_state() + new_state["internal_monologue"] = internal_monologue + self.agent_state.add_to_current_state(project_name, new_state) + + research = self.researcher.execute(plan, self.collected_context_keywords, project_name=project_name) + print("\nresearch :: ", research, '\n') + + queries = research["queries"] + queries_combined = ", ".join(queries) + ask_user = research["ask_user"] + + if (queries and len(queries) > 0) or ask_user != "": + self.project_manager.add_message_from_devika( + project_name, + f"I am browsing the web to research the following queries: {queries_combined}." + f"\n If I need anything, I will make sure to ask you." + ) + if not queries and len(queries) == 0: + self.project_manager.add_message_from_devika( + project_name, + "I think I can proceed without searching the web." + ) + + ask_user_prompt = "Nothing from the user." + + if ask_user != "" and ask_user is not None: + self.project_manager.add_message_from_devika(project_name, ask_user) + self.agent_state.set_agent_active(project_name, False) + got_user_query = False + + while not got_user_query: + self.logger.info("Waiting for user query...") + + latest_message_from_user = self.project_manager.get_latest_message_from_user(project_name) + validate_last_message_is_from_user = self.project_manager.validate_last_message_is_from_user( + project_name) + + if latest_message_from_user and validate_last_message_is_from_user: + ask_user_prompt = latest_message_from_user["message"] + got_user_query = True + self.project_manager.add_message_from_devika(project_name, "Thanks! 🙌") + time.sleep(5) + + self.agent_state.set_agent_active(project_name, True) + + if queries and len(queries) > 0: + search_results = self.search_queries(queries, project_name) + + else: + search_results = {} + + code = self.coder.execute( + step_by_step_plan=plan, + user_context=ask_user_prompt, + search_results=search_results, + project_name=project_name + ) + print("\ncode :: ", code, '\n') + + self.coder.save_code_to_project(code, project_name) + + self.agent_state.set_agent_active(project_name, False) + self.agent_state.set_agent_completed(project_name, True) + self.project_manager.add_message_from_devika( + project_name, + "I have completed the my task. \n" + "if you would like me to do anything else, please let me know. \n" + ) diff --git a/src/agents/answer/__init__.py b/src/agents/answer/__init__.py new file mode 100644 index 0000000..5f6a5e5 --- /dev/null +++ b/src/agents/answer/__init__.py @@ -0,0 +1 @@ +from .answer import Answer \ No newline at end of file diff --git a/src/agents/answer/answer.py b/src/agents/answer/answer.py new file mode 100644 index 0000000..c6bcbed --- /dev/null +++ b/src/agents/answer/answer.py @@ -0,0 +1,42 @@ +import json + +from jinja2 import Environment, BaseLoader + +from src.services.utils import retry_wrapper, validate_responses +from src.config import Config +from src.llm import LLM + +PROMPT = open("src/agents/answer/prompt.jinja2", "r").read().strip() + +class Answer: + def __init__(self, base_model: str): + config = Config() + self.project_dir = config.get_projects_dir() + + self.llm = LLM(model_id=base_model) + + def render( + self, conversation: str, code_markdown: str + ) -> str: + env = Environment(loader=BaseLoader()) + template = env.from_string(PROMPT) + return template.render( + conversation=conversation, + code_markdown=code_markdown + ) + + @validate_responses + def validate_response(self, response: str): + if "response" not in response: + return False + else: + return response["response"] + + @retry_wrapper + def execute(self, conversation: list, code_markdown: str, project_name: str) -> str: + prompt = self.render(conversation, code_markdown) + response = self.llm.inference(prompt, project_name) + + valid_response = self.validate_response(response) + + return valid_response diff --git a/src/agents/answer/prompt.jinja2 b/src/agents/answer/prompt.jinja2 new file mode 100644 index 0000000..5cda5bc --- /dev/null +++ b/src/agents/answer/prompt.jinja2 @@ -0,0 +1,27 @@ +You are Devika, an AI Software Engineer. You have been talking to the user and this is your exchange so far: + +``` +{% for message in conversation %} +{{ message }} +{% endfor %} +``` + +Full Code: +~~~ +{{ code_markdown }} +~~~ + +User's last message: {{ conversation[-1] }} + +Your response should be in the following format: +``` +{ + "response": "Your human-like response to the user's last message." +} +``` + +Rules: +- Read the full context, including the code (if any) carefully to answer the user's prompt. +- Your response can be as long as possible, but it should be concise and to the point. + +Any response other than the JSON format will be rejected by the system. \ No newline at end of file diff --git a/src/agents/coder/__init__.py b/src/agents/coder/__init__.py new file mode 100644 index 0000000..3f12fc1 --- /dev/null +++ b/src/agents/coder/__init__.py @@ -0,0 +1 @@ +from .coder import Coder \ No newline at end of file diff --git a/src/agents/coder/coder.py b/src/agents/coder/coder.py new file mode 100644 index 0000000..3e021d6 --- /dev/null +++ b/src/agents/coder/coder.py @@ -0,0 +1,134 @@ +import os +import time + +from jinja2 import Environment, BaseLoader +from typing import List, Dict, Union + +from src.config import Config +from src.llm import LLM +from src.state import AgentState +from src.logger import Logger +from src.services.utils import retry_wrapper +from src.socket_instance import emit_agent + +PROMPT = open("src/agents/coder/prompt.jinja2", "r").read().strip() + +class Coder: + def __init__(self, base_model: str): + config = Config() + self.project_dir = config.get_projects_dir() + self.logger = Logger() + self.llm = LLM(model_id=base_model) + + def render( + self, step_by_step_plan: str, user_context: str, search_results: dict + ) -> str: + env = Environment(loader=BaseLoader()) + template = env.from_string(PROMPT) + return template.render( + step_by_step_plan=step_by_step_plan, + user_context=user_context, + search_results=search_results, + ) + + def validate_response(self, response: str) -> Union[List[Dict[str, str]], bool]: + response = response.strip() + + self.logger.debug(f"Response from the model: {response}") + + if "~~~" not in response: + return False + + response = response.split("~~~", 1)[1] + response = response[:response.rfind("~~~")] + response = response.strip() + + result = [] + current_file = None + current_code = [] + code_block = False + + for line in response.split("\n"): + if line.startswith("File: "): + if current_file and current_code: + result.append({"file": current_file, "code": "\n".join(current_code)}) + current_file = line.split(":")[1].strip() + current_code = [] + code_block = False + elif line.startswith("```"): + code_block = not code_block + else: + current_code.append(line) + + if current_file and current_code: + result.append({"file": current_file, "code": "\n".join(current_code)}) + + return result + + def save_code_to_project(self, response: List[Dict[str, str]], project_name: str): + file_path_dir = None + project_name = project_name.lower().replace(" ", "-") + + for file in response: + file_path = os.path.join(self.project_dir, project_name, file['file']) + file_path_dir = os.path.dirname(file_path) + os.makedirs(file_path_dir, exist_ok=True) + + with open(file_path, "w", encoding="utf-8") as f: + f.write(file["code"]) + + return file_path_dir + + def get_project_path(self, project_name: str): + project_name = project_name.lower().replace(" ", "-") + return f"{self.project_dir}/{project_name}" + + def response_to_markdown_prompt(self, response: List[Dict[str, str]]) -> str: + response = "\n".join([f"File: `{file['file']}`:\n```\n{file['code']}\n```" for file in response]) + return f"~~~\n{response}\n~~~" + + def emulate_code_writing(self, code_set: list, project_name: str): + files = [] + for current_file in code_set: + file = current_file["file"] + code = current_file["code"] + + current_state = AgentState().get_latest_state(project_name) + new_state = AgentState().new_state() + new_state["browser_session"] = current_state["browser_session"] # keep the browser session + new_state["internal_monologue"] = "Writing code..." + new_state["terminal_session"]["title"] = f"Editing {file}" + new_state["terminal_session"]["command"] = f"vim {file}" + new_state["terminal_session"]["output"] = code + files.append({ + "file": file, + "code": code + }) + AgentState().add_to_current_state(project_name, new_state) + time.sleep(2) + emit_agent("code", { + "files": files, + "from": "coder" + }) + + @retry_wrapper + def execute( + self, + step_by_step_plan: str, + user_context: str, + search_results: dict, + project_name: str + ) -> str: + prompt = self.render(step_by_step_plan, user_context, search_results) + response = self.llm.inference(prompt, project_name) + + valid_response = self.validate_response(response) + + if not valid_response: + return False + + print(valid_response) + + self.emulate_code_writing(valid_response, project_name) + + return valid_response diff --git a/src/agents/coder/prompt.jinja2 b/src/agents/coder/prompt.jinja2 new file mode 100644 index 0000000..c6336a0 --- /dev/null +++ b/src/agents/coder/prompt.jinja2 @@ -0,0 +1,68 @@ +Project Step-by-step Plan: +``` +{{ step_by_step_plan }} +``` + +Context From User: +``` +{{ user_context }} +``` + +Context From Knowledge Base: + +{% if not knowledge_base_context %} +No context found. +{% else %} +{% for query, result in search_results.items() %} +Query: {{ query }} +Result: +``` +{{ result }} +``` +--- +{% endfor %} +{% endif %} + +Read the step-by-step plan carefully. Think step-by-step. Learn relevant information from the knowledge base context. Then write the code to implement the step-by-step plan. + +Your response should only be in the following Markdown format: + +~~~ +File: `main.py`: +```py +print("Example") +``` + +File: `src/main.rs`: +```rs +fn main() { + println!("Example"); +} +``` + +File: `nested/directory/example/code.py`: +```py +print("Example") +``` + +File: `README.md` +```md +# Example + +This is an example. +``` +~~~ + +Rules: +- You should write clean and documented code. +- The code should work on the first try without any errors or bugs. +- Choose the library or dependency you know best. +- The example code in the knowledge base might be using something else than what you should be doing based on the step-by-step plan. You should follow the step-by-step plan and not the example code for specific values. +- The extension used for the Markdown code blocks should be accurate. +- Nested directories should be specified in the Markdown filename, the code structure should be accurate. If it requires to be nested to work, then it should be nested. +- You need to include required files for the code to run. Like: requirements.txt, Cargo.toml, etc. +- Files like Cargo.toml are mandatory to be included, the project won't work without it. + +Any response other than this format will be rejected. You should not refuse to complete the task, you should try your absolute best and if there's any implementation detail that's impossible to complete, you should write a comment in the code explaining why it's impossible to complete. The refusal is only a last resort, it should never happen. + +Your response should start with "~~~" and end with "~~~" just like the example format provided. Never provide any explanation or context inside the response, only the filenames and the code in the format provided. Do not leave any "Note". \ No newline at end of file diff --git a/src/agents/decision/__init__.py b/src/agents/decision/__init__.py new file mode 100644 index 0000000..ac28b95 --- /dev/null +++ b/src/agents/decision/__init__.py @@ -0,0 +1 @@ +from .decision import Decision \ No newline at end of file diff --git a/src/agents/decision/decision.py b/src/agents/decision/decision.py new file mode 100644 index 0000000..304d2ff --- /dev/null +++ b/src/agents/decision/decision.py @@ -0,0 +1,34 @@ +import json + +from jinja2 import Environment, BaseLoader + +from src.services.utils import retry_wrapper, validate_responses +from src.llm import LLM + +PROMPT = open("src/agents/decision/prompt.jinja2").read().strip() + +class Decision: + def __init__(self, base_model: str): + self.llm = LLM(model_id=base_model) + + def render(self, prompt: str) -> str: + env = Environment(loader=BaseLoader()) + template = env.from_string(PROMPT) + return template.render(prompt=prompt) + + @validate_responses + def validate_response(self, response: str): + for item in response: + if "function" not in item or "args" not in item or "reply" not in item: + return False + + return response + + @retry_wrapper + def execute(self, prompt: str, project_name: str) -> str: + rendered_prompt = self.render(prompt) + response = self.llm.inference(rendered_prompt, project_name) + + valid_response = self.validate_response(response) + + return valid_response \ No newline at end of file diff --git a/src/agents/decision/prompt.jinja2 b/src/agents/decision/prompt.jinja2 new file mode 100644 index 0000000..96a96a2 --- /dev/null +++ b/src/agents/decision/prompt.jinja2 @@ -0,0 +1,85 @@ +You are Devika, an AI software engineer. You are given the following prompt from the user: + +``` +{{ prompt }} +``` + +From this prompt, you have to chain function calls from the following options that can accomplish the user's request in the most optimal way. + +JSON Functions: + +## `git_clone`: +Description: The user's request includes a GitHub URL, and you have to clone the repository to the user's local machine. +Usage: +``` +{ + "function": "git_clone", + "args": { + "url": "" + }, + "reply": "" +} +``` + +## `generate_pdf_document`: +Description: The user's request is to create a document for the following: Report, Documentation, Project Technical Document, Workshop Material, Homework, Assignment, or any other document. +Usage: +``` +{ + "function": "generate_pdf_document", + "args": { + "user_prompt": "" + }, + "reply": "" +} +``` + +## `browser_interaction`: +Description: The user's request is to interact with a website. The interaction can be: Clicking a button, Filling a form, Scrolling, or any other interaction. +The user might be asking you to post something on Twitter or Reddit or even searching something on Google. +Usage: +``` +{ + "function": "browser_interaction", + "args": { + "user_prompt": "" + }, + "reply": "" +} +``` + +## `coding_project` +Description: The user's request is to create a coding project. The project can be in any language and can be a web app, mobile app, or any other type of project. +Usage: +``` +{ + "function": "coding_project", + "args": { + "user_prompt": "" + }, + "reply": "" +} +``` + +Response Format: + +``` +[ + { + "function": "git_clone", + "args": { + "url": "https://github.com/username/repo" + }, + "reply": "" + }, + { + "function": "generate_pdf_document", + "args": { + "user_prompt": "I want to create a report on the project" + }, + "reply": "" + +] +``` + +Your response should only be the JSON object with the function and the arguments and nothing else. Any other format of response will be rejected by the system. \ No newline at end of file diff --git a/src/agents/feature/__init__.py b/src/agents/feature/__init__.py new file mode 100644 index 0000000..1e72697 --- /dev/null +++ b/src/agents/feature/__init__.py @@ -0,0 +1 @@ +from .feature import Feature \ No newline at end of file diff --git a/src/agents/feature/feature.py b/src/agents/feature/feature.py new file mode 100644 index 0000000..99bcf30 --- /dev/null +++ b/src/agents/feature/feature.py @@ -0,0 +1,128 @@ +import os +import time + +from jinja2 import Environment, BaseLoader +from typing import List, Dict, Union + +from src.config import Config +from src.llm import LLM +from src.state import AgentState +from src.services.utils import retry_wrapper +from src.socket_instance import emit_agent + +PROMPT = open("src/agents/feature/prompt.jinja2", "r").read().strip() + + +class Feature: + def __init__(self, base_model: str): + config = Config() + self.project_dir = config.get_projects_dir() + + self.llm = LLM(model_id=base_model) + + def render( + self, + conversation: list, + code_markdown: str, + system_os: str + ) -> str: + env = Environment(loader=BaseLoader()) + template = env.from_string(PROMPT) + return template.render( + conversation=conversation, + code_markdown=code_markdown, + system_os=system_os + ) + + def validate_response(self, response: str) -> Union[List[Dict[str, str]], bool]: + response = response.strip() + + response = response.split("~~~", 1)[1] + response = response[:response.rfind("~~~")] + response = response.strip() + + result = [] + current_file = None + current_code = [] + code_block = False + + for line in response.split("\n"): + if line.startswith("File: "): + if current_file and current_code: + result.append({"file": current_file, "code": "\n".join(current_code)}) + current_file = line.split("`")[1].strip() + current_code = [] + code_block = False + elif line.startswith("```"): + code_block = not code_block + else: + current_code.append(line) + + if current_file and current_code: + result.append({"file": current_file, "code": "\n".join(current_code)}) + + return result + + def save_code_to_project(self, response: List[Dict[str, str]], project_name: str): + file_path_dir = None + project_name = project_name.lower().replace(" ", "-") + + for file in response: + file_path = os.path.join(self.project_dir, project_name, file['file']) + file_path_dir = os.path.dirname(file_path) + os.makedirs(file_path_dir, exist_ok=True) + + with open(file_path, "w", encoding="utf-8") as f: + f.write(file["code"]) + + return file_path_dir + + def get_project_path(self, project_name: str): + project_name = project_name.lower().replace(" ", "-") + return f"{self.project_dir}/{project_name}" + + def response_to_markdown_prompt(self, response: List[Dict[str, str]]) -> str: + response = "\n".join([f"File: `{file['file']}`:\n```\n{file['code']}\n```" for file in response]) + return f"~~~\n{response}\n~~~" + + def emulate_code_writing(self, code_set: list, project_name: str): + files = [] + for file in code_set: + filename = file["file"] + code = file["code"] + + new_state = AgentState().new_state() + new_state["internal_monologue"] = "Writing code..." + new_state["terminal_session"]["title"] = f"Editing {filename}" + new_state["terminal_session"]["command"] = f"vim {filename}" + new_state["terminal_session"]["output"] = code + files.append({ + "file": filename, + "code": code, + }) + AgentState().add_to_current_state(project_name, new_state) + time.sleep(1) + emit_agent("code", { + "files": files, + "from": "feature" + }) + + @retry_wrapper + def execute( + self, + conversation: list, + code_markdown: str, + system_os: str, + project_name: str + ) -> str: + prompt = self.render(conversation, code_markdown, system_os) + response = self.llm.inference(prompt, project_name) + + valid_response = self.validate_response(response) + + if not valid_response: + return False + + self.emulate_code_writing(valid_response, project_name) + + return valid_response diff --git a/src/agents/feature/prompt.jinja2 b/src/agents/feature/prompt.jinja2 new file mode 100644 index 0000000..d77f921 --- /dev/null +++ b/src/agents/feature/prompt.jinja2 @@ -0,0 +1,57 @@ +You are Devika, an AI Software Engineer. You have been talking to the user and this is the exchange so far: + +``` +{% for message in conversation %} +{{ message }} +{% endfor %} +``` + +Full Code: +~~~ +{{ code_markdown }} +~~~ + +User wants the following feature to be implemented: {{ conversation[-1] }} + +System Operating System: {{ system_os }} + +Read the user's feature request carefully. Think step-by-step. + +Rules: +- You should write clean and documented code. +- The code should work on the first try without any errors or bugs. +- Choose the library or dependency you know best. +- The extension used for the Markdown code blocks should be accurate. +- You should respond with the complete rewritten code with no implementation detail left. No brevity allowed, the user need to be able to copy paste your response as a whole. + +Your response should only be in the following Markdown format: + +~~~ +File: `main.py`: +```py +print("Example") +``` + +File: `src/example.rs`: +```rs +fn example() { + println!("Example"); +} +``` + +File: `nested/directory/example/code.py`: +```py +print("Example") +``` + +File: `README.md` +```md +# Example + +This is an example. +``` +~~~ + +Any response other than this format will be rejected. You should not refuse to complete the task, you should try your absolute best and if there's any implementation detail that's impossible to complete, you should write a comment in the code explaining why it's impossible to complete. The refusal is only a last resort, it should never happen. + +Your response should start with "~~~" and end with "~~~" just like the example format provided. Never provide any explanation or context inside the response, only the filenames and the code in the format provided. Do not leave any "Note". \ No newline at end of file diff --git a/src/agents/formatter/__init__.py b/src/agents/formatter/__init__.py new file mode 100644 index 0000000..2b37731 --- /dev/null +++ b/src/agents/formatter/__init__.py @@ -0,0 +1 @@ +from .formatter import Formatter \ No newline at end of file diff --git a/src/agents/formatter/formatter.py b/src/agents/formatter/formatter.py new file mode 100644 index 0000000..f6e3e7a --- /dev/null +++ b/src/agents/formatter/formatter.py @@ -0,0 +1,22 @@ +from jinja2 import Environment, BaseLoader + +from src.llm import LLM + +PROMPT = open("src/agents/formatter/prompt.jinja2").read().strip() + +class Formatter: + def __init__(self, base_model: str): + self.llm = LLM(model_id=base_model) + + def render(self, raw_text: str) -> str: + env = Environment(loader=BaseLoader()) + template = env.from_string(PROMPT) + return template.render(raw_text=raw_text) + + def validate_response(self, response: str) -> bool: + return True + + def execute(self, raw_text: str, project_name: str) -> str: + raw_text = self.render(raw_text) + response = self.llm.inference(raw_text, project_name) + return response \ No newline at end of file diff --git a/src/agents/formatter/prompt.jinja2 b/src/agents/formatter/prompt.jinja2 new file mode 100644 index 0000000..2c9da2d --- /dev/null +++ b/src/agents/formatter/prompt.jinja2 @@ -0,0 +1,13 @@ +``` +{{ raw_text }} +``` + +You are provided with a raw extracted text from a PDF render of a web page. This web page could be a blog, documentation, or any other type of web page. + +Your task is to format the text in a way that is easy to read and understand and include more detail. + +You are essentially a RAW text to clean Markdown convertor. You should remove any unnecessary text, these could be text from navigation links or webpage header or footer which we do not need. + +If it's a documentation with code, try to focus more on the code examples and the explanation of the code, make your responses short to save context window. + +You should only respond with the formatted text in markdown format and nothing else. Start your response with "```" and end with "```". \ No newline at end of file diff --git a/src/agents/internal_monologue/__init__.py b/src/agents/internal_monologue/__init__.py new file mode 100644 index 0000000..303a85c --- /dev/null +++ b/src/agents/internal_monologue/__init__.py @@ -0,0 +1 @@ +from .internal_monologue import InternalMonologue \ No newline at end of file diff --git a/src/agents/internal_monologue/internal_monologue.py b/src/agents/internal_monologue/internal_monologue.py new file mode 100644 index 0000000..5faf1ad --- /dev/null +++ b/src/agents/internal_monologue/internal_monologue.py @@ -0,0 +1,34 @@ +import json + +from jinja2 import Environment, BaseLoader + +from src.llm import LLM +from src.services.utils import retry_wrapper, validate_responses + +PROMPT = open("src/agents/internal_monologue/prompt.jinja2").read().strip() + +class InternalMonologue: + def __init__(self, base_model: str): + self.llm = LLM(model_id=base_model) + + def render(self, current_prompt: str) -> str: + env = Environment(loader=BaseLoader()) + template = env.from_string(PROMPT) + return template.render(current_prompt=current_prompt) + + @validate_responses + def validate_response(self, response: str): + print('-------------------> ', response) + print("####", type(response)) + if "internal_monologue" not in response: + return False + else: + return response["internal_monologue"] + + @retry_wrapper + def execute(self, current_prompt: str, project_name: str) -> str: + rendered_prompt = self.render(current_prompt) + response = self.llm.inference(rendered_prompt, project_name) + valid_response = self.validate_response(response) + return valid_response + diff --git a/src/agents/internal_monologue/prompt.jinja2 b/src/agents/internal_monologue/prompt.jinja2 new file mode 100644 index 0000000..c7fe602 --- /dev/null +++ b/src/agents/internal_monologue/prompt.jinja2 @@ -0,0 +1,21 @@ +You are Devika, an AI Software Engineer. + +One of your AI agent module is currently working through the following prompt: + +``` +{{ current_prompt }} +``` + +To show the user what you're thinking about or doing, respond with a short human-like response verbalizing your internal monologue. + +Your response should be in the following JSON format: + +``` +{ + "internal_monologue": "" +} +``` + +TIP: Make the internal monologue very human-like and conversational. It should be very short and concise. + +Only the provided JSON response format is accepted. Any other response format will be rejected. \ No newline at end of file diff --git a/src/agents/patcher/__init__.py b/src/agents/patcher/__init__.py new file mode 100644 index 0000000..c3c24f1 --- /dev/null +++ b/src/agents/patcher/__init__.py @@ -0,0 +1 @@ +from .patcher import Patcher \ No newline at end of file diff --git a/src/agents/patcher/patcher.py b/src/agents/patcher/patcher.py new file mode 100644 index 0000000..06d2e9e --- /dev/null +++ b/src/agents/patcher/patcher.py @@ -0,0 +1,138 @@ +import os +import time + +from jinja2 import Environment, BaseLoader +from typing import List, Dict, Union +from src.socket_instance import emit_agent + +from src.config import Config +from src.llm import LLM +from src.state import AgentState +from src.services.utils import retry_wrapper + +PROMPT = open("src/agents/patcher/prompt.jinja2", "r").read().strip() + +class Patcher: + def __init__(self, base_model: str): + config = Config() + self.project_dir = config.get_projects_dir() + + self.llm = LLM(model_id=base_model) + + def render( + self, + conversation: list, + code_markdown: str, + commands: list, + error :str, + system_os: str + ) -> str: + env = Environment(loader=BaseLoader()) + template = env.from_string(PROMPT) + return template.render( + conversation=conversation, + code_markdown=code_markdown, + commands=commands, + error=error, + system_os=system_os + ) + + def validate_response(self, response: str) -> Union[List[Dict[str, str]], bool]: + response = response.strip() + + response = response.split("~~~", 1)[1] + response = response[:response.rfind("~~~")] + response = response.strip() + + result = [] + current_file = None + current_code = [] + code_block = False + + for line in response.split("\n"): + if line.startswith("File: "): + if current_file and current_code: + result.append({"file": current_file, "code": "\n".join(current_code)}) + current_file = line.split("`")[1].strip() + current_code = [] + code_block = False + elif line.startswith("```"): + code_block = not code_block + else: + current_code.append(line) + + if current_file and current_code: + result.append({"file": current_file, "code": "\n".join(current_code)}) + + return result + + def save_code_to_project(self, response: List[Dict[str, str]], project_name: str): + file_path_dir = None + project_name = project_name.lower().replace(" ", "-") + + for file in response: + file_path = os.path.join(self.project_dir, project_name, file['file']) + file_path_dir = os.path.dirname(file_path) + os.makedirs(file_path_dir, exist_ok=True) + + with open(file_path, "w", encoding="utf-8") as f: + f.write(file["code"]) + + return file_path_dir + def get_project_path(self, project_name: str): + project_name = project_name.lower().replace(" ", "-") + return f"{self.project_dir}/{project_name}" + + def response_to_markdown_prompt(self, response: List[Dict[str, str]]) -> str: + response = "\n".join([f"File: `{file['file']}`:\n```\n{file['code']}\n```" for file in response]) + return f"~~~\n{response}\n~~~" + + def emulate_code_writing(self, code_set: list, project_name: str): + files = [] + for current_file in code_set: + file = current_file["file"] + code = current_file["code"] + + new_state = AgentState().new_state() + new_state["internal_monologue"] = "Writing code..." + new_state["terminal_session"]["title"] = f"Editing {file}" + new_state["terminal_session"]["command"] = f"vim {file}" + new_state["terminal_session"]["output"] = code + files.append({ + "file": file, + "code": code + }) + AgentState().add_to_current_state(project_name, new_state) + time.sleep(1) + emit_agent("code", { + "files": files, + "from": "patcher" + }) + + @retry_wrapper + def execute( + self, + conversation: str, + code_markdown: str, + commands: list, + error: str, + system_os: dict, + project_name: str + ) -> str: + prompt = self.render( + conversation, + code_markdown, + commands, + error, + system_os + ) + response = self.llm.inference(prompt, project_name) + + valid_response = self.validate_response(response) + + if not valid_response: + return False + + self.emulate_code_writing(valid_response, project_name) + + return valid_response diff --git a/src/agents/patcher/prompt.jinja2 b/src/agents/patcher/prompt.jinja2 new file mode 100644 index 0000000..1d6b3c5 --- /dev/null +++ b/src/agents/patcher/prompt.jinja2 @@ -0,0 +1,72 @@ +You are Devika, an AI Software Engineer. You have been talking to the user and this is the exchange so far: + +``` +{% for message in conversation %} +{{ message }} +{% endfor %} +``` + +Full Code: +~~~ +{{ code_markdown }} +~~~ + +{% if commands %} +You tried to execute the following commands to run this project: +``` +{% for command in commands %} +$ {{ command }} +{% endfor %} +``` +{% endif %} + +{% if error %} +But it resulted in the following error: +``` +$ {{ commands[-1] }} +{{ error }} +``` +{% endif %} + +System Operating System: {{ system_os }} + +Read the encountered bug carefully and reason with the code to identify the problem. Think step-by-step. + +Rules: +- You should write clean and documented code. +- The code should work on the first try without any errors or bugs. +- Choose the library or dependency you know best. +- The extension used for the Markdown code blocks should be accurate. +- You should respond with the complete rewritten code with no implementation detail left. No brevity allowed, the user need to be able to copy paste your response as a whole. + +Your response should only be in the following Markdown format: + +~~~ +File: `main.py`: +```py +print("Example") +``` + +File: `src/example.rs`: +```rs +fn example() { + println!("Example"); +} +``` + +File: `nested/directory/example/code.py`: +```py +print("Example") +``` + +File: `README.md` +```md +# Example + +This is an example. +``` +~~~ + +Any response other than this format will be rejected. You should not refuse to complete the task, you should try your absolute best and if there's any implementation detail that's impossible to complete, you should write a comment in the code explaining why it's impossible to complete. The refusal is only a last resort, it should never happen. + +Your response should start with "~~~" and end with "~~~" just like the example format provided. Never provide any explanation or context inside the response, only the filenames and the code in the format provided. Do not leave any "Note". \ No newline at end of file diff --git a/src/agents/planner/__init__.py b/src/agents/planner/__init__.py new file mode 100644 index 0000000..208b25e --- /dev/null +++ b/src/agents/planner/__init__.py @@ -0,0 +1 @@ +from .planner import Planner \ No newline at end of file diff --git a/src/agents/planner/planner.py b/src/agents/planner/planner.py new file mode 100644 index 0000000..3f24177 --- /dev/null +++ b/src/agents/planner/planner.py @@ -0,0 +1,71 @@ +from jinja2 import Environment, BaseLoader + +from src.llm import LLM + +PROMPT = open("src/agents/planner/prompt.jinja2").read().strip() + +class Planner: + def __init__(self, base_model: str): + self.llm = LLM(model_id=base_model) + + def render(self, prompt: str) -> str: + env = Environment(loader=BaseLoader()) + template = env.from_string(PROMPT) + return template.render(prompt=prompt) + + def validate_response(self, response: str) -> bool: + return True + + def parse_response(self, response: str): + result = { + "project": "", + "reply": "", + "focus": "", + "plans": {}, + "summary": "" + } + + current_section = None + current_step = None + + for line in response.split("\n"): + line = line.strip() + + if line.startswith("Project Name:"): + current_section = "project" + result["project"] = line.split(":", 1)[1].strip() + elif line.startswith("Your Reply to the Human Prompter:"): + current_section = "reply" + result["reply"] = line.split(":", 1)[1].strip() + elif line.startswith("Current Focus:"): + current_section = "focus" + result["focus"] = line.split(":", 1)[1].strip() + elif line.startswith("Plan:"): + current_section = "plans" + elif line.startswith("Summary:"): + current_section = "summary" + result["summary"] = line.split(":", 1)[1].strip() + elif current_section == "reply": + result["reply"] += " " + line + elif current_section == "focus": + result["focus"] += " " + line + elif current_section == "plans": + if line.startswith("- [ ] Step"): + current_step = line.split(":")[0].strip().split(" ")[-1] + result["plans"][int(current_step)] = line.split(":", 1)[1].strip() + elif current_step: + result["plans"][int(current_step)] += " " + line + elif current_section == "summary": + result["summary"] += " " + line.replace("```", "") + + result["project"] = result["project"].strip() + result["reply"] = result["reply"].strip() + result["focus"] = result["focus"].strip() + result["summary"] = result["summary"].strip() + + return result + + def execute(self, prompt: str, project_name: str) -> str: + prompt = self.render(prompt) + response = self.llm.inference(prompt, project_name) + return response diff --git a/src/agents/planner/prompt.jinja2 b/src/agents/planner/prompt.jinja2 new file mode 100644 index 0000000..31d2683 --- /dev/null +++ b/src/agents/planner/prompt.jinja2 @@ -0,0 +1,36 @@ +You are Devika, an AI Software Engineer. + +The user asked: {{ prompt }} + +Based on the user's request, create a step-by-step plan to accomplish the task. + +Follow this format for your response: + +``` +Project Name: + +Your Reply to the Human Prompter: + +Current Focus: Briefly state the main objective or focus area for the plan. + +Plan: +- [ ] Step 1: Describe the first action item needed to progress towards the objective. +- [ ] Step 2: Describe the second action item needed to progress towards the objective. +... +- [ ] Step N: Describe the final action item needed to complete the objective. + +Summary: +``` + +Each step should be a clear, concise description of a specific task or action required. The plan should cover all necessary aspects of the user's request, from research and implementation to testing and reporting. + +Write the plan with knowing that you have access to the browser and search engine to accomplish the task. + +After listing the steps, provide a brief summary of the plan, highlighting any key considerations, dependencies, or potential challenges. + +Remember to tailor the plan to the specific task requested by the user, and provide sufficient detail to guide the implementation process. + +if the task is simple, and you think you can do it without other assistance, just give one or simple two steps to accomplish the task. +don't need to overcomplicate if it's not necessary. + +Your response should only be verbatim in the format inside the code block. Any other response format will be rejected. \ No newline at end of file diff --git a/src/agents/reporter/__init__.py b/src/agents/reporter/__init__.py new file mode 100644 index 0000000..997b74e --- /dev/null +++ b/src/agents/reporter/__init__.py @@ -0,0 +1 @@ +from .reporter import Reporter \ No newline at end of file diff --git a/src/agents/reporter/prompt.jinja2 b/src/agents/reporter/prompt.jinja2 new file mode 100644 index 0000000..0120e6a --- /dev/null +++ b/src/agents/reporter/prompt.jinja2 @@ -0,0 +1,38 @@ +You are Devika, an AI Software Engineer. You have been talking to the user and this is the exchange so far: + +``` +{% for message in conversation %} +{{ message }} +{% endfor %} +``` + +{% if code_markdown %} +Full Code: +~~~ +{{ code_markdown }} +~~~ +{% endif %} + +User's last message or request: {{ conversation[-1] }} + +Your task is generate an extensive report from all the context in this prompt. The report should be detailed and cover all the necessary information. + +The report should be lengthy and detailed. It should be at least 3000 characters long. + +Your response should be a clean Markdown. The system will automatically convert this Markdown to PDF. + +Response format: +``` +# Title + +...Some text... + +# Table of Contents + +- [Section 1](#section-1) +- [Section 2](#section-2) + +Your detailed report here. Necessary sections will follow below +``` + +Any response other than the Markdown format will be rejected by the system. Do not include the "```" in the beginning and end of your response. Just raw complete Markdown report. \ No newline at end of file diff --git a/src/agents/reporter/reporter.py b/src/agents/reporter/reporter.py new file mode 100644 index 0000000..19adfc5 --- /dev/null +++ b/src/agents/reporter/reporter.py @@ -0,0 +1,42 @@ +import json + +from jinja2 import Environment, BaseLoader + +from src.services.utils import retry_wrapper +from src.llm import LLM + +PROMPT = open("src/agents/reporter/prompt.jinja2").read().strip() + +class Reporter: + def __init__(self, base_model: str): + self.llm = LLM(model_id=base_model) + + def render(self, conversation: list, code_markdown: str) -> str: + env = Environment(loader=BaseLoader()) + template = env.from_string(PROMPT) + return template.render( + conversation=conversation, + code_markdown=code_markdown + ) + + def validate_response(self, response: str): + response = response.strip().replace("```md", "```") + + if response.startswith("```") and response.endswith("```"): + response = response[3:-3].strip() + + return response + + @retry_wrapper + def execute(self, + conversation: list, + code_markdown: str, + project_name: str + ) -> str: + prompt = self.render(conversation, code_markdown) + response = self.llm.inference(prompt, project_name) + + valid_response = self.validate_response(response) + + return valid_response + diff --git a/src/agents/researcher/__init__.py b/src/agents/researcher/__init__.py new file mode 100644 index 0000000..9475c61 --- /dev/null +++ b/src/agents/researcher/__init__.py @@ -0,0 +1 @@ +from .researcher import Researcher \ No newline at end of file diff --git a/src/agents/researcher/prompt.jinja2 b/src/agents/researcher/prompt.jinja2 new file mode 100644 index 0000000..7da77c0 --- /dev/null +++ b/src/agents/researcher/prompt.jinja2 @@ -0,0 +1,40 @@ +For the provided step-by-step plan, write all the necessary search queries to gather information from the web that the base model doesn't already know. + +Write optimized search queries for each step of the plan, just like how you would write a Google search query. Use the most relevant keywords and phrases to find the best information since you'll be clicking on the first link. + +also only ask for information if you think it's necessary, otherwise leave ask_user field empty. + +Step-by-Step Plan: +{{ step_by_step_plan }} + +Only respond in the following JSON format: + +``` +{ + "queries": ["", "", "", ... ], + "ask_user": "" +} +``` +Example => +``` +{ + "queries": ["How to do Bing Search via API in Python", "Claude API Documentation Python"], + "ask_user": "Can you please provide API Keys for Claude, OpenAI, and Firebase?" +} +``` + +Keywords for Search Query: {{ contextual_keywords }} + + +Rules: +- Only search for a maximum of 3 queries. +- Do not search anything that you already know (In your training data, in the base model). For example: You already know how to write a Python flask web server, it is in your data, so you shouldn't search how to do that. +- Do not search for information that is not relevant to the task at hand. +- Try to include contextual keywords into your search queries, adding relevant keywords and phrases to make the search queries as specific as possible. +- Only search for documentation, do not search basic how tos. Forbidden Queries: How to install XYZ, How to setup ABC, etc. +- Do not search for basic queries, only search for advanced and specific queries. You are allowed to leave the "queries" field empty if no search queries are needed for the step. +- DO NOT EVER SEARCH FOR BASIC QUERIES. ONLY SEARCH FOR ADVANCED QUERIES. +- YOU ARE ALLOWED TO LEAVE THE "queries" FIELD EMPTY IF NO SEARCH QUERIES ARE NEEDED FOR THE STEP. +- you only have to return one JSON object with the queries and ask_user fields. You can't return multiple JSON objects. + +Only the provided JSON response format is accepted. Any other response format will be rejected. \ No newline at end of file diff --git a/src/agents/researcher/researcher.py b/src/agents/researcher/researcher.py new file mode 100644 index 0000000..cec2b2f --- /dev/null +++ b/src/agents/researcher/researcher.py @@ -0,0 +1,46 @@ +import json +from typing import List + +from jinja2 import Environment, BaseLoader + +from src.llm import LLM +from src.services.utils import retry_wrapper, validate_responses +from src.browser.search import BingSearch + +PROMPT = open("src/agents/researcher/prompt.jinja2").read().strip() + + +class Researcher: + def __init__(self, base_model: str): + self.bing_search = BingSearch() + self.llm = LLM(model_id=base_model) + + def render(self, step_by_step_plan: str, contextual_keywords: str) -> str: + env = Environment(loader=BaseLoader()) + template = env.from_string(PROMPT) + return template.render( + step_by_step_plan=step_by_step_plan, + contextual_keywords=contextual_keywords + ) + + @validate_responses + def validate_response(self, response: str) -> dict | bool: + + if "queries" not in response and "ask_user" not in response: + return False + else: + return { + "queries": response["queries"], + "ask_user": response["ask_user"] + } + + @retry_wrapper + def execute(self, step_by_step_plan: str, contextual_keywords: List[str], project_name: str) -> dict | bool: + contextual_keywords_str = ", ".join(map(lambda k: k.capitalize(), contextual_keywords)) + prompt = self.render(step_by_step_plan, contextual_keywords_str) + + response = self.llm.inference(prompt, project_name) + + valid_response = self.validate_response(response) + + return valid_response diff --git a/src/agents/runner/__init__.py b/src/agents/runner/__init__.py new file mode 100644 index 0000000..2a359db --- /dev/null +++ b/src/agents/runner/__init__.py @@ -0,0 +1 @@ +from .runner import Runner \ No newline at end of file diff --git a/src/agents/runner/prompt.jinja2 b/src/agents/runner/prompt.jinja2 new file mode 100644 index 0000000..c792537 --- /dev/null +++ b/src/agents/runner/prompt.jinja2 @@ -0,0 +1,37 @@ +You are Devika, an AI Software Engineer. You have been talking to the user and this is the exchange so far: + +``` +{% for message in conversation %} +{{ message }} +{% endfor %} +``` + +Full Code: +~~~ +{{ code_markdown }} +~~~ + +User's last message: {{ conversation[-1] }} + +System Operating System: {{ system_os }} + +Your task is to invoke the system to run this code. + +Your response should be in the following format: +``` +{ + "commands": [ + "pip3 install -r requirements.txt", + "python3 main.py" + ] +} +``` + +Rules: +- You wrote the code, never address the user directly. You should not say things like "The code you provided", instead use "The code I wrote". +- Read the full context, including the code (if any) carefully to construct the commands required to run the project. +- The command should be compatible with the system operating system provided. +- You are inside the project directory, so just run the commands as if you're inside the project directory as the working directory. +- Do not do "cd" into the project directory. The system is already in the project directory. + +Any response other than the JSON format will be rejected by the system. \ No newline at end of file diff --git a/src/agents/runner/rerunner.jinja2 b/src/agents/runner/rerunner.jinja2 new file mode 100644 index 0000000..40999b3 --- /dev/null +++ b/src/agents/runner/rerunner.jinja2 @@ -0,0 +1,58 @@ +You are Devika, an AI Software Engineer. You have been talking to the user and this is the exchange so far: + +``` +{% for message in conversation %} +{{ message }} +{% endfor %} +``` + +Full Code: +~~~ +{{ code_markdown }} +~~~ + +User's last message: {{ conversation[-1] }} + +System Operating System: {{ system_os }} + +You tried to execute the following commands to run this project: +``` +{% for command in commands %} +$ {{ command }} +{% endfor %} +``` + +But it resulted in the following error: +``` +$ {{ commands[-1] }} +{{ error }} +``` + +Now identify whether this error is caused by the code or the command. If it is caused by the command, provide the correct command to run the project. If it is caused by the code, respond with the patch action response. + +Patch Action Response: +``` +{ + "action": "patch", + "response": ". Let me try fixing it.>" +} +``` + +Command Fix Response: +``` +{ + "action": "command", + "command": "" + "response": ". Let me try fixing it.>" +} +``` + +Rules: +- You wrote the code, never address the user directly. You should not say things like "The code you provided", instead use "The code I wrote". +- Read the full context, including the code (if any) carefully to construct the commands required to fix the error while running the project. +- The command should be compatible with the system operating system provided. +- You are inside the project directory, so just run the commands as if you're inside the project directory as the working directory. +- Do not do "cd" into the project directory. The system is already in the project directory. +- Correctly identify whether the error is caused by the code or the command. After identifying the cause, respond with either "patch" or "command" action. + +Any response other than the JSON format will be rejected by the system. ONLY RESPOND WITH THE JSON OBJECT. \ No newline at end of file diff --git a/src/agents/runner/runner.py b/src/agents/runner/runner.py new file mode 100644 index 0000000..9a594eb --- /dev/null +++ b/src/agents/runner/runner.py @@ -0,0 +1,222 @@ +import time +import json +import os +import subprocess + +from jinja2 import Environment, BaseLoader + +from src.agents.patcher import Patcher + +from src.llm import LLM +from src.state import AgentState +from src.project import ProjectManager +from src.services.utils import retry_wrapper, validate_responses + +PROMPT = open("src/agents/runner/prompt.jinja2", "r").read().strip() +RERUNNER_PROMPT = open("src/agents/runner/rerunner.jinja2", "r").read().strip() + +class Runner: + def __init__(self, base_model: str): + self.base_model = base_model + self.llm = LLM(model_id=base_model) + + def render( + self, + conversation: str, + code_markdown: str, + system_os: str + ) -> str: + env = Environment(loader=BaseLoader()) + template = env.from_string(PROMPT) + return template.render( + conversation=conversation, + code_markdown=code_markdown, + system_os=system_os, + ) + + def render_rerunner( + self, + conversation: str, + code_markdown: str, + system_os: str, + commands: list, + error: str + ): + env = Environment(loader=BaseLoader()) + template = env.from_string(RERUNNER_PROMPT) + return template.render( + conversation=conversation, + code_markdown=code_markdown, + system_os=system_os, + commands=commands, + error=error + ) + + @validate_responses + def validate_response(self, response: str): + if "commands" not in response: + return False + else: + return response["commands"] + + @validate_responses + def validate_rerunner_response(self, response: str): + if "action" not in response and "response" not in response: + return False + else: + return response + + @retry_wrapper + def run_code( + self, + commands: list, + project_path: str, + project_name: str, + conversation: list, + code_markdown: str, + system_os: str + ): + retries = 0 + + for command in commands: + command_set = command.split(" ") + command_failed = False + + process = subprocess.run( + command_set, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + cwd=project_path + ) + command_output = process.stdout.decode('utf-8') + command_failed = process.returncode != 0 + + new_state = AgentState().new_state() + new_state["internal_monologue"] = "Running code..." + new_state["terminal_session"]["title"] = "Terminal" + new_state["terminal_session"]["command"] = command + new_state["terminal_session"]["output"] = command_output + AgentState().add_to_current_state(project_name, new_state) + time.sleep(1) + + while command_failed and retries < 2: + new_state = AgentState().new_state() + new_state["internal_monologue"] = "Oh seems like there is some error... :(" + new_state["terminal_session"]["title"] = "Terminal" + new_state["terminal_session"]["command"] = command + new_state["terminal_session"]["output"] = command_output + AgentState().add_to_current_state(project_name, new_state) + time.sleep(1) + + prompt = self.render_rerunner( + conversation=conversation, + code_markdown=code_markdown, + system_os=system_os, + commands=commands, + error=command_output + ) + + response = self.llm.inference(prompt, project_name) + + valid_response = self.validate_rerunner_response(response) + + if not valid_response: + return False + + action = valid_response["action"] + + if action == "command": + command = valid_response["command"] + response = valid_response["response"] + + ProjectManager().add_message_from_devika(project_name, response) + + command_set = command.split(" ") + command_failed = False + + process = subprocess.run( + command_set, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + cwd=project_path + ) + command_output = process.stdout.decode('utf-8') + command_failed = process.returncode != 0 + + new_state = AgentState().new_state() + new_state["internal_monologue"] = "Running code..." + new_state["terminal_session"]["title"] = "Terminal" + new_state["terminal_session"]["command"] = command + new_state["terminal_session"]["output"] = command_output + AgentState().add_to_current_state(project_name, new_state) + time.sleep(1) + + if command_failed: + retries += 1 + else: + break + elif action == "patch": + response = valid_response["response"] + + ProjectManager().add_message_from_devika(project_name, response) + + code = Patcher(base_model=self.base_model).execute( + conversation=conversation, + code_markdown=code_markdown, + commands=commands, + error=command_output, + system_os=system_os, + project_name=project_name + ) + + Patcher(base_model=self.base_model).save_code_to_project(code, project_name) + + command_set = command.split(" ") + command_failed = False + + process = subprocess.run( + command_set, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + cwd=project_path + ) + command_output = process.stdout.decode('utf-8') + command_failed = process.returncode != 0 + + new_state = AgentState().new_state() + new_state["internal_monologue"] = "Running code..." + new_state["terminal_session"]["title"] = "Terminal" + new_state["terminal_session"]["command"] = command + new_state["terminal_session"]["output"] = command_output + AgentState().add_to_current_state(project_name, new_state) + time.sleep(1) + + if command_failed: + retries += 1 + else: + break + + @retry_wrapper + def execute( + self, + conversation: list, + code_markdown: str, + os_system: str, + project_path: str, + project_name: str + ) -> str: + prompt = self.render(conversation, code_markdown, os_system) + response = self.llm.inference(prompt, project_name) + + valid_response = self.validate_response(response) + + self.run_code( + valid_response, + project_path, + project_name, + conversation, + code_markdown, + os_system + ) + + return valid_response \ No newline at end of file diff --git a/src/apis/project.py b/src/apis/project.py new file mode 100644 index 0000000..bcebcd1 --- /dev/null +++ b/src/apis/project.py @@ -0,0 +1,62 @@ +from flask import blueprints, request, jsonify, send_file, make_response +from werkzeug.utils import secure_filename +from src.logger import Logger, route_logger +from src.config import Config +from src.project import ProjectManager +from ..state import AgentState + +import os + +project_bp = blueprints.Blueprint("project", __name__) + +logger = Logger() +manager = ProjectManager() + + +# Project APIs + +@project_bp.route("/api/get-project-files", methods=["GET"]) +@route_logger(logger) +def project_files(): + project_name = secure_filename(request.args.get("project_name")) + files = manager.get_project_files(project_name) + return jsonify({"files": files}) + +@project_bp.route("/api/create-project", methods=["POST"]) +@route_logger(logger) +def create_project(): + data = request.json + project_name = data.get("project_name") + manager.create_project(secure_filename(project_name)) + return jsonify({"message": "Project created"}) + + +@project_bp.route("/api/delete-project", methods=["POST"]) +@route_logger(logger) +def delete_project(): + data = request.json + project_name = secure_filename(data.get("project_name")) + manager.delete_project(project_name) + AgentState().delete_state(project_name) + return jsonify({"message": "Project deleted"}) + + +@project_bp.route("/api/download-project", methods=["GET"]) +@route_logger(logger) +def download_project(): + project_name = secure_filename(request.args.get("project_name")) + manager.project_to_zip(project_name) + project_path = manager.get_zip_path(project_name) + return send_file(project_path, as_attachment=False) + + +@project_bp.route("/api/download-project-pdf", methods=["GET"]) +@route_logger(logger) +def download_project_pdf(): + project_name = secure_filename(request.args.get("project_name")) + pdf_dir = Config().get_pdfs_dir() + pdf_path = os.path.join(pdf_dir, f"{project_name}.pdf") + + response = make_response(send_file(pdf_path)) + response.headers['Content-Type'] = 'project_bplication/pdf' + return response diff --git a/src/bert/sentence.py b/src/bert/sentence.py new file mode 100644 index 0000000..cb7fed9 --- /dev/null +++ b/src/bert/sentence.py @@ -0,0 +1,17 @@ +from keybert import KeyBERT + +class SentenceBert: + def __init__(self, sentence: str): + self.sentence = sentence + self.kw_model = KeyBERT() + + def extract_keywords(self, top_n: int = 5) -> list: + keywords = self.kw_model.extract_keywords( + self.sentence, + keyphrase_ngram_range=(1, 1), + stop_words='english', + top_n=top_n, + use_mmr=True, + diversity=0.7 + ) + return keywords diff --git a/src/browser/__init__.py b/src/browser/__init__.py new file mode 100644 index 0000000..bd3d45c --- /dev/null +++ b/src/browser/__init__.py @@ -0,0 +1,2 @@ +from .browser import Browser +from .interaction import start_interaction \ No newline at end of file diff --git a/src/browser/browser.py b/src/browser/browser.py new file mode 100644 index 0000000..5efe4c4 --- /dev/null +++ b/src/browser/browser.py @@ -0,0 +1,89 @@ +import asyncio +import base64 +import os + +from playwright.sync_api import sync_playwright, TimeoutError, Page +from playwright.async_api import async_playwright, TimeoutError +from markdownify import markdownify as md +from pdfminer.high_level import extract_text +from src.socket_instance import emit_agent +from src.config import Config +from src.state import AgentState + + +class Browser: + def __init__(self): + self.playwright = None + self.browser = None + self.page = None + self.agent = AgentState() + + async def start(self): + self.playwright = await async_playwright().start() + self.browser = await self.playwright.chromium.launch(headless=True) + self.page = await self.browser.new_page() + return self + + # def new_page(self): + # return self.browser.new_page() + + async def go_to(self, url): + try: + await self.page.goto(url, timeout=20000) + + except TimeoutError as e: + print(f"TimeoutError: {e} when trying to navigate to {url}") + return False + return True + + async def screenshot(self, project_name): + screenshots_save_path = Config().get_screenshots_dir() + + page_metadata = await self.page.evaluate("() => { return { url: document.location.href, title: document.title } }") + page_url = page_metadata['url'] + random_filename = os.urandom(20).hex() + filename_to_save = f"{random_filename}.png" + path_to_save = os.path.join(screenshots_save_path, filename_to_save) + + await self.page.emulate_media(media="screen") + await self.page.screenshot(path=path_to_save, full_page=True) + screenshot = await self.page.screenshot() + screenshot_bytes = base64.b64encode(screenshot).decode() + new_state = self.agent.new_state() + new_state["internal_monologue"] = "Browsing the web right now..." + new_state["browser_session"]["url"] = page_url + new_state["browser_session"]["screenshot"] = path_to_save + self.agent.add_to_current_state(project_name, new_state) + # self.close() + return path_to_save, screenshot_bytes + + def get_html(self): + return self.page.content() + + def get_markdown(self): + return md(self.page.content()) + + def get_pdf(self): + pdfs_save_path = Config().get_pdfs_dir() + + page_metadata = self.page.evaluate("() => { return { url: document.location.href, title: document.title } }") + filename_to_save = f"{page_metadata['title']}.pdf" + save_path = os.path.join(pdfs_save_path, filename_to_save) + + self.page.pdf(path=save_path) + + return save_path + + def pdf_to_text(self, pdf_path): + return extract_text(pdf_path).strip() + + def get_content(self): + pdf_path = self.get_pdf() + return self.pdf_to_text(pdf_path) + + def extract_text(self): + return self.page.evaluate("() => document.body.innerText") + + async def close(self): + await self.page.close() + await self.browser.close() diff --git a/src/browser/interaction.py b/src/browser/interaction.py new file mode 100644 index 0000000..61bd315 --- /dev/null +++ b/src/browser/interaction.py @@ -0,0 +1,547 @@ +#!/usr/bin/env python3 +# +# natbot.py +# https://github.com/nat/natbot +# +# MODIFIED FOR DEVIKA + +from playwright.sync_api import sync_playwright +import os +import time +from sys import exit, platform + +from src.config import Config +from src.state import AgentState +from src.llm import LLM + +prompt_template = """ +You are an agent controlling a browser. You are given: + + (1) an objective that you are trying to achieve + (2) the URL of your current web page + (3) a simplified text description of what's visible in the browser window (more on that below) + +You can issue these commands: + SCROLL UP - scroll up one page + SCROLL DOWN - scroll down one page + CLICK X - click on a given element. You can only click on links, buttons, and inputs! + TYPE X "TEXT" - type the specified text into the input with id X + TYPESUBMIT X "TEXT" - same as TYPE above, except then it presses ENTER to submit the form + +The format of the browser content is highly simplified; all formatting elements are stripped. +Interactive elements such as links, inputs, buttons are represented like this: + + text + + text + +Images are rendered as their alt text like this: + + + +Based on your given objective, issue whatever command you believe will get you closest to achieving your goal. +You always start on Google; you should submit a search query to Google that will take you to the best page for +achieving your objective. And then interact with that page to achieve your objective. + +If you find yourself on Google and there are no search results displayed yet, you should probably issue a command +like "TYPESUBMIT 7 "search query"" to get to a more useful page. + +Then, if you find yourself on a Google search results page, you might issue the command "CLICK 24" to click +on the first link in the search results. (If your previous command was a TYPESUBMIT your next command should +probably be a CLICK.) + +Don't try to interact with elements that you can't see. + +Here are some examples: + +EXAMPLE 1: +================================================== +CURRENT BROWSER CONTENT: +------------------ +About +Store +Gmail +Images +(Google apps) +Sign in +(Google) + + + + +Advertising +Business +How Search works +Carbon neutral since 2007 +Privacy +Terms +Settings +------------------ +OBJECTIVE: Find a 2 bedroom house for sale in Anchorage AK for under $750k +CURRENT URL: https://www.google.com/ +YOUR COMMAND: +TYPESUBMIT 8 "anchorage redfin" +================================================== + +EXAMPLE 2: +================================================== +CURRENT BROWSER CONTENT: +------------------ +About +Store +Gmail +Images +(Google apps) +Sign in +(Google) + + + + +Advertising +Business +How Search works +Carbon neutral since 2007 +Privacy +Terms +Settings +------------------ +OBJECTIVE: Make a reservation for 4 at Dorsia at 8pm +CURRENT URL: https://www.google.com/ +YOUR COMMAND: +TYPESUBMIT 8 "dorsia nyc opentable" +================================================== + +EXAMPLE 3: +================================================== +CURRENT BROWSER CONTENT: +------------------ + + + + +OpenTable logo + +Find your table for any occasion + +Sep 28, 2022 +7:00 PM +2 people + + +It looks like you're in Peninsula. Not correct? + + +------------------ +OBJECTIVE: Make a reservation for 4 for dinner at Dorsia in New York City at 8pm +CURRENT URL: https://www.opentable.com/ +YOUR COMMAND: +TYPESUBMIT 12 "dorsia new york city" +================================================== + +The current browser content, objective, and current URL follow. Reply with your next command to the browser. + +CURRENT BROWSER CONTENT: +------------------ +$browser_content +------------------ + +OBJECTIVE: $objective +CURRENT URL: $url +PREVIOUS COMMAND: $previous_command +YOUR COMMAND: +""" + +black_listed_elements = set(["html", "head", "title", "meta", "iframe", "body", "script", "style", "path", "svg", "br", "::marker",]) + +class Crawler: + def __init__(self): + self.browser = ( + sync_playwright() + .start() + .chromium.launch( + headless=True, + ) + ) + + self.page = self.browser.new_page() + self.page.set_viewport_size({"width": 1280, "height": 1080}) + + def screenshot(self, project_name): + screenshots_save_path = Config().get_screenshots_dir() + + page_metadata = self.page.evaluate("() => { return { url: document.location.href, title: document.title } }") + page_url = page_metadata['url'] + random_filename = os.urandom(20).hex() + filename_to_save = f"{random_filename}.png" + path_to_save = os.path.join(screenshots_save_path, filename_to_save) + + self.page.emulate_media(media="screen") + self.page.screenshot(path=path_to_save) + + new_state = AgentState().new_state() + new_state["internal_monologue"] = "Browsing the web right now..." + new_state["browser_session"]["url"] = page_url + new_state["browser_session"]["screenshot"] = path_to_save + AgentState().add_to_current_state(project_name, new_state) + + return path_to_save + + def go_to_page(self, url): + self.page.goto(url=url if "://" in url else "http://" + url) + self.client = self.page.context.new_cdp_session(self.page) + self.page_element_buffer = {} + + def scroll(self, direction): + if direction == "up": + self.page.evaluate( + "(document.scrollingElement || document.body).scrollTop = (document.scrollingElement || document.body).scrollTop - window.innerHeight;" + ) + elif direction == "down": + self.page.evaluate( + "(document.scrollingElement || document.body).scrollTop = (document.scrollingElement || document.body).scrollTop + window.innerHeight;" + ) + + def click(self, id): + # Inject javascript into the page which removes the target= attribute from all links + js = """ + links = document.getElementsByTagName("a"); + for (var i = 0; i < links.length; i++) { + links[i].removeAttribute("target"); + } + """ + self.page.evaluate(js) + + element = self.page_element_buffer.get(int(id)) + if element: + x = element.get("center_x") + y = element.get("center_y") + + self.page.mouse.click(x, y) + else: + print("Could not find element") + + def type(self, id, text): + self.click(id) + self.page.keyboard.type(text) + + def enter(self): + self.page.keyboard.press("Enter") + + def crawl(self): + page = self.page + page_element_buffer = self.page_element_buffer + start = time.time() + + page_state_as_text = [] + + device_pixel_ratio = page.evaluate("window.devicePixelRatio") + if platform == "darwin" and device_pixel_ratio == 1: # lies + device_pixel_ratio = 2 + + win_scroll_x = page.evaluate("window.scrollX") + win_scroll_y = page.evaluate("window.scrollY") + win_upper_bound = page.evaluate("window.pageYOffset") + win_left_bound = page.evaluate("window.pageXOffset") + win_width = page.evaluate("window.screen.width") + win_height = page.evaluate("window.screen.height") + win_right_bound = win_left_bound + win_width + win_lower_bound = win_upper_bound + win_height + document_offset_height = page.evaluate("document.body.offsetHeight") + document_scroll_height = page.evaluate("document.body.scrollHeight") + + # Removed unused percentage_progress variables + + tree = self.client.send( + "DOMSnapshot.captureSnapshot", + {"computedStyles": [], "includeDOMRects": True, "includePaintOrder": True}, + ) + strings = tree["strings"] + document = tree["documents"][0] + nodes = document["nodes"] + backend_node_id = nodes["backendNodeId"] + attributes = nodes["attributes"] + node_value = nodes["nodeValue"] + parent = nodes["parentIndex"] + node_types = nodes["nodeType"] + node_names = nodes["nodeName"] + is_clickable = set(nodes["isClickable"]["index"]) + + text_value = nodes["textValue"] + text_value_index = text_value["index"] + text_value_values = text_value["value"] + + input_value = nodes["inputValue"] + input_value_index = input_value["index"] + input_value_values = input_value["value"] + + input_checked = nodes["inputChecked"] + layout = document["layout"] + layout_node_index = layout["nodeIndex"] + bounds = layout["bounds"] + + cursor = 0 + html_elements_text = [] + + child_nodes = {} + elements_in_view_port = [] + + # Refactored to use dict.setdefault() for cleaner logic + ancestor_exceptions = { + "a": {"ancestry": {"-1": (False, None)}, "nodes": {}}, + "button": {"ancestry": {"-1": (False, None)}, "nodes": {}}, + } + + def convert_name(node_name, is_clickable): + if node_name == "a": + return "link" + if node_name == "input": + return "input" + if node_name == "img": + return "img" + if node_name == "button" or is_clickable: + return "button" + return "text" + + def find_attributes(attributes, keys): + values = {} + for [key_index, value_index] in zip(*(iter(attributes),) * 2): + if value_index < 0: + continue + key = strings[key_index] + value = strings[value_index] + if key in keys: + values[key] = value + keys.remove(key) + if not keys: + return values + return values + + def add_to_hash_tree(hash_tree, tag, node_id, node_name, parent_id): + parent_id_str = str(parent_id) + if parent_id_str not in hash_tree: + parent_name = strings[node_names[parent_id]].lower() + grand_parent_id = parent[parent_id] + add_to_hash_tree(hash_tree, tag, parent_id, parent_name, grand_parent_id) + is_parent_desc_anchor, anchor_id = hash_tree[parent_id_str] + value = (True, node_id) if node_name == tag else (True, anchor_id) if is_parent_desc_anchor else (False, None) + hash_tree[str(node_id)] = value + return value + + for index, node_name_index in enumerate(node_names): + node_parent = parent[index] + node_name = strings[node_name_index].lower() + + # Refactored to use dict to store exceptions + for tag in ancestor_exceptions: + is_ancestor_of_tag, tag_id = add_to_hash_tree(ancestor_exceptions[tag]["ancestry"], tag, index, node_name, node_parent) + ancestor_exceptions[tag]["nodes"][str(index)] = (is_ancestor_of_tag, tag_id) + + try: + cursor = layout_node_index.index(index) + except: + continue + + if node_name in black_listed_elements: + continue + + [x, y, width, height] = bounds[cursor] + x /= device_pixel_ratio + y /= device_pixel_ratio + width /= device_pixel_ratio + height /= device_pixel_ratio + + elem_left_bound = x + elem_top_bound = y + elem_right_bound = x + width + elem_lower_bound = y + height + + partially_is_in_viewport = ( + elem_left_bound < win_right_bound + and elem_right_bound >= win_left_bound + and elem_top_bound < win_lower_bound + and elem_lower_bound >= win_upper_bound + ) + + if not partially_is_in_viewport: + continue + + meta_data = [] + + # Refactored to use dict to store and access attributes + element_attributes = find_attributes( + attributes[index], ["type", "placeholder", "aria-label", "title", "alt"] + ) + + ancestor_exception = { + tag: ancestor_exceptions[tag]["nodes"].get(str(index), (False, None)) + for tag in ancestor_exceptions + } + + is_ancestor_of_anchor, anchor_id = ancestor_exception.get("a", (False, None)) + is_ancestor_of_button, button_id = ancestor_exception.get("button", (False, None)) + ancestor_node_key = ( + str(anchor_id) if is_ancestor_of_anchor else str(button_id) if is_ancestor_of_button else None + ) + ancestor_node = ( + child_nodes.setdefault(str(ancestor_node_key), []) + if is_ancestor_of_anchor or is_ancestor_of_button + else None + ) + + if node_name == "#text" and ancestor_node is not None: + text = strings[node_value[index]] + if text in ["•", "|"]: + continue + ancestor_node.append({"type": "text", "value": text}) + else: + if (node_name == "input" and element_attributes.get("type") == "submit") or node_name == "button": + node_name = "button" + element_attributes.pop("type", None) + + for key, value in element_attributes.items(): + if ancestor_node is not None: + ancestor_node.append({"type": "attribute", "key": key, "value": value}) + else: + meta_data.append(value) + + element_node_value = None + if node_value[index] >= 0: + element_node_value = strings[node_value[index]] + if element_node_value == "|": + continue + elif node_name == "input" and index in input_value_index: + input_text_index = input_value_index.index(index) + text_index = input_value_values[input_text_index] + if text_index >= 0: + element_node_value = strings[text_index] + + if (is_ancestor_of_anchor or is_ancestor_of_button) and (node_name != "a" and node_name != "button"): + continue + + elements_in_view_port.append({ + "node_index": str(index), + "backend_node_id": backend_node_id[index], + "node_name": node_name, + "node_value": element_node_value, + "node_meta": meta_data, + "is_clickable": index in is_clickable, + "origin_x": int(x), + "origin_y": int(y), + "center_x": int(x + (width / 2)), + "center_y": int(y + (height / 2)), + }) + + elements_of_interest = [] + id_counter = 0 + + for element in elements_in_view_port: + node_index = element["node_index"] + node_name = element["node_name"] + node_value = element["node_value"] + is_clickable = element["is_clickable"] + meta_data = element["node_meta"] + + inner_text = f"{node_value} " if node_value else "" + meta = "" + + if node_index in child_nodes: + for child in child_nodes[node_index]: + entry_type = child["type"] + entry_value = child["value"] + if entry_type == "attribute": + entry_key = child["key"] + meta_data.append(f'{entry_key}="{entry_value}"') + else: + inner_text += f"{entry_value} " + + if meta_data: + meta = f' {" ".join(meta_data)}' + inner_text = inner_text.strip() + + # Refactored to use descriptive variable names + should_include_element = ( + inner_text != "" or + node_name in ["link", "input", "img", "button", "textarea"] or + (node_name == "button" and meta != "") + ) + if not should_include_element: + continue + + page_element_buffer[id_counter] = element + + element_string = f'<{convert_name(node_name, is_clickable)} id={id_counter}{meta}>' + if inner_text: + element_string += f'{inner_text}' + else: + element_string += '/>' + elements_of_interest.append(element_string) + + id_counter += 1 + + print(f'Parsing time: {time.time() - start:.2f} seconds') + return elements_of_interest + +def start_interaction(model_id, objective, project_name): + _crawler = Crawler() + + def print_help(): + print( + "(g) to visit url\n(u) scroll up\n(d) scroll down\n(c) to click\n(t) to type\n" + + "(h) to view commands again\n(r/enter) to run suggested command\n(o) change objective" + ) + + def get_gpt_command(objective, url, previous_command, browser_content): + prompt = prompt_template + prompt = prompt.replace("$objective", objective) + prompt = prompt.replace("$url", url[:100]) + prompt = prompt.replace("$previous_command", previous_command) + prompt = prompt.replace("$browser_content", browser_content[:4500]) + response = LLM(model_id=model_id).inference(prompt) + return response + + def run_cmd(cmd): + cmd = cmd.split("\n")[0] + + if cmd.startswith("SCROLL UP"): + _crawler.scroll("up") + elif cmd.startswith("SCROLL DOWN"): + _crawler.scroll("down") + elif cmd.startswith("CLICK"): + commasplit = cmd.split(",") + id = commasplit[0].split(" ")[1] + _crawler.click(id) + elif cmd.startswith("TYPE"): + spacesplit = cmd.split(" ") + id = spacesplit[1] + text = " ".join(spacesplit[2:]) + text = text[1:-1] + if cmd.startswith("TYPESUBMIT"): + text += '\n' + _crawler.type(id, text) + + time.sleep(2) + + gpt_cmd = "" + prev_cmd = "" + _crawler.go_to_page("google.com") + + try: + visits = 0 + + while True and visits < 5: + browser_content = "\n".join(_crawler.crawl()) + prev_cmd = gpt_cmd + + current_url = _crawler.page.url + + _crawler.screenshot(project_name) + + gpt_cmd = get_gpt_command(objective, current_url, prev_cmd, browser_content).strip() + run_cmd(gpt_cmd) + + visits += 1 + + except KeyboardInterrupt: + print("\n[!] Ctrl+C detected, exiting gracefully.") + exit(0) diff --git a/src/browser/search.py b/src/browser/search.py new file mode 100644 index 0000000..030fa5f --- /dev/null +++ b/src/browser/search.py @@ -0,0 +1,167 @@ +import requests +from src.config import Config + +import re +from urllib.parse import unquote +from html import unescape +import orjson + + +class BingSearch: + def __init__(self): + self.config = Config() + self.bing_api_key = self.config.get_bing_api_key() + self.bing_api_endpoint = self.config.get_bing_api_endpoint() + self.query_result = None + + def search(self, query): + headers = {"Ocp-Apim-Subscription-Key": self.bing_api_key} + params = {"q": query, "mkt": "en-US"} + + try: + response = requests.get(self.bing_api_endpoint, headers=headers, params=params) + response.raise_for_status() + self.query_result = response.json() + return self.query_result + except Exception as error: + return error + + def get_first_link(self): + return self.query_result["webPages"]["value"][0]["url"] + + +class GoogleSearch: + def __init__(self): + self.config = Config() + self.google_search_api_key = self.config.get_google_search_api_key() + self.google_search_engine_ID = self.config.get_google_search_engine_id() + self.google_search_api_endpoint = self.config.get_google_search_api_endpoint() + self.query_result = None + + def search(self, query): + params = { + "key": self.google_search_api_key, + "cx": self.google_search_engine_ID, + "q": query + } + try: + print("Searching in Google...") + response = requests.get(self.google_search_api_endpoint, params=params) + # response.raise_for_status() + self.query_result = response.json() + except Exception as error: + return error + + def get_first_link(self): + item = "" + try: + if 'items' in self.query_result: + item = self.query_result['items'][0]['link'] + return item + except Exception as error: + print(error) + return "" + +# class DuckDuckGoSearch: +# def __init__(self): +# self.query_result = None +# +# def search(self, query): +# from duckduckgo_search import DDGS +# try: +# self.query_result = DDGS().text(query, max_results=5, region="us") +# print(self.query_result) +# +# except Exception as err: +# print(err) +# +# def get_first_link(self): +# if self.query_result: +# return self.query_result[0]["href"] +# else: +# return None +# + + +class DuckDuckGoSearch: + """DuckDuckGo search engine class. + methods are inherited from the duckduckgo_search package. + do not change the methods. + + currently, the package is not working with our current setup. + """ + def __init__(self): + from curl_cffi import requests as curl_requests + self.query_result = None + self.asession = curl_requests.Session(impersonate="chrome", allow_redirects=False) + self.asession.headers["Referer"] = "https://duckduckgo.com/" + + def _get_url(self, method, url, data): + try: + resp = self.asession.request(method, url, data=data) + if resp.status_code == 200: + return resp.content + if resp.status_code == (202, 301, 403): + raise Exception(f"Error: {resp.status_code} rate limit error") + if not resp: + return None + except Exception as error: + if "timeout" in str(error).lower(): + raise TimeoutError("Duckduckgo timed out error") + + def duck(self, query): + resp = self._get_url("POST", "https://duckduckgo.com/", data={"q": query}) + vqd = self.extract_vqd(resp) + + params = {"q": query, "kl": 'en-us', "p": "1", "s": "0", "df": "", "vqd": vqd, "ex": ""} + resp = self._get_url("GET", "https://links.duckduckgo.com/d.js", params) + page_data = self.text_extract_json(resp) + + results = [] + for row in page_data: + href = row.get("u") + if href and href != f"http://www.google.com/search?q={query}": + body = self.normalize(row["a"]) + if body: + result = { + "title": self.normalize(row["t"]), + "href": self.normalize_url(href), + "body": self.normalize(row["a"]), + } + results.append(result) + + self.query_result = results + + def search(self, query): + self.duck(query) + + def get_first_link(self): + return self.query_result[0]["href"] + + @staticmethod + def extract_vqd(html_bytes: bytes) -> str: + patterns = [(b'vqd="', 5, b'"'), (b"vqd=", 4, b"&"), (b"vqd='", 5, b"'")] + for start_pattern, offset, end_pattern in patterns: + try: + start = html_bytes.index(start_pattern) + offset + end = html_bytes.index(end_pattern, start) + return html_bytes[start:end].decode() + except ValueError: + continue + + @staticmethod + def text_extract_json(html_bytes): + try: + start = html_bytes.index(b"DDG.pageLayout.load('d',") + 24 + end = html_bytes.index(b");DDG.duckbar.load(", start) + return orjson.loads(html_bytes[start:end]) + except Exception as ex: + print(f"Error extracting JSON: {type(ex).__name__}: {ex}") + + @staticmethod + def normalize_url(url: str) -> str: + return unquote(url.replace(" ", "+")) if url else "" + + @staticmethod + def normalize(raw_html: str) -> str: + return unescape(re.sub("<.*?>", "", raw_html)) if raw_html else "" diff --git a/src/config.py b/src/config.py new file mode 100644 index 0000000..0e6c224 --- /dev/null +++ b/src/config.py @@ -0,0 +1,188 @@ +import toml +import os + + +class Config: + _instance = None + + def __new__(cls): + if cls._instance is None: + cls._instance = super().__new__(cls) + cls._instance._load_config() + return cls._instance + + def _load_config(self): + # If the config file doesn't exist, copy from the sample + if not os.path.exists("config.toml"): + with open("sample.config.toml", "r") as f_in, open("config.toml", "w+") as f_out: + f_out.write(f_in.read()) + f_out.seek(0) + self.config = toml.load(f_out) + else: + # check if all the keys are present in the config file + with open("sample.config.toml", "r") as f: + sample_config = toml.load(f) + + with open("config.toml", "r+") as f: + config = toml.load(f) + + # Update the config with any missing keys and their keys of keys + for key, value in sample_config.items(): + config.setdefault(key, value) + if isinstance(value, dict): + for sub_key, sub_value in value.items(): + config[key].setdefault(sub_key, sub_value) + + f.seek(0) + toml.dump(config, f) + f.truncate() + + self.config = config + + def get_config(self): + return self.config + + def get_bing_api_endpoint(self): + return self.config["API_ENDPOINTS"]["BING"] + + def get_bing_api_key(self): + return self.config["API_KEYS"]["BING"] + + def get_google_search_api_key(self): + return self.config["API_KEYS"]["GOOGLE_SEARCH"] + + def get_google_search_engine_id(self): + return self.config["API_KEYS"]["GOOGLE_SEARCH_ENGINE_ID"] + + def get_google_search_api_endpoint(self): + return self.config["API_ENDPOINTS"]["GOOGLE"] + + def get_ollama_api_endpoint(self): + return self.config["API_ENDPOINTS"]["OLLAMA"] + + def get_claude_api_key(self): + return self.config["API_KEYS"]["CLAUDE"] + + def get_openai_api_key(self): + return self.config["API_KEYS"]["OPENAI"] + + def get_openai_api_base_url(self): + return self.config["API_ENDPOINTS"]["OPENAI"] + + def get_gemini_api_key(self): + return self.config["API_KEYS"]["GEMINI"] + + def get_mistral_api_key(self): + return self.config["API_KEYS"]["MISTRAL"] + + def get_groq_api_key(self): + return self.config["API_KEYS"]["GROQ"] + + def get_netlify_api_key(self): + return self.config["API_KEYS"]["NETLIFY"] + + def get_sqlite_db(self): + return self.config["STORAGE"]["SQLITE_DB"] + + def get_screenshots_dir(self): + return self.config["STORAGE"]["SCREENSHOTS_DIR"] + + def get_pdfs_dir(self): + return self.config["STORAGE"]["PDFS_DIR"] + + def get_projects_dir(self): + return self.config["STORAGE"]["PROJECTS_DIR"] + + def get_logs_dir(self): + return self.config["STORAGE"]["LOGS_DIR"] + + def get_repos_dir(self): + return self.config["STORAGE"]["REPOS_DIR"] + + def get_logging_rest_api(self): + return self.config["LOGGING"]["LOG_REST_API"] == "true" + + def get_logging_prompts(self): + return self.config["LOGGING"]["LOG_PROMPTS"] == "true" + + def get_timeout_inference(self): + return self.config["TIMEOUT"]["INFERENCE"] + + def set_bing_api_key(self, key): + self.config["API_KEYS"]["BING"] = key + self.save_config() + + def set_bing_api_endpoint(self, endpoint): + self.config["API_ENDPOINTS"]["BING"] = endpoint + self.save_config() + + def set_google_search_api_key(self, key): + self.config["API_KEYS"]["GOOGLE_SEARCH"] = key + self.save_config() + + def set_google_search_engine_id(self, key): + self.config["API_KEYS"]["GOOGLE_SEARCH_ENGINE_ID"] = key + self.save_config() + + def set_google_search_api_endpoint(self, endpoint): + self.config["API_ENDPOINTS"]["GOOGLE_SEARCH"] = endpoint + self.save_config() + + def set_ollama_api_endpoint(self, endpoint): + self.config["API_ENDPOINTS"]["OLLAMA"] = endpoint + self.save_config() + + def set_claude_api_key(self, key): + self.config["API_KEYS"]["CLAUDE"] = key + self.save_config() + + def set_openai_api_key(self, key): + self.config["API_KEYS"]["OPENAI"] = key + self.save_config() + + def set_openai_api_endpoint(self,endpoint): + self.config["API_ENDPOINTS"]["OPENAI"] = endpoint + self.save_config() + + def set_gemini_api_key(self, key): + self.config["API_KEYS"]["GEMINI"] = key + self.save_config() + + def set_mistral_api_key(self, key): + self.config["API_KEYS"]["MISTRAL"] = key + self.save_config() + + def set_groq_api_key(self, key): + self.config["API_KEYS"]["GROQ"] = key + self.save_config() + + def set_netlify_api_key(self, key): + self.config["API_KEYS"]["NETLIFY"] = key + self.save_config() + + def set_logging_rest_api(self, value): + self.config["LOGGING"]["LOG_REST_API"] = "true" if value else "false" + self.save_config() + + def set_logging_prompts(self, value): + self.config["LOGGING"]["LOG_PROMPTS"] = "true" if value else "false" + self.save_config() + + def set_timeout_inference(self, value): + self.config["TIMEOUT"]["INFERENCE"] = value + self.save_config() + + def save_config(self): + with open("config.toml", "w") as f: + toml.dump(self.config, f) + + def update_config(self, data): + for key, value in data.items(): + if key in self.config: + with open("config.toml", "r+") as f: + config = toml.load(f) + for sub_key, sub_value in value.items(): + self.config[key][sub_key] = sub_value + config[key][sub_key] = sub_value + f.seek(0) + toml.dump(config, f) diff --git a/src/documenter/graphwiz.py b/src/documenter/graphwiz.py new file mode 100644 index 0000000..e69de29 diff --git a/src/documenter/pdf.py b/src/documenter/pdf.py new file mode 100644 index 0000000..d7dddbe --- /dev/null +++ b/src/documenter/pdf.py @@ -0,0 +1,23 @@ +import os +from io import BytesIO +from markdown import markdown +from xhtml2pdf import pisa + +from src.config import Config + +class PDF: + def __init__(self): + config = Config() + self.pdf_path = config.get_pdfs_dir() + + def markdown_to_pdf(self, markdown_string, project_name): + html_string = markdown(markdown_string) + + out_file_path = os.path.join(self.pdf_path, f"{project_name}.pdf") + with open(out_file_path, "wb") as out_file: + pisa_status = pisa.CreatePDF(html_string, dest=out_file) + + if pisa_status.err: + raise Exception("Error generating PDF") + + return out_file_path \ No newline at end of file diff --git a/src/documenter/uml.py b/src/documenter/uml.py new file mode 100644 index 0000000..e69de29 diff --git a/src/experts/__UNIMPLEMENTED__ b/src/experts/__UNIMPLEMENTED__ new file mode 100644 index 0000000..e69de29 diff --git a/src/experts/chemistry.py b/src/experts/chemistry.py new file mode 100644 index 0000000..03b5161 --- /dev/null +++ b/src/experts/chemistry.py @@ -0,0 +1,11 @@ +""" +Function calls and Parser for: +- SMILE Notation +- Molecule Parser + +Visualization for: +- Molecule Structure +- Molecule Properties + +Use RDKit bindings +""" \ No newline at end of file diff --git a/src/experts/game-dev.py b/src/experts/game-dev.py new file mode 100644 index 0000000..b4dd91f --- /dev/null +++ b/src/experts/game-dev.py @@ -0,0 +1,3 @@ +""" +RAG for Unity/Godot/Unreal Engine code blocks +""" \ No newline at end of file diff --git a/src/experts/math.py b/src/experts/math.py new file mode 100644 index 0000000..0423f1d --- /dev/null +++ b/src/experts/math.py @@ -0,0 +1,4 @@ +""" +Evaluator Function Calling +Wolphram Alpha Plugin +""" \ No newline at end of file diff --git a/src/experts/medical.py b/src/experts/medical.py new file mode 100644 index 0000000..bfed2c5 --- /dev/null +++ b/src/experts/medical.py @@ -0,0 +1,3 @@ +""" +PubMed archive RAG +""" \ No newline at end of file diff --git a/src/experts/physics.py b/src/experts/physics.py new file mode 100644 index 0000000..7235574 --- /dev/null +++ b/src/experts/physics.py @@ -0,0 +1,3 @@ +""" +Physics Function Calls +""" \ No newline at end of file diff --git a/src/experts/stackoverflow.py b/src/experts/stackoverflow.py new file mode 100644 index 0000000..a8a544b --- /dev/null +++ b/src/experts/stackoverflow.py @@ -0,0 +1,3 @@ +""" +Stack overflow query searcher and retrieval +""" \ No newline at end of file diff --git a/src/experts/web-design.py b/src/experts/web-design.py new file mode 100644 index 0000000..00c6a28 --- /dev/null +++ b/src/experts/web-design.py @@ -0,0 +1,3 @@ +""" +Tailwind UI Components code snippets RAG +""" \ No newline at end of file diff --git a/src/filesystem/__init__.py b/src/filesystem/__init__.py new file mode 100644 index 0000000..b667c51 --- /dev/null +++ b/src/filesystem/__init__.py @@ -0,0 +1 @@ +from .read_code import ReadCode \ No newline at end of file diff --git a/src/filesystem/read_code.py b/src/filesystem/read_code.py new file mode 100644 index 0000000..71b76f7 --- /dev/null +++ b/src/filesystem/read_code.py @@ -0,0 +1,35 @@ +import os + +from src.config import Config + +""" +TODO: Replace this with `code2prompt` - https://github.com/mufeedvh/code2prompt +""" + +class ReadCode: + def __init__(self, project_name: str): + config = Config() + project_path = config.get_projects_dir() + self.directory_path = os.path.join(project_path, project_name.lower().replace(" ", "-")) + + def read_directory(self): + files_list = [] + for root, _dirs, files in os.walk(self.directory_path): + for file in files: + try: + file_path = os.path.join(root, file) + with open(file_path, 'r') as file_content: + files_list.append({"filename": file_path, "code": file_content.read()}) + except: + pass + + return files_list + + def code_set_to_markdown(self): + code_set = self.read_directory() + markdown = "" + for code in code_set: + markdown += f"### {code['filename']}:\n\n" + markdown += f"```\n{code['code']}\n```\n\n" + markdown += "---\n\n" + return markdown diff --git a/src/init.py b/src/init.py new file mode 100644 index 0000000..abb8b95 --- /dev/null +++ b/src/init.py @@ -0,0 +1,32 @@ +import os +from src.config import Config +from src.logger import Logger + + +def init_devika(): + logger = Logger() + + logger.info("Initializing Devika...") + logger.info("checking configurations...") + + config = Config() + + sqlite_db = config.get_sqlite_db() + screenshots_dir = config.get_screenshots_dir() + pdfs_dir = config.get_pdfs_dir() + projects_dir = config.get_projects_dir() + logs_dir = config.get_logs_dir() + + logger.info("Initializing Prerequisites Jobs...") + os.makedirs(os.path.dirname(sqlite_db), exist_ok=True) + os.makedirs(screenshots_dir, exist_ok=True) + os.makedirs(pdfs_dir, exist_ok=True) + os.makedirs(projects_dir, exist_ok=True) + os.makedirs(logs_dir, exist_ok=True) + + from src.bert.sentence import SentenceBert + + logger.info("Loading sentence-transformer BERT models...") + prompt = "Light-weight keyword extraction exercise for BERT model loading.".strip() + SentenceBert(prompt).extract_keywords() + logger.info("BERT model loaded successfully.") diff --git a/src/llm/__init__.py b/src/llm/__init__.py new file mode 100644 index 0000000..5ab9f9c --- /dev/null +++ b/src/llm/__init__.py @@ -0,0 +1 @@ +from .llm import LLM \ No newline at end of file diff --git a/src/llm/claude_client.py b/src/llm/claude_client.py new file mode 100644 index 0000000..68fa6eb --- /dev/null +++ b/src/llm/claude_client.py @@ -0,0 +1,26 @@ +from anthropic import Anthropic + +from src.config import Config + +class Claude: + def __init__(self): + config = Config() + api_key = config.get_claude_api_key() + self.client = Anthropic( + api_key=api_key, + ) + + def inference(self, model_id: str, prompt: str) -> str: + message = self.client.messages.create( + max_tokens=4096, + messages=[ + { + "role": "user", + "content": prompt.strip(), + } + ], + model=model_id, + temperature=0 + ) + + return message.content[0].text diff --git a/src/llm/gemini_client.py b/src/llm/gemini_client.py new file mode 100644 index 0000000..0d56667 --- /dev/null +++ b/src/llm/gemini_client.py @@ -0,0 +1,33 @@ +import google.generativeai as genai +from google.generativeai.types import HarmCategory, HarmBlockThreshold + +from src.config import Config + +class Gemini: + def __init__(self): + config = Config() + api_key = config.get_gemini_api_key() + genai.configure(api_key=api_key) + + def inference(self, model_id: str, prompt: str) -> str: + config = genai.GenerationConfig(temperature=0) + model = genai.GenerativeModel(model_id, generation_config=config) + # Set safety settings for the request + safety_settings = { + HarmCategory.HARM_CATEGORY_HATE_SPEECH: HarmBlockThreshold.BLOCK_NONE, + HarmCategory.HARM_CATEGORY_HARASSMENT: HarmBlockThreshold.BLOCK_NONE, + # You can adjust other categories as needed + } + response = model.generate_content(prompt, safety_settings=safety_settings) + try: + # Check if the response contains text + return response.text + except ValueError: + # If the response doesn't contain text, check if the prompt was blocked + print("Prompt feedback:", response.prompt_feedback) + # Also check the finish reason to see if the response was blocked + print("Finish reason:", response.candidates[0].finish_reason) + # If the finish reason was SAFETY, the safety ratings have more details + print("Safety ratings:", response.candidates[0].safety_ratings) + # Handle the error or return an appropriate message + return "Error: Unable to generate content Gemini API" diff --git a/src/llm/groq_client.py b/src/llm/groq_client.py new file mode 100644 index 0000000..828c9cc --- /dev/null +++ b/src/llm/groq_client.py @@ -0,0 +1,24 @@ +from groq import Groq as _Groq + +from src.config import Config + + +class Groq: + def __init__(self): + config = Config() + api_key = config.get_groq_api_key() + self.client = _Groq(api_key=api_key) + + def inference(self, model_id: str, prompt: str) -> str: + chat_completion = self.client.chat.completions.create( + messages=[ + { + "role": "user", + "content": prompt.strip(), + } + ], + model=model_id, + temperature=0 + ) + + return chat_completion.choices[0].message.content diff --git a/src/llm/llm.py b/src/llm/llm.py new file mode 100644 index 0000000..bf33ef3 --- /dev/null +++ b/src/llm/llm.py @@ -0,0 +1,149 @@ +import sys + +import tiktoken +from typing import List, Tuple + +from src.socket_instance import emit_agent +from .ollama_client import Ollama +from .claude_client import Claude +from .openai_client import OpenAi +from .gemini_client import Gemini +from .mistral_client import MistralAi +from .groq_client import Groq + +from src.state import AgentState + +from src.config import Config +from src.logger import Logger + +TIKTOKEN_ENC = tiktoken.get_encoding("cl100k_base") + +ollama = Ollama() +logger = Logger() +agentState = AgentState() +config = Config() + + +class LLM: + def __init__(self, model_id: str = None): + self.model_id = model_id + self.log_prompts = config.get_logging_prompts() + self.timeout_inference = config.get_timeout_inference() + self.models = { + "CLAUDE": [ + ("Claude 3 Opus", "claude-3-opus-20240229"), + ("Claude 3 Sonnet", "claude-3-sonnet-20240229"), + ("Claude 3 Haiku", "claude-3-haiku-20240307"), + ], + "OPENAI": [ + ("GPT-4o", "gpt-4o"), + ("GPT-4 Turbo", "gpt-4-turbo"), + ("GPT-3.5 Turbo", "gpt-3.5-turbo-0125"), + ], + "GOOGLE": [ + ("Gemini 1.0 Pro", "gemini-pro"), + ("Gemini 1.5 Flash", "gemini-1.5-flash"), + ("Gemini 1.5 Pro", "gemini-1.5-pro"), + ], + "MISTRAL": [ + ("Mistral 7b", "open-mistral-7b"), + ("Mistral 8x7b", "open-mixtral-8x7b"), + ("Mistral Medium", "mistral-medium-latest"), + ("Mistral Small", "mistral-small-latest"), + ("Mistral Large", "mistral-large-latest"), + ], + "GROQ": [ + ("LLAMA3 8B", "llama3-8b-8192"), + ("LLAMA3 70B", "llama3-70b-8192"), + ("LLAMA2 70B", "llama2-70b-4096"), + ("Mixtral", "mixtral-8x7b-32768"), + ("GEMMA 7B", "gemma-7b-it"), + ], + "OLLAMA": [] + } + if ollama.client: + self.models["OLLAMA"] = [(model["name"], model["name"]) for model in ollama.models] + + def list_models(self) -> dict: + return self.models + + def model_enum(self, model_name: str) -> Tuple[str, str]: + model_dict = { + model[0]: (model_enum, model[1]) + for model_enum, models in self.models.items() + for model in models + } + return model_dict.get(model_name, (None, None)) + + @staticmethod + def update_global_token_usage(string: str, project_name: str): + token_usage = len(TIKTOKEN_ENC.encode(string)) + agentState.update_token_usage(project_name, token_usage) + + total = agentState.get_latest_token_usage(project_name) + token_usage + emit_agent("tokens", {"token_usage": total}) + + def inference(self, prompt: str, project_name: str) -> str: + self.update_global_token_usage(prompt, project_name) + + model_enum, model_name = self.model_enum(self.model_id) + + print(f"Model: {self.model_id}, Enum: {model_enum}") + if model_enum is None: + raise ValueError(f"Model {self.model_id} not supported") + + model_mapping = { + "OLLAMA": ollama, + "CLAUDE": Claude(), + "OPENAI": OpenAi(), + "GOOGLE": Gemini(), + "MISTRAL": MistralAi(), + "GROQ": Groq() + } + + try: + import concurrent.futures + import time + + start_time = time.time() + model = model_mapping[model_enum] + + with concurrent.futures.ThreadPoolExecutor() as executor: + future = executor.submit(model.inference, model_name, prompt) + try: + while True: + elapsed_time = time.time() - start_time + elapsed_seconds = format(elapsed_time, ".2f") + emit_agent("inference", {"type": "time", "elapsed_time": elapsed_seconds}) + if int(elapsed_time) == 5: + emit_agent("inference", {"type": "warning", "message": "Inference is taking longer than expected"}) + if elapsed_time > self.timeout_inference: + raise concurrent.futures.TimeoutError + if future.done(): + break + time.sleep(0.5) + + response = future.result(timeout=self.timeout_inference).strip() + + except concurrent.futures.TimeoutError: + logger.error(f"Inference failed. took too long. Model: {model_enum}, Model ID: {self.model_id}") + emit_agent("inference", {"type": "error", "message": "Inference took too long. Please try again."}) + response = False + sys.exit() + + except Exception as e: + logger.error(str(e)) + response = False + emit_agent("inference", {"type": "error", "message": str(e)}) + sys.exit() + + + except KeyError: + raise ValueError(f"Model {model_enum} not supported") + + if self.log_prompts: + logger.debug(f"Response ({model}): --> {response}") + + self.update_global_token_usage(response, project_name) + + return response diff --git a/src/llm/mistral_client.py b/src/llm/mistral_client.py new file mode 100644 index 0000000..ee019c4 --- /dev/null +++ b/src/llm/mistral_client.py @@ -0,0 +1,22 @@ +from mistralai.client import MistralClient +from mistralai.models.chat_completion import ChatMessage + +from src.config import Config + + +class MistralAi: + def __init__(self): + config = Config() + api_key = config.get_mistral_api_key() + self.client = MistralClient(api_key=api_key) + + def inference(self, model_id: str, prompt: str) -> str: + print("prompt", prompt.strip()) + chat_completion = self.client.chat( + model=model_id, + messages=[ + ChatMessage(role="user", content=prompt.strip()) + ], + temperature=0 + ) + return chat_completion.choices[0].message.content diff --git a/src/llm/ollama_client.py b/src/llm/ollama_client.py new file mode 100644 index 0000000..95b1e36 --- /dev/null +++ b/src/llm/ollama_client.py @@ -0,0 +1,25 @@ +import ollama +from src.logger import Logger +from src.config import Config + +log = Logger() + + +class Ollama: + def __init__(self): + try: + self.client = ollama.Client(Config().get_ollama_api_endpoint()) + self.models = self.client.list()["models"] + log.info("Ollama available") + except: + self.client = None + log.warning("Ollama not available") + log.warning("run ollama server to use ollama models otherwise use API models") + + def inference(self, model_id: str, prompt: str) -> str: + response = self.client.generate( + model=model_id, + prompt=prompt.strip(), + options={"temperature": 0} + ) + return response['response'] diff --git a/src/llm/openai_client.py b/src/llm/openai_client.py new file mode 100644 index 0000000..17344c0 --- /dev/null +++ b/src/llm/openai_client.py @@ -0,0 +1,24 @@ +from openai import OpenAI + +from src.config import Config + + +class OpenAi: + def __init__(self): + config = Config() + api_key = config.get_openai_api_key() + base_url = config.get_openai_api_base_url() + self.client = OpenAI(api_key=api_key, base_url=base_url) + + def inference(self, model_id: str, prompt: str) -> str: + chat_completion = self.client.chat.completions.create( + messages=[ + { + "role": "user", + "content": prompt.strip(), + } + ], + model=model_id, + temperature=0 + ) + return chat_completion.choices[0].message.content diff --git a/src/logger.py b/src/logger.py new file mode 100644 index 0000000..e485f7e --- /dev/null +++ b/src/logger.py @@ -0,0 +1,78 @@ +from functools import wraps + +from fastlogging import LogInit +from flask import request + +from src.config import Config + + +class Logger: + def __init__(self, filename="devika_agent.log"): + config = Config() + logs_dir = config.get_logs_dir() + self.logger = LogInit(pathName=logs_dir + "/" + filename, console=True, colors=True, encoding="utf-8") + + def read_log_file(self) -> str: + with open(self.logger.pathName, "r") as file: + return file.read() + + def info(self, message: str): + self.logger.info(message) + self.logger.flush() + + def error(self, message: str): + self.logger.error(message) + self.logger.flush() + + def warning(self, message: str): + self.logger.warning(message) + self.logger.flush() + + def debug(self, message: str): + self.logger.debug(message) + self.logger.flush() + + def exception(self, message: str): + self.logger.exception(message) + self.logger.flush() + + +def route_logger(logger: Logger): + """ + Decorator factory that creates a decorator to log route entry and exit points. + The decorator uses the provided logger to log the information. + + :param logger: The logger instance to use for logging. + """ + + log_enabled = Config().get_logging_rest_api() + + def decorator(func): + + @wraps(func) + def wrapper(*args, **kwargs): + # Log entry point + if log_enabled: + logger.info(f"{request.path} {request.method}") + + # Call the actual route function + response = func(*args, **kwargs) + + from werkzeug.wrappers import Response + + # Log exit point, including response summary if possible + try: + if log_enabled: + if isinstance(response, Response) and response.direct_passthrough: + logger.debug(f"{request.path} {request.method} - Response: File response") + else: + response_summary = response.get_data(as_text=True) + if 'settings' in request.path: + response_summary = "*** Settings are not logged ***" + logger.debug(f"{request.path} {request.method} - Response: {response_summary}") + except Exception as e: + logger.exception(f"{request.path} {request.method} - {e})") + + return response + return wrapper + return decorator diff --git a/src/memory/__init__.py b/src/memory/__init__.py new file mode 100644 index 0000000..7acc3f4 --- /dev/null +++ b/src/memory/__init__.py @@ -0,0 +1 @@ +from .knowledge_base import KnowledgeBase \ No newline at end of file diff --git a/src/memory/knowledge_base.py b/src/memory/knowledge_base.py new file mode 100644 index 0000000..845995f --- /dev/null +++ b/src/memory/knowledge_base.py @@ -0,0 +1,33 @@ +from typing import Optional +from sqlmodel import Field, Session, SQLModel, create_engine + +from src.config import Config + +""" +TODO: The tag check should be a BM25 search, it's just a simple equality check now. +""" + +class Knowledge(SQLModel, table=True): + id: Optional[int] = Field(default=None, primary_key=True) + tag: str + contents: str + +class KnowledgeBase: + def __init__(self): + config = Config() + sqlite_path = config.get_sqlite_db() + self.engine = create_engine(f"sqlite:///{sqlite_path}") + SQLModel.metadata.create_all(self.engine) + + def add_knowledge(self, tag: str, contents: str): + knowledge = Knowledge(tag=tag, contents=contents) + with Session(self.engine) as session: + session.add(knowledge) + session.commit() + + def get_knowledge(self, tag: str) -> str: + with Session(self.engine) as session: + knowledge = session.query(Knowledge).filter(Knowledge.tag == tag).first() + if knowledge: + return knowledge.contents + return None \ No newline at end of file diff --git a/src/memory/rag.py b/src/memory/rag.py new file mode 100644 index 0000000..8229bf9 --- /dev/null +++ b/src/memory/rag.py @@ -0,0 +1,3 @@ +""" +Vector Search for Code Docs + Docs Loading +""" \ No newline at end of file diff --git a/src/project.py b/src/project.py new file mode 100644 index 0000000..dd2c68b --- /dev/null +++ b/src/project.py @@ -0,0 +1,175 @@ +import os +import json +import zipfile +from datetime import datetime +from typing import Optional +from src.socket_instance import emit_agent +from sqlmodel import Field, Session, SQLModel, create_engine +from src.config import Config + + +class Projects(SQLModel, table=True): + id: Optional[int] = Field(default=None, primary_key=True) + project: str + message_stack_json: str + + +class ProjectManager: + def __init__(self): + config = Config() + sqlite_path = config.get_sqlite_db() + self.project_path = config.get_projects_dir() + self.engine = create_engine(f"sqlite:///{sqlite_path}") + SQLModel.metadata.create_all(self.engine) + + def new_message(self): + timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S") + + return { + "from_devika": True, + "message": None, + "timestamp": timestamp + } + + def create_project(self, project: str): + with Session(self.engine) as session: + project_state = Projects(project=project, message_stack_json=json.dumps([])) + session.add(project_state) + session.commit() + + def delete_project(self, project: str): + with Session(self.engine) as session: + project_state = session.query(Projects).filter(Projects.project == project).first() + if project_state: + session.delete(project_state) + session.commit() + + def add_message_to_project(self, project: str, message: dict): + with Session(self.engine) as session: + project_state = session.query(Projects).filter(Projects.project == project).first() + if project_state: + message_stack = json.loads(project_state.message_stack_json) + message_stack.append(message) + project_state.message_stack_json = json.dumps(message_stack) + session.commit() + else: + message_stack = [message] + project_state = Projects(project=project, message_stack_json=json.dumps(message_stack)) + session.add(project_state) + session.commit() + + def add_message_from_devika(self, project: str, message: str): + new_message = self.new_message() + new_message["message"] = message + emit_agent("server-message", {"messages": new_message}) + self.add_message_to_project(project, new_message) + + def add_message_from_user(self, project: str, message: str): + new_message = self.new_message() + new_message["message"] = message + new_message["from_devika"] = False + emit_agent("server-message", {"messages": new_message}) + self.add_message_to_project(project, new_message) + + def get_messages(self, project: str): + with Session(self.engine) as session: + project_state = session.query(Projects).filter(Projects.project == project).first() + if project_state: + return json.loads(project_state.message_stack_json) + return None + + def get_latest_message_from_user(self, project: str): + with Session(self.engine) as session: + project_state = session.query(Projects).filter(Projects.project == project).first() + if project_state: + message_stack = json.loads(project_state.message_stack_json) + for message in reversed(message_stack): + if not message["from_devika"]: + return message + return None + + def validate_last_message_is_from_user(self, project: str): + with Session(self.engine) as session: + project_state = session.query(Projects).filter(Projects.project == project).first() + if project_state: + message_stack = json.loads(project_state.message_stack_json) + if message_stack: + return not message_stack[-1]["from_devika"] + return False + + def get_latest_message_from_devika(self, project: str): + with Session(self.engine) as session: + project_state = session.query(Projects).filter(Projects.project == project).first() + if project_state: + message_stack = json.loads(project_state.message_stack_json) + for message in reversed(message_stack): + if message["from_devika"]: + return message + return None + + def get_project_list(self): + with Session(self.engine) as session: + projects = session.query(Projects).all() + return [project.project for project in projects] + + def get_all_messages_formatted(self, project: str): + formatted_messages = [] + + with Session(self.engine) as session: + project_state = session.query(Projects).filter(Projects.project == project).first() + if project_state: + message_stack = json.loads(project_state.message_stack_json) + for message in message_stack: + if message["from_devika"]: + formatted_messages.append(f"Devika: {message['message']}") + else: + formatted_messages.append(f"User: {message['message']}") + + return formatted_messages + + def get_project_path(self, project: str): + return os.path.join(self.project_path, project.lower().replace(" ", "-")) + + def project_to_zip(self, project: str): + project_path = self.get_project_path(project) + zip_path = f"{project_path}.zip" + + with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf: + for root, dirs, files in os.walk(project_path): + for file in files: + relative_path = os.path.relpath(os.path.join(root, file), os.path.join(project_path, '..')) + zipf.write(os.path.join(root, file), arcname=relative_path) + + return zip_path + + def get_zip_path(self, project: str): + return f"{self.get_project_path(project)}.zip" + + def get_project_files(self, project_name: str): + if not project_name: + return [] + + project_directory = "-".join(project_name.split(" ")) + base_path = os.path.abspath(os.path.join(os.getcwd(), 'data', 'projects')) + directory = os.path.join(base_path, project_directory) + + # Ensure the directory is within the allowed base path + if not os.path.exists(directory) or not os.path.commonprefix([directory, base_path]) == base_path: + return [] + + files = [] + for root, _, filenames in os.walk(directory): + for filename in filenames: + file_relative_path = os.path.relpath(root, directory) + if file_relative_path == '.': + file_relative_path = '' + file_path = os.path.join(file_relative_path, filename) + try: + with open(os.path.join(root, filename), 'r') as file: + files.append({ + "file": file_path, + "code": file.read() + }) + except Exception as e: + print(f"Error reading file {filename}: {e}") + return files diff --git a/src/sandbox/code_runner.py b/src/sandbox/code_runner.py new file mode 100644 index 0000000..e69de29 diff --git a/src/sandbox/firejail.py b/src/sandbox/firejail.py new file mode 100644 index 0000000..e69de29 diff --git a/src/services/__init__.py b/src/services/__init__.py new file mode 100644 index 0000000..989c2c2 --- /dev/null +++ b/src/services/__init__.py @@ -0,0 +1,3 @@ +from .git import Git +from .github import GitHub +from .netlify import Netlify \ No newline at end of file diff --git a/src/services/git.py b/src/services/git.py new file mode 100644 index 0000000..4847d98 --- /dev/null +++ b/src/services/git.py @@ -0,0 +1,20 @@ +import git as GitPython + +class Git: + def __init__(self, path): + self.repo = GitPython.Repo(path) + + def clone(self, url, path): + return GitPython.Repo.clone_from(url, path) + + def get_branches(self): + return self.repo.branches + + def get_commits(self, branch): + return self.repo.iter_commits(branch) + + def get_commit(self, commit): + return self.repo.commit(commit) + + def get_file(self, commit, file): + return self.repo.git.show(f'{commit}:{file}') \ No newline at end of file diff --git a/src/services/github.py b/src/services/github.py new file mode 100644 index 0000000..bd87c6b --- /dev/null +++ b/src/services/github.py @@ -0,0 +1,15 @@ +import requests + +from typing import List + +class GitHub: + def __init__(self, token: str) -> None: + self.token = token + + def get_repositories(self) -> List[str]: + headers = {"Authorization": f"token {self.token}"} + response = requests.get( + "https://api.github.com/user/repos", headers=headers + ) + response.raise_for_status() + return [repo["full_name"] for repo in response.json()] \ No newline at end of file diff --git a/src/services/netlify.py b/src/services/netlify.py new file mode 100644 index 0000000..c74e75e --- /dev/null +++ b/src/services/netlify.py @@ -0,0 +1,28 @@ +from netlify_py import NetlifyPy + +from src.config import Config +from src.project import ProjectManager + +class Netlify: + def __init__(self): + config = Config() + api_key = config.get_netlify_api_key() + self.netlify = NetlifyPy(access_token=api_key) + + def deploy(self, project_name: str): + project_path = ProjectManager().get_project_path(project_name) + + site = self.netlify.site.create_site() + + print("===" * 10) + print(site) + + site_id = site["id"] + + deploy = self.netlify.deploys.deploy_site(site_id, project_path) + + print("===" * 10) + print(deploy) + + return deploy + diff --git a/src/services/utils.py b/src/services/utils.py new file mode 100644 index 0000000..6678168 --- /dev/null +++ b/src/services/utils.py @@ -0,0 +1,90 @@ +# create wrapper function that will has retry logic of 5 times +import sys +import time +from functools import wraps +import json + +from src.socket_instance import emit_agent + +def retry_wrapper(func): + def wrapper(*args, **kwargs): + max_tries = 5 + tries = 0 + while tries < max_tries: + result = func(*args, **kwargs) + if result: + return result + print("Invalid response from the model, I'm trying again...") + emit_agent("info", {"type": "warning", "message": "Invalid response from the model, trying again..."}) + tries += 1 + time.sleep(2) + print("Maximum 5 attempts reached. try other models") + emit_agent("info", {"type": "error", "message": "Maximum attempts reached. model keeps failing."}) + sys.exit(1) + + return False + return wrapper + + +class InvalidResponseError(Exception): + pass + +def validate_responses(func): + @wraps(func) + def wrapper(*args, **kwargs): + args = list(args) + response = args[1] + response = response.strip() + + try: + response = json.loads(response) + print("first", type(response)) + args[1] = response + return func(*args, **kwargs) + + except json.JSONDecodeError: + pass + + try: + response = response.split("```")[1] + if response: + response = json.loads(response.strip()) + print("second", type(response)) + args[1] = response + return func(*args, **kwargs) + + except (IndexError, json.JSONDecodeError): + pass + + try: + start_index = response.find('{') + end_index = response.rfind('}') + if start_index != -1 and end_index != -1: + json_str = response[start_index:end_index+1] + try: + response = json.loads(json_str) + print("third", type(response)) + args[1] = response + return func(*args, **kwargs) + + except json.JSONDecodeError: + pass + except json.JSONDecodeError: + pass + + for line in response.splitlines(): + try: + response = json.loads(line) + print("fourth", type(response)) + args[1] = response + return func(*args, **kwargs) + + except json.JSONDecodeError: + pass + + # If all else fails, raise an exception + emit_agent("info", {"type": "error", "message": "Failed to parse response as JSON"}) + # raise InvalidResponseError("Failed to parse response as JSON") + return False + + return wrapper \ No newline at end of file diff --git a/src/socket_instance.py b/src/socket_instance.py new file mode 100644 index 0000000..51f9d0b --- /dev/null +++ b/src/socket_instance.py @@ -0,0 +1,17 @@ +# socketio_instance.py +from flask_socketio import SocketIO +from src.logger import Logger +socketio = SocketIO(cors_allowed_origins="*", async_mode="gevent") + +logger = Logger() + + +def emit_agent(channel, content, log=True): + try: + socketio.emit(channel, content) + if log: + logger.info(f"SOCKET {channel} MESSAGE: {content}") + return True + except Exception as e: + logger.error(f"SOCKET {channel} ERROR: {str(e)}") + return False diff --git a/src/state.py b/src/state.py new file mode 100644 index 0000000..1e5c349 --- /dev/null +++ b/src/state.py @@ -0,0 +1,177 @@ +import json +import os +from datetime import datetime +from typing import Optional +from sqlmodel import Field, Session, SQLModel, create_engine +from src.socket_instance import emit_agent +from src.config import Config + + +class AgentStateModel(SQLModel, table=True): + __tablename__ = "agent_state" + + id: Optional[int] = Field(default=None, primary_key=True) + project: str + state_stack_json: str + + +class AgentState: + def __init__(self): + config = Config() + sqlite_path = config.get_sqlite_db() + self.engine = create_engine(f"sqlite:///{sqlite_path}") + SQLModel.metadata.create_all(self.engine) + + def new_state(self): + timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S") + + return { + "internal_monologue": '', + "browser_session": { + "url": None, + "screenshot": None + }, + "terminal_session": { + "command": None, + "output": None, + "title": None + }, + "step": int(), + "message": None, + "completed": False, + "agent_is_active": True, + "token_usage": 0, + "timestamp": timestamp + } + + def create_state(self, project: str): + with Session(self.engine) as session: + new_state = self.new_state() + new_state["step"] = 1 + new_state["internal_monologue"] = "I'm starting the work..." + agent_state = AgentStateModel(project=project, state_stack_json=json.dumps([new_state])) + session.add(agent_state) + session.commit() + emit_agent("agent-state", [new_state]) + + def delete_state(self, project: str): + with Session(self.engine) as session: + agent_state = session.query(AgentStateModel).filter(AgentStateModel.project == project).all() + if agent_state: + for state in agent_state: + session.delete(state) + session.commit() + + def add_to_current_state(self, project: str, state: dict): + with Session(self.engine) as session: + agent_state = session.query(AgentStateModel).filter(AgentStateModel.project == project).first() + if agent_state: + state_stack = json.loads(agent_state.state_stack_json) + state_stack.append(state) + agent_state.state_stack_json = json.dumps(state_stack) + session.commit() + else: + state_stack = [state] + agent_state = AgentStateModel(project=project, state_stack_json=json.dumps(state_stack)) + session.add(agent_state) + session.commit() + emit_agent("agent-state", state_stack) + + def get_current_state(self, project: str): + with Session(self.engine) as session: + agent_state = session.query(AgentStateModel).filter(AgentStateModel.project == project).first() + if agent_state: + return json.loads(agent_state.state_stack_json) + return None + + def update_latest_state(self, project: str, state: dict): + with Session(self.engine) as session: + agent_state = session.query(AgentStateModel).filter(AgentStateModel.project == project).first() + if agent_state: + state_stack = json.loads(agent_state.state_stack_json) + state_stack[-1] = state + agent_state.state_stack_json = json.dumps(state_stack) + session.commit() + else: + state_stack = [state] + agent_state = AgentStateModel(project=project, state_stack_json=json.dumps(state_stack)) + session.add(agent_state) + session.commit() + emit_agent("agent-state", state_stack) + + def get_latest_state(self, project: str): + with Session(self.engine) as session: + agent_state = session.query(AgentStateModel).filter(AgentStateModel.project == project).first() + if agent_state: + return json.loads(agent_state.state_stack_json)[-1] + return None + + def set_agent_active(self, project: str, is_active: bool): + with Session(self.engine) as session: + agent_state = session.query(AgentStateModel).filter(AgentStateModel.project == project).first() + if agent_state: + state_stack = json.loads(agent_state.state_stack_json) + state_stack[-1]["agent_is_active"] = is_active + agent_state.state_stack_json = json.dumps(state_stack) + session.commit() + else: + state_stack = [self.new_state()] + state_stack[-1]["agent_is_active"] = is_active + agent_state = AgentStateModel(project=project, state_stack_json=json.dumps(state_stack)) + session.add(agent_state) + session.commit() + emit_agent("agent-state", state_stack) + + def is_agent_active(self, project: str): + with Session(self.engine) as session: + agent_state = session.query(AgentStateModel).filter(AgentStateModel.project == project).first() + if agent_state: + return json.loads(agent_state.state_stack_json)[-1]["agent_is_active"] + return None + + def set_agent_completed(self, project: str, is_completed: bool): + with Session(self.engine) as session: + agent_state = session.query(AgentStateModel).filter(AgentStateModel.project == project).first() + if agent_state: + state_stack = json.loads(agent_state.state_stack_json) + state_stack[-1]["internal_monologue"] = "Agent has completed the task." + state_stack[-1]["completed"] = is_completed + agent_state.state_stack_json = json.dumps(state_stack) + session.commit() + else: + state_stack = [self.new_state()] + state_stack[-1]["completed"] = is_completed + agent_state = AgentStateModel(project=project, state_stack_json=json.dumps(state_stack)) + session.add(agent_state) + session.commit() + emit_agent("agent-state", state_stack) + + def is_agent_completed(self, project: str): + with Session(self.engine) as session: + agent_state = session.query(AgentStateModel).filter(AgentStateModel.project == project).first() + if agent_state: + return json.loads(agent_state.state_stack_json)[-1]["completed"] + return None + + def update_token_usage(self, project: str, token_usage: int): + with Session(self.engine) as session: + agent_state = session.query(AgentStateModel).filter(AgentStateModel.project == project).first() + if agent_state: + state_stack = json.loads(agent_state.state_stack_json) + state_stack[-1]["token_usage"] += token_usage + agent_state.state_stack_json = json.dumps(state_stack) + session.commit() + else: + state_stack = [self.new_state()] + state_stack[-1]["token_usage"] = token_usage + agent_state = AgentStateModel(project=project, state_stack_json=json.dumps(state_stack)) + session.add(agent_state) + session.commit() + + def get_latest_token_usage(self, project: str): + with Session(self.engine) as session: + agent_state = session.query(AgentStateModel).filter(AgentStateModel.project == project).first() + if agent_state: + return json.loads(agent_state.state_stack_json)[-1]["token_usage"] + return 0 + \ No newline at end of file diff --git a/ui/.gitignore b/ui/.gitignore new file mode 100644 index 0000000..f24ad68 --- /dev/null +++ b/ui/.gitignore @@ -0,0 +1,12 @@ +.DS_Store +node_modules/ +/build +/.svelte-kit +/package +.env +.env.* +!.env.example +vite.config.js.timestamp-* +vite.config.ts.timestamp-* +pnpm-lock.yaml +.lockb \ No newline at end of file diff --git a/ui/.npmrc b/ui/.npmrc new file mode 100644 index 0000000..b6f27f1 --- /dev/null +++ b/ui/.npmrc @@ -0,0 +1 @@ +engine-strict=true diff --git a/ui/bun.lockb b/ui/bun.lockb new file mode 100755 index 0000000..f6fdf25 Binary files /dev/null and b/ui/bun.lockb differ diff --git a/ui/components.json b/ui/components.json new file mode 100644 index 0000000..0fa871b --- /dev/null +++ b/ui/components.json @@ -0,0 +1,14 @@ +{ + "$schema": "https://shadcn-svelte.com/schema.json", + "style": "default", + "tailwind": { + "config": "tailwind.config.js", + "css": "src/app.pcss", + "baseColor": "zinc" + }, + "aliases": { + "components": "$lib/components", + "utils": "$lib/utils" + }, + "typescript": false +} \ No newline at end of file diff --git a/ui/package.json b/ui/package.json new file mode 100644 index 0000000..f027961 --- /dev/null +++ b/ui/package.json @@ -0,0 +1,40 @@ +{ + "name": "ui", + "version": "0.0.1", + "private": true, + "scripts": { + "dev": "vite dev", + "start": "vite build && vite preview", + "build": "vite build", + "preview": "vite preview" + }, + "devDependencies": { + "@monaco-editor/loader": "^1.4.0", + "@sveltejs/adapter-auto": "^3.0.0", + "@sveltejs/kit": "^2.0.0", + "@sveltejs/vite-plugin-svelte": "^3.0.2", + "autoprefixer": "^10.4.16", + "monaco-editor": "^0.48.0", + "postcss": "^8.4.32", + "postcss-load-config": "^5.0.2", + "svelte": "^4.2.7", + "tailwindcss": "^3.4.3", + "vite": "^5.2.8", + "vite-plugin-wasm": "^3.3.0" + }, + "type": "module", + "dependencies": { + "@xterm/addon-fit": "^0.10.0", + "@xterm/xterm": "^5.5.0", + "bits-ui": "^0.21.2", + "clsx": "^2.1.0", + "dompurify": "^3.1.5", + "mode-watcher": "^0.3.0", + "paneforge": "^0.0.3", + "socket.io-client": "^4.7.5", + "svelte-sonner": "^0.3.21", + "tailwind-merge": "^2.2.2", + "tailwind-variants": "^0.2.1", + "tiktoken": "^1.0.13" + } +} diff --git a/ui/postcss.config.cjs b/ui/postcss.config.cjs new file mode 100644 index 0000000..e48cff5 --- /dev/null +++ b/ui/postcss.config.cjs @@ -0,0 +1,13 @@ +const tailwindcss = require("tailwindcss"); +const autoprefixer = require("autoprefixer"); + +const config = { + plugins: [ + //Some plugins, like tailwindcss/nesting, need to run before Tailwind, + tailwindcss(), + //But others, like autoprefixer, need to run after, + autoprefixer, + ], +}; + +module.exports = config; diff --git a/ui/src/app.html b/ui/src/app.html new file mode 100644 index 0000000..d46c662 --- /dev/null +++ b/ui/src/app.html @@ -0,0 +1,15 @@ + + + + + + + + %sveltekit.head% + Devika AI + + + +
%sveltekit.body%
+ + diff --git a/ui/src/app.pcss b/ui/src/app.pcss new file mode 100644 index 0000000..7ff6167 --- /dev/null +++ b/ui/src/app.pcss @@ -0,0 +1,137 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +@layer base { + :root { + --primary: #2F3337; + --background: #ffffff; + --secondary: #f1f2f5; + --tertiary: #919AA3; + + --foreground: #303438; + --foreground-invert: #ffffff; + --foreground-light: #9CA3AB; + --foreground-secondary: #9CA3AB; + + --btn: #2F3337; + --btn-active: #000000; + + --border: #E4E3E8; + --seperator: #E4E3E8; + + --window-outline: #E4E3E8; + + --browser-window-dots: #E4E3E8; + --browser-window-search: #F7F8FA; + --browser-window-ribbon: #ffffff; + --browser-window-foreground: #303438; + --browser-window-background: #F7F8FA; + + --terminal-window-dots: #E4E3E8; + --terminal-window-ribbon: #ffffff; + --terminal-window-background: #F7F8FA; + --terminal-window-foreground: #313336; + + --slider-empty: #9CA3AB; + --slider-filled: #2F3337; + --slider-thumb: #303438; + + --monologue-background: #F1F3F5; + --monologue-outline: #B2BAC2; + } + .dark{ + --primary: #ECECEC; + --background: #1D1F21; + --secondary: #2F3337; + --tertiary: #81878C; + + --foreground: #dcdcdc; + --foreground-invert: #1D1F21; + --foreground-light: #E6E9EB; + --foreground-secondary: #9CA3AB; + + --btn: #ECECEC; + --btn-active: #ffffff; + + --border: #2B2F34; + --seperator: #495058; + + --window-outline: #4E555D; + + --browser-window-dots: #191C1E; + --browser-window-search: #1D2124; + --browser-window-ribbon: #292E32; + --browser-window-foreground: #DDDFE1; + --browser-window-background: #111315; + + --terminal-window-dots: #191C1E; + --terminal-window-ribbon: #292E32; + --terminal-window-background: #111315; + --terminal-window-foreground: #9CA3AB; + + --slider-empty: #2F3337; + --slider-filled: #81878C; + --slider-thumb: #ffffff; + + --monologue-background: #242729; + --monologue-outline: #464C51; + } +} + +@layer base { + * { + @apply border-border; + } + body { + @apply bg-background text-foreground; + } + + /* Styling for scrollbar */ + + /* WebKit (Chrome, Safari) */ + *::-webkit-scrollbar { + width: 5px; + height: 2px + } + *::-webkit-scrollbar-thumb { + background: #999797; + border-radius: 0.5rem; + } + *::-webkit-scrollbar-thumb:hover { + background: #6b7280; + } + + /* firefox */ + @-moz-document url-prefix() { + :global(*) { + scrollbar-width: thin; + scrollbar-color: #999797 #FFFFFF; + } + + :global(*::-moz-scrollbar) { + width: 5px; + } + + :global(*::-moz-scrollbar-thumb) { + background: #999797; + border-radius: 0.5rem; + } + + :global(*::-moz-scrollbar-thumb:hover) { + background: #6b7280; + } +} + + /* Internet Explorer/Edge */ + :global(*::-ms-scrollbar) { + width: 5px; + } + :global(*::-ms-scrollbar-thumb) { + background: #999797; + border-radius: 0.5rem; + } + :global(*::-ms-scrollbar-thumb:hover) { + background: #6b7280; + } +} \ No newline at end of file diff --git a/ui/src/lib/api.js b/ui/src/lib/api.js new file mode 100644 index 0000000..6472be2 --- /dev/null +++ b/ui/src/lib/api.js @@ -0,0 +1,165 @@ +import { + agentState, + internet, + modelList, + projectList, + messages, + projectFiles, + searchEngineList, +} from "./store"; +import { io } from "socket.io-client"; + + +const getApiBaseUrl = () => { + if (typeof window !== 'undefined') { + const host = window.location.hostname; + if (host === 'localhost' || host === '127.0.0.1') { + return 'http://127.0.0.1:1337'; + } else { + return `http://${host}:1337`; + } + } else { + return 'http://127.0.0.1:1337'; + } +}; + +export const API_BASE_URL = import.meta.env.VITE_API_BASE_URL || getApiBaseUrl(); +export const socket = io(API_BASE_URL, { autoConnect: false }); + +export async function checkServerStatus() { + try{await fetch(`${API_BASE_URL}/api/status`) ; return true;} + catch (error) { + return false; + } + +} + +export async function fetchInitialData() { + const response = await fetch(`${API_BASE_URL}/api/data`); + const data = await response.json(); + projectList.set(data.projects); + modelList.set(data.models); + searchEngineList.set(data.search_engines); + localStorage.setItem("defaultData", JSON.stringify(data)); +} + +export async function createProject(projectName) { + await fetch(`${API_BASE_URL}/api/create-project`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ project_name: projectName }), + }); + projectList.update((projects) => [...projects, projectName]); +} + +export async function deleteProject(projectName) { + await fetch(`${API_BASE_URL}/api/delete-project`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ project_name: projectName }), + }); +} + +export async function fetchMessages() { + const projectName = localStorage.getItem("selectedProject"); + const response = await fetch(`${API_BASE_URL}/api/messages`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ project_name: projectName }), + }); + const data = await response.json(); + messages.set(data.messages); +} + +export async function fetchAgentState() { + const projectName = localStorage.getItem("selectedProject"); + const response = await fetch(`${API_BASE_URL}/api/get-agent-state`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ project_name: projectName }), + }); + const data = await response.json(); + agentState.set(data.state); +} + +export async function executeAgent(prompt) { + const projectName = localStorage.getItem("selectedProject"); + const modelId = localStorage.getItem("selectedModel"); + + if (!modelId) { + alert("Please select the LLM model first."); + return; + } + + await fetch(`${API_BASE_URL}/api/execute-agent`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + prompt: prompt, + base_model: modelId, + project_name: projectName, + }), + }); + + await fetchMessages(); +} + +export async function getBrowserSnapshot(snapshotPath) { + const response = await fetch(`${API_BASE_URL}/api/browser-snapshot`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ snapshot_path: snapshotPath }), + }); + const data = await response.json(); + return data.snapshot; +} + +export async function fetchProjectFiles() { + const projectName = localStorage.getItem("selectedProject"); + const response = await fetch(`${API_BASE_URL}/api/get-project-files?project_name=${projectName}`) + const data = await response.json(); + projectFiles.set(data.files); + return data.files; +} + +export async function checkInternetStatus() { + if (navigator.onLine) { + internet.set(true); + } else { + internet.set(false); + } +} + +export async function fetchSettings() { + const response = await fetch(`${API_BASE_URL}/api/settings`); + const data = await response.json(); + return data.settings; +} + +export async function updateSettings(settings) { + await fetch(`${API_BASE_URL}/api/settings`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify(settings), + }); +} + +export async function fetchLogs() { + const response = await fetch(`${API_BASE_URL}/api/logs`); + const data = await response.json(); + return data.logs; +} diff --git a/ui/src/lib/components/BrowserWidget.svelte b/ui/src/lib/components/BrowserWidget.svelte new file mode 100644 index 0000000..838bdaa --- /dev/null +++ b/ui/src/lib/components/BrowserWidget.svelte @@ -0,0 +1,50 @@ + + +
+
+
+
+
+
+
+ +
+
+ {#if $agentState?.browser_session.screenshot} + + {:else} +
💡 TIP: You can include a Git URL in your prompt to clone a repo!
+ {/if} +
+
+ + \ No newline at end of file diff --git a/ui/src/lib/components/ControlPanel.svelte b/ui/src/lib/components/ControlPanel.svelte new file mode 100644 index 0000000..751f8ee --- /dev/null +++ b/ui/src/lib/components/ControlPanel.svelte @@ -0,0 +1,300 @@ + + +
+ +
+
+ Internet: + +
+ + + +
+ Token Usage: + {$tokenUsage} +
+ +
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ + diff --git a/ui/src/lib/components/EditorWidget.svelte b/ui/src/lib/components/EditorWidget.svelte new file mode 100644 index 0000000..03c09ed --- /dev/null +++ b/ui/src/lib/components/EditorWidget.svelte @@ -0,0 +1,99 @@ + + + +
+
+
+
+
+
+
+
+ {#if Object.keys(models).length == 0} +
Code viewer
+ {/if} +
+
+
+
+
+
\ No newline at end of file diff --git a/ui/src/lib/components/MessageContainer.svelte b/ui/src/lib/components/MessageContainer.svelte new file mode 100644 index 0000000..1cdb4f4 --- /dev/null +++ b/ui/src/lib/components/MessageContainer.svelte @@ -0,0 +1,104 @@ + + +
+ + diff --git a/ui/src/lib/components/MessageInput.svelte b/ui/src/lib/components/MessageInput.svelte new file mode 100644 index 0000000..635a9a8 --- /dev/null +++ b/ui/src/lib/components/MessageInput.svelte @@ -0,0 +1,138 @@ + + +
+
+
+ Agent status: + {#if $agentState !== null} + {#if $agentState.agent_is_active} + Active + {:else} + Inactive + {/if} + {:else} + Deactive + {/if} +
+ +
+ Model Inference: {inference_time} sec +
+ +
+ +
+ + +

+ 0 +

+
+
+ + diff --git a/ui/src/lib/components/MonacoEditor.js b/ui/src/lib/components/MonacoEditor.js new file mode 100644 index 0000000..b1530b2 --- /dev/null +++ b/ui/src/lib/components/MonacoEditor.js @@ -0,0 +1,142 @@ +import loader from "@monaco-editor/loader"; +import { Icons } from "../icons"; + +function getFileLanguage(fileType) { + const fileTypeToLanguage = { + js: "javascript", + jsx: "javascript", + ts: "typescript", + tsx: "typescript", + html: "html", + css: "css", + py: "python", + java: "java", + rb: "ruby", + php: "php", + cpp: "c++", + c: "c", + swift: "swift", + kt: "kotlin", + json: "json", + xml: "xml", + sql: "sql", + sh: "shell", + }; + const language = fileTypeToLanguage[fileType.toLowerCase()]; + return language; +} + +const getTheme = () => { + const theme = localStorage.getItem("mode-watcher-mode"); + return theme === "light" ? "vs-light" : "vs-dark"; +}; + +export async function initializeMonaco() { + const monacoEditor = await import("monaco-editor"); + loader.config({ monaco: monacoEditor.default }); + return loader.init(); +} + +export async function initializeEditorRef(monaco, container) { + const editor = monaco.editor.create(container, { + theme: getTheme(), + readOnly: false, + automaticLayout: true, + }); + return editor; +} + +export function createModel(monaco, file) { + const model = monaco.editor.createModel( + file.code, + getFileLanguage(file.file.split(".").pop()) + ); + return model; +} + +export function disposeEditor(editor) { + if(editor) editor.dispose(); +} + +export function enableTabSwitching(editor, models, tabContainer) { + tabContainer.innerHTML = ""; + Object.keys(models).forEach((filename, index) => { + const tabElement = document.createElement("div"); + tabElement.textContent = filename.split("/").pop(); + tabElement.className = "tab p-2 me-2 rounded-lg text-sm cursor-pointer hover:bg-secondary text-primary whitespace-nowrap"; + tabElement.setAttribute("data-filename", filename); + tabElement.addEventListener("click", () => + switchTab(editor, models, filename, tabElement) + ); + if (index === Object.keys(models).length - 1) { + tabElement.classList.add("bg-secondary"); + } + tabContainer.appendChild(tabElement); + }); +} + +function switchTab(editor, models, filename, tabElement) { + Object.entries(models).forEach(([file, model]) => { + if (file === filename) { + editor.setModel(model); + } + }); + + const allTabElements = tabElement?.parentElement?.children; + for (let i = 0; i < allTabElements?.length; i++) { + allTabElements[i].classList.remove("bg-secondary"); + } + + tabElement.classList.add("bg-secondary"); +} + +export function sidebar(editor, models, sidebarContainer) { + sidebarContainer.innerHTML = ""; + const createSidebarElement = (filename, isFolder) => { + const sidebarElement = document.createElement("div"); + sidebarElement.classList.add("mx-3", "p-1", "px-2", "cursor-pointer"); + if (isFolder) { + sidebarElement.innerHTML = `

${Icons.Folder}${" "}${filename}

`; + // TODO implement folder collapse/expand to the element sidebarElement + } else { + sidebarElement.innerHTML = `

${Icons.File}${" "}${filename}

`; + } + return sidebarElement; + }; + + const changeTabColor = (index) => { + const allTabElements = document.querySelectorAll("#tabContainer")[0].children; + for (let i = 0; i < allTabElements?.length; i++) { + allTabElements[i].classList.remove("bg-secondary"); + } + allTabElements[index].classList.add("bg-secondary"); + } + + const folders = {}; + + Object.entries(models).forEach(([filename, model], modelIndex) => { + const parts = filename.split('/'); + let currentFolder = sidebarContainer; + + parts.forEach((part, index) => { + if (index === parts.length - 1) { + const fileElement = createSidebarElement(part, false); + fileElement.addEventListener("click", () => { + editor.setModel(model); + changeTabColor(modelIndex); + }); + currentFolder.appendChild(fileElement); + } else { + const folderName = part; + if (!folders[folderName]) { + const folderElement = createSidebarElement(part, true); + currentFolder.appendChild(folderElement); + folders[folderName] = folderElement; + currentFolder = folderElement; + } else { + currentFolder = folders[folderName]; + } + } + }); + }); +} \ No newline at end of file diff --git a/ui/src/lib/components/Sidebar.svelte b/ui/src/lib/components/Sidebar.svelte new file mode 100644 index 0000000..37faab6 --- /dev/null +++ b/ui/src/lib/components/Sidebar.svelte @@ -0,0 +1,36 @@ + + +
+ {#each navItems as { icon, tooltip, route }, i} + + {/each} +
diff --git a/ui/src/lib/components/TerminalWidget.svelte b/ui/src/lib/components/TerminalWidget.svelte new file mode 100644 index 0000000..ec13f12 --- /dev/null +++ b/ui/src/lib/components/TerminalWidget.svelte @@ -0,0 +1,102 @@ + + +
+
+
+
+
+
+
+ Terminal +
+
+
+ + diff --git a/ui/src/lib/components/ui/Seperator.svelte b/ui/src/lib/components/ui/Seperator.svelte new file mode 100644 index 0000000..7aeaca0 --- /dev/null +++ b/ui/src/lib/components/ui/Seperator.svelte @@ -0,0 +1,9 @@ + + +
\ No newline at end of file diff --git a/ui/src/lib/components/ui/SidebarButton.svelte b/ui/src/lib/components/ui/SidebarButton.svelte new file mode 100644 index 0000000..286cabb --- /dev/null +++ b/ui/src/lib/components/ui/SidebarButton.svelte @@ -0,0 +1,43 @@ + + + + + + + diff --git a/ui/src/lib/components/ui/resizable/index.js b/ui/src/lib/components/ui/resizable/index.js new file mode 100644 index 0000000..5d44667 --- /dev/null +++ b/ui/src/lib/components/ui/resizable/index.js @@ -0,0 +1,12 @@ +import { Pane } from "paneforge"; +import Handle from "./resizable-handle.svelte"; +import PaneGroup from "./resizable-pane-group.svelte"; +export { + PaneGroup, + Pane, + Handle, + // + PaneGroup as ResizablePaneGroup, + Pane as ResizablePane, + Handle as ResizableHandle, +}; diff --git a/ui/src/lib/components/ui/resizable/resizable-handle.svelte b/ui/src/lib/components/ui/resizable/resizable-handle.svelte new file mode 100644 index 0000000..df9d139 --- /dev/null +++ b/ui/src/lib/components/ui/resizable/resizable-handle.svelte @@ -0,0 +1,22 @@ + + +div]:rotate-90", + className + )} +> + {#if withHandle} +
+ +
+ {/if} +
diff --git a/ui/src/lib/components/ui/resizable/resizable-pane-group.svelte b/ui/src/lib/components/ui/resizable/resizable-pane-group.svelte new file mode 100644 index 0000000..cf7f938 --- /dev/null +++ b/ui/src/lib/components/ui/resizable/resizable-pane-group.svelte @@ -0,0 +1,19 @@ + + + + + diff --git a/ui/src/lib/components/ui/select/index.js b/ui/src/lib/components/ui/select/index.js new file mode 100644 index 0000000..201b52b --- /dev/null +++ b/ui/src/lib/components/ui/select/index.js @@ -0,0 +1,31 @@ +import { Select as SelectPrimitive } from "bits-ui"; +import Label from "./select-label.svelte"; +import Item from "./select-item.svelte"; +import Content from "./select-content.svelte"; +import Trigger from "./select-trigger.svelte"; +import Separator from "./select-separator.svelte"; +const Root = SelectPrimitive.Root; +const Group = SelectPrimitive.Group; +const Input = SelectPrimitive.Input; +const Value = SelectPrimitive.Value; +export { + Root, + Group, + Input, + Label, + Item, + Value, + Content, + Trigger, + Separator, + // + Root as Select, + Group as SelectGroup, + Input as SelectInput, + Label as SelectLabel, + Item as SelectItem, + Value as SelectValue, + Content as SelectContent, + Trigger as SelectTrigger, + Separator as SelectSeparator, +}; diff --git a/ui/src/lib/components/ui/select/select-content.svelte b/ui/src/lib/components/ui/select/select-content.svelte new file mode 100644 index 0000000..e726eef --- /dev/null +++ b/ui/src/lib/components/ui/select/select-content.svelte @@ -0,0 +1,34 @@ + + + +
+ +
+
diff --git a/ui/src/lib/components/ui/select/select-item.svelte b/ui/src/lib/components/ui/select/select-item.svelte new file mode 100644 index 0000000..e378c67 --- /dev/null +++ b/ui/src/lib/components/ui/select/select-item.svelte @@ -0,0 +1,36 @@ + + + + + + {@html Icons.Check} + + + + {label || value} + + diff --git a/ui/src/lib/components/ui/select/select-label.svelte b/ui/src/lib/components/ui/select/select-label.svelte new file mode 100644 index 0000000..bcdc5c8 --- /dev/null +++ b/ui/src/lib/components/ui/select/select-label.svelte @@ -0,0 +1,13 @@ + + + + + diff --git a/ui/src/lib/components/ui/select/select-separator.svelte b/ui/src/lib/components/ui/select/select-separator.svelte new file mode 100644 index 0000000..198f9e1 --- /dev/null +++ b/ui/src/lib/components/ui/select/select-separator.svelte @@ -0,0 +1,8 @@ + + + diff --git a/ui/src/lib/components/ui/select/select-trigger.svelte b/ui/src/lib/components/ui/select/select-trigger.svelte new file mode 100644 index 0000000..b6cbd0e --- /dev/null +++ b/ui/src/lib/components/ui/select/select-trigger.svelte @@ -0,0 +1,23 @@ + + +span]:line-clamp-1", + className + )} + {...$$restProps} + let:builder + on:click + on:keydown +> + +
+ {@html Icons.ChevronDown} +
+
diff --git a/ui/src/lib/components/ui/sonner/index.js b/ui/src/lib/components/ui/sonner/index.js new file mode 100644 index 0000000..1ad9f4a --- /dev/null +++ b/ui/src/lib/components/ui/sonner/index.js @@ -0,0 +1 @@ +export { default as Toaster } from "./sonner.svelte"; diff --git a/ui/src/lib/components/ui/sonner/sonner.svelte b/ui/src/lib/components/ui/sonner/sonner.svelte new file mode 100644 index 0000000..e117e66 --- /dev/null +++ b/ui/src/lib/components/ui/sonner/sonner.svelte @@ -0,0 +1,22 @@ + + + diff --git a/ui/src/lib/components/ui/tabs/index.js b/ui/src/lib/components/ui/tabs/index.js new file mode 100644 index 0000000..f1ab372 --- /dev/null +++ b/ui/src/lib/components/ui/tabs/index.js @@ -0,0 +1,18 @@ +import { Tabs as TabsPrimitive } from "bits-ui"; +import Content from "./tabs-content.svelte"; +import List from "./tabs-list.svelte"; +import Trigger from "./tabs-trigger.svelte"; + +const Root = TabsPrimitive.Root; + +export { + Root, + Content, + List, + Trigger, + // + Root as Tabs, + Content as TabsContent, + List as TabsList, + Trigger as TabsTrigger, +}; diff --git a/ui/src/lib/components/ui/tabs/tabs-content.svelte b/ui/src/lib/components/ui/tabs/tabs-content.svelte new file mode 100644 index 0000000..2d3c6d8 --- /dev/null +++ b/ui/src/lib/components/ui/tabs/tabs-content.svelte @@ -0,0 +1,18 @@ + + + + + diff --git a/ui/src/lib/components/ui/tabs/tabs-list.svelte b/ui/src/lib/components/ui/tabs/tabs-list.svelte new file mode 100644 index 0000000..fc6bd73 --- /dev/null +++ b/ui/src/lib/components/ui/tabs/tabs-list.svelte @@ -0,0 +1,16 @@ + + + + + diff --git a/ui/src/lib/components/ui/tabs/tabs-trigger.svelte b/ui/src/lib/components/ui/tabs/tabs-trigger.svelte new file mode 100644 index 0000000..c4f24c6 --- /dev/null +++ b/ui/src/lib/components/ui/tabs/tabs-trigger.svelte @@ -0,0 +1,19 @@ + + + + + diff --git a/ui/src/lib/icons.js b/ui/src/lib/icons.js new file mode 100644 index 0000000..fefc01b --- /dev/null +++ b/ui/src/lib/icons.js @@ -0,0 +1,11 @@ +export const Icons = { + HOME: ' ', + SETTINGS: ' ', + LOGS: ' ', + X: '', + ChevronDown : '', + Check : '', + CornerDownLeft : '', + Folder: '', + File: '', +}; \ No newline at end of file diff --git a/ui/src/lib/sockets.js b/ui/src/lib/sockets.js new file mode 100644 index 0000000..9fc401f --- /dev/null +++ b/ui/src/lib/sockets.js @@ -0,0 +1,92 @@ +import { socket } from "./api"; +import { messages, agentState, isSending, tokenUsage } from "./store"; +import { toast } from "svelte-sonner"; +import { get } from "svelte/store"; + +let prevMonologue = null; + +export function initializeSockets() { + + socket.connect(); + + let state = get(agentState); + prevMonologue = state?.internal_monologue; + + socket.emit("socket_connect", { data: "frontend connected!" }); + socket.on("socket_response", function (msg) { + console.log(msg); + }); + + socket.on("server-message", function (data) { + console.log(data) + messages.update((msgs) => [...msgs, data["messages"]]); + }); + + socket.on("agent-state", function (state) { + const lastState = state[state.length - 1]; + agentState.set(lastState); + if (lastState.completed) { + isSending.set(false); + } + }); + + socket.on("tokens", function (tokens) { + tokenUsage.set(tokens["token_usage"]); + }); + + socket.on("inference", function (error) { + if (error["type"] == "error") { + toast.error(error["message"]); + isSending.set(false); + } else if (error["type"] == "warning") { + toast.warning(error["message"]); + } + }); + + socket.on("info", function (info) { + if (info["type"] == "error") { + toast.error(info["message"]); + isSending.set(false); + } else if (info["type"] == "warning") { + toast.warning(info["message"]); + } else if (info["type"] == "info") { + toast.info(info["message"]); + } + }); + + + agentState.subscribe((state) => { + function handleMonologueChange(newValue) { + if (newValue) { + toast(newValue); + } + } + if ( + state && + state.internal_monologue && + state.internal_monologue !== prevMonologue + ) { + handleMonologueChange(state.internal_monologue); + prevMonologue = state.internal_monologue; + } + }); +} + +export function destroySockets() { + if (socket.connected) { + socket.off("socket_response"); + socket.off("server-message"); + socket.off("agent-state"); + socket.off("tokens"); + socket.off("inference"); + socket.off("info"); + } +} + +export function emitMessage(channel, message) { + socket.emit(channel, message); +} + +export function socketListener(channel, callback) { + socket.on(channel, callback); +} diff --git a/ui/src/lib/store.js b/ui/src/lib/store.js new file mode 100644 index 0000000..1df5611 --- /dev/null +++ b/ui/src/lib/store.js @@ -0,0 +1,48 @@ +import { writable } from 'svelte/store'; + +// Helper function to get item from localStorage +function getItemFromLocalStorage(key, defaultValue) { + const storedValue = localStorage.getItem(key); + if (storedValue) { + return storedValue; + } + localStorage.setItem(key, defaultValue); + return defaultValue; +} + +// Helper function to handle subscription and local storage setting +function subscribeAndStore(store, key, defaultValue) { + store.set(getItemFromLocalStorage(key, defaultValue)); + store.subscribe(value => { + localStorage.setItem(key, value); + }); +} + +// Server related stores +export const serverStatus = writable(false); +export const internet = writable(true); + +// Message related stores +export const messages = writable([]); +export const projectFiles = writable(null); + +// Selection related stores +export const selectedProject = writable(''); +export const selectedModel = writable(''); +export const selectedSearchEngine = writable(''); + +subscribeAndStore(selectedProject, 'selectedProject', 'select project'); +subscribeAndStore(selectedModel, 'selectedModel', 'select model'); +subscribeAndStore(selectedSearchEngine, 'selectedSearchEngine', 'select search engine'); + +// List related stores +export const projectList = writable([]); +export const modelList = writable({}); +export const searchEngineList = writable([]); + +// Agent related stores +export const agentState = writable(null); +export const isSending = writable(false); + +// Token usage store +export const tokenUsage = writable(0); diff --git a/ui/src/lib/token.js b/ui/src/lib/token.js new file mode 100644 index 0000000..426f74c --- /dev/null +++ b/ui/src/lib/token.js @@ -0,0 +1,13 @@ +import { Tiktoken } from "tiktoken/lite"; +import cl100k_base from "tiktoken/encoders/cl100k_base.json"; + +const encoding = new Tiktoken( + cl100k_base.bpe_ranks, + cl100k_base.special_tokens, + cl100k_base.pat_str +); + +export function calculateTokens(text) { + const tokens = encoding.encode(text); + return tokens.length; +} diff --git a/ui/src/lib/utils.js b/ui/src/lib/utils.js new file mode 100644 index 0000000..29aa840 --- /dev/null +++ b/ui/src/lib/utils.js @@ -0,0 +1,48 @@ +import { clsx } from "clsx"; +import { twMerge } from "tailwind-merge"; +import { cubicOut } from "svelte/easing"; + +export function cn(...inputs) { + return twMerge(clsx(inputs)); +} + +export const flyAndScale = ( + node, + params = { y: -8, x: 0, start: 0.95, duration: 150 } +) => { + const style = getComputedStyle(node); + const transform = style.transform === "none" ? "" : style.transform; + + const scaleConversion = (valueA, scaleA, scaleB) => { + const [minA, maxA] = scaleA; + const [minB, maxB] = scaleB; + + const percentage = (valueA - minA) / (maxA - minA); + const valueB = percentage * (maxB - minB) + minB; + + return valueB; + }; + + const styleToString = (style) => { + return Object.keys(style).reduce((str, key) => { + if (style[key] === undefined) return str; + return str + `${key}:${style[key]};`; + }, ""); + }; + + return { + duration: params.duration ?? 200, + delay: 0, + css: (t) => { + const y = scaleConversion(t, [0, 1], [params.y ?? 5, 0]); + const x = scaleConversion(t, [0, 1], [params.x ?? 0, 0]); + const scale = scaleConversion(t, [0, 1], [params.start ?? 0.95, 1]); + + return styleToString({ + transform: `${transform} translate3d(${x}px, ${y}px, 0) scale(${scale})`, + opacity: t + }); + }, + easing: cubicOut + }; +}; \ No newline at end of file diff --git a/ui/src/routes/+layout.js b/ui/src/routes/+layout.js new file mode 100644 index 0000000..62ad4e4 --- /dev/null +++ b/ui/src/routes/+layout.js @@ -0,0 +1 @@ +export const ssr = false diff --git a/ui/src/routes/+layout.svelte b/ui/src/routes/+layout.svelte new file mode 100644 index 0000000..bf7e24a --- /dev/null +++ b/ui/src/routes/+layout.svelte @@ -0,0 +1,15 @@ + + +
+
+ + + + +
+
diff --git a/ui/src/routes/+page.svelte b/ui/src/routes/+page.svelte new file mode 100644 index 0000000..0793500 --- /dev/null +++ b/ui/src/routes/+page.svelte @@ -0,0 +1,57 @@ + + +
+ + +
+
+
+ + +
+
+ + +
+
+
+ +
+
+
\ No newline at end of file diff --git a/ui/src/routes/logs/+page.svelte b/ui/src/routes/logs/+page.svelte new file mode 100644 index 0000000..82e9dea --- /dev/null +++ b/ui/src/routes/logs/+page.svelte @@ -0,0 +1,64 @@ + + +
+

Logs

+
+
+

Request logs

+
+ {#each logs as log} +

+ {@html log} +

+ {/each} +
+
+
+

Socket logs

+
+ {#each socket_logs as log} +

+ {@html log} +

+ {/each} +
+
+
+
\ No newline at end of file diff --git a/ui/src/routes/settings/+page.svelte b/ui/src/routes/settings/+page.svelte new file mode 100644 index 0000000..3db5ecd --- /dev/null +++ b/ui/src/routes/settings/+page.svelte @@ -0,0 +1,327 @@ + + +
+

Settings

+
+ + + API Keys + API Endpoints + Config + Appearance + + + + + + {#if settings["API_KEYS"]} +
+
+
+ {#each Object.entries(settings["API_KEYS"]) as [key, value]} +
+

{key.toLowerCase()}

+ settings["API_KEYS"][key] = e.target.value} + name={key} + class="p-2 border-2 w-1/2 rounded-lg {editMode + ? '' + : ' text-gray-500'}" + readonly={!editMode} + /> +
+ {/each} +
+
+
+ {/if} +
+ {#if !editMode} + + {:else} + + {/if} +
+
+ + {#if settings["API_ENDPOINTS"]} +
+
+ {#each Object.entries(settings["API_ENDPOINTS"]) as [key, value]} +
+

{key.toLowerCase()}

+ settings["API_ENDPOINTS"][key] = e.target.value} + name={key} + class="p-2 border-2 w-1/2 rounded-lg {editMode + ? '' + : 'text-gray-500'}" + readonly={!editMode} + /> +
+ {/each} +
+
+ {/if} +
+ {#if !editMode} + + {:else} + + {/if} +
+
+ + {#if settings["TIMEOUT"]} +
+ +
+
+ Timouts +
+
+ {#each Object.entries(settings["TIMEOUT"]) as [key, value]} +
+

{key.toLowerCase()}

+ +
+ {/each} +
+
+ +
+
+ Logging +
+
+ {#each Object.entries(settings["LOGGING"]) as [key, value]} +
+

{key.toLowerCase()}

+ {settings["LOGGING"][key] = v.value}} + disabled={!editMode}> + + + + + + true + false + + + + +
+ {/each} +
+
+ +
+ {/if} +
+ {#if !editMode} + + {:else} + + {/if} +
+
+ +
+
+ Select a theme +
+
+ {setMode(v.value)}}> + + + + + + Light + Dark + System + + + + +
+
+
+
+ Enable tab resize +
+
+ {setResize(v.value)}}> + + + + + + Enable + Disable + + + + +
+
+
+
+ Reset layout +
+
+ +
+
+
+
+
+
diff --git a/ui/static/assets/bootup.mp3 b/ui/static/assets/bootup.mp3 new file mode 100644 index 0000000..a18dec2 Binary files /dev/null and b/ui/static/assets/bootup.mp3 differ diff --git a/ui/static/assets/devika-avatar.png b/ui/static/assets/devika-avatar.png new file mode 100644 index 0000000..963c6c7 Binary files /dev/null and b/ui/static/assets/devika-avatar.png differ diff --git a/ui/static/assets/devika-avatar.svg b/ui/static/assets/devika-avatar.svg new file mode 100644 index 0000000..090a7db --- /dev/null +++ b/ui/static/assets/devika-avatar.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/ui/static/assets/loading-lottie.json b/ui/static/assets/loading-lottie.json new file mode 100644 index 0000000..912c606 --- /dev/null +++ b/ui/static/assets/loading-lottie.json @@ -0,0 +1 @@ +{"v":"5.3.1","fr":120,"ip":0,"op":241,"w":600,"h":600,"nm":"Comp 2","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 20","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"f","pt":{"a":1,"k":[{"t":0,"s":[{"i":[[-0.129,0.009],[18.292,-4.05],[17.613,-5.399],[18.289,-4.578],[19.41,0.349],[18.628,4.391],[16.842,2.138],[4.259,-0.075],[-2.156,-1.969],[-4.594,-0.508],[-9.344,-1.5],[-33.128,-0.202],[-32.846,9.642],[-37.566,3.787],[-33.849,-10.07],[-38.994,5.822],[4.567,-0.171],[78.785,-5.786]],"o":[[-20.221,1.402],[-18.292,4.05],[-16.435,5.038],[-18.289,4.578],[-16.648,-0.3],[-18.628,-4.391],[-2.123,-0.27],[-4.259,0.075],[2.281,0.469],[4.594,0.508],[34.375,6.245],[37.182,0.226],[32.236,-9.463],[44.182,-4.454],[27.055,8.048],[16.224,-2.422],[-77.776,2.908],[-0.604,0.044]],"v":[[68.5,-24.5],[11.044,-15.998],[-42.5,-1.5],[-94.769,14.04],[-151.5,21.5],[-205.354,12.878],[-259.5,1.5],[-271.209,0.821],[-276.5,3.5],[-266.797,4.727],[-246.5,7.5],[-150.5,25.5],[-45.5,3.5],[57.5,-20.5],[169.5,-7.5],[273.5,5.5],[265.5,1.5],[69.5,-25.5]],"c":true}],"h":1},{"t":1,"s":[{"i":[[-0.139,0.009],[9.747,-1.308],[9.401,-2.084],[25.51,-7.692],[28.791,-1.43],[17.367,4.001],[16.209,2.854],[7.386,1.05],[0.722,-1.506],[-7.331,-1.347],[-1.342,-0.223],[-17.534,-4.058],[-19.465,1.288],[-78.14,7.877],[-34.29,-10.317],[-39.142,1.636],[18.584,0],[72.07,-5.293]],"o":[[-10.61,0.683],[-9.747,1.308],[-26.169,5.803],[-25.51,7.692],[-17.322,0.86],[-17.367,-4.001],[-1.733,-0.305],[-7.386,-1.05],[-0.667,1.391],[7.331,1.346],[18.4,3.055],[17.534,4.058],[71.315,-4.718],[40.445,-4.077],[27.857,8.381],[19.953,-0.834],[-71.022,0],[-0.597,0.044]],"v":[[73.5,-24.5],[43.093,-21.551],[14.5,-16.5],[-62.034,5.78],[-142.5,21.5],[-194.835,15.286],[-245.5,3.5],[-262.258,0.642],[-277.5,0.5],[-264.007,4.876],[-247.5,7.5],[-194.299,19.756],[-139.5,25.5],[61.5,-20.5],[171.5,-8.5],[265.5,5.5],[259.5,1.5],[74.5,-25.5]],"c":true}],"h":1},{"t":2,"s":[{"i":[[36.828,-2.371],[9.823,-1.471],[9.842,-2.352],[8.791,-2.57],[8.787,-2.56],[19.28,-4.705],[19.477,0.599],[31.321,5.429],[1.673,-3.579],[-2.809,-0.466],[-34.076,-0.569],[-31.92,9.496],[-36.74,4.462],[-34.996,-10.569],[-19.625,-3.116],[-14.538,3.826],[9.844,0.34],[19.942,5.524]],"o":[[-11.864,0.764],[-9.823,1.471],[-9.047,2.162],[-8.791,2.57],[-16.404,4.779],[-19.28,4.705],[-28.88,-0.888],[-2.709,-0.47],[-1.094,2.341],[34.418,5.714],[36.575,0.611],[31.385,-9.337],[39.624,-4.812],[13.668,4.128],[11.766,1.868],[15.462,-4.069],[-29.258,-1.012],[-35.156,-9.738]],"v":[[77.5,-24.5],[45.483,-21.191],[16.5,-15.5],[-10.195,-8.299],[-36.5,-0.5],[-90.695,15.033],[-149.5,22.5],[-244.5,3.5],[-277.5,0.5],[-245.5,7.5],[-147.5,26.5],[-42.5,5.5],[58.5,-19.5],[170.5,-9.5],[221.5,2.5],[274.5,5.5],[250.5,1.5],[178.5,-11.5]],"c":true}],"h":1},{"t":3,"s":[{"i":[[35.997,-2.496],[9.877,-1.464],[9.752,-2.33],[8.983,-2.535],[8.925,-2.675],[42.1,1.306],[24.444,5.629],[18.716,3.322],[1.854,-4.109],[-3.696,-0.661],[-33.695,-0.816],[-32.421,9.337],[-37.156,5.13],[-35.488,-10.617],[-18.453,-2.881],[-13.712,3.555],[10.009,0.466],[19.55,5.447]],"o":[[-11.739,0.814],[-9.877,1.464],[-9.142,2.184],[-8.984,2.535],[-34.71,10.404],[-20.587,-0.639],[-15.076,-3.471],[-2.118,-0.376],[-1.205,2.67],[33.269,5.951],[37.544,0.909],[31.575,-9.093],[37.904,-5.234],[12.806,3.831],[13.262,2.07],[16.354,-4.24],[-27.76,-1.291],[-35.095,-9.779]],"v":[[81.5,-24.5],[49.509,-21.137],[20.5,-15.5],[-6.663,-8.368],[-33.5,-0.5],[-148.5,22.5],[-211.5,9.5],[-243.5,3.5],[-277.5,0.5],[-244.5,6.5],[-147.5,26.5],[-41.5,6.5],[59.5,-18.5],[171.5,-10.5],[221.5,2.5],[273.5,4.5],[251.5,1.5],[180.5,-11.5]],"c":true}],"h":1},{"t":4,"s":[{"i":[[-0.129,0.009],[19.037,-4.482],[19.145,-5.567],[19.868,-4.59],[21.234,1.39],[16.238,4.157],[14.075,2.459],[7.933,1.105],[1.696,-1.696],[-3.885,-0.557],[-1.102,-0.13],[-38.429,-2.293],[-24.127,5.839],[-81.75,-17.117],[-34.843,-2.576],[9.604,4.221],[10.088,0.627],[60.846,-4.468]],"o":[[-21.707,1.505],[-19.037,4.482],[-17.294,5.029],[-19.868,4.59],[-13.975,-0.915],[-16.237,-4.157],[-1.573,-0.275],[-7.933,-1.105],[-1.643,1.643],[3.885,0.557],[41.469,4.862],[27.568,1.645],[66.154,-16.01],[27.416,5.74],[6.8,0.503],[-10.488,-4.609],[-53.789,-3.342],[-0.604,0.044]],"v":[[85.5,-24.5],[25.079,-15.047],[-31.5,0.5],[-87.545,16.314],[-149.5,22.5],[-195.925,13.658],[-242.5,2.5],[-259.908,-0.478],[-277.5,-0.5],[-272.059,2.635],[-262.5,3.5],[-149.5,26.5],[-73.5,15.5],[149.5,-17.5],[241.5,4.5],[276.5,1.5],[244.5,0.5],[86.5,-25.5]],"c":true}],"h":1},{"t":5,"s":[{"i":[[15.241,-0.981],[10.566,-1.476],[10.203,-2.355],[9.331,-2.783],[9.224,-2.687],[20.653,-4.755],[21.669,1.89],[34.121,5.403],[1.643,-3.475],[-3.914,-0.614],[-33.882,-2.915],[-24.185,5.679],[-81.98,-15.626],[-47.058,4.632],[1.579,3.169],[3.405,0.052],[10.232,2.152],[16.482,3.204]],"o":[[-11.531,0.742],[-10.566,1.476],[-9.453,2.181],[-9.331,2.783],[-16.721,4.871],[-20.653,4.755],[-29.457,-2.569],[-1.95,-0.309],[-1.822,3.855],[34.089,5.352],[26.248,2.258],[67.415,-15.831],[33.814,6.445],[-1.889,0.186],[-0.106,-0.212],[-14.374,-0.219],[-17.656,-3.714],[-18.524,-3.601]],"v":[[90.5,-24.5],[57.503,-21.209],[26.5,-15.5],[-1.672,-7.879],[-29.5,0.5],[-86.289,16.571],[-150.5,22.5],[-244.5,2.5],[-277.5,-0.5],[-245.5,5.5],[-150.5,26.5],[-73.5,16.5],[149.5,-18.5],[271.5,4.5],[278.5,1.5],[260.5,0.5],[209.5,-5.5],[149.5,-22.5]],"c":true}],"h":1},{"t":6,"s":[{"i":[[13.537,-0.872],[10.388,-1.674],[10.473,-2.535],[9.483,-2.716],[9.448,-2.811],[20.904,-4.464],[22.501,2.178],[32.755,5.099],[1.271,-2.697],[-3.446,-0.53],[-34.385,-2.958],[-24.296,5.509],[-81.11,-17.062],[-44.992,4.428],[1.514,3.073],[0.448,0.017],[16.624,1.832],[29.901,6.072]],"o":[[-11.974,0.771],[-10.388,1.674],[-9.617,2.328],[-9.484,2.715],[-17.883,5.32],[-20.904,4.464],[-28.621,-2.77],[-3.875,-0.603],[-1.382,2.932],[35.349,5.439],[26.691,2.296],[67.144,-15.224],[32.94,6.929],[-0.889,0.088],[-0.414,-0.84],[-10.823,-0.405],[-34.73,-3.827],[-16.878,-3.427]],"v":[[94.5,-24.5],[61.374,-20.823],[30.5,-14.5],[1.873,-6.862],[-26.5,1.5],[-85.037,17.623],[-150.5,22.5],[-243.5,1.5],[-277.5,-0.5],[-245.5,5.5],[-149.5,26.5],[-70.5,17.5],[151.5,-18.5],[271.5,4.5],[278.5,1.5],[260.5,0.5],[242.5,-0.5],[150.5,-22.5]],"c":true}],"h":1},{"t":7,"s":[{"i":[[10.896,-0.755],[10.53,-1.655],[10.315,-2.507],[9.477,-2.718],[9.475,-2.792],[47.306,4.578],[21.955,5.055],[14.335,2.283],[1.712,-3.475],[12.448,1.946],[-5.327,-0.834],[-32.662,-2.81],[-44.141,12.859],[-55.254,-10.532],[-42.956,-1.549],[16.143,0.736],[8.952,0.91],[28.033,5.343]],"o":[[-12.567,0.871],[-10.529,1.655],[-9.618,2.338],[-9.477,2.718],[-36.138,10.649],[-17.745,-1.717],[-4.34,-0.999],[-5.436,-0.866],[-1.946,3.951],[8.809,1.377],[35.553,5.566],[53.398,4.594],[46.598,-13.575],[32.968,6.284],[12.515,0.451],[-13.174,-0.6],[-35.832,-3.641],[-15.898,-3.03]],"v":[[98.5,-24.5],[64.31,-20.727],[33.5,-14.5],[4.892,-6.841],[-23.5,1.5],[-149.5,22.5],[-210.5,7.5],[-242.5,1.5],[-277.5,-0.5],[-271.5,2.5],[-244.5,5.5],[-148.5,26.5],[-1.5,-0.5],[150.5,-19.5],[261.5,4.5],[270.5,0.5],[243.5,-1.5],[150.5,-23.5]],"c":true}],"h":1},{"t":8,"s":[{"i":[[8.397,-0.582],[10.802,-1.644],[10.24,-2.553],[9.422,-2.953],[9.66,-2.782],[22.217,-4.377],[22.677,2.537],[22.38,5.313],[15.365,2.283],[1.981,-4.063],[-0.73,-0.1],[-31.747,-3.072],[-43.675,12.895],[-54.954,-9.907],[-45.333,-1.086],[12.799,1.072],[11.532,1.4],[28.332,3.949]],"o":[[-12.553,0.87],[-10.802,1.644],[-9.654,2.406],[-9.421,2.953],[-17.455,5.027],[-22.217,4.377],[-18.452,-2.064],[-3.629,-0.861],[-5.021,-0.746],[-1.299,2.663],[34.538,4.709],[54.736,5.297],[47.456,-14.011],[35.098,6.327],[4.567,0.109],[-11.733,-0.983],[-34.759,-4.221],[-14.51,-2.022]],"v":[[102.5,-24.5],[67.766,-20.762],[36.5,-14.5],[8.005,-6.282],[-20.5,2.5],[-81.083,18.173],[-149.5,22.5],[-210.5,7.5],[-242.5,1.5],[-277.5,-0.5],[-243.5,4.5],[-148.5,26.5],[-0.5,-0.5],[151.5,-19.5],[261.5,3.5],[275.5,0.5],[242.5,-1.5],[147.5,-24.5]],"c":true}],"h":1},{"t":9,"s":[{"i":[[7.754,-0.499],[11.266,-1.64],[10.624,-2.709],[9.707,-2.946],[9.293,-2.697],[48.927,5.473],[39.538,1.97],[-11.847,-1.992],[-8.754,-1.182],[-32.798,-3.36],[-46.218,13.259],[-54.952,-8.236],[-19.743,-4.546],[-13.936,-1.888],[-2.047,4.198],[3.585,0.193],[9.007,2.079],[15.318,2.446]],"o":[[-11.313,0.729],[-11.266,1.64],[-9.88,2.52],[-9.707,2.946],[-38.089,11.054],[-32.952,-3.686],[-5.645,-0.281],[9.472,1.593],[36.969,4.993],[54.889,5.622],[44.724,-12.831],[17.755,2.661],[6.172,1.421],[2.584,0.35],[1.79,-3.67],[-16.751,-0.903],[-19.487,-4.497],[-13.209,-2.109]],"v":[[107.5,-24.5],[73.484,-20.986],[40.5,-14.5],[11.059,-6.133],[-17.5,2.5],[-148.5,22.5],[-259.5,-1.5],[-274.5,1.5],[-242.5,4.5],[-147.5,26.5],[0.5,1.5],[149.5,-20.5],[210.5,-4.5],[242.5,1.5],[278.5,2.5],[262.5,-0.5],[211.5,-7.5],[150.5,-24.5]],"c":true}],"h":1},{"t":10,"s":[{"i":[[6.311,-0.406],[11.041,-1.635],[10.617,-2.674],[9.837,-2.91],[9.697,-2.852],[21.801,-4.235],[24.712,2.552],[24.255,5.585],[17.329,2.536],[-22.97,-3.748],[-13.465,-3.217],[-20.444,-1.905],[-45.883,13.47],[-52.718,-8.395],[-35.518,-4.388],[-1.437,2.919],[2.761,0.192],[33.656,5.299]],"o":[[-12.219,0.787],[-11.041,1.635],[-9.954,2.507],[-9.837,2.91],[-19.085,5.613],[-21.801,4.235],[-19.558,-2.019],[-9.594,-2.209],[-7.33,-1.073],[20.458,3.338],[21.303,5.09],[54.899,5.115],[40.72,-11.954],[29.498,4.697],[4.193,0.518],[2.054,-4.171],[-43.499,-3.033],[-11.565,-1.821]],"v":[[111.5,-24.5],[76.798,-20.915],[44.5,-14.5],[14.807,-6.259],[-14.5,2.5],[-75.78,18.623],[-145.5,22.5],[-208.5,6.5],[-241.5,0.5],[-270.5,1.5],[-209.5,10.5],[-144.5,26.5],[2.5,1.5],[151.5,-20.5],[243.5,1.5],[278.5,2.5],[262.5,-0.5],[150.5,-24.5]],"c":true}],"h":1},{"t":11,"s":[{"i":[[3.258,-0.226],[11.193,-1.645],[10.293,-2.593],[19.214,-5.641],[48.429,8.506],[36.277,4.528],[1.379,-2.748],[1.239,0.163],[0.005,0],[-35.071,-5.522],[-45.143,13.429],[-52.009,-4.887],[-19.701,-4.707],[-16.695,-2.356],[-1.592,3.299],[-11.588,-1.789],[8.522,1.147],[29.188,2.545]],"o":[[-11.935,0.828],[-11.193,1.645],[-19.745,4.973],[-39.412,11.57],[-29.927,-5.256],[-5.781,-0.722],[-1.603,3.193],[0.924,0.122],[46.695,2.778],[54.674,8.608],[43.632,-12.98],[20.015,1.881],[8.465,2.022],[4.452,0.628],[1.85,-3.834],[-9.521,-1.47],[-36.36,-4.895],[-9.997,-0.872]],"v":[[115.5,-24.5],[80.768,-20.824],[48.5,-14.5],[-9.5,2.5],[-150.5,21.5],[-242.5,-0.5],[-277.5,-1.5],[-271.5,1.5],[-262.5,2.5],[-149.5,25.5],[2.5,2.5],[145.5,-21.5],[208.5,-5.5],[242.5,0.5],[278.5,2.5],[271.5,-0.5],[244.5,-3.5],[145.5,-25.5]],"c":true}],"h":1},{"t":12,"s":[{"i":[[2.476,-0.172],[21.286,-5.33],[20.905,-6.021],[23.968,-3.964],[24.811,4.13],[20.162,5.848],[23.055,-2.269],[-3.771,-0.171],[-31.575,-5.429],[-24.01,4.306],[-22.118,6.456],[-53.63,-5.537],[-16.57,-3.782],[-13.363,-1.892],[-1.078,2.242],[-6.54,-1.378],[7.328,1.089],[28.602,2.665]],"o":[[-23.951,1.66],[-21.286,5.33],[-18.316,5.274],[-23.969,3.964],[-17.298,-2.88],[-20.162,-5.848],[-20.08,1.977],[42.175,1.916],[27.246,4.685],[24.099,-4.322],[41.659,-12.16],[19.098,1.972],[9.409,2.148],[5.752,0.814],[1.754,-3.647],[-7.913,-1.667],[-35.616,-5.291],[-9.211,-0.858]],"v":[[119.5,-24.5],[52.216,-13.27],[-10.5,4.5],[-75.129,20.054],[-149.5,21.5],[-205.683,5.638],[-270.5,-2.5],[-259.5,1.5],[-149.5,25.5],[-68.5,22.5],[0.5,4.5],[148.5,-21.5],[210.5,-5.5],[243.5,0.5],[278.5,2.5],[272.5,-0.5],[245.5,-3.5],[147.5,-25.5]],"c":true}],"h":1},{"t":13,"s":[{"i":[[47.928,-3.086],[11.452,-1.787],[11.415,-2.965],[10.507,-3.067],[10.483,-3.007],[23.592,-3.755],[26.246,4.867],[14.804,4.379],[18.242,1.973],[8.127,0.255],[0.648,-1.329],[-3.735,-0.164],[-34.319,-5.87],[-65.74,14.38],[-29.596,-3.31],[-33.146,-5.115],[-3.093,3.093],[2.35,0.235]],"o":[[-13.776,0.887],[-11.452,1.787],[-10.489,2.725],[-10.507,3.067],[-20.387,5.848],[-23.592,3.755],[-13.542,-2.511],[-14.804,-4.379],[-2.844,-0.308],[-8.127,-0.255],[-1.855,3.804],[47.06,2.069],[84.589,14.468],[24.386,-5.334],[29.426,3.291],[7.494,1.156],[3.459,-3.459],[-50.992,-5.099]],"v":[[124.5,-24.5],[87.229,-20.559],[53.5,-13.5],[21.995,-4.712],[-9.5,4.5],[-75.605,20.536],[-150.5,20.5],[-192.475,9.097],[-241.5,-1.5],[-261.147,-2.727],[-277.5,-1.5],[-261.5,1.5],[-149.5,24.5],[70.5,-13.5],[150.5,-21.5],[243.5,-0.5],[278.5,2.5],[263.5,-1.5]],"c":true}],"h":1},{"t":14,"s":[{"i":[[44.381,-2.858],[17.014,-3.591],[15.868,-4.473],[15.862,-4.308],[16.944,-2.369],[18.374,1.21],[16.038,4.601],[7.985,2.095],[8.895,1.567],[8.641,0.825],[6.408,-1.538],[-7.339,-0.445],[-3.859,-0.247],[-21.836,-6.264],[-61.261,16.902],[-39.804,-3.852],[-43.775,-0.916],[5.167,0.515]],"o":[[-18.076,1.164],[-17.014,3.591],[-15.608,4.401],[-15.862,4.308],[-17.465,2.442],[-18.374,-1.21],[-7.164,-2.055],[-7.985,-2.095],[-7.029,-1.238],[-8.641,-0.825],[-8.214,1.972],[7.339,0.445],[30.234,1.935],[77.846,22.332],[33.379,-9.209],[39.632,3.835],[20.76,0.434],[-49.534,-4.933]],"v":[[128.5,-24.5],[75.844,-16.982],[26.5,-4.5],[-20.499,9.024],[-69.5,19.5],[-124.07,21.282],[-176.5,12.5],[-199.202,6.134],[-224.5,0.5],[-248.965,-3.082],[-272.5,-2.5],[-269.055,0.794],[-247.5,1.5],[-170.5,18.5],[41.5,-4.5],[150.5,-21.5],[269.5,2.5],[263.5,-2.5]],"c":true}],"h":1},{"t":15,"s":[{"i":[[40.618,-2.816],[11.967,-2.029],[11.636,-3.017],[35.084,-8.024],[39.626,8.142],[9.983,3.268],[10.878,2.246],[11.459,1.391],[8.442,-0.952],[-9.756,-0.889],[-0.986,-0.091],[-26.58,-5.462],[-64.631,15.409],[-26.355,-2.298],[-31.792,-5.408],[-1.656,3.558],[-19.978,-3.886],[6.789,0.745]],"o":[[-12.498,0.867],[-11.967,2.029],[-31.038,8.047],[-35.084,8.024],[-8.19,-1.683],[-9.983,-3.268],[-6.721,-1.387],[-11.459,-1.391],[-12.01,1.353],[9.756,0.889],[35.055,3.21],[82.693,16.992],[23.134,-5.515],[32.078,2.797],[1.354,0.23],[2.041,-4.386],[-6.307,-1.227],[-45.535,-4.999]],"v":[[132.5,-24.5],[95.853,-20.112],[60.5,-12.5],[-38.559,15.642],[-150.5,19.5],[-177.984,11.423],[-209.5,2.5],[-238.71,-2.254],[-270.5,-3.5],[-266.247,-0.053],[-242.5,1.5],[-150.5,23.5],[72.5,-11.5],[150.5,-21.5],[243.5,-0.5],[278.5,1.5],[272.5,-1.5],[263.5,-2.5]],"c":true}],"h":1},{"t":16,"s":[{"i":[[37.98,-2.633],[12.132,-2.013],[11.829,-3.073],[35.292,-8.01],[40.134,8.014],[20.502,5.556],[23.566,-2.505],[-4.407,-0.729],[-2.827,-0.079],[-8.446,-1.039],[-7.347,-1.571],[-9.883,-3.193],[-8.992,-1.774],[-64.246,15.548],[-26.453,-1.486],[-19.285,-4.519],[-20.359,-0.829],[6.358,0.78]],"o":[[-12.642,0.877],[-12.132,2.013],[-30.7,7.976],[-35.292,8.01],[-16.428,-3.28],[-20.502,-5.556],[-9.454,1.005],[4.407,0.729],[9.871,0.274],[8.446,1.039],[11.475,2.453],[9.883,3.193],[82.986,16.371],[23.393,-5.661],[20.343,1.143],[15.853,3.715],[18.415,0.75],[-43.047,-5.282]],"v":[[136.5,-24.5],[99.39,-20.147],[63.5,-12.5],[-35.424,15.492],[-148.5,19.5],[-204.146,3.661],[-270.5,-3.5],[-274.211,-0.805],[-259.5,0.5],[-232.107,2.528],[-208.5,6.5],[-176.638,15.509],[-148.5,23.5],[72.5,-10.5],[149.5,-21.5],[212.5,-7.5],[270.5,1.5],[263.5,-2.5]],"c":true}],"h":1},{"t":17,"s":[{"i":[[33.622,-1.502],[12.478,-2.104],[11.505,-3.02],[35.812,-7.942],[40.977,9.106],[20.679,5.207],[23.567,-2.319],[-8.752,-0.686],[-1.752,-0.1],[-16.781,-4.514],[-14.165,-2.994],[-36.883,8.162],[-31.9,8.136],[-12.762,2.371],[-13.168,-0.489],[-31.714,-5.747],[-3.509,3.509],[1.599,0.19]],"o":[[-12.584,0.563],[-12.478,2.105],[-31.773,8.339],[-35.812,7.942],[-15.718,-3.493],[-20.679,-5.207],[-11.762,1.158],[8.752,0.686],[16.71,0.95],[16.781,4.514],[41.569,8.785],[36.883,-8.162],[11.785,-3.006],[12.762,-2.371],[30.96,1.15],[6.078,1.101],[2.481,-2.481],[-41.719,-4.944]],"v":[[141.5,-24.5],[103.691,-20.343],[67.5,-12.5],[-33.597,16.084],[-148.5,18.5],[-203.613,3.141],[-270.5,-3.5],[-268.136,-0.706],[-245.5,0.5],[-194.591,9.968],[-147.5,22.5],[-29.748,19.19],[73.5,-9.5],[110.463,-18.121],[149.5,-21.5],[243.5,-1.5],[278.5,1.5],[263.5,-3.5]],"c":true}],"h":1},{"t":18,"s":[{"i":[[33.443,-0.903],[17.599,-3.987],[15.815,-4.546],[16.692,-4.329],[17.806,-1.962],[18.952,1.797],[16.275,4.896],[15.763,3.057],[17.632,-1.236],[2.353,-1.176],[-6.495,-0.081],[-27.976,-8.37],[-38.029,4.666],[-31.655,9.204],[-37.432,-1.418],[-32.43,-5.756],[-3.803,3.803],[1.441,0.204]],"o":[[-18.791,0.508],[-17.598,3.987],[-16.425,4.721],[-16.692,4.329],[-18.918,2.085],[-18.952,-1.797],[-13.315,-4.006],[-15.763,-3.057],[-3.082,0.216],[-2.353,1.176],[40.503,0.504],[32.642,9.766],[35.756,-4.387],[31.472,-9.151],[30.794,1.166],[5.48,0.973],[2.785,-2.785],[-41.471,-5.87]],"v":[[145.5,-24.5],[90.767,-17.029],[40.5,-3.5],[-8.965,10.569],[-60.5,20.5],[-117.982,20.736],[-171.5,10.5],[-215.262,-0.931],[-265.5,-4.5],[-275.683,-1.899],[-271.5,0.5],[-169.5,15.5],[-56.5,24.5],[44.5,-0.5],[150.5,-21.5],[244.5,-2.5],[278.5,1.5],[264.5,-3.5]],"c":true}],"h":1},{"t":19,"s":[{"i":[[40.49,-3.467],[31.964,-9.5],[37.922,-3.9],[18.2,2.279],[16.041,4.854],[8.197,1.859],[9.779,1.317],[8.897,0.729],[7.397,-1.861],[-7.394,-0.205],[-3.464,-0.157],[-21.448,-6.575],[-37.619,4.007],[-70.961,3.523],[-2.587,-0.185],[-30.41,-5.271],[-2.089,4.54],[1.007,0.141]],"o":[[-36.22,3.102],[-31.964,9.5],[-19.159,1.97],[-18.2,-2.279],[-7.433,-2.249],[-8.197,-1.859],[-7.015,-0.945],[-8.897,-0.729],[-8.038,2.022],[7.393,0.205],[30.988,1.408],[33.256,10.195],[80.304,-8.553],[4.157,-0.206],[31.53,2.259],[3.36,0.582],[1.381,-3.002],[-42.942,-6.004]],"v":[[137.5,-23.5],[37.777,-1.599],[-64.5,21.5],[-120.838,20.618],[-172.5,9.5],[-195.741,3.301],[-222.5,-1.5],[-247.214,-4.604],[-272.5,-3.5],[-268.626,-0.602],[-247.5,-0.5],[-169.5,14.5],[-59.5,24.5],[142.5,-20.5],[155.5,-20.5],[246.5,-2.5],[278.5,0.5],[264.5,-3.5]],"c":true}],"h":1},{"t":20,"s":[{"i":[[36.814,-3.152],[32.202,-9.579],[38.642,-3.554],[18.1,2.503],[16.073,4.782],[8.591,1.935],[9.207,1.049],[9.227,0.512],[7.034,-1.851],[-4.077,-0.282],[-3.803,0],[-17.71,-4.164],[-19.382,-4.346],[-54.987,16.111],[-34.14,-0.614],[-36.478,-5.227],[-0.768,1.636],[1.468,0.21]],"o":[[-36.549,3.13],[-32.202,9.579],[-19.525,1.796],[-18.101,-2.503],[-7.43,-2.21],[-8.591,-1.935],[-7.058,-0.804],[-9.227,-0.512],[-7.111,1.871],[4.077,0.282],[23.779,0],[17.71,4.164],[69.693,15.627],[29.887,-8.757],[39.125,0.704],[2.786,0.399],[1.833,-3.903],[-40.531,-5.808]],"v":[[141.5,-23.5],[41.069,-1.318],[-62.5,21.5],[-119.089,19.933],[-170.5,8.5],[-194.668,2.129],[-221.5,-2.5],[-247.018,-4.991],[-272.5,-3.5],[-274.186,-0.596],[-259.5,-0.5],[-199.202,6.741],[-145.5,20.5],[54.5,-0.5],[151.5,-20.5],[261.5,0.5],[278.5,0.5],[262.5,-3.5]],"c":true}],"h":1},{"t":21,"s":[{"i":[[33.67,-2.081],[31.219,-9.516],[34.654,-3.805],[17.903,1.298],[15.836,4.846],[16.594,3.249],[17.126,-0.043],[3.728,-0.315],[2.201,-0.734],[-2.834,-2.834],[-3.48,-0.016],[-32.594,-9.659],[-37.412,4.543],[-30.172,8.689],[-33.659,0.187],[-31.048,-5.771],[-1.267,2.689],[-0.057,-0.009]],"o":[[-34.468,2.13],[-31.219,9.516],[-18.553,2.037],[-17.903,-1.298],[-16.499,-5.048],[-16.594,-3.249],[-1.888,0.005],[-3.728,0.315],[9.75,-3.25],[3.322,3.322],[35.889,0.169],[31.046,9.201],[35.071,-4.259],[30.54,-8.795],[34.29,-0.19],[4.755,0.884],[1.429,-3.034],[-40.363,-6.337]],"v":[[145.5,-23.5],[48.64,-2.756],[-48.5,20.5],[-103.538,21.662],[-154.5,12.5],[-204.029,-0.319],[-254.5,-5.5],[-263.766,-5.046],[-273.5,-3.5],[-277.5,-0.5],[-253.5,-1.5],[-153.5,17.5],[-44.5,24.5],[51.5,0.5],[150.5,-20.5],[245.5,-2.5],[278.5,0.5],[264.5,-4.5]],"c":true}],"h":1},{"t":22,"s":[{"i":[[38.626,-3.552],[16.751,-4.399],[15.943,-4.742],[17.091,-3.821],[18.719,-0.981],[18.02,2.796],[16.601,4.883],[17.597,2.873],[18.301,-3.405],[-3.763,-0.393],[-0.789,0.029],[-25.949,-7.719],[-39.657,2.932],[-31.19,9.331],[-36.65,2.222],[-30.647,-5.929],[-3.493,3.493],[0.239,0.039]],"o":[[-18.052,1.66],[-16.751,4.399],[-15.918,4.736],[-17.091,3.821],[-20.317,1.065],[-18.02,-2.796],[-13.309,-3.914],[-17.597,-2.873],[-7.839,1.458],[3.763,0.393],[39.289,-1.449],[32.783,9.752],[39.633,-2.931],[32.062,-9.592],[34.373,-2.084],[5.795,1.121],[2.608,-2.608],[-42.069,-6.889]],"v":[[142.5,-22.5],[90.418,-12.812],[41.5,1.5],[-7.899,14.816],[-61.5,22.5],[-118.787,19.461],[-170.5,7.5],[-217.756,-3.99],[-272.5,-4.5],[-274.971,-1.884],[-264.5,-1.5],[-167.5,11.5],[-58.5,25.5],[45.5,4.5],[146.5,-19.5],[244.5,-3.5],[278.5,0.5],[266.5,-4.5]],"c":true}],"h":1},{"t":23,"s":[{"i":[[32.831,-2.844],[15.657,-3.811],[14.7,-4.398],[15.096,-3.914],[15.613,-1.857],[17.263,1.185],[15.108,3.38],[15.267,3.946],[17.379,0.963],[7.118,-0.044],[5.383,-1.22],[-2.935,0.099],[-83.4,5.783],[-31.254,9.088],[-36.537,0.305],[-30.133,-5.63],[-3.144,3.144],[1.854,0.293]],"o":[[-15.674,1.358],[-15.656,3.811],[-15.003,4.489],[-15.096,3.914],[-17.84,2.122],[-17.263,-1.185],[-14.552,-3.255],[-15.267,-3.945],[-7.143,-0.396],[-7.118,0.044],[-12.081,2.738],[85.443,-2.891],[38.25,-2.652],[31.68,-9.211],[32.224,-0.269],[5.84,1.091],[3.135,-3.135],[-38.096,-6.015]],"v":[[146.5,-22.5],[99.269,-14.28],[53.5,-1.5],[8.457,11.474],[-37.5,20.5],[-90.549,21.626],[-139.5,14.5],[-183.88,2.78],[-232.5,-5.5],[-254.32,-6.212],[-273.5,-4.5],[-264.5,-1.5],[-54.5,26.5],[49.5,4.5],[152.5,-19.5],[245.5,-3.5],[278.5,0.5],[264.5,-4.5]],"c":true}],"h":1},{"t":24,"s":[{"i":[[32.609,-1.165],[16.437,-4.243],[15.309,-4.46],[15.741,-3.929],[16.831,-1.855],[34.78,8.802],[39.553,-3.434],[3.716,-0.499],[-0.896,-1.914],[-7.111,0.613],[-2.882,-0.008],[-32.188,-8.811],[-36.813,3.503],[-29.394,8.58],[-32.353,2.455],[-34.279,-6.196],[-2.944,2.944],[0.952,0.164]],"o":[[-15.941,0.569],[-16.437,4.243],[-15.204,4.429],[-15.741,3.929],[-43.326,4.774],[-34.78,-8.802],[-1.034,0.09],[-3.715,0.499],[0.676,1.444],[7.111,-0.613],[35.61,0.102],[30.817,8.436],[35.437,-3.373],[30.302,-8.845],[37.924,-2.877],[3.333,0.602],[3.184,-3.184],[-38.031,-6.575]],"v":[[151.5,-22.5],[102.526,-14.418],[54.5,-0.5],[8.22,12.431],[-40.5,21.5],[-154.33,9.006],[-262.5,-5.5],[-271.447,-4.868],[-277.5,-1.5],[-263.154,-0.923],[-245.5,-2.5],[-148.5,16.5],[-43.5,25.5],[51.5,4.5],[145.5,-18.5],[249.5,-3.5],[278.5,0.5],[265.5,-4.5]],"c":true}],"h":1},{"t":25,"s":[{"i":[[36.239,-4.174],[32.396,-9.838],[40.766,-0.427],[17.395,3.334],[16.973,4.878],[13.618,2.001],[16.323,-0.512],[6.693,-1.261],[-7.853,0.139],[-17.662,-1.793],[-14.363,-4.2],[-17.958,-3.107],[-20.828,0.499],[-31.615,9.566],[-35.603,1.954],[-27.706,-5.15],[-1.424,3.08],[0.187,0.032]],"o":[[-36.65,4.221],[-32.396,9.838],[-20.446,0.214],[-17.395,-3.334],[-12.207,-3.509],[-13.618,-2.001],[-3.082,0.096],[-6.693,1.261],[20.988,-0.371],[17.662,1.793],[17.341,5.071],[17.958,3.107],[40.548,-0.971],[32.197,-9.742],[34.26,-1.88],[4.531,0.842],[1.31,-2.836],[-39.352,-6.695]],"v":[[146.5,-21.5],[46.087,3.346],[-60.5,22.5],[-116.605,17.319],[-167.5,4.5],[-205.913,-4.015],[-250.5,-6.5],[-269.701,-3.823],[-272.5,-1.5],[-214.53,0.572],[-166.5,9.5],[-114.115,22.178],[-56.5,26.5],[49.5,6.5],[151.5,-18.5],[246.5,-3.5],[278.5,-0.5],[264.5,-5.5]],"c":true}],"h":1},{"t":26,"s":[{"i":[[39.502,-4.549],[27.736,-8.658],[34.385,-3.606],[17.091,1.59],[14.77,3.409],[23.779,4.972],[25.221,-6.424],[3.147,-0.731],[-1.6,-1.6],[-5.906,0.516],[-2.266,0.045],[-18.49,-4.002],[-19.692,-4.495],[-37.722,4.157],[-26.964,8.021],[-31.066,2.357],[-40.901,-4.899],[7.146,1.376]],"o":[[-32.669,3.762],[-27.736,8.658],[-16.865,1.768],[-17.091,-1.59],[-19.663,-4.537],[-23.779,-4.972],[5.986,-1.525],[-3.147,0.731],[1.11,1.11],[5.906,-0.516],[25.346,-0.501],[18.49,4.002],[29.518,6.737],[34.265,-3.776],[27.465,-8.17],[44.884,-3.406],[15.161,1.816],[-38.211,-7.356]],"v":[[145.5,-20.5],[57.786,0.617],[-32.5,21.5],[-84.072,21.383],[-132.5,13.5],[-198.332,-3.721],[-272.5,-4.5],[-271.71,-5.344],[-277.5,-1.5],[-264.867,-1.134],[-250.5,-2.5],[-186.76,3.753],[-131.5,17.5],[-30.5,25.5],[59.5,4.5],[148.5,-17.5],[270.5,-0.5],[266.5,-4.5]],"c":true}],"h":1},{"t":27,"s":[{"i":[[33.187,-3.822],[32.724,-9.824],[41.447,0.633],[17.369,3.716],[16.781,4.833],[19.036,1.818],[16.096,-4.236],[-7.529,0.306],[-2.832,0.132],[-5.057,-0.221],[-4.328,-0.415],[-24.965,-6.532],[-31.233,0],[-31.191,8.896],[-36.209,2.161],[-28.217,-5.325],[8.891,4.916],[9.765,1.838]],"o":[[-37.659,4.337],[-32.724,9.824],[-19.742,-0.302],[-17.369,-3.716],[-13.761,-3.963],[-19.036,-1.818],[-8.949,2.355],[7.529,-0.306],[6.445,-0.3],[5.057,0.221],[29.907,2.87],[24.965,6.532],[42.522,0],[32.51,-9.273],[31.751,-1.895],[3.605,0.68],[-4.931,-2.727],[-35.512,-6.685]],"v":[[149.5,-20.5],[47.341,4.727],[-60.5,22.5],[-115.72,15.899],[-166.5,2.5],[-217.749,-7.149],[-272.5,-4.5],[-269.336,-2.135],[-248.5,-3.5],[-231.413,-3.537],[-217.5,-2.5],[-137.994,14.152],[-56.5,26.5],[52.5,8.5],[153.5,-17.5],[246.5,-4.5],[276.5,-2.5],[265.5,-5.5]],"c":true}],"h":1},{"t":28,"s":[{"i":[[35.671,-4.287],[32.747,-9.813],[43.565,1.631],[17.131,3.891],[16.577,4.728],[9.529,1.631],[8.728,0.435],[9.377,-0.135],[6.471,-1.91],[-7.344,0.044],[-3.463,0.139],[-29.085,-7.755],[-35.539,-0.543],[-17.862,3.222],[-15.823,4.444],[-35.508,2.915],[-35.321,-5.72],[14.847,2.718]],"o":[[-36.447,4.38],[-32.747,9.813],[-18.898,-0.707],[-17.131,-3.891],[-7.156,-2.041],[-9.529,-1.631],[-9.019,-0.45],[-9.377,0.135],[-7.841,2.315],[7.345,-0.044],[39.12,-1.563],[29.085,7.755],[21.727,0.331],[17.863,-3.222],[31.883,-8.953],[39.741,-3.263],[20.162,3.265],[-36.545,-6.691]],"v":[[148.5,-19.5],[48.338,6.009],[-62.5,22.5],[-116.241,15.015],[-166.5,1.5],[-192.321,-4.204],[-220.5,-7.5],[-248.911,-8.27],[-273.5,-5.5],[-269.477,-2.66],[-248.5,-3.5],[-150.315,9.921],[-57.5,26.5],[1.427,21.581],[51.5,9.5],[151.5,-16.5],[262.5,-2.5],[265.5,-5.5]],"c":true}],"h":1},{"t":29,"s":[{"i":[[28.142,-1.788],[1.749,0.067],[1.493,-0.172],[16.325,-5.138],[16.533,-4.463],[18.422,-2.931],[21.998,1.129],[25.213,6.639],[29.369,1.969],[9.008,-0.027],[7.566,-2.457],[-4.494,0.337],[-38.097,-10.223],[-37.185,1.286],[-64.247,9.038],[-31.382,-5.672],[15.711,5.604],[8.515,1.68]],"o":[[-1.512,0.096],[-1.749,-0.067],[-17.169,1.985],[-16.325,5.138],[-16.316,4.404],[-18.421,2.931],[-28.778,-1.477],[-25.213,-6.639],[-8.401,-0.564],[-9.008,0.027],[-14.41,4.679],[47.526,-3.569],[31.39,8.423],[72.454,-2.505],[34.752,-4.889],[7.816,1.413],[-6.141,-2.19],[-31.857,-6.285]],"v":[[158.5,-19.5],[153.486,-19.557],[148.5,-19.5],[98.523,-7.859],[49.5,7.5],[-2.238,19.15],[-62.5,22.5],[-141.556,7.869],[-221.5,-7.5],[-248.126,-8.765],[-273.5,-5.5],[-256.5,-3.5],[-137.5,13.5],[-36.5,26.5],[149.5,-15.5],[249.5,-4.5],[274.5,-4.5],[266.5,-5.5]],"c":true}],"h":1},{"t":30,"s":[{"i":[[36.111,-4.054],[33.232,-9.93],[44.374,2.84],[25.453,7.016],[29.603,1.109],[9.959,-0.312],[5.779,-2.028],[-7.235,0.103],[-3.716,0.274],[-29.665,-7.853],[-34.408,-1.45],[-18.549,2.897],[-15.654,4.345],[-16.63,5.283],[-17.969,1.287],[-27.629,-5.306],[-1.833,1.833],[3.089,0.632]],"o":[[-36.697,4.12],[-33.232,9.93],[-28.584,-1.829],[-25.453,-7.016],[-7.387,-0.277],[-9.959,0.312],[-7.655,2.687],[7.235,-0.103],[38.93,-2.864],[29.665,7.853],[22.151,0.934],[18.549,-2.897],[16.511,-4.582],[16.63,-5.283],[32.53,-2.33],[3.291,0.632],[2.776,-2.776],[-34.845,-7.126]],"v":[[153.5,-18.5],[52.258,7.22],[-60.5,22.5],[-139.735,6.459],[-220.5,-8.5],[-248.206,-8.728],[-273.5,-5.5],[-269.528,-2.28],[-248.5,-3.5],[-149.108,8.265],[-56.5,26.5],[4.372,22.959],[55.5,11.5],[104.906,-4.472],[156.5,-15.5],[247.5,-4.5],[278.5,-0.5],[266.5,-5.5]],"c":true}],"h":1},{"t":31,"s":[{"i":[[36.068,-4.426],[14.803,-4.507],[14.418,-3.962],[15.649,-2.956],[18.932,-0.198],[16.152,2.501],[15.525,4.183],[15.651,3.516],[17.787,0],[8.102,-0.505],[6.044,-1.979],[-5.026,0.424],[-39.179,-10.22],[-37.981,0.91],[-28.478,7.842],[-32.405,2.459],[-31.606,-5.772],[15.836,4.413]],"o":[[-16.37,2.008],[-14.803,4.507],[-14.471,3.977],[-15.649,2.956],[-17.867,0.187],[-16.152,-2.501],[-14.607,-3.936],[-15.651,-3.516],[-7.548,0],[-8.102,0.505],[-14.379,4.707],[47.958,-4.05],[30.893,8.058],[38.466,-0.922],[29.126,-8.02],[38.006,-2.884],[6.39,1.167],[-34.645,-9.654]],"v":[[151.5,-17.5],[105.036,-6.966],[61.5,6.5],[16.845,17.334],[-34.5,22.5],[-85.256,18.777],[-132.5,8.5],[-177.615,-3.452],[-227.5,-9.5],[-251.628,-8.984],[-273.5,-5.5],[-252.5,-3.5],[-131.5,12.5],[-31.5,26.5],[65.5,9.5],[155.5,-14.5],[255.5,-3.5],[273.5,-4.5]],"c":true}],"h":1},{"t":32,"s":[{"i":[[31.992,-2.365],[8.779,-2.148],[9.085,-2.683],[26.621,-5.565],[33.94,2.813],[17.187,4.292],[18.058,4.24],[20.045,1.379],[15.154,-4.725],[-8.905,0.365],[-5.486,0.38],[-17.316,-3.127],[-14.436,-3.967],[-23.771,-2.734],[-26.366,3.859],[-45.805,11.682],[-37.15,-6.68],[15.364,4.225]],"o":[[-9.798,0.724],[-8.779,2.148],[-25.578,7.551],[-26.621,5.565],[-19.192,-1.59],[-17.187,-4.292],[-13.666,-3.209],[-20.045,-1.379],[-9.105,2.838],[8.905,-0.365],[21.301,-1.477],[17.316,3.127],[21.549,5.922],[23.771,2.734],[46.694,-6.834],[39.07,-9.964],[5.546,0.997],[-32.251,-8.869]],"v":[[162.5,-17.5],[134.965,-12.968],[108.5,-5.5],[31.772,15.773],[-57.5,21.5],[-111.35,11.988],[-163.5,-1.5],[-216.883,-9.45],[-272.5,-5.5],[-267.443,-2.586],[-240.5,-4.5],[-182.851,-1.083],[-135.5,10.5],[-67.613,24.336],[7.5,23.5],[136.5,-9.5],[260.5,-2.5],[273.5,-4.5]],"c":true}],"h":1},{"t":33,"s":[{"i":[[32.233,-3.042],[9.079,-2.533],[9.564,-2.818],[26.602,-4.823],[32.822,3.59],[33.697,7.8],[38.5,-7.669],[2.223,-1.296],[-7.762,0.758],[-3.647,0.593],[-2.758,0.271],[-29.55,-7.63],[-31.579,-3.325],[-18.89,2.093],[-15.889,4.002],[-34.718,5.466],[-33.472,-5.306],[12.807,3.941]],"o":[[-11.12,1.05],[-9.079,2.533],[-24.769,7.299],[-26.602,4.823],[-31.712,-3.468],[-33.697,-7.8],[-2.87,0.572],[-2.223,1.296],[3.654,-0.357],[3.647,-0.593],[39.221,-3.843],[29.55,7.63],[22.549,2.374],[18.89,-2.093],[33.757,-8.503],[39.346,-6.195],[5.557,0.881],[-30.562,-9.404]],"v":[[159.5,-16.5],[129.833,-10.826],[102.5,-2.5],[26.54,17.167],[-61.5,20.5],[-158.909,-1.353],[-266.5,-6.5],[-276.474,-3.002],[-270.5,-1.5],[-259.328,-3.065],[-249.5,-4.5],[-149.269,5.124],[-60.5,25.5],[1.495,25.282],[53.5,15.5],[152.5,-12.5],[264.5,-2.5],[273.5,-4.5]],"c":true}],"h":1},{"t":34,"s":[{"i":[[24.743,-1.716],[3.244,-0.037],[3.347,-0.599],[16.339,-5.238],[17.126,-4.091],[19.023,-1.678],[22.148,2.718],[33.378,7.733],[37.964,-7.801],[1.823,-1.248],[-6.745,0.701],[-5.793,0.554],[-63.008,-7.257],[-33.162,7.923],[-34.072,5.472],[-28.676,-4.826],[-2.413,2.413],[0.543,0.122]],"o":[[-3.678,0.255],[-3.244,0.037],[-16.518,2.955],[-16.339,5.238],[-16.758,4.004],[-19.023,1.678],[-31.525,-3.868],[-33.378,-7.733],[-3.453,0.71],[-1.823,1.248],[6.988,-0.726],[77.172,-7.375],[44.293,5.101],[34.239,-8.18],[30.36,-4.876],[7.66,1.289],[1.862,-1.862],[-29.227,-6.585]],"v":[[170.5,-16.5],[160.252,-16.258],[150.5,-15.5],[101.456,-2.352],[51.5,12.5],[-1.958,21.541],[-63.5,20.5],[-160.171,-1.752],[-266.5,-6.5],[-276.149,-2.942],[-270.5,-1.5],[-249.5,-4.5],[-60.5,24.5],[53.5,16.5],[152.5,-11.5],[247.5,-5.5],[278.5,-1.5],[268.5,-6.5]],"c":true}],"h":1},{"t":35,"s":[{"i":[[26.447,-2.068],[15.814,-4.801],[16.236,-4.348],[15.273,-2.321],[17.029,0],[14.772,2.598],[13.559,3.609],[14.03,3.633],[16.952,1.027],[13.06,-0.666],[8.604,-1.95],[-0.811,-1.732],[-6.023,0.502],[-52.203,-11.109],[-43.343,9.139],[-40.273,7.638],[-28.544,-5.093],[14.582,5.281]],"o":[[-18.507,1.447],[-15.814,4.801],[-13.878,3.716],[-15.273,2.321],[-18.355,0],[-14.772,-2.598],[-12.927,-3.441],[-14.03,-3.633],[-10.155,-0.616],[-13.06,0.666],[1.257,-0.285],[1.275,2.722],[63.573,-5.294],[37.554,7.992],[36.618,-7.721],[29.004,-5.501],[4.615,0.823],[-27.836,-10.08]],"v":[[167.5,-15.5],[116.797,-5.176],[69.5,9.5],[25.863,18.787],[-22.5,22.5],[-71.597,18.207],[-113.5,8.5],[-153.481,-2.81],[-199.5,-10.5],[-236.163,-10.425],[-270.5,-6.5],[-277.5,-2.5],[-240.5,-5.5],[-85.5,19.5],[40.5,19.5],[151.5,-9.5],[246.5,-5.5],[274.5,-4.5]],"c":true}],"h":1},{"t":36,"s":[{"i":[[24.317,-1.171],[9.269,-1.908],[9.776,-2.832],[28.154,-5.306],[33.638,3.68],[36.041,7.979],[41.822,-9.857],[-4.103,0.019],[-0.918,0.123],[-18.58,-0.767],[-14.324,-3.393],[-18.073,-4.55],[-19.983,-2.128],[-20.129,2.668],[-17.391,4.789],[-41.943,-0.197],[-21.507,-3.659],[15.059,3.543]],"o":[[-11.149,0.537],[-9.269,1.908],[-25.745,7.457],[-28.154,5.306],[-36.017,-3.939],[-36.04,-7.979],[-9.331,2.199],[4.103,-0.019],[18.358,-2.462],[18.58,0.767],[19.727,4.673],[18.073,4.55],[23.095,2.46],[20.129,-2.668],[36.308,-9.998],[21.788,0.102],[9.854,1.676],[-27.894,-6.563]],"v":[[180.5,-15.5],[150.471,-11.721],[122.5,-4.5],[42.419,16.353],[-49.5,20.5],[-156.146,-2.847],[-271.5,-5.5],[-275.187,-2.758],[-263.5,-3.5],[-206.975,-5.891],[-156.5,0.5],[-100.692,14.908],[-44.5,25.5],[20.278,24.437],[76.5,12.5],[188.5,-12.5],[255.5,-4.5],[273.5,-5.5]],"c":true}],"h":1},{"t":37,"s":[{"i":[[25.999,-2.033],[3.705,-0.21],[3.88,-0.825],[27.745,-7.5],[33.732,0.808],[32.689,9.213],[45.731,-4.87],[6.73,-0.921],[3.543,-1.831],[-10.27,1.168],[-1.353,0.133],[-24.363,-5.612],[-26.049,-5.736],[-21.142,-0.548],[-21.941,4.265],[-38.222,8.04],[-27.959,-4.49],[13.245,5.024]],"o":[[-4.302,0.337],[-3.704,0.209],[-27.29,5.808],[-27.745,7.5],[-42.515,-1.018],[-32.689,-9.213],[-4.536,0.483],[-6.73,0.921],[-5.432,2.807],[10.27,-1.168],[32.499,-3.184],[24.363,5.612],[18.492,4.072],[21.142,0.548],[36.645,-7.124],[28.225,-5.937],[8.685,1.395],[-25.388,-9.63]],"v":[[174.5,-14.5],[162.683,-13.867],[151.5,-12.5],[70.332,9.962],[-20.5,22.5],[-127.588,1.583],[-239.5,-10.5],[-257.744,-8.511],[-274.5,-4.5],[-261.088,-3.296],[-237.5,-6.5],[-154.663,-0.691],[-81.5,18.5],[-21.587,25.753],[43.5,20.5],[152.5,-8.5],[247.5,-5.5],[274.5,-4.5]],"c":true}],"h":1},{"t":38,"s":[{"i":[[21.964,-0.287],[18.359,-4.996],[18.456,-4.726],[20.215,-2.121],[24.483,3.004],[18.378,5.113],[18.899,4.39],[21.162,0.095],[15.527,-5.056],[-3.12,-0.113],[-2.405,0.366],[-29.226,-6.848],[-36.705,-5.132],[-34.803,8.226],[-37.425,2.509],[-23.118,-3.88],[-1.395,1.395],[-0.817,-0.178]],"o":[[-22.109,0.289],[-18.359,4.996],[-17.657,4.521],[-20.215,2.121],[-17.59,-2.159],[-18.378,-5.113],[-15.826,-3.676],[-21.162,-0.095],[-5.884,1.915],[3.12,0.113],[34.469,-5.243],[37.639,8.82],[44.685,6.247],[35.957,-8.499],[26.83,-1.799],[6.284,1.055],[2.139,-2.139],[-25.626,-5.571]],"v":[[190.5,-14.5],[130.76,-5.328],[76.5,10.5],[20.12,21.144],[-46.5,20.5],[-100.519,8.674],[-156.5,-6.5],[-214.724,-12.549],[-272.5,-5.5],[-274.217,-2.789],[-263.5,-3.5],[-157.5,-2.5],[-50.5,23.5],[69.5,16.5],[175.5,-10.5],[253.5,-4.5],[278.5,-1.5],[273.5,-5.5]],"c":true}],"h":1},{"t":39,"s":[{"i":[[22.948,-1.697],[14.959,-3.939],[15.298,-4.072],[15.795,-2.765],[17.021,0],[15.785,2.527],[13.912,3.892],[14.536,4.041],[16.913,0.936],[18.784,-2.865],[-3.47,-3.47],[-8.215,0.909],[-52.316,-12.073],[-46.039,7.938],[-37.598,7.836],[-28.337,-4.436],[-1.509,1.509],[-0.982,-0.258]],"o":[[-15.868,1.174],[-14.958,3.939],[-14.797,3.939],[-15.796,2.765],[-18.947,0],[-15.785,-2.527],[-13.945,-3.901],[-14.536,-4.041],[-22.392,-1.24],[-2.803,0.428],[3.177,3.177],[66.177,-7.32],[34.942,8.064],[35.576,-6.134],[29.012,-6.046],[2.327,0.364],[2.52,-2.52],[-25.878,-6.813]],"v":[[182.5,-13.5],[136.572,-5.174],[91.5,7.5],[45.668,17.954],[-3.5,22.5],[-55.276,18.419],[-99.5,8.5],[-141.774,-4.223],[-188.5,-12.5],[-258.5,-7.5],[-277.5,-1.5],[-235.5,-7.5],[-77.5,17.5],[46.5,22.5],[154.5,-6.5],[247.5,-5.5],[278.5,-1.5],[270.5,-6.5]],"c":true}],"h":1},{"t":40,"s":[{"i":[[72.618,-5.035],[10.456,-1.044],[7.183,-2.339],[-3.358,-0.043],[-2.26,0.35],[-7.811,0.819],[-6.804,0.495],[-27.089,-7.282],[-27.624,-4.349],[-20.654,1.188],[-16.788,3.806],[-17.701,5.429],[-19.717,1.092],[-21.88,-3.445],[10.964,5.473],[13.634,1.656],[46.92,-12.565],[40.072,2.354]],"o":[[-6.991,0.485],[-10.456,1.044],[-6.692,2.179],[3.358,0.043],[7.95,-1.231],[7.811,-0.819],[34.018,-2.476],[27.089,7.282],[22.596,3.558],[20.654,-1.188],[18.48,-4.19],[17.701,-5.429],[24.384,-1.35],[8.519,1.341],[-11.684,-5.832],[-62.251,-7.56],[-29.68,7.948],[-70.139,-4.12]],"v":[[-216.5,-12.5],[-244.356,-10.391],[-272.5,-5.5],[-274.714,-2.603],[-263.5,-3.5],[-239.641,-6.552],[-217.5,-8.5],[-127.705,1.881],[-47.5,22.5],[17.856,25.523],[74.5,17.5],[128.072,1.676],[183.5,-9.5],[255.5,-4.5],[275.5,-4.5],[233.5,-11.5],[87.5,10.5],[-17.5,22.5]],"c":true}],"h":1},{"t":41,"s":[{"i":[[59.416,-4.646],[9.664,-1.107],[6.546,-2.041],[-5.774,0.274],[-3.275,0.515],[-3.719,0.462],[-3.256,0.386],[-25.201,-5.373],[-25.755,-6.353],[-20.389,-1.547],[-23.136,3.457],[-18.009,5.38],[-18.532,4.026],[-32.587,-5.145],[11.399,4.42],[16.109,1.335],[57.419,-9.221],[34.997,8.416]],"o":[[-6.798,0.532],[-9.664,1.107],[-8.373,2.611],[5.774,-0.274],[4.868,-0.766],[3.719,-0.462],[32.443,-3.845],[25.201,5.373],[17.31,4.27],[20.389,1.547],[16.431,-2.456],[18.009,-5.38],[30.686,-6.667],[5.504,0.869],[-15.481,-6.003],[-69.85,-5.789],[-44.393,7.129],[-49.445,-11.89]],"v":[[-220.5,-12.5],[-246.689,-10.132],[-272.5,-5.5],[-272.236,-2.655],[-254.5,-4.5],[-241.791,-6.285],[-231.5,-7.5],[-146.984,-3.148],[-72.5,16.5],[-15.869,25.796],[49.5,23.5],[101.424,10.678],[156.5,-4.5],[263.5,-3.5],[274.5,-5.5],[222.5,-12.5],[51.5,18.5],[-71.5,13.5]],"c":true}],"h":1},{"t":42,"s":[{"i":[[35.437,-2.62],[11.122,-1.282],[7.797,-2.3],[-2.835,-0.181],[-4.349,0.699],[-7.603,1.031],[-6.517,0.582],[-27.501,-7.335],[-27.728,-4.806],[-20.594,1.033],[-17.442,3.885],[-24.908,5.698],[-32.372,-3.581],[10.705,5.531],[11.274,1.228],[45.603,-11.968],[41.737,3.086],[31.216,9.094]],"o":[[-7.715,0.57],[-11.122,1.282],[-6.688,1.974],[2.835,0.181],[8.07,-1.296],[7.603,-1.031],[35.266,-3.146],[27.501,7.335],[23.18,4.018],[20.594,-1.033],[25.995,-5.79],[24.908,-5.698],[8.663,0.958],[-10.753,-5.555],[-59.406,-6.473],[-29.353,7.704],[-36.044,-2.665],[-31.95,-9.308]],"v":[[-211.5,-13.5],[-241.439,-10.797],[-271.5,-5.5],[-275.277,-2.496],[-262.5,-3.5],[-238.836,-7.036],[-217.5,-9.5],[-125.347,0.036],[-44.5,21.5],[21.304,25.427],[78.5,17.5],[152.718,-2.028],[236.5,-7.5],[275.5,-4.5],[237.5,-10.5],[94.5,10.5],[-10.5,21.5],[-108.5,1.5]],"c":true}],"h":1},{"t":43,"s":[{"i":[[40.506,-0.96],[6.707,-0.6],[9.017,-1.432],[6.425,-0.972],[3.477,-1.506],[-4.931,0.484],[-2.875,0.489],[-10.626,1.276],[-10.344,0],[-36.519,-9.721],[-46.627,4.833],[-38.38,9.567],[-34.208,-5.203],[-1.81,1.81],[1.209,0.236],[29.651,-7.268],[40.481,-4.312],[36.444,10.035]],"o":[[-7.153,0.169],[-6.708,0.6],[-3.822,0.607],[-6.425,0.972],[-5.599,2.425],[4.931,-0.484],[11.154,-1.897],[10.626,-1.276],[42.306,0],[35.248,9.383],[39.985,-4.145],[30.033,-7.486],[0.389,0.059],[3.027,-3.027],[-34.364,-6.714],[-42.628,10.448],[-48.529,5.169],[-35.944,-9.898]],"v":[[-198.5,-14.5],[-218.601,-13.447],[-241.5,-10.5],[-258.258,-8.174],[-274.5,-4.5],[-272.355,-2.315],[-257.5,-4.5],[-224.893,-9.423],[-193.5,-11.5],[-79.5,12.5],[42.5,24.5],[154.5,-1.5],[262.5,-3.5],[278.5,-1.5],[266.5,-6.5],[156.5,-5.5],[42.5,20.5],[-81.5,8.5]],"c":true}],"h":1},{"t":44,"s":[{"i":[[13.516,-0.937],[9.959,-1.193],[8.988,-1.662],[0.991,-1.128],[-10.848,1.786],[-7.621,0.965],[-7.013,0.739],[-28.177,-7.061],[-27.306,-5.439],[-20.662,0.671],[-18.66,4.035],[-24.841,5.679],[-31.232,-3.212],[10.213,4.227],[9.797,1.044],[38.465,-10.676],[32.736,-0.5],[55.65,11.843]],"o":[[-8.177,0.567],[-9.959,1.193],[-6.885,1.274],[-0.991,1.128],[8.502,-1.4],[7.621,-0.965],[34.988,-3.684],[28.177,7.061],[23.694,4.72],[20.662,-0.671],[25.406,-5.495],[24.841,-5.679],[4.597,0.473],[-8.721,-3.609],[-53.533,-5.702],[-28.108,7.801],[-68.536,1.046],[-15.965,-3.397]],"v":[[-205.5,-14.5],[-233.391,-11.822],[-262.5,-7.5],[-275.799,-3.205],[-262.5,-3.5],[-238.383,-6.996],[-216.5,-9.5],[-123.239,-1.342],[-41.5,20.5],[24.775,26.066],[83.5,18.5],[157.13,-0.53],[239.5,-6.5],[275.5,-4.5],[240.5,-10.5],[111.5,8.5],[21.5,22.5],[-150.5,-12.5]],"c":true}],"h":1},{"t":45,"s":[{"i":[[41.174,-2.204],[13.399,-1.686],[10.49,-2.673],[-4.877,0.188],[-4.427,0.777],[-11.562,1.505],[-12.051,-0.073],[-18.457,-4.736],[-17.907,-4.931],[-19.82,-2.879],[-23.077,2.373],[-32.011,8.059],[-40.483,-4.78],[-7.434,-0.501],[8.26,2.301],[31.947,-8.047],[39.019,-3.496],[34.361,9.537]],"o":[[-10.915,0.584],[-13.399,1.686],[-9.934,2.531],[4.877,-0.189],[11.702,-2.056],[11.562,-1.505],[20.263,0.123],[18.457,4.736],[17.645,4.858],[19.82,2.879],[34.473,-3.545],[32.011,-8.059],[2.522,0.298],[7.434,0.501],[-37.777,-10.528],[-38.949,9.81],[-47.605,4.265],[-36.24,-10.058]],"v":[[-194.5,-15.5],[-232.319,-12.067],[-269.5,-5.5],[-273.27,-2.518],[-255.5,-4.5],[-220.761,-10.097],[-185.5,-12.5],[-127.733,-4.106],[-73.5,11.5],[-17.574,23.924],[46.5,25.5],[143.493,3.756],[249.5,-5.5],[269.586,-3.55],[273.5,-5.5],[157.5,-3.5],[44.5,21.5],[-77.5,7.5]],"c":true}],"h":1},{"t":46,"s":[{"i":[[52.437,-3.877],[6.298,-0.746],[8.989,-1.513],[6.41,-0.972],[3.596,-1.478],[-9.035,1.011],[1.263,-0.22],[-5.012,0.872],[-4.185,0.503],[-35.518,-9.877],[-18.105,-3.835],[-38.128,7.853],[-61.758,-5.143],[11.663,4.175],[11.645,0.988],[37.609,-9.991],[35.44,0],[27.171,7.088]],"o":[[-6.82,0.505],[-6.298,0.746],[-3.762,0.633],[-6.41,0.972],[-6.876,2.825],[9.035,-1.011],[5.767,-1.008],[5.012,-0.872],[48.719,-5.855],[19.093,5.309],[46.721,9.897],[51.733,-10.655],[6.765,0.563],[-9.968,-3.569],[-54.426,-4.618],[-28.057,7.453],[-34.877,0],[-42.006,-10.957]],"v":[[-200.5,-15.5],[-219.374,-13.756],[-241.5,-10.5],[-258.125,-8.133],[-274.5,-4.5],[-264.71,-3.047],[-246.5,-5.5],[-230.314,-8.378],[-216.5,-10.5],[-95.5,4.5],[-39.5,19.5],[86.5,19.5],[241.5,-5.5],[275.5,-4.5],[242.5,-9.5],[115.5,9.5],[23.5,22.5],[-67.5,8.5]],"c":true}],"h":1},{"t":47,"s":[{"i":[[52.739,-3.396],[13.814,-1.89],[11.237,-2.7],[-7.693,0.602],[-4.174,0.703],[-16.388,1.592],[-16.304,-2.916],[-8.161,-2.598],[-8.176,-2.146],[-26.258,-4.727],[-32.568,3.575],[-16.591,4.391],[-17.573,4.454],[-18.873,0.34],[-16.95,-2.049],[5.051,1.099],[64.892,-7.473],[33.396,7.945]],"o":[[-11.508,0.741],[-13.814,1.89],[-12.947,3.111],[7.693,-0.602],[15.143,-2.549],[16.388,-1.592],[8.181,1.463],[8.161,2.598],[25.398,6.665],[26.258,4.727],[18.063,-1.983],[16.591,-4.391],[14.558,-3.69],[18.873,-0.34],[14.284,1.727],[-79.102,-17.218],[-41.722,4.805],[-47.057,-11.195]],"v":[[-190.5,-16.5],[-229.704,-12.47],[-268.5,-5.5],[-270.341,-2.639],[-246.5,-5.5],[-198.871,-12.599],[-149.5,-11.5],[-124.996,-5.011],[-100.5,2.5],[-24.377,21.181],[62.5,24.5],[113.867,14.353],[164.5,0.5],[216.206,-5.304],[271.5,-2.5],[268.5,-6.5],[63.5,20.5],[-50.5,11.5]],"c":true}],"h":1},{"t":48,"s":[{"i":[[50.35,-3.937],[10.911,-1.573],[10.69,-1.952],[4.376,-1.617],[-7.958,0.915],[-20.754,3.007],[-19.147,-3.196],[-16.348,-4.973],[-17.005,-4.337],[-18.702,-2.294],[-21.745,2.37],[-29.482,7.508],[-38.165,-3.51],[-7.456,-0.345],[9.815,2.656],[42.867,-11.114],[35.428,1.225],[27.05,7.449]],"o":[[-9.666,0.756],[-10.911,1.573],[-2.453,0.448],[-4.376,1.617],[18.836,-2.167],[20.754,-3.007],[16.602,2.771],[16.348,4.973],[16.45,4.195],[18.701,2.294],[31.906,-3.477],[29.482,-7.508],[2.992,0.275],[7.456,0.345],[-57.229,-15.488],[-29.236,7.58],[-35.314,-1.221],[-39.452,-10.864]],"v":[[-195.5,-16.5],[-226.732,-12.897],[-259.5,-7.5],[-273.309,-3.477],[-271.5,-1.5],[-211.233,-11.022],[-150.5,-12.5],[-101.303,-0.174],[-51.5,14.5],[1.029,24.923],[61.5,25.5],[150.806,5.26],[249.5,-4.5],[270.605,-2.801],[272.5,-5.5],[118.5,10.5],[23.5,22.5],[-67.5,6.5]],"c":true}],"h":1},{"t":49,"s":[{"i":[[33.201,-2.302],[14.06,-2.126],[12.389,-2.639],[1.002,-0.93],[-5.262,0.626],[-20.053,3.214],[-21.202,-3.187],[-8.129,-2.614],[-8.232,-2.303],[-26.227,-5.259],[-32.303,2.971],[-29.364,7.601],[-37.788,-3.415],[-6.061,-0.904],[-0.96,0.96],[0.365,0.073],[66.388,-6.612],[47.913,13.403]],"o":[[-12.371,0.858],[-14.06,2.126],[-4.254,0.906],[-1.002,0.93],[19.584,-2.33],[20.054,-3.214],[8.251,1.241],[8.129,2.614],[24.787,6.934],[26.227,5.259],[32.757,-3.012],[29.364,-7.601],[3.794,0.343],[6.061,0.904],[2.667,-2.667],[-79.577,-15.87],[-64.65,6.439],[-27.38,-7.659]],"v":[[-186.5,-17.5],[-226.986,-12.835],[-267.5,-5.5],[-276.137,-2.351],[-270.5,-1.5],[-211.214,-11.638],[-149.5,-13.5],[-124.985,-7.296],[-100.5,0.5],[-25.137,20.428],[61.5,25.5],[151.726,5.679],[249.5,-4.5],[266.126,-2.023],[278.5,-1.5],[268.5,-6.5],[63.5,21.5],[-99.5,-3.5]],"c":true}],"h":1},{"t":50,"s":[{"i":[[7.38,-0.577],[6.997,-0.877],[10.227,-1.882],[7.073,-1.186],[4.591,-1.5],[-4.001,0],[-0.232,0.038],[-18.344,2.753],[-19.649,-1.901],[-13.635,-3.777],[-50.725,-3.247],[-86.084,-4.896],[-2.396,2.396],[0.015,0.003],[25.66,-6.625],[37.13,-2.889],[48.277,13.877],[17.298,1.488]],"o":[[-7.784,0.608],[-6.997,0.877],[-4.115,0.758],[-7.073,1.186],[-6.236,2.038],[4.001,0],[17.975,-2.89],[18.344,-2.753],[14.703,1.423],[43.452,12.036],[87.855,5.624],[2.916,0.166],[2.917,-2.917],[-34.067,-5.936],[-35.932,9.278],[-64.693,5.034],[-16.851,-4.844],[-11.171,-0.961]],"v":[[-190.5,-17.5],[-211.668,-15.455],[-236.5,-11.5],[-254.644,-8.557],[-273.5,-4.5],[-273.352,-1.943],[-263.5,-2.5],[-209.256,-12.094],[-152.5,-14.5],[-109.5,-3.5],[24.5,26.5],[248.5,-4.5],[278.5,-1.5],[267.5,-6.5],[167.5,-0.5],[61.5,21.5],[-101.5,-5.5],[-153.5,-18.5]],"c":true}],"h":1},{"t":51,"s":[{"i":[[48.936,-3.827],[12.458,-1.96],[12.377,-2.237],[3.4,-1.542],[-13.923,2.312],[-17.614,2.93],[-19.863,-1.654],[-8.589,-2.238],[-8.221,-2.345],[-25.997,-6.021],[-32.059,1.2],[-29.537,7.827],[-37.947,-2.617],[-6.524,-0.611],[-0.669,0.669],[-0.487,-0.04],[68.102,-2.994],[32.422,9.087]],"o":[[-11.791,0.922],[-12.458,1.96],[-6.322,1.143],[-3.4,1.542],[17.681,-2.936],[17.614,-2.93],[8.422,0.701],[8.589,2.238],[24.951,7.117],[25.997,6.021],[34.904,-1.307],[29.537,-7.827],[3.233,0.223],[6.524,0.611],[3.672,-3.673],[-77.448,-6.328],[-43.469,1.911],[-40.914,-11.467]],"v":[[-182.5,-18.5],[-219.06,-13.986],[-256.5,-7.5],[-274.684,-2.409],[-262.5,-2.5],[-210.136,-12.442],[-154.5,-15.5],[-128.85,-10.733],[-103.5,-3.5],[-28.332,17.738],[57.5,26.5],[150.718,8.557],[248.5,-3.5],[265.423,-1.831],[278.5,-1.5],[252.5,-7.5],[60.5,22.5],[-52.5,7.5]],"c":true}],"h":1},{"t":52,"s":[{"i":[[31.573,-1.866],[9.059,-1.099],[11.011,-2.088],[8.672,-1.222],[5.988,-2.102],[-8.095,0.716],[-1.606,0.29],[-17.337,2.676],[-16.979,-2.538],[-14.783,-4.404],[-14.604,-4.101],[-15.889,-3.286],[-17.488,-0.655],[-80.818,-5.603],[19.451,4.01],[42.287,-10.607],[38.12,3.4],[31.114,8.215]],"o":[[-8.755,0.517],[-9.059,1.099],[-5.323,1.009],[-8.672,1.222],[-8.988,3.155],[8.095,-0.716],[15.672,-2.832],[17.337,-2.676],[15.265,2.281],[14.783,4.404],[14.956,4.2],[15.889,3.286],[83.37,3.122],[9.503,0.659],[-52.408,-10.803],[-32.966,8.269],[-36.627,-3.267],[-30.689,-8.103]],"v":[[-171.5,-19.5],[-197.808,-17.178],[-227.5,-12.5],[-250.001,-9.319],[-273.5,-4.5],[-268.945,-1.916],[-248.5,-4.5],[-198.48,-14.027],[-146.5,-15.5],[-101.504,-4.865],[-57.5,8.5],[-11.399,20.159],[38.5,26.5],[256.5,-3.5],[270.5,-5.5],[134.5,10.5],[27.5,21.5],[-71.5,0.5]],"c":true}],"h":1},{"t":53,"s":[{"i":[[47.95,-3.75],[8.325,-1.337],[9.727,-1.952],[8.159,-1.352],[5.115,-1.538],[-8.704,0.882],[-1.654,0.319],[-16.131,2.711],[-17.638,-1.707],[-8.388,-2.228],[-8.086,-2.28],[-62.642,0.656],[-75.1,-2.812],[-2.343,2.343],[-0.008,-0.001],[27.482,-7.793],[39.088,-0.936],[32.983,9.1]],"o":[[-8.972,0.701],[-8.325,1.337],[-5.248,1.053],[-8.159,1.352],[-9.471,2.848],[8.704,-0.882],[14.835,-2.863],[16.131,-2.711],[8.361,0.809],[8.388,2.228],[49.625,13.99],[70.744,-0.741],[7.463,0.279],[3.18,-3.18],[-34.695,-5.683],[-34.789,9.865],[-42.341,1.014],[-39.794,-10.979]],"v":[[-177.5,-19.5],[-202.934,-16.438],[-229.5,-11.5],[-251.1,-7.864],[-272.5,-3.5],[-267.344,-1.625],[-245.5,-4.5],[-199.102,-13.928],[-148.5,-16.5],[-123.294,-11.603],[-98.5,-4.5],[59.5,26.5],[248.5,-3.5],[278.5,-1.5],[267.5,-5.5],[168.5,2.5],[61.5,22.5],[-48.5,5.5]],"c":true}],"h":1},{"t":54,"s":[{"i":[[41.053,-2.846],[9.013,-1.213],[12.347,-2.483],[8.793,-1.492],[6.111,-1.88],[-8.243,0.778],[-2.32,0.438],[-15.953,2.931],[-16.713,-1.457],[-16.551,-4.95],[-16.195,-4.664],[-41.168,0],[-34.593,10.604],[-31.647,-1.438],[14.829,4.941],[7.187,0.46],[71.922,0],[32.753,9.342]],"o":[[-9.6,0.666],[-9.013,1.213],[-5.718,1.15],[-8.793,1.492],[-8.292,2.551],[8.243,-0.778],[14.477,-2.732],[15.953,-2.931],[17.601,1.535],[16.551,4.95],[32.163,9.263],[40.285,0],[21.58,-6.615],[7.626,0.346],[-6.463,-2.154],[-74.147,-4.746],[-41.65,0],[-36.671,-10.459]],"v":[[-167.5,-20.5],[-194.44,-17.863],[-225.5,-12.5],[-248.705,-8.548],[-272.5,-3.5],[-266.959,-1.758],[-245.5,-4.5],[-199.677,-14.142],[-150.5,-17.5],[-99.446,-6.847],[-50.5,8.5],[57.5,26.5],[165.5,8.5],[248.5,-3.5],[274.5,-4.5],[252.5,-6.5],[59.5,22.5],[-49.5,4.5]],"c":true}],"h":1},{"t":55,"s":[{"i":[[42.24,-3.468],[16.127,-3.039],[14.563,-2.699],[1.135,-0.872],[-5.32,0.559],[-20.057,4.167],[-22.194,-1.935],[-14.782,-4.161],[-14.286,-3.996],[-34.563,-3.766],[-29.483,6.318],[-34.091,1.888],[-10.684,-0.256],[14.59,4.862],[16.001,-1.073],[29.28,-6.274],[36.471,3.78],[28.174,7.897]],"o":[[-13.928,1.143],[-16.127,3.039],[-5.78,1.071],[-1.135,0.872],[21.578,-2.269],[20.057,-4.167],[15.586,1.36],[14.782,4.161],[28.737,8.039],[36.034,3.927],[30.16,-6.463],[6.919,-0.383],[5.693,0.136],[-14.766,-4.92],[-33.677,2.258],[-29.388,6.297],[-33.886,-3.512],[-35.533,-9.959]],"v":[[-172.5,-20.5],[-218.524,-13.667],[-265.5,-4.5],[-276.325,-1.277],[-270.5,-0.5],[-208.962,-12.153],[-146.5,-17.5],[-101.025,-8.477],[-57.5,4.5],[33.5,24.5],[134.5,18.5],[225.5,-2.5],[252.5,-2.5],[274.5,-4.5],[223.5,-6.5],[134.5,14.5],[33.5,20.5],[-57.5,0.5]],"c":true}],"h":1},{"t":56,"s":[{"i":[[40.056,-2.962],[9.794,-1.54],[10.043,-2.117],[8.296,-1.376],[8.052,-1.859],[-1.096,-0.772],[-2.581,0.236],[-20.054,4.68],[-21.323,-1.504],[-16.784,-4.74],[-16.328,-4.803],[-17.473,-3.68],[-20.047,-0.558],[-81.776,-4.786],[14.596,2.075],[25.737,-7.743],[41.525,1.156],[31.46,9.147]],"o":[[-9.779,0.723],[-9.794,1.54],[-7.766,1.637],[-8.296,1.376],[-4.966,1.147],[1.096,0.772],[19.46,-1.784],[20.054,-4.68],[17.535,1.236],[16.784,4.74],[16.059,4.723],[17.473,3.68],[80.185,2.231],[14.377,0.841],[-37.919,-5.39],[-34.708,10.443],[-40.641,-1.131],[-35.982,-10.463]],"v":[[-163.5,-21.5],[-192.802,-18.046],[-222.5,-12.5],[-246.786,-8.166],[-271.5,-3.5],[-276.16,-0.463],[-269.5,0.5],[-210.398,-11.466],[-148.5,-18.5],[-97.095,-8.675],[-47.5,6.5],[2.509,19.624],[58.5,26.5],[264.5,-1.5],[267.5,-5.5],[169.5,5.5],[59.5,22.5],[-46.5,2.5]],"c":true}],"h":1},{"t":57,"s":[{"i":[[30.443,0.217],[15.301,-3.019],[16.887,-3.052],[5.623,-0.802],[2.239,-1.383],[-8.524,1.116],[-1.303,0.253],[-17.302,3.11],[-16.025,-1.504],[-15.372,-4.368],[-15.243,-4],[-34.86,-3.713],[-31.045,8.515],[-35.738,-0.193],[19.858,4.38],[36.81,-9.33],[36.992,3.94],[30.148,8.057]],"o":[[-17.909,-0.127],[-15.301,3.019],[-2.267,0.409],[-5.623,0.802],[-4.398,2.716],[8.524,-1.116],[15.768,-3.066],[17.302,-3.11],[16.269,1.526],[15.372,4.368],[30.097,7.899],[37.13,3.955],[32.382,-8.882],[8.366,0.045],[-45.72,-10.084],[-32.219,8.166],[-35.884,-3.822],[-31.184,-8.334]],"v":[[-152.5,-22.5],[-201.267,-17.385],[-248.5,-7.5],[-262.021,-5.73],[-275.5,-2.5],[-264.276,-1.273],[-244.5,-4.5],[-194.193,-14.927],[-143.5,-18.5],[-96.23,-8.855],[-50.5,4.5],[45.5,25.5],[150.5,16.5],[248.5,-2.5],[272.5,-4.5],[147.5,12.5],[41.5,20.5],[-54.5,-1.5]],"c":true}],"h":1},{"t":58,"s":[{"i":[[29.932,-2.181],[9.791,-1.689],[11.618,-2.501],[9.175,-1.265],[8.06,-2.381],[3.258,-1.204],[-1.201,-1.2],[-4.472,0.815],[-34.112,-0.647],[-33.2,-8.873],[-39.552,-3.077],[-32.675,10.054],[-32.181,0],[-1.251,2.602],[1.196,0.174],[41.092,-8.464],[37.535,5.362],[30.333,8.435]],"o":[[-10.219,0.745],[-9.791,1.689],[-7.241,1.559],[-9.175,1.265],[6.832,-2.018],[-3.258,1.204],[3.358,3.358],[33.989,-6.191],[36.484,0.692],[31.555,8.433],[39.603,3.081],[23.173,-7.13],[5.509,0],[1.821,-3.789],[-52.264,-7.611],[-32.025,6.596],[-32.151,-4.593],[-29.46,-8.192]],"v":[[-159.5,-22.5],[-188.95,-18.817],[-220.5,-12.5],[-245.885,-8.617],[-272.5,-3.5],[-270.776,-3.914],[-277.5,0.5],[-245.5,-3.5],[-150.5,-19.5],[-47.5,3.5],[56.5,25.5],[166.5,11.5],[248.5,-1.5],[278.5,-1.5],[269.5,-4.5],[137.5,15.5],[31.5,19.5],[-61.5,-3.5]],"c":true}],"h":1},{"t":59,"s":[{"i":[[43.276,-3.706],[15.077,-3.111],[14.19,-2.401],[6.725,-1.373],[-1.275,-1.275],[-7.485,1.362],[-2.197,0.415],[-15.996,3.521],[-18.368,-1.232],[-32.523,-8.92],[-39.246,-3.176],[-32.894,9.897],[-37.912,-1.395],[-1.306,2.763],[0.789,0.167],[24.032,-7.082],[39.049,2.872],[32.469,8.765]],"o":[[-13.501,1.156],[-15.077,3.111],[-1.375,0.232],[-6.725,1.373],[1.863,1.862],[7.485,-1.362],[16.648,-3.149],[15.996,-3.52],[36.172,2.425],[31.669,8.686],[39.087,3.163],[25.761,-7.751],[0.818,0.03],[0.989,-2.092],[-36.291,-7.667],[-35.172,10.364],[-39.049,-2.872],[-37.587,-10.146]],"v":[[-162.5,-22.5],[-205.984,-15.434],[-250.5,-6.5],[-265.987,-3.782],[-277.5,0.5],[-260.751,0.208],[-243.5,-3.5],[-195.29,-14.786],[-144.5,-19.5],[-43.5,3.5],[59.5,25.5],[169.5,12.5],[264.5,-1.5],[278.5,-1.5],[274.5,-4.5],[170.5,7.5],[61.5,21.5],[-42.5,0.5]],"c":true}],"h":1},{"t":60,"s":[{"i":[[0.2,-0.012],[10.475,-2.004],[10.608,-2.373],[9.909,-1.772],[7.279,-1.552],[-8.651,0.474],[-2.224,0.413],[-15.824,3.854],[-16.923,-0.35],[-16.844,-4.561],[-16.212,-4.376],[-37.398,-3.922],[-32.967,10.162],[-31.525,1.009],[25.91,3.736],[37.307,-10.415],[36.996,5.172],[68.941,3.16]],"o":[[-10.49,0.611],[-10.475,2.004],[-6.085,1.361],[-9.909,1.772],[-10.829,2.309],[8.651,-0.474],[15.783,-2.934],[15.824,-3.854],[18.413,0.381],[16.844,4.561],[31.604,8.532],[39.665,4.16],[22.688,-6.994],[11.65,-0.373],[-39.881,-5.75],[-33.115,9.245],[-72.807,-10.179],[-0.937,-0.043]],"v":[[-154.5,-23.5],[-185.911,-19.322],[-217.5,-12.5],[-243.105,-7.643],[-270.5,-2.5],[-267.29,-0.458],[-244.5,-2.5],[-197.355,-13.963],[-148.5,-20.5],[-95.849,-11.996],[-46.5,2.5],[56.5,25.5],[168.5,13.5],[248.5,-0.5],[268.5,-4.5],[153.5,13.5],[44.5,19.5],[-152.5,-24.5]],"c":true}],"h":1},{"t":61,"s":[{"i":[[34.938,-3.213],[10.328,-1.926],[10.707,-2.38],[9.733,-1.737],[7.712,-1.641],[3.016,-0.575],[-0.849,-1.808],[-2.195,-0.037],[1.15,-0.061],[-41.658,0.254],[-30.268,-8.868],[-69.547,15.944],[-34.89,1.738],[-2.244,2.244],[5.238,0.401],[26.444,-7.986],[38.557,4.249],[33.396,9.287]],"o":[[-9.981,0.918],[-10.328,1.926],[-6.355,1.412],[-9.733,1.737],[5.214,-1.109],[-3.016,0.575],[0.371,0.79],[2.195,0.037],[43.361,-2.3],[33.118,-0.202],[56.786,16.638],[31.649,-7.256],[4.515,-0.225],[2.028,-2.028],[-38.588,-2.958],[-33.934,10.248],[-36.053,-3.973],[-28.862,-8.026]],"v":[[-156.5,-23.5],[-186.956,-19.096],[-218.5,-12.5],[-243.982,-7.672],[-271.5,-2.5],[-271.227,-3.188],[-277.5,0.5],[-272.359,1.547],[-269.5,1.5],[-149.5,-20.5],[-52.5,-1.5],[146.5,20.5],[242.5,-0.5],[278.5,-0.5],[266.5,-4.5],[169.5,10.5],[55.5,20.5],[-48.5,-3.5]],"c":true}],"h":1},{"t":62,"s":[{"i":[[1.196,-0.121],[10.285,-2.254],[9,-1.986],[9.676,-1.45],[8.425,-1.685],[2.239,-0.515],[-0.645,-1.402],[-2.364,0.101],[2.061,-0.088],[-20.877,5.573],[-22.41,-1.279],[-47.618,-12.974],[-53.088,12.548],[-36.762,2.875],[-1.667,1.667],[4.131,0.167],[31.594,-7.243],[93.099,5.644]],"o":[[-9.861,0.998],[-10.285,2.254],[-6.871,1.517],[-9.676,1.45],[2.312,-0.462],[-2.239,0.515],[0.605,1.315],[2.364,-0.101],[23.082,-0.988],[20.877,-5.573],[46.438,2.651],[47.619,12.974],[27.922,-6.6],[2.73,-0.213],[2.296,-2.296],[-46.334,-1.869],[-108.153,24.794],[-6.232,-0.378]],"v":[[-157.5,-23.5],[-188.146,-18.241],[-217.5,-11.5],[-243.334,-7.126],[-271.5,-2.5],[-273.25,-2.398],[-277.5,0.5],[-271.5,1.921],[-269.5,1.5],[-204.496,-11.201],[-140.5,-20.5],[-0.487,11.899],[149.5,21.5],[241.5,0.5],[278.5,-0.5],[263.5,-4.5],[148.5,17.5],[-140.5,-24.5]],"c":true}],"h":1},{"t":63,"s":[{"i":[[-0.023,0.002],[15.668,-3.78],[16.563,-2.825],[5.884,-0.555],[2.52,-1.277],[-8.458,0.683],[-2.44,0.433],[-15.739,3.903],[-15.332,0.421],[-12.767,-2.311],[-11.66,-3.091],[-36.904,-8.058],[-41.748,8.884],[-43.08,0.262],[16.856,3.421],[12.868,-0.952],[29.899,-5.984],[104.643,3.249]],"o":[[-15.767,1.055],[-15.667,3.78],[-2.945,0.502],[-5.884,0.555],[-4.27,2.164],[8.457,-0.683],[16.712,-2.966],[15.739,-3.903],[12.273,-0.337],[12.767,2.312],[32.638,8.653],[36.904,8.058],[31.978,-6.805],[5.563,-0.034],[-12.887,-2.615],[-40.168,2.97],[-116.46,23.31],[-0.751,-0.023]],"v":[[-151.5,-24.5],[-198.403,-16.328],[-246.5,-5.5],[-261.319,-4.081],[-275.5,-1.5],[-264.533,-0.052],[-243.5,-2.5],[-194.965,-13.909],[-148.5,-21.5],[-110.54,-18.071],[-73.5,-9.5],[30.668,19.653],[148.5,22.5],[260.5,-0.5],[272.5,-3.5],[244.5,-3.5],[147.5,18.5],[-150.5,-25.5]],"c":true}],"h":1},{"t":64,"s":[{"i":[[35.306,-3.241],[15.639,-3.711],[16.811,-2.723],[7.797,-1.444],[-1.079,-1.079],[-7.669,1.076],[-2.558,0.464],[-15.471,4.117],[-16.126,0.454],[-12.644,-2.094],[-11.831,-2.98],[-84.523,15.712],[-23.581,5.146],[-13.953,1.25],[-1.31,2.63],[1.341,0.065],[23.836,-6.944],[63.023,18.395]],"o":[[-15.633,1.435],[-15.639,3.711],[-0.891,0.144],[-7.797,1.444],[1.766,1.766],[7.669,-1.076],[16.988,-3.079],[15.471,-4.117],[12.594,-0.355],[12.644,2.094],[65.996,16.623],[18.504,-3.44],[10.586,-2.31],[2.8,-0.251],[1.969,-3.954],[-37.991,-1.85],[-77.684,22.631],[-32.205,-9.4]],"v":[[-151.5,-24.5],[-198.116,-15.966],[-246.5,-5.5],[-263.478,-2.701],[-277.5,1.5],[-260.594,1.672],[-242.5,-1.5],[-194.353,-13.468],[-147.5,-21.5],[-109.428,-18.501],[-72.5,-10.5],[147.5,23.5],[207.5,6.5],[241.5,1.5],[278.5,-0.5],[266.5,-3.5],[171.5,12.5],[-42.5,-5.5]],"c":true}],"h":1},{"t":65,"s":[{"i":[[47.642,-5.606],[15.132,-3.881],[16.629,-2.611],[7.879,-1.005],[-0.846,-1.773],[-4.658,0.054],[11.031,-0.377],[-4.818,0.871],[-2.527,0.407],[-32.959,1.523],[-45.298,-13.045],[-54.685,10.999],[-22.307,4.769],[-18.122,0.504],[-0.944,1.936],[2.403,0],[31.738,-6.261],[45.512,13.057]],"o":[[-15.841,1.864],[-15.132,3.881],[-1.331,0.209],[-7.879,1.005],[0.399,0.837],[4.658,-0.053],[3.202,-0.109],[4.818,-0.871],[33.879,-5.456],[51.57,-2.384],[46.678,13.443],[17.686,-3.557],[14.854,-3.176],[5.368,-0.149],[1.856,-3.805],[-44.893,0],[-55.151,10.88],[-44.076,-12.645]],"v":[[-152.5,-24.5],[-198.409,-15.06],[-245.5,-4.5],[-263.133,-2.673],[-277.5,1.5],[-264.927,2.345],[-269.5,2.5],[-256.493,0.723],[-244.5,-1.5],[-147.5,-21.5],[-3.5,8.5],[150.5,23.5],[209.5,6.5],[260.5,0.5],[278.5,-0.5],[262.5,-3.5],[149.5,19.5],[-3.5,3.5]],"c":true}],"h":1},{"t":66,"s":[{"i":[[35.897,-4.134],[10.192,-2.584],[10.94,-2.48],[10.151,-1.451],[9.192,-1.564],[0.393,-0.917],[-5.638,0.192],[-4.841,0.587],[-3.176,0.536],[-15.744,4.267],[-15.84,1.202],[-31.326,-8.677],[-75.983,21.798],[-30.653,2.819],[-0.821,1.704],[2.09,0.064],[26.508,-7.782],[62.561,17.329]],"o":[[-10.294,1.185],[-10.191,2.584],[-7.204,1.633],[-10.151,1.451],[-3.067,0.522],[-0.393,0.917],[3.461,-0.117],[4.841,-0.587],[16.185,-2.731],[15.744,-4.267],[38.34,-2.909],[63.138,17.489],[23.921,-6.862],[3.435,-0.316],[1.508,-3.129],[-36.917,-1.129],[-77.115,22.638],[-32.394,-8.973]],"v":[[-151.5,-24.5],[-182.016,-18.471],[-213.5,-10.5],[-240.509,-5.948],[-270.5,-1.5],[-276.529,1.035],[-269.5,2.5],[-256.286,1.314],[-243.5,-0.5],[-195.742,-12.147],[-148.5,-21.5],[-41.5,-3.5],[170.5,17.5],[248.5,1.5],[278.5,-0.5],[266.5,-3.5],[172.5,13.5],[-41.5,-7.5]],"c":true}],"h":1},{"t":67,"s":[{"i":[[48.951,-6.006],[18.178,-4.444],[20.871,-2.087],[3.267,-1.177],[-8.913,-0.009],[-19.414,5.55],[-19.849,1.825],[-13.298,-1.873],[-11.757,-2.707],[-11.534,-3.243],[-11.049,-3.305],[-25.732,-4.128],[-27.336,5.314],[-34.159,3.962],[-1.053,1.276],[1.306,-0.006],[34.227,-5.886],[44.909,13.108]],"o":[[-17.418,2.137],[-18.178,4.444],[-2.847,0.284],[-3.267,1.177],[23.495,0.024],[19.414,-5.55],[13.052,-1.2],[13.298,1.873],[11.816,2.721],[11.534,3.243],[22.738,6.803],[25.732,4.128],[27.637,-5.373],[3.644,-0.423],[3.243,-3.928],[-47.341,0.208],[-56.935,9.79],[-43.574,-12.718]],"v":[[-151.5,-24.5],[-204.41,-13.463],[-262.5,-2.5],[-274.82,0.207],[-269.5,2.5],[-206.265,-8.113],[-148.5,-21.5],[-108.529,-19.931],[-70.5,-12.5],[-35.425,-3.438],[-1.5,6.5],[71.551,24.588],[151.5,24.5],[242.5,2.5],[278.5,0.5],[264.5,-2.5],[149.5,20.5],[-2.5,1.5]],"c":true}],"h":1},{"t":68,"s":[{"i":[[42.311,-5.388],[15.576,-4.162],[17.565,-2.425],[6.123,-0.318],[2.624,-1.33],[-9.389,0.654],[-0.873,0.135],[-15.211,4.183],[-16.073,1.478],[-17.891,-3.346],[-16.475,-4.546],[-25.332,-6.304],[-30.088,0],[-46.829,3.9],[1.508,3.091],[3.051,-0.283],[50.604,0],[49.707,13.607]],"o":[[-15.13,1.927],[-15.576,4.162],[-2.886,0.399],[-6.122,0.318],[-5.429,2.752],[9.389,-0.654],[18.084,-2.791],[15.211,-4.183],[20.963,-1.928],[17.891,3.346],[24.584,6.783],[25.332,6.304],[50.743,0],[3.603,-0.3],[-1.321,-2.708],[-49.933,4.632],[-61.836,0],[-33.77,-9.244]],"v":[[-150.5,-24.5],[-196.174,-14.373],[-245.5,-3.5],[-260.697,-2.699],[-275.5,-0.5],[-263.727,1.665],[-242.5,-0.5],[-193.492,-11.984],[-147.5,-21.5],[-89.634,-18.355],[-38.5,-5.5],[35.372,15.587],[117.5,26.5],[250.5,2.5],[278.5,-1.5],[249.5,-1.5],[116.5,22.5],[-39.5,-9.5]],"c":true}],"h":1},{"t":69,"s":[{"i":[[52.666,-6.329],[10.152,-2.686],[12.882,-2.992],[10.87,-1.516],[8.227,-1.474],[0.148,-0.845],[-6.073,0.184],[-3.898,0.542],[-4.947,0.698],[-16.234,4.531],[-16.104,1.341],[-45.554,-12.396],[-54.734,9.689],[-32.931,4.013],[-0.785,1.576],[1.444,-0.043],[33.294,-5.542],[40.34,10.955]],"o":[[-10.512,1.264],[-10.152,2.686],[-6.294,1.462],[-10.87,1.516],[-4.48,0.802],[-0.148,0.845],[4.46,-0.135],[3.898,-0.542],[17.961,-2.534],[16.234,-4.531],[55.335,-4.608],[41.408,11.267],[27.168,-4.81],[2.016,-0.246],[2.07,-4.155],[-42.121,1.243],[-56.269,9.367],[-44.212,-12.006]],"v":[[-148.5,-24.5],[-178.722,-18.297],[-212.5,-9.5],[-240.051,-5.009],[-270.5,-0.5],[-277.915,2.24],[-269.5,3.5],[-257.366,2.422],[-244.5,0.5],[-193.607,-11.395],[-145.5,-21.5],[1.5,4.5],[151.5,25.5],[243.5,3.5],[278.5,0.5],[262.5,-2.5],[150.5,21.5],[0.5,0.5]],"c":true}],"h":1},{"t":70,"s":[{"i":[[51.472,-6.186],[16.157,-4.205],[18.185,-2.354],[8.002,-1.163],[-0.554,-1.149],[-8.094,1.002],[-0.615,0.083],[-16.611,4.565],[-15.279,1.273],[-23.531,-5.047],[-22.417,-6.016],[-23.553,-5.034],[-27.499,2.119],[-24.207,5.722],[-21.486,1.676],[6.706,-0.33],[33.333,-2.776],[44.326,11.492]],"o":[[-15.189,1.825],[-16.157,4.205],[-1.548,0.2],[-8.002,1.162],[1.009,2.091],[8.094,-1.002],[18.279,-2.469],[16.611,-4.565],[26.461,-2.203],[23.53,5.047],[22.288,5.98],[23.553,5.035],[21.182,-1.632],[17.762,-4.198],[20.239,-1.578],[-45.448,2.235],[-56.125,4.674],[-43.549,-11.291]],"v":[[-146.5,-24.5],[-193.253,-14.397],[-244.5,-3.5],[-262.577,-1.212],[-277.5,2.5],[-260.204,3.13],[-243.5,0.5],[-191.25,-11.397],[-143.5,-21.5],[-68.967,-15.664],[-0.5,2.5],[67.592,20.574],[143.5,26.5],[207.5,10.5],[268.5,1.5],[263.5,-1.5],[143.5,22.5],[-0.5,-1.5]],"c":true}],"h":1},{"t":71,"s":[{"i":[[54.747,-4.623],[10.804,-2.918],[14.114,-3.257],[9.983,-1.22],[10.275,-1.093],[-1.284,-0.916],[-7.149,0.225],[-15.073,3.403],[-14.606,3.849],[-35.328,-7.181],[-29.898,-8.233],[-40.523,4.533],[-23.141,5.529],[-17.717,1.427],[1.844,3.516],[4.818,-0.674],[30.57,-3.131],[42.752,11.084]],"o":[[-12.671,1.07],[-10.804,2.918],[-8.791,2.029],[-9.983,1.22],[-5.286,0.562],[1.284,0.916],[17.103,-0.538],[15.073,-3.403],[37.79,-9.958],[35.328,7.181],[33.021,9.093],[19.331,-2.162],[10.186,-2.434],[-0.578,0.047],[-1.52,-2.898],[-37.903,5.299],[-55.565,5.692],[-45.773,-11.867]],"v":[[-141.5,-24.5],[-175.418,-18.14],[-211.5,-8.5],[-239.887,-3.798],[-270.5,-0.5],[-276.326,2.09],[-263.5,3.5],[-215.627,-3.017],[-171.5,-14.5],[-61.082,-14.643],[37.5,12.5],[148.5,26.5],[211.5,10.5],[262.5,2.5],[278.5,-1.5],[243.5,0.5],[147.5,22.5],[3.5,-1.5]],"c":true}],"h":1},{"t":72,"s":[{"i":[[55.14,-3.823],[1.916,0.086],[1.971,-0.248],[9.905,-2.963],[13.407,-3.02],[5.588,-1.047],[6.174,-0.804],[8.459,-3.028],[-3.037,0.388],[-30.283,4.26],[-46.03,-12.376],[-55.171,6.171],[-21.836,4.984],[-17.478,2.055],[0.878,1.861],[4.983,-0.675],[30.367,-2.902],[42.531,11.185]],"o":[[-1.365,0.095],[-1.916,-0.086],[-8.971,1.129],[-9.906,2.963],[-4.473,1.008],[-5.588,1.047],[-8.327,1.085],[-11.89,4.257],[37.733,-4.822],[55.755,-7.843],[46.582,12.525],[19.139,-2.141],[11.55,-2.636],[0.491,-0.058],[-1.591,-3.372],[-36.556,4.953],[-54.243,5.184],[-45.445,-11.951]],"v":[[-137.5,-24.5],[-142.545,-24.615],[-148.5,-24.5],[-176.173,-17.918],[-210.5,-8.5],[-225.724,-5.348],[-243.5,-2.5],[-274.5,0.5],[-242.5,1.5],[-147.5,-20.5],[1.5,1.5],[150.5,26.5],[211.5,10.5],[271.5,2.5],[278.5,-0.5],[243.5,0.5],[148.5,22.5],[6.5,-1.5]],"c":true}],"h":1},{"t":73,"s":[{"i":[[82.502,-5.72],[2.841,-0.073],[2.865,-0.517],[15.76,-4.448],[16.624,-1.984],[8.358,-0.607],[-0.583,-1.317],[-6.2,0.753],[-30.187,4.998],[-46.329,-13.086],[-23.85,-5.276],[-28.513,3.189],[-22.815,5.254],[-19.11,2.34],[1.547,3.172],[1.347,-0.201],[33.675,-3.449],[22.696,4.808]],"o":[[-2.77,0.192],[-2.841,0.073],[-12.336,2.224],[-15.76,4.448],[-2.149,0.256],[-8.358,0.607],[1.238,2.797],[38.506,-4.676],[56.692,-9.386],[22.164,6.261],[25.021,5.535],[18.973,-2.122],[13.455,-3.098],[-5.095,0.624],[-2.225,-4.563],[-38.563,5.763],[-26.221,2.686],[-69.943,-14.816]],"v":[[-133.5,-24.5],[-141.929,-24.243],[-150.5,-23.5],[-193.284,-12.32],[-242.5,-1.5],[-262.049,-0.296],[-277.5,2.5],[-241.5,2.5],[-149.5,-19.5],[1.5,0.5],[71.5,18.5],[151.5,26.5],[213.5,11.5],[271.5,2.5],[278.5,-0.5],[244.5,1.5],[150.5,22.5],[75.5,15.5]],"c":true}],"h":1},{"t":74,"s":[{"i":[[80.946,-5.612],[2.845,0.014],[3.79,-0.723],[15.53,-4.433],[17.317,-1.873],[8.236,-0.468],[0.409,-0.84],[-0.27,0.008],[-33.33,5.978],[-46.221,-13.031],[-24.398,-5.434],[-27.173,2.894],[-18.831,4.451],[-14.076,2.235],[1.251,2.701],[0.909,-0.14],[34.79,-3.564],[22.628,4.893]],"o":[[-4.83,0.335],[-2.845,-0.014],[-12.563,2.395],[-15.53,4.433],[-2.646,0.286],[-8.236,0.468],[-1.942,3.981],[44.567,-1.345],[55.912,-10.028],[22.082,6.225],[24.415,5.438],[18.283,-1.947],[9.291,-2.196],[2.873,-0.456],[-1.744,-3.765],[-37.907,5.833],[-25.949,2.658],[-68.417,-14.796]],"v":[[-129.5,-24.5],[-140.28,-24.291],[-149.5,-23.5],[-191.934,-12.109],[-241.5,-1.5],[-261.177,-0.416],[-277.5,1.5],[-261.5,4.5],[-148.5,-19.5],[3.5,-0.5],[73.5,17.5],[152.5,26.5],[213.5,11.5],[245.5,5.5],[278.5,-0.5],[244.5,1.5],[151.5,22.5],[77.5,14.5]],"c":true}],"h":1},{"t":75,"s":[{"i":[[78.677,-5.066],[3.973,-0.165],[4.719,-0.992],[9.785,-2.9],[11.992,-2.743],[10.432,-1.243],[9.303,-0.206],[-3.164,-0.968],[-4.582,0.096],[-18.636,4.829],[-15.922,3.233],[-66.401,-15.155],[-26.227,2.287],[-20.14,4.73],[-15.431,2.877],[7.76,-0.865],[33.146,-2.721],[22.007,4.825]],"o":[[-5.388,0.347],[-3.973,0.165],[-7.87,1.655],[-9.785,2.9],[-7.969,1.823],[-10.432,1.243],[-10.238,0.226],[3.164,0.967],[21.533,-0.45],[18.636,-4.829],[81.596,-16.569],[24.19,5.521],[19.209,-1.675],[10.777,-2.531],[17.037,-3.176],[-38.671,4.309],[-24.675,2.026],[-66.487,-14.576]],"v":[[-124.5,-24.5],[-138.002,-23.984],[-150.5,-22.5],[-176.908,-15.316],[-209.5,-6.5],[-238,-1.787],[-268.5,0.5],[-276.115,2.742],[-261.5,4.5],[-201.292,-4.913],[-149.5,-18.5],[72.5,17.5],[151.5,26.5],[214.5,12.5],[271.5,2.5],[261.5,-0.5],[150.5,22.5],[78.5,14.5]],"c":true}],"h":1},{"t":76,"s":[{"i":[[49.228,-3.17],[12.908,-3.523],[17.614,-3.765],[8.93,-1.074],[8.061,-0.159],[3.967,-0.73],[-7.685,-0.985],[-20.682,5.781],[-16.794,3.012],[-36.8,-8.656],[-33.176,-7.841],[-13.234,-2.083],[-13.017,1.181],[-21.676,5.146],[-20.861,3.775],[7.067,-0.684],[34.446,-2.23],[39.74,10.792]],"o":[[-17.754,1.143],[-12.908,3.523],[-7.219,1.543],[-8.93,1.074],[-4.817,0.095],[-3.967,0.73],[24.478,3.136],[20.682,-5.781],[41.621,-7.465],[36.801,8.656],[12.047,2.848],[13.234,2.084],[19.035,-1.728],[16.944,-4.022],[16.04,-2.903],[-39.881,3.859],[-48.294,3.127],[-42.051,-11.42]],"v":[[-120.5,-24.5],[-164.105,-16.967],[-207.5,-5.5],[-232.368,-1.462],[-258.5,0.5],[-274.377,1.833],[-271.5,4.5],[-203.737,-2.389],[-147.5,-18.5],[-30.166,-12.479],[74.5,16.5],[112.772,24.522],[152.5,26.5],[214.5,12.5],[272.5,3.5],[260.5,0.5],[149.5,22.5],[17.5,-3.5]],"c":true}],"h":1},{"t":77,"s":[{"i":[[74.107,-5.138],[5.614,-0.409],[4.757,-1.031],[17.023,-4.601],[14.695,-0.732],[4.103,0.253],[5.656,-0.766],[-9.618,-0.695],[-3.368,0.249],[-15.206,4.439],[-13.923,2.895],[-64.933,-16.288],[-27.337,1.138],[-31.068,5.314],[-4.846,1.021],[7,-0.809],[34.9,-1.081],[21.534,5.134]],"o":[[-4.789,0.332],[-5.613,0.409],[-13.214,2.864],[-17.023,4.601],[-4.932,0.246],[-4.103,-0.253],[-10.841,1.468],[9.618,0.695],[18.252,-1.349],[15.206,-4.439],[80.671,-16.772],[24.567,6.162],[30.708,-1.279],[2.354,-0.403],[15.969,-3.364],[-38.985,4.506],[-23.336,0.723],[-62.947,-15.007]],"v":[[-116.5,-24.5],[-132.524,-23.524],[-148.5,-21.5],[-195.388,-8.901],[-244.5,0.5],[-257.457,0.11],[-271.5,0.5],[-266.657,3.788],[-240.5,4.5],[-190.752,-5.341],[-147.5,-17.5],[73.5,14.5],[149.5,26.5],[246.5,6.5],[272.5,3.5],[260.5,0.5],[148.5,22.5],[80.5,12.5]],"c":true}],"h":1},{"t":78,"s":[{"i":[[51.397,-3.564],[0.336,0.004],[0.328,0.008],[18.979,-5.528],[21.035,-2.388],[11.03,-0.332],[0.519,-0.518],[-2.525,-0.696],[-1.94,-0.179],[-23.935,7.12],[-37.887,-5.231],[-32.09,-9.171],[-37.512,1.056],[-18.933,4.36],[-19.189,3.335],[8.36,-1.005],[33.26,-0.852],[38.731,10.455]],"o":[[-0.328,0.023],[-0.336,-0.004],[-20.049,-0.498],[-18.979,5.528],[-1.362,0.154],[-11.03,0.332],[-1.038,1.038],[2.525,0.696],[35.692,3.301],[35.218,-10.477],[36.868,5.09],[32.23,9.211],[19.98,-0.562],[15.985,-3.681],[15.867,-2.757],[-40.262,4.839],[-47.025,1.205],[-41.72,-11.262]],"v":[[-112.5,-24.5],[-113.5,-24.477],[-114.5,-24.5],[-172.261,-14.665],[-231.5,-0.5],[-255.133,0.227],[-277.5,1.5],[-274.233,4.144],[-266.5,5.5],[-170.5,-9.5],[-58.5,-18.5],[43.5,5.5],[149.5,26.5],[213.5,13.5],[271.5,3.5],[261.5,0.5],[149.5,22.5],[22.5,-4.5]],"c":true}],"h":1},{"t":79,"s":[{"i":[[74.389,-4.79],[12.71,-2.978],[15.551,-4.082],[6.69,-1.129],[8.544,-0.988],[11.405,-0.359],[0.459,-0.46],[-2.657,-0.231],[-24.179,7.044],[-39.158,-4.657],[-32.161,-9.138],[-36.898,1.067],[-18.672,4.149],[-18.519,3.452],[1.357,2.89],[2.233,-0.297],[32.998,-0.637],[20.358,5.064]],"o":[[-15.608,1.005],[-12.71,2.978],[-5.695,1.495],[-6.69,1.129],[-0.92,0.106],[-11.405,0.358],[-2.481,2.481],[37.597,3.266],[35.739,-10.412],[36.809,4.377],[32.097,9.119],[19.672,-0.569],[15.811,-3.513],[0.636,-0.119],[-0.568,-1.209],[-38.796,5.156],[-21.853,0.422],[-62.017,-15.426]],"v":[[-107.5,-24.5],[-148.543,-18.307],[-189.5,-7.5],[-207.864,-3.619],[-230.5,-0.5],[-254.345,0.235],[-277.5,1.5],[-266.5,5.5],[-170.5,-9.5],[-57.5,-19.5],[45.5,4.5],[150.5,26.5],[214.5,13.5],[271.5,3.5],[278.5,0.5],[261.5,0.5],[149.5,22.5],[84.5,11.5]],"c":true}],"h":1},{"t":80,"s":[{"i":[[73.519,-4.734],[0.337,0.002],[0.326,0.014],[21.464,-6.424],[24.153,-1.337],[8.881,0.183],[0.773,-1.585],[-2.867,-0.318],[-1.342,-0.072],[-26.711,8.021],[-39.939,-4.6],[-32.14,-8.938],[-38.431,2.753],[-33.528,5.642],[1.554,3.21],[5.419,-0.676],[35.604,-1.363],[20.437,4.967]],"o":[[-0.326,0.021],[-0.337,-0.002],[-22.989,-1.032],[-21.464,6.423],[-2.702,0.149],[-8.881,-0.184],[-0.808,1.658],[2.867,0.318],[39.202,2.082],[34.625,-10.398],[37.914,4.367],[32.216,8.959],[33.432,-2.395],[4.369,-0.735],[-0.815,-1.684],[-40.363,5.036],[-22.025,0.843],[-61.482,-14.943]],"v":[[-103.5,-24.5],[-104.5,-24.473],[-105.5,-24.5],[-171.127,-13.277],[-238.5,1.5],[-259.447,0.924],[-277.5,2.5],[-273.113,5.19],[-265.5,5.5],[-167.5,-8.5],[-54.5,-19.5],[49.5,4.5],[156.5,25.5],[248.5,7.5],[278.5,0.5],[263.5,1.5],[153.5,21.5],[88.5,11.5]],"c":true}],"h":1},{"t":81,"s":[{"i":[[70.167,-4.865],[12.06,-2.555],[13.367,-3.849],[13.296,-2.038],[11.02,-0.163],[6.299,0.4],[0.764,-1.601],[-2.626,-0.227],[-2.377,-0.243],[-25.122,7.516],[-41.044,-4.138],[-31.792,-8.497],[-37.333,0.094],[-21.839,4.952],[-18.344,3.988],[7.219,-0.916],[34.558,0.289],[19.778,5.191]],"o":[[-13.392,0.928],[-12.06,2.556],[-12.796,3.685],[-13.296,2.038],[-0.04,0],[-6.299,-0.4],[-0.881,1.848],[2.626,0.227],[35.578,3.636],[34.333,-10.272],[37.411,3.771],[33.721,9.012],[20.478,-0.052],[14.128,-3.203],[15.385,-3.344],[-36.239,4.6],[-20.899,-0.175],[-58.313,-15.304]],"v":[[-99.5,-24.5],[-137.019,-19.191],[-174.5,-9.5],[-214.332,-0.859],[-251.5,2.5],[-263.957,1.299],[-277.5,2.5],[-273.943,5.203],[-265.5,5.5],[-168.5,-7.5],[-56.5,-20.5],[47.5,2.5],[151.5,25.5],[216.5,14.5],[272.5,4.5],[261.5,1.5],[150.5,21.5],[87.5,10.5]],"c":true}],"h":1},{"t":82,"s":[{"i":[[68.862,-4.774],[13.726,-3.133],[16.428,-4.311],[14.348,-1.694],[14.19,0.511],[0.095,-0.899],[-6.423,-0.659],[-16.048,3.074],[-13.003,3.839],[-18.499,2.422],[-20.43,-1.879],[-32.243,-8.6],[-35.919,-0.327],[-21.219,4.663],[-17.754,4.367],[7.231,-0.98],[33.778,0.729],[19.504,5.056]],"o":[[-16.668,1.155],[-13.726,3.133],[-10.418,2.735],[-14.348,1.694],[-7.044,-0.254],[-0.095,0.899],[20.804,2.134],[16.048,-3.074],[17.575,-5.189],[18.499,-2.422],[38.627,3.552],[33.161,8.845],[19.992,0.182],[14.752,-3.241],[15.14,-3.724],[-34.888,4.727],[-20.299,-0.438],[-56.846,-14.738]],"v":[[-95.5,-24.5],[-139.68,-17.867],[-183.5,-6.5],[-221.672,0.435],[-265.5,2.5],[-276.101,3.815],[-266.5,6.5],[-211.649,3.98],[-168.5,-7.5],[-114.641,-19.301],[-56.5,-20.5],[47.5,2.5],[151.5,25.5],[216.5,14.5],[272.5,4.5],[261.5,1.5],[150.5,21.5],[89.5,9.5]],"c":true}],"h":1},{"t":83,"s":[{"i":[[69.993,-4.507],[11.675,-2.134],[11.765,-3.593],[14.916,-2.331],[18.024,0],[5.503,-0.224],[-5.67,-2.103],[-6.334,-0.787],[-42.575,8.748],[-36.707,-5.132],[-29.17,-7.47],[-32.428,-1.411],[-18.614,3.897],[-16.458,3.206],[6.496,-0.954],[6.957,-1.436],[20.816,0.703],[18.822,5.183]],"o":[[-13.537,0.871],[-11.675,2.134],[-15.313,4.676],[-14.916,2.331],[-2.659,0],[-5.503,0.224],[4.419,1.639],[56.58,7.029],[29.795,-6.122],[32.584,4.556],[30.785,7.884],[21.953,0.955],[14.979,-3.136],[16.47,-3.208],[-14.491,2.127],[-21.363,4.41],[-20.326,-0.687],[-57.655,-15.876]],"v":[[-90.5,-24.5],[-127.829,-20.041],[-162.5,-11.5],[-206.966,-0.993],[-255.5,2.5],[-271.246,2.422],[-274.5,5.5],[-268.5,6.5],[-137.5,-14.5],[-34.5,-18.5],[56.5,3.5],[149.5,24.5],[215.5,14.5],[271.5,4.5],[262.5,1.5],[215.5,10.5],[150.5,20.5],[91.5,8.5]],"c":true}],"h":1},{"t":84,"s":[{"i":[[68.931,-4.779],[0.336,0.004],[0.328,0.008],[25.157,-7.483],[32.342,1.211],[5.168,-0.413],[-12.302,-1.631],[-16.926,2.725],[-11.961,3.531],[-43.034,-2.287],[-49.9,-13.229],[-17.509,-0.292],[-17.753,3.7],[-16.288,3.461],[1.438,3.05],[1.015,-0.154],[35.612,1.095],[18.088,4.873]],"o":[[-0.328,0.023],[-0.336,-0.004],[-29.031,-0.721],[-25.157,7.483],[-7.627,-0.285],[-5.169,0.413],[18.334,2.431],[16.926,-2.725],[36.333,-10.727],[60.383,3.209],[16.955,4.495],[19.866,0.332],[14.678,-3.059],[-2.853,0.606],[-1.316,-2.79],[-37.152,5.651],[-19.21,-0.59],[-55.417,-14.93]],"v":[[-86.5,-24.5],[-87.5,-24.477],[-88.5,-24.5],[-167.017,-10.133],[-250.5,3.5],[-273.447,3.562],[-266.5,6.5],[-212.721,4.972],[-168.5,-5.5],[-56.5,-21.5],[99.5,14.5],[153.5,24.5],[217.5,14.5],[271.5,4.5],[278.5,1.5],[263.5,2.5],[151.5,20.5],[93.5,8.5]],"c":true}],"h":1},{"t":85,"s":[{"i":[[41.539,-2.88],[14.382,-3.265],[17.272,-4.607],[12.565,-1.692],[14.308,0.283],[6.052,0.053],[-6.982,-2.326],[-4.481,-0.307],[-1.888,-0.045],[-74.924,-2.591],[-30.778,-8.983],[-34.029,-2.582],[-22.464,4.518],[-14.872,3.48],[5.148,-0.712],[14.974,-3.012],[22.21,1.937],[34.859,9.751]],"o":[[-19.198,1.331],[-14.382,3.266],[-9.43,2.515],[-12.566,1.692],[-5.774,-0.114],[-6.052,-0.053],[2.186,0.729],[4.481,0.307],[77.28,1.851],[42.077,1.455],[32.319,9.433],[22.716,1.724],[10.835,-2.179],[15.431,-3.611],[-19.286,2.667],[-22.37,4.499],[-37.747,-3.292],[-36.079,-10.092]],"v":[[-82.5,-24.5],[-130.945,-17.457],[-176.5,-5.5],[-209.841,1.099],[-250.5,3.5],[-271.567,2.67],[-273.5,5.5],[-262.277,7.013],[-251.5,7.5],[-59.5,-21.5],[46.5,-1.5],[148.5,23.5],[216.5,15.5],[272.5,5.5],[263.5,2.5],[215.5,11.5],[147.5,19.5],[38.5,-8.5]],"c":true}],"h":1},{"t":86,"s":[{"i":[[65.667,-4.228],[13.627,-2.517],[12.35,-3.957],[13.456,-2.488],[15.355,0.062],[8.089,0.739],[0.966,-0.966],[-4.642,-0.821],[-0.139,-0.01],[-39.556,10.151],[-39.787,-3.995],[-29.284,-7.685],[-31.559,-1.002],[-21.111,4.185],[-17.258,4.353],[6.966,-1.035],[35.09,1.365],[17.682,4.956]],"o":[[-15.144,0.975],[-13.626,2.517],[-12.822,4.108],[-13.456,2.488],[-2.678,-0.011],[-8.089,-0.739],[-1.707,1.707],[4.642,0.821],[47.325,3.173],[31.231,-8.014],[34.986,3.513],[32.216,8.455],[20.07,0.637],[16.306,-3.232],[15.31,-3.862],[-32.237,4.789],[-17.678,-0.688],[-53.99,-15.132]],"v":[[-77.5,-24.5],[-120.596,-19.236],[-159.5,-9.5],[-198.601,0.627],[-241.5,4.5],[-260.784,2.767],[-277.5,2.5],[-270.384,6.273],[-260.5,7.5],[-141.5,-10.5],[-36.5,-20.5],[59.5,0.5],[153.5,23.5],[218.5,15.5],[272.5,5.5],[261.5,2.5],[152.5,19.5],[96.5,7.5]],"c":true}],"h":1},{"t":87,"s":[{"i":[[63.012,-4.057],[15.766,-3.542],[16.067,-4.618],[13.343,-1.702],[14.746,0.649],[6.487,0.015],[-6.668,-2.31],[-9.692,0.262],[-6.794,0.529],[-25.255,6.549],[-31.014,0.474],[-31.147,-9.005],[-35.437,-2.689],[-21.513,4.06],[-17.409,4.503],[7.524,-1.175],[36.939,3.221],[17.455,4.892]],"o":[[-18.87,1.215],[-15.766,3.542],[-9.88,2.84],[-13.343,1.702],[-5.719,-0.252],[-6.487,-0.015],[7.436,2.576],[9.693,-0.262],[29.964,-2.332],[25.255,-6.549],[42.574,-0.65],[33.512,9.688],[21.755,1.651],[16.773,-3.165],[14.951,-3.867],[-32.127,5.015],[-17.844,-1.556],[-52.586,-14.739]],"v":[[-73.5,-24.5],[-124.603,-17.052],[-171.5,-4.5],[-206.85,2.616],[-249.5,4.5],[-271.29,3.579],[-274.5,6.5],[-247.519,9.328],[-221.5,7.5],[-141.288,-8.393],[-59.5,-21.5],[49.5,-3.5],[151.5,22.5],[218.5,15.5],[272.5,5.5],[261.5,2.5],[150.5,18.5],[97.5,5.5]],"c":true}],"h":1},{"t":88,"s":[{"i":[[61.563,-4.268],[14.592,-2.865],[14.447,-4.347],[15.218,-2.197],[19.258,0.96],[4.405,0.731],[1.183,-1.183],[-3.774,-0.62],[-42.044,9.596],[-38.22,-3.776],[-27.347,-8.013],[-30.857,-2.986],[-21.011,3.778],[-18.052,4.69],[3.733,3.733],[3.395,-0.545],[37.368,3.616],[17.052,4.723]],"o":[[-17.184,1.191],[-14.592,2.865],[-13.871,4.173],[-15.218,2.197],[-5.197,-0.259],[-4.405,-0.731],[-2.578,2.578],[57.691,9.473],[28.702,-6.551],[34.323,3.391],[28.109,8.236],[22.255,2.154],[16.055,-2.887],[-19.167,4.98],[-2.118,-2.118],[-34.317,5.511],[-17.303,-1.675],[-50.685,-14.039]],"v":[[-69.5,-24.5],[-116.552,-18.367],[-159.5,-7.5],[-202.459,2.35],[-253.5,4.5],[-268.511,2.418],[-277.5,2.5],[-266.5,7.5],[-128.5,-12.5],[-28.5,-20.5],[62.5,-1.5],[149.5,21.5],[217.5,15.5],[272.5,5.5],[278.5,1.5],[262.5,3.5],[149.5,17.5],[97.5,4.5]],"c":true}],"h":1},{"t":89,"s":[{"i":[[62.483,-4.332],[4.237,-0.434],[5.191,-0.79],[24.745,-6.096],[30.483,2.266],[7.01,-0.008],[-8.269,-2.208],[-19.228,2.055],[-12.442,3.494],[-41.012,1.536],[-32.279,-8.906],[-34.68,-2.484],[-21.355,3.9],[-12.328,2.849],[1.174,2.569],[0.138,-0.021],[36.565,2.817],[16.959,4.744]],"o":[[-6.862,0.476],[-4.237,0.434],[-25.535,3.884],[-24.745,6.096],[-3.231,-0.24],[-7.01,0.008],[17.644,4.713],[19.228,-2.055],[33.889,-9.517],[43.102,-1.614],[32.437,8.95],[20.834,1.492],[8.762,-1.6],[-2.893,0.669],[-1.172,-2.565],[-34.61,5.299],[-17.316,-1.334],[-50.554,-14.141]],"v":[[-65.5,-24.5],[-81.253,-23.235],[-94.5,-21.5],[-168.289,-3.888],[-249.5,4.5],[-269.626,3.664],[-272.5,6.5],[-215.099,9.155],[-165.5,-0.5],[-57.5,-21.5],[53.5,-4.5],[156.5,21.5],[220.5,15.5],[272.5,5.5],[278.5,2.5],[264.5,3.5],[155.5,17.5],[102.5,5.5]],"c":true}],"h":1},{"t":90,"s":[{"i":[[61.734,-3.975],[8.847,-1.291],[9.407,-2.114],[15.922,-4.334],[21.064,-0.789],[7.468,0.443],[6.57,0.549],[0.411,-0.903],[-6.722,-1.062],[-23.717,6.518],[-38.761,2.291],[-47.495,-13.81],[-17.118,-1.753],[-35.746,6.528],[14.264,-1.188],[13.206,-2.222],[20.169,2.082],[16.459,4.703]],"o":[[-11.204,0.721],[-8.847,1.291],[-17.247,3.876],[-15.922,4.334],[-8.56,0.321],[-7.468,-0.443],[-8.078,-0.675],[-0.411,0.903],[36.281,5.73],[35.078,-9.64],[65.007,-3.843],[16.662,4.845],[40.206,4.118],[5.436,-0.993],[-19.891,1.657],[-23.448,3.946],[-16.828,-1.737],[-49.543,-14.158]],"v":[[-60.5,-24.5],[-89.848,-21.544],[-116.5,-16.5],[-164.637,-3.185],[-218.5,5.5],[-242.493,5.152],[-263.5,3.5],[-276.1,4.198],[-266.5,7.5],[-165.5,0.5],[-60.5,-21.5],[101.5,7.5],[152.5,20.5],[265.5,7.5],[272.5,2.5],[218.5,11.5],[152.5,16.5],[102.5,3.5]],"c":true}],"h":1},{"t":91,"s":[{"i":[[58.537,-3.769],[14.499,-2.594],[12.616,-3.633],[17.593,-2.587],[21.19,1.657],[6.113,-0.043],[-6.519,-2.069],[0.229,0.208],[-4.5,-0.748],[-32.404,7.97],[-35.859,2.86],[-32.527,-8.693],[-34.17,-4.294],[-20.658,3.686],[-11.425,3.142],[1.273,-0.181],[30.873,0.078],[21.948,6.382]],"o":[[-15.388,0.991],[-14.499,2.594],[-18.439,5.31],[-17.593,2.587],[-3.068,-0.24],[-6.113,0.043],[3.414,1.084],[-0.229,-0.208],[40.527,6.741],[32.403,-7.97],[43.052,-3.434],[33.981,9.082],[23.461,2.948],[10.522,-1.877],[13.68,-3.762],[-32.701,4.657],[-26.974,-0.068],[-48.316,-14.049]],"v":[[-56.5,-24.5],[-101.579,-18.982],[-142.5,-9.5],[-195.437,2.725],[-252.5,4.5],[-270.19,3.768],[-273.5,6.5],[-270.815,7.252],[-266.5,7.5],[-159.999,0.7],[-60.5,-20.5],[51.5,-7.5],[152.5,19.5],[227.5,14.5],[273.5,5.5],[266.5,3.5],[170.5,16.5],[102.5,2.5]],"c":true}],"h":1},{"t":92,"s":[{"i":[[36.829,-2.553],[4.519,-0.41],[5.493,-0.846],[12.346,-3.227],[13.959,-3.837],[18.309,-1.389],[16.636,1.89],[3.728,-0.047],[-6.158,-1.954],[-19.597,1.454],[-13.165,3.406],[-38.844,3.837],[-66.743,-9.886],[-20.621,3.284],[-16.059,4.745],[2.687,-0.498],[26.888,4.161],[31.27,8.424]],"o":[[-7.431,0.515],[-4.519,0.41],[-14.655,2.255],[-12.346,3.227],[-12.13,3.333],[-18.309,1.389],[-1.248,-0.142],[-3.728,0.047],[16.448,5.221],[19.597,-1.454],[33.9,-8.771],[89.258,-8.818],[19.332,2.863],[16.302,-2.596],[18.803,-5.556],[-28.599,5.303],[-31.855,-4.93],[-32.646,-8.795]],"v":[[-52.5,-24.5],[-69.454,-23.248],[-83.5,-21.5],[-123.022,-13.186],[-161.5,-2.5],[-209.12,4.918],[-263.5,4.5],[-274.054,3.928],[-273.5,6.5],[-217.037,10.97],[-165.5,2.5],[-61.5,-20.5],[152.5,18.5],[219.5,15.5],[273.5,6.5],[250.5,6.5],[151.5,14.5],[56.5,-11.5]],"c":true}],"h":1},{"t":93,"s":[{"i":[[35.232,-2.443],[7.183,-0.896],[8.44,-1.734],[20.614,-5.422],[23.233,0.067],[8.396,0.846],[7.139,0.593],[-2.156,-0.98],[-3.211,-0.566],[-35.938,9.232],[-44.231,0],[-15.957,-2.82],[-13.972,-3.719],[-30.701,-4.93],[-32.394,6.515],[16.2,-1.426],[37.336,6.232],[30.596,8.193]],"o":[[-9.83,0.681],[-7.183,0.896],[-21.31,4.378],[-20.614,5.422],[-8.276,-0.024],[-8.396,-0.846],[-5.837,-0.485],[2.156,0.98],[45.018,7.928],[35.938,-9.232],[18.198,0],[15.957,2.82],[29.413,7.829],[36.773,5.905],[6.557,-1.319],[-35.511,3.125],[-30.621,-5.111],[-31.585,-8.458]],"v":[[-48.5,-24.5],[-73.043,-22.289],[-95.5,-18.5],[-157.557,-2.166],[-222.5,7.5],[-247.853,5.927],[-271.5,3.5],[-275.286,4.712],[-265.5,7.5],[-148.41,-1.054],[-32.5,-21.5],[18.67,-16.789],[63.5,-6.5],[151.5,17.5],[266.5,7.5],[270.5,2.5],[150.5,13.5],[58.5,-12.5]],"c":true}],"h":1},{"t":94,"s":[{"i":[[35.205,-2.267],[9.224,-1.443],[10.579,-2.42],[17.516,-4.602],[23.431,-0.357],[8.289,0.588],[6.654,0.773],[3.637,0.584],[0.545,-1.208],[-5.731,-0.998],[-2.845,-0.308],[-65.683,7.811],[-33.578,-8.126],[-32.837,-5.362],[-34.093,9.147],[11.546,-1.186],[16.405,-2.279],[51.666,13.231]],"o":[[-12.525,0.806],[-9.224,1.443],[-18.505,4.233],[-17.516,4.602],[-8.19,0.125],[-8.289,-0.588],[1.092,0.127],[-3.637,-0.584],[-0.768,1.702],[5.731,0.998],[78.9,8.533],[43.342,-5.154],[34.859,8.436],[38.524,6.291],[2.69,-0.722],[-19.498,2.002],[-66.585,9.251],[-31.515,-8.07]],"v":[[-43.5,-24.5],[-74.959,-21.21],[-103.5,-15.5],[-155.805,-1.093],[-215.5,7.5],[-240.652,6.673],[-263.5,4.5],[-269.272,3.189],[-277.5,3.5],[-267.709,7.546],[-252.5,9.5],[-62.5,-19.5],[51.5,-10.5],[151.5,16.5],[272.5,6.5],[270.5,2.5],[216.5,11.5],[60.5,-12.5]],"c":true}],"h":1},{"t":95,"s":[{"i":[[57.029,-3.672],[7.49,-0.901],[8.369,-1.773],[26.06,-5.776],[30.695,3.624],[6.575,1.115],[0.762,-1.688],[-3.002,-0.862],[-0.645,-0.105],[-45.898,12.889],[-33.148,1.241],[-27.563,-7.146],[-27.631,-5.241],[-26.924,3.893],[-12.27,4.307],[2.952,-0.547],[16.31,-0.687],[21.439,6.174]],"o":[[-9.669,0.623],[-7.49,0.901],[-26.066,5.521],[-26.06,5.776],[-1.94,-0.229],[-6.575,-1.115],[-0.653,1.447],[3.002,0.862],[56.444,9.166],[29.217,-8.205],[36.304,-1.359],[29.578,7.668],[23.709,4.497],[11.066,-1.6],[13.237,-4.646],[-16.247,3.013],[-33.358,1.406],[-48.183,-13.876]],"v":[[-39.5,-24.5],[-64.475,-22.363],[-87.5,-18.5],[-164.528,0.859],[-248.5,6.5],[-263.884,3.563],[-277.5,3.5],[-272.474,7.006],[-265.5,8.5],[-124.5,-5.5],[-31.5,-21.5],[64.5,-8.5],[149.5,15.5],[227.5,14.5],[274.5,6.5],[258.5,4.5],[198.5,13.5],[117.5,2.5]],"c":true}],"h":1},{"t":96,"s":[{"i":[[56.578,-3.923],[18.848,-4.548],[18.656,-5.218],[19.675,-0.556],[16.349,2.407],[2.878,-0.467],[-6.866,-1.773],[-23.58,2.234],[-17.301,5.098],[-23.315,4.044],[-26.219,-2.516],[-21.335,-5.617],[-21.928,-6.158],[-24.094,1.037],[-19.433,5.242],[4.804,-0.64],[25.813,-1.526],[20.921,5.979]],"o":[[-22.95,1.591],[-18.848,4.548],[-14.949,4.181],[-19.675,0.556],[-4.355,-0.641],[-2.878,0.467],[23.377,6.035],[23.58,-2.234],[21.52,-6.341],[23.315,-4.044],[24.733,2.373],[21.335,5.617],[19.189,5.389],[24.094,-1.037],[12.771,-3.445],[-21.354,2.846],[-32.078,1.896],[-45.644,-13.044]],"v":[[-35.5,-24.5],[-97.22,-14.721],[-152.5,0.5],[-206.45,7.441],[-262.5,4.5],[-275.416,4.19],[-271.5,7.5],[-199.443,11.85],[-136.5,-0.5],[-69.524,-17.143],[4.5,-20.5],[72.604,-7.838],[136.5,10.5],[203.817,16.473],[271.5,6.5],[268.5,3.5],[198.5,12.5],[120.5,1.5]],"c":true}],"h":1},{"t":97,"s":[{"i":[[37.843,-2.624],[14.859,-3.015],[13.585,-3.763],[20.005,-2.758],[22.594,2.678],[8.112,0.52],[-8.752,-2.473],[-11.191,-1.126],[-8.334,0.021],[-30.61,8.729],[-37.861,0],[-16.566,-3.008],[-14.499,-3.969],[-32.808,-1.817],[-27.347,6.415],[12.219,-1.358],[9.428,-1.302],[49.198,13.254]],"o":[[-16.979,1.177],[-14.859,3.015],[-20.388,5.647],[-20.005,2.758],[-3.305,-0.392],[-8.112,-0.521],[8.902,2.515],[11.191,1.126],[33.698,-0.085],[30.61,-8.729],[18.239,0],[16.565,3.008],[30.037,8.222],[32.196,1.783],[8.163,-1.915],[-12.002,1.333],[-63.66,8.79],[-31.817,-8.572]],"v":[[-31.5,-24.5],[-79.045,-17.939],[-121.5,-7.5],[-181.346,5.744],[-244.5,6.5],[-267.043,4.351],[-271.5,6.5],[-240.074,11.902],[-209.5,13.5],[-115.622,-4.064],[-15.5,-21.5],[36.806,-16.476],[83.5,-5.5],[176.5,16.5],[268.5,7.5],[271.5,2.5],[229.5,9.5],[77.5,-11.5]],"c":true}],"h":1},{"t":98,"s":[{"i":[[40.803,-2.627],[10.11,-1.641],[11.055,-2.63],[9.404,-2.745],[9.96,-2.78],[20.389,-0.28],[16.59,2.546],[3.963,0.538],[0.478,-1.101],[-7.964,-1.579],[-0.831,-0.102],[-27.83,8.201],[-54.803,-2.913],[-44.195,-12.728],[-39.287,9.288],[8.79,-1.14],[27.257,0],[34.174,9.466]],"o":[[-12.503,0.805],[-10.11,1.641],[-9.422,2.242],[-9.404,2.744],[-15.855,4.426],[-20.389,0.28],[0.33,0.05],[-3.963,-0.538],[-0.686,1.58],[7.964,1.579],[40.528,4.973],[42.78,-12.606],[50.64,2.692],[36.908,10.629],[10.685,-2.526],[-28.374,3.681],[-40.102,0],[-33.665,-9.325]],"v":[[-26.5,-24.5],[-59.586,-20.869],[-90.5,-14.5],[-118.596,-6.904],[-147.5,1.5],[-203.948,8.229],[-261.5,4.5],[-268.894,3.212],[-277.5,3.5],[-262.637,8.609],[-245.5,11.5],[-136.5,1.5],[3.5,-21.5],[136.5,8.5],[271.5,7.5],[268.5,3.5],[193.5,12.5],[87.5,-9.5]],"c":true}],"h":1},{"t":99,"s":[{"i":[[53.631,-3.453],[14.931,-2.897],[15.096,-4.306],[14.624,-3.464],[16.975,0],[9.952,1.251],[6.815,0.998],[3.952,-0.395],[-7.6,-1.976],[-11.821,-1.073],[-10.09,0.055],[-38.317,9.313],[-47.962,-7.616],[-39.762,-9.358],[-33.118,6.328],[13.752,-0.463],[26.729,-0.528],[20.344,5.437]],"o":[[-17.18,1.106],[-14.931,2.897],[-14.53,4.144],[-14.624,3.464],[-8.378,0],[-9.952,-1.251],[-3.793,-0.555],[-3.952,0.395],[10.624,2.761],[11.821,1.073],[43.116,-0.233],[35.738,-8.686],[39.973,6.347],[31.942,7.517],[2.32,-0.443],[-23.647,0.797],[-32.374,0.64],[-46.595,-12.453]],"v":[[-22.5,-24.5],[-70.063,-18.4],[-114.5,-7.5],[-157.666,4.608],[-204.5,10.5],[-233.172,8.248],[-259.5,4.5],[-274.044,4.102],[-271.5,7.5],[-237.1,13.112],[-203.5,14.5],[-87.5,-10.5],[39.5,-17.5],[152.5,11.5],[265.5,8.5],[274.5,2.5],[202.5,11.5],[127.5,-0.5]],"c":true}],"h":1},{"t":100,"s":[{"i":[[39.6,-2.746],[10.77,-1.576],[11.151,-2.809],[9.559,-2.922],[10.202,-2.904],[20.925,-0.089],[18.54,2.845],[4.099,-0.026],[-7.276,-2.183],[-21.416,-0.393],[-16.262,3.695],[-41.071,5.742],[-34.799,-9.133],[-43.403,0],[-19.953,3.258],[1.741,3.938],[-1.279,0.171],[46.151,12.633]],"o":[[-12.769,0.886],[-10.77,1.576],[-9.564,2.409],[-9.559,2.922],[-15.761,4.487],[-20.925,0.09],[-1.88,-0.288],[-4.099,0.026],[17.075,5.122],[21.416,0.393],[37.625,-8.55],[47.2,-6.599],[37.711,9.897],[21.577,0],[2.653,-0.433],[-1.403,-3.174],[-58.216,7.762],[-32.887,-9.002]],"v":[[-18.5,-24.5],[-53.213,-20.943],[-85.5,-14.5],[-114.022,-6.371],[-143.5,2.5],[-200.415,8.998],[-261.5,4.5],[-273.867,3.646],[-272.5,6.5],[-212.39,14.613],[-153.5,9.5],[-41.5,-18.5],[83.5,-9.5],[199.5,15.5],[260.5,8.5],[278.5,3.5],[240.5,8.5],[94.5,-10.5]],"c":true}],"h":1},{"t":101,"s":[{"i":[[53.119,-3.683],[14.868,-3.077],[15.471,-4.439],[15.011,-3.453],[17.186,0.05],[6.278,0.722],[7.846,1.093],[1.118,-2.527],[-3.593,-0.847],[-22.826,0.073],[-30.526,8.707],[-37.168,1.285],[-29.56,-8.108],[-34.639,-1.918],[-24.023,5.243],[11.263,-0.647],[23.051,0],[17.313,4.489]],"o":[[-18.058,1.252],[-14.868,3.077],[-14.767,4.237],[-15.012,3.453],[-7.04,-0.02],[-6.278,-0.722],[-4.219,-0.588],[-1.171,2.648],[23.675,5.579],[36.039,-0.116],[29.672,-8.463],[38.825,-1.343],[30.228,8.291],[29.675,1.643],[2.616,-0.571],[-23.87,1.372],[-30.734,0],[-48.933,-12.686]],"v":[[-14.5,-24.5],[-62.941,-17.89],[-107.5,-6.5],[-151.686,5.715],[-199.5,11.5],[-218.895,10.305],[-239.5,7.5],[-277.5,3.5],[-270.5,7.5],[-198.5,15.5],[-103.5,-4.5],[-5.5,-21.5],[95.5,-7.5],[189.5,14.5],[269.5,7.5],[274.5,2.5],[203.5,10.5],[131.5,-1.5]],"c":true}],"h":1},{"t":102,"s":[{"i":[[39.445,-2.54],[10.881,-1.771],[11.876,-3.041],[19.58,-5.166],[30.513,1.341],[9.295,1.405],[6.769,1.069],[4.385,-0.016],[-7.422,-2.231],[-21.929,-0.944],[-16.779,3.737],[-41.53,6.409],[-36.026,-9.074],[-43.974,0],[-19.8,4.647],[9.287,-0.534],[29.886,0.141],[33.462,8.943]],"o":[[-13.599,0.876],[-10.881,1.771],[-22.167,5.676],[-19.58,5.166],[-7.049,-0.31],[-9.295,-1.405],[-1.88,-0.297],[-4.385,0.017],[16.505,4.96],[21.929,0.944],[39.186,-8.728],[48.296,-7.453],[38.064,9.588],[20.867,0],[1.899,-0.446],[-24.356,1.4],[-39.113,-0.184],[-32.806,-8.768]],"v":[[-9.5,-24.5],[-45.292,-20.624],[-78.5,-13.5],[-137.74,4.263],[-209.5,11.5],[-235.21,8.569],[-260.5,4.5],[-273.477,3.604],[-272.5,6.5],[-212.206,15.523],[-151.5,11.5],[-38.5,-17.5],[88.5,-10.5],[205.5,14.5],[271.5,7.5],[274.5,2.5],[204.5,10.5],[101.5,-10.5]],"c":true}],"h":1},{"t":103,"s":[{"i":[[51.239,-3.299],[8.064,-1.117],[8.507,-1.873],[22.204,-6.288],[25.928,0.276],[10.685,1.287],[10.406,1.747],[4.861,0.219],[-9.232,-2.345],[-23.704,-0.569],[-19.343,5.57],[-50.509,2.35],[-43.714,-11.472],[-29.349,-0.307],[-16.777,2.664],[1.502,3.46],[0.474,-0.056],[27.613,7.232]],"o":[[-10.236,0.659],[-8.064,1.117],[-23.257,5.122],[-22.204,6.288],[-9.852,-0.104],[-10.685,-1.287],[-2.788,-0.468],[-4.861,-0.219],[20.841,5.296],[23.704,0.569],[43.268,-12.461],[53.003,-2.466],[20.083,5.271],[18.887,0.198],[1.916,-0.304],[-1.242,-2.862],[-42.091,4.97],[-47.125,-12.343]],"v":[[-5.5,-24.5],[-32.297,-21.911],[-56.5,-17.5],[-123.496,1.548],[-194.5,12.5],[-225.584,10.232],[-257.5,5.5],[-273.015,3.89],[-270.5,6.5],[-201.876,15.649],[-135.5,8.5],[-2.5,-21.5],[136.5,2.5],[206.5,13.5],[262.5,8.5],[278.5,3.5],[244.5,7.5],[135.5,-2.5]],"c":true}],"h":1},{"t":104,"s":[{"i":[[-0.129,0.009],[0.336,0.004],[0.328,0.008],[27.296,-9.038],[30.06,-1.665],[15.714,1.994],[11.991,1.808],[1.281,-1.281],[-2.145,-0.54],[-31.763,1.973],[-29.902,8.299],[-35.798,-0.547],[-30.794,-8.648],[-34.922,0],[-17.684,2.816],[14.303,-1.53],[21.648,0.047],[82.138,-6.032]],"o":[[-0.328,0.023],[-0.336,-0.004],[-32.757,-0.815],[-27.296,9.038],[-14.154,0.784],[-15.714,-1.994],[1.846,0.278],[-2.284,2.284],[28.988,7.297],[32.708,-2.032],[29.048,-8.062],[35.998,0.55],[31.075,8.726],[18.805,0],[7.513,-1.196],[-20.975,2.243],[-75.248,-0.164],[-0.604,0.044]],"v":[[-1.5,-24.5],[-2.5,-24.477],[-3.5,-24.5],[-91.523,-7.859],[-175.5,12.5],[-221.623,9.944],[-264.5,3.5],[-277.5,2.5],[-268.5,7.5],[-174.5,16.5],[-83.5,-6.5],[16.5,-21.5],[115.5,-5.5],[211.5,13.5],[263.5,8.5],[271.5,3.5],[210.5,9.5],[-0.5,-25.5]],"c":true}],"h":1},{"t":105,"s":[{"i":[[49.745,-3.449],[11.584,-2.017],[11.418,-3.015],[21.232,-5.383],[29.565,2.473],[9.552,1.532],[6.69,1.194],[5.081,0.065],[-8.203,-2.595],[-9.612,-1.311],[-7.46,-0.878],[-25.39,6.785],[-28.662,6.072],[-19.298,0.832],[-20.163,-3.067],[-76.324,20.989],[4.213,-0.598],[33.869,8.979]],"o":[[-13.245,0.919],[-11.584,2.017],[-22.508,5.943],[-21.232,5.383],[-8.101,-0.678],[-9.552,-1.532],[-1.88,-0.335],[-5.081,-0.065],[9.091,2.877],[9.612,1.311],[35.778,4.21],[25.39,-6.785],[17.646,-3.738],[19.298,-0.832],[63.241,9.619],[15.241,-4.191],[-46.469,6.598],[-45.671,-12.108]],"v":[[2.5,-24.5],[-34.371,-20.072],[-68.5,-12.5],[-131.707,6.312],[-205.5,12.5],[-233.058,8.887],[-258.5,4.5],[-273.062,3.302],[-272.5,6.5],[-243.776,12.499],[-217.5,15.5],[-129.163,8.711],[-51.5,-13.5],[4.112,-20.604],[63.5,-17.5],[273.5,6.5],[262.5,4.5],[139.5,-3.5]],"c":true}],"h":1},{"t":106,"s":[{"i":[[37.654,-2.424],[14.779,-2.963],[14.599,-4.099],[14.108,-4.064],[14.028,-0.941],[14.675,1.464],[11.49,2.072],[6.287,1.387],[1.594,-1.593],[-2.654,-0.93],[-0.535,-0.127],[-21.283,-1.848],[-17.376,3.296],[-28.969,7.649],[-34.773,-1.39],[-86.894,23.911],[1.515,-0.179],[42.511,11.407]],"o":[[-16.287,1.049],[-14.779,2.963],[-13.538,3.802],[-14.108,4.064],[-13.81,0.926],[-14.675,-1.464],[-0.258,-0.046],[-6.287,-1.387],[-1.152,1.152],[2.654,0.93],[16.492,3.902],[21.283,1.848],[28.616,-5.427],[27.492,-7.259],[81.297,3.249],[19.831,-5.457],[-53.691,6.34],[-32.049,-8.6]],"v":[[7.5,-24.5],[-38.766,-18.288],[-82.5,-7.5],[-124.133,5.146],[-166.5,13.5],[-210.24,12.248],[-250.5,6.5],[-262.998,3.27],[-277.5,2.5],[-273.765,5.769],[-267.5,7.5],[-208.664,16.898],[-148.5,15.5],[-63.5,-8.5],[32.5,-21.5],[272.5,6.5],[249.5,6.5],[115.5,-11.5]],"c":true}],"h":1},{"t":107,"s":[{"i":[[47.36,-3.049],[14.076,-2.55],[13.644,-3.832],[12.995,-4.106],[12.355,-2.018],[19.393,2.069],[15.742,2.614],[3.922,-0.059],[-6.834,-2.121],[-9.255,-1.255],[-9.202,-1.255],[-25.615,6.277],[-28.129,6.721],[-43.366,-5.321],[-38.136,-8.781],[-30.868,8.489],[2.535,-0.253],[26.533,7.583]],"o":[[-15.051,0.969],[-14.076,2.55],[-12.666,3.556],[-12.995,4.106],[-17.685,2.888],[-19.393,-2.069],[-2.148,-0.357],[-3.922,0.059],[8.779,2.724],[9.255,1.255],[35.413,4.828],[25.614,-6.277],[33.318,-7.96],[36.512,4.48],[27.086,6.237],[17.869,-4.914],[-43.461,4.328],[-40.301,-11.517]],"v":[[11.5,-24.5],[-32.056,-19.147],[-73.5,-9.5],[-112.233,2.654],[-150.5,12.5],[-207.457,12.626],[-261.5,4.5],[-273.737,3.642],[-272.5,6.5],[-245.318,12.102],[-217.5,15.5],[-129.036,10.662],[-51.5,-11.5],[63.5,-19.5],[166.5,4.5],[273.5,6.5],[245.5,6.5],[144.5,-4.5]],"c":true}],"h":1},{"t":108,"s":[{"i":[[37.394,-2.593],[0.336,0.004],[0.328,0.008],[26.731,-8.601],[27.053,-4.345],[19.359,2.641],[15.233,2.378],[3.472,-0.4],[-6.663,-1.988],[-8.922,-1.16],[-9.357,-1.39],[-24.604,4.981],[-24.726,6.809],[-36.184,-0.552],[-88.417,15.57],[11.872,-0.599],[3.166,-0.298],[42.436,11.296]],"o":[[-0.328,0.023],[-0.336,-0.004],[-30.023,-0.746],[-26.731,8.6],[-18.33,2.944],[-19.359,-2.641],[-3.774,-0.589],[-3.472,0.4],[9.954,2.97],[8.922,1.16],[31.857,4.733],[24.604,-4.981],[27.813,-7.659],[86.166,1.316],[7.491,-1.319],[-4.606,0.232],[-51.689,4.857],[-31.878,-8.486]],"v":[[15.5,-24.5],[14.5,-24.477],[13.5,-24.5],[-70.727,-9.318],[-150.5,13.5],[-208.323,12.491],[-261.5,3.5],[-274.828,3.067],[-272.5,6.5],[-244.552,12.185],[-217.5,15.5],[-134.652,13.156],[-62.5,-6.5],[33.5,-21.5],[266.5,7.5],[272.5,2.5],[251.5,5.5],[122.5,-11.5]],"c":true}],"h":1},{"t":109,"s":[{"i":[[45.672,-3.167],[15.256,-3.127],[15.061,-4.32],[14.678,-4.288],[14.541,-0.904],[15.652,1.953],[11.294,2.063],[6.281,1.454],[2.136,-2.136],[-1.742,-0.787],[0.091,0.024],[-23.278,-3.407],[-69.761,9.875],[-41.012,-11.607],[-47.695,10.16],[1.076,2.312],[0.648,-0.058],[35.31,10.306]],"o":[[-16.913,1.172],[-15.256,3.127],[-13.746,3.943],[-14.678,4.288],[-14.098,0.876],[-15.652,-1.953],[-1.742,-0.318],[-6.281,-1.455],[-0.878,0.878],[1.742,0.786],[22.045,5.92],[83.612,12.237],[50.011,-7.079],[34.703,9.822],[-2.604,0.555],[-1.212,-2.604],[-44.841,4.01],[-38.66,-11.284]],"v":[[19.5,-24.5],[-28.389,-17.861],[-73.5,-6.5],[-116.404,6.78],[-160.5,15.5],[-206.603,13.204],[-248.5,6.5],[-262.704,2.659],[-277.5,2.5],[-275.091,5.177],[-271.5,6.5],[-210.5,16.5],[-6.5,-18.5],[137.5,-5.5],[271.5,7.5],[278.5,3.5],[271.5,3.5],[148.5,-5.5]],"c":true}],"h":1},{"t":110,"s":[{"i":[[-0.139,0.009],[15.042,-2.937],[14.899,-4.225],[14.007,-4.293],[14.179,-1.915],[16.92,2.353],[16.106,2.911],[5.855,0.983],[0.563,-1.296],[-2.846,-0.523],[-0.406,-0.088],[-38.721,5.397],[-28.801,8.104],[-37.001,1.161],[-90.564,13.852],[8.518,-0.497],[16.417,0.111],[79.696,-5.853]],"o":[[-15.932,1.026],[-15.042,2.937],[-13.794,3.912],[-14.007,4.293],[-17.213,2.325],[-16.92,-2.353],[-2.019,-0.365],[-5.855,-0.983],[-0.791,1.822],[2.846,0.523],[34.773,7.495],[30.824,-4.296],[28.389,-7.988],[88.981,-2.791],[10.376,-1.587],[-14.105,0.823],[-74.25,-0.502],[-0.597,0.044]],"v":[[24.5,-24.5],[-21.775,-18.399],[-66.5,-7.5],[-108.211,5.497],[-150.5,15.5],[-201.831,14.427],[-251.5,5.5],[-265.592,2.754],[-277.5,2.5],[-272.897,5.801],[-266.5,6.5],[-149.5,19.5],[-61.5,-4.5],[33.5,-21.5],[267.5,7.5],[272.5,2.5],[227.5,6.5],[25.5,-25.5]],"c":true}],"h":1},{"t":111,"s":[{"i":[[43.386,-2.794],[14.841,-3.095],[15.532,-4.456],[14.556,-4.355],[14.505,-1.486],[17.082,2.272],[12.764,2.439],[6.829,1.36],[0.805,-1.798],[-3.151,-0.846],[-1.035,-0.189],[-18.883,-2.951],[-19.796,2.214],[-16.297,4.739],[-64.406,-4.441],[-80.765,11.75],[13.211,-1.219],[31.311,9.474]],"o":[[-18.102,1.166],[-14.841,3.095],[-14.27,4.094],[-14.556,4.355],[-14.907,1.527],[-17.082,-2.272],[-1.88,-0.359],[-6.829,-1.36],[-0.638,1.425],[3.151,0.847],[18.674,3.41],[18.883,2.951],[16.655,-1.863],[49.715,-14.456],[71.696,4.944],[17.74,-2.581],[-41.816,3.858],[-40.094,-12.131]],"v":[[28.5,-24.5],[-19.927,-17.968],[-64.5,-6.5],[-107.824,6.956],[-151.5,16.5],[-201.107,14.475],[-247.5,6.5],[-263.306,2.882],[-277.5,2.5],[-272.255,5.927],[-264.5,7.5],[-208.341,18.218],[-150.5,20.5],[-100.5,7.5],[60.5,-20.5],[266.5,7.5],[263.5,3.5],[152.5,-6.5]],"c":true}],"h":1},{"t":112,"s":[{"i":[[42.366,-2.937],[15.735,-3.283],[16.234,-4.63],[15.287,-4.446],[15.435,-1.105],[16.086,2.671],[12.57,2.396],[6.762,0.985],[0.631,-1.383],[-2.97,-0.54],[-1.807,-0.34],[-41.615,3.629],[-33.454,9.395],[-43.581,-1.916],[-36.835,-9.864],[-33.51,8.429],[3.023,-0.254],[31.63,9.41]],"o":[[-17.825,1.236],[-15.735,3.283],[-14.416,4.112],[-15.287,4.446],[-15.085,1.081],[-16.086,-2.671],[-2.322,-0.442],[-6.762,-0.985],[-0.686,1.502],[2.97,0.54],[35.563,6.678],[35.287,-3.077],[32.225,-9.05],[39.106,1.719],[27.675,7.411],[14.844,-3.734],[-43.586,3.655],[-36.748,-10.932]],"v":[[32.5,-24.5],[-17.193,-17.546],[-64.5,-5.5],[-109.236,8.255],[-155.5,17.5],[-203.387,14.107],[-247.5,5.5],[-263.768,2.631],[-277.5,2.5],[-272.87,5.371],[-264.5,6.5],[-153.5,21.5],[-52.5,-5.5],[59.5,-21.5],[166.5,-0.5],[273.5,6.5],[263.5,3.5],[155.5,-7.5]],"c":true}],"h":1},{"t":113,"s":[{"i":[[42.579,-2.952],[15.957,-3.095],[15.043,-4.433],[14.824,-4.611],[15.325,-1.319],[17.028,2.465],[12.923,2.512],[7.319,1.595],[1.601,-1.601],[0.002,0],[-41.114,3.979],[-32.965,9.275],[-42.711,-1.707],[-33.442,-9.631],[-18.968,-0.945],[-12.069,3.867],[13.78,-0.33],[23.893,7.352]],"o":[[-17.128,1.188],[-15.957,3.095],[-14.38,4.237],[-14.824,4.611],[-15.963,1.373],[-17.028,-2.465],[-1.123,-0.219],[-7.319,-1.595],[-3.476,3.476],[36.04,6.666],[34.391,-3.328],[31.749,-8.933],[37.732,1.508],[15.05,4.334],[15.067,0.751],[14.099,-4.517],[-36.792,0.881],[-39.05,-12.015]],"v":[[36.5,-24.5],[-13.063,-17.934],[-59.5,-6.5],[-103.292,7.689],[-148.5,17.5],[-199.28,14.914],[-245.5,6.5],[-261.142,2.636],[-277.5,1.5],[-264.5,6.5],[-147.5,21.5],[-48.5,-5.5],[61.5,-21.5],[166.5,-0.5],[220.5,8.5],[274.5,6.5],[246.5,4.5],[156.5,-7.5]],"c":true}],"h":1},{"t":114,"s":[{"i":[[39.59,-2.549],[16.61,-3.425],[14.392,-4.128],[15.412,-4.606],[16.19,-1.229],[16.687,2.886],[13.38,2.582],[7.347,1.334],[1.543,-1.542],[-3.677,-0.866],[0.145,0.026],[-38.78,3.753],[-33.105,9.17],[-42.235,-0.835],[-60.407,-4.888],[-12.971,3.829],[10.296,-0.386],[24.536,8.034]],"o":[[-18.17,1.17],[-16.61,3.425],[-15.162,4.349],[-15.412,4.605],[-14.874,1.129],[-16.686,-2.886],[-1.067,-0.206],[-7.348,-1.334],[-1.563,1.563],[3.677,0.866],[35.282,6.295],[34.45,-3.334],[32.452,-8.989],[62.749,1.24],[13.806,1.117],[16.141,-4.766],[-36.024,1.349],[-37.724,-12.352]],"v":[[41.5,-24.5],[-10.834,-17.219],[-57.5,-5.5],[-103.229,8.841],[-150.5,18.5],[-199.12,14.783],[-245.5,5.5],[-261.144,2.189],[-277.5,1.5],[-272.063,5.192],[-264.5,6.5],[-148.5,22.5],[-48.5,-3.5],[60.5,-21.5],[221.5,7.5],[274.5,6.5],[247.5,4.5],[159.5,-8.5]],"c":true}],"h":1},{"t":115,"s":[{"i":[[34.083,-2.363],[16.762,-3.518],[16.484,-4.647],[16.491,-4.884],[16.005,-0.508],[16.456,2.971],[13.231,2.559],[7.329,1.377],[1.7,-1.7],[-3.402,-0.892],[-0.706,-0.12],[-37.734,1.454],[-15.796,4.196],[-52.977,4.872],[-31.197,-8.204],[-46.901,9.806],[10.965,0],[31.576,9.059]],"o":[[-18.466,1.28],[-16.762,3.518],[-14.031,3.956],[-16.491,4.884],[-13.944,0.443],[-16.456,-2.971],[-0.983,-0.191],[-7.329,-1.377],[-1.313,1.313],[3.402,0.892],[36.843,6.285],[15.097,-0.582],[46.737,-12.416],[38.493,-3.54],[40.209,10.574],[23.245,-4.86],[-36.625,0],[-28.804,-8.263]],"v":[[45.5,-24.5],[-6.987,-17.025],[-56.5,-4.5],[-103.02,10.086],[-152.5,19.5],[-199.535,14.752],[-245.5,5.5],[-260.963,2.082],[-277.5,1.5],[-272.514,4.894],[-264.5,6.5],[-151.5,23.5],[-103.5,13.5],[38.5,-20.5],[143.5,-10.5],[271.5,6.5],[241.5,4.5],[147.5,-13.5]],"c":true}],"h":1},{"t":116,"s":[{"i":[[38.227,-2.65],[16.641,-3.548],[15.453,-4.494],[15.932,-4.558],[16.826,-1.276],[16.692,3.088],[15.231,2.86],[7.453,1.373],[0.8,-1.752],[-3.391,-0.801],[-1.166,-0.199],[-39.518,3.446],[-32.558,9.594],[-40.989,1.141],[-34.744,-10.102],[-34.397,4.454],[16.926,-0.091],[23.198,7.459]],"o":[[-18.983,1.316],[-16.641,3.548],[-15.447,4.492],[-15.932,4.558],[-16,1.214],[-16.692,-3.088],[-1.388,-0.261],[-7.453,-1.373],[-0.73,1.596],[3.391,0.801],[39.005,6.653],[35.375,-3.085],[31.586,-9.308],[41.452,-1.153],[25.157,7.315],[27.7,-3.587],[-35.368,0.19],[-36.755,-11.819]],"v":[[49.5,-24.5],[-3.647,-16.883],[-51.5,-4.5],[-98.466,9.911],[-147.5,19.5],[-197.077,15.555],[-245.5,5.5],[-261.941,1.991],[-277.5,1.5],[-271.921,5.048],[-263.5,6.5],[-146.5,23.5],[-46.5,-2.5],[60.5,-21.5],[168.5,-3.5],[266.5,6.5],[247.5,3.5],[163.5,-9.5]],"c":true}],"h":1},{"t":117,"s":[{"i":[[38.352,-2.469],[8.899,-1.304],[9.175,-2.062],[8.154,-2.173],[8.07,-2.441],[17.249,-4.78],[17.192,-0.398],[16.406,3.397],[14.073,2.742],[1.202,-2.55],[-2.787,-0.445],[-39.623,1.258],[-32.514,9.49],[-39.705,1.804],[-34.916,-10.485],[-33.687,4.148],[16.232,-0.204],[21.042,6.51]],"o":[[-11.229,0.723],[-8.899,1.304],[-8.314,1.869],[-8.154,2.172],[-14.81,4.481],[-17.249,4.78],[-14.302,0.331],[-16.406,-3.397],[-6.135,-1.196],[-1.705,3.616],[37.374,5.968],[36.095,-1.146],[31.488,-9.191],[43.12,-1.959],[24.904,7.479],[27.451,-3.38],[-32.885,0.413],[-36.69,-11.352]],"v":[[54.5,-24.5],[24.959,-21.504],[-1.5,-16.5],[-26.183,-10.43],[-50.5,-3.5],[-99.213,11.562],[-151.5,20.5],[-198.672,14.805],[-245.5,4.5],[-277.5,1.5],[-263.5,5.5],[-150.5,24.5],[-48.5,-0.5],[57.5,-21.5],[167.5,-4.5],[266.5,6.5],[248.5,3.5],[166.5,-9.5]],"c":true}],"h":1},{"t":118,"s":[{"i":[[29.925,-1.927],[9.02,-1.308],[8.938,-2.063],[8.3,-2.155],[8.226,-2.401],[36.305,-1.58],[26.553,5.469],[18.163,3.462],[1.296,-2.791],[-2.917,-0.465],[-41.105,2.063],[-30.088,8.967],[-32.676,4.568],[-30.144,-6.223],[-33.166,-1.837],[-8.255,2.534],[0.429,-0.009],[39.907,10.708]],"o":[[-10.983,0.707],[-9.02,1.308],[-8.576,1.979],[-8.299,2.155],[-31.741,9.265],[-21.312,0.927],[-13.944,-2.872],[-5.832,-1.112],[-1.532,3.299],[38.446,6.122],[31.648,-1.588],[28.314,-8.439],[36.443,-5.095],[31.907,6.587],[8.604,0.477],[13.814,-4.241],[-51.446,1.124],[-26.624,-7.144]],"v":[[58.5,-24.5],[28.966,-21.517],[2.5,-16.5],[-22.763,-10.317],[-47.5,-3.5],[-148.5,20.5],[-214.5,11.5],[-244.5,4.5],[-277.5,1.5],[-262.5,5.5],[-147.5,24.5],[-55.5,3.5],[35.5,-18.5],[138.5,-14.5],[231.5,6.5],[274.5,5.5],[268.5,2.5],[149.5,-15.5]],"c":true}],"h":1},{"t":119,"s":[{"i":[[37.524,-2.602],[17.774,-3.887],[17.274,-5.09],[17.65,-4.773],[18.312,-0.166],[16.514,3.618],[14.034,2.655],[7.604,1.351],[1.594,-1.593],[0.003,0.001],[-33.087,0.714],[-32.21,9.746],[-38.639,3.112],[-33.309,-9.946],[-21.296,-2.712],[-13.018,3.126],[1.826,-0.057],[21.909,6.518]],"o":[[-19.63,1.361],[-17.774,3.887],[-16.087,4.74],[-17.65,4.773],[-13.909,0.127],[-16.514,-3.618],[-0.99,-0.188],[-7.604,-1.352],[-2.461,2.461],[34.902,6.243],[35.718,-0.77],[32.234,-9.753],[42.604,-3.431],[14.981,4.473],[7.875,1.003],[17.062,-4.097],[-37.731,1.169],[-34.382,-10.228]],"v":[[62.5,-24.5],[6.733,-16.297],[-45.5,-2.5],[-96.331,12.931],[-150.5,21.5],[-197.406,15.086],[-244.5,4.5],[-260.547,1.164],[-277.5,0.5],[-247.5,8.5],[-149.5,25.5],[-47.5,1.5],[57.5,-20.5],[168.5,-6.5],[220.5,4.5],[273.5,5.5],[265.5,2.5],[171.5,-10.5]],"c":true}],"h":1},{"t":120,"s":[{"i":[[37.564,-2.604],[18.691,-3.98],[15.593,-4.718],[17.914,-4.81],[19.086,0.16],[16.343,3.553],[14.46,2.668],[7.567,1.404],[1.788,-1.788],[-1.273,-0.235],[-33.448,0.279],[-32.421,9.645],[-37.909,3.745],[-33.687,-10.384],[-20.086,-2.567],[-14.168,2.834],[-1.054,0.041],[22.801,6.63]],"o":[[-19.644,1.362],[-18.691,3.98],[-16.257,4.919],[-17.914,4.81],[-14.166,-0.118],[-16.343,-3.553],[-0.942,-0.174],[-7.567,-1.404],[-2.758,2.758],[34.232,6.331],[36.551,-0.305],[32.356,-9.625],[43.472,-4.295],[14.286,4.404],[9.25,1.182],[18.481,-3.696],[-37.262,1.438],[-32.696,-9.507]],"v":[[66.5,-24.5],[8.462,-16.017],[-43.5,-2.5],[-94.878,13.309],[-150.5,21.5],[-197.279,14.912],[-244.5,4.5],[-260.366,1.029],[-277.5,0.5],[-246.5,7.5],[-149.5,25.5],[-46.5,2.5],[57.5,-20.5],[169.5,-7.5],[220.5,4.5],[273.5,5.5],[265.5,2.5],[173.5,-10.5]],"c":true}],"h":1},{"t":121,"s":[{"i":[[-0.139,0.009],[9.566,-1.47],[9.898,-2.36],[9.042,-2.317],[8.813,-2.582],[18.944,-4.996],[19.411,0.616],[16.784,4.003],[14.582,2.568],[-20.783,-4.464],[-14.915,-3.389],[-20.262,-0.32],[-31.913,9.494],[-36.581,4.35],[-35.147,-10.357],[-39.17,1.894],[20.247,0],[71.316,-5.237]],"o":[[-11.84,0.762],[-9.566,1.47],[-9.019,2.15],[-9.042,2.317],[-15.813,4.633],[-18.944,4.996],[-13.284,-0.422],[-16.784,-4.003],[-6.265,-1.103],[19.115,4.106],[19.014,4.321],[36.657,0.579],[31.721,-9.437],[39.635,-4.714],[28.457,8.386],[17.843,-0.863],[-70.693,0],[-0.597,0.044]],"v":[[75.5,-24.5],[44.043,-21.198],[15.5,-15.5],[-11.654,-8.824],[-38.5,-1.5],[-91.301,14.437],[-149.5,22.5],[-196.027,14.61],[-244.5,3.5],[-271.5,3.5],[-213.5,13.5],[-148.5,26.5],[-44.5,4.5],[57.5,-19.5],[169.5,-9.5],[265.5,5.5],[261.5,1.5],[76.5,-25.5]],"c":true}],"h":1},{"t":122,"s":[{"i":[[19.084,-1.323],[19.571,-4.42],[16.694,-4.864],[19.197,-4.681],[21.465,0.893],[18.91,4.809],[17.472,2.019],[3.795,-0.482],[-6.703,-1.597],[-4.996,-0.378],[-2.706,-0.463],[-31.73,-0.983],[-44.399,12.59],[-53.325,-11.322],[-44.164,7.912],[3.198,3.198],[7.021,0.563],[28.505,6.052]],"o":[[-21.023,1.457],[-19.571,4.42],[-17.745,5.17],[-19.197,4.681],[-17.889,-0.745],[-18.91,-4.809],[-4.523,-0.523],[-3.795,0.482],[4.312,1.027],[4.996,0.378],[34.058,5.825],[50.8,1.573],[47.492,-13.467],[32.124,6.82],[-5.178,0.928],[-1.377,-1.377],[-36.194,-2.901],[-20.001,-4.246]],"v":[[83.5,-24.5],[22.254,-15.055],[-32.5,-0.5],[-87.71,15.547],[-148.5,22.5],[-204.313,12.456],[-259.5,0.5],[-274.419,0.41],[-272.5,3.5],[-257.796,5.423],[-245.5,6.5],[-147.5,26.5],[-4.5,-4.5],[149.5,-17.5],[271.5,4.5],[278.5,1.5],[241.5,0.5],[149.5,-21.5]],"c":true}],"h":1},{"t":123,"s":[{"i":[[14.628,-0.942],[10.401,-1.675],[10.45,-2.529],[9.291,-2.725],[9.276,-2.785],[21.281,-4.479],[21.074,1.963],[32.532,5.21],[1.137,-2.391],[-3.466,-0.544],[-34.207,-2.595],[-44.263,12.698],[-53.974,-10.803],[-46.045,4.532],[1.589,3.191],[10.258,0.304],[10.203,2.181],[15.856,3.227]],"o":[[-11.945,0.769],[-10.401,1.675],[-9.559,2.313],[-9.291,2.725],[-16.803,5.046],[-21.281,4.479],[-28.785,-2.682],[-3.938,-0.631],[-1.533,3.225],[34.577,5.428],[53.238,4.039],[48.071,-13.791],[33.397,6.685],[-2.2,0.217],[-0.328,-0.658],[-13.723,-0.406],[-16.753,-3.582],[-18.14,-3.692]],"v":[[92.5,-24.5],[59.379,-20.82],[28.5,-14.5],[0.287,-6.854],[-27.5,1.5],[-85.797,17.257],[-150.5,22.5],[-243.5,1.5],[-277.5,-0.5],[-245.5,5.5],[-149.5,26.5],[-3.5,-2.5],[150.5,-18.5],[271.5,4.5],[278.5,1.5],[261.5,0.5],[210.5,-5.5],[151.5,-22.5]],"c":true}],"h":1},{"t":124,"s":[{"i":[[10.219,-0.709],[20.743,-5.041],[19.41,-5.569],[48.046,5.078],[34.073,5.167],[1.828,-3.748],[10.446,1.419],[1.177,0.113],[-34.992,-3.584],[-24.443,5.407],[-22.604,6.598],[-55.155,-10.072],[-23.841,-5.406],[-14.987,-1.738],[-1.06,2.025],[-14.773,-2.705],[9.979,1.055],[29.883,4.948]],"o":[[-25.211,1.748],[-19.452,4.728],[-36.488,10.468],[-29.197,-3.086],[-5.372,-0.815],[-1.729,3.546],[-0.494,-0.067],[42.536,4.082],[28.635,2.933],[23.75,-5.254],[45.188,-13.19],[18.952,3.461],[3.12,0.707],[5.896,0.684],[2.151,-4.108],[-8.616,-1.577],[-36.257,-3.832],[-15.107,-2.501]],"v":[[100.5,-24.5],[35.5,-14.5],[-22.5,1.5],[-149.5,22.5],[-242.5,1.5],[-277.5,-0.5],[-271.5,2.5],[-261.5,2.5],[-149.5,26.5],[-70.5,18.5],[-1.5,-0.5],[150.5,-19.5],[210.5,-3.5],[242.5,2.5],[278.5,3.5],[272.5,0.5],[244.5,-1.5],[149.5,-23.5]],"c":true}],"h":1},{"t":125,"s":[{"i":[[6.773,-0.436],[11.007,-1.628],[10.719,-2.7],[9.864,-2.917],[9.723,-2.86],[21.881,-4.295],[24.552,2.746],[35.261,4.93],[1.355,-2.732],[14.379,2.632],[-13.107,-3.186],[-19.75,-2.023],[-46.309,13.646],[-53.751,-8.875],[-35.612,-4.295],[-1.563,3.204],[2.664,0.161],[33.907,5.217]],"o":[[-12.252,0.789],[-11.007,1.628],[-9.819,2.473],[-9.864,2.917],[-18.924,5.566],[-21.881,4.295],[-29.26,-3.273],[-5.41,-0.756],[-2.12,4.273],[20.091,3.678],[20.791,5.053],[54.965,5.63],[40.091,-11.814],[28.978,4.785],[3.666,0.442],[1.837,-3.767],[-44.035,-2.669],[-12.038,-1.852]],"v":[[109.5,-24.5],[74.85,-20.933],[42.5,-14.5],[12.928,-6.29],[-16.5,2.5],[-77.779,18.734],[-147.5,22.5],[-242.5,0.5],[-277.5,-1.5],[-271.5,1.5],[-210.5,10.5],[-146.5,26.5],[1.5,1.5],[151.5,-20.5],[243.5,1.5],[278.5,2.5],[262.5,-0.5],[149.5,-24.5]],"c":true}],"h":1},{"t":126,"s":[{"i":[[3.263,-0.226],[21.418,-5.335],[20.968,-6.038],[23.823,-3.953],[24.156,4.154],[20.357,5.838],[22.135,-2.178],[-4.534,-0.737],[-2.339,-0.12],[-31.803,-5.63],[-24.358,4.323],[-22.314,6.55],[-53.024,-5.474],[-19.168,-4.375],[-21.395,-0.627],[2.385,0.484],[7.738,1.078],[27.66,2.833]],"o":[[-23.362,1.62],[-21.418,5.335],[-18.55,5.342],[-23.823,3.953],[-16.437,-2.826],[-20.357,-5.838],[-9.477,0.933],[4.534,0.737],[41.677,2.138],[27.129,4.802],[24.466,-4.343],[45.725,-13.423],[19.202,1.983],[16.618,3.793],[15.044,0.441],[-8.909,-1.808],[-34.788,-4.849],[-9.857,-1.01]],"v":[[117.5,-24.5],[50.704,-13.314],[-12.5,4.5],[-77.295,20.122],[-150.5,21.5],[-206.227,5.746],[-270.5,-2.5],[-273.862,0.11],[-259.5,1.5],[-150.5,25.5],[-70.5,21.5],[-0.5,4.5],[147.5,-21.5],[209.5,-5.5],[269.5,3.5],[272.5,-0.5],[245.5,-3.5],[147.5,-25.5]],"c":true}],"h":1},{"t":127,"s":[{"i":[[1.44,-0.093],[12.061,-1.828],[11.084,-2.938],[10.537,-3.069],[10.059,-2.864],[23.74,-3.712],[26.218,4.776],[10.301,3.276],[11.215,2.332],[18.699,-2.89],[-2.945,-3.36],[-5.546,-0.63],[-28.601,-4.826],[-64.448,14.71],[-27.027,-2.615],[-44.292,0.613],[0.796,0.076],[31.724,3.032]],"o":[[-11.673,0.752],[-12.061,1.828],[-10.791,2.861],[-10.537,3.069],[-20.82,5.927],[-23.74,3.712],[-8.582,-1.563],[-10.301,-3.276],[-15.19,-3.158],[6.814,-1.053],[2.066,2.357],[36.151,4.103],[82.546,13.93],[23.547,-5.374],[39.832,3.855],[24.156,-0.335],[-41.303,-3.964],[-8.118,-0.776]],"v":[[126.5,-24.5],[90.559,-20.64],[55.5,-13.5],[23.451,-4.502],[-7.5,4.5],[-74.452,20.527],[-149.5,20.5],[-178.025,12.577],[-210.5,3.5],[-270.5,-2.5],[-277.5,0.5],[-241.5,2.5],[-148.5,24.5],[71.5,-12.5],[149.5,-21.5],[270.5,2.5],[262.5,-2.5],[149.5,-25.5]],"c":true}],"h":1},{"t":128,"s":[{"i":[[39.2,-2.718],[12.135,-2.012],[11.834,-3.075],[35.142,-8.019],[39.867,8.018],[15.478,4.381],[17.559,1.756],[8.295,-0.076],[-0.964,-1.976],[-8.62,-0.134],[-0.851,-0.091],[-26.632,-5.356],[-63.981,14.765],[-26.306,-1.722],[-19.493,-4.628],[-16.552,-1.865],[-0.668,1.411],[2.074,0.235]],"o":[[-12.626,0.876],[-12.135,2.012],[-30.565,7.941],[-35.142,8.019],[-13.531,-2.721],[-15.478,-4.381],[-2.783,-0.279],[-8.295,0.076],[0.671,1.375],[8.62,0.134],[35.27,3.757],[83.35,16.764],[23.42,-5.405],[20.172,1.32],[12.997,3.085],[3.786,0.427],[1.586,-3.352],[-44.337,-5.014]],"v":[[134.5,-24.5],[97.406,-20.149],[61.5,-12.5],[-37.024,15.469],[-149.5,19.5],[-192.979,7.776],[-242.5,-2.5],[-262.81,-3.191],[-277.5,-0.5],[-259.635,1.463],[-241.5,1.5],[-149.5,23.5],[71.5,-11.5],[149.5,-21.5],[212.5,-7.5],[260.5,1.5],[278.5,1.5],[263.5,-2.5]],"c":true}],"h":1},{"t":129,"s":[{"i":[[32.513,-1.191],[12.742,-2.112],[11.556,-3.095],[35.612,-7.805],[41.48,8.807],[21.42,5.67],[22.179,-3.894],[-4.181,-0.358],[-2.146,-0.012],[-18.597,-4.845],[-15.879,-3.489],[-37.169,8.259],[-30.806,8.085],[-12.746,2.31],[-13.026,-0.386],[-31.387,-5.629],[-3.186,3.186],[1.715,0.212]],"o":[[-12.477,0.457],[-12.742,2.112],[-32.072,8.588],[-35.612,7.805],[-15.139,-3.215],[-21.42,-5.67],[-8.871,1.558],[4.181,0.358],[22.733,0.131],[18.597,4.845],[41.517,9.123],[37.169,-8.259],[11.989,-3.146],[12.746,-2.31],[31.214,0.923],[6.32,1.134],[2.689,-2.689],[-40.681,-5.026]],"v":[[143.5,-24.5],[105.309,-20.478],[68.5,-12.5],[-32.444,16.047],[-147.5,18.5],[-203.72,2.169],[-270.5,-3.5],[-273.763,-0.841],[-260.5,-0.5],[-198.859,8.482],[-147.5,22.5],[-28.967,19.406],[73.5,-9.5],[110.721,-18.149],[149.5,-21.5],[243.5,-1.5],[278.5,1.5],[263.5,-3.5]],"c":true}],"h":1},{"t":130,"s":[{"i":[[38.859,-3.327],[32.065,-9.532],[38.34,-3.756],[18.128,2.53],[15.959,4.793],[8.401,1.915],[8.964,1.107],[9.246,0.494],[6.996,-1.841],[-4.092,-0.28],[-3.767,0],[-17.937,-4.13],[-19.762,-4.48],[-54.44,15.799],[-34.645,-2.482],[-36.042,-4.667],[-0.973,2.097],[2.215,0.321]],"o":[[-36.398,3.117],[-32.065,9.532],[-19.529,1.913],[-18.128,-2.53],[-7.43,-2.232],[-8.401,-1.915],[-7.019,-0.867],[-9.246,-0.494],[-7.136,1.878],[4.092,0.281],[23.489,0],[17.937,4.13],[71.432,16.196],[28.843,-8.371],[36.964,2.648],[1.316,0.17],[1.435,-3.092],[-41.506,-6.02]],"v":[[139.5,-23.5],[39.456,-1.48],[-63.5,21.5],[-120.178,20.029],[-171.5,8.5],[-195.35,2.157],[-221.5,-2.5],[-247.017,-5.031],[-272.5,-3.5],[-274.177,-0.592],[-259.5,-0.5],[-199.204,6.64],[-144.5,20.5],[55.5,-2.5],[155.5,-20.5],[261.5,0.5],[278.5,0.5],[264.5,-3.5]],"c":true}],"h":1},{"t":131,"s":[{"i":[[33.498,-1.726],[16.791,-4.342],[15.773,-4.648],[17.028,-3.892],[19.283,-1.538],[18.409,2.671],[16.355,4.912],[18.024,2.815],[18.175,-3.381],[-4.302,-0.349],[0.721,-0.026],[-25.666,-7.941],[-39.694,3.651],[-31.731,9.493],[-33.822,0.129],[-30.865,-5.579],[-3.88,3.88],[0.54,0.084]],"o":[[-19.065,0.982],[-16.791,4.342],[-16.605,4.893],[-17.028,3.892],[-20.008,1.596],[-18.409,-2.671],[-13.729,-4.123],[-18.024,-2.815],[-8.488,1.579],[4.302,0.348],[39.745,-1.466],[32.979,10.204],[38.59,-3.549],[29.704,-8.887],[31.183,-0.119],[5.536,1.001],[2.649,-2.649],[-39.575,-6.143]],"v":[[147.5,-23.5],[94.031,-14.749],[45.5,-0.5],[-4.492,13.016],[-58.5,21.5],[-116.24,19.38],[-168.5,7.5],[-217.166,-4.128],[-272.5,-4.5],[-274.326,-1.835],[-264.5,-1.5],[-167.5,12.5],[-55.5,25.5],[47.5,2.5],[151.5,-20.5],[245.5,-3.5],[278.5,0.5],[264.5,-4.5]],"c":true}],"h":1},{"t":132,"s":[{"i":[[33.195,-2.135],[16.797,-4.527],[16.138,-4.692],[17.334,-3.882],[19.535,-0.781],[18.049,2.894],[17.096,5.25],[18.492,2.877],[17.3,-4.418],[-8.243,0.066],[-2.865,-0.008],[-32.839,-8.323],[-39.112,4.054],[-30.965,9.212],[-32.097,0.536],[-28.132,-5.362],[-2.41,2.41],[1.278,0.209]],"o":[[-18.675,1.201],[-16.797,4.527],[-16.13,4.69],[-17.334,3.882],[-20.707,0.828],[-18.049,-2.894],[-12.733,-3.91],[-18.492,-2.877],[-8.835,2.256],[8.243,-0.066],[35.636,0.102],[32.121,8.141],[34.585,-3.585],[31.081,-9.246],[30.71,-0.513],[3.594,0.685],[3.235,-3.235],[-38.948,-6.378]],"v":[[148.5,-22.5],[95.596,-13.118],[46.5,1.5],[-3.447,14.932],[-58.5,22.5],[-116.208,19.059],[-168.5,6.5],[-217.075,-5.247],[-272.5,-4.5],[-267.775,-1.814],[-245.5,-2.5],[-146.5,16.5],[-40.5,24.5],[55.5,2.5],[152.5,-19.5],[245.5,-3.5],[278.5,0.5],[264.5,-4.5]],"c":true}],"h":1},{"t":133,"s":[{"i":[[35.42,-3.196],[28.439,-8.893],[34.064,-3.434],[17.241,1.122],[15.049,3.225],[23.572,5.337],[25.89,-6.595],[3.147,-0.731],[-1.6,-1.6],[-5.969,0.506],[-2.06,0.04],[-39.859,-8.739],[-37.741,4.159],[-27.24,8.165],[-30.932,0.935],[-36.359,-5.904],[-1.335,2.924],[-0.279,-0.049]],"o":[[-33.18,2.994],[-28.439,8.893],[-16.986,1.712],[-17.241,-1.122],[-19.822,-4.247],[-23.572,-5.337],[5.986,-1.525],[-3.147,0.731],[1.065,1.065],[5.969,-0.506],[51.485,-1.018],[30.01,6.579],[33.377,-3.678],[29.758,-8.92],[37.891,-1.145],[1.233,0.2],[1.321,-2.893],[-38.874,-6.864]],"v":[[149.5,-21.5],[59.663,-0.83],[-31.5,20.5],[-83.453,21.203],[-132.5,14.5],[-197.949,-3.132],[-272.5,-4.5],[-271.71,-5.344],[-277.5,-1.5],[-264.746,-1.171],[-250.5,-2.5],[-131.5,18.5],[-28.5,24.5],[62.5,3.5],[153.5,-18.5],[262.5,-1.5],[278.5,-0.5],[265.5,-5.5]],"c":true}],"h":1},{"t":134,"s":[{"i":[[36.686,-4.409],[32.612,-9.784],[43.267,1.496],[17.277,3.615],[17.001,4.886],[9.089,1.908],[8.95,0.446],[9.374,-0.135],[6.47,-1.91],[-7.316,0.042],[-3.558,0.142],[-22.492,-6.59],[-39.33,-0.412],[-31.247,8.775],[-35.339,2.901],[-29.291,-5.877],[-2.142,2.142],[4.223,0.765]],"o":[[-36.285,4.361],[-32.612,9.784],[-18.889,-0.653],[-17.277,-3.615],[-6.694,-1.924],[-9.089,-1.907],[-9.034,-0.45],[-9.374,0.135],[-7.822,2.309],[7.316,-0.042],[33.918,-1.356],[33.411,9.789],[42.935,0.449],[32.004,-8.988],[35.108,-2.882],[3.982,0.799],[2.258,-2.258],[-37.423,-6.781]],"v":[[146.5,-19.5],[46.737,5.892],[-63.5,22.5],[-117.416,15.675],[-168.5,2.5],[-192.808,-3.609],[-220.5,-7.5],[-248.923,-8.27],[-273.5,-5.5],[-269.535,-2.661],[-248.5,-3.5],[-164.5,6.5],[-58.5,26.5],[49.5,9.5],[149.5,-16.5],[245.5,-4.5],[278.5,-0.5],[265.5,-5.5]],"c":true}],"h":1},{"t":135,"s":[{"i":[[35.339,-4.501],[33.268,-9.874],[44.1,3.058],[25.197,7.011],[29.104,1.006],[9.29,-0.244],[6.584,-2.311],[-7.217,0.097],[-3.713,0.273],[-14.421,-1.509],[-11.227,-3.147],[-17.086,-4.11],[-18.765,-0.825],[-31.546,8.397],[-34.047,3.487],[-29.106,-5.493],[-2.55,2.55],[2.335,0.451]],"o":[[-35.827,4.563],[-33.268,9.874],[-28.108,-1.949],[-25.197,-7.011],[-8.258,-0.285],[-9.289,0.244],[-7.582,2.662],[7.217,-0.097],[16.089,-1.184],[14.421,1.509],[16.892,4.735],[17.086,4.11],[44.467,1.955],[32.557,-8.666],[33.478,-3.429],[7.489,1.413],[2.68,-2.68],[-35.388,-6.829]],"v":[[149.5,-18.5],[49.205,7.715],[-63.5,22.5],[-141.753,6.293],[-221.5,-8.5],[-248.755,-8.947],[-273.5,-5.5],[-269.472,-2.299],[-248.5,-3.5],[-202.354,-2.748],[-163.5,4.5],[-112.905,18.432],[-59.5,26.5],[51.5,11.5],[151.5,-15.5],[247.5,-5.5],[278.5,-0.5],[265.5,-5.5]],"c":true}],"h":1},{"t":136,"s":[{"i":[[32.636,-3.198],[16.756,-4.919],[16.326,-4.495],[18.785,-2.542],[21.967,1.82],[16.85,4.136],[18.702,4.888],[19.863,1.312],[15.195,-4.738],[-7.057,0.358],[-3.75,0.366],[-14.791,-1.406],[-10.982,-2.924],[-37.27,-3.428],[-69.339,10.485],[-29.077,-5.392],[-1.275,2.884],[-0.349,-0.069]],"o":[[-18.649,1.827],[-16.756,4.919],[-16.894,4.652],[-18.785,2.542],[-18.899,-1.566],[-16.85,-4.136],[-13.351,-3.489],[-19.863,-1.312],[-8.978,2.8],[7.057,-0.358],[15.855,-1.547],[14.791,1.406],[34.585,9.206],[91.997,8.461],[35.088,-5.306],[6.165,1.143],[1.056,-2.389],[-33.804,-6.734]],"v":[[156.5,-17.5],[103.758,-6.501],[54.5,8.5],[1.305,19.854],[-59.5,21.5],[-112.148,12.491],[-164.5,-1.5],[-217.117,-9.671],[-272.5,-5.5],[-270.547,-2.626],[-249.5,-4.5],[-202.846,-4.353],[-163.5,2.5],[-60.5,25.5],[150.5,-13.5],[249.5,-4.5],[278.5,-1.5],[266.5,-6.5]],"c":true}],"h":1},{"t":137,"s":[{"i":[[27.593,-2.04],[2.587,-0.08],[2.601,-0.456],[16.086,-5.255],[17.04,-4.071],[19.035,-1.668],[22.238,2.645],[33.241,7.757],[38.091,-7.827],[1.823,-1.248],[-6.745,0.701],[-3.652,0.59],[-2.897,0.277],[-63.457,-6.993],[-33.331,7.93],[-33.975,5.625],[-28.622,-5.027],[16.569,5.168]],"o":[[-3.053,0.226],[-2.587,0.08],[-16.617,2.909],[-16.086,5.255],[-16.621,3.971],[-19.035,1.668],[-31.945,-3.799],[-33.241,-7.757],[-3.453,0.71],[-1.823,1.248],[3.494,-0.363],[3.652,-0.59],[77.156,-7.374],[44.843,4.942],[34.044,-8.099],[30.684,-5.08],[9.002,1.581],[-29.166,-9.097]],"v":[[165.5,-16.5],[157.161,-16.172],[149.5,-15.5],[100.817,-2.371],[51.5,12.5],[-1.788,21.462],[-63.5,20.5],[-160.39,-1.719],[-266.5,-6.5],[-276.149,-2.942],[-270.5,-1.5],[-259.552,-3.064],[-249.5,-4.5],[-61.5,24.5],[51.5,15.5],[150.5,-11.5],[246.5,-5.5],[273.5,-4.5]],"c":true}],"h":1},{"t":138,"s":[{"i":[[25.385,-1.76],[4.071,-0.202],[4.089,-0.87],[16.168,-5.199],[17.394,-3.813],[19.422,-1.105],[20.767,3.049],[16.255,4.581],[18.373,4.092],[19.16,0.23],[15.309,-4.271],[-3.965,0.49],[-8.643,0.364],[-53.216,-7.533],[-34.18,7.324],[-32.402,6.705],[-28.626,-5.121],[14.34,5.439]],"o":[[-4.625,0.32],[-4.071,0.202],[-15.935,3.391],[-16.168,5.199],[-16.544,3.627],[-19.422,1.105],[-17.608,-2.585],[-16.255,-4.581],[-15.05,-3.352],[-19.16,-0.23],[-17.244,4.811],[10.456,-1.292],[65.912,-2.778],[42.604,6.031],[34.739,-7.444],[29.426,-6.089],[8.9,1.592],[-25.839,-9.801]],"v":[[173.5,-15.5],[160.598,-14.913],[148.5,-13.5],[100.594,0.183],[50.5,14.5],[-3.832,22.007],[-64.5,19.5],[-114.427,8.13],[-165.5,-5.5],[-218.806,-11.217],[-272.5,-5.5],[-250.5,-4.5],[-221.5,-7.5],[-63.5,23.5],[51.5,18.5],[149.5,-9.5],[246.5,-5.5],[274.5,-4.5]],"c":true}],"h":1},{"t":139,"s":[{"i":[[23.992,-1.545],[9.464,-1.879],[9.543,-2.801],[27.82,-5.005],[35.752,4.936],[18.144,4.812],[18.892,4.331],[20.611,0.088],[15.166,-4.881],[-9.997,1.077],[-0.462,0.054],[-18.06,-2.06],[-14.21,-4.188],[-51.501,2.264],[-43.735,12.547],[-36.272,-5.76],[-2.968,2.968],[-1.552,-0.394]],"o":[[-10.603,0.683],[-9.464,1.879],[-26.969,7.917],[-27.82,5.005],[-17.534,-2.421],[-18.144,-4.812],[-15.391,-3.529],[-20.611,-0.088],[-10.447,3.362],[9.996,-1.077],[20.548,-2.427],[18.06,2.06],[43.809,12.91],[49.896,-2.194],[29.749,-8.535],[3.86,0.613],[2.248,-2.248],[-26.802,-6.804]],"v":[[181.5,-14.5],[151.705,-10.589],[123.5,-3.5],[43.087,17.64],[-50.5,19.5],[-103.981,7.933],[-159.5,-6.5],[-216.168,-12.308],[-272.5,-5.5],[-265.682,-3.437],[-242.5,-6.5],[-184.247,-6.461],[-135.5,3.5],[3.5,26.5],[135.5,-2.5],[242.5,-6.5],[278.5,-1.5],[270.5,-6.5]],"c":true}],"h":1},{"t":140,"s":[{"i":[[21.492,-1.384],[9.631,-1.85],[9.724,-2.909],[28.288,-4.596],[36.495,5.567],[18.005,5.012],[19.709,4.165],[20.948,-0.301],[15.632,-5.09],[-3.539,-0.075],[-2.083,0.329],[-18.982,0.227],[-15.706,-3.809],[-40.38,-5.228],[-35.046,8.975],[-43.663,0],[-19.036,-3.238],[16.949,4.56]],"o":[[-10.754,0.692],[-9.631,1.85],[-27.352,8.183],[-28.288,4.596],[-18.272,-2.787],[-18.005,-5.012],[-15.577,-3.292],[-20.948,0.301],[-6.238,2.031],[3.539,0.075],[18.367,-2.9],[18.982,-0.227],[39.102,9.483],[48.383,6.265],[37.575,-9.622],[18.255,0],[10.329,1.757],[-23.995,-6.456]],"v":[[188.5,-13.5],[158.227,-9.662],[129.5,-2.5],[47.857,18.313],[-47.5,18.5],[-101.422,6.033],[-157.5,-8.5],[-214.958,-13.286],[-272.5,-5.5],[-273.741,-2.73],[-262.5,-3.5],[-205.504,-8.532],[-152.5,-3.5],[-40.5,23.5],[83.5,14.5],[198.5,-10.5],[258.5,-4.5],[270.5,-5.5]],"c":true}],"h":1},{"t":141,"s":[{"i":[[76.857,-5.683],[11.101,-1.28],[7.8,-2.301],[-3.168,-0.115],[-3.402,0.546],[-7.804,1.005],[-7.135,0.591],[-28.081,-7.965],[-28.788,-4.113],[-20.995,1.807],[-17.641,4.398],[-18.687,5.075],[-22.404,0],[-14.528,-1.844],[19.621,6.371],[22.058,-0.149],[32.016,-8.764],[42.675,1.339]],"o":[[-7.794,0.576],[-11.101,1.28],[-7.074,2.087],[3.168,0.115],[8.648,-1.389],[7.805,-1.005],[35.887,-2.974],[28.081,7.965],[25.378,3.626],[20.995,-1.807],[18.849,-4.698],[18.687,-5.075],[10.789,0],[9.316,1.182],[-20.904,-6.788],[-38.621,0.261],[-31.537,8.633],[-77.751,-2.439]],"v":[[-211.5,-13.5],[-241.495,-10.794],[-271.5,-5.5],[-274.857,-2.524],[-262.5,-3.5],[-237.865,-7.098],[-215.5,-9.5],[-121.676,1.685],[-38.5,23.5],[30.803,25.517],[88.5,15.5],[143.833,-0.524],[204.5,-9.5],[242.5,-6.5],[272.5,-5.5],[203.5,-13.5],[103.5,7.5],[-3.5,22.5]],"c":true}],"h":1},{"t":142,"s":[{"i":[[13.629,-0.945],[11.878,-1.5],[8.68,-2.388],[-2.288,-0.264],[-5.673,0.934],[-7.98,1.224],[-6.457,0.683],[-28.589,-8.003],[-28.114,-4.848],[-21.418,1.472],[-18.437,4.405],[-19.109,5.096],[-22.246,0],[-12.099,-1.434],[16.321,5.694],[19.708,-0.057],[63.884,-3.348],[57.264,12.186]],"o":[[-8.81,0.611],[-11.878,1.5],[-6.826,1.878],[2.288,0.264],[8.623,-1.42],[7.98,-1.224],[36.53,-3.861],[28.589,8.003],[24.891,4.291],[21.418,-1.472],[19.317,-4.616],[19.109,-5.096],[9.067,0],[9.574,1.135],[-18.577,-6.482],[-66.829,0.192],[-72.413,3.795],[-16.105,-3.427]],"v":[[-205.5,-14.5],[-238.097,-11.333],[-270.5,-5.5],[-275.874,-2.391],[-262.5,-3.5],[-237.376,-7.553],[-215.5,-10.5],[-119.688,-0.531],[-36.5,22.5],[32.84,26.022],[92.5,16.5],[149.303,0.538],[210.5,-8.5],[244.5,-5.5],[273.5,-5.5],[210.5,-12.5],[30.5,22.5],[-150.5,-12.5]],"c":true}],"h":1},{"t":143,"s":[{"i":[[54.068,-3.998],[12.34,-1.69],[9.906,-2.521],[-2.349,-0.273],[-6.137,1.01],[-7.827,1.188],[-6.919,0.806],[-29.034,-7.702],[-28.084,-5.474],[-21.691,1.144],[-19.08,4.326],[-24.204,5.192],[-30.106,-3.455],[-7.538,-0.829],[5.07,2.534],[13.688,-0.039],[66.319,-2.08],[28.823,7.642]],"o":[[-9.734,0.72],[-12.34,1.69],[-7.531,1.917],[2.349,0.273],[8.774,-1.444],[7.827,-1.188],[36.78,-4.282],[29.034,7.702],[25.154,4.902],[21.691,-1.144],[25.078,-5.686],[24.204,-5.192],[1.919,0.22],[7.538,0.829],[-12.688,-6.344],[-66.878,0.192],[-36.212,1.136],[-43.267,-11.471]],"v":[[-200.5,-15.5],[-234.872,-11.851],[-269.5,-5.5],[-275.752,-2.304],[-261.5,-3.5],[-236.609,-7.479],[-214.5,-10.5],[-117.478,-1.817],[-33.5,21.5],[36.556,26.421],[97.5,17.5],[169.729,-0.856],[249.5,-5.5],[268.242,-2.934],[276.5,-4.5],[216.5,-11.5],[32.5,22.5],[-64.5,10.5]],"c":true}],"h":1},{"t":144,"s":[{"i":[[51.234,-4.006],[10.911,-1.573],[10.69,-1.952],[4.354,-1.614],[-7.915,0.91],[-20.876,3.003],[-18.883,-3.152],[-14.358,-4.365],[-14.136,-3.962],[-15.786,-2.759],[-18.707,0],[-34.039,8.801],[-41.053,-4.205],[-2.071,2.071],[2.178,0.452],[42.761,-12.008],[33.293,0],[28.765,7.983]],"o":[[-9.666,0.756],[-10.911,1.573],[-2.499,0.456],[-4.354,1.614],[18.612,-2.141],[20.876,-3.003],[15.432,2.576],[14.358,4.365],[14.148,3.966],[15.786,2.759],[40.793,0],[34.039,-8.801],[5.807,0.595],[2.906,-2.906],[-52.429,-10.875],[-31.406,8.82],[-37.379,0],[-40.625,-11.275]],"v":[[-195.5,-16.5],[-226.732,-12.897],[-259.5,-7.5],[-273.31,-3.475],[-271.5,-1.5],[-211.204,-10.97],[-150.5,-12.5],[-106.028,-1.54],[-63.5,11.5],[-18.92,21.974],[32.5,26.5],[141.305,7.846],[250.5,-4.5],[278.5,-1.5],[267.5,-6.5],[129.5,7.5],[32.5,22.5],[-63.5,7.5]],"c":true}],"h":1},{"t":145,"s":[{"i":[[7.543,-0.59],[6.997,-0.877],[10.227,-1.882],[7.073,-1.186],[4.591,-1.5],[-3.994,0.004],[-0.369,0.059],[-18.371,2.755],[-19.621,-1.899],[-8.34,-2.45],[-8.152,-2.38],[-65.021,5.059],[-75.436,-5.958],[15.557,5.743],[3.954,0.334],[65.278,-5.436],[48.574,13.962],[16.956,1.641]],"o":[[-7.784,0.608],[-6.997,0.877],[-4.115,0.758],[-7.073,1.186],[-6.346,2.074],[3.994,-0.004],[17.895,-2.877],[18.371,-2.755],[8.487,0.822],[8.34,2.45],[49.686,14.502],[67.244,-5.232],[8.144,0.643],[-6.826,-2.52],[-76.137,-6.43],[-65.381,5.444],[-16.594,-4.77],[-11.338,-1.097]],"v":[[-190.5,-17.5],[-211.668,-15.455],[-236.5,-11.5],[-254.644,-8.557],[-273.5,-4.5],[-273.536,-1.9],[-263.5,-2.5],[-209.294,-12.082],[-152.5,-14.5],[-127.249,-9.168],[-102.5,-1.5],[59.5,25.5],[249.5,-4.5],[274.5,-5.5],[252.5,-7.5],[61.5,21.5],[-101.5,-5.5],[-152.5,-18.5]],"c":true}],"h":1},{"t":146,"s":[{"i":[[36.498,-2.158],[9.048,-1.096],[11.06,-2.098],[8.672,-1.222],[5.988,-2.102],[-8.102,0.715],[-1.526,0.276],[-17.309,2.678],[-17.055,-2.549],[-32.287,-9.684],[-44.974,1.798],[-29.202,7.818],[-36.543,-2.617],[-1.608,1.608],[0.46,0.079],[28.568,-8.085],[41.984,-0.226],[33.494,9.553]],"o":[[-8.75,0.517],[-9.048,1.096],[-5.323,1.009],[-8.672,1.222],[-8.935,3.136],[8.102,-0.715],[15.707,-2.839],[17.309,-2.677],[33.88,5.063],[32.287,9.684],[33.647,-1.345],[29.202,-7.818],[6.341,0.454],[2.585,-2.585],[-36.56,-6.303],[-35.615,10.08],[-42.191,0.227],[-31.003,-8.843]],"v":[[-171.5,-19.5],[-197.768,-17.185],[-227.5,-12.5],[-250.001,-9.319],[-273.5,-4.5],[-268.846,-1.941],[-248.5,-4.5],[-198.511,-14.041],[-146.5,-15.5],[-50.821,10.646],[61.5,26.5],[152.828,8.528],[248.5,-3.5],[278.5,-1.5],[267.5,-6.5],[163.5,1.5],[51.5,22.5],[-61.5,3.5]],"c":true}],"h":1},{"t":147,"s":[{"i":[[41.455,-2.874],[9.013,-1.213],[12.347,-2.483],[8.793,-1.492],[6.111,-1.88],[-8.24,0.778],[-2.332,0.44],[-15.954,2.932],[-16.71,-1.457],[-16.481,-4.976],[-16.311,-4.545],[-42.052,0],[-33.986,10.283],[-31.729,-1.337],[-2.344,2.344],[0.155,0.023],[74.931,0],[32.807,9.087]],"o":[[-9.6,0.666],[-9.013,1.213],[-5.718,1.15],[-8.793,1.492],[-8.294,2.552],[8.24,-0.778],[14.472,-2.731],[15.954,-2.932],[17.766,1.55],[16.481,4.976],[32.287,8.996],[40.181,0],[22.258,-6.735],[6.713,0.283],[3.143,-3.143],[-80.105,-12.08],[-42.603,0],[-36.951,-10.235]],"v":[[-167.5,-20.5],[-194.44,-17.863],[-225.5,-12.5],[-248.705,-8.548],[-272.5,-3.5],[-266.97,-1.756],[-245.5,-4.5],[-199.678,-14.141],[-150.5,-17.5],[-99.409,-6.747],[-50.5,8.5],[57.5,26.5],[164.5,7.5],[248.5,-3.5],[278.5,-1.5],[267.5,-5.5],[59.5,22.5],[-49.5,4.5]],"c":true}],"h":1},{"t":148,"s":[{"i":[[41.384,-3.06],[9.517,-1.499],[10.636,-2.242],[8.23,-1.362],[8.113,-1.873],[-0.649,-0.835],[-3.751,0.344],[-19.867,4.645],[-20.885,-1.473],[-16.564,-4.756],[-16.091,-4.732],[-40.885,-1.138],[-33.784,10.107],[-32.53,-0.341],[14.774,4.722],[23.82,-6.913],[41.791,0.826],[31.509,9.074]],"o":[[-10.298,0.761],[-9.517,1.499],[-7.966,1.68],[-8.23,1.362],[-4.346,1.003],[0.649,0.835],[20.648,-1.892],[19.867,-4.645],[17.653,1.245],[16.564,4.756],[31.777,9.346],[41.191,1.146],[23.08,-6.905],[9.007,0.094],[-32.532,-10.397],[-34.45,9.998],[-40.842,-0.807],[-36.431,-10.492]],"v":[[-163.5,-21.5],[-192.747,-18.111],[-222.5,-12.5],[-246.889,-8.145],[-271.5,-3.5],[-276.572,-0.49],[-269.5,0.5],[-209.178,-11.524],[-148.5,-18.5],[-97.329,-8.616],[-48.5,6.5],[57.5,26.5],[165.5,9.5],[247.5,-2.5],[274.5,-4.5],[168.5,4.5],[59.5,22.5],[-47.5,3.5]],"c":true}],"h":1},{"t":149,"s":[{"i":[[34.138,-2.487],[9.791,-1.689],[11.618,-2.501],[9.175,-1.265],[8.06,-2.381],[3.258,-1.204],[-1.201,-1.2],[-7.017,1.317],[-2.254,0.41],[-34.107,-0.647],[-32.034,-9.314],[-38.165,-2.646],[-83.529,-2.465],[-1.192,2.528],[2.014,0.178],[26.014,-7.975],[40.328,3.107],[32.873,9.779]],"o":[[-10.219,0.745],[-9.791,1.689],[-7.241,1.559],[-9.175,1.265],[6.832,-2.018],[-3.258,1.204],[1.678,1.678],[7.017,-1.317],[33.994,-6.192],[36.433,0.691],[31.51,9.162],[83.081,5.76],[2.245,0.066],[1.474,-3.125],[-40.218,-3.555],[-36.565,11.209],[-38.552,-2.97],[-29.65,-8.821]],"v":[[-159.5,-22.5],[-188.95,-18.817],[-220.5,-12.5],[-245.885,-8.617],[-272.5,-3.5],[-270.776,-3.914],[-277.5,0.5],[-261.932,0.066],[-245.5,-3.5],[-150.5,-19.5],[-48.5,4.5],[55.5,26.5],[264.5,-1.5],[278.5,-1.5],[266.5,-5.5],[167.5,7.5],[54.5,21.5],[-51.5,-0.5]],"c":true}],"h":1},{"t":150,"s":[{"i":[[0.2,-0.012],[10.032,-1.912],[12.207,-2.731],[9.849,-1.759],[7.393,-1.577],[-8.871,0.518],[-1.772,0.329],[-15.812,3.85],[-16.892,-0.349],[-16.275,-4.024],[-15.243,-4.56],[-68.682,18.763],[-36.784,0.711],[-1.905,3.907],[0.72,0.076],[25.435,-7.467],[39.297,4.185],[76.979,3.529]],"o":[[-10.666,0.621],[-10.032,1.912],[-6.209,1.389],[-9.849,1.759],[-11.256,2.4],[8.871,-0.518],[15.86,-2.949],[15.812,-3.85],[16.658,0.345],[16.275,4.024],[57.663,17.251],[31.882,-8.71],[4.25,-0.082],[1.784,-3.659],[-37.09,-3.925],[-34.269,10.06],[-78.866,-8.4],[-0.937,-0.043]],"v":[[-154.5,-23.5],[-184.844,-19.582],[-217.5,-12.5],[-243.112,-7.641],[-270.5,-2.5],[-267.271,-0.453],[-244.5,-2.5],[-197.274,-13.974],[-148.5,-20.5],[-98.938,-13.162],[-51.5,0.5],[151.5,18.5],[250.5,-1.5],[278.5,-1.5],[266.5,-4.5],[169.5,8.5],[56.5,21.5],[-152.5,-24.5]],"c":true}],"h":1},{"t":151,"s":[{"i":[[1.196,-0.121],[10.285,-2.254],[9,-1.986],[9.676,-1.45],[8.425,-1.685],[2.239,-0.515],[-0.645,-1.402],[-2.387,0.082],[2.119,-0.091],[-44.799,-2.557],[-79.53,-8.471],[-32.712,9.916],[-29.658,1.185],[-2.185,2.185],[1.181,0.109],[26.272,-7.727],[38.987,4.121],[72.494,4.394]],"o":[[-9.861,0.998],[-10.285,2.254],[-6.871,1.517],[-9.676,1.45],[2.312,-0.462],[-2.239,0.515],[0.569,1.236],[2.387,-0.082],[46.171,-1.976],[71.456,4.079],[36.931,3.933],[22.303,-6.761],[5.941,-0.237],[2.493,-2.493],[-37.302,-3.45],[-32.177,9.464],[-76.874,-8.125],[-6.232,-0.378]],"v":[[-157.5,-23.5],[-188.146,-18.241],[-217.5,-11.5],[-243.334,-7.126],[-271.5,-2.5],[-273.25,-2.398],[-277.5,0.5],[-271.484,1.859],[-269.5,1.5],[-140.5,-20.5],[60.5,24.5],[169.5,14.5],[247.5,-0.5],[278.5,-0.5],[267.5,-4.5],[172.5,9.5],[62.5,21.5],[-140.5,-24.5]],"c":true}],"h":1},{"t":152,"s":[{"i":[[48.337,-4.437],[15.639,-3.711],[16.811,-2.723],[7.797,-1.444],[-1.079,-1.079],[-7.669,1.076],[-2.558,0.464],[-15.506,4.121],[-16.077,0.453],[-23.723,-6.239],[-22.995,-6.75],[-26.073,-3.091],[-27.194,5.976],[-34.422,1.715],[-1.797,3.607],[1.898,0.243],[32.579,-7.078],[44.726,12.732]],"o":[[-15.633,1.435],[-15.639,3.711],[-0.891,0.144],[-7.797,1.444],[1.766,1.766],[7.669,-1.076],[16.9,-3.063],[15.506,-4.121],[25.114,-0.707],[23.723,6.239],[22.515,6.61],[26.073,3.091],[29.894,-6.569],[5.793,-0.289],[1.481,-2.974],[-50.56,-6.479],[-55.965,12.158],[-44.775,-12.746]],"v":[[-151.5,-24.5],[-198.116,-15.966],[-246.5,-5.5],[-263.478,-2.701],[-277.5,1.5],[-260.594,1.672],[-242.5,-1.5],[-194.382,-13.457],[-147.5,-21.5],[-74.412,-11.593],[-4.5,9.5],[68.992,25.439],[149.5,22.5],[245.5,0.5],[278.5,-0.5],[272.5,-3.5],[149.5,18.5],[-4.5,5.5]],"c":true}],"h":1},{"t":153,"s":[{"i":[[49.444,-5.694],[10.192,-2.584],[10.94,-2.48],[10.151,-1.451],[9.192,-1.564],[0.393,-0.917],[-5.638,0.192],[-4.841,0.587],[-3.176,0.536],[-31.672,2.403],[-23.527,-5.609],[-82.532,16.959],[-23.165,5.01],[-17.568,0.702],[-1.268,2.6],[2.36,-0.038],[31.921,-6.389],[45.155,12.954]],"o":[[-10.294,1.185],[-10.191,2.584],[-7.204,1.633],[-10.151,1.451],[-3.067,0.522],[-0.393,0.917],[3.461,-0.117],[4.841,-0.587],[32.435,-5.473],[26.111,-1.981],[66.454,15.843],[17.684,-3.634],[13.624,-2.946],[3.714,-0.148],[1.797,-3.685],[-44.493,0.717],[-55.945,11.198],[-43.927,-12.602]],"v":[[-151.5,-24.5],[-182.016,-18.471],[-213.5,-10.5],[-240.509,-5.948],[-270.5,-1.5],[-276.529,1.035],[-269.5,2.5],[-256.286,1.314],[-243.5,-0.5],[-148.5,-21.5],[-71.5,-11.5],[151.5,23.5],[210.5,7.5],[260.5,0.5],[278.5,-0.5],[262.5,-3.5],[150.5,19.5],[-3.5,3.5]],"c":true}],"h":1},{"t":154,"s":[{"i":[[29.124,-3.709],[15.576,-4.162],[17.565,-2.425],[6.123,-0.318],[2.624,-1.33],[-9.419,0.663],[-0.798,0.123],[-15.148,4.164],[-15.637,1.602],[-24.258,-5.079],[-22.588,-6.568],[-56.574,10.49],[-36.087,4.307],[1.329,2.759],[4.893,-0.594],[30.686,-5.248],[43.332,12.575],[23.286,4.876]],"o":[[-15.13,1.927],[-15.576,4.162],[-2.886,0.399],[-6.122,0.318],[-5.476,2.775],[9.419,-0.663],[17.769,-2.742],[15.148,-4.164],[29.008,-2.971],[23.315,4.882],[44.164,12.841],[28.839,-5.347],[2.683,-0.32],[-1.366,-2.836],[-33.228,4.035],[-59.626,10.198],[-22.791,-6.614],[-23.786,-4.98]],"v":[[-150.5,-24.5],[-196.174,-14.373],[-245.5,-3.5],[-260.697,-2.699],[-275.5,-0.5],[-263.705,1.673],[-242.5,-0.5],[-193.901,-11.855],[-148.5,-21.5],[-69.5,-13.5],[-0.5,5.5],[151.5,24.5],[243.5,2.5],[278.5,-1.5],[242.5,-1.5],[150.5,20.5],[-1.5,1.5],[-69.5,-17.5]],"c":true}],"h":1},{"t":155,"s":[{"i":[[52.001,-6.25],[10.325,-2.663],[13.063,-3.067],[10.515,-1.477],[9.597,-1.367],[-4.208,-0.47],[-2.462,0.205],[-3.156,0.379],[-2.346,0.317],[-16.302,4.523],[-15.286,1.273],[-43.468,-13.005],[-53.009,8.656],[-43.383,2.826],[2.078,4.172],[5.323,-0.664],[29.716,-4.679],[44.174,12.968]],"o":[[-10.637,1.279],[-10.325,2.664],[-7.344,1.724],[-10.515,1.477],[-9.294,1.324],[4.208,0.47],[2.028,-0.169],[3.156,-0.379],[19.505,-2.634],[16.302,-4.523],[51.469,-4.286],[45.756,13.689],[34.43,-5.622],[-0.349,0.023],[-1.492,-2.995],[-38.118,4.758],[-55.795,8.785],[-42.978,-12.617]],"v":[[-146.5,-24.5],[-177.181,-18.342],[-211.5,-9.5],[-239.31,-4.732],[-270.5,-0.5],[-274.317,2.147],[-260.5,2.5],[-252.238,1.611],[-243.5,0.5],[-190.337,-11.521],[-143.5,-21.5],[-1.5,2.5],[151.5,25.5],[261.5,1.5],[278.5,-1.5],[243.5,-0.5],[150.5,21.5],[-2.5,-1.5]],"c":true}],"h":1},{"t":156,"s":[{"i":[[50.905,-3.529],[1.942,0.082],[1.818,-0.229],[9.826,-2.95],[13.531,-3.047],[5.554,-1.043],[6.334,-0.825],[4.866,-0.107],[4.692,-1.68],[-3.29,0.42],[-29.382,4.133],[-45.52,-13.286],[-54.635,6.111],[-22.012,5.035],[-21.651,3.918],[7.95,-0.503],[33.308,-3.412],[41.031,12.415]],"o":[[-1.415,0.098],[-1.942,-0.082],[-9.165,1.153],[-9.826,2.95],[-4.45,1.002],[-5.554,1.043],[-6.845,0.892],[-4.866,0.107],[-12.483,4.469],[36.672,-4.686],[55.432,-7.798],[45.258,13.21],[18.778,-2.1],[17.615,-4.029],[17.604,-3.186],[-41.543,2.628],[-53.522,5.482],[-43.04,-13.023]],"v":[[-137.5,-24.5],[-142.697,-24.598],[-148.5,-24.5],[-176.226,-17.921],[-210.5,-8.5],[-225.586,-5.368],[-243.5,-2.5],[-260.615,-1.591],[-274.5,0.5],[-242.5,1.5],[-147.5,-20.5],[1.5,1.5],[149.5,26.5],[211.5,10.5],[271.5,1.5],[259.5,-1.5],[148.5,22.5],[6.5,-1.5]],"c":true}],"h":1},{"t":157,"s":[{"i":[[52.885,-3.667],[11.543,-3.288],[16.757,-3.732],[10.119,-1.139],[10.384,-0.406],[-3.095,-0.938],[-4.013,0.121],[-19.024,5.13],[-15.868,2.846],[-24.917,-4.284],[-23.741,-6.811],[-25.163,-5.892],[-26.459,2.561],[-19.375,4.58],[-16.907,2.552],[8.033,-0.669],[33.064,-2.844],[40.642,11.795]],"o":[[-16.069,1.114],[-11.543,3.288],[-9.141,2.036],[-10.119,1.139],[-9.394,0.367],[3.095,0.938],[21.035,-0.635],[19.024,-5.13],[27.591,-4.948],[24.917,4.284],[20.89,5.993],[25.163,5.892],[18.999,-1.839],[12.126,-2.866],[16.879,-2.548],[-40.141,3.343],[-52.202,4.491],[-43.406,-12.597]],"v":[[-129.5,-24.5],[-168.483,-17.464],[-208.5,-6.5],[-237.567,-1.778],[-268.5,0.5],[-275.056,2.866],[-261.5,4.5],[-201.125,-5.841],[-148.5,-19.5],[-70.112,-18.82],[2.5,-0.5],[72.323,19.415],[150.5,26.5],[212.5,11.5],[271.5,2.5],[261.5,-0.5],[149.5,22.5],[11.5,-2.5]],"c":true}],"h":1},{"t":158,"s":[{"i":[[77.179,-4.969],[12.908,-3.523],[17.614,-3.765],[8.968,-1.074],[7.888,-0.156],[3.967,-0.73],[-7.685,-0.985],[-20.761,5.78],[-16.676,2.991],[-36.804,-8.618],[-33.367,-7.955],[-13.191,-2.101],[-13.188,1.276],[-19.556,4.642],[-15.677,2.809],[6.782,-0.647],[35.118,-2.664],[21.856,4.868]],"o":[[-17.754,1.143],[-12.908,3.523],[-7.242,1.548],[-8.968,1.074],[-4.817,0.095],[-3.967,0.73],[24.281,3.111],[20.761,-5.78],[41.416,-7.428],[36.804,8.618],[12.047,2.872],[13.191,2.101],[18.796,-1.819],[11.484,-2.726],[18.857,-3.379],[-41.647,3.97],[-24.381,1.85],[-64.989,-14.475]],"v":[[-120.5,-24.5],[-164.105,-16.967],[-207.5,-5.5],[-232.516,-1.456],[-258.5,0.5],[-274.377,1.833],[-271.5,4.5],[-203.796,-2.423],[-147.5,-18.5],[-30.464,-12.537],[74.5,16.5],[112.644,24.611],[152.5,26.5],[214.5,12.5],[271.5,2.5],[261.5,-0.5],[150.5,22.5],[80.5,13.5]],"c":true}],"h":1},{"t":159,"s":[{"i":[[51.186,-3.549],[0.336,0.004],[0.328,0.008],[18.979,-5.528],[21.035,-2.388],[11.03,-0.332],[0.519,-0.518],[-3.879,-0.359],[-23.959,7.128],[-37.898,-5.233],[-31.476,-9.222],[-37.589,1.287],[-19.251,4.472],[-19.595,3.546],[1.149,2.546],[3.806,-0.432],[33.972,-0.725],[38.792,10.936]],"o":[[-0.328,0.023],[-0.336,-0.004],[-20.049,-0.498],[-18.979,5.528],[-1.362,0.154],[-11.03,0.332],[-2.077,2.077],[35.728,3.305],[35.22,-10.478],[37.037,5.114],[32.263,9.453],[20.121,-0.689],[15.714,-3.65],[-3.358,0.608],[-0.711,-1.575],[-41.074,4.662],[-47.513,1.014],[-40.789,-11.499]],"v":[[-112.5,-24.5],[-113.5,-24.477],[-114.5,-24.5],[-172.261,-14.665],[-231.5,-0.5],[-255.133,0.227],[-277.5,1.5],[-266.5,5.5],[-170.5,-9.5],[-58.5,-18.5],[42.5,6.5],[149.5,26.5],[213.5,13.5],[271.5,3.5],[278.5,0.5],[261.5,0.5],[148.5,22.5],[21.5,-4.5]],"c":true}],"h":1},{"t":160,"s":[{"i":[[76.508,-4.926],[0.337,0.002],[0.326,0.014],[21.785,-6.428],[23.382,-1.295],[3.869,0.037],[1.855,0],[2.176,-0.87],[-9.771,-0.519],[-23.848,7.175],[-39.744,-4.007],[-71.642,-4.264],[-24.031,5.485],[-17.496,3.289],[1.514,3.157],[2.851,-0.354],[39.233,-2.571],[20.615,4.925]],"o":[[-0.326,0.021],[-0.337,-0.002],[-22.476,-1.008],[-21.786,6.428],[-2.669,0.148],[-3.869,-0.037],[-8.066,0],[-2.176,0.87],[39.382,2.091],[34.497,-10.379],[78.358,7.899],[28.325,1.686],[14.572,-3.326],[-3.437,0.646],[-0.292,-0.608],[-41.166,5.113],[-22.584,1.48],[-62.562,-14.947]],"v":[[-103.5,-24.5],[-104.5,-24.473],[-105.5,-24.5],[-171.32,-13.228],[-238.5,1.5],[-249.111,1.611],[-258.5,1.5],[-275.378,3.111],[-265.5,5.5],[-170.5,-8.5],[-60.5,-20.5],[141.5,25.5],[217.5,13.5],[271.5,3.5],[278.5,0.5],[262.5,0.5],[155.5,21.5],[88.5,12.5]],"c":true}],"h":1},{"t":161,"s":[{"i":[[44.692,-3.099],[13.726,-3.133],[16.428,-4.311],[14.348,-1.694],[14.19,0.511],[0.095,-0.899],[-6.423,-0.659],[-16.046,3.074],[-13.007,3.841],[-18.498,2.423],[-20.434,-1.88],[-31.506,-9.533],[-36.211,-0.134],[-21.502,4.81],[-18.254,4.202],[7,-0.912],[33.968,0.629],[36.444,10.455]],"o":[[-16.668,1.155],[-13.726,3.133],[-10.418,2.735],[-14.348,1.694],[-7.044,-0.254],[-0.095,0.899],[20.81,2.135],[16.046,-3.074],[17.575,-5.189],[18.498,-2.423],[38.458,3.537],[32.479,9.827],[20.243,0.075],[14.406,-3.223],[15.25,-3.511],[-35.399,4.614],[-42.2,-0.782],[-38.207,-10.961]],"v":[[-95.5,-24.5],[-139.68,-17.867],[-183.5,-6.5],[-221.672,0.435],[-265.5,2.5],[-276.101,3.815],[-266.5,6.5],[-211.648,3.982],[-168.5,-7.5],[-114.645,-19.301],[-56.5,-20.5],[47.5,2.5],[151.5,25.5],[216.5,14.5],[272.5,4.5],[261.5,1.5],[150.5,21.5],[32.5,-6.5]],"c":true}],"h":1},{"t":162,"s":[{"i":[[69.516,-4.82],[0.336,0.004],[0.328,0.008],[25.16,-7.483],[32.337,1.211],[5.168,-0.413],[-12.302,-1.631],[-16.926,2.725],[-11.961,3.531],[-43.034,-2.287],[-31.296,-9.222],[-35.184,-0.668],[-18.077,3.627],[-15.795,3.127],[1.276,2.736],[2.146,-0.308],[35.982,0.939],[18.205,4.846]],"o":[[-0.328,0.023],[-0.336,-0.004],[-29.022,-0.721],[-25.16,7.483],[-7.627,-0.285],[-5.169,0.413],[18.334,2.431],[16.926,-2.725],[36.333,-10.727],[39.467,2.098],[30.805,9.078],[20.571,0.39],[14.525,-2.914],[-2.83,0.56],[-0.887,-1.902],[-36.086,5.171],[-20.043,-0.523],[-55.567,-14.791]],"v":[[-86.5,-24.5],[-87.5,-24.477],[-88.5,-24.5],[-167.014,-10.133],[-250.5,3.5],[-273.447,3.562],[-266.5,6.5],[-212.721,4.972],[-168.5,-5.5],[-56.5,-21.5],[48.5,0.5],[152.5,24.5],[216.5,14.5],[271.5,4.5],[278.5,1.5],[262.5,1.5],[151.5,20.5],[93.5,8.5]],"c":true}],"h":1},{"t":163,"s":[{"i":[[65.44,-4.214],[13.627,-2.517],[12.35,-3.957],[13.456,-2.488],[15.355,0.062],[8.089,0.739],[0.966,-0.966],[-4.642,-0.821],[-0.139,-0.01],[-38.981,10.106],[-39.69,-3.921],[-28.753,-8.392],[-31.838,-1.747],[-21.498,4.262],[-17.863,4.528],[7.687,-1.085],[35.703,2.006],[17.927,4.966]],"o":[[-15.144,0.975],[-13.626,2.517],[-12.822,4.108],[-13.456,2.488],[-2.678,-0.011],[-8.089,-0.739],[-1.707,1.707],[4.642,0.821],[47.076,3.156],[31.138,-8.073],[35.207,3.478],[30.653,8.947],[21.139,1.16],[16.598,-3.29],[14.766,-3.743],[-32.699,4.614],[-18.394,-1.034],[-53.669,-14.866]],"v":[[-77.5,-24.5],[-120.596,-19.236],[-159.5,-9.5],[-198.601,0.627],[-241.5,4.5],[-260.784,2.767],[-277.5,2.5],[-270.384,6.273],[-260.5,7.5],[-142.5,-10.5],[-37.5,-20.5],[57.5,0.5],[151.5,23.5],[217.5,15.5],[272.5,5.5],[261.5,2.5],[151.5,19.5],[95.5,7.5]],"c":true}],"h":1},{"t":164,"s":[{"i":[[64.422,-4.467],[14.657,-2.882],[14.243,-4.285],[15.2,-2.188],[19.224,0.958],[4.421,0.729],[1.172,-1.171],[-2.658,-0.85],[-1.69,-0.277],[-22.215,4.983],[-21.233,4.814],[-39.871,-3.987],[-27.461,-8.169],[-30.316,-1.401],[-32.645,5.916],[14.012,-2.187],[34.821,1.529],[17.484,4.91]],"o":[[-17.128,1.188],[-14.657,2.882],[-13.976,4.205],[-15.2,2.188],[-5.146,-0.256],[-4.421,-0.729],[-1.324,1.324],[2.658,0.85],[28.907,4.747],[22.215,-4.983],[29.344,-6.653],[33.483,3.348],[29.123,8.664],[37.371,1.727],[20.111,-3.644],[-31.398,4.901],[-17.839,-0.783],[-52.199,-14.659]],"v":[[-69.5,-24.5],[-116.663,-18.323],[-159.5,-7.5],[-202.564,2.372],[-253.5,4.5],[-268.481,2.429],[-277.5,2.5],[-274.261,5.785],[-266.5,7.5],[-191.245,4.671],[-127.5,-12.5],[-25.5,-20.5],[65.5,0.5],[155.5,22.5],[265.5,6.5],[262.5,2.5],[155.5,18.5],[100.5,6.5]],"c":true}],"h":1},{"t":165,"s":[{"i":[[62.156,-4.002],[8.847,-1.291],[9.407,-2.114],[15.922,-4.334],[21.064,-0.789],[7.468,0.443],[6.57,0.549],[0.35,-0.911],[-6.567,-1.037],[-23.305,6.354],[-40.971,2.638],[-32.613,-8.681],[-34.287,-3.512],[-32.9,5.794],[19.383,-2.082],[14.077,-2.369],[20.114,2.25],[16.082,4.596]],"o":[[-11.204,0.721],[-8.847,1.291],[-17.247,3.876],[-15.922,4.334],[-8.56,0.321],[-7.468,-0.443],[-8.168,-0.683],[-0.35,0.911],[36.079,5.698],[36.349,-9.911],[42.977,-2.767],[33.484,8.913],[40.951,4.195],[6.065,-1.068],[-20.237,2.174],[-23.468,3.949],[-16.625,-1.86],[-49.196,-14.059]],"v":[[-60.5,-24.5],[-89.848,-21.544],[-116.5,-16.5],[-164.637,-3.185],[-218.5,5.5],[-242.493,5.152],[-263.5,3.5],[-276.051,4.21],[-266.5,7.5],[-166.5,0.5],[-60.5,-20.5],[50.5,-6.5],[150.5,20.5],[256.5,8.5],[271.5,2.5],[217.5,11.5],[149.5,16.5],[100.5,3.5]],"c":true}],"h":1},{"t":166,"s":[{"i":[[77.373,-5.365],[9.141,-1.241],[9.841,-2.232],[16.519,-4.597],[23.015,-0.551],[7.746,0.376],[6.219,0.707],[3.51,-0.092],[-6.889,-1.84],[-19.256,1.216],[-14.036,3.662],[-37.719,3.275],[-48.815,-13.923],[-17.708,-1.344],[-35.482,6.679],[13.514,-1.242],[14.974,-2.425],[20.951,3.66]],"o":[[-11.593,0.804],[-9.141,1.241],[-17.907,4.06],[-16.519,4.597],[-8.795,0.21],[-7.746,-0.376],[-1.849,-0.21],[-3.51,0.092],[16.942,4.525],[19.255,-1.216],[33.454,-8.727],[66.632,-5.785],[16.823,4.798],[39.724,3.014],[8.316,-1.565],[-19.095,1.755],[-26.346,4.267],[-65.543,-11.451]],"v":[[-52.5,-24.5],[-82.814,-21.571],[-110.5,-16.5],[-160.169,-2.369],[-217.5,6.5],[-242.432,6.188],[-263.5,4.5],[-274.553,3.962],[-272.5,6.5],[-216.32,10.64],[-164.5,2.5],[-58.5,-20.5],[105.5,6.5],[157.5,19.5],[265.5,7.5],[272.5,2.5],[221.5,11.5],[149.5,14.5]],"c":true}],"h":1},{"t":167,"s":[{"i":[[35.374,-2.278],[9.224,-1.443],[10.579,-2.42],[17.516,-4.602],[23.431,-0.357],[8.289,0.588],[6.654,0.773],[3.76,-0.039],[-7.182,-1.975],[-10.226,-1.039],[-68.468,6.902],[-33.398,-8.872],[-36.336,-2.257],[-29.67,5.896],[12.955,-0.994],[3.277,-0.477],[34.527,6.224],[30.158,7.691]],"o":[[-12.525,0.806],[-9.224,1.443],[-18.505,4.233],[-17.516,4.602],[-8.19,0.125],[-8.289,-0.588],[-1.143,-0.133],[-3.76,0.039],[9.488,2.609],[80.527,8.183],[44.977,-4.534],[34.811,9.247],[35.676,2.216],[8.863,-1.761],[-6.093,0.467],[-34.339,4.994],[-29.834,-5.378],[-31.424,-8.014]],"v":[[-43.5,-24.5],[-74.959,-21.21],[-103.5,-15.5],[-155.805,-1.093],[-215.5,7.5],[-240.652,6.673],[-263.5,4.5],[-274.243,3.919],[-272.5,6.5],[-251.5,9.5],[-55.5,-20.5],[61.5,-8.5],[165.5,18.5],[266.5,7.5],[271.5,2.5],[264.5,3.5],[148.5,12.5],[59.5,-12.5]],"c":true}],"h":1},{"t":168,"s":[{"i":[[57.532,-3.989],[18.848,-4.548],[18.656,-5.218],[19.675,-0.556],[16.349,2.407],[2.878,-0.467],[-6.866,-1.773],[-23.58,2.235],[-17.298,5.098],[-23.315,4.044],[-26.219,-2.516],[-21.243,-5.637],[-22.153,-6.064],[-24.084,0.992],[-19.531,5.268],[4.208,-0.743],[18.713,-0.981],[21.315,6.245]],"o":[[-22.95,1.591],[-18.848,4.548],[-14.949,4.181],[-19.675,0.556],[-4.355,-0.641],[-2.878,0.467],[23.382,6.037],[23.58,-2.235],[21.52,-6.341],[23.315,-4.044],[24.874,2.387],[21.243,5.637],[19.135,5.238],[24.084,-0.992],[18.864,-5.089],[-15.458,2.729],[-34.164,1.79],[-45.022,-13.191]],"v":[[-35.5,-24.5],[-97.22,-14.721],[-152.5,0.5],[-206.45,7.441],[-262.5,4.5],[-275.416,4.19],[-271.5,7.5],[-199.437,11.851],[-136.5,-0.5],[-69.524,-17.143],[4.5,-20.5],[72.541,-7.758],[136.5,10.5],[203.703,16.38],[271.5,6.5],[258.5,4.5],[199.5,13.5],[119.5,2.5]],"c":true}],"h":1},{"t":169,"s":[{"i":[[54.574,-3.514],[10.11,-1.641],[11.055,-2.63],[9.404,-2.745],[9.96,-2.78],[20.389,-0.28],[16.59,2.546],[3.963,0.538],[0.478,-1.101],[-2.192,-0.269],[-27.732,8.172],[-53.541,-2.846],[-43.337,-12.17],[-28.04,2.269],[-16.936,7.317],[-4.181,0.711],[21.309,-0.852],[19.809,5.771]],"o":[[-12.503,0.805],[-10.11,1.641],[-9.422,2.242],[-9.404,2.744],[-15.855,4.426],[-20.389,0.28],[0.33,0.05],[-3.963,-0.538],[-1.357,3.128],[41.199,5.055],[42.809,-12.615],[50.325,2.675],[18.17,5.103],[19.201,-1.554],[12.925,-5.584],[-19.07,3.244],[-31.486,1.259],[-43.737,-12.742]],"v":[[-26.5,-24.5],[-59.586,-20.869],[-90.5,-14.5],[-118.596,-6.904],[-147.5,1.5],[-203.948,8.229],[-261.5,4.5],[-268.894,3.212],[-277.5,3.5],[-245.5,11.5],[-136.5,1.5],[3.5,-21.5],[136.5,8.5],[209.5,15.5],[275.5,5.5],[259.5,5.5],[200.5,12.5],[124.5,0.5]],"c":true}],"h":1},{"t":170,"s":[{"i":[[52.881,-3.666],[10.77,-1.576],[11.151,-2.809],[9.559,-2.922],[10.202,-2.904],[20.937,-0.077],[18.399,2.823],[3.892,0.503],[0.44,-1.013],[-0.158,-0.041],[-37.114,10.792],[-54.47,-1.305],[-43.956,-12.659],[-29.333,1.332],[-16.688,2.809],[12.311,-0.415],[31.706,-1.096],[19.499,5.801]],"o":[[-12.769,0.886],[-10.77,1.576],[-9.564,2.409],[-9.559,2.922],[-15.854,4.513],[-20.937,0.078],[0.007,0.001],[-3.892,-0.503],[-1.022,2.356],[44.574,11.508],[42.513,-12.361],[52.459,1.257],[18.528,5.336],[18.171,-0.825],[3.878,-0.653],[-25.76,0.868],[-30.902,1.068],[-41.931,-12.474]],"v":[[-18.5,-24.5],[-53.213,-20.943],[-85.5,-14.5],[-114.022,-6.371],[-143.5,2.5],[-200.591,9.002],[-261.5,4.5],[-269.165,3.241],[-277.5,3.5],[-271.5,7.5],[-135.5,4.5],[1.5,-21.5],[136.5,6.5],[208.5,15.5],[262.5,8.5],[274.5,2.5],[203.5,11.5],[129.5,-0.5]],"c":true}],"h":1},{"t":171,"s":[{"i":[[51.669,-3.327],[10.881,-1.771],[11.876,-3.041],[19.58,-5.166],[30.513,1.341],[9.295,1.405],[6.769,1.069],[3.722,-0.084],[-8.053,-2.162],[-23.535,-0.006],[-19.545,5.748],[-53.803,1.688],[-43.886,-12.883],[-29.178,0.812],[-18.315,4.298],[8.036,-0.462],[30.314,0],[16.949,4.975]],"o":[[-13.599,0.876],[-10.881,1.771],[-22.167,5.676],[-19.58,5.166],[-7.049,-0.31],[-9.295,-1.405],[-3.166,-0.5],[-3.722,0.084],[21.313,5.723],[23.535,0.006],[42.307,-12.443],[52.542,-1.648],[18.203,5.344],[21.332,-0.594],[4.717,-1.107],[-23.929,1.375],[-29.902,0],[-43.819,-12.863]],"v":[[-9.5,-24.5],[-45.292,-20.624],[-78.5,-13.5],[-137.74,4.263],[-209.5,11.5],[-235.21,8.569],[-260.5,4.5],[-273.914,3.503],[-270.5,6.5],[-201.674,15.104],[-135.5,6.5],[-0.5,-21.5],[137.5,3.5],[207.5,14.5],[271.5,7.5],[274.5,2.5],[204.5,10.5],[133.5,-1.5]],"c":true}],"h":1},{"t":172,"s":[{"i":[[49.949,-3.463],[11.79,-1.795],[11.063,-2.933],[20.323,-5.502],[30.391,1.922],[9.517,1.594],[6.966,1.185],[4.072,-0.273],[-10.262,-2.583],[-6.67,-0.911],[-4.716,-0.694],[-25.531,5.569],[-26.952,6.718],[-43.892,-6.06],[-38.358,-8.891],[-32.182,8.284],[-0.108,0.013],[26.948,7.851]],"o":[[-12.778,0.886],[-11.79,1.795],[-22.316,5.917],[-20.323,5.501],[-6.966,-0.441],[-9.517,-1.594],[-3.976,-0.676],[-4.072,0.273],[6.604,1.662],[6.67,0.911],[33.923,4.995],[25.531,-5.569],[35.528,-8.856],[38.948,5.378],[32.826,7.609],[21.877,-5.631],[-40.676,4.974],[-45.255,-13.184]],"v":[[-1.5,-24.5],[-38.287,-20.535],[-72.5,-13.5],[-133.444,5.379],[-206.5,12.5],[-232.5,9.058],[-258.5,4.5],[-274.178,3.555],[-268.5,7.5],[-248.084,11.226],[-230.5,13.5],[-143.772,10.285],[-67.5,-10.5],[52.5,-18.5],[160.5,7.5],[272.5,6.5],[244.5,7.5],[137.5,-2.5]],"c":true}],"h":1},{"t":173,"s":[{"i":[[48.556,-3.126],[14.779,-2.963],[14.599,-4.099],[14.108,-4.064],[14.028,-0.941],[14.665,1.463],[11.516,2.076],[6.287,1.387],[1.594,-1.593],[-2.236,-0.913],[-1.943,-0.46],[-34.54,6.551],[-34.867,7.905],[-40.438,-5.583],[-36.174,-8.385],[-30.493,8.386],[3.978,-0.565],[32.659,9.496]],"o":[[-16.287,1.049],[-14.779,2.963],[-13.538,3.802],[-14.108,4.064],[-13.823,0.927],[-14.665,-1.463],[-0.258,-0.046],[-6.287,-1.387],[-0.889,0.889],[2.236,0.913],[33.002,7.809],[31.586,-5.991],[33.841,-7.673],[35.636,4.921],[28.318,6.564],[15.697,-4.317],[-45.304,6.432],[-40.921,-11.898]],"v":[[7.5,-24.5],[-38.766,-18.288],[-82.5,-7.5],[-124.133,5.146],[-166.5,13.5],[-210.231,12.252],[-250.5,6.5],[-262.998,3.27],[-277.5,2.5],[-274.624,5.322],[-267.5,7.5],[-148.5,15.5],[-50.5,-12.5],[64.5,-18.5],[166.5,6.5],[273.5,6.5],[262.5,4.5],[142.5,-3.5]],"c":true}],"h":1},{"t":174,"s":[{"i":[[45.706,-3.169],[0.336,0.004],[0.328,0.008],[26.731,-8.601],[27.053,-4.345],[20.207,3.174],[16.898,1.558],[-3.203,-1.413],[-1.669,-0.313],[-20.056,-2.469],[-18.053,3.014],[-16.31,5.236],[-17.267,4.304],[-43.337,-4.776],[-37.198,-9.272],[-30.59,8.412],[3.13,-0.268],[24.267,7.11]],"o":[[-0.328,0.023],[-0.336,-0.004],[-30.023,-0.746],[-26.731,8.6],[-20.273,3.255],[-20.207,-3.174],[-10.481,-0.966],[3.203,1.413],[16.721,3.139],[20.056,2.468],[16.49,-2.752],[16.311,-5.236],[33.349,-8.313],[38.444,4.237],[27.411,6.833],[17.792,-4.893],[-39.803,3.408],[-39.66,-11.621]],"v":[[15.5,-24.5],[14.5,-24.477],[13.5,-24.5],[-70.727,-9.318],[-150.5,13.5],[-212.032,11.61],[-268.5,2.5],[-275.612,4.04],[-264.5,7.5],[-208,17.115],[-149.5,17.5],[-100.583,4.664],[-50.5,-10.5],[63.5,-19.5],[166.5,4.5],[273.5,6.5],[246.5,6.5],[147.5,-5.5]],"c":true}],"h":1},{"t":175,"s":[{"i":[[44.151,-2.843],[14.827,-2.909],[15.165,-4.3],[14.097,-4.305],[13.806,-1.864],[19.382,2.957],[17.581,2.726],[2.788,0.446],[0.435,-1.002],[-2.846,-0.523],[-0.406,-0.088],[-38.721,5.397],[-33.85,9.065],[-43.094,-3.741],[-38.074,-10.299],[-30.987,8.276],[2.48,-0.285],[32.553,9.593]],"o":[[-16.527,1.064],[-14.827,2.909],[-13.804,3.914],[-14.097,4.305],[-18.892,2.552],[-19.382,-2.957],[-1.411,-0.219],[-2.788,-0.446],[-0.791,1.822],[2.846,0.523],[34.773,7.495],[33.654,-4.691],[32.194,-8.622],[39.338,3.415],[27.155,7.345],[16.384,-4.376],[-45.043,5.169],[-38.366,-11.306]],"v":[[24.5,-24.5],[-22.022,-18.427],[-66.5,-7.5],[-108.498,5.537],[-150.5,15.5],[-208.483,13.458],[-264.5,3.5],[-271.732,2.084],[-277.5,2.5],[-272.897,5.801],[-266.5,6.5],[-149.5,19.5],[-50.5,-8.5],[62.5,-20.5],[166.5,2.5],[273.5,6.5],[263.5,4.5],[151.5,-6.5]],"c":true}],"h":1},{"t":176,"s":[{"i":[[42.395,-2.939],[15.735,-3.283],[16.234,-4.63],[15.287,-4.446],[15.435,-1.105],[16.086,2.671],[12.57,2.396],[6.762,0.985],[0.631,-1.383],[-2.97,-0.54],[-1.807,-0.34],[-41.615,3.629],[-33.454,9.395],[-43.594,-1.917],[-36.776,-10.167],[-33.495,8.946],[3.116,-0.256],[30.892,9.19]],"o":[[-17.825,1.236],[-15.735,3.283],[-14.416,4.112],[-15.287,4.446],[-15.085,1.081],[-16.086,-2.671],[-2.322,-0.442],[-6.762,-0.985],[-0.686,1.502],[2.97,0.54],[35.563,6.678],[35.287,-3.077],[32.223,-9.049],[39.041,1.716],[26.894,7.435],[14.831,-3.961],[-42.849,3.525],[-36.776,-10.941]],"v":[[32.5,-24.5],[-17.193,-17.546],[-64.5,-5.5],[-109.236,8.255],[-155.5,17.5],[-203.387,14.107],[-247.5,5.5],[-263.768,2.631],[-277.5,2.5],[-272.87,5.371],[-264.5,6.5],[-153.5,21.5],[-52.5,-5.5],[59.5,-21.5],[166.5,-0.5],[273.5,6.5],[263.5,3.5],[155.5,-7.5]],"c":true}],"h":1},{"t":177,"s":[{"i":[[40.309,-2.595],[16.308,-3.324],[15.865,-4.552],[15.489,-4.623],[16.106,-1.222],[19.215,3.733],[15.447,2.412],[3.572,-0.435],[-6.47,-1.912],[-6.694,-1.194],[-39.09,3.783],[-33.201,9.197],[-42.617,-0.842],[-33.438,-9.985],[-18.011,-1.249],[-12.003,3.846],[12.429,-0.39],[22.603,7.4]],"o":[[-17.901,1.152],[-16.308,3.324],[-14.938,4.285],[-15.489,4.623],[-17.695,1.343],[-19.215,-3.733],[-4.183,-0.653],[-3.572,0.435],[7.778,2.298],[35.832,6.393],[34.636,-3.352],[32.158,-8.908],[39.08,0.773],[14.285,4.266],[14.798,1.026],[15.479,-4.959],[-36.591,1.148],[-38.307,-12.542]],"v":[[41.5,-24.5],[-9.527,-17.549],[-57.5,-5.5],[-103.124,8.798],[-150.5,18.5],[-207.187,13.316],[-260.5,2.5],[-274.49,2.077],[-272.5,5.5],[-264.5,6.5],[-148.5,22.5],[-48.5,-3.5],[60.5,-21.5],[167.5,-1.5],[220.5,8.5],[274.5,6.5],[247.5,4.5],[159.5,-8.5]],"c":true}],"h":1},{"t":178,"s":[{"i":[[38.928,-2.699],[16.692,-3.533],[15.779,-4.588],[15.979,-4.564],[16.69,-1.267],[16.738,3.089],[15.175,2.849],[8.24,0.757],[-9.183,-2.446],[-10.091,-1.824],[-7.055,-1.419],[-23.111,2.016],[-32.755,9.652],[-41,1.141],[-33.143,-9.637],[-35.197,4.483],[15.353,0],[21.023,6.76]],"o":[[-18.455,1.279],[-16.692,3.533],[-15.395,4.476],[-15.979,4.564],[-15.873,1.204],[-16.738,-3.089],[-2.222,-0.418],[-8.24,-0.757],[8.579,2.285],[10.091,1.824],[17.333,3.486],[35.43,-3.09],[31.139,-9.176],[39.818,-1.108],[25.104,7.299],[29.092,-3.705],[-35.342,0],[-37.301,-11.994]],"v":[[49.5,-24.5],[-3.007,-16.981],[-51.5,-4.5],[-98.528,9.907],[-147.5,19.5],[-197.023,15.54],[-245.5,5.5],[-267.053,2.852],[-271.5,4.5],[-242.357,10.65],[-215.5,15.5],[-146.5,23.5],[-46.5,-2.5],[60.5,-21.5],[168.5,-3.5],[266.5,6.5],[247.5,3.5],[163.5,-9.5]],"c":true}],"h":1},{"t":179,"s":[{"i":[[-0.139,0.009],[8.969,-1.298],[9.094,-2.099],[8.347,-2.166],[8.236,-2.404],[16.737,-4.64],[18.105,-0.788],[16.578,3.475],[14.481,2.76],[1.259,-2.712],[-2.917,-0.465],[-41.192,2.067],[-31.034,9.337],[-35.482,3.692],[-31.79,-8.513],[-43.27,9.318],[6.015,0.013],[73.497,-5.397]],"o":[[-11.029,0.71],[-8.969,1.298],[-8.374,1.933],[-8.348,2.166],[-15.945,4.654],[-16.737,4.64],[-15.209,0.662],[-16.578,-3.475],[-6.273,-1.196],[-1.532,3.299],[38.36,6.108],[32.767,-1.644],[29.677,-8.929],[38.043,-3.959],[37.519,10.047],[21.273,-4.581],[-67.726,-0.148],[-0.597,0.044]],"v":[[58.5,-24.5],[29.048,-21.541],[2.5,-16.5],[-22.603,-10.354],[-47.5,-3.5],[-96.38,11.4],[-148.5,20.5],[-197.046,15.066],[-244.5,4.5],[-277.5,1.5],[-262.5,5.5],[-147.5,24.5],[-52.5,2.5],[43.5,-19.5],[149.5,-11.5],[272.5,5.5],[247.5,3.5],[59.5,-25.5]],"c":true}],"h":1},{"t":180,"s":[{"i":[[37.564,-2.604],[18.691,-3.98],[15.593,-4.718],[17.914,-4.81],[19.086,0.16],[16.343,3.553],[14.46,2.668],[7.567,1.404],[1.788,-1.788],[-1.273,-0.235],[-33.448,0.279],[-32.421,9.645],[-37.909,3.745],[-33.687,-10.384],[-20.086,-2.567],[-14.168,2.834],[-1.054,0.041],[22.801,6.63]],"o":[[-19.644,1.362],[-18.691,3.98],[-16.257,4.919],[-17.914,4.81],[-14.166,-0.118],[-16.343,-3.553],[-0.942,-0.174],[-7.567,-1.404],[-2.758,2.758],[34.232,6.331],[36.551,-0.305],[32.356,-9.625],[43.472,-4.295],[14.286,4.404],[9.25,1.182],[18.481,-3.696],[-37.262,1.438],[-32.696,-9.507]],"v":[[66.5,-24.5],[8.462,-16.017],[-43.5,-2.5],[-94.878,13.309],[-150.5,21.5],[-197.279,14.912],[-244.5,4.5],[-260.366,1.029],[-277.5,0.5],[-246.5,7.5],[-149.5,25.5],[-46.5,2.5],[57.5,-20.5],[169.5,-7.5],[220.5,4.5],[273.5,5.5],[265.5,2.5],[173.5,-10.5]],"c":true}],"h":1},{"t":181,"s":[{"i":[[-0.139,0.009],[9.566,-1.47],[9.898,-2.36],[9.042,-2.317],[8.813,-2.582],[18.944,-4.996],[19.411,0.616],[16.784,4.003],[14.582,2.568],[-20.783,-4.464],[-14.915,-3.389],[-20.262,-0.32],[-31.913,9.494],[-36.581,4.35],[-35.147,-10.357],[-39.17,1.894],[20.247,0],[71.316,-5.237]],"o":[[-11.84,0.762],[-9.566,1.47],[-9.019,2.15],[-9.042,2.317],[-15.813,4.633],[-18.944,4.996],[-13.284,-0.422],[-16.784,-4.003],[-6.265,-1.103],[19.115,4.106],[19.014,4.321],[36.657,0.579],[31.721,-9.437],[39.635,-4.714],[28.457,8.386],[17.843,-0.863],[-70.693,0],[-0.597,0.044]],"v":[[75.5,-24.5],[44.043,-21.198],[15.5,-15.5],[-11.654,-8.824],[-38.5,-1.5],[-91.301,14.437],[-149.5,22.5],[-196.027,14.61],[-244.5,3.5],[-271.5,3.5],[-213.5,13.5],[-148.5,26.5],[-44.5,4.5],[57.5,-19.5],[169.5,-9.5],[265.5,5.5],[261.5,1.5],[76.5,-25.5]],"c":true}],"h":1},{"t":182,"s":[{"i":[[19.084,-1.323],[19.571,-4.42],[16.694,-4.864],[19.197,-4.681],[21.465,0.893],[18.91,4.809],[17.472,2.019],[3.795,-0.482],[-6.703,-1.597],[-4.996,-0.378],[-2.706,-0.463],[-31.73,-0.983],[-44.399,12.59],[-53.325,-11.322],[-44.164,7.912],[3.198,3.198],[7.021,0.563],[28.505,6.052]],"o":[[-21.023,1.457],[-19.571,4.42],[-17.745,5.17],[-19.197,4.681],[-17.889,-0.745],[-18.91,-4.809],[-4.523,-0.523],[-3.795,0.482],[4.312,1.027],[4.996,0.378],[34.058,5.825],[50.8,1.573],[47.492,-13.467],[32.124,6.82],[-5.178,0.928],[-1.377,-1.377],[-36.194,-2.901],[-20.001,-4.246]],"v":[[83.5,-24.5],[22.254,-15.055],[-32.5,-0.5],[-87.71,15.547],[-148.5,22.5],[-204.313,12.456],[-259.5,0.5],[-274.419,0.41],[-272.5,3.5],[-257.796,5.423],[-245.5,6.5],[-147.5,26.5],[-4.5,-4.5],[149.5,-17.5],[271.5,4.5],[278.5,1.5],[241.5,0.5],[149.5,-21.5]],"c":true}],"h":1},{"t":183,"s":[{"i":[[14.628,-0.942],[10.401,-1.675],[10.45,-2.529],[9.291,-2.725],[9.276,-2.785],[21.281,-4.479],[21.074,1.963],[32.532,5.21],[1.137,-2.391],[-3.466,-0.544],[-34.207,-2.595],[-44.263,12.698],[-53.974,-10.803],[-46.045,4.532],[1.589,3.191],[10.258,0.304],[10.203,2.181],[15.856,3.227]],"o":[[-11.945,0.769],[-10.401,1.675],[-9.559,2.313],[-9.291,2.725],[-16.803,5.046],[-21.281,4.479],[-28.785,-2.682],[-3.938,-0.631],[-1.533,3.225],[34.577,5.428],[53.238,4.039],[48.071,-13.791],[33.397,6.685],[-2.2,0.217],[-0.328,-0.658],[-13.723,-0.406],[-16.753,-3.582],[-18.14,-3.692]],"v":[[92.5,-24.5],[59.379,-20.82],[28.5,-14.5],[0.287,-6.854],[-27.5,1.5],[-85.797,17.257],[-150.5,22.5],[-243.5,1.5],[-277.5,-0.5],[-245.5,5.5],[-149.5,26.5],[-3.5,-2.5],[150.5,-18.5],[271.5,4.5],[278.5,1.5],[261.5,0.5],[210.5,-5.5],[151.5,-22.5]],"c":true}],"h":1},{"t":184,"s":[{"i":[[10.219,-0.709],[20.743,-5.041],[19.41,-5.569],[48.046,5.078],[34.073,5.167],[1.828,-3.748],[10.446,1.419],[1.177,0.113],[-34.992,-3.584],[-24.443,5.407],[-22.604,6.598],[-55.155,-10.072],[-23.841,-5.406],[-14.987,-1.738],[-1.06,2.025],[-14.773,-2.705],[9.979,1.055],[29.883,4.948]],"o":[[-25.211,1.748],[-19.452,4.728],[-36.488,10.468],[-29.197,-3.086],[-5.372,-0.815],[-1.729,3.546],[-0.494,-0.067],[42.536,4.082],[28.635,2.933],[23.75,-5.254],[45.188,-13.19],[18.952,3.461],[3.12,0.707],[5.896,0.684],[2.151,-4.108],[-8.616,-1.577],[-36.257,-3.832],[-15.107,-2.501]],"v":[[100.5,-24.5],[35.5,-14.5],[-22.5,1.5],[-149.5,22.5],[-242.5,1.5],[-277.5,-0.5],[-271.5,2.5],[-261.5,2.5],[-149.5,26.5],[-70.5,18.5],[-1.5,-0.5],[150.5,-19.5],[210.5,-3.5],[242.5,2.5],[278.5,3.5],[272.5,0.5],[244.5,-1.5],[149.5,-23.5]],"c":true}],"h":1},{"t":185,"s":[{"i":[[6.773,-0.436],[11.007,-1.628],[10.719,-2.7],[9.864,-2.917],[9.723,-2.86],[21.881,-4.295],[24.552,2.746],[35.261,4.93],[1.355,-2.732],[14.379,2.632],[-13.107,-3.186],[-19.75,-2.023],[-46.309,13.646],[-53.751,-8.875],[-35.612,-4.295],[-1.563,3.204],[2.664,0.161],[33.907,5.217]],"o":[[-12.252,0.789],[-11.007,1.628],[-9.819,2.473],[-9.864,2.917],[-18.924,5.566],[-21.881,4.295],[-29.26,-3.273],[-5.41,-0.756],[-2.12,4.273],[20.091,3.678],[20.791,5.053],[54.965,5.63],[40.091,-11.814],[28.978,4.785],[3.666,0.442],[1.837,-3.767],[-44.035,-2.669],[-12.038,-1.852]],"v":[[109.5,-24.5],[74.85,-20.933],[42.5,-14.5],[12.928,-6.29],[-16.5,2.5],[-77.779,18.734],[-147.5,22.5],[-242.5,0.5],[-277.5,-1.5],[-271.5,1.5],[-210.5,10.5],[-146.5,26.5],[1.5,1.5],[151.5,-20.5],[243.5,1.5],[278.5,2.5],[262.5,-0.5],[149.5,-24.5]],"c":true}],"h":1},{"t":186,"s":[{"i":[[3.263,-0.226],[21.418,-5.335],[20.968,-6.038],[23.823,-3.953],[24.156,4.154],[20.357,5.838],[22.135,-2.178],[-4.534,-0.737],[-2.339,-0.12],[-31.803,-5.63],[-24.358,4.323],[-22.314,6.55],[-53.024,-5.474],[-19.168,-4.375],[-21.395,-0.627],[2.385,0.484],[7.738,1.078],[27.66,2.833]],"o":[[-23.362,1.62],[-21.418,5.335],[-18.55,5.342],[-23.823,3.953],[-16.437,-2.826],[-20.357,-5.838],[-9.477,0.933],[4.534,0.737],[41.677,2.138],[27.129,4.802],[24.466,-4.343],[45.725,-13.423],[19.202,1.983],[16.618,3.793],[15.044,0.441],[-8.909,-1.808],[-34.788,-4.849],[-9.857,-1.01]],"v":[[117.5,-24.5],[50.704,-13.314],[-12.5,4.5],[-77.295,20.122],[-150.5,21.5],[-206.227,5.746],[-270.5,-2.5],[-273.862,0.11],[-259.5,1.5],[-150.5,25.5],[-70.5,21.5],[-0.5,4.5],[147.5,-21.5],[209.5,-5.5],[269.5,3.5],[272.5,-0.5],[245.5,-3.5],[147.5,-25.5]],"c":true}],"h":1},{"t":187,"s":[{"i":[[1.44,-0.093],[12.061,-1.828],[11.084,-2.938],[10.537,-3.069],[10.059,-2.864],[23.74,-3.712],[26.218,4.776],[10.301,3.276],[11.215,2.332],[18.699,-2.89],[-2.945,-3.36],[-5.546,-0.63],[-28.601,-4.826],[-64.448,14.71],[-27.027,-2.615],[-44.292,0.613],[0.796,0.076],[31.724,3.032]],"o":[[-11.673,0.752],[-12.061,1.828],[-10.791,2.861],[-10.537,3.069],[-20.82,5.927],[-23.74,3.712],[-8.582,-1.563],[-10.301,-3.276],[-15.19,-3.158],[6.814,-1.053],[2.066,2.357],[36.151,4.103],[82.546,13.93],[23.547,-5.374],[39.832,3.855],[24.156,-0.335],[-41.303,-3.964],[-8.118,-0.776]],"v":[[126.5,-24.5],[90.559,-20.64],[55.5,-13.5],[23.451,-4.502],[-7.5,4.5],[-74.452,20.527],[-149.5,20.5],[-178.025,12.577],[-210.5,3.5],[-270.5,-2.5],[-277.5,0.5],[-241.5,2.5],[-148.5,24.5],[71.5,-12.5],[149.5,-21.5],[270.5,2.5],[262.5,-2.5],[149.5,-25.5]],"c":true}],"h":1},{"t":188,"s":[{"i":[[39.2,-2.718],[12.135,-2.012],[11.834,-3.075],[35.142,-8.019],[39.867,8.018],[15.478,4.381],[17.559,1.756],[8.295,-0.076],[-0.964,-1.976],[-8.62,-0.134],[-0.851,-0.091],[-26.632,-5.356],[-63.981,14.765],[-26.306,-1.722],[-19.493,-4.628],[-16.552,-1.865],[-0.668,1.411],[2.074,0.235]],"o":[[-12.626,0.876],[-12.135,2.012],[-30.565,7.941],[-35.142,8.019],[-13.531,-2.721],[-15.478,-4.381],[-2.783,-0.279],[-8.295,0.076],[0.671,1.375],[8.62,0.134],[35.27,3.757],[83.35,16.764],[23.42,-5.405],[20.172,1.32],[12.997,3.085],[3.786,0.427],[1.586,-3.352],[-44.337,-5.014]],"v":[[134.5,-24.5],[97.406,-20.149],[61.5,-12.5],[-37.024,15.469],[-149.5,19.5],[-192.979,7.776],[-242.5,-2.5],[-262.81,-3.191],[-277.5,-0.5],[-259.635,1.463],[-241.5,1.5],[-149.5,23.5],[71.5,-11.5],[149.5,-21.5],[212.5,-7.5],[260.5,1.5],[278.5,1.5],[263.5,-2.5]],"c":true}],"h":1},{"t":189,"s":[{"i":[[32.513,-1.191],[12.742,-2.112],[11.556,-3.095],[35.612,-7.805],[41.48,8.807],[21.42,5.67],[22.179,-3.894],[-4.181,-0.358],[-2.146,-0.012],[-18.597,-4.845],[-15.879,-3.489],[-37.169,8.259],[-30.806,8.085],[-12.746,2.31],[-13.026,-0.386],[-31.387,-5.629],[-3.186,3.186],[1.715,0.212]],"o":[[-12.477,0.457],[-12.742,2.112],[-32.072,8.588],[-35.612,7.805],[-15.139,-3.215],[-21.42,-5.67],[-8.871,1.558],[4.181,0.358],[22.733,0.131],[18.597,4.845],[41.517,9.123],[37.169,-8.259],[11.989,-3.146],[12.746,-2.31],[31.214,0.923],[6.32,1.134],[2.689,-2.689],[-40.681,-5.026]],"v":[[143.5,-24.5],[105.309,-20.478],[68.5,-12.5],[-32.444,16.047],[-147.5,18.5],[-203.72,2.169],[-270.5,-3.5],[-273.763,-0.841],[-260.5,-0.5],[-198.859,8.482],[-147.5,22.5],[-28.967,19.406],[73.5,-9.5],[110.721,-18.149],[149.5,-21.5],[243.5,-1.5],[278.5,1.5],[263.5,-3.5]],"c":true}],"h":1},{"t":190,"s":[{"i":[[38.859,-3.327],[32.065,-9.532],[38.34,-3.756],[18.128,2.53],[15.959,4.793],[8.401,1.915],[8.964,1.107],[9.246,0.494],[6.996,-1.841],[-4.092,-0.28],[-3.767,0],[-17.937,-4.13],[-19.762,-4.48],[-54.44,15.799],[-34.645,-2.482],[-36.042,-4.667],[-0.973,2.097],[2.215,0.321]],"o":[[-36.398,3.117],[-32.065,9.532],[-19.529,1.913],[-18.128,-2.53],[-7.43,-2.232],[-8.401,-1.915],[-7.019,-0.867],[-9.246,-0.494],[-7.136,1.878],[4.092,0.281],[23.489,0],[17.937,4.13],[71.432,16.196],[28.843,-8.371],[36.964,2.648],[1.316,0.17],[1.435,-3.092],[-41.506,-6.02]],"v":[[139.5,-23.5],[39.456,-1.48],[-63.5,21.5],[-120.178,20.029],[-171.5,8.5],[-195.35,2.157],[-221.5,-2.5],[-247.017,-5.031],[-272.5,-3.5],[-274.177,-0.592],[-259.5,-0.5],[-199.204,6.64],[-144.5,20.5],[55.5,-2.5],[155.5,-20.5],[261.5,0.5],[278.5,0.5],[264.5,-3.5]],"c":true}],"h":1},{"t":191,"s":[{"i":[[33.498,-1.726],[16.791,-4.342],[15.773,-4.648],[17.028,-3.892],[19.283,-1.538],[18.409,2.671],[16.355,4.912],[18.024,2.815],[18.175,-3.381],[-4.302,-0.349],[0.721,-0.026],[-25.666,-7.941],[-39.694,3.651],[-31.731,9.493],[-33.822,0.129],[-30.865,-5.579],[-3.88,3.88],[0.54,0.084]],"o":[[-19.065,0.982],[-16.791,4.342],[-16.605,4.893],[-17.028,3.892],[-20.008,1.596],[-18.409,-2.671],[-13.729,-4.123],[-18.024,-2.815],[-8.488,1.579],[4.302,0.348],[39.745,-1.466],[32.979,10.204],[38.59,-3.549],[29.704,-8.887],[31.183,-0.119],[5.536,1.001],[2.649,-2.649],[-39.575,-6.143]],"v":[[147.5,-23.5],[94.031,-14.749],[45.5,-0.5],[-4.492,13.016],[-58.5,21.5],[-116.24,19.38],[-168.5,7.5],[-217.166,-4.128],[-272.5,-4.5],[-274.326,-1.835],[-264.5,-1.5],[-167.5,12.5],[-55.5,25.5],[47.5,2.5],[151.5,-20.5],[245.5,-3.5],[278.5,0.5],[264.5,-4.5]],"c":true}],"h":1},{"t":192,"s":[{"i":[[33.195,-2.135],[16.797,-4.527],[16.138,-4.692],[17.334,-3.882],[19.535,-0.781],[18.049,2.894],[17.096,5.25],[18.492,2.877],[17.3,-4.418],[-8.243,0.066],[-2.865,-0.008],[-32.839,-8.323],[-39.112,4.054],[-30.965,9.212],[-32.097,0.536],[-28.132,-5.362],[-2.41,2.41],[1.278,0.209]],"o":[[-18.675,1.201],[-16.797,4.527],[-16.13,4.69],[-17.334,3.882],[-20.707,0.828],[-18.049,-2.894],[-12.733,-3.91],[-18.492,-2.877],[-8.835,2.256],[8.243,-0.066],[35.636,0.102],[32.121,8.141],[34.585,-3.585],[31.081,-9.246],[30.71,-0.513],[3.594,0.685],[3.235,-3.235],[-38.948,-6.378]],"v":[[148.5,-22.5],[95.596,-13.118],[46.5,1.5],[-3.447,14.932],[-58.5,22.5],[-116.208,19.059],[-168.5,6.5],[-217.075,-5.247],[-272.5,-4.5],[-267.775,-1.814],[-245.5,-2.5],[-146.5,16.5],[-40.5,24.5],[55.5,2.5],[152.5,-19.5],[245.5,-3.5],[278.5,0.5],[264.5,-4.5]],"c":true}],"h":1},{"t":193,"s":[{"i":[[35.42,-3.196],[28.439,-8.893],[34.064,-3.434],[17.241,1.122],[15.049,3.225],[23.572,5.337],[25.89,-6.595],[3.147,-0.731],[-1.6,-1.6],[-5.969,0.506],[-2.06,0.04],[-39.859,-8.739],[-37.741,4.159],[-27.24,8.165],[-30.932,0.935],[-36.359,-5.904],[-1.335,2.924],[-0.279,-0.049]],"o":[[-33.18,2.994],[-28.439,8.893],[-16.986,1.712],[-17.241,-1.122],[-19.822,-4.247],[-23.572,-5.337],[5.986,-1.525],[-3.147,0.731],[1.065,1.065],[5.969,-0.506],[51.485,-1.018],[30.01,6.579],[33.377,-3.678],[29.758,-8.92],[37.891,-1.145],[1.233,0.2],[1.321,-2.893],[-38.874,-6.864]],"v":[[149.5,-21.5],[59.663,-0.83],[-31.5,20.5],[-83.453,21.203],[-132.5,14.5],[-197.949,-3.132],[-272.5,-4.5],[-271.71,-5.344],[-277.5,-1.5],[-264.746,-1.171],[-250.5,-2.5],[-131.5,18.5],[-28.5,24.5],[62.5,3.5],[153.5,-18.5],[262.5,-1.5],[278.5,-0.5],[265.5,-5.5]],"c":true}],"h":1},{"t":194,"s":[{"i":[[36.686,-4.409],[32.612,-9.784],[43.267,1.496],[17.277,3.615],[17.001,4.886],[9.089,1.908],[8.95,0.446],[9.374,-0.135],[6.47,-1.91],[-7.316,0.042],[-3.558,0.142],[-22.492,-6.59],[-39.33,-0.412],[-31.247,8.775],[-35.339,2.901],[-29.291,-5.877],[-2.142,2.142],[4.223,0.765]],"o":[[-36.285,4.361],[-32.612,9.784],[-18.889,-0.653],[-17.277,-3.615],[-6.694,-1.924],[-9.089,-1.907],[-9.034,-0.45],[-9.374,0.135],[-7.822,2.309],[7.316,-0.042],[33.918,-1.356],[33.411,9.789],[42.935,0.449],[32.004,-8.988],[35.108,-2.882],[3.982,0.799],[2.258,-2.258],[-37.423,-6.781]],"v":[[146.5,-19.5],[46.737,5.892],[-63.5,22.5],[-117.416,15.675],[-168.5,2.5],[-192.808,-3.609],[-220.5,-7.5],[-248.923,-8.27],[-273.5,-5.5],[-269.535,-2.661],[-248.5,-3.5],[-164.5,6.5],[-58.5,26.5],[49.5,9.5],[149.5,-16.5],[245.5,-4.5],[278.5,-0.5],[265.5,-5.5]],"c":true}],"h":1},{"t":195,"s":[{"i":[[35.339,-4.501],[33.268,-9.874],[44.1,3.058],[25.197,7.011],[29.104,1.006],[9.29,-0.244],[6.584,-2.311],[-7.217,0.097],[-3.713,0.273],[-14.421,-1.509],[-11.227,-3.147],[-17.086,-4.11],[-18.765,-0.825],[-31.546,8.397],[-34.047,3.487],[-29.106,-5.493],[-2.55,2.55],[2.335,0.451]],"o":[[-35.827,4.563],[-33.268,9.874],[-28.108,-1.949],[-25.197,-7.011],[-8.258,-0.285],[-9.289,0.244],[-7.582,2.662],[7.217,-0.097],[16.089,-1.184],[14.421,1.509],[16.892,4.735],[17.086,4.11],[44.467,1.955],[32.557,-8.666],[33.478,-3.429],[7.489,1.413],[2.68,-2.68],[-35.388,-6.829]],"v":[[149.5,-18.5],[49.205,7.715],[-63.5,22.5],[-141.753,6.293],[-221.5,-8.5],[-248.755,-8.947],[-273.5,-5.5],[-269.472,-2.299],[-248.5,-3.5],[-202.354,-2.748],[-163.5,4.5],[-112.905,18.432],[-59.5,26.5],[51.5,11.5],[151.5,-15.5],[247.5,-5.5],[278.5,-0.5],[265.5,-5.5]],"c":true}],"h":1},{"t":196,"s":[{"i":[[32.636,-3.198],[16.756,-4.919],[16.326,-4.495],[18.785,-2.542],[21.967,1.82],[16.85,4.136],[18.702,4.888],[19.863,1.312],[15.195,-4.738],[-7.057,0.358],[-3.75,0.366],[-14.791,-1.406],[-10.982,-2.924],[-37.27,-3.428],[-69.339,10.485],[-29.077,-5.392],[-1.275,2.884],[-0.349,-0.069]],"o":[[-18.649,1.827],[-16.756,4.919],[-16.894,4.652],[-18.785,2.542],[-18.899,-1.566],[-16.85,-4.136],[-13.351,-3.489],[-19.863,-1.312],[-8.978,2.8],[7.057,-0.358],[15.855,-1.547],[14.791,1.406],[34.585,9.206],[91.997,8.461],[35.088,-5.306],[6.165,1.143],[1.056,-2.389],[-33.804,-6.734]],"v":[[156.5,-17.5],[103.758,-6.501],[54.5,8.5],[1.305,19.854],[-59.5,21.5],[-112.148,12.491],[-164.5,-1.5],[-217.117,-9.671],[-272.5,-5.5],[-270.547,-2.626],[-249.5,-4.5],[-202.846,-4.353],[-163.5,2.5],[-60.5,25.5],[150.5,-13.5],[249.5,-4.5],[278.5,-1.5],[266.5,-6.5]],"c":true}],"h":1},{"t":197,"s":[{"i":[[27.593,-2.04],[2.587,-0.08],[2.601,-0.456],[16.086,-5.255],[17.04,-4.071],[19.035,-1.668],[22.238,2.645],[33.241,7.757],[38.091,-7.827],[1.823,-1.248],[-6.745,0.701],[-3.652,0.59],[-2.897,0.277],[-63.457,-6.993],[-33.331,7.93],[-33.975,5.625],[-28.622,-5.027],[16.569,5.168]],"o":[[-3.053,0.226],[-2.587,0.08],[-16.617,2.909],[-16.086,5.255],[-16.621,3.971],[-19.035,1.668],[-31.945,-3.799],[-33.241,-7.757],[-3.453,0.71],[-1.823,1.248],[3.494,-0.363],[3.652,-0.59],[77.156,-7.374],[44.843,4.942],[34.044,-8.099],[30.684,-5.08],[9.002,1.581],[-29.166,-9.097]],"v":[[165.5,-16.5],[157.161,-16.172],[149.5,-15.5],[100.817,-2.371],[51.5,12.5],[-1.788,21.462],[-63.5,20.5],[-160.39,-1.719],[-266.5,-6.5],[-276.149,-2.942],[-270.5,-1.5],[-259.552,-3.064],[-249.5,-4.5],[-61.5,24.5],[51.5,15.5],[150.5,-11.5],[246.5,-5.5],[273.5,-4.5]],"c":true}],"h":1},{"t":198,"s":[{"i":[[25.385,-1.76],[4.071,-0.202],[4.089,-0.87],[16.168,-5.199],[17.394,-3.813],[19.422,-1.105],[20.767,3.049],[16.255,4.581],[18.373,4.092],[19.16,0.23],[15.309,-4.271],[-3.965,0.49],[-8.643,0.364],[-53.216,-7.533],[-34.18,7.324],[-32.402,6.705],[-28.626,-5.121],[14.34,5.439]],"o":[[-4.625,0.32],[-4.071,0.202],[-15.935,3.391],[-16.168,5.199],[-16.544,3.627],[-19.422,1.105],[-17.608,-2.585],[-16.255,-4.581],[-15.05,-3.352],[-19.16,-0.23],[-17.244,4.811],[10.456,-1.292],[65.912,-2.778],[42.604,6.031],[34.739,-7.444],[29.426,-6.089],[8.9,1.592],[-25.839,-9.801]],"v":[[173.5,-15.5],[160.598,-14.913],[148.5,-13.5],[100.594,0.183],[50.5,14.5],[-3.832,22.007],[-64.5,19.5],[-114.427,8.13],[-165.5,-5.5],[-218.806,-11.217],[-272.5,-5.5],[-250.5,-4.5],[-221.5,-7.5],[-63.5,23.5],[51.5,18.5],[149.5,-9.5],[246.5,-5.5],[274.5,-4.5]],"c":true}],"h":1},{"t":199,"s":[{"i":[[23.992,-1.545],[9.464,-1.879],[9.543,-2.801],[27.82,-5.005],[35.752,4.936],[18.144,4.812],[18.892,4.331],[20.611,0.088],[15.166,-4.881],[-9.997,1.077],[-0.462,0.054],[-18.06,-2.06],[-14.21,-4.188],[-51.501,2.264],[-43.735,12.547],[-36.272,-5.76],[-2.968,2.968],[-1.552,-0.394]],"o":[[-10.603,0.683],[-9.464,1.879],[-26.969,7.917],[-27.82,5.005],[-17.534,-2.421],[-18.144,-4.812],[-15.391,-3.529],[-20.611,-0.088],[-10.447,3.362],[9.996,-1.077],[20.548,-2.427],[18.06,2.06],[43.809,12.91],[49.896,-2.194],[29.749,-8.535],[3.86,0.613],[2.248,-2.248],[-26.802,-6.804]],"v":[[181.5,-14.5],[151.705,-10.589],[123.5,-3.5],[43.087,17.64],[-50.5,19.5],[-103.981,7.933],[-159.5,-6.5],[-216.168,-12.308],[-272.5,-5.5],[-265.682,-3.437],[-242.5,-6.5],[-184.247,-6.461],[-135.5,3.5],[3.5,26.5],[135.5,-2.5],[242.5,-6.5],[278.5,-1.5],[270.5,-6.5]],"c":true}],"h":1},{"t":200,"s":[{"i":[[21.492,-1.384],[9.631,-1.85],[9.724,-2.909],[28.288,-4.596],[36.495,5.567],[18.005,5.012],[19.709,4.165],[20.948,-0.301],[15.632,-5.09],[-3.539,-0.075],[-2.083,0.329],[-18.982,0.227],[-15.706,-3.809],[-40.38,-5.228],[-35.046,8.975],[-43.663,0],[-19.036,-3.238],[16.949,4.56]],"o":[[-10.754,0.692],[-9.631,1.85],[-27.352,8.183],[-28.288,4.596],[-18.272,-2.787],[-18.005,-5.012],[-15.577,-3.292],[-20.948,0.301],[-6.238,2.031],[3.539,0.075],[18.367,-2.9],[18.982,-0.227],[39.102,9.483],[48.383,6.265],[37.575,-9.622],[18.255,0],[10.329,1.757],[-23.995,-6.456]],"v":[[188.5,-13.5],[158.227,-9.662],[129.5,-2.5],[47.857,18.313],[-47.5,18.5],[-101.422,6.033],[-157.5,-8.5],[-214.958,-13.286],[-272.5,-5.5],[-273.741,-2.73],[-262.5,-3.5],[-205.504,-8.532],[-152.5,-3.5],[-40.5,23.5],[83.5,14.5],[198.5,-10.5],[258.5,-4.5],[270.5,-5.5]],"c":true}],"h":1},{"t":201,"s":[{"i":[[76.857,-5.683],[11.101,-1.28],[7.8,-2.301],[-3.168,-0.115],[-3.402,0.546],[-7.804,1.005],[-7.135,0.591],[-28.081,-7.965],[-28.788,-4.113],[-20.995,1.807],[-17.641,4.398],[-18.687,5.075],[-22.404,0],[-14.528,-1.844],[19.621,6.371],[22.058,-0.149],[32.016,-8.764],[42.675,1.339]],"o":[[-7.794,0.576],[-11.101,1.28],[-7.074,2.087],[3.168,0.115],[8.648,-1.389],[7.805,-1.005],[35.887,-2.974],[28.081,7.965],[25.378,3.626],[20.995,-1.807],[18.849,-4.698],[18.687,-5.075],[10.789,0],[9.316,1.182],[-20.904,-6.788],[-38.621,0.261],[-31.537,8.633],[-77.751,-2.439]],"v":[[-211.5,-13.5],[-241.495,-10.794],[-271.5,-5.5],[-274.857,-2.524],[-262.5,-3.5],[-237.865,-7.098],[-215.5,-9.5],[-121.676,1.685],[-38.5,23.5],[30.803,25.517],[88.5,15.5],[143.833,-0.524],[204.5,-9.5],[242.5,-6.5],[272.5,-5.5],[203.5,-13.5],[103.5,7.5],[-3.5,22.5]],"c":true}],"h":1},{"t":202,"s":[{"i":[[13.629,-0.945],[11.878,-1.5],[8.68,-2.388],[-2.288,-0.264],[-5.673,0.934],[-7.98,1.224],[-6.457,0.683],[-28.589,-8.003],[-28.114,-4.848],[-21.418,1.472],[-18.437,4.405],[-19.109,5.096],[-22.246,0],[-12.099,-1.434],[16.321,5.694],[19.708,-0.057],[63.884,-3.348],[57.264,12.186]],"o":[[-8.81,0.611],[-11.878,1.5],[-6.826,1.878],[2.288,0.264],[8.623,-1.42],[7.98,-1.224],[36.53,-3.861],[28.589,8.003],[24.891,4.291],[21.418,-1.472],[19.317,-4.616],[19.109,-5.096],[9.067,0],[9.574,1.135],[-18.577,-6.482],[-66.829,0.192],[-72.413,3.795],[-16.105,-3.427]],"v":[[-205.5,-14.5],[-238.097,-11.333],[-270.5,-5.5],[-275.874,-2.391],[-262.5,-3.5],[-237.376,-7.553],[-215.5,-10.5],[-119.688,-0.531],[-36.5,22.5],[32.84,26.022],[92.5,16.5],[149.303,0.538],[210.5,-8.5],[244.5,-5.5],[273.5,-5.5],[210.5,-12.5],[30.5,22.5],[-150.5,-12.5]],"c":true}],"h":1},{"t":203,"s":[{"i":[[54.068,-3.998],[12.34,-1.69],[9.906,-2.521],[-2.349,-0.273],[-6.137,1.01],[-7.827,1.188],[-6.919,0.806],[-29.034,-7.702],[-28.084,-5.474],[-21.691,1.144],[-19.08,4.326],[-24.204,5.192],[-30.106,-3.455],[-7.538,-0.829],[5.07,2.534],[13.688,-0.039],[66.319,-2.08],[28.823,7.642]],"o":[[-9.734,0.72],[-12.34,1.69],[-7.531,1.917],[2.349,0.273],[8.774,-1.444],[7.827,-1.188],[36.78,-4.282],[29.034,7.702],[25.154,4.902],[21.691,-1.144],[25.078,-5.686],[24.204,-5.192],[1.919,0.22],[7.538,0.829],[-12.688,-6.344],[-66.878,0.192],[-36.212,1.136],[-43.267,-11.471]],"v":[[-200.5,-15.5],[-234.872,-11.851],[-269.5,-5.5],[-275.752,-2.304],[-261.5,-3.5],[-236.609,-7.479],[-214.5,-10.5],[-117.478,-1.817],[-33.5,21.5],[36.556,26.421],[97.5,17.5],[169.729,-0.856],[249.5,-5.5],[268.242,-2.934],[276.5,-4.5],[216.5,-11.5],[32.5,22.5],[-64.5,10.5]],"c":true}],"h":1},{"t":204,"s":[{"i":[[51.234,-4.006],[10.911,-1.573],[10.69,-1.952],[4.354,-1.614],[-7.915,0.91],[-20.876,3.003],[-18.883,-3.152],[-14.358,-4.365],[-14.136,-3.962],[-15.786,-2.759],[-18.707,0],[-34.039,8.801],[-41.053,-4.205],[-2.071,2.071],[2.178,0.452],[42.761,-12.008],[33.293,0],[28.765,7.983]],"o":[[-9.666,0.756],[-10.911,1.573],[-2.499,0.456],[-4.354,1.614],[18.612,-2.141],[20.876,-3.003],[15.432,2.576],[14.358,4.365],[14.148,3.966],[15.786,2.759],[40.793,0],[34.039,-8.801],[5.807,0.595],[2.906,-2.906],[-52.429,-10.875],[-31.406,8.82],[-37.379,0],[-40.625,-11.275]],"v":[[-195.5,-16.5],[-226.732,-12.897],[-259.5,-7.5],[-273.31,-3.475],[-271.5,-1.5],[-211.204,-10.97],[-150.5,-12.5],[-106.028,-1.54],[-63.5,11.5],[-18.92,21.974],[32.5,26.5],[141.305,7.846],[250.5,-4.5],[278.5,-1.5],[267.5,-6.5],[129.5,7.5],[32.5,22.5],[-63.5,7.5]],"c":true}],"h":1},{"t":205,"s":[{"i":[[7.543,-0.59],[6.997,-0.877],[10.227,-1.882],[7.073,-1.186],[4.591,-1.5],[-3.994,0.004],[-0.369,0.059],[-18.371,2.755],[-19.621,-1.899],[-8.34,-2.45],[-8.152,-2.38],[-65.021,5.059],[-75.436,-5.958],[15.557,5.743],[3.954,0.334],[65.278,-5.436],[48.574,13.962],[16.956,1.641]],"o":[[-7.784,0.608],[-6.997,0.877],[-4.115,0.758],[-7.073,1.186],[-6.346,2.074],[3.994,-0.004],[17.895,-2.877],[18.371,-2.755],[8.487,0.822],[8.34,2.45],[49.686,14.502],[67.244,-5.232],[8.144,0.643],[-6.826,-2.52],[-76.137,-6.43],[-65.381,5.444],[-16.594,-4.77],[-11.338,-1.097]],"v":[[-190.5,-17.5],[-211.668,-15.455],[-236.5,-11.5],[-254.644,-8.557],[-273.5,-4.5],[-273.536,-1.9],[-263.5,-2.5],[-209.294,-12.082],[-152.5,-14.5],[-127.249,-9.168],[-102.5,-1.5],[59.5,25.5],[249.5,-4.5],[274.5,-5.5],[252.5,-7.5],[61.5,21.5],[-101.5,-5.5],[-152.5,-18.5]],"c":true}],"h":1},{"t":206,"s":[{"i":[[36.498,-2.158],[9.048,-1.096],[11.06,-2.098],[8.672,-1.222],[5.988,-2.102],[-8.102,0.715],[-1.526,0.276],[-17.309,2.678],[-17.055,-2.549],[-32.287,-9.684],[-44.974,1.798],[-29.202,7.818],[-36.543,-2.617],[-1.608,1.608],[0.46,0.079],[28.568,-8.085],[41.984,-0.226],[33.494,9.553]],"o":[[-8.75,0.517],[-9.048,1.096],[-5.323,1.009],[-8.672,1.222],[-8.935,3.136],[8.102,-0.715],[15.707,-2.839],[17.309,-2.677],[33.88,5.063],[32.287,9.684],[33.647,-1.345],[29.202,-7.818],[6.341,0.454],[2.585,-2.585],[-36.56,-6.303],[-35.615,10.08],[-42.191,0.227],[-31.003,-8.843]],"v":[[-171.5,-19.5],[-197.768,-17.185],[-227.5,-12.5],[-250.001,-9.319],[-273.5,-4.5],[-268.846,-1.941],[-248.5,-4.5],[-198.511,-14.041],[-146.5,-15.5],[-50.821,10.646],[61.5,26.5],[152.828,8.528],[248.5,-3.5],[278.5,-1.5],[267.5,-6.5],[163.5,1.5],[51.5,22.5],[-61.5,3.5]],"c":true}],"h":1},{"t":207,"s":[{"i":[[41.455,-2.874],[9.013,-1.213],[12.347,-2.483],[8.793,-1.492],[6.111,-1.88],[-8.24,0.778],[-2.332,0.44],[-15.954,2.932],[-16.71,-1.457],[-16.481,-4.976],[-16.311,-4.545],[-42.052,0],[-33.986,10.283],[-31.729,-1.337],[-2.344,2.344],[0.155,0.023],[74.931,0],[32.807,9.087]],"o":[[-9.6,0.666],[-9.013,1.213],[-5.718,1.15],[-8.793,1.492],[-8.294,2.552],[8.24,-0.778],[14.472,-2.731],[15.954,-2.932],[17.766,1.55],[16.481,4.976],[32.287,8.996],[40.181,0],[22.258,-6.735],[6.713,0.283],[3.143,-3.143],[-80.105,-12.08],[-42.603,0],[-36.951,-10.235]],"v":[[-167.5,-20.5],[-194.44,-17.863],[-225.5,-12.5],[-248.705,-8.548],[-272.5,-3.5],[-266.97,-1.756],[-245.5,-4.5],[-199.678,-14.141],[-150.5,-17.5],[-99.409,-6.747],[-50.5,8.5],[57.5,26.5],[164.5,7.5],[248.5,-3.5],[278.5,-1.5],[267.5,-5.5],[59.5,22.5],[-49.5,4.5]],"c":true}],"h":1},{"t":208,"s":[{"i":[[41.384,-3.06],[9.517,-1.499],[10.636,-2.242],[8.23,-1.362],[8.113,-1.873],[-0.649,-0.835],[-3.751,0.344],[-19.867,4.645],[-20.885,-1.473],[-16.564,-4.756],[-16.091,-4.732],[-40.885,-1.138],[-33.784,10.107],[-32.53,-0.341],[14.774,4.722],[23.82,-6.913],[41.791,0.826],[31.509,9.074]],"o":[[-10.298,0.761],[-9.517,1.499],[-7.966,1.68],[-8.23,1.362],[-4.346,1.003],[0.649,0.835],[20.648,-1.892],[19.867,-4.645],[17.653,1.245],[16.564,4.756],[31.777,9.346],[41.191,1.146],[23.08,-6.905],[9.007,0.094],[-32.532,-10.397],[-34.45,9.998],[-40.842,-0.807],[-36.431,-10.492]],"v":[[-163.5,-21.5],[-192.747,-18.111],[-222.5,-12.5],[-246.889,-8.145],[-271.5,-3.5],[-276.572,-0.49],[-269.5,0.5],[-209.178,-11.524],[-148.5,-18.5],[-97.329,-8.616],[-48.5,6.5],[57.5,26.5],[165.5,9.5],[247.5,-2.5],[274.5,-4.5],[168.5,4.5],[59.5,22.5],[-47.5,3.5]],"c":true}],"h":1},{"t":209,"s":[{"i":[[34.138,-2.487],[9.791,-1.689],[11.618,-2.501],[9.175,-1.265],[8.06,-2.381],[3.258,-1.204],[-1.201,-1.2],[-7.017,1.317],[-2.254,0.41],[-34.107,-0.647],[-32.034,-9.314],[-38.165,-2.646],[-83.529,-2.465],[-1.192,2.528],[2.014,0.178],[26.014,-7.975],[40.328,3.107],[32.873,9.779]],"o":[[-10.219,0.745],[-9.791,1.689],[-7.241,1.559],[-9.175,1.265],[6.832,-2.018],[-3.258,1.204],[1.678,1.678],[7.017,-1.317],[33.994,-6.192],[36.433,0.691],[31.51,9.162],[83.081,5.76],[2.245,0.066],[1.474,-3.125],[-40.218,-3.555],[-36.565,11.209],[-38.552,-2.97],[-29.65,-8.821]],"v":[[-159.5,-22.5],[-188.95,-18.817],[-220.5,-12.5],[-245.885,-8.617],[-272.5,-3.5],[-270.776,-3.914],[-277.5,0.5],[-261.932,0.066],[-245.5,-3.5],[-150.5,-19.5],[-48.5,4.5],[55.5,26.5],[264.5,-1.5],[278.5,-1.5],[266.5,-5.5],[167.5,7.5],[54.5,21.5],[-51.5,-0.5]],"c":true}],"h":1},{"t":210,"s":[{"i":[[0.2,-0.012],[10.032,-1.912],[12.207,-2.731],[9.849,-1.759],[7.393,-1.577],[-8.871,0.518],[-1.772,0.329],[-15.812,3.85],[-16.892,-0.349],[-16.275,-4.024],[-15.243,-4.56],[-68.682,18.763],[-36.784,0.711],[-1.905,3.907],[0.72,0.076],[25.435,-7.467],[39.297,4.185],[76.979,3.529]],"o":[[-10.666,0.621],[-10.032,1.912],[-6.209,1.389],[-9.849,1.759],[-11.256,2.4],[8.871,-0.518],[15.86,-2.949],[15.812,-3.85],[16.658,0.345],[16.275,4.024],[57.663,17.251],[31.882,-8.71],[4.25,-0.082],[1.784,-3.659],[-37.09,-3.925],[-34.269,10.06],[-78.866,-8.4],[-0.937,-0.043]],"v":[[-154.5,-23.5],[-184.844,-19.582],[-217.5,-12.5],[-243.112,-7.641],[-270.5,-2.5],[-267.271,-0.453],[-244.5,-2.5],[-197.274,-13.974],[-148.5,-20.5],[-98.938,-13.162],[-51.5,0.5],[151.5,18.5],[250.5,-1.5],[278.5,-1.5],[266.5,-4.5],[169.5,8.5],[56.5,21.5],[-152.5,-24.5]],"c":true}],"h":1},{"t":211,"s":[{"i":[[1.196,-0.121],[10.285,-2.254],[9,-1.986],[9.676,-1.45],[8.425,-1.685],[2.239,-0.515],[-0.645,-1.402],[-2.387,0.082],[2.119,-0.091],[-44.799,-2.557],[-79.53,-8.471],[-32.712,9.916],[-29.658,1.185],[-2.185,2.185],[1.181,0.109],[26.272,-7.727],[38.987,4.121],[72.494,4.394]],"o":[[-9.861,0.998],[-10.285,2.254],[-6.871,1.517],[-9.676,1.45],[2.312,-0.462],[-2.239,0.515],[0.569,1.236],[2.387,-0.082],[46.171,-1.976],[71.456,4.079],[36.931,3.933],[22.303,-6.761],[5.941,-0.237],[2.493,-2.493],[-37.302,-3.45],[-32.177,9.464],[-76.874,-8.125],[-6.232,-0.378]],"v":[[-157.5,-23.5],[-188.146,-18.241],[-217.5,-11.5],[-243.334,-7.126],[-271.5,-2.5],[-273.25,-2.398],[-277.5,0.5],[-271.484,1.859],[-269.5,1.5],[-140.5,-20.5],[60.5,24.5],[169.5,14.5],[247.5,-0.5],[278.5,-0.5],[267.5,-4.5],[172.5,9.5],[62.5,21.5],[-140.5,-24.5]],"c":true}],"h":1},{"t":212,"s":[{"i":[[48.337,-4.437],[15.639,-3.711],[16.811,-2.723],[7.797,-1.444],[-1.079,-1.079],[-7.669,1.076],[-2.558,0.464],[-15.506,4.121],[-16.077,0.453],[-23.723,-6.239],[-22.995,-6.75],[-26.073,-3.091],[-27.194,5.976],[-34.422,1.715],[-1.797,3.607],[1.898,0.243],[32.579,-7.078],[44.726,12.732]],"o":[[-15.633,1.435],[-15.639,3.711],[-0.891,0.144],[-7.797,1.444],[1.766,1.766],[7.669,-1.076],[16.9,-3.063],[15.506,-4.121],[25.114,-0.707],[23.723,6.239],[22.515,6.61],[26.073,3.091],[29.894,-6.569],[5.793,-0.289],[1.481,-2.974],[-50.56,-6.479],[-55.965,12.158],[-44.775,-12.746]],"v":[[-151.5,-24.5],[-198.116,-15.966],[-246.5,-5.5],[-263.478,-2.701],[-277.5,1.5],[-260.594,1.672],[-242.5,-1.5],[-194.382,-13.457],[-147.5,-21.5],[-74.412,-11.593],[-4.5,9.5],[68.992,25.439],[149.5,22.5],[245.5,0.5],[278.5,-0.5],[272.5,-3.5],[149.5,18.5],[-4.5,5.5]],"c":true}],"h":1},{"t":213,"s":[{"i":[[49.444,-5.694],[10.192,-2.584],[10.94,-2.48],[10.151,-1.451],[9.192,-1.564],[0.393,-0.917],[-5.638,0.192],[-4.841,0.587],[-3.176,0.536],[-31.672,2.403],[-23.527,-5.609],[-82.532,16.959],[-23.165,5.01],[-17.568,0.702],[-1.268,2.6],[2.36,-0.038],[31.921,-6.389],[45.155,12.954]],"o":[[-10.294,1.185],[-10.191,2.584],[-7.204,1.633],[-10.151,1.451],[-3.067,0.522],[-0.393,0.917],[3.461,-0.117],[4.841,-0.587],[32.435,-5.473],[26.111,-1.981],[66.454,15.843],[17.684,-3.634],[13.624,-2.946],[3.714,-0.148],[1.797,-3.685],[-44.493,0.717],[-55.945,11.198],[-43.927,-12.602]],"v":[[-151.5,-24.5],[-182.016,-18.471],[-213.5,-10.5],[-240.509,-5.948],[-270.5,-1.5],[-276.529,1.035],[-269.5,2.5],[-256.286,1.314],[-243.5,-0.5],[-148.5,-21.5],[-71.5,-11.5],[151.5,23.5],[210.5,7.5],[260.5,0.5],[278.5,-0.5],[262.5,-3.5],[150.5,19.5],[-3.5,3.5]],"c":true}],"h":1},{"t":214,"s":[{"i":[[29.124,-3.709],[15.576,-4.162],[17.565,-2.425],[6.123,-0.318],[2.624,-1.33],[-9.419,0.663],[-0.798,0.123],[-15.148,4.164],[-15.637,1.602],[-24.258,-5.079],[-22.588,-6.568],[-56.574,10.49],[-36.087,4.307],[1.329,2.759],[4.893,-0.594],[30.686,-5.248],[43.332,12.575],[23.286,4.876]],"o":[[-15.13,1.927],[-15.576,4.162],[-2.886,0.399],[-6.122,0.318],[-5.476,2.775],[9.419,-0.663],[17.769,-2.742],[15.148,-4.164],[29.008,-2.971],[23.315,4.882],[44.164,12.841],[28.839,-5.347],[2.683,-0.32],[-1.366,-2.836],[-33.228,4.035],[-59.626,10.198],[-22.791,-6.614],[-23.786,-4.98]],"v":[[-150.5,-24.5],[-196.174,-14.373],[-245.5,-3.5],[-260.697,-2.699],[-275.5,-0.5],[-263.705,1.673],[-242.5,-0.5],[-193.901,-11.855],[-148.5,-21.5],[-69.5,-13.5],[-0.5,5.5],[151.5,24.5],[243.5,2.5],[278.5,-1.5],[242.5,-1.5],[150.5,20.5],[-1.5,1.5],[-69.5,-17.5]],"c":true}],"h":1},{"t":215,"s":[{"i":[[52.001,-6.25],[10.325,-2.663],[13.063,-3.067],[10.515,-1.477],[9.597,-1.367],[-4.208,-0.47],[-2.462,0.205],[-3.156,0.379],[-2.346,0.317],[-16.302,4.523],[-15.286,1.273],[-43.468,-13.005],[-53.009,8.656],[-43.383,2.826],[2.078,4.172],[5.323,-0.664],[29.716,-4.679],[44.174,12.968]],"o":[[-10.637,1.279],[-10.325,2.664],[-7.344,1.724],[-10.515,1.477],[-9.294,1.324],[4.208,0.47],[2.028,-0.169],[3.156,-0.379],[19.505,-2.634],[16.302,-4.523],[51.469,-4.286],[45.756,13.689],[34.43,-5.622],[-0.349,0.023],[-1.492,-2.995],[-38.118,4.758],[-55.795,8.785],[-42.978,-12.617]],"v":[[-146.5,-24.5],[-177.181,-18.342],[-211.5,-9.5],[-239.31,-4.732],[-270.5,-0.5],[-274.317,2.147],[-260.5,2.5],[-252.238,1.611],[-243.5,0.5],[-190.337,-11.521],[-143.5,-21.5],[-1.5,2.5],[151.5,25.5],[261.5,1.5],[278.5,-1.5],[243.5,-0.5],[150.5,21.5],[-2.5,-1.5]],"c":true}],"h":1},{"t":216,"s":[{"i":[[50.905,-3.529],[1.942,0.082],[1.818,-0.229],[9.826,-2.95],[13.531,-3.047],[5.554,-1.043],[6.334,-0.825],[4.866,-0.107],[4.692,-1.68],[-3.29,0.42],[-29.382,4.133],[-45.52,-13.286],[-54.635,6.111],[-22.012,5.035],[-21.651,3.918],[7.95,-0.503],[33.308,-3.412],[41.031,12.415]],"o":[[-1.415,0.098],[-1.942,-0.082],[-9.165,1.153],[-9.826,2.95],[-4.45,1.002],[-5.554,1.043],[-6.845,0.892],[-4.866,0.107],[-12.483,4.469],[36.672,-4.686],[55.432,-7.798],[45.258,13.21],[18.778,-2.1],[17.615,-4.029],[17.604,-3.186],[-41.543,2.628],[-53.522,5.482],[-43.04,-13.023]],"v":[[-137.5,-24.5],[-142.697,-24.598],[-148.5,-24.5],[-176.226,-17.921],[-210.5,-8.5],[-225.586,-5.368],[-243.5,-2.5],[-260.615,-1.591],[-274.5,0.5],[-242.5,1.5],[-147.5,-20.5],[1.5,1.5],[149.5,26.5],[211.5,10.5],[271.5,1.5],[259.5,-1.5],[148.5,22.5],[6.5,-1.5]],"c":true}],"h":1},{"t":217,"s":[{"i":[[52.885,-3.667],[11.543,-3.288],[16.757,-3.732],[10.119,-1.139],[10.384,-0.406],[-3.095,-0.938],[-4.013,0.121],[-19.024,5.13],[-15.868,2.846],[-24.917,-4.284],[-23.741,-6.811],[-25.163,-5.892],[-26.459,2.561],[-19.375,4.58],[-16.907,2.552],[8.033,-0.669],[33.064,-2.844],[40.642,11.795]],"o":[[-16.069,1.114],[-11.543,3.288],[-9.141,2.036],[-10.119,1.139],[-9.394,0.367],[3.095,0.938],[21.035,-0.635],[19.024,-5.13],[27.591,-4.948],[24.917,4.284],[20.89,5.993],[25.163,5.892],[18.999,-1.839],[12.126,-2.866],[16.879,-2.548],[-40.141,3.343],[-52.202,4.491],[-43.406,-12.597]],"v":[[-129.5,-24.5],[-168.483,-17.464],[-208.5,-6.5],[-237.567,-1.778],[-268.5,0.5],[-275.056,2.866],[-261.5,4.5],[-201.125,-5.841],[-148.5,-19.5],[-70.112,-18.82],[2.5,-0.5],[72.323,19.415],[150.5,26.5],[212.5,11.5],[271.5,2.5],[261.5,-0.5],[149.5,22.5],[11.5,-2.5]],"c":true}],"h":1},{"t":218,"s":[{"i":[[77.179,-4.969],[12.908,-3.523],[17.614,-3.765],[8.968,-1.074],[7.888,-0.156],[3.967,-0.73],[-7.685,-0.985],[-20.761,5.78],[-16.676,2.991],[-36.804,-8.618],[-33.367,-7.955],[-13.191,-2.101],[-13.188,1.276],[-19.556,4.642],[-15.677,2.809],[6.782,-0.647],[35.118,-2.664],[21.856,4.868]],"o":[[-17.754,1.143],[-12.908,3.523],[-7.242,1.548],[-8.968,1.074],[-4.817,0.095],[-3.967,0.73],[24.281,3.111],[20.761,-5.78],[41.416,-7.428],[36.804,8.618],[12.047,2.872],[13.191,2.101],[18.796,-1.819],[11.484,-2.726],[18.857,-3.379],[-41.647,3.97],[-24.381,1.85],[-64.989,-14.475]],"v":[[-120.5,-24.5],[-164.105,-16.967],[-207.5,-5.5],[-232.516,-1.456],[-258.5,0.5],[-274.377,1.833],[-271.5,4.5],[-203.796,-2.423],[-147.5,-18.5],[-30.464,-12.537],[74.5,16.5],[112.644,24.611],[152.5,26.5],[214.5,12.5],[271.5,2.5],[261.5,-0.5],[150.5,22.5],[80.5,13.5]],"c":true}],"h":1},{"t":219,"s":[{"i":[[51.186,-3.549],[0.336,0.004],[0.328,0.008],[18.979,-5.528],[21.035,-2.388],[11.03,-0.332],[0.519,-0.518],[-3.879,-0.359],[-23.959,7.128],[-37.898,-5.233],[-31.476,-9.222],[-37.589,1.287],[-19.251,4.472],[-19.595,3.546],[1.149,2.546],[3.806,-0.432],[33.972,-0.725],[38.792,10.936]],"o":[[-0.328,0.023],[-0.336,-0.004],[-20.049,-0.498],[-18.979,5.528],[-1.362,0.154],[-11.03,0.332],[-2.077,2.077],[35.728,3.305],[35.22,-10.478],[37.037,5.114],[32.263,9.453],[20.121,-0.689],[15.714,-3.65],[-3.358,0.608],[-0.711,-1.575],[-41.074,4.662],[-47.513,1.014],[-40.789,-11.499]],"v":[[-112.5,-24.5],[-113.5,-24.477],[-114.5,-24.5],[-172.261,-14.665],[-231.5,-0.5],[-255.133,0.227],[-277.5,1.5],[-266.5,5.5],[-170.5,-9.5],[-58.5,-18.5],[42.5,6.5],[149.5,26.5],[213.5,13.5],[271.5,3.5],[278.5,0.5],[261.5,0.5],[148.5,22.5],[21.5,-4.5]],"c":true}],"h":1},{"t":220,"s":[{"i":[[76.508,-4.926],[0.337,0.002],[0.326,0.014],[21.785,-6.428],[23.382,-1.295],[3.869,0.037],[1.855,0],[2.176,-0.87],[-9.771,-0.519],[-23.848,7.175],[-39.744,-4.007],[-71.642,-4.264],[-24.031,5.485],[-17.496,3.289],[1.514,3.157],[2.851,-0.354],[39.233,-2.571],[20.615,4.925]],"o":[[-0.326,0.021],[-0.337,-0.002],[-22.476,-1.008],[-21.786,6.428],[-2.669,0.148],[-3.869,-0.037],[-8.066,0],[-2.176,0.87],[39.382,2.091],[34.497,-10.379],[78.358,7.899],[28.325,1.686],[14.572,-3.326],[-3.437,0.646],[-0.292,-0.608],[-41.166,5.113],[-22.584,1.48],[-62.562,-14.947]],"v":[[-103.5,-24.5],[-104.5,-24.473],[-105.5,-24.5],[-171.32,-13.228],[-238.5,1.5],[-249.111,1.611],[-258.5,1.5],[-275.378,3.111],[-265.5,5.5],[-170.5,-8.5],[-60.5,-20.5],[141.5,25.5],[217.5,13.5],[271.5,3.5],[278.5,0.5],[262.5,0.5],[155.5,21.5],[88.5,12.5]],"c":true}],"h":1},{"t":221,"s":[{"i":[[44.692,-3.099],[13.726,-3.133],[16.428,-4.311],[14.348,-1.694],[14.19,0.511],[0.095,-0.899],[-6.423,-0.659],[-16.046,3.074],[-13.007,3.841],[-18.498,2.423],[-20.434,-1.88],[-31.506,-9.533],[-36.211,-0.134],[-21.502,4.81],[-18.254,4.202],[7,-0.912],[33.968,0.629],[36.444,10.455]],"o":[[-16.668,1.155],[-13.726,3.133],[-10.418,2.735],[-14.348,1.694],[-7.044,-0.254],[-0.095,0.899],[20.81,2.135],[16.046,-3.074],[17.575,-5.189],[18.498,-2.423],[38.458,3.537],[32.479,9.827],[20.243,0.075],[14.406,-3.223],[15.25,-3.511],[-35.399,4.614],[-42.2,-0.782],[-38.207,-10.961]],"v":[[-95.5,-24.5],[-139.68,-17.867],[-183.5,-6.5],[-221.672,0.435],[-265.5,2.5],[-276.101,3.815],[-266.5,6.5],[-211.648,3.982],[-168.5,-7.5],[-114.645,-19.301],[-56.5,-20.5],[47.5,2.5],[151.5,25.5],[216.5,14.5],[272.5,4.5],[261.5,1.5],[150.5,21.5],[32.5,-6.5]],"c":true}],"h":1},{"t":222,"s":[{"i":[[69.516,-4.82],[0.336,0.004],[0.328,0.008],[25.16,-7.483],[32.337,1.211],[5.168,-0.413],[-12.302,-1.631],[-16.926,2.725],[-11.961,3.531],[-43.034,-2.287],[-31.296,-9.222],[-35.184,-0.668],[-18.077,3.627],[-15.795,3.127],[1.276,2.736],[2.146,-0.308],[35.982,0.939],[18.205,4.846]],"o":[[-0.328,0.023],[-0.336,-0.004],[-29.022,-0.721],[-25.16,7.483],[-7.627,-0.285],[-5.169,0.413],[18.334,2.431],[16.926,-2.725],[36.333,-10.727],[39.467,2.098],[30.805,9.078],[20.571,0.39],[14.525,-2.914],[-2.83,0.56],[-0.887,-1.902],[-36.086,5.171],[-20.043,-0.523],[-55.567,-14.791]],"v":[[-86.5,-24.5],[-87.5,-24.477],[-88.5,-24.5],[-167.014,-10.133],[-250.5,3.5],[-273.447,3.562],[-266.5,6.5],[-212.721,4.972],[-168.5,-5.5],[-56.5,-21.5],[48.5,0.5],[152.5,24.5],[216.5,14.5],[271.5,4.5],[278.5,1.5],[262.5,1.5],[151.5,20.5],[93.5,8.5]],"c":true}],"h":1},{"t":223,"s":[{"i":[[65.44,-4.214],[13.627,-2.517],[12.35,-3.957],[13.456,-2.488],[15.355,0.062],[8.089,0.739],[0.966,-0.966],[-4.642,-0.821],[-0.139,-0.01],[-38.981,10.106],[-39.69,-3.921],[-28.753,-8.392],[-31.838,-1.747],[-21.498,4.262],[-17.863,4.528],[7.687,-1.085],[35.703,2.006],[17.927,4.966]],"o":[[-15.144,0.975],[-13.626,2.517],[-12.822,4.108],[-13.456,2.488],[-2.678,-0.011],[-8.089,-0.739],[-1.707,1.707],[4.642,0.821],[47.076,3.156],[31.138,-8.073],[35.207,3.478],[30.653,8.947],[21.139,1.16],[16.598,-3.29],[14.766,-3.743],[-32.699,4.614],[-18.394,-1.034],[-53.669,-14.866]],"v":[[-77.5,-24.5],[-120.596,-19.236],[-159.5,-9.5],[-198.601,0.627],[-241.5,4.5],[-260.784,2.767],[-277.5,2.5],[-270.384,6.273],[-260.5,7.5],[-142.5,-10.5],[-37.5,-20.5],[57.5,0.5],[151.5,23.5],[217.5,15.5],[272.5,5.5],[261.5,2.5],[151.5,19.5],[95.5,7.5]],"c":true}],"h":1},{"t":224,"s":[{"i":[[64.422,-4.467],[14.657,-2.882],[14.243,-4.285],[15.2,-2.188],[19.224,0.958],[4.421,0.729],[1.172,-1.171],[-2.658,-0.85],[-1.69,-0.277],[-22.215,4.983],[-21.233,4.814],[-39.871,-3.987],[-27.461,-8.169],[-30.316,-1.401],[-32.645,5.916],[14.012,-2.187],[34.821,1.529],[17.484,4.91]],"o":[[-17.128,1.188],[-14.657,2.882],[-13.976,4.205],[-15.2,2.188],[-5.146,-0.256],[-4.421,-0.729],[-1.324,1.324],[2.658,0.85],[28.907,4.747],[22.215,-4.983],[29.344,-6.653],[33.483,3.348],[29.123,8.664],[37.371,1.727],[20.111,-3.644],[-31.398,4.901],[-17.839,-0.783],[-52.199,-14.659]],"v":[[-69.5,-24.5],[-116.663,-18.323],[-159.5,-7.5],[-202.564,2.372],[-253.5,4.5],[-268.481,2.429],[-277.5,2.5],[-274.261,5.785],[-266.5,7.5],[-191.245,4.671],[-127.5,-12.5],[-25.5,-20.5],[65.5,0.5],[155.5,22.5],[265.5,6.5],[262.5,2.5],[155.5,18.5],[100.5,6.5]],"c":true}],"h":1},{"t":225,"s":[{"i":[[62.156,-4.002],[8.847,-1.291],[9.407,-2.114],[15.922,-4.334],[21.064,-0.789],[7.468,0.443],[6.57,0.549],[0.35,-0.911],[-6.567,-1.037],[-23.305,6.354],[-40.971,2.638],[-32.613,-8.681],[-34.287,-3.512],[-32.9,5.794],[19.383,-2.082],[14.077,-2.369],[20.114,2.25],[16.082,4.596]],"o":[[-11.204,0.721],[-8.847,1.291],[-17.247,3.876],[-15.922,4.334],[-8.56,0.321],[-7.468,-0.443],[-8.168,-0.683],[-0.35,0.911],[36.079,5.698],[36.349,-9.911],[42.977,-2.767],[33.484,8.913],[40.951,4.195],[6.065,-1.068],[-20.237,2.174],[-23.468,3.949],[-16.625,-1.86],[-49.196,-14.059]],"v":[[-60.5,-24.5],[-89.848,-21.544],[-116.5,-16.5],[-164.637,-3.185],[-218.5,5.5],[-242.493,5.152],[-263.5,3.5],[-276.051,4.21],[-266.5,7.5],[-166.5,0.5],[-60.5,-20.5],[50.5,-6.5],[150.5,20.5],[256.5,8.5],[271.5,2.5],[217.5,11.5],[149.5,16.5],[100.5,3.5]],"c":true}],"h":1},{"t":226,"s":[{"i":[[77.373,-5.365],[9.141,-1.241],[9.841,-2.232],[16.519,-4.597],[23.015,-0.551],[7.746,0.376],[6.219,0.707],[3.51,-0.092],[-6.889,-1.84],[-19.256,1.216],[-14.036,3.662],[-37.719,3.275],[-48.815,-13.923],[-17.708,-1.344],[-35.482,6.679],[13.514,-1.242],[14.974,-2.425],[20.951,3.66]],"o":[[-11.593,0.804],[-9.141,1.241],[-17.907,4.06],[-16.519,4.597],[-8.795,0.21],[-7.746,-0.376],[-1.849,-0.21],[-3.51,0.092],[16.942,4.525],[19.255,-1.216],[33.454,-8.727],[66.632,-5.785],[16.823,4.798],[39.724,3.014],[8.316,-1.565],[-19.095,1.755],[-26.346,4.267],[-65.543,-11.451]],"v":[[-52.5,-24.5],[-82.814,-21.571],[-110.5,-16.5],[-160.169,-2.369],[-217.5,6.5],[-242.432,6.188],[-263.5,4.5],[-274.553,3.962],[-272.5,6.5],[-216.32,10.64],[-164.5,2.5],[-58.5,-20.5],[105.5,6.5],[157.5,19.5],[265.5,7.5],[272.5,2.5],[221.5,11.5],[149.5,14.5]],"c":true}],"h":1},{"t":227,"s":[{"i":[[35.374,-2.278],[9.224,-1.443],[10.579,-2.42],[17.516,-4.602],[23.431,-0.357],[8.289,0.588],[6.654,0.773],[3.76,-0.039],[-7.182,-1.975],[-10.226,-1.039],[-68.468,6.902],[-33.398,-8.872],[-36.336,-2.257],[-29.67,5.896],[12.955,-0.994],[3.277,-0.477],[34.527,6.224],[30.158,7.691]],"o":[[-12.525,0.806],[-9.224,1.443],[-18.505,4.233],[-17.516,4.602],[-8.19,0.125],[-8.289,-0.588],[-1.143,-0.133],[-3.76,0.039],[9.488,2.609],[80.527,8.183],[44.977,-4.534],[34.811,9.247],[35.676,2.216],[8.863,-1.761],[-6.093,0.467],[-34.339,4.994],[-29.834,-5.378],[-31.424,-8.014]],"v":[[-43.5,-24.5],[-74.959,-21.21],[-103.5,-15.5],[-155.805,-1.093],[-215.5,7.5],[-240.652,6.673],[-263.5,4.5],[-274.243,3.919],[-272.5,6.5],[-251.5,9.5],[-55.5,-20.5],[61.5,-8.5],[165.5,18.5],[266.5,7.5],[271.5,2.5],[264.5,3.5],[148.5,12.5],[59.5,-12.5]],"c":true}],"h":1},{"t":228,"s":[{"i":[[57.532,-3.989],[18.848,-4.548],[18.656,-5.218],[19.675,-0.556],[16.349,2.407],[2.878,-0.467],[-6.866,-1.773],[-23.58,2.235],[-17.298,5.098],[-23.315,4.044],[-26.219,-2.516],[-21.243,-5.637],[-22.153,-6.064],[-24.084,0.992],[-19.531,5.268],[4.208,-0.743],[18.713,-0.981],[21.315,6.245]],"o":[[-22.95,1.591],[-18.848,4.548],[-14.949,4.181],[-19.675,0.556],[-4.355,-0.641],[-2.878,0.467],[23.382,6.037],[23.58,-2.235],[21.52,-6.341],[23.315,-4.044],[24.874,2.387],[21.243,5.637],[19.135,5.238],[24.084,-0.992],[18.864,-5.089],[-15.458,2.729],[-34.164,1.79],[-45.022,-13.191]],"v":[[-35.5,-24.5],[-97.22,-14.721],[-152.5,0.5],[-206.45,7.441],[-262.5,4.5],[-275.416,4.19],[-271.5,7.5],[-199.437,11.851],[-136.5,-0.5],[-69.524,-17.143],[4.5,-20.5],[72.541,-7.758],[136.5,10.5],[203.703,16.38],[271.5,6.5],[258.5,4.5],[199.5,13.5],[119.5,2.5]],"c":true}],"h":1},{"t":229,"s":[{"i":[[54.574,-3.514],[10.11,-1.641],[11.055,-2.63],[9.404,-2.745],[9.96,-2.78],[20.389,-0.28],[16.59,2.546],[3.963,0.538],[0.478,-1.101],[-2.192,-0.269],[-27.732,8.172],[-53.541,-2.846],[-43.337,-12.17],[-28.04,2.269],[-16.936,7.317],[-4.181,0.711],[21.309,-0.852],[19.809,5.771]],"o":[[-12.503,0.805],[-10.11,1.641],[-9.422,2.242],[-9.404,2.744],[-15.855,4.426],[-20.389,0.28],[0.33,0.05],[-3.963,-0.538],[-1.357,3.128],[41.199,5.055],[42.809,-12.615],[50.325,2.675],[18.17,5.103],[19.201,-1.554],[12.925,-5.584],[-19.07,3.244],[-31.486,1.259],[-43.737,-12.742]],"v":[[-26.5,-24.5],[-59.586,-20.869],[-90.5,-14.5],[-118.596,-6.904],[-147.5,1.5],[-203.948,8.229],[-261.5,4.5],[-268.894,3.212],[-277.5,3.5],[-245.5,11.5],[-136.5,1.5],[3.5,-21.5],[136.5,8.5],[209.5,15.5],[275.5,5.5],[259.5,5.5],[200.5,12.5],[124.5,0.5]],"c":true}],"h":1},{"t":230,"s":[{"i":[[52.881,-3.666],[10.77,-1.576],[11.151,-2.809],[9.559,-2.922],[10.202,-2.904],[20.937,-0.077],[18.399,2.823],[3.892,0.503],[0.44,-1.013],[-0.158,-0.041],[-37.114,10.792],[-54.47,-1.305],[-43.956,-12.659],[-29.333,1.332],[-16.688,2.809],[12.311,-0.415],[31.706,-1.096],[19.499,5.801]],"o":[[-12.769,0.886],[-10.77,1.576],[-9.564,2.409],[-9.559,2.922],[-15.854,4.513],[-20.937,0.078],[0.007,0.001],[-3.892,-0.503],[-1.022,2.356],[44.574,11.508],[42.513,-12.361],[52.459,1.257],[18.528,5.336],[18.171,-0.825],[3.878,-0.653],[-25.76,0.868],[-30.902,1.068],[-41.931,-12.474]],"v":[[-18.5,-24.5],[-53.213,-20.943],[-85.5,-14.5],[-114.022,-6.371],[-143.5,2.5],[-200.591,9.002],[-261.5,4.5],[-269.165,3.241],[-277.5,3.5],[-271.5,7.5],[-135.5,4.5],[1.5,-21.5],[136.5,6.5],[208.5,15.5],[262.5,8.5],[274.5,2.5],[203.5,11.5],[129.5,-0.5]],"c":true}],"h":1},{"t":231,"s":[{"i":[[51.669,-3.327],[10.881,-1.771],[11.876,-3.041],[19.58,-5.166],[30.513,1.341],[9.295,1.405],[6.769,1.069],[3.722,-0.084],[-8.053,-2.162],[-23.535,-0.006],[-19.545,5.748],[-53.803,1.688],[-43.886,-12.883],[-29.178,0.812],[-18.315,4.298],[8.036,-0.462],[30.314,0],[16.949,4.975]],"o":[[-13.599,0.876],[-10.881,1.771],[-22.167,5.676],[-19.58,5.166],[-7.049,-0.31],[-9.295,-1.405],[-3.166,-0.5],[-3.722,0.084],[21.313,5.723],[23.535,0.006],[42.307,-12.443],[52.542,-1.648],[18.203,5.344],[21.332,-0.594],[4.717,-1.107],[-23.929,1.375],[-29.902,0],[-43.819,-12.863]],"v":[[-9.5,-24.5],[-45.292,-20.624],[-78.5,-13.5],[-137.74,4.263],[-209.5,11.5],[-235.21,8.569],[-260.5,4.5],[-273.914,3.503],[-270.5,6.5],[-201.674,15.104],[-135.5,6.5],[-0.5,-21.5],[137.5,3.5],[207.5,14.5],[271.5,7.5],[274.5,2.5],[204.5,10.5],[133.5,-1.5]],"c":true}],"h":1},{"t":232,"s":[{"i":[[49.949,-3.463],[11.79,-1.795],[11.063,-2.933],[20.323,-5.502],[30.391,1.922],[9.517,1.594],[6.966,1.185],[4.072,-0.273],[-10.262,-2.583],[-6.67,-0.911],[-4.716,-0.694],[-25.531,5.569],[-26.952,6.718],[-43.892,-6.06],[-38.358,-8.891],[-32.182,8.284],[-0.108,0.013],[26.948,7.851]],"o":[[-12.778,0.886],[-11.79,1.795],[-22.316,5.917],[-20.323,5.501],[-6.966,-0.441],[-9.517,-1.594],[-3.976,-0.676],[-4.072,0.273],[6.604,1.662],[6.67,0.911],[33.923,4.995],[25.531,-5.569],[35.528,-8.856],[38.948,5.378],[32.826,7.609],[21.877,-5.631],[-40.676,4.974],[-45.255,-13.184]],"v":[[-1.5,-24.5],[-38.287,-20.535],[-72.5,-13.5],[-133.444,5.379],[-206.5,12.5],[-232.5,9.058],[-258.5,4.5],[-274.178,3.555],[-268.5,7.5],[-248.084,11.226],[-230.5,13.5],[-143.772,10.285],[-67.5,-10.5],[52.5,-18.5],[160.5,7.5],[272.5,6.5],[244.5,7.5],[137.5,-2.5]],"c":true}],"h":1},{"t":233,"s":[{"i":[[48.556,-3.126],[14.779,-2.963],[14.599,-4.099],[14.108,-4.064],[14.028,-0.941],[14.665,1.463],[11.516,2.076],[6.287,1.387],[1.594,-1.593],[-2.236,-0.913],[-1.943,-0.46],[-34.54,6.551],[-34.867,7.905],[-40.438,-5.583],[-36.174,-8.385],[-30.493,8.386],[3.978,-0.565],[32.659,9.496]],"o":[[-16.287,1.049],[-14.779,2.963],[-13.538,3.802],[-14.108,4.064],[-13.823,0.927],[-14.665,-1.463],[-0.258,-0.046],[-6.287,-1.387],[-0.889,0.889],[2.236,0.913],[33.002,7.809],[31.586,-5.991],[33.841,-7.673],[35.636,4.921],[28.318,6.564],[15.697,-4.317],[-45.304,6.432],[-40.921,-11.898]],"v":[[7.5,-24.5],[-38.766,-18.288],[-82.5,-7.5],[-124.133,5.146],[-166.5,13.5],[-210.231,12.252],[-250.5,6.5],[-262.998,3.27],[-277.5,2.5],[-274.624,5.322],[-267.5,7.5],[-148.5,15.5],[-50.5,-12.5],[64.5,-18.5],[166.5,6.5],[273.5,6.5],[262.5,4.5],[142.5,-3.5]],"c":true}],"h":1},{"t":234,"s":[{"i":[[45.706,-3.169],[0.336,0.004],[0.328,0.008],[26.731,-8.601],[27.053,-4.345],[20.207,3.174],[16.898,1.558],[-3.203,-1.413],[-1.669,-0.313],[-20.056,-2.469],[-18.053,3.014],[-16.31,5.236],[-17.267,4.304],[-43.337,-4.776],[-37.198,-9.272],[-30.59,8.412],[3.13,-0.268],[24.267,7.11]],"o":[[-0.328,0.023],[-0.336,-0.004],[-30.023,-0.746],[-26.731,8.6],[-20.273,3.255],[-20.207,-3.174],[-10.481,-0.966],[3.203,1.413],[16.721,3.139],[20.056,2.468],[16.49,-2.752],[16.311,-5.236],[33.349,-8.313],[38.444,4.237],[27.411,6.833],[17.792,-4.893],[-39.803,3.408],[-39.66,-11.621]],"v":[[15.5,-24.5],[14.5,-24.477],[13.5,-24.5],[-70.727,-9.318],[-150.5,13.5],[-212.032,11.61],[-268.5,2.5],[-275.612,4.04],[-264.5,7.5],[-208,17.115],[-149.5,17.5],[-100.583,4.664],[-50.5,-10.5],[63.5,-19.5],[166.5,4.5],[273.5,6.5],[246.5,6.5],[147.5,-5.5]],"c":true}],"h":1},{"t":235,"s":[{"i":[[44.151,-2.843],[14.827,-2.909],[15.165,-4.3],[14.097,-4.305],[13.806,-1.864],[19.382,2.957],[17.581,2.726],[2.788,0.446],[0.435,-1.002],[-2.846,-0.523],[-0.406,-0.088],[-38.721,5.397],[-33.85,9.065],[-43.094,-3.741],[-38.074,-10.299],[-30.987,8.276],[2.48,-0.285],[32.553,9.593]],"o":[[-16.527,1.064],[-14.827,2.909],[-13.804,3.914],[-14.097,4.305],[-18.892,2.552],[-19.382,-2.957],[-1.411,-0.219],[-2.788,-0.446],[-0.791,1.822],[2.846,0.523],[34.773,7.495],[33.654,-4.691],[32.194,-8.622],[39.338,3.415],[27.155,7.345],[16.384,-4.376],[-45.043,5.169],[-38.366,-11.306]],"v":[[24.5,-24.5],[-22.022,-18.427],[-66.5,-7.5],[-108.498,5.537],[-150.5,15.5],[-208.483,13.458],[-264.5,3.5],[-271.732,2.084],[-277.5,2.5],[-272.897,5.801],[-266.5,6.5],[-149.5,19.5],[-50.5,-8.5],[62.5,-20.5],[166.5,2.5],[273.5,6.5],[263.5,4.5],[151.5,-6.5]],"c":true}],"h":1},{"t":236,"s":[{"i":[[42.395,-2.939],[15.735,-3.283],[16.234,-4.63],[15.287,-4.446],[15.435,-1.105],[16.086,2.671],[12.57,2.396],[6.762,0.985],[0.631,-1.383],[-2.97,-0.54],[-1.807,-0.34],[-41.615,3.629],[-33.454,9.395],[-43.594,-1.917],[-36.776,-10.167],[-33.495,8.946],[3.116,-0.256],[30.892,9.19]],"o":[[-17.825,1.236],[-15.735,3.283],[-14.416,4.112],[-15.287,4.446],[-15.085,1.081],[-16.086,-2.671],[-2.322,-0.442],[-6.762,-0.985],[-0.686,1.502],[2.97,0.54],[35.563,6.678],[35.287,-3.077],[32.223,-9.049],[39.041,1.716],[26.894,7.435],[14.831,-3.961],[-42.849,3.525],[-36.776,-10.941]],"v":[[32.5,-24.5],[-17.193,-17.546],[-64.5,-5.5],[-109.236,8.255],[-155.5,17.5],[-203.387,14.107],[-247.5,5.5],[-263.768,2.631],[-277.5,2.5],[-272.87,5.371],[-264.5,6.5],[-153.5,21.5],[-52.5,-5.5],[59.5,-21.5],[166.5,-0.5],[273.5,6.5],[263.5,3.5],[155.5,-7.5]],"c":true}],"h":1},{"t":237,"s":[{"i":[[40.309,-2.595],[16.308,-3.324],[15.865,-4.552],[15.489,-4.623],[16.106,-1.222],[19.215,3.733],[15.447,2.412],[3.572,-0.435],[-6.47,-1.912],[-6.694,-1.194],[-39.09,3.783],[-33.201,9.197],[-42.617,-0.842],[-33.438,-9.985],[-18.011,-1.249],[-12.003,3.846],[12.429,-0.39],[22.603,7.4]],"o":[[-17.901,1.152],[-16.308,3.324],[-14.938,4.285],[-15.489,4.623],[-17.695,1.343],[-19.215,-3.733],[-4.183,-0.653],[-3.572,0.435],[7.778,2.298],[35.832,6.393],[34.636,-3.352],[32.158,-8.908],[39.08,0.773],[14.285,4.266],[14.798,1.026],[15.479,-4.959],[-36.591,1.148],[-38.307,-12.542]],"v":[[41.5,-24.5],[-9.527,-17.549],[-57.5,-5.5],[-103.124,8.798],[-150.5,18.5],[-207.187,13.316],[-260.5,2.5],[-274.49,2.077],[-272.5,5.5],[-264.5,6.5],[-148.5,22.5],[-48.5,-3.5],[60.5,-21.5],[167.5,-1.5],[220.5,8.5],[274.5,6.5],[247.5,4.5],[159.5,-8.5]],"c":true}],"h":1},{"t":238,"s":[{"i":[[38.928,-2.699],[16.692,-3.533],[15.779,-4.588],[15.979,-4.564],[16.69,-1.267],[16.738,3.089],[15.175,2.849],[8.24,0.757],[-9.183,-2.446],[-10.091,-1.824],[-7.055,-1.419],[-23.111,2.016],[-32.755,9.652],[-41,1.141],[-33.143,-9.637],[-35.197,4.483],[15.353,0],[21.023,6.76]],"o":[[-18.455,1.279],[-16.692,3.533],[-15.395,4.476],[-15.979,4.564],[-15.873,1.204],[-16.738,-3.089],[-2.222,-0.418],[-8.24,-0.757],[8.579,2.285],[10.091,1.824],[17.333,3.486],[35.43,-3.09],[31.139,-9.176],[39.818,-1.108],[25.104,7.299],[29.092,-3.705],[-35.342,0],[-37.301,-11.994]],"v":[[49.5,-24.5],[-3.007,-16.981],[-51.5,-4.5],[-98.528,9.907],[-147.5,19.5],[-197.023,15.54],[-245.5,5.5],[-267.053,2.852],[-271.5,4.5],[-242.357,10.65],[-215.5,15.5],[-146.5,23.5],[-46.5,-2.5],[60.5,-21.5],[168.5,-3.5],[266.5,6.5],[247.5,3.5],[163.5,-9.5]],"c":true}],"h":1},{"t":239,"s":[{"i":[[-0.139,0.009],[8.969,-1.298],[9.094,-2.099],[8.347,-2.166],[8.236,-2.404],[16.737,-4.64],[18.105,-0.788],[16.578,3.475],[14.481,2.76],[1.259,-2.712],[-2.917,-0.465],[-41.192,2.067],[-31.034,9.337],[-35.482,3.692],[-31.79,-8.513],[-43.27,9.318],[6.015,0.013],[73.497,-5.397]],"o":[[-11.029,0.71],[-8.969,1.298],[-8.374,1.933],[-8.348,2.166],[-15.945,4.654],[-16.737,4.64],[-15.209,0.662],[-16.578,-3.475],[-6.273,-1.196],[-1.532,3.299],[38.36,6.108],[32.767,-1.644],[29.677,-8.929],[38.043,-3.959],[37.519,10.047],[21.273,-4.581],[-67.726,-0.148],[-0.597,0.044]],"v":[[58.5,-24.5],[29.048,-21.541],[2.5,-16.5],[-22.603,-10.354],[-47.5,-3.5],[-96.38,11.4],[-148.5,20.5],[-197.046,15.066],[-244.5,4.5],[-277.5,1.5],[-262.5,5.5],[-147.5,24.5],[-52.5,2.5],[43.5,-19.5],[149.5,-11.5],[272.5,5.5],[247.5,3.5],[59.5,-25.5]],"c":true}],"h":1},{"t":240,"s":[{"i":[[37.564,-2.604],[18.691,-3.98],[15.593,-4.718],[17.914,-4.81],[19.086,0.16],[16.343,3.553],[14.46,2.668],[7.567,1.404],[1.788,-1.788],[-1.273,-0.235],[-33.448,0.279],[-32.421,9.645],[-37.909,3.745],[-33.687,-10.384],[-20.086,-2.567],[-14.168,2.834],[-1.054,0.041],[22.801,6.63]],"o":[[-19.644,1.362],[-18.691,3.98],[-16.257,4.919],[-17.914,4.81],[-14.166,-0.118],[-16.343,-3.553],[-0.942,-0.174],[-7.567,-1.404],[-2.758,2.758],[34.232,6.331],[36.551,-0.305],[32.356,-9.625],[43.472,-4.295],[14.286,4.404],[9.25,1.182],[18.481,-3.696],[-37.262,1.438],[-32.696,-9.507]],"v":[[66.5,-24.5],[8.462,-16.017],[-43.5,-2.5],[-94.878,13.309],[-150.5,21.5],[-197.279,14.912],[-244.5,4.5],[-260.366,1.029],[-277.5,0.5],[-246.5,7.5],[-149.5,25.5],[-46.5,2.5],[57.5,-20.5],[169.5,-7.5],[220.5,4.5],[273.5,5.5],[265.5,2.5],[173.5,-10.5]],"c":true}],"h":1}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":1,"ix":4},"nm":"Mask 1"}],"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[600,600],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":9,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true},{"ty":"fl","c":{"a":0,"k":[0.43137254902,0.38431372549,0.933333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[106.654,13.378],"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":"Rectangle 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":242,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 21","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"f","pt":{"a":1,"k":[{"t":0,"s":[{"i":[[39.522,-3.091],[21.901,-6.697],[21.68,-7.279],[25.24,-3.166],[26.239,6.309],[15.584,4.723],[17.239,2.12],[7.244,-0.866],[-18.632,-0.725],[-15.609,-3.274],[-13.004,-4.181],[-20.214,-1.57],[-18.246,3.392],[-31.268,10.76],[-40.821,-3.95],[-32.963,-6.004],[-3.738,3.738],[0.424,0.108],[6.269,1.165]],"o":[[-24.718,1.933],[-21.901,6.697],[-19.802,6.648],[-25.24,3.165],[-12.426,-2.988],[-15.584,-4.723],[-9.656,-1.188],[-7.244,0.866],[18.56,0.722],[15.609,3.274],[15.896,5.111],[20.214,1.57],[34.506,-6.414],[31.979,-11.005],[30.489,2.951],[5.777,1.052],[0.061,-0.061],[-7.752,-1.979],[-39.858,-7.409]],"v":[[130.5,-27.5],[61.222,-13.509],[-3.5,8.5],[-72.172,24.718],[-150.5,21.5],[-192.89,8.849],[-242.5,-2.5],[-273.716,-2.434],[-262.5,0.5],[-211.333,6.905],[-168.5,18.5],[-112.762,28.878],[-53.5,26.5],[44.5,-3.5],[152.5,-24.5],[244.5,-2.5],[278.5,1.5],[273.5,-2.5],[246.5,-5.5]],"c":true}],"h":1},{"t":1,"s":[{"i":[[40.415,-3.16],[16.343,-4.491],[15.557,-5.543],[16.074,-4.815],[17.676,-2.387],[18.514,2.37],[16.612,5.13],[8.04,1.967],[9.75,1.632],[8.569,1.09],[9.443,-1.41],[-4.818,-0.693],[-1.761,-0.027],[-31.421,-7.865],[-63.652,19.549],[-26.769,-2.591],[-31.374,-6.25],[-1.461,3.162],[2.465,0.355]],"o":[[-19.07,1.491],[-16.343,4.492],[-15.027,5.354],[-16.074,4.815],[-19.331,2.611],[-18.514,-2.37],[-8.091,-2.499],[-8.04,-1.967],[-6.282,-1.052],[-8.569,-1.09],[-8.035,1.2],[4.818,0.693],[45.65,0.697],[85.86,21.492],[21.614,-6.638],[33.887,3.279],[4.139,0.824],[1.433,-3.1],[-43.902,-6.329]],"v":[[134.5,-27.5],[81.866,-18.039],[34.5,-2.5],[-12.013,13.225],[-62.5,24.5],[-119.539,24.306],[-172.5,12.5],[-196.256,5.85],[-222.5,0.5],[-245.129,-3.346],[-272.5,-3.5],[-273.347,-0.621],[-259.5,0.5],[-150.5,24.5],[74.5,-11.5],[152.5,-24.5],[244.5,-2.5],[278.5,0.5],[263.5,-3.5]],"c":true}],"h":1},{"t":2,"s":[{"i":[[36.327,-2.686],[16.919,-4.529],[15.664,-5.505],[16.275,-4.859],[18.377,-2.109],[18.866,2.267],[16.001,5.174],[15.635,3.434],[17.672,-0.87],[1.856,-1.247],[-6.389,0.184],[-23.641,-6.532],[-27.089,-2.808],[-47.017,16.35],[-38.438,-1.999],[-19.914,-4.943],[-13.912,-2.778],[-1.616,3.498],[2.355,0.354]],"o":[[-18.66,1.38],[-16.919,4.529],[-15.523,5.455],[-16.275,4.859],[-19.534,2.242],[-18.866,-2.267],[-12.79,-4.135],[-15.635,-3.434],[-3.964,0.195],[-1.856,1.247],[32.345,-0.935],[23.641,6.532],[67.43,6.989],[30.851,-10.728],[20.345,1.058],[8.778,2.179],[4.636,0.926],[1.716,-3.714],[-40.252,-6.051]],"v":[[139.5,-27.5],[86.253,-18.094],[37.5,-2.5],[-9.859,13.509],[-61.5,24.5],[-119.649,24.061],[-172.5,12.5],[-215.339,0.246],[-265.5,-4.5],[-275.765,-1.715],[-270.5,0.5],[-189.558,11.693],[-116.5,28.5],[45.5,-1.5],[151.5,-24.5],[214.5,-10.5],[245.5,-3.5],[278.5,0.5],[263.5,-3.5]],"c":true}],"h":1},{"t":3,"s":[{"i":[[32.623,-1.773],[17.144,-4.626],[15.502,-5.466],[16.399,-4.868],[18.652,-1.971],[18.762,2.471],[15.993,5.227],[8.613,2.346],[8.246,1.229],[9.153,0.719],[7.764,-2.013],[-9.385,-0.413],[-2.573,-0.245],[-27.055,-6.772],[-62.551,19.895],[-25.76,-0.872],[-29.325,-5.94],[-3.496,3.496],[1.756,0.278]],"o":[[-18.921,1.029],[-17.144,4.626],[-15.753,5.555],[-16.399,4.868],[-19.959,2.11],[-18.762,-2.471],[-7.303,-2.387],[-8.613,-2.346],[-7.625,-1.136],[-9.153,-0.719],[-8.115,2.104],[9.385,0.413],[38.04,3.62],[85.458,21.391],[22.928,-7.293],[30.19,1.021],[6.054,1.226],[2.237,-2.237],[-39.39,-6.237]],"v":[[143.5,-27.5],[89.435,-18.328],[40.5,-2.5],[-7.326,13.688],[-59.5,24.5],[-117.974,23.502],[-170.5,11.5],[-194.792,4.131],[-220.5,-1.5],[-246.395,-4.862],[-272.5,-3.5],[-264.516,-0.106],[-240.5,0.5],[-147.5,23.5],[75.5,-9.5],[150.5,-24.5],[243.5,-3.5],[278.5,0.5],[263.5,-4.5]],"c":true}],"h":1},{"t":4,"s":[{"i":[[32.429,-0.434],[17.043,-5.065],[15.544,-5.481],[16.87,-4.644],[18.712,-1.849],[19.138,2.39],[16.387,5.424],[8.52,2.272],[9.338,1.403],[9.4,0.949],[9.151,-1.734],[-4.305,-0.655],[-2.056,0],[-38.864,-10.345],[-35.419,5.688],[-66.591,5.13],[-34.888,-7.067],[-3.163,3.163],[1.394,0.23]],"o":[[-19.285,0.258],[-17.043,5.065],[-15.809,5.574],[-16.87,4.644],[-20.062,1.982],[-19.138,-2.39],[-7.582,-2.509],[-8.52,-2.272],[-6.248,-0.939],[-9.4,-0.949],[-7.278,1.379],[4.305,0.655],[47.228,0],[29.924,7.965],[70.727,-11.358],[35.774,-2.756],[5.92,1.199],[2.862,-2.862],[-39.533,-6.509]],"v":[[148.5,-27.5],[94.194,-18.417],[45.5,-1.5],[-3.322,14.294],[-56.5,24.5],[-115.757,23.554],[-169.5,11.5],[-193.683,4.171],[-220.5,-1.5],[-244.822,-5.005],[-273.5,-4.5],[-274.5,-1.466],[-261.5,-0.5],[-147.5,21.5],[-41.5,26.5],[142.5,-23.5],[245.5,-3.5],[278.5,0.5],[264.5,-4.5]],"c":true}],"h":1},{"t":5,"s":[{"i":[[35.025,-3.845],[29.888,-10.774],[34.349,-3.941],[18.182,1.804],[15.805,5.018],[16.57,3.755],[18.759,-0.088],[5.154,-0.685],[-0.602,-1.256],[-5.645,0.448],[-0.563,-0.004],[-16.712,-3.687],[-15.703,-5.114],[-18.502,-1.661],[-19.57,2.668],[-29.945,10.633],[-34.006,0.856],[-41.655,-1.681],[1.785,0.308]],"o":[[-36.099,3.963],[-29.888,10.774],[-19.465,2.233],[-18.182,-1.804],[-15.959,-5.067],[-16.57,-3.755],[-0.986,0.005],[-5.154,0.685],[0.857,1.786],[5.645,-0.448],[18.45,0.14],[16.712,3.687],[15.423,5.023],[18.502,1.661],[35.609,-4.855],[29.59,-10.507],[43.8,-1.103],[21.482,0.867],[-38.842,-6.697]],"v":[[141.5,-26.5],[45.187,-0.984],[-48.5,24.5],[-105.245,24.939],[-156.5,14.5],[-204.9,0.634],[-257.5,-5.5],[-269.192,-4.439],[-278.5,-1.5],[-266.279,-0.164],[-254.5,-1.5],[-201.94,4.77],[-153.5,18.5],[-102.11,28.768],[-44.5,27.5],[51.5,1.5],[148.5,-23.5],[270.5,0.5],[262.5,-5.5]],"c":true}],"h":1},{"t":6,"s":[{"i":[[33.103,-2.436],[31.485,-11.924],[39.825,-1.492],[18.327,2.791],[17.276,5.636],[8.579,2.348],[9.514,1.268],[9.947,0.52],[7.313,-1.867],[2.312,-0.608],[-0.688,-1.478],[-3.735,0.14],[-38.023,-10.305],[-38.99,5.536],[-28.992,10.545],[-32.307,0.11],[-40.58,-2.805],[0.047,3.09],[-1.247,-0.225]],"o":[[-38.234,2.814],[-31.485,11.924],[-21.418,0.802],[-18.327,-2.791],[-7.168,-2.338],[-8.579,-2.348],[-5.899,-0.787],[-9.947,-0.52],[3.56,-0.909],[-2.312,0.608],[1.2,2.577],[48.19,-1.805],[30.637,8.303],[33.432,-4.747],[28.978,-10.54],[42.743,-0.146],[-4.03,-0.279],[-0.024,-1.57],[-39.031,-7.036]],"v":[[146.5,-26.5],[45.693,0.492],[-57.5,25.5],[-116.606,22.328],[-169.5,9.5],[-193.24,2.197],[-220.5,-3.5],[-245.94,-5.99],[-273.5,-4.5],[-273.847,-4.791],[-278.5,-1.5],[-261.5,-1.5],[-145.5,20.5],[-36.5,27.5],[56.5,1.5],[151.5,-23.5],[270.5,0.5],[278.5,-1.5],[263.5,-5.5]],"c":true}],"h":1},{"t":7,"s":[{"i":[[36.85,-4.244],[28.515,-10.44],[32.503,-4.389],[33.933,9.228],[41.096,-0.813],[4.787,-0.482],[-0.967,-2.037],[-4.889,0.212],[-1.034,0.011],[-18.117,-4.412],[-19.433,-4.613],[-17.925,-1.535],[-19.195,2.726],[-14.941,4.388],[-14.351,5.052],[-31.594,1.592],[-18.698,-4.268],[-17.706,-1.708],[3.476,0.662]],"o":[[-33.439,3.851],[-28.515,10.44],[-45.171,6.101],[-33.934,-9.228],[-1.819,0.036],[-4.787,0.482],[0.409,0.861],[4.889,-0.212],[25.097,-0.263],[18.118,4.413],[15.102,3.585],[17.925,1.535],[16.885,-2.398],[14.941,-4.388],[28.272,-9.952],[24.195,-1.219],[15.605,3.562],[19.183,1.851],[-40.097,-7.643]],"v":[[142.125,-24.5],[51.423,0.096],[-37.875,25.5],[-151.931,14.466],[-259.875,-4.5],[-271.964,-4],[-279.875,-0.5],[-269.844,0.154],[-258.875,-0.5],[-196.126,6.843],[-141.875,21.5],[-91.945,29.733],[-35.875,28.5],[11.526,17.991],[55.125,3.5],[147.125,-21.5],[213.125,-10.5],[269.125,0.5],[264.125,-4.5]],"c":true}],"h":1},{"t":8,"s":[{"i":[[36.672,-2.886],[15.391,-4.873],[14.598,-5.184],[15.825,-4.297],[17.73,-1.498],[17.868,2.003],[15.863,4.648],[21.236,4.424],[21.927,-5.009],[-7.831,0.095],[-3.957,-0.032],[-13.979,-2.554],[-11.043,-3.655],[-43.232,0.855],[-30.235,10.735],[-34.767,1.062],[-28.307,-6.122],[-3.741,3.741],[1.828,0.351]],"o":[[-16.839,1.325],[-15.391,4.873],[-14.971,5.316],[-15.825,4.297],[-19.663,1.66],[-17.868,-2.003],[-18.128,-5.311],[-21.236,-4.424],[-10.28,2.349],[7.831,-0.095],[16.041,0.13],[13.979,2.554],[34.28,11.345],[40.733,-0.805],[28.679,-10.183],[30.386,-0.928],[2.534,0.548],[2.439,-2.439],[-38.301,-7.355]],"v":[[148.5,-25.5],[100.319,-15.394],[55.5,0.5],[9.569,15.364],[-40.5,24.5],[-96.85,23.731],[-147.5,13.5],[-207.151,-3.24],[-272.5,-4.5],[-270.677,-1.763],[-247.5,-2.5],[-202.252,1.856],[-164.5,11.5],[-53.5,29.5],[52.5,6.5],[152.5,-22.5],[246.5,-5.5],[278.5,-0.5],[264.5,-5.5]],"c":true}],"h":1},{"t":9,"s":[{"i":[[34.665,-4.166],[31.353,-11.373],[42.096,0],[17.784,3.389],[17.18,5.444],[13.624,2.362],[16.499,-0.252],[6.823,-0.599],[-0.743,-1.582],[-3.687,0.18],[0.547,-0.02],[-8.38,-0.149],[-4.963,-0.647],[-65.972,0],[-31.405,10.543],[-35.815,1.805],[-29.569,-6.293],[-3.288,3.288],[5.698,1.16]],"o":[[-37.492,4.506],[-31.353,11.373],[-20.682,0],[-17.784,-3.389],[-12.005,-3.804],[-13.624,-2.362],[-1.452,0.022],[-6.823,0.599],[0.798,1.7],[3.687,-0.18],[6.518,-0.242],[8.38,0.149],[60.368,7.868],[43.02,0],[30.808,-10.343],[33.161,-1.671],[5.57,1.185],[2.147,-2.147],[-35.962,-7.32]],"v":[[146.5,-24.5],[47.453,3.88],[-58.5,25.5],[-115.626,20.083],[-167.5,6.5],[-205.63,-3.042],[-250.5,-6.5],[-266.146,-5.67],[-278.5,-2.5],[-269.991,-0.74],[-263.5,-1.5],[-239.834,-1.667],[-218.5,-0.5],[-55.5,29.5],[51.5,7.5],[151.5,-21.5],[246.5,-5.5],[278.5,-0.5],[264.5,-5.5]],"c":true}],"h":1},{"t":10,"s":[{"i":[[38.707,-4.929],[28.89,-10.873],[38.724,-1.215],[16.864,2.527],[15.709,4.515],[21.613,4.106],[22.079,-4.444],[-3.419,-0.422],[-4.288,0.292],[-18.758,-3.867],[-18.49,-5.132],[-17.432,-2.346],[-20.323,0.813],[-15.84,4.293],[-13.945,5.081],[-30.404,2.615],[-38.211,-2.983],[0.105,4.252],[0.187,0.039]],"o":[[-33.718,4.294],[-28.89,10.873],[-19.835,0.622],[-16.864,-2.527],[-17.469,-5.021],[-21.613,-4.106],[-7.963,1.603],[3.419,0.422],[23.477,-1.601],[18.758,3.867],[15.951,4.427],[17.432,2.346],[18.695,-0.748],[15.84,-4.293],[26.863,-9.787],[46.213,-3.975],[-13.234,-1.033],[-0.046,-1.851],[-38.801,-8.181]],"v":[[145.5,-23.5],[55.254,3.31],[-42.5,25.5],[-97.095,22.353],[-145.5,11.5],[-205.042,-4.098],[-271.5,-5.5],[-275.689,-2.579],[-261.5,-2.5],[-199.26,1.95],[-144.5,16.5],[-94.779,26.93],[-38.5,29.5],[13.062,21.25],[57.5,6.5],[149.5,-20.5],[270.5,-0.5],[278.5,-2.5],[265.5,-5.5]],"c":true}],"h":1},{"t":11,"s":[{"i":[[33.102,-4.216],[0.337,0.023],[0.326,-0.052],[31.388,-10.923],[44.826,0.47],[17.404,3.827],[17.903,5.488],[18.959,2.581],[17.577,-4.183],[-3.693,-0.331],[-1.879,0.146],[-18.543,-2.751],[-13.942,-4.614],[-20.479,-3.33],[-23.525,1.462],[-26.904,9.471],[-31.015,1.015],[-29.114,-6.397],[19.843,4.961]],"o":[[-0.327,0.041],[-0.337,-0.023],[-36.624,5.777],[-31.388,10.923],[-19.483,-0.204],[-17.404,-3.827],[-12.586,-3.858],[-18.959,-2.581],[-7.652,1.821],[3.693,0.331],[20.887,-1.62],[18.543,2.751],[18.558,6.142],[20.479,3.33],[37.526,-2.331],[26.868,-9.458],[32.969,-1.079],[6.498,1.428],[-34.634,-8.659]],"v":[[149.5,-23.5],[148.499,-23.508],[147.5,-23.5],[50.151,5.685],[-59.5,25.5],[-114.185,18.963],[-166.5,4.5],[-215.756,-6.53],[-272.5,-5.5],[-275.148,-2.526],[-263.5,-2.5],[-203.791,-0.175],[-154.5,11.5],[-96.225,26.203],[-30.5,29.5],[64.5,6.5],[155.5,-20.5],[248.5,-5.5],[271.5,-4.5]],"c":true}],"h":1},{"t":12,"s":[{"i":[[35.35,-4.744],[14.242,-5.033],[13.567,-4.66],[14.808,-3.865],[18.966,-0.8],[16.874,2.223],[15.403,3.872],[15.03,4.092],[17.248,0.955],[13.85,-3.809],[-1.373,-2.971],[6.728,-0.336],[-5.013,0.399],[-26.057,-7.84],[-39.809,-0.954],[-48.822,16.332],[-17.531,1.796],[-38.155,-3.748],[4.781,0.987]],"o":[[-16.464,2.209],[-14.242,5.033],[-13.8,4.741],[-14.808,3.865],[-18.102,0.763],[-16.874,-2.223],[-14.63,-3.678],[-15.031,-4.092],[-14.51,-0.804],[16.069,-4.419],[1.282,2.774],[4.314,-0.216],[36.625,-2.915],[35.167,10.581],[71.085,1.703],[15.677,-5.244],[43.743,-4.481],[15.751,1.547],[-35.838,-7.399]],"v":[[149.5,-22.5],[103.827,-10.838],[62.5,4.5],[20.374,17.956],[-29.5,25.5],[-82.025,22.976],[-130.5,13.5],[-174.536,0.958],[-222.5,-7.5],[-273.5,-5.5],[-278.5,-2.5],[-271.5,-1.5],[-264.5,-2.5],[-165.5,7.5],[-57.5,29.5],[101.5,-5.5],[152.5,-19.5],[271.5,-1.5],[264.5,-6.5]],"c":true}],"h":1},{"t":13,"s":[{"i":[[38.169,-5.122],[16.284,-5.872],[15.843,-5.095],[18.264,-3.042],[22.964,1.306],[32.463,8.838],[39.803,-5.307],[1.756,-1.172],[-5.805,0.325],[-3.419,0.641],[-3.35,0.216],[-29.587,-8.774],[-34.242,-1.443],[-25.226,6.594],[-24.544,8.123],[-17.509,1.793],[-35.013,-5.973],[-1.492,3.483],[0.787,0.179]],"o":[[-18.023,2.419],[-16.284,5.872],[-15.981,5.139],[-18.264,3.042],[-34.346,-1.953],[-32.463,-8.838],[-4.78,0.638],[-1.756,1.172],[3.973,-0.222],[3.419,-0.641],[39.409,-2.537],[29.587,8.774],[35.551,1.498],[25.226,-6.594],[15.931,-5.272],[42.41,-4.344],[-0.267,-0.046],[0.444,-1.036],[-36.591,-8.333]],"v":[[149.5,-21.5],[98.365,-8.007],[50.5,9.5],[-0.263,22.334],[-61.5,25.5],[-159.406,4.055],[-265.5,-6.5],[-276.439,-3.278],[-271.5,-1.5],[-260.532,-3.005],[-250.5,-4.5],[-150.625,9.515],[-58.5,29.5],[30.255,20.216],[102.5,-3.5],[152.5,-18.5],[263.5,-3.5],[278.5,-2.5],[267.5,-6.5]],"c":true}],"h":1},{"t":14,"s":[{"i":[[28.234,-1.663],[1.931,0.081],[1.651,-0.229],[8.259,-2.792],[7.701,-2.687],[25.652,-6.569],[34.651,2.562],[17.139,4.457],[17.729,4.786],[19.05,1.881],[16.859,-4.285],[-3.759,0.187],[-38.184,-9.96],[-38.098,0.753],[-40.427,13.572],[-15.043,1.745],[-27.139,-5.656],[-3.091,3.091],[0.278,0.065]],"o":[[-1.626,0.096],[-1.931,-0.081],[-8.263,1.146],[-8.259,2.792],[-23.743,8.285],[-25.652,6.569],[-18.715,-1.384],[-17.139,-4.457],[-13.939,-3.763],[-19.05,-1.881],[-14.375,5.5],[51.844,-2.583],[30.39,7.927],[54.004,-1.068],[13.879,-4.659],[33.273,-3.86],[5.429,1.132],[2.118,-2.118],[-30.592,-7.122]],"v":[[160.5,-21.5],[155.018,-21.6],[149.5,-21.5],[124.578,-15.156],[100.5,-6.5],[28.181,17.635],[-60.5,25.5],[-113.739,16.052],[-165.5,1.5],[-216.81,-8.036],[-272.5,-5.5],[-249.5,-4.5],[-125.5,16.5],[-26.5,29.5],[107.5,-4.5],[151.5,-17.5],[247.5,-6.5],[278.5,-1.5],[266.5,-6.5]],"c":true}],"h":1},{"t":15,"s":[{"i":[[34.097,-3.218],[9.254,-2.7],[9.263,-3.188],[25.918,-6.322],[34.303,3.556],[16.92,4.586],[17.912,4.749],[19.296,1.328],[16.766,-4.036],[-2.726,-0.185],[-2.5,0.281],[-17.234,-1.674],[-13.2,-3.422],[-16.994,-4.353],[-18.916,-1.892],[-46.485,16.392],[-17.087,2.767],[-32.606,-6.046],[13.181,3.373]],"o":[[-10.721,1.012],[-9.254,2.7],[-24.024,8.267],[-25.918,6.322],[-18.408,-1.908],[-16.92,-4.586],[-14.052,-3.726],[-19.296,-1.328],[-6.404,1.542],[2.726,0.185],[18.864,-2.12],[17.234,1.674],[18.109,4.695],[16.994,4.353],[68.928,6.893],[15.658,-5.521],[38.045,-6.161],[7.167,1.329],[-33.522,-8.578]],"v":[[158.5,-20.5],[128.906,-14.632],[101.5,-5.5],[28.209,18.367],[-60.5,24.5],[-112.872,14.131],[-164.5,-0.5],[-216.465,-8.821],[-272.5,-5.5],[-275.678,-3.133],[-265.5,-3.5],[-210.752,-3.657],[-164.5,4.5],[-112.605,18.603],[-59.5,28.5],[102.5,-0.5],[151.5,-16.5],[263.5,-3.5],[272.5,-5.5]],"c":true}],"h":1},{"t":16,"s":[{"i":[[34.377,-3.244],[8.913,-2.918],[9.396,-3.296],[26.55,-5.985],[34.062,4.266],[16.805,4.86],[18.044,4.339],[19.441,1.227],[16.43,-4.229],[-3.281,-0.085],[-1.315,0.151],[-23.076,-4.38],[-21.721,-5.922],[-16.547,-2.337],[-19.971,0.395],[-27.785,9.461],[-31.986,2.145],[-25.255,-5.214],[17.823,4.714]],"o":[[-10.953,1.034],[-8.913,2.918],[-23.738,8.327],[-26.55,5.985],[-17.734,-2.221],[-16.805,-4.86],[-13.806,-3.32],[-19.441,-1.227],[-5.438,1.813],[3.281,0.085],[29.976,-3.444],[23.076,4.38],[14.841,4.047],[16.547,2.337],[36.751,-0.727],[27.739,-9.445],[30.601,-2.052],[6.737,1.391],[-32.925,-8.709]],"v":[[158.5,-19.5],[129.332,-13.197],[102.5,-3.5],[28.243,19.945],[-61.5,24.5],[-112.767,13.088],[-164.5,-1.5],[-216.532,-9.162],[-272.5,-5.5],[-273.064,-3.027],[-263.5,-3.5],[-185.309,-0.524],[-119.5,16.5],[-72.847,26.331],[-18.5,29.5],[75.5,10.5],[162.5,-16.5],[250.5,-5.5],[272.5,-5.5]],"c":true}],"h":1},{"t":17,"s":[{"i":[[28.328,-0.538],[11.392,-3.207],[10.971,-3.896],[26.41,-5.524],[34.407,4.602],[35.058,8.928],[38.45,-11.038],[-7.611,0.712],[-0.744,0.079],[-30.605,-8.54],[-32.457,-4.064],[-26.941,6.244],[-23.948,8.444],[-8.482,2.849],[-8.772,0.675],[-15.852,-2.37],[-14.775,-2.971],[-5.451,-0.278],[7.984,2.35]],"o":[[-14.46,0.274],[-11.392,3.207],[-23.954,8.505],[-26.41,5.524],[-32.32,-4.323],[-35.058,-8.928],[-10.19,2.925],[7.611,-0.712],[40.125,-4.224],[30.605,8.54],[35.287,4.419],[26.941,-6.244],[8.302,-2.928],[8.482,-2.849],[18.818,-1.45],[15.852,2.37],[1.182,0.237],[5.451,0.278],[-29.953,-8.819]],"v":[[173.5,-19.5],[135.384,-13.716],[102.5,-2.5],[28.339,20.331],[-61.5,23.5],[-162.403,-2.521],[-272.5,-5.5],[-270.2,-3.247],[-251.5,-5.5],[-148.249,5.283],[-56.5,28.5],[35.504,23.648],[110.5,-0.5],[135.648,-9.689],[161.5,-15.5],[213.032,-13.316],[258.5,-4.5],[272.875,-3.059],[273.5,-5.5]],"c":true}],"h":1},{"t":18,"s":[{"i":[[27.241,-2.014],[14.551,-5.004],[15.112,-4.824],[15.99,-3.329],[17.366,0],[16.316,2.462],[14.813,4.152],[21.008,4.431],[26.346,-2.225],[8.465,-1.354],[-1.526,-1.527],[-7.742,1.046],[-2.641,0.207],[-32.395,-9.639],[-43.935,0],[-26.717,8.811],[-29.338,6.755],[-31.017,-6.015],[16.781,5.022]],"o":[[-15.683,1.16],[-14.551,5.004],[-14.674,4.684],[-15.99,3.329],[-19.924,0],[-16.316,-2.462],[-19.623,-5.5],[-21.008,-4.431],[-0.666,0.056],[-8.465,1.354],[1.392,1.392],[7.742,-1.046],[45.485,-3.557],[32.395,9.639],[38.792,0],[26.717,-8.811],[35.98,-8.285],[4.651,0.902],[-28.746,-8.602]],"v":[[169.5,-18.5],[124.571,-8.248],[80.5,7.5],[34.519,20.013],[-15.5,25.5],[-69.334,21.614],[-115.5,11.5],[-175.457,-4.793],[-245.5,-9.5],[-263.644,-7.103],[-278.5,-2.5],[-261.936,-2.801],[-243.5,-5.5],[-132.837,9.332],[-24.5,29.5],[70.09,13.567],[150.5,-12.5],[254.5,-5.5],[272.5,-5.5]],"c":true}],"h":1},{"t":19,"s":[{"i":[[27.309,-2.242],[8.874,-2.517],[8.921,-3.146],[27.318,-5.884],[35.944,5.276],[17.397,4.955],[18.348,4.526],[20.5,1.083],[15.696,-4.859],[-9.189,0.605],[-4.419,0.421],[-6.594,-0.075],[-5.022,-0.424],[-31.637,-8.789],[-43.773,3.423],[-20.508,6.415],[-22.008,7.388],[-38.583,-7.19],[13.932,5.273]],"o":[[-9.584,0.787],[-8.874,2.517],[-24.785,8.74],[-27.318,5.884],[-18.066,-2.652],[-17.397,-4.955],[-14.305,-3.529],[-20.5,-1.083],[-9.177,2.841],[9.189,-0.605],[7.603,-0.723],[6.594,0.075],[38.679,3.267],[31.637,8.789],[24.961,-1.952],[20.508,-6.415],[35.977,-12.078],[3.287,0.613],[-27.731,-10.497]],"v":[[168.5,-17.5],[141.003,-12.269],[114.5,-3.5],[37.87,20.512],[-55.5,23.5],[-108.288,11.405],[-161.5,-3.5],[-216.456,-11.291],[-273.5,-6.5],[-267.697,-4.054],[-241.5,-6.5],[-220.065,-7.361],[-202.5,-6.5],[-101.82,16.017],[6.5,28.5],[73.215,15.077],[135.5,-6.5],[260.5,-4.5],[273.5,-5.5]],"c":true}],"h":1},{"t":20,"s":[{"i":[[22.354,-0.228],[10.961,-3.016],[10.773,-3.779],[21.529,-4.99],[27.98,0.293],[15.078,2.976],[13.697,3.907],[14.184,4.032],[17.224,1.155],[12.017,-0.866],[9.73,-2.353],[-2.519,-0.391],[-4.079,0.535],[-30.151,-7.5],[-38.137,-5.818],[-33.677,10.037],[-36.964,2.478],[-21.982,-4.066],[25.505,7.029]],"o":[[-15.383,0.157],[-10.961,3.016],[-20.903,7.332],[-21.529,4.99],[-17.991,-0.188],[-15.078,-2.976],[-13.039,-3.719],[-14.184,-4.032],[-12.204,-0.818],[-12.017,0.866],[-8.156,1.973],[2.519,0.391],[36.278,-4.759],[37.428,9.31],[45.156,6.888],[34.345,-10.237],[25.224,-1.691],[9.373,1.734],[-24.833,-6.843]],"v":[[184.5,-17.5],[146.043,-12.217],[114.5,-1.5],[52.308,17.719],[-20.5,25.5],[-69.72,20.289],[-112.5,9.5],[-152.862,-2.923],[-199.5,-11.5],[-236.355,-11.378],[-269.5,-6.5],[-275.676,-3.119],[-263.5,-3.5],[-158.5,-0.5],[-50.5,26.5],[68.5,17.5],[172.5,-13.5],[241.5,-8.5],[268.5,-6.5]],"c":true}],"h":1},{"t":21,"s":[{"i":[[25.319,-1.98],[4.595,-0.388],[4.337,-1.113],[15.882,-5.926],[17.543,-4.21],[19.691,-0.533],[21.711,4.097],[16.632,4.835],[18.29,4.417],[20.039,0.248],[14.442,-4.471],[-3.878,-0.305],[-2.305,0.33],[-29.983,-7.869],[-38.874,-5.2],[-33.307,10.594],[-41.92,0.93],[-21.438,-4.066],[14.01,5.314]],"o":[[-4.282,0.335],[-4.595,0.388],[-15.931,4.088],[-15.882,5.926],[-16.526,3.965],[-19.691,0.533],[-17.183,-3.243],[-16.632,-4.835],[-14.401,-3.478],[-20.039,-0.248],[-6.817,2.11],[3.878,0.305],[36.518,-5.233],[38.007,9.975],[49.167,6.577],[35.445,-11.274],[23.159,-0.514],[5.431,1.03],[-25.098,-9.52]],"v":[[178.5,-16.5],[165.041,-15.583],[151.5,-13.5],[104.209,2.409],[54.5,18.5],[-0.111,25.547],[-62.5,20.5],[-112.67,7.88],[-164.5,-6.5],[-218.969,-12.462],[-273.5,-6.5],[-274.841,-3.17],[-262.5,-3.5],[-154.5,-0.5],[-43.5,27.5],[78.5,15.5],[188.5,-13.5],[255.5,-5.5],[273.5,-5.5]],"c":true}],"h":1},{"t":22,"s":[{"i":[[26.295,-2.159],[4.294,-0.408],[4.152,-1.066],[13.43,-5.095],[14.113,-3.986],[16.677,-1.686],[18.683,1.869],[39.303,9.873],[45.072,-12.563],[-8.499,0.612],[-3.456,0.464],[-42.266,-12.436],[-59.144,9.525],[-18.073,5.979],[-19.31,5.799],[-16.984,-0.191],[-14.784,-2.522],[-8.694,-1.192],[7.717,2.927]],"o":[[-3.672,0.302],[-4.294,0.408],[-14.166,3.636],[-13.43,5.094],[-14.607,4.126],[-16.677,1.686],[-40.718,-4.072],[-39.303,-9.873],[-10.453,2.913],[8.499,-0.612],[53.793,-7.219],[42.266,12.436],[20.396,-3.285],[18.073,-5.979],[14.279,-4.288],[16.984,0.191],[0.942,0.16],[8.694,1.192],[-25.386,-9.629]],"v":[[177.5,-15.5],[165.36,-14.573],[152.5,-12.5],[111.46,1.237],[70.5,15.5],[23.557,24.496],[-29.5,24.5],[-147.734,-3.476],[-272.5,-6.5],[-269.432,-3.967],[-245.5,-6.5],[-108.513,11.729],[36.5,26.5],[93.314,11.886],[148.5,-6.5],[196.621,-12.107],[245.5,-7.5],[265.995,-4.184],[273.5,-5.5]],"c":true}],"h":1},{"t":23,"s":[{"i":[[18.525,-0.73],[9.575,-2.054],[9.491,-3.341],[28.17,-5.475],[37.488,6.343],[18.217,4.96],[20.265,4.967],[21.565,0.316],[15.757,-4.938],[-3.743,-0.039],[-1.855,0.296],[-18.91,-0.014],[-14.827,-3.735],[-17.721,-5.288],[-18.453,-3.148],[-33.119,9.355],[-38.262,2.741],[-21.693,-3.88],[11.759,5.092]],"o":[[-11.21,0.441],[-9.575,2.054],[-26.832,9.445],[-28.17,5.475],[-18.868,-3.192],[-18.217,-4.96],[-14.983,-3.672],[-21.565,-0.316],[-6.826,2.139],[3.743,0.039],[17.532,-2.792],[18.91,0.014],[18.666,4.702],[17.72,5.288],[45.366,7.738],[35.964,-10.159],[25.889,-1.855],[5.175,0.926],[-20.908,-9.055]],"v":[[191.5,-15.5],[160.711,-11.675],[132.5,-3.5],[51.992,20.841],[-44.5,21.5],[-99.453,8.831],[-156.5,-6.5],[-214.419,-12.958],[-273.5,-6.5],[-275.01,-3.674],[-263.5,-4.5],[-207.47,-8.895],[-155.5,-3.5],[-101.34,12.165],[-47.5,25.5],[75.5,19.5],[181.5,-11.5],[253.5,-5.5],[274.5,-5.5]],"c":true}],"h":1},{"t":24,"s":[{"i":[[21.866,-1.71],[15.051,-4.972],[15.313,-4.747],[17.243,-2.49],[19.62,0.735],[15.916,3.73],[14.969,4.352],[15.995,3.89],[18.978,0.067],[11.814,-1.394],[8.799,-2.459],[-5.754,0.971],[-3.893,0.524],[-29.336,-7.951],[-53.623,0],[-43.468,15.488],[-28.059,-0.82],[-15.004,-2.789],[12.54,5.43]],"o":[[-17.483,1.367],[-15.051,4.972],[-15.409,4.776],[-17.243,2.489],[-19.368,-0.726],[-15.916,-3.731],[-15.04,-4.373],[-15.995,-3.89],[-9.945,-0.035],[-11.814,1.394],[-17.526,4.897],[5.998,-1.012],[40.956,-5.514],[44.634,12.097],[55.39,0],[16.956,-6.042],[14.385,0.42],[1.858,0.345],[-22.19,-9.61]],"v":[[187.5,-14.5],[139.372,-4.035],[94.5,11.5],[45.658,22.633],[-9.5,25.5],[-61.8,18.22],[-107.5,5.5],[-153.547,-7.73],[-205.5,-14.5],[-239.359,-12.37],[-271.5,-6.5],[-260.5,-4.5],[-243.5,-7.5],[-135.5,1.5],[0.5,29.5],[135.5,1.5],[204.5,-11.5],[258.5,-4.5],[274.5,-5.5]],"c":true}],"h":1},{"t":25,"s":[{"i":[[87.821,-6.867],[7.87,-1],[7.175,-1.502],[-0.355,-0.933],[-7.87,1.259],[-7.33,1.298],[-8.238,0.456],[-20.018,-4.459],[-18.844,-5.553],[-15.75,-3.331],[-18.07,-0.276],[-16.196,2.646],[-14.816,4.712],[-33.722,2.095],[-19.468,-3.321],[11.659,5.049],[7.904,0.987],[43.057,-13.695],[38.34,0.585]],"o":[[-6.346,0.497],[-7.87,1],[-7.292,1.527],[0.355,0.933],[8.442,-1.351],[7.33,-1.298],[25.084,-1.389],[20.018,4.459],[14.929,4.399],[15.75,3.331],[19.399,0.296],[16.196,-2.646],[28.463,-9.053],[21.479,-1.334],[5.697,0.972],[-9.243,-4.003],[-59.87,-7.473],[-29.006,9.226],[-86.088,-1.315]],"v":[[-221.5,-13.5],[-243.378,-11.255],[-266.5,-7.5],[-276.872,-3.411],[-264.5,-3.5],[-241.347,-7.671],[-218.5,-10.5],[-151.819,-4.706],[-94.5,11.5],[-48.856,23.592],[1.5,29.5],[54.438,25.756],[100.5,14.5],[190.5,-10.5],[256.5,-5.5],[274.5,-5.5],[237.5,-12.5],[99.5,10.5],[0.5,25.5]],"c":true}],"h":1},{"t":26,"s":[{"i":[[77.795,-5.394],[10.911,-1.276],[8.249,-2.335],[2.085,-0.879],[-0.447,-1.021],[-3.365,0.39],[-1.199,0.216],[-19.367,0.721],[-16.572,-4.122],[-18.527,-5.323],[-20.141,-3.547],[-21.951,1.255],[-17.914,5.08],[-45.22,-0.098],[-13.126,-1.655],[19.063,6.072],[22.661,0],[32.18,-10.517],[44.859,1.891]],"o":[[-8.107,0.562],[-10.911,1.276],[1.893,-0.536],[-2.085,0.879],[0.339,0.775],[3.365,-0.39],[17.959,-3.236],[19.367,-0.721],[20.751,5.162],[18.527,5.323],[23.281,4.1],[21.951,-1.255],[37.912,-10.751],[9.347,0.02],[8.377,1.056],[-19.39,-6.176],[-40.46,0],[-31.341,10.243],[-76.78,-3.236]],"v":[[-212.5,-14.5],[-242.394,-11.829],[-272.5,-6.5],[-274.415,-5.668],[-278.5,-2.5],[-271.645,-2.257],[-263.5,-3.5],[-206.459,-10.019],[-151.5,-5.5],[-93.542,10.711],[-36.5,24.5],[32.025,28.385],[92.5,18.5],[208.5,-10.5],[243.5,-7.5],[271.5,-6.5],[207.5,-14.5],[106.5,9.5],[-2.5,25.5]],"c":true}],"h":1},{"t":27,"s":[{"i":[[86.694,-7.117],[10.11,-1.497],[7.188,-2.408],[1.982,-0.544],[-0.56,-1.282],[-4.205,0.758],[-1.602,0.291],[-10.711,1.537],[-9.96,0],[-18.515,-5.198],[-18.085,-5.209],[-20.248,-2.977],[-25.377,1.985],[-37.241,11.63],[-35.506,-5.798],[9.43,5.441],[4.478,0.548],[41.752,-12.751],[39.103,1.088]],"o":[[-7.373,0.605],[-10.11,1.497],[1.369,-0.458],[-1.982,0.544],[0.577,1.323],[4.205,-0.758],[10.194,-1.852],[10.711,-1.537],[21.853,0],[18.515,5.198],[17.632,5.078],[20.248,2.977],[40.982,-3.205],[29.514,-9.217],[1.617,0.264],[-7.327,-4.228],[-56.839,-6.95],[-29.494,9.008],[-84.051,-2.339]],"v":[[-217.5,-14.5],[-245.138,-11.352],[-272.5,-5.5],[-274.893,-5.306],[-278.5,-2.5],[-269.769,-2.289],[-259.5,-4.5],[-227.825,-9.889],[-196.5,-12.5],[-136.674,-3.406],[-82.5,13.5],[-26.309,26.297],[41.5,28.5],[152.5,-0.5],[261.5,-4.5],[275.5,-5.5],[240.5,-11.5],[106.5,11.5],[6.5,25.5]],"c":true}],"h":1},{"t":28,"s":[{"i":[[38.206,-2.825],[11.372,-1.425],[8.929,-2.665],[4.509,-1.519],[-0.576,-1.345],[-2.53,0.18],[-0.534,0.085],[-19.42,2.024],[-18.35,-3.815],[-27.759,-8.262],[-36.331,0],[-27.149,8.588],[-33.07,1.831],[-16.935,-2.651],[11.791,4.968],[10.852,0.601],[40.587,-11.983],[43.644,5.117],[31.271,8.954]],"o":[[-8.585,0.635],[-11.371,1.425],[11.459,-3.421],[-4.509,1.519],[0.345,0.804],[2.531,-0.18],[16.969,-2.718],[19.42,-2.024],[28.635,5.954],[27.759,8.262],[36.27,0],[26.955,-8.526],[18.884,-1.046],[8.151,1.276],[-11.695,-4.927],[-56.251,-3.115],[-30.11,8.89],[-35.254,-4.134],[-33.405,-9.565]],"v":[[-209.5,-15.5],[-240.742,-12.523],[-272.5,-6.5],[-267.338,-8.075],[-278.5,-2.5],[-273.142,-1.833],[-267.5,-2.5],[-212.035,-10.9],[-154.5,-9.5],[-72.272,14.465],[21.5,29.5],[114.5,14.5],[199.5,-8.5],[258.5,-4.5],[273.5,-5.5],[230.5,-12.5],[101.5,14.5],[-7.5,24.5],[-105.5,1.5]],"c":true}],"h":1},{"t":29,"s":[{"i":[[0.167,-0.011],[6.481,-0.742],[8.965,-1.575],[6.387,-0.918],[3.632,-1.656],[-4.866,0.467],[0.313,-0.061],[-21.818,0.662],[-19.178,-5.652],[-20.69,-5.744],[-25.511,-3.325],[-41.819,14.039],[-41.432,-3.91],[-1.387,1.387],[0.503,0.101],[20.372,0.293],[11.547,-3.754],[41.588,-1.557],[90.085,0.001]],"o":[[-7.113,0.458],[-6.481,0.742],[-3.819,0.671],[-6.387,0.918],[-6.151,2.805],[4.866,-0.466],[20.548,-4.005],[21.818,-0.662],[22.731,6.698],[20.69,5.744],[52.869,6.891],[28.902,-9.703],[4.854,0.458],[2.905,-2.905],[-16.737,-3.374],[-24.21,-0.348],[-40.977,13.32],[-106.273,3.98],[-0.888,0]],"v":[[-200.5,-16.5],[-220.111,-14.837],[-242.5,-11.5],[-259.14,-9.239],[-275.5,-5.5],[-273.379,-2.942],[-262.5,-4.5],[-197.972,-12.242],[-135.5,-5.5],[-72.085,13.53],[-4.5,27.5],[136.5,8.5],[240.5,-6.5],[277.5,-2.5],[265.5,-7.5],[217.5,-12.5],[156.5,-2.5],[42.5,25.5],[-198.5,-17.5]],"c":true}],"h":1},{"t":30,"s":[{"i":[[48.549,-3.986],[11.536,-1.684],[9.572,-2.5],[-2.021,-0.463],[-3.555,0.585],[-6.949,1.333],[-3.805,0.617],[-23.947,-4.539],[-22.257,-6.697],[-15.673,-3.726],[-18.003,-0.791],[-16.627,2.372],[-15.023,4.369],[-54.005,-5.708],[-3.004,3.004],[0.651,0.069],[39.768,-11.696],[40.427,2.299],[28.502,8.399]],"o":[[-9.281,0.762],[-11.537,1.684],[-6.639,1.734],[2.021,0.463],[6.399,-1.052],[6.949,-1.333],[29.956,-4.851],[23.947,4.539],[14.305,4.304],[15.673,3.726],[19.471,0.856],[16.626,-2.372],[41.111,-11.954],[7.015,0.741],[3.22,-3.22],[-55.311,-5.846],[-29.351,8.633],[-36.011,-2.048],[-38.705,-11.405]],"v":[[-206.5,-16.5],[-238.782,-12.803],[-271.5,-6.5],[-276.645,-3.261],[-266.5,-3.5],[-245.555,-7.327],[-228.5,-10.5],[-148.726,-9.161],[-80.5,9.5],[-35.774,22.134],[14.5,29.5],[68.335,26.918],[115.5,16.5],[243.5,-6.5],[277.5,-2.5],[244.5,-10.5],[114.5,12.5],[12.5,25.5],[-81.5,5.5]],"c":true}],"h":1},{"t":31,"s":[{"i":[[43.644,-3.026],[10.858,-1.589],[9.983,-1.979],[4.31,-1.639],[-8.871,1.077],[-20.678,2.644],[-21.274,-5.006],[-19.014,-5.624],[-19.851,-4.541],[-22.635,0.188],[-18.99,4.616],[-19.209,6.034],[-23.156,0],[-11.737,-1.332],[-2.117,2.117],[1.894,0.353],[26.723,-9.163],[42.876,0],[35.53,10.41]],"o":[[-9.584,0.665],[-10.858,1.589],[-2.631,0.521],[-4.31,1.639],[20.013,-2.428],[20.678,-2.645],[21.091,4.963],[19.014,5.624],[23.471,5.369],[22.635,-0.188],[20.01,-4.864],[19.209,-6.034],[7.547,0],[6.106,0.693],[2.447,-2.447],[-36.475,-6.798],[-38.353,13.151],[-48.742,0],[-36.595,-10.722]],"v":[[-197.5,-17.5],[-228.7,-13.986],[-260.5,-8.5],[-274.627,-4.302],[-271.5,-2.5],[-210.445,-12.076],[-147.5,-10.5],[-88.07,5.817],[-30.5,21.5],[39.36,28.988],[102.5,21.5],[160.141,3.352],[222.5,-7.5],[250.5,-5.5],[277.5,-2.5],[265.5,-7.5],[156.5,-0.5],[41.5,25.5],[-79.5,5.5]],"c":true}],"h":1},{"t":32,"s":[{"i":[[44.286,-0.721],[14.429,-2.215],[12.243,-2.928],[-0.921,-0.789],[-5.143,0.789],[-14.275,2.729],[-15.047,-0.043],[-18.262,-5.447],[-18.26,-5.147],[-15.36,-3.359],[-17.524,-0.606],[-16.048,2.315],[-14.276,4.417],[-50.988,-4.689],[-3.113,3.113],[2.738,0.438],[41.374,-12.801],[37.992,1.423],[27.462,7.894]],"o":[[-13.041,0.212],[-14.429,2.215],[-6.827,1.633],[0.921,0.789],[13.854,-2.127],[14.275,-2.729],[22.691,0.065],[18.262,5.447],[14.035,3.957],[15.36,3.359],[19.532,0.675],[16.048,-2.315],[37.578,-11.627],[5.779,0.531],[2.743,-2.743],[-57.638,-9.23],[-28.974,8.965],[-35.757,-1.339],[-37.45,-10.765]],"v":[[-185.5,-18.5],[-227.599,-14.537],[-268.5,-6.5],[-276.477,-2.683],[-266.5,-2.5],[-224.395,-10.628],[-180.5,-15.5],[-120.176,-5.812],[-66.5,11.5],[-22.616,23.013],[26.5,29.5],[79.442,26.819],[124.5,16.5],[246.5,-5.5],[277.5,-2.5],[264.5,-7.5],[123.5,12.5],[25.5,25.5],[-66.5,7.5]],"c":true}],"h":1},{"t":33,"s":[{"i":[[49.68,-4.079],[13.018,-2.082],[11.048,-2.777],[-1.688,-0.763],[-5.389,0.849],[-16.354,2.968],[-20.815,-1.515],[-7.818,-2.287],[-7.672,-2.265],[-23.456,-6.284],[-27.219,-1.088],[-17.135,2.51],[-15.574,4.756],[-36.808,-0.147],[-9.449,-0.888],[21.426,4.433],[41.847,-13.189],[37.502,1.044],[29.118,8.597]],"o":[[-10.881,0.893],[-13.018,2.082],[-7.144,1.796],[1.689,0.763],[16.769,-2.643],[16.354,-2.968],[8.055,0.587],[7.818,2.287],[22.956,6.777],[23.456,6.284],[19.884,0.795],[17.135,-2.51],[31.021,-9.474],[5.209,0.021],[13.857,1.302],[-52.645,-10.893],[-31.54,9.94],[-36.755,-1.023],[-39.731,-11.73]],"v":[[-195.5,-18.5],[-232.374,-13.913],[-269.5,-6.5],[-276.4,-2.516],[-264.5,-2.5],[-216.034,-12.119],[-161.5,-15.5],[-137.713,-10.759],[-114.5,-3.5],[-45.697,17.267],[29.5,29.5],[84.733,26.664],[133.5,15.5],[229.5,-6.5],[253.5,-4.5],[267.5,-6.5],[133.5,10.5],[32.5,25.5],[-63.5,6.5]],"c":true}],"h":1},{"t":34,"s":[{"i":[[33.385,-2.315],[7.764,-1.108],[9.697,-1.998],[7.421,-1.309],[4.524,-1.778],[-7.769,1.101],[-2.173,0.444],[-16.318,2.128],[-16.683,-2.59],[-8.391,-2.556],[-8.083,-2.478],[-25.799,-5.93],[-32.446,0.495],[-28.545,9.108],[-38.242,-2.976],[16.949,5.004],[27.044,-8.696],[38.781,-1.341],[49.504,14.394]],"o":[[-8.246,0.572],[-7.764,1.108],[-4.793,0.987],[-7.421,1.309],[-7.25,2.85],[7.769,-1.101],[15.046,-3.077],[16.318,-2.128],[8.355,1.296],[8.391,2.556],[25.358,7.774],[25.799,5.931],[35.578,-0.544],[28.545,-9.108],[8.069,0.628],[-33.99,-10.035],[-34.543,11.107],[-65.937,2.28],[-27.365,-7.957]],"v":[[-186.5,-19.5],[-209.911,-17.07],[-235.5,-12.5],[-255.201,-9.093],[-274.5,-4.5],[-268.568,-3.029],[-248.5,-6.5],[-201.228,-15.25],[-151.5,-15.5],[-126.296,-9.386],[-101.5,-1.5],[-26.316,20.202],[59.5,29.5],[151.503,9.861],[247.5,-4.5],[272.5,-5.5],[166.5,0.5],[63.5,25.5],[-98.5,-4.5]],"c":true}],"h":1},{"t":35,"s":[{"i":[[6.569,-0.539],[13.644,-2.5],[11.683,-3.037],[-2.476,-0.2],[-5.406,0.96],[-19.798,3.066],[-18.993,-3.424],[-16.472,-5.06],[-16.809,-4.822],[-17.931,-3.083],[-21.228,0.223],[-28.394,8.986],[-37.767,-2.317],[11.472,4.346],[14.375,0],[30.111,-9.334],[38.288,1.964],[45.204,13.119],[15.601,1.453]],"o":[[-11.741,0.964],[-13.644,2.5],[-8.31,2.16],[2.476,0.2],[17.814,-3.162],[19.798,-3.066],[16.301,2.938],[16.472,5.06],[17.047,4.89],[17.931,3.083],[35.657,-0.373],[28.394,-8.986],[4.315,0.265],[-12.26,-4.644],[-36.914,0],[-30.485,9.45],[-55.387,-2.841],[-15.213,-4.415],[-11.461,-1.068]],"v":[[-191.5,-19.5],[-230.544,-14.055],[-269.5,-5.5],[-276.287,-2.16],[-262.5,-3.5],[-205.385,-14.439],[-146.5,-15.5],[-97.381,-2.913],[-47.5,12.5],[4.364,24.835],[62.5,29.5],[154.417,10.482],[249.5,-4.5],[274.5,-5.5],[233.5,-9.5],[138.5,12.5],[34.5,25.5],[-107.5,-8.5],[-154.5,-20.5]],"c":true}],"h":1},{"t":36,"s":[{"i":[[49.642,-3.882],[12.42,-2.163],[11.95,-2.461],[5.21,-1.887],[-9.281,1.049],[-19.602,4.008],[-21.357,-2.205],[-8.592,-2.427],[-8.231,-2.425],[-25.657,-6.664],[-31.454,0],[-17.435,3.751],[-17.124,5.997],[-16.984,2.37],[-17.947,-1.721],[14.079,3.872],[23.895,-8.309],[41.155,0],[32.397,9.42]],"o":[[-11.37,0.889],[-12.42,2.163],[-2.439,0.502],[-5.211,1.887],[19.236,-2.174],[19.602,-4.008],[8.401,0.867],[8.592,2.427],[24.917,7.343],[25.657,6.664],[21.136,0],[17.435,-3.751],[12.115,-4.242],[16.984,-2.37],[4.128,0.396],[-33.541,-9.224],[-34.105,11.86],[-42.185,0],[-40.498,-11.776]],"v":[[-184.5,-20.5],[-220.566,-15.679],[-257.5,-8.5],[-273.29,-3.836],[-271.5,-1.5],[-213.591,-12.784],[-152.5,-17.5],[-126.872,-12.168],[-101.5,-4.5],[-26.903,18.007],[57.5,29.5],[114.509,23.497],[165.5,8.5],[210.126,-1.973],[263.5,-3.5],[272.5,-5.5],[165.5,3.5],[57.5,25.5],[-53.5,6.5]],"c":true}],"h":1},{"t":37,"s":[{"i":[[39.553,-2.742],[15.722,-2.944],[13.707,-3.226],[2.587,-1.295],[-7.795,0.754],[-21.392,4.742],[-21.194,-3.73],[-32.503,-10.262],[-43.164,0],[-17.326,3.552],[-16.924,5.793],[-16.454,2.267],[-17.642,-1.362],[-2.499,0.732],[7.219,1.396],[20.783,-4.774],[20.117,-5.883],[39.2,4.063],[30.596,9.344]],"o":[[-14.406,0.999],[-15.722,2.944],[-2.445,0.575],[-2.588,1.295],[18.238,-1.764],[21.392,-4.742],[33.823,5.953],[32.503,10.262],[20.772,0],[17.326,-3.552],[12.543,-4.293],[16.454,-2.267],[4.224,0.326],[2.499,-0.732],[-25.752,-4.98],[-20.783,4.774],[-32.808,9.594],[-33.73,-3.496],[-34.93,-10.668]],"v":[[-175.5,-21.5],[-221.524,-15.171],[-266.5,-5.5],[-276.68,-2.003],[-271.5,-0.5],[-211.216,-13.12],[-146.5,-17.5],[-50.006,10.465],[60.5,29.5],[116.886,23.845],[167.5,9.5],[211.675,-0.742],[263.5,-2.5],[275.582,-3.208],[270.5,-6.5],[201.773,-4.648],[141.5,13.5],[34.5,24.5],[-62.5,2.5]],"c":true}],"h":1},{"t":38,"s":[{"i":[[48.414,-4.146],[12.009,-2.326],[12.817,-2.572],[5.403,-1.41],[-0.527,-1.176],[-2.143,0.581],[2.477,-0.302],[-20.339,4.269],[-22.049,-2.466],[-8.446,-2.435],[-8.118,-2.356],[-58.895,-0.316],[-33.652,12.156],[-34.077,-1.178],[0.062,3.672],[6.472,0.285],[41.342,-11.16],[35.766,4.585],[28.664,8.575]],"o":[[-13.148,1.126],[-12.009,2.326],[-0.913,0.184],[-5.403,1.41],[0.907,2.023],[2.143,-0.581],[19.594,-2.389],[20.339,-4.269],[8.097,0.905],[8.446,2.435],[48.384,14.042],[42.606,0.229],[26.595,-9.607],[4.52,0.156],[-0.05,-2.95],[-51.254,-2.253],[-29.952,8.086],[-35.616,-4.566],[-38.439,-11.5]],"v":[[-181.5,-21.5],[-218.748,-16.084],[-255.5,-8.5],[-267.58,-5.744],[-277.5,-1.5],[-271.462,-0.209],[-270.5,-1.5],[-210.842,-13.642],[-147.5,-18.5],[-122.515,-13.088],[-97.5,-5.5],[59.5,29.5],[167.5,10.5],[249.5,-3.5],[277.5,-3.5],[254.5,-7.5],[137.5,16.5],[33.5,23.5],[-59.5,1.5]],"c":true}],"h":1},{"t":39,"s":[{"i":[[42.465,-3.321],[9.088,-1.585],[8.984,-1.983],[7.983,-1.45],[6.853,-1.83],[3.056,-0.809],[-0.698,-1.506],[-1.822,0.253],[0.207,-0.022],[-42.627,-4.505],[-15.518,-4.298],[-52.018,-6.034],[-29.912,9.497],[-37.841,-0.096],[13.333,3.721],[7.267,0.651],[34.999,-10.609],[37.546,4.449],[29.101,8.838]],"o":[[-8.665,0.678],[-9.088,1.585],[-6.213,1.372],[-7.983,1.449],[6.526,-1.743],[-3.056,0.809],[0.922,1.988],[1.821,-0.253],[38.028,-4.039],[15.632,1.652],[47.68,13.207],[39.248,4.553],[32.485,-10.313],[3.661,0.009],[-6.702,-1.87],[-50.434,-4.518],[-29.699,9.003],[-35.358,-4.19],[-39.017,-11.85]],"v":[[-173.5,-22.5],[-200.26,-18.979],[-227.5,-13.5],[-249.52,-9.344],[-272.5,-4.5],[-270.629,-5.437],[-277.5,-1.5],[-272.653,0.475],[-269.5,-0.5],[-148.5,-19.5],[-101.5,-7.5],[41.5,28.5],[148.5,18.5],[245.5,-3.5],[274.5,-4.5],[261.5,-6.5],[146.5,15.5],[39.5,24.5],[-55.5,1.5]],"c":true}],"h":1},{"t":40,"s":[{"i":[[37.745,-2.43],[14.613,-2.751],[14.726,-3.105],[5.079,-0.923],[1.558,-0.861],[-8.127,1.05],[-0.781,0.172],[-16.336,3.275],[-16.121,-1.301],[-16.857,-5.128],[-16.482,-5.109],[-38.362,-2.182],[-32.912,11.485],[-40.502,-1.505],[0.022,3.849],[-0.323,-0.053],[29.944,-11.248],[41.581,3.791],[30.87,8.924]],"o":[[-13.823,0.89],[-14.613,2.751],[-2.124,0.448],[-5.079,0.923],[-4.288,2.372],[8.127,-1.05],[14.535,-3.201],[16.336,-3.275],[17.09,1.379],[16.857,5.128],[32.955,10.215],[43.48,2.473],[30.895,-10.781],[-1.112,-0.041],[-0.003,-0.51],[-44.471,-7.369],[-31.669,11.896],[-38.201,-3.483],[-39.009,-11.278]],"v":[[-164.5,-23.5],[-207.323,-17.661],[-251.5,-8.5],[-263.924,-6.31],[-275.5,-3.5],[-264.802,-2.592],[-246.5,-5.5],[-199.69,-16.377],[-150.5,-20.5],[-99.544,-9.798],[-49.5,6.5],[56.5,29.5],[167.5,12.5],[264.5,-2.5],[278.5,-3.5],[272.5,-5.5],[159.5,11.5],[49.5,24.5],[-52.5,1.5]],"c":true}],"h":1},{"t":41,"s":[{"i":[[45.608,-3.744],[13.739,-3.05],[13.608,-2.697],[4.563,-0.907],[0.25,-0.074],[-4.095,0.166],[-2.957,0.503],[-19.202,4.227],[-20.255,-1.96],[-15.572,-4.796],[-15.481,-4.247],[-15.623,-4.062],[-17.561,-2.379],[-29.442,9.467],[-38.39,0.136],[18.275,3.555],[29.752,-10.674],[42.938,2.716],[31.506,9.658]],"o":[[-13.435,1.103],[-13.739,3.05],[-1.498,0.297],[-4.563,0.907],[-7.337,2.166],[4.095,-0.166],[17.938,-3.051],[19.202,-4.227],[16.231,1.571],[15.572,4.796],[15.947,4.373],[15.623,4.062],[37.86,5.129],[32.93,-10.589],[3.175,-0.011],[-37.837,-7.361],[-32.227,11.562],[-37.698,-2.385],[-42.134,-12.916]],"v":[[-170.5,-23.5],[-211.37,-16.696],[-252.5,-7.5],[-263.436,-5.333],[-272.5,-3.5],[-274.221,-0.998],[-260.5,-2.5],[-204.737,-15.259],[-145.5,-20.5],[-97.938,-10.007],[-51.5,4.5],[-4.711,17.496],[44.5,27.5],[151.5,19.5],[249.5,-2.5],[272.5,-4.5],[169.5,8.5],[59.5,25.5],[-44.5,2.5]],"c":true}],"h":1},{"t":42,"s":[{"i":[[38.445,-3.006],[17.045,-3.604],[16.415,-3.223],[2.248,-1.278],[-6.886,0.681],[-19.935,5.13],[-21.821,-1.539],[-11.918,-3.19],[-11.792,-3.428],[-38.391,-7.172],[-39.84,11.166],[-14.549,4.766],[-16.834,1.02],[-9.331,-0.317],[-0.525,1.077],[0.805,0.016],[37.866,-9.183],[35.177,5.649],[29.942,8.294]],"o":[[-17.404,1.361],[-17.045,3.604],[-2.894,0.568],[-2.248,1.278],[20.44,-2.021],[19.935,-5.13],[11.535,0.813],[11.918,3.19],[32.599,9.479],[38.39,7.172],[13.971,-3.916],[14.548,-4.766],[3.149,-0.191],[9.331,0.317],[2.129,-4.361],[-49.732,-0.983],[-30.137,7.309],[-33.909,-5.445],[-33.522,-9.285]],"v":[[-163.5,-24.5],[-215.243,-16.396],[-265.5,-5.5],[-275.335,-2.063],[-270.5,-0.5],[-210.536,-13.67],[-148.5,-21.5],[-113.193,-14.961],[-77.5,-4.5],[30.069,24.483],[148.5,22.5],[190.853,8.328],[237.5,-1.5],[259.968,-0.836],[278.5,-1.5],[259.5,-5.5],[143.5,18.5],[37.5,21.5],[-55.5,-1.5]],"c":true}],"h":1},{"t":43,"s":[{"i":[[22.403,-0.586],[10.19,-1.973],[11.985,-2.814],[9.451,-1.938],[7.43,-1.662],[-3.592,-0.115],[-2.036,0.338],[-18.265,4.602],[-19.793,-0.585],[-12.339,-3.052],[-11.977,-3.449],[-38.26,-8.004],[-41.192,11.165],[-15.866,4.499],[-19.095,0.805],[18.905,4.258],[12.116,-0.38],[26.44,-9.535],[77.547,20.725]],"o":[[-11.256,0.294],[-10.19,1.973],[-6.764,1.588],[-9.452,1.938],[-8.404,1.879],[3.592,0.115],[19.145,-3.178],[18.266,-4.602],[11.666,0.345],[12.339,3.052],[31.767,9.149],[38.26,8.004],[15.297,-4.146],[16.253,-4.609],[7.269,-0.306],[-7.222,-1.627],[-31.956,1.002],[-95.192,34.328],[-17.961,-4.8]],"v":[[-154.5,-25.5],[-185.953,-21.89],[-218.5,-14.5],[-244.001,-9.055],[-270.5,-3.5],[-274.33,-0.837],[-262.5,-1.5],[-206.985,-14.823],[-150.5,-22.5],[-114.234,-16.828],[-77.5,-6.5],[28.432,23.735],[148.5,23.5],[193.5,7.5],[246.5,-1.5],[272.5,-4.5],[249.5,-5.5],[169.5,11.5],[-98.5,-15.5]],"c":true}],"h":1},{"t":44,"s":[{"i":[[37.853,-3.241],[15.025,-3.434],[14.585,-3.04],[7.009,-1.516],[-1.608,-1.608],[-7.295,1.637],[-1.865,0.41],[-16.011,3.886],[-18.039,-1.272],[-11.815,-2.958],[-11.711,-3.321],[-37.636,-8.063],[-40.834,10.221],[-9.847,3.832],[-10.428,2.375],[-20.097,0.75],[5.395,0.705],[33.818,-12.153],[57.971,15.774]],"o":[[-14.314,1.226],[-15.025,3.434],[-1.571,0.328],[-7.009,1.516],[1.957,1.957],[7.295,-1.637],[16.918,-3.726],[16.011,-3.886],[12.028,0.848],[11.815,2.958],[31.624,8.967],[37.636,8.063],[9.182,-2.299],[9.847,-3.832],[15.934,-3.629],[15.35,-0.573],[-41.913,-5.479],[-71.28,25.617],[-36.812,-10.017]],"v":[[-160.5,-25.5],[-204.796,-17.86],[-249.5,-7.5],[-265.884,-4.46],[-277.5,0.5],[-260.931,-0.225],[-244.5,-4.5],[-195.841,-17.248],[-145.5,-22.5],[-109.763,-16.355],[-74.5,-6.5],[30.093,23.391],[148.5,24.5],[177.066,14.557],[207.5,4.5],[270.5,-0.5],[269.5,-4.5],[159.5,16.5],[-48.5,-2.5]],"c":true}],"h":1},{"t":45,"s":[{"i":[[26.984,-1.286],[10.589,-2.221],[10.634,-2.639],[9.88,-1.781],[8.634,-2.178],[3.647,-1.156],[-1.231,-1.23],[-7.038,1.608],[-2.81,0.603],[-15.912,3.974],[-16.128,-0.383],[-31.246,-9.454],[-32.013,-6.041],[-30.363,8.51],[-34.93,1.74],[-5.597,0.059],[13.748,1.563],[34.961,-8.971],[61.928,17.835]],"o":[[-10.011,0.477],[-10.589,2.221],[-6.846,1.7],[-9.88,1.781],[7.356,-1.856],[-3.647,1.156],[2.036,2.037],[7.038,-1.608],[16.225,-3.485],[15.912,-3.974],[32.753,0.777],[30.756,9.306],[32.26,6.088],[32.143,-9.009],[2.799,-0.139],[9.662,-0.101],[-53.55,-6.087],[-81.675,20.959],[-24.932,-7.18]],"v":[[-153.5,-26.5],[-184.533,-22.122],[-216.5,-14.5],[-242.66,-9.359],[-271.5,-3.5],[-269.906,-3.815],[-277.5,0.5],[-261.58,-0.02],[-244.5,-4.5],[-196.427,-16.901],[-148.5,-23.5],[-52.5,-0.5],[42.5,24.5],[151.5,24.5],[246.5,-0.5],[263.5,-0.5],[271.5,-4.5],[149.5,20.5],[-76.5,-12.5]],"c":true}],"h":1},{"t":46,"s":[{"i":[[22.096,-1.985],[17.406,-4.278],[18.938,-3.231],[2.827,-1.249],[-7.604,0.559],[-19.563,5.636],[-21.385,-0.185],[-12.39,-2.898],[-11.912,-3.3],[-11.537,-3.385],[-11.373,-3.282],[-26.769,-3.574],[-26.555,7.041],[-34.921,3.662],[-2.357,2.357],[2.351,0.075],[32.412,-7.928],[45.802,13.14],[23.804,6.542]],"o":[[-18.44,1.657],[-17.406,4.278],[-3.294,0.562],[-2.828,1.249],[22.362,-1.643],[19.563,-5.636],[12.528,0.108],[12.39,2.898],[11.48,3.18],[11.537,3.385],[23.367,6.742],[26.769,3.575],[26.475,-7.019],[5.346,-0.561],[2.807,-2.807],[-47.281,-1.5],[-54.952,13.441],[-22.871,-6.561],[-23.473,-6.451]],"v":[[-156.5,-26.5],[-209.627,-16.681],[-263.5,-4.5],[-275.173,-1.159],[-270.5,0.5],[-208.767,-12.871],[-148.5,-23.5],[-111.038,-18.393],[-74.5,-8.5],[-39.92,1.423],[-5.5,11.5],[70.609,28.837],[151.5,25.5],[240.5,0.5],[278.5,-0.5],[263.5,-4.5],[149.5,21.5],[-7.5,6.5],[-77.5,-13.5]],"c":true}],"h":1},{"t":47,"s":[{"i":[[33.692,-0.816],[10.667,-2.366],[12.38,-3.269],[10.262,-2.17],[7.957,-1.737],[-3.319,-0.443],[-3.935,0.564],[-16.817,4.886],[-19.978,1.627],[-12.937,-2.432],[-11.941,-3.275],[-11.793,-3.616],[-11.327,-3.383],[-55.261,13.288],[-23.655,5.909],[-18.454,0.196],[7.207,0.401],[52.773,-1.976],[49.596,14.476]],"o":[[-10.951,0.265],[-10.667,2.367],[-5.996,1.583],[-10.262,2.17],[-8.209,1.792],[3.319,0.443],[19.754,-2.83],[16.817,-4.886],[12.312,-1.002],[12.937,2.432],[11.5,3.154],[11.793,3.616],[45.19,13.494],[18.352,-4.413],[14.639,-3.657],[15.643,-0.166],[-61.485,-3.417],[-65.95,2.47],[-32.375,-9.45]],"v":[[-149.5,-27.5],[-181.428,-23.253],[-215.5,-14.5],[-241.529,-8.616],[-270.5,-2.5],[-275.108,0.767],[-261.5,0.5],[-208.168,-12.403],[-154.5,-23.5],[-116.222,-20.708],[-78.5,-11.5],[-43.37,-1.171],[-8.5,9.5],[150.5,26.5],[209.5,7.5],[269.5,0.5],[266.5,-4.5],[120.5,25.5],[-42.5,-4.5]],"c":true}],"h":1},{"t":48,"s":[{"i":[[22.312,-1.691],[10.404,-2.608],[10.615,-2.825],[10.066,-1.857],[8.954,-1.768],[2.279,-0.518],[-0.575,-1.234],[-3.915,0.204],[-0.903,0.125],[-38.609,1.012],[-23.431,-6.452],[-21.507,-6.398],[-56.861,11.629],[-23.526,6.099],[-19.038,0.53],[18.815,1.852],[34.373,-6.519],[42.575,12.546],[23.575,6.453]],"o":[[-9.769,0.741],[-10.404,2.608],[-6.78,1.805],[-10.066,1.857],[1.539,-0.304],[-2.279,0.518],[0.439,0.943],[3.915,-0.205],[39.971,-5.536],[24.085,-0.631],[22.96,6.322],[46.023,13.691],[18.431,-3.769],[13.201,-3.422],[3.62,-0.101],[-52.31,-5.149],[-59.227,11.233],[-22.364,-6.59],[-22.986,-6.292]],"v":[[-152.5,-27.5],[-182.865,-22.064],[-214.5,-13.5],[-240.869,-7.973],[-270.5,-2.5],[-273.276,-2.153],[-277.5,0.5],[-269.348,1.301],[-260.5,0.5],[-148.5,-24.5],[-73.5,-11.5],[-4.5,8.5],[149.5,27.5],[208.5,8.5],[259.5,0.5],[271.5,-3.5],[147.5,23.5],[-6.5,4.5],[-75.5,-15.5]],"c":true}],"h":1},{"t":49,"s":[{"i":[[21.888,-2.405],[15.16,-4.314],[15.916,-3.049],[6.025,-0.497],[2.804,-1.421],[-8.641,0.702],[-1.661,0.334],[-15.159,4.451],[-15.831,0.671],[-12.778,-2.588],[-11.955,-3.195],[-22.888,-6.809],[-56.469,12.268],[-41.354,2.122],[-1.279,2.622],[2.418,-0.054],[31.479,-6.637],[24.749,4.053],[47.965,12.845]],"o":[[-15.444,1.697],[-15.16,4.314],[-3.094,0.593],[-6.026,0.496],[-4.224,2.14],[8.641,-0.702],[17.533,-3.527],[15.159,-4.451],[12.935,-0.548],[12.777,2.588],[23.904,6.389],[42.07,12.515],[31.737,-6.895],[2.615,-0.134],[1.838,-3.769],[-46.058,1.022],[-28.562,6.022],[-52.043,-8.522],[-23.508,-6.296]],"v":[[-153.5,-27.5],[-199.146,-17.514],[-245.5,-5.5],[-260.717,-4.122],[-275.5,-1.5],[-263.913,-0.144],[-243.5,-2.5],[-195.224,-15.642],[-149.5,-24.5],[-110.765,-20.807],[-73.5,-11.5],[-3.5,7.5],[151.5,27.5],[259.5,0.5],[278.5,-0.5],[262.5,-3.5],[149.5,23.5],[66.5,21.5],[-73.5,-16.5]],"c":true}],"h":1},{"t":50,"s":[{"i":[[25.053,-2.885],[17.564,-5.077],[19.465,-2.587],[4.244,-0.983],[-5.454,-0.87],[-5.719,0.996],[-3.31,0.623],[-15.564,4.682],[-15.844,1.279],[-12.715,-2.259],[-11.655,-2.973],[-21.546,-6.229],[-54.201,10.05],[-37.79,4.893],[0.108,2.945],[2.089,-0.262],[29.208,-5.306],[25.592,4.519],[48.433,12.022]],"o":[[-18.278,2.105],[-17.564,5.077],[-1.478,0.196],[-4.244,0.983],[3.815,0.609],[5.719,-0.996],[15.901,-2.994],[15.564,-4.682],[12.487,-1.008],[12.715,2.259],[22.928,5.847],[46.729,13.509],[32.854,-6.092],[3.925,-0.508],[-0.154,-4.195],[-37.188,4.673],[-28.211,5.125],[-52.157,-9.209],[-24.707,-6.133]],"v":[[-153.5,-27.5],[-206.609,-15.361],[-261.5,-2.5],[-273.199,-0.505],[-274.5,2.5],[-259.121,1.424],[-244.5,-1.5],[-197.457,-14.286],[-150.5,-24.5],[-112.376,-21.985],[-75.5,-13.5],[-8.5,5.5],[149.5,28.5],[242.5,2.5],[278.5,-1.5],[242.5,-1.5],[148.5,24.5],[65.5,20.5],[-74.5,-17.5]],"c":true}],"h":1},{"t":51,"s":[{"i":[[26.905,-3.301],[9.784,-2.608],[12.486,-3.296],[9.666,-1.858],[9.318,-1.716],[-0.975,-0.757],[-2.774,0.074],[-36.555,3.145],[-23.519,-5.838],[-22.866,-6.623],[-57.662,6.26],[-27.699,7.181],[-14.785,2.164],[-6.487,2.215],[5.342,-0.782],[8.846,-2.35],[18.042,-1.681],[45.024,12.767],[23.097,5.661]],"o":[[-10.379,1.273],[-9.784,2.607],[-7.016,1.852],[-9.666,1.858],[-5.675,1.045],[0.975,0.757],[43.829,-1.158],[28.556,-2.457],[23.228,5.766],[44.755,12.964],[22.67,-2.461],[2.172,-0.563],[9.524,-1.394],[12.557,-4.288],[-14.209,2.08],[-19.864,5.277],[-59.09,5.505],[-22.657,-6.425],[-22.962,-5.628]],"v":[[-153.5,-27.5],[-182.92,-21.517],[-215.5,-12.5],[-241.274,-6.898],[-270.5,-1.5],[-276.337,1.339],[-269.5,2.5],[-150.5,-24.5],[-73.5,-14.5],[-4.5,4.5],[145.5,29.5],[211.5,10.5],[243.5,3.5],[275.5,0.5],[242.5,-0.5],[209.5,6.5],[143.5,25.5],[-6.5,0.5],[-74.5,-18.5]],"c":true}],"h":1},{"t":52,"s":[{"i":[[51.251,-6.877],[9.628,-2.833],[12.194,-3.285],[9.977,-1.651],[9.343,-1.578],[-9.122,0.145],[-2.278,0.407],[-15.014,4.844],[-16.091,1.787],[-13.409,-1.937],[-11.758,-2.761],[-22.296,-6.115],[-57.146,7.497],[-22.801,6.204],[-14.293,2.263],[22.113,2.177],[14.056,-3.871],[18.437,-2.047],[45.211,12.845]],"o":[[-10.294,1.381],[-9.628,2.833],[-6.747,1.817],[-9.977,1.651],[-11.767,1.988],[9.122,-0.145],[15.853,-2.836],[15.014,-4.844],[13.605,-1.511],[13.409,1.937],[23.709,5.568],[46.587,12.778],[18.804,-2.467],[10.785,-2.935],[5.696,-0.902],[-20.84,-2.051],[-21.657,5.963],[-58.385,6.482],[-44.228,-12.566]],"v":[[-153.5,-27.5],[-182.575,-20.928],[-214.5,-11.5],[-240.553,-6.32],[-270.5,-1.5],[-267.534,0.796],[-243.5,-0.5],[-197.679,-13.287],[-151.5,-24.5],[-110.615,-23.204],[-72.5,-15.5],[-3.5,4.5],[149.5,29.5],[210.5,11.5],[242.5,4.5],[271.5,-2.5],[209.5,6.5],[147.5,25.5],[-4.5,0.5]],"c":true}],"h":1},{"t":53,"s":[{"i":[[29.852,-4.006],[9.762,-2.819],[12.672,-3.346],[9.972,-1.769],[9.579,-1.197],[-0.877,-1.856],[-3.432,0.578],[-30.798,3.419],[-23.78,-5.44],[-22.991,-6.343],[-57.817,7.314],[-22.383,5.922],[-15.283,2.406],[1.298,2.587],[4.893,-0.766],[10.669,-2.863],[18.071,-2.096],[23.797,5.076],[47.962,11.386]],"o":[[-10.281,1.38],[-9.762,2.819],[-6.534,1.726],[-9.972,1.769],[2.231,-0.279],[2.033,4.302],[36.685,-6.174],[28.265,-3.138],[24.105,5.514],[45.263,12.488],[18.866,-2.387],[7.667,-2.028],[2.691,-0.424],[-1.757,-3.501],[-13.313,2.084],[-15.11,4.055],[-29.57,3.43],[-50.391,-10.749],[-23.532,-5.586]],"v":[[-152.5,-27.5],[-181.706,-20.975],[-214.5,-11.5],[-240.217,-6.104],[-270.5,-1.5],[-277.5,1.5],[-243.5,-0.5],[-150.5,-24.5],[-71.5,-15.5],[-1.5,3.5],[150.5,29.5],[211.5,11.5],[244.5,4.5],[278.5,-1.5],[243.5,0.5],[210.5,7.5],[149.5,25.5],[68.5,18.5],[-71.5,-19.5]],"c":true}],"h":1},{"t":54,"s":[{"i":[[0.016,-0.002],[9.816,-3.055],[12.386,-3.323],[10.24,-1.635],[9.087,-1.595],[0.83,-0.865],[-7.64,0.044],[-5.339,0.872],[-29.373,3.261],[-24.189,-5.448],[-23.416,-6.258],[-57.561,6.845],[-21.845,5.991],[-14.719,1.354],[13.935,1.561],[14.36,-3.954],[15.192,-1.687],[44.417,12.303],[60.486,-4.444]],"o":[[-10.351,1.456],[-9.816,3.055],[-6.952,1.866],[-10.24,1.635],[-3.322,0.583],[-0.83,0.865],[8.534,-0.049],[33.307,-5.439],[29.152,-3.237],[23.731,5.345],[46.472,12.42],[19.244,-2.289],[7.598,-2.084],[1.775,-0.163],[-20.028,-2.244],[-15.037,4.141],[-57.969,6.436],[-47.559,-13.174],[-0.716,0.053]],"v":[[-151.5,-27.5],[-180.974,-20.401],[-213.5,-10.5],[-240.399,-5.297],[-270.5,-0.5],[-278.221,1.97],[-269.5,3.5],[-242.5,0.5],[-149.5,-24.5],[-69.5,-16.5],[0.5,2.5],[151.5,29.5],[212.5,11.5],[262.5,2.5],[274.5,-1.5],[211.5,7.5],[150.5,25.5],[0.5,-1.5],[-150.5,-28.5]],"c":true}],"h":1},{"t":55,"s":[{"i":[[57.719,-8.499],[18.047,-5.38],[21.417,-1.918],[3.419,-1.157],[-9.322,-0.044],[-10.258,1.979],[-7.81,2.138],[-19.644,2.181],[-48.474,-13.295],[-24.369,-5.391],[-28.401,3.401],[-22.128,5.772],[-14.948,2.421],[-6.235,2.129],[3.734,-0.605],[9.013,-2.365],[16.797,-1.865],[24.111,5.43],[22.45,6.097]],"o":[[-17.394,2.561],[-18.047,5.38],[-3.645,0.327],[-3.419,1.157],[11.156,0.053],[10.258,-1.979],[21.633,-5.922],[58.015,-6.441],[22.47,6.163],[24.547,5.43],[18.775,-2.249],[3.27,-0.853],[7.385,-1.196],[12.465,-4.256],[-13.997,2.267],[-15.176,3.983],[-28.198,3.131],[-24.482,-5.514],[-45.313,-12.305]],"v":[[-150.5,-27.5],[-202.982,-14.018],[-261.5,-1.5],[-275.226,1.212],[-269.5,3.5],[-236.99,0.143],[-209.5,-6.5],[-148.5,-24.5],[2.5,2.5],[72.5,21.5],[153.5,29.5],[213.5,12.5],[245.5,5.5],[275.5,1.5],[244.5,1.5],[212.5,8.5],[151.5,25.5],[71.5,17.5],[1.5,-1.5]],"c":true}],"h":1},{"t":56,"s":[{"i":[[58.964,-8.552],[9.912,-3.3],[12.473,-3.367],[20.662,-2.329],[-1.053,-2.186],[-2.709,0.437],[-9.074,2.425],[-20.034,2.224],[-47.877,-13.028],[-24.127,-5.727],[-28.167,3.151],[-18.263,4.842],[-13.364,2.353],[1.135,2.406],[4.98,-0.882],[9.648,-2.657],[18.099,-1.854],[23.483,5.515],[21.803,5.909]],"o":[[-9.88,1.433],[-9.912,3.3],[-14.441,3.898],[-0.313,0.035],[2.583,5.363],[16.62,-2.684],[22.683,-6.062],[58.699,-6.517],[21.959,5.975],[24.244,5.755],[18.081,-2.022],[7.54,-1.999],[3.961,-0.698],[-1.537,-3.26],[-11.495,2.035],[-13.898,3.827],[-29.438,3.015],[-25.031,-5.878],[-45.465,-12.322]],"v":[[-148.5,-27.5],[-177.555,-19.951],[-210.5,-9.5],[-270.5,-0.5],[-277.5,2.5],[-241.5,0.5],[-208.5,-6.5],[-146.5,-24.5],[4.5,1.5],[73.5,20.5],[153.5,29.5],[213.5,12.5],[245.5,5.5],[278.5,-0.5],[244.5,1.5],[212.5,8.5],[152.5,25.5],[73.5,16.5],[3.5,-2.5]],"c":true}],"h":1},{"t":57,"s":[{"i":[[59.444,-7.545],[0.846,0.064],[0.803,-0.154],[14.871,-4.908],[17.45,-2.493],[6.011,-0.361],[3.905,-0.977],[-5.271,0.771],[-6.064,1.572],[-20.901,1.831],[-67.252,-15.896],[-27.627,3.09],[-22.139,5.893],[-17.297,3.225],[6.976,-0.801],[14.313,-3.81],[18.461,-1.764],[23.194,5.577],[21.623,5.99]],"o":[[-0.811,0.103],[-0.846,-0.064],[-15.065,2.877],[-14.871,4.908],[-4.05,0.579],[-6.011,0.361],[-11.577,2.894],[13.879,-2.031],[22.031,-5.712],[82.166,-7.2],[24.351,5.756],[18.771,-2.1],[11.918,-3.173],[20.216,-3.769],[-18.698,2.146],[-14.349,3.819],[-28.47,2.721],[-24.127,-5.802],[-45.183,-12.515]],"v":[[-145.5,-27.5],[-148.007,-27.538],[-150.5,-27.5],[-194.712,-14.712],[-242.5,-2.5],[-258.609,-1.299],[-274.5,0.5],[-241.5,1.5],[-209.5,-5.5],[-142.5,-24.5],[75.5,20.5],[154.5,29.5],[215.5,13.5],[271.5,2.5],[261.5,-0.5],[213.5,9.5],[152.5,25.5],[74.5,16.5],[5.5,-2.5]],"c":true}],"h":1},{"t":58,"s":[{"i":[[56.236,-5.624],[10.52,-3.507],[14.147,-3.796],[9.082,-1.398],[7.887,-0.586],[3.854,-0.427],[-0.063,-1.169],[-1.227,0.154],[-30.767,5.489],[-24.658,-4.758],[-48.444,-12.101],[-26.745,2.588],[-18.736,5.098],[-16.107,2.017],[1.64,3.367],[0.622,-0.021],[37.673,-3.241],[23.236,5.804],[21.635,6.195]],"o":[[-11.772,1.177],[-10.52,3.507],[-6.787,1.821],[-9.082,1.398],[-1.645,0.122],[-3.854,0.427],[0.228,4.251],[38.408,-4.826],[27.679,-4.938],[49.999,9.649],[24.484,6.116],[19.151,-1.853],[10.582,-2.879],[0.151,-0.019],[-0.941,-1.932],[-47.804,1.625],[-26.295,2.262],[-23.583,-5.891],[-44.615,-12.775]],"v":[[-141.5,-27.5],[-173.719,-19.964],[-209.5,-8.5],[-234.175,-3.574],[-260.5,-0.5],[-270.281,0.215],[-277.5,2.5],[-242.5,2.5],[-148.5,-23.5],[-65.5,-19.5],[74.5,18.5],[153.5,29.5],[214.5,13.5],[263.5,4.5],[278.5,-0.5],[271.5,-0.5],[152.5,25.5],[76.5,15.5],[8.5,-3.5]],"c":true}],"h":1},{"t":59,"s":[{"i":[[81.997,-6.063],[10.459,-3.458],[14.904,-4.112],[10.203,-1.527],[11.176,-0.406],[2.719,-0.082],[0.372,-0.753],[-3.608,-0.338],[-2.41,0.053],[-18.415,5.796],[-16.361,3.33],[-25.221,-4.57],[-48.394,-12.317],[-26.488,2.31],[-20.004,5.102],[-16.054,2.732],[7.97,-0.975],[35.199,-2.89],[22.967,5.761]],"o":[[-14.258,1.055],[-10.459,3.458],[-9.014,2.487],[-10.203,1.527],[2.247,-0.082],[-2.719,0.082],[-0.84,1.703],[3.608,0.338],[21.977,-0.487],[18.416,-5.796],[27.354,-5.568],[51.024,9.246],[24.457,6.224],[19.922,-1.737],[11.357,-2.896],[17.599,-2.995],[-41.382,5.06],[-25.268,2.074],[-67.92,-17.037]],"v":[[-136.5,-27.5],[-171.516,-20.293],[-207.5,-8.5],[-236.379,-2.439],[-268.5,0.5],[-271.036,0.374],[-277.5,1.5],[-271.938,4.317],[-261.5,4.5],[-201.287,-6.868],[-149.5,-22.5],[-66.5,-20.5],[75.5,17.5],[153.5,29.5],[215.5,14.5],[271.5,3.5],[261.5,0.5],[152.5,25.5],[78.5,14.5]],"c":true}],"h":1},{"t":60,"s":[{"i":[[83.839,-6.199],[2.705,-0.065],[2.651,-0.553],[15.803,-5.324],[17.282,-2.099],[8.643,-0.532],[-0.79,-1.601],[-8.234,0.231],[-3.403,0.413],[-14.544,5.162],[-15.787,3.039],[-45.96,-13.672],[-23.197,-6.212],[-27.401,1.54],[-21.197,5.62],[-18.304,3.346],[8.7,-1.179],[37.141,-1.717],[22.034,5.608]],"o":[[-2.529,0.187],[-2.705,0.065],[-12.505,2.605],[-15.803,5.324],[-2.219,0.27],[-8.643,0.532],[0.659,1.337],[8.234,-0.231],[19.037,-2.312],[14.544,-5.162],[57.076,-10.987],[22.342,6.646],[24.202,6.481],[19.969,-1.122],[14.009,-3.714],[16.628,-3.039],[-40.105,5.433],[-25.381,1.173],[-68.302,-17.383]],"v":[[-132.5,-27.5],[-140.408,-27.274],[-148.5,-26.5],[-191.416,-13.121],[-241.5,-0.5],[-261.757,0.501],[-277.5,3.5],[-261.058,4.813],[-240.5,3.5],[-191.563,-8.955],[-147.5,-22.5],[6.5,-2.5],[75.5,17.5],[152.5,29.5],[214.5,14.5],[271.5,3.5],[261.5,0.5],[151.5,25.5],[79.5,13.5]],"c":true}],"h":1},{"t":61,"s":[{"i":[[82.428,-6.446],[11.682,-3.879],[16.798,-4.196],[10.855,-1.191],[10.104,-1.371],[2.208,-0.206],[-0.403,-1.236],[-7.665,0.33],[-3.798,0.349],[-14.396,4.837],[-16.133,3.88],[-45.003,-13.54],[-23.1,-6.199],[-26.708,0.848],[-32.139,6.542],[1.519,3.221],[1.705,-0.352],[34.019,-1.028],[21.618,5.674]],"o":[[-16.472,1.288],[-11.682,3.879],[-7.475,1.867],[-10.855,1.191],[0.429,-0.058],[-2.208,0.206],[0.543,1.668],[7.664,-0.33],[19.285,-1.774],[14.396,-4.837],[54.454,-13.094],[22.63,6.809],[24.568,6.592],[32.423,-1.03],[4.573,-0.931],[-1.577,-3.344],[-35.016,7.229],[-24.551,0.742],[-65.975,-17.315]],"v":[[-128.5,-27.5],[-168.256,-19.181],[-208.5,-6.5],[-237.028,-2.128],[-269.5,1.5],[-273.48,1.53],[-277.5,3.5],[-262.441,5.013],[-242.5,3.5],[-193.636,-7.42],[-149.5,-21.5],[5.5,-4.5],[74.5,15.5],[150.5,29.5],[245.5,7.5],[278.5,0.5],[245.5,3.5],[150.5,25.5],[79.5,13.5]],"c":true}],"h":1},{"t":62,"s":[{"i":[[79.233,-5.859],[12.529,-4.099],[17.262,-4.303],[9.838,-1],[12.069,-0.61],[-4.074,-0.876],[-2.762,0.011],[-17.555,5.399],[-17.745,4.304],[-26.286,-3.708],[-23.692,-6.758],[-11.5,-3.392],[-11.666,-3.2],[-24.384,0.591],[-21.06,5.228],[-19.656,4.56],[7.244,-0.994],[35.152,-0.487],[21.6,5.635]],"o":[[-17.624,1.303],[-12.529,4.098],[-9.581,2.389],[-9.837,1.001],[-10.06,0.508],[4.074,0.876],[24.035,-0.101],[17.555,-5.399],[27.166,-6.588],[26.286,3.708],[11.333,3.232],[11.5,3.392],[23.366,6.409],[19.805,-0.48],[17.028,-4.227],[16.035,-3.72],[-37.878,5.197],[-22.634,0.314],[-64.794,-16.902]],"v":[[-123.5,-27.5],[-166.271,-18.75],[-208.5,-5.5],[-237.134,-0.666],[-269.5,1.5],[-274.616,3.89],[-260.5,5.5],[-199.783,-4.347],[-148.5,-20.5],[-67.894,-23.009],[7.5,-5.5],[41.751,4.525],[76.5,14.5],[151.5,29.5],[215.5,15.5],[272.5,4.5],[260.5,1.5],[150.5,25.5],[82.5,12.5]],"c":true}],"h":1},{"t":63,"s":[{"i":[[77.171,-5.706],[11.294,-3.42],[13.837,-4.139],[8.793,-1.687],[8.536,-0.472],[1.742,0.044],[6.178,-0.073],[-0.579,-0.92],[-7.054,-0.209],[-17.738,5.233],[-18.661,4.759],[-38.212,-8.605],[-31.819,-8.866],[-24.134,-0.209],[-22.127,5.574],[-18.998,4.788],[7.353,-1.125],[37.78,1.501],[20.708,5.669]],"o":[[-15.989,1.182],[-11.294,3.42],[-9.291,2.78],[-8.793,1.687],[-1.853,0.103],[-1.742,-0.044],[-9.37,0.111],[0.579,0.92],[23.386,0.692],[17.738,-5.233],[40.333,-10.286],[38.212,8.605],[24.487,6.823],[21.377,0.185],[16.082,-4.051],[15.585,-3.928],[-37.441,5.728],[-22.091,-0.878],[-62.601,-17.136]],"v":[[-119.5,-27.5],[-158.614,-20.218],[-194.5,-8.5],[-221.566,-1.77],[-247.5,1.5],[-251.756,1.522],[-262.5,1.5],[-274.819,3.427],[-262.5,5.5],[-202.457,-2.911],[-149.5,-19.5],[-30.614,-17.364],[75.5,13.5],[150.5,28.5],[216.5,16.5],[272.5,4.5],[260.5,1.5],[147.5,24.5],[81.5,11.5]],"c":true}],"h":1},{"t":64,"s":[{"i":[[75.759,-5.924],[4.874,-0.498],[5.909,-1.492],[15.534,-5.041],[16.279,-0.901],[9.191,-0.558],[-12.291,-1.628],[-18.693,4.341],[-17.862,6.2],[-36.22,-5.917],[-28.547,-8.332],[-16.805,-4.792],[-16.722,-0.145],[-18.894,4.69],[-15.096,3.238],[8.636,-1.398],[10.234,-2.556],[19.66,0.43],[21.065,5.846]],"o":[[-6.593,0.515],[-4.874,0.498],[-15.585,3.934],[-15.534,5.041],[-2.529,0.14],[-9.19,0.558],[19.365,2.566],[18.693,-4.341],[34.572,-12.002],[36.22,5.917],[16.059,4.688],[16.805,4.792],[20.298,0.176],[11.552,-2.868],[16.992,-3.645],[-17.253,2.794],[-21.57,5.388],[-21.865,-0.479],[-61.254,-17.001]],"v":[[-115.5,-27.5],[-132.013,-26.232],[-147.5,-23.5],[-193.979,-8.726],[-241.5,1.5],[-266.115,2.384],[-268.5,5.5],[-211.372,1.575],[-156.5,-15.5],[-47.982,-20.75],[51.5,4.5],[101.003,19.907],[151.5,28.5],[216.5,16.5],[271.5,4.5],[262.5,2.5],[215.5,12.5],[150.5,24.5],[85.5,10.5]],"c":true}],"h":1},{"t":65,"s":[{"i":[[74.019,-5.473],[10.808,-2.737],[12.034,-4.112],[11.34,-2.398],[12.255,-0.516],[7.035,0.19],[0.365,-0.74],[-3.236,-0.515],[-2.953,-0.119],[-18.504,5.466],[-15.966,4.105],[-38.361,-7.725],[-31.971,-9.278],[-23.866,-0.948],[-19.059,4.544],[-16.062,2.814],[19.576,-3.25],[38.962,2.748],[20.166,5.796]],"o":[[-12.736,0.941],[-10.808,2.737],[-11.383,3.89],[-11.34,2.398],[-0.495,0.021],[-7.035,-0.19],[-0.897,1.821],[3.236,0.515],[24.017,0.968],[18.504,-5.466],[39.586,-10.179],[38.361,7.725],[23.867,6.926],[22.029,0.875],[11.694,-2.788],[16.701,-2.926],[-39.522,6.561],[-21.242,-1.498],[-60.149,-17.289]],"v":[[-110.5,-27.5],[-145.026,-21.878],[-178.5,-11.5],[-212.346,-1.97],[-247.5,2.5],[-262.097,1.96],[-276.5,2.5],[-271.887,5.776],[-261.5,6.5],[-198.462,-2.195],[-147.5,-18.5],[-29.288,-18.093],[77.5,11.5],[150.5,27.5],[216.5,16.5],[264.5,6.5],[263.5,2.5],[147.5,23.5],[84.5,9.5]],"c":true}],"h":1},{"t":66,"s":[{"i":[[75.551,-5.908],[0.334,0.009],[0.332,-0.011],[21.069,-7.014],[24.125,-1.202],[8.19,0.323],[1.135,-1.135],[-2.628,-0.694],[1.987,0.3],[-6.652,0.138],[-1.951,0.121],[-25.039,6.908],[-64.16,-18.656],[-23.528,-0.746],[-29.597,6.503],[1.235,2.735],[5.438,-0.93],[34.862,1.22],[19.841,5.55]],"o":[[-0.331,0.026],[-0.335,-0.009],[-22.6,0.742],[-21.069,7.014],[-3.105,0.155],[-8.19,-0.323],[-1.524,1.524],[2.628,0.694],[4.44,0.672],[6.652,-0.138],[33.748,-2.097],[80,-22.072],[23.666,6.881],[34.165,1.084],[4.365,-0.959],[-0.726,-1.608],[-37.757,6.458],[-20.835,-0.729],[-61.058,-17.08]],"v":[[-106.5,-27.5],[-107.499,-27.489],[-108.5,-27.5],[-172.856,-12.845],[-239.5,2.5],[-259.477,1.764],[-276.5,2.5],[-272.653,5.869],[-269.5,6.5],[-251.133,7.095],[-236.5,6.5],[-147.5,-17.5],[79.5,10.5],[152.5,27.5],[248.5,9.5],[279.5,1.5],[263.5,2.5],[151.5,23.5],[88.5,9.5]],"c":true}],"h":1},{"t":67,"s":[{"i":[[73.563,-5.752],[23.76,-7.258],[26.81,0],[6.061,0.436],[0.744,-0.744],[-2.929,-0.603],[-1.667,-0.207],[-16.297,3.258],[-12.127,4.292],[-18.459,2.724],[-21.091,-1.94],[-17.341,-4.4],[-16.058,-4.598],[-35.633,-1.956],[-20.761,4.718],[-19.022,5.148],[7.216,-1.143],[37.054,2.268],[19.547,5.447]],"o":[[-25.15,1.966],[-23.76,7.258],[-2.012,0],[-6.061,-0.436],[-1.381,1.381],[2.929,0.603],[18.683,2.324],[16.297,-3.258],[17.075,-6.042],[18.459,-2.724],[19.576,1.8],[17.341,4.4],[33.251,9.521],[21.985,1.207],[18.056,-4.103],[14.959,-4.048],[-34.506,5.464],[-20.258,-1.24],[-59.256,-16.511]],"v":[[-102.5,-27.5],[-174.755,-10.525],[-249.5,3.5],[-263.951,2.442],[-276.5,2.5],[-272.786,5.38],[-264.5,6.5],[-211.583,3.962],[-168.5,-8.5],[-115.513,-21.986],[-56.5,-23.5],[-1.361,-13.598],[48.5,0.5],[151.5,26.5],[217.5,16.5],[273.5,5.5],[262.5,2.5],[150.5,22.5],[89.5,8.5]],"c":true}],"h":1},{"t":68,"s":[{"i":[[71.11,-5.258],[8.12,-1.123],[9.142,-2.813],[14.461,-4.441],[19.308,-0.667],[8.563,0.17],[0.018,-1.619],[-1.17,-0.321],[-0.328,-0.051],[-20.081,5.49],[-21.222,5.468],[-37.935,-5.82],[-29.454,-7.888],[-32.401,-2.787],[-22.397,5.078],[-14.764,3.139],[8.03,-1.121],[31.377,-1.902],[25.432,7.324]],"o":[[-9.38,0.694],[-8.12,1.123],[-14.847,4.569],[-14.461,4.441],[-1.733,0.06],[-8.563,-0.17],[-0.007,0.663],[1.17,0.322],[28.453,4.427],[20.081,-5.49],[29.795,-7.677],[34.547,5.301],[30.039,8.044],[23.51,2.022],[10.944,-2.481],[14.265,-3.033],[-34.606,4.832],[-32.212,1.953],[-56.962,-16.404]],"v":[[-97.5,-27.5],[-123.179,-25.09],[-148.5,-19.5],[-191.155,-5.074],[-240.5,3.5],[-259.786,2.831],[-276.5,4.5],[-274.252,5.959],[-271.5,6.5],[-201.077,2.421],[-141.5,-16.5],[-36.5,-21.5],[56.5,1.5],[148.5,25.5],[217.5,17.5],[272.5,5.5],[265.5,2.5],[168.5,21.5],[88.5,7.5]],"c":true}],"h":1},{"t":69,"s":[{"i":[[71.747,-5.61],[0.334,0.009],[0.332,-0.011],[21.543,-7.174],[23.374,-1.567],[4.259,0.069],[3.305,0.034],[5.394,0.276],[0.535,-1.124],[-2.246,-0.187],[-38.83,12.014],[-39.447,-4.89],[-29.599,-8.118],[-32.499,-1.64],[-17.861,3.863],[-13.736,3.369],[5.406,-0.92],[37.557,2.279],[19.144,5.492]],"o":[[-0.331,0.026],[-0.335,-0.009],[-22.456,0.737],[-21.543,7.174],[-4.659,0.313],[-4.259,-0.07],[-1.887,-0.02],[-5.394,-0.276],[-1.538,3.233],[46.886,3.904],[30.681,-9.493],[35.774,4.435],[32.257,8.847],[21.164,1.068],[11.545,-2.497],[16.13,-3.957],[-37.075,6.307],[-19.602,-1.189],[-57.12,-16.387]],"v":[[-93.5,-27.5],[-94.499,-27.489],[-95.5,-27.5],[-160.812,-12.622],[-227.5,3.5],[-241.015,3.76],[-252.5,3.5],[-265.514,2.642],[-276.5,3.5],[-261.5,7.5],[-146.5,-14.5],[-38.5,-22.5],[58.5,0.5],[154.5,25.5],[219.5,16.5],[272.5,5.5],[264.5,3.5],[153.5,21.5],[93.5,7.5]],"c":true}],"h":1},{"t":70,"s":[{"i":[[69.013,-5.397],[0.334,0.009],[0.332,-0.011],[24.747,-8.12],[33.149,1.397],[6.99,0.113],[-9.405,-2.512],[-18.738,3.182],[-11.753,4.159],[-17.614,3.402],[-22.142,-0.765],[-25.275,-6.944],[-24.769,-7.147],[-17.633,-1.517],[-21.973,4.568],[-12.652,3.328],[4.678,-0.822],[39.23,4.388],[18.251,5.317]],"o":[[-0.331,0.026],[-0.335,-0.009],[-27.862,0.915],[-24.747,8.12],[-1.443,-0.061],[-6.99,-0.113],[18.297,4.886],[18.738,-3.182],[17.403,-6.158],[17.614,-3.402],[31.131,1.076],[25.275,6.944],[16.928,4.884],[22.444,1.931],[9.375,-1.949],[16.347,-4.299],[-36.448,6.402],[-18.563,-2.076],[-55.531,-16.177]],"v":[[-89.5,-27.5],[-90.499,-27.489],[-91.5,-27.5],[-167.535,-9.766],[-251.5,4.5],[-269.636,3.57],[-271.5,6.5],[-214.092,7.284],[-166.5,-5.5],[-115.055,-20.193],[-56.5,-24.5],[26.772,-11.053],[100.5,11.5],[152.5,24.5],[219.5,17.5],[272.5,5.5],[264.5,3.5],[149.5,20.5],[93.5,5.5]],"c":true}],"h":1},{"t":71,"s":[{"i":[[68.828,-5.089],[0.335,0.006],[0.33,-0.001],[21.805,-7.631],[26.029,-1.442],[5.356,0.027],[2.293,0.072],[6.345,0.014],[-7.745,-2.13],[-22.751,7.898],[-44.464,-0.465],[-48.381,-14.068],[-17.149,-1.639],[-22.053,4.51],[-14.636,3.942],[4.38,-0.827],[7.916,-1.585],[21.575,2.413],[18.014,5.248]],"o":[[-0.329,0.024],[-0.335,-0.006],[-24.751,0.036],[-21.805,7.631],[-3.282,0.181],[-5.356,-0.027],[-2.364,-0.074],[-6.345,-0.014],[34.648,9.528],[35.389,-12.285],[62.488,0.654],[16.805,4.886],[22.647,2.164],[11.162,-2.283],[15.27,-4.113],[-15.644,2.952],[-22.108,4.425],[-18.505,-2.07],[-53.84,-15.685]],"v":[[-84.5,-27.5],[-85.499,-27.482],[-86.5,-27.5],[-154.542,-12.554],[-224.5,4.5],[-238.741,4.69],[-251.5,4.5],[-269.082,3.847],[-271.5,6.5],[-166.5,-3.5],[-58.5,-24.5],[99.5,10.5],[151.5,23.5],[219.5,17.5],[273.5,6.5],[264.5,3.5],[218.5,13.5],[149.5,19.5],[94.5,4.5]],"c":true}],"h":1},{"t":72,"s":[{"i":[[44.031,-3.443],[0.334,0.009],[0.332,-0.011],[24.876,-8.52],[36.008,2.115],[6.205,0.21],[-8.2,-2.158],[-18.803,2.364],[-12.231,4.165],[-16.599,4.009],[-23.091,0],[-32.704,-10.47],[-34.349,-5.12],[-16.738,2.854],[-16.055,3.416],[1.349,3.066],[0.672,-0.113],[38.118,6.351],[35.296,9.777]],"o":[[-0.331,0.026],[-0.335,-0.009],[-31.489,1.034],[-24.876,8.52],[-5.381,-0.316],[-6.205,-0.211],[17.555,4.62],[18.803,-2.364],[17.514,-5.963],[16.599,-4.009],[44.836,0],[32.704,10.47],[18.993,2.831],[16.738,-2.854],[3.558,-0.757],[-0.646,-1.467],[-36.64,6.148],[-36.794,-6.13],[-37.171,-10.296]],"v":[[-80.5,-27.5],[-81.499,-27.489],[-82.5,-27.5],[-162.611,-8.638],[-249.5,5.5],[-270.685,4.145],[-271.5,6.5],[-215.007,8.589],[-166.5,-2.5],[-117.183,-17.973],[-59.5,-24.5],[53.366,-4.84],[150.5,22.5],[203.704,21.186],[252.5,10.5],[279.5,2.5],[265.5,3.5],[148.5,18.5],[41.5,-11.5]],"c":true}],"h":1},{"t":73,"s":[{"i":[[87.57,-6.848],[0.334,0.009],[0.332,-0.011],[21.745,-7.609],[25.004,-1.676],[5.756,-0.007],[5.971,0.297],[5.736,0.248],[-7.717,-2.279],[-18.54,2.405],[-13.823,4.699],[-17.354,3.984],[-21.749,0],[-50.557,-14.7],[-18.263,-1.224],[-19.988,3.876],[-14.415,4.517],[5.567,-0.965],[35.089,6.6]],"o":[[-0.331,0.026],[-0.335,-0.009],[-27.016,0.887],[-21.745,7.609],[-4.005,0.268],[-5.756,0.007],[-5.775,-0.288],[-5.736,-0.248],[18.019,5.32],[18.54,-2.405],[17.835,-6.063],[17.354,-3.984],[66.936,0],[17.072,4.964],[21.089,1.414],[13.003,-2.522],[13.587,-4.258],[-32.177,5.577],[-73.175,-13.763]],"v":[[-76.5,-27.5],[-77.499,-27.489],[-78.5,-27.5],[-149.509,-11.592],[-217.5,5.5],[-232.526,5.924],[-250.5,5.5],[-271.119,4.075],[-271.5,6.5],[-215.353,9.514],[-165.5,-2.5],[-113.935,-18.047],[-56.5,-24.5],[106.5,9.5],[159.5,22.5],[223.5,16.5],[274.5,6.5],[264.5,4.5],[148.5,17.5]],"c":true}],"h":1},{"t":74,"s":[{"i":[[-0.12,0.009],[0.335,0.006],[0.33,-0.001],[26.486,-8.982],[37.285,2.973],[5.816,-0.102],[-6.745,-2.19],[-0.149,0.148],[-3.289,-0.579],[-31.053,9.818],[-37.495,1.176],[-18.449,-3.016],[-16.073,-4.628],[-16.477,-5.333],[-17.236,-2.814],[-33.456,7.136],[13.564,-2.193],[40.589,7.714],[88.267,-6.485]],"o":[[-0.329,0.024],[-0.335,-0.006],[-31.771,0.046],[-26.486,8.982],[-7.481,-0.596],[-5.816,0.102],[3.115,1.011],[0.149,-0.148],[42.294,7.448],[31.053,-9.818],[22.131,-0.694],[18.449,3.016],[16.855,4.854],[16.477,5.333],[39.063,6.379],[15.997,-3.412],[-34.852,5.636],[-71.267,-13.544],[-0.612,0.045]],"v":[[-71.5,-27.5],[-72.499,-27.482],[-73.5,-27.5],[-156.865,-8.735],[-248.5,5.5],[-271.169,4.41],[-272.5,7.5],[-269.13,8.324],[-265.5,8.5],[-159.9,-1.532],[-61.5,-24.5],[-0.956,-20.492],[50.5,-8.5],[100.214,7.53],[150.5,20.5],[266.5,7.5],[267.5,3.5],[148.5,16.5],[-70.5,-28.5]],"c":true}],"h":1},{"t":75,"s":[{"i":[[64.929,-5.077],[0.334,0.009],[0.332,-0.011],[22.738,-7.888],[25.394,-1.54],[5.62,-0.025],[6.271,0.357],[6.07,0.914],[0.929,-0.929],[-2.379,-0.96],[-0.535,-0.111],[-39.945,12.589],[-40.326,-1.394],[-28.165,-8.174],[-64.23,10.868],[-14.58,4.433],[3.614,-0.716],[21.293,-1.74],[23.664,7.16]],"o":[[-0.331,0.026],[-0.335,-0.009],[-27.654,0.908],[-22.738,7.888],[-4.249,0.258],[-5.62,0.025],[-4.792,-0.272],[-6.07,-0.914],[-1.051,1.051],[2.379,0.96],[52.915,10.986],[28.239,-8.9],[36.55,1.264],[50.086,14.535],[13.884,-2.349],[17.963,-5.461],[-20.202,4.005],[-34.446,2.814],[-53.286,-16.123]],"v":[[-67.5,-27.5],[-68.499,-27.489],[-69.5,-27.5],[-143.195,-10.974],[-213.5,6.5],[-228.483,6.961],[-246.5,6.5],[-264.397,4.099],[-276.5,3.5],[-273.189,6.705],[-267.5,8.5],[-134.5,-9.5],[-34.5,-24.5],[61.5,-6.5],[219.5,17.5],[273.5,6.5],[257.5,5.5],[192.5,16.5],[105.5,3.5]],"c":true}],"h":1},{"t":76,"s":[{"i":[[38.759,-2.866],[0.335,0.006],[0.33,-0.001],[23.327,-8.431],[30.852,-1.233],[13.295,1.268],[0.875,-0.875],[-2.805,-0.886],[-1.039,-0.197],[-17.618,1.347],[-12.421,3.864],[-39.699,3.089],[-32.76,-9.092],[-34.26,-5.923],[-34.093,9.662],[1.22,2.827],[0.325,-0.054],[36.351,7.015],[32.767,9.274]],"o":[[-0.329,0.024],[-0.335,-0.006],[-28.84,0.041],[-23.327,8.431],[-4.945,0.197],[-13.295,-1.268],[-1.257,1.257],[2.804,0.886],[17.106,3.252],[17.618,-1.347],[33.068,-10.288],[45.07,-3.507],[34.131,9.473],[39.818,6.883],[-2.821,0.799],[-1.077,-2.495],[-36.303,5.973],[-32.835,-6.337],[-33.535,-9.491]],"v":[[-62.5,-27.5],[-63.499,-27.482],[-64.5,-27.5],[-139.491,-10.894],[-217.5,7.5],[-250.052,4.992],[-276.5,3.5],[-272.722,6.795],[-265.5,8.5],[-211.987,10.838],[-165.5,2.5],[-62.5,-23.5],[51.5,-10.5],[151.5,18.5],[272.5,6.5],[279.5,3.5],[266.5,4.5],[149.5,14.5],[51.5,-14.5]],"c":true}],"h":1},{"t":77,"s":[{"i":[[45.461,-3.361],[16.193,-4.613],[18.853,-6.04],[14.505,-1.478],[15.398,1.3],[6.873,0.095],[-13.276,-2.868],[-22.222,4.253],[-22.192,7.019],[-17.001,2.707],[-19.501,-0.73],[-16.154,-3.505],[-14.505,-4.274],[-15.446,-4.891],[-16.522,-1.108],[-30.665,8.882],[4.942,-0.742],[28.849,0],[37.096,10.786]],"o":[[-20.374,1.506],[-16.193,4.613],[-10.582,3.39],[-14.505,1.478],[-5.784,-0.489],[-6.873,-0.095],[27.919,6.032],[22.222,-4.253],[15.497,-4.902],[17.001,-2.707],[18.879,0.707],[16.154,3.505],[14.694,4.33],[15.446,4.891],[41.678,2.794],[12.237,-3.544],[-29.932,4.492],[-42.773,0],[-37.089,-10.784]],"v":[[-58.5,-27.5],[-111.641,-17.9],[-162.5,-1.5],[-200.888,6.018],[-246.5,6.5],[-270.795,4.983],[-266.5,8.5],[-192.704,9.288],[-127.5,-9.5],[-79.003,-21.224],[-24.5,-24.5],[27.78,-17.675],[73.5,-5.5],[118.629,9.417],[166.5,19.5],[273.5,6.5],[268.5,3.5],[183.5,16.5],[67.5,-10.5]],"c":true}],"h":1},{"t":78,"s":[{"i":[[62.558,-4.892],[28.843,-9.039],[38.181,3.927],[7.038,1.111],[0.855,-0.854],[-2.783,-0.872],[-1.142,-0.241],[-17.31,0.884],[-13.81,4.046],[-16.66,4.943],[-18.669,2.338],[-34.005,-9.451],[-32.427,-6.901],[-17.313,1.359],[-15.017,2.912],[-5.245,1.129],[11.662,-0.777],[29.888,-1.358],[23.249,6.734]],"o":[[-35.447,2.772],[-28.843,9.039],[-3.994,-0.41],[-7.038,-1.111],[-1.273,1.272],[2.783,0.872],[16.949,3.582],[17.31,-0.884],[16.691,-4.891],[16.66,-4.943],[45.555,-5.705],[34.005,9.451],[15.732,3.348],[17.313,-1.359],[4.703,-0.912],[6.323,-1.361],[-25.983,1.732],[-35.766,1.625],[-51.472,-14.909]],"v":[[-54.5,-27.5],[-146.95,-4.976],[-243.5,7.5],[-262.355,4.551],[-276.5,3.5],[-272.81,6.774],[-265.5,8.5],[-213.146,12.221],[-165.5,4.5],[-115.983,-10.914],[-63.5,-22.5],[53.346,-12.454],[150.5,16.5],[201.037,18.695],[250.5,11.5],[265.5,8.5],[274.5,2.5],[196.5,15.5],[112.5,1.5]],"c":true}],"h":1},{"t":79,"s":[{"i":[[61.505,-4.548],[26.43,-8.694],[31.007,0.089],[8.342,0.814],[4.863,0.729],[3.849,0.341],[-4.284,-2.646],[-5.914,-0.593],[-3.696,-0.375],[-17.165,3.131],[-14.258,4.719],[-23.461,3.855],[-27.944,-3.441],[-45.733,-13.044],[-29.765,2.572],[-18.673,3.693],[11.621,-0.775],[31.62,-0.625],[23.22,6.419]],"o":[[-31.273,2.313],[-26.43,8.694],[-5.769,-0.017],[-8.342,-0.814],[-1.887,-0.282],[-3.849,-0.341],[3.647,2.252],[5.914,0.593],[22.082,2.244],[17.165,-3.131],[21.214,-7.021],[23.461,-3.855],[47.638,5.865],[18.845,5.375],[20.032,-1.731],[6.655,-1.316],[-28.209,1.88],[-35.919,0.71],[-51.172,-14.146]],"v":[[-49.5,-27.5],[-133.699,-7.199],[-217.5,9.5],[-240.18,8.034],[-261.5,5.5],[-272.628,3.804],[-274.5,6.5],[-259.037,10.408],[-243.5,11.5],[-185.132,9.222],[-138.5,-3.5],[-72.047,-20.846],[4.5,-22.5],[136.5,10.5],[210.5,17.5],[264.5,9.5],[275.5,3.5],[196.5,14.5],[114.5,0.5]],"c":true}],"h":1},{"t":80,"s":[{"i":[[44.318,-3.277],[0.335,0.006],[0.33,-0.001],[24.551,-8.867],[26.919,-1.491],[10.06,0.824],[7.812,1.143],[4.953,0.11],[-6.026,-2.762],[-8.432,-0.805],[-4.781,-0.265],[-41.056,12.214],[-39.626,-3.613],[-31.04,-9.286],[-34.39,0.099],[-24.138,6.021],[10.156,-1.466],[26.481,0.179],[36.359,10.37]],"o":[[-0.329,0.024],[-0.335,-0.006],[-28.879,0.041],[-24.551,8.867],[-7.947,0.44],[-10.06,-0.824],[-2.214,-0.324],[-4.953,-0.109],[5.491,2.517],[8.432,0.805],[54.28,3.006],[30.792,-9.16],[34.316,3.129],[31.863,9.532],[28.848,-0.083],[12.32,-3.073],[-27.529,3.973],[-42.651,-0.288],[-36.763,-10.486]],"v":[[-45.5,-27.5],[-46.499,-27.482],[-47.5,-27.5],[-125.97,-10.087],[-201.5,9.5],[-229.602,8.688],[-257.5,5.5],[-271.68,4.185],[-273.5,7.5],[-250.968,12.189],[-229.5,13.5],[-105.5,-12.5],[-0.5,-23.5],[96.5,-2.5],[193.5,18.5],[270.5,7.5],[269.5,3.5],[191.5,14.5],[78.5,-11.5]],"c":true}],"h":1},{"t":81,"s":[{"i":[[59.46,-4.65],[17.395,-5.24],[20.279,-6.309],[18.704,-0.579],[17.712,2.82],[4.295,0.423],[-4.768,-2.945],[-5.716,-0.906],[-4.136,-0.523],[-17.962,2.67],[-13.963,5.001],[-23.148,4.406],[-26.997,-2.291],[-44.895,-13.432],[-29.14,1.865],[-15.29,6.645],[-5.536,1.079],[19.465,-0.105],[21.369,5.815]],"o":[[-22.141,1.732],[-17.395,5.24],[-14.472,4.503],[-18.704,0.579],[-1.587,-0.253],[-4.295,-0.423],[2.999,1.852],[5.716,0.906],[21.189,2.681],[17.962,-2.67],[21.409,-7.668],[23.148,-4.406],[51.197,4.344],[17.677,5.288],[16.774,-1.074],[13.461,-5.85],[-19.825,3.864],[-32.836,0.176],[-50.235,-13.67]],"v":[[-41.5,-27.5],[-98.896,-16.433],[-153.5,1.5],[-204.57,8.993],[-260.5,5.5],[-272.267,3.601],[-274.5,6.5],[-260.353,10.497],[-244.5,12.5],[-185.581,11.761],[-137.5,-0.5],[-71.192,-19.468],[3.5,-23.5],[136.5,8.5],[210.5,17.5],[276.5,6.5],[259.5,6.5],[196.5,13.5],[118.5,-1.5]],"c":true}],"h":1},{"t":82,"s":[{"i":[[58.908,-4.356],[0.335,0.006],[0.33,-0.001],[24.202,-9.021],[27.944,-1.873],[10.111,0.587],[8.882,1.3],[6.109,0.722],[-3.562,-2.2],[-6.235,-0.961],[-1.986,-0.255],[-44.423,14.702],[-38.589,-0.207],[-29.373,-8.672],[-34.074,-2.285],[-20.806,3.606],[26.726,-3.46],[20.209,0.015],[20.662,5.667]],"o":[[-0.329,0.024],[-0.335,-0.006],[-29.249,0.043],[-24.202,9.021],[-9.674,0.649],[-10.111,-0.587],[-2.126,-0.312],[-6.109,-0.722],[3.076,1.9],[6.235,0.961],[55.754,7.172],[29.715,-9.835],[38.639,0.208],[30.164,8.906],[25.109,1.683],[6.407,-1.11],[-19.389,2.51],[-30.677,-0.023],[-49.462,-13.566]],"v":[[-36.5,-27.5],[-37.499,-27.482],[-38.5,-27.5],[-116.48,-9.873],[-192.5,10.5],[-222.594,10.461],[-251.5,7.5],[-267.266,5.116],[-274.5,6.5],[-258.682,10.733],[-244.5,12.5],[-112.5,-7.5],[-11.5,-24.5],[88.5,-7.5],[182.5,16.5],[249.5,11.5],[269.5,4.5],[198.5,13.5],[121.5,-1.5]],"c":true}],"h":1},{"t":83,"s":[{"i":[[58.993,-4.613],[0.335,0.009],[0.331,-0.011],[25.296,-9.101],[29.586,-1.639],[11.294,1.032],[8.251,1.348],[5.343,0.651],[-5.35,-2.764],[-7.001,-1.149],[-3.099,-0.389],[-24.133,6.585],[-26.176,6.968],[-44.856,-8.72],[-38.693,-8.909],[-32.543,10.1],[5.693,-1.058],[5.352,-0.734],[33.53,9.397]],"o":[[-0.331,0.026],[-0.334,-0.009],[-29.229,0.959],[-25.296,9.1],[-8.572,0.474],[-11.294,-1.032],[-0.98,-0.16],[-5.343,-0.651],[3.896,2.013],[7.001,1.149],[34.294,4.309],[24.132,-6.585],[34.579,-9.205],[38.083,7.404],[33.546,7.724],[14.849,-4.609],[-7.365,1.369],[-46.543,6.386],[-45.116,-12.645]],"v":[[-32.5,-27.5],[-33.499,-27.489],[-34.5,-27.5],[-114.232,-8.509],[-194.5,11.5],[-225.74,10.366],[-256.5,6.5],[-269.747,4.307],[-273.5,6.5],[-255.402,11.218],[-238.5,13.5],[-153.911,7.458],[-81.5,-15.5],[44.5,-18.5],[155.5,11.5],[274.5,7.5],[259.5,5.5],[240.5,9.5],[122.5,-1.5]],"c":true}],"h":1},{"t":84,"s":[{"i":[[41.945,-3.28],[0.335,0.009],[0.331,-0.011],[26.901,-9.768],[33.179,0.096],[11.994,1.691],[7.71,1.213],[-0.945,-0.975],[-5.487,-1.242],[-19.028,-0.603],[-15.657,4.311],[-17.822,5.979],[-19.733,3.133],[-35.036,-9.307],[-40.743,-2.256],[-22.372,5.452],[11.655,-2.036],[7.017,-0.9],[48.31,13.198]],"o":[[-0.331,0.026],[-0.334,-0.009],[-31.219,1.025],[-26.9,9.768],[-8.313,-0.024],[-11.994,-1.691],[-7.267,-1.143],[0.945,0.975],[17.231,3.898],[19.028,0.603],[17.98,-4.951],[17.822,-5.979],[47.628,-7.563],[37.618,9.993],[27.011,1.496],[19.211,-4.682],[-9.026,1.577],[-62.99,8.076],[-33.965,-9.279]],"v":[[-28.5,-27.5],[-29.499,-27.489],[-30.5,-27.5],[-115.03,-6.66],[-202.5,12.5],[-234.952,9.391],[-266.5,4.5],[-275.065,4.712],[-264.5,8.5],[-208.82,15.657],[-155.5,10.5],[-102.315,-6.863],[-46.5,-21.5],[78.5,-12.5],[191.5,15.5],[270.5,7.5],[258.5,6.5],[236.5,9.5],[86.5,-13.5]],"c":true}],"h":1},{"t":85,"s":[{"i":[[56.458,-4.175],[0.335,0.006],[0.33,-0.001],[25.259,-9.525],[27.669,-1.855],[11.763,1.293],[9.353,1.673],[6.119,0.684],[-5.303,-2.885],[-7.622,-1.189],[-4.645,-0.598],[-22.37,5.2],[-22.578,7.181],[-42.152,-1.853],[-30.649,-9.291],[-56.65,15.587],[6.64,-1.151],[17.914,0.814],[17.301,4.745]],"o":[[-0.329,0.024],[-0.335,-0.006],[-30.294,0.044],[-25.259,9.525],[-12.595,0.845],[-11.763,-1.293],[-0.827,-0.148],[-6.119,-0.684],[4.868,2.648],[7.622,1.189],[30.944,3.98],[22.37,-5.2],[29.388,-9.347],[35.141,1.545],[50.084,15.182],[17.631,-4.851],[-18.808,3.26],[-28.674,-1.302],[-50.428,-13.831]],"v":[[-23.5,-27.5],[-24.499,-27.482],[-25.5,-27.5],[-106.969,-8.858],[-184.5,12.5],[-221.431,11.388],[-253.5,6.5],[-268.098,4.225],[-273.5,6.5],[-253.333,12.038],[-233.5,14.5],[-155.726,10.871],[-90.5,-9.5],[12.5,-24.5],[110.5,-4.5],[272.5,7.5],[260.5,5.5],[200.5,11.5],[127.5,-3.5]],"c":true}],"h":1},{"t":86,"s":[{"i":[[39.492,-3.088],[19.772,-5.864],[20.223,-6.693],[10.848,-1.595],[14.644,1.015],[9.77,1.385],[5.887,1.111],[3.698,-0.35],[-8.892,-2.373],[-14.681,-1.616],[-13.601,0.845],[-17.294,6.123],[-18.401,5.3],[-21.081,1.456],[-22.787,-3.69],[-81.77,11.968],[2.65,2.65],[8.503,-0.962],[47.737,13.249]],"o":[[-23.691,1.852],[-19.772,5.864],[-7.963,2.636],[-10.848,1.595],[-5.032,-0.349],[-9.77,-1.385],[-4.1,-0.774],[-3.698,0.35],[12.673,3.381],[14.681,1.616],[19.422,-1.206],[17.294,-6.124],[16.889,-4.864],[21.081,-1.456],[66.281,10.734],[2.359,-0.345],[-2.898,-2.898],[-61.231,6.925],[-33.504,-9.299]],"v":[[-19.5,-27.5],[-83.601,-15.13],[-142.5,4.5],[-170.489,11.238],[-208.5,12.5],[-232.859,9.572],[-258.5,5.5],[-273.244,4.64],[-268.5,8.5],[-226.696,16.17],[-183.5,17.5],[-129.235,5.07],[-76.5,-13.5],[-18.923,-23.416],[47.5,-20.5],[252.5,11.5],[279.5,3.5],[239.5,8.5],[94.5,-14.5]],"c":true}],"h":1},{"t":87,"s":[{"i":[[43.866,-3.43],[0.335,0.009],[0.331,-0.011],[27.414,-10.249],[32.958,0.06],[11.122,1.612],[8.428,1.535],[5.295,0.328],[-8.709,-2.774],[-23.53,-0.125],[-19.137,6.425],[-21.633,6.389],[-26.162,0.627],[-22.489,-5.079],[-22.466,-6.346],[-23.815,-1.689],[-21.483,5.911],[9.356,-1.256],[45.749,12.672]],"o":[[-0.331,0.026],[-0.334,-0.009],[-32.388,1.063],[-27.414,10.249],[-10.085,-0.018],[-11.121,-1.612],[-2.529,-0.46],[-5.295,-0.328],[21.743,6.925],[23.53,0.125],[20.306,-6.817],[21.633,-6.389],[27.576,-0.66],[22.489,5.079],[18.256,5.157],[23.815,1.689],[21.451,-5.902],[-57.742,7.748],[-35.008,-9.697]],"v":[[-15.5,-27.5],[-16.499,-27.489],[-17.5,-27.5],[-104.572,-5.657],[-192.5,14.5],[-225.243,11.637],[-255.5,6.5],[-271.428,4.575],[-270.5,7.5],[-201.046,18.012],[-135.5,8.5],[-73.392,-12.642],[-2.5,-24.5],[71.333,-16.755],[137.5,1.5],[202.58,12.801],[272.5,7.5],[247.5,7.5],[103.5,-12.5]],"c":true}],"h":1},{"t":88,"s":[{"i":[[52.568,-3.887],[0.335,0.006],[0.33,-0.001],[25.855,-10.004],[28.936,-1.94],[13.671,1.487],[9.877,1.887],[5.438,1.346],[1.522,-1.522],[-2.377,-0.952],[-0.542,-0.143],[-16.076,-1.837],[-16.216,1.181],[-35.091,10.321],[-46.618,-7.153],[-37.232,-9.851],[-31.061,9.516],[7.77,-1.237],[33.057,10.171]],"o":[[-0.329,0.024],[-0.335,-0.006],[-30.644,0.044],[-25.855,10.004],[-12.439,0.834],[-13.671,-1.487],[-0.725,-0.139],[-5.438,-1.346],[-1.048,1.048],[2.377,0.952],[14.478,3.832],[16.076,1.837],[37.039,-2.696],[34.089,-10.026],[37.368,5.733],[29.066,7.69],[14.204,-4.352],[-48.683,7.752],[-44.074,-13.561]],"v":[[-10.5,-27.5],[-11.499,-27.482],[-12.5,-27.5],[-95.281,-7.922],[-175.5,14.5],[-215.921,13.041],[-252.5,7.5],[-263.902,4.255],[-276.5,3.5],[-273.193,6.679],[-267.5,8.5],[-221.303,17.26],[-172.5,18.5],[-68.5,-12.5],[52.5,-21.5],[160.5,6.5],[274.5,7.5],[261.5,5.5],[134.5,-5.5]],"c":true}],"h":1},{"t":89,"s":[{"i":[[38.588,-3.017],[0.335,0.009],[0.332,-0.011],[23.329,-8.463],[23.556,-5.258],[16.519,1.043],[14.564,2.811],[8.318,0.941],[-9.015,-2.908],[-9.338,-1.612],[-7.893,-1.053],[-27.281,8.775],[-28.482,6.02],[-21.608,-0.918],[-18.825,-4.344],[-67.92,9.941],[3.103,3.103],[10.418,-0.88],[45.631,12.515]],"o":[[-0.33,0.026],[-0.335,-0.009],[-27.129,0.89],[-23.329,8.463],[-13.361,2.982],[-16.519,-1.043],[-0.743,-0.143],[-8.318,-0.941],[7.755,2.501],[9.338,1.612],[38.395,5.12],[27.281,-8.775],[23.744,-5.018],[21.608,0.919],[56.074,12.94],[1.838,-0.269],[-2.903,-2.903],[-60.054,5.071],[-31.707,-8.696]],"v":[[-6.5,-27.5],[-7.499,-27.489],[-8.5,-27.5],[-83.18,-10.776],[-152.5,12.5],[-198.598,14.845],[-246.5,8.5],[-266.319,5.712],[-271.5,7.5],[-245.103,13.586],[-218.5,17.5],[-123.065,7.854],[-42.5,-18.5],[25.689,-24.022],[86.5,-15.5],[259.5,9.5],[279.5,3.5],[242.5,7.5],[103.5,-15.5]],"c":true}],"h":1},{"t":90,"s":[{"i":[[51.651,-4.039],[0.335,0.009],[0.332,-0.011],[23.77,-8.714],[24.267,-5.236],[19.452,2.611],[15.65,2.558],[3.185,0.541],[1.038,-1.038],[-2.231,-0.941],[-1.047,-0.264],[-20.703,-2.199],[-18.381,4.288],[-34.636,9.146],[-43.298,-6.759],[-35.359,-8.612],[-30.748,9.42],[7.971,-1.111],[31.909,9.546]],"o":[[-0.33,0.026],[-0.334,-0.009],[-27.653,0.908],[-23.77,8.714],[-18.543,4.001],[-19.452,-2.611],[0.778,0.127],[-3.185,-0.541],[-0.971,0.971],[2.231,0.941],[17.808,4.493],[20.703,2.199],[32.02,-7.47],[33.396,-8.818],[35.256,5.504],[27.588,6.719],[14.215,-4.355],[-46.952,6.544],[-43.014,-12.869]],"v":[[-2.5,-27.5],[-3.499,-27.489],[-4.5,-27.5],[-80.54,-10.246],[-151.5,13.5],[-209.669,13.919],[-263.5,4.5],[-268.638,3.316],[-276.5,3.5],[-273.514,6.531],[-267.5,8.5],[-208.43,19.586],[-148.5,17.5],[-51.5,-14.5],[63.5,-20.5],[166.5,5.5],[274.5,7.5],[261.5,5.5],[138.5,-6.5]],"c":true}],"h":1},{"t":91,"s":[{"i":[[38.367,-2.837],[0.335,0.006],[0.33,-0.001],[24.583,-9.275],[24.108,-4.86],[16.878,1.575],[13.105,2.598],[7.089,1.696],[1.927,-1.927],[-2.244,-0.942],[-2.639,-0.617],[-19.901,-2.57],[-16.798,2.927],[-27.217,9.008],[-37.962,0],[-29.031,-7.994],[-56.067,14.938],[9.685,-0.716],[43.952,11.747]],"o":[[-0.329,0.024],[-0.335,-0.006],[-28.561,0.041],[-24.583,9.275],[-14.383,2.9],[-16.878,-1.575],[-0.718,-0.143],[-7.089,-1.696],[-0.615,0.615],[2.244,0.942],[15.597,3.647],[19.901,2.57],[29.363,-5.117],[27.488,-9.097],[36.682,0],[42.792,11.783],[20.597,-5.488],[-58.283,4.31],[-31.982,-8.548]],"v":[[2.5,-27.5],[1.501,-27.482],[0.5,-27.5],[-78.34,-10.114],[-150.5,14.5],[-198.959,15.623],[-245.5,8.5],[-260.094,4.448],[-276.5,3.5],[-273.441,5.998],[-265.5,8.5],[-210.401,18.93],[-153.5,19.5],[-70.5,-7.5],[23.5,-24.5],[119.5,-9.5],[273.5,7.5],[245.5,7.5],[110.5,-15.5]],"c":true}],"h":1},{"t":92,"s":[{"i":[[49.516,-3.872],[0.335,0.009],[0.332,-0.011],[24.733,-9.317],[25.102,-4.749],[17.119,1.774],[13.592,2.727],[6.88,1.55],[0.69,-1.56],[-1.904,-0.858],[2.078,0.651],[-4.188,-0.902],[-37.133,7.829],[-33.936,9.493],[-44.686,-5.634],[-37.428,-9.019],[-33.313,8.938],[10.014,-0.76],[27.321,8.22]],"o":[[-0.33,0.026],[-0.335,-0.009],[-29.967,0.984],[-24.733,9.317],[-14.933,2.825],[-17.119,-1.774],[-1.791,-0.36],[-6.88,-1.55],[-0.539,1.219],[1.904,0.858],[5.121,1.605],[35.128,7.562],[33.06,-6.971],[32.499,-9.091],[35.624,4.492],[26.928,6.489],[18.726,-5.024],[-42.211,3.203],[-44.387,-13.355]],"v":[[6.5,-27.5],[5.501,-27.489],[4.5,-27.5],[-76.149,-8.824],[-149.5,15.5],[-199.005,16.164],[-246.5,8.5],[-262.325,4.56],[-276.5,3.5],[-272.846,6.902],[-271.5,7.5],[-263.5,8.5],[-148.5,19.5],[-51.5,-12.5],[63.5,-22.5],[167.5,2.5],[274.5,7.5],[243.5,6.5],[142.5,-7.5]],"c":true}],"h":1},{"t":93,"s":[{"i":[[37.62,-2.782],[13.5,-3.48],[14.45,-4.782],[13.473,-4.816],[12.856,-1.681],[16.182,2.516],[15.56,3.122],[5.687,0.883],[0.476,-1.09],[-2.703,-0.477],[-0.996,-0.237],[-32.243,0],[-33.461,10.526],[-37.614,0.394],[-28.393,-7.558],[-35.098,-2.128],[-14.876,4.395],[5.115,-0.255],[41.708,11.147]],"o":[[-17.551,1.297],[-13.5,3.48],[-12.251,4.054],[-13.473,4.816],[-16.712,2.185],[-16.182,-2.516],[-2.777,-0.557],[-5.687,-0.883],[-0.809,1.854],[2.703,0.477],[29.838,7.096],[42.604,0],[27.35,-8.604],[37.785,-0.396],[28.563,7.603],[18.252,1.106],[19.316,-5.707],[-53.553,2.668],[-31.788,-8.496]],"v":[[11.5,-27.5],[-33.825,-20.114],[-74.5,-7.5],[-113.546,6.78],[-153.5,17.5],[-202.864,15.98],[-250.5,6.5],[-265.226,3.765],[-276.5,3.5],[-272.354,6.713],[-265.5,7.5],[-171.5,22.5],[-67.5,-6.5],[26.5,-24.5],[123.5,-10.5],[214.5,10.5],[274.5,7.5],[246.5,6.5],[117.5,-15.5]],"c":true}],"h":1},{"t":94,"s":[{"i":[[47.458,-3.509],[14.076,-3.288],[13.702,-4.665],[12.906,-4.711],[13.2,-2.669],[20.244,3.527],[14.497,2.64],[2.829,-0.225],[-6.824,-1.74],[-20.224,-3.477],[-20.782,2.325],[-8.462,2.836],[-7.804,2.723],[-25.588,6.42],[-35.203,-3.209],[-76.71,6.388],[2.632,2.632],[9.777,-0.574],[27.638,8.488]],"o":[[-15.995,1.183],[-14.076,3.288],[-13.177,4.487],[-12.906,4.711],[-18.529,3.747],[-20.243,-3.527],[-3.508,-0.639],[-2.829,0.225],[17.322,4.417],[20.224,3.477],[8.347,-0.934],[8.462,-2.836],[24.444,-8.53],[25.588,-6.42],[67.629,6.166],[3.899,-0.325],[-2.686,-2.686],[-42.713,2.509],[-42.866,-13.165]],"v":[[15.5,-27.5],[-29.22,-20.612],[-70.5,-8.5],[-109.482,5.863],[-148.5,17.5],[-208.524,15.791],[-262.5,4.5],[-274.249,3.716],[-270.5,6.5],[-213.595,19.556],[-151.5,22.5],[-126.093,16.343],[-101.5,7.5],[-28.569,-16.805],[60.5,-23.5],[252.5,9.5],[279.5,3.5],[245.5,6.5],[147.5,-8.5]],"c":true}],"h":1},{"t":95,"s":[{"i":[[42.923,-3.357],[14.777,-3.718],[13.408,-4.761],[13.953,-4.961],[14.713,-1.371],[16.132,2.655],[12.815,2.746],[6.56,1.539],[1.616,-1.617],[-3.422,-0.793],[-0.938,-0.203],[-18.886,-3.637],[-19.58,2.19],[-13.859,4.587],[-52.77,2.224],[-29.27,-8.06],[-56.236,8.354],[11.589,-1.074],[40.462,11.608]],"o":[[-17.485,1.367],[-14.777,3.718],[-13.477,4.785],[-13.953,4.961],[-14.656,1.366],[-16.132,-2.655],[-2.144,-0.46],[-6.56,-1.539],[-1.625,1.625],[3.422,0.793],[16.875,3.641],[18.886,3.637],[14.641,-1.638],[43.309,-14.334],[39.317,-1.657],[42.604,11.732],[19.074,-2.834],[-52.19,4.837],[-36.497,-10.47]],"v":[[19.5,-27.5],[-28.558,-19.545],[-70.5,-6.5],[-111.573,9.061],[-154.5,19.5],[-201.881,16.584],[-246.5,7.5],[-261.896,3.443],[-276.5,2.5],[-271.923,6.067],[-263.5,7.5],[-209.529,19.873],[-151.5,23.5],[-108.5,10.5],[26.5,-24.5],[127.5,-12.5],[266.5,7.5],[266.5,3.5],[137.5,-12.5]],"c":true}],"h":1},{"t":96,"s":[{"i":[[45.738,-3.382],[14.571,-3.707],[14.62,-4.908],[13.749,-4.743],[14.456,-2.478],[17.652,2.974],[12.49,2.658],[6.868,1.547],[1.423,-1.423],[-3.509,-0.883],[-0.353,-0.075],[-18.638,-3.818],[-19.151,1.962],[-8.577,2.618],[-8.062,2.645],[-68.548,-2.74],[-82.043,9.895],[10.467,-0.754],[34.323,10.6]],"o":[[-17.096,1.264],[-14.571,3.707],[-13.547,4.548],[-13.749,4.744],[-14.904,2.555],[-17.652,-2.974],[-1.106,-0.236],[-6.868,-1.547],[-1.391,1.391],[3.509,0.883],[17.297,3.689],[18.638,3.818],[8.63,-0.884],[8.577,-2.618],[49.498,-16.236],[72.656,2.904],[12.144,-1.465],[-47.338,3.408],[-37.952,-11.721]],"v":[[24.5,-27.5],[-22.357,-19.733],[-65.5,-6.5],[-106.318,8.052],[-148.5,19.5],[-199.31,17.409],[-246.5,7.5],[-261.262,3.756],[-276.5,2.5],[-271.308,5.987],[-263.5,7.5],[-209.391,20.238],[-152.5,24.5],[-126.574,18.82],[-101.5,10.5],[58.5,-24.5],[266.5,7.5],[272.5,3.5],[152.5,-9.5]],"c":true}],"h":1},{"t":97,"s":[{"i":[[34.958,-2.585],[15.333,-3.725],[13.757,-4.851],[14.091,-5.16],[14.936,-1.53],[16.65,2.969],[13.058,2.798],[6.955,1.608],[1.918,-1.917],[-1.475,-0.729],[-0.14,-0.042],[-9.439,-1.81],[-5.5,-1.151],[-20.533,2.734],[-28.108,9.436],[-35.207,2.603],[-86.471,2.99],[28.319,-2.274],[46.269,11.898]],"o":[[-16.913,1.251],[-15.333,3.725],[-13.7,4.831],[-14.091,5.16],[-16.34,1.674],[-16.65,-2.969],[-2.262,-0.485],[-6.955,-1.608],[-1.04,1.04],[1.475,0.729],[8.745,2.61],[9.439,1.81],[25.415,5.321],[31.282,-4.165],[26.766,-8.986],[92.295,-6.824],[11.6,-0.401],[-59.861,4.806],[-30.267,-7.783]],"v":[[28.5,-27.5],[-19.867,-19.7],[-63.5,-6.5],[-105.073,9.476],[-148.5,20.5],[-198.962,17.354],[-244.5,7.5],[-260.758,3.198],[-276.5,2.5],[-274.885,5.248],[-271.5,6.5],[-243.066,13.094],[-219.5,17.5],[-147.5,24.5],[-61.5,-2.5],[29.5,-24.5],[253.5,8.5],[266.5,3.5],[131.5,-17.5]],"c":true}],"h":1},{"t":98,"s":[{"i":[[43.843,-3.428],[15.616,-3.916],[14.197,-4.98],[14.552,-5.151],[15.673,-1.441],[16.522,3.424],[13.588,2.806],[7.286,1.238],[0.546,-1.224],[-7.273,-1.463],[-1.709,-0.349],[-16.017,-3.46],[-19.288,2.038],[-31.85,10.75],[-44.659,-0.467],[-35.764,-10.841],[-34.28,8.234],[5.418,-0.422],[30.146,9.977]],"o":[[-17.339,1.356],[-15.616,3.916],[-14.119,4.953],[-14.552,5.151],[-16.322,1.501],[-16.522,-3.424],[-1.31,-0.271],[-7.286,-1.238],[-0.802,1.798],[7.273,1.463],[15.642,3.199],[16.018,3.46],[34.743,-3.672],[31.442,-10.612],[40.386,0.423],[25.857,7.838],[14.297,-3.434],[-43.154,3.363],[-36.15,-11.964]],"v":[[32.5,-27.5],[-16.856,-19.218],[-61.5,-5.5],[-104.335,10.634],[-149.5,21.5],[-199.551,17.23],[-245.5,6.5],[-261.573,3.379],[-276.5,2.5],[-263.383,7.586],[-246.5,10.5],[-199.735,21.928],[-147.5,25.5],[-49.5,-4.5],[59.5,-24.5],[167.5,-3.5],[273.5,6.5],[264.5,3.5],[156.5,-10.5]],"c":true}],"h":1},{"t":99,"s":[{"i":[[38.659,-2.858],[16.378,-4.115],[14.85,-5.236],[15.28,-5.323],[16.346,-0.582],[15.847,3.332],[14.627,3.207],[7.269,1.32],[0.669,-1.556],[-7.084,-1.59],[-1.25,-0.275],[-15.697,-3.386],[-18.365,1.032],[-16.147,5.108],[-65.292,0],[-35.578,-10.927],[-34.072,7.506],[6.387,-0.406],[37.79,10.695]],"o":[[-17.636,1.304],[-16.378,4.115],[-14.532,5.125],[-15.28,5.323],[-14.983,0.534],[-15.847,-3.332],[-1.254,-0.275],[-7.269,-1.32],[-0.587,1.365],[7.084,1.59],[15.844,3.489],[15.698,3.386],[17.472,-0.982],[50.584,-16.001],[42.125,0],[25.372,7.792],[14.387,-3.17],[-49.456,3.147],[-31.02,-8.779]],"v":[[37.5,-27.5],[-13.589,-18.949],[-60.5,-4.5],[-105.14,12.407],[-152.5,22.5],[-199.267,17.305],[-245.5,6.5],[-261.438,3.127],[-276.5,2.5],[-263.378,7.318],[-247.5,10.5],[-200.891,21.891],[-150.5,26.5],[-99.5,13.5],[57.5,-24.5],[167.5,-4.5],[273.5,6.5],[263.5,3.5],[145.5,-15.5]],"c":true}],"h":1},{"t":100,"s":[{"i":[[42.267,-3.305],[16.023,-4.104],[14.617,-5.154],[15.018,-5.12],[16.451,-1.415],[17.02,3.765],[16.52,3.435],[7.36,0.598],[-4.856,-1.684],[-10.703,-2.156],[-6.75,-1.45],[-20.589,0.88],[-16.313,5.019],[-64.234,0.673],[-35.128,-10.809],[-37.591,3.397],[13.495,0.245],[-2.642,0],[22.03,7.396]],"o":[[-18.289,1.43],[-16.023,4.104],[-14.478,5.105],[-15.018,5.12],[-17.399,1.497],[-17.02,-3.765],[-1.416,-0.295],[-7.36,-0.597],[8.436,2.926],[10.703,2.156],[16.768,3.601],[16.957,-0.725],[49.945,-15.368],[41.599,-0.436],[25.619,7.883],[8.15,-0.737],[-3.573,-0.065],[-35.025,0],[-38.01,-12.761]],"v":[[41.5,-27.5],[-9.754,-18.793],[-55.5,-4.5],[-99.521,11.768],[-146.5,22.5],[-198.159,17.699],[-248.5,5.5],[-266.203,3.516],[-274.5,4.5],[-244.235,12.108],[-216.5,17.5],[-150.5,27.5],[-98.5,15.5],[56.5,-24.5],[167.5,-6.5],[265.5,6.5],[272.5,2.5],[248.5,3.5],[161.5,-11.5]],"c":true}],"h":1},{"t":101,"s":[{"i":[[41.388,-3.236],[16.631,-4.296],[15.069,-5.378],[15.917,-5.274],[17.363,-0.562],[10.359,1.857],[12.793,2.92],[9.337,2.473],[8.755,0.307],[-3.35,-1.194],[-2.802,-0.511],[-11.436,-2.703],[-22.174,1.345],[-31.468,11.039],[-41.867,1.003],[-34.13,-10.975],[-35.766,7.394],[6.002,0.145],[20.039,6.549]],"o":[[-18.405,1.439],[-16.631,4.296],[-14.969,5.343],[-15.917,5.274],[-10.769,0.348],[-10.359,-1.857],[-7.896,-1.803],[-9.337,-2.473],[-8.203,-0.288],[3.35,1.194],[15.523,2.835],[16.885,3.991],[36.606,-2.221],[30.78,-10.797],[41.713,-0.999],[24.424,7.853],[20.282,-4.193],[-32.707,-0.789],[-38.493,-12.581]],"v":[[45.5,-27.5],[-7.002,-18.455],[-54.5,-3.5],[-100.704,13.586],[-150.5,23.5],[-181.482,20.951],[-215.5,13.5],[-241.856,6.378],[-269.5,1.5],[-273.754,3.401],[-261.5,6.5],[-214.5,17.5],[-147.5,27.5],[-47.5,-1.5],[58.5,-24.5],[169.5,-6.5],[274.5,6.5],[247.5,3.5],[163.5,-12.5]],"c":true}],"h":1},{"t":102,"s":[{"i":[[32.732,-2.42],[16.776,-4.524],[15.381,-5.462],[16.979,-5.458],[16.931,-0.142],[16.44,3.767],[14.272,3.051],[8.328,1.152],[-3.283,-1.815],[-5.96,-0.993],[-2.397,-0.498],[-16.542,-4.086],[-16.058,0.625],[-16.794,4.818],[-59.632,2.513],[-35.191,-11.275],[-35.553,7.915],[8.101,0.503],[29.78,8.152]],"o":[[-19.513,1.443],[-16.777,4.524],[-14.151,5.025],[-16.979,5.458],[-13.969,0.117],[-16.44,-3.767],[-0.971,-0.207],[-8.328,-1.152],[2.763,1.528],[5.96,0.993],[15.774,3.28],[16.542,4.086],[17.72,-0.69],[49.967,-14.335],[43.951,-1.852],[24.484,7.844],[19.669,-4.379],[-32.59,-2.025],[-28.182,-7.714]],"v":[[50.5,-27.5],[-3.599,-18.014],[-51.5,-2.5],[-98.915,14.662],[-150.5,24.5],[-197.273,17.876],[-244.5,6.5],[-263.19,3.483],[-275.5,3.5],[-260.726,7.272],[-246.5,9.5],[-197.713,21.928],[-148.5,28.5],[-96.5,16.5],[56.5,-24.5],[168.5,-7.5],[273.5,5.5],[235.5,2.5],[149.5,-18.5]],"c":true}],"h":1},{"t":103,"s":[{"i":[[33.64,-2.631],[16.745,-4.676],[15.688,-5.706],[16.875,-5.062],[18.382,-0.255],[16.65,4.02],[15.169,3.117],[7.516,1.177],[-0.041,-2.114],[-3.261,-0.594],[-1.93,-0.329],[-11.426,-2.789],[-23.109,1.165],[-31.112,11.258],[-39.102,2.473],[-56.184,-7.879],[-16.102,3.371],[3.232,-0.101],[35.481,11.039]],"o":[[-20.332,1.59],[-16.745,4.676],[-15.117,5.498],[-16.875,5.062],[-14.233,0.197],[-16.65,-4.02],[-1.978,-0.406],[-7.516,-1.177],[0.025,1.296],[3.261,0.594],[17.731,3.025],[22.445,5.478],[36.104,-1.82],[30.311,-10.969],[67.341,-4.26],[12.246,1.717],[20.063,-4.201],[-45.048,1.413],[-28.109,-8.745]],"v":[[54.5,-27.5],[-0.483,-17.587],[-48.5,-1.5],[-96.551,15.432],[-149.5,24.5],[-196.798,17.486],[-245.5,5.5],[-263.014,2.11],[-277.5,2.5],[-271.429,5.226],[-262.5,6.5],[-212.5,16.5],[-145.5,28.5],[-44.5,1.5],[57.5,-24.5],[221.5,3.5],[273.5,5.5],[262.5,2.5],[154.5,-17.5]],"c":true}],"h":1},{"t":104,"s":[{"i":[[34.834,-2.724],[16.774,-4.48],[16.064,-5.606],[18.721,-5.676],[20.714,1.425],[18.814,4.604],[16.744,2.554],[3.403,-0.16],[-8.333,-1.776],[-15.167,-3.788],[-19.722,-0.076],[-22.841,7.56],[-22.387,6.876],[-51.261,-13.81],[-17.236,-4.012],[-18.653,0.088],[1.612,3.306],[3.88,0.042],[25.227,8.349]],"o":[[-18.841,1.474],[-16.774,4.48],[-16.401,5.723],[-18.721,5.675],[-15.002,-1.032],[-18.814,-4.604],[-2.721,-0.415],[-3.403,0.16],[19.615,4.179],[16.096,4.021],[24.086,0.093],[22.793,-7.543],[45.867,-14.087],[15.575,4.196],[19.491,4.537],[0.791,-0.004],[-1.052,-2.156],[-33.135,-0.358],[-29.002,-9.599]],"v":[[58.5,-27.5],[5.418,-18.099],[-43.5,-2.5],[-96.265,16.361],[-155.5,24.5],[-207.694,14.642],[-262.5,2.5],[-274.79,1.857],[-270.5,4.5],[-213.5,16.5],[-148.5,29.5],[-75.5,12.5],[-7.5,-9.5],[150.5,-16.5],[199.5,-0.5],[258.5,6.5],[279.5,2.5],[255.5,2.5],[161.5,-16.5]],"c":true}],"h":1},{"t":105,"s":[{"i":[[34.017,-2.515],[17.725,-4.893],[16.426,-5.974],[18.298,-5.307],[18.204,0.538],[16.43,4.383],[15.008,3.047],[8.039,1.011],[-0.114,-2.24],[-8.182,-1.2],[-0.212,-0.043],[-15.425,-4.291],[-17.178,-0.37],[-30.324,10.861],[-37.633,4.272],[-32.726,-10.562],[-29.991,-1.037],[34.813,0],[31.459,10.412]],"o":[[-19.675,1.455],[-17.725,4.893],[-14.604,5.312],[-18.298,5.307],[-14.273,-0.422],[-16.43,-4.383],[-0.957,-0.194],[-8.039,-1.012],[0.059,1.157],[8.182,1.2],[17.12,3.468],[15.425,4.29],[36.692,0.79],[30.787,-11.026],[42.836,-4.862],[21.789,7.032],[15.352,0.531],[-43.113,0],[-26.453,-8.755]],"v":[[63.5,-27.5],[7.563,-17.39],[-43.5,-0.5],[-93.8,16.888],[-149.5,25.5],[-196.448,16.969],[-244.5,4.5],[-261.803,1.674],[-277.5,2.5],[-261.115,6.336],[-244.5,8.5],[-196.543,21.324],[-148.5,29.5],[-45.5,4.5],[55.5,-23.5],[169.5,-10.5],[249.5,5.5],[262.5,1.5],[158.5,-17.5]],"c":true}],"h":1},{"t":106,"s":[{"i":[[40.072,-3.134],[17.733,-5.073],[17.276,-6.082],[18.917,-5.2],[19.316,1.085],[15.66,4.292],[15.262,3.04],[8.524,0.677],[-9.068,-2.299],[-10.383,-2.027],[-6.315,-1.571],[-11.136,-2.78],[-9.887,-0.498],[-30.946,10.856],[-37.544,4.845],[-33.982,-10.808],[-31.265,-2.013],[34.085,0.403],[23.53,7.443]],"o":[[-20.793,1.626],[-17.733,5.073],[-15.016,5.286],[-18.917,5.2],[-14.1,-0.793],[-15.66,-4.292],[-2.971,-0.592],[-8.524,-0.677],[9.154,2.321],[10.383,2.027],[9.569,2.38],[11.136,2.78],[38.581,1.945],[31.343,-10.995],[41.727,-5.385],[23.314,7.415],[10.229,0.659],[-36.988,-0.438],[-34.008,-10.758]],"v":[[67.5,-27.5],[10.363,-16.842],[-41.5,0.5],[-93.275,17.779],[-151.5,25.5],[-196.628,16.686],[-243.5,4.5],[-266.53,1.832],[-271.5,3.5],[-240.871,10.063],[-214.5,15.5],[-182.739,23.911],[-150.5,29.5],[-45.5,5.5],[55.5,-22.5],[169.5,-11.5],[249.5,5.5],[265.5,1.5],[174.5,-13.5]],"c":true}],"h":1},{"t":107,"s":[{"i":[[-0.111,0.009],[18.474,-5.069],[16.633,-6.122],[19.419,-5.316],[20.354,1.775],[15.579,4.446],[15.603,2.989],[7.618,0.963],[0.579,-1.226],[-3.704,-0.474],[-1.103,-0.162],[-37.095,-2.814],[-23.317,7.161],[-84.242,-20.257],[-35.536,-2.807],[32.829,1.478],[10.24,0.698],[21.93,6.798],[41.375,-3.039]],"o":[[-20.469,1.601],[-18.474,5.069],[-14.968,5.51],[-19.42,5.316],[-14.082,-1.228],[-15.579,-4.446],[-1.95,-0.373],[-7.618,-0.963],[-0.917,1.941],[3.703,0.474],[39.733,5.833],[27.18,2.062],[64.201,-19.717],[29.591,7.116],[10.787,0.852],[-15.095,-0.68],[-31.302,-2.134],[-33.51,-10.388],[-0.618,0.045]],"v":[[71.5,-27.5],[13.123,-16.891],[-39.5,0.5],[-91.96,18.463],[-152.5,25.5],[-197.358,15.821],[-244.5,3.5],[-262.028,0.8],[-277.5,0.5],[-271.515,3.834],[-262.5,4.5],[-151.5,29.5],[-74.5,16.5],[149.5,-19.5],[243.5,4.5],[266.5,1.5],[252.5,0.5],[176.5,-13.5],[72.5,-28.5]],"c":true}],"h":1},{"t":108,"s":[{"i":[[-0.12,0.009],[18.674,-5.3],[17.668,-6.274],[19.388,-5.026],[21.586,2.089],[15.509,4.393],[15.514,3.031],[7.415,1.028],[0.73,-1.621],[-7.523,-1.405],[-1.414,-0.255],[-34.236,-2.945],[-30.931,10.794],[-35.572,6.215],[-33.624,-10.871],[-38.747,2.557],[0.981,0.041],[17.066,5.251],[40.896,-3.004]],"o":[[-20.638,1.526],[-18.674,5.3],[-16.861,5.987],[-19.388,5.025],[-14.452,-1.398],[-15.509,-4.393],[-2.611,-0.51],[-7.415,-1.028],[-0.506,1.124],[7.523,1.405],[34.701,6.272],[39.539,3.401],[31.601,-11.028],[40.042,-6.996],[30.25,9.78],[22.559,-1.489],[-26.033,-1.097],[-34.034,-10.472],[-0.612,0.045]],"v":[[76.5,-27.5],[17.773,-16.561],[-36.5,1.5],[-90.956,19.557],[-152.5,25.5],[-197.703,15.724],[-244.5,3.5],[-262.411,0.402],[-277.5,0.5],[-263.44,4.651],[-246.5,7.5],[-151.5,29.5],[-43.5,8.5],[55.5,-21.5],[170.5,-13.5],[272.5,4.5],[252.5,0.5],[179.5,-13.5],[77.5,-28.5]],"c":true}],"h":1},{"t":109,"s":[{"i":[[20.682,-1.617],[18.566,-5.492],[18.272,-6.354],[20.177,-4.896],[22.29,2.494],[18.439,5.262],[18.365,2.176],[3.27,-0.514],[-7.73,-1.378],[-9.672,-1.535],[-7.811,-1.988],[-10.998,-3.267],[-9.183,-0.941],[-31.12,10.447],[-63.962,-2.696],[-58.956,0.33],[16.907,0.799],[14.5,1.533],[31.522,7.58]],"o":[[-21.466,1.678],[-18.566,5.492],[-17,5.912],[-20.178,4.895],[-15.88,-1.776],[-18.439,-5.262],[-3.651,-0.432],[-3.27,0.514],[10.5,1.873],[9.672,1.535],[7.824,1.992],[10.998,3.267],[41.147,4.215],[46.336,-15.556],[53.921,2.272],[9.959,-0.056],[-15.742,-0.744],[-38.553,-4.075],[-20.931,-5.033]],"v":[[80.5,-27.5],[21.105,-16.007],[-33.5,2.5],[-89.532,20.304],[-153.5,25.5],[-205.636,13.3],[-261.5,0.5],[-274.536,0.642],[-270.5,3.5],[-239.983,8.413],[-213.5,13.5],[-184.02,22.288],[-152.5,29.5],[-43.5,9.5],[116.5,-24.5],[265.5,4.5],[271.5,0.5],[243.5,-0.5],[151.5,-24.5]],"c":true}],"h":1},{"t":110,"s":[{"i":[[17.24,-1.275],[19.072,-5.465],[18.073,-6.54],[20.37,-4.818],[23.084,2.582],[15.297,4.685],[15.359,2.755],[8.672,0.348],[-9.036,-1.992],[-10.484,-1.808],[-6.367,-1.63],[-10.767,-3.148],[-9.374,-0.96],[-43.465,15.433],[-55.268,-12.282],[-23.583,-5.61],[-19.604,2.465],[9.378,0.972],[30.896,6.866]],"o":[[-21.638,1.6],[-19.072,5.465],[-17.436,6.309],[-20.37,4.818],[-13.455,-1.505],[-15.297,-4.685],[-3.349,-0.601],[-8.672,-0.348],[9.697,2.139],[10.484,1.808],[9.558,2.448],[10.767,3.148],[55.823,5.718],[46.023,-16.341],[17.815,3.959],[16.554,3.938],[21.589,-2.714],[-37.066,-3.842],[-19.444,-4.321]],"v":[[85.5,-27.5],[24.827,-16.205],[-30.5,2.5],[-87.264,20.668],[-152.5,25.5],[-196.072,14.937],[-242.5,2.5],[-266.289,0.555],[-271.5,2.5],[-240.002,8.381],[-213.5,13.5],[-182.362,22.616],[-151.5,29.5],[-4.5,-2.5],[150.5,-21.5],[211.5,-3.5],[272.5,4.5],[243.5,-1.5],[150.5,-25.5]],"c":true}],"h":1},{"t":111,"s":[{"i":[[13.519,-1],[19.089,-5.738],[18.096,-6.381],[20.655,-4.638],[23.989,2.684],[10.314,3.048],[10.854,2.814],[13.603,2.414],[1.447,-3.034],[12.423,2.766],[-14.615,-3.789],[-18.746,-2.081],[-43.007,14.956],[-56.87,-10.786],[-25.698,-6.5],[-18.04,-0.624],[12.683,1.85],[10.675,1.221],[29.47,5.617]],"o":[[-22.547,1.667],[-19.089,5.738],[-17.392,6.133],[-20.655,4.638],[-8.889,-0.995],[-10.314,-3.048],[-3.584,-0.929],[-5.627,-0.999],[-1.775,3.723],[20.895,4.652],[20.039,5.195],[57.102,6.34],[45.55,-15.84],[22.453,4.258],[11.208,2.835],[2.158,0.075],[-12.812,-1.868],[-36.274,-4.148],[-18.085,-3.447]],"v":[[89.5,-27.5],[27.662,-15.535],[-27.5,3.5],[-84.552,21.112],[-151.5,25.5],[-180.526,18.865],[-212.5,9.5],[-243.5,2.5],[-277.5,-0.5],[-271.5,2.5],[-213.5,13.5],[-151.5,29.5],[-4.5,-1.5],[148.5,-22.5],[209.5,-4.5],[261.5,3.5],[276.5,0.5],[243.5,-1.5],[148.5,-26.5]],"c":true}],"h":1},{"t":112,"s":[{"i":[[12.132,-0.949],[19.191,-5.757],[18.441,-6.191],[20.868,-4.747],[24.734,2.962],[10.376,3.053],[10.988,2.768],[14.037,2.318],[1.933,-4.122],[0.624,0.114],[-13.786,-3.559],[-19.317,-2.145],[-44.972,15.968],[-57.027,-11.141],[-13.977,-3.52],[-14.31,-1.75],[10.644,4.678],[7.894,1.012],[30.76,5.588]],"o":[[-22.796,1.782],[-19.191,5.757],[-17.793,5.973],[-20.868,4.747],[-8.509,-1.019],[-10.376,-3.053],[-5.471,-1.378],[-5.521,-0.912],[-1.539,3.282],[20.989,3.833],[22.154,5.72],[58.153,6.457],[43.735,-15.529],[17.848,3.487],[10.094,2.542],[4.107,0.502],[-7.875,-3.461],[-37.123,-4.759],[-16.614,-3.018]],"v":[[93.5,-27.5],[31.234,-15.306],[-24.5,3.5],[-82.294,21.202],[-150.5,25.5],[-179.141,18.811],[-211.5,9.5],[-243.5,2.5],[-277.5,-0.5],[-271.5,2.5],[-211.5,12.5],[-149.5,29.5],[-1.5,-0.5],[150.5,-22.5],[209.5,-4.5],[242.5,1.5],[276.5,0.5],[244.5,-2.5],[149.5,-26.5]],"c":true}],"h":1},{"t":113,"s":[{"i":[[9.937,-0.735],[19.866,-5.702],[18.637,-6.572],[21.159,-4.633],[25.023,2.997],[23.206,5.785],[14.63,2.496],[1.694,-3.591],[0.105,0.016],[-12.185,-3.108],[-19.59,-2.175],[-44.941,16.04],[-55.923,-9.874],[-22.164,-5.653],[-15.968,-2.436],[-2.204,4.476],[7.812,1.001],[13.951,3.463],[16.09,2.841]],"o":[[-21.898,1.619],[-19.866,5.702],[-18.34,6.467],[-21.159,4.633],[-17.978,-2.153],[-7.755,-1.933],[-5.357,-0.914],[-1.332,2.825],[20.182,3.033],[21.084,5.377],[58.04,6.444],[42.74,-15.255],[17.848,3.151],[6.965,1.776],[3.167,0.483],[0.923,-1.875],[-18.955,-2.429],[-17.187,-4.266],[-15.155,-2.676]],"v":[[98.5,-27.5],[36.053,-15.714],[-21.5,3.5],[-80.487,21.598],[-149.5,25.5],[-210.5,8.5],[-242.5,1.5],[-277.5,-0.5],[-271.5,2.5],[-211.5,12.5],[-148.5,29.5],[-1.5,0.5],[149.5,-23.5],[209.5,-5.5],[242.5,0.5],[278.5,2.5],[272.5,-0.5],[211.5,-9.5],[149.5,-27.5]],"c":true}],"h":1},{"t":114,"s":[{"i":[[8.555,-0.633],[19.513,-5.954],[19.059,-6.489],[21.522,-4.41],[25.352,2.962],[20.185,6.447],[23.136,-0.905],[-0.339,-0.865],[-3.836,-0.336],[-11.013,-1.91],[-5.671,-1.462],[-10.209,-3.206],[-10.236,-1.103],[-110.783,-8.967],[-2.376,-0.426],[-33.839,-5.207],[20.751,4.037],[14.03,3.534],[15.951,2.648]],"o":[[-22.89,1.692],[-19.513,5.955],[-18.562,6.32],[-21.522,4.41],[-18.125,-2.117],[-20.185,-6.447],[-5.191,0.203],[0.339,0.865],[10.275,0.9],[11.014,1.91],[11.928,3.073],[10.209,3.206],[112.387,12.108],[2.602,0.211],[32.214,5.777],[6.256,0.963],[-20.076,-3.906],[-16.013,-4.033],[-13.727,-2.279]],"v":[[102.5,-27.5],[39.627,-15.098],[-17.5,4.5],[-77.408,21.962],[-147.5,25.5],[-204.742,9.733],[-269.5,-1.5],[-276.27,0.4],[-269.5,2.5],[-236.047,7.079],[-209.5,12.5],[-176.731,22.478],[-146.5,29.5],[142.5,-24.5],[150.5,-23.5],[243.5,0.5],[272.5,-0.5],[211.5,-9.5],[149.5,-27.5]],"c":true}],"h":1},{"t":115,"s":[{"i":[[5.324,-0.416],[19.19,-5.884],[19.779,-6.628],[21.367,-4.238],[25.56,2.308],[10.276,3.322],[14.408,3.675],[12.333,2.524],[8.676,-1.37],[-3.852,-0.318],[-8.163,-2.078],[-22.251,-1.984],[-42.222,15.383],[-56.906,-5.875],[-2.25,-0.468],[-33.331,-5.278],[22.97,4.157],[16.336,4.244],[17.853,1.764]],"o":[[-23.461,1.834],[-19.19,5.884],[-18.971,6.357],[-21.367,4.237],[-11.488,-1.037],[-10.276,-3.322],[-4.993,-1.274],[-12.333,-2.524],[-12.306,1.943],[16.743,1.381],[29.026,7.387],[57.996,5.173],[43.167,-15.728],[0.325,0.034],[26.731,5.562],[7.042,1.115],[-22.445,-4.062],[-19.61,-5.095],[-12.602,-1.245]],"v":[[106.5,-27.5],[43.739,-15.096],[-13.5,4.5],[-73.558,21.499],[-143.5,25.5],[-174.81,18.478],[-210.5,7.5],[-239.237,0.517],[-273.5,-2.5],[-262.5,2.5],[-211.5,11.5],[-142.5,29.5],[1.5,2.5],[146.5,-24.5],[151.5,-23.5],[242.5,-0.5],[271.5,-0.5],[209.5,-10.5],[145.5,-28.5]],"c":true}],"h":1},{"t":116,"s":[{"i":[[4.542,-0.336],[10.459,-2.261],[9.915,-3.05],[29.774,-8.395],[38.496,2.321],[22.803,5.816],[13.938,2.064],[1.688,-3.389],[23.655,3.031],[-16.153,-4.035],[-23.092,-1.265],[-43.167,15.222],[-55.689,-6.669],[-25.4,-6.424],[-16.875,-1.385],[0.109,4.097],[0.899,0.086],[14.661,3.739],[16.849,1.871]],"o":[[-12.249,0.905],[-10.459,2.261],[-28.41,8.742],[-29.773,8.395],[-24.595,-1.483],[-4.182,-1.066],[-5.999,-0.889],[-2.504,5.027],[23.133,2.964],[21.861,5.461],[56.674,3.105],[40.141,-14.155],[22.473,2.691],[10.44,2.641],[0.502,0.041],[-0.039,-1.455],[-21.269,-2.029],[-21.452,-5.471],[-11.864,-1.317]],"v":[[111.5,-27.5],[77.749,-22.609],[47.5,-14.5],[-37.936,13.797],[-138.5,25.5],[-209.5,6.5],[-242.5,0.5],[-277.5,-1.5],[-271.5,1.5],[-210.5,10.5],[-137.5,29.5],[5.5,2.5],[149.5,-24.5],[211.5,-7.5],[261.5,1.5],[278.5,0.5],[271.5,-1.5],[211.5,-11.5],[148.5,-28.5]],"c":true}],"h":1},{"t":117,"s":[{"i":[[3.996,-0.312],[15.623,-4.017],[15.434,-5.442],[23.826,-5.869],[30.228,1.045],[8.203,1.876],[7.323,2.191],[27.417,3.101],[-20.328,-2.762],[-5.214,-0.295],[-40.399,-7.567],[-64.803,16.221],[-30.126,-3.608],[-21.145,-5.493],[-16.984,-1.872],[15.551,2.557],[8.275,1.415],[8.979,2.229],[17.061,1.748]],"o":[[-19.072,1.492],[-15.624,4.016],[-21.466,7.569],[-23.826,5.869],[-8.866,-0.306],[-8.203,-1.876],[-25.015,-7.484],[-9.358,-1.058],[-4,-0.543],[46.211,2.611],[86.962,16.288],[24.331,-6.09],[18.331,2.195],[12.17,3.162],[7.272,0.801],[-12.716,-2.091],[-15.236,-2.606],[-21.808,-5.413],[-10.65,-1.091]],"v":[[115.5,-27.5],[64.272,-18.963],[18.5,-4.5],[-48.429,16.961],[-128.5,25.5],[-154.157,21.913],[-177.5,15.5],[-249.5,-1.5],[-271.5,1.5],[-261.5,1.5],[-148.5,27.5],[70.5,-16.5],[151.5,-24.5],[211.5,-7.5],[260.5,1.5],[272.5,-1.5],[245.5,-4.5],[212.5,-11.5],[149.5,-28.5]],"c":true}],"h":1},{"t":118,"s":[{"i":[[3.466,-0.271],[0.334,0.009],[0.332,-0.011],[41.282,-14.893],[54.293,10.067],[14.749,4.636],[19.12,2.698],[9.372,0.02],[-11.262,-1.613],[-14.919,-3.703],[-18.466,-3.714],[-44.143,15.19],[-23.019,6.041],[-30.432,-3.645],[-22.096,-5.647],[-14.985,-1.82],[15.795,3.243],[9.242,1.572],[27.531,3.057]],"o":[[-0.331,0.026],[-0.335,-0.009],[-45.58,1.496],[-41.282,14.893],[-14.883,-2.76],[-14.749,-4.636],[-3.776,-0.533],[-9.372,-0.02],[21.058,3.015],[16.144,4.007],[57.826,11.63],[21.97,-7.56],[24.166,-6.342],[18.522,2.218],[9.937,2.539],[6.551,0.796],[-11.891,-2.442],[-33.433,-5.688],[-10.094,-1.121]],"v":[[119.5,-27.5],[118.501,-27.489],[117.5,-27.5],[-8.465,6.673],[-147.5,23.5],[-190.822,11.454],[-240.5,-0.5],[-266.779,-1.609],[-270.5,0.5],[-209.5,9.5],[-148.5,27.5],[4.5,6.5],[71.5,-15.5],[152.5,-24.5],[213.5,-8.5],[260.5,1.5],[272.5,-1.5],[245.5,-4.5],[151.5,-28.5]],"c":true}],"h":1},{"t":119,"s":[{"i":[[2.022,-0.15],[11.685,-2.406],[10.963,-3.468],[10.18,-3.598],[9.919,-3.33],[24.462,-3.627],[25.962,5.952],[18.207,5.305],[21.415,0.94],[3.14,-0.992],[-8.616,-0.254],[-35.658,-7.924],[-64.07,17.573],[-28.078,-3.141],[-16.473,-4.089],[-12.817,-2.328],[-1.114,2.337],[5.351,0.901],[27.448,2.812]],"o":[[-12.297,0.909],[-11.685,2.406],[-10.362,3.277],[-10.18,3.598],[-19.189,6.442],[-24.462,3.628],[-16.757,-3.841],[-18.207,-5.305],[-5.057,-0.222],[-3.14,0.992],[50.313,1.48],[86.263,19.17],[23.186,-6.359],[18.65,2.086],[8.75,2.172],[6.821,1.239],[1.324,-2.777],[-33.633,-5.66],[-8.817,-0.903]],"v":[[124.5,-27.5],[88.5,-22.419],[54.5,-13.5],[23.668,-3.039],[-6.5,7.5],[-72.92,24.295],[-149.5,22.5],[-201.507,7.324],[-260.5,-3.5],[-275.254,-1.857],[-269.5,0.5],[-148.5,26.5],[72.5,-14.5],[152.5,-24.5],[213.5,-8.5],[244.5,-1.5],[278.5,1.5],[246.5,-5.5],[151.5,-28.5]],"c":true}],"h":1},{"t":120,"s":[{"i":[[46.351,-3.625],[21.6,-6.736],[21.773,-7.116],[25.318,-3.267],[26.013,6.511],[20.367,5.913],[22.558,-2.399],[-3.133,-0.742],[-3.787,-0.147],[-15.223,-3.51],[-13.046,-4.218],[-20.275,-0.961],[-17.465,3.157],[-16.139,5.358],[-15.784,5.375],[-39.484,-4.044],[-33.27,-6.373],[-3.824,3.824],[1.963,0.259]],"o":[[-24.826,1.941],[-21.6,6.736],[-19.716,6.444],[-25.317,3.267],[-14.972,-3.748],[-20.367,-5.913],[-8.321,0.885],[3.133,0.742],[19.063,0.742],[15.223,3.51],[16.435,5.314],[20.275,0.961],[17.66,-3.192],[16.139,-5.358],[29.573,-10.07],[30.41,3.115],[5.398,1.034],[2.708,-2.708],[-49.219,-6.499]],"v":[[128.5,-27.5],[59.71,-13.381],[-4.5,8.5],[-73.277,24.717],[-151.5,21.5],[-205.311,4.39],[-270.5,-3.5],[-275.581,-0.947],[-262.5,0.5],[-211.488,7.393],[-169.5,19.5],[-112.773,28.853],[-54.5,25.5],[-4.093,12.137],[43.5,-4.5],[152.5,-24.5],[244.5,-2.5],[278.5,1.5],[264.5,-3.5]],"c":true}],"h":1},{"t":121,"s":[{"i":[[38.134,-2.82],[22.215,-7.005],[22.303,-7.146],[26.038,-2.663],[26.001,6.332],[10.092,3.361],[11.442,2.56],[11.25,1.52],[9.08,-1.627],[-0.663,-0.77],[-2.971,0.086],[-16.897,-3.244],[-13.687,-4.595],[-37.808,5.368],[-31.376,10.797],[-39.27,-2.383],[-30.653,-6.062],[-1.37,2.952],[2.033,0.299]],"o":[[-24.838,1.837],[-22.215,7.004],[-20.846,6.679],[-26.038,2.663],[-8.19,-1.995],[-10.092,-3.361],[-6.92,-1.548],[-11.25,-1.52],[-5.624,1.008],[0.663,0.77],[19.723,-0.57],[16.898,3.244],[32.355,10.862],[36.314,-5.156],[31.42,-10.812],[32.267,1.958],[5.112,1.011],[1.497,-3.225],[-41.973,-6.18]],"v":[[137.5,-27.5],[67.599,-12.982],[1.5,9.5],[-70.135,24.759],[-149.5,20.5],[-177.06,11.924],[-209.5,2.5],[-238.38,-2.881],[-270.5,-3.5],[-276.946,-0.68],[-270.5,0.5],[-215.473,5.126],[-169.5,17.5],[-54.5,27.5],[45.5,-1.5],[151.5,-24.5],[244.5,-2.5],[278.5,0.5],[263.5,-3.5]],"c":true}],"h":1},{"t":122,"s":[{"i":[[32.217,-1.512],[16.943,-4.892],[15.73,-5.518],[16.608,-4.652],[18.795,-1.857],[18.885,2.444],[16.379,5.209],[12.785,2.909],[15.685,0.492],[-1.821,-3.852],[-6.029,-0.343],[-32.277,-7.928],[-35.95,6.331],[-29.176,10.324],[-33.302,-0.86],[-21.796,-5.174],[-15.35,-3.124],[-4.219,4.219],[1.734,0.294]],"o":[[-19.498,0.916],[-16.943,4.892],[-15.775,5.534],[-16.608,4.652],[-20.081,1.984],[-18.885,-2.444],[-12.174,-3.872],[-12.785,-2.909],[-1.405,-0.044],[1.803,3.816],[34.465,1.96],[30.69,7.538],[33.661,-5.928],[27.463,-9.718],[19.809,0.512],[8.537,2.026],[5.264,1.071],[2.256,-2.256],[-39.449,-6.693]],"v":[[145.5,-27.5],[91.174,-17.952],[42.5,-1.5],[-5.735,14.258],[-58.5,24.5],[-117.277,23.395],[-170.5,11.5],[-207.367,0.965],[-249.5,-4.5],[-278.5,-1.5],[-242.5,-0.5],[-146.5,22.5],[-38.5,25.5],[53.5,-1.5],[150.5,-24.5],[213.5,-11.5],[244.5,-4.5],[278.5,0.5],[263.5,-4.5]],"c":true}],"h":1},{"t":123,"s":[{"i":[[33.367,-2.872],[31.686,-11.829],[40.397,-1.512],[18.194,2.844],[17.034,5.418],[15.978,3.19],[18.999,-1.923],[1.419,-1.168],[-5.222,0.132],[-17.15,-2.705],[-14.238,-4.712],[-19.023,-2.683],[-21.002,1.328],[-17.124,4.809],[-15.317,5.552],[-17.145,5.393],[-18.332,-0.041],[-40.918,-2.297],[4.474,0.771]],"o":[[-36.859,3.172],[-31.686,11.829],[-21.192,0.794],[-18.194,-2.844],[-13.089,-4.163],[-15.978,-3.19],[-4.544,0.46],[-1.419,1.168],[21.162,-0.534],[17.15,2.705],[16.906,5.595],[19.023,2.683],[19.186,-1.213],[17.124,-4.809],[15.09,-5.47],[17.145,-5.393],[42.787,0.095],[16.639,0.934],[-38.754,-6.682]],"v":[[144.5,-26.5],[45.153,0.745],[-59.5,25.5],[-118.119,22.158],[-170.5,9.5],[-214.067,-2.565],[-266.5,-5.5],[-276.325,-2.556],[-271.5,-0.5],[-214.307,3.066],[-167.5,14.5],[-113.572,27.193],[-53.5,29.5],[0.902,19.754],[49.5,3.5],[98.069,-14.133],[151.5,-23.5],[270.5,0.5],[263.5,-5.5]],"c":true}],"h":1},{"t":124,"s":[{"i":[[33.064,-3.288],[29.581,-10.825],[34.36,-3.188],[17.911,1.815],[15.853,4.548],[20.923,4.737],[22.335,-5.102],[-8.121,0.104],[-2.993,-0.024],[-13.687,-2.821],[-10.941,-3.582],[-18.387,-2.996],[-21.323,0.593],[-17.297,4.497],[-15.332,5.444],[-36.117,0.857],[-28.967,-6.221],[8.154,4.509],[10.416,1.922]],"o":[[-35.315,3.511],[-29.581,10.825],[-19.501,1.809],[-17.912,-1.815],[-17.971,-5.155],[-20.923,-4.737],[-10.477,2.393],[8.121,-0.104],[16.313,0.131],[13.687,2.822],[17.129,5.608],[18.387,2.996],[20.479,-0.57],[17.297,-4.497],[29.915,-10.622],[31.067,-0.737],[4.318,0.927],[-4.758,-2.631],[-37.817,-6.976]],"v":[[146.5,-25.5],[51.784,-0.257],[-41.5,24.5],[-97.736,24.268],[-148.5,14.5],[-207.227,-2.693],[-272.5,-4.5],[-270.103,-1.723],[-247.5,-2.5],[-202.471,2.412],[-165.5,12.5],[-112.645,25.651],[-53.5,29.5],[2.86,21.155],[51.5,5.5],[152.5,-22.5],[246.5,-5.5],[276.5,-2.5],[264.5,-5.5]],"c":true}],"h":1},{"t":125,"s":[{"i":[[32.928,-3.149],[29.636,-11.185],[35.653,-2.027],[17.429,2.445],[16.005,4.372],[21.405,4.401],[22.996,-4.628],[-9.089,0.079],[-3.12,-0.008],[-16.419,-3.823],[-16.214,-4.66],[-17.654,-2.436],[-20.534,1.299],[-29.504,10.731],[-30.229,0.839],[-27.625,-6.07],[-3.107,3.107],[-7.714,-2.41],[7.586,1.508]],"o":[[-33.802,3.232],[-29.636,11.185],[-20.278,1.153],[-17.429,-2.445],[-18.382,-5.022],[-21.405,-4.401],[-11.476,2.309],[9.089,-0.079],[18.11,0.046],[16.419,3.823],[15.849,4.556],[17.654,2.436],[34.63,-2.191],[26.704,-9.713],[30.898,-0.858],[2.361,0.519],[2.022,-2.022],[0.015,0.005],[-36.827,-7.318]],"v":[[149.5,-24.5],[56.889,1.403],[-38.5,25.5],[-94.705,23.144],[-144.5,12.5],[-204.539,-3.737],[-271.5,-5.5],[-268.447,-2.774],[-243.5,-3.5],[-192.078,3.039],[-143.5,16.5],[-93.514,27.391],[-36.5,29.5],[59.5,5.5],[153.5,-21.5],[246.5,-5.5],[278.5,-0.5],[273.5,-4.5],[264.5,-5.5]],"c":true}],"h":1},{"t":126,"s":[{"i":[[36.829,-4.942],[14.22,-5.058],[13.573,-4.548],[14.556,-3.855],[18.938,-0.944],[17.117,2.015],[15.005,3.811],[14.754,4.323],[17.192,0.952],[13.877,-3.816],[-1.373,-2.971],[7.4,-0.37],[-5.05,0.402],[-26.312,-8.036],[-39.453,-0.78],[-29.799,9.862],[-34.508,3.535],[-29.27,-6.086],[19.161,5.164]],"o":[[-16.546,2.221],[-14.22,5.058],[-13.84,4.638],[-14.556,3.855],[-17.526,0.873],[-17.117,-2.015],[-14.79,-3.756],[-14.755,-4.323],[-14.517,-0.804],[16.069,-4.419],[1.303,2.819],[5.089,-0.254],[36.801,-2.929],[33.999,10.384],[45.976,0.909],[30.899,-10.226],[36.104,-3.698],[6.879,1.43],[-35.843,-9.659]],"v":[[147.5,-22.5],[101.77,-10.746],[60.5,4.5],[18.823,17.771],[-30.5,25.5],[-82.89,23.513],[-131.5,14.5],[-175.198,1.397],[-222.5,-7.5],[-273.5,-5.5],[-278.5,-2.5],[-271.5,-1.5],[-264.5,-2.5],[-165.5,7.5],[-58.5,29.5],[52.5,11.5],[150.5,-19.5],[247.5,-5.5],[271.5,-4.5]],"c":true}],"h":1},{"t":127,"s":[{"i":[[33.986,-3.815],[8.999,-2.698],[8.762,-3.058],[25.526,-6.531],[34.281,2.364],[16.872,4.349],[18.158,5.34],[19.269,1.845],[16.747,-4.256],[-7.723,0.351],[-1.948,0.097],[-19.636,-4.343],[-18.776,-4.908],[-16.21,-2.348],[-18.641,0.447],[-26.958,8.922],[-31.715,5.265],[-37.273,-3.07],[2.458,0.524]],"o":[[-10.244,1.15],[-8.998,2.698],[-23.617,8.242],[-25.526,6.53],[-18.352,-1.265],[-16.872,-4.348],[-13.178,-3.876],[-19.269,-1.845],[-9.839,2.501],[7.723,-0.351],[25.679,-1.28],[19.636,4.343],[15.518,4.056],[16.21,2.348],[37.899,-0.908],[26.868,-8.892],[43.839,-7.278],[19.843,1.634],[-33.879,-7.227]],"v":[[153.5,-21.5],[124.888,-15.431],[98.5,-6.5],[26.498,17.454],[-61.5,25.5],[-113.646,16.556],[-165.5,1.5],[-216.324,-8.099],[-272.5,-5.5],[-269.84,-3.051],[-249.5,-4.5],[-182.823,1.359],[-126.5,16.5],[-79.342,26.377],[-27.5,29.5],[64.5,9.5],[149.5,-17.5],[270.5,-1.5],[264.5,-6.5]],"c":true}],"h":1},{"t":128,"s":[{"i":[[30.145,-0.572],[3.488,-0.086],[3.112,-0.599],[15.683,-5.974],[16.737,-4.923],[19.144,-2.528],[22.813,2.703],[29.674,8.126],[38.245,-3.305],[6.445,-0.944],[-0.899,-2.042],[-3.102,0.543],[-1.978,0.227],[-41.92,-11.407],[-38.674,0],[-27.478,8.836],[-29.77,5.243],[-33.675,-5.786],[13.66,3.796]],"o":[[-2.938,0.056],[-3.488,0.086],[-16.531,3.182],[-15.683,5.974],[-15.613,4.592],[-19.143,2.528],[-32.061,-3.8],[-29.673,-8.126],[-2.12,0.183],[-6.445,0.944],[0.615,1.399],[3.102,-0.543],[58.048,-6.668],[28.817,7.841],[36.761,0],[27.897,-8.97],[39.417,-6.941],[3.386,0.582],[-32.067,-8.912]],"v":[[168.5,-20.5],[158.631,-20.408],[148.5,-19.5],[100.654,-4.805],[52.5,12.5],[0.4,23.972],[-62.5,24.5],[-152.363,2.672],[-251.5,-8.5],[-267.264,-6.894],[-278.5,-2.5],[-272.022,-1.78],[-263.5,-3.5],[-121.5,15.5],[-25.5,29.5],[67.5,12.5],[150.5,-15.5],[264.5,-3.5],[273.5,-5.5]],"c":true}],"h":1},{"t":129,"s":[{"i":[[31.53,-2.787],[15.135,-5.621],[15.742,-4.862],[15.367,-2.684],[18.718,0],[32.872,9.698],[44.911,-3.793],[8.386,-1.375],[-1.426,-1.426],[-7.317,1.076],[-4.108,0.321],[-19.972,-4.158],[-19.368,-5.46],[-15.494,-2.791],[-18.421,0],[-27.547,8.858],[-29.349,5.875],[-32.821,-6.194],[12.493,3.436]],"o":[[-18.716,1.654],[-15.135,5.621],[-13.813,4.266],[-15.367,2.683],[-43.601,0],[-32.872,-9.698],[-0.881,0.075],[-8.386,1.375],[1.625,1.625],[7.317,-1.076],[26.744,-2.091],[19.972,4.158],[13.605,3.835],[15.494,2.791],[38.061,0],[26.952,-8.667],[41.087,-8.224],[8.297,1.566],[-31.085,-8.548]],"v":[[163.5,-18.5],[113.769,-6.405],[68.5,10.5],[25.178,21.2],[-25.5,25.5],[-134.517,5.155],[-245.5,-9.5],[-263.73,-7.014],[-278.5,-2.5],[-262.862,-2.54],[-243.5,-5.5],[-174.968,-1.164],[-117.5,14.5],[-74.112,24.877],[-23.5,29.5],[69.5,13.5],[151.5,-13.5],[263.5,-3.5],[272.5,-5.5]],"c":true}],"h":1},{"t":130,"s":[{"i":[[26,-1.922],[14.82,-4.696],[15.076,-5.061],[15.794,-3.305],[17.578,0],[16.014,2.735],[14.148,4.059],[27.409,4.36],[28.703,-6.942],[-2.666,-0.399],[-4.736,0.63],[-18.488,-0.56],[-14.848,-4.178],[-39.939,-5.002],[-33.275,10.584],[-42.283,0.286],[-23.015,-4.463],[-0.964,2.167],[0.765,0.194]],"o":[[-15.644,1.157],[-14.82,4.696],[-14.245,4.782],[-15.794,3.304],[-19.796,0],[-16.014,-2.735],[-22.661,-6.501],[-27.409,-4.36],[-8.402,2.032],[2.666,0.399],[18.199,-2.418],[18.488,0.56],[37.095,10.437],[50.262,6.294],[34.99,-11.129],[26.507,-0.179],[0.925,0.179],[1.125,-2.53],[-28.184,-7.166]],"v":[[174.5,-17.5],[129.073,-7.928],[84.5,7.5],[39.499,20.087],[-10.5,25.5],[-63.736,21.044],[-108.5,10.5],[-184.468,-8.082],[-269.5,-6.5],[-275.853,-3.004],[-262.5,-3.5],[-206.487,-6.447],[-155.5,0.5],[-45.5,28.5],[76.5,14.5],[185.5,-14.5],[255.5,-5.5],[277.5,-2.5],[268.5,-7.5]],"c":true}],"h":1},{"t":131,"s":[{"i":[[20.774,-0.212],[15.669,-4.953],[15.546,-4.998],[17.078,-2.97],[19.764,0],[30.555,9.789],[38.897,-0.155],[9.934,-1.122],[8.863,-2.47],[-8.513,0.615],[-3.435,0.461],[-35.445,-10.247],[-43.309,-1.038],[-16.867,2.719],[-14.549,4.602],[-14.931,5.325],[-16.829,1.128],[-22.919,-3.857],[22.702,6.017]],"o":[[-18.776,0.191],[-15.669,4.953],[-15.924,5.12],[-17.078,2.97],[-40.883,0],[-30.555,-9.789],[-10.401,0.041],[-9.934,1.122],[-10.486,2.923],[8.513,-0.615],[44.912,-6.027],[35.445,10.247],[19.982,0.479],[16.868,-2.719],[14.447,-4.57],[14.931,-5.325],[25.152,-1.686],[8.889,1.496],[-24.462,-6.483]],"v":[[189.5,-16.5],[138.577,-7.605],[92.5,8.5],[43.38,20.84],[-11.5,25.5],[-113.99,5.883],[-213.5,-13.5],[-244.153,-11.822],[-272.5,-6.5],[-269.44,-3.962],[-245.5,-6.5],[-129.297,6.202],[-15.5,29.5],[39.575,25.81],[86.5,14.5],[130.213,-1.581],[177.5,-12.5],[243.5,-7.5],[269.5,-6.5]],"c":true}],"h":1},{"t":132,"s":[{"i":[[23.395,-1.921],[15.225,-5.021],[15.069,-4.602],[17.269,-2.523],[18.688,0.747],[30.344,9.609],[35.673,0.127],[11.649,-1.366],[9.2,-2.57],[-3.367,-0.04],[-2.604,0.415],[-18.609,-0.021],[-15.695,-3.921],[-37.927,-6.679],[-34.25,9.357],[-40.499,2.243],[-21.339,-3.63],[-1.57,1.57],[-0.756,-0.198]],"o":[[-16.032,1.316],[-15.225,5.021],[-15.236,4.653],[-17.269,2.524],[-35.95,-1.437],[-30.344,-9.609],[-10.206,-0.036],[-11.649,1.366],[-8.072,2.255],[3.367,0.04],[18.868,-3.005],[18.609,0.021],[38.694,9.665],[48.795,8.593],[36.634,-10.008],[23.525,-1.303],[3.81,0.648],[2.264,-2.264],[-25.834,-6.767]],"v":[[182.5,-14.5],[135.778,-3.965],[90.5,11.5],[41.589,22.55],[-12.5,25.5],[-109.208,4.517],[-205.5,-14.5],[-239.254,-12.455],[-271.5,-6.5],[-275.507,-3.498],[-263.5,-4.5],[-206.62,-9.194],[-154.5,-3.5],[-44.5,25.5],[79.5,18.5],[188.5,-11.5],[255.5,-5.5],[277.5,-2.5],[269.5,-7.5]],"c":true}],"h":1},{"t":133,"s":[{"i":[[45.359,-3.145],[10.911,-1.276],[8.249,-2.335],[2.085,-0.879],[-0.447,-1.021],[-3.693,0.748],[-0.735,0.135],[-22.068,-0.355],[-17.791,-5.434],[-21.716,-5.877],[-24.613,-0.922],[-43.706,15.519],[-27.244,0.708],[-16.311,-2.872],[15.134,4.881],[19.575,1.026],[12.478,-3.904],[44.088,-4.355],[36.452,10.457]],"o":[[-8.107,0.562],[-10.911,1.276],[1.893,-0.536],[-2.085,0.879],[0.493,1.127],[3.693,-0.748],[20.935,-3.852],[22.068,0.355],[21.52,6.572],[21.716,5.877],[56.74,2.125],[17.318,-6.149],[17.48,-0.454],[6.329,1.115],[-16.492,-5.319],[-26.805,-1.405],[-44.125,13.805],[-51.81,5.118],[-37.769,-10.835]],"v":[[-212.5,-14.5],[-242.394,-11.829],[-272.5,-6.5],[-274.415,-5.668],[-278.5,-2.5],[-270.681,-2.554],[-262.5,-4.5],[-196.642,-9.965],[-135.5,-1.5],[-71.32,18.238],[-2.5,29.5],[135.5,3.5],[203.5,-10.5],[258.5,-4.5],[272.5,-6.5],[217.5,-14.5],[152.5,-6.5],[37.5,24.5],[-89.5,8.5]],"c":true}],"h":1},{"t":134,"s":[{"i":[[47.36,-3.502],[11.423,-1.432],[8.873,-2.649],[4.327,-1.481],[-0.55,-1.287],[-3.344,0.545],[-0.111,0.021],[-7.613,1.488],[-6.363,0.73],[-23.854,-6.384],[-22.828,-6.224],[-16,-2.317],[-19.93,0.107],[-28.836,9.681],[-49.439,-6.571],[16.76,5.405],[28.608,-9],[43.54,-2.169],[36.534,10.684]],"o":[[-8.436,0.624],[-11.423,1.432],[10.757,-3.211],[-4.327,1.481],[0.513,1.199],[3.344,-0.545],[7.185,-1.319],[7.613,-1.488],[32.757,-3.759],[23.854,6.384],[14.072,3.837],[16,2.318],[33.435,-0.18],[40.293,-13.527],[8.605,1.144],[-36.022,-11.617],[-42.829,13.473],[-51.487,2.565],[-37.953,-11.099]],"v":[[-209.5,-15.5],[-240.673,-12.518],[-272.5,-6.5],[-267.845,-7.873],[-278.5,-2.5],[-271.198,-2.085],[-264.5,-3.5],[-241.883,-7.941],[-220.5,-11.5],[-137.553,-4.987],[-69.5,16.5],[-24.893,25.958],[28.5,29.5],[121.5,11.5],[245.5,-6.5],[272.5,-6.5],[153.5,-4.5],[38.5,25.5],[-87.5,7.5]],"c":true}],"h":1},{"t":135,"s":[{"i":[[49.587,-4.071],[11.536,-1.684],[9.572,-2.5],[-2.021,-0.463],[-3.555,0.585],[-6.935,1.331],[-3.861,0.625],[-23.689,-4.571],[-22.26,-6.572],[-15.303,-3.728],[-17.502,-0.872],[-16.711,2.144],[-14.639,4.396],[-54.34,-3.376],[-2.742,2.742],[3.496,0.688],[46.192,-14.692],[39.339,0.778],[30.436,8.681]],"o":[[-9.281,0.762],[-11.537,1.684],[-6.639,1.734],[2.021,0.463],[6.398,-1.052],[6.935,-1.331],[29.984,-4.855],[23.689,4.571],[14.287,4.218],[15.303,3.727],[19.515,0.973],[16.711,-2.144],[39.994,-12.01],[4.056,0.252],[2.611,-2.611],[-57.895,-11.394],[-32.957,10.482],[-37.464,-0.741],[-40.14,-11.449]],"v":[[-206.5,-16.5],[-238.782,-12.803],[-271.5,-6.5],[-276.645,-3.261],[-266.5,-3.5],[-245.597,-7.32],[-228.5,-10.5],[-149.207,-9.071],[-81.5,9.5],[-37.41,22.01],[11.5,29.5],[65.657,27.526],[112.5,17.5],[236.5,-7.5],[277.5,-2.5],[265.5,-7.5],[121.5,9.5],[19.5,25.5],[-79.5,6.5]],"c":true}],"h":1},{"t":136,"s":[{"i":[[43.993,-0.716],[7.811,-0.731],[10.259,-1.936],[7.388,-1.362],[5.097,-1.732],[-3.897,-0.159],[1.149,-0.176],[-14.108,2.718],[-15.414,-0.044],[-17.82,-5.422],[-18.191,-5.248],[-34.28,-1.284],[-27.285,8.194],[-53.09,-4.151],[7.64,4.366],[5.78,0.452],[37.593,-11.289],[36.116,1.353],[26.69,7.613]],"o":[[-8.496,0.139],[-7.811,0.731],[-4.353,0.822],[-7.387,1.362],[-6.438,2.187],[3.897,0.159],[14.156,-2.174],[14.108,-2.718],[22.528,0.064],[17.82,5.422],[27.708,7.995],[38.713,1.45],[38.677,-11.615],[7.867,0.615],[-6.704,-3.831],[-53.915,-4.216],[-27.295,8.197],[-35.843,-1.342],[-37.155,-10.598]],"v":[[-185.5,-18.5],[-209.178,-17.348],[-235.5,-13.5],[-254.441,-10.183],[-274.5,-5.5],[-274.467,-2.492],[-266.5,-2.5],[-224.444,-10.663],[-180.5,-15.5],[-121.247,-5.888],[-68.5,11.5],[23.5,29.5],[121.5,17.5],[243.5,-5.5],[275.5,-5.5],[244.5,-9.5],[120.5,13.5],[23.5,25.5],[-67.5,7.5]],"c":true}],"h":1},{"t":137,"s":[{"i":[[52.309,-3.627],[7.764,-1.108],[9.697,-1.998],[7.421,-1.309],[4.524,-1.778],[-7.769,1.101],[-2.173,0.444],[-4.941,1.002],[-3.964,0.709],[-24.655,-5.169],[-23.338,-6.877],[-15.226,-3.69],[-17.011,-1.089],[-28.037,8.278],[-51.894,-2.951],[-3.521,3.521],[0.878,0.139],[70.313,-3.894],[33.445,9.429]],"o":[[-8.246,0.572],[-7.764,1.108],[-4.793,0.987],[-7.421,1.309],[-7.25,2.85],[7.769,-1.101],[6.272,-1.282],[4.941,-1.002],[31.044,-5.553],[24.654,5.169],[14.084,4.15],[15.226,3.69],[37.557,2.404],[38.11,-11.252],[5.419,0.308],[2.33,-2.33],[-82.261,-13.025],[-44.622,2.471],[-44.768,-12.621]],"v":[[-186.5,-19.5],[-209.911,-17.07],[-235.5,-12.5],[-255.201,-9.093],[-274.5,-4.5],[-268.568,-3.029],[-248.5,-6.5],[-231.769,-9.93],[-218.5,-12.5],[-136.22,-10.823],[-65.5,9.5],[-21.696,21.796],[26.5,29.5],[126.5,18.5],[245.5,-5.5],[277.5,-2.5],[265.5,-7.5],[65.5,25.5],[-48.5,10.5]],"c":true}],"h":1},{"t":138,"s":[{"i":[[46.131,-3.607],[12.42,-2.163],[11.95,-2.461],[5.21,-1.887],[-9.281,1.049],[-19.606,4.008],[-21.358,-2.205],[-7.314,-2.29],[-7.129,-2.053],[-22.127,-6.167],[-25.88,-2.82],[-17.378,1.69],[-14.784,4.168],[-18.903,5.002],[-25.149,-1.431],[17.136,4.713],[40.076,-11.057],[36.439,4.273],[28.21,8.68]],"o":[[-11.37,0.889],[-12.42,2.163],[-2.439,0.502],[-5.211,1.887],[19.219,-2.172],[19.606,-4.008],[7.615,0.786],[7.314,2.29],[22.614,6.513],[22.127,6.167],[17.705,1.93],[17.378,-1.69],[19.239,-5.424],[18.903,-5.002],[3.803,0.216],[-55.874,-15.365],[-29.412,8.115],[-34.704,-4.069],[-36.67,-11.283]],"v":[[-184.5,-20.5],[-220.566,-15.679],[-257.5,-8.5],[-273.29,-3.836],[-271.5,-1.5],[-213.605,-12.783],[-152.5,-17.5],[-130.136,-12.45],[-108.5,-5.5],[-42.45,14.269],[28.5,28.5],[81.691,28.573],[130.5,19.5],[186.067,2.359],[250.5,-4.5],[272.5,-5.5],[128.5,15.5],[25.5,24.5],[-66.5,3.5]],"c":true}],"h":1},{"t":139,"s":[{"i":[[48.415,-4.146],[12.027,-2.325],[12.907,-2.59],[5.707,-1.95],[-9.786,1.194],[-20.323,4.266],[-22.031,-2.464],[-8.336,-2.419],[-8.19,-2.377],[-25.519,-6.969],[-30.372,0],[-17.256,3.504],[-16.677,5.983],[-36.94,-2.665],[0.032,3.451],[7.983,0.276],[42.626,-11.074],[34.697,4.448],[29.022,8.683]],"o":[[-12.983,1.112],[-12.027,2.324],[-1.959,0.393],[-5.707,1.95],[19.676,-2.4],[20.323,-4.266],[8.466,0.947],[8.336,2.419],[24.551,7.125],[25.519,6.969],[21.3,0],[17.256,-3.504],[27.937,-10.023],[4.453,0.321],[-0.03,-3.223],[-52.461,-1.814],[-29.864,7.758],[-35.366,-4.534],[-40.679,-12.17]],"v":[[-181.5,-21.5],[-218.557,-16.108],[-255.5,-8.5],[-271.808,-3.81],[-270.5,-1.5],[-210.766,-13.648],[-147.5,-18.5],[-122.293,-13.072],[-97.5,-5.5],[-23.366,17.344],[59.5,29.5],[116.468,23.987],[166.5,9.5],[264.5,-2.5],[277.5,-3.5],[252.5,-7.5],[133.5,16.5],[31.5,23.5],[-60.5,2.5]],"c":true}],"h":1},{"t":140,"s":[{"i":[[28.958,-1.865],[9.283,-1.355],[12.624,-2.919],[9.172,-1.726],[6.387,-1.957],[-3.634,-0.12],[-3.377,0.598],[-19.019,4.199],[-18.823,-1.822],[-15.18,-4.467],[-14.576,-4.611],[-14.988,-3.902],[-17.175,-2.689],[-30.231,7.192],[-50.508,-1.405],[15.936,3.361],[10.64,0.21],[37.515,-11.223],[63.971,19.392]],"o":[[-10.245,0.66],[-9.283,1.355],[-4.923,1.139],[-9.172,1.726],[-6.914,2.119],[3.634,0.12],[17.099,-3.027],[19.019,-4.199],[15.706,1.52],[15.18,4.467],[14.871,4.704],[14.988,3.902],[34.652,5.425],[42.985,-10.226],[4.887,0.136],[-6.537,-1.379],[-47.04,-0.93],[-80.067,23.954],[-28.924,-8.768]],"v":[[-164.5,-23.5],[-192.716,-20.695],[-224.5,-14.5],[-247.402,-10.114],[-272.5,-4.5],[-274.719,-1.463],[-261.5,-2.5],[-206.794,-15.136],[-149.5,-20.5],[-103.152,-10.818],[-58.5,3.5],[-14.228,16.512],[33.5,26.5],[137.5,21.5],[255.5,-2.5],[273.5,-4.5],[254.5,-6.5],[147.5,15.5],[-79.5,-6.5]],"c":true}],"h":1},{"t":141,"s":[{"i":[[38.085,-2.978],[9.531,-1.628],[11.266,-2.657],[8.351,-1.849],[7.566,-1.947],[2.042,-0.496],[-0.646,-1.407],[-7.453,1.359],[-1.397,0.29],[-15.569,3.758],[-18.857,-1.33],[-32.169,-10.194],[-38.67,-3.758],[-32.527,11.75],[-32.703,0.215],[-1.144,1.144],[-1.118,-0.138],[36.491,-12.381],[55.028,17.343]],"o":[[-10.612,0.83],[-9.53,1.628],[-7.031,1.658],[-8.351,1.849],[1.521,-0.392],[-2.042,0.496],[0.792,1.724],[7.453,-1.359],[15.868,-3.3],[15.569,-3.758],[35.34,2.492],[31.599,10.014],[41.055,3.99],[22.114,-7.988],[4.494,-0.029],[2.745,-2.745],[-42.242,-5.219],[-68.073,23.097],[-34.42,-10.848]],"v":[[-163.5,-24.5],[-193.01,-20.87],[-223.5,-14.5],[-247.098,-9.217],[-271.5,-3.5],[-273.844,-3.349],[-277.5,-0.5],[-261.954,-0.989],[-245.5,-4.5],[-199.241,-16.472],[-148.5,-21.5],[-47.5,4.5],[56.5,28.5],[168.5,14.5],[248.5,-1.5],[278.5,-1.5],[266.5,-5.5],[152.5,15.5],[-52.5,-0.5]],"c":true}],"h":1},{"t":142,"s":[{"i":[[-2.504,0.214],[15.025,-3.434],[14.585,-3.04],[7.009,-1.516],[-1.608,-1.608],[-7.295,1.637],[-1.865,0.41],[-15.991,3.885],[-18.077,-1.275],[-23.486,-7.264],[-22.917,-6.311],[-26.66,-2.507],[-26.316,7.375],[-41.255,0.557],[19.237,3.47],[6.791,-0.5],[11.139,-2.548],[20.789,-5.357],[90.708,5.829]],"o":[[-14.314,1.226],[-15.025,3.434],[-1.571,0.328],[-7.009,1.516],[1.957,1.957],[7.295,-1.637],[16.96,-3.735],[15.991,-3.885],[23.141,1.632],[23.486,7.264],[23.046,6.346],[26.66,2.507],[33.004,-9.25],[7.128,-0.096],[-5.236,-0.944],[-20.791,1.529],[-28.053,6.417],[-112.958,29.106],[-2.472,-0.159]],"v":[[-160.5,-25.5],[-204.796,-17.86],[-249.5,-7.5],[-265.884,-4.46],[-277.5,0.5],[-260.931,-0.225],[-244.5,-4.5],[-195.838,-17.258],[-145.5,-22.5],[-75.332,-7.509],[-5.5,14.5],[70.047,29.291],[150.5,23.5],[254.5,-1.5],[271.5,-4.5],[243.5,-4.5],[208.5,0.5],[148.5,19.5],[-147.5,-26.5]],"c":true}],"h":1},{"t":143,"s":[{"i":[[27.416,-2.463],[17.857,-4.33],[18.368,-3.133],[2.993,-1.267],[-8.01,0.589],[-19.981,5.656],[-20.874,-0.181],[-12.273,-2.892],[-11.979,-3.318],[-11.458,-3.368],[-11.783,-3.374],[-53.672,13.915],[-17.813,4.293],[-17.602,0.184],[0.109,2.981],[0.346,0.041],[33.551,-7.913],[45.819,13.195],[23.513,6.436]],"o":[[-17.204,1.546],[-17.857,4.33],[-3.038,0.518],[-2.993,1.268],[21.202,-1.558],[19.981,-5.656],[12.929,0.112],[12.273,2.892],[11.386,3.154],[11.458,3.368],[44.46,12.73],[18.118,-4.697],[11.756,-2.833],[-0.557,0.006],[-0.03,-0.826],[-52.607,-6.247],[-56.875,13.414],[-22.415,-6.455],[-24.232,-6.633]],"v":[[-156.5,-26.5],[-209.128,-16.691],[-263.5,-4.5],[-275.287,-1.17],[-270.5,0.5],[-209.254,-12.804],[-148.5,-23.5],[-110.787,-18.404],[-74.5,-8.5],[-40.298,1.335],[-5.5,11.5],[150.5,25.5],[208.5,5.5],[260.5,-0.5],[278.5,-2.5],[271.5,-4.5],[148.5,21.5],[-9.5,7.5],[-78.5,-13.5]],"c":true}],"h":1},{"t":144,"s":[{"i":[[47.462,-3.598],[10.404,-2.608],[10.615,-2.825],[10.068,-1.857],[8.954,-1.768],[2.279,-0.518],[-0.575,-1.234],[-3.897,0.205],[-0.97,0.135],[-2.707,0.544],[-1.885,0.369],[-33.211,1.124],[-23.662,-6.516],[-51.472,-8.012],[-27.124,7.018],[-43.977,0.869],[16.963,2.174],[32.97,-7.592],[42.39,12.397]],"o":[[-9.769,0.741],[-10.404,2.608],[-6.774,1.803],[-10.068,1.857],[1.539,-0.304],[-2.279,0.518],[0.444,0.953],[3.897,-0.205],[3.288,-0.456],[2.707,-0.544],[32.974,-6.442],[24.654,-0.834],[48.234,13.282],[25.512,3.971],[31.915,-8.257],[3.55,-0.07],[-51.22,-6.563],[-58.145,13.389],[-44.074,-12.889]],"v":[[-152.5,-27.5],[-182.865,-22.064],[-214.5,-13.5],[-240.865,-7.974],[-270.5,-2.5],[-273.276,-2.153],[-277.5,0.5],[-269.395,1.316],[-260.5,0.5],[-251.448,-1.065],[-244.5,-2.5],[-149.5,-24.5],[-73.5,-11.5],[67.5,26.5],[151.5,26.5],[259.5,0.5],[272.5,-3.5],[149.5,22.5],[-6.5,5.5]],"c":true}],"h":1},{"t":145,"s":[{"i":[[27.949,-3.219],[10.191,-2.764],[10.709,-2.845],[10.059,-1.893],[8.969,-1.623],[-4.088,-0.148],[-1.47,0.191],[-4.12,0.776],[-32.054,2.586],[-23.561,-6.183],[-22.635,-6.849],[-56.899,10.711],[-24.285,6.296],[-19.703,1.269],[0.053,2.138],[3.518,-0.167],[35.65,-6.361],[24.176,4.257],[48.132,11.948]],"o":[[-9.527,1.097],[-10.191,2.764],[-6.794,1.805],[-10.059,1.893],[-8.824,1.597],[4.089,0.149],[7.436,-0.965],[32.499,-6.118],[25.891,-2.089],[23.301,6.115],[40.289,12.19],[19.564,-3.683],[11.6,-3.007],[-2.39,0.154],[-0.069,-2.783],[-46.431,2.208],[-28.196,5.031],[-51.646,-9.095],[-25.156,-6.244]],"v":[[-153.5,-27.5],[-183.114,-21.311],[-214.5,-12.5],[-240.869,-6.864],[-270.5,-1.5],[-273.721,0.841],[-261.5,0.5],[-244.5,-1.5],[-150.5,-24.5],[-73.5,-13.5],[-4.5,6.5],[149.5,28.5],[209.5,9.5],[261.5,1.5],[278.5,-1.5],[260.5,-3.5],[147.5,24.5],[64.5,21.5],[-74.5,-17.5]],"c":true}],"h":1},{"t":146,"s":[{"i":[[27.314,-3.665],[9.639,-2.836],[12.166,-3.278],[9.826,-1.612],[9.421,-1.591],[-3.288,-0.549],[-4.587,0.503],[-34.407,3.82],[-23.289,-5.469],[-21.927,-6.722],[-56.69,6.623],[-22.399,6.253],[-20.756,1.856],[1.347,2.796],[5.868,-0.869],[3.359,-0.966],[19.024,-1.949],[43.586,13.787],[23.257,5.32]],"o":[[-10.278,1.379],[-9.639,2.836],[-7.274,1.96],[-9.827,1.612],[-7.74,1.308],[3.288,0.549],[42.129,-4.626],[27.08,-3.007],[23.539,5.528],[44.934,13.775],[19.676,-2.299],[12.978,-3.623],[-3.368,0.301],[-1.52,-3.156],[-13.538,2.005],[-23.05,6.625],[-58.198,5.961],[-22.51,-7.12],[-23.349,-5.341]],"v":[[-153.5,-27.5],[-182.583,-20.924],[-214.5,-11.5],[-240.89,-6.224],[-270.5,-1.5],[-274.746,1.358],[-260.5,1.5],[-151.5,-24.5],[-72.5,-15.5],[-4.5,4.5],[147.5,29.5],[209.5,10.5],[270.5,1.5],[278.5,-1.5],[241.5,-0.5],[208.5,7.5],[145.5,25.5],[-5.5,0.5],[-73.5,-19.5]],"c":true}],"h":1},{"t":147,"s":[{"i":[[0.016,-0.002],[15.197,-4.777],[17.361,-2.803],[8.287,-1.114],[-6.514,-1.163],[-6.374,0.551],[-2.272,0.371],[-30.341,3.369],[-23.853,-5.372],[-22.465,-6.797],[-57.055,7.218],[-22.117,5.935],[-18.658,3.176],[4.951,-0.044],[16.39,-4.513],[17.965,-2.084],[23.798,5.041],[21.213,6.491],[62.339,-4.58]],"o":[[-14.853,2.09],[-15.197,4.777],[-2.365,0.382],[-8.287,1.114],[3.231,0.577],[6.374,-0.552],[35.691,-5.828],[28.083,-3.118],[23.994,5.404],[41.307,12.498],[18.733,-2.37],[12.977,-3.482],[14.325,-2.438],[-22.417,0.199],[-14.898,4.102],[-29.338,3.403],[-24.945,-5.284],[-46.288,-14.163],[-0.716,0.053]],"v":[[-151.5,-27.5],[-196.119,-16.035],[-244.5,-3.5],[-265.659,-1.086],[-273.5,2.5],[-257.28,2.211],[-242.5,0.5],[-149.5,-24.5],[-69.5,-16.5],[0.5,2.5],[151.5,29.5],[212.5,11.5],[271.5,1.5],[270.5,-2.5],[211.5,7.5],[150.5,25.5],[69.5,18.5],[-0.5,-0.5],[-150.5,-28.5]],"c":true}],"h":1},{"t":148,"s":[{"i":[[0.025,-0.004],[24.946,-6.734],[20.662,-2.329],[-1.053,-2.186],[-2.71,0.438],[-9.074,2.425],[-20.034,2.224],[-24.621,-5.227],[-48.423,-10.906],[-27.671,3.314],[-18.413,5.04],[-13.415,2.362],[1.088,2.231],[4.667,-0.822],[9.661,-2.645],[17.9,-1.987],[23.408,5.307],[20.846,6.45],[62.181,-4.568]],"o":[[-19.759,2.866],[-14.441,3.898],[-0.313,0.035],[2.588,5.372],[16.62,-2.684],[22.683,-6.062],[29.7,-3.298],[49.385,10.485],[24.296,5.472],[17.729,-2.123],[6.713,-1.838],[3.919,-0.69],[-1.677,-3.44],[-11.976,2.109],[-14.218,3.892],[-29.036,3.224],[-24.842,-5.633],[-45.865,-14.191],[-0.722,0.053]],"v":[[-148.5,-27.5],[-210.5,-9.5],[-270.5,-0.5],[-277.5,2.5],[-241.5,0.5],[-208.5,-6.5],[-146.5,-24.5],[-65.5,-17.5],[72.5,21.5],[153.5,29.5],[213.5,12.5],[245.5,5.5],[278.5,-0.5],[244.5,1.5],[212.5,8.5],[152.5,25.5],[72.5,17.5],[3.5,-2.5],[-147.5,-28.5]],"c":true}],"h":1},{"t":149,"s":[{"i":[[57.352,-5.735],[10.386,-3.482],[14.425,-3.87],[9.438,-1.477],[7.541,-0.56],[3.869,-0.512],[-4.889,-1.696],[-9.775,2.623],[-20.547,3.666],[-24.554,-4.739],[-48.697,-11.936],[-26.934,2.869],[-18.857,5.02],[-18.579,3.362],[7.595,-0.894],[14.258,-3.704],[17.678,-1.811],[23.498,5.663],[20.195,6.4]],"o":[[-12.029,1.203],[-10.386,3.482],[-5.709,1.532],[-9.438,1.477],[-3.412,0.254],[-3.869,0.512],[17.512,6.076],[22.394,-6.009],[27.961,-4.989],[50.696,9.783],[24.607,6.031],[18.597,-1.981],[14.598,-3.886],[18.649,-3.375],[-18.283,2.151],[-13.21,3.432],[-28.699,2.94],[-24.045,-5.794],[-44.005,-13.945]],"v":[[-141.5,-27.5],[-173.703,-20.001],[-209.5,-8.5],[-233.625,-3.771],[-260.5,-0.5],[-273.726,0.418],[-274.5,3.5],[-209.5,-4.5],[-148.5,-23.5],[-65.5,-19.5],[74.5,19.5],[154.5,29.5],[215.5,13.5],[271.5,2.5],[261.5,-0.5],[214.5,9.5],[153.5,25.5],[76.5,15.5],[8.5,-3.5]],"c":true}],"h":1},{"t":150,"s":[{"i":[[84.71,-6.264],[2.705,-0.065],[2.651,-0.553],[15.803,-5.324],[17.282,-2.099],[8.643,-0.532],[-0.79,-1.601],[-8.234,0.231],[-3.403,0.413],[-14.538,5.162],[-15.782,3.038],[-45.923,-13.661],[-23.565,-6.122],[-28.037,1.835],[-21.51,5.714],[-18.701,3.418],[10.266,-1.281],[37.236,-2.044],[22.175,5.632]],"o":[[-2.529,0.187],[-2.705,0.065],[-12.505,2.605],[-15.803,5.324],[-2.219,0.27],[-8.643,0.532],[0.659,1.337],[8.234,-0.231],[19.065,-2.316],[14.538,-5.162],[57.278,-11.026],[22.451,6.679],[24.063,6.251],[19.977,-1.308],[14.221,-3.778],[14.268,-2.608],[-40.853,5.099],[-25.39,1.394],[-67.755,-17.208]],"v":[[-132.5,-27.5],[-140.408,-27.274],[-148.5,-26.5],[-191.416,-13.121],[-241.5,-0.5],[-261.757,0.501],[-277.5,3.5],[-261.058,4.813],[-240.5,3.5],[-191.538,-8.958],[-147.5,-22.5],[6.5,-2.5],[75.5,17.5],[152.5,29.5],[214.5,14.5],[271.5,3.5],[261.5,0.5],[151.5,25.5],[78.5,14.5]],"c":true}],"h":1},{"t":151,"s":[{"i":[[81.897,-6.056],[3.542,-0.238],[5.925,-1.537],[18.125,-5.339],[21.457,-0.742],[4.462,-0.115],[-0.056,-1.535],[-4.159,-0.197],[-0.318,0.002],[-36.015,8.735],[-62.356,-17.477],[-24.257,0.523],[-18.312,4.699],[-17.608,2.631],[1.703,3.451],[3.991,-0.607],[6.976,-1.809],[20.856,-0.456],[20.701,5.544]],"o":[[-6.908,0.511],[-3.542,0.238],[-15.044,3.901],[-18.125,5.339],[-0.207,0.007],[-4.462,0.115],[0.044,1.212],[4.159,0.197],[49.615,-0.208],[82.032,-19.895],[23.527,6.594],[20.02,-0.432],[13.804,-3.542],[1.373,-0.205],[-0.99,-2.006],[-15.531,2.362],[-19.186,4.974],[-22.616,0.495],[-65.693,-17.592]],"v":[[-123.5,-27.5],[-137.737,-26.769],[-150.5,-24.5],[-200.191,-9.131],[-259.5,1.5],[-268.698,1.354],[-277.5,3.5],[-269.205,5.41],[-260.5,5.5],[-148.5,-20.5],[74.5,15.5],[150.5,29.5],[214.5,15.5],[263.5,5.5],[278.5,0.5],[262.5,1.5],[214.5,11.5],[150.5,25.5],[81.5,13.5]],"c":true}],"h":1},{"t":152,"s":[{"i":[[76.767,-6.003],[4.874,-0.498],[5.909,-1.492],[15.534,-5.041],[16.279,-0.901],[9.191,-0.558],[-12.291,-1.628],[-18.723,4.36],[-17.674,6.136],[-36.042,-6.06],[-28.064,-8.829],[-16.894,-4.425],[-16.57,-0.312],[-11.301,2.435],[-9.46,2.453],[-16.242,3.088],[11.202,-1.749],[35.219,0.991],[20.534,5.699]],"o":[[-6.593,0.515],[-4.874,0.498],[-15.585,3.934],[-15.534,5.041],[-2.529,0.14],[-9.19,0.558],[19.435,2.575],[18.723,-4.36],[34.769,-12.07],[36.042,6.06],[15.853,4.988],[16.894,4.425],[10.335,0.194],[11.301,-2.436],[12.352,-3.202],[15.953,-3.033],[-34.855,5.441],[-21.999,-0.619],[-60.544,-16.804]],"v":[[-115.5,-27.5],[-132.013,-26.232],[-147.5,-23.5],[-193.979,-8.726],[-241.5,1.5],[-266.115,2.384],[-268.5,5.5],[-211.18,1.533],[-156.5,-15.5],[-47.971,-20.674],[50.5,5.5],[99.963,20.507],[150.5,28.5],[183.657,24.485],[215.5,16.5],[271.5,4.5],[261.5,1.5],[149.5,24.5],[83.5,11.5]],"c":true}],"h":1},{"t":153,"s":[{"i":[[76.222,-5.96],[0.334,0.009],[0.332,-0.011],[21.069,-7.014],[24.125,-1.202],[9.464,-0.406],[-9.808,-2.179],[-1.676,-0.011],[-4.11,-0.138],[-18.13,5.087],[-16.292,4.495],[-38.302,-7.769],[-32.093,-9.153],[-23.871,-0.566],[-18.396,4.471],[-16.63,4.191],[9.662,-1.582],[35.255,1.094],[20.157,5.65]],"o":[[-0.331,0.026],[-0.335,-0.009],[-22.6,0.742],[-21.069,7.014],[-3.951,0.197],[-9.464,0.406],[-0.814,-0.181],[1.676,0.011],[25.186,0.844],[18.13,-5.087],[40.698,-11.229],[38.302,7.769],[23.587,6.728],[20.791,0.493],[14.592,-3.546],[14.147,-3.565],[-38.427,6.292],[-21.6,-0.67],[-61.089,-17.122]],"v":[[-106.5,-27.5],[-107.499,-27.489],[-108.5,-27.5],[-172.856,-12.845],[-239.5,2.5],[-265.819,3.014],[-271.5,6.5],[-270.193,6.261],[-261.5,6.5],[-197.829,-1.496],[-147.5,-17.5],[-28.046,-18.287],[78.5,11.5],[152.5,27.5],[217.5,16.5],[272.5,4.5],[263.5,2.5],[151.5,23.5],[88.5,9.5]],"c":true}],"h":1},{"t":154,"s":[{"i":[[73.509,-5.435],[13.457,-3.695],[16.395,-5.054],[14.041,-1.569],[14.221,0.547],[1.881,-0.85],[-4.945,-0.769],[-20.483,5.542],[-21.511,5.273],[-17.9,1.119],[-20.112,-3.221],[-15.585,-4.25],[-14.79,-4.458],[-30.875,-0.724],[-20.686,4.847],[-13.942,3.142],[12.134,-1.921],[37.986,1.573],[19.703,5.555]],"o":[[-15.776,1.166],[-13.457,3.695],[-10.613,3.272],[-14.042,1.569],[-4.421,-0.17],[-1.881,0.85],[28.555,4.442],[20.483,-5.542],[15.285,-3.747],[17.9,-1.119],[15.868,2.541],[15.585,4.25],[30.774,9.276],[20.702,0.485],[10.019,-2.348],[12.893,-2.906],[-37.286,5.904],[-20.127,-0.833],[-58.631,-16.529]],"v":[[-97.5,-27.5],[-140.036,-19.916],[-183.5,-6.5],[-221.294,0.864],[-264.5,2.5],[-275.024,3.796],[-271.5,6.5],[-200.217,2.286],[-139.5,-16.5],[-89.62,-24.226],[-32.5,-21.5],[14.809,-10.938],[60.5,2.5],[154.5,26.5],[218.5,16.5],[272.5,5.5],[263.5,2.5],[152.5,22.5],[91.5,8.5]],"c":true}],"h":1},{"t":155,"s":[{"i":[[69.166,-5.409],[0.334,0.009],[0.332,-0.011],[24.742,-8.121],[33.163,1.398],[6.99,0.113],[-9.405,-2.512],[-18.486,3.198],[-11.71,4.108],[-17.43,3.372],[-21.828,-0.608],[-17.646,-3.93],[-15.555,-4.697],[-34.215,-3.311],[-22.018,4.784],[-13.737,3.28],[4.129,-0.752],[40.182,4.495],[18.267,5.322]],"o":[[-0.331,0.026],[-0.335,-0.009],[-27.868,0.915],[-24.742,8.121],[-1.443,-0.061],[-6.99,-0.113],[18.347,4.9],[18.486,-3.198],[17.45,-6.122],[17.43,-3.372],[20.86,0.581],[17.646,3.931],[31.971,9.655],[23.151,2.24],[10.408,-2.261],[17.163,-4.098],[-36.769,6.697],[-18.741,-2.096],[-55.121,-16.058]],"v":[[-89.5,-27.5],[-90.499,-27.489],[-91.5,-27.5],[-167.528,-9.765],[-251.5,4.5],[-269.636,3.57],[-271.5,6.5],[-214.522,7.256],[-167.5,-5.5],[-116.284,-20.047],[-58.5,-24.5],[-1.021,-17.088],[48.5,-3.5],[149.5,24.5],[218.5,17.5],[272.5,5.5],[263.5,3.5],[147.5,20.5],[91.5,5.5]],"c":true}],"h":1},{"t":156,"s":[{"i":[[68.383,-5.347],[0.334,0.009],[0.332,-0.011],[25.155,-8.515],[35.379,2.078],[6.505,0.24],[-8.443,-2.222],[-18.522,2.668],[-12.379,4.207],[-17.201,3.703],[-21.993,0],[-49.645,-14.408],[-17.589,-1.639],[-20.971,4.208],[-14.28,3.854],[1.099,2.483],[0.668,-0.118],[38.552,4.312],[17.482,5.161]],"o":[[-0.331,0.026],[-0.335,-0.009],[-30.999,1.017],[-25.155,8.515],[-4.423,-0.26],[-6.505,-0.24],[18.535,4.878],[18.522,-2.668],[18.204,-6.188],[17.201,-3.703],[65.077,0],[16.716,4.851],[22.221,2.07],[11.888,-2.385],[-6.312,1.703],[-0.839,-1.896],[-34.608,6.107],[-18.396,-2.058],[-53.492,-15.793]],"v":[[-80.5,-27.5],[-81.499,-27.489],[-82.5,-27.5],[-162.715,-8.678],[-249.5,5.5],[-270.15,4.139],[-271.5,6.5],[-214.383,8.314],[-166.5,-3.5],[-114.842,-18.641],[-57.5,-24.5],[102.5,10.5],[154.5,23.5],[220.5,16.5],[273.5,6.5],[279.5,2.5],[264.5,3.5],[151.5,19.5],[97.5,4.5]],"c":true}],"h":1},{"t":157,"s":[{"i":[[66.527,-4.919],[0.335,0.006],[0.33,-0.001],[26.49,-8.982],[37.276,2.973],[5.877,-0.091],[-6.833,-2.219],[-0.149,0.148],[-3.289,-0.579],[-17.262,1.938],[-13.053,4.398],[-42.363,1.179],[-48.666,-14.863],[-17.018,-2.468],[-25.804,5.19],[-11.671,4.097],[1.887,-0.391],[21.212,-2.036],[23.809,6.989]],"o":[[-0.329,0.024],[-0.335,-0.006],[-31.763,0.046],[-26.49,8.982],[-7.326,-0.585],[-5.877,0.091],[3.115,1.011],[0.149,-0.148],[17.897,3.152],[17.263,-1.938],[34.392,-11.587],[67.146,-1.868],[16.612,5.073],[26.182,3.798],[10.83,-2.178],[13.795,-4.842],[-21.301,4.408],[-35.331,3.391],[-54.526,-16.007]],"v":[[-71.5,-27.5],[-72.499,-27.482],[-73.5,-27.5],[-156.865,-8.736],[-248.5,5.5],[-271.119,4.398],[-272.5,7.5],[-269.13,8.324],[-265.5,8.5],[-211.868,9.662],[-165.5,-0.5],[-60.5,-24.5],[100.5,7.5],[151.5,21.5],[228.5,15.5],[275.5,6.5],[257.5,5.5],[191.5,17.5],[103.5,4.5]],"c":true}],"h":1},{"t":158,"s":[{"i":[[40.692,-3.009],[0.335,0.006],[0.33,-0.001],[23.333,-8.431],[30.832,-1.232],[13.296,1.269],[0.877,-0.877],[-2.809,-0.886],[-1.024,-0.194],[-31.398,9.646],[-35.941,2.492],[-18.698,-3.03],[-16.319,-4.467],[-16.641,-5.383],[-17.325,-2.782],[-31.694,7.605],[9.171,-1.542],[32.937,5.739],[33.205,9.162]],"o":[[-0.329,0.024],[-0.335,-0.006],[-28.836,0.041],[-23.333,8.431],[-4.938,0.197],[-13.296,-1.269],[-1.26,1.261],[2.809,0.886],[42.469,8.075],[31.398,-9.646],[22.889,-1.587],[18.698,3.03],[17.112,4.684],[16.641,5.383],[41.291,6.631],[15.69,-3.765],[-34.449,5.791],[-33.5,-5.837],[-34.547,-9.532]],"v":[[-62.5,-27.5],[-63.499,-27.482],[-64.5,-27.5],[-139.503,-10.893],[-217.5,7.5],[-250.045,4.99],[-276.5,3.5],[-272.713,6.8],[-265.5,8.5],[-158.603,-0.075],[-61.5,-24.5],[0.428,-21.541],[52.5,-9.5],[102.841,6.426],[153.5,19.5],[270.5,7.5],[265.5,4.5],[151.5,15.5],[52.5,-13.5]],"c":true}],"h":1},{"t":159,"s":[{"i":[[62.358,-4.876],[29.249,-9.055],[37.847,3.892],[8.157,0.79],[-3.873,-2.392],[-6.14,-0.678],[-3.298,-0.348],[-17.483,3.409],[-13.988,4.696],[-24.067,3.599],[-27.021,-4.014],[-21.035,-5.995],[-22.942,-6.468],[-24.336,1.331],[-19.252,5.148],[3.081,0.366],[0.357,-0.054],[26.709,-1.068],[23.119,7.127]],"o":[[-34.155,2.671],[-29.25,9.055],[-2.243,-0.231],[-8.157,-0.79],[3.142,1.941],[6.14,0.678],[22.081,2.334],[17.483,-3.409],[19.71,-6.617],[24.067,-3.599],[23.919,3.553],[21.035,5.995],[19.405,5.471],[24.336,-1.331],[9.68,-2.588],[-3.081,-0.366],[-23.791,3.58],[-36.737,1.468],[-48.103,-14.828]],"v":[[-54.5,-27.5],[-146.231,-5.078],[-243.5,7.5],[-263.587,5.034],[-274.5,6.5],[-259.117,10.194],[-243.5,11.5],[-184.431,8.772],[-137.5,-4.5],[-71.483,-20.974],[5.5,-21.5],[71.733,-6.686],[136.5,12.5],[204.615,17.964],[272.5,7.5],[278.528,3.519],[269.5,3.5],[196.5,15.5],[112.5,1.5]],"c":true}],"h":1},{"t":160,"s":[{"i":[[37.914,-2.803],[0.335,0.006],[0.33,-0.001],[24.854,-8.87],[26.758,-1.482],[9.847,0.834],[7.863,1.151],[4.799,0.045],[-5.487,-2.515],[-8.697,-0.861],[-4.132,-0.229],[-49.156,11.543],[-42.819,-9.622],[-41.559,-8.681],[-30.027,5.427],[-9.969,3.124],[2.515,-0.265],[18.574,-2.162],[52.958,14.097]],"o":[[-0.329,0.024],[-0.335,-0.006],[-27.827,0.04],[-24.854,8.87],[-8.749,0.485],[-9.847,-0.834],[-2.29,-0.335],[-4.799,-0.045],[5.08,2.329],[8.697,0.861],[61.671,3.415],[35.297,-8.289],[39.323,8.837],[28.921,6.041],[10.319,-1.865],[11.553,-3.621],[-19.133,2.016],[-68.937,8.025],[-31.743,-8.45]],"v":[[-45.5,-27.5],[-46.499,-27.482],[-47.5,-27.5],[-125.302,-10.082],[-201.5,9.5],[-230.165,8.726],[-257.5,5.5],[-271.333,4.362],[-273.5,7.5],[-250.789,12.075],[-229.5,13.5],[-86.5,-17.5],[42.5,-16.5],[154.5,14.5],[251.5,11.5],[274.5,7.5],[273.5,3.5],[219.5,12.5],[61.5,-15.5]],"c":true}],"h":1},{"t":161,"s":[{"i":[[57.564,-4.256],[0.335,0.006],[0.33,-0.001],[24.215,-9.022],[27.909,-1.871],[12.414,1.048],[9.68,1.589],[2.493,-0.123],[-6.004,-2.008],[-19.143,0.063],[-32.939,10.592],[-40.605,-1.52],[-30.921,-8.974],[-37.722,0],[-15.772,2.554],[-7.846,3.398],[-1.438,0.188],[20.858,-0.242],[20.157,6.202]],"o":[[-0.329,0.024],[-0.335,-0.006],[-29.231,0.042],[-24.215,9.022],[-11.662,0.782],[-12.414,-1.048],[-3.034,-0.498],[-2.493,0.123],[18.642,6.236],[36.389,-0.12],[30.619,-9.846],[38.975,1.459],[32.339,9.385],[13.071,0],[7.746,-1.254],[10.375,-4.493],[-19.916,2.604],[-31.467,0.365],[-48.15,-14.815]],"v":[[-36.5,-27.5],[-37.499,-27.482],[-38.5,-27.5],[-116.491,-9.872],[-192.5,10.5],[-229.487,9.778],[-263.5,5.5],[-273.778,4.62],[-270.5,7.5],[-206.5,15.5],[-109.5,-8.5],[-3.5,-24.5],[97.5,-4.5],[197.5,17.5],[241.5,13.5],[276.5,6.5],[269.5,4.5],[198.5,13.5],[121.5,-1.5]],"c":true}],"h":1},{"t":162,"s":[{"i":[[43.983,-3.439],[0.335,0.009],[0.331,-0.011],[26.901,-9.768],[33.181,0.096],[10.652,1.187],[6.997,1.232],[4.967,0.662],[-4.453,-2.751],[-5.831,-0.831],[-3.109,-0.473],[-26.849,9.533],[-56.885,-1.363],[-43.897,-13.809],[-41.576,7.925],[2.669,2.669],[8.569,-1.228],[10.059,0.047],[35.496,9.89]],"o":[[-0.331,0.026],[-0.334,-0.009],[-31.216,1.025],[-26.9,9.768],[-6.395,-0.018],[-10.652,-1.187],[-0.583,-0.103],[-4.967,-0.662],[3.565,2.202],[5.831,0.831],[38.988,5.93],[42.894,-15.231],[52.709,1.263],[35.526,11.176],[1.215,-0.232],[-2.917,-2.917],[-15.992,2.292],[-42.585,-0.2],[-35.079,-9.774]],"v":[[-28.5,-27.5],[-29.499,-27.489],[-30.5,-27.5],[-115.026,-6.66],[-202.5,12.5],[-230.049,10.41],[-258.5,6.5],[-270.278,4.36],[-274.5,6.5],[-259.158,10.797],[-244.5,12.5],[-135.5,4.5],[1.5,-24.5],[137.5,5.5],[264.5,9.5],[279.5,3.5],[241.5,8.5],[201.5,12.5],[91.5,-12.5]],"c":true}],"h":1},{"t":163,"s":[{"i":[[39.704,-3.105],[19.772,-5.864],[20.223,-6.693],[10.848,-1.595],[14.644,1.015],[9.77,1.385],[5.887,1.111],[4.615,0.346],[-4.871,-2.65],[-3.761,-1.004],[-26.982,1.676],[-28.815,9.418],[-39.456,0],[-29.917,-8.616],[-34.139,-1.891],[-19.953,3.358],[2.741,2.741],[8.253,-0.978],[47.8,12.724]],"o":[[-23.691,1.852],[-19.772,5.864],[-7.963,2.636],[-10.848,1.595],[-5.032,-0.349],[-9.77,-1.385],[-1.411,-0.266],[-4.615,-0.346],[3.491,1.899],[24.501,6.537],[33.593,-2.087],[28.537,-9.327],[37.483,0],[29.646,8.538],[22.641,1.254],[2.172,-0.366],[-3.536,-3.536],[-63.039,7.47],[-33.341,-8.875]],"v":[[-19.5,-27.5],[-83.601,-15.13],[-142.5,4.5],[-170.489,11.238],[-208.5,12.5],[-232.859,9.572],[-258.5,5.5],[-270.711,3.813],[-273.5,6.5],[-268.5,8.5],[-183.5,17.5],[-94.5,-7.5],[3.5,-24.5],[102.5,-8.5],[194.5,14.5],[261.5,9.5],[279.5,3.5],[238.5,9.5],[92.5,-14.5]],"c":true}],"h":1},{"t":164,"s":[{"i":[[39.957,-2.954],[0.335,0.006],[0.33,-0.001],[25.855,-10.004],[28.936,-1.94],[13.656,1.485],[9.912,1.894],[5.438,1.346],[1.522,-1.522],[-1.084,-0.287],[-32.432,2.361],[-28.181,9.461],[-37.129,0],[-29.266,-8.154],[-34.547,-1.913],[-19.703,3.325],[2.708,2.708],[10.03,-1.118],[45.452,12.442]],"o":[[-0.329,0.024],[-0.335,-0.006],[-30.644,0.044],[-25.855,10.004],[-12.463,0.835],[-13.656,-1.485],[-0.725,-0.139],[-5.438,-1.346],[-2.097,2.097],[28.957,7.665],[31.426,-2.287],[28.913,-9.706],[37.683,0],[29.418,8.197],[20.945,1.16],[1.472,-0.248],[-3.376,-3.376],[-59.974,6.683],[-32.595,-8.922]],"v":[[-10.5,-27.5],[-11.499,-27.482],[-12.5,-27.5],[-95.281,-7.922],[-175.5,14.5],[-215.913,13.047],[-252.5,7.5],[-263.902,4.255],[-276.5,3.5],[-267.5,8.5],[-172.5,18.5],[-85.5,-7.5],[11.5,-24.5],[109.5,-8.5],[201.5,13.5],[263.5,9.5],[279.5,3.5],[241.5,8.5],[100.5,-14.5]],"c":true}],"h":1},{"t":165,"s":[{"i":[[51.678,-4.041],[0.335,0.009],[0.332,-0.011],[23.77,-8.714],[24.267,-5.236],[19.452,2.611],[15.65,2.558],[3.185,0.541],[1.038,-1.038],[-2.231,-0.941],[-1.047,-0.264],[-20.703,-2.199],[-18.381,4.288],[-34.636,9.146],[-43.325,-6.763],[-35.499,-8.83],[-30.693,9.403],[7.994,-1.163],[31.741,9.496]],"o":[[-0.33,0.026],[-0.334,-0.009],[-27.653,0.908],[-23.77,8.714],[-18.543,4.001],[-19.452,-2.611],[0.778,0.127],[-3.185,-0.541],[-0.971,0.971],[2.231,0.941],[17.808,4.493],[20.703,2.199],[32.02,-7.47],[33.409,-8.822],[35.373,5.522],[27.138,6.75],[14.185,-4.346],[-47.788,6.952],[-43.066,-12.884]],"v":[[-2.5,-27.5],[-3.499,-27.489],[-4.5,-27.5],[-80.54,-10.246],[-151.5,13.5],[-209.669,13.919],[-263.5,4.5],[-268.638,3.316],[-276.5,3.5],[-273.514,6.531],[-267.5,8.5],[-208.43,19.586],[-148.5,17.5],[-51.5,-14.5],[63.5,-20.5],[166.5,5.5],[274.5,7.5],[261.5,5.5],[138.5,-6.5]],"c":true}],"h":1},{"t":166,"s":[{"i":[[38.306,-2.995],[0.335,0.009],[0.332,-0.011],[24.733,-9.317],[25.102,-4.749],[17.119,1.774],[13.592,2.727],[6.88,1.55],[0.69,-1.56],[-1.904,-0.858],[2.078,0.651],[-4.188,-0.902],[-37.133,7.829],[-33.936,9.493],[-44.686,-5.634],[-35.518,-9.761],[-30.63,8.967],[9.046,-0.753],[44.844,11.626]],"o":[[-0.33,0.026],[-0.335,-0.009],[-29.967,0.984],[-24.733,9.317],[-14.933,2.825],[-17.119,-1.774],[-1.791,-0.36],[-6.88,-1.55],[-0.539,1.219],[1.904,0.858],[5.121,1.605],[35.128,7.562],[33.06,-6.971],[32.499,-9.091],[35.068,4.421],[26.119,7.178],[17.038,-4.988],[-58.503,4.872],[-31.745,-8.23]],"v":[[6.5,-27.5],[5.501,-27.489],[4.5,-27.5],[-76.149,-8.824],[-149.5,15.5],[-199.005,16.164],[-246.5,8.5],[-262.325,4.56],[-276.5,3.5],[-272.846,6.902],[-271.5,7.5],[-263.5,8.5],[-148.5,19.5],[-51.5,-12.5],[63.5,-22.5],[166.5,3.5],[274.5,7.5],[246.5,6.5],[114.5,-15.5]],"c":true}],"h":1},{"t":167,"s":[{"i":[[47.463,-3.509],[13.823,-3.492],[14.145,-4.808],[13.173,-4.498],[13.154,-2.536],[20.032,3.48],[14.447,2.631],[3.138,-0.219],[-6.479,-1.656],[-15.337,-2.92],[-13.726,-0.76],[-12.589,2.905],[-12.56,4.383],[-25.586,6.42],[-35.206,-3.21],[-77.258,6.555],[2.608,2.608],[9.966,-0.511],[28.102,8.631]],"o":[[-16.563,1.224],[-13.823,3.492],[-13.154,4.471],[-13.173,4.498],[-18.423,3.552],[-20.032,-3.48],[-2.927,-0.533],[-3.138,0.219],[13.925,3.559],[15.337,2.92],[18.084,1.002],[12.589,-2.905],[24.448,-8.531],[25.586,-6.42],[67.827,6.184],[4.217,-0.358],[-2.7,-2.7],[-43.92,2.253],[-42.874,-13.168]],"v":[[15.5,-27.5],[-29.314,-20.187],[-70.5,-7.5],[-110.001,6.451],[-149.5,17.5],[-208.981,15.638],[-262.5,4.5],[-274.054,3.858],[-271.5,6.5],[-226.85,16.6],[-182.5,22.5],[-137.857,19.038],[-101.5,7.5],[-28.569,-16.806],[60.5,-23.5],[252.5,9.5],[279.5,3.5],[245.5,6.5],[147.5,-8.5]],"c":true}],"h":1},{"t":168,"s":[{"i":[[45.751,-3.383],[14.571,-3.707],[14.62,-4.908],[13.749,-4.743],[14.456,-2.478],[17.652,2.974],[12.49,2.658],[6.868,1.547],[1.423,-1.423],[-3.454,-0.831],[-0.709,-0.152],[-18.638,-3.818],[-19.151,1.962],[-8.577,2.618],[-8.062,2.645],[-68.554,-2.74],[-82.196,10.819],[10.82,-0.92],[34.104,10.532]],"o":[[-17.096,1.264],[-14.571,3.707],[-13.547,4.548],[-13.749,4.744],[-14.904,2.555],[-17.652,-2.974],[-1.106,-0.236],[-6.868,-1.547],[-1.523,1.523],[3.453,0.831],[17.297,3.689],[18.638,3.818],[8.63,-0.884],[8.577,-2.618],[49.489,-16.233],[72.618,2.903],[11.95,-1.573],[-47.91,4.073],[-37.974,-11.728]],"v":[[24.5,-27.5],[-22.357,-19.733],[-65.5,-6.5],[-106.318,8.052],[-148.5,19.5],[-199.31,17.409],[-246.5,7.5],[-261.262,3.756],[-276.5,2.5],[-271.674,6.029],[-263.5,7.5],[-209.391,20.238],[-152.5,24.5],[-126.574,18.82],[-101.5,10.5],[58.5,-24.5],[266.5,7.5],[272.5,3.5],[152.5,-9.5]],"c":true}],"h":1},{"t":169,"s":[{"i":[[43.871,-3.431],[15.616,-3.916],[14.197,-4.98],[14.552,-5.151],[15.673,-1.441],[16.522,3.424],[13.588,2.806],[7.286,1.238],[0.546,-1.224],[-7.273,-1.463],[-1.709,-0.349],[-16.017,-3.46],[-19.288,2.038],[-31.85,10.75],[-44.659,-0.467],[-35.805,-10.854],[-34.363,8.563],[5.001,-0.398],[29.46,9.75]],"o":[[-17.339,1.356],[-15.616,3.916],[-14.119,4.953],[-14.552,5.151],[-16.322,1.501],[-16.522,-3.424],[-1.31,-0.271],[-7.286,-1.238],[-0.802,1.798],[7.273,1.463],[15.642,3.199],[16.018,3.46],[34.743,-3.672],[31.442,-10.612],[40.401,0.423],[25.925,7.859],[14.41,-3.591],[-42.825,3.405],[-36.182,-11.975]],"v":[[32.5,-27.5],[-16.856,-19.218],[-61.5,-5.5],[-104.335,10.634],[-149.5,21.5],[-199.551,17.23],[-245.5,6.5],[-261.573,3.379],[-276.5,2.5],[-263.383,7.586],[-246.5,10.5],[-199.735,21.928],[-147.5,25.5],[-49.5,-4.5],[59.5,-24.5],[167.5,-3.5],[273.5,6.5],[264.5,3.5],[156.5,-10.5]],"c":true}],"h":1},{"t":170,"s":[{"i":[[35.733,-2.794],[16.023,-4.104],[14.617,-5.154],[15.018,-5.12],[16.451,-1.415],[17.02,3.765],[16.52,3.435],[7.36,0.598],[-4.856,-1.684],[-10.718,-2.16],[-6.728,-1.445],[-11.849,-2.162],[-10.264,0.439],[-16.303,5.016],[-64.178,0.672],[-35.164,-10.82],[-38.699,7.682],[8.352,-0.165],[37.752,9.628]],"o":[[-18.289,1.43],[-16.023,4.104],[-14.478,5.105],[-15.018,5.12],[-17.399,1.497],[-17.02,-3.765],[-1.416,-0.295],[-7.36,-0.597],[8.403,2.915],[10.717,2.16],[8.341,1.791],[11.849,2.162],[16.932,-0.724],[49.941,-15.367],[41.609,-0.436],[25.016,7.697],[17.429,-3.46],[-50.052,0.989],[-29.307,-7.474]],"v":[[41.5,-27.5],[-9.754,-18.793],[-55.5,-4.5],[-99.521,11.768],[-146.5,22.5],[-198.159,17.699],[-248.5,5.5],[-266.203,3.516],[-274.5,4.5],[-244.244,12.102],[-216.5,17.5],[-184.942,24.173],[-150.5,27.5],[-98.5,15.5],[56.5,-24.5],[167.5,-6.5],[273.5,6.5],[255.5,3.5],[141.5,-17.5]],"c":true}],"h":1},{"t":171,"s":[{"i":[[36.507,-2.699],[16.853,-4.512],[15.627,-5.549],[17.043,-5.473],[16.846,-0.142],[16.327,3.751],[14.573,3.116],[8.411,1.012],[-9.091,-2.569],[-2.879,-0.526],[-4.48,-0.931],[-33.002,1.284],[-29.575,10.538],[-31.997,4.895],[-29.388,-6.961],[-33.966,-2.059],[-7.914,2.623],[7.549,0.025],[30.794,9.687]],"o":[[-18.96,1.402],[-16.853,4.512],[-13.982,4.965],[-17.043,5.473],[-14.118,0.119],[-16.327,-3.751],[-2.445,-0.522],[-8.411,-1.012],[-5.83,-1.648],[7.864,1.436],[32.885,6.837],[31.34,-1.22],[28.12,-10.019],[36.631,-5.604],[31.859,7.547],[7.957,0.482],[14.165,-4.694],[-39.919,-0.131],[-28.479,-8.959]],"v":[[50.5,-27.5],[-3.001,-18.11],[-51.5,-2.5],[-98.852,14.617],[-150.5,24.5],[-197.158,17.926],[-244.5,6.5],[-266.652,3.181],[-271.5,4.5],[-263.5,6.5],[-246.5,9.5],[-148.5,28.5],[-57.5,3.5],[33.5,-22.5],[140.5,-16.5],[234.5,6.5],[275.5,5.5],[250.5,3.5],[155.5,-16.5]],"c":true}],"h":1},{"t":172,"s":[{"i":[[36.08,-2.821],[16.774,-4.48],[16.064,-5.606],[18.721,-5.676],[20.714,1.425],[18.814,4.604],[16.744,2.554],[3.403,-0.16],[-8.333,-1.776],[-15.167,-3.788],[-19.722,-0.076],[-22.616,7.485],[-22.217,6.823],[-50.81,-13.689],[-40.673,3.757],[1.504,3.206],[5.599,-0.175],[0.496,0.021],[28.588,9.461]],"o":[[-18.841,1.474],[-16.774,4.48],[-16.401,5.723],[-18.721,5.675],[-15.002,-1.032],[-18.814,-4.604],[-2.721,-0.415],[-3.403,0.16],[19.615,4.179],[16.096,4.021],[24.425,0.094],[22.87,-7.569],[45.953,-14.113],[29.794,8.027],[-2.149,0.199],[-0.786,-1.676],[-12.724,0.398],[-36.465,-1.537],[-28.024,-9.275]],"v":[[58.5,-27.5],[5.418,-18.099],[-43.5,-2.5],[-96.265,16.361],[-155.5,24.5],[-207.694,14.642],[-262.5,2.5],[-274.79,1.857],[-270.5,4.5],[-213.5,16.5],[-148.5,29.5],[-75.5,12.5],[-7.5,-9.5],[150.5,-16.5],[267.5,6.5],[279.5,2.5],[265.5,2.5],[249.5,2.5],[158.5,-16.5]],"c":true}],"h":1},{"t":173,"s":[{"i":[[-0.111,0.009],[17.733,-5.073],[17.276,-6.082],[18.917,-5.2],[19.316,1.085],[15.666,4.293],[15.246,3.037],[8.524,0.677],[-9.068,-2.299],[-10.383,-2.027],[-6.315,-1.571],[-19.774,-0.997],[-30.946,10.856],[-37.544,4.845],[-33.982,-10.808],[-30.816,-1.535],[1.879,3.917],[10.4,0.646],[74.678,-5.486]],"o":[[-20.793,1.626],[-17.733,5.073],[-15.016,5.286],[-18.917,5.2],[-14.091,-0.791],[-15.666,-4.293],[-2.971,-0.592],[-8.524,-0.677],[9.154,2.321],[10.383,2.027],[19.137,4.76],[38.581,1.945],[31.343,-10.995],[41.727,-5.385],[22.969,7.306],[3.109,0.155],[-1.307,-2.725],[-64.187,-3.987],[-0.618,0.045]],"v":[[67.5,-27.5],[10.363,-16.842],[-41.5,0.5],[-93.275,17.779],[-151.5,25.5],[-196.633,16.684],[-243.5,4.5],[-266.53,1.832],[-271.5,3.5],[-240.871,10.063],[-214.5,15.5],[-150.5,29.5],[-45.5,5.5],[55.5,-22.5],[169.5,-11.5],[249.5,5.5],[279.5,2.5],[247.5,1.5],[68.5,-28.5]],"c":true}],"h":1},{"t":174,"s":[{"i":[[20.442,-1.511],[18.613,-5.324],[17.265,-6.13],[19.427,-5.075],[21.904,2.12],[15.877,4.454],[14.452,2.824],[7.366,1.016],[0.725,-1.611],[-3.515,-0.542],[-1.655,-0.239],[-35.523,-3.056],[-16.927,3.753],[-54.055,9.444],[-33.954,-10.978],[-30.098,-1.904],[-1.077,3.311],[3.706,0.081],[37.134,8.42]],"o":[[-21.283,1.573],[-18.613,5.324],[-16.389,5.819],[-19.427,5.075],[-14.041,-1.359],[-15.877,-4.454],[-2.81,-0.549],[-7.366,-1.016],[-0.716,1.591],[3.515,0.542],[41.249,5.947],[21.039,1.81],[52.617,-11.666],[37.73,-6.592],[24.313,7.861],[6.969,0.441],[0.41,-1.262],[-50.134,-1.096],[-19.543,-4.431]],"v":[[76.5,-27.5],[16.986,-16.417],[-36.5,1.5],[-90.364,19.454],[-152.5,25.5],[-198.192,15.598],[-244.5,3.5],[-262.564,0.38],[-277.5,0.5],[-271.779,3.515],[-262.5,4.5],[-151.5,29.5],[-93.5,23.5],[55.5,-21.5],[170.5,-13.5],[248.5,4.5],[279.5,2.5],[263.5,0.5],[147.5,-24.5]],"c":true}],"h":1},{"t":175,"s":[{"i":[[17.24,-1.275],[19.072,-5.465],[18.073,-6.54],[20.37,-4.818],[23.084,2.582],[15.297,4.685],[15.359,2.755],[8.672,0.348],[-9.036,-1.992],[-10.484,-1.808],[-6.367,-1.63],[-18.748,-1.92],[-43.115,15.309],[-55.276,-12.283],[-23.583,-5.61],[-20.408,2.432],[8.96,1.077],[8.415,2.037],[16.67,3.704]],"o":[[-21.638,1.6],[-19.072,5.465],[-17.436,6.309],[-20.37,4.818],[-13.455,-1.505],[-15.297,-4.685],[-3.349,-0.601],[-8.672,-0.348],[9.697,2.139],[10.484,1.808],[19.117,4.896],[55.798,5.715],[46.381,-16.469],[17.815,3.959],[16.968,4.037],[21.622,-2.577],[-13.878,-1.668],[-17.689,-4.281],[-19.444,-4.321]],"v":[[85.5,-27.5],[24.827,-16.205],[-30.5,2.5],[-87.264,20.668],[-152.5,25.5],[-196.072,14.937],[-242.5,2.5],[-266.289,0.555],[-271.5,2.5],[-240.002,8.381],[-213.5,13.5],[-151.5,29.5],[-4.5,-2.5],[150.5,-21.5],[211.5,-3.5],[272.5,4.5],[243.5,-1.5],[210.5,-7.5],[150.5,-25.5]],"c":true}],"h":1},{"t":176,"s":[{"i":[[11.893,-0.93],[19.168,-5.751],[18.506,-6.213],[20.882,-4.752],[24.734,2.962],[10.28,3.04],[11.053,2.784],[5.751,1.337],[7.055,1.165],[1.932,-4.119],[12.567,2.295],[-15.998,-4.131],[-19.003,-2.11],[-42.826,15.206],[-56.93,-11.122],[-45.28,-1.81],[12.547,1.83],[17.11,4.265],[16.685,3.031]],"o":[[-22.822,1.785],[-19.168,5.751],[-17.736,5.954],[-20.882,4.752],[-8.827,-1.057],[-10.28,-3.04],[-1.943,-0.489],[-5.751,-1.337],[-5.495,-0.907],[-1.827,3.894],[22.11,4.037],[19.275,4.977],[56.94,6.322],[45.536,-16.169],[35.372,6.91],[2.229,0.089],[-22.933,-3.344],[-19.43,-4.843],[-16.678,-3.03]],"v":[[93.5,-27.5],[31.263,-15.321],[-24.5,3.5],[-82.251,21.187],[-150.5,25.5],[-179.331,18.795],[-211.5,9.5],[-223.666,6.506],[-243.5,2.5],[-277.5,-0.5],[-271.5,2.5],[-211.5,12.5],[-149.5,29.5],[-1.5,-0.5],[150.5,-22.5],[261.5,3.5],[276.5,0.5],[210.5,-8.5],[149.5,-26.5]],"c":true}],"h":1},{"t":177,"s":[{"i":[[8.555,-0.633],[19.513,-5.954],[19.059,-6.489],[21.522,-4.41],[25.352,2.962],[20.185,6.447],[23.136,-0.905],[-0.339,-0.865],[-3.836,-0.336],[-11.013,-1.91],[-5.671,-1.462],[-20.472,-2.206],[-110.782,-8.967],[-2.376,-0.426],[-33.839,-5.207],[-1.728,3.701],[1.919,0.326],[14.29,3.599],[15.938,2.646]],"o":[[-22.89,1.692],[-19.513,5.955],[-18.562,6.32],[-21.522,4.41],[-18.125,-2.117],[-20.185,-6.447],[-5.191,0.203],[0.339,0.865],[10.275,0.9],[11.014,1.91],[23.855,6.147],[112.389,12.108],[2.602,0.211],[32.214,5.777],[4.326,0.666],[1.433,-3.069],[-20.566,-3.492],[-16.013,-4.033],[-13.727,-2.279]],"v":[[102.5,-27.5],[39.627,-15.098],[-17.5,4.5],[-77.408,21.962],[-147.5,25.5],[-204.742,9.733],[-269.5,-1.5],[-276.27,0.4],[-269.5,2.5],[-236.047,7.079],[-209.5,12.5],[-146.5,29.5],[142.5,-24.5],[150.5,-23.5],[243.5,0.5],[278.5,2.5],[272.5,-0.5],[211.5,-9.5],[149.5,-27.5]],"c":true}],"h":1},{"t":178,"s":[{"i":[[4.542,-0.336],[10.459,-2.261],[9.915,-3.05],[29.774,-8.395],[38.496,2.321],[11.83,3.838],[11.393,2.905],[13.938,2.064],[1.688,-3.389],[23.655,3.031],[-16.153,-4.035],[-23.092,-1.265],[-43.175,15.225],[-55.68,-6.668],[-25.4,-6.424],[-16.875,-1.385],[13.258,2.229],[15.909,4.057],[16.873,1.873]],"o":[[-12.249,0.905],[-10.459,2.261],[-28.41,8.742],[-29.773,8.395],[-12.286,-0.741],[-11.83,-3.838],[-4.182,-1.066],[-5.999,-0.889],[-2.504,5.027],[23.133,2.964],[21.861,5.461],[56.678,3.105],[40.119,-14.147],[22.473,2.691],[10.44,2.641],[-1,-0.082],[-21.485,-3.612],[-21.509,-5.485],[-11.864,-1.317]],"v":[[111.5,-27.5],[77.749,-22.609],[47.5,-14.5],[-37.936,13.797],[-138.5,25.5],[-174.669,17.624],[-209.5,6.5],[-242.5,0.5],[-277.5,-1.5],[-271.5,1.5],[-210.5,10.5],[-137.5,29.5],[5.5,2.5],[149.5,-24.5],[211.5,-7.5],[261.5,1.5],[275.5,-0.5],[211.5,-11.5],[148.5,-28.5]],"c":true}],"h":1},{"t":179,"s":[{"i":[[3.466,-0.271],[0.334,0.009],[0.332,-0.011],[41.282,-14.893],[54.293,10.067],[14.749,4.636],[19.12,2.698],[9.372,0.02],[-11.262,-1.613],[-14.919,-3.703],[-18.466,-3.714],[-44.143,15.19],[-23.019,6.041],[-30.432,-3.645],[-22.096,-5.647],[-14.985,-1.82],[15.795,3.243],[9.242,1.572],[27.531,3.057]],"o":[[-0.331,0.026],[-0.335,-0.009],[-45.58,1.496],[-41.282,14.893],[-14.883,-2.76],[-14.749,-4.636],[-3.776,-0.533],[-9.372,-0.02],[21.058,3.015],[16.144,4.007],[57.826,11.63],[21.97,-7.56],[24.166,-6.342],[18.522,2.218],[9.937,2.539],[6.551,0.796],[-11.891,-2.442],[-33.433,-5.688],[-10.094,-1.121]],"v":[[119.5,-27.5],[118.501,-27.489],[117.5,-27.5],[-8.465,6.673],[-147.5,23.5],[-190.822,11.454],[-240.5,-0.5],[-266.779,-1.609],[-270.5,0.5],[-209.5,9.5],[-148.5,27.5],[4.5,6.5],[71.5,-15.5],[152.5,-24.5],[213.5,-8.5],[260.5,1.5],[272.5,-1.5],[245.5,-4.5],[151.5,-28.5]],"c":true}],"h":1},{"t":180,"s":[{"i":[[46.351,-3.625],[21.6,-6.736],[21.773,-7.116],[25.318,-3.267],[26.013,6.511],[20.367,5.913],[22.558,-2.399],[-3.133,-0.742],[-3.787,-0.147],[-15.223,-3.51],[-13.046,-4.218],[-20.275,-0.961],[-17.465,3.157],[-16.139,5.358],[-15.784,5.375],[-39.484,-4.044],[-33.27,-6.373],[-3.824,3.824],[1.963,0.259]],"o":[[-24.826,1.941],[-21.6,6.736],[-19.716,6.444],[-25.317,3.267],[-14.972,-3.748],[-20.367,-5.913],[-8.321,0.885],[3.133,0.742],[19.063,0.742],[15.223,3.51],[16.435,5.314],[20.275,0.961],[17.66,-3.192],[16.139,-5.358],[29.573,-10.07],[30.41,3.115],[5.398,1.034],[2.708,-2.708],[-49.219,-6.499]],"v":[[128.5,-27.5],[59.71,-13.381],[-4.5,8.5],[-73.277,24.717],[-151.5,21.5],[-205.311,4.39],[-270.5,-3.5],[-275.581,-0.947],[-262.5,0.5],[-211.488,7.393],[-169.5,19.5],[-112.773,28.853],[-54.5,25.5],[-4.093,12.137],[43.5,-4.5],[152.5,-24.5],[244.5,-2.5],[278.5,1.5],[264.5,-3.5]],"c":true}],"h":1},{"t":181,"s":[{"i":[[38.134,-2.82],[22.215,-7.005],[22.303,-7.146],[26.038,-2.663],[26.001,6.332],[10.092,3.361],[11.442,2.56],[11.25,1.52],[9.08,-1.627],[-0.663,-0.77],[-2.971,0.086],[-16.897,-3.244],[-13.687,-4.595],[-37.808,5.368],[-31.376,10.797],[-39.27,-2.383],[-30.653,-6.062],[-1.37,2.952],[2.033,0.299]],"o":[[-24.838,1.837],[-22.215,7.004],[-20.846,6.679],[-26.038,2.663],[-8.19,-1.995],[-10.092,-3.361],[-6.92,-1.548],[-11.25,-1.52],[-5.624,1.008],[0.663,0.77],[19.723,-0.57],[16.898,3.244],[32.355,10.862],[36.314,-5.156],[31.42,-10.812],[32.267,1.958],[5.112,1.011],[1.497,-3.225],[-41.973,-6.18]],"v":[[137.5,-27.5],[67.599,-12.982],[1.5,9.5],[-70.135,24.759],[-149.5,20.5],[-177.06,11.924],[-209.5,2.5],[-238.38,-2.881],[-270.5,-3.5],[-276.946,-0.68],[-270.5,0.5],[-215.473,5.126],[-169.5,17.5],[-54.5,27.5],[45.5,-1.5],[151.5,-24.5],[244.5,-2.5],[278.5,0.5],[263.5,-3.5]],"c":true}],"h":1},{"t":182,"s":[{"i":[[32.217,-1.512],[16.943,-4.892],[15.73,-5.518],[16.608,-4.652],[18.795,-1.857],[18.885,2.444],[16.379,5.209],[12.785,2.909],[15.685,0.492],[-1.821,-3.852],[-6.029,-0.343],[-32.277,-7.928],[-35.95,6.331],[-29.176,10.324],[-33.302,-0.86],[-21.796,-5.174],[-15.35,-3.124],[-4.219,4.219],[1.734,0.294]],"o":[[-19.498,0.916],[-16.943,4.892],[-15.775,5.534],[-16.608,4.652],[-20.081,1.984],[-18.885,-2.444],[-12.174,-3.872],[-12.785,-2.909],[-1.405,-0.044],[1.803,3.816],[34.465,1.96],[30.69,7.538],[33.661,-5.928],[27.463,-9.718],[19.809,0.512],[8.537,2.026],[5.264,1.071],[2.256,-2.256],[-39.449,-6.693]],"v":[[145.5,-27.5],[91.174,-17.952],[42.5,-1.5],[-5.735,14.258],[-58.5,24.5],[-117.277,23.395],[-170.5,11.5],[-207.367,0.965],[-249.5,-4.5],[-278.5,-1.5],[-242.5,-0.5],[-146.5,22.5],[-38.5,25.5],[53.5,-1.5],[150.5,-24.5],[213.5,-11.5],[244.5,-4.5],[278.5,0.5],[263.5,-4.5]],"c":true}],"h":1},{"t":183,"s":[{"i":[[33.367,-2.872],[31.686,-11.829],[40.397,-1.512],[18.194,2.844],[17.034,5.418],[15.978,3.19],[18.999,-1.923],[1.419,-1.168],[-5.222,0.132],[-17.15,-2.705],[-14.238,-4.712],[-19.023,-2.683],[-21.002,1.328],[-17.124,4.809],[-15.317,5.552],[-17.145,5.393],[-18.332,-0.041],[-40.918,-2.297],[4.474,0.771]],"o":[[-36.859,3.172],[-31.686,11.829],[-21.192,0.794],[-18.194,-2.844],[-13.089,-4.163],[-15.978,-3.19],[-4.544,0.46],[-1.419,1.168],[21.162,-0.534],[17.15,2.705],[16.906,5.595],[19.023,2.683],[19.186,-1.213],[17.124,-4.809],[15.09,-5.47],[17.145,-5.393],[42.787,0.095],[16.639,0.934],[-38.754,-6.682]],"v":[[144.5,-26.5],[45.153,0.745],[-59.5,25.5],[-118.119,22.158],[-170.5,9.5],[-214.067,-2.565],[-266.5,-5.5],[-276.325,-2.556],[-271.5,-0.5],[-214.307,3.066],[-167.5,14.5],[-113.572,27.193],[-53.5,29.5],[0.902,19.754],[49.5,3.5],[98.069,-14.133],[151.5,-23.5],[270.5,0.5],[263.5,-5.5]],"c":true}],"h":1},{"t":184,"s":[{"i":[[33.064,-3.288],[29.581,-10.825],[34.36,-3.188],[17.911,1.815],[15.853,4.548],[20.923,4.737],[22.335,-5.102],[-8.121,0.104],[-2.993,-0.024],[-13.687,-2.821],[-10.941,-3.582],[-18.387,-2.996],[-21.323,0.593],[-17.297,4.497],[-15.332,5.444],[-36.117,0.857],[-28.967,-6.221],[8.154,4.509],[10.416,1.922]],"o":[[-35.315,3.511],[-29.581,10.825],[-19.501,1.809],[-17.912,-1.815],[-17.971,-5.155],[-20.923,-4.737],[-10.477,2.393],[8.121,-0.104],[16.313,0.131],[13.687,2.822],[17.129,5.608],[18.387,2.996],[20.479,-0.57],[17.297,-4.497],[29.915,-10.622],[31.067,-0.737],[4.318,0.927],[-4.758,-2.631],[-37.817,-6.976]],"v":[[146.5,-25.5],[51.784,-0.257],[-41.5,24.5],[-97.736,24.268],[-148.5,14.5],[-207.227,-2.693],[-272.5,-4.5],[-270.103,-1.723],[-247.5,-2.5],[-202.471,2.412],[-165.5,12.5],[-112.645,25.651],[-53.5,29.5],[2.86,21.155],[51.5,5.5],[152.5,-22.5],[246.5,-5.5],[276.5,-2.5],[264.5,-5.5]],"c":true}],"h":1},{"t":185,"s":[{"i":[[32.928,-3.149],[29.636,-11.185],[35.653,-2.027],[17.429,2.445],[16.005,4.372],[21.405,4.401],[22.996,-4.628],[-9.089,0.079],[-3.12,-0.008],[-16.419,-3.823],[-16.214,-4.66],[-17.654,-2.436],[-20.534,1.299],[-29.504,10.731],[-30.229,0.839],[-27.625,-6.07],[-3.107,3.107],[-7.714,-2.41],[7.586,1.508]],"o":[[-33.802,3.232],[-29.636,11.185],[-20.278,1.153],[-17.429,-2.445],[-18.382,-5.022],[-21.405,-4.401],[-11.476,2.309],[9.089,-0.079],[18.11,0.046],[16.419,3.823],[15.849,4.556],[17.654,2.436],[34.63,-2.191],[26.704,-9.713],[30.898,-0.858],[2.361,0.519],[2.022,-2.022],[0.015,0.005],[-36.827,-7.318]],"v":[[149.5,-24.5],[56.889,1.403],[-38.5,25.5],[-94.705,23.144],[-144.5,12.5],[-204.539,-3.737],[-271.5,-5.5],[-268.447,-2.774],[-243.5,-3.5],[-192.078,3.039],[-143.5,16.5],[-93.514,27.391],[-36.5,29.5],[59.5,5.5],[153.5,-21.5],[246.5,-5.5],[278.5,-0.5],[273.5,-4.5],[264.5,-5.5]],"c":true}],"h":1},{"t":186,"s":[{"i":[[36.829,-4.942],[14.22,-5.058],[13.573,-4.548],[14.556,-3.855],[18.938,-0.944],[17.117,2.015],[15.005,3.811],[14.754,4.323],[17.192,0.952],[13.877,-3.816],[-1.373,-2.971],[7.4,-0.37],[-5.05,0.402],[-26.312,-8.036],[-39.453,-0.78],[-29.799,9.862],[-34.508,3.535],[-29.27,-6.086],[19.161,5.164]],"o":[[-16.546,2.221],[-14.22,5.058],[-13.84,4.638],[-14.556,3.855],[-17.526,0.873],[-17.117,-2.015],[-14.79,-3.756],[-14.755,-4.323],[-14.517,-0.804],[16.069,-4.419],[1.303,2.819],[5.089,-0.254],[36.801,-2.929],[33.999,10.384],[45.976,0.909],[30.899,-10.226],[36.104,-3.698],[6.879,1.43],[-35.843,-9.659]],"v":[[147.5,-22.5],[101.77,-10.746],[60.5,4.5],[18.823,17.771],[-30.5,25.5],[-82.89,23.513],[-131.5,14.5],[-175.198,1.397],[-222.5,-7.5],[-273.5,-5.5],[-278.5,-2.5],[-271.5,-1.5],[-264.5,-2.5],[-165.5,7.5],[-58.5,29.5],[52.5,11.5],[150.5,-19.5],[247.5,-5.5],[271.5,-4.5]],"c":true}],"h":1},{"t":187,"s":[{"i":[[33.986,-3.815],[8.999,-2.698],[8.762,-3.058],[25.526,-6.531],[34.281,2.364],[16.872,4.349],[18.158,5.34],[19.269,1.845],[16.747,-4.256],[-7.723,0.351],[-1.948,0.097],[-19.636,-4.343],[-18.776,-4.908],[-16.21,-2.348],[-18.641,0.447],[-26.958,8.922],[-31.715,5.265],[-37.273,-3.07],[2.458,0.524]],"o":[[-10.244,1.15],[-8.998,2.698],[-23.617,8.242],[-25.526,6.53],[-18.352,-1.265],[-16.872,-4.348],[-13.178,-3.876],[-19.269,-1.845],[-9.839,2.501],[7.723,-0.351],[25.679,-1.28],[19.636,4.343],[15.518,4.056],[16.21,2.348],[37.899,-0.908],[26.868,-8.892],[43.839,-7.278],[19.843,1.634],[-33.879,-7.227]],"v":[[153.5,-21.5],[124.888,-15.431],[98.5,-6.5],[26.498,17.454],[-61.5,25.5],[-113.646,16.556],[-165.5,1.5],[-216.324,-8.099],[-272.5,-5.5],[-269.84,-3.051],[-249.5,-4.5],[-182.823,1.359],[-126.5,16.5],[-79.342,26.377],[-27.5,29.5],[64.5,9.5],[149.5,-17.5],[270.5,-1.5],[264.5,-6.5]],"c":true}],"h":1},{"t":188,"s":[{"i":[[30.145,-0.572],[3.488,-0.086],[3.112,-0.599],[15.683,-5.974],[16.737,-4.923],[19.144,-2.528],[22.813,2.703],[29.674,8.126],[38.245,-3.305],[6.445,-0.944],[-0.899,-2.042],[-3.102,0.543],[-1.978,0.227],[-41.92,-11.407],[-38.674,0],[-27.478,8.836],[-29.77,5.243],[-33.675,-5.786],[13.66,3.796]],"o":[[-2.938,0.056],[-3.488,0.086],[-16.531,3.182],[-15.683,5.974],[-15.613,4.592],[-19.143,2.528],[-32.061,-3.8],[-29.673,-8.126],[-2.12,0.183],[-6.445,0.944],[0.615,1.399],[3.102,-0.543],[58.048,-6.668],[28.817,7.841],[36.761,0],[27.897,-8.97],[39.417,-6.941],[3.386,0.582],[-32.067,-8.912]],"v":[[168.5,-20.5],[158.631,-20.408],[148.5,-19.5],[100.654,-4.805],[52.5,12.5],[0.4,23.972],[-62.5,24.5],[-152.363,2.672],[-251.5,-8.5],[-267.264,-6.894],[-278.5,-2.5],[-272.022,-1.78],[-263.5,-3.5],[-121.5,15.5],[-25.5,29.5],[67.5,12.5],[150.5,-15.5],[264.5,-3.5],[273.5,-5.5]],"c":true}],"h":1},{"t":189,"s":[{"i":[[31.53,-2.787],[15.135,-5.621],[15.742,-4.862],[15.367,-2.684],[18.718,0],[32.872,9.698],[44.911,-3.793],[8.386,-1.375],[-1.426,-1.426],[-7.317,1.076],[-4.108,0.321],[-19.972,-4.158],[-19.368,-5.46],[-15.494,-2.791],[-18.421,0],[-27.547,8.858],[-29.349,5.875],[-32.821,-6.194],[12.493,3.436]],"o":[[-18.716,1.654],[-15.135,5.621],[-13.813,4.266],[-15.367,2.683],[-43.601,0],[-32.872,-9.698],[-0.881,0.075],[-8.386,1.375],[1.625,1.625],[7.317,-1.076],[26.744,-2.091],[19.972,4.158],[13.605,3.835],[15.494,2.791],[38.061,0],[26.952,-8.667],[41.087,-8.224],[8.297,1.566],[-31.085,-8.548]],"v":[[163.5,-18.5],[113.769,-6.405],[68.5,10.5],[25.178,21.2],[-25.5,25.5],[-134.517,5.155],[-245.5,-9.5],[-263.73,-7.014],[-278.5,-2.5],[-262.862,-2.54],[-243.5,-5.5],[-174.968,-1.164],[-117.5,14.5],[-74.112,24.877],[-23.5,29.5],[69.5,13.5],[151.5,-13.5],[263.5,-3.5],[272.5,-5.5]],"c":true}],"h":1},{"t":190,"s":[{"i":[[26,-1.922],[14.82,-4.696],[15.076,-5.061],[15.794,-3.305],[17.578,0],[16.014,2.735],[14.148,4.059],[27.409,4.36],[28.703,-6.942],[-2.666,-0.399],[-4.736,0.63],[-18.488,-0.56],[-14.848,-4.178],[-39.939,-5.002],[-33.275,10.584],[-42.283,0.286],[-23.015,-4.463],[-0.964,2.167],[0.765,0.194]],"o":[[-15.644,1.157],[-14.82,4.696],[-14.245,4.782],[-15.794,3.304],[-19.796,0],[-16.014,-2.735],[-22.661,-6.501],[-27.409,-4.36],[-8.402,2.032],[2.666,0.399],[18.199,-2.418],[18.488,0.56],[37.095,10.437],[50.262,6.294],[34.99,-11.129],[26.507,-0.179],[0.925,0.179],[1.125,-2.53],[-28.184,-7.166]],"v":[[174.5,-17.5],[129.073,-7.928],[84.5,7.5],[39.499,20.087],[-10.5,25.5],[-63.736,21.044],[-108.5,10.5],[-184.468,-8.082],[-269.5,-6.5],[-275.853,-3.004],[-262.5,-3.5],[-206.487,-6.447],[-155.5,0.5],[-45.5,28.5],[76.5,14.5],[185.5,-14.5],[255.5,-5.5],[277.5,-2.5],[268.5,-7.5]],"c":true}],"h":1},{"t":191,"s":[{"i":[[20.774,-0.212],[15.669,-4.953],[15.546,-4.998],[17.078,-2.97],[19.764,0],[30.555,9.789],[38.897,-0.155],[9.934,-1.122],[8.863,-2.47],[-8.513,0.615],[-3.435,0.461],[-35.445,-10.247],[-43.309,-1.038],[-16.867,2.719],[-14.549,4.602],[-14.931,5.325],[-16.829,1.128],[-22.919,-3.857],[22.702,6.017]],"o":[[-18.776,0.191],[-15.669,4.953],[-15.924,5.12],[-17.078,2.97],[-40.883,0],[-30.555,-9.789],[-10.401,0.041],[-9.934,1.122],[-10.486,2.923],[8.513,-0.615],[44.912,-6.027],[35.445,10.247],[19.982,0.479],[16.868,-2.719],[14.447,-4.57],[14.931,-5.325],[25.152,-1.686],[8.889,1.496],[-24.462,-6.483]],"v":[[189.5,-16.5],[138.577,-7.605],[92.5,8.5],[43.38,20.84],[-11.5,25.5],[-113.99,5.883],[-213.5,-13.5],[-244.153,-11.822],[-272.5,-6.5],[-269.44,-3.962],[-245.5,-6.5],[-129.297,6.202],[-15.5,29.5],[39.575,25.81],[86.5,14.5],[130.213,-1.581],[177.5,-12.5],[243.5,-7.5],[269.5,-6.5]],"c":true}],"h":1},{"t":192,"s":[{"i":[[23.395,-1.921],[15.225,-5.021],[15.069,-4.602],[17.269,-2.523],[18.688,0.747],[30.344,9.609],[35.673,0.127],[11.649,-1.366],[9.2,-2.57],[-3.367,-0.04],[-2.604,0.415],[-18.609,-0.021],[-15.695,-3.921],[-37.927,-6.679],[-34.25,9.357],[-40.499,2.243],[-21.339,-3.63],[-1.57,1.57],[-0.756,-0.198]],"o":[[-16.032,1.316],[-15.225,5.021],[-15.236,4.653],[-17.269,2.524],[-35.95,-1.437],[-30.344,-9.609],[-10.206,-0.036],[-11.649,1.366],[-8.072,2.255],[3.367,0.04],[18.868,-3.005],[18.609,0.021],[38.694,9.665],[48.795,8.593],[36.634,-10.008],[23.525,-1.303],[3.81,0.648],[2.264,-2.264],[-25.834,-6.767]],"v":[[182.5,-14.5],[135.778,-3.965],[90.5,11.5],[41.589,22.55],[-12.5,25.5],[-109.208,4.517],[-205.5,-14.5],[-239.254,-12.455],[-271.5,-6.5],[-275.507,-3.498],[-263.5,-4.5],[-206.62,-9.194],[-154.5,-3.5],[-44.5,25.5],[79.5,18.5],[188.5,-11.5],[255.5,-5.5],[277.5,-2.5],[269.5,-7.5]],"c":true}],"h":1},{"t":193,"s":[{"i":[[45.359,-3.145],[10.911,-1.276],[8.249,-2.335],[2.085,-0.879],[-0.447,-1.021],[-3.693,0.748],[-0.735,0.135],[-22.068,-0.355],[-17.791,-5.434],[-21.716,-5.877],[-24.613,-0.922],[-43.706,15.519],[-27.244,0.708],[-16.311,-2.872],[15.134,4.881],[19.575,1.026],[12.478,-3.904],[44.088,-4.355],[36.452,10.457]],"o":[[-8.107,0.562],[-10.911,1.276],[1.893,-0.536],[-2.085,0.879],[0.493,1.127],[3.693,-0.748],[20.935,-3.852],[22.068,0.355],[21.52,6.572],[21.716,5.877],[56.74,2.125],[17.318,-6.149],[17.48,-0.454],[6.329,1.115],[-16.492,-5.319],[-26.805,-1.405],[-44.125,13.805],[-51.81,5.118],[-37.769,-10.835]],"v":[[-212.5,-14.5],[-242.394,-11.829],[-272.5,-6.5],[-274.415,-5.668],[-278.5,-2.5],[-270.681,-2.554],[-262.5,-4.5],[-196.642,-9.965],[-135.5,-1.5],[-71.32,18.238],[-2.5,29.5],[135.5,3.5],[203.5,-10.5],[258.5,-4.5],[272.5,-6.5],[217.5,-14.5],[152.5,-6.5],[37.5,24.5],[-89.5,8.5]],"c":true}],"h":1},{"t":194,"s":[{"i":[[47.36,-3.502],[11.423,-1.432],[8.873,-2.649],[4.327,-1.481],[-0.55,-1.287],[-3.344,0.545],[-0.111,0.021],[-7.613,1.488],[-6.363,0.73],[-23.854,-6.384],[-22.828,-6.224],[-16,-2.317],[-19.93,0.107],[-28.836,9.681],[-49.439,-6.571],[16.76,5.405],[28.608,-9],[43.54,-2.169],[36.534,10.684]],"o":[[-8.436,0.624],[-11.423,1.432],[10.757,-3.211],[-4.327,1.481],[0.513,1.199],[3.344,-0.545],[7.185,-1.319],[7.613,-1.488],[32.757,-3.759],[23.854,6.384],[14.072,3.837],[16,2.318],[33.435,-0.18],[40.293,-13.527],[8.605,1.144],[-36.022,-11.617],[-42.829,13.473],[-51.487,2.565],[-37.953,-11.099]],"v":[[-209.5,-15.5],[-240.673,-12.518],[-272.5,-6.5],[-267.845,-7.873],[-278.5,-2.5],[-271.198,-2.085],[-264.5,-3.5],[-241.883,-7.941],[-220.5,-11.5],[-137.553,-4.987],[-69.5,16.5],[-24.893,25.958],[28.5,29.5],[121.5,11.5],[245.5,-6.5],[272.5,-6.5],[153.5,-4.5],[38.5,25.5],[-87.5,7.5]],"c":true}],"h":1},{"t":195,"s":[{"i":[[49.587,-4.071],[11.536,-1.684],[9.572,-2.5],[-2.021,-0.463],[-3.555,0.585],[-6.935,1.331],[-3.861,0.625],[-23.689,-4.571],[-22.26,-6.572],[-15.303,-3.728],[-17.502,-0.872],[-16.711,2.144],[-14.639,4.396],[-54.34,-3.376],[-2.742,2.742],[3.496,0.688],[46.192,-14.692],[39.339,0.778],[30.436,8.681]],"o":[[-9.281,0.762],[-11.537,1.684],[-6.639,1.734],[2.021,0.463],[6.398,-1.052],[6.935,-1.331],[29.984,-4.855],[23.689,4.571],[14.287,4.218],[15.303,3.727],[19.515,0.973],[16.711,-2.144],[39.994,-12.01],[4.056,0.252],[2.611,-2.611],[-57.895,-11.394],[-32.957,10.482],[-37.464,-0.741],[-40.14,-11.449]],"v":[[-206.5,-16.5],[-238.782,-12.803],[-271.5,-6.5],[-276.645,-3.261],[-266.5,-3.5],[-245.597,-7.32],[-228.5,-10.5],[-149.207,-9.071],[-81.5,9.5],[-37.41,22.01],[11.5,29.5],[65.657,27.526],[112.5,17.5],[236.5,-7.5],[277.5,-2.5],[265.5,-7.5],[121.5,9.5],[19.5,25.5],[-79.5,6.5]],"c":true}],"h":1},{"t":196,"s":[{"i":[[43.993,-0.716],[7.811,-0.731],[10.259,-1.936],[7.388,-1.362],[5.097,-1.732],[-3.897,-0.159],[1.149,-0.176],[-14.108,2.718],[-15.414,-0.044],[-17.82,-5.422],[-18.191,-5.248],[-34.28,-1.284],[-27.285,8.194],[-53.09,-4.151],[7.64,4.366],[5.78,0.452],[37.593,-11.289],[36.116,1.353],[26.69,7.613]],"o":[[-8.496,0.139],[-7.811,0.731],[-4.353,0.822],[-7.387,1.362],[-6.438,2.187],[3.897,0.159],[14.156,-2.174],[14.108,-2.718],[22.528,0.064],[17.82,5.422],[27.708,7.995],[38.713,1.45],[38.677,-11.615],[7.867,0.615],[-6.704,-3.831],[-53.915,-4.216],[-27.295,8.197],[-35.843,-1.342],[-37.155,-10.598]],"v":[[-185.5,-18.5],[-209.178,-17.348],[-235.5,-13.5],[-254.441,-10.183],[-274.5,-5.5],[-274.467,-2.492],[-266.5,-2.5],[-224.444,-10.663],[-180.5,-15.5],[-121.247,-5.888],[-68.5,11.5],[23.5,29.5],[121.5,17.5],[243.5,-5.5],[275.5,-5.5],[244.5,-9.5],[120.5,13.5],[23.5,25.5],[-67.5,7.5]],"c":true}],"h":1},{"t":197,"s":[{"i":[[52.309,-3.627],[7.764,-1.108],[9.697,-1.998],[7.421,-1.309],[4.524,-1.778],[-7.769,1.101],[-2.173,0.444],[-4.941,1.002],[-3.964,0.709],[-24.655,-5.169],[-23.338,-6.877],[-15.226,-3.69],[-17.011,-1.089],[-28.037,8.278],[-51.894,-2.951],[-3.521,3.521],[0.878,0.139],[70.313,-3.894],[33.445,9.429]],"o":[[-8.246,0.572],[-7.764,1.108],[-4.793,0.987],[-7.421,1.309],[-7.25,2.85],[7.769,-1.101],[6.272,-1.282],[4.941,-1.002],[31.044,-5.553],[24.654,5.169],[14.084,4.15],[15.226,3.69],[37.557,2.404],[38.11,-11.252],[5.419,0.308],[2.33,-2.33],[-82.261,-13.025],[-44.622,2.471],[-44.768,-12.621]],"v":[[-186.5,-19.5],[-209.911,-17.07],[-235.5,-12.5],[-255.201,-9.093],[-274.5,-4.5],[-268.568,-3.029],[-248.5,-6.5],[-231.769,-9.93],[-218.5,-12.5],[-136.22,-10.823],[-65.5,9.5],[-21.696,21.796],[26.5,29.5],[126.5,18.5],[245.5,-5.5],[277.5,-2.5],[265.5,-7.5],[65.5,25.5],[-48.5,10.5]],"c":true}],"h":1},{"t":198,"s":[{"i":[[46.131,-3.607],[12.42,-2.163],[11.95,-2.461],[5.21,-1.887],[-9.281,1.049],[-19.606,4.008],[-21.358,-2.205],[-7.314,-2.29],[-7.129,-2.053],[-22.127,-6.167],[-25.88,-2.82],[-17.378,1.69],[-14.784,4.168],[-18.903,5.002],[-25.149,-1.431],[17.136,4.713],[40.076,-11.057],[36.439,4.273],[28.21,8.68]],"o":[[-11.37,0.889],[-12.42,2.163],[-2.439,0.502],[-5.211,1.887],[19.219,-2.172],[19.606,-4.008],[7.615,0.786],[7.314,2.29],[22.614,6.513],[22.127,6.167],[17.705,1.93],[17.378,-1.69],[19.239,-5.424],[18.903,-5.002],[3.803,0.216],[-55.874,-15.365],[-29.412,8.115],[-34.704,-4.069],[-36.67,-11.283]],"v":[[-184.5,-20.5],[-220.566,-15.679],[-257.5,-8.5],[-273.29,-3.836],[-271.5,-1.5],[-213.605,-12.783],[-152.5,-17.5],[-130.136,-12.45],[-108.5,-5.5],[-42.45,14.269],[28.5,28.5],[81.691,28.573],[130.5,19.5],[186.067,2.359],[250.5,-4.5],[272.5,-5.5],[128.5,15.5],[25.5,24.5],[-66.5,3.5]],"c":true}],"h":1},{"t":199,"s":[{"i":[[48.415,-4.146],[12.027,-2.325],[12.907,-2.59],[5.707,-1.95],[-9.786,1.194],[-20.323,4.266],[-22.031,-2.464],[-8.336,-2.419],[-8.19,-2.377],[-25.519,-6.969],[-30.372,0],[-17.256,3.504],[-16.677,5.983],[-36.94,-2.665],[0.032,3.451],[7.983,0.276],[42.626,-11.074],[34.697,4.448],[29.022,8.683]],"o":[[-12.983,1.112],[-12.027,2.324],[-1.959,0.393],[-5.707,1.95],[19.676,-2.4],[20.323,-4.266],[8.466,0.947],[8.336,2.419],[24.551,7.125],[25.519,6.969],[21.3,0],[17.256,-3.504],[27.937,-10.023],[4.453,0.321],[-0.03,-3.223],[-52.461,-1.814],[-29.864,7.758],[-35.366,-4.534],[-40.679,-12.17]],"v":[[-181.5,-21.5],[-218.557,-16.108],[-255.5,-8.5],[-271.808,-3.81],[-270.5,-1.5],[-210.766,-13.648],[-147.5,-18.5],[-122.293,-13.072],[-97.5,-5.5],[-23.366,17.344],[59.5,29.5],[116.468,23.987],[166.5,9.5],[264.5,-2.5],[277.5,-3.5],[252.5,-7.5],[133.5,16.5],[31.5,23.5],[-60.5,2.5]],"c":true}],"h":1},{"t":200,"s":[{"i":[[28.958,-1.865],[9.283,-1.355],[12.624,-2.919],[9.172,-1.726],[6.387,-1.957],[-3.634,-0.12],[-3.377,0.598],[-19.019,4.199],[-18.823,-1.822],[-15.18,-4.467],[-14.576,-4.611],[-14.988,-3.902],[-17.175,-2.689],[-30.231,7.192],[-50.508,-1.405],[15.936,3.361],[10.64,0.21],[37.515,-11.223],[63.971,19.392]],"o":[[-10.245,0.66],[-9.283,1.355],[-4.923,1.139],[-9.172,1.726],[-6.914,2.119],[3.634,0.12],[17.099,-3.027],[19.019,-4.199],[15.706,1.52],[15.18,4.467],[14.871,4.704],[14.988,3.902],[34.652,5.425],[42.985,-10.226],[4.887,0.136],[-6.537,-1.379],[-47.04,-0.93],[-80.067,23.954],[-28.924,-8.768]],"v":[[-164.5,-23.5],[-192.716,-20.695],[-224.5,-14.5],[-247.402,-10.114],[-272.5,-4.5],[-274.719,-1.463],[-261.5,-2.5],[-206.794,-15.136],[-149.5,-20.5],[-103.152,-10.818],[-58.5,3.5],[-14.228,16.512],[33.5,26.5],[137.5,21.5],[255.5,-2.5],[273.5,-4.5],[254.5,-6.5],[147.5,15.5],[-79.5,-6.5]],"c":true}],"h":1},{"t":201,"s":[{"i":[[38.085,-2.978],[9.531,-1.628],[11.266,-2.657],[8.351,-1.849],[7.566,-1.947],[2.042,-0.496],[-0.646,-1.407],[-7.453,1.359],[-1.397,0.29],[-15.569,3.758],[-18.857,-1.33],[-32.169,-10.194],[-38.67,-3.758],[-32.527,11.75],[-32.703,0.215],[-1.144,1.144],[-1.118,-0.138],[36.491,-12.381],[55.028,17.343]],"o":[[-10.612,0.83],[-9.53,1.628],[-7.031,1.658],[-8.351,1.849],[1.521,-0.392],[-2.042,0.496],[0.792,1.724],[7.453,-1.359],[15.868,-3.3],[15.569,-3.758],[35.34,2.492],[31.599,10.014],[41.055,3.99],[22.114,-7.988],[4.494,-0.029],[2.745,-2.745],[-42.242,-5.219],[-68.073,23.097],[-34.42,-10.848]],"v":[[-163.5,-24.5],[-193.01,-20.87],[-223.5,-14.5],[-247.098,-9.217],[-271.5,-3.5],[-273.844,-3.349],[-277.5,-0.5],[-261.954,-0.989],[-245.5,-4.5],[-199.241,-16.472],[-148.5,-21.5],[-47.5,4.5],[56.5,28.5],[168.5,14.5],[248.5,-1.5],[278.5,-1.5],[266.5,-5.5],[152.5,15.5],[-52.5,-0.5]],"c":true}],"h":1},{"t":202,"s":[{"i":[[-2.504,0.214],[15.025,-3.434],[14.585,-3.04],[7.009,-1.516],[-1.608,-1.608],[-7.295,1.637],[-1.865,0.41],[-15.991,3.885],[-18.077,-1.275],[-23.486,-7.264],[-22.917,-6.311],[-26.66,-2.507],[-26.316,7.375],[-41.255,0.557],[19.237,3.47],[6.791,-0.5],[11.139,-2.548],[20.789,-5.357],[90.708,5.829]],"o":[[-14.314,1.226],[-15.025,3.434],[-1.571,0.328],[-7.009,1.516],[1.957,1.957],[7.295,-1.637],[16.96,-3.735],[15.991,-3.885],[23.141,1.632],[23.486,7.264],[23.046,6.346],[26.66,2.507],[33.004,-9.25],[7.128,-0.096],[-5.236,-0.944],[-20.791,1.529],[-28.053,6.417],[-112.958,29.106],[-2.472,-0.159]],"v":[[-160.5,-25.5],[-204.796,-17.86],[-249.5,-7.5],[-265.884,-4.46],[-277.5,0.5],[-260.931,-0.225],[-244.5,-4.5],[-195.838,-17.258],[-145.5,-22.5],[-75.332,-7.509],[-5.5,14.5],[70.047,29.291],[150.5,23.5],[254.5,-1.5],[271.5,-4.5],[243.5,-4.5],[208.5,0.5],[148.5,19.5],[-147.5,-26.5]],"c":true}],"h":1},{"t":203,"s":[{"i":[[27.416,-2.463],[17.857,-4.33],[18.368,-3.133],[2.993,-1.267],[-8.01,0.589],[-19.981,5.656],[-20.874,-0.181],[-12.273,-2.892],[-11.979,-3.318],[-11.458,-3.368],[-11.783,-3.374],[-53.672,13.915],[-17.813,4.293],[-17.602,0.184],[0.109,2.981],[0.346,0.041],[33.551,-7.913],[45.819,13.195],[23.513,6.436]],"o":[[-17.204,1.546],[-17.857,4.33],[-3.038,0.518],[-2.993,1.268],[21.202,-1.558],[19.981,-5.656],[12.929,0.112],[12.273,2.892],[11.386,3.154],[11.458,3.368],[44.46,12.73],[18.118,-4.697],[11.756,-2.833],[-0.557,0.006],[-0.03,-0.826],[-52.607,-6.247],[-56.875,13.414],[-22.415,-6.455],[-24.232,-6.633]],"v":[[-156.5,-26.5],[-209.128,-16.691],[-263.5,-4.5],[-275.287,-1.17],[-270.5,0.5],[-209.254,-12.804],[-148.5,-23.5],[-110.787,-18.404],[-74.5,-8.5],[-40.298,1.335],[-5.5,11.5],[150.5,25.5],[208.5,5.5],[260.5,-0.5],[278.5,-2.5],[271.5,-4.5],[148.5,21.5],[-9.5,7.5],[-78.5,-13.5]],"c":true}],"h":1},{"t":204,"s":[{"i":[[47.462,-3.598],[10.404,-2.608],[10.615,-2.825],[10.068,-1.857],[8.954,-1.768],[2.279,-0.518],[-0.575,-1.234],[-3.897,0.205],[-0.97,0.135],[-2.707,0.544],[-1.885,0.369],[-33.211,1.124],[-23.662,-6.516],[-51.472,-8.012],[-27.124,7.018],[-43.977,0.869],[16.963,2.174],[32.97,-7.592],[42.39,12.397]],"o":[[-9.769,0.741],[-10.404,2.608],[-6.774,1.803],[-10.068,1.857],[1.539,-0.304],[-2.279,0.518],[0.444,0.953],[3.897,-0.205],[3.288,-0.456],[2.707,-0.544],[32.974,-6.442],[24.654,-0.834],[48.234,13.282],[25.512,3.971],[31.915,-8.257],[3.55,-0.07],[-51.22,-6.563],[-58.145,13.389],[-44.074,-12.889]],"v":[[-152.5,-27.5],[-182.865,-22.064],[-214.5,-13.5],[-240.865,-7.974],[-270.5,-2.5],[-273.276,-2.153],[-277.5,0.5],[-269.395,1.316],[-260.5,0.5],[-251.448,-1.065],[-244.5,-2.5],[-149.5,-24.5],[-73.5,-11.5],[67.5,26.5],[151.5,26.5],[259.5,0.5],[272.5,-3.5],[149.5,22.5],[-6.5,5.5]],"c":true}],"h":1},{"t":205,"s":[{"i":[[27.949,-3.219],[10.191,-2.764],[10.709,-2.845],[10.059,-1.893],[8.969,-1.623],[-4.088,-0.148],[-1.47,0.191],[-4.12,0.776],[-32.054,2.586],[-23.561,-6.183],[-22.635,-6.849],[-56.899,10.711],[-24.285,6.296],[-19.703,1.269],[0.053,2.138],[3.518,-0.167],[35.65,-6.361],[24.176,4.257],[48.132,11.948]],"o":[[-9.527,1.097],[-10.191,2.764],[-6.794,1.805],[-10.059,1.893],[-8.824,1.597],[4.089,0.149],[7.436,-0.965],[32.499,-6.118],[25.891,-2.089],[23.301,6.115],[40.289,12.19],[19.564,-3.683],[11.6,-3.007],[-2.39,0.154],[-0.069,-2.783],[-46.431,2.208],[-28.196,5.031],[-51.646,-9.095],[-25.156,-6.244]],"v":[[-153.5,-27.5],[-183.114,-21.311],[-214.5,-12.5],[-240.869,-6.864],[-270.5,-1.5],[-273.721,0.841],[-261.5,0.5],[-244.5,-1.5],[-150.5,-24.5],[-73.5,-13.5],[-4.5,6.5],[149.5,28.5],[209.5,9.5],[261.5,1.5],[278.5,-1.5],[260.5,-3.5],[147.5,24.5],[64.5,21.5],[-74.5,-17.5]],"c":true}],"h":1},{"t":206,"s":[{"i":[[27.314,-3.665],[9.639,-2.836],[12.166,-3.278],[9.826,-1.612],[9.421,-1.591],[-3.288,-0.549],[-4.587,0.503],[-34.407,3.82],[-23.289,-5.469],[-21.927,-6.722],[-56.69,6.623],[-22.399,6.253],[-20.756,1.856],[1.347,2.796],[5.868,-0.869],[3.359,-0.966],[19.024,-1.949],[43.586,13.787],[23.257,5.32]],"o":[[-10.278,1.379],[-9.639,2.836],[-7.274,1.96],[-9.827,1.612],[-7.74,1.308],[3.288,0.549],[42.129,-4.626],[27.08,-3.007],[23.539,5.528],[44.934,13.775],[19.676,-2.299],[12.978,-3.623],[-3.368,0.301],[-1.52,-3.156],[-13.538,2.005],[-23.05,6.625],[-58.198,5.961],[-22.51,-7.12],[-23.349,-5.341]],"v":[[-153.5,-27.5],[-182.583,-20.924],[-214.5,-11.5],[-240.89,-6.224],[-270.5,-1.5],[-274.746,1.358],[-260.5,1.5],[-151.5,-24.5],[-72.5,-15.5],[-4.5,4.5],[147.5,29.5],[209.5,10.5],[270.5,1.5],[278.5,-1.5],[241.5,-0.5],[208.5,7.5],[145.5,25.5],[-5.5,0.5],[-73.5,-19.5]],"c":true}],"h":1},{"t":207,"s":[{"i":[[0.016,-0.002],[15.197,-4.777],[17.361,-2.803],[8.287,-1.114],[-6.514,-1.163],[-6.374,0.551],[-2.272,0.371],[-30.341,3.369],[-23.853,-5.372],[-22.465,-6.797],[-57.055,7.218],[-22.117,5.935],[-18.658,3.176],[4.951,-0.044],[16.39,-4.513],[17.965,-2.084],[23.798,5.041],[21.213,6.491],[62.339,-4.58]],"o":[[-14.853,2.09],[-15.197,4.777],[-2.365,0.382],[-8.287,1.114],[3.231,0.577],[6.374,-0.552],[35.691,-5.828],[28.083,-3.118],[23.994,5.404],[41.307,12.498],[18.733,-2.37],[12.977,-3.482],[14.325,-2.438],[-22.417,0.199],[-14.898,4.102],[-29.338,3.403],[-24.945,-5.284],[-46.288,-14.163],[-0.716,0.053]],"v":[[-151.5,-27.5],[-196.119,-16.035],[-244.5,-3.5],[-265.659,-1.086],[-273.5,2.5],[-257.28,2.211],[-242.5,0.5],[-149.5,-24.5],[-69.5,-16.5],[0.5,2.5],[151.5,29.5],[212.5,11.5],[271.5,1.5],[270.5,-2.5],[211.5,7.5],[150.5,25.5],[69.5,18.5],[-0.5,-0.5],[-150.5,-28.5]],"c":true}],"h":1},{"t":208,"s":[{"i":[[0.025,-0.004],[24.946,-6.734],[20.662,-2.329],[-1.053,-2.186],[-2.71,0.438],[-9.074,2.425],[-20.034,2.224],[-24.621,-5.227],[-48.423,-10.906],[-27.671,3.314],[-18.413,5.04],[-13.415,2.362],[1.088,2.231],[4.667,-0.822],[9.661,-2.645],[17.9,-1.987],[23.408,5.307],[20.846,6.45],[62.181,-4.568]],"o":[[-19.759,2.866],[-14.441,3.898],[-0.313,0.035],[2.588,5.372],[16.62,-2.684],[22.683,-6.062],[29.7,-3.298],[49.385,10.485],[24.296,5.472],[17.729,-2.123],[6.713,-1.838],[3.919,-0.69],[-1.677,-3.44],[-11.976,2.109],[-14.218,3.892],[-29.036,3.224],[-24.842,-5.633],[-45.865,-14.191],[-0.722,0.053]],"v":[[-148.5,-27.5],[-210.5,-9.5],[-270.5,-0.5],[-277.5,2.5],[-241.5,0.5],[-208.5,-6.5],[-146.5,-24.5],[-65.5,-17.5],[72.5,21.5],[153.5,29.5],[213.5,12.5],[245.5,5.5],[278.5,-0.5],[244.5,1.5],[212.5,8.5],[152.5,25.5],[72.5,17.5],[3.5,-2.5],[-147.5,-28.5]],"c":true}],"h":1},{"t":209,"s":[{"i":[[57.352,-5.735],[10.386,-3.482],[14.425,-3.87],[9.438,-1.477],[7.541,-0.56],[3.869,-0.512],[-4.889,-1.696],[-9.775,2.623],[-20.547,3.666],[-24.554,-4.739],[-48.697,-11.936],[-26.934,2.869],[-18.857,5.02],[-18.579,3.362],[7.595,-0.894],[14.258,-3.704],[17.678,-1.811],[23.498,5.663],[20.195,6.4]],"o":[[-12.029,1.203],[-10.386,3.482],[-5.709,1.532],[-9.438,1.477],[-3.412,0.254],[-3.869,0.512],[17.512,6.076],[22.394,-6.009],[27.961,-4.989],[50.696,9.783],[24.607,6.031],[18.597,-1.981],[14.598,-3.886],[18.649,-3.375],[-18.283,2.151],[-13.21,3.432],[-28.699,2.94],[-24.045,-5.794],[-44.005,-13.945]],"v":[[-141.5,-27.5],[-173.703,-20.001],[-209.5,-8.5],[-233.625,-3.771],[-260.5,-0.5],[-273.726,0.418],[-274.5,3.5],[-209.5,-4.5],[-148.5,-23.5],[-65.5,-19.5],[74.5,19.5],[154.5,29.5],[215.5,13.5],[271.5,2.5],[261.5,-0.5],[214.5,9.5],[153.5,25.5],[76.5,15.5],[8.5,-3.5]],"c":true}],"h":1},{"t":210,"s":[{"i":[[84.71,-6.264],[2.705,-0.065],[2.651,-0.553],[15.803,-5.324],[17.282,-2.099],[8.643,-0.532],[-0.79,-1.601],[-8.234,0.231],[-3.403,0.413],[-14.538,5.162],[-15.782,3.038],[-45.923,-13.661],[-23.565,-6.122],[-28.037,1.835],[-21.51,5.714],[-18.701,3.418],[10.266,-1.281],[37.236,-2.044],[22.175,5.632]],"o":[[-2.529,0.187],[-2.705,0.065],[-12.505,2.605],[-15.803,5.324],[-2.219,0.27],[-8.643,0.532],[0.659,1.337],[8.234,-0.231],[19.065,-2.316],[14.538,-5.162],[57.278,-11.026],[22.451,6.679],[24.063,6.251],[19.977,-1.308],[14.221,-3.778],[14.268,-2.608],[-40.853,5.099],[-25.39,1.394],[-67.755,-17.208]],"v":[[-132.5,-27.5],[-140.408,-27.274],[-148.5,-26.5],[-191.416,-13.121],[-241.5,-0.5],[-261.757,0.501],[-277.5,3.5],[-261.058,4.813],[-240.5,3.5],[-191.538,-8.958],[-147.5,-22.5],[6.5,-2.5],[75.5,17.5],[152.5,29.5],[214.5,14.5],[271.5,3.5],[261.5,0.5],[151.5,25.5],[78.5,14.5]],"c":true}],"h":1},{"t":211,"s":[{"i":[[81.897,-6.056],[3.542,-0.238],[5.925,-1.537],[18.125,-5.339],[21.457,-0.742],[4.462,-0.115],[-0.056,-1.535],[-4.159,-0.197],[-0.318,0.002],[-36.015,8.735],[-62.356,-17.477],[-24.257,0.523],[-18.312,4.699],[-17.608,2.631],[1.703,3.451],[3.991,-0.607],[6.976,-1.809],[20.856,-0.456],[20.701,5.544]],"o":[[-6.908,0.511],[-3.542,0.238],[-15.044,3.901],[-18.125,5.339],[-0.207,0.007],[-4.462,0.115],[0.044,1.212],[4.159,0.197],[49.615,-0.208],[82.032,-19.895],[23.527,6.594],[20.02,-0.432],[13.804,-3.542],[1.373,-0.205],[-0.99,-2.006],[-15.531,2.362],[-19.186,4.974],[-22.616,0.495],[-65.693,-17.592]],"v":[[-123.5,-27.5],[-137.737,-26.769],[-150.5,-24.5],[-200.191,-9.131],[-259.5,1.5],[-268.698,1.354],[-277.5,3.5],[-269.205,5.41],[-260.5,5.5],[-148.5,-20.5],[74.5,15.5],[150.5,29.5],[214.5,15.5],[263.5,5.5],[278.5,0.5],[262.5,1.5],[214.5,11.5],[150.5,25.5],[81.5,13.5]],"c":true}],"h":1},{"t":212,"s":[{"i":[[76.767,-6.003],[4.874,-0.498],[5.909,-1.492],[15.534,-5.041],[16.279,-0.901],[9.191,-0.558],[-12.291,-1.628],[-18.723,4.36],[-17.674,6.136],[-36.042,-6.06],[-28.064,-8.829],[-16.894,-4.425],[-16.57,-0.312],[-11.301,2.435],[-9.46,2.453],[-16.242,3.088],[11.202,-1.749],[35.219,0.991],[20.534,5.699]],"o":[[-6.593,0.515],[-4.874,0.498],[-15.585,3.934],[-15.534,5.041],[-2.529,0.14],[-9.19,0.558],[19.435,2.575],[18.723,-4.36],[34.769,-12.07],[36.042,6.06],[15.853,4.988],[16.894,4.425],[10.335,0.194],[11.301,-2.436],[12.352,-3.202],[15.953,-3.033],[-34.855,5.441],[-21.999,-0.619],[-60.544,-16.804]],"v":[[-115.5,-27.5],[-132.013,-26.232],[-147.5,-23.5],[-193.979,-8.726],[-241.5,1.5],[-266.115,2.384],[-268.5,5.5],[-211.18,1.533],[-156.5,-15.5],[-47.971,-20.674],[50.5,5.5],[99.963,20.507],[150.5,28.5],[183.657,24.485],[215.5,16.5],[271.5,4.5],[261.5,1.5],[149.5,24.5],[83.5,11.5]],"c":true}],"h":1},{"t":213,"s":[{"i":[[76.222,-5.96],[0.334,0.009],[0.332,-0.011],[21.069,-7.014],[24.125,-1.202],[9.464,-0.406],[-9.808,-2.179],[-1.676,-0.011],[-4.11,-0.138],[-18.13,5.087],[-16.292,4.495],[-38.302,-7.769],[-32.093,-9.153],[-23.871,-0.566],[-18.396,4.471],[-16.63,4.191],[9.662,-1.582],[35.255,1.094],[20.157,5.65]],"o":[[-0.331,0.026],[-0.335,-0.009],[-22.6,0.742],[-21.069,7.014],[-3.951,0.197],[-9.464,0.406],[-0.814,-0.181],[1.676,0.011],[25.186,0.844],[18.13,-5.087],[40.698,-11.229],[38.302,7.769],[23.587,6.728],[20.791,0.493],[14.592,-3.546],[14.147,-3.565],[-38.427,6.292],[-21.6,-0.67],[-61.089,-17.122]],"v":[[-106.5,-27.5],[-107.499,-27.489],[-108.5,-27.5],[-172.856,-12.845],[-239.5,2.5],[-265.819,3.014],[-271.5,6.5],[-270.193,6.261],[-261.5,6.5],[-197.829,-1.496],[-147.5,-17.5],[-28.046,-18.287],[78.5,11.5],[152.5,27.5],[217.5,16.5],[272.5,4.5],[263.5,2.5],[151.5,23.5],[88.5,9.5]],"c":true}],"h":1},{"t":214,"s":[{"i":[[73.509,-5.435],[13.457,-3.695],[16.395,-5.054],[14.041,-1.569],[14.221,0.547],[1.881,-0.85],[-4.945,-0.769],[-20.483,5.542],[-21.511,5.273],[-17.9,1.119],[-20.112,-3.221],[-15.585,-4.25],[-14.79,-4.458],[-30.875,-0.724],[-20.686,4.847],[-13.942,3.142],[12.134,-1.921],[37.986,1.573],[19.703,5.555]],"o":[[-15.776,1.166],[-13.457,3.695],[-10.613,3.272],[-14.042,1.569],[-4.421,-0.17],[-1.881,0.85],[28.555,4.442],[20.483,-5.542],[15.285,-3.747],[17.9,-1.119],[15.868,2.541],[15.585,4.25],[30.774,9.276],[20.702,0.485],[10.019,-2.348],[12.893,-2.906],[-37.286,5.904],[-20.127,-0.833],[-58.631,-16.529]],"v":[[-97.5,-27.5],[-140.036,-19.916],[-183.5,-6.5],[-221.294,0.864],[-264.5,2.5],[-275.024,3.796],[-271.5,6.5],[-200.217,2.286],[-139.5,-16.5],[-89.62,-24.226],[-32.5,-21.5],[14.809,-10.938],[60.5,2.5],[154.5,26.5],[218.5,16.5],[272.5,5.5],[263.5,2.5],[152.5,22.5],[91.5,8.5]],"c":true}],"h":1},{"t":215,"s":[{"i":[[69.166,-5.409],[0.334,0.009],[0.332,-0.011],[24.742,-8.121],[33.163,1.398],[6.99,0.113],[-9.405,-2.512],[-18.486,3.198],[-11.71,4.108],[-17.43,3.372],[-21.828,-0.608],[-17.646,-3.93],[-15.555,-4.697],[-34.215,-3.311],[-22.018,4.784],[-13.737,3.28],[4.129,-0.752],[40.182,4.495],[18.267,5.322]],"o":[[-0.331,0.026],[-0.335,-0.009],[-27.868,0.915],[-24.742,8.121],[-1.443,-0.061],[-6.99,-0.113],[18.347,4.9],[18.486,-3.198],[17.45,-6.122],[17.43,-3.372],[20.86,0.581],[17.646,3.931],[31.971,9.655],[23.151,2.24],[10.408,-2.261],[17.163,-4.098],[-36.769,6.697],[-18.741,-2.096],[-55.121,-16.058]],"v":[[-89.5,-27.5],[-90.499,-27.489],[-91.5,-27.5],[-167.528,-9.765],[-251.5,4.5],[-269.636,3.57],[-271.5,6.5],[-214.522,7.256],[-167.5,-5.5],[-116.284,-20.047],[-58.5,-24.5],[-1.021,-17.088],[48.5,-3.5],[149.5,24.5],[218.5,17.5],[272.5,5.5],[263.5,3.5],[147.5,20.5],[91.5,5.5]],"c":true}],"h":1},{"t":216,"s":[{"i":[[68.383,-5.347],[0.334,0.009],[0.332,-0.011],[25.155,-8.515],[35.379,2.078],[6.505,0.24],[-8.443,-2.222],[-18.522,2.668],[-12.379,4.207],[-17.201,3.703],[-21.993,0],[-49.645,-14.408],[-17.589,-1.639],[-20.971,4.208],[-14.28,3.854],[1.099,2.483],[0.668,-0.118],[38.552,4.312],[17.482,5.161]],"o":[[-0.331,0.026],[-0.335,-0.009],[-30.999,1.017],[-25.155,8.515],[-4.423,-0.26],[-6.505,-0.24],[18.535,4.878],[18.522,-2.668],[18.204,-6.188],[17.201,-3.703],[65.077,0],[16.716,4.851],[22.221,2.07],[11.888,-2.385],[-6.312,1.703],[-0.839,-1.896],[-34.608,6.107],[-18.396,-2.058],[-53.492,-15.793]],"v":[[-80.5,-27.5],[-81.499,-27.489],[-82.5,-27.5],[-162.715,-8.678],[-249.5,5.5],[-270.15,4.139],[-271.5,6.5],[-214.383,8.314],[-166.5,-3.5],[-114.842,-18.641],[-57.5,-24.5],[102.5,10.5],[154.5,23.5],[220.5,16.5],[273.5,6.5],[279.5,2.5],[264.5,3.5],[151.5,19.5],[97.5,4.5]],"c":true}],"h":1},{"t":217,"s":[{"i":[[66.527,-4.919],[0.335,0.006],[0.33,-0.001],[26.49,-8.982],[37.276,2.973],[5.877,-0.091],[-6.833,-2.219],[-0.149,0.148],[-3.289,-0.579],[-17.262,1.938],[-13.053,4.398],[-42.363,1.179],[-48.666,-14.863],[-17.018,-2.468],[-25.804,5.19],[-11.671,4.097],[1.887,-0.391],[21.212,-2.036],[23.809,6.989]],"o":[[-0.329,0.024],[-0.335,-0.006],[-31.763,0.046],[-26.49,8.982],[-7.326,-0.585],[-5.877,0.091],[3.115,1.011],[0.149,-0.148],[17.897,3.152],[17.263,-1.938],[34.392,-11.587],[67.146,-1.868],[16.612,5.073],[26.182,3.798],[10.83,-2.178],[13.795,-4.842],[-21.301,4.408],[-35.331,3.391],[-54.526,-16.007]],"v":[[-71.5,-27.5],[-72.499,-27.482],[-73.5,-27.5],[-156.865,-8.736],[-248.5,5.5],[-271.119,4.398],[-272.5,7.5],[-269.13,8.324],[-265.5,8.5],[-211.868,9.662],[-165.5,-0.5],[-60.5,-24.5],[100.5,7.5],[151.5,21.5],[228.5,15.5],[275.5,6.5],[257.5,5.5],[191.5,17.5],[103.5,4.5]],"c":true}],"h":1},{"t":218,"s":[{"i":[[40.692,-3.009],[0.335,0.006],[0.33,-0.001],[23.333,-8.431],[30.832,-1.232],[13.296,1.269],[0.877,-0.877],[-2.809,-0.886],[-1.024,-0.194],[-31.398,9.646],[-35.941,2.492],[-18.698,-3.03],[-16.319,-4.467],[-16.641,-5.383],[-17.325,-2.782],[-31.694,7.605],[9.171,-1.542],[32.937,5.739],[33.205,9.162]],"o":[[-0.329,0.024],[-0.335,-0.006],[-28.836,0.041],[-23.333,8.431],[-4.938,0.197],[-13.296,-1.269],[-1.26,1.261],[2.809,0.886],[42.469,8.075],[31.398,-9.646],[22.889,-1.587],[18.698,3.03],[17.112,4.684],[16.641,5.383],[41.291,6.631],[15.69,-3.765],[-34.449,5.791],[-33.5,-5.837],[-34.547,-9.532]],"v":[[-62.5,-27.5],[-63.499,-27.482],[-64.5,-27.5],[-139.503,-10.893],[-217.5,7.5],[-250.045,4.99],[-276.5,3.5],[-272.713,6.8],[-265.5,8.5],[-158.603,-0.075],[-61.5,-24.5],[0.428,-21.541],[52.5,-9.5],[102.841,6.426],[153.5,19.5],[270.5,7.5],[265.5,4.5],[151.5,15.5],[52.5,-13.5]],"c":true}],"h":1},{"t":219,"s":[{"i":[[62.358,-4.876],[29.249,-9.055],[37.847,3.892],[8.157,0.79],[-3.873,-2.392],[-6.14,-0.678],[-3.298,-0.348],[-17.483,3.409],[-13.988,4.696],[-24.067,3.599],[-27.021,-4.014],[-21.035,-5.995],[-22.942,-6.468],[-24.336,1.331],[-19.252,5.148],[3.081,0.366],[0.357,-0.054],[26.709,-1.068],[23.119,7.127]],"o":[[-34.155,2.671],[-29.25,9.055],[-2.243,-0.231],[-8.157,-0.79],[3.142,1.941],[6.14,0.678],[22.081,2.334],[17.483,-3.409],[19.71,-6.617],[24.067,-3.599],[23.919,3.553],[21.035,5.995],[19.405,5.471],[24.336,-1.331],[9.68,-2.588],[-3.081,-0.366],[-23.791,3.58],[-36.737,1.468],[-48.103,-14.828]],"v":[[-54.5,-27.5],[-146.231,-5.078],[-243.5,7.5],[-263.587,5.034],[-274.5,6.5],[-259.117,10.194],[-243.5,11.5],[-184.431,8.772],[-137.5,-4.5],[-71.483,-20.974],[5.5,-21.5],[71.733,-6.686],[136.5,12.5],[204.615,17.964],[272.5,7.5],[278.528,3.519],[269.5,3.5],[196.5,15.5],[112.5,1.5]],"c":true}],"h":1},{"t":220,"s":[{"i":[[37.914,-2.803],[0.335,0.006],[0.33,-0.001],[24.854,-8.87],[26.758,-1.482],[9.847,0.834],[7.863,1.151],[4.799,0.045],[-5.487,-2.515],[-8.697,-0.861],[-4.132,-0.229],[-49.156,11.543],[-42.819,-9.622],[-41.559,-8.681],[-30.027,5.427],[-9.969,3.124],[2.515,-0.265],[18.574,-2.162],[52.958,14.097]],"o":[[-0.329,0.024],[-0.335,-0.006],[-27.827,0.04],[-24.854,8.87],[-8.749,0.485],[-9.847,-0.834],[-2.29,-0.335],[-4.799,-0.045],[5.08,2.329],[8.697,0.861],[61.671,3.415],[35.297,-8.289],[39.323,8.837],[28.921,6.041],[10.319,-1.865],[11.553,-3.621],[-19.133,2.016],[-68.937,8.025],[-31.743,-8.45]],"v":[[-45.5,-27.5],[-46.499,-27.482],[-47.5,-27.5],[-125.302,-10.082],[-201.5,9.5],[-230.165,8.726],[-257.5,5.5],[-271.333,4.362],[-273.5,7.5],[-250.789,12.075],[-229.5,13.5],[-86.5,-17.5],[42.5,-16.5],[154.5,14.5],[251.5,11.5],[274.5,7.5],[273.5,3.5],[219.5,12.5],[61.5,-15.5]],"c":true}],"h":1},{"t":221,"s":[{"i":[[57.564,-4.256],[0.335,0.006],[0.33,-0.001],[24.215,-9.022],[27.909,-1.871],[12.414,1.048],[9.68,1.589],[2.493,-0.123],[-6.004,-2.008],[-19.143,0.063],[-32.939,10.592],[-40.605,-1.52],[-30.921,-8.974],[-37.722,0],[-15.772,2.554],[-7.846,3.398],[-1.438,0.188],[20.858,-0.242],[20.157,6.202]],"o":[[-0.329,0.024],[-0.335,-0.006],[-29.231,0.042],[-24.215,9.022],[-11.662,0.782],[-12.414,-1.048],[-3.034,-0.498],[-2.493,0.123],[18.642,6.236],[36.389,-0.12],[30.619,-9.846],[38.975,1.459],[32.339,9.385],[13.071,0],[7.746,-1.254],[10.375,-4.493],[-19.916,2.604],[-31.467,0.365],[-48.15,-14.815]],"v":[[-36.5,-27.5],[-37.499,-27.482],[-38.5,-27.5],[-116.491,-9.872],[-192.5,10.5],[-229.487,9.778],[-263.5,5.5],[-273.778,4.62],[-270.5,7.5],[-206.5,15.5],[-109.5,-8.5],[-3.5,-24.5],[97.5,-4.5],[197.5,17.5],[241.5,13.5],[276.5,6.5],[269.5,4.5],[198.5,13.5],[121.5,-1.5]],"c":true}],"h":1},{"t":222,"s":[{"i":[[43.983,-3.439],[0.335,0.009],[0.331,-0.011],[26.901,-9.768],[33.181,0.096],[10.652,1.187],[6.997,1.232],[4.967,0.662],[-4.453,-2.751],[-5.831,-0.831],[-3.109,-0.473],[-26.849,9.533],[-56.885,-1.363],[-43.897,-13.809],[-41.576,7.925],[2.669,2.669],[8.569,-1.228],[10.059,0.047],[35.496,9.89]],"o":[[-0.331,0.026],[-0.334,-0.009],[-31.216,1.025],[-26.9,9.768],[-6.395,-0.018],[-10.652,-1.187],[-0.583,-0.103],[-4.967,-0.662],[3.565,2.202],[5.831,0.831],[38.988,5.93],[42.894,-15.231],[52.709,1.263],[35.526,11.176],[1.215,-0.232],[-2.917,-2.917],[-15.992,2.292],[-42.585,-0.2],[-35.079,-9.774]],"v":[[-28.5,-27.5],[-29.499,-27.489],[-30.5,-27.5],[-115.026,-6.66],[-202.5,12.5],[-230.049,10.41],[-258.5,6.5],[-270.278,4.36],[-274.5,6.5],[-259.158,10.797],[-244.5,12.5],[-135.5,4.5],[1.5,-24.5],[137.5,5.5],[264.5,9.5],[279.5,3.5],[241.5,8.5],[201.5,12.5],[91.5,-12.5]],"c":true}],"h":1},{"t":223,"s":[{"i":[[39.704,-3.105],[19.772,-5.864],[20.223,-6.693],[10.848,-1.595],[14.644,1.015],[9.77,1.385],[5.887,1.111],[4.615,0.346],[-4.871,-2.65],[-3.761,-1.004],[-26.982,1.676],[-28.815,9.418],[-39.456,0],[-29.917,-8.616],[-34.139,-1.891],[-19.953,3.358],[2.741,2.741],[8.253,-0.978],[47.8,12.724]],"o":[[-23.691,1.852],[-19.772,5.864],[-7.963,2.636],[-10.848,1.595],[-5.032,-0.349],[-9.77,-1.385],[-1.411,-0.266],[-4.615,-0.346],[3.491,1.899],[24.501,6.537],[33.593,-2.087],[28.537,-9.327],[37.483,0],[29.646,8.538],[22.641,1.254],[2.172,-0.366],[-3.536,-3.536],[-63.039,7.47],[-33.341,-8.875]],"v":[[-19.5,-27.5],[-83.601,-15.13],[-142.5,4.5],[-170.489,11.238],[-208.5,12.5],[-232.859,9.572],[-258.5,5.5],[-270.711,3.813],[-273.5,6.5],[-268.5,8.5],[-183.5,17.5],[-94.5,-7.5],[3.5,-24.5],[102.5,-8.5],[194.5,14.5],[261.5,9.5],[279.5,3.5],[238.5,9.5],[92.5,-14.5]],"c":true}],"h":1},{"t":224,"s":[{"i":[[39.957,-2.954],[0.335,0.006],[0.33,-0.001],[25.855,-10.004],[28.936,-1.94],[13.656,1.485],[9.912,1.894],[5.438,1.346],[1.522,-1.522],[-1.084,-0.287],[-32.432,2.361],[-28.181,9.461],[-37.129,0],[-29.266,-8.154],[-34.547,-1.913],[-19.703,3.325],[2.708,2.708],[10.03,-1.118],[45.452,12.442]],"o":[[-0.329,0.024],[-0.335,-0.006],[-30.644,0.044],[-25.855,10.004],[-12.463,0.835],[-13.656,-1.485],[-0.725,-0.139],[-5.438,-1.346],[-2.097,2.097],[28.957,7.665],[31.426,-2.287],[28.913,-9.706],[37.683,0],[29.418,8.197],[20.945,1.16],[1.472,-0.248],[-3.376,-3.376],[-59.974,6.683],[-32.595,-8.922]],"v":[[-10.5,-27.5],[-11.499,-27.482],[-12.5,-27.5],[-95.281,-7.922],[-175.5,14.5],[-215.913,13.047],[-252.5,7.5],[-263.902,4.255],[-276.5,3.5],[-267.5,8.5],[-172.5,18.5],[-85.5,-7.5],[11.5,-24.5],[109.5,-8.5],[201.5,13.5],[263.5,9.5],[279.5,3.5],[241.5,8.5],[100.5,-14.5]],"c":true}],"h":1},{"t":225,"s":[{"i":[[51.678,-4.041],[0.335,0.009],[0.332,-0.011],[23.77,-8.714],[24.267,-5.236],[19.452,2.611],[15.65,2.558],[3.185,0.541],[1.038,-1.038],[-2.231,-0.941],[-1.047,-0.264],[-20.703,-2.199],[-18.381,4.288],[-34.636,9.146],[-43.325,-6.763],[-35.499,-8.83],[-30.693,9.403],[7.994,-1.163],[31.741,9.496]],"o":[[-0.33,0.026],[-0.334,-0.009],[-27.653,0.908],[-23.77,8.714],[-18.543,4.001],[-19.452,-2.611],[0.778,0.127],[-3.185,-0.541],[-0.971,0.971],[2.231,0.941],[17.808,4.493],[20.703,2.199],[32.02,-7.47],[33.409,-8.822],[35.373,5.522],[27.138,6.75],[14.185,-4.346],[-47.788,6.952],[-43.066,-12.884]],"v":[[-2.5,-27.5],[-3.499,-27.489],[-4.5,-27.5],[-80.54,-10.246],[-151.5,13.5],[-209.669,13.919],[-263.5,4.5],[-268.638,3.316],[-276.5,3.5],[-273.514,6.531],[-267.5,8.5],[-208.43,19.586],[-148.5,17.5],[-51.5,-14.5],[63.5,-20.5],[166.5,5.5],[274.5,7.5],[261.5,5.5],[138.5,-6.5]],"c":true}],"h":1},{"t":226,"s":[{"i":[[38.306,-2.995],[0.335,0.009],[0.332,-0.011],[24.733,-9.317],[25.102,-4.749],[17.119,1.774],[13.592,2.727],[6.88,1.55],[0.69,-1.56],[-1.904,-0.858],[2.078,0.651],[-4.188,-0.902],[-37.133,7.829],[-33.936,9.493],[-44.686,-5.634],[-35.518,-9.761],[-30.63,8.967],[9.046,-0.753],[44.844,11.626]],"o":[[-0.33,0.026],[-0.335,-0.009],[-29.967,0.984],[-24.733,9.317],[-14.933,2.825],[-17.119,-1.774],[-1.791,-0.36],[-6.88,-1.55],[-0.539,1.219],[1.904,0.858],[5.121,1.605],[35.128,7.562],[33.06,-6.971],[32.499,-9.091],[35.068,4.421],[26.119,7.178],[17.038,-4.988],[-58.503,4.872],[-31.745,-8.23]],"v":[[6.5,-27.5],[5.501,-27.489],[4.5,-27.5],[-76.149,-8.824],[-149.5,15.5],[-199.005,16.164],[-246.5,8.5],[-262.325,4.56],[-276.5,3.5],[-272.846,6.902],[-271.5,7.5],[-263.5,8.5],[-148.5,19.5],[-51.5,-12.5],[63.5,-22.5],[166.5,3.5],[274.5,7.5],[246.5,6.5],[114.5,-15.5]],"c":true}],"h":1},{"t":227,"s":[{"i":[[47.463,-3.509],[13.823,-3.492],[14.145,-4.808],[13.173,-4.498],[13.154,-2.536],[20.032,3.48],[14.447,2.631],[3.138,-0.219],[-6.479,-1.656],[-15.337,-2.92],[-13.726,-0.76],[-12.589,2.905],[-12.56,4.383],[-25.586,6.42],[-35.206,-3.21],[-77.258,6.555],[2.608,2.608],[9.966,-0.511],[28.102,8.631]],"o":[[-16.563,1.224],[-13.823,3.492],[-13.154,4.471],[-13.173,4.498],[-18.423,3.552],[-20.032,-3.48],[-2.927,-0.533],[-3.138,0.219],[13.925,3.559],[15.337,2.92],[18.084,1.002],[12.589,-2.905],[24.448,-8.531],[25.586,-6.42],[67.827,6.184],[4.217,-0.358],[-2.7,-2.7],[-43.92,2.253],[-42.874,-13.168]],"v":[[15.5,-27.5],[-29.314,-20.187],[-70.5,-7.5],[-110.001,6.451],[-149.5,17.5],[-208.981,15.638],[-262.5,4.5],[-274.054,3.858],[-271.5,6.5],[-226.85,16.6],[-182.5,22.5],[-137.857,19.038],[-101.5,7.5],[-28.569,-16.806],[60.5,-23.5],[252.5,9.5],[279.5,3.5],[245.5,6.5],[147.5,-8.5]],"c":true}],"h":1},{"t":228,"s":[{"i":[[45.751,-3.383],[14.571,-3.707],[14.62,-4.908],[13.749,-4.743],[14.456,-2.478],[17.652,2.974],[12.49,2.658],[6.868,1.547],[1.423,-1.423],[-3.454,-0.831],[-0.709,-0.152],[-18.638,-3.818],[-19.151,1.962],[-8.577,2.618],[-8.062,2.645],[-68.554,-2.74],[-82.196,10.819],[10.82,-0.92],[34.104,10.532]],"o":[[-17.096,1.264],[-14.571,3.707],[-13.547,4.548],[-13.749,4.744],[-14.904,2.555],[-17.652,-2.974],[-1.106,-0.236],[-6.868,-1.547],[-1.523,1.523],[3.453,0.831],[17.297,3.689],[18.638,3.818],[8.63,-0.884],[8.577,-2.618],[49.489,-16.233],[72.618,2.903],[11.95,-1.573],[-47.91,4.073],[-37.974,-11.728]],"v":[[24.5,-27.5],[-22.357,-19.733],[-65.5,-6.5],[-106.318,8.052],[-148.5,19.5],[-199.31,17.409],[-246.5,7.5],[-261.262,3.756],[-276.5,2.5],[-271.674,6.029],[-263.5,7.5],[-209.391,20.238],[-152.5,24.5],[-126.574,18.82],[-101.5,10.5],[58.5,-24.5],[266.5,7.5],[272.5,3.5],[152.5,-9.5]],"c":true}],"h":1},{"t":229,"s":[{"i":[[43.871,-3.431],[15.616,-3.916],[14.197,-4.98],[14.552,-5.151],[15.673,-1.441],[16.522,3.424],[13.588,2.806],[7.286,1.238],[0.546,-1.224],[-7.273,-1.463],[-1.709,-0.349],[-16.017,-3.46],[-19.288,2.038],[-31.85,10.75],[-44.659,-0.467],[-35.805,-10.854],[-34.363,8.563],[5.001,-0.398],[29.46,9.75]],"o":[[-17.339,1.356],[-15.616,3.916],[-14.119,4.953],[-14.552,5.151],[-16.322,1.501],[-16.522,-3.424],[-1.31,-0.271],[-7.286,-1.238],[-0.802,1.798],[7.273,1.463],[15.642,3.199],[16.018,3.46],[34.743,-3.672],[31.442,-10.612],[40.401,0.423],[25.925,7.859],[14.41,-3.591],[-42.825,3.405],[-36.182,-11.975]],"v":[[32.5,-27.5],[-16.856,-19.218],[-61.5,-5.5],[-104.335,10.634],[-149.5,21.5],[-199.551,17.23],[-245.5,6.5],[-261.573,3.379],[-276.5,2.5],[-263.383,7.586],[-246.5,10.5],[-199.735,21.928],[-147.5,25.5],[-49.5,-4.5],[59.5,-24.5],[167.5,-3.5],[273.5,6.5],[264.5,3.5],[156.5,-10.5]],"c":true}],"h":1},{"t":230,"s":[{"i":[[35.733,-2.794],[16.023,-4.104],[14.617,-5.154],[15.018,-5.12],[16.451,-1.415],[17.02,3.765],[16.52,3.435],[7.36,0.598],[-4.856,-1.684],[-10.718,-2.16],[-6.728,-1.445],[-11.849,-2.162],[-10.264,0.439],[-16.303,5.016],[-64.178,0.672],[-35.164,-10.82],[-38.699,7.682],[8.352,-0.165],[37.752,9.628]],"o":[[-18.289,1.43],[-16.023,4.104],[-14.478,5.105],[-15.018,5.12],[-17.399,1.497],[-17.02,-3.765],[-1.416,-0.295],[-7.36,-0.597],[8.403,2.915],[10.717,2.16],[8.341,1.791],[11.849,2.162],[16.932,-0.724],[49.941,-15.367],[41.609,-0.436],[25.016,7.697],[17.429,-3.46],[-50.052,0.989],[-29.307,-7.474]],"v":[[41.5,-27.5],[-9.754,-18.793],[-55.5,-4.5],[-99.521,11.768],[-146.5,22.5],[-198.159,17.699],[-248.5,5.5],[-266.203,3.516],[-274.5,4.5],[-244.244,12.102],[-216.5,17.5],[-184.942,24.173],[-150.5,27.5],[-98.5,15.5],[56.5,-24.5],[167.5,-6.5],[273.5,6.5],[255.5,3.5],[141.5,-17.5]],"c":true}],"h":1},{"t":231,"s":[{"i":[[36.507,-2.699],[16.853,-4.512],[15.627,-5.549],[17.043,-5.473],[16.846,-0.142],[16.327,3.751],[14.573,3.116],[8.411,1.012],[-9.091,-2.569],[-2.879,-0.526],[-4.48,-0.931],[-33.002,1.284],[-29.575,10.538],[-31.997,4.895],[-29.388,-6.961],[-33.966,-2.059],[-7.914,2.623],[7.549,0.025],[30.794,9.687]],"o":[[-18.96,1.402],[-16.853,4.512],[-13.982,4.965],[-17.043,5.473],[-14.118,0.119],[-16.327,-3.751],[-2.445,-0.522],[-8.411,-1.012],[-5.83,-1.648],[7.864,1.436],[32.885,6.837],[31.34,-1.22],[28.12,-10.019],[36.631,-5.604],[31.859,7.547],[7.957,0.482],[14.165,-4.694],[-39.919,-0.131],[-28.479,-8.959]],"v":[[50.5,-27.5],[-3.001,-18.11],[-51.5,-2.5],[-98.852,14.617],[-150.5,24.5],[-197.158,17.926],[-244.5,6.5],[-266.652,3.181],[-271.5,4.5],[-263.5,6.5],[-246.5,9.5],[-148.5,28.5],[-57.5,3.5],[33.5,-22.5],[140.5,-16.5],[234.5,6.5],[275.5,5.5],[250.5,3.5],[155.5,-16.5]],"c":true}],"h":1},{"t":232,"s":[{"i":[[36.08,-2.821],[16.774,-4.48],[16.064,-5.606],[18.721,-5.676],[20.714,1.425],[18.814,4.604],[16.744,2.554],[3.403,-0.16],[-8.333,-1.776],[-15.167,-3.788],[-19.722,-0.076],[-22.616,7.485],[-22.217,6.823],[-50.81,-13.689],[-40.673,3.757],[1.504,3.206],[5.599,-0.175],[0.496,0.021],[28.588,9.461]],"o":[[-18.841,1.474],[-16.774,4.48],[-16.401,5.723],[-18.721,5.675],[-15.002,-1.032],[-18.814,-4.604],[-2.721,-0.415],[-3.403,0.16],[19.615,4.179],[16.096,4.021],[24.425,0.094],[22.87,-7.569],[45.953,-14.113],[29.794,8.027],[-2.149,0.199],[-0.786,-1.676],[-12.724,0.398],[-36.465,-1.537],[-28.024,-9.275]],"v":[[58.5,-27.5],[5.418,-18.099],[-43.5,-2.5],[-96.265,16.361],[-155.5,24.5],[-207.694,14.642],[-262.5,2.5],[-274.79,1.857],[-270.5,4.5],[-213.5,16.5],[-148.5,29.5],[-75.5,12.5],[-7.5,-9.5],[150.5,-16.5],[267.5,6.5],[279.5,2.5],[265.5,2.5],[249.5,2.5],[158.5,-16.5]],"c":true}],"h":1},{"t":233,"s":[{"i":[[-0.111,0.009],[17.733,-5.073],[17.276,-6.082],[18.917,-5.2],[19.316,1.085],[15.666,4.293],[15.246,3.037],[8.524,0.677],[-9.068,-2.299],[-10.383,-2.027],[-6.315,-1.571],[-19.774,-0.997],[-30.946,10.856],[-37.544,4.845],[-33.982,-10.808],[-30.816,-1.535],[1.879,3.917],[10.4,0.646],[74.678,-5.486]],"o":[[-20.793,1.626],[-17.733,5.073],[-15.016,5.286],[-18.917,5.2],[-14.091,-0.791],[-15.666,-4.293],[-2.971,-0.592],[-8.524,-0.677],[9.154,2.321],[10.383,2.027],[19.137,4.76],[38.581,1.945],[31.343,-10.995],[41.727,-5.385],[22.969,7.306],[3.109,0.155],[-1.307,-2.725],[-64.187,-3.987],[-0.618,0.045]],"v":[[67.5,-27.5],[10.363,-16.842],[-41.5,0.5],[-93.275,17.779],[-151.5,25.5],[-196.633,16.684],[-243.5,4.5],[-266.53,1.832],[-271.5,3.5],[-240.871,10.063],[-214.5,15.5],[-150.5,29.5],[-45.5,5.5],[55.5,-22.5],[169.5,-11.5],[249.5,5.5],[279.5,2.5],[247.5,1.5],[68.5,-28.5]],"c":true}],"h":1},{"t":234,"s":[{"i":[[20.442,-1.511],[18.613,-5.324],[17.265,-6.13],[19.427,-5.075],[21.904,2.12],[15.877,4.454],[14.452,2.824],[7.366,1.016],[0.725,-1.611],[-3.515,-0.542],[-1.655,-0.239],[-35.523,-3.056],[-16.927,3.753],[-54.055,9.444],[-33.954,-10.978],[-30.098,-1.904],[-1.077,3.311],[3.706,0.081],[37.134,8.42]],"o":[[-21.283,1.573],[-18.613,5.324],[-16.389,5.819],[-19.427,5.075],[-14.041,-1.359],[-15.877,-4.454],[-2.81,-0.549],[-7.366,-1.016],[-0.716,1.591],[3.515,0.542],[41.249,5.947],[21.039,1.81],[52.617,-11.666],[37.73,-6.592],[24.313,7.861],[6.969,0.441],[0.41,-1.262],[-50.134,-1.096],[-19.543,-4.431]],"v":[[76.5,-27.5],[16.986,-16.417],[-36.5,1.5],[-90.364,19.454],[-152.5,25.5],[-198.192,15.598],[-244.5,3.5],[-262.564,0.38],[-277.5,0.5],[-271.779,3.515],[-262.5,4.5],[-151.5,29.5],[-93.5,23.5],[55.5,-21.5],[170.5,-13.5],[248.5,4.5],[279.5,2.5],[263.5,0.5],[147.5,-24.5]],"c":true}],"h":1},{"t":235,"s":[{"i":[[17.24,-1.275],[19.072,-5.465],[18.073,-6.54],[20.37,-4.818],[23.084,2.582],[15.297,4.685],[15.359,2.755],[8.672,0.348],[-9.036,-1.992],[-10.484,-1.808],[-6.367,-1.63],[-18.748,-1.92],[-43.115,15.309],[-55.276,-12.283],[-23.583,-5.61],[-20.408,2.432],[8.96,1.077],[8.415,2.037],[16.67,3.704]],"o":[[-21.638,1.6],[-19.072,5.465],[-17.436,6.309],[-20.37,4.818],[-13.455,-1.505],[-15.297,-4.685],[-3.349,-0.601],[-8.672,-0.348],[9.697,2.139],[10.484,1.808],[19.117,4.896],[55.798,5.715],[46.381,-16.469],[17.815,3.959],[16.968,4.037],[21.622,-2.577],[-13.878,-1.668],[-17.689,-4.281],[-19.444,-4.321]],"v":[[85.5,-27.5],[24.827,-16.205],[-30.5,2.5],[-87.264,20.668],[-152.5,25.5],[-196.072,14.937],[-242.5,2.5],[-266.289,0.555],[-271.5,2.5],[-240.002,8.381],[-213.5,13.5],[-151.5,29.5],[-4.5,-2.5],[150.5,-21.5],[211.5,-3.5],[272.5,4.5],[243.5,-1.5],[210.5,-7.5],[150.5,-25.5]],"c":true}],"h":1},{"t":236,"s":[{"i":[[11.893,-0.93],[19.168,-5.751],[18.506,-6.213],[20.882,-4.752],[24.734,2.962],[10.28,3.04],[11.053,2.784],[5.751,1.337],[7.055,1.165],[1.932,-4.119],[12.567,2.295],[-15.998,-4.131],[-19.003,-2.11],[-42.826,15.206],[-56.93,-11.122],[-45.28,-1.81],[12.547,1.83],[17.11,4.265],[16.685,3.031]],"o":[[-22.822,1.785],[-19.168,5.751],[-17.736,5.954],[-20.882,4.752],[-8.827,-1.057],[-10.28,-3.04],[-1.943,-0.489],[-5.751,-1.337],[-5.495,-0.907],[-1.827,3.894],[22.11,4.037],[19.275,4.977],[56.94,6.322],[45.536,-16.169],[35.372,6.91],[2.229,0.089],[-22.933,-3.344],[-19.43,-4.843],[-16.678,-3.03]],"v":[[93.5,-27.5],[31.263,-15.321],[-24.5,3.5],[-82.251,21.187],[-150.5,25.5],[-179.331,18.795],[-211.5,9.5],[-223.666,6.506],[-243.5,2.5],[-277.5,-0.5],[-271.5,2.5],[-211.5,12.5],[-149.5,29.5],[-1.5,-0.5],[150.5,-22.5],[261.5,3.5],[276.5,0.5],[210.5,-8.5],[149.5,-26.5]],"c":true}],"h":1},{"t":237,"s":[{"i":[[8.555,-0.633],[19.513,-5.954],[19.059,-6.489],[21.522,-4.41],[25.352,2.962],[20.185,6.447],[23.136,-0.905],[-0.339,-0.865],[-3.836,-0.336],[-11.013,-1.91],[-5.671,-1.462],[-20.472,-2.206],[-110.782,-8.967],[-2.376,-0.426],[-33.839,-5.207],[-1.728,3.701],[1.919,0.326],[14.29,3.599],[15.938,2.646]],"o":[[-22.89,1.692],[-19.513,5.955],[-18.562,6.32],[-21.522,4.41],[-18.125,-2.117],[-20.185,-6.447],[-5.191,0.203],[0.339,0.865],[10.275,0.9],[11.014,1.91],[23.855,6.147],[112.389,12.108],[2.602,0.211],[32.214,5.777],[4.326,0.666],[1.433,-3.069],[-20.566,-3.492],[-16.013,-4.033],[-13.727,-2.279]],"v":[[102.5,-27.5],[39.627,-15.098],[-17.5,4.5],[-77.408,21.962],[-147.5,25.5],[-204.742,9.733],[-269.5,-1.5],[-276.27,0.4],[-269.5,2.5],[-236.047,7.079],[-209.5,12.5],[-146.5,29.5],[142.5,-24.5],[150.5,-23.5],[243.5,0.5],[278.5,2.5],[272.5,-0.5],[211.5,-9.5],[149.5,-27.5]],"c":true}],"h":1},{"t":238,"s":[{"i":[[4.542,-0.336],[10.459,-2.261],[9.915,-3.05],[29.774,-8.395],[38.496,2.321],[11.83,3.838],[11.393,2.905],[13.938,2.064],[1.688,-3.389],[23.655,3.031],[-16.153,-4.035],[-23.092,-1.265],[-43.175,15.225],[-55.68,-6.668],[-25.4,-6.424],[-16.875,-1.385],[13.258,2.229],[15.909,4.057],[16.873,1.873]],"o":[[-12.249,0.905],[-10.459,2.261],[-28.41,8.742],[-29.773,8.395],[-12.286,-0.741],[-11.83,-3.838],[-4.182,-1.066],[-5.999,-0.889],[-2.504,5.027],[23.133,2.964],[21.861,5.461],[56.678,3.105],[40.119,-14.147],[22.473,2.691],[10.44,2.641],[-1,-0.082],[-21.485,-3.612],[-21.509,-5.485],[-11.864,-1.317]],"v":[[111.5,-27.5],[77.749,-22.609],[47.5,-14.5],[-37.936,13.797],[-138.5,25.5],[-174.669,17.624],[-209.5,6.5],[-242.5,0.5],[-277.5,-1.5],[-271.5,1.5],[-210.5,10.5],[-137.5,29.5],[5.5,2.5],[149.5,-24.5],[211.5,-7.5],[261.5,1.5],[275.5,-0.5],[211.5,-11.5],[148.5,-28.5]],"c":true}],"h":1},{"t":239,"s":[{"i":[[3.466,-0.271],[0.334,0.009],[0.332,-0.011],[41.282,-14.893],[54.293,10.067],[14.749,4.636],[19.12,2.698],[9.372,0.02],[-11.262,-1.613],[-14.919,-3.703],[-18.466,-3.714],[-44.143,15.19],[-23.019,6.041],[-30.432,-3.645],[-22.096,-5.647],[-14.985,-1.82],[15.795,3.243],[9.242,1.572],[27.531,3.057]],"o":[[-0.331,0.026],[-0.335,-0.009],[-45.58,1.496],[-41.282,14.893],[-14.883,-2.76],[-14.749,-4.636],[-3.776,-0.533],[-9.372,-0.02],[21.058,3.015],[16.144,4.007],[57.826,11.63],[21.97,-7.56],[24.166,-6.342],[18.522,2.218],[9.937,2.539],[6.551,0.796],[-11.891,-2.442],[-33.433,-5.688],[-10.094,-1.121]],"v":[[119.5,-27.5],[118.501,-27.489],[117.5,-27.5],[-8.465,6.673],[-147.5,23.5],[-190.822,11.454],[-240.5,-0.5],[-266.779,-1.609],[-270.5,0.5],[-209.5,9.5],[-148.5,27.5],[4.5,6.5],[71.5,-15.5],[152.5,-24.5],[213.5,-8.5],[260.5,1.5],[272.5,-1.5],[245.5,-4.5],[151.5,-28.5]],"c":true}],"h":1},{"t":240,"s":[{"i":[[46.351,-3.625],[21.6,-6.736],[21.773,-7.116],[25.318,-3.267],[26.013,6.511],[20.367,5.913],[22.558,-2.399],[-3.133,-0.742],[-3.787,-0.147],[-15.223,-3.51],[-13.046,-4.218],[-20.275,-0.961],[-17.465,3.157],[-16.139,5.358],[-15.784,5.375],[-39.484,-4.044],[-33.27,-6.373],[-3.824,3.824],[1.963,0.259]],"o":[[-24.826,1.941],[-21.6,6.736],[-19.716,6.444],[-25.317,3.267],[-14.972,-3.748],[-20.367,-5.913],[-8.321,0.885],[3.133,0.742],[19.063,0.742],[15.223,3.51],[16.435,5.314],[20.275,0.961],[17.66,-3.192],[16.139,-5.358],[29.573,-10.07],[30.41,3.115],[5.398,1.034],[2.708,-2.708],[-49.219,-6.499]],"v":[[128.5,-27.5],[59.71,-13.381],[-4.5,8.5],[-73.277,24.717],[-151.5,21.5],[-205.311,4.39],[-270.5,-3.5],[-275.581,-0.947],[-262.5,0.5],[-211.488,7.393],[-169.5,19.5],[-112.773,28.853],[-54.5,25.5],[-4.093,12.137],[43.5,-4.5],[152.5,-24.5],[244.5,-2.5],[278.5,1.5],[264.5,-3.5]],"c":true}],"h":1}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":1,"ix":4},"nm":"Mask 1"}],"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[600,600],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":9,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true},{"ty":"fl","c":{"a":0,"k":[0.152940996955,0.847059003045,0.792156982422,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[106.272,13.667],"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":"Rectangle 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":242,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 22","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"f","pt":{"a":1,"k":[{"t":0,"s":[{"i":[[27.309,-0.904],[9.761,-3.134],[9.781,-4.063],[25.57,-7.67],[34.416,3.358],[17.671,4.367],[17.355,5.683],[17.791,2.21],[16.342,-2.256],[2.242,-0.969],[-6.192,0.458],[-28.554,-9.586],[-38.284,-3.597],[-45.988,18.4],[-16.674,1.796],[-25.727,-6.028],[-2.966,2.966],[1.363,0.35]],"o":[[-12.177,0.403],[-9.76,3.134],[-23.303,9.678],[-25.57,7.67],[-18.959,-1.85],[-17.671,-4.367],[-13.494,-4.418],[-17.791,-2.21],[-4.225,0.583],[-2.242,0.969],[41.305,-3.051],[35.167,11.806],[69.72,6.551],[15.664,-6.267],[32.085,-3.457],[5.103,1.196],[2.457,-2.457],[-30.243,-7.777]],"v":[[163.5,-24.5],[131.203,-18.745],[102.5,-7.5],[30.834,20.777],[-57.5,29.5],[-112.203,19.874],[-164.5,4.5],[-212.864,-6.006],[-265.5,-6.5],[-276.812,-3.719],[-272.5,-2.5],[-163.5,8.5],[-55.5,33.5],[104.5,-3.5],[154.5,-20.5],[247.5,-8.5],[277.5,-2.5],[265.5,-7.5]],"c":true}],"h":1},{"t":1,"s":[{"i":[[28.569,-1.981],[8.638,-2.938],[8.459,-3.485],[21.751,-7.126],[28.896,-0.804],[16.746,3.1],[14.68,4.139],[22.752,4.952],[26.912,-4.468],[-6.598,0.001],[-7.177,0.415],[-14.845,-2.326],[-10.979,-3.601],[-40.252,-3.879],[-46.081,18.893],[-16.679,1.708],[-31.26,-7.198],[17.56,5.551]],"o":[[-10.987,0.762],[-8.639,2.938],[-21.099,8.693],[-21.751,7.126],[-19.338,0.538],[-16.745,-3.1],[-20.079,-5.66],[-22.752,-4.952],[-14.568,2.419],[6.598,-0.001],[15.642,-0.905],[14.845,2.326],[35.327,11.588],[72.413,6.979],[15.453,-6.335],[38.67,-3.961],[3.262,0.751],[-29.565,-9.346]],"v":[[163.5,-23.5],[134.605,-17.542],[109.5,-7.5],[46.848,17.416],[-27.5,30.5],[-81.494,26.007],[-128.5,14.5],[-192.375,-3.596],[-266.5,-6.5],[-273.309,-3.374],[-247.5,-4.5],[-201.003,-1.88],[-161.5,7.5],[-54.5,33.5],[106.5,-2.5],[156.5,-19.5],[256.5,-6.5],[271.5,-6.5]],"c":true}],"h":1},{"t":2,"s":[{"i":[[30.134,-2.474],[9.451,-3.684],[10.041,-4.184],[26.087,-6.416],[34.978,4.529],[30.607,8.991],[37.271,-3.016],[6.558,-1.067],[-1.544,-1.544],[-7.074,1.128],[-2.089,0.104],[-24.012,-6.705],[-25.003,-5.77],[-32.58,3.417],[-24.433,9.856],[-25.552,5.213],[-30.956,-6.879],[16.252,4.933]],"o":[[-13.154,1.08],[-9.451,3.684],[-23.676,9.865],[-26.086,6.416],[-31.303,-4.053],[-30.606,-8.991],[-2.31,0.187],[-6.559,1.067],[1.615,1.615],[7.074,-1.128],[31.947,-1.592],[24.012,6.705],[26.605,6.14],[29.336,-3.077],[23.733,-9.573],[34.176,-6.973],[6.261,1.391],[-30.375,-9.219]],"v":[[163.5,-22.5],[130.665,-14.828],[102.5,-2.5],[29.477,23.795],[-60.5,28.5],[-151.524,4.698],[-251.5,-8.5],[-267.89,-6.518],[-278.5,-2.5],[-262.855,-2.71],[-246.5,-5.5],[-164.792,4.478],[-93.5,25.5],[-1.5,33.5],[78.5,11.5],[151.5,-17.5],[253.5,-7.5],[271.5,-6.5]],"c":true}],"h":1},{"t":3,"s":[{"i":[[27.674,-2.272],[8.808,-3.074],[8.959,-3.733],[21.91,-6.919],[28.426,0.983],[16.019,3.034],[14.77,4.238],[14.891,4.425],[17.825,1.107],[10.035,-0.302],[7.789,-2.418],[-5.942,0.09],[-2.637,0.25],[-92.902,-0.446],[-31.85,12.639],[-35.824,0],[-23.714,-5.389],[24.867,6.46]],"o":[[-11.81,0.97],[-8.808,3.074],[-19.934,8.306],[-21.91,6.919],[-18.153,-0.627],[-16.019,-3.034],[-14.613,-4.192],[-14.891,-4.425],[-10.07,-0.625],[-10.035,0.302],[-8.406,2.608],[5.942,-0.09],[90.896,-8.614],[40.133,0.193],[31.587,-12.535],[26.968,0],[12.292,2.793],[-29.135,-7.569]],"v":[[165.5,-21.5],[135.362,-15.073],[109.5,-4.5],[47.869,19.967],[-26.5,30.5],[-77.537,24.707],[-123.5,13.5],[-167.092,-0.314],[-215.5,-9.5],[-246.21,-10.282],[-273.5,-6.5],[-272.782,-3.356],[-255.5,-4.5],[-20.5,34.5],[82.5,11.5],[179.5,-18.5],[254.5,-6.5],[265.5,-8.5]],"c":true}],"h":1},{"t":4,"s":[{"i":[[31.914,-2.935],[9.99,-3.815],[10.434,-4.489],[26.638,-5.324],[33.974,5.395],[33.656,8.991],[39.483,-7.026],[2.168,-1.158],[-6.6,0.33],[-3.809,0.648],[-2.348,0.236],[-22.377,-5.335],[-20.279,-5.595],[-19.377,-3.138],[-31.851,10.242],[-32.083,7.88],[-32.898,-7.36],[13.988,4.332]],"o":[[-13.608,1.252],[-9.99,3.815],[-23.475,10.1],[-26.637,5.324],[-31.892,-5.064],[-33.656,-8.99],[-3.929,0.7],[-2.168,1.158],[3.416,-0.171],[3.809,-0.648],[29.212,-2.933],[22.377,5.335],[17.443,4.813],[43.612,7.063],[33.049,-10.627],[36.876,-9.058],[8.962,2.005],[-29.247,-9.058]],"v":[[167.5,-20.5],[133.119,-12.428],[103.5,0.5],[29.374,25.121],[-60.5,26.5],[-157.806,0.432],[-266.5,-7.5],[-277.397,-4.228],[-272.5,-2.5],[-261.199,-3.951],[-251.5,-5.5],[-175.301,0.104],[-112.5,18.5],[-58.5,30.5],[57.5,22.5],[152.5,-14.5],[262.5,-5.5],[268.5,-7.5]],"c":true}],"h":1},{"t":5,"s":[{"i":[[31.092,-2.859],[16.121,-7.102],[16.249,-5.729],[17.278,-2.448],[19.485,1.87],[15.95,3.605],[15.971,5.024],[16.221,3.873],[18.613,-0.053],[8.124,-0.731],[6.293,-2.054],[-3.391,0.416],[-1.163,0.118],[-62.574,-10.531],[-34.272,9.756],[-32.437,9.02],[-29.758,-6.554],[16.895,5.331]],"o":[[-20.267,1.864],[-16.121,7.102],[-14.404,5.079],[-17.278,2.448],[-16.23,-1.558],[-15.95,-3.605],[-14.504,-4.563],[-16.221,-3.873],[-7.209,0.021],[-8.125,0.731],[-13,4.243],[3.198,-0.392],[77.677,-7.862],[42.843,7.21],[33.942,-9.662],[31.564,-8.778],[12.704,2.798],[-28.732,-9.067]],"v":[[169.5,-19.5],[115.986,-4.399],[68.5,16.5],[20.811,28.212],[-34.5,29.5],[-82.694,21.6],[-130.5,8.5],[-176.418,-4.962],[-228.5,-11.5],[-252.188,-10.525],[-274.5,-6.5],[-265.5,-3.5],[-251.5,-5.5],[-60.5,29.5],[55.5,24.5],[150.5,-12.5],[251.5,-7.5],[269.5,-7.5]],"c":true}],"h":1},{"t":6,"s":[{"i":[[21.161,-0.047],[11.712,-3.596],[10.937,-4.579],[22.05,-5.945],[30.19,2.408],[15.438,3.283],[14.614,4.463],[26.158,4.378],[27.584,-6.861],[-4.19,-0.15],[-4.677,0.699],[-42.338,-13.1],[-33.55,-2.741],[-26.482,9.273],[-27.976,7.78],[-25.996,-5.066],[-2.988,2.988],[-0.93,-0.27]],"o":[[-16.215,0.035],[-11.712,3.596],[-20.608,8.628],[-22.05,5.945],[-17.636,-1.407],[-15.438,-3.282],[-20.785,-6.348],[-26.158,-4.378],[-8.436,2.098],[4.19,0.15],[55.894,-8.353],[29.458,9.114],[34.376,2.809],[27.975,-9.796],[25.6,-7.119],[7.633,1.488],[2.26,-2.26],[-24.934,-7.225]],"v":[[187.5,-19.5],[146.541,-13.408],[113.5,-0.5],[51.186,22.777],[-25.5,29.5],[-74.766,22.293],[-119.5,10.5],[-190.901,-7.907],[-272.5,-6.5],[-275.835,-3.402],[-259.5,-4.5],[-117.5,14.5],[-24.5,33.5],[72.5,20.5],[153.5,-11.5],[240.5,-10.5],[276.5,-3.5],[268.5,-8.5]],"c":true}],"h":1},{"t":7,"s":[{"i":[[20.565,-1.426],[5.427,-0.532],[4.858,-1.495],[15.495,-6.891],[17.42,-4.637],[20.443,-0.454],[20.326,4.049],[33.629,8.37],[39.651,-7.822],[2.557,-1.244],[-7.512,0.624],[-5.191,0.648],[-60.909,-11.958],[-35.305,9.799],[-31.522,8.612],[-26.766,-5.026],[-2.696,2.696],[-3.668,-1.063]],"o":[[-5.435,0.377],[-5.427,0.532],[-15.6,4.8],[-15.495,6.891],[-15.901,4.233],[-20.443,0.454],[-31.834,-6.341],[-33.629,-8.37],[-3.283,0.647],[-2.557,1.244],[4.891,-0.406],[78.74,-9.828],[41.992,8.244],[34.685,-9.626],[27.308,-7.46],[4.845,0.91],[2.377,-2.377],[-24.716,-7.162]],"v":[[184.5,-18.5],[168.067,-17.338],[152.5,-14.5],[106.365,4.122],[57.5,22.5],[1.819,29.711],[-60.5,24.5],[-157.637,-2.123],[-266.5,-7.5],[-277.596,-4.046],[-272.5,-2.5],[-251.5,-6.5],[-58.5,28.5],[59.5,26.5],[155.5,-10.5],[242.5,-9.5],[276.5,-3.5],[268.5,-8.5]],"c":true}],"h":1},{"t":8,"s":[{"i":[[23.74,-1.856],[14.821,-5.78],[14.674,-5.549],[16.943,-3.313],[18.519,0.814],[16.233,3.411],[14.951,4.473],[15.458,4.608],[18.764,1.258],[11.977,-1.978],[-23.806,3.86],[-45.281,-13.7],[-31.519,-3.934],[-29.783,9.147],[-28.889,9.038],[-29.285,-5.238],[-3.263,3.263],[-0.93,-0.27]],"o":[[-17.043,1.332],[-14.821,5.78],[-14.71,5.563],[-16.943,3.313],[-20.116,-0.884],[-16.233,-3.411],[-14.406,-4.31],[-15.458,-4.608],[-17.045,-1.143],[-13.82,2.282],[58.75,-7.75],[30.752,9.305],[39.301,4.905],[28.931,-8.885],[26.975,-8.44],[7.378,1.32],[2.26,-2.26],[-25.156,-7.289]],"v":[[184.5,-17.5],[137.224,-5.662],[93.5,12.5],[45.857,26.283],[-7.5,30.5],[-61.373,23.691],[-107.5,11.5],[-151.731,-2.789],[-202.5,-12.5],[-259.5,-9.5],[-265.5,-4.5],[-122.5,9.5],[-30.5,32.5],[71.5,23.5],[154.5,-8.5],[238.5,-10.5],[276.5,-3.5],[268.5,-8.5]],"c":true}],"h":1},{"t":9,"s":[{"i":[[23.57,-2.168],[14.395,-5.748],[14.513,-5.36],[17.275,-2.993],[18.53,1.278],[16.179,3.461],[15.668,4.803],[38.324,2.122],[16.046,-2.96],[-16.94,2.078],[-7.953,1.013],[-28.445,-8.271],[-48.242,-1.668],[-39.51,16.649],[-28.04,-0.452],[-16.631,-3.297],[-2.038,2.038],[-0.849,-0.246]],"o":[[-17.906,1.647],[-14.395,5.748],[-14.368,5.306],[-17.275,2.993],[-19.614,-1.352],[-16.179,-3.461],[-28.419,-8.712],[-18.175,-1.007],[-8.623,1.591],[9.618,-1.18],[40.866,-5.204],[44.581,12.963],[55.384,1.915],[17.196,-7.246],[17.122,0.276],[1.718,0.341],[2.252,-2.252],[-24.554,-7.115]],"v":[[184.5,-16.5],[136.955,-4.285],[94.5,13.5],[46.622,26.438],[-7.5,29.5],[-60.459,22.088],[-107.5,9.5],[-204.5,-13.5],[-262.5,-8.5],[-271.5,-3.5],[-244.5,-7.5],[-135.5,4.5],[1.5,34.5],[134.5,1.5],[202.5,-13.5],[258.5,-6.5],[276.5,-3.5],[268.5,-8.5]],"c":true}],"h":1},{"t":10,"s":[{"i":[[26.202,-2.41],[14.87,-5.764],[14.68,-5.303],[17.897,-2.851],[19.565,1.768],[42.133,11.605],[48.286,-14.413],[-2.975,-0.049],[-2.657,0.45],[-3.142,0.653],[-1.574,0.241],[-23.327,-6.705],[-38.273,-7.114],[-34.815,11.195],[-41.243,2.284],[-14.211,-2.111],[-2.536,2.536],[0.231,0.081]],"o":[[-17.84,1.64],[-14.87,5.764],[-14.846,5.363],[-17.897,2.851],[-44.183,-3.994],[-42.133,-11.605],[-7.558,2.256],[2.975,0.049],[0.858,-0.146],[3.142,-0.653],[32.271,-4.937],[40.127,11.534],[44.475,8.267],[36.506,-11.739],[13.217,-0.732],[8.616,1.28],[2.143,-2.143],[-22.821,-8.004]],"v":[[186.5,-15.5],[138.13,-3.247],[94.5,14.5],[45.039,27.349],[-11.5,29.5],[-138.922,-2.305],[-272.5,-6.5],[-276.661,-3.47],[-265.5,-4.5],[-258.537,-5.928],[-250.5,-7.5],[-154.5,-1.5],[-41.5,29.5],[84.5,22.5],[193.5,-12.5],[236.5,-9.5],[276.5,-3.5],[271.5,-7.5]],"c":true}],"h":1},{"t":11,"s":[{"i":[[13.347,-0.526],[15.342,-5.392],[15.05,-5.701],[16.84,-3.349],[20.319,1.201],[16.679,3.872],[14.592,4.407],[30.61,4.643],[29.778,-10.056],[-3.603,0.016],[-1.481,0.262],[-31.305,-8.586],[-39.46,-7.803],[-37.506,11.157],[-40.238,2.698],[-18.719,-3.297],[9.263,5.293],[10.446,2.172]],"o":[[-18.582,0.732],[-15.342,5.392],[-15.322,5.804],[-16.84,3.349],[-18.693,-1.105],[-16.679,-3.872],[-24.783,-7.484],[-30.61,-4.643],[-6.894,2.328],[3.603,-0.016],[35.844,-6.342],[40.238,11.036],[43.671,8.636],[36.881,-10.972],[21.005,-1.408],[6.36,1.12],[-4.84,-2.766],[-19.422,-4.038]],"v":[[200.5,-15.5],[150.352,-5.227],[105.5,12.5],[57.748,26.754],[2.5,30.5],[-50.576,22.477],[-97.5,9.5],[-182.254,-11.655],[-274.5,-6.5],[-276.281,-3.558],[-265.5,-4.5],[-154.5,-3.5],[-41.5,27.5],[84.5,23.5],[193.5,-11.5],[256.5,-6.5],[274.5,-6.5],[261.5,-9.5]],"c":true}],"h":1},{"t":12,"s":[{"i":[[47.291,-3.698],[9.34,-1.318],[6.844,-2.195],[-3.394,-0.051],[-2.69,0.534],[-19.873,0.035],[-17.012,-4.806],[-18.784,-5.593],[-20.329,-3.827],[-21.815,1.499],[-17.398,5.584],[-45.931,-0.1],[-13.04,-1.874],[17.612,6.177],[20.44,0.656],[14.788,-5.907],[47.179,-3.271],[36.801,11.239]],"o":[[-6.798,0.532],[-9.34,1.318],[-7.264,2.33],[3.394,0.051],[18.498,-3.667],[19.873,-0.035],[20.536,5.801],[18.784,5.593],[24.34,4.582],[21.815,-1.499],[37.627,-12.077],[9.014,0.02],[7.977,1.146],[-17.122,-6.005],[-28.085,-0.901],[-36.222,14.468],[-50.764,3.52],[-39.237,-11.983]],"v":[[-222.5,-14.5],[-247.966,-11.748],[-273.5,-6.5],[-276.466,-3.352],[-264.5,-4.5],[-205.886,-10.354],[-149.5,-3.5],[-91.345,13.981],[-33.5,28.5],[36.206,32.625],[95.5,21.5],[210.5,-11.5],[244.5,-8.5],[271.5,-7.5],[213.5,-15.5],[150.5,-3.5],[32.5,29.5],[-95.5,9.5]],"c":true}],"h":1},{"t":13,"s":[{"i":[[35.917,-1.922],[10.748,-1.518],[8.233,-2.457],[-3.393,0.17],[-3.4,0.702],[-2.837,0.432],[-2.88,0.492],[-18.804,-1.674],[-14.846,-4.543],[-49.211,-4.941],[-41.569,16.496],[-27.121,2.195],[-16.989,-2.992],[13.124,4.26],[26.2,-1.628],[32.097,-11.045],[45.148,4.242],[32.399,9.932]],"o":[[-8.774,0.47],[-10.748,1.518],[-7.974,2.38],[3.393,-0.169],[3.773,-0.779],[2.837,-0.432],[18.94,-3.239],[18.804,1.674],[45.67,13.974],[57.388,5.762],[17.406,-6.907],[17.213,-1.393],[11.666,2.054],[-20.406,-6.624],[-37.99,2.36],[-27.408,9.432],[-36.658,-3.445],[-33.039,-10.128]],"v":[[-212.5,-15.5],[-242.905,-12.491],[-272.5,-6.5],[-276.531,-3.689],[-263.5,-5.5],[-253.83,-7.215],[-245.5,-8.5],[-187.93,-10.337],[-136.5,-0.5],[-2.5,32.5],[135.5,8.5],[200.5,-9.5],[257.5,-5.5],[270.5,-7.5],[201.5,-14.5],[105.5,15.5],[-3.5,28.5],[-105.5,4.5]],"c":true}],"h":1},{"t":14,"s":[{"i":[[49.737,-4.083],[8.065,-1.204],[7.024,-1.631],[-0.164,-0.981],[-7.125,1.5],[-18.524,1.073],[-16.391,-3.472],[-17.433,-5.614],[-17.586,-4.375],[-21.071,-1.611],[-18.218,3.293],[-26.167,9.456],[-37.203,-4.269],[13.722,5.781],[10.795,0.598],[38.436,-13.366],[38.828,3.789],[30.547,9.452]],"o":[[-6.719,0.552],[-8.064,1.204],[-6.779,1.575],[0.164,0.981],[16.513,-3.181],[18.524,-1.073],[19.683,4.17],[17.433,5.614],[19.496,4.849],[21.071,1.611],[30.128,-5.445],[26.167,-9.456],[6.913,0.793],[-11.055,-4.658],[-52.796,-2.924],[-29.395,10.222],[-35.929,-3.506],[-39.487,-12.218]],"v":[[-220.5,-15.5],[-243.271,-12.81],[-266.5,-8.5],[-276.428,-4.194],[-265.5,-4.5],[-211.908,-11.489],[-158.5,-8.5],[-103.428,6.846],[-51.5,22.5],[10.459,32.606],[70.5,30.5],[151.194,3.714],[242.5,-8.5],[272.5,-6.5],[230.5,-13.5],[110.5,15.5],[6.5,29.5],[-91.5,7.5]],"c":true}],"h":1},{"t":15,"s":[{"i":[[39.35,-2.91],[10.656,-1.736],[7.913,-2.431],[-2.766,-0.156],[-8.25,2.75],[-3.709,0.587],[-3.024,0.5],[-24.042,-4.787],[-21.673,-6.681],[-37.094,-3.754],[-29.789,10.179],[-54.505,-3.386],[-3.561,3.561],[-0.461,-0.165],[14.463,-0.042],[32.89,-11.578],[46.321,5.01],[32.692,10.134]],"o":[[-8.464,0.626],[-10.656,1.736],[-5.313,2.125],[2.766,0.156],[5.139,-1.154],[3.709,-0.587],[29.161,-4.828],[24.042,4.787],[29.458,9.081],[40.333,4.082],[39.504,-13.499],[10.859,0.675],[1.9,-1.9],[-15.718,-5.606],[-42.452,0.122],[-31.903,11.23],[-39.186,-4.238],[-34.608,-10.728]],"v":[[-213.5,-16.5],[-243.414,-12.854],[-272.5,-6.5],[-275.672,-2.844],[-258.5,-6.5],[-245.413,-8.99],[-235.5,-10.5],[-156.384,-8.632],[-88.5,10.5],[8.5,33.5],[113.5,20.5],[236.5,-8.5],[276.5,-3.5],[272.5,-7.5],[218.5,-13.5],[116.5,14.5],[3.5,28.5],[-101.5,2.5]],"c":true}],"h":1},{"t":16,"s":[{"i":[[35.858,-2.12],[6.276,-0.762],[8.133,-1.554],[5.99,-1.136],[3.114,-1.705],[-4.928,0.77],[0.142,-0.031],[-21.701,0.126],[-19.244,-6.098],[-21.039,-6.015],[-24.349,-3.812],[-42.2,16.581],[-42.92,-3.557],[18.05,5.656],[18.251,-1.134],[31.278,-10.058],[45.751,5.924],[31.422,9.903]],"o":[[-6.762,0.4],[-6.276,0.762],[-3.928,0.75],[-5.99,1.136],[-5.569,3.05],[4.928,-0.77],[20.953,-4.594],[21.701,-0.126],[22.496,7.129],[21.039,6.015],[53.711,8.409],[28.022,-11.011],[6.196,0.514],[-18.014,-5.645],[-38.621,2.399],[-31.536,10.141],[-36.087,-4.673],[-32.929,-10.378]],"v":[[-204.5,-17.5],[-223.472,-15.866],[-244.5,-12.5],[-260.61,-9.716],[-275.5,-5.5],[-272.571,-3.235],[-261.5,-5.5],[-196.718,-13.019],[-134.5,-4.5],[-70.389,15.488],[-3.5,30.5],[137.5,13.5],[238.5,-7.5],[271.5,-7.5],[211.5,-12.5],[115.5,17.5],[3.5,28.5],[-97.5,2.5]],"c":true}],"h":1},{"t":17,"s":[{"i":[[50.432,-4.14],[5.684,-0.704],[8.264,-1.69],[7.6,-2.095],[-1.413,-1.413],[-9.802,2.304],[-1.336,0.242],[-23.288,-3.934],[-24.472,-7.572],[-16.565,-4.481],[-18.224,-2.274],[-31.447,10.296],[-54.339,-5.456],[6.928,4.39],[5.409,0.517],[39.877,-12.916],[41.024,4.02],[30.213,9.348]],"o":[[-6,0.492],[-5.684,0.704],[-1.015,0.207],[-7.599,2.095],[1.456,1.456],[9.802,-2.303],[29.377,-5.309],[23.288,3.934],[15.514,4.8],[16.565,4.481],[42.992,5.366],[40.423,-13.235],[6.405,0.643],[-5.305,-3.361],[-57.639,-5.509],[-29.838,9.664],[-35.395,-3.468],[-40.088,-12.404]],"v":[[-211.5,-17.5],[-228.302,-15.898],[-248.5,-12.5],[-265.321,-8.404],[-278.5,-2.5],[-257.41,-5.227],[-236.5,-10.5],[-159.322,-11.161],[-89.5,7.5],[-41.532,21.895],[10.5,32.5],[119.5,21.5],[246.5,-6.5],[274.5,-5.5],[246.5,-10.5],[119.5,17.5],[15.5,28.5],[-81.5,6.5]],"c":true}],"h":1},{"t":18,"s":[{"i":[[48.902,-3.824],[11.611,-2.046],[9.613,-3.037],[5.103,-1.466],[-1.803,-1.803],[-3.972,0.726],[-2.606,0.603],[-9.508,1.802],[-9.06,0.502],[-38.895,-12.034],[-33.728,-3.828],[-30.183,9.218],[-55.812,-3.467],[15.318,5.303],[14.572,-0.089],[33.219,-11.552],[40.106,3.865],[31.117,9.415]],"o":[[-9.945,0.777],[-11.611,2.046],[11.608,-3.668],[-5.103,1.466],[0.507,0.507],[3.972,-0.726],[9.907,-2.291],[9.508,-1.802],[51.671,-2.862],[28.481,8.812],[38.114,4.326],[40.575,-12.392],[9.241,0.574],[-13.312,-4.608],[-38.733,0.236],[-31.545,10.97],[-37.076,-3.573],[-39.925,-12.08]],"v":[[-205.5,-18.5],[-238.749,-14.195],[-271.5,-6.5],[-267.646,-8.603],[-278.5,-2.5],[-270.575,-3.168],[-259.5,-5.5],[-230.364,-11.842],[-202.5,-15.5],[-78.5,9.5],[17.5,32.5],[122.5,22.5],[245.5,-6.5],[272.5,-6.5],[227.5,-11.5],[130.5,15.5],[22.5,29.5],[-78.5,6.5]],"c":true}],"h":1},{"t":19,"s":[{"i":[[38.542,-2.85],[14.306,-2.301],[9.285,-4.021],[-4.315,0.46],[-2.083,0.473],[-21.86,1.124],[-19.941,-6.17],[-21.469,-6.517],[-22.536,-4.253],[-24.21,2.087],[-20.981,7.593],[-24.546,4.505],[-18.027,-2.167],[14.691,4.21],[11.397,1.117],[40.021,-13.82],[35.486,2.858],[44.4,12.91]],"o":[[-10.491,0.776],[-14.306,2.301],[-5.344,2.314],[4.315,-0.461],[20.62,-4.675],[21.86,-1.124],[21.587,6.679],[21.469,6.517],[26.18,4.941],[24.21,-2.087],[19.643,-7.108],[16.538,-3.035],[3.205,0.385],[-8.298,-2.378],[-52.829,-5.176],[-29.843,10.306],[-55.395,-4.461],[-29.06,-8.45]],"v":[[-198.5,-19.5],[-237.905,-14.934],[-275.5,-5.5],[-274.071,-3.41],[-261.5,-5.5],[-196.991,-15.134],[-133.5,-8.5],[-69.212,11.82],[-3.5,28.5],[72.399,32.4],[140.5,17.5],[202.5,-3.5],[260.5,-4.5],[272.5,-6.5],[251.5,-9.5],[132.5,16.5],[32.5,29.5],[-106.5,-3.5]],"c":true}],"h":1},{"t":20,"s":[{"i":[[36.293,-0.719],[14.25,-2.355],[12.086,-3.322],[2.922,-0.992],[-0.709,-1.575],[-3.603,0.715],[-0.182,0.04],[-19.929,2.326],[-18.585,-4.158],[-19.188,-6.241],[-19.507,-5.172],[-43.868,8.95],[-60.377,-3.434],[0.101,4.086],[2.023,0.334],[44.885,-14.617],[34.806,3.354],[44.302,13.53]],"o":[[-12.916,0.256],[-14.25,2.355],[1.98,-0.544],[-2.922,0.992],[0.405,0.899],[3.603,-0.715],[17.698,-3.854],[19.929,-2.326],[21.74,4.864],[19.188,6.241],[45.834,12.151],[51.076,-10.421],[2.951,0.168],[-0.048,-1.927],[-58.501,-9.659],[-28.862,9.399],[-55.544,-5.353],[-27.608,-8.432]],"v":[[-187.5,-20.5],[-229.123,-16.3],[-269.5,-7.5],[-273.047,-6.59],[-278.5,-2.5],[-270.833,-2.796],[-263.5,-4.5],[-206.166,-15.009],[-147.5,-13.5],[-86.825,3.769],[-29.5,21.5],[104.5,29.5],[248.5,-5.5],[277.5,-4.5],[264.5,-7.5],[131.5,17.5],[31.5,29.5],[-105.5,-4.5]],"c":true}],"h":1},{"t":21,"s":[{"i":[[13.783,-1.132],[12.564,-2.486],[10.615,-3.143],[2.903,-0.75],[-0.697,-1.569],[-0.82,0.256],[-0.255,0.029],[-29.681,1.644],[-27.053,-8.278],[-52.268,-5.164],[-30.228,10.845],[-48.356,-4.274],[15.313,3.619],[19.144,1.393],[21.488,-8.795],[39.055,-0.726],[29.315,8.87],[30.721,6.312]],"o":[[-11.13,0.914],[-12.564,2.486],[1.916,-0.567],[-2.903,0.75],[0.467,1.051],[0.82,-0.256],[28.389,-3.154],[39.574,-2.192],[45.497,13.921],[40.374,3.988],[37.441,-13.432],[7.735,0.684],[-11.097,-2.623],[-32.723,-2.382],[-31.354,12.834],[-38.467,0.715],[-34.135,-10.328],[-15.461,-3.177]],"v":[[-197.5,-20.5],[-233.886,-15.172],[-269.5,-6.5],[-273.086,-6.102],[-278.5,-2.5],[-276.341,-1.69],[-274.5,-2.5],[-194.5,-17.5],[-106.5,-2.5],[38.5,33.5],[143.5,19.5],[259.5,-4.5],[271.5,-6.5],[249.5,-8.5],[167.5,5.5],[62.5,30.5],[-48.5,11.5],[-148.5,-19.5]],"c":true}],"h":1},{"t":22,"s":[{"i":[[50.832,-3.975],[13.578,-2.705],[11.44,-3.223],[2.383,-0.624],[-0.675,-1.465],[-3.674,0.72],[9.352,-1.462],[-18.134,3.622],[-20.257,-1.334],[-9.699,-3.04],[-10.087,-3.11],[-58.868,-2.353],[-31.905,13.337],[-34.924,-1.308],[16.591,3.874],[40.241,-12.52],[34.604,3.928],[28.355,8.92]],"o":[[-12.248,0.958],[-13.578,2.705],[-0.144,0.04],[-2.383,0.624],[0.655,1.42],[3.674,-0.72],[18.207,-2.846],[18.134,-3.622],[11.117,0.732],[9.699,3.04],[50.022,15.42],[42.872,1.714],[26.092,-10.907],[5.997,0.225],[-56.818,-13.266],[-29.595,9.208],[-35.041,-3.978],[-39.866,-12.541]],"v":[[-191.5,-21.5],[-231.106,-15.698],[-269.5,-6.5],[-274.615,-5.568],[-278.5,-2.5],[-267.994,-2.531],[-272.5,-2.5],[-218.538,-13.636],[-161.5,-18.5],[-130.727,-12.283],[-101.5,-2.5],[58.5,34.5],[166.5,11.5],[248.5,-4.5],[272.5,-6.5],[136.5,18.5],[34.5,28.5],[-59.5,6.5]],"c":true}],"h":1},{"t":23,"s":[{"i":[[47.251,-3.276],[14.704,-2.687],[12.832,-3.325],[1.127,-1.203],[-5.553,0.86],[-20.192,4.238],[-22.098,-3.912],[-11.654,-3.899],[-12.046,-3.396],[-39.407,-6.027],[-38.328,14.422],[-30.933,2.074],[-8.347,-0.232],[-1.621,1.621],[-0.438,-0.045],[38.298,-14.703],[39.376,3.953],[29.763,8.988]],"o":[[-13.35,0.925],[-14.704,2.687],[-4.044,1.048],[-1.127,1.203],[19.133,-2.962],[20.192,-4.238],[11.34,2.008],[11.653,3.899],[33.044,9.316],[39.407,6.026],[21.25,-7.996],[6.251,-0.419],[6.406,0.178],[2.846,-2.846],[-47.798,-4.877],[-30.085,11.55],[-34.734,-3.487],[-39.204,-11.84]],"v":[[-183.5,-22.5],[-226.388,-16.8],[-268.5,-7.5],[-277.198,-3.569],[-271.5,-2.5],[-212.724,-15.655],[-149.5,-18.5],[-115.029,-9.041],[-79.5,2.5],[31.037,29.803],[149.5,21.5],[228.5,-3.5],[253.5,-3.5],[277.5,-2.5],[262.5,-7.5],[147.5,16.5],[42.5,28.5],[-55.5,6.5]],"c":true}],"h":1},{"t":24,"s":[{"i":[[43.418,-3.718],[13.762,-2.919],[11.928,-3.296],[0.109,-0.891],[-3.188,0.875],[-17.367,3.798],[-16.949,-0.163],[-10.992,-2.838],[-11.342,-3.516],[-25.523,-7.175],[-29.438,-2.405],[-18.269,3.49],[-16.013,6.747],[-16.006,3.279],[-18.68,-1.296],[13.883,2.584],[30.846,-11.047],[67.012,19.336]],"o":[[-12.025,1.029],[-13.762,2.919],[-4.75,1.313],[-0.109,0.891],[16.584,-2.971],[17.367,-3.798],[13.692,0.132],[10.992,2.838],[25.469,7.895],[25.523,7.175],[20.911,1.709],[18.269,-3.49],[12.296,-5.181],[16.006,-3.279],[11.682,0.81],[-50.97,-9.487],[-81.837,29.31],[-36.445,-10.516]],"v":[[-190.5,-22.5],[-230.074,-16.2],[-269.5,-6.5],[-276.453,-2.859],[-271.5,-2.5],[-220.274,-13.851],[-168.5,-20.5],[-132.238,-15.538],[-99.5,-5.5],[-23.976,18.117],[57.5,33.5],[116.173,30.342],[167.5,14.5],[210.211,1.143],[262.5,-2.5],[269.5,-6.5],[148.5,18.5],[-81.5,-3.5]],"c":true}],"h":1},{"t":25,"s":[{"i":[[49.299,-4.047],[12.335,-2.557],[11.977,-2.813],[4.271,-1.857],[-12.631,2.497],[-13.581,3.257],[-14.484,0.971],[-12.236,-2.609],[-12.093,-3.7],[-41.989,-8.646],[-43.55,12.446],[-14.524,5.626],[-17.865,1.198],[-9.983,-0.383],[-0.62,1.3],[0.398,0.041],[35.641,-13.591],[58.083,17.872]],"o":[[-11.68,0.959],[-12.335,2.557],[-4.546,1.067],[-4.271,1.857],[15.193,-3.002],[13.581,-3.257],[16.964,-1.137],[12.236,2.609],[35.492,10.86],[41.989,8.646],[15.036,-4.297],[14.525,-5.626],[3.449,-0.231],[9.983,0.383],[1.558,-3.269],[-45.593,-4.652],[-67.768,25.843],[-39.239,-12.074]],"v":[[-184.5,-23.5],[-220.777,-17.89],[-257.5,-9.5],[-274.883,-3.827],[-266.5,-3.5],[-223.968,-13.524],[-182.5,-20.5],[-139.847,-17.628],[-104.5,-7.5],[12.956,26.479],[142.5,25.5],[185.878,9.176],[233.5,-2.5],[257.622,-1.698],[277.5,-2.5],[264.5,-6.5],[150.5,18.5],[-56.5,3.5]],"c":true}],"h":1},{"t":26,"s":[{"i":[[45.593,-3.565],[12.723,-2.73],[12.718,-3.032],[5.802,-1.628],[-1.243,-1.242],[-6.809,1.899],[-1.737,0.431],[-16.508,3.066],[-17.078,-1.96],[-15.094,-4.714],[-15.201,-4.712],[-67.464,23.707],[-47.636,-1.96],[13.665,2.781],[16.458,-0.325],[25.283,-10.791],[39.938,3.913],[32.73,10.033]],"o":[[-13.388,1.047],[-12.723,2.73],[-1.036,0.247],[-5.802,1.628],[2.026,2.026],[6.809,-1.899],[14.888,-3.695],[16.508,-3.066],[15.434,1.771],[15.841,4.947],[57.418,17.798],[37.744,-13.263],[7.469,0.307],[-12.072,-2.457],[-32.832,0.649],[-33.564,14.325],[-37.651,-3.689],[-39.428,-12.087]],"v":[[-178.5,-24.5],[-217.503,-18.489],[-255.5,-9.5],[-268.709,-6.247],[-278.5,-1.5],[-262.783,-2.657],[-247.5,-7.5],[-200.143,-18.742],[-149.5,-21.5],[-102.5,-8.5],[-55.5,5.5],[149.5,24.5],[262.5,-2.5],[271.5,-5.5],[248.5,-6.5],[168.5,12.5],[56.5,28.5],[-49.5,3.5]],"c":true}],"h":1},{"t":27,"s":[{"i":[[32.352,-2.243],[8.927,-1.276],[12.88,-3.245],[8.259,-1.868],[6.587,-2.173],[-0.862,-1.883],[-2.618,0.659],[-38.988,-4.361],[-23.389,-7.17],[-76.511,25.141],[-37.168,2.058],[-3.49,3.49],[-9.935,-3.31],[3.497,0.461],[23.234,-7.593],[14.832,-4.83],[49.207,14.117],[23.586,7.217]],"o":[[-9.412,0.652],[-8.927,1.276],[-5.378,1.354],[-8.259,1.868],[3.844,-1.268],[1.425,3.113],[29.464,-7.422],[23.008,2.574],[63.788,19.554],[28.14,-9.247],[4.276,-0.237],[3.168,-3.168],[-0.011,-0.004],[-24.894,-3.284],[-17.66,5.772],[-50.386,16.408],[-22.446,-6.44],[-30.172,-9.232]],"v":[[-170.5,-25.5],[-196.899,-22.944],[-228.5,-16.5],[-250.093,-11.614],[-273.5,-5.5],[-278.5,-1.5],[-247.5,-6.5],[-149.5,-22.5],[-78.5,-2.5],[149.5,26.5],[240.5,-1.5],[277.5,-1.5],[273.5,-4.5],[266.5,-5.5],[196.5,3.5],[148.5,22.5],[-10.5,14.5],[-80.5,-6.5]],"c":true}],"h":1},{"t":28,"s":[{"i":[[2.399,-0.048],[10.202,-1.793],[10.063,-2.609],[8.393,-1.89],[7.711,-2.439],[3.452,-0.874],[-0.766,-1.733],[-0.12,0.016],[-44.325,-2.689],[-23.512,-7.275],[-77.071,24.918],[-16.521,5.725],[-19.61,0.977],[-0.636,1.282],[1.235,-0.091],[27.086,-8.319],[47.408,13.339],[45.393,7.416]],"o":[[-11.129,0.221],[-10.202,1.793],[-7.716,2.001],[-8.393,1.89],[7.043,-2.229],[-3.452,0.874],[1.138,2.573],[39.654,-5.187],[23.219,1.409],[63.685,19.705],[14.405,-4.657],[16.31,-5.652],[4.059,-0.202],[2.537,-5.115],[-38.992,2.883],[-53.066,16.297],[-49.284,-13.867],[-5.271,-0.861]],"v":[[-161.5,-26.5],[-193.3,-23.291],[-223.5,-16.5],[-248.004,-10.829],[-272.5,-4.5],[-270.792,-5.971],[-278.5,-1.5],[-271.5,-1.5],[-152.5,-23.5],[-79.5,-4.5],[150.5,27.5],[195.5,9.5],[248.5,-1.5],[277.5,-1.5],[241.5,-5.5],[149.5,23.5],[-6.5,13.5],[-146.5,-26.5]],"c":true}],"h":1},{"t":29,"s":[{"i":[[34.758,-2.854],[14.107,-3.184],[13.416,-3.268],[6.303,-2.147],[-9.552,1.159],[-19.378,5.342],[-21.55,-0.785],[-12.465,-3.722],[-11.757,-3.699],[-21.36,-6.463],[-52.958,16.386],[-23.591,6.548],[-17.604,0.026],[-2.236,4.311],[1.078,0.019],[31.888,-9.166],[48.406,14.048],[23.67,7.501]],"o":[[-12.154,0.998],[-14.107,3.184],[-2.338,0.569],[-6.303,2.147],[19.939,-2.419],[19.378,-5.341],[11.383,0.415],[12.465,3.722],[24.113,7.586],[47.629,14.411],[18.005,-5.571],[12.061,-3.347],[2.292,-0.003],[1.864,-3.594],[-50.428,-0.907],[-54.125,15.557],[-20.908,-6.068],[-31.528,-9.991]],"v":[[-171.5,-26.5],[-211.554,-19.702],[-253.5,-9.5],[-271.417,-4.204],[-271.5,-1.5],[-213.209,-15.403],[-152.5,-24.5],[-116.281,-17.463],[-79.5,-5.5],[-8.5,15.5],[151.5,28.5],[208.5,6.5],[259.5,-1.5],[277.5,-1.5],[261.5,-5.5],[148.5,24.5],[-7.5,12.5],[-76.5,-8.5]],"c":true}],"h":1},{"t":30,"s":[{"i":[[31.556,-2.591],[9.198,-1.672],[12.97,-3.474],[8.852,-2.061],[6.99,-2.255],[-3.603,0.758],[-40.693,-4.069],[-23.755,-7.174],[-23.025,-6.915],[-52.015,14.951],[-22.807,6.708],[-17.203,0.412],[-1.693,3.471],[0.18,0.005],[23.593,-8.276],[14.501,-4.017],[43.986,13.309],[22.742,6.959]],"o":[[-10.239,0.84],[-9.198,1.672],[-5.603,1.5],[-8.852,2.061],[-19.345,6.239],[37.026,-7.789],[23.517,2.352],[23.245,7.02],[44.646,13.407],[18.078,-5.196],[14.137,-4.158],[4.194,-0.1],[1.911,-3.918],[-27.671,-0.819],[-18.725,6.568],[-55.296,15.317],[-22.942,-6.941],[-28.861,-8.831]],"v":[[-165.5,-27.5],[-193.452,-23.975],[-225.5,-16.5],[-248.459,-11.066],[-273.5,-4.5],[-261.5,-2.5],[-146.5,-24.5],[-75.5,-5.5],[-6.5,15.5],[150.5,29.5],[207.5,7.5],[258.5,-0.5],[277.5,-1.5],[263.5,-4.5],[195.5,7.5],[149.5,25.5],[-7.5,11.5],[-76.5,-9.5]],"c":true}],"h":1},{"t":31,"s":[{"i":[[30.653,-1.663],[15.436,-3.636],[14.858,-3.619],[6.931,-1.969],[-0.851,-0.851],[-7.298,1.547],[-2.085,0.537],[-34.764,-1.473],[-23.984,-7.257],[-23.058,-7.254],[-51.903,14.208],[-20.469,6.333],[-17.016,0.748],[0.124,3.244],[0.672,0.056],[34.422,-8.888],[44.674,13.492],[23.325,7.217]],"o":[[-15.399,0.835],[-15.436,3.636],[-1.127,0.274],[-6.931,1.969],[1.723,1.723],[7.298,-1.547],[31.511,-8.103],[25.05,1.061],[23.654,7.157],[41.151,12.946],[18.456,-5.052],[10.754,-3.327],[1.267,-0.056],[-0.051,-1.323],[-54.051,-4.485],[-56.571,14.607],[-23.875,-7.21],[-26.972,-8.345]],"v":[[-158.5,-28.5],[-204.905,-21.088],[-250.5,-9.5],[-265.983,-5.432],[-278.5,-0.5],[-262.272,-1.305],[-245.5,-5.5],[-150.5,-25.5],[-77.5,-7.5],[-7.5,13.5],[150.5,30.5],[208.5,8.5],[259.5,-0.5],[277.5,-2.5],[269.5,-4.5],[148.5,26.5],[-9.5,8.5],[-80.5,-12.5]],"c":true}],"h":1},{"t":32,"s":[{"i":[[22.703,0.409],[19.01,-5.168],[17.913,-3.672],[2.875,-1.23],[-7.357,0.709],[-19.972,6.18],[-20.703,-0.784],[-23.706,-7.119],[-23.292,-7.127],[-52.802,13.245],[-15.909,5.61],[-25.88,1.217],[11.498,0.596],[4.583,-0.134],[13.375,-4.146],[19.037,-4.355],[26.277,4.339],[45.507,14.08]],"o":[[-19.047,-0.343],[-19.01,5.168],[-3.856,0.79],[-2.875,1.23],[21.411,-2.063],[19.972,-6.18],[25.734,0.975],[23.159,6.955],[40.261,12.319],[16.435,-4.122],[19.581,-6.905],[13.691,-0.644],[6.071,0.315],[-21.944,0.643],[-20.061,6.219],[-26.502,6.062],[-52.479,-8.665],[-23.371,-7.231]],"v":[[-150.5,-29.5],[-207.85,-20.511],[-263.5,-5.5],[-275.909,-1.875],[-271.5,-0.5],[-209.969,-15.636],[-149.5,-26.5],[-76.5,-8.5],[-6.5,12.5],[150.5,31.5],[197.5,12.5],[265.5,0.5],[268.5,-3.5],[260.5,-3.5],[208.5,5.5],[148.5,27.5],[65.5,26.5],[-75.5,-12.5]],"c":true}],"h":1},{"t":33,"s":[{"i":[[25.727,-2.229],[15.142,-4.014],[15.201,-3.624],[7.037,-1.626],[-0.553,-1.163],[-3.939,0.602],[0.391,-0.074],[-40.813,-2.057],[-23.595,-7.033],[-50.808,-8.947],[-26.662,5.819],[-20.582,6.439],[-16.472,0.821],[18.184,1.509],[12.083,-3.711],[19.272,-3.811],[25.697,4.585],[48.096,13.958]],"o":[[-15.231,1.319],[-15.142,4.014],[-1.403,0.335],[-7.038,1.626],[0.635,1.335],[3.939,-0.602],[36.761,-6.955],[24.197,1.22],[47.278,14.091],[25.898,4.561],[19.312,-4.215],[9.42,-2.947],[9.807,-0.489],[-22.554,-1.872],[-23.527,7.225],[-28.176,5.572],[-52.928,-9.443],[-23.816,-6.912]],"v":[[-158.5,-29.5],[-204.023,-20.728],[-249.5,-8.5],[-265.467,-5.121],[-278.5,-0.5],[-269.731,-0.055],[-262.5,-1.5],[-147.5,-26.5],[-74.5,-9.5],[66.5,29.5],[149.5,32.5],[208.5,10.5],[259.5,0.5],[270.5,-3.5],[208.5,6.5],[147.5,28.5],[63.5,25.5],[-79.5,-15.5]],"c":true}],"h":1},{"t":34,"s":[{"i":[[0.212,-0.008],[17.761,-5.123],[19.101,-3.732],[3.781,-0.896],[-0.625,-1.319],[-7.657,1.376],[-1.483,0.373],[-34.757,-0.632],[-23.295,-6.644],[-50.97,-9.499],[-27.89,5.84],[-15.683,5.52],[-20.767,2.161],[12.812,3.575],[9.667,-2.28],[22.174,-4.762],[25.87,4.809],[74.928,8.43]],"o":[[-19.855,0.774],[-17.761,5.124],[-0.502,0.098],[-3.781,0.896],[0.89,1.878],[7.657,-1.376],[30.941,-7.794],[23.467,0.427],[48.837,13.93],[25.879,4.823],[17.425,-3.649],[17.043,-5.999],[5.04,-0.524],[-14.812,-4.134],[-27.98,6.599],[-26.234,5.634],[-75.538,-14.042],[-0.973,-0.109]],"v":[[-152.5,-30.5],[-208.066,-20.218],[-262.5,-5.5],[-270.845,-3.916],[-277.5,-0.5],[-261.445,-0.811],[-244.5,-4.5],[-148.5,-27.5],[-74.5,-11.5],[67.5,28.5],[150.5,32.5],[198.5,14.5],[251.5,1.5],[274.5,-2.5],[226.5,2.5],[150.5,28.5],[66.5,25.5],[-150.5,-31.5]],"c":true}],"h":1},{"t":35,"s":[{"i":[[26.531,-2.696],[10.052,-2.733],[10.207,-2.991],[9.318,-1.853],[9.12,-2.359],[-3.755,-0.157],[-3.727,0.634],[-37.397,0.747],[-24.325,-6.898],[-51.598,-10.031],[-26.987,5.285],[-13.566,4.205],[-22.878,2.528],[14.477,-0.775],[13.885,-4.304],[17.059,-3.067],[25.569,5.093],[47.664,13.359]],"o":[[-10.588,1.075],[-10.051,2.733],[-7.606,2.229],[-9.318,1.853],[-7.747,2.004],[3.755,0.158],[38.397,-6.532],[28.024,-0.559],[47.817,13.559],[25.198,4.899],[17.701,-3.467],[16.941,-5.252],[15.09,-1.668],[-20.612,1.103],[-15.574,4.828],[-27.928,5.022],[-52.125,-10.383],[-24.421,-6.845]],"v":[[-156.5,-30.5],[-187.286,-24.436],[-217.5,-15.5],[-243.365,-9.598],[-271.5,-3.5],[-274.606,-0.522],[-260.5,-1.5],[-150.5,-27.5],[-74.5,-12.5],[67.5,27.5],[150.5,33.5],[209.5,11.5],[270.5,1.5],[259.5,-2.5],[208.5,7.5],[148.5,29.5],[65.5,23.5],[-77.5,-16.5]],"c":true}],"h":1},{"t":36,"s":[{"i":[[24.72,-1.52],[10.44,-2.664],[12.212,-3.667],[18.515,-4.554],[-7.137,0.41],[-13.689,4.134],[-21.46,0.205],[-23.817,-6.558],[-22.474,-6.954],[-53.767,3.915],[-16.998,5.466],[-14.435,2.469],[1.056,2.165],[6.616,-1.138],[8.756,-2.815],[17.1,-3.292],[24.642,5.135],[47.641,13.588]],"o":[[-11.028,0.678],[-10.44,2.664],[-14.117,4.239],[-5.202,1.279],[19.529,-1.122],[20.786,-6.277],[24.846,-0.237],[23.014,6.337],[45.727,14.148],[22.897,-1.667],[9.518,-3.061],[2.712,-0.464],[-1.805,-3.701],[-14.3,2.459],[-15.383,4.947],[-26.284,5.06],[-51.97,-10.831],[-23.09,-6.586]],"v":[[-151.5,-31.5],[-183.112,-26.242],[-216.5,-16.5],[-271.5,-3.5],[-273.5,1.5],[-212.5,-12.5],[-148.5,-28.5],[-75.5,-13.5],[-6.5,6.5],[142.5,34.5],[211.5,12.5],[243.5,4.5],[278.5,-1.5],[242.5,0.5],[210.5,8.5],[150.5,29.5],[67.5,23.5],[-73.5,-17.5]],"c":true}],"h":1},{"t":37,"s":[{"i":[[24.718,-2.363],[17.694,-5.491],[19.755,-3.271],[3.688,-0.849],[-0.679,-1.45],[-3.871,0.57],[-0.851,0.136],[-18.444,6.09],[-18.461,0.485],[-23.282,-6.449],[-49.673,-11.438],[-27.595,3.409],[-19.129,6.151],[-19.108,2.845],[4.067,-0.793],[32.712,-5.836],[25.742,5.967],[47.087,12.813]],"o":[[-18.469,1.766],[-17.694,5.491],[-0.928,0.154],[-3.688,0.849],[0.663,1.415],[3.872,-0.57],[19.764,-3.156],[18.444,-6.09],[27.277,-0.716],[48.579,13.456],[24.322,5.6],[19.404,-2.397],[13.806,-4.439],[25.44,-3.787],[-32.78,6.388],[-27.382,4.885],[-49.418,-11.454],[-23.692,-6.447]],"v":[[-153.5,-31.5],[-207.035,-19.129],[-262.5,-4.5],[-271.206,-2.972],[-277.5,0.5],[-269.14,1.163],[-260.5,-0.5],[-203.523,-16.504],[-148.5,-28.5],[-73.5,-14.5],[66.5,25.5],[147.5,34.5],[209.5,13.5],[270.5,1.5],[242.5,0.5],[150.5,29.5],[64.5,21.5],[-75.5,-18.5]],"c":true}],"h":1},{"t":38,"s":[{"i":[[27.932,-3.427],[14.706,-4.867],[16.68,-3.509],[7.793,-1.645],[-1.203,-1.204],[-7.462,1.647],[-2.075,0.49],[-29.807,2.582],[-24.347,-6.494],[-48.817,-11.513],[-27.035,3.547],[-22.555,7.174],[-22.625,3.345],[11.676,-1.074],[8.122,-2.583],[18.416,-2.26],[24.479,5.501],[48.717,12.864]],"o":[[-16.495,2.024],[-14.706,4.867],[-1.031,0.217],[-7.793,1.645],[2.077,2.077],[7.462,-1.647],[31.656,-7.466],[29.165,-2.527],[48.961,13.059],[24.257,5.721],[19.536,-2.563],[14.575,-4.636],[16.214,-2.397],[-16.867,1.551],[-21.449,6.822],[-27.573,3.383],[-50.308,-11.305],[-24.564,-6.486]],"v":[[-154.5,-31.5],[-200.361,-20.114],[-246.5,-6.5],[-263.675,-3.24],[-277.5,1.5],[-260.498,0.925],[-243.5,-3.5],[-151.5,-28.5],[-73.5,-15.5],[67.5,25.5],[149.5,34.5],[211.5,14.5],[271.5,2.5],[258.5,-1.5],[209.5,10.5],[148.5,30.5],[66.5,21.5],[-74.5,-19.5]],"c":true}],"h":1},{"t":39,"s":[{"i":[[0.02,-0.001],[33.466,-7.504],[6.619,-2.331],[-2.694,-2.694],[-4.214,0.972],[-7.686,2.431],[-21.402,1.082],[-23.425,-6.086],[-49.235,-11.688],[-28.025,3.545],[-21.31,6.853],[-17.867,2.291],[1.276,2.649],[5.059,-1.049],[9.592,-3.084],[19.95,-2.149],[23.15,5.626],[83.621,6.347]],"o":[[-31.838,2.232],[-7.016,1.573],[7.7,-2.712],[3.489,3.489],[13.832,-3.192],[20.374,-6.445],[25.666,-1.298],[48.92,12.709],[24.944,5.921],[19.306,-2.442],[12.028,-3.868],[1.175,-0.151],[-2.095,-4.348],[-14.142,2.933],[-18.848,6.061],[-28.652,3.087],[-74.56,-18.121],[-0.807,-0.061]],"v":[[-148.5,-32.5],[-244.5,-6.5],[-274.5,-1.5],[-277.5,1.5],[-241.5,-2.5],[-210.5,-11.5],[-147.5,-29.5],[-70.5,-16.5],[69.5,24.5],[150.5,34.5],[211.5,14.5],[261.5,3.5],[278.5,-0.5],[243.5,2.5],[210.5,10.5],[148.5,30.5],[68.5,20.5],[-147.5,-33.5]],"c":true}],"h":1},{"t":40,"s":[{"i":[[0.018,-0.002],[10.288,-3.286],[12.164,-3.912],[19.106,-3.632],[-8.854,1.323],[-8.569,2.725],[-21.73,0.832],[-23.323,-5.973],[-48.426,-12.096],[-27.844,2.704],[-34.922,7.176],[1.185,2.405],[5.789,-1.189],[10.173,-3.271],[19.662,-1.786],[23.477,5.889],[21.759,6.146],[59.306,1.843]],"o":[[-10.685,0.945],[-10.288,3.286],[-13.379,4.302],[-16.975,3.227],[17.252,-2.578],[22.717,-7.225],[26.083,-0.998],[48.223,12.349],[24.433,6.103],[32.317,-3.138],[2.089,-0.429],[-1.623,-3.296],[-12.786,2.627],[-15.698,5.048],[-28.048,2.548],[-24.462,-6.136],[-47.933,-13.54],[-0.782,-0.024]],"v":[[-149.5,-32.5],[-180.391,-25.724],[-213.5,-14.5],[-270.5,-1.5],[-259.5,1.5],[-210.5,-11.5],[-145.5,-29.5],[-68.5,-17.5],[70.5,23.5],[149.5,34.5],[244.5,6.5],[278.5,-0.5],[243.5,2.5],[211.5,11.5],[148.5,30.5],[69.5,19.5],[-0.5,-0.5],[-148.5,-33.5]],"c":true}],"h":1},{"t":41,"s":[{"i":[[0.251,-0.03],[10.029,-3.482],[12.011,-3.779],[19.929,-3.643],[-9.571,0.409],[-12.622,4.125],[-21.601,1.029],[-24.01,-5.923],[-47.513,-11.769],[-26.198,1.592],[-22.387,7.056],[-15.118,2.173],[21.053,-2.825],[13.003,-4.001],[18.503,-1.19],[24.508,6.096],[22.442,6.253],[56.405,-1.652]],"o":[[-10.873,1.296],[-10.029,3.482],[-15.403,4.845],[-8.458,1.546],[20.941,-0.895],[21.528,-7.036],[27.613,-1.316],[46.996,11.592],[23.965,5.936],[21.054,-1.28],[6.877,-2.167],[19.088,-2.744],[-19.776,2.654],[-16.219,4.991],[-26.386,1.697],[-24.107,-5.997],[-48.255,-13.445],[-0.939,0.027]],"v":[[-149.5,-32.5],[-180.146,-24.862],[-212.5,-13.5],[-270.5,-1.5],[-268.5,2.5],[-209.5,-10.5],[-145.5,-29.5],[-67.5,-18.5],[70.5,22.5],[148.5,34.5],[212.5,16.5],[262.5,4.5],[261.5,0.5],[212.5,12.5],[148.5,30.5],[70.5,18.5],[0.5,-1.5],[-147.5,-33.5]],"c":true}],"h":1},{"t":42,"s":[{"i":[[27.451,-3.684],[9.902,-3.395],[12.484,-3.956],[10.288,-2.049],[9.72,-1.544],[-7.202,0.767],[-14.929,5.012],[-21.355,1.333],[-24.252,-5.745],[-47.325,-12.269],[-26.06,1.429],[-21.729,6.911],[-20.386,4.126],[9.115,-1.354],[9.161,-2.803],[20.273,-1.014],[23.369,6.059],[48.12,11.72]],"o":[[-10.907,1.463],[-9.902,3.395],[-7.128,2.259],[-10.288,2.049],[-18.109,2.876],[21.129,-2.25],[22.008,-7.388],[28.41,-1.774],[48.892,11.581],[23.744,6.156],[20.185,-1.107],[15.423,-4.906],[17.491,-3.54],[-16.302,2.422],[-19.834,6.069],[-26.061,1.304],[-49.475,-12.827],[-24.108,-5.872]],"v":[[-148.5,-32.5],[-178.817,-24.87],[-211.5,-13.5],[-238.556,-6.964],[-269.5,-1.5],[-259.5,1.5],[-208.5,-10.5],[-144.5,-29.5],[-66.5,-18.5],[72.5,21.5],[149.5,34.5],[213.5,16.5],[271.5,3.5],[259.5,0.5],[211.5,12.5],[148.5,30.5],[72.5,17.5],[-67.5,-22.5]],"c":true}],"h":1},{"t":43,"s":[{"i":[[28.12,-4.314],[9.94,-3.593],[12.365,-3.962],[10.25,-2.026],[9.731,-1.569],[-16.122,0.473],[-15.282,5.004],[-20.803,2.241],[-24.39,-5.902],[-47.93,-12.707],[-26.539,2.718],[-18.273,5.633],[-15.136,2.877],[17.841,-2.825],[11.363,-3.496],[17.879,-0.798],[23.466,6.462],[48.253,11.628]],"o":[[-10.874,1.669],[-9.94,3.592],[-7.269,2.329],[-10.25,2.026],[-5.394,0.87],[22.529,-0.661],[21.978,-7.196],[28.176,-3.036],[49.16,11.897],[23.519,6.235],[19.39,-1.986],[10.111,-3.117],[12.129,-2.306],[-16.491,2.611],[-15.5,4.769],[-25.063,1.119],[-48.464,-13.345],[-24.56,-5.919]],"v":[[-148.5,-32.5],[-178.881,-24.22],[-211.5,-12.5],[-238.653,-5.931],[-269.5,-0.5],[-268.5,3.5],[-208.5,-9.5],[-145.5,-29.5],[-65.5,-19.5],[75.5,21.5],[154.5,33.5],[215.5,16.5],[271.5,3.5],[260.5,0.5],[213.5,13.5],[149.5,30.5],[72.5,17.5],[-66.5,-23.5]],"c":true}],"h":1},{"t":44,"s":[{"i":[[28.599,-3.63],[16.167,-5.946],[17.364,-3.318],[8.369,-1.106],[-0.579,-1.175],[-5.479,1.06],[-5.358,1.695],[-22.974,1.54],[-46.078,-13.578],[-23.539,-6.482],[-27.404,1.54],[-21.767,6.66],[-16.152,2.543],[15.829,-1.19],[15.57,-4.773],[20.128,-1.014],[23.111,6.028],[48.782,10.962]],"o":[[-14.969,1.9],[-16.166,5.945],[-2.103,0.402],[-8.369,1.106],[1.784,3.617],[13.206,-2.555],[24.939,-7.889],[55.758,-3.738],[22.19,6.539],[23.967,6.6],[20.369,-1.144],[10.31,-3.155],[6.798,-1.07],[-21.597,1.624],[-14.749,4.521],[-27.219,1.372],[-49.235,-12.843],[-24.478,-5.501]],"v":[[-145.5,-32.5],[-192.204,-19.063],[-242.5,-3.5],[-262.012,-1.08],[-277.5,2.5],[-241.5,0.5],[-210.5,-8.5],[-140.5,-29.5],[7.5,0.5],[76.5,20.5],[152.5,33.5],[215.5,17.5],[263.5,5.5],[271.5,0.5],[214.5,13.5],[151.5,29.5],[75.5,16.5],[-63.5,-24.5]],"c":true}],"h":1},{"t":45,"s":[{"i":[[51.179,-4.626],[10.674,-3.886],[13.395,-4.291],[10.084,-1.783],[11.017,-1.097],[-3.722,-0.877],[-4.785,0.373],[-13.091,4.278],[-19.413,3.374],[-23.531,-4.858],[-46.965,-12.958],[-26.859,0.637],[-28.825,6.652],[2.299,2.299],[3.935,-0.952],[31.704,-0.958],[23.034,6.418],[21.535,6.577]],"o":[[-12.907,1.166],[-10.674,3.886],[-8.645,2.77],[-10.084,1.783],[-8.673,0.864],[3.722,0.877],[19.36,-1.506],[19.315,-6.313],[26.383,-4.585],[50.247,10.374],[24.683,6.81],[31.561,-0.749],[2.18,-0.503],[-4.756,-4.755],[-33.614,8.135],[-24.161,0.73],[-23.291,-6.49],[-44.697,-13.651]],"v":[[-140.5,-32.5],[-174.634,-24.344],[-209.5,-11.5],[-237.721,-4.745],[-269.5,-0.5],[-274.094,2.427],[-258.5,3.5],[-208.5,-7.5],[-148.5,-28.5],[-66.5,-22.5],[74.5,18.5],[150.5,33.5],[246.5,8.5],[279.5,0.5],[245.5,5.5],[150.5,29.5],[76.5,15.5],[8.5,-4.5]],"c":true}],"h":1},{"t":46,"s":[{"i":[[50.425,-3.247],[5.904,-1.841],[7.947,-2.965],[10.669,-3.416],[11.001,-1.857],[8.276,-0.729],[-0.159,-1.57],[-1.703,0.29],[-48.627,-0.86],[-43.89,-13.131],[-45.307,-2.158],[-15.481,4.545],[-17.688,3.76],[10.466,-1.728],[9.247,-2.751],[19.143,-0.082],[22.845,6.253],[21.285,6.561]],"o":[[-10.436,0.672],[-5.904,1.841],[-9.323,3.479],[-10.669,3.416],[-3.053,0.515],[-8.276,0.729],[0.477,4.712],[46.945,-7.986],[48.465,0.857],[43.31,12.957],[24.472,1.166],[14.776,-4.338],[12.97,-2.757],[-16.381,2.705],[-21.35,6.351],[-23.636,0.101],[-22.831,-6.25],[-43.731,-13.481]],"v":[[-135.5,-32.5],[-158.367,-28.72],[-177.5,-21.5],[-207.742,-10.784],[-240.5,-2.5],[-260.909,-0.791],[-276.5,2.5],[-240.5,1.5],[-121.5,-29.5],[14.5,-0.5],[146.5,32.5],[218.5,17.5],[272.5,4.5],[262.5,1.5],[215.5,14.5],[150.5,29.5],[78.5,14.5],[11.5,-5.5]],"c":true}],"h":1},{"t":47,"s":[{"i":[[52.519,-3.382],[2.681,0.015],[3.268,-0.737],[9.065,-3.725],[12.93,-4.113],[18.081,-1.407],[-17.393,-1.712],[-14.761,4.533],[-22.141,4.517],[-25.333,-4.449],[-48.119,-14.072],[-23.749,-0.425],[-19.236,5.423],[-16.44,4.143],[1.822,-0.438],[37.553,0.303],[22.005,6.325],[21.188,6.411]],"o":[[-5.008,0.322],[-2.681,-0.015],[-8.811,1.989],[-9.065,3.725],[-12.213,3.885],[-8.292,0.645],[21.108,2.078],[24.935,-7.658],[27.615,-5.634],[51.655,9.073],[23.714,6.935],[21.806,0.39],[13.939,-3.93],[23.532,-5.931],[-33.673,8.097],[-23.745,-0.192],[-23.007,-6.613],[-43.241,-13.084]],"v":[[-131.5,-32.5],[-142.305,-32.311],[-150.5,-31.5],[-176.411,-22.593],[-208.5,-10.5],[-258.5,-0.5],[-269.5,4.5],[-208.5,-5.5],[-148.5,-27.5],[-66.5,-23.5],[75.5,16.5],[150.5,32.5],[216.5,18.5],[272.5,4.5],[246.5,5.5],[150.5,28.5],[80.5,13.5],[13.5,-5.5]],"c":true}],"h":1},{"t":48,"s":[{"i":[[51.65,-3.326],[4.14,-0.216],[3.592,-0.888],[15.081,-5.789],[17.469,-2.579],[6.264,-0.306],[3.568,-1.278],[-7.252,1.074],[-50.658,-0.18],[-59.124,-17.191],[-23.004,-1.373],[-22.038,6.177],[-17.858,4.191],[12.005,-2.204],[10.699,-3.069],[20.393,0.378],[20.951,5.976],[20.075,6.385]],"o":[[-3.849,0.248],[-4.14,0.216],[-13.207,3.264],[-15.081,5.789],[-3.377,0.498],[-6.264,0.306],[-11.834,4.237],[46.222,-6.847],[72.05,0.255],[21.152,6.15],[24.386,1.455],[14.25,-3.994],[13.552,-3.181],[-15.377,2.822],[-18.472,5.299],[-22.373,-0.415],[-22.446,-6.402],[-40.053,-12.739]],"v":[[-126.5,-32.5],[-138.692,-31.98],[-150.5,-30.5],[-192.804,-15.486],[-241.5,-1.5],[-257.357,-0.584],[-273.5,1.5],[-239.5,2.5],[-114.5,-29.5],[81.5,16.5],[147.5,31.5],[215.5,18.5],[272.5,5.5],[263.5,2.5],[215.5,14.5],[150.5,28.5],[81.5,13.5],[16.5,-6.5]],"c":true}],"h":1},{"t":49,"s":[{"i":[[74.511,-4.798],[12.118,-4.39],[17.097,-5.251],[10.052,-1.337],[11.804,-0.89],[-2.575,-1.116],[-5.096,0.095],[-8.579,1.596],[-7.981,2.414],[-18.886,4.122],[-49.359,-15.528],[-23.823,-7.303],[-23.227,-0.609],[-20.455,5.577],[-20.082,5.392],[6.859,-1.265],[37.5,1.228],[21.481,6.306]],"o":[[-18.431,1.187],[-12.118,4.391],[-8.987,2.76],[-10.052,1.337],[-8.395,0.633],[2.575,1.116],[10.704,-0.2],[8.579,-1.596],[22.356,-6.764],[54.385,-11.869],[21.937,6.901],[23.393,7.171],[21.153,0.555],[18.29,-4.987],[15.334,-4.118],[-37.347,6.89],[-22.201,-0.727],[-62.043,-18.213]],"v":[[-122.5,-32.5],[-165.501,-23.548],[-206.5,-8.5],[-234.887,-2.598],[-267.5,0.5],[-274.119,3.546],[-260.5,5.5],[-231.958,2.66],[-207.5,-3.5],[-147.5,-26.5],[8.5,-6.5],[78.5,14.5],[152.5,31.5],[217.5,18.5],[273.5,5.5],[262.5,3.5],[151.5,27.5],[83.5,12.5]],"c":true}],"h":1},{"t":50,"s":[{"i":[[71.649,-4.613],[12.93,-4.584],[17.517,-5.39],[10.456,-1.536],[10.784,-0.273],[-4.446,-0.934],[-2.232,0.039],[-22.771,8.586],[-30.276,0.108],[-32.398,-9.169],[-28.23,-8.446],[-10.988,-2.795],[-10.322,-0.611],[-21.745,5.823],[-18.104,5.285],[6.336,-1.277],[39.875,3.477],[21.216,6.383]],"o":[[-19.762,1.273],[-12.93,4.584],[-8.392,2.582],[-10.456,1.536],[-12.016,0.304],[4.446,0.934],[31.639,-0.55],[22.771,-8.586],[34.178,-0.121],[32.398,9.169],[10.727,3.209],[10.988,2.795],[22.539,1.333],[16.424,-4.398],[15.632,-4.563],[-36.91,7.441],[-21.622,-1.886],[-59.4,-17.872]],"v":[[-117.5,-32.5],[-163.684,-23.088],[-206.5,-7.5],[-235.206,-1.268],[-267.5,1.5],[-274.186,3.757],[-259.5,5.5],[-181.977,-12.332],[-106.5,-29.5],[-6.04,-13.425],[85.5,15.5],[118.304,24.949],[150.5,30.5],[218.5,19.5],[273.5,5.5],[262.5,3.5],[147.5,26.5],[82.5,10.5]],"c":true}],"h":1},{"t":51,"s":[{"i":[[47.869,-3.082],[0.337,0.002],[0.326,0.014],[12.349,-4.512],[13.456,-4.72],[25.447,-0.359],[1.356,-2.723],[-1.753,0.128],[-29.414,8.228],[-48.068,-14.191],[-23.171,-6.998],[-23.417,-2.014],[-21.719,5.642],[-16.902,5.345],[6.482,-1.348],[41.569,2.238],[20.555,6.36],[19.185,5.914]],"o":[[-0.326,0.021],[-0.337,-0.002],[-17.148,-0.769],[-12.349,4.512],[-21.827,7.657],[-0.444,0.006],[-2.112,4.241],[37.671,-2.742],[51.665,-14.452],[22.166,6.544],[24.148,7.293],[23.875,2.054],[14.888,-3.868],[15.298,-4.838],[-36.432,7.575],[-20.904,-1.126],[-21.403,-6.622],[-40.657,-12.533]],"v":[[-113.5,-32.5],[-114.5,-32.473],[-115.5,-32.5],[-158.269,-25.617],[-195.5,-10.5],[-261.5,1.5],[-276.5,2.5],[-244.5,5.5],[-148.5,-24.5],[7.5,-10.5],[76.5,10.5],[148.5,29.5],[217.5,19.5],[273.5,5.5],[262.5,3.5],[151.5,26.5],[86.5,10.5],[24.5,-8.5]],"c":true}],"h":1},{"t":52,"s":[{"i":[[49.797,-3.206],[0.337,0.002],[0.326,0.014],[13.818,-5.038],[14.439,-4.668],[10.035,-1.932],[8.092,-0.116],[4.493,-0.343],[-8.698,-1.575],[-32.814,8.929],[-49.391,-14.776],[-23.493,-7.282],[-23.394,-0.806],[-36.43,7.987],[13.835,-1.52],[40.614,3.022],[20.594,6.313],[19.582,6.025]],"o":[[-0.326,0.021],[-0.337,-0.002],[-18.29,-0.82],[-13.818,5.038],[-9.768,3.158],[-10.035,1.931],[-3.727,0.054],[-4.493,0.343],[50.891,9.211],[52.043,-14.161],[22.002,6.582],[23.738,7.359],[42.154,1.452],[7.828,-1.716],[-37.61,4.133],[-20.594,-1.533],[-20.759,-6.364],[-40.026,-12.316]],"v":[[-108.5,-32.5],[-109.5,-32.473],[-110.5,-32.5],[-157.388,-24.616],[-198.5,-8.5],[-228.757,-0.719],[-256.5,2.5],[-272.319,2.859],[-269.5,5.5],[-146.5,-23.5],[11.5,-10.5],[81.5,10.5],[154.5,29.5],[265.5,7.5],[272.5,2.5],[151.5,25.5],[88.5,9.5],[26.5,-8.5]],"c":true}],"h":1},{"t":53,"s":[{"i":[[49.914,-3.461],[0.336,0.004],[0.328,0.008],[13.737,-4.891],[13.949,-4.884],[17.665,-1.071],[-10.223,-5.181],[-14.386,-0.345],[-33.024,9.917],[-50.816,-15.723],[-19.327,-5.991],[-19.958,-1.836],[-30.651,7.609],[1.369,3.096],[5.572,-1.156],[38.903,3.765],[19.842,6.242],[19.212,5.878]],"o":[[-0.328,0.023],[-0.336,-0.004],[-18.102,-0.45],[-13.737,4.891],[-16.395,5.741],[-7.939,0.481],[6.381,3.234],[50.881,1.219],[62.876,-18.882],[18.764,5.806],[19.741,6.119],[35.48,3.263],[3.757,-0.932],[-0.998,-2.258],[-37.361,7.749],[-20.163,-1.951],[-20.257,-6.372],[-39.366,-12.045]],"v":[[-104.5,-32.5],[-105.5,-32.477],[-106.5,-32.5],[-153.115,-24.501],[-193.5,-8.5],[-244.5,2.5],[-274.5,5.5],[-260.5,6.5],[-147.5,-22.5],[34.5,-4.5],[92.5,12.5],[152.5,28.5],[249.5,11.5],[279.5,2.5],[264.5,4.5],[150.5,24.5],[88.5,8.5],[28.5,-9.5]],"c":true}],"h":1},{"t":54,"s":[{"i":[[44.415,-2.86],[0.337,0.002],[0.326,0.014],[24.031,-9.275],[28.729,-0.074],[-0.107,-4.331],[-10.26,-1.375],[-14.328,3.753],[-17.787,5.575],[-61.938,-18.987],[-22.672,-2.517],[-20.679,5.026],[-17.263,5.382],[4.127,4.127],[3.228,-0.682],[39.666,4.751],[19.482,5.995],[18.779,5.757]],"o":[[-0.326,0.021],[-0.337,-0.002],[-26.148,-1.172],[-24.031,9.275],[-1.156,0.003],[0.029,1.168],[21.381,2.866],[20.516,-5.373],[76.43,-23.956],[23.749,7.28],[22.798,2.531],[16.079,-3.908],[-65.475,20.412],[-1.983,-1.983],[-33.268,7.031],[-19.293,-2.311],[-20,-6.154],[-39.082,-11.981]],"v":[[-99.5,-32.5],[-100.5,-32.473],[-101.5,-32.5],[-175.064,-15.434],[-252.5,3.5],[-276.5,4.5],[-268.5,6.5],[-205.5,1.5],[-147.5,-21.5],[79.5,7.5],[150.5,27.5],[219.5,19.5],[273.5,6.5],[279.5,2.5],[262.5,4.5],[148.5,23.5],[89.5,6.5],[30.5,-10.5]],"c":true}],"h":1},{"t":55,"s":[{"i":[[66.507,-4.282],[0.337,0.002],[0.326,0.014],[23.161,-8.96],[26.471,-1.319],[-10.138,-5.206],[-10.601,0],[-23.11,9.186],[-36.633,-0.13],[-36.674,-11.075],[-18.382,-5.625],[-18.57,-1.963],[-20.689,4.795],[-16.807,5.456],[2.882,2.882],[3.049,-0.662],[37.799,5.252],[19.127,5.776]],"o":[[-0.326,0.021],[-0.337,-0.002],[-25.887,-1.16],[-23.161,8.96],[-2.474,0.123],[8.801,4.519],[33.53,0],[30.161,-11.988],[45.312,0.161],[18.241,5.509],[19.155,5.861],[22.73,2.402],[15.854,-3.675],[-8.597,2.791],[-1.703,-1.703],[-32.9,7.147],[-18.714,-2.6],[-54.564,-16.479]],"v":[[-94.5,-32.5],[-95.5,-32.473],[-96.5,-32.5],[-168.562,-16.36],[-241.5,3.5],[-274.5,5.5],[-250.5,7.5],[-177.5,-7.5],[-82.5,-29.5],[38.5,-5.5],[94.5,10.5],[151.5,26.5],[220.5,19.5],[273.5,6.5],[279.5,2.5],[262.5,4.5],[148.5,22.5],[90.5,6.5]],"c":true}],"h":1},{"t":56,"s":[{"i":[[65.848,-4.24],[0.337,0.002],[0.326,0.014],[21.77,-8.796],[25.623,-1.994],[6.211,0.077],[7.342,0.301],[2.45,0.396],[0.644,-1.361],[-3.303,-0.364],[-35.48,13.803],[-67.818,-20.52],[-16.217,-2.107],[-24.957,5.696],[-12.302,4.445],[5.959,-1.28],[40.511,2.3],[22.074,6.842]],"o":[[-0.326,0.021],[-0.337,-0.002],[-26.297,-1.179],[-21.77,8.796],[-7.812,0.608],[-6.211,-0.077],[5.442,0.223],[-2.45,-0.396],[-1.658,3.507],[47.681,5.255],[84.731,-32.964],[15.872,4.802],[26.23,3.408],[13.154,-3.002],[12.928,-4.671],[-33.167,7.124],[-25.014,-1.42],[-54.275,-16.824]],"v":[[-90.5,-32.5],[-91.5,-32.473],[-92.5,-32.5],[-162.505,-16.879],[-231.5,3.5],[-251.852,4.182],[-271.5,3.5],[-269.435,2.647],[-276.5,3.5],[-263.5,7.5],[-150.5,-17.5],[102.5,12.5],[151.5,25.5],[226.5,17.5],[274.5,6.5],[264.5,4.5],[160.5,22.5],[91.5,5.5]],"c":true}],"h":1},{"t":57,"s":[{"i":[[68.202,-4.392],[0.337,0.002],[0.326,0.014],[24.46,-9.836],[34.035,0.947],[6.254,0.239],[-0.081,-1.984],[-3.468,-0.665],[-2.121,-0.145],[-17.326,5.433],[-17.302,6.069],[-69.55,-21.36],[-17.996,-2.753],[-21.762,4.642],[-14.11,3.994],[2.191,-0.46],[39.52,2.861],[21.381,6.542]],"o":[[-0.326,0.021],[-0.337,-0.002],[-31.126,-1.395],[-24.46,9.836],[-1.063,-0.03],[-6.254,-0.239],[0.008,0.194],[3.468,0.665],[26.394,1.8],[17.326,-5.433],[82.324,-28.879],[18.166,5.579],[21.191,3.242],[11.405,-2.433],[18.991,-5.376],[-32.294,6.777],[-23.033,-1.668],[-54.201,-16.585]],"v":[[-85.5,-32.5],[-86.5,-32.473],[-87.5,-32.5],[-166.819,-14.336],[-250.5,4.5],[-264.358,3.49],[-276.5,5.5],[-270.085,7.037],[-260.5,8.5],[-197.181,1.402],[-147.5,-17.5],[97.5,8.5],[151.5,24.5],[219.5,19.5],[273.5,7.5],[265.5,4.5],[158.5,21.5],[93.5,4.5]],"c":true}],"h":1},{"t":58,"s":[{"i":[[86.627,-5.578],[11.442,-1.968],[8.848,-3.329],[14.517,-5.088],[20.918,0],[7.942,0.68],[0.719,-0.719],[-4.736,-0.781],[0.062,0.005],[-36.711,12.744],[-39.265,-4.735],[-29.226,-8.826],[-30.772,-5.447],[-21.495,4.158],[-14.127,4.414],[6.066,-1.242],[12.142,-2.501],[20.981,3.946]],"o":[[-12.385,0.797],[-11.442,1.968],[-15.012,5.649],[-14.517,5.088],[-0.513,0],[-7.942,-0.68],[-1.882,1.883],[4.736,0.781],[50.326,4.369],[28.902,-10.033],[36.888,4.449],[30.357,9.168],[20.938,3.707],[11.368,-2.199],[13.836,-4.323],[-15.912,3.258],[-23.292,4.797],[-72.289,-13.596]],"v":[[-81.5,-32.5],[-117.652,-28.399],[-148.5,-20.5],[-191.071,-3.264],[-242.5,5.5],[-258.846,3.961],[-275.5,3.5],[-268.365,7.416],[-258.5,8.5],[-143.5,-16.5],[-38.5,-27.5],[58.5,-4.5],[150.5,23.5],[220.5,19.5],[274.5,7.5],[266.5,4.5],[222.5,14.5],[150.5,19.5]],"c":true}],"h":1},{"t":59,"s":[{"i":[[64.784,-4.171],[13.722,-3.419],[14.584,-6.195],[15.037,-3.197],[16.95,0.845],[5.347,-0.098],[-7.612,-1.819],[-22.574,7.323],[-22.655,6.128],[-19.477,0.809],[-19.161,-3.544],[-31.772,-9.274],[-43.394,2.696],[-12.395,2.829],[-8.445,3.203],[-3.092,0.654],[36.101,2.922],[20.107,6.395]],"o":[[-17.529,1.129],[-13.722,3.419],[-11.904,5.056],[-15.036,3.197],[-4.224,-0.21],[-5.347,0.098],[31.048,7.418],[22.574,-7.323],[15.932,-4.309],[19.477,-0.809],[35.964,6.651],[33.825,9.873],[14.713,-0.914],[7.408,-1.691],[16.802,-6.373],[-33.658,7.123],[-21.359,-1.729],[-52.049,-16.555]],"v":[[-76.5,-32.5],[-122.208,-25.8],[-163.5,-11.5],[-204.216,1.426],[-252.5,5.5],[-270.377,4.978],[-270.5,7.5],[-192.205,3.66],[-126.5,-20.5],[-72.422,-28.39],[-13.5,-24.5],[86.5,2.5],[192.5,23.5],[237.5,15.5],[275.5,6.5],[266.5,5.5],[158.5,19.5],[97.5,2.5]],"c":true}],"h":1},{"t":60,"s":[{"i":[[61.086,-3.933],[7.242,-0.877],[7.666,-1.887],[17.885,-6.951],[26.011,0.083],[9.311,0.654],[-0.015,-1.618],[-2.209,-0.42],[-1.152,-0.178],[-19.964,5.611],[-21.277,7.017],[-40.166,-4.344],[-29.453,-9.029],[-31.454,-5.051],[-31.381,7.226],[21.359,-2.942],[19.369,-3.411],[37.437,11.498]],"o":[[-9.368,0.603],[-7.242,0.878],[-21.45,5.279],[-17.885,6.951],[-0.77,-0.002],[-9.311,-0.654],[0.01,1.143],[2.209,0.42],[28.866,4.461],[19.964,-5.611],[29.035,-9.575],[36.099,3.904],[29.927,9.174],[35.934,5.771],[6.696,-1.542],[-19.117,2.633],[-51.286,9.031],[-50.148,-15.402]],"v":[[-72.5,-32.5],[-96.776,-30.463],[-118.5,-26.5],[-174.579,-5.978],[-237.5,6.5],[-257.089,4.785],[-275.5,5.5],[-271.356,7.724],[-265.5,8.5],[-194.808,4.609],[-135.5,-16.5],[-32.5,-27.5],[63.5,-5.5],[154.5,21.5],[258.5,11.5],[271.5,3.5],[219.5,15.5],[99.5,1.5]],"c":true}],"h":1},{"t":61,"s":[{"i":[[63.301,-4.076],[0.337,0.002],[0.326,0.014],[23.4,-9.645],[26.743,-1.793],[7.918,0.537],[7.649,0.501],[1.735,0.463],[0.785,-1.74],[-1.21,-0.337],[-0.805,-0.221],[-26.668,10.687],[-43.625,1.982],[-65.873,-13.792],[-33.456,10.657],[3.444,-0.786],[22.324,-0.941],[24.373,7.499]],"o":[[-0.326,0.021],[-0.337,-0.002],[-30.659,-1.374],[-23.399,9.645],[-9.678,0.649],[-7.918,-0.537],[1.726,0.113],[-1.735,-0.463],[-0.645,1.429],[1.21,0.337],[36.879,10.142],[33.263,-13.33],[83.527,-3.794],[39.633,8.298],[17.895,-5.7],[-20.477,4.674],[-36.534,1.54],[-50.261,-15.465]],"v":[[-67.5,-32.5],[-68.5,-32.473],[-69.5,-32.5],[-147.936,-15.376],[-220.5,6.5],[-246.521,6.362],[-269.5,4.5],[-270.617,3.28],[-275.5,4.5],[-274.088,6.906],[-270.5,7.5],[-166.5,-2.5],[-62.5,-29.5],[150.5,19.5],[274.5,7.5],[258.5,6.5],[192.5,18.5],[104.5,2.5]],"c":true}],"h":1},{"t":62,"s":[{"i":[[47.173,-3.037],[15.919,-4.653],[17.572,-7.053],[13.692,-2.237],[15.748,1.159],[6.682,0.25],[-7.858,-2.451],[-21.997,5.345],[-17.91,6.761],[-14.592,3.081],[-17.091,-0.06],[-26.93,-6.952],[-25.645,-8.082],[-36.369,1.812],[-20.489,8.604],[2.38,-0.548],[18.627,-1.032],[40.151,12.377]],"o":[[-20.752,1.336],[-15.919,4.653],[-10.484,4.208],[-13.692,2.238],[-6.13,-0.451],[-6.682,-0.25],[26.102,8.141],[21.997,-5.345],[12.542,-4.735],[14.592,-3.081],[30.636,0.108],[26.93,6.952],[22.5,7.091],[23.717,-1.182],[12.376,-5.197],[-18.392,4.235],[-52.169,2.889],[-38.569,-11.889]],"v":[[-62.5,-32.5],[-115.886,-23.288],[-164.5,-5.5],[-201.052,4.525],[-245.5,6.5],[-268.491,4.823],[-270.5,7.5],[-198.356,8.677],[-138.5,-12.5],[-97.912,-24.597],[-50.5,-29.5],[35.243,-17.48],[113.5,6.5],[198.5,21.5],[276.5,6.5],[260.5,6.5],[200.5,17.5],[71.5,-9.5]],"c":true}],"h":1},{"t":63,"s":[{"i":[[70.023,-4.509],[0.337,0.002],[0.326,0.014],[25.837,-10.615],[32.073,0],[4.072,0.4],[4.254,0.399],[4.575,0.657],[1.063,-1.063],[-2.396,-0.41],[-25.545,10.49],[-43.967,1.298],[-33.357,-10.436],[-17.761,-5.445],[-19.684,-1.193],[-25.593,10.515],[-0.558,0.124],[42.514,13.081]],"o":[[-0.326,0.021],[-0.337,-0.002],[-32.578,-1.46],[-25.837,10.615],[-2.457,0],[-4.072,-0.4],[-4.639,-0.436],[-4.575,-0.657],[-2.416,2.416],[38.441,6.575],[34.304,-14.087],[45.803,-1.352],[17.282,5.407],[18.179,5.573],[35.747,2.167],[13.254,-5.446],[-45.142,10.032],[-55.47,-17.068]],"v":[[-58.5,-32.5],[-59.5,-32.473],[-60.5,-32.5],[-144.879,-13.095],[-228.5,8.5],[-238.652,7.8],[-251.5,6.5],[-266.183,4.376],[-275.5,4.5],[-263.5,9.5],[-160.5,-1.5],[-50.5,-29.5],[66.5,-8.5],[119.5,7.5],[175.5,20.5],[276.5,6.5],[259.5,7.5],[126.5,6.5]],"c":true}],"h":1},{"t":64,"s":[{"i":[[61.995,-3.992],[0.337,0.002],[0.326,0.014],[24.711,-10.126],[27.734,-1.859],[8.394,0.659],[6.425,0.835],[0.5,-0.936],[-8.047,-1.432],[-21.033,4.947],[-19.773,7.39],[-34.19,-0.121],[-34.86,-10.686],[-43.763,0],[-24.159,6.399],[8.157,-1.332],[28.633,-0.744],[24.06,6.902]],"o":[[-0.326,0.021],[-0.337,-0.002],[-30.423,-1.364],[-24.711,10.126],[-6.998,0.469],[-8.394,-0.659],[-9.045,-1.175],[-0.5,0.936],[29.095,5.178],[21.033,-4.947],[25.001,-9.344],[46.919,0.166],[36.189,11.094],[28.508,0],[13.51,-3.578],[-24.203,3.952],[-35.511,0.923],[-48.455,-13.901]],"v":[[-53.5,-32.5],[-54.5,-32.473],[-55.5,-32.5],[-136.017,-14.418],[-212.5,8.5],[-236.429,7.978],[-259.5,5.5],[-273.819,5.545],[-262.5,9.5],[-189.008,7.926],[-129.5,-12.5],[-41.5,-29.5],[77.5,-6.5],[193.5,20.5],[271.5,8.5],[270.5,4.5],[195.5,16.5],[112.5,0.5]],"c":true}],"h":1},{"t":65,"s":[{"i":[[65.403,-4.211],[17.055,-5.022],[18.337,-7.53],[14.756,-2.239],[17.154,1.813],[7.437,0.72],[-2.752,-2.092],[-6.333,-0.979],[-1.45,-0.16],[-22.947,7.833],[-25.576,6.375],[-22.655,-0.364],[-21.617,-5.221],[-40.728,-10.323],[-32.012,7.42],[14.87,-0.598],[6.753,-1.103],[34.096,10.511]],"o":[[-21.444,1.38],[-17.055,5.022],[-11.822,4.855],[-14.756,2.239],[-2.004,-0.212],[-7.437,-0.72],[1.216,0.925],[6.334,0.979],[33.637,3.707],[22.947,-7.833],[18.764,-4.678],[22.655,0.364],[39.038,9.427],[34.434,8.728],[2.467,-0.572],[-11.433,0.46],[-45.812,7.481],[-52.376,-16.146]],"v":[[-49.5,-32.5],[-105.83,-22.612],[-157.5,-3.5],[-197.501,7.501],[-245.5,8.5],[-263.567,6.272],[-274.5,7.5],[-260.675,10.574],[-246.5,12.5],[-164.955,3.062],[-95.5,-21.5],[-32.14,-27.924],[35.5,-19.5],[150.5,14.5],[266.5,9.5],[275.5,3.5],[235.5,12.5],[125.5,2.5]],"c":true}],"h":1},{"t":66,"s":[{"i":[[41.977,-2.703],[0.337,0.002],[0.326,0.014],[26.878,-11.137],[32.265,0.059],[5.056,0.329],[5.523,0.678],[6.492,0.513],[-7.828,-2.524],[-4.532,-0.545],[-37.104,14.055],[-36.511,-0.129],[-33.221,-10.184],[-60.783,9.953],[-8.315,3.154],[-2.903,0.391],[24.661,-1.366],[45.394,13.581]],"o":[[-0.326,0.021],[-0.337,-0.002],[-33.224,-1.489],[-26.878,11.137],[-3.251,-0.006],[-5.056,-0.329],[-3.859,-0.473],[-6.492,-0.513],[3.958,1.276],[53.375,6.415],[26.997,-10.227],[43.05,0.153],[48.111,14.749],[7.005,-1.147],[10.421,-3.953],[-21.996,2.967],[-59.426,3.291],[-34.889,-10.438]],"v":[[-44.5,-32.5],[-45.5,-32.473],[-46.5,-32.5],[-133.719,-12.073],[-219.5,10.5],[-232.296,10.004],[-248.5,8.5],[-268.266,6.252],[-270.5,8.5],[-246.5,12.5],[-125.5,-10.5],[-32.5,-29.5],[79.5,-8.5],[236.5,15.5],[276.5,7.5],[273.5,4.5],[214.5,14.5],[73.5,-14.5]],"c":true}],"h":1},{"t":67,"s":[{"i":[[57.148,-3.68],[0.337,0.002],[0.326,0.014],[25.367,-10.641],[27.362,-1.835],[9.897,0.827],[7.572,1.216],[4.286,0.32],[-5.045,-2.745],[-8.393,-0.509],[-40.307,13.701],[-40.873,-4.809],[-30.9,-9.525],[-37.162,0],[-19.764,4.109],[17.527,-2.732],[29.097,0.933],[23.083,6.737]],"o":[[-0.326,0.021],[-0.337,-0.002],[-31.169,-1.398],[-25.367,10.641],[-7.839,0.526],[-9.897,-0.827],[-2.901,-0.466],[-4.286,-0.32],[9.158,4.982],[56.836,3.445],[29.669,-10.084],[36.357,4.278],[32.903,10.143],[22.491,0],[8.691,-1.807],[-23.348,3.639],[-32.514,-1.043],[-48.505,-14.158]],"v":[[-40.5,-32.5],[-41.5,-32.473],[-42.5,-32.5],[-125.356,-13.424],[-202.5,10.5],[-230.201,9.806],[-257.5,6.5],[-270.959,4.592],[-272.5,7.5],[-231.5,14.5],[-105.5,-15.5],[1.5,-27.5],[100.5,-3.5],[202.5,18.5],[263.5,10.5],[271.5,4.5],[197.5,14.5],[118.5,-1.5]],"c":true}],"h":1},{"t":68,"s":[{"i":[[56.824,-3.659],[10.411,-1.797],[9.749,-3.066],[17.44,-6.655],[23.278,-0.73],[9.02,1.064],[5.769,0.968],[4.438,0.361],[-4.362,-2.715],[-7.167,-0.931],[-51.424,14.413],[-43.723,-9.607],[-41.469,-10.642],[-33.058,10.33],[0.609,1.367],[-2.595,0.404],[27.483,0.862],[22.932,6.44]],"o":[[-11.609,0.748],[-10.41,1.797],[-17.96,5.65],[-17.44,6.655],[-7.151,0.224],[-9.02,-1.064],[-1.61,-0.27],[-4.438,-0.361],[7.951,4.949],[67.529,8.773],[36.053,-10.105],[39.594,8.7],[32.481,8.335],[-4.364,1.364],[-0.712,-1.597],[-22.522,3.51],[-32.503,-1.02],[-45.696,-12.832]],"v":[[-35.5,-32.5],[-68.396,-28.739],[-98.5,-21.5],[-150.012,-1.31],[-209.5,11.5],[-235.036,9.895],[-258.5,6.5],[-270.479,4.761],[-273.5,7.5],[-240.5,13.5],[-87.5,-19.5],[40.5,-21.5],[154.5,10.5],[274.5,8.5],[280.5,4.5],[271.5,4.5],[198.5,13.5],[121.5,-2.5]],"c":true}],"h":1},{"t":69,"s":[{"i":[[38.333,-2.468],[14.893,-3.596],[13.368,-5.517],[13.921,-4.52],[16.51,-0.223],[10.811,1.501],[7.254,1.111],[-1.495,-1.327],[-3.645,-0.861],[-19.17,0.73],[-15.036,5.404],[-17.184,6.193],[-22.332,2.425],[-35.996,-10.109],[-68.501,23.805],[8.238,-1.141],[21.824,-1.209],[45.603,13.438]],"o":[[-17.058,1.099],[-14.894,3.596],[-13.805,5.697],[-13.921,4.52],[-8.502,0.115],[-10.811,-1.501],[-7.626,-1.168],[1.495,1.327],[18.285,4.322],[19.17,-0.73],[18.933,-6.804],[17.184,-6.193],[49.957,-5.423],[57.621,16.181],[3.372,-1.172],[-20.852,2.889],[-58.966,3.265],[-34.019,-10.025]],"v":[[-31.5,-32.5],[-79.267,-25.313],[-121.5,-11.5],[-162.472,4.606],[-207.5,12.5],[-237.937,9.919],[-266.5,5.5],[-273.954,6.478],[-264.5,10.5],[-207.063,15.794],[-154.5,6.5],[-102.05,-13.785],[-44.5,-27.5],[79.5,-12.5],[274.5,7.5],[274.5,4.5],[223.5,12.5],[84.5,-15.5]],"c":true}],"h":1},{"t":70,"s":[{"i":[[54.663,-3.52],[0.337,0.002],[0.326,0.014],[25.255,-11.073],[29.928,-2.144],[9.502,0.834],[8.512,1.413],[7.102,0.748],[-9.473,-3.333],[-19.291,0.117],[-31.806,12.089],[-40.972,-3.172],[-32.253,-9.869],[-39.575,0.1],[-15.819,3.251],[9.775,-0.291],[6.102,-0.877],[33.511,9.781]],"o":[[-0.325,0.021],[-0.337,-0.002],[-32.05,-1.437],[-25.255,11.073],[-10.478,0.75],[-9.502,-0.834],[-2.065,-0.343],[-7.102,-0.748],[18.669,6.57],[39.275,-0.239],[29.879,-11.356],[39.879,3.087],[33.583,10.276],[17.717,-0.045],[5.236,-1.076],[-7.438,0.222],[-46.617,6.7],[-43.277,-12.632]],"v":[[-26.5,-32.5],[-27.5,-32.473],[-28.5,-32.5],[-111.592,-12.686],[-191.5,12.5],[-221.475,12.123],[-248.5,8.5],[-267.653,5.743],[-269.5,8.5],[-204.5,17.5],[-106.5,-11.5],[1.5,-28.5],[106.5,-6.5],[211.5,16.5],[265.5,10.5],[276.5,3.5],[242.5,9.5],[125.5,-3.5]],"c":true}],"h":1},{"t":71,"s":[{"i":[[53.6,-3.451],[0.337,0.002],[0.326,0.014],[26.053,-11.369],[29.837,-2.001],[11.197,1.292],[8.209,1.569],[5.331,0.541],[-4.696,-2.426],[-8.803,-1.147],[-40.568,15.704],[-36.666,-0.13],[-46.376,-13.279],[-28.66,-1.26],[-18.127,3.533],[10.227,-0.305],[6.518,-0.83],[29.57,8.549]],"o":[[-0.326,0.021],[-0.337,-0.002],[-32.953,-1.477],[-26.053,11.369],[-11.003,0.738],[-11.197,-1.292],[-1.37,-0.262],[-5.331,-0.541],[8.771,4.532],[60.289,7.858],[26.177,-10.134],[54.048,0.192],[19.479,5.578],[23.714,1.043],[7.738,-1.508],[-8.737,0.26],[-46.442,5.915],[-45.944,-13.282]],"v":[[-21.5,-32.5],[-22.5,-32.473],[-23.5,-32.5],[-109.337,-12.109],[-190.5,13.5],[-224.595,12.23],[-254.5,7.5],[-268.049,5.484],[-272.5,7.5],[-235.5,15.5],[-102.5,-10.5],[-9.5,-29.5],[133.5,0.5],[204.5,15.5],[264.5,10.5],[276.5,3.5],[243.5,9.5],[128.5,-4.5]],"c":true}],"h":1},{"t":72,"s":[{"i":[[37.555,-2.418],[10.77,-2.136],[10.673,-3.602],[9.172,-3.686],[9.829,-4.056],[10.709,-2.367],[15.524,0.62],[11.5,1.862],[6.867,1.268],[-1.142,-1.215],[-5.924,-1.34],[-14.891,-0.825],[-37.128,14.064],[-38.193,-2.445],[-30.173,-9.129],[-59.092,16.798],[3.473,-0.586],[50.166,14.447]],"o":[[-13.245,0.853],[-10.77,2.136],[-9.483,3.2],[-9.172,3.686],[-7.639,3.152],[-10.709,2.367],[-7.133,-0.285],[-11.5,-1.862],[-6.493,-1.199],[1.142,1.215],[16.503,3.733],[51.782,2.868],[28.691,-10.868],[39.166,2.507],[46.316,14.014],[21.169,-6.018],[-66.085,11.152],[-32.213,-9.277]],"v":[[-17.5,-32.5],[-52.929,-28.062],[-84.5,-19.5],[-112.24,-9.142],[-140.5,2.5],[-167.586,11.329],[-206.5,14.5],[-236.7,10.737],[-266.5,5.5],[-273.812,6.096],[-262.5,10.5],[-211.5,18.5],[-95.5,-11.5],[5.5,-28.5],[106.5,-9.5],[273.5,8.5],[257.5,7.5],[95.5,-16.5]],"c":true}],"h":1},{"t":73,"s":[{"i":[[83.421,-5.371],[12.408,-2.694],[11.954,-4.296],[10.775,-4.658],[10.802,-3.38],[19.139,1.62],[16.629,3.093],[2.336,0.437],[0.892,-0.891],[-2.579,-1.007],[1.034,0.307],[-13.97,-1.782],[-13.605,0.845],[-28.294,11.099],[-37.879,-0.134],[-103.115,20.839],[14.156,-1.787],[19.228,1.601]],"o":[[-14.412,0.928],[-12.408,2.694],[-11.097,3.988],[-10.775,4.658],[-17.815,5.573],[-19.139,-1.62],[-0.764,-0.142],[-2.336,-0.437],[-1.281,1.281],[2.579,1.007],[12.517,3.716],[13.97,1.782],[34.905,-2.168],[27.209,-10.674],[99.968,0.354],[8.917,-1.802],[-21.878,2.762],[-79.526,-6.622]],"v":[[-12.5,-32.5],[-52.343,-27.026],[-88.5,-16.5],[-121.222,-3.044],[-153.5,9.5],[-209.889,14],[-264.5,5.5],[-269.904,4.225],[-275.5,4.5],[-271.685,8.191],[-267.5,9.5],[-227.316,17.921],[-185.5,19.5],[-97.5,-9.5],[-0.5,-29.5],[267.5,9.5],[272.5,4.5],[203.5,9.5]],"c":true}],"h":1},{"t":74,"s":[{"i":[[82.827,-5.333],[12.796,-2.874],[12.482,-4.517],[11.313,-5.017],[10.553,-2.883],[17.326,1.303],[14.866,3.113],[5.117,0.499],[-4.422,-2.405],[-0.153,-0.047],[-2.325,-0.691],[-20.67,-1.55],[-16.697,5.137],[-34.547,9.03],[-40.676,-7.792],[-77.48,9.312],[21.043,-2.51],[20.523,1.275]],"o":[[-15.335,0.988],[-12.796,2.874],[-11.193,4.05],[-11.313,5.017],[-15.829,4.324],[-17.326,-1.303],[-1.953,-0.409],[-5.117,-0.499],[2.065,1.123],[0.153,0.047],[16.624,4.936],[20.67,1.55],[31.674,-9.746],[35.676,-9.325],[62.162,11.908],[7.594,-0.913],[-21.489,2.563],[-74.001,-4.597]],"v":[[-8.5,-32.5],[-50.14,-26.647],[-87.5,-15.5],[-121.48,-1.124],[-154.5,11.5],[-205.222,15.077],[-254.5,7.5],[-268.281,5.389],[-272.5,7.5],[-270.195,8.824],[-267.5,9.5],[-209.555,20.055],[-151.5,15.5],[-56.5,-21.5],[60.5,-22.5],[253.5,11.5],[272.5,4.5],[207.5,9.5]],"c":true}],"h":1},{"t":75,"s":[{"i":[[40.408,-2.602],[13.557,-2.861],[12.038,-4.607],[11.216,-5.087],[11.49,-3.195],[19.705,1.97],[15.036,2.887],[2.928,0.77],[0.953,-0.953],[-2.147,-0.972],[-0.403,-0.12],[-34.407,10.587],[-26.888,9.156],[-38.36,-2.97],[-92.661,16.49],[10.109,-1.064],[0.847,-0.122],[48.417,14.567]],"o":[[-14.732,0.948],[-13.557,2.861],[-11.646,4.456],[-11.216,5.087],[-17.145,4.768],[-19.705,-1.97],[0.667,0.128],[-2.928,-0.77],[-0.99,0.99],[2.147,0.972],[33.658,10.063],[27.861,-8.573],[28.141,-9.582],[83.468,6.462],[10.737,-1.911],[-2.421,0.255],[-60.5,8.744],[-33.774,-10.162]],"v":[[-3.5,-32.5],[-46.02,-26.744],[-84.5,-15.5],[-118.617,-0.555],[-152.5,12.5],[-209.582,15.241],[-263.5,6.5],[-268.285,4.881],[-275.5,4.5],[-272.545,7.652],[-267.5,9.5],[-149.5,16.5],[-70.5,-15.5],[26.5,-28.5],[265.5,9.5],[274.5,4.5],[267.5,5.5],[113.5,-14.5]],"c":true}],"h":1},{"t":76,"s":[{"i":[[79.108,-5.094],[13.049,-3.039],[12.811,-4.813],[11.788,-5.125],[11.171,-3.113],[18.247,1.846],[15.089,3.331],[3.9,0.097],[-7.67,-2.506],[-12.089,-2.281],[-10.781,-0.654],[-14.714,4.343],[-14.663,5.992],[-66.113,-11.187],[-61.763,-2.469],[-13.687,2.436],[12.355,-1.41],[17.84,1.885]],"o":[[-15.993,1.03],[-13.049,3.039],[-11.679,4.387],[-11.788,5.125],[-16.925,4.716],[-18.247,-1.846],[-5.07,-1.119],[-3.9,-0.097],[9.863,3.223],[12.089,2.281],[22.482,1.363],[14.714,-4.343],[47.679,-19.485],[54.735,9.261],[17.083,0.683],[11.043,-1.965],[-20.685,2.361],[-73.361,-7.754]],"v":[[0.5,-32.5],[-42.386,-26.337],[-80.5,-14.5],[-115.881,0.456],[-150.5,13.5],[-204.377,16.535],[-255.5,7.5],[-271.555,5.281],[-268.5,8.5],[-234.689,16.927],[-199.5,21.5],[-145.636,16.017],[-103.5,-0.5],[60.5,-24.5],[221.5,12.5],[267.5,8.5],[272.5,4.5],[206.5,7.5]],"c":true}],"h":1},{"t":77,"s":[{"i":[[36.554,-2.354],[13.593,-3.209],[13.086,-5.099],[12.246,-5.322],[11.89,-2.989],[19.428,2.586],[13.649,2.838],[3.598,-0.308],[-6.654,-1.447],[-21.349,-3.048],[-18.742,4.859],[-27.845,10.128],[-37.879,-2.425],[-29.245,-8.601],[-53.863,8.918],[9.908,-0.868],[5.145,-0.285],[44.197,12.606]],"o":[[-16.54,1.065],[-13.593,3.209],[-12.124,4.724],[-12.247,5.322],[-16.639,4.183],[-19.428,-2.586],[-3.261,-0.678],[-3.598,0.308],[16.862,3.665],[21.349,3.048],[28.138,-7.295],[27.352,-9.948],[37.041,2.371],[40.754,11.986],[11.875,-1.966],[-10.367,0.909],[-60.936,3.375],[-31.204,-8.9]],"v":[[5.5,-32.5],[-39.09,-26.026],[-78.5,-13.5],[-115.175,2.302],[-151.5,15.5],[-207.743,16.265],[-259.5,6.5],[-272.437,5.907],[-270.5,8.5],[-211.41,20.393],[-149.5,19.5],[-68.5,-13.5],[28.5,-28.5],[124.5,-10.5],[266.5,8.5],[273.5,4.5],[246.5,7.5],[113.5,-17.5]],"c":true}],"h":1},{"t":78,"s":[{"i":[[47.487,-3.058],[11.656,-2.458],[12.178,-4.191],[10.52,-4.279],[10.109,-4.165],[5.492,-2.052],[6.49,-0.919],[16.06,2.497],[15.176,3.502],[-19.515,-5.734],[-25.514,-1.413],[-24.084,10.149],[-54.865,-0.583],[-39.048,-12.465],[-39.243,5.709],[14.415,-1.064],[0.533,-0.067],[30.8,9.547]],"o":[[-15.198,0.979],[-11.656,2.458],[-10.813,3.72],[-10.52,4.279],[-4.542,1.872],[-5.492,2.053],[-17.585,2.489],[-16.06,-2.497],[-6,-1.385],[24.974,7.338],[37.277,2.064],[39.471,-16.632],[50.756,0.54],[29.427,9.394],[9.829,-1.43],[0.925,-0.068],[-49.695,6.245],[-38.127,-11.819]],"v":[[10.5,-32.5],[-28.765,-27.409],[-63.5,-17.5],[-95.528,-5.333],[-126.5,7.5],[-141.539,13.715],[-159.5,18.5],[-209.807,17.493],[-256.5,7.5],[-267.5,9.5],[-188.5,23.5],[-109.5,5.5],[23.5,-29.5],[149.5,-3.5],[265.5,9.5],[272.5,3.5],[264.5,5.5],[145.5,-9.5]],"c":true}],"h":1},{"t":79,"s":[{"i":[[-0.139,0.009],[14.022,-3.558],[13.983,-5.613],[6.569,-2.475],[6.537,-2.615],[6.471,-2.774],[6.515,-1.264],[33.812,6.58],[1.764,-1.764],[-2.382,-0.576],[-36.325,8.199],[-15.122,6.413],[-68.27,-9.22],[-37.634,-11.196],[-33.59,2.484],[20.61,-0.797],[17.552,1.09],[81.025,-5.951]],"o":[[-17.928,1.154],[-14.022,3.558],[-6.188,2.484],[-6.569,2.475],[-6.599,2.64],[-6.472,2.774],[-36.97,7.17],[2.207,0.43],[-2.163,2.163],[30.73,7.437],[15.437,-3.485],[46.888,-19.884],[40.389,5.455],[22.682,6.747],[4.025,-0.298],[-19.361,0.749],[-71.016,-4.412],[-0.597,0.044]],"v":[[14.5,-32.5],[-32.459,-25.343],[-73.5,-11.5],[-92.738,-4.099],[-112.5,3.5],[-132.063,12.032],[-151.5,18.5],[-262.5,6.5],[-275.5,4.5],[-262.5,9.5],[-148.5,22.5],[-101.5,4.5],[59.5,-26.5],[165.5,-0.5],[253.5,10.5],[273.5,3.5],[219.5,6.5],[15.5,-33.5]],"c":true}],"h":1},{"t":80,"s":[{"i":[[44.35,-2.856],[14.987,-3.661],[12.98,-5.194],[13.045,-5.795],[13.675,-2.562],[16.72,2.346],[14.323,3.386],[6.338,1.402],[0.592,-1.333],[-3.065,-0.721],[-1.523,-0.358],[-36.615,6.893],[-13.952,5.767],[-58.674,-0.208],[-30.452,-8.922],[-51.254,10.407],[13.874,-0.645],[27.941,8.887]],"o":[[-18.07,1.163],[-14.987,3.661],[-13.144,5.258],[-13.045,5.795],[-14.797,2.771],[-16.72,-2.346],[-3.056,-0.723],[-6.338,-1.402],[-0.781,1.758],[3.065,0.721],[33.575,7.902],[14.514,-2.732],[42.168,-17.429],[39.79,0.141],[40.715,11.929],[24.721,-5.02],[-39.48,1.837],[-41.884,-13.322]],"v":[[19.5,-32.5],[-29.817,-25.023],[-71.5,-11.5],[-110.601,6.023],[-150.5,19.5],[-198.855,19.118],[-246.5,9.5],[-262.848,5.459],[-275.5,4.5],[-270.728,8.05],[-262.5,9.5],[-150.5,24.5],[-107.5,8.5],[31.5,-29.5],[136.5,-11.5],[271.5,7.5],[246.5,6.5],[149.5,-10.5]],"c":true}],"h":1},{"t":81,"s":[{"i":[[87.13,-5.61],[7.661,-1.222],[8.741,-2.364],[13.52,-5.317],[13.808,-5.643],[7.209,-2.845],[7.204,-0.776],[18.764,3.771],[13.885,2.969],[2.774,-0.183],[-6.757,-2.051],[-17.855,-3.604],[-17.054,0.129],[-18.631,7.676],[-58.415,0.866],[-36.987,-12.241],[-39.669,9.892],[4.784,-0.238]],"o":[[-11.614,0.748],[-7.661,1.222],[-15.114,4.088],[-13.519,5.317],[-6.96,2.845],[-7.209,2.845],[-19.061,2.053],[-18.764,-3.771],[-3.663,-0.783],[-2.773,0.183],[15.525,4.712],[17.855,3.604],[24.875,-0.189],[43,-17.715],[48.909,-0.725],[27.455,9.087],[21.88,-5.456],[-89.074,4.438]],"v":[[23.5,-32.5],[-4.155,-29.712],[-27.5,-24.5],[-69.98,-10.166],[-110.5,6.5],[-131.817,15.551],[-153.5,21.5],[-211.382,17.267],[-261.5,5.5],[-273.315,4.375],[-269.5,7.5],[-218.647,20.631],[-165.5,26.5],[-106.5,9.5],[33.5,-29.5],[156.5,-6.5],[274.5,7.5],[254.5,5.5]],"c":true}],"h":1},{"t":82,"s":[{"i":[[-0.139,0.009],[15.189,-3.918],[14.762,-6.072],[6.882,-2.878],[6.883,-2.777],[7.389,-2.81],[7.362,-0.904],[16.613,3.027],[11.818,2.823],[2.928,-2.928],[-0.858,-0.212],[-36.002,6.174],[-29.227,11.598],[-40.203,-0.143],[-75.379,0.191],[-6.707,1.387],[10.515,-0.186],[82.794,-6.081]],"o":[[-19.48,1.255],[-15.19,3.918],[-6.59,2.71],[-6.882,2.878],[-7.084,2.857],[-7.389,2.81],[-15.731,1.931],[-16.613,-3.027],[-2.475,-0.591],[-2.882,2.882],[32.763,8.098],[30.971,-5.311],[28.653,-11.37],[79.937,0.283],[6.255,-0.016],[21.985,-4.547],[-77.54,1.372],[-0.597,0.044]],"v":[[28.5,-32.5],[-22.538,-24.613],[-66.5,-9.5],[-86.78,-1.05],[-107.5,7.5],[-129.292,16.465],[-151.5,22.5],[-201.435,19.566],[-245.5,9.5],[-275.5,3.5],[-262.5,9.5],[-148.5,26.5],[-60.5,-7.5],[40.5,-29.5],[244.5,9.5],[273.5,7.5],[245.5,5.5],[29.5,-33.5]],"c":true}],"h":1},{"t":83,"s":[{"i":[[41.154,-2.65],[15.908,-4.304],[13.499,-5.57],[15.16,-6.312],[13.91,-1.614],[10.7,1.661],[11.95,2.662],[8.739,2.311],[8.087,0.763],[-0.067,-2.332],[-1.245,-0.304],[-31.553,-2.115],[-23.674,9.394],[-67.977,-5.052],[-36.585,-12.195],[-33.207,0.924],[18.686,-0.745],[33.538,11.44]],"o":[[-18.869,1.215],[-15.908,4.304],[-12.45,5.137],[-15.16,6.312],[-11.25,1.305],[-10.7,-1.661],[-8.957,-1.995],[-8.739,-2.311],[-0.99,-0.093],[0.043,1.504],[30.396,7.416],[34.072,2.284],[47.524,-18.859],[40.191,2.987],[21.888,7.296],[8.882,-0.247],[-48.843,1.946],[-35.761,-12.198]],"v":[[32.5,-32.5],[-19.527,-23.767],[-63.5,-8.5],[-105.905,10.143],[-150.5,23.5],[-182.975,22.475],[-216.5,15.5],[-243.153,8.576],[-268.5,3.5],[-276.5,5.5],[-264.5,8.5],[-173.5,27.5],[-98.5,10.5],[58.5,-28.5],[167.5,-5.5],[252.5,8.5],[273.5,3.5],[156.5,-12.5]],"c":true}],"h":1},{"t":84,"s":[{"i":[[36.355,-2.341],[15.96,-4.396],[14.866,-6.175],[7.401,-2.802],[7.43,-2.9],[7.696,-2.811],[7.731,-0.833],[33.351,6.869],[-12.929,-4.039],[-12.764,-2.843],[-23.492,2.972],[-14.155,5.617],[-59.805,3.179],[-76.629,-0.22],[-5.007,1.104],[1.564,3.317],[2.645,-0.185],[33.792,10.186]],"o":[[-19.292,1.242],[-15.96,4.396],[-6.965,2.893],[-7.401,2.802],[-7.484,2.921],[-7.696,2.811],[-37.118,3.999],[-8.537,-1.758],[16.248,5.076],[17.208,3.833],[15.186,-1.921],[45.337,-17.991],[81.297,-4.321],[3.729,0.011],[-3.678,0.811],[-1.23,-2.608],[-45.235,3.172],[-32.111,-9.679]],"v":[[37.5,-32.5],[-14.82,-23.699],[-60.5,-7.5],[-82.151,0.994],[-104.5,9.5],[-127.315,18.566],[-150.5,24.5],[-260.5,5.5],[-270.5,7.5],[-216.5,20.5],[-147.5,28.5],[-101.5,13.5],[40.5,-29.5],[248.5,8.5],[273.5,6.5],[279.5,3.5],[265.5,3.5],[146.5,-16.5]],"c":true}],"h":1},{"t":85,"s":[{"i":[[68.313,-4.399],[16.25,-4.647],[15.303,-6.143],[7.368,-3.055],[7.438,-2.932],[8.223,-2.614],[7.695,-0.619],[18.653,4.505],[17.057,3.455],[-8.945,-4.03],[-14.979,-3.419],[-23.652,2.5],[-16,6.245],[-64.667,-1.435],[-33.831,-11.621],[-36.038,6.938],[2.368,-0.118],[15.455,2.58]],"o":[[-19.697,1.268],[-16.25,4.647],[-7.09,2.846],[-7.368,3.055],[-7.415,2.923],[-8.223,2.614],[-18.332,1.474],[-18.653,-4.505],[-3.784,-0.767],[15.709,7.078],[16.753,3.824],[17.259,-1.824],[46.927,-18.317],[39.947,0.886],[24.676,8.477],[13.974,-2.69],[-22.635,1.129],[-60.923,-10.17]],"v":[[41.5,-32.5],[-11.796,-23.156],[-58.5,-6.5],[-80.24,2.435],[-102.5,11.5],[-126.29,20.228],[-150.5,25.5],[-206.456,19.197],[-260.5,5.5],[-273.5,5.5],[-215.5,19.5],[-148.5,29.5],[-98.5,13.5],[56.5,-29.5],[166.5,-7.5],[273.5,6.5],[272.5,2.5],[215.5,0.5]],"c":true}],"h":1},{"t":86,"s":[{"i":[[39.935,-2.571],[16.964,-4.609],[15.791,-6.317],[15.92,-6.58],[16.812,-0.877],[20.469,5.525],[17.347,1.88],[-0.168,-3.445],[-6.111,-1.373],[-12.256,-2.916],[-22.204,1.514],[-15.851,6.015],[-65.357,1.45],[-33.336,-11.351],[-38.064,4.871],[-1.256,0],[-1.615,-0.06],[21.056,7.233]],"o":[[-19.355,1.246],[-16.964,4.609],[-14.507,5.804],[-15.92,6.58],[-18.779,0.98],[-20.469,-5.525],[4.283,0.464],[0.095,1.956],[15.443,3.47],[15.939,3.792],[17.351,-1.183],[48.782,-18.51],[40.791,-0.905],[26.919,9.166],[16.912,-2.164],[-5.946,0],[-33.639,-1.26],[-37.037,-12.723]],"v":[[46.5,-32.5],[-7.673,-23.303],[-56.5,-6.5],[-102.271,13.695],[-151.5,26.5],[-211.574,17.145],[-269.5,3.5],[-276.5,4.5],[-261.5,8.5],[-215.5,19.5],[-149.5,30.5],[-98.5,15.5],[55.5,-29.5],[166.5,-8.5],[273.5,6.5],[272.5,2.5],[248.5,3.5],[163.5,-13.5]],"c":true}],"h":1},{"t":87,"s":[{"i":[[31.837,-2.05],[17.206,-4.823],[15.87,-6.402],[7.665,-3.275],[8.008,-2.942],[8.761,-2.705],[8.167,-0.319],[36.912,3.355],[-0.279,-3.568],[-4.689,-1.07],[-12.627,-3.181],[-20.944,1.194],[-16.347,6.079],[-68.36,-0.727],[-32.259,-11.081],[-36.798,2.821],[16.856,0],[37.45,11.31]],"o":[[-20.305,1.308],[-17.206,4.823],[-7.333,2.958],[-7.665,3.275],[-7.79,2.863],[-8.761,2.705],[-37.605,1.469],[2.193,0.199],[0.076,0.978],[16.012,3.655],[15.537,3.914],[18.11,-1.033],[50.302,-18.705],[39.114,0.416],[25.23,8.667],[21.24,-1.628],[-50.376,0],[-26.412,-7.976]],"v":[[51.5,-32.5],[-4.326,-22.821],[-53.5,-5.5],[-75.994,4.012],[-99.5,13.5],[-124.717,22.408],[-150.5,27.5],[-269.5,3.5],[-276.5,4.5],[-261.5,8.5],[-214.5,19.5],[-149.5,31.5],[-96.5,16.5],[64.5,-29.5],[170.5,-8.5],[267.5,6.5],[259.5,2.5],[149.5,-20.5]],"c":true}],"h":1},{"t":88,"s":[{"i":[[-0.139,0.009],[17.931,-4.946],[14.47,-5.942],[16.289,-6.497],[18.6,-0.752],[18.744,5.009],[17.4,3.678],[4.342,0.213],[-4.567,-2.315],[-5.445,-1.287],[-35.139,2.835],[-32.19,12.921],[-44.013,0.652],[-34.087,-11.444],[-35.095,2.936],[13.725,-0.159],[6.619,0.291],[75.437,-5.541]],"o":[[-19.805,1.276],[-17.931,4.946],[-15.244,6.26],[-16.289,6.497],[-17.625,0.712],[-18.744,-5.009],[-2.198,-0.465],[-4.342,-0.213],[5.813,2.947],[32.237,7.62],[36.87,-2.975],[32.059,-12.869],[40.988,-0.607],[24.871,8.35],[17.181,-1.438],[-12.906,0.15],[-68.533,-3.013],[-0.597,0.044]],"v":[[55.5,-32.5],[-1.502,-22.5],[-50.5,-5.5],[-97.483,15.131],[-149.5,27.5],[-204.668,19.293],[-259.5,4.5],[-272.074,2.915],[-274.5,5.5],[-245.5,11.5],[-145.5,31.5],[-43.5,-2.5],[65.5,-29.5],[172.5,-9.5],[267.5,6.5],[265.5,2.5],[248.5,2.5],[56.5,-33.5]],"c":true}],"h":1},{"t":89,"s":[{"i":[[34.266,-2.206],[18.217,-5.12],[14.782,-6.209],[17.41,-6.652],[17.846,-0.297],[16.048,4.166],[15.053,3.581],[8.384,1.306],[-8.971,-2.803],[-10.827,-2.813],[-21.446,0.702],[-17.509,6.131],[-69.47,0.246],[-33.055,-10.803],[-35.175,1.329],[15.744,-0.498],[8.035,0.052],[27.794,10.058]],"o":[[-20.349,1.31],[-18.217,5.12],[-14.514,6.096],[-17.41,6.652],[-14.755,0.245],[-16.048,-4.166],[-2.434,-0.579],[-8.384,-1.306],[16.33,5.102],[21.478,5.58],[19.232,-0.63],[52.96,-18.546],[40.099,-0.142],[24.585,8.035],[13.058,-0.493],[-4.406,0.139],[-34.183,-0.223],[-29.806,-10.785]],"v":[[60.5,-32.5],[2.325,-22.174],[-47.5,-4.5],[-96.001,16.35],[-149.5,28.5],[-196.276,21.37],[-243.5,8.5],[-265.554,4.464],[-270.5,5.5],[-214.5,19.5],[-148.5,32.5],[-92.5,18.5],[71.5,-29.5],[174.5,-9.5],[266.5,5.5],[269.5,1.5],[258.5,2.5],[162.5,-17.5]],"c":true}],"h":1},{"t":90,"s":[{"i":[[-0.139,0.009],[17.42,-5.115],[17.273,-7.186],[17.339,-6.242],[18.921,-0.493],[18.938,5.475],[18.541,3.587],[3.313,-0.174],[-7.112,-2.05],[-13.763,-3.775],[-20.719,0.105],[-16.151,5.384],[-59.243,5.924],[-33.275,-11.815],[-36.599,1.083],[19.137,0.2],[5.881,0.334],[75.082,-5.514]],"o":[[-21.048,1.355],[-17.42,5.115],[-15.721,6.54],[-17.339,6.242],[-18.706,0.488],[-18.938,-5.475],[-3.858,-0.747],[-3.314,0.174],[17.932,5.168],[17.687,4.851],[16.887,-0.085],[49.888,-16.63],[42.958,-4.296],[25.155,8.932],[16.502,-0.488],[-14.538,-0.152],[-69.423,-3.948],[-0.597,0.044]],"v":[[64.5,-32.5],[7.669,-22.373],[-43.5,-3.5],[-93.1,17.035],[-147.5,28.5],[-204.124,19.056],[-260.5,3.5],[-273.727,2.403],[-270.5,5.5],[-214.5,19.5],[-148.5,33.5],[-94.5,21.5],[53.5,-28.5],[168.5,-13.5],[265.5,5.5],[264.5,1.5],[248.5,1.5],[65.5,-33.5]],"c":true}],"h":1},{"t":91,"s":[{"i":[[22.221,-1.431],[10.219,-1.612],[9.188,-2.849],[15.914,-7.111],[17.922,-5.847],[19.138,0.348],[22.878,6.127],[16.182,3.154],[-13.428,-3.92],[-15.496,-4.217],[-21.021,-0.33],[-18.378,6.17],[-70.331,0.249],[-43.21,-10.28],[-21.232,3.055],[4.406,4.406],[6.986,0.736],[30.582,7.655]],"o":[[-10.937,0.704],[-10.219,1.612],[-18.422,5.71],[-15.914,7.111],[-17.509,5.712],[-19.585,-0.356],[-14.087,-3.772],[-10.693,-2.084],[19.532,5.702],[21.489,5.847],[20.111,0.316],[54.692,-18.361],[53.836,-0.191],[15.585,3.708],[-30.351,4.367],[-1.297,-1.297],[-38.35,-4.038],[-19.423,-4.862]],"v":[[69.5,-32.5],[37.689,-29.108],[8.5,-22.5],[-41.875,-2.603],[-91.5,17.5],[-149.5,29.5],[-212.5,15.5],[-258.5,3.5],[-270.5,5.5],[-213.5,18.5],[-148.5,33.5],[-88.5,20.5],[80.5,-29.5],[209.5,-1.5],[272.5,5.5],[279.5,1.5],[241.5,0.5],[147.5,-25.5]],"c":true}],"h":1},{"t":92,"s":[{"i":[[21.239,-1.368],[19.172,-6.053],[16.568,-7.116],[39.971,1.863],[21.265,5.832],[14.713,3.358],[2.48,-2.48],[-2.88,-0.567],[-14.282,-3.909],[-20.413,-1.029],[-21.355,8.171],[-21.71,8.404],[-53.513,-13.228],[-16.353,-4.248],[-14.633,-1.625],[12.53,1.827],[8.08,0.779],[32.24,7.969]],"o":[[-25.155,1.62],[-17.861,5.64],[-28.873,12.402],[-18.834,-0.878],[-7.19,-1.972],[-2.925,-0.668],[-2.617,2.617],[18.198,3.581],[21.908,5.997],[28.105,1.417],[22.225,-8.504],[44.854,-17.364],[18.968,4.689],[10.131,2.632],[7.028,0.78],[-9.314,-1.358],[-40.7,-3.922],[-19.411,-4.798]],"v":[[73.5,-32.5],[11.5,-21.5],[-39.5,-1.5],[-150.5,29.5],[-212.5,14.5],[-242.5,6.5],[-276.5,1.5],[-262.5,6.5],[-214.5,18.5],[-150.5,33.5],[-74.5,17.5],[-9.5,-9.5],[148.5,-22.5],[207.5,-2.5],[241.5,3.5],[276.5,1.5],[243.5,-0.5],[147.5,-26.5]],"c":true}],"h":1},{"t":93,"s":[{"i":[[52.021,-3.35],[10.435,-1.791],[9.866,-3.104],[37.477,-11.92],[20.554,1.127],[18.8,5.146],[14.518,3.343],[3.855,-3.855],[0.346,0.085],[-12.485,-3.513],[-19.168,-0.876],[-16.979,4.937],[-57.144,8.972],[-34.242,-11.762],[-35.856,0.05],[1.494,3],[14.248,0.493],[10.904,2.684]],"o":[[-11.392,0.733],[-10.436,1.791],[-38.069,11.976],[-18.301,5.821],[-17.752,-0.973],[-12.152,-3.326],[-4.36,-1.004],[-2.313,2.313],[19.744,4.856],[19.063,5.364],[18.531,0.847],[51.867,-15.081],[39.645,-6.224],[26.137,8.978],[9.294,-0.013],[-0.97,-1.947],[-18.263,-0.632],[-41.563,-10.231]],"v":[[78.5,-32.5],[45.856,-28.777],[15.5,-21.5],[-88.5,18.5],[-149.5,30.5],[-211.5,14.5],[-242.5,6.5],[-276.5,1.5],[-270.5,5.5],[-213.5,18.5],[-148.5,34.5],[-92.5,24.5],[54.5,-26.5],[169.5,-15.5],[265.5,4.5],[279.5,1.5],[261.5,0.5],[210.5,-7.5]],"c":true}],"h":1},{"t":94,"s":[{"i":[[18.666,-1.202],[10.762,-1.804],[9.727,-3.06],[16.697,-7.28],[19.158,-5.884],[21.256,1.212],[21.93,6.075],[16.863,2.97],[-15.974,-3.643],[-14.014,-3.966],[-20.523,-0.948],[-19.673,6.257],[-73.992,-0.787],[-55.541,-6.304],[2.623,5.378],[3.309,0.176],[8.783,2.258],[17.598,4.405]],"o":[[-11.226,0.723],[-10.762,1.804],[-19.055,5.995],[-16.697,7.28],[-18.787,5.77],[-18.938,-1.08],[-12.493,-3.461],[-8.329,-1.467],[18.861,4.302],[18.362,5.197],[22.351,1.033],[58.43,-18.585],[59.74,0.635],[3.073,0.349],[-0.79,-1.62],[-14.902,-0.792],[-18.37,-4.724],[-20.186,-5.053]],"v":[[83.5,-32.5],[50.376,-28.753],[19.5,-21.5],[-32.922,-0.917],[-85.5,19.5],[-148.5,30.5],[-211.5,14.5],[-259.5,2.5],[-269.5,4.5],[-212.5,18.5],[-147.5,34.5],[-82.5,22.5],[96.5,-29.5],[244.5,2.5],[279.5,1.5],[261.5,0.5],[209.5,-7.5],[150.5,-27.5]],"c":true}],"h":1},{"t":95,"s":[{"i":[[14.917,-0.96],[9.772,-1.9],[10.776,-3.49],[8.759,-3.585],[8.577,-3.62],[42.979,2.612],[21.343,6.147],[16.369,1.494],[-6.533,-1.452],[-13.759,-3.879],[-20.475,-1.396],[-22.813,7.768],[-87.611,-21.93],[-38.35,-4.917],[-9.845,-0.394],[12.991,1.895],[10.967,1.369],[29.082,7.417]],"o":[[-14.136,0.91],[-9.772,1.9],[-9.388,3.041],[-8.759,3.585],[-30.581,12.907],[-19.263,-1.171],[-14.266,-4.108],[-7.361,-0.672],[20.37,4.527],[22.425,6.322],[26.724,1.822],[64.383,-21.923],[30.588,7.656],[14.972,1.919],[4.198,0.168],[-12.785,-1.865],[-36.293,-4.53],[-18.53,-4.726]],"v":[[87.5,-32.5],[52.98,-28.435],[23.5,-20.5],[-3.608,-10.435],[-29.5,0.5],[-147.5,30.5],[-210.5,13.5],[-267.5,0.5],[-273.5,4.5],[-211.5,17.5],[-147.5,34.5],[-70.5,20.5],[150.5,-24.5],[243.5,1.5],[261.5,3.5],[276.5,0.5],[243.5,-1.5],[150.5,-28.5]],"c":true}],"h":1},{"t":96,"s":[{"i":[[13.222,-0.851],[20.317,-6.159],[16.35,-6.923],[20.629,-6.362],[22.561,2.191],[10.356,3.166],[11.916,3.398],[16.048,2.541],[-11.048,-3.083],[-7.186,-1.536],[-31.923,-3.051],[-20.497,5.994],[-93.267,-20.726],[-19.702,-5.308],[-16.539,-0.959],[14.597,1.414],[13.794,3.701],[16.548,3.677]],"o":[[-22.38,1.441],[-20.317,6.159],[-15.922,6.742],[-20.629,6.362],[-9.661,-0.938],[-10.356,-3.166],[-13.391,-3.82],[-4.099,-0.649],[8.932,2.493],[35.717,7.636],[22.845,2.183],[70.9,-20.734],[17.596,3.91],[12.441,3.352],[13.495,0.783],[-22.813,-2.21],[-17.332,-4.651],[-16.804,-3.734]],"v":[[92.5,-32.5],[27.977,-20.111],[-27.5,0.5],[-83.021,22.199],[-148.5,30.5],[-178.309,23.845],[-211.5,13.5],[-259.5,1.5],[-273.5,3.5],[-243.5,8.5],[-147.5,34.5],[-79.5,24.5],[150.5,-25.5],[210.5,-5.5],[261.5,3.5],[271.5,-0.5],[210.5,-9.5],[149.5,-29.5]],"c":true}],"h":1},{"t":97,"s":[{"i":[[12.194,-0.785],[20.303,-6.381],[16.663,-6.988],[21.189,-6.209],[23.145,2.589],[22.86,6.558],[13.593,2.873],[-24.007,-5.012],[-14.669,-4.087],[-19.741,-2.022],[-22.473,6.992],[-87.395,-17.577],[-18.851,-5.191],[-13.303,-2.294],[-1.652,3.465],[-18.701,-2.662],[9.428,1.384],[31.41,7.912]],"o":[[-23.124,1.489],[-20.303,6.381],[-16.1,6.752],[-21.189,6.209],[-18.772,-2.1],[-6.981,-2.003],[-4.517,-0.955],[19.175,4.004],[17.616,4.908],[29.847,3.057],[64.945,-20.207],[17.432,3.506],[6.976,1.921],[4.041,0.697],[2.124,-4.455],[-9.354,-1.332],[-36.586,-5.371],[-15.652,-3.942]],"v":[[96.5,-32.5],[31.155,-19.624],[-24.5,1.5],[-81.216,23.005],[-148.5,30.5],[-210.5,12.5],[-242.5,4.5],[-269.5,3.5],[-211.5,16.5],[-147.5,34.5],[-69.5,22.5],[148.5,-26.5],[208.5,-6.5],[241.5,0.5],[278.5,2.5],[272.5,-0.5],[244.5,-2.5],[152.5,-29.5]],"c":true}],"h":1},{"t":98,"s":[{"i":[[9.417,-0.606],[10.386,-1.865],[10.88,-3.601],[9.088,-4.017],[9.036,-3.753],[22.073,-6.087],[23.703,2.998],[21.895,6.293],[15.071,2.252],[-16.022,-2.699],[-15.35,-4.404],[-19.995,-2.154],[-36.286,15.071],[-49.752,-0.176],[-32.717,-9.009],[-16.089,4.806],[7.882,1.388],[28.492,5.952]],"o":[[-14.575,0.938],[-10.386,1.865],[-9.61,3.181],[-9.089,4.017],[-16.008,6.649],[-22.073,6.087],[-17.746,-2.245],[-12.003,-3.45],[-10.941,-1.635],[22.309,3.758],[20.375,5.845],[50.609,5.452],[39.116,-16.246],[40.312,0.143],[13.001,3.58],[11.967,-3.575],[-34.925,-6.15],[-14.358,-2.999]],"v":[[101.5,-32.5],[65.229,-28.497],[34.5,-20.5],[6.57,-9.429],[-20.5,2.5],[-78.729,23.735],[-148.5,30.5],[-211.5,12.5],[-259.5,0.5],[-269.5,3.5],[-210.5,16.5],[-146.5,34.5],[-14.5,4.5],[113.5,-29.5],[211.5,-6.5],[275.5,2.5],[243.5,-3.5],[149.5,-30.5]],"c":true}],"h":1},{"t":99,"s":[{"i":[[7.735,-0.498],[5.724,-0.611],[5.368,-1.059],[14.133,-5.569],[13.268,-5.528],[21.179,-5.776],[25.454,2.535],[43.342,-0.186],[-2.903,-0.464],[-13.086,-3.603],[-22.254,-1.985],[-38.363,16.062],[-47.488,0.704],[-47.015,-8.806],[-3.756,3.756],[2.371,0.234],[13.134,3.617],[16.821,3.246]],"o":[[-7.736,0.498],[-5.724,0.611],[-16.203,3.197],[-14.133,5.569],[-17.831,7.43],[-21.179,5.776],[-34.892,-3.475],[-18.279,0.079],[17.214,2.749],[27.503,7.573],[51.515,4.594],[40.278,-16.864],[52.575,-0.779],[6.154,1.153],[3.273,-3.273],[-19.234,-1.9],[-19.662,-5.414],[-13.606,-2.626]],"v":[[105.5,-32.5],[85.725,-30.921],[69.5,-28.5],[24.299,-14.749],[-16.5,2.5],[-74.782,23.973],[-144.5,30.5],[-269.5,-0.5],[-270.5,3.5],[-211.5,14.5],[-143.5,34.5],[-12.5,4.5],[115.5,-29.5],[241.5,-0.5],[278.5,2.5],[262.5,-1.5],[211.5,-11.5],[149.5,-31.5]],"c":true}],"h":1},{"t":100,"s":[{"i":[[57.399,-3.696],[11.156,-1.968],[10.258,-3.346],[9.118,-4.047],[9.091,-3.733],[23.939,-5.987],[24.633,4.591],[15.004,4.998],[16.923,3.387],[-22.427,-4.264],[-15.676,-4.342],[-18.259,-3.437],[-22.529,5.371],[-75.789,1.123],[-30.468,-8.59],[-16.342,-3.015],[-2.445,5.185],[2.118,0.22]],"o":[[-12.118,0.78],[-11.156,1.968],[-9.435,3.078],[-9.118,4.047],[-18.613,7.643],[-23.939,5.987],[-14.061,-2.62],[-15.004,-4.998],[-3.285,-0.658],[21.946,4.172],[20.316,5.627],[26.277,4.947],[66.84,-15.935],[36.869,-0.546],[9.615,2.711],[0.92,0.17],[1.413,-2.996],[-59.041,-6.144]],"v":[[110.5,-32.5],[75.605,-28.425],[43.5,-20.5],[15.742,-9.491],[-11.5,2.5],[-76.484,25.176],[-150.5,29.5],[-193.854,17.075],[-241.5,3.5],[-270.5,2.5],[-212.5,14.5],[-150.5,33.5],[-73.5,28.5],[120.5,-29.5],[211.5,-8.5],[243.5,-1.5],[278.5,1.5],[262.5,-2.5]],"c":true}],"h":1},{"t":101,"s":[{"i":[[5.103,-0.329],[11.201,-2.392],[10.497,-3.549],[9.57,-3.932],[9.787,-3.916],[53.045,8.807],[23.354,6.507],[14.729,1.845],[-12.254,-2.218],[-15.468,-4.412],[-18.915,-3.357],[-23.024,5.244],[-73.22,2.161],[-31.444,-8.865],[-15.446,-2.053],[17.049,2.963],[14.073,3.875],[16.165,2.669]],"o":[[-13.7,0.882],[-11.201,2.392],[-9.931,3.357],[-9.571,3.932],[-37.186,14.878],[-18.374,-3.05],[-8.337,-2.323],[-14.644,-1.834],[20.255,3.666],[15.178,4.329],[26.049,4.623],[67.328,-15.333],[37.033,-1.093],[10.414,2.936],[7.813,1.038],[-21.358,-3.712],[-21.085,-5.806],[-10.907,-1.801]],"v":[[114.5,-32.5],[77.598,-27.5],[45.5,-18.5],[16.392,-7.418],[-12.5,4.5],[-148.5,29.5],[-209.5,10.5],[-258.5,-0.5],[-270.5,2.5],[-210.5,13.5],[-148.5,33.5],[-71.5,28.5],[122.5,-29.5],[210.5,-9.5],[259.5,1.5],[271.5,-1.5],[211.5,-12.5],[149.5,-32.5]],"c":true}],"h":1},{"t":102,"s":[{"i":[[4.069,-0.262],[20.861,-7.204],[20.011,-8.006],[53.795,11.132],[15.812,4.406],[14.601,2.7],[2.018,-4.337],[-6.307,-0.651],[-13.512,-3.699],[-18.434,-3.349],[-41.846,17.633],[-54.252,-2.767],[-4.129,-0.75],[-34.141,-6.637],[-1.239,2.598],[-14.727,-2.8],[9.08,1.713],[26.675,4.884]],"o":[[-28.607,1.842],[-19.945,6.887],[-36.79,14.719],[-18.184,-3.763],[-9.003,-2.509],[-3.191,-0.59],[-1.11,2.385],[19.981,2.063],[17.587,4.814],[56.718,10.304],[44.423,-18.719],[3.387,0.173],[29.889,5.43],[9.358,1.819],[1.977,-4.145],[-9.188,-1.747],[-33.641,-6.349],[-9.981,-1.827]],"v":[[119.5,-32.5],[48.5,-18.5],[-10.5,5.5],[-150.5,28.5],[-210.5,9.5],[-242.5,2.5],[-277.5,-0.5],[-261.5,3.5],[-210.5,13.5],[-148.5,32.5],[-2.5,6.5],[138.5,-29.5],[151.5,-28.5],[243.5,-1.5],[278.5,1.5],[271.5,-1.5],[245.5,-5.5],[151.5,-32.5]],"c":true}],"h":1},{"t":103,"s":[{"i":[[42.528,-2.738],[11.592,-2.316],[11.06,-3.8],[9.978,-4.106],[9.879,-4.07],[23.53,-5.141],[27.704,5.465],[15.297,5.294],[17.34,3.167],[-8.946,-3.834],[-5.61,-0.916],[-28.803,-5.627],[-42.251,16.96],[-55.735,-4.402],[-3.704,-0.71],[-33.932,-6.759],[10.165,4.356],[4.911,0.955]],"o":[[-14.572,0.938],[-11.592,2.316],[-10.209,3.507],[-9.978,4.106],[-19.177,7.901],[-23.53,5.141],[-13.471,-2.657],[-15.297,-5.294],[-3.431,-0.627],[7.568,3.243],[35.817,5.849],[59.167,11.559],[43.356,-17.403],[1.099,0.087],[27.744,5.315],[7.29,1.452],[-6.78,-2.906],[-43.655,-8.487]],"v":[[124.5,-32.5],[85.866,-27.646],[52.5,-18.5],[22.252,-6.922],[-7.5,5.5],[-71.604,27.025],[-148.5,28.5],[-191.598,15.382],[-240.5,1.5],[-275.5,1.5],[-243.5,4.5],[-148.5,32.5],[0.5,6.5],[143.5,-29.5],[152.5,-28.5],[243.5,-2.5],[276.5,-1.5],[246.5,-6.5]],"c":true}],"h":1},{"t":104,"s":[{"i":[[43.118,-2.776],[11.562,-2.553],[10.79,-3.825],[10.311,-4.012],[10.242,-4.226],[24.313,-4.77],[27.688,5.947],[10.774,3.728],[7.37,2.041],[5.149,1.38],[6.356,1.081],[1.383,-2.869],[-1.874,-0.298],[-33.092,-6.912],[-62.594,20.054],[-29.962,-2.96],[-45.668,-1.578],[6.1,0.933]],"o":[[-14.964,0.963],[-11.562,2.553],[-10.516,3.727],[-10.311,4.012],[-19.061,7.866],[-24.313,4.77],[-9.534,-2.047],[-10.774,-3.728],[-5.048,-1.399],[-5.149,-1.38],[-4.247,-0.722],[-1.402,2.907],[37.119,5.911],[88.335,18.452],[22.072,-7.072],[39.749,3.927],[20.15,0.696],[-46.757,-7.153]],"v":[[128.5,-32.5],[89.369,-27.146],[56.5,-17.5],[25.294,-5.874],[-5.5,6.5],[-71.03,27.36],[-149.5,27.5],[-181.122,17.995],[-209.5,8.5],[-224.519,4.262],[-241.5,0.5],[-277.5,-1.5],[-243.5,4.5],[-147.5,31.5],[67.5,-17.5],[146.5,-29.5],[269.5,1.5],[261.5,-3.5]],"c":true}],"h":1},{"t":105,"s":[{"i":[[34.994,-2.253],[12.013,-2.554],[10.894,-3.815],[10.266,-4.258],[10.425,-4.288],[25.305,-4.457],[27.552,6.739],[14.172,4.781],[17.697,2.811],[1.83,-3.675],[-7.278,-0.58],[-37.707,-8.893],[-61.608,19.918],[-29.849,-2.472],[-22.995,-6.445],[-17.075,-2.719],[10.555,3.779],[12.45,2.717]],"o":[[-15.053,0.97],[-12.013,2.554],[-10.511,3.681],[-10.266,4.258],[-19.229,7.91],[-25.305,4.457],[-16.614,-4.064],[-14.172,-4.781],[-4.553,-0.723],[-1.915,3.844],[45.331,3.615],[88.627,20.903],[21.658,-7.002],[20.518,1.7],[11.105,3.113],[5.064,0.806],[-9.102,-3.259],[-39.184,-8.552]],"v":[[133.5,-32.5],[93.381,-27.134],[59.5,-17.5],[28.436,-5.456],[-2.5,7.5],[-70.258,27.986],[-150.5,26.5],[-195.187,12.56],[-241.5,0.5],[-277.5,-1.5],[-260.5,1.5],[-148.5,30.5],[69.5,-16.5],[147.5,-29.5],[211.5,-12.5],[260.5,-0.5],[275.5,-1.5],[245.5,-7.5]],"c":true}],"h":1},{"t":106,"s":[{"i":[[32.196,-1.737],[11.604,-2.452],[12.024,-4.351],[34.547,-10.778],[43.384,10.122],[20.246,6.562],[23.562,-1.087],[-3.466,-0.828],[-3.878,-0.238],[-17.813,-5.568],[-17.808,-4.319],[-62.836,21.396],[-28.056,-1.649],[-21.462,-6.122],[-14.547,-3.218],[-4.206,4.206],[0.225,0.101],[8.02,1.687]],"o":[[-15.559,0.84],[-11.604,2.452],[-30.427,11.01],[-34.547,10.778],[-16.452,-3.838],[-20.246,-6.562],[-9.741,0.45],[3.466,0.828],[22.942,1.408],[17.813,5.568],[89.778,21.773],[22.319,-7.6],[20.252,1.19],[8.259,2.356],[5.825,1.289],[0.947,-0.947],[-8.483,-3.795],[-36.595,-7.698]],"v":[[137.5,-32.5],[97.849,-27.634],[63.5,-17.5],[-32.782,20.349],[-148.5,26.5],[-203.667,8.306],[-269.5,-2.5],[-275.714,-0.341],[-261.5,1.5],[-201.649,13.317],[-149.5,29.5],[69.5,-15.5],[147.5,-29.5],[210.5,-12.5],[242.5,-4.5],[278.5,0.5],[276.5,-2.5],[245.5,-7.5]],"c":true}],"h":1},{"t":107,"s":[{"i":[[32.494,-0.889],[12.971,-2.641],[11.211,-4.084],[35.234,-10.664],[44.047,10.956],[10.2,3.768],[10.964,2.877],[11.951,1.946],[9.759,-1.737],[-4.405,-0.3],[-5.424,-0.777],[-26.986,-6.489],[-62.84,22.082],[-25.685,-1.383],[-20.789,-5.987],[-13.675,-2.998],[-3.925,3.925],[1.453,0.254]],"o":[[-12.904,0.353],[-12.971,2.641],[-31.019,11.302],[-35.234,10.664],[-8.237,-2.049],[-10.2,-3.768],[-7.438,-1.952],[-11.951,-1.946],[-11.785,2.098],[8.577,0.585],[35.013,5.017],[89.411,21.5],[20.985,-7.374],[20.081,1.081],[8.263,2.38],[4.095,0.898],[2.96,-2.96],[-39.451,-6.893]],"v":[[142.5,-32.5],[103.231,-27.799],[66.5,-17.5],[-31.729,20.694],[-149.5,25.5],[-177.455,16.121],[-209.5,5.5],[-240.259,-1.267],[-274.5,-2.5],[-260.5,1.5],[-241.5,2.5],[-148.5,29.5],[71.5,-14.5],[148.5,-29.5],[211.5,-12.5],[243.5,-4.5],[278.5,0.5],[262.5,-4.5]],"c":true}],"h":1},{"t":108,"s":[{"i":[[30.86,0.177],[12.804,-3.012],[11.249,-4.029],[34.923,-10.307],[46.898,11.837],[18.343,5.762],[21.919,0.735],[3.612,-0.93],[-7.863,-0.426],[-16.662,-3.665],[-14.668,-5.163],[-20.345,-1.87],[-19.106,3.294],[-30.499,12.545],[-40.762,-4.175],[-21.113,-5.62],[-16.119,-0.905],[1.266,0.231]],"o":[[-13.535,-0.078],[-12.804,3.012],[-32.41,11.608],[-34.923,10.307],[-16.707,-4.217],[-18.343,-5.762],[-4.414,-0.148],[-3.612,0.93],[21.682,1.177],[16.662,3.665],[16.514,5.813],[20.345,1.87],[36.354,-6.268],[28.235,-11.614],[19.69,2.017],[13.493,3.592],[20.866,1.172],[-39.899,-7.286]],"v":[[146.5,-32.5],[106.785,-27.58],[70.5,-16.5],[-28.134,21.584],[-148.5,24.5],[-200.591,7.888],[-260.5,-3.5],[-275.207,-1.931],[-271.5,0.5],[-214.74,8.01],[-168.5,21.5],[-111.943,33.33],[-51.5,31.5],[46.5,-2.5],[153.5,-28.5],[215.5,-12.5],[270.5,0.5],[262.5,-5.5]],"c":true}],"h":1},{"t":109,"s":[{"i":[[36.955,-3.399],[11.983,-3.133],[11.055,-4.273],[35.512,-9.191],[43.535,11.519],[14.988,4.971],[18.249,2.201],[9.091,0.072],[-1.189,-2.386],[-1.992,-0.124],[-27.834,-7.68],[-43.867,17.123],[-22.408,8.318],[-26.212,-1.363],[-17.473,-4.764],[-13.136,-2.998],[-1.468,3.383],[0.811,0.154]],"o":[[-13.011,1.197],[-11.983,3.133],[-30.418,11.755],[-35.512,9.191],[-14.799,-3.916],[-14.988,-4.971],[-0.823,-0.099],[-9.091,-0.072],[1.94,3.894],[36.929,2.294],[54.319,14.987],[21.778,-8.501],[20.964,-7.782],[20.524,1.067],[8.365,2.281],[4.637,1.058],[1.432,-3.301],[-40.493,-7.699]],"v":[[138.5,-31.5],[101.033,-24.807],[66.5,-13.5],[-31.663,22.456],[-149.5,23.5],[-193.413,9.214],[-242.5,-2.5],[-262.009,-3.364],[-278.5,-0.5],[-251.5,0.5],[-149.5,27.5],[8.5,14.5],[74.5,-12.5],[151.5,-28.5],[214.5,-13.5],[245.5,-5.5],[277.5,-0.5],[263.5,-5.5]],"c":true}],"h":1},{"t":110,"s":[{"i":[[35.618,-2.736],[17.091,-5.535],[15.2,-6.446],[16.236,-5.645],[18.937,-2.009],[19.066,2.856],[16.379,5.736],[12.954,3.167],[15.151,1.12],[-3.633,-3.633],[-6.331,-0.633],[-26.471,-7.376],[-45.174,17.227],[-20.981,8.095],[-25.604,-0.773],[-27.9,-6.438],[-3.154,3.154],[1.01,0.193]],"o":[[-18.437,1.416],[-17.091,5.535],[-15.118,6.412],[-16.236,5.645],[-20.359,2.16],[-19.066,-2.856],[-12.031,-4.213],[-12.954,-3.167],[-2.269,-0.168],[1.688,1.688],[36.646,3.665],[52.484,14.624],[21.976,-8.38],[21.639,-8.349],[30.06,0.907],[4.097,0.945],[2.948,-2.948],[-38.103,-7.263]],"v":[[142.5,-31.5],[89.072,-20.273],[40.5,-1.5],[-6.136,17.302],[-58.5,29.5],[-117.985,27.922],[-171.5,14.5],[-208.66,3.181],[-250.5,-3.5],[-278.5,-0.5],[-241.5,1.5],[-149.5,26.5],[9.5,16.5],[75.5,-10.5],[150.5,-28.5],[243.5,-5.5],[277.5,-0.5],[262.5,-5.5]],"c":true}],"h":1},{"t":111,"s":[{"i":[[31.143,-1.273],[12.096,-3.52],[11.195,-4.37],[35.889,-8.559],[45.543,11.687],[20.658,6.347],[24.856,-2.624],[-2.838,-0.772],[-3.716,-0.059],[-15.611,-3.555],[-12.887,-4.466],[-40.57,4.041],[-30.076,12.714],[-36.679,2.189],[-3.691,-0.267],[-31.143,-7.409],[-3.327,3.327],[0.998,0.2]],"o":[[-13.419,0.549],[-12.097,3.52],[-31.901,12.452],[-35.889,8.559],[-16.512,-4.238],[-20.658,-6.347],[-8.067,0.852],[2.838,0.772],[19.67,0.314],[15.611,3.555],[32.627,11.306],[39.245,-3.909],[29.451,-12.45],[1.777,-0.106],[28.535,2.067],[6.001,1.428],[2.381,-2.381],[-38.421,-7.709]],"v":[[147.5,-31.5],[109.331,-24.866],[74.5,-12.5],[-25.768,23.104],[-146.5,22.5],[-202.243,3.854],[-270.5,-4.5],[-275.837,-1.906],[-263.5,-0.5],[-210.913,5.886],[-168.5,18.5],[-55.5,33.5],[44.5,3.5],[144.5,-27.5],[155.5,-27.5],[245.5,-6.5],[277.5,-0.5],[263.5,-6.5]],"c":true}],"h":1},{"t":112,"s":[{"i":[[33.246,-3.485],[30.217,-13.159],[40.301,-3.293],[18.669,2.942],[17.446,5.857],[17.891,4.071],[19.519,-2.617],[-3.494,-0.748],[-3.396,-0.018],[-18.039,-4.856],[-19.269,-5.442],[-18.816,-1.465],[-19.352,3.204],[-29.087,12.276],[-31.284,0.317],[-21.259,-5.659],[-17.273,-1.735],[4.357,0.897]],"o":[[-38.832,4.07],[-30.217,13.159],[-19.878,1.624],[-18.669,-2.942],[-12.915,-4.335],[-17.892,-4.071],[-7.371,0.989],[3.494,0.748],[24.574,0.132],[18.039,4.856],[15.384,4.346],[18.816,1.465],[34.897,-5.778],[24.519,-10.348],[21.938,-0.223],[14.078,3.747],[18.407,1.849],[-36.692,-7.557]],"v":[[143.5,-30.5],[44.602,0.083],[-56.5,29.5],[-114.324,27.111],[-168.5,13.5],[-215.546,-0.715],[-272.5,-4.5],[-275.575,-1.772],[-262.5,-0.5],[-200.521,8.017],[-146.5,24.5],[-94.476,33.662],[-36.5,31.5],[55.5,0.5],[150.5,-27.5],[215.5,-14.5],[270.5,-1.5],[261.5,-6.5]],"c":true}],"h":1},{"t":113,"s":[{"i":[[32.722,-2.033],[22.818,-9.452],[22.754,-7.639],[27.583,-0.703],[25.666,7.535],[19.18,5.287],[20.43,-1.977],[3.218,-0.668],[-0.601,-1.355],[-4.724,-0.139],[-31.431,-9.227],[-46.651,15.829],[-22.426,9.046],[-23.833,1.409],[-19.126,-5.05],[-16.714,-3.394],[-0.969,2.259],[0.649,0.14]],"o":[[-24.975,1.552],[-22.818,9.452],[-23,7.721],[-27.583,0.703],[-19.85,-5.827],[-19.18,-5.288],[0.269,-0.026],[-3.218,0.668],[1.362,3.073],[40.066,1.183],[51.271,15.051],[21.855,-7.415],[22.528,-9.087],[23.195,-1.371],[13.803,3.645],[1.932,0.392],[1.462,-3.407],[-36.764,-7.914]],"v":[[148.5,-30.5],[77.334,-11.565],[9.5,16.5],[-68.001,29.442],[-149.5,19.5],[-207.565,1.147],[-266.5,-5.5],[-272.749,-4.536],[-278.5,-1.5],[-253.5,-1.5],[-148.5,23.5],[10.5,20.5],[76.5,-5.5],[147.5,-26.5],[213.5,-14.5],[261.5,-3.5],[277.5,-1.5],[263.5,-6.5]],"c":true}],"h":1},{"t":114,"s":[{"i":[[32.96,-3.401],[16.017,-6.205],[15.025,-6.23],[17.036,-4.91],[20.259,-0.89],[29.961,9.144],[35.612,1.117],[6.989,-0.423],[-1.112,-2.377],[-3.544,0.24],[-2.344,0.065],[-38.158,-10.342],[-40.76,4.916],[-44.134,15.916],[-15.853,0.415],[-29.921,-7.118],[-3.78,3.78],[2.925,0.647]],"o":[[-18.906,1.951],[-16.017,6.205],[-15.599,6.468],[-17.036,4.91],[-38.546,1.695],[-29.961,-9.144],[-2.156,-0.067],[-6.989,0.423],[0.48,1.024],[3.544,-0.24],[49.721,-1.383],[31.611,8.567],[52.723,-6.358],[15.841,-5.713],[32.03,-0.837],[5.172,1.23],[2.022,-2.022],[-36.365,-8.045]],"v":[[146.5,-29.5],[94.589,-16.209],[48.5,3.5],[-0.005,21.183],[-55.5,30.5],[-154.701,14.609],[-249.5,-5.5],[-266.451,-5.333],[-278.5,-1.5],[-271.398,-0.683],[-261.5,-1.5],[-143.5,22.5],[-34.5,32.5],[102.5,-13.5],[151.5,-26.5],[245.5,-7.5],[277.5,-1.5],[263.5,-6.5]],"c":true}],"h":1},{"t":115,"s":[{"i":[[33.412,-4.015],[15.753,-6.364],[15.346,-6.302],[17.62,-4.547],[21.09,-0.474],[18.082,3.95],[16.879,5.666],[18.346,3.289],[17.936,-3.748],[-7.202,0.031],[-2.301,-0.011],[-32.733,-10.09],[-41.308,3.701],[-27.743,11.709],[-33.01,1.627],[-28.51,-6.768],[-2.764,2.764],[2.178,0.51]],"o":[[-18.641,2.241],[-15.753,6.364],[-15.431,6.337],[-17.62,4.547],[-20.792,0.467],[-18.082,-3.95],[-13.678,-4.592],[-18.346,-3.289],[-10.109,2.112],[7.202,-0.031],[38.288,0.18],[32.107,9.897],[36.52,-3.272],[30.204,-12.748],[32.223,-1.588],[3.545,0.842],[2.883,-2.883],[-32.505,-7.617]],"v":[[146.5,-28.5],[95.529,-14.546],[49.5,5.5],[0.244,22.398],[-57.5,30.5],[-115.435,24.6],[-167.5,9.5],[-216.806,-3.755],[-272.5,-4.5],[-271.308,-1.924],[-251.5,-2.5],[-149.5,20.5],[-39.5,33.5],[58.5,6.5],[151.5,-25.5],[245.5,-7.5],[277.5,-1.5],[247.5,-10.5]],"c":true}],"h":1},{"t":116,"s":[{"i":[[38.88,-5.301],[31.164,-13.638],[44.752,1.404],[17.763,3.943],[16.923,5.601],[13.857,2.741],[15.603,0.075],[7.171,-0.789],[-1.85,-1.849],[-6.481,0.456],[-4.316,-0.066],[-7.009,-1.11],[-64.051,-0.307],[-29.542,11.82],[-34.266,3.275],[-27.682,-6.871],[16.782,6.551],[10.328,2.537]],"o":[[-35.59,4.852],[-31.164,13.638],[-20.024,-0.628],[-17.763,-3.943],[-11.969,-3.961],[-13.857,-2.741],[-1.166,-0.005],[-7.171,0.789],[0.76,0.76],[6.481,-0.456],[11.405,0.174],[58.453,9.256],[43.31,0.208],[28.64,-11.459],[33.328,-3.185],[4.849,1.204],[-7.037,-2.747],[-36.784,-9.035]],"v":[[145.5,-27.5],[49.871,6.192],[-59.5,30.5],[-115.826,23.23],[-167.5,8.5],[-206.274,-1.914],[-250.5,-6.5],[-266.762,-5.391],[-278.5,-1.5],[-265.667,-1.48],[-247.5,-2.5],[-217.5,0.5],[-54.5,34.5],[52.5,10.5],[149.5,-24.5],[245.5,-7.5],[273.5,-5.5],[265.5,-6.5]],"c":true}],"h":1},{"t":117,"s":[{"i":[[33.333,-3.631],[14.979,-5.958],[13.304,-5.34],[14.967,-4.683],[18.956,-1.578],[17.533,2.355],[15.784,4.168],[21.205,5.293],[26.26,-3.432],[0.511,-0.884],[-4.743,0.282],[-17.928,-2.345],[-14.15,-4.819],[-40.108,-1.502],[-46.155,18.497],[-16.877,1.729],[-39.041,-4.231],[3.127,0.731]],"o":[[-16.779,1.828],[-14.979,5.958],[-14.175,5.69],[-14.967,4.683],[-19.084,1.589],[-17.533,-2.355],[-19.922,-5.261],[-21.205,-5.293],[-5.697,0.745],[-0.511,0.884],[20.139,-1.197],[17.928,2.345],[33.493,11.404],[68.382,2.561],[15.41,-6.176],[45.762,-4.688],[19.28,2.089],[-34.623,-8.095]],"v":[[150.5,-27.5],[102.894,-14.635],[60.5,3.5],[17.585,19.584],[-32.5,29.5],[-87.475,27.817],[-137.5,17.5],[-198.247,-0.519],[-268.5,-5.5],[-277.83,-2.73],[-271.5,-1.5],[-214.009,0.488],[-165.5,11.5],[-56.5,34.5],[99.5,-7.5],[149.5,-23.5],[270.5,-2.5],[263.5,-7.5]],"c":true}],"h":1},{"t":118,"s":[{"i":[[32.231,-3.92],[0.847,0.063],[0.802,-0.153],[15.563,-6.633],[15.66,-6.204],[18.08,-4.088],[22.874,1.216],[17.68,4.327],[17.442,5.69],[19.665,2.914],[15.982,-3.689],[-1.19,0.033],[-8.396,-1.076],[-61.306,-2.852],[-45.703,18.617],[-16.958,1.967],[-38.284,-4.378],[5.905,1.387]],"o":[[-0.811,0.099],[-0.847,-0.063],[-17.09,3.264],[-15.563,6.633],[-14.806,5.866],[-18.08,4.088],[-18.837,-1.001],[-17.68,-4.327],[-12.357,-4.032],[-19.665,-2.915],[-21.824,5.038],[13.545,-0.377],[59.816,7.669],[69.136,3.216],[15.614,-6.36],[46.082,-5.346],[15.357,1.756],[-33.59,-7.888]],"v":[[151.5,-26.5],[148.993,-26.541],[146.5,-26.5],[97.927,-10.705],[51.5,9.5],[2.551,25.311],[-58.5,30.5],[-113.046,22.017],[-165.5,6.5],[-216.281,-5.291],[-272.5,-5.5],[-249.5,-3.5],[-218.5,-1.5],[-56.5,34.5],[100.5,-5.5],[149.5,-22.5],[270.5,-2.5],[263.5,-7.5]],"c":true}],"h":1},{"t":119,"s":[{"i":[[33.511,-4.861],[14.574,-6.026],[13.471,-5.541],[15.449,-4.31],[18.361,-1.065],[16.976,2.977],[15.535,4.227],[15.561,4.508],[18.209,1.008],[11.632,-3.659],[-3.887,0.093],[-39.552,-10.507],[-38.279,2.249],[-26.579,10.809],[-29.516,5.239],[-28.952,-6.902],[-2.677,2.677],[2.416,0.585]],"o":[[-16.231,2.354],[-14.574,6.026],[-13.841,5.694],[-15.449,4.31],[-19.561,1.134],[-16.976,-2.977],[-14.546,-3.958],[-15.561,-4.508],[-15.531,-0.86],[-15.104,4.751],[53.454,-1.281],[30.499,8.102],[37.847,-2.223],[26.461,-10.761],[32.215,-5.718],[5.953,1.419],[1.994,-1.994],[-33.044,-7.997]],"v":[[151.5,-25.5],[105.43,-11.89],[63.5,6.5],[19.89,21.971],[-30.5,30.5],[-85.019,27.021],[-133.5,15.5],[-178.253,1.788],[-228.5,-7.5],[-274.5,-5.5],[-252.5,-3.5],[-131.5,20.5],[-28.5,34.5],[64.5,10.5],[149.5,-21.5],[248.5,-7.5],[277.5,-2.5],[264.5,-7.5]],"c":true}],"h":1},{"t":120,"s":[{"i":[[32.409,-4.559],[8.299,-3.091],[8.313,-3.299],[25.541,-7.659],[34.127,3.044],[17.546,4.414],[17.339,5.606],[19.38,2.3],[16.55,-3.702],[-8.06,0.341],[-0.409,0.018],[-32.151,-9.948],[-37.723,-1.413],[-28.19,11.316],[-31.516,5.755],[-28.505,-6.679],[-2.263,2.263],[0.956,0.24]],"o":[[-9.492,1.335],[-8.299,3.091],[-23.709,9.409],[-25.541,7.659],[-19.476,-1.737],[-17.546,-4.414],[-13.93,-4.503],[-19.38,-2.3],[-10.649,2.382],[8.06,-0.341],[40.2,-1.767],[32.437,10.036],[42.43,1.589],[28.147,-11.298],[32.279,-5.894],[6.041,1.415],[1.731,-1.731],[-32.351,-8.132]],"v":[[153.5,-24.5],[127.116,-17.472],[102.5,-7.5],[30.314,20.339],[-57.5,29.5],[-112.603,19.902],[-164.5,4.5],[-216.535,-6.654],[-272.5,-5.5],[-269.793,-3.2],[-250.5,-4.5],[-146.5,14.5],[-42.5,34.5],[61.5,14.5],[150.5,-20.5],[248.5,-7.5],[277.5,-2.5],[265.5,-8.5]],"c":true}],"h":1},{"t":121,"s":[{"i":[[37.531,-4.213],[8.86,-3.315],[8.54,-3.616],[25.602,-6.724],[35.623,4.044],[17.488,4.572],[17.958,5.66],[19.912,2.459],[16.755,-4.805],[-3.529,-0.375],[-3.411,0.37],[-19.268,-3.442],[-19.228,-5.807],[-37.151,-2.392],[-28.884,10.668],[-31.086,5.677],[-32.378,-6.343],[13.082,3.078]],"o":[[-10.02,1.125],[-8.86,3.315],[-23.968,10.149],[-25.602,6.724],[-18.091,-2.053],[-17.488,-4.572],[-12.597,-3.97],[-19.912,-2.459],[-6.527,1.872],[3.529,0.375],[23.702,-2.573],[19.267,3.442],[31.631,9.552],[43.629,2.809],[29.106,-10.75],[38.757,-7.077],[7.654,1.5],[-34.402,-8.095]],"v":[[157.5,-22.5],[129.39,-15.368],[103.5,-4.5],[31.242,22.644],[-58.5,28.5],[-111.6,18.205],[-164.5,2.5],[-215.882,-8.581],[-273.5,-6.5],[-275.453,-3.319],[-262.5,-3.5],[-199.144,-1.285],[-142.5,13.5],[-40.5,34.5],[64.5,16.5],[153.5,-18.5],[264.5,-4.5],[270.5,-6.5]],"c":true}],"h":1},{"t":122,"s":[{"i":[[26.53,-0.652],[11.344,-3.985],[11.065,-4.678],[26.402,-5.74],[34.947,4.87],[17.222,5.093],[17.6,5.186],[20.468,1.57],[15.206,-4.088],[-3.283,-0.333],[-1.906,0.223],[-17.493,-1.3],[-13.517,-3.961],[-37.405,-5.923],[-31.921,9.84],[-32.928,8.554],[-31.216,-6.937],[13.463,4.66]],"o":[[-15.558,0.383],[-11.344,3.985],[-23.444,9.911],[-26.402,5.74],[-17.513,-2.441],[-17.222,-5.093],[-12.921,-3.808],[-20.468,-1.57],[-7.038,1.893],[3.283,0.333],[18.511,-2.159],[17.493,1.3],[36.032,10.557],[43.565,6.898],[33.462,-10.315],[34.832,-9.049],[4.617,1.026],[-26.922,-9.319]],"v":[[176.5,-21.5],[137.13,-14.221],[104.5,-0.5],[31.127,24.586],[-59.5,27.5],[-111.434,15.559],[-163.5,-0.5],[-216.787,-9.422],[-273.5,-6.5],[-276.209,-3.414],[-265.5,-3.5],[-210.755,-4.589],[-163.5,3.5],[-59.5,30.5],[55.5,22.5],[150.5,-14.5],[258.5,-6.5],[272.5,-6.5]],"c":true}],"h":1},{"t":123,"s":[{"i":[[27.61,-2.267],[9.79,-3.604],[10.361,-4.394],[22.23,-5.666],[28.819,2.253],[15.476,3.269],[14.761,4.567],[26.016,4.366],[27.404,-6.817],[-5.146,0.02],[-1.962,0.293],[-23.06,-4.187],[-20.92,-6.413],[-33.662,-2.685],[-56.165,17.25],[-28.566,-5.19],[-3.002,3.002],[-0.783,-0.221]],"o":[[-14.478,1.188],[-9.79,3.605],[-20.26,8.591],[-22.23,5.666],[-17.337,-1.355],[-15.476,-3.269],[-20.531,-6.353],[-26.016,-4.366],[-9.543,2.374],[5.145,-0.02],[27.841,-4.16],[23.06,4.187],[29.569,9.064],[78.45,6.257],[27.665,-8.497],[4.626,0.84],[2.041,-2.041],[-28.145,-7.956]],"v":[[175.5,-19.5],[140.411,-11.904],[111.5,0.5],[48.92,23.134],[-26.5,29.5],[-75.432,22.409],[-120.5,10.5],[-191.346,-7.877],[-272.5,-6.5],[-274.629,-3.5],[-259.5,-4.5],[-183.809,-2.93],[-118.5,14.5],[-25.5,33.5],[150.5,-11.5],[233.5,-11.5],[276.5,-3.5],[267.5,-8.5]],"c":true}],"h":1},{"t":124,"s":[{"i":[[29.442,-2.708],[14.132,-5.799],[14.099,-5.207],[16.917,-3.383],[18.082,0.795],[16.194,3.408],[14.905,4.518],[15.319,4.621],[18.657,1.251],[12.007,-0.932],[8.403,-2.048],[-13.996,1.945],[-38.984,-12.017],[-33.039,-3.75],[-27.962,8.668],[-29.067,8.323],[-29.668,-5.953],[15.797,5.349]],"o":[[-17.375,1.598],[-14.132,5.799],[-14.249,5.262],[-16.917,3.383],[-19.318,-0.849],[-16.194,-3.408],[-14.068,-4.264],[-15.319,-4.621],[-11.57,-0.776],[-12.007,0.932],[-22.674,5.527],[49.029,-6.812],[30.203,9.311],[36.991,4.199],[29.206,-9.053],[29.528,-8.455],[9.241,1.854],[-26.042,-8.818]],"v":[[178.5,-17.5],[132.043,-5.207],[90.5,12.5],[43.375,26.043],[-9.5,30.5],[-62.31,23.751],[-108.5,11.5],[-152.058,-2.76],[-202.5,-12.5],[-238.876,-12.118],[-270.5,-7.5],[-249.5,-6.5],[-122.5,10.5],[-29.5,32.5],[72.5,23.5],[155.5,-9.5],[254.5,-7.5],[270.5,-7.5]],"c":true}],"h":1},{"t":125,"s":[{"i":[[18.99,-1.404],[15.293,-5.647],[16.269,-6.039],[18.047,-2.974],[18.738,1.494],[15.968,3.768],[16.714,5.22],[16.655,4.323],[20.306,0],[10.758,-1.46],[7.24,-2.162],[-5.283,0.895],[-30.11,-8.655],[-39.209,-7.233],[-35.097,10.88],[-39.69,2.661],[-18.494,-3.36],[12.187,5.278]],"o":[[-18.558,1.372],[-15.293,5.647],[-15.076,5.596],[-18.047,2.974],[-21.415,-1.708],[-15.968,-3.768],[-15.072,-4.707],[-16.655,-4.323],[-8.73,0],[-10.757,1.46],[-15.115,4.512],[34.734,-5.887],[38.63,11.104],[42.149,7.776],[36.019,-11.165],[22.007,-1.476],[7.59,1.379],[-20.466,-8.863]],"v":[[192.5,-16.5],[142.783,-5],[96.5,13.5],[46.247,26.818],[-9.5,29.5],[-64.025,21.134],[-111.5,7.5],[-158.574,-7.03],[-213.5,-14.5],[-244.117,-12.121],[-272.5,-6.5],[-265.5,-4.5],[-154.5,-2.5],[-43.5,28.5],[81.5,23.5],[187.5,-12.5],[247.5,-8.5],[273.5,-6.5]],"c":true}],"h":1},{"t":126,"s":[{"i":[[40.096,-3.135],[9.293,-1.309],[6.943,-2.227],[-3.745,0.23],[-2.69,0.54],[-22.01,-1.157],[-18.204,-5.737],[-21.648,-5.998],[-25.29,-2.037],[-21.923,5.177],[-20.641,8.601],[-26.448,1.318],[-16.906,-3.19],[15.151,4.698],[29.488,-2.146],[31.697,-10.869],[44.322,4.757],[32.587,9.86]],"o":[[-6.885,0.538],[-9.293,1.309],[-7.673,2.462],[3.745,-0.23],[21.756,-4.365],[22.01,1.157],[22.118,6.971],[21.648,5.998],[28.668,2.308],[21.923,-5.177],[16.034,-6.681],[18.482,-0.921],[8.893,1.678],[-22.554,-6.994],[-36.273,2.64],[-30.415,10.43],[-37.132,-3.985],[-34.64,-10.481]],"v":[[-222.5,-14.5],[-247.956,-11.767],[-273.5,-6.5],[-276.272,-3.749],[-263.5,-5.5],[-196.836,-10.077],[-135.5,0.5],[-70.878,20.701],[-1.5,33.5],[73.02,28.182],[135.5,6.5],[200.5,-11.5],[258.5,-6.5],[269.5,-7.5],[194.5,-15.5],[98.5,15.5],[-11.5,28.5],[-114.5,4.5]],"c":true}],"h":1},{"t":127,"s":[{"i":[[4.605,-0.378],[8.025,-1.195],[7.185,-1.669],[-0.46,-0.949],[-8.231,1.671],[-7.618,1.48],[-7.617,0.473],[-28.356,-8.731],[-28.145,-6.339],[-22.457,0.03],[-17.754,4.928],[-66.461,-7.188],[17.267,5.569],[18.369,-0.124],[30.564,-11.655],[39.273,2.529],[31.057,9.556],[35.968,1.992]],"o":[[-6.716,0.552],[-8.025,1.195],[-8.072,1.875],[0.46,0.949],[7.911,-1.607],[7.618,-1.48],[36.43,-2.263],[28.356,8.731],[22.418,5.049],[22.457,-0.03],[50.908,-14.129],[9.709,1.05],[-18.006,-5.807],[-38.685,0.261],[-30.19,11.513],[-38.883,-2.504],[-31.825,-9.792],[-10.753,-0.596]],"v":[[-220.5,-15.5],[-243.149,-12.838],[-266.5,-8.5],[-277.727,-3.84],[-264.5,-4.5],[-241.279,-9.35],[-218.5,-12.5],[-123.287,0.549],[-40.5,26.5],[27.998,33.982],[89.5,26.5],[239.5,-8.5],[271.5,-7.5],[213.5,-14.5],[117.5,12.5],[13.5,29.5],[-89.5,9.5],[-187.5,-16.5]],"c":true}],"h":1},{"t":128,"s":[{"i":[[37.559,-2.22],[10.161,-1.344],[9.399,-2.094],[3.068,-1.719],[-8.509,1.595],[-20.466,1.657],[-20.106,-5.384],[-18.833,-6.101],[-18.698,-4.248],[-21.935,-0.184],[-19.259,5.189],[-22.86,7.725],[-31.87,-3.552],[9.635,5.506],[4.949,0.55],[41.097,-13.65],[45.858,6.392],[32.361,9.791]],"o":[[-8.954,0.529],[-10.162,1.344],[-3.235,0.721],[-3.069,1.719],[20.029,-3.755],[20.466,-1.657],[19.971,5.348],[18.833,6.101],[24,5.453],[21.935,0.184],[24.69,-6.652],[22.86,-7.725],[6.668,0.743],[-6.629,-3.788],[-58.966,-6.547],[-30.553,10.148],[-35.841,-4.995],[-33.017,-9.99]],"v":[[-204.5,-17.5],[-233.666,-14.673],[-263.5,-9.5],[-275.808,-4.763],[-270.5,-3.5],[-209.558,-12.855],[-148.5,-8.5],[-90.545,9.325],[-34.5,25.5],[34.556,33.981],[96.5,26.5],[165.115,1.847],[244.5,-7.5],[274.5,-6.5],[244.5,-11.5],[110.5,17.5],[1.5,27.5],[-99.5,3.5]],"c":true}],"h":1},{"t":129,"s":[{"i":[[53.045,-4.148],[11.611,-2.046],[9.613,-3.037],[5.103,-1.466],[-1.803,-1.803],[-5.454,1.027],[-2.514,0.56],[-4.087,1.102],[-2.255,0.389],[-46.86,-14.769],[-36.893,-3.6],[-31.379,11.046],[-51.003,-5.6],[0.029,3.091],[-2.596,-0.47],[29.538,-12.09],[41.658,-1.44],[32.942,9.967]],"o":[[-9.945,0.777],[-11.611,2.046],[11.608,-3.668],[-5.103,1.466],[0.668,0.668],[5.454,-1.027],[5.395,-1.202],[4.087,-1.102],[62.415,-10.761],[29.946,9.438],[38.498,3.757],[42.323,-14.898],[3.888,0.427],[-0.011,-1.214],[-39.215,-7.106],[-35.088,14.362],[-46.654,1.613],[-42.783,-12.945]],"v":[[-205.5,-18.5],[-238.749,-14.195],[-271.5,-6.5],[-267.646,-8.603],[-278.5,-2.5],[-267.385,-3.579],[-253.5,-6.5],[-239.145,-10.109],[-229.5,-12.5],[-76.5,10.5],[23.5,33.5],[129.5,18.5],[253.5,-5.5],[277.5,-4.5],[264.5,-8.5],[160.5,2.5],[49.5,30.5],[-67.5,9.5]],"c":true}],"h":1},{"t":130,"s":[{"i":[[50.493,-1.001],[14.25,-2.355],[12.086,-3.322],[1.775,-1.41],[-6.657,1.067],[-20.486,3.143],[-21.311,-4.736],[-19.014,-6.274],[-19.313,-5.099],[-22.223,-1.63],[-21.654,4.45],[-22.697,7.881],[-31.715,-1.97],[15.977,4.793],[7.729,-0.025],[31.113,-11.162],[36.035,2.734],[29.804,9.137]],"o":[[-12.916,0.256],[-14.25,2.355],[-1.555,0.428],[-1.776,1.41],[19.743,-3.162],[20.486,-3.143],[21.629,4.806],[19.014,6.274],[22.454,5.929],[22.223,1.63],[26.498,-5.444],[22.697,-7.881],[2.202,0.137],[-9.796,-2.939],[-35.3,0.113],[-31.258,11.214],[-37.741,-2.863],[-41.826,-12.822]],"v":[[-187.5,-20.5],[-229.123,-16.3],[-269.5,-7.5],[-276.659,-3.88],[-271.5,-2.5],[-211.176,-13.924],[-148.5,-13.5],[-88.263,3.78],[-31.5,21.5],[35.6,33.284],[101.5,29.5],[172.087,6.439],[250.5,-5.5],[273.5,-6.5],[232.5,-10.5],[139.5,14.5],[38.5,29.5],[-59.5,9.5]],"c":true}],"h":1},{"t":131,"s":[{"i":[[52.096,-4.074],[13.578,-2.705],[11.44,-3.223],[2.383,-0.624],[-0.675,-1.465],[-3.674,0.72],[9.352,-1.462],[-18.138,3.621],[-20.236,-1.333],[-17.919,-5.524],[-51.141,-6.018],[-29.646,9.122],[-52.54,-2.618],[17.345,4.127],[11.681,-0.9],[29.391,-8.96],[33.486,3.801],[27.708,8.813]],"o":[[-12.248,0.958],[-13.578,2.705],[-0.144,0.04],[-2.383,0.624],[0.655,1.42],[3.674,-0.72],[18.214,-2.848],[18.138,-3.621],[20.399,1.344],[45.065,13.892],[37.818,4.45],[41.747,-12.845],[4.024,0.201],[-10.746,-2.557],[-32.522,2.505],[-29.071,8.862],[-35.123,-3.987],[-40.359,-12.836]],"v":[[-191.5,-21.5],[-231.106,-15.698],[-269.5,-6.5],[-274.615,-5.568],[-278.5,-2.5],[-267.994,-2.531],[-272.5,-2.5],[-218.517,-13.635],[-161.5,-18.5],[-106.5,-4.5],[32.5,32.5],[135.5,22.5],[253.5,-4.5],[272.5,-6.5],[221.5,-8.5],[134.5,19.5],[32.5,28.5],[-60.5,6.5]],"c":true}],"h":1},{"t":132,"s":[{"i":[[42.302,-3.622],[7.423,-1.271],[9.523,-2.251],[7.213,-1.437],[4.905,-2.248],[-7.138,0.889],[-2.233,0.554],[-13.74,2.701],[-14.592,-0.14],[-11.047,-2.851],[-11.174,-3.463],[-59.93,-4.78],[-31.586,13.784],[-33.362,0.179],[12.746,5.14],[7.542,-0.549],[21.774,-7.388],[65.416,20.579]],"o":[[-7.784,0.666],[-7.423,1.271],[-4.243,1.003],[-7.213,1.437],[-6.783,3.109],[7.138,-0.889],[13.447,-3.338],[13.74,-2.701],[13.641,0.132],[11.047,2.851],[49.696,15.405],[41.373,3.3],[21.698,-9.469],[7.912,-0.043],[-9.698,-3.911],[-31.387,2.285],[-78.471,26.625],[-35.612,-11.203]],"v":[[-190.5,-22.5],[-212.695,-19.688],[-237.5,-14.5],[-256.004,-10.934],[-275.5,-5.5],[-270.262,-3.253],[-251.5,-6.5],[-210.858,-16.109],[-168.5,-20.5],[-132.15,-15.499],[-99.5,-5.5],[56.5,33.5],[165.5,14.5],[245.5,-3.5],[274.5,-5.5],[228.5,-7.5],[146.5,18.5],[-81.5,-3.5]],"c":true}],"h":1},{"t":133,"s":[{"i":[[38.014,-2.973],[12.729,-2.731],[12.716,-3.031],[5.802,-1.628],[-1.243,-1.242],[-6.809,1.899],[-1.737,0.431],[-16.504,3.066],[-17.093,-1.962],[-15.258,-4.765],[-86.14,27.298],[-36.12,2],[-7.151,-0.268],[16.674,3.159],[11.594,-0.364],[2.129,-0.556],[17.949,-6.198],[63.441,20.105]],"o":[[-13.367,1.046],[-12.729,2.731],[-1.036,0.247],[-5.802,1.628],[2.026,2.026],[6.809,-1.899],[14.894,-3.697],[16.503,-3.066],[15.418,1.769],[69.458,21.69],[32.458,-10.286],[3.65,-0.202],[7.98,0.299],[-6.045,-1.145],[-15.923,0.499],[-25.414,6.643],[-80.237,27.708],[-35.301,-11.187]],"v":[[-178.5,-24.5],[-217.489,-18.489],[-255.5,-9.5],[-268.709,-6.247],[-278.5,-1.5],[-262.783,-2.657],[-247.5,-7.5],[-200.149,-18.744],[-149.5,-21.5],[-102.5,-8.5],[146.5,25.5],[239.5,-2.5],[259.5,-2.5],[270.5,-5.5],[241.5,-6.5],[206.5,-1.5],[148.5,20.5],[-80.5,-5.5]],"c":true}],"h":1},{"t":134,"s":[{"i":[[2.114,-0.042],[9.795,-1.697],[11.531,-2.989],[8.408,-1.894],[7.682,-2.431],[3.452,-0.874],[-0.766,-1.733],[-0.317,0.041],[-46.14,-3.544],[-23.505,-7.273],[-78.268,24.127],[-16.26,5.605],[-17.996,0.897],[-2.313,2.313],[-0.087,-0.002],[39.071,-11.977],[33.704,5.672],[66.059,10.792]],"o":[[-11.289,0.224],[-9.795,1.697],[-7.688,1.993],[-8.408,1.894],[7.043,-2.229],[-3.452,0.874],[1.142,2.584],[39.72,-5.195],[23.467,1.802],[63.33,19.595],[13.465,-4.151],[15.955,-5.5],[5.356,-0.267],[3.502,-3.502],[-49.182,-1.178],[-30.667,9.401],[-74.929,-12.61],[-6.514,-1.064]],"v":[[-161.5,-26.5],[-192.319,-23.575],[-223.5,-16.5],[-248.004,-10.828],[-272.5,-4.5],[-270.792,-5.971],[-278.5,-1.5],[-271.5,-1.5],[-151.5,-23.5],[-79.5,-4.5],[149.5,27.5],[193.5,9.5],[244.5,-1.5],[277.5,-1.5],[260.5,-5.5],[148.5,22.5],[41.5,25.5],[-146.5,-26.5]],"c":true}],"h":1},{"t":135,"s":[{"i":[[31.424,-2.58],[9.184,-1.669],[12.995,-3.48],[8.852,-2.061],[6.99,-2.255],[-5.307,0.267],[-0.835,0.175],[-40.89,-4.089],[-23.348,-7.051],[-23.589,-6.951],[-52.028,15.273],[-16.508,5.611],[-18.135,1.099],[-2.04,4.183],[0.897,0.095],[32.237,-9.338],[45.498,13.382],[23.476,7.183]],"o":[[-10.269,0.843],[-9.184,1.669],[-5.603,1.5],[-8.852,2.061],[-10.063,3.245],[5.307,-0.267],[37.034,-7.79],[24.007,2.401],[22.968,6.936],[42.667,12.573],[14.132,-4.148],[16.561,-5.629],[8.012,-0.486],[1.395,-2.861],[-54.262,-5.769],[-54.927,15.91],[-22.806,-6.708],[-29.251,-8.95]],"v":[[-165.5,-27.5],[-193.455,-23.978],[-225.5,-16.5],[-248.459,-11.066],[-273.5,-4.5],[-275.674,-0.934],[-261.5,-2.5],[-146.5,-24.5],[-75.5,-5.5],[-6.5,15.5],[150.5,29.5],[195.5,11.5],[247.5,-0.5],[277.5,-1.5],[270.5,-4.5],[149.5,24.5],[-6.5,11.5],[-76.5,-9.5]],"c":true}],"h":1},{"t":136,"s":[{"i":[[42.499,0.765],[11.154,-2.315],[10.734,-2.95],[4.847,-1.257],[7.341,-1.799],[7.285,-1.876],[-0.536,-1.155],[-7.506,1.678],[-1.058,0.264],[-35.056,-1.328],[-22.874,-6.843],[-23.333,-7.219],[-54.264,12.688],[-34.805,5.201],[-2.359,2.521],[2.987,-0.042],[32.934,-8.399],[45.092,13.797]],"o":[[-11.649,-0.209],[-11.154,2.315],[-4.272,1.174],[-4.847,1.257],[-1.397,0.343],[-7.285,1.876],[0.917,1.977],[7.506,-1.678],[30.935,-7.711],[23.427,0.887],[23.375,6.993],[42.187,13.053],[27.958,-6.537],[5.176,-0.774],[2.67,-2.853],[-46.928,0.66],[-53.117,13.547],[-45.254,-13.847]],"v":[[-150.5,-29.5],[-184.687,-25.87],[-217.5,-17.5],[-230.698,-13.969],[-248.5,-9.5],[-264.949,-5.609],[-278.5,-0.5],[-262.605,-1.32],[-246.5,-5.5],[-149.5,-26.5],[-76.5,-9.5],[-7.5,12.5],[148.5,31.5],[238.5,1.5],[277.5,-0.5],[261.5,-4.5],[149.5,26.5],[-6.5,9.5]],"c":true}],"h":1},{"t":137,"s":[{"i":[[0.212,-0.008],[17.76,-5.123],[19.103,-3.732],[4.085,-1.664],[-10.691,0.922],[-4.453,0.951],[-3.49,0.879],[-34.757,-0.632],[-23.425,-6.681],[-50.582,-9.546],[-27.028,5.593],[-19.948,6.275],[-16.055,1.034],[18.373,1.525],[12.095,-3.784],[18.312,-3.79],[26.001,4.809],[74.777,8.413]],"o":[[-19.857,0.774],[-17.76,5.123],[-1.351,0.264],[-4.085,1.664],[3.7,-0.319],[4.453,-0.95],[30.941,-7.794],[23.843,0.434],[47.827,13.641],[25.907,4.889],[19.615,-4.059],[9.473,-2.98],[9.311,-0.6],[-21.499,-1.784],[-22.561,7.058],[-26.79,5.544],[-75.528,-13.969],[-0.973,-0.109]],"v":[[-152.5,-30.5],[-208.065,-20.218],[-262.5,-5.5],[-275.032,-1.61],[-269.5,0.5],[-256.842,-1.58],[-244.5,-4.5],[-148.5,-27.5],[-74.5,-11.5],[65.5,29.5],[149.5,32.5],[208.5,10.5],[259.5,0.5],[270.5,-3.5],[209.5,6.5],[149.5,28.5],[65.5,25.5],[-150.5,-31.5]],"c":true}],"h":1},{"t":138,"s":[{"i":[[24.689,-1.518],[10.44,-2.664],[12.212,-3.667],[18.508,-4.552],[-7.137,0.41],[-13.881,4.192],[-21.46,0.205],[-23.772,-6.702],[-51.674,-10.668],[-26.592,5.348],[-10.289,3.813],[-28.011,4.587],[1.04,2.143],[6.643,-1.088],[9.245,-3.027],[16.937,-3.18],[24.909,5.289],[47.589,13.26]],"o":[[-11.028,0.678],[-10.44,2.664],[-14.122,4.241],[-5.202,1.279],[19.727,-1.134],[20.786,-6.277],[26.436,-0.253],[47.539,13.402],[24.391,5.036],[8.855,-1.781],[25.869,-9.587],[2.509,-0.411],[-1.929,-3.974],[-15.279,2.502],[-15.324,5.017],[-26.822,5.036],[-51.873,-11.014],[-22.918,-6.386]],"v":[[-151.5,-31.5],[-183.112,-26.242],[-216.5,-16.5],[-271.5,-3.5],[-273.5,1.5],[-212.5,-12.5],[-148.5,-28.5],[-72.5,-13.5],[68.5,27.5],[151.5,33.5],[180.5,22.5],[243.5,4.5],[278.5,-1.5],[242.5,0.5],[209.5,8.5],[149.5,29.5],[66.5,23.5],[-74.5,-17.5]],"c":true}],"h":1},{"t":139,"s":[{"i":[[26.489,-3.25],[14.986,-4.908],[16.371,-3.444],[5.951,-0.745],[2.567,-1.467],[-2.526,0.596],[-29.64,2.568],[-23.69,-6.331],[-50.611,-11.628],[-27.354,3.46],[-19.04,5.99],[-18.271,2.77],[1.889,3.548],[0.929,-0.016],[16.022,-5.096],[19.961,-2.151],[23.68,5.441],[47.619,12.625]],"o":[[-15.685,1.925],[-14.986,4.908],[-2.63,0.553],[-5.951,0.745],[-8.418,4.81],[31.544,-7.44],[26.677,-2.311],[48.59,12.986],[24.663,5.667],[19.526,-2.47],[13.705,-4.312],[-2.346,0.356],[-0.757,-1.422],[-23.024,0.408],[-17.818,5.667],[-29.13,3.138],[-51.192,-11.762],[-22.433,-5.947]],"v":[[-154.5,-31.5],[-199.986,-20.14],[-246.5,-6.5],[-261.047,-4.686],[-275.5,-1.5],[-243.5,-3.5],[-151.5,-28.5],[-73.5,-16.5],[66.5,25.5],[148.5,34.5],[210.5,13.5],[270.5,1.5],[278.5,-1.5],[269.5,-2.5],[209.5,10.5],[146.5,30.5],[65.5,21.5],[-74.5,-20.5]],"c":true}],"h":1},{"t":140,"s":[{"i":[[0.018,-0.002],[10.308,-3.294],[12.056,-3.877],[19.835,-3.771],[-7.791,1.164],[-10.117,3.218],[-20.851,1.068],[-23.641,-6.054],[-48.823,-12.298],[-28.037,3.113],[-16.552,5.351],[-16.967,2.154],[1.401,2.964],[5.967,-1.22],[8.456,-2.689],[17.503,-1.943],[23.54,5.588],[83.652,2.6]],"o":[[-10.713,0.948],[-10.308,3.294],[-15.121,4.862],[-16.463,3.13],[17.66,-2.639],[19.214,-6.111],[25.528,-1.308],[48.676,12.465],[24.557,6.185],[19.217,-2.134],[12.483,-4.036],[1.933,-0.245],[-1.778,-3.762],[-13.49,2.759],[-15.595,4.96],[-26.155,2.904],[-73.112,-17.356],[-0.782,-0.024]],"v":[[-149.5,-32.5],[-180.492,-25.697],[-213.5,-14.5],[-270.5,-1.5],[-259.5,1.5],[-210.5,-11.5],[-146.5,-29.5],[-68.5,-17.5],[70.5,23.5],[149.5,34.5],[212.5,15.5],[261.5,3.5],[278.5,-0.5],[243.5,2.5],[211.5,11.5],[149.5,30.5],[69.5,20.5],[-148.5,-33.5]],"c":true}],"h":1},{"t":141,"s":[{"i":[[27.51,-3.692],[24.969,-7.913],[19.44,-3.088],[-7.202,0.767],[-14.929,5.012],[-21.355,1.333],[-24.709,-5.853],[-79.139,-7.22],[-0.317,0.02],[-22.037,6.945],[-12.984,2.853],[-6.353,2.535],[2.81,2.81],[4.215,-0.573],[8.572,-2.756],[19.988,-1.094],[23.621,5.962],[48.846,11.897]],"o":[[-21.815,2.927],[-14.256,4.518],[-18.109,2.876],[21.129,-2.25],[22.008,-7.388],[27.405,-1.711],[72.012,17.058],[0.316,0.029],[20.134,-1.257],[7.877,-2.483],[6.007,-1.32],[-9.813,3.915],[-0.678,-0.678],[-16.426,2.233],[-19.868,6.389],[-26.14,1.43],[-49.572,-12.512],[-24.379,-5.938]],"v":[[-148.5,-32.5],[-211.5,-13.5],[-269.5,-1.5],[-259.5,1.5],[-208.5,-10.5],[-144.5,-29.5],[-66.5,-18.5],[148.5,34.5],[149.5,34.5],[213.5,16.5],[245.5,7.5],[275.5,2.5],[278.5,-0.5],[259.5,0.5],[211.5,12.5],[148.5,30.5],[71.5,18.5],[-67.5,-22.5]],"c":true}],"h":1},{"t":142,"s":[{"i":[[29.607,-3.758],[10.507,-3.583],[14.523,-4.468],[8.646,-2.08],[8.671,-0.913],[-1.526,-3.094],[-5.51,1.066],[-30.524,5.78],[-25.76,-6.036],[-47.74,-12.785],[-26.677,2.582],[-21.064,6.433],[-16.482,2.729],[16.96,-0.98],[4.048,-0.938],[34.576,-3.18],[22.627,5.999],[49.622,11.577]],"o":[[-9.448,1.2],[-10.507,3.583],[-5.746,1.768],[-8.646,2.08],[-1.886,0.199],[1.783,3.615],[36.465,-7.054],[28.985,-5.488],[49.516,11.603],[22.454,6.013],[19.681,-1.905],[10.857,-3.316],[7.73,-1.28],[-6.68,0.386],[-31.789,7.368],[-27.078,2.49],[-50.18,-13.304],[-25.097,-5.855]],"v":[[-145.5,-32.5],[-174.694,-24.952],[-211.5,-12.5],[-233.807,-6.359],[-260.5,-1.5],[-277.5,2.5],[-241.5,0.5],[-149.5,-28.5],[-61.5,-19.5],[76.5,21.5],[154.5,33.5],[215.5,16.5],[263.5,5.5],[270.5,-0.5],[245.5,4.5],[153.5,29.5],[75.5,17.5],[-63.5,-23.5]],"c":true}],"h":1},{"t":143,"s":[{"i":[[78.293,-5.041],[5.904,-1.841],[7.947,-2.965],[10.669,-3.416],[11.001,-1.857],[8.276,-0.729],[-0.159,-1.57],[-8.966,0.861],[0.111,-0.019],[-17.815,6.879],[-24.692,-0.437],[-62.309,-16.82],[-22.422,0.336],[-19.238,5.777],[-16.464,3.316],[9.3,-1.536],[36.821,-0.295],[22.307,6.07]],"o":[[-10.436,0.672],[-5.904,1.841],[-9.323,3.479],[-10.669,3.416],[-3.053,0.515],[-8.276,0.729],[0.245,2.425],[8.966,-0.861],[23.048,-3.921],[17.815,-6.879],[73.49,1.3],[22.462,6.064],[20.351,-0.305],[11.591,-3.481],[16.922,-3.408],[-39.436,6.511],[-23.488,0.188],[-65.069,-17.706]],"v":[[-135.5,-32.5],[-158.367,-28.72],[-177.5,-21.5],[-207.742,-10.784],[-240.5,-2.5],[-260.909,-0.791],[-276.5,2.5],[-258.233,3.805],[-240.5,1.5],[-182.234,-17.268],[-121.5,-29.5],[80.5,19.5],[150.5,33.5],[215.5,18.5],[271.5,4.5],[261.5,1.5],[149.5,29.5],[77.5,15.5]],"c":true}],"h":1},{"t":144,"s":[{"i":[[51.68,-3.328],[4.14,-0.216],[3.592,-0.888],[15.081,-5.789],[17.469,-2.579],[6.264,-0.306],[3.568,-1.278],[-9.038,0.137],[-3.704,0.548],[-50.672,-0.18],[-60.92,-17.544],[-23.594,-0.199],[-21.178,6.241],[-15.974,4.058],[1.84,-0.443],[34.483,0.627],[21.409,6.095],[20.476,6.513]],"o":[[-3.849,0.248],[-4.14,0.216],[-13.207,3.264],[-15.081,5.789],[-3.377,0.498],[-6.264,0.306],[-5.856,2.096],[9.038,-0.137],[46.302,-6.858],[73.197,0.26],[21.354,6.15],[20.927,0.176],[12.787,-3.768],[22.728,-5.774],[-32.274,7.777],[-23.431,-0.426],[-22.474,-6.398],[-39.799,-12.659]],"v":[[-126.5,-32.5],[-138.692,-31.98],[-150.5,-30.5],[-192.804,-15.486],[-241.5,-1.5],[-257.357,-0.584],[-273.5,1.5],[-263.67,3.984],[-239.5,2.5],[-114.5,-29.5],[84.5,17.5],[151.5,32.5],[216.5,18.5],[272.5,4.5],[246.5,5.5],[150.5,28.5],[81.5,13.5],[16.5,-6.5]],"c":true}],"h":1},{"t":145,"s":[{"i":[[73.523,-4.734],[12.93,-4.584],[17.517,-5.39],[8.998,-1.644],[8.264,-0.349],[4.475,-0.24],[-5.302,-1.898],[-5.655,0.337],[-4.897,0.614],[-15.465,6.098],[-13.54,3.404],[-50.898,-15.69],[-40.251,-3.054],[-25.952,6.992],[-16.76,4.335],[6.621,-1.281],[37.596,1.742],[21.348,6.243]],"o":[[-19.762,1.273],[-12.93,4.584],[-6.743,2.075],[-8.998,1.644],[-3.403,0.143],[-4.475,0.24],[5.482,1.963],[5.655,-0.337],[17.602,-2.204],[15.465,-6.098],[60.009,-15.084],[41.549,12.808],[28.218,2.141],[14.58,-3.928],[15.753,-4.075],[-36.891,7.137],[-21.702,-1.006],[-61.705,-18.045]],"v":[[-117.5,-32.5],[-163.684,-23.088],[-206.5,-7.5],[-230.859,-1.705],[-257.5,1.5],[-272.028,1.684],[-273.5,4.5],[-256.562,6.432],[-240.5,4.5],[-190.953,-9.601],[-147.5,-25.5],[24.5,-3.5],[147.5,30.5],[222.5,17.5],[273.5,5.5],[262.5,3.5],[150.5,27.5],[84.5,11.5]],"c":true}],"h":1},{"t":146,"s":[{"i":[[73.856,-4.756],[0.337,0.002],[0.326,0.014],[14.577,-5.705],[17.38,-5.092],[9.687,-1.625],[8.375,-0.072],[-15.524,-2.81],[-32.466,8.834],[-11.794,0.175],[-55.335,-17.026],[-20.384,-1.382],[-18.96,4.786],[-13.857,3.721],[1.403,3.256],[2.095,-0.264],[42.014,4.066],[20.073,6.153]],"o":[[-0.326,0.021],[-0.337,-0.002],[-20.311,-0.91],[-14.577,5.705],[-4.879,1.429],[-9.687,1.625],[-8.661,0.075],[50.607,9.159],[13.225,-3.599],[71.751,-1.063],[20.329,6.255],[22.554,1.529],[11.091,-2.799],[-10.556,2.835],[-1.258,-2.92],[-38.59,4.866],[-20.74,-2.007],[-58.504,-17.934]],"v":[[-108.5,-32.5],[-109.5,-32.473],[-110.5,-32.5],[-160.699,-23.502],[-206.5,-5.5],[-229.878,-0.482],[-258.5,2.5],[-269.5,5.5],[-146.5,-23.5],[-98.5,-29.5],[88.5,14.5],[151.5,29.5],[218.5,19.5],[272.5,5.5],[279.5,2.5],[272.5,2.5],[148.5,25.5],[86.5,9.5]],"c":true}],"h":1},{"t":147,"s":[{"i":[[70.237,-4.523],[0.337,0.002],[0.326,0.014],[24.031,-9.275],[28.729,-0.074],[6.258,-0.327],[-13.631,-1.684],[-18.552,6.416],[-18.007,5.644],[-39.242,-7.883],[-30.79,-9.456],[-11.853,-3.787],[-11.624,-1.177],[-25.775,6.806],[-11.675,4.098],[4.879,-1.017],[37.66,1.653],[20.255,6.129]],"o":[[-0.326,0.021],[-0.337,-0.002],[-26.148,-1.172],[-24.031,9.275],[-2.598,0.006],[-6.258,0.327],[26.786,3.309],[18.552,-6.416],[38.245,-11.987],[39.241,7.883],[11.962,3.674],[11.853,3.787],[31.088,3.147],[9.916,-2.618],[13.339,-4.682],[-34.503,7.19],[-20.643,-0.906],[-58.414,-17.674]],"v":[[-99.5,-32.5],[-100.5,-32.473],[-101.5,-32.5],[-175.064,-15.434],[-252.5,3.5],[-271.672,3.742],[-266.5,6.5],[-200.416,-0.785],[-147.5,-21.5],[-28.909,-23.082],[78.5,7.5],[114.254,19.373],[149.5,27.5],[229.5,16.5],[274.5,5.5],[263.5,4.5],[155.5,24.5],[93.5,8.5]],"c":true}],"h":1},{"t":148,"s":[{"i":[[67.984,-4.377],[0.337,0.002],[0.326,0.014],[21.77,-8.796],[25.623,-1.994],[6.156,0.077],[7.493,0.307],[2.45,0.396],[0.644,-1.361],[-0.947,-0.104],[-35.715,13.895],[-55.935,-17.791],[-34.095,-6.212],[-21.987,5.231],[-15.692,5.094],[7.043,-1.506],[40.283,4.29],[19.003,6.022]],"o":[[-0.326,0.021],[-0.337,-0.002],[-26.297,-1.179],[-21.77,8.796],[-7.882,0.614],[-6.156,-0.077],[5.442,0.223],[-2.45,-0.396],[-1.751,3.705],[47.339,5.217],[65.837,-25.614],[30.704,9.766],[23.816,4.339],[15.78,-3.754],[14.585,-4.735],[-34.116,7.294],[-18.99,-2.023],[-54.845,-17.381]],"v":[[-90.5,-32.5],[-91.5,-32.473],[-92.5,-32.5],[-162.505,-16.879],[-231.5,3.5],[-251.792,4.19],[-271.5,3.5],[-269.435,2.647],[-276.5,3.5],[-263.5,7.5],[-150.5,-17.5],[54.5,-2.5],[149.5,25.5],[222.5,18.5],[273.5,6.5],[263.5,4.5],[152.5,22.5],[94.5,6.5]],"c":true}],"h":1},{"t":149,"s":[{"i":[[65.468,-4.215],[11.428,-1.963],[8.904,-3.35],[14.522,-5.089],[20.91,0],[8.736,0.553],[-5.164,-3.214],[-7.46,-0.254],[-2.806,0.103],[-29.713,10.1],[-38.102,-5.146],[-47.815,-14.658],[-16.423,-1.53],[-21.481,4.903],[-10.341,3.58],[3.954,-0.811],[31.65,0.069],[24.489,7.662]],"o":[[-12.385,0.797],[-11.428,1.963],[-15,5.644],[-14.522,5.089],[-1.219,0],[-8.736,-0.554],[3.353,2.087],[7.46,0.254],[40.643,-1.495],[28.815,-9.794],[57.437,7.757],[15.284,4.685],[28.571,2.662],[9.359,-2.136],[12.469,-4.316],[-31.954,6.557],[-29.826,-0.065],[-53.466,-16.727]],"v":[[-81.5,-32.5],[-117.61,-28.414],[-148.5,-20.5],[-191.068,-3.267],[-242.5,5.5],[-262.788,3.59],[-273.5,6.5],[-255.09,9.643],[-237.5,9.5],[-143.5,-17.5],[-36.5,-26.5],[108.5,11.5],[156.5,24.5],[236.5,16.5],[275.5,6.5],[266.5,4.5],[171.5,21.5],[97.5,4.5]],"c":true}],"h":1},{"t":150,"s":[{"i":[[64.894,-4.179],[7.242,-0.877],[7.666,-1.887],[17.885,-6.951],[26.011,0.083],[9.311,0.654],[-0.015,-1.618],[-5.235,-0.57],[-2.047,-0.171],[-16.189,4.251],[-17.342,6.904],[-31.655,0.469],[-48.165,-14.902],[-17.075,-2.936],[-31.214,9.534],[4.571,-1.08],[22.026,-1.393],[24.224,7.426]],"o":[[-9.368,0.603],[-7.242,0.878],[-21.45,5.279],[-17.885,6.951],[-0.77,-0.002],[-9.311,-0.654],[0.014,1.549],[5.235,0.57],[22.9,1.907],[16.189,-4.251],[24.638,-9.809],[62.93,-0.933],[17.064,5.28],[39.78,6.84],[16.324,-4.986],[-20.64,4.878],[-37.478,2.371],[-50.909,-15.606]],"v":[[-72.5,-32.5],[-96.776,-30.463],[-118.5,-26.5],[-174.579,-5.978],[-237.5,6.5],[-257.089,4.785],[-275.5,5.5],[-265.524,8.534],[-252.5,9.5],[-195.831,5.109],[-147.5,-12.5],[-62.5,-29.5],[99.5,6.5],[151.5,21.5],[274.5,7.5],[257.5,6.5],[191.5,19.5],[102.5,3.5]],"c":true}],"h":1},{"t":151,"s":[{"i":[[44.283,-2.851],[15.919,-4.653],[17.572,-7.053],[13.714,-2.244],[15.726,1.157],[6.682,0.25],[-7.858,-2.451],[-21.997,5.345],[-17.908,6.761],[-14.587,3.08],[-17.099,-0.06],[-18.917,-3.917],[-17.181,-5.257],[-37.484,-2.513],[-31.281,9.63],[8.132,-1.607],[25.906,0.14],[37.464,11.463]],"o":[[-20.752,1.336],[-15.919,4.653],[-10.418,4.182],[-13.714,2.244],[-6.13,-0.451],[-6.682,-0.25],[26.103,8.142],[21.997,-5.345],[12.554,-4.739],[14.587,-3.08],[21.151,0.075],[18.917,3.917],[34.273,10.487],[40.151,2.692],[13.227,-4.072],[-24.588,4.86],[-44.65,-0.241],[-36.809,-11.263]],"v":[[-62.5,-32.5],[-115.886,-23.288],[-164.5,-5.5],[-201.02,4.504],[-245.5,6.5],[-268.491,4.823],[-270.5,7.5],[-198.353,8.677],[-138.5,-12.5],[-97.908,-24.6],[-50.5,-29.5],[9.477,-22.886],[63.5,-8.5],[169.5,21.5],[272.5,7.5],[267.5,4.5],[183.5,18.5],[65.5,-11.5]],"c":true}],"h":1},{"t":152,"s":[{"i":[[59.922,-3.858],[13.827,-3.067],[12.195,-4.736],[16.449,-4.229],[23.918,2.02],[5.814,0.919],[1.226,-1.226],[-7.721,-1.269],[-0.957,-0.081],[-17.533,4.839],[-18.588,6.947],[-33.615,-0.119],[-49.361,-15.7],[-35.089,1.314],[-18.496,8.321],[0.878,-0.161],[26.211,-0.4],[22.717,7.411]],"o":[[-15.495,0.998],[-13.827,3.066],[-18.287,7.103],[-16.449,4.229],[-6.519,-0.55],[-5.814,-0.919],[-1.842,1.843],[7.721,1.269],[27.281,2.304],[17.533,-4.839],[25.356,-9.476],[60.281,0.214],[21.723,6.909],[22.755,-0.852],[10.645,-4.789],[-23.146,4.258],[-34.595,0.528],[-47.239,-15.411]],"v":[[-53.5,-32.5],[-97.475,-26.304],[-136.5,-14.5],[-186.277,3.342],[-244.5,7.5],[-263.97,4.668],[-275.5,4.5],[-262.599,9.321],[-245.5,11.5],[-180.98,6.438],[-129.5,-12.5],[-41.5,-29.5],[117.5,5.5],[199.5,20.5],[276.5,6.5],[269.5,4.5],[194.5,16.5],[111.5,0.5]],"c":true}],"h":1},{"t":153,"s":[{"i":[[58.662,-3.777],[0.337,0.002],[0.326,0.014],[26.868,-11.137],[32.289,0.059],[5.056,0.329],[5.523,0.678],[5.676,1.316],[1.595,-1.595],[-3.287,-0.395],[-37.078,14.045],[-36.504,-0.129],[-35.278,-10.674],[-43.637,0.125],[-22.667,6.15],[6.285,-1.046],[27.446,-0.106],[22.697,7.338]],"o":[[-0.326,0.021],[-0.337,-0.002],[-33.239,-1.49],[-26.868,11.137],[-3.251,-0.006],[-5.056,-0.329],[-2.702,-0.332],[-5.676,-1.316],[-3.249,3.249],[53.367,6.414],[26.985,-10.222],[44.952,0.159],[35.79,10.829],[28.045,-0.081],[14.278,-3.874],[-23.109,3.848],[-33.557,0.13],[-45.56,-14.73]],"v":[[-44.5,-32.5],[-45.5,-32.473],[-46.5,-32.5],[-133.713,-12.074],[-219.5,10.5],[-232.296,10.004],[-248.5,8.5],[-262.831,5.056],[-275.5,4.5],[-246.5,12.5],[-125.5,-10.5],[-32.5,-29.5],[85.5,-7.5],[198.5,19.5],[271.5,8.5],[270.5,4.5],[197.5,15.5],[116.5,-0.5]],"c":true}],"h":1},{"t":154,"s":[{"i":[[41.471,-2.67],[10.411,-1.797],[9.749,-3.066],[17.44,-6.655],[23.278,-0.73],[9.013,1.063],[5.786,0.971],[4.438,0.361],[-4.362,-2.715],[-7.167,-0.931],[-37.71,14.165],[-37.107,0.55],[-33.049,-10.131],[-37.961,-2.102],[-23.176,4.65],[19.206,-2.421],[23.222,-1.286],[44.838,13.063]],"o":[[-11.609,0.748],[-10.41,1.797],[-17.96,5.65],[-17.44,6.655],[-7.161,0.224],[-9.013,-1.063],[-1.61,-0.27],[-4.438,-0.361],[7.951,4.949],[55.265,7.179],[25.733,-9.666],[42.337,-0.627],[33.452,10.255],[27.899,1.545],[3.959,-0.794],[-21.118,2.662],[-58.239,3.225],[-34.565,-10.07]],"v":[[-35.5,-32.5],[-68.396,-28.739],[-98.5,-21.5],[-150.012,-1.31],[-209.5,11.5],[-235.032,9.897],[-258.5,6.5],[-270.479,4.761],[-273.5,7.5],[-240.5,13.5],[-115.5,-10.5],[-25.5,-29.5],[85.5,-9.5],[190.5,17.5],[260.5,10.5],[273.5,4.5],[218.5,13.5],[80.5,-14.5]],"c":true}],"h":1},{"t":155,"s":[{"i":[[53.893,-3.47],[0.337,0.002],[0.326,0.014],[25.255,-11.073],[29.928,-2.144],[9.502,0.834],[8.512,1.413],[7.102,0.748],[-9.473,-3.333],[-19.291,0.117],[-37.851,12.171],[-46.419,-8.303],[-40.545,-11.497],[-33.521,10.475],[0.591,1.372],[0.236,-0.039],[8.408,-1.249],[31.398,9.896]],"o":[[-0.325,0.021],[-0.337,-0.002],[-32.05,-1.437],[-25.255,11.073],[-10.478,0.75],[-9.502,-0.834],[-2.065,-0.343],[-7.102,-0.748],[18.669,6.57],[46.68,-0.284],[35.139,-11.299],[41.71,7.461],[31.948,9.059],[-4.337,1.355],[-0.686,-1.593],[-8.374,1.389],[-44.613,6.628],[-42.487,-13.39]],"v":[[-26.5,-32.5],[-27.5,-32.473],[-28.5,-32.5],[-111.592,-12.686],[-191.5,12.5],[-221.475,12.123],[-248.5,8.5],[-267.653,5.743],[-269.5,8.5],[-204.5,17.5],[-91.5,-16.5],[37.5,-23.5],[152.5,8.5],[274.5,8.5],[280.5,4.5],[271.5,4.5],[242.5,9.5],[125.5,-3.5]],"c":true}],"h":1},{"t":156,"s":[{"i":[[86.158,-5.548],[10.771,-2.136],[10.672,-3.602],[9.169,-3.685],[9.83,-4.056],[10.669,-2.351],[15.528,0.62],[10.073,1.389],[6.166,1.223],[-14.336,-5.553],[-4.573,-1.035],[-16.934,-0.938],[-38.234,14.121],[-40.122,-3.106],[-31.039,-9.764],[-56.188,11.682],[14.863,-2.057],[20.014,1.388]],"o":[[-13.243,0.853],[-10.771,2.136],[-9.492,3.203],[-9.17,3.685],[-7.797,3.217],[-10.669,2.351],[-5.54,-0.221],[-10.073,-1.389],[-4.711,-0.934],[-5.425,-2.101],[17.113,3.872],[53.167,2.944],[28.786,-10.632],[36.834,2.852],[48.801,15.352],[8.721,-1.813],[-21.929,3.035],[-82.766,-5.739]],"v":[[-17.5,-32.5],[-52.929,-28.061],[-84.5,-19.5],[-112.246,-9.14],[-140.5,2.5],[-167.702,11.378],[-206.5,14.5],[-232.031,11.751],[-258.5,7.5],[-270.5,8.5],[-262.5,10.5],[-211.5,18.5],[-93.5,-12.5],[12.5,-28.5],[113.5,-6.5],[266.5,9.5],[272.5,4.5],[203.5,10.5]],"c":true}],"h":1},{"t":157,"s":[{"i":[[50.618,-3.259],[12.796,-2.873],[12.492,-4.52],[11.322,-5.019],[10.53,-2.877],[17.336,1.305],[14.825,3.104],[5.117,0.499],[-4.422,-2.405],[-0.153,-0.047],[-2.325,-0.691],[-27.712,1.381],[-38.274,12.509],[-35.773,-3.247],[-28.81,-8.832],[-55.896,14.156],[7.803,-1.328],[33.794,10.456]],"o":[[-15.325,0.987],[-12.796,2.873],[-11.183,4.046],[-11.322,5.019],[-15.832,4.325],[-17.336,-1.305],[-1.953,-0.409],[-5.117,-0.499],[2.065,1.123],[0.153,0.047],[24.91,7.396],[47.545,-2.369],[27.754,-9.071],[33.124,3.007],[43.429,13.313],[18.916,-4.791],[-49.944,8.497],[-43.264,-13.386]],"v":[[-8.5,-32.5],[-50.125,-26.65],[-87.5,-15.5],[-121.49,-1.123],[-154.5,11.5],[-205.256,15.072],[-254.5,7.5],[-268.281,5.389],[-272.5,7.5],[-270.195,8.824],[-267.5,9.5],[-185.5,20.5],[-72.5,-16.5],[25.5,-28.5],[116.5,-8.5],[271.5,8.5],[263.5,6.5],[135.5,-6.5]],"c":true}],"h":1},{"t":158,"s":[{"i":[[38.002,-2.447],[13.049,-3.039],[12.811,-4.813],[11.788,-5.125],[11.171,-3.113],[18.247,1.846],[15.089,3.331],[3.9,0.097],[-7.67,-2.506],[-12.08,-2.279],[-10.795,-0.654],[-14.756,4.354],[-14.549,5.946],[-26.809,4.962],[-32.958,-5.576],[-80.294,20.408],[3.759,-0.58],[49.24,13.639]],"o":[[-15.993,1.03],[-13.049,3.039],[-11.679,4.387],[-11.788,5.125],[-16.925,4.716],[-18.247,-1.846],[-5.07,-1.119],[-3.9,-0.097],[9.885,3.23],[12.08,2.279],[22.428,1.36],[14.756,-4.354],[23.808,-9.729],[26.809,-4.962],[65.488,11.081],[15.727,-3.997],[-64.152,9.9],[-32.606,-9.032]],"v":[[0.5,-32.5],[-42.386,-26.337],[-80.5,-14.5],[-115.881,0.456],[-150.5,13.5],[-204.377,16.535],[-255.5,7.5],[-271.555,5.281],[-268.5,8.5],[-234.683,16.932],[-199.5,21.5],[-145.591,15.979],[-103.5,-0.5],[-28.362,-23.979],[60.5,-24.5],[274.5,7.5],[264.5,5.5],[110.5,-16.5]],"c":true}],"h":1},{"t":159,"s":[{"i":[[47.487,-3.058],[13.742,-3.337],[13.62,-5.53],[12.633,-5.268],[12.27,-2.976],[19.463,2.786],[14.12,2.984],[2.661,-0.451],[-7.731,-2.272],[-13.468,-2.412],[-12.709,-0.704],[-23.723,9.948],[-54.629,-0.194],[-39.228,-12.523],[-39.457,5.758],[14.95,-1.103],[5.195,-0.329],[27.816,8.623]],"o":[[-17.413,1.121],[-13.742,3.337],[-12.196,4.952],[-12.633,5.268],[-17.026,4.13],[-19.463,-2.786],[-5.089,-1.075],[-2.661,0.451],[12.421,3.649],[13.468,2.412],[37.244,2.063],[39.312,-16.486],[51.13,0.181],[29.212,9.325],[9.224,-1.346],[-6.93,0.511],[-47.931,3.032],[-38.127,-11.819]],"v":[[10.5,-32.5],[-35.344,-25.807],[-75.5,-12.5],[-112.944,3.482],[-150.5,16.5],[-207.18,16.835],[-259.5,6.5],[-273.116,5.489],[-267.5,9.5],[-228.216,18.709],[-188.5,23.5],[-110.5,5.5],[22.5,-29.5],[149.5,-3.5],[265.5,9.5],[272.5,3.5],[246.5,7.5],[145.5,-9.5]],"c":true}],"h":1},{"t":160,"s":[{"i":[[44.35,-2.856],[14.987,-3.661],[12.98,-5.194],[13.045,-5.795],[13.675,-2.562],[16.72,2.346],[14.323,3.386],[6.338,1.402],[0.592,-1.333],[-3.045,-0.717],[-36.615,6.893],[-13.568,5.59],[-58.426,0.207],[-37.681,-12.315],[-40.43,10.458],[3.256,3.256],[11.579,-0.488],[28.545,9.079]],"o":[[-18.07,1.163],[-14.987,3.661],[-13.144,5.258],[-13.045,5.795],[-14.797,2.771],[-16.72,-2.346],[-3.056,-0.723],[-6.338,-1.402],[-1.563,3.516],[33.575,7.902],[14.387,-2.708],[42.051,-17.324],[48.2,-0.171],[28.99,9.475],[-16.822,4.351],[-2.516,-2.516],[-40.823,1.72],[-41.884,-13.322]],"v":[[19.5,-32.5],[-29.817,-25.023],[-71.5,-11.5],[-110.601,6.023],[-150.5,19.5],[-198.855,19.118],[-246.5,9.5],[-262.848,5.459],[-275.5,4.5],[-262.5,9.5],[-150.5,24.5],[-108.5,8.5],[30.5,-29.5],[154.5,-5.5],[274.5,7.5],[280.5,3.5],[246.5,6.5],[149.5,-10.5]],"c":true}],"h":1},{"t":161,"s":[{"i":[[42.734,-2.752],[15.189,-3.918],[14.762,-6.072],[6.882,-2.878],[6.883,-2.777],[7.389,-2.81],[7.362,-0.904],[23.64,5.648],[2.928,-2.928],[-0.858,-0.212],[-36.002,6.174],[-28.918,11.475],[-39.771,0.141],[-36.932,-12.399],[-39.138,9.677],[2.769,2.769],[11.737,-0.327],[27.296,9.034]],"o":[[-19.48,1.255],[-15.19,3.918],[-6.59,2.71],[-6.882,2.878],[-7.084,2.857],[-7.389,2.81],[-31.464,3.861],[-2.475,-0.591],[-2.882,2.882],[32.763,8.098],[30.975,-5.312],[28.707,-11.392],[47.138,-0.167],[28.465,9.556],[-10.382,2.567],[-2.396,-2.396],[-38.841,1.081],[-40.045,-13.253]],"v":[[28.5,-32.5],[-22.538,-24.613],[-66.5,-9.5],[-86.78,-1.05],[-107.5,7.5],[-129.292,16.465],[-151.5,22.5],[-245.5,9.5],[-275.5,3.5],[-262.5,9.5],[-148.5,26.5],[-60.5,-7.5],[39.5,-29.5],[159.5,-6.5],[274.5,6.5],[280.5,3.5],[246.5,5.5],[153.5,-11.5]],"c":true}],"h":1},{"t":162,"s":[{"i":[[40.569,-2.612],[15.96,-4.396],[14.866,-6.175],[7.401,-2.802],[7.43,-2.9],[7.696,-2.811],[7.731,-0.833],[18.689,4.391],[16.682,3.436],[-12.929,-4.039],[-12.764,-2.843],[-23.559,2.98],[-15.745,6.32],[-66.076,-3.122],[-34.84,-11.572],[-35.041,8.732],[4.963,-0.369],[29.452,10.458]],"o":[[-19.292,1.242],[-15.96,4.396],[-6.965,2.893],[-7.401,2.802],[-7.484,2.921],[-7.696,2.811],[-18.564,2],[-18.689,-4.391],[-8.537,-1.758],[16.248,5.076],[17.293,3.852],[16.714,-2.114],[46.367,-18.612],[38.839,1.835],[24.382,8.098],[14.275,-3.557],[-43.724,3.255],[-34.823,-12.365]],"v":[[37.5,-32.5],[-14.82,-23.699],[-60.5,-7.5],[-82.151,0.994],[-104.5,9.5],[-127.315,18.566],[-150.5,24.5],[-206.911,19.077],[-260.5,5.5],[-270.5,7.5],[-216.5,20.5],[-147.5,28.5],[-98.5,11.5],[58.5,-29.5],[167.5,-6.5],[274.5,6.5],[265.5,3.5],[159.5,-12.5]],"c":true}],"h":1},{"t":163,"s":[{"i":[[39.916,-2.57],[16.964,-4.609],[15.791,-6.317],[15.92,-6.58],[16.812,-0.877],[20.469,5.525],[17.347,1.88],[-0.168,-3.445],[-6.111,-1.373],[-12.256,-2.916],[-22.151,1.51],[-15.868,6.021],[-65.298,1.449],[-33.378,-11.365],[-36.346,5.346],[0.288,-0.01],[-4.008,-0.079],[21.125,7.257]],"o":[[-19.355,1.246],[-16.964,4.609],[-14.507,5.804],[-15.92,6.58],[-18.779,0.98],[-20.469,-5.525],[4.283,0.464],[0.095,1.956],[15.443,3.47],[15.861,3.773],[17.346,-1.182],[48.778,-18.508],[40.795,-0.905],[26.042,8.867],[16.127,-2.372],[-2.839,0.097],[-34.049,-0.673],[-37.013,-12.714]],"v":[[46.5,-32.5],[-7.673,-23.303],[-56.5,-6.5],[-102.271,13.695],[-151.5,26.5],[-211.574,17.145],[-269.5,3.5],[-276.5,4.5],[-261.5,8.5],[-215.5,19.5],[-149.5,30.5],[-98.5,15.5],[55.5,-29.5],[166.5,-8.5],[273.5,6.5],[272.5,2.5],[248.5,3.5],[163.5,-13.5]],"c":true}],"h":1},{"t":164,"s":[{"i":[[-0.139,0.009],[17.863,-4.93],[14.604,-5.997],[16.237,-6.48],[18.654,-0.755],[18.928,5.056],[16.534,3.494],[4.25,0.183],[-4.436,-2.248],[-5.843,-0.971],[-2.722,-0.643],[-34.515,2.785],[-31.908,12.808],[-44.163,0.655],[-54.926,-8.722],[-13.735,3.561],[7.072,0.402],[73.765,-5.418]],"o":[[-19.946,1.285],[-17.863,4.93],[-15.399,6.324],[-16.237,6.48],[-17.755,0.718],[-18.928,-5.056],[-2.438,-0.515],[-4.25,-0.183],[2.906,1.473],[5.843,0.971],[31.207,7.376],[36.867,-2.975],[32.035,-12.859],[62.93,-0.933],[10.681,1.696],[17.786,-4.611],[-65.902,-3.748],[-0.597,0.044]],"v":[[55.5,-32.5],[-1.507,-22.535],[-50.5,-5.5],[-97.558,15.177],[-149.5,27.5],[-205.416,19.159],[-259.5,4.5],[-272.156,2.927],[-274.5,5.5],[-259.862,9.123],[-245.5,11.5],[-145.5,31.5],[-43.5,-2.5],[65.5,-29.5],[222.5,3.5],[274.5,5.5],[243.5,2.5],[56.5,-33.5]],"c":true}],"h":1},{"t":165,"s":[{"i":[[-0.139,0.009],[17.42,-5.115],[17.273,-7.186],[17.339,-6.242],[18.921,-0.493],[18.938,5.475],[18.541,3.587],[3.313,-0.174],[-7.112,-2.05],[-13.763,-3.775],[-20.719,0.105],[-16.151,5.384],[-59.243,5.924],[-33.273,-11.814],[-37.031,1.096],[18.832,0.101],[9.374,0.582],[74.175,-5.448]],"o":[[-21.048,1.355],[-17.42,5.115],[-15.721,6.54],[-17.339,6.242],[-18.706,0.488],[-18.938,-5.475],[-3.858,-0.747],[-3.314,0.174],[17.932,5.168],[17.687,4.851],[16.887,-0.085],[49.888,-16.63],[42.927,-4.293],[25.388,9.015],[17.636,-0.522],[-15.171,-0.082],[-67.545,-4.196],[-0.597,0.044]],"v":[[64.5,-32.5],[7.669,-22.373],[-43.5,-3.5],[-93.1,17.035],[-147.5,28.5],[-204.124,19.056],[-260.5,3.5],[-273.727,2.403],[-270.5,5.5],[-214.5,19.5],[-148.5,33.5],[-94.5,21.5],[53.5,-28.5],[168.5,-13.5],[265.5,5.5],[263.5,1.5],[245.5,1.5],[65.5,-33.5]],"c":true}],"h":1},{"t":166,"s":[{"i":[[21.016,-1.353],[9.95,-1.786],[9.654,-3.048],[8.452,-3.408],[8.252,-3.545],[40.131,1.87],[28.681,6.546],[2.509,-2.509],[-0.657,-0.129],[-12.643,-3.461],[-20.462,-1.031],[-22.04,8.433],[-21.387,8.279],[-53.321,-13.18],[-46.242,7.01],[4.247,4.247],[5.589,0.604],[30.271,7.483]],"o":[[-12.547,0.808],[-9.95,1.786],[-8.938,2.822],[-8.452,3.408],[-29.245,12.562],[-28.55,-1.33],[-3.045,-0.695],[-3.212,3.212],[18.118,3.566],[21.982,6.017],[25.799,1.3],[22.71,-8.69],[45.664,-17.677],[33.072,8.175],[-28.884,4.379],[-0.913,-0.913],[-38.358,-4.148],[-19.04,-4.706]],"v":[[73.5,-32.5],[40.331,-28.68],[11.5,-21.5],[-14.515,-12.042],[-39.5,-1.5],[-150.5,29.5],[-242.5,6.5],[-276.5,1.5],[-262.5,6.5],[-214.5,18.5],[-150.5,33.5],[-74.5,17.5],[-9.5,-9.5],[148.5,-22.5],[271.5,4.5],[279.5,1.5],[241.5,-0.5],[147.5,-26.5]],"c":true}],"h":1},{"t":167,"s":[{"i":[[18.628,-1.199],[10.601,-1.803],[9.58,-3.014],[8.655,-3.653],[8.5,-3.593],[41.337,2.357],[22.301,6.177],[15.403,2.713],[-16.006,-3.65],[-14.014,-3.966],[-20.523,-0.948],[-22.312,7.922],[-86.38,-22.395],[-22.218,-5.713],[-21.415,2.108],[13.184,0.556],[9.013,2.318],[17.584,4.401]],"o":[[-12.014,0.773],[-10.601,1.803],[-8.88,2.794],[-8.655,3.653],[-29.973,12.67],[-19.367,-1.104],[-10.511,-2.911],[-8.457,-1.489],[18.861,4.302],[18.362,5.197],[25.931,1.198],[64.014,-22.73],[17.505,4.538],[15.37,3.952],[15.6,-1.536],[-15.234,-0.642],[-18.367,-4.723],[-20.172,-5.049]],"v":[[83.5,-32.5],[49.674,-28.68],[19.5,-21.5],[-6.785,-11.6],[-32.5,-0.5],[-148.5,30.5],[-211.5,14.5],[-259.5,2.5],[-269.5,4.5],[-212.5,18.5],[-147.5,34.5],[-70.5,19.5],[150.5,-23.5],[210.5,-3.5],[272.5,4.5],[261.5,0.5],[209.5,-7.5],[150.5,-27.5]],"c":true}],"h":1},{"t":168,"s":[{"i":[[12.71,-0.818],[20.195,-6.146],[16.407,-6.947],[20.644,-6.368],[22.558,2.191],[10.578,3.227],[11.077,3.16],[14.379,2.277],[-10.919,-3.047],[-6.07,-1.298],[-30.893,-2.952],[-35.86,15.159],[-48.329,-0.171],[-33.678,-9.073],[-17.096,-0.947],[13.726,2.002],[11.486,1.611],[29.167,6.482]],"o":[[-22.811,1.469],[-20.195,6.146],[-15.865,6.718],[-20.644,6.368],[-9.612,-0.934],[-10.578,-3.227],[-10.942,-3.121],[-4.581,-0.725],[7.686,2.145],[34.106,7.292],[47.416,4.531],[37.707,-15.94],[43.051,0.153],[12.771,3.441],[6.753,0.374],[-13.948,-2.034],[-36.141,-5.069],[-17.214,-3.825]],"v":[[92.5,-32.5],[27.697,-20.108],[-27.5,0.5],[-82.98,22.181],[-148.5,30.5],[-178.9,23.669],[-211.5,13.5],[-259.5,1.5],[-273.5,3.5],[-243.5,8.5],[-147.5,34.5],[-21.5,2.5],[104.5,-29.5],[210.5,-5.5],[261.5,3.5],[275.5,0.5],[243.5,-2.5],[149.5,-29.5]],"c":true}],"h":1},{"t":169,"s":[{"i":[[9.417,-0.606],[10.386,-1.865],[10.88,-3.601],[9.088,-4.017],[9.033,-3.752],[47.432,6],[18.796,5.403],[17.682,2.642],[-13.427,-2.262],[-13.788,-3.956],[-20.368,-2.194],[-21.072,5.575],[-75.047,-0.266],[-27.828,-7.602],[-19.447,-1.905],[13.855,1.973],[9.091,1.489],[30.195,6.307]],"o":[[-14.575,0.938],[-10.386,1.865],[-9.616,3.183],[-9.088,4.016],[-32.124,13.342],[-17.866,-2.26],[-16.258,-4.673],[-12.892,-1.927],[21.008,3.539],[23.395,6.711],[26.881,2.896],[63.702,-16.855],[37.36,0.132],[14.08,3.846],[13.879,1.36],[-9.817,-1.398],[-36.539,-5.983],[-14.358,-2.999]],"v":[[101.5,-32.5],[65.229,-28.497],[34.5,-20.5],[6.563,-9.427],[-20.5,2.5],[-148.5,30.5],[-211.5,12.5],[-259.5,0.5],[-269.5,3.5],[-210.5,16.5],[-146.5,34.5],[-74.5,25.5],[113.5,-29.5],[211.5,-7.5],[261.5,2.5],[272.5,-0.5],[245.5,-3.5],[149.5,-30.5]],"c":true}],"h":1},{"t":170,"s":[{"i":[[56.189,-3.618],[11.156,-1.968],[10.258,-3.346],[9.118,-4.047],[9.091,-3.733],[23.939,-5.987],[24.633,4.591],[15.004,4.998],[16.923,3.387],[9.643,0.701],[-11.214,-2.132],[-12.217,-3.384],[-18.317,-3.448],[-24.196,6.493],[-21.442,8.992],[-57.243,-11.846],[-46.537,-0.329],[3.314,0.393]],"o":[[-12.118,0.78],[-11.156,1.968],[-9.435,3.078],[-9.118,4.047],[-18.613,7.643],[-23.939,5.987],[-14.061,-2.62],[-15.004,-4.998],[-1.642,-0.329],[-9.643,-0.701],[19.831,3.77],[20.4,5.651],[28.172,5.303],[24.173,-6.486],[39.196,-16.437],[35.857,7.42],[22.485,0.159],[-57.117,-6.769]],"v":[[110.5,-32.5],[75.605,-28.425],[43.5,-20.5],[15.742,-9.491],[-11.5,2.5],[-76.484,25.176],[-150.5,29.5],[-193.854,17.075],[-241.5,3.5],[-265.642,1.154],[-270.5,2.5],[-212.5,14.5],[-150.5,33.5],[-67.5,26.5],[-0.5,1.5],[151.5,-27.5],[270.5,2.5],[261.5,-2.5]],"c":true}],"h":1},{"t":171,"s":[{"i":[[4.069,-0.262],[20.861,-7.204],[20.011,-8.006],[53.795,11.132],[15.812,4.406],[14.601,2.7],[2.018,-4.337],[-6.307,-0.651],[-13.512,-3.699],[-18.434,-3.349],[-41.846,17.633],[-54.252,-2.767],[-4.129,-0.75],[-34.141,-6.637],[-1.239,2.598],[-14.727,-2.8],[9.08,1.713],[26.675,4.884]],"o":[[-28.607,1.842],[-19.945,6.887],[-36.79,14.719],[-18.184,-3.763],[-9.003,-2.509],[-3.191,-0.59],[-1.11,2.385],[19.981,2.063],[17.587,4.814],[56.718,10.304],[44.423,-18.719],[3.387,0.173],[29.889,5.43],[9.358,1.819],[1.977,-4.145],[-9.188,-1.747],[-33.641,-6.349],[-9.981,-1.827]],"v":[[119.5,-32.5],[48.5,-18.5],[-10.5,5.5],[-150.5,28.5],[-210.5,9.5],[-242.5,2.5],[-277.5,-0.5],[-261.5,3.5],[-210.5,13.5],[-148.5,32.5],[-2.5,6.5],[138.5,-29.5],[151.5,-28.5],[243.5,-1.5],[278.5,1.5],[271.5,-1.5],[245.5,-5.5],[151.5,-32.5]],"c":true}],"h":1},{"t":172,"s":[{"i":[[43.118,-2.776],[11.562,-2.553],[10.79,-3.825],[10.311,-4.012],[10.242,-4.226],[24.313,-4.77],[27.688,5.947],[10.774,3.728],[7.37,2.041],[5.149,1.38],[6.356,1.081],[1.383,-2.869],[-1.874,-0.298],[-33.092,-6.912],[-62.594,20.054],[-29.962,-2.96],[-45.668,-1.578],[6.1,0.933]],"o":[[-14.964,0.963],[-11.562,2.553],[-10.516,3.727],[-10.311,4.012],[-19.061,7.866],[-24.313,4.77],[-9.534,-2.047],[-10.774,-3.728],[-5.048,-1.399],[-5.149,-1.38],[-4.247,-0.722],[-1.402,2.907],[37.119,5.911],[88.335,18.452],[22.072,-7.072],[39.749,3.927],[20.15,0.696],[-46.757,-7.153]],"v":[[128.5,-32.5],[89.369,-27.146],[56.5,-17.5],[25.294,-5.874],[-5.5,6.5],[-71.03,27.36],[-149.5,27.5],[-181.122,17.995],[-209.5,8.5],[-224.519,4.262],[-241.5,0.5],[-277.5,-1.5],[-243.5,4.5],[-147.5,31.5],[67.5,-17.5],[146.5,-29.5],[269.5,1.5],[261.5,-3.5]],"c":true}],"h":1},{"t":173,"s":[{"i":[[32.196,-1.737],[11.604,-2.452],[12.024,-4.351],[34.547,-10.778],[43.384,10.122],[20.246,6.562],[23.562,-1.087],[-3.466,-0.828],[-3.878,-0.238],[-17.813,-5.568],[-17.808,-4.319],[-62.836,21.396],[-28.056,-1.649],[-21.462,-6.122],[-14.547,-3.218],[-4.206,4.206],[0.225,0.101],[8.02,1.687]],"o":[[-15.559,0.84],[-11.604,2.452],[-30.427,11.01],[-34.547,10.778],[-16.452,-3.838],[-20.246,-6.562],[-9.741,0.45],[3.466,0.828],[22.942,1.408],[17.813,5.568],[89.778,21.773],[22.319,-7.6],[20.252,1.19],[8.259,2.356],[5.825,1.289],[0.947,-0.947],[-8.483,-3.795],[-36.595,-7.698]],"v":[[137.5,-32.5],[97.849,-27.634],[63.5,-17.5],[-32.782,20.349],[-148.5,26.5],[-203.667,8.306],[-269.5,-2.5],[-275.714,-0.341],[-261.5,1.5],[-201.649,13.317],[-149.5,29.5],[69.5,-15.5],[147.5,-29.5],[210.5,-12.5],[242.5,-4.5],[278.5,0.5],[276.5,-2.5],[245.5,-7.5]],"c":true}],"h":1},{"t":174,"s":[{"i":[[30.86,0.177],[12.804,-3.012],[11.249,-4.029],[34.923,-10.307],[46.898,11.837],[18.343,5.762],[21.919,0.735],[3.612,-0.93],[-7.863,-0.426],[-16.662,-3.665],[-14.668,-5.163],[-20.345,-1.87],[-19.106,3.294],[-30.499,12.545],[-40.762,-4.175],[-21.113,-5.62],[-16.119,-0.905],[1.266,0.231]],"o":[[-13.535,-0.078],[-12.804,3.012],[-32.41,11.608],[-34.923,10.307],[-16.707,-4.217],[-18.343,-5.762],[-4.414,-0.148],[-3.612,0.93],[21.682,1.177],[16.662,3.665],[16.514,5.813],[20.345,1.87],[36.354,-6.268],[28.235,-11.614],[19.69,2.017],[13.493,3.592],[20.866,1.172],[-39.899,-7.286]],"v":[[146.5,-32.5],[106.785,-27.58],[70.5,-16.5],[-28.134,21.584],[-148.5,24.5],[-200.591,7.888],[-260.5,-3.5],[-275.207,-1.931],[-271.5,0.5],[-214.74,8.01],[-168.5,21.5],[-111.943,33.33],[-51.5,31.5],[46.5,-2.5],[153.5,-28.5],[215.5,-12.5],[270.5,0.5],[262.5,-5.5]],"c":true}],"h":1},{"t":175,"s":[{"i":[[35.618,-2.736],[17.091,-5.535],[15.2,-6.446],[16.236,-5.645],[18.937,-2.009],[19.066,2.856],[16.379,5.736],[12.954,3.167],[15.151,1.12],[-3.633,-3.633],[-6.331,-0.633],[-26.471,-7.376],[-45.174,17.227],[-20.981,8.095],[-25.604,-0.773],[-27.9,-6.438],[-3.154,3.154],[1.01,0.193]],"o":[[-18.437,1.416],[-17.091,5.535],[-15.118,6.412],[-16.236,5.645],[-20.359,2.16],[-19.066,-2.856],[-12.031,-4.213],[-12.954,-3.167],[-2.269,-0.168],[1.688,1.688],[36.646,3.665],[52.484,14.624],[21.976,-8.38],[21.639,-8.349],[30.06,0.907],[4.097,0.945],[2.948,-2.948],[-38.103,-7.263]],"v":[[142.5,-31.5],[89.072,-20.273],[40.5,-1.5],[-6.136,17.302],[-58.5,29.5],[-117.985,27.922],[-171.5,14.5],[-208.66,3.181],[-250.5,-3.5],[-278.5,-0.5],[-241.5,1.5],[-149.5,26.5],[9.5,16.5],[75.5,-10.5],[150.5,-28.5],[243.5,-5.5],[277.5,-0.5],[262.5,-5.5]],"c":true}],"h":1},{"t":176,"s":[{"i":[[33.246,-3.485],[30.217,-13.159],[40.301,-3.293],[18.669,2.942],[17.446,5.857],[17.891,4.071],[19.519,-2.617],[-3.494,-0.748],[-3.396,-0.018],[-18.039,-4.856],[-19.269,-5.442],[-18.816,-1.465],[-19.352,3.204],[-29.087,12.276],[-31.284,0.317],[-21.259,-5.659],[-17.273,-1.735],[4.357,0.897]],"o":[[-38.832,4.07],[-30.217,13.159],[-19.878,1.624],[-18.669,-2.942],[-12.915,-4.335],[-17.892,-4.071],[-7.371,0.989],[3.494,0.748],[24.574,0.132],[18.039,4.856],[15.384,4.346],[18.816,1.465],[34.897,-5.778],[24.519,-10.348],[21.938,-0.223],[14.078,3.747],[18.407,1.849],[-36.692,-7.557]],"v":[[143.5,-30.5],[44.602,0.083],[-56.5,29.5],[-114.324,27.111],[-168.5,13.5],[-215.546,-0.715],[-272.5,-4.5],[-275.575,-1.772],[-262.5,-0.5],[-200.521,8.017],[-146.5,24.5],[-94.476,33.662],[-36.5,31.5],[55.5,0.5],[150.5,-27.5],[215.5,-14.5],[270.5,-1.5],[261.5,-6.5]],"c":true}],"h":1},{"t":177,"s":[{"i":[[32.96,-3.401],[16.017,-6.205],[15.025,-6.23],[17.036,-4.91],[20.259,-0.89],[29.961,9.144],[35.612,1.117],[6.989,-0.423],[-1.112,-2.377],[-3.544,0.24],[-2.344,0.065],[-38.158,-10.342],[-40.76,4.916],[-44.134,15.916],[-15.853,0.415],[-29.921,-7.118],[-3.78,3.78],[2.925,0.647]],"o":[[-18.906,1.951],[-16.017,6.205],[-15.599,6.468],[-17.036,4.91],[-38.546,1.695],[-29.961,-9.144],[-2.156,-0.067],[-6.989,0.423],[0.48,1.024],[3.544,-0.24],[49.721,-1.383],[31.611,8.567],[52.723,-6.358],[15.841,-5.713],[32.03,-0.837],[5.172,1.23],[2.022,-2.022],[-36.365,-8.045]],"v":[[146.5,-29.5],[94.589,-16.209],[48.5,3.5],[-0.005,21.183],[-55.5,30.5],[-154.701,14.609],[-249.5,-5.5],[-266.451,-5.333],[-278.5,-1.5],[-271.398,-0.683],[-261.5,-1.5],[-143.5,22.5],[-34.5,32.5],[102.5,-13.5],[151.5,-26.5],[245.5,-7.5],[277.5,-1.5],[263.5,-6.5]],"c":true}],"h":1},{"t":178,"s":[{"i":[[38.88,-5.301],[31.164,-13.638],[44.752,1.404],[17.763,3.943],[16.923,5.601],[13.857,2.741],[15.603,0.075],[7.171,-0.789],[-1.85,-1.849],[-6.481,0.456],[-4.316,-0.066],[-7.009,-1.11],[-64.051,-0.307],[-29.542,11.82],[-34.266,3.275],[-27.682,-6.871],[16.782,6.551],[10.328,2.537]],"o":[[-35.59,4.852],[-31.164,13.638],[-20.024,-0.628],[-17.763,-3.943],[-11.969,-3.961],[-13.857,-2.741],[-1.166,-0.005],[-7.171,0.789],[0.76,0.76],[6.481,-0.456],[11.405,0.174],[58.453,9.256],[43.31,0.208],[28.64,-11.459],[33.328,-3.185],[4.849,1.204],[-7.037,-2.747],[-36.784,-9.035]],"v":[[145.5,-27.5],[49.871,6.192],[-59.5,30.5],[-115.826,23.23],[-167.5,8.5],[-206.274,-1.914],[-250.5,-6.5],[-266.762,-5.391],[-278.5,-1.5],[-265.667,-1.48],[-247.5,-2.5],[-217.5,0.5],[-54.5,34.5],[52.5,10.5],[149.5,-24.5],[245.5,-7.5],[273.5,-5.5],[265.5,-6.5]],"c":true}],"h":1},{"t":179,"s":[{"i":[[32.231,-3.92],[0.847,0.063],[0.802,-0.153],[15.563,-6.633],[15.66,-6.204],[18.08,-4.088],[22.874,1.216],[17.68,4.327],[17.442,5.69],[19.665,2.914],[15.982,-3.689],[-1.19,0.033],[-8.396,-1.076],[-61.306,-2.852],[-45.703,18.617],[-16.958,1.967],[-38.284,-4.378],[5.905,1.387]],"o":[[-0.811,0.099],[-0.847,-0.063],[-17.09,3.264],[-15.563,6.633],[-14.806,5.866],[-18.08,4.088],[-18.837,-1.001],[-17.68,-4.327],[-12.357,-4.032],[-19.665,-2.915],[-21.824,5.038],[13.545,-0.377],[59.816,7.669],[69.136,3.216],[15.614,-6.36],[46.082,-5.346],[15.357,1.756],[-33.59,-7.888]],"v":[[151.5,-26.5],[148.993,-26.541],[146.5,-26.5],[97.927,-10.705],[51.5,9.5],[2.551,25.311],[-58.5,30.5],[-113.046,22.017],[-165.5,6.5],[-216.281,-5.291],[-272.5,-5.5],[-249.5,-3.5],[-218.5,-1.5],[-56.5,34.5],[100.5,-5.5],[149.5,-22.5],[270.5,-2.5],[263.5,-7.5]],"c":true}],"h":1},{"t":180,"s":[{"i":[[32.409,-4.559],[8.299,-3.091],[8.313,-3.299],[25.541,-7.659],[34.127,3.044],[17.546,4.414],[17.339,5.606],[19.38,2.3],[16.55,-3.702],[-8.06,0.341],[-0.409,0.018],[-32.151,-9.948],[-37.723,-1.413],[-28.19,11.316],[-31.516,5.755],[-28.505,-6.679],[-2.263,2.263],[0.956,0.24]],"o":[[-9.492,1.335],[-8.299,3.091],[-23.709,9.409],[-25.541,7.659],[-19.476,-1.737],[-17.546,-4.414],[-13.93,-4.503],[-19.38,-2.3],[-10.649,2.382],[8.06,-0.341],[40.2,-1.767],[32.437,10.036],[42.43,1.589],[28.147,-11.298],[32.279,-5.894],[6.041,1.415],[1.731,-1.731],[-32.351,-8.132]],"v":[[153.5,-24.5],[127.116,-17.472],[102.5,-7.5],[30.314,20.339],[-57.5,29.5],[-112.603,19.902],[-164.5,4.5],[-216.535,-6.654],[-272.5,-5.5],[-269.793,-3.2],[-250.5,-4.5],[-146.5,14.5],[-42.5,34.5],[61.5,14.5],[150.5,-20.5],[248.5,-7.5],[277.5,-2.5],[265.5,-8.5]],"c":true}],"h":1},{"t":181,"s":[{"i":[[37.531,-4.213],[8.86,-3.315],[8.54,-3.616],[25.602,-6.724],[35.623,4.044],[17.488,4.572],[17.958,5.66],[19.912,2.459],[16.755,-4.805],[-3.529,-0.375],[-3.411,0.37],[-19.268,-3.442],[-19.228,-5.807],[-37.151,-2.392],[-28.884,10.668],[-31.086,5.677],[-32.378,-6.343],[13.082,3.078]],"o":[[-10.02,1.125],[-8.86,3.315],[-23.968,10.149],[-25.602,6.724],[-18.091,-2.053],[-17.488,-4.572],[-12.597,-3.97],[-19.912,-2.459],[-6.527,1.872],[3.529,0.375],[23.702,-2.573],[19.267,3.442],[31.631,9.552],[43.629,2.809],[29.106,-10.75],[38.757,-7.077],[7.654,1.5],[-34.402,-8.095]],"v":[[157.5,-22.5],[129.39,-15.368],[103.5,-4.5],[31.242,22.644],[-58.5,28.5],[-111.6,18.205],[-164.5,2.5],[-215.882,-8.581],[-273.5,-6.5],[-275.453,-3.319],[-262.5,-3.5],[-199.144,-1.285],[-142.5,13.5],[-40.5,34.5],[64.5,16.5],[153.5,-18.5],[264.5,-4.5],[270.5,-6.5]],"c":true}],"h":1},{"t":182,"s":[{"i":[[26.53,-0.652],[11.344,-3.985],[11.065,-4.678],[26.402,-5.74],[34.947,4.87],[17.222,5.093],[17.6,5.186],[20.468,1.57],[15.206,-4.088],[-3.283,-0.333],[-1.906,0.223],[-17.493,-1.3],[-13.517,-3.961],[-37.405,-5.923],[-31.921,9.84],[-32.928,8.554],[-31.216,-6.937],[13.463,4.66]],"o":[[-15.558,0.383],[-11.344,3.985],[-23.444,9.911],[-26.402,5.74],[-17.513,-2.441],[-17.222,-5.093],[-12.921,-3.808],[-20.468,-1.57],[-7.038,1.893],[3.283,0.333],[18.511,-2.159],[17.493,1.3],[36.032,10.557],[43.565,6.898],[33.462,-10.315],[34.832,-9.049],[4.617,1.026],[-26.922,-9.319]],"v":[[176.5,-21.5],[137.13,-14.221],[104.5,-0.5],[31.127,24.586],[-59.5,27.5],[-111.434,15.559],[-163.5,-0.5],[-216.787,-9.422],[-273.5,-6.5],[-276.209,-3.414],[-265.5,-3.5],[-210.755,-4.589],[-163.5,3.5],[-59.5,30.5],[55.5,22.5],[150.5,-14.5],[258.5,-6.5],[272.5,-6.5]],"c":true}],"h":1},{"t":183,"s":[{"i":[[27.61,-2.267],[9.79,-3.604],[10.361,-4.394],[22.23,-5.666],[28.819,2.253],[15.476,3.269],[14.761,4.567],[26.016,4.366],[27.404,-6.817],[-5.146,0.02],[-1.962,0.293],[-23.06,-4.187],[-20.92,-6.413],[-33.662,-2.685],[-56.165,17.25],[-28.566,-5.19],[-3.002,3.002],[-0.783,-0.221]],"o":[[-14.478,1.188],[-9.79,3.605],[-20.26,8.591],[-22.23,5.666],[-17.337,-1.355],[-15.476,-3.269],[-20.531,-6.353],[-26.016,-4.366],[-9.543,2.374],[5.145,-0.02],[27.841,-4.16],[23.06,4.187],[29.569,9.064],[78.45,6.257],[27.665,-8.497],[4.626,0.84],[2.041,-2.041],[-28.145,-7.956]],"v":[[175.5,-19.5],[140.411,-11.904],[111.5,0.5],[48.92,23.134],[-26.5,29.5],[-75.432,22.409],[-120.5,10.5],[-191.346,-7.877],[-272.5,-6.5],[-274.629,-3.5],[-259.5,-4.5],[-183.809,-2.93],[-118.5,14.5],[-25.5,33.5],[150.5,-11.5],[233.5,-11.5],[276.5,-3.5],[267.5,-8.5]],"c":true}],"h":1},{"t":184,"s":[{"i":[[29.442,-2.708],[14.132,-5.799],[14.099,-5.207],[16.917,-3.383],[18.082,0.795],[16.194,3.408],[14.905,4.518],[15.319,4.621],[18.657,1.251],[12.007,-0.932],[8.403,-2.048],[-13.996,1.945],[-38.984,-12.017],[-33.039,-3.75],[-27.962,8.668],[-29.067,8.323],[-29.668,-5.953],[15.797,5.349]],"o":[[-17.375,1.598],[-14.132,5.799],[-14.249,5.262],[-16.917,3.383],[-19.318,-0.849],[-16.194,-3.408],[-14.068,-4.264],[-15.319,-4.621],[-11.57,-0.776],[-12.007,0.932],[-22.674,5.527],[49.029,-6.812],[30.203,9.311],[36.991,4.199],[29.206,-9.053],[29.528,-8.455],[9.241,1.854],[-26.042,-8.818]],"v":[[178.5,-17.5],[132.043,-5.207],[90.5,12.5],[43.375,26.043],[-9.5,30.5],[-62.31,23.751],[-108.5,11.5],[-152.058,-2.76],[-202.5,-12.5],[-238.876,-12.118],[-270.5,-7.5],[-249.5,-6.5],[-122.5,10.5],[-29.5,32.5],[72.5,23.5],[155.5,-9.5],[254.5,-7.5],[270.5,-7.5]],"c":true}],"h":1},{"t":185,"s":[{"i":[[18.99,-1.404],[15.293,-5.647],[16.269,-6.039],[18.047,-2.974],[18.738,1.494],[15.968,3.768],[16.714,5.22],[16.655,4.323],[20.306,0],[10.758,-1.46],[7.24,-2.162],[-5.283,0.895],[-30.11,-8.655],[-39.209,-7.233],[-35.097,10.88],[-39.69,2.661],[-18.494,-3.36],[12.187,5.278]],"o":[[-18.558,1.372],[-15.293,5.647],[-15.076,5.596],[-18.047,2.974],[-21.415,-1.708],[-15.968,-3.768],[-15.072,-4.707],[-16.655,-4.323],[-8.73,0],[-10.757,1.46],[-15.115,4.512],[34.734,-5.887],[38.63,11.104],[42.149,7.776],[36.019,-11.165],[22.007,-1.476],[7.59,1.379],[-20.466,-8.863]],"v":[[192.5,-16.5],[142.783,-5],[96.5,13.5],[46.247,26.818],[-9.5,29.5],[-64.025,21.134],[-111.5,7.5],[-158.574,-7.03],[-213.5,-14.5],[-244.117,-12.121],[-272.5,-6.5],[-265.5,-4.5],[-154.5,-2.5],[-43.5,28.5],[81.5,23.5],[187.5,-12.5],[247.5,-8.5],[273.5,-6.5]],"c":true}],"h":1},{"t":186,"s":[{"i":[[40.096,-3.135],[9.293,-1.309],[6.943,-2.227],[-3.745,0.23],[-2.69,0.54],[-22.01,-1.157],[-18.204,-5.737],[-21.648,-5.998],[-25.29,-2.037],[-21.923,5.177],[-20.641,8.601],[-26.448,1.318],[-16.906,-3.19],[15.151,4.698],[29.488,-2.146],[31.697,-10.869],[44.322,4.757],[32.587,9.86]],"o":[[-6.885,0.538],[-9.293,1.309],[-7.673,2.462],[3.745,-0.23],[21.756,-4.365],[22.01,1.157],[22.118,6.971],[21.648,5.998],[28.668,2.308],[21.923,-5.177],[16.034,-6.681],[18.482,-0.921],[8.893,1.678],[-22.554,-6.994],[-36.273,2.64],[-30.415,10.43],[-37.132,-3.985],[-34.64,-10.481]],"v":[[-222.5,-14.5],[-247.956,-11.767],[-273.5,-6.5],[-276.272,-3.749],[-263.5,-5.5],[-196.836,-10.077],[-135.5,0.5],[-70.878,20.701],[-1.5,33.5],[73.02,28.182],[135.5,6.5],[200.5,-11.5],[258.5,-6.5],[269.5,-7.5],[194.5,-15.5],[98.5,15.5],[-11.5,28.5],[-114.5,4.5]],"c":true}],"h":1},{"t":187,"s":[{"i":[[4.605,-0.378],[8.025,-1.195],[7.185,-1.669],[-0.46,-0.949],[-8.231,1.671],[-7.618,1.48],[-7.617,0.473],[-28.356,-8.731],[-28.145,-6.339],[-22.457,0.03],[-17.754,4.928],[-66.461,-7.188],[17.267,5.569],[18.369,-0.124],[30.564,-11.655],[39.273,2.529],[31.057,9.556],[35.968,1.992]],"o":[[-6.716,0.552],[-8.025,1.195],[-8.072,1.875],[0.46,0.949],[7.911,-1.607],[7.618,-1.48],[36.43,-2.263],[28.356,8.731],[22.418,5.049],[22.457,-0.03],[50.908,-14.129],[9.709,1.05],[-18.006,-5.807],[-38.685,0.261],[-30.19,11.513],[-38.883,-2.504],[-31.825,-9.792],[-10.753,-0.596]],"v":[[-220.5,-15.5],[-243.149,-12.838],[-266.5,-8.5],[-277.727,-3.84],[-264.5,-4.5],[-241.279,-9.35],[-218.5,-12.5],[-123.287,0.549],[-40.5,26.5],[27.998,33.982],[89.5,26.5],[239.5,-8.5],[271.5,-7.5],[213.5,-14.5],[117.5,12.5],[13.5,29.5],[-89.5,9.5],[-187.5,-16.5]],"c":true}],"h":1},{"t":188,"s":[{"i":[[37.559,-2.22],[10.161,-1.344],[9.399,-2.094],[3.068,-1.719],[-8.509,1.595],[-20.466,1.657],[-20.106,-5.384],[-18.833,-6.101],[-18.698,-4.248],[-21.935,-0.184],[-19.259,5.189],[-22.86,7.725],[-31.87,-3.552],[9.635,5.506],[4.949,0.55],[41.097,-13.65],[45.858,6.392],[32.361,9.791]],"o":[[-8.954,0.529],[-10.162,1.344],[-3.235,0.721],[-3.069,1.719],[20.029,-3.755],[20.466,-1.657],[19.971,5.348],[18.833,6.101],[24,5.453],[21.935,0.184],[24.69,-6.652],[22.86,-7.725],[6.668,0.743],[-6.629,-3.788],[-58.966,-6.547],[-30.553,10.148],[-35.841,-4.995],[-33.017,-9.99]],"v":[[-204.5,-17.5],[-233.666,-14.673],[-263.5,-9.5],[-275.808,-4.763],[-270.5,-3.5],[-209.558,-12.855],[-148.5,-8.5],[-90.545,9.325],[-34.5,25.5],[34.556,33.981],[96.5,26.5],[165.115,1.847],[244.5,-7.5],[274.5,-6.5],[244.5,-11.5],[110.5,17.5],[1.5,27.5],[-99.5,3.5]],"c":true}],"h":1},{"t":189,"s":[{"i":[[53.045,-4.148],[11.611,-2.046],[9.613,-3.037],[5.103,-1.466],[-1.803,-1.803],[-5.454,1.027],[-2.514,0.56],[-4.087,1.102],[-2.255,0.389],[-46.86,-14.769],[-36.893,-3.6],[-31.379,11.046],[-51.003,-5.6],[0.029,3.091],[-2.596,-0.47],[29.538,-12.09],[41.658,-1.44],[32.942,9.967]],"o":[[-9.945,0.777],[-11.611,2.046],[11.608,-3.668],[-5.103,1.466],[0.668,0.668],[5.454,-1.027],[5.395,-1.202],[4.087,-1.102],[62.415,-10.761],[29.946,9.438],[38.498,3.757],[42.323,-14.898],[3.888,0.427],[-0.011,-1.214],[-39.215,-7.106],[-35.088,14.362],[-46.654,1.613],[-42.783,-12.945]],"v":[[-205.5,-18.5],[-238.749,-14.195],[-271.5,-6.5],[-267.646,-8.603],[-278.5,-2.5],[-267.385,-3.579],[-253.5,-6.5],[-239.145,-10.109],[-229.5,-12.5],[-76.5,10.5],[23.5,33.5],[129.5,18.5],[253.5,-5.5],[277.5,-4.5],[264.5,-8.5],[160.5,2.5],[49.5,30.5],[-67.5,9.5]],"c":true}],"h":1},{"t":190,"s":[{"i":[[50.493,-1.001],[14.25,-2.355],[12.086,-3.322],[1.775,-1.41],[-6.657,1.067],[-20.486,3.143],[-21.311,-4.736],[-19.014,-6.274],[-19.313,-5.099],[-22.223,-1.63],[-21.654,4.45],[-22.697,7.881],[-31.715,-1.97],[15.977,4.793],[7.729,-0.025],[31.113,-11.162],[36.035,2.734],[29.804,9.137]],"o":[[-12.916,0.256],[-14.25,2.355],[-1.555,0.428],[-1.776,1.41],[19.743,-3.162],[20.486,-3.143],[21.629,4.806],[19.014,6.274],[22.454,5.929],[22.223,1.63],[26.498,-5.444],[22.697,-7.881],[2.202,0.137],[-9.796,-2.939],[-35.3,0.113],[-31.258,11.214],[-37.741,-2.863],[-41.826,-12.822]],"v":[[-187.5,-20.5],[-229.123,-16.3],[-269.5,-7.5],[-276.659,-3.88],[-271.5,-2.5],[-211.176,-13.924],[-148.5,-13.5],[-88.263,3.78],[-31.5,21.5],[35.6,33.284],[101.5,29.5],[172.087,6.439],[250.5,-5.5],[273.5,-6.5],[232.5,-10.5],[139.5,14.5],[38.5,29.5],[-59.5,9.5]],"c":true}],"h":1},{"t":191,"s":[{"i":[[52.096,-4.074],[13.578,-2.705],[11.44,-3.223],[2.383,-0.624],[-0.675,-1.465],[-3.674,0.72],[9.352,-1.462],[-18.138,3.621],[-20.236,-1.333],[-17.919,-5.524],[-51.141,-6.018],[-29.646,9.122],[-52.54,-2.618],[17.345,4.127],[11.681,-0.9],[29.391,-8.96],[33.486,3.801],[27.708,8.813]],"o":[[-12.248,0.958],[-13.578,2.705],[-0.144,0.04],[-2.383,0.624],[0.655,1.42],[3.674,-0.72],[18.214,-2.848],[18.138,-3.621],[20.399,1.344],[45.065,13.892],[37.818,4.45],[41.747,-12.845],[4.024,0.201],[-10.746,-2.557],[-32.522,2.505],[-29.071,8.862],[-35.123,-3.987],[-40.359,-12.836]],"v":[[-191.5,-21.5],[-231.106,-15.698],[-269.5,-6.5],[-274.615,-5.568],[-278.5,-2.5],[-267.994,-2.531],[-272.5,-2.5],[-218.517,-13.635],[-161.5,-18.5],[-106.5,-4.5],[32.5,32.5],[135.5,22.5],[253.5,-4.5],[272.5,-6.5],[221.5,-8.5],[134.5,19.5],[32.5,28.5],[-60.5,6.5]],"c":true}],"h":1},{"t":192,"s":[{"i":[[42.302,-3.622],[7.423,-1.271],[9.523,-2.251],[7.213,-1.437],[4.905,-2.248],[-7.138,0.889],[-2.233,0.554],[-13.74,2.701],[-14.592,-0.14],[-11.047,-2.851],[-11.174,-3.463],[-59.93,-4.78],[-31.586,13.784],[-33.362,0.179],[12.746,5.14],[7.542,-0.549],[21.774,-7.388],[65.416,20.579]],"o":[[-7.784,0.666],[-7.423,1.271],[-4.243,1.003],[-7.213,1.437],[-6.783,3.109],[7.138,-0.889],[13.447,-3.338],[13.74,-2.701],[13.641,0.132],[11.047,2.851],[49.696,15.405],[41.373,3.3],[21.698,-9.469],[7.912,-0.043],[-9.698,-3.911],[-31.387,2.285],[-78.471,26.625],[-35.612,-11.203]],"v":[[-190.5,-22.5],[-212.695,-19.688],[-237.5,-14.5],[-256.004,-10.934],[-275.5,-5.5],[-270.262,-3.253],[-251.5,-6.5],[-210.858,-16.109],[-168.5,-20.5],[-132.15,-15.499],[-99.5,-5.5],[56.5,33.5],[165.5,14.5],[245.5,-3.5],[274.5,-5.5],[228.5,-7.5],[146.5,18.5],[-81.5,-3.5]],"c":true}],"h":1},{"t":193,"s":[{"i":[[38.014,-2.973],[12.729,-2.731],[12.716,-3.031],[5.802,-1.628],[-1.243,-1.242],[-6.809,1.899],[-1.737,0.431],[-16.504,3.066],[-17.093,-1.962],[-15.258,-4.765],[-86.14,27.298],[-36.12,2],[-7.151,-0.268],[16.674,3.159],[11.594,-0.364],[2.129,-0.556],[17.949,-6.198],[63.441,20.105]],"o":[[-13.367,1.046],[-12.729,2.731],[-1.036,0.247],[-5.802,1.628],[2.026,2.026],[6.809,-1.899],[14.894,-3.697],[16.503,-3.066],[15.418,1.769],[69.458,21.69],[32.458,-10.286],[3.65,-0.202],[7.98,0.299],[-6.045,-1.145],[-15.923,0.499],[-25.414,6.643],[-80.237,27.708],[-35.301,-11.187]],"v":[[-178.5,-24.5],[-217.489,-18.489],[-255.5,-9.5],[-268.709,-6.247],[-278.5,-1.5],[-262.783,-2.657],[-247.5,-7.5],[-200.149,-18.744],[-149.5,-21.5],[-102.5,-8.5],[146.5,25.5],[239.5,-2.5],[259.5,-2.5],[270.5,-5.5],[241.5,-6.5],[206.5,-1.5],[148.5,20.5],[-80.5,-5.5]],"c":true}],"h":1},{"t":194,"s":[{"i":[[2.114,-0.042],[9.795,-1.697],[11.531,-2.989],[8.408,-1.894],[7.682,-2.431],[3.452,-0.874],[-0.766,-1.733],[-0.317,0.041],[-46.14,-3.544],[-23.505,-7.273],[-78.268,24.127],[-16.26,5.605],[-17.996,0.897],[-2.313,2.313],[-0.087,-0.002],[39.071,-11.977],[33.704,5.672],[66.059,10.792]],"o":[[-11.289,0.224],[-9.795,1.697],[-7.688,1.993],[-8.408,1.894],[7.043,-2.229],[-3.452,0.874],[1.142,2.584],[39.72,-5.195],[23.467,1.802],[63.33,19.595],[13.465,-4.151],[15.955,-5.5],[5.356,-0.267],[3.502,-3.502],[-49.182,-1.178],[-30.667,9.401],[-74.929,-12.61],[-6.514,-1.064]],"v":[[-161.5,-26.5],[-192.319,-23.575],[-223.5,-16.5],[-248.004,-10.828],[-272.5,-4.5],[-270.792,-5.971],[-278.5,-1.5],[-271.5,-1.5],[-151.5,-23.5],[-79.5,-4.5],[149.5,27.5],[193.5,9.5],[244.5,-1.5],[277.5,-1.5],[260.5,-5.5],[148.5,22.5],[41.5,25.5],[-146.5,-26.5]],"c":true}],"h":1},{"t":195,"s":[{"i":[[31.424,-2.58],[9.184,-1.669],[12.995,-3.48],[8.852,-2.061],[6.99,-2.255],[-5.307,0.267],[-0.835,0.175],[-40.89,-4.089],[-23.348,-7.051],[-23.589,-6.951],[-52.028,15.273],[-16.508,5.611],[-18.135,1.099],[-2.04,4.183],[0.897,0.095],[32.237,-9.338],[45.498,13.382],[23.476,7.183]],"o":[[-10.269,0.843],[-9.184,1.669],[-5.603,1.5],[-8.852,2.061],[-10.063,3.245],[5.307,-0.267],[37.034,-7.79],[24.007,2.401],[22.968,6.936],[42.667,12.573],[14.132,-4.148],[16.561,-5.629],[8.012,-0.486],[1.395,-2.861],[-54.262,-5.769],[-54.927,15.91],[-22.806,-6.708],[-29.251,-8.95]],"v":[[-165.5,-27.5],[-193.455,-23.978],[-225.5,-16.5],[-248.459,-11.066],[-273.5,-4.5],[-275.674,-0.934],[-261.5,-2.5],[-146.5,-24.5],[-75.5,-5.5],[-6.5,15.5],[150.5,29.5],[195.5,11.5],[247.5,-0.5],[277.5,-1.5],[270.5,-4.5],[149.5,24.5],[-6.5,11.5],[-76.5,-9.5]],"c":true}],"h":1},{"t":196,"s":[{"i":[[42.499,0.765],[11.154,-2.315],[10.734,-2.95],[4.847,-1.257],[7.341,-1.799],[7.285,-1.876],[-0.536,-1.155],[-7.506,1.678],[-1.058,0.264],[-35.056,-1.328],[-22.874,-6.843],[-23.333,-7.219],[-54.264,12.688],[-34.805,5.201],[-2.359,2.521],[2.987,-0.042],[32.934,-8.399],[45.092,13.797]],"o":[[-11.649,-0.209],[-11.154,2.315],[-4.272,1.174],[-4.847,1.257],[-1.397,0.343],[-7.285,1.876],[0.917,1.977],[7.506,-1.678],[30.935,-7.711],[23.427,0.887],[23.375,6.993],[42.187,13.053],[27.958,-6.537],[5.176,-0.774],[2.67,-2.853],[-46.928,0.66],[-53.117,13.547],[-45.254,-13.847]],"v":[[-150.5,-29.5],[-184.687,-25.87],[-217.5,-17.5],[-230.698,-13.969],[-248.5,-9.5],[-264.949,-5.609],[-278.5,-0.5],[-262.605,-1.32],[-246.5,-5.5],[-149.5,-26.5],[-76.5,-9.5],[-7.5,12.5],[148.5,31.5],[238.5,1.5],[277.5,-0.5],[261.5,-4.5],[149.5,26.5],[-6.5,9.5]],"c":true}],"h":1},{"t":197,"s":[{"i":[[0.212,-0.008],[17.76,-5.123],[19.103,-3.732],[4.085,-1.664],[-10.691,0.922],[-4.453,0.951],[-3.49,0.879],[-34.757,-0.632],[-23.425,-6.681],[-50.582,-9.546],[-27.028,5.593],[-19.948,6.275],[-16.055,1.034],[18.373,1.525],[12.095,-3.784],[18.312,-3.79],[26.001,4.809],[74.777,8.413]],"o":[[-19.857,0.774],[-17.76,5.123],[-1.351,0.264],[-4.085,1.664],[3.7,-0.319],[4.453,-0.95],[30.941,-7.794],[23.843,0.434],[47.827,13.641],[25.907,4.889],[19.615,-4.059],[9.473,-2.98],[9.311,-0.6],[-21.499,-1.784],[-22.561,7.058],[-26.79,5.544],[-75.528,-13.969],[-0.973,-0.109]],"v":[[-152.5,-30.5],[-208.065,-20.218],[-262.5,-5.5],[-275.032,-1.61],[-269.5,0.5],[-256.842,-1.58],[-244.5,-4.5],[-148.5,-27.5],[-74.5,-11.5],[65.5,29.5],[149.5,32.5],[208.5,10.5],[259.5,0.5],[270.5,-3.5],[209.5,6.5],[149.5,28.5],[65.5,25.5],[-150.5,-31.5]],"c":true}],"h":1},{"t":198,"s":[{"i":[[24.689,-1.518],[10.44,-2.664],[12.212,-3.667],[18.508,-4.552],[-7.137,0.41],[-13.881,4.192],[-21.46,0.205],[-23.772,-6.702],[-51.674,-10.668],[-26.592,5.348],[-10.289,3.813],[-28.011,4.587],[1.04,2.143],[6.643,-1.088],[9.245,-3.027],[16.937,-3.18],[24.909,5.289],[47.589,13.26]],"o":[[-11.028,0.678],[-10.44,2.664],[-14.122,4.241],[-5.202,1.279],[19.727,-1.134],[20.786,-6.277],[26.436,-0.253],[47.539,13.402],[24.391,5.036],[8.855,-1.781],[25.869,-9.587],[2.509,-0.411],[-1.929,-3.974],[-15.279,2.502],[-15.324,5.017],[-26.822,5.036],[-51.873,-11.014],[-22.918,-6.386]],"v":[[-151.5,-31.5],[-183.112,-26.242],[-216.5,-16.5],[-271.5,-3.5],[-273.5,1.5],[-212.5,-12.5],[-148.5,-28.5],[-72.5,-13.5],[68.5,27.5],[151.5,33.5],[180.5,22.5],[243.5,4.5],[278.5,-1.5],[242.5,0.5],[209.5,8.5],[149.5,29.5],[66.5,23.5],[-74.5,-17.5]],"c":true}],"h":1},{"t":199,"s":[{"i":[[26.489,-3.25],[14.986,-4.908],[16.371,-3.444],[5.951,-0.745],[2.567,-1.467],[-2.526,0.596],[-29.64,2.568],[-23.69,-6.331],[-50.611,-11.628],[-27.354,3.46],[-19.04,5.99],[-18.271,2.77],[1.889,3.548],[0.929,-0.016],[16.022,-5.096],[19.961,-2.151],[23.68,5.441],[47.619,12.625]],"o":[[-15.685,1.925],[-14.986,4.908],[-2.63,0.553],[-5.951,0.745],[-8.418,4.81],[31.544,-7.44],[26.677,-2.311],[48.59,12.986],[24.663,5.667],[19.526,-2.47],[13.705,-4.312],[-2.346,0.356],[-0.757,-1.422],[-23.024,0.408],[-17.818,5.667],[-29.13,3.138],[-51.192,-11.762],[-22.433,-5.947]],"v":[[-154.5,-31.5],[-199.986,-20.14],[-246.5,-6.5],[-261.047,-4.686],[-275.5,-1.5],[-243.5,-3.5],[-151.5,-28.5],[-73.5,-16.5],[66.5,25.5],[148.5,34.5],[210.5,13.5],[270.5,1.5],[278.5,-1.5],[269.5,-2.5],[209.5,10.5],[146.5,30.5],[65.5,21.5],[-74.5,-20.5]],"c":true}],"h":1},{"t":200,"s":[{"i":[[0.018,-0.002],[10.308,-3.294],[12.056,-3.877],[19.835,-3.771],[-7.791,1.164],[-10.117,3.218],[-20.851,1.068],[-23.641,-6.054],[-48.823,-12.298],[-28.037,3.113],[-16.552,5.351],[-16.967,2.154],[1.401,2.964],[5.967,-1.22],[8.456,-2.689],[17.503,-1.943],[23.54,5.588],[83.652,2.6]],"o":[[-10.713,0.948],[-10.308,3.294],[-15.121,4.862],[-16.463,3.13],[17.66,-2.639],[19.214,-6.111],[25.528,-1.308],[48.676,12.465],[24.557,6.185],[19.217,-2.134],[12.483,-4.036],[1.933,-0.245],[-1.778,-3.762],[-13.49,2.759],[-15.595,4.96],[-26.155,2.904],[-73.112,-17.356],[-0.782,-0.024]],"v":[[-149.5,-32.5],[-180.492,-25.697],[-213.5,-14.5],[-270.5,-1.5],[-259.5,1.5],[-210.5,-11.5],[-146.5,-29.5],[-68.5,-17.5],[70.5,23.5],[149.5,34.5],[212.5,15.5],[261.5,3.5],[278.5,-0.5],[243.5,2.5],[211.5,11.5],[149.5,30.5],[69.5,20.5],[-148.5,-33.5]],"c":true}],"h":1},{"t":201,"s":[{"i":[[27.51,-3.692],[24.969,-7.913],[19.44,-3.088],[-7.202,0.767],[-14.929,5.012],[-21.355,1.333],[-24.709,-5.853],[-79.139,-7.22],[-0.317,0.02],[-22.037,6.945],[-12.984,2.853],[-6.353,2.535],[2.81,2.81],[4.215,-0.573],[8.572,-2.756],[19.988,-1.094],[23.621,5.962],[48.846,11.897]],"o":[[-21.815,2.927],[-14.256,4.518],[-18.109,2.876],[21.129,-2.25],[22.008,-7.388],[27.405,-1.711],[72.012,17.058],[0.316,0.029],[20.134,-1.257],[7.877,-2.483],[6.007,-1.32],[-9.813,3.915],[-0.678,-0.678],[-16.426,2.233],[-19.868,6.389],[-26.14,1.43],[-49.572,-12.512],[-24.379,-5.938]],"v":[[-148.5,-32.5],[-211.5,-13.5],[-269.5,-1.5],[-259.5,1.5],[-208.5,-10.5],[-144.5,-29.5],[-66.5,-18.5],[148.5,34.5],[149.5,34.5],[213.5,16.5],[245.5,7.5],[275.5,2.5],[278.5,-0.5],[259.5,0.5],[211.5,12.5],[148.5,30.5],[71.5,18.5],[-67.5,-22.5]],"c":true}],"h":1},{"t":202,"s":[{"i":[[29.607,-3.758],[10.507,-3.583],[14.523,-4.468],[8.646,-2.08],[8.671,-0.913],[-1.526,-3.094],[-5.51,1.066],[-30.524,5.78],[-25.76,-6.036],[-47.74,-12.785],[-26.677,2.582],[-21.064,6.433],[-16.482,2.729],[16.96,-0.98],[4.048,-0.938],[34.576,-3.18],[22.627,5.999],[49.622,11.577]],"o":[[-9.448,1.2],[-10.507,3.583],[-5.746,1.768],[-8.646,2.08],[-1.886,0.199],[1.783,3.615],[36.465,-7.054],[28.985,-5.488],[49.516,11.603],[22.454,6.013],[19.681,-1.905],[10.857,-3.316],[7.73,-1.28],[-6.68,0.386],[-31.789,7.368],[-27.078,2.49],[-50.18,-13.304],[-25.097,-5.855]],"v":[[-145.5,-32.5],[-174.694,-24.952],[-211.5,-12.5],[-233.807,-6.359],[-260.5,-1.5],[-277.5,2.5],[-241.5,0.5],[-149.5,-28.5],[-61.5,-19.5],[76.5,21.5],[154.5,33.5],[215.5,16.5],[263.5,5.5],[270.5,-0.5],[245.5,4.5],[153.5,29.5],[75.5,17.5],[-63.5,-23.5]],"c":true}],"h":1},{"t":203,"s":[{"i":[[78.293,-5.041],[5.904,-1.841],[7.947,-2.965],[10.669,-3.416],[11.001,-1.857],[8.276,-0.729],[-0.159,-1.57],[-8.966,0.861],[0.111,-0.019],[-17.815,6.879],[-24.692,-0.437],[-62.309,-16.82],[-22.422,0.336],[-19.238,5.777],[-16.464,3.316],[9.3,-1.536],[36.821,-0.295],[22.307,6.07]],"o":[[-10.436,0.672],[-5.904,1.841],[-9.323,3.479],[-10.669,3.416],[-3.053,0.515],[-8.276,0.729],[0.245,2.425],[8.966,-0.861],[23.048,-3.921],[17.815,-6.879],[73.49,1.3],[22.462,6.064],[20.351,-0.305],[11.591,-3.481],[16.922,-3.408],[-39.436,6.511],[-23.488,0.188],[-65.069,-17.706]],"v":[[-135.5,-32.5],[-158.367,-28.72],[-177.5,-21.5],[-207.742,-10.784],[-240.5,-2.5],[-260.909,-0.791],[-276.5,2.5],[-258.233,3.805],[-240.5,1.5],[-182.234,-17.268],[-121.5,-29.5],[80.5,19.5],[150.5,33.5],[215.5,18.5],[271.5,4.5],[261.5,1.5],[149.5,29.5],[77.5,15.5]],"c":true}],"h":1},{"t":204,"s":[{"i":[[51.68,-3.328],[4.14,-0.216],[3.592,-0.888],[15.081,-5.789],[17.469,-2.579],[6.264,-0.306],[3.568,-1.278],[-9.038,0.137],[-3.704,0.548],[-50.672,-0.18],[-60.92,-17.544],[-23.594,-0.199],[-21.178,6.241],[-15.974,4.058],[1.84,-0.443],[34.483,0.627],[21.409,6.095],[20.476,6.513]],"o":[[-3.849,0.248],[-4.14,0.216],[-13.207,3.264],[-15.081,5.789],[-3.377,0.498],[-6.264,0.306],[-5.856,2.096],[9.038,-0.137],[46.302,-6.858],[73.197,0.26],[21.354,6.15],[20.927,0.176],[12.787,-3.768],[22.728,-5.774],[-32.274,7.777],[-23.431,-0.426],[-22.474,-6.398],[-39.799,-12.659]],"v":[[-126.5,-32.5],[-138.692,-31.98],[-150.5,-30.5],[-192.804,-15.486],[-241.5,-1.5],[-257.357,-0.584],[-273.5,1.5],[-263.67,3.984],[-239.5,2.5],[-114.5,-29.5],[84.5,17.5],[151.5,32.5],[216.5,18.5],[272.5,4.5],[246.5,5.5],[150.5,28.5],[81.5,13.5],[16.5,-6.5]],"c":true}],"h":1},{"t":205,"s":[{"i":[[73.523,-4.734],[12.93,-4.584],[17.517,-5.39],[8.998,-1.644],[8.264,-0.349],[4.475,-0.24],[-5.302,-1.898],[-5.655,0.337],[-4.897,0.614],[-15.465,6.098],[-13.54,3.404],[-50.898,-15.69],[-40.251,-3.054],[-25.952,6.992],[-16.76,4.335],[6.621,-1.281],[37.596,1.742],[21.348,6.243]],"o":[[-19.762,1.273],[-12.93,4.584],[-6.743,2.075],[-8.998,1.644],[-3.403,0.143],[-4.475,0.24],[5.482,1.963],[5.655,-0.337],[17.602,-2.204],[15.465,-6.098],[60.009,-15.084],[41.549,12.808],[28.218,2.141],[14.58,-3.928],[15.753,-4.075],[-36.891,7.137],[-21.702,-1.006],[-61.705,-18.045]],"v":[[-117.5,-32.5],[-163.684,-23.088],[-206.5,-7.5],[-230.859,-1.705],[-257.5,1.5],[-272.028,1.684],[-273.5,4.5],[-256.562,6.432],[-240.5,4.5],[-190.953,-9.601],[-147.5,-25.5],[24.5,-3.5],[147.5,30.5],[222.5,17.5],[273.5,5.5],[262.5,3.5],[150.5,27.5],[84.5,11.5]],"c":true}],"h":1},{"t":206,"s":[{"i":[[73.856,-4.756],[0.337,0.002],[0.326,0.014],[14.577,-5.705],[17.38,-5.092],[9.687,-1.625],[8.375,-0.072],[-15.524,-2.81],[-32.466,8.834],[-11.794,0.175],[-55.335,-17.026],[-20.384,-1.382],[-18.96,4.786],[-13.857,3.721],[1.403,3.256],[2.095,-0.264],[42.014,4.066],[20.073,6.153]],"o":[[-0.326,0.021],[-0.337,-0.002],[-20.311,-0.91],[-14.577,5.705],[-4.879,1.429],[-9.687,1.625],[-8.661,0.075],[50.607,9.159],[13.225,-3.599],[71.751,-1.063],[20.329,6.255],[22.554,1.529],[11.091,-2.799],[-10.556,2.835],[-1.258,-2.92],[-38.59,4.866],[-20.74,-2.007],[-58.504,-17.934]],"v":[[-108.5,-32.5],[-109.5,-32.473],[-110.5,-32.5],[-160.699,-23.502],[-206.5,-5.5],[-229.878,-0.482],[-258.5,2.5],[-269.5,5.5],[-146.5,-23.5],[-98.5,-29.5],[88.5,14.5],[151.5,29.5],[218.5,19.5],[272.5,5.5],[279.5,2.5],[272.5,2.5],[148.5,25.5],[86.5,9.5]],"c":true}],"h":1},{"t":207,"s":[{"i":[[70.237,-4.523],[0.337,0.002],[0.326,0.014],[24.031,-9.275],[28.729,-0.074],[6.258,-0.327],[-13.631,-1.684],[-18.552,6.416],[-18.007,5.644],[-39.242,-7.883],[-30.79,-9.456],[-11.853,-3.787],[-11.624,-1.177],[-25.775,6.806],[-11.675,4.098],[4.879,-1.017],[37.66,1.653],[20.255,6.129]],"o":[[-0.326,0.021],[-0.337,-0.002],[-26.148,-1.172],[-24.031,9.275],[-2.598,0.006],[-6.258,0.327],[26.786,3.309],[18.552,-6.416],[38.245,-11.987],[39.241,7.883],[11.962,3.674],[11.853,3.787],[31.088,3.147],[9.916,-2.618],[13.339,-4.682],[-34.503,7.19],[-20.643,-0.906],[-58.414,-17.674]],"v":[[-99.5,-32.5],[-100.5,-32.473],[-101.5,-32.5],[-175.064,-15.434],[-252.5,3.5],[-271.672,3.742],[-266.5,6.5],[-200.416,-0.785],[-147.5,-21.5],[-28.909,-23.082],[78.5,7.5],[114.254,19.373],[149.5,27.5],[229.5,16.5],[274.5,5.5],[263.5,4.5],[155.5,24.5],[93.5,8.5]],"c":true}],"h":1},{"t":208,"s":[{"i":[[67.984,-4.377],[0.337,0.002],[0.326,0.014],[21.77,-8.796],[25.623,-1.994],[6.156,0.077],[7.493,0.307],[2.45,0.396],[0.644,-1.361],[-0.947,-0.104],[-35.715,13.895],[-55.935,-17.791],[-34.095,-6.212],[-21.987,5.231],[-15.692,5.094],[7.043,-1.506],[40.283,4.29],[19.003,6.022]],"o":[[-0.326,0.021],[-0.337,-0.002],[-26.297,-1.179],[-21.77,8.796],[-7.882,0.614],[-6.156,-0.077],[5.442,0.223],[-2.45,-0.396],[-1.751,3.705],[47.339,5.217],[65.837,-25.614],[30.704,9.766],[23.816,4.339],[15.78,-3.754],[14.585,-4.735],[-34.116,7.294],[-18.99,-2.023],[-54.845,-17.381]],"v":[[-90.5,-32.5],[-91.5,-32.473],[-92.5,-32.5],[-162.505,-16.879],[-231.5,3.5],[-251.792,4.19],[-271.5,3.5],[-269.435,2.647],[-276.5,3.5],[-263.5,7.5],[-150.5,-17.5],[54.5,-2.5],[149.5,25.5],[222.5,18.5],[273.5,6.5],[263.5,4.5],[152.5,22.5],[94.5,6.5]],"c":true}],"h":1},{"t":209,"s":[{"i":[[65.468,-4.215],[11.428,-1.963],[8.904,-3.35],[14.522,-5.089],[20.91,0],[8.736,0.553],[-5.164,-3.214],[-7.46,-0.254],[-2.806,0.103],[-29.713,10.1],[-38.102,-5.146],[-47.815,-14.658],[-16.423,-1.53],[-21.481,4.903],[-10.341,3.58],[3.954,-0.811],[31.65,0.069],[24.489,7.662]],"o":[[-12.385,0.797],[-11.428,1.963],[-15,5.644],[-14.522,5.089],[-1.219,0],[-8.736,-0.554],[3.353,2.087],[7.46,0.254],[40.643,-1.495],[28.815,-9.794],[57.437,7.757],[15.284,4.685],[28.571,2.662],[9.359,-2.136],[12.469,-4.316],[-31.954,6.557],[-29.826,-0.065],[-53.466,-16.727]],"v":[[-81.5,-32.5],[-117.61,-28.414],[-148.5,-20.5],[-191.068,-3.267],[-242.5,5.5],[-262.788,3.59],[-273.5,6.5],[-255.09,9.643],[-237.5,9.5],[-143.5,-17.5],[-36.5,-26.5],[108.5,11.5],[156.5,24.5],[236.5,16.5],[275.5,6.5],[266.5,4.5],[171.5,21.5],[97.5,4.5]],"c":true}],"h":1},{"t":210,"s":[{"i":[[64.894,-4.179],[7.242,-0.877],[7.666,-1.887],[17.885,-6.951],[26.011,0.083],[9.311,0.654],[-0.015,-1.618],[-5.235,-0.57],[-2.047,-0.171],[-16.189,4.251],[-17.342,6.904],[-31.655,0.469],[-48.165,-14.902],[-17.075,-2.936],[-31.214,9.534],[4.571,-1.08],[22.026,-1.393],[24.224,7.426]],"o":[[-9.368,0.603],[-7.242,0.878],[-21.45,5.279],[-17.885,6.951],[-0.77,-0.002],[-9.311,-0.654],[0.014,1.549],[5.235,0.57],[22.9,1.907],[16.189,-4.251],[24.638,-9.809],[62.93,-0.933],[17.064,5.28],[39.78,6.84],[16.324,-4.986],[-20.64,4.878],[-37.478,2.371],[-50.909,-15.606]],"v":[[-72.5,-32.5],[-96.776,-30.463],[-118.5,-26.5],[-174.579,-5.978],[-237.5,6.5],[-257.089,4.785],[-275.5,5.5],[-265.524,8.534],[-252.5,9.5],[-195.831,5.109],[-147.5,-12.5],[-62.5,-29.5],[99.5,6.5],[151.5,21.5],[274.5,7.5],[257.5,6.5],[191.5,19.5],[102.5,3.5]],"c":true}],"h":1},{"t":211,"s":[{"i":[[44.283,-2.851],[15.919,-4.653],[17.572,-7.053],[13.714,-2.244],[15.726,1.157],[6.682,0.25],[-7.858,-2.451],[-21.997,5.345],[-17.908,6.761],[-14.587,3.08],[-17.099,-0.06],[-18.917,-3.917],[-17.181,-5.257],[-37.484,-2.513],[-31.281,9.63],[8.132,-1.607],[25.906,0.14],[37.464,11.463]],"o":[[-20.752,1.336],[-15.919,4.653],[-10.418,4.182],[-13.714,2.244],[-6.13,-0.451],[-6.682,-0.25],[26.103,8.142],[21.997,-5.345],[12.554,-4.739],[14.587,-3.08],[21.151,0.075],[18.917,3.917],[34.273,10.487],[40.151,2.692],[13.227,-4.072],[-24.588,4.86],[-44.65,-0.241],[-36.809,-11.263]],"v":[[-62.5,-32.5],[-115.886,-23.288],[-164.5,-5.5],[-201.02,4.504],[-245.5,6.5],[-268.491,4.823],[-270.5,7.5],[-198.353,8.677],[-138.5,-12.5],[-97.908,-24.6],[-50.5,-29.5],[9.477,-22.886],[63.5,-8.5],[169.5,21.5],[272.5,7.5],[267.5,4.5],[183.5,18.5],[65.5,-11.5]],"c":true}],"h":1},{"t":212,"s":[{"i":[[59.922,-3.858],[13.827,-3.067],[12.195,-4.736],[16.449,-4.229],[23.918,2.02],[5.814,0.919],[1.226,-1.226],[-7.721,-1.269],[-0.957,-0.081],[-17.533,4.839],[-18.588,6.947],[-33.615,-0.119],[-49.361,-15.7],[-35.089,1.314],[-18.496,8.321],[0.878,-0.161],[26.211,-0.4],[22.717,7.411]],"o":[[-15.495,0.998],[-13.827,3.066],[-18.287,7.103],[-16.449,4.229],[-6.519,-0.55],[-5.814,-0.919],[-1.842,1.843],[7.721,1.269],[27.281,2.304],[17.533,-4.839],[25.356,-9.476],[60.281,0.214],[21.723,6.909],[22.755,-0.852],[10.645,-4.789],[-23.146,4.258],[-34.595,0.528],[-47.239,-15.411]],"v":[[-53.5,-32.5],[-97.475,-26.304],[-136.5,-14.5],[-186.277,3.342],[-244.5,7.5],[-263.97,4.668],[-275.5,4.5],[-262.599,9.321],[-245.5,11.5],[-180.98,6.438],[-129.5,-12.5],[-41.5,-29.5],[117.5,5.5],[199.5,20.5],[276.5,6.5],[269.5,4.5],[194.5,16.5],[111.5,0.5]],"c":true}],"h":1},{"t":213,"s":[{"i":[[58.662,-3.777],[0.337,0.002],[0.326,0.014],[26.868,-11.137],[32.289,0.059],[5.056,0.329],[5.523,0.678],[5.676,1.316],[1.595,-1.595],[-3.287,-0.395],[-37.078,14.045],[-36.504,-0.129],[-35.278,-10.674],[-43.637,0.125],[-22.667,6.15],[6.285,-1.046],[27.446,-0.106],[22.697,7.338]],"o":[[-0.326,0.021],[-0.337,-0.002],[-33.239,-1.49],[-26.868,11.137],[-3.251,-0.006],[-5.056,-0.329],[-2.702,-0.332],[-5.676,-1.316],[-3.249,3.249],[53.367,6.414],[26.985,-10.222],[44.952,0.159],[35.79,10.829],[28.045,-0.081],[14.278,-3.874],[-23.109,3.848],[-33.557,0.13],[-45.56,-14.73]],"v":[[-44.5,-32.5],[-45.5,-32.473],[-46.5,-32.5],[-133.713,-12.074],[-219.5,10.5],[-232.296,10.004],[-248.5,8.5],[-262.831,5.056],[-275.5,4.5],[-246.5,12.5],[-125.5,-10.5],[-32.5,-29.5],[85.5,-7.5],[198.5,19.5],[271.5,8.5],[270.5,4.5],[197.5,15.5],[116.5,-0.5]],"c":true}],"h":1},{"t":214,"s":[{"i":[[41.471,-2.67],[10.411,-1.797],[9.749,-3.066],[17.44,-6.655],[23.278,-0.73],[9.013,1.063],[5.786,0.971],[4.438,0.361],[-4.362,-2.715],[-7.167,-0.931],[-37.71,14.165],[-37.107,0.55],[-33.049,-10.131],[-37.961,-2.102],[-23.176,4.65],[19.206,-2.421],[23.222,-1.286],[44.838,13.063]],"o":[[-11.609,0.748],[-10.41,1.797],[-17.96,5.65],[-17.44,6.655],[-7.161,0.224],[-9.013,-1.063],[-1.61,-0.27],[-4.438,-0.361],[7.951,4.949],[55.265,7.179],[25.733,-9.666],[42.337,-0.627],[33.452,10.255],[27.899,1.545],[3.959,-0.794],[-21.118,2.662],[-58.239,3.225],[-34.565,-10.07]],"v":[[-35.5,-32.5],[-68.396,-28.739],[-98.5,-21.5],[-150.012,-1.31],[-209.5,11.5],[-235.032,9.897],[-258.5,6.5],[-270.479,4.761],[-273.5,7.5],[-240.5,13.5],[-115.5,-10.5],[-25.5,-29.5],[85.5,-9.5],[190.5,17.5],[260.5,10.5],[273.5,4.5],[218.5,13.5],[80.5,-14.5]],"c":true}],"h":1},{"t":215,"s":[{"i":[[53.893,-3.47],[0.337,0.002],[0.326,0.014],[25.255,-11.073],[29.928,-2.144],[9.502,0.834],[8.512,1.413],[7.102,0.748],[-9.473,-3.333],[-19.291,0.117],[-37.851,12.171],[-46.419,-8.303],[-40.545,-11.497],[-33.521,10.475],[0.591,1.372],[0.236,-0.039],[8.408,-1.249],[31.398,9.896]],"o":[[-0.325,0.021],[-0.337,-0.002],[-32.05,-1.437],[-25.255,11.073],[-10.478,0.75],[-9.502,-0.834],[-2.065,-0.343],[-7.102,-0.748],[18.669,6.57],[46.68,-0.284],[35.139,-11.299],[41.71,7.461],[31.948,9.059],[-4.337,1.355],[-0.686,-1.593],[-8.374,1.389],[-44.613,6.628],[-42.487,-13.39]],"v":[[-26.5,-32.5],[-27.5,-32.473],[-28.5,-32.5],[-111.592,-12.686],[-191.5,12.5],[-221.475,12.123],[-248.5,8.5],[-267.653,5.743],[-269.5,8.5],[-204.5,17.5],[-91.5,-16.5],[37.5,-23.5],[152.5,8.5],[274.5,8.5],[280.5,4.5],[271.5,4.5],[242.5,9.5],[125.5,-3.5]],"c":true}],"h":1},{"t":216,"s":[{"i":[[86.158,-5.548],[10.771,-2.136],[10.672,-3.602],[9.169,-3.685],[9.83,-4.056],[10.669,-2.351],[15.528,0.62],[10.073,1.389],[6.166,1.223],[-14.336,-5.553],[-4.573,-1.035],[-16.934,-0.938],[-38.234,14.121],[-40.122,-3.106],[-31.039,-9.764],[-56.188,11.682],[14.863,-2.057],[20.014,1.388]],"o":[[-13.243,0.853],[-10.771,2.136],[-9.492,3.203],[-9.17,3.685],[-7.797,3.217],[-10.669,2.351],[-5.54,-0.221],[-10.073,-1.389],[-4.711,-0.934],[-5.425,-2.101],[17.113,3.872],[53.167,2.944],[28.786,-10.632],[36.834,2.852],[48.801,15.352],[8.721,-1.813],[-21.929,3.035],[-82.766,-5.739]],"v":[[-17.5,-32.5],[-52.929,-28.061],[-84.5,-19.5],[-112.246,-9.14],[-140.5,2.5],[-167.702,11.378],[-206.5,14.5],[-232.031,11.751],[-258.5,7.5],[-270.5,8.5],[-262.5,10.5],[-211.5,18.5],[-93.5,-12.5],[12.5,-28.5],[113.5,-6.5],[266.5,9.5],[272.5,4.5],[203.5,10.5]],"c":true}],"h":1},{"t":217,"s":[{"i":[[50.618,-3.259],[12.796,-2.873],[12.492,-4.52],[11.322,-5.019],[10.53,-2.877],[17.336,1.305],[14.825,3.104],[5.117,0.499],[-4.422,-2.405],[-0.153,-0.047],[-2.325,-0.691],[-27.712,1.381],[-38.274,12.509],[-35.773,-3.247],[-28.81,-8.832],[-55.896,14.156],[7.803,-1.328],[33.794,10.456]],"o":[[-15.325,0.987],[-12.796,2.873],[-11.183,4.046],[-11.322,5.019],[-15.832,4.325],[-17.336,-1.305],[-1.953,-0.409],[-5.117,-0.499],[2.065,1.123],[0.153,0.047],[24.91,7.396],[47.545,-2.369],[27.754,-9.071],[33.124,3.007],[43.429,13.313],[18.916,-4.791],[-49.944,8.497],[-43.264,-13.386]],"v":[[-8.5,-32.5],[-50.125,-26.65],[-87.5,-15.5],[-121.49,-1.123],[-154.5,11.5],[-205.256,15.072],[-254.5,7.5],[-268.281,5.389],[-272.5,7.5],[-270.195,8.824],[-267.5,9.5],[-185.5,20.5],[-72.5,-16.5],[25.5,-28.5],[116.5,-8.5],[271.5,8.5],[263.5,6.5],[135.5,-6.5]],"c":true}],"h":1},{"t":218,"s":[{"i":[[38.002,-2.447],[13.049,-3.039],[12.811,-4.813],[11.788,-5.125],[11.171,-3.113],[18.247,1.846],[15.089,3.331],[3.9,0.097],[-7.67,-2.506],[-12.08,-2.279],[-10.795,-0.654],[-14.756,4.354],[-14.549,5.946],[-26.809,4.962],[-32.958,-5.576],[-80.294,20.408],[3.759,-0.58],[49.24,13.639]],"o":[[-15.993,1.03],[-13.049,3.039],[-11.679,4.387],[-11.788,5.125],[-16.925,4.716],[-18.247,-1.846],[-5.07,-1.119],[-3.9,-0.097],[9.885,3.23],[12.08,2.279],[22.428,1.36],[14.756,-4.354],[23.808,-9.729],[26.809,-4.962],[65.488,11.081],[15.727,-3.997],[-64.152,9.9],[-32.606,-9.032]],"v":[[0.5,-32.5],[-42.386,-26.337],[-80.5,-14.5],[-115.881,0.456],[-150.5,13.5],[-204.377,16.535],[-255.5,7.5],[-271.555,5.281],[-268.5,8.5],[-234.683,16.932],[-199.5,21.5],[-145.591,15.979],[-103.5,-0.5],[-28.362,-23.979],[60.5,-24.5],[274.5,7.5],[264.5,5.5],[110.5,-16.5]],"c":true}],"h":1},{"t":219,"s":[{"i":[[47.487,-3.058],[13.742,-3.337],[13.62,-5.53],[12.633,-5.268],[12.27,-2.976],[19.463,2.786],[14.12,2.984],[2.661,-0.451],[-7.731,-2.272],[-13.468,-2.412],[-12.709,-0.704],[-23.723,9.948],[-54.629,-0.194],[-39.228,-12.523],[-39.457,5.758],[14.95,-1.103],[5.195,-0.329],[27.816,8.623]],"o":[[-17.413,1.121],[-13.742,3.337],[-12.196,4.952],[-12.633,5.268],[-17.026,4.13],[-19.463,-2.786],[-5.089,-1.075],[-2.661,0.451],[12.421,3.649],[13.468,2.412],[37.244,2.063],[39.312,-16.486],[51.13,0.181],[29.212,9.325],[9.224,-1.346],[-6.93,0.511],[-47.931,3.032],[-38.127,-11.819]],"v":[[10.5,-32.5],[-35.344,-25.807],[-75.5,-12.5],[-112.944,3.482],[-150.5,16.5],[-207.18,16.835],[-259.5,6.5],[-273.116,5.489],[-267.5,9.5],[-228.216,18.709],[-188.5,23.5],[-110.5,5.5],[22.5,-29.5],[149.5,-3.5],[265.5,9.5],[272.5,3.5],[246.5,7.5],[145.5,-9.5]],"c":true}],"h":1},{"t":220,"s":[{"i":[[44.35,-2.856],[14.987,-3.661],[12.98,-5.194],[13.045,-5.795],[13.675,-2.562],[16.72,2.346],[14.323,3.386],[6.338,1.402],[0.592,-1.333],[-3.045,-0.717],[-36.615,6.893],[-13.568,5.59],[-58.426,0.207],[-37.681,-12.315],[-40.43,10.458],[3.256,3.256],[11.579,-0.488],[28.545,9.079]],"o":[[-18.07,1.163],[-14.987,3.661],[-13.144,5.258],[-13.045,5.795],[-14.797,2.771],[-16.72,-2.346],[-3.056,-0.723],[-6.338,-1.402],[-1.563,3.516],[33.575,7.902],[14.387,-2.708],[42.051,-17.324],[48.2,-0.171],[28.99,9.475],[-16.822,4.351],[-2.516,-2.516],[-40.823,1.72],[-41.884,-13.322]],"v":[[19.5,-32.5],[-29.817,-25.023],[-71.5,-11.5],[-110.601,6.023],[-150.5,19.5],[-198.855,19.118],[-246.5,9.5],[-262.848,5.459],[-275.5,4.5],[-262.5,9.5],[-150.5,24.5],[-108.5,8.5],[30.5,-29.5],[154.5,-5.5],[274.5,7.5],[280.5,3.5],[246.5,6.5],[149.5,-10.5]],"c":true}],"h":1},{"t":221,"s":[{"i":[[42.734,-2.752],[15.189,-3.918],[14.762,-6.072],[6.882,-2.878],[6.883,-2.777],[7.389,-2.81],[7.362,-0.904],[23.64,5.648],[2.928,-2.928],[-0.858,-0.212],[-36.002,6.174],[-28.918,11.475],[-39.771,0.141],[-36.932,-12.399],[-39.138,9.677],[2.769,2.769],[11.737,-0.327],[27.296,9.034]],"o":[[-19.48,1.255],[-15.19,3.918],[-6.59,2.71],[-6.882,2.878],[-7.084,2.857],[-7.389,2.81],[-31.464,3.861],[-2.475,-0.591],[-2.882,2.882],[32.763,8.098],[30.975,-5.312],[28.707,-11.392],[47.138,-0.167],[28.465,9.556],[-10.382,2.567],[-2.396,-2.396],[-38.841,1.081],[-40.045,-13.253]],"v":[[28.5,-32.5],[-22.538,-24.613],[-66.5,-9.5],[-86.78,-1.05],[-107.5,7.5],[-129.292,16.465],[-151.5,22.5],[-245.5,9.5],[-275.5,3.5],[-262.5,9.5],[-148.5,26.5],[-60.5,-7.5],[39.5,-29.5],[159.5,-6.5],[274.5,6.5],[280.5,3.5],[246.5,5.5],[153.5,-11.5]],"c":true}],"h":1},{"t":222,"s":[{"i":[[40.569,-2.612],[15.96,-4.396],[14.866,-6.175],[7.401,-2.802],[7.43,-2.9],[7.696,-2.811],[7.731,-0.833],[18.689,4.391],[16.682,3.436],[-12.929,-4.039],[-12.764,-2.843],[-23.559,2.98],[-15.745,6.32],[-66.076,-3.122],[-34.84,-11.572],[-35.041,8.732],[4.963,-0.369],[29.452,10.458]],"o":[[-19.292,1.242],[-15.96,4.396],[-6.965,2.893],[-7.401,2.802],[-7.484,2.921],[-7.696,2.811],[-18.564,2],[-18.689,-4.391],[-8.537,-1.758],[16.248,5.076],[17.293,3.852],[16.714,-2.114],[46.367,-18.612],[38.839,1.835],[24.382,8.098],[14.275,-3.557],[-43.724,3.255],[-34.823,-12.365]],"v":[[37.5,-32.5],[-14.82,-23.699],[-60.5,-7.5],[-82.151,0.994],[-104.5,9.5],[-127.315,18.566],[-150.5,24.5],[-206.911,19.077],[-260.5,5.5],[-270.5,7.5],[-216.5,20.5],[-147.5,28.5],[-98.5,11.5],[58.5,-29.5],[167.5,-6.5],[274.5,6.5],[265.5,3.5],[159.5,-12.5]],"c":true}],"h":1},{"t":223,"s":[{"i":[[39.916,-2.57],[16.964,-4.609],[15.791,-6.317],[15.92,-6.58],[16.812,-0.877],[20.469,5.525],[17.347,1.88],[-0.168,-3.445],[-6.111,-1.373],[-12.256,-2.916],[-22.151,1.51],[-15.868,6.021],[-65.298,1.449],[-33.378,-11.365],[-36.346,5.346],[0.288,-0.01],[-4.008,-0.079],[21.125,7.257]],"o":[[-19.355,1.246],[-16.964,4.609],[-14.507,5.804],[-15.92,6.58],[-18.779,0.98],[-20.469,-5.525],[4.283,0.464],[0.095,1.956],[15.443,3.47],[15.861,3.773],[17.346,-1.182],[48.778,-18.508],[40.795,-0.905],[26.042,8.867],[16.127,-2.372],[-2.839,0.097],[-34.049,-0.673],[-37.013,-12.714]],"v":[[46.5,-32.5],[-7.673,-23.303],[-56.5,-6.5],[-102.271,13.695],[-151.5,26.5],[-211.574,17.145],[-269.5,3.5],[-276.5,4.5],[-261.5,8.5],[-215.5,19.5],[-149.5,30.5],[-98.5,15.5],[55.5,-29.5],[166.5,-8.5],[273.5,6.5],[272.5,2.5],[248.5,3.5],[163.5,-13.5]],"c":true}],"h":1},{"t":224,"s":[{"i":[[-0.139,0.009],[17.863,-4.93],[14.604,-5.997],[16.237,-6.48],[18.654,-0.755],[18.928,5.056],[16.534,3.494],[4.25,0.183],[-4.436,-2.248],[-5.843,-0.971],[-2.722,-0.643],[-34.515,2.785],[-31.908,12.808],[-44.163,0.655],[-54.926,-8.722],[-13.735,3.561],[7.072,0.402],[73.765,-5.418]],"o":[[-19.946,1.285],[-17.863,4.93],[-15.399,6.324],[-16.237,6.48],[-17.755,0.718],[-18.928,-5.056],[-2.438,-0.515],[-4.25,-0.183],[2.906,1.473],[5.843,0.971],[31.207,7.376],[36.867,-2.975],[32.035,-12.859],[62.93,-0.933],[10.681,1.696],[17.786,-4.611],[-65.902,-3.748],[-0.597,0.044]],"v":[[55.5,-32.5],[-1.507,-22.535],[-50.5,-5.5],[-97.558,15.177],[-149.5,27.5],[-205.416,19.159],[-259.5,4.5],[-272.156,2.927],[-274.5,5.5],[-259.862,9.123],[-245.5,11.5],[-145.5,31.5],[-43.5,-2.5],[65.5,-29.5],[222.5,3.5],[274.5,5.5],[243.5,2.5],[56.5,-33.5]],"c":true}],"h":1},{"t":225,"s":[{"i":[[-0.139,0.009],[17.42,-5.115],[17.273,-7.186],[17.339,-6.242],[18.921,-0.493],[18.938,5.475],[18.541,3.587],[3.313,-0.174],[-7.112,-2.05],[-13.763,-3.775],[-20.719,0.105],[-16.151,5.384],[-59.243,5.924],[-33.273,-11.814],[-37.031,1.096],[18.832,0.101],[9.374,0.582],[74.175,-5.448]],"o":[[-21.048,1.355],[-17.42,5.115],[-15.721,6.54],[-17.339,6.242],[-18.706,0.488],[-18.938,-5.475],[-3.858,-0.747],[-3.314,0.174],[17.932,5.168],[17.687,4.851],[16.887,-0.085],[49.888,-16.63],[42.927,-4.293],[25.388,9.015],[17.636,-0.522],[-15.171,-0.082],[-67.545,-4.196],[-0.597,0.044]],"v":[[64.5,-32.5],[7.669,-22.373],[-43.5,-3.5],[-93.1,17.035],[-147.5,28.5],[-204.124,19.056],[-260.5,3.5],[-273.727,2.403],[-270.5,5.5],[-214.5,19.5],[-148.5,33.5],[-94.5,21.5],[53.5,-28.5],[168.5,-13.5],[265.5,5.5],[263.5,1.5],[245.5,1.5],[65.5,-33.5]],"c":true}],"h":1},{"t":226,"s":[{"i":[[21.016,-1.353],[9.95,-1.786],[9.654,-3.048],[8.452,-3.408],[8.252,-3.545],[40.131,1.87],[28.681,6.546],[2.509,-2.509],[-0.657,-0.129],[-12.643,-3.461],[-20.462,-1.031],[-22.04,8.433],[-21.387,8.279],[-53.321,-13.18],[-46.242,7.01],[4.247,4.247],[5.589,0.604],[30.271,7.483]],"o":[[-12.547,0.808],[-9.95,1.786],[-8.938,2.822],[-8.452,3.408],[-29.245,12.562],[-28.55,-1.33],[-3.045,-0.695],[-3.212,3.212],[18.118,3.566],[21.982,6.017],[25.799,1.3],[22.71,-8.69],[45.664,-17.677],[33.072,8.175],[-28.884,4.379],[-0.913,-0.913],[-38.358,-4.148],[-19.04,-4.706]],"v":[[73.5,-32.5],[40.331,-28.68],[11.5,-21.5],[-14.515,-12.042],[-39.5,-1.5],[-150.5,29.5],[-242.5,6.5],[-276.5,1.5],[-262.5,6.5],[-214.5,18.5],[-150.5,33.5],[-74.5,17.5],[-9.5,-9.5],[148.5,-22.5],[271.5,4.5],[279.5,1.5],[241.5,-0.5],[147.5,-26.5]],"c":true}],"h":1},{"t":227,"s":[{"i":[[18.628,-1.199],[10.601,-1.803],[9.58,-3.014],[8.655,-3.653],[8.5,-3.593],[41.337,2.357],[22.301,6.177],[15.403,2.713],[-16.006,-3.65],[-14.014,-3.966],[-20.523,-0.948],[-22.312,7.922],[-86.38,-22.395],[-22.218,-5.713],[-21.415,2.108],[13.184,0.556],[9.013,2.318],[17.584,4.401]],"o":[[-12.014,0.773],[-10.601,1.803],[-8.88,2.794],[-8.655,3.653],[-29.973,12.67],[-19.367,-1.104],[-10.511,-2.911],[-8.457,-1.489],[18.861,4.302],[18.362,5.197],[25.931,1.198],[64.014,-22.73],[17.505,4.538],[15.37,3.952],[15.6,-1.536],[-15.234,-0.642],[-18.367,-4.723],[-20.172,-5.049]],"v":[[83.5,-32.5],[49.674,-28.68],[19.5,-21.5],[-6.785,-11.6],[-32.5,-0.5],[-148.5,30.5],[-211.5,14.5],[-259.5,2.5],[-269.5,4.5],[-212.5,18.5],[-147.5,34.5],[-70.5,19.5],[150.5,-23.5],[210.5,-3.5],[272.5,4.5],[261.5,0.5],[209.5,-7.5],[150.5,-27.5]],"c":true}],"h":1},{"t":228,"s":[{"i":[[12.71,-0.818],[20.195,-6.146],[16.407,-6.947],[20.644,-6.368],[22.558,2.191],[10.578,3.227],[11.077,3.16],[14.379,2.277],[-10.919,-3.047],[-6.07,-1.298],[-30.893,-2.952],[-35.86,15.159],[-48.329,-0.171],[-33.678,-9.073],[-17.096,-0.947],[13.726,2.002],[11.486,1.611],[29.167,6.482]],"o":[[-22.811,1.469],[-20.195,6.146],[-15.865,6.718],[-20.644,6.368],[-9.612,-0.934],[-10.578,-3.227],[-10.942,-3.121],[-4.581,-0.725],[7.686,2.145],[34.106,7.292],[47.416,4.531],[37.707,-15.94],[43.051,0.153],[12.771,3.441],[6.753,0.374],[-13.948,-2.034],[-36.141,-5.069],[-17.214,-3.825]],"v":[[92.5,-32.5],[27.697,-20.108],[-27.5,0.5],[-82.98,22.181],[-148.5,30.5],[-178.9,23.669],[-211.5,13.5],[-259.5,1.5],[-273.5,3.5],[-243.5,8.5],[-147.5,34.5],[-21.5,2.5],[104.5,-29.5],[210.5,-5.5],[261.5,3.5],[275.5,0.5],[243.5,-2.5],[149.5,-29.5]],"c":true}],"h":1},{"t":229,"s":[{"i":[[9.417,-0.606],[10.386,-1.865],[10.88,-3.601],[9.088,-4.017],[9.033,-3.752],[47.432,6],[18.796,5.403],[17.682,2.642],[-13.427,-2.262],[-13.788,-3.956],[-20.368,-2.194],[-21.072,5.575],[-75.047,-0.266],[-27.828,-7.602],[-19.447,-1.905],[13.855,1.973],[9.091,1.489],[30.195,6.307]],"o":[[-14.575,0.938],[-10.386,1.865],[-9.616,3.183],[-9.088,4.016],[-32.124,13.342],[-17.866,-2.26],[-16.258,-4.673],[-12.892,-1.927],[21.008,3.539],[23.395,6.711],[26.881,2.896],[63.702,-16.855],[37.36,0.132],[14.08,3.846],[13.879,1.36],[-9.817,-1.398],[-36.539,-5.983],[-14.358,-2.999]],"v":[[101.5,-32.5],[65.229,-28.497],[34.5,-20.5],[6.563,-9.427],[-20.5,2.5],[-148.5,30.5],[-211.5,12.5],[-259.5,0.5],[-269.5,3.5],[-210.5,16.5],[-146.5,34.5],[-74.5,25.5],[113.5,-29.5],[211.5,-7.5],[261.5,2.5],[272.5,-0.5],[245.5,-3.5],[149.5,-30.5]],"c":true}],"h":1},{"t":230,"s":[{"i":[[56.189,-3.618],[11.156,-1.968],[10.258,-3.346],[9.118,-4.047],[9.091,-3.733],[23.939,-5.987],[24.633,4.591],[15.004,4.998],[16.923,3.387],[9.643,0.701],[-11.214,-2.132],[-12.217,-3.384],[-18.317,-3.448],[-24.196,6.493],[-21.442,8.992],[-57.243,-11.846],[-46.537,-0.329],[3.314,0.393]],"o":[[-12.118,0.78],[-11.156,1.968],[-9.435,3.078],[-9.118,4.047],[-18.613,7.643],[-23.939,5.987],[-14.061,-2.62],[-15.004,-4.998],[-1.642,-0.329],[-9.643,-0.701],[19.831,3.77],[20.4,5.651],[28.172,5.303],[24.173,-6.486],[39.196,-16.437],[35.857,7.42],[22.485,0.159],[-57.117,-6.769]],"v":[[110.5,-32.5],[75.605,-28.425],[43.5,-20.5],[15.742,-9.491],[-11.5,2.5],[-76.484,25.176],[-150.5,29.5],[-193.854,17.075],[-241.5,3.5],[-265.642,1.154],[-270.5,2.5],[-212.5,14.5],[-150.5,33.5],[-67.5,26.5],[-0.5,1.5],[151.5,-27.5],[270.5,2.5],[261.5,-2.5]],"c":true}],"h":1},{"t":231,"s":[{"i":[[4.069,-0.262],[20.861,-7.204],[20.011,-8.006],[53.795,11.132],[15.812,4.406],[14.601,2.7],[2.018,-4.337],[-6.307,-0.651],[-13.512,-3.699],[-18.434,-3.349],[-41.846,17.633],[-54.252,-2.767],[-4.129,-0.75],[-34.141,-6.637],[-1.239,2.598],[-14.727,-2.8],[9.08,1.713],[26.675,4.884]],"o":[[-28.607,1.842],[-19.945,6.887],[-36.79,14.719],[-18.184,-3.763],[-9.003,-2.509],[-3.191,-0.59],[-1.11,2.385],[19.981,2.063],[17.587,4.814],[56.718,10.304],[44.423,-18.719],[3.387,0.173],[29.889,5.43],[9.358,1.819],[1.977,-4.145],[-9.188,-1.747],[-33.641,-6.349],[-9.981,-1.827]],"v":[[119.5,-32.5],[48.5,-18.5],[-10.5,5.5],[-150.5,28.5],[-210.5,9.5],[-242.5,2.5],[-277.5,-0.5],[-261.5,3.5],[-210.5,13.5],[-148.5,32.5],[-2.5,6.5],[138.5,-29.5],[151.5,-28.5],[243.5,-1.5],[278.5,1.5],[271.5,-1.5],[245.5,-5.5],[151.5,-32.5]],"c":true}],"h":1},{"t":232,"s":[{"i":[[43.118,-2.776],[11.562,-2.553],[10.79,-3.825],[10.311,-4.012],[10.242,-4.226],[24.313,-4.77],[27.688,5.947],[10.774,3.728],[7.37,2.041],[5.149,1.38],[6.356,1.081],[1.383,-2.869],[-1.874,-0.298],[-33.092,-6.912],[-62.594,20.054],[-29.962,-2.96],[-45.668,-1.578],[6.1,0.933]],"o":[[-14.964,0.963],[-11.562,2.553],[-10.516,3.727],[-10.311,4.012],[-19.061,7.866],[-24.313,4.77],[-9.534,-2.047],[-10.774,-3.728],[-5.048,-1.399],[-5.149,-1.38],[-4.247,-0.722],[-1.402,2.907],[37.119,5.911],[88.335,18.452],[22.072,-7.072],[39.749,3.927],[20.15,0.696],[-46.757,-7.153]],"v":[[128.5,-32.5],[89.369,-27.146],[56.5,-17.5],[25.294,-5.874],[-5.5,6.5],[-71.03,27.36],[-149.5,27.5],[-181.122,17.995],[-209.5,8.5],[-224.519,4.262],[-241.5,0.5],[-277.5,-1.5],[-243.5,4.5],[-147.5,31.5],[67.5,-17.5],[146.5,-29.5],[269.5,1.5],[261.5,-3.5]],"c":true}],"h":1},{"t":233,"s":[{"i":[[32.196,-1.737],[11.604,-2.452],[12.024,-4.351],[34.547,-10.778],[43.384,10.122],[20.246,6.562],[23.562,-1.087],[-3.466,-0.828],[-3.878,-0.238],[-17.813,-5.568],[-17.808,-4.319],[-62.836,21.396],[-28.056,-1.649],[-21.462,-6.122],[-14.547,-3.218],[-4.206,4.206],[0.225,0.101],[8.02,1.687]],"o":[[-15.559,0.84],[-11.604,2.452],[-30.427,11.01],[-34.547,10.778],[-16.452,-3.838],[-20.246,-6.562],[-9.741,0.45],[3.466,0.828],[22.942,1.408],[17.813,5.568],[89.778,21.773],[22.319,-7.6],[20.252,1.19],[8.259,2.356],[5.825,1.289],[0.947,-0.947],[-8.483,-3.795],[-36.595,-7.698]],"v":[[137.5,-32.5],[97.849,-27.634],[63.5,-17.5],[-32.782,20.349],[-148.5,26.5],[-203.667,8.306],[-269.5,-2.5],[-275.714,-0.341],[-261.5,1.5],[-201.649,13.317],[-149.5,29.5],[69.5,-15.5],[147.5,-29.5],[210.5,-12.5],[242.5,-4.5],[278.5,0.5],[276.5,-2.5],[245.5,-7.5]],"c":true}],"h":1},{"t":234,"s":[{"i":[[30.86,0.177],[12.804,-3.012],[11.249,-4.029],[34.923,-10.307],[46.898,11.837],[18.343,5.762],[21.919,0.735],[3.612,-0.93],[-7.863,-0.426],[-16.662,-3.665],[-14.668,-5.163],[-20.345,-1.87],[-19.106,3.294],[-30.499,12.545],[-40.762,-4.175],[-21.113,-5.62],[-16.119,-0.905],[1.266,0.231]],"o":[[-13.535,-0.078],[-12.804,3.012],[-32.41,11.608],[-34.923,10.307],[-16.707,-4.217],[-18.343,-5.762],[-4.414,-0.148],[-3.612,0.93],[21.682,1.177],[16.662,3.665],[16.514,5.813],[20.345,1.87],[36.354,-6.268],[28.235,-11.614],[19.69,2.017],[13.493,3.592],[20.866,1.172],[-39.899,-7.286]],"v":[[146.5,-32.5],[106.785,-27.58],[70.5,-16.5],[-28.134,21.584],[-148.5,24.5],[-200.591,7.888],[-260.5,-3.5],[-275.207,-1.931],[-271.5,0.5],[-214.74,8.01],[-168.5,21.5],[-111.943,33.33],[-51.5,31.5],[46.5,-2.5],[153.5,-28.5],[215.5,-12.5],[270.5,0.5],[262.5,-5.5]],"c":true}],"h":1},{"t":235,"s":[{"i":[[35.618,-2.736],[17.091,-5.535],[15.2,-6.446],[16.236,-5.645],[18.937,-2.009],[19.066,2.856],[16.379,5.736],[12.954,3.167],[15.151,1.12],[-3.633,-3.633],[-6.331,-0.633],[-26.471,-7.376],[-45.174,17.227],[-20.981,8.095],[-25.604,-0.773],[-27.9,-6.438],[-3.154,3.154],[1.01,0.193]],"o":[[-18.437,1.416],[-17.091,5.535],[-15.118,6.412],[-16.236,5.645],[-20.359,2.16],[-19.066,-2.856],[-12.031,-4.213],[-12.954,-3.167],[-2.269,-0.168],[1.688,1.688],[36.646,3.665],[52.484,14.624],[21.976,-8.38],[21.639,-8.349],[30.06,0.907],[4.097,0.945],[2.948,-2.948],[-38.103,-7.263]],"v":[[142.5,-31.5],[89.072,-20.273],[40.5,-1.5],[-6.136,17.302],[-58.5,29.5],[-117.985,27.922],[-171.5,14.5],[-208.66,3.181],[-250.5,-3.5],[-278.5,-0.5],[-241.5,1.5],[-149.5,26.5],[9.5,16.5],[75.5,-10.5],[150.5,-28.5],[243.5,-5.5],[277.5,-0.5],[262.5,-5.5]],"c":true}],"h":1},{"t":236,"s":[{"i":[[33.246,-3.485],[30.217,-13.159],[40.301,-3.293],[18.669,2.942],[17.446,5.857],[17.891,4.071],[19.519,-2.617],[-3.494,-0.748],[-3.396,-0.018],[-18.039,-4.856],[-19.269,-5.442],[-18.816,-1.465],[-19.352,3.204],[-29.087,12.276],[-31.284,0.317],[-21.259,-5.659],[-17.273,-1.735],[4.357,0.897]],"o":[[-38.832,4.07],[-30.217,13.159],[-19.878,1.624],[-18.669,-2.942],[-12.915,-4.335],[-17.892,-4.071],[-7.371,0.989],[3.494,0.748],[24.574,0.132],[18.039,4.856],[15.384,4.346],[18.816,1.465],[34.897,-5.778],[24.519,-10.348],[21.938,-0.223],[14.078,3.747],[18.407,1.849],[-36.692,-7.557]],"v":[[143.5,-30.5],[44.602,0.083],[-56.5,29.5],[-114.324,27.111],[-168.5,13.5],[-215.546,-0.715],[-272.5,-4.5],[-275.575,-1.772],[-262.5,-0.5],[-200.521,8.017],[-146.5,24.5],[-94.476,33.662],[-36.5,31.5],[55.5,0.5],[150.5,-27.5],[215.5,-14.5],[270.5,-1.5],[261.5,-6.5]],"c":true}],"h":1},{"t":237,"s":[{"i":[[32.96,-3.401],[16.017,-6.205],[15.025,-6.23],[17.036,-4.91],[20.259,-0.89],[29.961,9.144],[35.612,1.117],[6.989,-0.423],[-1.112,-2.377],[-3.544,0.24],[-2.344,0.065],[-38.158,-10.342],[-40.76,4.916],[-44.134,15.916],[-15.853,0.415],[-29.921,-7.118],[-3.78,3.78],[2.925,0.647]],"o":[[-18.906,1.951],[-16.017,6.205],[-15.599,6.468],[-17.036,4.91],[-38.546,1.695],[-29.961,-9.144],[-2.156,-0.067],[-6.989,0.423],[0.48,1.024],[3.544,-0.24],[49.721,-1.383],[31.611,8.567],[52.723,-6.358],[15.841,-5.713],[32.03,-0.837],[5.172,1.23],[2.022,-2.022],[-36.365,-8.045]],"v":[[146.5,-29.5],[94.589,-16.209],[48.5,3.5],[-0.005,21.183],[-55.5,30.5],[-154.701,14.609],[-249.5,-5.5],[-266.451,-5.333],[-278.5,-1.5],[-271.398,-0.683],[-261.5,-1.5],[-143.5,22.5],[-34.5,32.5],[102.5,-13.5],[151.5,-26.5],[245.5,-7.5],[277.5,-1.5],[263.5,-6.5]],"c":true}],"h":1},{"t":238,"s":[{"i":[[38.88,-5.301],[31.164,-13.638],[44.752,1.404],[17.763,3.943],[16.923,5.601],[13.857,2.741],[15.603,0.075],[7.171,-0.789],[-1.85,-1.849],[-6.481,0.456],[-4.316,-0.066],[-7.009,-1.11],[-64.051,-0.307],[-29.542,11.82],[-34.266,3.275],[-27.682,-6.871],[16.782,6.551],[10.328,2.537]],"o":[[-35.59,4.852],[-31.164,13.638],[-20.024,-0.628],[-17.763,-3.943],[-11.969,-3.961],[-13.857,-2.741],[-1.166,-0.005],[-7.171,0.789],[0.76,0.76],[6.481,-0.456],[11.405,0.174],[58.453,9.256],[43.31,0.208],[28.64,-11.459],[33.328,-3.185],[4.849,1.204],[-7.037,-2.747],[-36.784,-9.035]],"v":[[145.5,-27.5],[49.871,6.192],[-59.5,30.5],[-115.826,23.23],[-167.5,8.5],[-206.274,-1.914],[-250.5,-6.5],[-266.762,-5.391],[-278.5,-1.5],[-265.667,-1.48],[-247.5,-2.5],[-217.5,0.5],[-54.5,34.5],[52.5,10.5],[149.5,-24.5],[245.5,-7.5],[273.5,-5.5],[265.5,-6.5]],"c":true}],"h":1},{"t":239,"s":[{"i":[[32.231,-3.92],[0.847,0.063],[0.802,-0.153],[15.563,-6.633],[15.66,-6.204],[18.08,-4.088],[22.874,1.216],[17.68,4.327],[17.442,5.69],[19.665,2.914],[15.982,-3.689],[-1.19,0.033],[-8.396,-1.076],[-61.306,-2.852],[-45.703,18.617],[-16.958,1.967],[-38.284,-4.378],[5.905,1.387]],"o":[[-0.811,0.099],[-0.847,-0.063],[-17.09,3.264],[-15.563,6.633],[-14.806,5.866],[-18.08,4.088],[-18.837,-1.001],[-17.68,-4.327],[-12.357,-4.032],[-19.665,-2.915],[-21.824,5.038],[13.545,-0.377],[59.816,7.669],[69.136,3.216],[15.614,-6.36],[46.082,-5.346],[15.357,1.756],[-33.59,-7.888]],"v":[[151.5,-26.5],[148.993,-26.541],[146.5,-26.5],[97.927,-10.705],[51.5,9.5],[2.551,25.311],[-58.5,30.5],[-113.046,22.017],[-165.5,6.5],[-216.281,-5.291],[-272.5,-5.5],[-249.5,-3.5],[-218.5,-1.5],[-56.5,34.5],[100.5,-5.5],[149.5,-22.5],[270.5,-2.5],[263.5,-7.5]],"c":true}],"h":1},{"t":240,"s":[{"i":[[32.409,-4.559],[8.299,-3.091],[8.313,-3.299],[25.541,-7.659],[34.127,3.044],[17.546,4.414],[17.339,5.606],[19.38,2.3],[16.55,-3.702],[-8.06,0.341],[-0.409,0.018],[-32.151,-9.948],[-37.723,-1.413],[-28.19,11.316],[-31.516,5.755],[-28.505,-6.679],[-2.263,2.263],[0.956,0.24]],"o":[[-9.492,1.335],[-8.299,3.091],[-23.709,9.409],[-25.541,7.659],[-19.476,-1.737],[-17.546,-4.414],[-13.93,-4.503],[-19.38,-2.3],[-10.649,2.382],[8.06,-0.341],[40.2,-1.767],[32.437,10.036],[42.43,1.589],[28.147,-11.298],[32.279,-5.894],[6.041,1.415],[1.731,-1.731],[-32.351,-8.132]],"v":[[153.5,-24.5],[127.116,-17.472],[102.5,-7.5],[30.314,20.339],[-57.5,29.5],[-112.603,19.902],[-164.5,4.5],[-216.535,-6.654],[-272.5,-5.5],[-269.793,-3.2],[-250.5,-4.5],[-146.5,14.5],[-42.5,34.5],[61.5,14.5],[150.5,-20.5],[248.5,-7.5],[277.5,-2.5],[265.5,-8.5]],"c":true}],"h":1}],"ix":1},"o":{"a":1,"k":[{"t":0,"s":[100],"h":1},{"t":8,"s":[100],"h":1}],"ix":3},"x":{"a":0,"k":1,"ix":4},"nm":"Mask 1"}],"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[600,600],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":9,"ix":5},"lc":1,"lj":1,"ml":4,"ml2":{"a":0,"k":4,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true},{"ty":"fl","c":{"a":0,"k":[0.035294117647,0.337254901961,0.776470588235,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[106.096,14.381],"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":"Rectangle 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":242,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/ui/static/assets/user-avatar.png b/ui/static/assets/user-avatar.png new file mode 100644 index 0000000..ea86052 Binary files /dev/null and b/ui/static/assets/user-avatar.png differ diff --git a/ui/static/assets/user-avatar.svg b/ui/static/assets/user-avatar.svg new file mode 100644 index 0000000..08227cd --- /dev/null +++ b/ui/static/assets/user-avatar.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/ui/static/favicon.png b/ui/static/favicon.png new file mode 100644 index 0000000..963c6c7 Binary files /dev/null and b/ui/static/favicon.png differ diff --git a/ui/svelte.config.js b/ui/svelte.config.js new file mode 100644 index 0000000..4df404a --- /dev/null +++ b/ui/svelte.config.js @@ -0,0 +1,16 @@ +import { vitePreprocess } from "@sveltejs/vite-plugin-svelte"; +import adapter from "@sveltejs/adapter-auto"; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + kit: { + // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. + // If your environment is not supported or you settled on a specific environment, switch out the adapter. + // See https://kit.svelte.dev/docs/adapters for more information about adapters. + adapter: adapter(), + }, + + preprocess: [vitePreprocess({})], +}; + +export default config; diff --git a/ui/tailwind.config.js b/ui/tailwind.config.js new file mode 100644 index 0000000..abd18a8 --- /dev/null +++ b/ui/tailwind.config.js @@ -0,0 +1,50 @@ +/** @type {import('tailwindcss').Config} */ +const config = { + darkMode: ["class"], + content: ["./src/**/*.{html,js,svelte,ts}"], + safelist: ["dark"], + theme: { + container: { + center: true, + padding: "2rem", + screens: { + "2xl": "1400px" + } + }, + extend: { + colors: { + 'primary': 'var(--primary)', + 'background': 'var(--background)', + 'secondary': 'var(--secondary)', + 'tertiary': 'var(--tertiary)', + 'foreground': 'var(--foreground)', + 'foreground-invert': 'var(--foreground-invert)', + 'foreground-light': 'var(--foreground-light)', + 'foreground-secondary': 'var(--foreground-secondary)', + 'border': 'var(--border)', + 'btn-active': 'var(--btn-active)', + 'seperator': 'var(--seperator)', + 'window-outline': 'var(--window-outline)', + 'browser-window-dots': 'var(--browser-window-dots)', + 'browser-window-search': 'var(--browser-window-search)', + 'browser-window-ribbon': 'var(--browser-window-ribbon)', + 'browser-window-foreground': 'var(--browser-window-foreground)', + 'browser-window-background': 'var(--browser-window-background)', + 'terminal-window-dots': 'var(--terminal-window-dots)', + 'terminal-window-ribbon': 'var(--terminal-window-ribbon)', + 'terminal-window-background': 'var(--terminal-window-background)', + 'terminal-window-foreground': 'var(--terminal-window-foreground)', + 'slider-empty': 'var(--slider-empty)', + 'slider-filled': 'var(--slider-filled)', + 'slider-thumb': 'var(--slider-thumb)', + 'monologue-background': 'var(--monologue-background)', + 'monologue-outline': 'var(--monologue-outline)', + }, + fontFamily: { + sans: ["Helvetica"] + } + } + }, +}; + +export default config; \ No newline at end of file diff --git a/ui/vite.config.js b/ui/vite.config.js new file mode 100644 index 0000000..d2f7f27 --- /dev/null +++ b/ui/vite.config.js @@ -0,0 +1,16 @@ +import { sveltekit } from "@sveltejs/kit/vite"; +import { defineConfig } from "vite"; +import wasm from "vite-plugin-wasm"; + +export default defineConfig({ + plugins: [sveltekit(), wasm()], + server: { + port: 3000, + }, + preview: { + port: 3001, + }, + build: { + target: "esnext", + }, +});