mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-27 21:08:00 +00:00
* Enhance autocomplete functionality and settings panel
- Added a new AutocompletePanel component for managing inline autocomplete settings, including options for enabling/disabling, debounce timing, and style configurations.
- Integrated autocomplete status tracking and logging within the panel to provide real-time feedback on the autocomplete engine's state.
- Updated settings navigation to include the new autocomplete settings route, improving user accessibility to autocomplete features.
- Introduced new Tauri commands for managing autocomplete operations, including start, stop, and current status retrieval, enhancing interaction with the autocomplete engine.
- Refactored existing code to streamline autocomplete-related functionalities and improve overall maintainability.
* Update TypeScript configuration and add new assets
- Modified `tsconfig.json` to adjust path aliases and include directories for improved module resolution.
- Added new SVG and image assets to the public directory, enhancing the application's visual resources.
- Introduced multiple Lottie animation JSON files for dynamic UI elements, expanding the application's animation capabilities.
* Update project structure and paths for Tauri integration
- Adjusted paths in the pull request template and various workflow files to reflect the new project structure, moving Tauri-related files under the `app` directory.
- Updated commands in the build and release workflows to ensure compatibility with the new file locations.
- Enhanced the test workflow to create the necessary `.env` file in the correct directory for end-to-end testing.
- Added new markdown files for agent prompts and configuration, establishing a foundation for OpenHuman's AI capabilities.
* Refactor project paths and update configurations for Tauri integration
- Adjusted script paths in package.json to reflect the new project structure, ensuring compatibility with the updated directory layout.
- Modified tsconfig.json to correct path aliases and include directories for improved module resolution.
- Introduced a new utility for resolving development paths, enhancing the ability to locate the `rust-core/ai` directory across different project structures.
- Updated Cargo.toml and tauri.conf.json to align with the new directory structure, ensuring proper resource and dependency management.
- Added a new dev_paths module to streamline path resolution logic, improving maintainability and clarity in the codebase.
* Refactor project structure and update configurations for Tauri integration
- Adjusted paths in .gitignore, Cargo.toml, and various scripts to reflect the new directory layout, moving Tauri-related files under the `app` directory.
- Introduced a new package.json file to manage workspace scripts and dependencies effectively.
- Updated end-to-end build and run scripts to ensure compatibility with the new project structure.
- Enhanced documentation in CONTRIBUTING.md to guide contributors on the updated project organization and Tauri command usage.
* Refactor Tauri command invocations to use dedicated utility functions
- Replaced direct `invoke` calls with utility functions from `tauriCommands` for improved readability and maintainability across multiple components.
- Updated `SkillsGrid`, `Skills`, `SkillProvider`, and `SkillManager` to utilize the new command structure, enhancing consistency in Tauri command handling.
- Introduced a new `coreRpcClient` for managing core RPC relay requests, streamlining error handling and request processing.
- Added a new `core_rpc_relay` command in the Tauri backend to facilitate communication with the core service, ensuring better service management and error reporting.
* Refactor Tauri command invocations in intelligence stats and memory manager
- Replaced direct `invoke` calls with utility functions from `tauriCommands` in `useIntelligenceStats` and `MemoryManager` for improved readability and maintainability.
- Updated the `aiListMemoryFiles`, `aiReadMemoryFile`, and `aiWriteMemoryFile` functions to utilize the new command structure, enhancing consistency in Tauri command handling.
- Introduced new command handling in the Rust backend for `ai.list_memory_files`, `ai.read_memory_file`, and `ai.write_memory_file`, streamlining communication with the core service.
* Refactor SkillsGrid and remove SelfEvolveModal component
- Removed the SelfEvolveModal component to streamline the SkillsGrid functionality.
- Updated the SkillsGrid to utilize the runtimeDiscoverSkills function for loading skills, replacing the previous invoke method.
- Simplified the skill entry normalization process by integrating it directly into the skills loading logic.
- Enhanced error handling during skill loading to improve robustness and user feedback.
* Refactor Tauri command invocations to use coreRpcClient
- Replaced direct `invoke` calls with `callCoreRpc` in various components, including `useIntelligenceStats`, `MemoryManager`, `SessionManager`, and `transcript` functions, enhancing code readability and maintainability.
- Updated the Rust backend to handle new command structures for memory and session management, streamlining communication with the core service.
- Improved consistency in handling Tauri commands across the application.
* Refactor Tauri command invocations to utilize coreRpcClient
- Replaced direct `invoke` calls with `callCoreRpc` in `tauriCommands.ts` and `tauriSocket.ts`, enhancing code readability and maintainability.
- Updated the Rust backend to support new command structures for authentication and session management, streamlining communication with the core service.
- Removed legacy socket reporting methods in `tauriSocket.ts`, reflecting a shift towards event-driven socket state management.
- Improved consistency in handling Tauri commands across the application, aligning with recent refactoring efforts.
* Remove pre-commit hook and update TODO list with completed tasks and new objectives. This includes separating the binary from the Tauri codebase, integrating accessibility service installation, and removing Android/iOS support from the codebase.
* Add core server functionality with dispatch and RPC handling
- Introduced new modules for core server operations, including dispatching RPC requests and handling various AI and memory-related commands.
- Implemented a robust structure for managing authentication, configuration, and session states through the `openhuman` namespace.
- Added helper functions for loading configurations, managing memory files, and processing authentication profiles.
- Established a new routing system using Axum for handling HTTP requests, including health checks and RPC endpoints.
- Enhanced error handling and logging throughout the new functionalities to improve maintainability and user feedback.
* Implement core server CLI and modular structure
- Introduced a new CLI module for the core server, enabling various commands for server management, health checks, and configuration settings.
- Established a modular structure for core server functionalities, including dispatching RPC requests and managing settings for models, memory, and runtime.
- Added comprehensive tests to validate the functionality of accessibility and autocomplete commands, ensuring robust error handling and schema compliance.
- Enhanced the overall organization of the core server codebase, improving maintainability and readability.
* Implement AI RPC dispatch functionality
- Introduced a new `ai_rpc` module for handling various AI-related commands, including memory file operations and session management.
- Enhanced the `try_dispatch` function to support commands such as listing, reading, writing memory files, and managing session states.
- Updated the core server dispatch module to integrate the new AI RPC functionality, improving modularity and maintainability.
- Refactored existing code to ensure consistent parameter parsing and error handling across AI commands.
* Update TODO list and refactor Rust core server files
- Added new tasks to the TODO list for documentation updates and feature flag cleanup.
- Introduced `Arc` import in `cli.rs` for improved concurrency handling.
- Cleaned up imports in `helpers.rs` and added conditional compilation for `tauri-host`.
- Removed unused `value_only` function in `types.rs` and added `#[allow(dead_code)]` to `SocketConnectParams` and `SocketEmitParams`.
- Enhanced `try_dispatch` function in `dispatch/mod.rs` for non-tauri-host scenarios.
- Updated `try_dispatch` in `openhuman/platform.rs` to correctly handle session parameters.
- Modified `screen_intelligence` configuration in tests to include new properties for better session management.
* Refactor import statements and enhance code readability
- Cleaned up import statements across multiple files for improved organization and consistency.
- Reformatted code in `cli.rs`, `helpers.rs`, and various dispatch modules to enhance readability.
- Ensured consistent parameter handling in `try_dispatch` functions, improving maintainability.
- Removed unnecessary whitespace and adjusted formatting for better code clarity.
* Refactor project structure and enhance AI memory management
- Consolidated the `openhuman-core` package into a single `Cargo.toml` file, removing the previous `rust-core` directory.
- Introduced new modules for AI memory management, including filesystem-based storage and encryption functionalities.
- Added Tauri commands for initializing memory and session management, enhancing user interaction with memory files.
- Implemented JSON-based storage for memory chunks and session transcripts, improving data accessibility and organization.
- Updated dependencies and features in `Cargo.toml` to support new functionalities and ensure compatibility.
* Update build and release workflows to reflect project structure changes
- Adjusted paths in GitHub Actions workflows to accommodate the consolidation of the `openhuman-core` package into a single `Cargo.toml`.
- Updated import statements in various files to point to the new locations of markdown resources.
- Modified the Tauri configuration to reflect the new resource paths, ensuring proper access to AI prompts.
- Enhanced the staging script to build the standalone binary from the updated project structure.
* Refactor AI directory resolution and update documentation
- Updated the logic for resolving AI directory paths to reflect the new project structure, replacing references to `rust-core/ai` with `src/ai/prompts`.
- Enhanced the `find_ai_directory` function across multiple modules to utilize the new path resolution methods.
- Updated documentation comments to clarify the new directory structure and fallback mechanisms for loading AI prompts.
* Rename `openhuman-core` to `openhuman` across the project
- Updated package names in `Cargo.toml` and `Cargo.lock` to reflect the new naming convention.
- Adjusted references in GitHub Actions workflows and scripts to use the new package name.
- Modified CLI command names and error messages to align with the updated naming.
- Ensured consistency in executable file names and paths throughout the codebase.
* Refactor project commands and update package scripts
- Updated package.json to change workspace references from `openhuman` to `app` for build, compile, dev, format, lint, and test scripts.
- Removed outdated memory and chat command files to streamline the codebase and improve maintainability.
- Adjusted the `lib.rs` file to reflect changes in memory command handling, transitioning to use `callCoreRpc` for Neocortex memory operations.
- Cleaned up the commands module by removing unused imports and consolidating functionality.
* Add Tauri host support and new daemon configuration
- Introduced new modules for Tauri host functionality, including `desktop` and `daemon_host`.
- Added static variables and initialization functions for managing the desktop app handle and resource directory.
- Updated import paths for `HeartbeatEngine` to improve clarity and organization.
- Implemented configuration loading and saving for daemon UI preferences, enhancing user experience.
* Update package names in project configuration
- Changed workspace references in package.json from `app` to `openhuman-app` for consistency.
- Updated the name field in the app's package.json to reflect the new naming convention.
* Remove Tauri host feature flags from core server modules
- Eliminated conditional compilation for Tauri host in `lib.rs`, `helpers.rs`, and `dispatch` modules.
- Streamlined socket management functions and dispatch logic by removing unused code related to Tauri host.
- Improved code clarity and maintainability by consolidating socket-related functionality.
* Enhance Tauri host feature integration and update dependencies
- Added `tauri-host` as a default feature in `Cargo.toml` to streamline feature management.
- Removed explicit feature flag from `openhuman` dependency in `app/src-tauri/Cargo.toml` for cleaner configuration.
- Updated Tauri command attributes in various modules to conditionally compile with the `tauri-host` feature, improving modularity.
- Expanded TODO list to include migration support from OpenClaw, indicating future development focus.
* Refactor authentication and credential management in OpenHuman
- Introduced new modules for handling authentication profiles and tokens, including `anthropic_token`, `openai_oauth`, and `profiles`.
- Removed unused Tauri host-related code from core server modules, enhancing clarity and maintainability.
- Updated `Cargo.toml` and `Cargo.lock` to reflect the removal of the `rquickjs` dependency and other package adjustments.
- Streamlined memory client initialization in dispatch logic to utilize the new `local_memory` module.
- Enhanced code organization by consolidating credential management functionalities and improving the overall structure of the OpenHuman module.
* Enhance Rust core RPC structure and streamline helper functions
- Introduced a dedicated `rpc.rs` file for each domain in the Rust core to manage JSON-RPC and CLI behavior, improving code organization and clarity.
- Refactored helper functions to utilize `rpc_invocation_from_outcome` for consistent handling of RPC responses across various modules.
- Removed unused authentication and credential management functions from `helpers.rs`, consolidating relevant logic into the new RPC structure.
- Updated dispatch logic in multiple modules to leverage the new RPC functions, enhancing maintainability and reducing code duplication.
* Enhance Rust core RPC structure and streamline helper functions
- Introduced a dedicated `rpc.rs` file for each domain in the Rust core to manage JSON-RPC and CLI behavior, improving code organization and clarity.
- Refactored helper functions to utilize `rpc_invocation_from_outcome` for consistent handling of RPC responses across various modules.
- Removed unused authentication and credential management functions from `helpers.rs`, consolidating relevant logic into the new RPC structure.
- Updated dispatch logic in multiple modules to leverage the new RPC functions, enhancing maintainability and reducing code duplication.
* Refactor OpenHuman configuration loading and enhance onboarding RPC
- Replaced the `load_openhuman_config` function with a new `load_config_with_timeout` method to improve timeout handling during configuration loading.
- Consolidated configuration loading logic across various modules, reducing redundancy and enhancing maintainability.
- Introduced new RPC functions for applying settings related to models, memory, screen intelligence, gateway, tunnel, runtime, and browser, streamlining the update process.
- Added onboarding helpers in a new `onboard` module, including a JSON-RPC controller for model refresh operations, improving onboarding flow management.
* Refactor CLI and configuration management in OpenHuman
- Consolidated CLI-related functionality by introducing new modules for settings and credentials management, enhancing code organization.
- Removed redundant functions and streamlined the configuration loading process, improving maintainability.
- Added new CLI helpers for screenshot tools and workspace initialization, facilitating better user experience and onboarding.
- Enhanced JSON-RPC responses to be more compatible with CLI requirements, ensuring consistent output across various commands.
* Remove gateway settings and related functionality from OpenHuman
- Eliminated the GatewaySettingsUpdate interface and associated functions from the codebase, streamlining configuration management.
- Removed references to gateway settings in the CLI and configuration modules, enhancing clarity and maintainability.
- Deleted the gateway module and its related components, including rate limiting and client handling, to simplify the architecture.
- Updated Cargo.toml and Cargo.lock to reflect the removal of dependencies related to gateway functionality.
* Update documentation and improve clarity in OpenHuman
- Revised comments in the `mod.rs`, `traits.rs`, and `pairing.rs` files to enhance clarity and accuracy.
- Updated descriptions related to security policy, long-running processes, and pairing functionality for better understanding.
* Refactor loading prop in TauriCommandsPanel for cleaner code
- Simplified the loading prop assignment in the TauriCommandsPanel component by removing unnecessary line breaks, enhancing readability and maintainability.
* Add OpenSSL dependency and implement OAuth authentication features
- Added OpenSSL as a dependency in `Cargo.toml` to support cryptographic operations.
- Introduced new OAuth-related structures and parameters in `types.rs` for handling authentication flows.
- Implemented OAuth connection and integration token fetching in `auth_socket.rs`, enhancing the authentication capabilities of the OpenHuman module.
- Created new modules for managing authentication profiles and responses, improving the organization of authentication-related code.
- Removed deprecated `anthropic_token` and `openai_oauth` modules to streamline credential management.
- Updated `Cargo.lock` to reflect the addition of the OpenSSL dependency.
* Refactor OpenHuman module and update dependencies
- Added OpenHuman integration entry in the registry for improved backend inference handling.
- Updated various files to enhance code clarity and organization, including adjustments to OAuth client methods and integration tests.
- Refactored import statements and removed unnecessary line breaks for better readability.
- Updated `Cargo.lock` to reflect changes in dependencies and ensure consistency across the project.
* Implement desktop host features and refactor runtime handling
- Introduced new modules for memory management, socket handling, and command definitions to support desktop host functionality.
- Refactored QuickJS runtime initialization to log errors when the engine is not linked, improving clarity on runtime status.
- Added placeholder commands for chat and model interactions, indicating unavailability in the desktop build while maintaining structure for future integration.
- Enhanced organization of the codebase by creating dedicated files for runtime and utility functions, streamlining the development process.
- Updated documentation to reflect new modules and their purposes, ensuring better understanding for future contributors.
* Add CLI banner and print function to enhance user experience
- Introduced a new CLI banner with branding and GitHub link for user engagement.
- Implemented a `print_cli_banner` function to display the banner when running the CLI, improving visibility and user interaction.
- Updated the CLI entry point to call the new banner function, ensuring it appears at startup.
* Add API integration and update dependencies
- Introduced new API modules for handling HTTP requests and WebSocket connections to the TinyHumans backend.
- Added `ureq` dependency for simplified HTTP client functionality, updating `Cargo.toml` and `Cargo.lock` accordingly.
- Implemented configuration and JWT handling in the new `api` module, enhancing session management and API interactions.
- Refactored existing code to utilize the new API helpers, improving code organization and maintainability.
- Updated documentation to reflect new API functionalities and usage guidelines.
* Refactor settings fetching and update dependencies
- Removed the `ureq` dependency and associated functions for fetching settings, streamlining the codebase.
- Updated the `fetch_settings` method to utilize `reqwest` for HTTP requests, enhancing consistency and reliability in API interactions.
- Adjusted the `Cargo.toml` to reflect the removal of `ureq`, ensuring dependencies are up to date.
* Update `ureq` dependency to version 3.3.0 in `Cargo.lock`
- Removed the specific version constraint for `ureq`, allowing for more flexibility in dependency resolution.
- Updated the `Cargo.lock` to reflect the new version of `ureq`, ensuring compatibility with recent changes in the codebase.
* Enhance JSON-RPC logging and CLI initialization
- Introduced a new `rpc_log` module for structured logging of JSON-RPC requests and responses, including redaction of sensitive parameters.
- Updated `execute_core_cli` to initialize logging with a default level and timestamp format.
- Enhanced logging in `rpc_handler` and `dispatch` functions to provide detailed insights into method calls and their execution times.
- Improved error handling logging to capture method failures with context, aiding in debugging and monitoring.
* Refactor HTTP server setup and add integration tests
- Introduced a new `build_core_http_router` function to encapsulate the HTTP routing logic, improving code organization and readability.
- Updated the `run_server` function to utilize the new router function, streamlining server initialization.
- Added comprehensive integration tests for the JSON-RPC API, ensuring robust functionality and error handling in real-world scenarios.
* Enhance OpenHuman backend integration and refactor provider handling
- Added support for the OpenHuman backend in the TauriCommandsPanel, including default configurations and validation for API keys.
- Introduced a new REPL command in the CLI for interactive RPC communication, allowing for dynamic mode switching and message handling.
- Refactored provider creation logic to streamline the integration of the OpenHuman backend, removing deprecated provider overrides and ensuring consistent usage across the codebase.
- Updated various components to improve error handling and user feedback related to provider selection and API interactions.
* Refactor provider handling and update default model settings
- Removed provider override states from the AgentChatPanel and TauriCommandsPanel components, simplifying state management.
- Updated local storage handling to exclude provider overrides, ensuring cleaner data storage.
- Changed default model settings across various components and backend configurations to use "neocortex-mk1" as the new default model.
- Enhanced error handling and validation logic in the TauriCommandsPanel, focusing on model and temperature settings.
- Streamlined integration tests and removed deprecated provider validation logic to improve code clarity and maintainability.
* Refactor code for improved readability and consistency
- Adjusted formatting in several files to enhance code clarity, including consistent parameter passing and alignment.
- Simplified match statement syntax in the `run_models` function for better readability.
- Streamlined assertions in tests to maintain consistency in error handling checks.
- Updated default model name handling in the `AgentBuilder` for cleaner initialization.
* Refactor API URL handling and enhance error reporting
- Updated the `effective_api_url` function to improve clarity in resolving the API base URL, incorporating environment variable checks.
- Enhanced diagnostics in the configuration check to provide clearer messages regarding the API URL status.
- Introduced new error formatting functions to improve the clarity of error messages related to API transport issues.
- Refactored error handling in the OpenAiCompatibleProvider to utilize the new error formatting, ensuring consistent and informative error reporting.
* Refactor API client initialization for consistency
- Updated the instantiation of `BackendOAuthClient` to consistently pass the API URL by reference across multiple functions.
- Simplified the match statement in the `run_models_refresh` function for improved readability.
* Enhance REPL command handling and add fallback mechanisms
- Improved error handling in the REPL command processing, providing clearer feedback for command execution failures.
- Introduced a fallback mechanism for the `agent_chat` RPC call, allowing for graceful degradation to a simpler chat method or a direct backend curl transport if the primary call fails.
- Added a new `backend_chat_via_curl` function to handle chat requests using curl as a last resort, ensuring continued functionality in case of RPC issues.
- Updated the `agent_chat_simple` function to support model overrides and temperature settings, enhancing flexibility in chat interactions.
* Update default Ollama model settings for consistency
- Changed the default Ollama model and vision model to "gemma3:4b-it-qat" for improved alignment across configurations.
- Ensured consistent model naming to enhance clarity in model usage within the local AI module.
* Implement login token consumption and enhance error handling
- Added functionality to consume login tokens via a new API endpoint, returning a JWT for authenticated sessions.
- Improved error handling in the Conversations component, introducing a fallback mechanism for chat interactions when the primary method is unavailable.
- Updated UserProvider to restore session tokens automatically, enhancing user experience during authentication.
- Refactored thread API to support the new login token consumption logic, ensuring seamless integration with the backend.
* Update HTTP client configuration to use Rustls TLS
- Replaced the HTTP/1.1 only setting with Rustls TLS in the OpenAiCompatibleProvider's client builder for enhanced security.
- Ensured consistent application of the new TLS setting across multiple client instances.
* Add Local AI command support and enhance error handling
- Introduced a new `LocalAi` command in the CLI for managing local AI runtime operations, including status checks, asset downloads, and prompt handling.
- Added detailed argument structures for various local AI functionalities, improving command usability.
- Enhanced error reporting in the `LocalAiService` by including response details in error messages for better debugging and user feedback.
- Refactored existing error handling to provide clearer context on failures during API interactions.
* Add local AI module with Ollama integration and model management
- Introduced a new local AI module that includes functionality for automatic installation of the Ollama runtime across different operating systems (Windows, macOS, Linux).
- Implemented model ID resolution and management, providing default settings for various AI models and ensuring compatibility with user configurations.
- Added HTTP API structures and request handling for Ollama, enabling interaction with the local AI service for generating responses and managing assets.
- Developed utility functions for parsing model outputs and managing workspace paths, enhancing the overall structure and usability of the local AI service.
- Established a comprehensive service layer for managing local AI operations, including status tracking and error handling for improved user experience.
* Refactor local AI service structure and enhance asset management
- Simplified the local AI module by reorganizing the service structure, introducing new modules for model IDs, paths, and asset management.
- Added comprehensive asset status tracking for various AI models, including chat, vision, embedding, STT, and TTS, with improved error handling.
- Implemented methods for downloading models and assets, ensuring better management of local AI resources.
- Updated visibility of service methods to enhance encapsulation and maintainability within the local AI service.
* Enhance local AI module with new download progress tracking and unit tests
- Added new structures for tracking download progress of various AI models, including detailed status and metrics.
- Implemented unit tests for model ID resolution, parsing suggestions, and asset path resolution to ensure robust functionality.
- Refactored service methods to improve encapsulation and maintainability, enhancing the overall structure of the local AI service.
- Updated existing tests to cover new functionalities and ensure consistent behavior across the module.
* Implement new local AI download functionalities and refactor model management
- Added support for downloading all local AI assets and tracking download progress, enhancing user experience and resource management.
- Introduced new RPC methods for fetching download progress and managing asset states, improving the overall functionality of the local AI module.
- Refactored existing model management code to utilize the new model catalog, ensuring better organization and maintainability.
- Updated relevant tests to cover new functionalities and ensure consistent behavior across the local AI service.
* Add new interfaces and functions for local AI download progress tracking
- Introduced `LocalAiDownloadProgressItem` and `LocalAiDownloadsProgress` interfaces to structure download progress data for various AI models.
- Implemented `openhumanLocalAiDownloadAllAssets` and `openhumanLocalAiDownloadsProgress` functions to facilitate downloading all assets and tracking their progress.
- Enhanced error handling for Tauri environment checks in new functions, ensuring robust operation within the local AI module.
* Refactor agent loop structure and introduce modular components
- Deleted the `loop_.rs` file and reorganized the agent loop into multiple modules for better maintainability and clarity.
- Introduced new files for handling credentials, history management, tool instructions, memory context, and parsing logic.
- Implemented functions for scrubbing sensitive credentials, managing conversation history, and building tool instructions.
- Enhanced the overall structure of the agent loop to facilitate easier testing and future development.
* Refactor authentication structure and migrate to credentials module
- Moved authentication-related functionality from `auth_profiles` to a new `credentials` module for better organization and clarity.
- Updated references in the API and core server to reflect the new module structure.
- Introduced new data structures and methods for managing authentication profiles, including session support and response handling.
- Removed the obsolete `auth_profiles` module to streamline the codebase and enhance maintainability.
* Add screen intelligence module with capture and context management
- Introduced new modules for screen capture and context management, specifically targeting macOS.
- Implemented functionality to capture screen images and retrieve foreground application context.
- Added data structures for managing application context and window bounds.
- Established limits for screenshot sizes and context character counts to ensure efficient resource management.
- Enhanced helper functions for input action validation and vision summary processing.
- Set up a modular structure for better maintainability and future enhancements.
* Refactor screen intelligence module and remove obsolete components
- Deleted unused files related to screen intelligence, including context and permissions management, to streamline the codebase.
- Refactored the capture functionality to improve organization and maintainability.
- Updated function signatures for better clarity and consistency.
- Enhanced the overall structure of the screen intelligence module for future development and testing.
* Enhance autocomplete CLI functionality and refactor related code
- Added new options for the autocomplete command in the CLI, allowing users to run the autocomplete loop in the current process or spawn a detached process.
- Introduced `AutocompleteStartCliOptions` struct to encapsulate the new command-line arguments.
- Refactored the `autocomplete_start_cli` function to handle the new options and improve process management for the autocomplete service.
- Updated documentation in `CLAUDE.md` to clarify the separation of concerns between routing and controller logic in the codebase.
* Enhance autocomplete error handling and improve focused text context retrieval
- Added a new function to identify "no text candidate" errors, improving error management in the autocomplete engine.
- Refactored the `focused_text_context` and `focused_text_context_verbose` functions to enhance clarity and reliability in retrieving application context.
- Updated the return format of the `focused_text_context_verbose` function to use a separator for better data parsing.
- Added a new TODO item for allowing users to select LLM model versions based on their CPU capabilities.
* Remove Docker, Native, and WASM runtime implementations along with related traits and tests
- Deleted the DockerRuntime, NativeRuntime, and WasmRuntime implementations to streamline the codebase.
- Removed associated traits and factory functions for runtime creation.
- Eliminated all related tests to ensure a clean removal of unused components.
- This refactor aims to simplify the runtime management and prepare for future enhancements.
* Add quickjs-runtime feature and introduce runtime module
- Added a new feature flag for `quickjs-runtime` in `Cargo.toml` to enable its usage.
- Created a new `runtime.rs` module to implement `NativeRuntime` and `DockerRuntime` with associated traits for runtime management.
- Updated the `skills` module to reference the correct path for `SkillConfig`.
- Removed the obsolete `skillforge` module from the `openhuman` namespace to streamline the codebase.
- Enhanced the `skills` module with new structures and functions for managing skills, including initialization and loading logic.
* Refactor autocomplete configuration to remove legacy disabled apps
- Updated the default configuration for `AutocompleteConfig` to remove the legacy disabled apps ('terminal' and 'code'), allowing for broader usage of Codex/CLI.
- Introduced a migration function to handle legacy disabled apps during configuration loading, ensuring custom user preferences remain intact.
- This change enhances the flexibility of the autocomplete feature by preventing unnecessary restrictions on application usage.
* Update rquickjs dependencies in Cargo.lock
- Updated the rquickjs and rquickjs-core dependencies to versions 0.11.0 and 0.9.0 respectively, ensuring compatibility with the latest features and fixes.
- Added new entries for rquickjs-sys and its corresponding version 0.9.0 to the dependency list, enhancing the project's runtime capabilities.
- This update improves the overall stability and performance of the application by leveraging the latest improvements in the rquickjs ecosystem.
* Add terminal application detection to autocomplete logic
- Introduced a new function `is_terminal_app` to identify terminal applications based on their names, enhancing the autocomplete feature's context awareness.
- Updated the `focused_text_context_verbose` function to allow terminal applications to bypass text role checks when the input value is not empty, improving user experience in terminal environments.
- This change aims to provide better support for terminal-based applications in the autocomplete system.
* Add terminal input context extraction and noise line detection
- Introduced functions to identify terminal-like buffers and filter out noise lines in terminal input, enhancing the autocomplete engine's context awareness.
- Updated the `focused_text_context` logic to utilize the new terminal context extraction, improving the handling of text in terminal applications.
- Enhanced the `focused_text_context_verbose` function to better retrieve static text values from UI elements, ensuring accurate context representation in terminal environments.
- These changes aim to improve user experience and functionality for terminal-based applications in the autocomplete system.
* Enhance autocomplete engine state management and error handling
- Added new fields `last_escape_down` and `last_overlay_signature` to `EngineState` for improved state tracking.
- Implemented `try_reject_via_escape` method to handle escape key interactions, allowing users to reject suggestions more intuitively.
- Updated error handling to display notifications for different states (ready, accepted, rejected, error) using `show_overflow_badge`.
- Refactored state updates to ensure consistent management of suggestion and phase transitions, enhancing overall user experience in the autocomplete system.
* Implement periodic status logging in autocomplete service
- Added a polling mechanism to log the status of the autocomplete engine at regular intervals.
- Enhanced logging to capture changes in phase, application name, suggestions, and errors, improving visibility during service execution.
- Refactored the `autocomplete_start_cli` function to integrate the new logging functionality, ensuring a more informative user experience while the service is running.
* Refactor memory dispatch logic and remove local memory implementation
- Updated the memory dispatch functions to utilize the new `memory_rpc` module, enhancing the handling of memory operations such as document management and namespace queries.
- Removed the local memory implementation, including database interactions and related functions, to streamline the codebase and improve maintainability.
- Introduced new RPC calls for document operations (put, list, delete) and context queries, ensuring a more efficient and consistent approach to memory management.
- This refactor aims to enhance the overall architecture and performance of the memory handling system.
* Remove macOS-specific overflow badge functionality and related helper functions
- Deleted the `show_overflow_badge` and `escape_applescript_string` functions, which were specific to macOS, to streamline the codebase.
- Refactored the `show_overflow_badge` function to provide a no-op implementation for non-macOS platforms, enhancing cross-platform compatibility.
- This change simplifies the autocomplete module by removing platform-dependent code, improving maintainability and clarity.
* Enhance text application logic in autocomplete module
- Updated the `apply_text_to_focused_field` function to improve interaction with focused UI elements on macOS.
- The new implementation retrieves the current value of the focused element and appends the provided text, ensuring better handling of text input.
- Enhanced error reporting to include stderr output when applying suggestions fails, improving debugging capabilities.
- These changes aim to provide a more robust and user-friendly experience in the autocomplete functionality.
* Refactor Landlock feature configuration for Linux support
- Moved the `landlock` and `rppal` dependencies under a conditional target configuration for Linux in both `Cargo.toml` files, ensuring they are only included when building for Linux.
- Updated the `landlock.rs` module to check for both the `sandbox-landlock` feature and the Linux target OS, improving the conditional compilation logic.
- This change enhances cross-platform compatibility and ensures that Landlock functionality is only available on supported systems.
* Update dependencies and enhance Tauri integration
- Updated the Tauri dependency in `Cargo.toml` to include the `tray-icon` feature, enabling system tray support.
- Introduced a new `rust-toolchain.toml` file to pin the Rust version to 1.93.0, ensuring compatibility with the matrix-sdk.
- Modified GitHub workflows to use the specified Rust version from `rust-toolchain.toml` instead of the stable version, improving build consistency.
- Refactored Tauri commands to utilize a new `wrapCommandResult` function for better response handling.
- Added a new `tray` module in `openhuman` for managing system tray functionality, enhancing the desktop experience.
- Updated various command implementations to streamline service management and improve error handling.
* Refactor core process handling and enhance encryption features
- Removed the `openhuman` dependency from `Cargo.lock` and `Cargo.toml`, streamlining the project structure.
- Updated the core process handling to fall back to a child process when in-process execution is unavailable, improving error handling and logging.
- Introduced new encryption commands (`ai_init_encryption`, `ai_encrypt`, `ai_decrypt`) to enhance security features, utilizing AES-GCM for data protection.
- Added a new `tray` module for managing system tray functionality, improving user experience on desktop platforms.
- Refactored various command implementations to improve service management and error handling, ensuring a more robust application architecture.
* Remove unused modules and refactor daemon host configuration
- Deleted the `daemon_host_config`, `memory`, `models`, `openhuman_daemon`, `tray`, `chat`, `conscious_loop`, and `runtime` modules to streamline the codebase.
- Refactored the daemon host configuration logic into the `openhuman` module, consolidating related functionality.
- Updated command implementations to utilize the new configuration methods, ensuring consistent handling of daemon host settings.
- This cleanup enhances maintainability and reduces complexity in the project structure.
* Refactor memory management and update Tauri dependencies
- Removed the `tray-icon` feature from the Tauri dependency in `Cargo.toml` to streamline the configuration.
- Deleted the `core:tray:default` capability from the default capabilities JSON, simplifying the capabilities structure.
- Refactored memory handling in tests to utilize `UnifiedMemory` instead of `SqliteMemory`, enhancing consistency across memory operations.
- Updated memory store, recall, and forget functionalities to support a global namespace, improving memory management and retrieval processes.
- Enhanced error handling and logging in memory operations to provide clearer feedback during execution.
* Remove AI encryption commands and related functionality
- Deleted the `ai_init_encryption`, `ai_encrypt`, and `ai_decrypt` functions to streamline the codebase and remove unused features.
- Updated the command registration in the `run` function to reflect the removal of these encryption commands, enhancing maintainability and reducing complexity.
* Add OAuth integration token handling and channel connection management
- Introduced functions to fetch and encrypt integration tokens using OAuth, enhancing security for token management.
- Updated the channel connections API to support OAuth integration, including listing, connecting, and disconnecting channels.
- Implemented checks for supported channels and authentication modes, improving the robustness of channel connection handling.
- Enhanced error handling for integration token retrieval to ensure required fields are present before proceeding.
* Refactor project structure and update documentation
- Renamed the project from "Outsourced" to "OpenHuman" and revised the project summary to reflect its focus on AI-powered assistance for crypto communities.
- Restructured the repository layout, detailing the purpose of each directory and its contents.
- Updated runtime scope to clarify platform support and Tauri's desktop-only focus.
- Enhanced documentation across various files, including architecture, services, and routing, to improve clarity and usability for contributors.
- Removed outdated sections and streamlined commands for development and production builds, ensuring consistency in the documentation.
* Implement REPL session management and multimodal support
- Introduced a new REPL session management system, allowing for session-specific interactions with agents.
- Added functions for starting, chatting, resetting, and ending REPL sessions, enhancing user experience and control.
- Implemented multimodal message handling, enabling the processing of images alongside text in user messages.
- Updated the project structure to include new modules for identity and multimodal functionalities, improving organization and maintainability.
- Enhanced error handling and logging for session operations, providing clearer feedback during execution.
* Refactor memory store implementation and introduce unified memory management
- Removed the legacy memory store implementation and replaced it with a new unified memory management system.
- Introduced a `MemoryClient` for handling document storage, retrieval, and namespace management.
- Added support for key-value storage and graph data structures within the unified memory framework.
- Enhanced the `UnifiedMemory` struct with methods for document upsertion, querying, and namespace operations.
- Updated the project structure to include new modules for memory types, factories, and traits, improving organization and maintainability.
- Improved error handling and logging across memory operations for clearer feedback during execution.
* Implement QuickJS skill instance management
- Removed the previous QjsSkillInstance implementation and replaced it with a new modular structure.
- Introduced separate modules for event loop management, instance handling, JavaScript handlers, and utility functions.
- Enhanced the event loop to efficiently manage QuickJS runtime tasks, including timer callbacks and message processing.
- Added support for asynchronous tool calls and lifecycle management within the QuickJS context.
- Improved error handling and logging throughout the new implementation for better debugging and user feedback.
- Updated documentation to reflect the new structure and functionality of the QuickJS skill instance.
27858 lines
915 KiB
JSON
27858 lines
915 KiB
JSON
{
|
|
"v": "4.8.0",
|
|
"meta": { "g": "LottieFiles AE 3.0.2", "a": "", "k": "", "d": "", "tc": "#FFFFFF" },
|
|
"fr": 24,
|
|
"ip": 0,
|
|
"op": 144,
|
|
"w": 500,
|
|
"h": 500,
|
|
"nm": "Comp 1",
|
|
"ddd": 0,
|
|
"assets": [],
|
|
"layers": [
|
|
{
|
|
"ddd": 0,
|
|
"ind": 1,
|
|
"ty": 4,
|
|
"nm": "Shape Layer 6",
|
|
"parent": 13,
|
|
"td": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [250, 250, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[110, -159.25],
|
|
[43.5, -120.5],
|
|
[44.75, -67.75],
|
|
[99.75, -99],
|
|
[126.75, -101.5]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Shape 1",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 120,
|
|
"op": 144,
|
|
"st": 120,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 2,
|
|
"ty": 4,
|
|
"nm": "download logo 6",
|
|
"parent": 13,
|
|
"tt": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": 0, "y": 1 },
|
|
"o": { "x": 0.333, "y": 0 },
|
|
"t": 120,
|
|
"s": [329.673, 188.365, 0],
|
|
"to": [-0.75, -8.083, 0],
|
|
"ti": [0.75, 8.083, 0]
|
|
},
|
|
{
|
|
"i": { "x": 0.667, "y": 1 },
|
|
"o": { "x": 1, "y": 0 },
|
|
"t": 132,
|
|
"s": [325.173, 139.865, 0],
|
|
"to": [-0.75, -8.083, 0],
|
|
"ti": [0.417, 1.208, 0]
|
|
},
|
|
{ "t": 144, "s": [319.423, 91.365, 0] }
|
|
],
|
|
"ix": 2
|
|
},
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[14.996, -7.844],
|
|
[0, -20.833],
|
|
[-14.996, 9.472],
|
|
[-7.233, 4.996],
|
|
[-7.233, 20.833],
|
|
[7.233, 12.475],
|
|
[7.233, -3.361]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 120,
|
|
"op": 144,
|
|
"st": 120,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 3,
|
|
"ty": 4,
|
|
"nm": "Shape Layer 5",
|
|
"parent": 13,
|
|
"td": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [250, 250, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[110, -159.25],
|
|
[43.5, -120.5],
|
|
[44.75, -67.75],
|
|
[99.75, -99],
|
|
[126.75, -101.5]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Shape 1",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 96,
|
|
"op": 120,
|
|
"st": 96,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 4,
|
|
"ty": 4,
|
|
"nm": "download logo 5",
|
|
"parent": 13,
|
|
"tt": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": 0, "y": 1 },
|
|
"o": { "x": 0.333, "y": 0 },
|
|
"t": 96,
|
|
"s": [329.673, 188.365, 0],
|
|
"to": [-0.75, -8.083, 0],
|
|
"ti": [0.75, 8.083, 0]
|
|
},
|
|
{
|
|
"i": { "x": 0.667, "y": 1 },
|
|
"o": { "x": 1, "y": 0 },
|
|
"t": 108,
|
|
"s": [325.173, 139.865, 0],
|
|
"to": [-0.75, -8.083, 0],
|
|
"ti": [0.417, 1.208, 0]
|
|
},
|
|
{ "t": 120, "s": [319.423, 91.365, 0] }
|
|
],
|
|
"ix": 2
|
|
},
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[14.996, -7.844],
|
|
[0, -20.833],
|
|
[-14.996, 9.472],
|
|
[-7.233, 4.996],
|
|
[-7.233, 20.833],
|
|
[7.233, 12.475],
|
|
[7.233, -3.361]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 96,
|
|
"op": 120,
|
|
"st": 96,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 5,
|
|
"ty": 4,
|
|
"nm": "Shape Layer 4",
|
|
"parent": 13,
|
|
"td": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [250, 250, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[110, -159.25],
|
|
[43.5, -120.5],
|
|
[44.75, -67.75],
|
|
[99.75, -99],
|
|
[126.75, -101.5]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Shape 1",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 72,
|
|
"op": 96,
|
|
"st": 72,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 6,
|
|
"ty": 4,
|
|
"nm": "download logo 4",
|
|
"parent": 13,
|
|
"tt": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": 0, "y": 1 },
|
|
"o": { "x": 0.333, "y": 0 },
|
|
"t": 72,
|
|
"s": [329.673, 188.365, 0],
|
|
"to": [-0.75, -8.083, 0],
|
|
"ti": [0.75, 8.083, 0]
|
|
},
|
|
{
|
|
"i": { "x": 0.667, "y": 1 },
|
|
"o": { "x": 1, "y": 0 },
|
|
"t": 84,
|
|
"s": [325.173, 139.865, 0],
|
|
"to": [-0.75, -8.083, 0],
|
|
"ti": [0.417, 1.208, 0]
|
|
},
|
|
{ "t": 96, "s": [319.423, 91.365, 0] }
|
|
],
|
|
"ix": 2
|
|
},
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[14.996, -7.844],
|
|
[0, -20.833],
|
|
[-14.996, 9.472],
|
|
[-7.233, 4.996],
|
|
[-7.233, 20.833],
|
|
[7.233, 12.475],
|
|
[7.233, -3.361]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 72,
|
|
"op": 96,
|
|
"st": 72,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 7,
|
|
"ty": 4,
|
|
"nm": "Shape Layer 3",
|
|
"parent": 13,
|
|
"td": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [250, 250, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[110, -159.25],
|
|
[43.5, -120.5],
|
|
[44.75, -67.75],
|
|
[99.75, -99],
|
|
[126.75, -101.5]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Shape 1",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 48,
|
|
"op": 72,
|
|
"st": 48,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 8,
|
|
"ty": 4,
|
|
"nm": "download logo 3",
|
|
"parent": 13,
|
|
"tt": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": 0, "y": 1 },
|
|
"o": { "x": 0.333, "y": 0 },
|
|
"t": 48,
|
|
"s": [329.673, 188.365, 0],
|
|
"to": [-0.75, -8.083, 0],
|
|
"ti": [0.75, 8.083, 0]
|
|
},
|
|
{
|
|
"i": { "x": 0.667, "y": 1 },
|
|
"o": { "x": 1, "y": 0 },
|
|
"t": 60,
|
|
"s": [325.173, 139.865, 0],
|
|
"to": [-0.75, -8.083, 0],
|
|
"ti": [0.417, 1.208, 0]
|
|
},
|
|
{ "t": 72, "s": [319.423, 91.365, 0] }
|
|
],
|
|
"ix": 2
|
|
},
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[14.996, -7.844],
|
|
[0, -20.833],
|
|
[-14.996, 9.472],
|
|
[-7.233, 4.996],
|
|
[-7.233, 20.833],
|
|
[7.233, 12.475],
|
|
[7.233, -3.361]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 48,
|
|
"op": 72,
|
|
"st": 48,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 9,
|
|
"ty": 4,
|
|
"nm": "Shape Layer 2",
|
|
"parent": 13,
|
|
"td": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [250, 250, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[110, -159.25],
|
|
[43.5, -120.5],
|
|
[44.75, -67.75],
|
|
[99.75, -99],
|
|
[126.75, -101.5]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Shape 1",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 24,
|
|
"op": 48,
|
|
"st": 24,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 10,
|
|
"ty": 4,
|
|
"nm": "download logo 2",
|
|
"parent": 13,
|
|
"tt": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": 0, "y": 1 },
|
|
"o": { "x": 0.333, "y": 0 },
|
|
"t": 24,
|
|
"s": [329.673, 188.365, 0],
|
|
"to": [-0.75, -8.083, 0],
|
|
"ti": [0.75, 8.083, 0]
|
|
},
|
|
{
|
|
"i": { "x": 0.667, "y": 1 },
|
|
"o": { "x": 1, "y": 0 },
|
|
"t": 36,
|
|
"s": [325.173, 139.865, 0],
|
|
"to": [-0.75, -8.083, 0],
|
|
"ti": [0.417, 1.208, 0]
|
|
},
|
|
{ "t": 48, "s": [319.423, 91.365, 0] }
|
|
],
|
|
"ix": 2
|
|
},
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[14.996, -7.844],
|
|
[0, -20.833],
|
|
[-14.996, 9.472],
|
|
[-7.233, 4.996],
|
|
[-7.233, 20.833],
|
|
[7.233, 12.475],
|
|
[7.233, -3.361]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 24,
|
|
"op": 48,
|
|
"st": 24,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 11,
|
|
"ty": 4,
|
|
"nm": "Shape Layer 1",
|
|
"parent": 13,
|
|
"td": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [250, 250, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[110, -159.25],
|
|
[43.5, -120.5],
|
|
[44.75, -67.75],
|
|
[99.75, -99],
|
|
[126.75, -101.5]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Shape 1",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 24,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 12,
|
|
"ty": 4,
|
|
"nm": "download logo",
|
|
"parent": 13,
|
|
"tt": 1,
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": 0, "y": 1 },
|
|
"o": { "x": 0.333, "y": 0 },
|
|
"t": 0,
|
|
"s": [329.673, 188.365, 0],
|
|
"to": [-0.75, -8.083, 0],
|
|
"ti": [0.75, 8.083, 0]
|
|
},
|
|
{
|
|
"i": { "x": 0.667, "y": 1 },
|
|
"o": { "x": 1, "y": 0 },
|
|
"t": 12,
|
|
"s": [325.173, 139.865, 0],
|
|
"to": [-0.75, -8.083, 0],
|
|
"ti": [0.417, 1.208, 0]
|
|
},
|
|
{ "t": 24, "s": [319.423, 91.365, 0] }
|
|
],
|
|
"ix": 2
|
|
},
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[14.996, -7.844],
|
|
[0, -20.833],
|
|
[-14.996, 9.472],
|
|
[-7.233, 4.996],
|
|
[-7.233, 20.833],
|
|
[7.233, 12.475],
|
|
[7.233, -3.361]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 24,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 13,
|
|
"ty": 4,
|
|
"nm": "download box",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": 0.667, "y": 1 },
|
|
"o": { "x": 0.333, "y": 0 },
|
|
"t": 0,
|
|
"s": [318.057, 138.844, 0],
|
|
"to": [0, -2.333, 0],
|
|
"ti": [0, 0, 0]
|
|
},
|
|
{
|
|
"i": { "x": 0.667, "y": 1 },
|
|
"o": { "x": 0.333, "y": 0 },
|
|
"t": 36,
|
|
"s": [318.057, 124.844, 0],
|
|
"to": [0, 0, 0],
|
|
"ti": [0, 0, 0]
|
|
},
|
|
{
|
|
"i": { "x": 0.667, "y": 1 },
|
|
"o": { "x": 0.333, "y": 0 },
|
|
"t": 72,
|
|
"s": [318.057, 138.844, 0],
|
|
"to": [0, 0, 0],
|
|
"ti": [0, 0, 0]
|
|
},
|
|
{
|
|
"i": { "x": 0.667, "y": 1 },
|
|
"o": { "x": 0.333, "y": 0 },
|
|
"t": 108,
|
|
"s": [318.057, 124.844, 0],
|
|
"to": [0, 0, 0],
|
|
"ti": [0, -2.333, 0]
|
|
},
|
|
{ "t": 144, "s": [318.057, 138.844, 0] }
|
|
],
|
|
"ix": 2
|
|
},
|
|
"a": { "a": 0, "k": [318.057, 134.844, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.335, -1.949],
|
|
[1.581, -0.911],
|
|
[0, 0],
|
|
[0.607, -1.086],
|
|
[0, 0],
|
|
[-0.942, 0.543],
|
|
[0, 0],
|
|
[-1.885, -1.086],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[-0.399, -1.454],
|
|
[0, 0],
|
|
[-0.942, 0.543],
|
|
[0, 0],
|
|
[0.623, -1.086],
|
|
[0, 0],
|
|
[1.901, -1.086],
|
|
[0, 0],
|
|
[1.613, 0.927]
|
|
],
|
|
"v": [
|
|
[29.058, -9.452],
|
|
[25.751, -10.459],
|
|
[-17.013, 14.277],
|
|
[-19.425, 16.833],
|
|
[-29.058, 11.274],
|
|
[-26.646, 8.718],
|
|
[16.103, -16.018],
|
|
[22.956, -16.018],
|
|
[25.751, -14.404]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [318.508, 108.197], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 50, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-1.891, -1.092],
|
|
[0, 0],
|
|
[-1.894, 0.797],
|
|
[0, 1.953],
|
|
[0, 0],
|
|
[-0.619, 1.073],
|
|
[0, 0],
|
|
[0, -1.092]
|
|
],
|
|
"o": [
|
|
[0, 2.184],
|
|
[0, 0],
|
|
[1.709, 0.987],
|
|
[-1.611, 0.609],
|
|
[0, 0],
|
|
[0, -1.092],
|
|
[0, 0],
|
|
[-0.62, 1.073],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-6.238, 21.032],
|
|
[-2.814, 26.963],
|
|
[-0.025, 28.573],
|
|
[6.238, 28.849],
|
|
[3.399, 26.596],
|
|
[3.399, -20.448],
|
|
[4.401, -23.823],
|
|
[-5.235, -29.386],
|
|
[-6.238, -26.012]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.988235294819, 0.694117665291, 0.266666680574, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [294.674, 148.849], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[1.891, 1.092],
|
|
[0, 0],
|
|
[1.891, -1.092],
|
|
[0, 0],
|
|
[0, -2.184],
|
|
[0, 0],
|
|
[-1.891, -1.092],
|
|
[0, 0],
|
|
[-1.891, 1.092],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.205, 0.592],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 2.184]
|
|
],
|
|
"o": [
|
|
[0, -2.184],
|
|
[0, 0],
|
|
[-1.891, -1.092],
|
|
[0, 0],
|
|
[-1.891, 1.092],
|
|
[0, 0],
|
|
[0, 2.184],
|
|
[0, 0],
|
|
[1.891, 1.092],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.313, 0.543],
|
|
[0, 0],
|
|
[0, 0],
|
|
[1.891, -1.091],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[29.62, -35.127],
|
|
[26.197, -41.058],
|
|
[23.408, -42.667],
|
|
[16.56, -42.667],
|
|
[-26.196, -17.938],
|
|
[-29.621, -12.007],
|
|
[-29.621, 35.037],
|
|
[-26.196, 40.968],
|
|
[-23.408, 42.578],
|
|
[-16.56, 42.578],
|
|
[-2.809, 34.633],
|
|
[2.091, 43.12],
|
|
[3.415, 42.994],
|
|
[8.594, 28.045],
|
|
[26.197, 17.848],
|
|
[29.621, 11.918]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.988235294819, 0.752941191196, 0.376470595598, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [318.057, 134.844], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.132, -0.059],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.083, 0.144],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[6.163, 13.044],
|
|
[1.525, 4.322],
|
|
[5.257, -6.45],
|
|
[5.257, -13.044],
|
|
[-6.163, -6.45],
|
|
[-6.163, 0.144],
|
|
[-1.254, 8.649],
|
|
[-0.92, 8.945],
|
|
[-0.923, 8.949]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.988235294819, 0.694117665291, 0.266666680574, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [314.241, 165.179], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [314.241, 165.179], "ix": 2 },
|
|
"a": { "a": 0, "k": [314.241, 165.179], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 14,
|
|
"ty": 4,
|
|
"nm": "laptop",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [250, 250, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.099, -0.093],
|
|
[-0.036, -0.131],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.099, 0.21],
|
|
[-0.186, 0.109],
|
|
[0, 0],
|
|
[-0.087, -0.085],
|
|
[0, -0.19],
|
|
[0.012, -0.083],
|
|
[0, 0],
|
|
[0.093, -0.204],
|
|
[0.186, -0.107],
|
|
[0, 0],
|
|
[0.089, 0.103],
|
|
[0.05, 0.141],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.087, -0.202],
|
|
[0.188, -0.109],
|
|
[0, 0],
|
|
[0.093, 0.099],
|
|
[0.036, 0.151],
|
|
[0, 0],
|
|
[0, 0.077],
|
|
[-0.087, 0.186],
|
|
[-0.125, 0.071],
|
|
[0, 0],
|
|
[-0.099, -0.093],
|
|
[-0.038, -0.129],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.099, 0.21],
|
|
[-0.188, 0.109]
|
|
],
|
|
"o": [
|
|
[0.186, -0.107],
|
|
[0.099, 0.097],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.036, -0.173],
|
|
[0.099, -0.21],
|
|
[0, 0],
|
|
[0.125, -0.071],
|
|
[0.089, 0.081],
|
|
[0, 0.077],
|
|
[0, 0],
|
|
[-0.036, 0.192],
|
|
[-0.093, 0.208],
|
|
[0, 0],
|
|
[-0.188, 0.109],
|
|
[-0.085, -0.101],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.048, 0.2],
|
|
[-0.085, 0.204],
|
|
[0, 0],
|
|
[-0.186, 0.107],
|
|
[-0.095, -0.097],
|
|
[0, 0],
|
|
[-0.012, -0.071],
|
|
[0, -0.19],
|
|
[0.087, -0.182],
|
|
[0, 0],
|
|
[0.186, -0.109],
|
|
[0.101, 0.097],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.036, -0.171],
|
|
[0.099, -0.21],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[79.428, -10.896],
|
|
[79.856, -10.917],
|
|
[80.061, -10.576],
|
|
[81.435, -4.873],
|
|
[82.813, -12.163],
|
|
[83.017, -12.74],
|
|
[83.444, -13.216],
|
|
[85.748, -14.546],
|
|
[86.065, -14.527],
|
|
[86.196, -14.118],
|
|
[86.178, -13.878],
|
|
[83.22, 1.082],
|
|
[83.025, 1.679],
|
|
[82.607, 2.151],
|
|
[80.489, 3.374],
|
|
[80.078, 3.382],
|
|
[79.874, 3.015],
|
|
[78.555, -2.234],
|
|
[77.233, 4.538],
|
|
[77.029, 5.141],
|
|
[76.62, 5.609],
|
|
[74.502, 6.831],
|
|
[74.084, 6.843],
|
|
[73.889, 6.468],
|
|
[70.933, -5.075],
|
|
[70.913, -5.294],
|
|
[71.044, -5.857],
|
|
[71.361, -6.238],
|
|
[73.665, -7.568],
|
|
[74.092, -7.588],
|
|
[74.298, -7.249],
|
|
[75.672, -1.544],
|
|
[77.05, -8.837],
|
|
[77.253, -9.412],
|
|
[77.681, -9.888]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.215686276555, 0.352941185236, 0.392156869173, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.099, -0.093],
|
|
[-0.038, -0.129],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.101, 0.21],
|
|
[-0.188, 0.109],
|
|
[0, 0],
|
|
[-0.087, -0.083],
|
|
[0, -0.19],
|
|
[0.014, -0.085],
|
|
[0, 0],
|
|
[0.093, -0.206],
|
|
[0.186, -0.109],
|
|
[0, 0],
|
|
[0.089, 0.101],
|
|
[0.051, 0.143],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.087, -0.202],
|
|
[0.188, -0.107],
|
|
[0, 0],
|
|
[0.093, 0.099],
|
|
[0.036, 0.149],
|
|
[0, 0],
|
|
[0, 0.077],
|
|
[-0.087, 0.184],
|
|
[-0.125, 0.073],
|
|
[0, 0],
|
|
[-0.099, -0.095],
|
|
[-0.038, -0.129],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.101, 0.212],
|
|
[-0.188, 0.107]
|
|
],
|
|
"o": [
|
|
[0.186, -0.109],
|
|
[0.099, 0.097],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.036, -0.171],
|
|
[0.099, -0.21],
|
|
[0, 0],
|
|
[0.125, -0.071],
|
|
[0.087, 0.083],
|
|
[0, 0.077],
|
|
[0, 0],
|
|
[-0.036, 0.192],
|
|
[-0.093, 0.206],
|
|
[0, 0],
|
|
[-0.188, 0.109],
|
|
[-0.085, -0.103],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.048, 0.202],
|
|
[-0.085, 0.202],
|
|
[0, 0],
|
|
[-0.186, 0.105],
|
|
[-0.095, -0.097],
|
|
[0, 0],
|
|
[-0.014, -0.071],
|
|
[0, -0.19],
|
|
[0.085, -0.182],
|
|
[0, 0],
|
|
[0.186, -0.107],
|
|
[0.101, 0.095],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.036, -0.171],
|
|
[0.099, -0.208],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[62.4, -1.064],
|
|
[62.828, -1.084],
|
|
[63.034, -0.745],
|
|
[64.408, 4.959],
|
|
[65.785, -2.333],
|
|
[65.989, -2.908],
|
|
[66.417, -3.384],
|
|
[68.72, -4.715],
|
|
[69.037, -4.697],
|
|
[69.168, -4.288],
|
|
[69.148, -4.046],
|
|
[66.193, 10.912],
|
|
[65.997, 11.511],
|
|
[65.579, 11.983],
|
|
[63.461, 13.206],
|
|
[63.05, 13.214],
|
|
[62.846, 12.845],
|
|
[61.527, 7.598],
|
|
[60.205, 14.368],
|
|
[60.002, 14.973],
|
|
[59.592, 15.439],
|
|
[57.474, 16.664],
|
|
[57.057, 16.674],
|
|
[56.861, 16.3],
|
|
[53.906, 4.756],
|
|
[53.885, 4.536],
|
|
[54.017, 3.975],
|
|
[54.333, 3.592],
|
|
[56.637, 2.262],
|
|
[57.065, 2.244],
|
|
[57.27, 2.583],
|
|
[58.644, 8.288],
|
|
[60.022, 0.993],
|
|
[60.226, 0.418],
|
|
[60.653, -0.056]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.215686276555, 0.352941185236, 0.392156869173, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.099, -0.093],
|
|
[-0.038, -0.129],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.101, 0.21],
|
|
[-0.188, 0.109],
|
|
[0, 0],
|
|
[-0.087, -0.083],
|
|
[0, -0.19],
|
|
[0.014, -0.085],
|
|
[0, 0],
|
|
[0.093, -0.206],
|
|
[0.186, -0.109],
|
|
[0, 0],
|
|
[0.087, 0.101],
|
|
[0.05, 0.143],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.087, -0.202],
|
|
[0.188, -0.107],
|
|
[0, 0],
|
|
[0.093, 0.099],
|
|
[0.036, 0.149],
|
|
[0, 0],
|
|
[0, 0.077],
|
|
[-0.087, 0.184],
|
|
[-0.125, 0.073],
|
|
[0, 0],
|
|
[-0.099, -0.095],
|
|
[-0.038, -0.129],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.101, 0.212],
|
|
[-0.188, 0.107]
|
|
],
|
|
"o": [
|
|
[0.186, -0.109],
|
|
[0.099, 0.097],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.036, -0.171],
|
|
[0.099, -0.21],
|
|
[0, 0],
|
|
[0.125, -0.071],
|
|
[0.087, 0.083],
|
|
[0, 0.077],
|
|
[0, 0],
|
|
[-0.036, 0.192],
|
|
[-0.093, 0.206],
|
|
[0, 0],
|
|
[-0.188, 0.109],
|
|
[-0.085, -0.103],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.048, 0.202],
|
|
[-0.085, 0.202],
|
|
[0, 0],
|
|
[-0.186, 0.105],
|
|
[-0.095, -0.097],
|
|
[0, 0],
|
|
[-0.014, -0.071],
|
|
[0, -0.19],
|
|
[0.085, -0.182],
|
|
[0, 0],
|
|
[0.186, -0.107],
|
|
[0.101, 0.095],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.038, -0.171],
|
|
[0.099, -0.208],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[45.371, 8.768],
|
|
[45.798, 8.748],
|
|
[46.004, 9.087],
|
|
[47.378, 14.791],
|
|
[48.755, 7.499],
|
|
[48.959, 6.924],
|
|
[49.387, 6.448],
|
|
[51.691, 5.117],
|
|
[52.007, 5.135],
|
|
[52.138, 5.544],
|
|
[52.118, 5.786],
|
|
[49.163, 20.744],
|
|
[48.967, 21.344],
|
|
[48.55, 21.816],
|
|
[46.432, 23.038],
|
|
[46.02, 23.046],
|
|
[45.816, 22.677],
|
|
[44.497, 17.43],
|
|
[43.176, 24.2],
|
|
[42.972, 24.805],
|
|
[42.562, 25.271],
|
|
[40.444, 26.496],
|
|
[40.027, 26.506],
|
|
[39.831, 26.133],
|
|
[36.876, 14.588],
|
|
[36.856, 14.368],
|
|
[36.987, 13.807],
|
|
[37.303, 13.424],
|
|
[39.607, 12.094],
|
|
[40.035, 12.076],
|
|
[40.241, 12.415],
|
|
[41.614, 18.12],
|
|
[42.99, 10.826],
|
|
[43.196, 10.251],
|
|
[43.624, 9.777]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.215686276555, 0.352941185236, 0.392156869173, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "www",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.495, -0.286],
|
|
[0, -0.572],
|
|
[-0.495, 0.286],
|
|
[0, 0.572]
|
|
],
|
|
"o": [
|
|
[-0.495, 0.286],
|
|
[0, 0.572],
|
|
[0.495, -0.286],
|
|
[0, -0.572]
|
|
],
|
|
"v": [
|
|
[102.79, -52.166],
|
|
[101.893, -50.612],
|
|
[102.79, -50.094],
|
|
[103.687, -51.648]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.168627455831, 0.270588248968, 0.305882364511, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.495, -0.286],
|
|
[0, -0.572],
|
|
[-0.495, 0.286],
|
|
[0, 0.572]
|
|
],
|
|
"o": [
|
|
[-0.495, 0.286],
|
|
[0, 0.572],
|
|
[0.495, -0.286],
|
|
[0, -0.572]
|
|
],
|
|
"v": [
|
|
[99.651, -50.358],
|
|
[98.754, -48.804],
|
|
[99.651, -48.286],
|
|
[100.548, -49.84]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.168627455831, 0.270588248968, 0.305882364511, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.495, -0.286],
|
|
[0, -0.572],
|
|
[-0.495, 0.286],
|
|
[0, 0.572]
|
|
],
|
|
"o": [
|
|
[-0.495, 0.286],
|
|
[0, 0.572],
|
|
[0.495, -0.286],
|
|
[0, -0.572]
|
|
],
|
|
"v": [
|
|
[96.511, -48.55],
|
|
[95.614, -46.996],
|
|
[96.511, -46.478],
|
|
[97.408, -48.032]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.168627455831, 0.270588248968, 0.305882364511, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-1.056, 0.61],
|
|
[0, 0],
|
|
[0, -1.22],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, -1.22],
|
|
[0, 0],
|
|
[1.056, -0.61],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[15.775, -1.795],
|
|
[17.688, -5.108],
|
|
[105.363, -55.727],
|
|
[107.276, -54.623],
|
|
[107.276, -50.617],
|
|
[15.775, 2.211]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.215686276555, 0.564705908298, 0.800000011921, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 5,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-1.056, 0.61],
|
|
[0, 0],
|
|
[0, 1.22],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 1.22],
|
|
[0, 0],
|
|
[1.056, -0.61],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[15.775, 61.233],
|
|
[17.688, 62.337],
|
|
[105.364, 11.718],
|
|
[107.276, 8.405],
|
|
[107.276, -50.617],
|
|
[15.775, 2.211]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.262745112181, 0.654901981354, 0.960784316063, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 6,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.006, 0],
|
|
[-0.018, 0.012],
|
|
[0.006, -0.012]
|
|
],
|
|
"o": [
|
|
[0.012, -0.018],
|
|
[-0.012, 0.012],
|
|
[-0.006, 0.006]
|
|
],
|
|
"v": [
|
|
[11.661, 80.43],
|
|
[11.703, 80.394],
|
|
[11.673, 80.424]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0.874509811401, 0.749019622803, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 6",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 7,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.084, -0.048],
|
|
[-0.287, -0.09],
|
|
[0.239, 0.137],
|
|
[0.078, 0.06]
|
|
],
|
|
"o": [
|
|
[0.239, 0.137],
|
|
[-0.287, -0.084],
|
|
[-0.084, -0.048],
|
|
[0.078, 0.054]
|
|
],
|
|
"v": [
|
|
[7.135, 80.185],
|
|
[7.929, 80.525],
|
|
[7.135, 80.191],
|
|
[6.891, 80.03]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0.874509811401, 0.749019622803, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 7",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 8,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.857, 0.495],
|
|
[0, 0],
|
|
[-0.857, -0.495],
|
|
[0, 0],
|
|
[0.857, -0.495],
|
|
[0, 0],
|
|
[0.857, 0.495],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.857, -0.495],
|
|
[0, 0],
|
|
[0.857, 0.495],
|
|
[0, 0],
|
|
[-0.857, 0.495],
|
|
[0, 0],
|
|
[-0.857, -0.495]
|
|
],
|
|
"v": [
|
|
[100.845, 90.495],
|
|
[129.27, 74.084],
|
|
[132.372, 74.084],
|
|
[148.672, 83.495],
|
|
[148.672, 85.286],
|
|
[120.247, 101.697],
|
|
[117.144, 101.697],
|
|
[100.845, 92.286]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.101960785687, 0.180392161012, 0.207843139768, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 8",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 9,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.857, 0.495],
|
|
[0, 0],
|
|
[-0.857, -0.495],
|
|
[0, 0],
|
|
[0.857, -0.495],
|
|
[0, 0],
|
|
[0.857, 0.495],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.857, -0.495],
|
|
[0, 0],
|
|
[0.857, 0.495],
|
|
[0, 0],
|
|
[-0.857, 0.495],
|
|
[0, 0],
|
|
[-0.857, -0.495]
|
|
],
|
|
"v": [
|
|
[100.845, 90.495],
|
|
[129.27, 74.084],
|
|
[132.372, 74.084],
|
|
[148.672, 83.495],
|
|
[148.672, 85.286],
|
|
[120.247, 101.697],
|
|
[117.144, 101.697],
|
|
[100.845, 92.286]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0.874509811401, 0.749019622803, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 9",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 10,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"o": [
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[82.176, 65.226],
|
|
[82.635, 65.235],
|
|
[85.516, 63.572],
|
|
[85.5, 63.307],
|
|
[82.169, 61.384],
|
|
[81.709, 61.374],
|
|
[78.829, 63.038],
|
|
[78.845, 63.303]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 1,
|
|
"ty": "sh",
|
|
"ix": 2,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"o": [
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[116.45, 44.027],
|
|
[116.909, 44.036],
|
|
[119.79, 42.373],
|
|
[119.773, 42.108],
|
|
[118.887, 41.596],
|
|
[118.427, 41.587],
|
|
[115.547, 43.25],
|
|
[115.563, 43.515]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 2",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 2,
|
|
"ty": "sh",
|
|
"ix": 3,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"v": [
|
|
[142.39, 53.887],
|
|
[145.271, 52.223],
|
|
[145.255, 51.958],
|
|
[141.924, 50.035],
|
|
[141.464, 50.026],
|
|
[138.584, 51.689],
|
|
[138.6, 51.954],
|
|
[141.931, 53.877]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 3",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 3,
|
|
"ty": "sh",
|
|
"ix": 4,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"o": [
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[131.866, 43.205],
|
|
[132.326, 43.215],
|
|
[135.206, 41.552],
|
|
[135.19, 41.286],
|
|
[131.859, 39.363],
|
|
[131.4, 39.354],
|
|
[128.519, 41.017],
|
|
[128.536, 41.282]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 4",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 4,
|
|
"ty": "sh",
|
|
"ix": 5,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"o": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[124.87, 39.166],
|
|
[125.329, 39.175],
|
|
[128.21, 37.512],
|
|
[128.193, 37.247],
|
|
[127.307, 36.735],
|
|
[126.847, 36.725],
|
|
[123.967, 38.388],
|
|
[123.983, 38.654]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 5",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 5,
|
|
"ty": "sh",
|
|
"ix": 6,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"o": [
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[112.24, 46.457],
|
|
[112.699, 46.467],
|
|
[115.58, 44.803],
|
|
[115.564, 44.538],
|
|
[114.677, 44.026],
|
|
[114.218, 44.017],
|
|
[111.337, 45.68],
|
|
[111.353, 45.945]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 6",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 6,
|
|
"ty": "sh",
|
|
"ix": 7,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"o": [
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[90.596, 60.365],
|
|
[91.055, 60.374],
|
|
[93.936, 58.711],
|
|
[93.919, 58.446],
|
|
[90.589, 56.523],
|
|
[90.129, 56.513],
|
|
[87.249, 58.176],
|
|
[87.265, 58.442]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 7",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 7,
|
|
"ty": "sh",
|
|
"ix": 8,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"o": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[86.386, 62.795],
|
|
[86.845, 62.805],
|
|
[89.726, 61.142],
|
|
[89.709, 60.876],
|
|
[86.379, 58.953],
|
|
[85.919, 58.944],
|
|
[83.039, 60.607],
|
|
[83.055, 60.872]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 8",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 8,
|
|
"ty": "sh",
|
|
"ix": 9,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"o": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[104.156, 52.536],
|
|
[104.616, 52.545],
|
|
[107.496, 50.882],
|
|
[107.48, 50.617],
|
|
[104.149, 48.694],
|
|
[103.689, 48.684],
|
|
[100.809, 50.347],
|
|
[100.825, 50.613]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 9",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 9,
|
|
"ty": "sh",
|
|
"ix": 10,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"o": [
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[94.805, 57.934],
|
|
[95.265, 57.943],
|
|
[98.146, 56.281],
|
|
[98.129, 56.015],
|
|
[94.798, 54.092],
|
|
[94.339, 54.083],
|
|
[91.459, 55.746],
|
|
[91.475, 56.011]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 10",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 10,
|
|
"ty": "sh",
|
|
"ix": 11,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"o": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[108.366, 50.105],
|
|
[108.825, 50.114],
|
|
[111.706, 48.452],
|
|
[111.69, 48.186],
|
|
[108.359, 46.263],
|
|
[107.899, 46.254],
|
|
[105.019, 47.917],
|
|
[105.035, 48.182]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 11",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 11,
|
|
"ty": "sh",
|
|
"ix": 12,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"o": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[99.946, 54.966],
|
|
[100.406, 54.976],
|
|
[103.286, 53.313],
|
|
[103.27, 53.047],
|
|
[99.939, 51.125],
|
|
[99.48, 51.115],
|
|
[96.599, 52.778],
|
|
[96.615, 53.043]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 12",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 12,
|
|
"ty": "sh",
|
|
"ix": 13,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"o": [
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[120.66, 41.596],
|
|
[121.119, 41.606],
|
|
[124, 39.942],
|
|
[123.983, 39.677],
|
|
[123.097, 39.165],
|
|
[122.637, 39.156],
|
|
[119.757, 40.819],
|
|
[119.773, 41.084]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 13",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 13,
|
|
"ty": "sh",
|
|
"ix": 14,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[101.399, 77.553],
|
|
[104.28, 75.89],
|
|
[104.264, 75.624],
|
|
[100.933, 73.701],
|
|
[100.473, 73.692],
|
|
[97.593, 75.355],
|
|
[97.609, 75.62],
|
|
[100.94, 77.543]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 14",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 14,
|
|
"ty": "sh",
|
|
"ix": 15,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"v": [
|
|
[92.98, 82.414],
|
|
[95.86, 80.751],
|
|
[95.844, 80.486],
|
|
[92.513, 78.563],
|
|
[92.054, 78.553],
|
|
[89.173, 80.216],
|
|
[89.19, 80.481],
|
|
[92.52, 82.405]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 15",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 15,
|
|
"ty": "sh",
|
|
"ix": 16,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[97.19, 79.983],
|
|
[100.07, 78.32],
|
|
[100.054, 78.055],
|
|
[96.723, 76.132],
|
|
[96.264, 76.122],
|
|
[93.383, 77.786],
|
|
[93.399, 78.051],
|
|
[96.73, 79.974]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 16",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 16,
|
|
"ty": "sh",
|
|
"ix": 17,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[80.35, 89.705],
|
|
[83.231, 88.042],
|
|
[83.214, 87.777],
|
|
[79.884, 85.854],
|
|
[79.424, 85.845],
|
|
[76.544, 87.508],
|
|
[76.56, 87.773],
|
|
[79.891, 89.696]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 17",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 17,
|
|
"ty": "sh",
|
|
"ix": 18,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"v": [
|
|
[88.77, 84.844],
|
|
[91.651, 83.181],
|
|
[91.634, 82.916],
|
|
[88.303, 80.993],
|
|
[87.844, 80.984],
|
|
[84.964, 82.647],
|
|
[84.98, 82.912],
|
|
[88.311, 84.835]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 18",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 18,
|
|
"ty": "sh",
|
|
"ix": 19,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[84.56, 87.275],
|
|
[87.441, 85.612],
|
|
[87.424, 85.347],
|
|
[84.093, 83.424],
|
|
[83.634, 83.414],
|
|
[80.754, 85.077],
|
|
[80.77, 85.343],
|
|
[84.101, 87.266]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 19",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 19,
|
|
"ty": "sh",
|
|
"ix": 20,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"o": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[124.205, 64.111],
|
|
[124.665, 64.121],
|
|
[127.545, 62.457],
|
|
[127.529, 62.192],
|
|
[124.198, 60.269],
|
|
[123.739, 60.26],
|
|
[120.858, 61.923],
|
|
[120.875, 62.188]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 20",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 20,
|
|
"ty": "sh",
|
|
"ix": 21,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"v": [
|
|
[105.609, 75.122],
|
|
[108.49, 73.459],
|
|
[108.473, 73.194],
|
|
[105.143, 71.271],
|
|
[104.683, 71.261],
|
|
[101.803, 72.925],
|
|
[101.819, 73.19],
|
|
[105.15, 75.113]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 21",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 21,
|
|
"ty": "sh",
|
|
"ix": 22,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"v": [
|
|
[129.213, 56.001],
|
|
[132.093, 54.337],
|
|
[132.077, 54.072],
|
|
[128.746, 52.149],
|
|
[128.287, 52.14],
|
|
[125.406, 53.803],
|
|
[125.422, 54.068],
|
|
[128.753, 55.991]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 22",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 22,
|
|
"ty": "sh",
|
|
"ix": 23,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"o": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[133.511, 58.738],
|
|
[133.971, 58.748],
|
|
[136.851, 57.085],
|
|
[136.835, 56.819],
|
|
[133.504, 54.896],
|
|
[133.045, 54.887],
|
|
[130.164, 56.55],
|
|
[130.181, 56.815]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 23",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 23,
|
|
"ty": "sh",
|
|
"ix": 24,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[109.819, 72.692],
|
|
[118.239, 67.83],
|
|
[118.223, 67.565],
|
|
[114.892, 65.642],
|
|
[114.433, 65.633],
|
|
[106.013, 70.494],
|
|
[106.029, 70.759],
|
|
[109.36, 72.682]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 24",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 24,
|
|
"ty": "sh",
|
|
"ix": 25,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[119.358, 56.196],
|
|
[122.239, 54.533],
|
|
[122.223, 54.267],
|
|
[118.892, 52.345],
|
|
[118.432, 52.335],
|
|
[115.552, 53.998],
|
|
[115.568, 54.263],
|
|
[118.899, 56.186]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 25",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 25,
|
|
"ty": "sh",
|
|
"ix": 26,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.123, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"v": [
|
|
[138.18, 56.317],
|
|
[141.061, 54.654],
|
|
[141.045, 54.389],
|
|
[137.714, 52.466],
|
|
[137.254, 52.456],
|
|
[134.374, 54.119],
|
|
[134.39, 54.385],
|
|
[137.721, 56.308]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 26",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 26,
|
|
"ty": "sh",
|
|
"ix": 27,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[128.956, 63.016],
|
|
[128.497, 63.007],
|
|
[125.616, 64.67],
|
|
[125.633, 64.935],
|
|
[128.963, 66.858],
|
|
[129.423, 66.868],
|
|
[132.303, 65.205],
|
|
[132.287, 64.939]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 27",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 27,
|
|
"ty": "sh",
|
|
"ix": 28,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[113.889, 71.715],
|
|
[113.43, 71.706],
|
|
[109.884, 73.753],
|
|
[109.901, 74.018],
|
|
[113.232, 75.941],
|
|
[113.691, 75.95],
|
|
[117.236, 73.904],
|
|
[117.22, 73.638]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 28",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 28,
|
|
"ty": "sh",
|
|
"ix": 29,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[69.353, 97.428],
|
|
[68.894, 97.419],
|
|
[65.348, 99.466],
|
|
[65.365, 99.731],
|
|
[68.696, 101.654],
|
|
[69.155, 101.663],
|
|
[72.7, 99.617],
|
|
[72.684, 99.351]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 29",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 29,
|
|
"ty": "sh",
|
|
"ix": 30,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[104.14, 77.344],
|
|
[103.681, 77.335],
|
|
[100.136, 79.381],
|
|
[100.152, 79.647],
|
|
[103.483, 81.569],
|
|
[103.942, 81.579],
|
|
[107.487, 79.532],
|
|
[107.471, 79.267]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 30",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 30,
|
|
"ty": "sh",
|
|
"ix": 31,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[74.228, 94.614],
|
|
[73.768, 94.604],
|
|
[70.223, 96.651],
|
|
[70.24, 96.917],
|
|
[73.57, 98.84],
|
|
[74.03, 98.849],
|
|
[77.575, 96.802],
|
|
[77.558, 96.537]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 31",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 31,
|
|
"ty": "sh",
|
|
"ix": 32,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[99.266, 80.158],
|
|
[98.806, 80.149],
|
|
[75.098, 93.837],
|
|
[75.114, 94.102],
|
|
[78.445, 96.025],
|
|
[78.904, 96.035],
|
|
[102.613, 82.347],
|
|
[102.596, 82.081]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 32",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 32,
|
|
"ty": "sh",
|
|
"ix": 33,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[119.65, 68.389],
|
|
[119.191, 68.38],
|
|
[114.759, 70.938],
|
|
[114.776, 71.204],
|
|
[118.106, 73.127],
|
|
[118.566, 73.136],
|
|
[122.997, 70.577],
|
|
[122.981, 70.312]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 33",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 33,
|
|
"ty": "sh",
|
|
"ix": 34,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[109.015, 74.53],
|
|
[108.555, 74.52],
|
|
[105.01, 76.567],
|
|
[105.026, 76.832],
|
|
[108.357, 78.755],
|
|
[108.817, 78.765],
|
|
[112.362, 76.718],
|
|
[112.345, 76.453]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 34",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 34,
|
|
"ty": "sh",
|
|
"ix": 35,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07]
|
|
],
|
|
"v": [
|
|
[154.223, 52.275],
|
|
[146.134, 47.605],
|
|
[145.674, 47.595],
|
|
[142.794, 49.258],
|
|
[142.81, 49.523],
|
|
[150.899, 54.194],
|
|
[151.359, 54.203],
|
|
[154.239, 52.54]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 35",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 35,
|
|
"ty": "sh",
|
|
"ix": 36,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[146.682, 52.782],
|
|
[146.223, 52.773],
|
|
[143.342, 54.436],
|
|
[143.359, 54.701],
|
|
[146.689, 56.624],
|
|
[147.149, 56.634],
|
|
[150.029, 54.971],
|
|
[150.013, 54.705]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 36",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 36,
|
|
"ty": "sh",
|
|
"ix": 37,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[124.746, 65.447],
|
|
[124.287, 65.438],
|
|
[121.406, 67.1],
|
|
[121.423, 67.366],
|
|
[124.753, 69.289],
|
|
[125.213, 69.298],
|
|
[128.093, 67.635],
|
|
[128.077, 67.37]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 37",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 37,
|
|
"ty": "sh",
|
|
"ix": 38,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[76.14, 92.136],
|
|
[79.021, 90.473],
|
|
[79.004, 90.208],
|
|
[75.674, 88.285],
|
|
[75.214, 88.275],
|
|
[72.334, 89.939],
|
|
[72.35, 90.204],
|
|
[75.681, 92.127]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 38",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 38,
|
|
"ty": "sh",
|
|
"ix": 39,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[133.166, 60.586],
|
|
[132.707, 60.576],
|
|
[129.826, 62.239],
|
|
[129.843, 62.505],
|
|
[133.173, 64.428],
|
|
[133.633, 64.437],
|
|
[136.513, 62.774],
|
|
[136.497, 62.509]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 39",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 39,
|
|
"ty": "sh",
|
|
"ix": 40,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.123, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[142.472, 55.213],
|
|
[142.013, 55.203],
|
|
[134.923, 59.297],
|
|
[134.939, 59.563],
|
|
[138.27, 61.485],
|
|
[138.729, 61.495],
|
|
[145.819, 57.401],
|
|
[145.803, 57.136]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 40",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 40,
|
|
"ty": "sh",
|
|
"ix": 41,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"o": [
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[53.253, 81.924],
|
|
[53.713, 81.934],
|
|
[56.593, 80.271],
|
|
[56.577, 80.006],
|
|
[53.246, 78.083],
|
|
[52.787, 78.073],
|
|
[49.906, 79.736],
|
|
[49.923, 80.001]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 41",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 41,
|
|
"ty": "sh",
|
|
"ix": 42,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"o": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[57.463, 79.494],
|
|
[57.923, 79.503],
|
|
[60.803, 77.84],
|
|
[60.787, 77.575],
|
|
[57.456, 75.652],
|
|
[56.996, 75.642],
|
|
[54.116, 77.306],
|
|
[54.132, 77.571]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 42",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 42,
|
|
"ty": "sh",
|
|
"ix": 43,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[64.479, 100.243],
|
|
[64.019, 100.233],
|
|
[59.588, 102.792],
|
|
[59.604, 103.057],
|
|
[62.935, 104.98],
|
|
[63.394, 104.989],
|
|
[67.826, 102.431],
|
|
[67.809, 102.166]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 43",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 43,
|
|
"ty": "sh",
|
|
"ix": 44,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"o": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[63.505, 76.006],
|
|
[63.964, 76.015],
|
|
[66.845, 74.352],
|
|
[66.828, 74.087],
|
|
[63.498, 72.164],
|
|
[63.038, 72.154],
|
|
[60.158, 73.817],
|
|
[60.174, 74.083]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 44",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 44,
|
|
"ty": "sh",
|
|
"ix": 45,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"o": [
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[71.924, 71.144],
|
|
[72.384, 71.154],
|
|
[75.265, 69.491],
|
|
[75.248, 69.226],
|
|
[71.917, 67.303],
|
|
[71.458, 67.293],
|
|
[68.578, 68.956],
|
|
[68.594, 69.222]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 45",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 45,
|
|
"ty": "sh",
|
|
"ix": 46,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"o": [
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[49.043, 84.355],
|
|
[49.503, 84.364],
|
|
[52.383, 82.701],
|
|
[52.367, 82.436],
|
|
[49.036, 80.513],
|
|
[48.577, 80.504],
|
|
[45.696, 82.167],
|
|
[45.713, 82.432]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 46",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 46,
|
|
"ty": "sh",
|
|
"ix": 47,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"o": [
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[67.715, 73.575],
|
|
[68.174, 73.585],
|
|
[71.055, 71.921],
|
|
[71.038, 71.656],
|
|
[67.707, 69.733],
|
|
[67.248, 69.724],
|
|
[64.368, 71.387],
|
|
[64.384, 71.652]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 47",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 47,
|
|
"ty": "sh",
|
|
"ix": 48,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"o": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[76.134, 68.714],
|
|
[76.594, 68.724],
|
|
[79.474, 67.06],
|
|
[79.458, 66.795],
|
|
[76.127, 64.872],
|
|
[75.668, 64.863],
|
|
[72.787, 66.526],
|
|
[72.804, 66.791]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 48",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 48,
|
|
"ty": "sh",
|
|
"ix": 49,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07]
|
|
],
|
|
"v": [
|
|
[62.165, 99.93],
|
|
[58.834, 98.007],
|
|
[58.375, 97.998],
|
|
[54.83, 100.045],
|
|
[54.846, 100.31],
|
|
[58.177, 102.233],
|
|
[58.636, 102.242],
|
|
[62.181, 100.195]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 49",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 49,
|
|
"ty": "sh",
|
|
"ix": 50,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071]
|
|
],
|
|
"v": [
|
|
[59.401, 96.032],
|
|
[56.07, 94.109],
|
|
[55.611, 94.099],
|
|
[50.071, 97.297],
|
|
[50.088, 97.563],
|
|
[53.418, 99.486],
|
|
[53.878, 99.495],
|
|
[59.417, 96.297]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 50",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 50,
|
|
"ty": "sh",
|
|
"ix": 51,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"o": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.123, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[44.834, 86.785],
|
|
[45.293, 86.795],
|
|
[48.173, 85.132],
|
|
[48.157, 84.867],
|
|
[44.826, 82.944],
|
|
[44.367, 82.934],
|
|
[41.487, 84.597],
|
|
[41.503, 84.862]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 51",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 51,
|
|
"ty": "sh",
|
|
"ix": 52,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07]
|
|
],
|
|
"v": [
|
|
[42.115, 88.355],
|
|
[38.785, 86.432],
|
|
[38.326, 86.422],
|
|
[34.78, 88.469],
|
|
[34.797, 88.734],
|
|
[38.127, 90.657],
|
|
[38.587, 90.667],
|
|
[42.132, 88.62]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 52",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 52,
|
|
"ty": "sh",
|
|
"ix": 53,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071]
|
|
],
|
|
"v": [
|
|
[53.535, 93.924],
|
|
[50.204, 92.001],
|
|
[49.745, 91.992],
|
|
[45.313, 94.55],
|
|
[45.33, 94.816],
|
|
[48.66, 96.738],
|
|
[49.12, 96.748],
|
|
[53.551, 94.19]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 53",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 53,
|
|
"ty": "sh",
|
|
"ix": 54,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071]
|
|
],
|
|
"v": [
|
|
[47.226, 92.073],
|
|
[43.895, 90.149],
|
|
[43.435, 90.14],
|
|
[40.555, 91.803],
|
|
[40.571, 92.068],
|
|
[43.902, 93.991],
|
|
[44.362, 94.001],
|
|
[47.242, 92.338]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 54",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 54,
|
|
"ty": "sh",
|
|
"ix": 55,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[71.93, 94.567],
|
|
[74.811, 92.904],
|
|
[74.795, 92.638],
|
|
[71.464, 90.715],
|
|
[71.004, 90.706],
|
|
[68.124, 92.369],
|
|
[68.14, 92.634],
|
|
[71.471, 94.557]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 55",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 55,
|
|
"ty": "sh",
|
|
"ix": 56,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[75.004, 77.408],
|
|
[72.123, 79.071],
|
|
[72.14, 79.337],
|
|
[75.471, 81.26],
|
|
[75.93, 81.269],
|
|
[78.81, 79.606],
|
|
[78.794, 79.341],
|
|
[75.463, 77.418]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 56",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 56,
|
|
"ty": "sh",
|
|
"ix": 57,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[70.794, 79.839],
|
|
[67.914, 81.502],
|
|
[67.93, 81.767],
|
|
[71.261, 83.69],
|
|
[71.72, 83.7],
|
|
[74.601, 82.037],
|
|
[74.584, 81.771],
|
|
[71.253, 79.849]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 57",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 57,
|
|
"ty": "sh",
|
|
"ix": 58,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[87.634, 70.116],
|
|
[84.753, 71.779],
|
|
[84.77, 72.045],
|
|
[88.1, 73.968],
|
|
[88.56, 73.977],
|
|
[91.44, 72.314],
|
|
[91.424, 72.049],
|
|
[88.093, 70.126]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 58",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 58,
|
|
"ty": "sh",
|
|
"ix": 59,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"v": [
|
|
[79.214, 74.978],
|
|
[76.333, 76.641],
|
|
[76.35, 76.906],
|
|
[79.68, 78.829],
|
|
[80.14, 78.838],
|
|
[83.02, 77.176],
|
|
[83.004, 76.91],
|
|
[79.673, 74.987]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 59",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 59,
|
|
"ty": "sh",
|
|
"ix": 60,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[83.424, 72.547],
|
|
[80.543, 74.21],
|
|
[80.56, 74.476],
|
|
[83.89, 76.398],
|
|
[84.35, 76.408],
|
|
[87.23, 74.745],
|
|
[87.214, 74.479],
|
|
[83.883, 72.557]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 60",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 60,
|
|
"ty": "sh",
|
|
"ix": 61,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"v": [
|
|
[66.584, 82.269],
|
|
[63.704, 83.932],
|
|
[63.72, 84.198],
|
|
[67.051, 86.121],
|
|
[67.51, 86.13],
|
|
[70.391, 84.467],
|
|
[70.374, 84.202],
|
|
[67.044, 82.279]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 61",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 61,
|
|
"ty": "sh",
|
|
"ix": 62,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[62.374, 84.7],
|
|
[59.494, 86.363],
|
|
[59.51, 86.628],
|
|
[62.841, 88.551],
|
|
[63.3, 88.561],
|
|
[66.181, 86.898],
|
|
[66.165, 86.632],
|
|
[62.834, 84.71]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 62",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 62,
|
|
"ty": "sh",
|
|
"ix": 63,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[77.586, 85.807],
|
|
[80.467, 84.144],
|
|
[80.45, 83.879],
|
|
[77.119, 81.956],
|
|
[76.66, 81.947],
|
|
[73.78, 83.609],
|
|
[73.796, 83.875],
|
|
[77.127, 85.798]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 63",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 63,
|
|
"ty": "sh",
|
|
"ix": 64,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"v": [
|
|
[73.376, 88.238],
|
|
[76.257, 86.575],
|
|
[76.241, 86.309],
|
|
[72.91, 84.386],
|
|
[72.45, 84.377],
|
|
[69.57, 86.04],
|
|
[69.586, 86.305],
|
|
[72.917, 88.228]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 64",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 64,
|
|
"ty": "sh",
|
|
"ix": 65,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"v": [
|
|
[69.166, 90.668],
|
|
[72.047, 89.005],
|
|
[72.031, 88.74],
|
|
[68.7, 86.817],
|
|
[68.24, 86.808],
|
|
[65.36, 88.471],
|
|
[65.376, 88.736],
|
|
[68.707, 90.659]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 65",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 65,
|
|
"ty": "sh",
|
|
"ix": 66,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"v": [
|
|
[58.164, 87.131],
|
|
[55.284, 88.794],
|
|
[55.3, 89.059],
|
|
[58.631, 90.982],
|
|
[59.09, 90.991],
|
|
[61.971, 89.328],
|
|
[61.955, 89.063],
|
|
[58.624, 87.14]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 66",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 66,
|
|
"ty": "sh",
|
|
"ix": 67,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"o": [
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[64.497, 93.089],
|
|
[64.957, 93.099],
|
|
[67.837, 91.436],
|
|
[67.821, 91.171],
|
|
[64.49, 89.247],
|
|
[64.031, 89.238],
|
|
[61.15, 90.901],
|
|
[61.166, 91.166]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 67",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 67,
|
|
"ty": "sh",
|
|
"ix": 68,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[96.053, 65.255],
|
|
[93.173, 66.918],
|
|
[93.189, 67.184],
|
|
[96.52, 69.107],
|
|
[96.979, 69.116],
|
|
[99.86, 67.453],
|
|
[99.843, 67.188],
|
|
[96.513, 65.265]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 68",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 68,
|
|
"ty": "sh",
|
|
"ix": 69,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"o": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[132.963, 53.561],
|
|
[133.423, 53.57],
|
|
[136.303, 51.907],
|
|
[136.287, 51.642],
|
|
[132.956, 49.719],
|
|
[132.497, 49.709],
|
|
[129.616, 51.372],
|
|
[129.632, 51.637]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 69",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 69,
|
|
"ty": "sh",
|
|
"ix": 70,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"v": [
|
|
[91.844, 67.686],
|
|
[88.963, 69.349],
|
|
[88.979, 69.614],
|
|
[92.31, 71.537],
|
|
[92.77, 71.547],
|
|
[95.65, 69.884],
|
|
[95.634, 69.618],
|
|
[92.303, 67.695]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 70",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 70,
|
|
"ty": "sh",
|
|
"ix": 71,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"v": [
|
|
[123.528, 49.393],
|
|
[120.648, 51.056],
|
|
[120.664, 51.321],
|
|
[123.995, 53.244],
|
|
[124.455, 53.253],
|
|
[127.335, 51.59],
|
|
[127.319, 51.325],
|
|
[123.988, 49.402]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 71",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 71,
|
|
"ty": "sh",
|
|
"ix": 72,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071]
|
|
],
|
|
"v": [
|
|
[133.294, 44.029],
|
|
[141.383, 48.7],
|
|
[141.842, 48.709],
|
|
[144.723, 47.046],
|
|
[144.706, 46.781],
|
|
[136.618, 42.11],
|
|
[136.158, 42.101],
|
|
[133.277, 43.764]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 72",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 72,
|
|
"ty": "sh",
|
|
"ix": 73,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[132.408, 44.541],
|
|
[131.948, 44.531],
|
|
[129.068, 46.195],
|
|
[129.084, 46.46],
|
|
[132.415, 48.383],
|
|
[132.874, 48.392],
|
|
[135.755, 46.729],
|
|
[135.738, 46.464]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 73",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 73,
|
|
"ty": "sh",
|
|
"ix": 74,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"v": [
|
|
[128.665, 50.823],
|
|
[131.545, 49.16],
|
|
[131.528, 48.895],
|
|
[128.198, 46.972],
|
|
[127.738, 46.962],
|
|
[124.858, 48.625],
|
|
[124.874, 48.89],
|
|
[128.205, 50.813]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 74",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 74,
|
|
"ty": "sh",
|
|
"ix": 75,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[137.632, 51.139],
|
|
[140.513, 49.476],
|
|
[140.497, 49.211],
|
|
[137.166, 47.288],
|
|
[136.706, 47.279],
|
|
[133.826, 48.942],
|
|
[133.842, 49.207],
|
|
[137.173, 51.13]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 75",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 75,
|
|
"ty": "sh",
|
|
"ix": 76,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[86.006, 80.946],
|
|
[88.886, 79.283],
|
|
[88.87, 79.018],
|
|
[85.539, 77.095],
|
|
[85.08, 77.085],
|
|
[82.199, 78.748],
|
|
[82.216, 79.013],
|
|
[85.546, 80.936]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 76",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 76,
|
|
"ty": "sh",
|
|
"ix": 77,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"o": [
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[127.649, 41.794],
|
|
[127.19, 41.784],
|
|
[124.31, 43.447],
|
|
[124.326, 43.713],
|
|
[127.657, 45.636],
|
|
[128.116, 45.645],
|
|
[130.996, 43.982],
|
|
[130.98, 43.717]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 77",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 77,
|
|
"ty": "sh",
|
|
"ix": 78,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"v": [
|
|
[101.189, 66.686],
|
|
[104.07, 65.023],
|
|
[104.053, 64.757],
|
|
[100.723, 62.834],
|
|
[100.263, 62.825],
|
|
[97.383, 64.488],
|
|
[97.399, 64.753],
|
|
[100.73, 66.676]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 78",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 78,
|
|
"ty": "sh",
|
|
"ix": 79,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.123, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"v": [
|
|
[122.98, 44.215],
|
|
[120.1, 45.878],
|
|
[120.116, 46.143],
|
|
[123.447, 48.066],
|
|
[123.906, 48.076],
|
|
[126.787, 46.413],
|
|
[126.77, 46.147],
|
|
[123.44, 44.224]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 79",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 79,
|
|
"ty": "sh",
|
|
"ix": 80,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[113.674, 49.588],
|
|
[110.794, 51.251],
|
|
[110.81, 51.516],
|
|
[114.141, 53.439],
|
|
[114.6, 53.449],
|
|
[117.481, 51.786],
|
|
[117.464, 51.52],
|
|
[114.133, 49.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 80",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 80,
|
|
"ty": "sh",
|
|
"ix": 81,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[118.77, 46.646],
|
|
[115.89, 48.309],
|
|
[115.906, 48.574],
|
|
[119.237, 50.497],
|
|
[119.696, 50.506],
|
|
[122.577, 48.843],
|
|
[122.561, 48.578],
|
|
[119.23, 46.655]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 81",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 81,
|
|
"ty": "sh",
|
|
"ix": 82,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"v": [
|
|
[81.796, 83.377],
|
|
[84.676, 81.714],
|
|
[84.66, 81.448],
|
|
[81.329, 79.525],
|
|
[80.87, 79.516],
|
|
[77.989, 81.179],
|
|
[78.006, 81.444],
|
|
[81.337, 83.367]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 82",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 82,
|
|
"ty": "sh",
|
|
"ix": 83,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[60.275, 80.418],
|
|
[57.395, 82.081],
|
|
[57.411, 82.346],
|
|
[60.742, 84.269],
|
|
[61.201, 84.279],
|
|
[64.082, 82.615],
|
|
[64.065, 82.35],
|
|
[60.735, 80.427]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 83",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 83,
|
|
"ty": "sh",
|
|
"ix": 84,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"v": [
|
|
[64.485, 77.987],
|
|
[61.605, 79.65],
|
|
[61.621, 79.915],
|
|
[64.952, 81.839],
|
|
[65.411, 81.848],
|
|
[68.292, 80.185],
|
|
[68.275, 79.92],
|
|
[64.945, 77.997]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 84",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 84,
|
|
"ty": "sh",
|
|
"ix": 85,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[68.695, 75.557],
|
|
[65.814, 77.22],
|
|
[65.831, 77.485],
|
|
[69.161, 79.408],
|
|
[69.621, 79.417],
|
|
[72.501, 77.754],
|
|
[72.485, 77.489],
|
|
[69.154, 75.566]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 85",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 85,
|
|
"ty": "sh",
|
|
"ix": 86,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"v": [
|
|
[77.114, 70.695],
|
|
[74.234, 72.359],
|
|
[74.251, 72.624],
|
|
[77.581, 74.547],
|
|
[78.041, 74.556],
|
|
[80.921, 72.893],
|
|
[80.905, 72.628],
|
|
[77.574, 70.705]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 86",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 86,
|
|
"ty": "sh",
|
|
"ix": 87,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[56.065, 82.849],
|
|
[53.185, 84.512],
|
|
[53.201, 84.777],
|
|
[56.532, 86.7],
|
|
[56.991, 86.709],
|
|
[59.872, 85.046],
|
|
[59.855, 84.781],
|
|
[56.525, 82.858]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 87",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 87,
|
|
"ty": "sh",
|
|
"ix": 88,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"v": [
|
|
[72.905, 73.126],
|
|
[70.024, 74.789],
|
|
[70.041, 75.054],
|
|
[73.371, 76.977],
|
|
[73.831, 76.987],
|
|
[76.711, 75.324],
|
|
[76.695, 75.059],
|
|
[73.364, 73.136]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 88",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 88,
|
|
"ty": "sh",
|
|
"ix": 89,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"v": [
|
|
[51.855, 85.279],
|
|
[48.975, 86.942],
|
|
[48.991, 87.207],
|
|
[52.322, 89.13],
|
|
[52.781, 89.14],
|
|
[55.662, 87.477],
|
|
[55.645, 87.211],
|
|
[52.315, 85.288]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 89",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 89,
|
|
"ty": "sh",
|
|
"ix": 90,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"o": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[63.051, 99.418],
|
|
[63.511, 99.428],
|
|
[66.391, 97.765],
|
|
[66.375, 97.5],
|
|
[63.044, 95.577],
|
|
[62.585, 95.567],
|
|
[59.704, 97.23],
|
|
[59.72, 97.495]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 90",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 90,
|
|
"ty": "sh",
|
|
"ix": 91,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[67.72, 96.997],
|
|
[70.601, 95.334],
|
|
[70.585, 95.069],
|
|
[67.254, 93.146],
|
|
[66.794, 93.137],
|
|
[63.914, 94.8],
|
|
[63.93, 95.065],
|
|
[67.261, 96.988]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 91",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 91,
|
|
"ty": "sh",
|
|
"ix": 92,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"o": [
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[54.421, 93.413],
|
|
[54.881, 93.422],
|
|
[57.761, 91.759],
|
|
[57.745, 91.494],
|
|
[54.414, 89.571],
|
|
[53.955, 89.561],
|
|
[51.074, 91.224],
|
|
[51.09, 91.49]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 92",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 92,
|
|
"ty": "sh",
|
|
"ix": 93,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"v": [
|
|
[47.645, 87.71],
|
|
[44.765, 89.373],
|
|
[44.781, 89.638],
|
|
[48.112, 91.561],
|
|
[48.571, 91.57],
|
|
[51.452, 89.907],
|
|
[51.436, 89.642],
|
|
[48.105, 87.719]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 93",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 93,
|
|
"ty": "sh",
|
|
"ix": 94,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"o": [
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[60.287, 95.52],
|
|
[60.747, 95.53],
|
|
[63.627, 93.866],
|
|
[63.611, 93.601],
|
|
[60.28, 91.678],
|
|
[59.821, 91.669],
|
|
[56.94, 93.332],
|
|
[56.956, 93.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 94",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 94,
|
|
"ty": "sh",
|
|
"ix": 95,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[81.324, 68.265],
|
|
[78.444, 69.928],
|
|
[78.46, 70.193],
|
|
[81.791, 72.116],
|
|
[82.251, 72.126],
|
|
[85.131, 70.463],
|
|
[85.115, 70.197],
|
|
[81.784, 68.274]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 95",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 95,
|
|
"ty": "sh",
|
|
"ix": 96,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"v": [
|
|
[85.534, 65.834],
|
|
[82.654, 67.497],
|
|
[82.67, 67.763],
|
|
[86.001, 69.686],
|
|
[86.46, 69.695],
|
|
[89.341, 68.032],
|
|
[89.324, 67.767],
|
|
[85.994, 65.844]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 96",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 96,
|
|
"ty": "sh",
|
|
"ix": 97,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"v": [
|
|
[107.055, 68.793],
|
|
[113.481, 65.083],
|
|
[113.464, 64.818],
|
|
[105.376, 60.148],
|
|
[104.916, 60.139],
|
|
[101.593, 62.057],
|
|
[101.609, 62.323],
|
|
[105.892, 64.795],
|
|
[105.908, 65.06],
|
|
[103.249, 66.595],
|
|
[103.265, 66.861],
|
|
[106.596, 68.784]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 97",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 97,
|
|
"ty": "sh",
|
|
"ix": 98,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.123, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[110.939, 61.057],
|
|
[113.819, 59.394],
|
|
[113.803, 59.129],
|
|
[110.472, 57.206],
|
|
[110.013, 57.196],
|
|
[107.132, 58.859],
|
|
[107.148, 59.124],
|
|
[110.479, 61.048]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 98",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 98,
|
|
"ty": "sh",
|
|
"ix": 99,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[90.216, 78.515],
|
|
[93.096, 76.852],
|
|
[93.08, 76.587],
|
|
[89.749, 74.664],
|
|
[89.29, 74.655],
|
|
[86.409, 76.318],
|
|
[86.426, 76.583],
|
|
[89.756, 78.506]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 99",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 99,
|
|
"ty": "sh",
|
|
"ix": 100,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[94.426, 76.085],
|
|
[97.306, 74.422],
|
|
[97.29, 74.157],
|
|
[93.959, 72.233],
|
|
[93.5, 72.224],
|
|
[90.619, 73.887],
|
|
[90.636, 74.152],
|
|
[93.966, 76.075]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 100",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 100,
|
|
"ty": "sh",
|
|
"ix": 101,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"v": [
|
|
[98.636, 73.654],
|
|
[101.516, 71.991],
|
|
[101.5, 71.726],
|
|
[98.169, 69.803],
|
|
[97.71, 69.793],
|
|
[94.829, 71.457],
|
|
[94.845, 71.722],
|
|
[98.176, 73.645]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 101",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 101,
|
|
"ty": "sh",
|
|
"ix": 102,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076]
|
|
],
|
|
"v": [
|
|
[102.846, 71.224],
|
|
[105.726, 69.561],
|
|
[105.71, 69.295],
|
|
[102.379, 67.372],
|
|
[101.919, 67.363],
|
|
[99.039, 69.026],
|
|
[99.055, 69.291],
|
|
[102.386, 71.214]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 102",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 102,
|
|
"ty": "sh",
|
|
"ix": 103,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[89.744, 63.404],
|
|
[86.864, 65.067],
|
|
[86.88, 65.332],
|
|
[90.211, 67.255],
|
|
[90.67, 67.264],
|
|
[93.551, 65.601],
|
|
[93.534, 65.336],
|
|
[90.204, 63.413]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 103",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 103,
|
|
"ty": "sh",
|
|
"ix": 104,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[93.954, 60.973],
|
|
[91.074, 62.636],
|
|
[91.09, 62.901],
|
|
[94.421, 64.825],
|
|
[94.88, 64.834],
|
|
[97.761, 63.171],
|
|
[97.744, 62.906],
|
|
[94.414, 60.983]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 104",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 104,
|
|
"ty": "sh",
|
|
"ix": 105,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.132, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[105.254, 54.449],
|
|
[102.374, 56.112],
|
|
[102.39, 56.377],
|
|
[105.721, 58.3],
|
|
[106.18, 58.31],
|
|
[109.061, 56.647],
|
|
[109.045, 56.381],
|
|
[105.714, 54.459]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 105",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 105,
|
|
"ty": "sh",
|
|
"ix": 106,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.132, -0.076]
|
|
],
|
|
"v": [
|
|
[100.158, 57.391],
|
|
[95.284, 60.206],
|
|
[95.3, 60.471],
|
|
[98.631, 62.394],
|
|
[99.09, 62.403],
|
|
[103.965, 59.589],
|
|
[103.948, 59.324],
|
|
[100.618, 57.401]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 106",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 106,
|
|
"ty": "sh",
|
|
"ix": 107,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.132, 0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076]
|
|
],
|
|
"v": [
|
|
[109.464, 52.019],
|
|
[106.584, 53.681],
|
|
[106.6, 53.947],
|
|
[109.931, 55.87],
|
|
[110.39, 55.879],
|
|
[113.271, 54.216],
|
|
[113.254, 53.951],
|
|
[109.924, 52.028]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 107",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ind": 107,
|
|
"ty": "sh",
|
|
"ix": 108,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.122, 0.07],
|
|
[0, 0],
|
|
[0.131, 0.076],
|
|
[0, 0],
|
|
[0.122, -0.07],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.122, -0.071],
|
|
[0, 0],
|
|
[-0.131, -0.076],
|
|
[0, 0],
|
|
[-0.122, 0.071],
|
|
[0, 0],
|
|
[0.132, 0.076]
|
|
],
|
|
"v": [
|
|
[115.148, 58.626],
|
|
[118.029, 56.963],
|
|
[118.013, 56.698],
|
|
[114.682, 54.775],
|
|
[114.222, 54.766],
|
|
[111.342, 56.429],
|
|
[111.358, 56.694],
|
|
[114.689, 58.617]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 108",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.215686276555, 0.352941185236, 0.392156869173, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 10",
|
|
"np": 109,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 11,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.714, 0.412],
|
|
[0, 0],
|
|
[-0.714, -0.412],
|
|
[0, 0],
|
|
[0.714, -0.412],
|
|
[0, 0],
|
|
[0.715, 0.41],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.714, -0.412],
|
|
[0, 0],
|
|
[0.714, 0.412],
|
|
[0, 0],
|
|
[-0.714, 0.412],
|
|
[0, 0],
|
|
[-0.715, -0.41]
|
|
],
|
|
"v": [
|
|
[32.682, 87.845],
|
|
[124.678, 34.729],
|
|
[127.264, 34.729],
|
|
[156.206, 51.44],
|
|
[156.206, 52.932],
|
|
[64.314, 105.974],
|
|
[61.726, 105.978],
|
|
[32.684, 89.333]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.101960785687, 0.180392161012, 0.207843139768, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 11",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 12,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.714, 0.412],
|
|
[0, 0],
|
|
[-0.714, -0.412],
|
|
[0, 0],
|
|
[0.714, -0.412],
|
|
[0, 0],
|
|
[0.714, 0.412],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.714, -0.412],
|
|
[0, 0],
|
|
[0.714, 0.412],
|
|
[0, 0],
|
|
[-0.714, 0.412],
|
|
[0, 0],
|
|
[-0.714, -0.412]
|
|
],
|
|
"v": [
|
|
[20.554, 80.844],
|
|
[112.552, 27.729],
|
|
[115.138, 27.729],
|
|
[119.843, 30.446],
|
|
[119.843, 31.938],
|
|
[27.831, 85.044],
|
|
[25.246, 85.044],
|
|
[20.554, 82.336]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.101960785687, 0.180392161012, 0.207843139768, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 12",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 13,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.714, 0.412],
|
|
[0, 0],
|
|
[-0.714, -0.412],
|
|
[0, 0],
|
|
[0.714, -0.412],
|
|
[0, 0],
|
|
[0.714, 0.412],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.714, -0.412],
|
|
[0, 0],
|
|
[0.714, 0.412],
|
|
[0, 0],
|
|
[-0.714, 0.412],
|
|
[0, 0],
|
|
[-0.714, -0.412]
|
|
],
|
|
"v": [
|
|
[20.554, 80.844],
|
|
[112.552, 27.729],
|
|
[115.138, 27.729],
|
|
[119.843, 30.446],
|
|
[119.843, 31.938],
|
|
[27.831, 85.044],
|
|
[25.246, 85.044],
|
|
[20.554, 82.336]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0.874509811401, 0.749019622803, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 13",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 14,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.857, 0.495],
|
|
[0, 0],
|
|
[0, -0.989],
|
|
[0, 0],
|
|
[0.857, -0.495],
|
|
[0, 0],
|
|
[0, 0.989],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0.857, -0.495],
|
|
[0, 0],
|
|
[0, 0.989],
|
|
[0, 0],
|
|
[-0.857, 0.495],
|
|
[0, 0],
|
|
[0, -0.989]
|
|
],
|
|
"v": [
|
|
[13.537, -7.518],
|
|
[109.094, -62.674],
|
|
[110.645, -61.778],
|
|
[110.645, 13.051],
|
|
[109.094, 15.738],
|
|
[13.537, 70.892],
|
|
[11.986, 69.997],
|
|
[11.986, -4.831]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.980392158031, 0.980392158031, 0.980392158031, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 14",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 15,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.428, -0.824],
|
|
[0, 0],
|
|
[-1.428, 0.824],
|
|
[0, 0],
|
|
[1.428, 0.824],
|
|
[0, 0],
|
|
[1.428, -0.824],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[1.428, 0.824],
|
|
[0, 0],
|
|
[1.428, -0.824],
|
|
[0, 0],
|
|
[-1.428, -0.824],
|
|
[0, 0],
|
|
[-1.428, 0.824]
|
|
],
|
|
"v": [
|
|
[12.146, 83.082],
|
|
[84.583, 124.903],
|
|
[89.753, 124.903],
|
|
[188.866, 67.68],
|
|
[188.866, 64.695],
|
|
[116.43, 22.874],
|
|
[111.259, 22.874],
|
|
[12.146, 80.097]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.215686276555, 0.352941185236, 0.392156869173, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 15",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 16,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -1.649],
|
|
[0, 0],
|
|
[-1.428, 0.824],
|
|
[0, 0],
|
|
[0, 1.649],
|
|
[0, 0],
|
|
[1.428, -0.824],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 1.649],
|
|
[0, 0],
|
|
[1.428, -0.824],
|
|
[0, 0],
|
|
[0, -1.649],
|
|
[0, 0],
|
|
[-1.428, 0.824]
|
|
],
|
|
"v": [
|
|
[9.561, -7.837],
|
|
[9.561, 78.604],
|
|
[12.146, 80.097],
|
|
[111.259, 22.874],
|
|
[113.844, 18.397],
|
|
[113.844, -68.045],
|
|
[111.259, -69.538],
|
|
[12.146, -12.315]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.168627455831, 0.270588248968, 0.305882364511, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 16",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 17,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.284, 0.567],
|
|
[1.248, 0.723],
|
|
[0, 1.648],
|
|
[0, 0],
|
|
[-0.472, 0.806],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, -0.824],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[-1.427, 0.669],
|
|
[-1.337, -0.77],
|
|
[0, 0],
|
|
[0, -0.824],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.466, 0.812],
|
|
[0, 0],
|
|
[0, 1.528]
|
|
],
|
|
"v": [
|
|
[11.841, 80.253],
|
|
[7.136, 80.187],
|
|
[4.712, 75.805],
|
|
[4.712, -10.64],
|
|
[5.471, -13.183],
|
|
[10.319, -10.389],
|
|
[10.319, -10.383],
|
|
[9.561, -7.84],
|
|
[9.561, 78.605]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.101960785687, 0.180392161012, 0.207843139768, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 17",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 18,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.339, 0.773],
|
|
[0, 1.649],
|
|
[0, 0],
|
|
[-1.428, 0.824],
|
|
[0, 0],
|
|
[-1.339, -0.773],
|
|
[0, -1.649],
|
|
[0, 0],
|
|
[1.428, -0.824],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[-1.339, -0.773],
|
|
[0, 0],
|
|
[0, -1.649],
|
|
[0, 0],
|
|
[1.428, -0.824],
|
|
[1.34, 0.773],
|
|
[0, 0],
|
|
[0, 1.649],
|
|
[0, 0],
|
|
[-1.428, 0.824]
|
|
],
|
|
"v": [
|
|
[7.136, 80.189],
|
|
[4.711, 75.804],
|
|
[4.711, -10.638],
|
|
[7.296, -15.116],
|
|
[106.408, -72.338],
|
|
[111.419, -72.43],
|
|
[113.844, -68.045],
|
|
[113.844, 18.397],
|
|
[111.259, 22.874],
|
|
[12.146, 80.097]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.215686276555, 0.352941185236, 0.392156869173, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 18",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 19,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.937, 0],
|
|
[0, 0],
|
|
[0.71, 0.412],
|
|
[0, 0],
|
|
[0, 1.546],
|
|
[-1.301, 0.895],
|
|
[-1.331, -0.77],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-0.937, 0],
|
|
[0, 0],
|
|
[-1.427, -0.824],
|
|
[0, -1.451],
|
|
[-1.158, 0.83],
|
|
[0, 0],
|
|
[0.71, 0.412]
|
|
],
|
|
"v": [
|
|
[87.169, 125.526],
|
|
[87.169, 131.12],
|
|
[84.584, 130.505],
|
|
[12.146, 88.683],
|
|
[9.561, 84.39],
|
|
[11.883, 80.265],
|
|
[12.146, 83.083],
|
|
[84.584, 124.905]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.101960785687, 0.180392161012, 0.207843139768, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 19",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 20,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -1.547],
|
|
[-1.428, -0.824],
|
|
[0, 0],
|
|
[-1.428, 0.824],
|
|
[0, 0],
|
|
[0, 1.547],
|
|
[1.428, 0.824],
|
|
[0, 0],
|
|
[1.428, -0.824],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 1.547],
|
|
[0, 0],
|
|
[1.428, 0.824],
|
|
[0, 0],
|
|
[1.428, -0.824],
|
|
[0, -1.547],
|
|
[0, 0],
|
|
[-1.428, -0.824],
|
|
[0, 0],
|
|
[-1.428, 0.824]
|
|
],
|
|
"v": [
|
|
[9.561, 84.39],
|
|
[12.147, 88.683],
|
|
[84.583, 130.504],
|
|
[89.753, 130.504],
|
|
[188.865, 73.281],
|
|
[191.451, 68.988],
|
|
[188.866, 64.695],
|
|
[116.43, 22.874],
|
|
[111.259, 22.874],
|
|
[12.146, 80.097]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.168627455831, 0.270588248968, 0.305882364511, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 20",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 21,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 15,
|
|
"ty": 4,
|
|
"nm": "leaves1",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 36,
|
|
"s": [26]
|
|
},
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 72, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 108,
|
|
"s": [26]
|
|
},
|
|
{ "t": 144, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [425.828, 311.258, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [425.828, 311.258, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.096, 0.028],
|
|
[-0.053, 0.178],
|
|
[-8.324, 3.039],
|
|
[0.101, 0.276],
|
|
[0.297, -0.115],
|
|
[4.394, -14.698],
|
|
[-0.282, -0.085]
|
|
],
|
|
"o": [
|
|
[0.167, -0.049],
|
|
[4.313, -14.429],
|
|
[0.276, -0.101],
|
|
[-0.101, -0.275],
|
|
[-8.484, 3.097],
|
|
[-0.084, 0.282],
|
|
[0.103, 0.03]
|
|
],
|
|
"v": [
|
|
[-17.081, 19.117],
|
|
[-16.721, 18.759],
|
|
[17.414, -18.101],
|
|
[17.732, -18.784],
|
|
[17.049, -19.101],
|
|
[-17.742, 18.454],
|
|
[-17.384, 19.117]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [440.87, 296.978], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 1,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-8.134, -6.284],
|
|
[-8.206, 0.008],
|
|
[0, 0],
|
|
[4.88, 1.382],
|
|
[-6.843, -3.142],
|
|
[-0.757, 7.769],
|
|
[10.102, 0.877],
|
|
[-8.864, -0.815],
|
|
[-0.115, 4.581],
|
|
[3.616, 0.373],
|
|
[1.867, -2.254],
|
|
[0, 0],
|
|
[0.027, 3.374],
|
|
[3.397, -2.434],
|
|
[0.113, -2.869],
|
|
[-0.546, -3.684],
|
|
[-0.811, 7.053],
|
|
[0.326, -4.447]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[8.206, -0.008],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.679, 0.152],
|
|
[0.115, -4.581],
|
|
[-3.616, -0.374],
|
|
[-1.868, 2.254],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-2.235, 1.601],
|
|
[-0.113, 2.869],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.327, 4.458]
|
|
],
|
|
"v": [
|
|
[-15.69, 18.326],
|
|
[-2.12, 21.742],
|
|
[9.008, 17.344],
|
|
[-0.22, 8.958],
|
|
[14.579, 12.442],
|
|
[20.235, 3.969],
|
|
[6.522, -0.936],
|
|
[21.06, -2.55],
|
|
[23.039, -17.057],
|
|
[17.757, -21.679],
|
|
[0.369, -18.499],
|
|
[-1.563, -9.546],
|
|
[-4.255, -16.28],
|
|
[-11.159, -14.199],
|
|
[-14.707, -8.297],
|
|
[-13.912, 1.34],
|
|
[-15.952, -10.272],
|
|
[-22.883, -1.286]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.086274512112, 0.72549021244, 0.976470589638, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [439.328, 297.258], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 16,
|
|
"ty": 4,
|
|
"nm": "leaves2",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": {
|
|
"a": 1,
|
|
"k": [
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 36,
|
|
"s": [-12]
|
|
},
|
|
{ "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 72, "s": [0] },
|
|
{
|
|
"i": { "x": [0.667], "y": [1] },
|
|
"o": { "x": [0.333], "y": [0] },
|
|
"t": 108,
|
|
"s": [-12]
|
|
},
|
|
{ "t": 143, "s": [0] }
|
|
],
|
|
"ix": 10
|
|
},
|
|
"p": { "a": 0, "k": [428.428, 285.28, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [428.428, 285.28, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-0.023, 0.005],
|
|
[0.025, 0.268],
|
|
[-13.648, 13.153],
|
|
[0.204, 0.212],
|
|
[0.21, -0.201],
|
|
[-2.03, -22.058],
|
|
[-0.292, 0.027]
|
|
],
|
|
"o": [
|
|
[0.257, -0.058],
|
|
[-2, -21.726],
|
|
[0.212, -0.205],
|
|
[-0.205, -0.213],
|
|
[-13.89, 13.386],
|
|
[0.028, 0.293],
|
|
[0.024, -0.002]
|
|
],
|
|
"v": [
|
|
[-8.679, 27.392],
|
|
[-8.267, 26.825],
|
|
[9.539, -26.491],
|
|
[9.553, -27.244],
|
|
[8.801, -27.258],
|
|
[-9.329, 26.922],
|
|
[-8.749, 27.404]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [427.141, 283.06], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 1,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-6.599, 13.199],
|
|
[-7.816, -0.992],
|
|
[7.032, -7.613],
|
|
[2.074, -16.94],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0.072, -7.665],
|
|
[4.781, -9.563],
|
|
[7.28, 0.924],
|
|
[-7.032, 7.613],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-16.025, 19.188],
|
|
[-10.768, -15.82],
|
|
[10.319, -33.649],
|
|
[11.134, -13.906],
|
|
[-4.51, 23.758],
|
|
[-12.051, 33.722]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.086274512112, 0.72549021244, 0.976470589638, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [428.428, 285.28], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 1,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[-6.599, 13.199],
|
|
[-7.816, -0.992],
|
|
[7.032, -7.613],
|
|
[2.074, -16.94],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0.072, -7.665],
|
|
[4.781, -9.563],
|
|
[7.28, 0.924],
|
|
[-7.032, 7.613],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-16.025, 19.188],
|
|
[-10.768, -15.82],
|
|
[10.319, -33.649],
|
|
[11.134, -13.906],
|
|
[-4.51, 23.758],
|
|
[-12.051, 33.722]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0.874509811401, 0.749019622803, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [428.428, 285.28], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 1,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 17,
|
|
"ty": 4,
|
|
"nm": "cloud",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": 0.667, "y": 1 },
|
|
"o": { "x": 0.333, "y": 0 },
|
|
"t": 0,
|
|
"s": [134.148, 140.553, 0],
|
|
"to": [0, -2.667, 0],
|
|
"ti": [0, 0, 0]
|
|
},
|
|
{
|
|
"i": { "x": 0.667, "y": 1 },
|
|
"o": { "x": 0.333, "y": 0 },
|
|
"t": 36,
|
|
"s": [134.148, 124.553, 0],
|
|
"to": [0, 0, 0],
|
|
"ti": [0, 0, 0]
|
|
},
|
|
{
|
|
"i": { "x": 0.667, "y": 1 },
|
|
"o": { "x": 0.333, "y": 0 },
|
|
"t": 72,
|
|
"s": [134.148, 140.553, 0],
|
|
"to": [0, 0, 0],
|
|
"ti": [0, 0, 0]
|
|
},
|
|
{
|
|
"i": { "x": 0.667, "y": 1 },
|
|
"o": { "x": 0.333, "y": 0 },
|
|
"t": 108,
|
|
"s": [134.148, 124.553, 0],
|
|
"to": [0, 0, 0],
|
|
"ti": [0, -2.667, 0]
|
|
},
|
|
{ "t": 143, "s": [134.148, 140.553, 0] }
|
|
],
|
|
"ix": 2
|
|
},
|
|
"a": { "a": 0, "k": [134.148, 140.053, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0.001, 0],
|
|
[0, 10.15],
|
|
[-11.874, 6.855],
|
|
[0, 0],
|
|
[0.324, 2.044],
|
|
[0, 0],
|
|
[0, 2.988],
|
|
[-19.774, 11.417],
|
|
[-3.924, 0],
|
|
[-0.466, -16.56],
|
|
[0, 0],
|
|
[-2.491, 4.412],
|
|
[0, 0],
|
|
[-6.717, 3.878],
|
|
[-2.923, 0],
|
|
[0, -13.121],
|
|
[0.358, -2.613],
|
|
[0, 0],
|
|
[-3.601, 2.079],
|
|
[0, 0],
|
|
[-0.936, 0],
|
|
[0, -3.896],
|
|
[6.582, -3.801],
|
|
[0, 0],
|
|
[2.127, 0]
|
|
],
|
|
"o": [
|
|
[-6.011, -0.001],
|
|
[0, -16.074],
|
|
[0, 0],
|
|
[1.792, -1.035],
|
|
[0, 0],
|
|
[-0.428, -2.699],
|
|
[0, -26.612],
|
|
[4.52, -2.609],
|
|
[10.7, 0],
|
|
[0, 0],
|
|
[0.142, 5.064],
|
|
[0, 0],
|
|
[5.143, -9.105],
|
|
[3.418, -1.973],
|
|
[8.085, 0],
|
|
[0, 2.429],
|
|
[0, 0],
|
|
[-0.566, 4.12],
|
|
[0, 0],
|
|
[1.232, -0.711],
|
|
[2.646, 0],
|
|
[0, 9.018],
|
|
[0, 0],
|
|
[-2.524, 1.457],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-69.652, 73.561],
|
|
[-79.548, 56.851],
|
|
[-57.642, 14.549],
|
|
[-54.997, 13.022],
|
|
[-52.56, 7.911],
|
|
[-52.56, 7.911],
|
|
[-53.204, -0.661],
|
|
[-17.343, -69.629],
|
|
[-4.618, -73.561],
|
|
[13.485, -46.714],
|
|
[13.485, -46.714],
|
|
[22.837, -44.396],
|
|
[22.837, -44.397],
|
|
[41.227, -64.532],
|
|
[50.782, -67.505],
|
|
[64.091, -45.907],
|
|
[63.551, -38.308],
|
|
[63.551, -38.308],
|
|
[71.004, -33.298],
|
|
[72.404, -34.107],
|
|
[75.718, -35.194],
|
|
[79.548, -27.367],
|
|
[67.404, -3.717],
|
|
[-62.642, 71.365],
|
|
[-69.651, 73.561]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "st",
|
|
"c": { "a": 0, "k": [0.086274512112, 0.72549021244, 0.976470589638, 1], "ix": 3 },
|
|
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
"w": { "a": 0, "k": 5, "ix": 5 },
|
|
"lc": 1,
|
|
"lj": 1,
|
|
"ml": 10,
|
|
"bm": 0,
|
|
"nm": "Stroke 1",
|
|
"mn": "ADBE Vector Graphic - Stroke",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0.674509823322, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [143.913, 145.691], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 61, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[4.17, -12.33],
|
|
[0, 0],
|
|
[-6.82, 5.99],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-9.13, 5.27],
|
|
[0, 0],
|
|
[3.33, -9.83],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[21.725, -9.57],
|
|
[19.075, -8.05],
|
|
[-2.195, 20.85],
|
|
[-21.725, 9.57],
|
|
[-5.835, -15.41],
|
|
[2.195, -20.85]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.68235296011, 0.913725495338, 0.988235294819, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [64.692, 163.959], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 35, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[9.46, -5.46],
|
|
[6.73, -11.68],
|
|
[0, 0],
|
|
[-9.61, 5.56],
|
|
[-6.85, -4.54],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-6.68, -3.72],
|
|
[-9.61, 5.55],
|
|
[0, 0],
|
|
[6.73, -11.68],
|
|
[10.09, -5.82],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[34.73, -7.755],
|
|
[34.72, -7.745],
|
|
[9.92, -5.575],
|
|
[-15.21, 21.445],
|
|
[-34.73, 10.175],
|
|
[-9.61, -16.855],
|
|
[16.5, -18.225],
|
|
[16.49, -18.245]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.68235296011, 0.913725495338, 0.988235294819, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [114.146, 77.305], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 35, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[7.49, -4.33],
|
|
[3.14, -3.28],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.14, 0.14],
|
|
[-3.34, 1.94],
|
|
[-5.32, -3.06],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-5.29, -2.95],
|
|
[-3.52, 2.04],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.14, -0.15],
|
|
[3.01, -3.07],
|
|
[7.59, -4.38],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[24.58, 1.702],
|
|
[24.56, 1.702],
|
|
[4.91, 3.422],
|
|
[-5.13, 11.492],
|
|
[-22.88, 1.182],
|
|
[-24.58, 0.003],
|
|
[-24.19, -0.268],
|
|
[-14.62, -7.858],
|
|
[5.23, -9.458],
|
|
[5.22, -9.478]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.68235296011, 0.913725495338, 0.988235294819, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [178.114, 73.139], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 35, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[2.872, 1.907],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.095, 0.048],
|
|
[0, 0],
|
|
[0, 0.234],
|
|
[6.553, 3.643],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[7.589, -4.381],
|
|
[3.011, -3.073],
|
|
[1.505, 0.892],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[10.089, -5.825],
|
|
[0, -28.249],
|
|
[-0.458, -2.896],
|
|
[0, 0],
|
|
[0, -17.972],
|
|
[0, 0],
|
|
[-5.254, -3.043],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-6.013, 3.471],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 10.783],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.093, -0.053],
|
|
[0, 0],
|
|
[0.003, -0.235],
|
|
[0, -12.365],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-5.323, -3.063],
|
|
[-3.347, 1.932],
|
|
[-1.283, -1.311],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-6.846, -4.538],
|
|
[-21.187, 12.232],
|
|
[0, 3.339],
|
|
[0, 0],
|
|
[-13.479, 7.782],
|
|
[0, 0],
|
|
[0, 9.924],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[4.254, 2.438],
|
|
[0, 0],
|
|
[0, 0],
|
|
[8.087, -4.669],
|
|
[0, 0],
|
|
[0, -5.644]
|
|
],
|
|
"v": [
|
|
[89.634, -33.306],
|
|
[89.644, -33.325],
|
|
[89.188, -33.589],
|
|
[88.91, -33.749],
|
|
[78.843, -39.563],
|
|
[78.856, -40.269],
|
|
[68.141, -64.937],
|
|
[68.157, -64.941],
|
|
[48.797, -76.123],
|
|
[48.806, -76.103],
|
|
[28.963, -74.502],
|
|
[19.386, -66.911],
|
|
[15.202, -70.232],
|
|
[15.205, -70.233],
|
|
[-3.508, -80.998],
|
|
[-3.503, -80.977],
|
|
[-29.607, -79.6],
|
|
[-67.969, -6.302],
|
|
[-67.263, 3.052],
|
|
[-69.907, 4.579],
|
|
[-94.313, 51.211],
|
|
[-94.313, 51.211],
|
|
[-85.724, 71.252],
|
|
[-85.736, 71.256],
|
|
[-66.146, 82.566],
|
|
[-66.145, 82.56],
|
|
[-50.377, 81.333],
|
|
[-14.88, 60.839],
|
|
[79.669, 6.25],
|
|
[94.313, -21.729],
|
|
[94.313, -21.729]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0.674509823322, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [134.148, 140.053], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 5,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[1.122, 0.648],
|
|
[2.243, -1.295],
|
|
[0, -0.849],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-1.193, -0.689],
|
|
[-2.243, 1.295],
|
|
[0.076, 0.902],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, -0.849],
|
|
[-2.243, -1.295],
|
|
[-1.122, 0.648],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.076, 0.902],
|
|
[2.243, 1.295],
|
|
[1.193, -0.689],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[5.745, -4.691],
|
|
[4.062, -7.036],
|
|
[-4.062, -7.036],
|
|
[-5.745, -4.691],
|
|
[-5.745, -4.691],
|
|
[-5.745, 4.53],
|
|
[-5.718, 4.53],
|
|
[-4.062, 7.036],
|
|
[4.062, 7.036],
|
|
[5.718, 4.53],
|
|
[5.745, 4.53],
|
|
[5.745, -4.691]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.156862750649, 0.156862750649, 0.156862750649, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [125.172, 198.713], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 6",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 6,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.696, 0.402],
|
|
[1.392, -0.804],
|
|
[0, -0.527],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.696, -0.402],
|
|
[-1.392, 0.804],
|
|
[0, 0.527],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, -0.527],
|
|
[-1.392, -0.804],
|
|
[-0.696, 0.402],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0.527],
|
|
[1.392, 0.804],
|
|
[0.696, -0.402],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[3.565, -4.691],
|
|
[2.521, -6.146],
|
|
[-2.521, -6.146],
|
|
[-3.565, -4.691],
|
|
[-3.565, -4.691],
|
|
[-3.565, 4.69],
|
|
[-3.565, 4.69],
|
|
[-2.521, 6.146],
|
|
[2.521, 6.146],
|
|
[3.565, 4.69],
|
|
[3.565, 4.69],
|
|
[3.565, -4.691]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.282352954149, 0.286274522543, 0.286274522543, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [125.172, 208.094], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 7",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 7,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[1.122, 0.648],
|
|
[2.243, -1.295],
|
|
[0, -0.849],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-1.193, -0.689],
|
|
[-2.243, 1.295],
|
|
[0.076, 0.902],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, -0.849],
|
|
[-2.243, -1.295],
|
|
[-1.122, 0.648],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.076, 0.902],
|
|
[2.243, 1.295],
|
|
[1.193, -0.689],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[5.745, -4.691],
|
|
[4.062, -7.036],
|
|
[-4.062, -7.036],
|
|
[-5.745, -4.691],
|
|
[-5.745, -4.691],
|
|
[-5.745, 4.53],
|
|
[-5.718, 4.53],
|
|
[-4.062, 7.036],
|
|
[4.062, 7.036],
|
|
[5.718, 4.53],
|
|
[5.745, 4.53],
|
|
[5.745, -4.691]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.156862750649, 0.156862750649, 0.156862750649, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [165.792, 175.361], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 8",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 8,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.696, 0.402],
|
|
[1.392, -0.804],
|
|
[0, -0.527],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.696, -0.402],
|
|
[-1.392, 0.804],
|
|
[0, 0.527],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, -0.527],
|
|
[-1.392, -0.804],
|
|
[-0.696, 0.402],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0.527],
|
|
[1.392, 0.804],
|
|
[0.696, -0.402],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[3.565, -4.691],
|
|
[2.521, -6.146],
|
|
[-2.521, -6.146],
|
|
[-3.565, -4.691],
|
|
[-3.565, -4.691],
|
|
[-3.565, 4.69],
|
|
[-3.565, 4.69],
|
|
[-2.521, 6.146],
|
|
[2.521, 6.146],
|
|
[3.565, 4.69],
|
|
[3.565, 4.69],
|
|
[3.565, -4.691]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.282352954149, 0.286274522543, 0.286274522543, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [165.792, 184.742], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 9",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 9,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[1.122, 0.648],
|
|
[2.243, -1.295],
|
|
[0, -0.849],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-1.193, -0.689],
|
|
[-2.243, 1.295],
|
|
[0.076, 0.902],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, -0.849],
|
|
[-2.243, -1.295],
|
|
[-1.122, 0.648],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.076, 0.902],
|
|
[2.243, 1.295],
|
|
[1.193, -0.689],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[5.745, -4.691],
|
|
[4.062, -7.036],
|
|
[-4.062, -7.036],
|
|
[-5.745, -4.691],
|
|
[-5.745, -4.691],
|
|
[-5.745, 4.53],
|
|
[-5.718, 4.53],
|
|
[-4.062, 7.036],
|
|
[4.062, 7.036],
|
|
[5.718, 4.53],
|
|
[5.745, 4.53],
|
|
[5.745, -4.691]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.156862750649, 0.156862750649, 0.156862750649, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [145.488, 187.169], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 10",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 10,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0.696, 0.402],
|
|
[1.392, -0.804],
|
|
[0, -0.527],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.696, -0.402],
|
|
[-1.392, 0.804],
|
|
[0, 0.527],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, -0.527],
|
|
[-1.392, -0.804],
|
|
[-0.696, 0.402],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0.527],
|
|
[1.392, 0.804],
|
|
[0.696, -0.402],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[3.565, -4.691],
|
|
[2.521, -6.146],
|
|
[-2.521, -6.146],
|
|
[-3.565, -4.691],
|
|
[-3.565, -4.691],
|
|
[-3.565, 4.691],
|
|
[-3.565, 4.691],
|
|
[-2.521, 6.146],
|
|
[2.521, 6.146],
|
|
[3.565, 4.691],
|
|
[3.565, 4.691],
|
|
[3.565, -4.691]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.282352954149, 0.286274522543, 0.286274522543, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [145.488, 196.549], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 11",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 11,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 18,
|
|
"ty": 4,
|
|
"nm": "cloud dash3",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [165.792, 207.296, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[0, 53.8],
|
|
[0, -53.8]
|
|
],
|
|
"c": false
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "st",
|
|
"c": { "a": 0, "k": [0, 0.874509811401, 0.749019622803, 1], "ix": 3 },
|
|
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
"w": { "a": 0, "k": 2, "ix": 5 },
|
|
"lc": 2,
|
|
"lj": 1,
|
|
"ml": 10,
|
|
"bm": 0,
|
|
"d": [
|
|
{ "n": "d", "nm": "dash", "v": { "a": 0, "k": 5, "ix": 1 } },
|
|
{ "n": "g", "nm": "gap", "v": { "a": 0, "k": 10, "ix": 2 } },
|
|
{
|
|
"n": "o",
|
|
"nm": "offset",
|
|
"v": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.833], "y": [0.833] },
|
|
"o": { "x": [0.167], "y": [0.167] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{ "t": 143, "s": [294] }
|
|
],
|
|
"ix": 7
|
|
}
|
|
}
|
|
],
|
|
"nm": "Stroke 1",
|
|
"mn": "ADBE Vector Graphic - Stroke",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 19,
|
|
"ty": 4,
|
|
"nm": "cloud dash2",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [145.489, 209.015, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[0, 53.8],
|
|
[0, -53.8]
|
|
],
|
|
"c": false
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "st",
|
|
"c": { "a": 0, "k": [0, 0.874509811401, 0.749019622803, 1], "ix": 3 },
|
|
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
"w": { "a": 0, "k": 2, "ix": 5 },
|
|
"lc": 2,
|
|
"lj": 1,
|
|
"ml": 10,
|
|
"bm": 0,
|
|
"d": [
|
|
{ "n": "d", "nm": "dash", "v": { "a": 0, "k": 5, "ix": 1 } },
|
|
{ "n": "g", "nm": "gap", "v": { "a": 0, "k": 10, "ix": 2 } },
|
|
{
|
|
"n": "o",
|
|
"nm": "offset",
|
|
"v": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.833], "y": [0.833] },
|
|
"o": { "x": [0.167], "y": [0.167] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{ "t": 143, "s": [-290] }
|
|
],
|
|
"ix": 7
|
|
}
|
|
}
|
|
],
|
|
"nm": "Stroke 1",
|
|
"mn": "ADBE Vector Graphic - Stroke",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 20,
|
|
"ty": 4,
|
|
"nm": "cloud dash1",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [125.172, 225.406, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[0, 53.8],
|
|
[0, -53.8]
|
|
],
|
|
"c": false
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "st",
|
|
"c": { "a": 0, "k": [0, 0.874509811401, 0.749019622803, 1], "ix": 3 },
|
|
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
"w": { "a": 0, "k": 2, "ix": 5 },
|
|
"lc": 2,
|
|
"lj": 1,
|
|
"ml": 10,
|
|
"bm": 0,
|
|
"d": [
|
|
{ "n": "d", "nm": "dash", "v": { "a": 0, "k": 5, "ix": 1 } },
|
|
{ "n": "g", "nm": "gap", "v": { "a": 0, "k": 10, "ix": 2 } },
|
|
{
|
|
"n": "o",
|
|
"nm": "offset",
|
|
"v": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.833], "y": [0.833] },
|
|
"o": { "x": [0.167], "y": [0.167] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{ "t": 143, "s": [284] }
|
|
],
|
|
"ix": 7
|
|
}
|
|
}
|
|
],
|
|
"nm": "Stroke 1",
|
|
"mn": "ADBE Vector Graphic - Stroke",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 21,
|
|
"ty": 4,
|
|
"nm": "building5",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [145.488, 279.469, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [145.488, 279.469, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [154.558, 309.655], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [154.558, 309.655], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.146]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.103],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.824, 309.309], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 40, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.146]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.103],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.824, 309.309], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.824, 309.309], "ix": 2 },
|
|
"a": { "a": 0, "k": [153.824, 309.309], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 4,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [162.727, 304.941], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [162.727, 304.941], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.102],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 304.595], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 40, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.102],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 304.595], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 304.595], "ix": 2 },
|
|
"a": { "a": 0, "k": [161.994, 304.595], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 4,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-30.466, -19.934],
|
|
[-30.464, -15.244],
|
|
[30.466, 19.934],
|
|
[30.466, 15.244]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.215686276555, 0.352941185236, 0.392156869173, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [115.022, 308.784], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 1,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[28.435, -14.071],
|
|
[28.434, -18.762],
|
|
[-28.435, 14.072],
|
|
[-28.434, 18.762]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.215686276555, 0.352941185236, 0.392156869173, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [173.923, 309.957], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.039, -0.6],
|
|
[0, -1.2],
|
|
[1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[1.039, 0.6],
|
|
[0, 1.2],
|
|
[-1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[1.882, 1.086],
|
|
[0, 2.173],
|
|
[-1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [102.376, 290.34], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.554, 2.101],
|
|
[1.554, 2.102],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.109, 289.994], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.554, 2.101],
|
|
[1.554, 2.102],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.109, 289.994], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.109, 289.994], "ix": 2 },
|
|
"a": { "a": 0, "k": [103.109, 289.994], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.039, -0.6],
|
|
[0, -1.2],
|
|
[1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[1.039, 0.6],
|
|
[0, 1.2],
|
|
[-1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[1.882, 1.086],
|
|
[0, 2.173],
|
|
[-1.882, -1.087]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.207, 285.626], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.553, 2.101],
|
|
[1.553, 2.102],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 285.28], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.553, 2.101],
|
|
[1.553, 2.102],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 285.28], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 285.28], "ix": 2 },
|
|
"a": { "a": 0, "k": [94.94, 285.28], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 285.28], "ix": 2 },
|
|
"a": { "a": 0, "k": [94.94, 285.28], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381],
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0],
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381]
|
|
],
|
|
"v": [
|
|
[-7.99, -9.304],
|
|
[7.99, -0.077],
|
|
[10.155, 3.673],
|
|
[10.155, 8.054],
|
|
[7.99, 9.304],
|
|
[-7.99, 0.077],
|
|
[-10.155, -3.673],
|
|
[-10.155, -8.054]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [98.768, 287.709], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 75, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [98.768, 287.709], "ix": 2 },
|
|
"a": { "a": 0, "k": [98.768, 287.709], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 5,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[32.496, 28.143],
|
|
[-32.496, -9.381],
|
|
[-32.496, -28.143],
|
|
[32.496, 9.381]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.713725507259, 0.86274510622, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [112.992, 295.886], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 6",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 6,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [172.821, 298.862], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [175.009, 297.6], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [177.197, 296.339], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [179.386, 295.077], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [181.574, 293.816], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 5,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [183.762, 292.554], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 6",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 6,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [185.951, 291.293], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 7",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 7,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.139, 290.031], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 8",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 8,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [190.328, 288.77], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 9",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 9,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [192.516, 287.508], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 10",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 10,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [194.704, 286.247], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 11",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 11,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [196.893, 284.985], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 12",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 12,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [199.081, 283.724], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 13",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 13,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.243, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [201.269, 282.462], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 14",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 14,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [203.458, 281.2], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 15",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 15,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [203.458, 281.2], "ix": 2 },
|
|
"a": { "a": 0, "k": [203.458, 281.2], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 15,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381],
|
|
[0, 0],
|
|
[-1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0],
|
|
[1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381]
|
|
],
|
|
"v": [
|
|
[16.114, -13.994],
|
|
[-16.114, 4.613],
|
|
[-18.279, 8.363],
|
|
[-18.279, 12.744],
|
|
[-16.114, 13.994],
|
|
[16.114, -4.613],
|
|
[18.279, -8.363],
|
|
[18.279, -12.744]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.139, 290.031], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.139, 290.031], "ix": 2 },
|
|
"a": { "a": 0, "k": [188.139, 290.031], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 7",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 7,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[32.496, -9.381],
|
|
[-32.497, 28.143],
|
|
[-32.496, 9.381],
|
|
[32.497, -28.143]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.713725507259, 0.86274510622, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [177.985, 295.886], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 8",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 8,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[64.993, 0],
|
|
[0, 37.524],
|
|
[-64.993, 0],
|
|
[0, -37.524]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.262745112181, 0.654901981354, 0.960784316063, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [145.488, 267.743], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 9",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 9,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 22,
|
|
"ty": 4,
|
|
"nm": "building4",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [145.489, 307.717, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [145.489, 307.717, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [154.558, 337.904], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [154.558, 337.904], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.146]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.103],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.825, 337.558], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 40, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.146]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.103],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.825, 337.558], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.825, 337.558], "ix": 2 },
|
|
"a": { "a": 0, "k": [153.825, 337.558], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 4,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [162.727, 333.189], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [162.727, 333.189], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.102],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 332.843], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 40, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.102],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 332.843], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 332.843], "ix": 2 },
|
|
"a": { "a": 0, "k": [161.994, 332.843], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 4,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-30.466, -19.934],
|
|
[-30.464, -15.244],
|
|
[30.466, 19.934],
|
|
[30.466, 15.244]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.215686276555, 0.352941185236, 0.392156869173, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [115.023, 337.032], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 1,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[28.435, -14.071],
|
|
[28.434, -18.762],
|
|
[-28.435, 14.072],
|
|
[-28.434, 18.762]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.215686276555, 0.352941185236, 0.392156869173, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [173.923, 338.205], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.039, -0.6],
|
|
[0, -1.2],
|
|
[1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[1.039, 0.6],
|
|
[0, 1.2],
|
|
[-1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[1.882, 1.086],
|
|
[0, 2.173],
|
|
[-1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [102.376, 318.589], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.554, 2.101],
|
|
[1.554, 2.102],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 318.243], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.554, 2.101],
|
|
[1.554, 2.102],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 318.243], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 318.243], "ix": 2 },
|
|
"a": { "a": 0, "k": [103.11, 318.243], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.039, -0.6],
|
|
[0, -1.2],
|
|
[1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[1.039, 0.6],
|
|
[0, 1.2],
|
|
[-1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[1.882, 1.086],
|
|
[0, 2.173],
|
|
[-1.882, -1.087]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.207, 313.874], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.553, 2.101],
|
|
[1.553, 2.102],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 313.528], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.553, 2.101],
|
|
[1.553, 2.102],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 313.528], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 313.528], "ix": 2 },
|
|
"a": { "a": 0, "k": [94.94, 313.528], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 313.528], "ix": 2 },
|
|
"a": { "a": 0, "k": [94.94, 313.528], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381],
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0],
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381]
|
|
],
|
|
"v": [
|
|
[-7.99, -9.304],
|
|
[7.99, -0.077],
|
|
[10.155, 3.673],
|
|
[10.155, 8.054],
|
|
[7.99, 9.304],
|
|
[-7.99, 0.077],
|
|
[-10.155, -3.673],
|
|
[-10.155, -8.054]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [98.769, 315.958], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 75, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [98.769, 315.958], "ix": 2 },
|
|
"a": { "a": 0, "k": [98.769, 315.958], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 5,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[32.496, 28.143],
|
|
[-32.496, -9.381],
|
|
[-32.496, -28.143],
|
|
[32.496, 9.381]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.713725507259, 0.86274510622, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [112.992, 324.134], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 6",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 6,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [172.821, 327.11], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [175.009, 325.849], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [177.198, 324.587], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [179.386, 323.326], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [181.574, 322.064], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 5,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [183.763, 320.803], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 6",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 6,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [185.951, 319.541], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 7",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 7,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.14, 318.28], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 8",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 8,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [190.328, 317.018], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 9",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 9,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [192.516, 315.757], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 10",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 10,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [194.705, 314.495], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 11",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 11,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [196.893, 313.233], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 12",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 12,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [199.081, 311.972], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 13",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 13,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.243, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [201.27, 310.71], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 14",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 14,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [203.458, 309.449], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 15",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 15,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [203.458, 309.449], "ix": 2 },
|
|
"a": { "a": 0, "k": [203.458, 309.449], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 15,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381],
|
|
[0, 0],
|
|
[-1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0],
|
|
[1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381]
|
|
],
|
|
"v": [
|
|
[16.114, -13.994],
|
|
[-16.114, 4.613],
|
|
[-18.279, 8.363],
|
|
[-18.279, 12.744],
|
|
[-16.114, 13.994],
|
|
[16.114, -4.613],
|
|
[18.279, -8.363],
|
|
[18.279, -12.744]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.139, 318.28], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.139, 318.28], "ix": 2 },
|
|
"a": { "a": 0, "k": [188.139, 318.28], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 7",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 7,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[32.496, -9.381],
|
|
[-32.497, 28.143],
|
|
[-32.496, 9.381],
|
|
[32.497, -28.143]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.713725507259, 0.86274510622, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [177.985, 324.134], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 8",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 8,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[32.496, 15.248],
|
|
[32.496, 19.931],
|
|
[-32.496, -17.593],
|
|
[-28.433, -19.931]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [112.992, 313.584], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 10, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 9",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 9,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[64.993, 0],
|
|
[0, 37.524],
|
|
[-64.993, 0],
|
|
[0, -37.524]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.262745112181, 0.654901981354, 0.960784316063, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [145.489, 295.992], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 10",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 10,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 23,
|
|
"ty": 4,
|
|
"nm": "building3",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [145.489, 335.86, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [145.489, 335.86, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.086],
|
|
[0, 2.173],
|
|
[1.882, -1.087]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [154.558, 366.046], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.086],
|
|
[0, 2.173],
|
|
[1.882, -1.087]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [154.558, 366.046], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.102],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.103],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.825, 365.7], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 40, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.102],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.103],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.825, 365.7], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.825, 365.7], "ix": 2 },
|
|
"a": { "a": 0, "k": [153.825, 365.7], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 4,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.086],
|
|
[0, 2.173],
|
|
[1.882, -1.087]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [162.727, 361.332], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.086],
|
|
[0, 2.173],
|
|
[1.882, -1.087]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [162.727, 361.332], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.102],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.103],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 360.986], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 40, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.102],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.103],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 360.986], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 360.986], "ix": 2 },
|
|
"a": { "a": 0, "k": [161.994, 360.986], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 4,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-30.466, -19.934],
|
|
[-30.464, -15.244],
|
|
[30.466, 19.934],
|
|
[30.466, 15.244]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.215686276555, 0.352941185236, 0.392156869173, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [115.023, 365.175], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 1,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[28.435, -14.071],
|
|
[28.434, -18.762],
|
|
[-28.435, 14.072],
|
|
[-28.434, 18.762]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.215686276555, 0.352941185236, 0.392156869173, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [173.923, 366.348], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.039, -0.6],
|
|
[0, -1.2],
|
|
[1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[1.039, 0.6],
|
|
[0, 1.2],
|
|
[-1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[1.882, 1.086],
|
|
[0, 2.173],
|
|
[-1.882, -1.087]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [102.376, 346.7], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.554, 2.101],
|
|
[1.554, 2.102],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 346.354], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.554, 2.101],
|
|
[1.554, 2.102],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 346.354], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 346.354], "ix": 2 },
|
|
"a": { "a": 0, "k": [103.11, 346.354], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.039, -0.6],
|
|
[0, -1.2],
|
|
[1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[1.039, 0.6],
|
|
[0, 1.2],
|
|
[-1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[1.882, 1.086],
|
|
[0, 2.173],
|
|
[-1.882, -1.087]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.207, 341.985], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.553, 2.101],
|
|
[1.553, 2.102],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 341.639], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.553, 2.101],
|
|
[1.553, 2.102],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 341.639], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 341.639], "ix": 2 },
|
|
"a": { "a": 0, "k": [94.94, 341.639], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 341.639], "ix": 2 },
|
|
"a": { "a": 0, "k": [94.94, 341.639], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381],
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0],
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381]
|
|
],
|
|
"v": [
|
|
[-7.99, -9.304],
|
|
[7.99, -0.077],
|
|
[10.155, 3.673],
|
|
[10.155, 8.054],
|
|
[7.99, 9.304],
|
|
[-7.99, 0.077],
|
|
[-10.155, -3.673],
|
|
[-10.155, -8.054]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [98.769, 344.069], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 75, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [98.769, 344.069], "ix": 2 },
|
|
"a": { "a": 0, "k": [98.769, 344.069], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 5,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[32.496, 28.143],
|
|
[-32.496, -9.381],
|
|
[-32.496, -28.143],
|
|
[32.496, 9.381]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.713725507259, 0.86274510622, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [112.992, 352.277], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 6",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 6,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [172.821, 355.231], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [175.009, 353.97], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [177.198, 352.708], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [179.386, 351.446], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [181.574, 350.185], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 5,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [183.763, 348.923], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 6",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 6,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [185.951, 347.662], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 7",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 7,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.14, 346.4], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 8",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 8,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [190.328, 345.139], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 9",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 9,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [192.516, 343.877], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 10",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 10,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [194.705, 342.616], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 11",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 11,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [196.893, 341.354], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 12",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 12,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [199.081, 340.093], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 13",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 13,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.243, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [201.27, 338.831], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 14",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 14,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [203.458, 337.57], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 15",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 15,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [203.458, 337.57], "ix": 2 },
|
|
"a": { "a": 0, "k": [203.458, 337.57], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 15,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381],
|
|
[0, 0],
|
|
[-1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0],
|
|
[1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381]
|
|
],
|
|
"v": [
|
|
[16.114, -13.994],
|
|
[-16.114, 4.613],
|
|
[-18.279, 8.363],
|
|
[-18.279, 12.744],
|
|
[-16.114, 13.994],
|
|
[16.114, -4.613],
|
|
[18.279, -8.363],
|
|
[18.279, -12.744]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.139, 346.4], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.139, 346.4], "ix": 2 },
|
|
"a": { "a": 0, "k": [188.139, 346.4], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 7",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 7,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[32.496, -9.381],
|
|
[-32.497, 28.143],
|
|
[-32.496, 9.381],
|
|
[32.497, -28.143]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.713725507259, 0.86274510622, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [177.985, 352.277], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 8",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 8,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[32.496, 19.935],
|
|
[32.496, 15.244],
|
|
[-28.433, -19.935],
|
|
[-32.496, -17.589]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [112.992, 341.723], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 10, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 9",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 9,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[64.993, 0],
|
|
[0, 37.524],
|
|
[-64.993, 0],
|
|
[0, -37.524]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.262745112181, 0.654901981354, 0.960784316063, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [145.489, 324.134], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 10",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 10,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 24,
|
|
"ty": 4,
|
|
"nm": "building2",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [145.489, 364.003, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [145.489, 364.003, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.087]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [154.558, 394.189], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.087]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [154.558, 394.189], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.146]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.103],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.825, 393.843], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 40, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.146]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.103],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.825, 393.843], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.825, 393.843], "ix": 2 },
|
|
"a": { "a": 0, "k": [153.825, 393.843], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 4,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [162.727, 389.475], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [162.727, 389.475], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.103],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 389.128], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 40, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.103],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 389.128], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 389.128], "ix": 2 },
|
|
"a": { "a": 0, "k": [161.994, 389.128], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 4,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-30.466, -19.934],
|
|
[-30.464, -15.244],
|
|
[30.466, 19.934],
|
|
[30.466, 15.244]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.215686276555, 0.352941185236, 0.392156869173, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [115.023, 393.318], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-30.466, -19.934],
|
|
[-30.464, -15.244],
|
|
[30.466, 19.934],
|
|
[30.466, 15.244]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [115.023, 393.318], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [115.023, 393.318], "ix": 2 },
|
|
"a": { "a": 0, "k": [115.023, 393.318], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[28.435, -14.071],
|
|
[28.434, -18.762],
|
|
[-28.435, 14.072],
|
|
[-28.434, 18.762]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.215686276555, 0.352941185236, 0.392156869173, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [173.923, 394.49], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.039, -0.6],
|
|
[0, -1.2],
|
|
[1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[1.039, 0.6],
|
|
[0, 1.2],
|
|
[-1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[1.882, 1.086],
|
|
[0, 2.173],
|
|
[-1.882, -1.087]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [102.376, 374.847], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.554, 2.101],
|
|
[1.554, 2.102],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 374.5], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.554, 2.101],
|
|
[1.554, 2.102],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 374.5], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 374.5], "ix": 2 },
|
|
"a": { "a": 0, "k": [103.11, 374.5], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.039, -0.6],
|
|
[0, -1.2],
|
|
[1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[1.039, 0.6],
|
|
[0, 1.2],
|
|
[-1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[1.882, 1.086],
|
|
[0, 2.173],
|
|
[-1.882, -1.087]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.207, 370.132], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.553, 2.101],
|
|
[1.553, 2.101],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 369.786], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.553, 2.101],
|
|
[1.553, 2.101],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 369.786], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 369.786], "ix": 2 },
|
|
"a": { "a": 0, "k": [94.94, 369.786], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 369.786], "ix": 2 },
|
|
"a": { "a": 0, "k": [94.94, 369.786], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381],
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0],
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381]
|
|
],
|
|
"v": [
|
|
[-7.99, -9.304],
|
|
[7.99, -0.077],
|
|
[10.155, 3.673],
|
|
[10.155, 8.054],
|
|
[7.99, 9.304],
|
|
[-7.99, 0.077],
|
|
[-10.155, -3.673],
|
|
[-10.155, -8.054]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [98.769, 372.216], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 75, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [98.769, 372.216], "ix": 2 },
|
|
"a": { "a": 0, "k": [98.769, 372.216], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 5,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[32.496, 28.143],
|
|
[-32.496, -9.381],
|
|
[-32.496, -28.143],
|
|
[32.496, 9.381]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.713725507259, 0.86274510622, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [112.992, 380.42], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 6",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 6,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [172.821, 383.4], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [175.009, 382.139], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [177.198, 380.877], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [179.386, 379.616], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [181.574, 378.354], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 5,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [183.763, 377.093], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 6",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 6,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [185.951, 375.831], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 7",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 7,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.14, 374.57], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 8",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 8,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [190.328, 373.308], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 9",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 9,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [192.516, 372.047], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 10",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 10,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [194.705, 370.785], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 11",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 11,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [196.893, 369.524], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 12",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 12,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [199.081, 368.262], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 13",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 13,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.243, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [201.27, 367.001], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 14",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 14,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [203.458, 365.739], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 15",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 15,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [203.458, 365.739], "ix": 2 },
|
|
"a": { "a": 0, "k": [203.458, 365.739], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 15,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381],
|
|
[0, 0],
|
|
[-1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0],
|
|
[1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381]
|
|
],
|
|
"v": [
|
|
[16.114, -13.994],
|
|
[-16.114, 4.613],
|
|
[-18.279, 8.363],
|
|
[-18.279, 12.744],
|
|
[-16.114, 13.994],
|
|
[16.114, -4.613],
|
|
[18.279, -8.363],
|
|
[18.279, -12.744]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.139, 374.57], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.139, 374.57], "ix": 2 },
|
|
"a": { "a": 0, "k": [188.139, 374.57], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 7",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 7,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[32.496, -9.381],
|
|
[-32.497, 28.143],
|
|
[-32.496, 9.381],
|
|
[32.497, -28.143]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.713725507259, 0.86274510622, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [177.985, 380.419], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 8",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 8,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[32.496, 19.935],
|
|
[32.496, 15.244],
|
|
[-28.433, -19.935],
|
|
[-32.496, -17.589]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [112.992, 369.866], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 10, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 9",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 9,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[64.993, 0],
|
|
[0, 37.524],
|
|
[-64.993, 0],
|
|
[0, -37.524]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.262745112181, 0.654901981354, 0.960784316063, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [145.489, 352.277], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 10",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 10,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 25,
|
|
"ty": 4,
|
|
"nm": "building1",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [145.488, 389.067, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [145.488, 389.067, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [154.558, 422.331], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [154.558, 422.331], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.146]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.103],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.825, 421.985], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 40, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.146]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.103],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.825, 421.985], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [153.825, 421.985], "ix": 2 },
|
|
"a": { "a": 0, "k": [153.825, 421.985], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 4,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [162.727, 417.616], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.039, -0.6],
|
|
[0, -1.2],
|
|
[-1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[-1.039, 0.6],
|
|
[0, 1.2],
|
|
[1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[-1.882, 1.087],
|
|
[0, 2.173],
|
|
[1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [162.727, 417.616], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.102],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 417.27], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 40, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.516, -0.298],
|
|
[0, -1.2],
|
|
[-0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.189, 0.109],
|
|
[0, 1.2],
|
|
[0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.34, -0.192],
|
|
[-1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.172, -0.04],
|
|
[1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[2.103, -1.934],
|
|
[1.11, -2.507],
|
|
[1.109, -2.507],
|
|
[1.102, -2.511],
|
|
[1.102, -2.51],
|
|
[-0.221, -2.375],
|
|
[-2.103, 0.884],
|
|
[-1.553, 2.101],
|
|
[-1.553, 2.101],
|
|
[-1.552, 2.102],
|
|
[-1.552, 2.102],
|
|
[-0.628, 2.632],
|
|
[-0.461, 2.353],
|
|
[0.078, 2.143],
|
|
[1.96, -1.116],
|
|
[1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 417.27], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [161.994, 417.27], "ix": 2 },
|
|
"a": { "a": 0, "k": [161.994, 417.27], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 4,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.039, -0.6],
|
|
[0, -1.2],
|
|
[1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[1.039, 0.6],
|
|
[0, 1.2],
|
|
[-1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[1.882, 1.087],
|
|
[0, 2.173],
|
|
[-1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [102.376, 403.01], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.146]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.554, 2.101],
|
|
[1.554, 2.101],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 402.664], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.146]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.554, 2.101],
|
|
[1.554, 2.101],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 402.664], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 402.664], "ix": 2 },
|
|
"a": { "a": 0, "k": [103.11, 402.664], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.039, -0.6],
|
|
[0, -1.2],
|
|
[1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[1.039, 0.6],
|
|
[0, 1.2],
|
|
[-1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[1.882, 1.087],
|
|
[0, 2.173],
|
|
[-1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.207, 398.296], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.553, 2.101],
|
|
[1.553, 2.101],
|
|
[1.552, 2.102],
|
|
[1.552, 2.102],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 397.949], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.553, 2.101],
|
|
[1.553, 2.101],
|
|
[1.552, 2.102],
|
|
[1.552, 2.102],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 397.949], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 397.949], "ix": 2 },
|
|
"a": { "a": 0, "k": [94.94, 397.949], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 397.949], "ix": 2 },
|
|
"a": { "a": 0, "k": [94.94, 397.949], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381],
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0],
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381]
|
|
],
|
|
"v": [
|
|
[-7.99, -9.304],
|
|
[7.99, -0.077],
|
|
[10.155, 3.673],
|
|
[10.155, 8.054],
|
|
[7.99, 9.304],
|
|
[-7.99, 0.077],
|
|
[-10.155, -3.673],
|
|
[-10.155, -8.054]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [98.769, 400.379], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 75, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [98.769, 400.379], "ix": 2 },
|
|
"a": { "a": 0, "k": [98.769, 400.379], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.039, -0.6],
|
|
[0, -1.2],
|
|
[1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[1.039, 0.6],
|
|
[0, 1.2],
|
|
[-1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[1.882, 1.087],
|
|
[0, 2.173],
|
|
[-1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [102.376, 403.01], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.146]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.554, 2.101],
|
|
[1.554, 2.101],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 402.664], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.146]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.554, 2.101],
|
|
[1.554, 2.101],
|
|
[1.552, 2.102],
|
|
[1.552, 2.103],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 402.664], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [103.11, 402.664], "ix": 2 },
|
|
"a": { "a": 0, "k": [103.11, 402.664], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.039, -0.6],
|
|
[0, -1.2],
|
|
[1.039, 0.6],
|
|
[0, 1.2]
|
|
],
|
|
"o": [
|
|
[1.039, 0.6],
|
|
[0, 1.2],
|
|
[-1.039, -0.6],
|
|
[0, -1.2]
|
|
],
|
|
"v": [
|
|
[0, -2.173],
|
|
[1.882, 1.087],
|
|
[0, 2.173],
|
|
[-1.882, -1.086]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.207, 398.296], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.553, 2.101],
|
|
[1.553, 2.101],
|
|
[1.552, 2.102],
|
|
[1.552, 2.102],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 397.949], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 20, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.516, -0.298],
|
|
[0, -1.2],
|
|
[0.339, -0.197],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.189, 0.109],
|
|
[0, 1.2],
|
|
[-0.035, 0.145]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0.34, -0.192],
|
|
[1.039, 0.6],
|
|
[0, 0.599],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-0.172, -0.04],
|
|
[-1.039, -0.6],
|
|
[0, -0.178],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-2.103, -1.934],
|
|
[-1.11, -2.507],
|
|
[-1.109, -2.507],
|
|
[-1.102, -2.511],
|
|
[-1.101, -2.51],
|
|
[0.221, -2.375],
|
|
[2.103, 0.884],
|
|
[1.553, 2.101],
|
|
[1.553, 2.101],
|
|
[1.552, 2.102],
|
|
[1.552, 2.102],
|
|
[0.628, 2.632],
|
|
[0.461, 2.353],
|
|
[-0.078, 2.143],
|
|
[-1.96, -1.116],
|
|
[-1.901, -1.597]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 397.949], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 397.949], "ix": 2 },
|
|
"a": { "a": 0, "k": [94.94, 397.949], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 3,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [94.94, 397.949], "ix": 2 },
|
|
"a": { "a": 0, "k": [94.94, 397.949], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381],
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0],
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381]
|
|
],
|
|
"v": [
|
|
[-7.99, -9.304],
|
|
[7.99, -0.077],
|
|
[10.155, 3.673],
|
|
[10.155, 8.054],
|
|
[7.99, 9.304],
|
|
[-7.99, 0.077],
|
|
[-10.155, -3.673],
|
|
[-10.155, -8.054]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [98.769, 400.379], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 75, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [98.769, 400.379], "ix": 2 },
|
|
"a": { "a": 0, "k": [98.769, 400.379], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[-1.43, -0.83],
|
|
[0, 0],
|
|
[0, 0],
|
|
[-1.57, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 1.66],
|
|
[0, 0],
|
|
[0, 0],
|
|
[1.2, 0.69],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-32.5, -27.41],
|
|
[-32.5, -11.65],
|
|
[-29.9, -7.15],
|
|
[-4.06, 7.77],
|
|
[28.17, 26.38],
|
|
[32.5, 27.41],
|
|
[32.5, 10.11]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.713725507259, 0.86274510622, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [112.993, 407.828], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 5,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [172.821, 411.537], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [175.009, 410.276], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [177.198, 409.014], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 3",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 3,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [179.386, 407.753], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 4",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 4,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [181.574, 406.491], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 5",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 5,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [183.763, 405.23], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 6",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 6,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [185.951, 403.968], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 7",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 7,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.14, 402.707], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 8",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 8,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [190.328, 401.445], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 9",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 9,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [192.516, 400.184], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 10",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 10,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [194.705, 398.922], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 11",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 11,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.615686297417, 0.686274528503, 0.980392158031, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [196.893, 397.66], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 12",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 12,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.676, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [199.081, 396.399], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 13",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 13,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.244, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.243, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [201.27, 395.137], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 14",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 14,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138],
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0.276],
|
|
[0, 0],
|
|
[-0.239, 0.138],
|
|
[0, 0],
|
|
[0, -0.276],
|
|
[0, 0],
|
|
[0.239, -0.138]
|
|
],
|
|
"v": [
|
|
[0.677, -1.453],
|
|
[0.677, 0.672],
|
|
[0.243, 1.422],
|
|
[-0.244, 1.703],
|
|
[-0.677, 1.453],
|
|
[-0.677, -0.672],
|
|
[-0.244, -1.422],
|
|
[0.244, -1.703]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [1, 0.921568632126, 0.917647063732, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [203.458, 393.876], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 15",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 15,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [203.458, 393.876], "ix": 2 },
|
|
"a": { "a": 0, "k": [203.458, 393.876], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 15,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.196, -0.69],
|
|
[0, 0],
|
|
[0, -1.381],
|
|
[0, 0],
|
|
[-1.196, 0.69],
|
|
[0, 0],
|
|
[0.087, 1.555],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-1.196, 0.69],
|
|
[0, 0],
|
|
[0, 1.381],
|
|
[0, 0],
|
|
[2.196, -0.934],
|
|
[0, 0],
|
|
[0, -1.381]
|
|
],
|
|
"v": [
|
|
[16.102, -13.994],
|
|
[-16.125, 4.613],
|
|
[-18.29, 8.363],
|
|
[-18.291, 12.744],
|
|
[-16.126, 13.994],
|
|
[16.103, -4.613],
|
|
[18.268, -8.363],
|
|
[18.268, -12.744]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": {
|
|
"a": 0,
|
|
"k": [0.384313732386, 0.717647075653, 0.996078431606, 1],
|
|
"ix": 4
|
|
},
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.151, 402.707], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 2",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 2,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [188.151, 402.707], "ix": 2 },
|
|
"a": { "a": 0, "k": [188.151, 402.707], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 6",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 6,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[-1.2, 0.69],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 1.66],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[1.56, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[1.44, -0.83],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-32.495, 10.11],
|
|
[-32.495, 27.41],
|
|
[-28.166, 26.379],
|
|
[-28.165, 26.38],
|
|
[-0.005, 10.12],
|
|
[29.895, -7.15],
|
|
[32.495, -11.65],
|
|
[32.495, -27.41]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.713725507259, 0.86274510622, 1, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [177.988, 407.828], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 7",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 7,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[32.5, 19.932],
|
|
[32.496, 15.247],
|
|
[-28.434, -19.932],
|
|
[-32.5, -17.588]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0, 0, 0, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [112.993, 398.006], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 10, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 8",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 8,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[64.993, 0],
|
|
[0, 37.524],
|
|
[-64.993, 0],
|
|
[0, -37.524]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.262745112181, 0.654901981354, 0.960784316063, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [145.489, 380.419], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 9",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 9,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 26,
|
|
"ty": 4,
|
|
"nm": "laptop web4",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [232.863, 359.682, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[1.196, -0.691],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-1.196, 0.69],
|
|
[0, 0],
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[56.854, -7.397],
|
|
[38.709, 3.079],
|
|
[34.378, 3.079],
|
|
[2.15, -15.528],
|
|
[-2.18, -15.528],
|
|
[-56.854, 16.046]
|
|
],
|
|
"c": false
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "st",
|
|
"c": { "a": 0, "k": [0, 0.874509811401, 0.749019622803, 1], "ix": 3 },
|
|
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
"w": { "a": 0, "k": 2, "ix": 5 },
|
|
"lc": 2,
|
|
"lj": 2,
|
|
"bm": 0,
|
|
"d": [
|
|
{ "n": "d", "nm": "dash", "v": { "a": 0, "k": 6, "ix": 1 } },
|
|
{ "n": "g", "nm": "gap", "v": { "a": 0, "k": 10, "ix": 2 } },
|
|
{ "n": "d", "nm": "dash2", "v": { "a": 0, "k": 10, "ix": 3 } },
|
|
{
|
|
"n": "o",
|
|
"nm": "offset",
|
|
"v": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.833], "y": [0.833] },
|
|
"o": { "x": [0.167], "y": [0.167] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{ "t": 143, "s": [156] }
|
|
],
|
|
"ix": 7
|
|
}
|
|
}
|
|
],
|
|
"nm": "Stroke 1",
|
|
"mn": "ADBE Vector Graphic - Stroke",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 27,
|
|
"ty": 4,
|
|
"nm": "laptop web3",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [243.14, 366.722, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[1.196, -0.69],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-1.196, 0.69],
|
|
[0, 0],
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[57.036, -9.94],
|
|
[30.432, 5.42],
|
|
[26.102, 5.42],
|
|
[-6.127, -13.187],
|
|
[-10.457, -13.187],
|
|
[-57.036, 13.705]
|
|
],
|
|
"c": false
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "st",
|
|
"c": { "a": 0, "k": [0, 0.874509811401, 0.749019622803, 1], "ix": 3 },
|
|
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
"w": { "a": 0, "k": 2, "ix": 5 },
|
|
"lc": 2,
|
|
"lj": 2,
|
|
"bm": 0,
|
|
"d": [
|
|
{ "n": "d", "nm": "dash", "v": { "a": 0, "k": 6, "ix": 1 } },
|
|
{ "n": "g", "nm": "gap", "v": { "a": 0, "k": 10, "ix": 2 } },
|
|
{
|
|
"n": "o",
|
|
"nm": "offset",
|
|
"v": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.833], "y": [0.833] },
|
|
"o": { "x": [0.167], "y": [0.167] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{ "t": 143, "s": [-143] }
|
|
],
|
|
"ix": 7
|
|
}
|
|
}
|
|
],
|
|
"nm": "Stroke 1",
|
|
"mn": "ADBE Vector Graphic - Stroke",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 28,
|
|
"ty": 4,
|
|
"nm": "laptop web2",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [245.353, 374.638, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[-1.196, -0.69],
|
|
[0, 0],
|
|
[-1.196, 0.69],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[1.196, -0.69],
|
|
[0, 0],
|
|
[1.196, 0.69],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-56.861, 11.722],
|
|
[-18.42, -10.472],
|
|
[-14.09, -10.472],
|
|
[18.138, 8.135],
|
|
[22.468, 8.135],
|
|
[56.861, -11.722]
|
|
],
|
|
"c": false
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "st",
|
|
"c": { "a": 0, "k": [0, 0.874509811401, 0.749019622803, 1], "ix": 3 },
|
|
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
"w": { "a": 0, "k": 2, "ix": 5 },
|
|
"lc": 2,
|
|
"lj": 2,
|
|
"bm": 0,
|
|
"d": [
|
|
{ "n": "d", "nm": "dash", "v": { "a": 0, "k": 6, "ix": 1 } },
|
|
{ "n": "g", "nm": "gap", "v": { "a": 0, "k": 10, "ix": 2 } },
|
|
{
|
|
"n": "o",
|
|
"nm": "offset",
|
|
"v": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.833], "y": [0.833] },
|
|
"o": { "x": [0.167], "y": [0.167] },
|
|
"t": 0,
|
|
"s": [0]
|
|
},
|
|
{ "t": 143, "s": [-111] }
|
|
],
|
|
"ix": 7
|
|
}
|
|
}
|
|
],
|
|
"nm": "Stroke 1",
|
|
"mn": "ADBE Vector Graphic - Stroke",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 29,
|
|
"ty": 4,
|
|
"nm": "laptop web1",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 100, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [253.221, 379.138, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[0, 0],
|
|
[0, 0],
|
|
[-1.195, -0.691],
|
|
[0, 0],
|
|
[-1.196, 0.69],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[1.196, -0.69],
|
|
[0, 0],
|
|
[1.195, 0.692],
|
|
[0, 0],
|
|
[0, 0]
|
|
],
|
|
"v": [
|
|
[-56.868, 10.866],
|
|
[-26.538, -6.64],
|
|
[-22.209, -6.638],
|
|
[10.022, 12.013],
|
|
[14.351, 12.015],
|
|
[56.868, -12.532]
|
|
],
|
|
"c": false
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "st",
|
|
"c": { "a": 0, "k": [0, 0.874509811401, 0.749019622803, 1], "ix": 3 },
|
|
"o": { "a": 0, "k": 100, "ix": 4 },
|
|
"w": { "a": 0, "k": 2, "ix": 5 },
|
|
"lc": 2,
|
|
"lj": 2,
|
|
"bm": 0,
|
|
"d": [
|
|
{ "n": "d", "nm": "dash", "v": { "a": 0, "k": 6, "ix": 1 } },
|
|
{ "n": "g", "nm": "gap", "v": { "a": 0, "k": 10, "ix": 2 } },
|
|
{
|
|
"n": "o",
|
|
"nm": "offset",
|
|
"v": {
|
|
"a": 1,
|
|
"k": [
|
|
{
|
|
"i": { "x": [0.833], "y": [0.833] },
|
|
"o": { "x": [0.167], "y": [0.167] },
|
|
"t": 0,
|
|
"s": [6]
|
|
},
|
|
{ "t": 143, "s": [150] }
|
|
],
|
|
"ix": 7
|
|
}
|
|
}
|
|
],
|
|
"nm": "Stroke 1",
|
|
"mn": "ADBE Vector Graphic - Stroke",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Group 1",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
},
|
|
{
|
|
"ddd": 0,
|
|
"ind": 30,
|
|
"ty": 4,
|
|
"nm": "building Shadow",
|
|
"sr": 1,
|
|
"ks": {
|
|
"o": { "a": 0, "k": 50, "ix": 11 },
|
|
"r": { "a": 0, "k": 0, "ix": 10 },
|
|
"p": { "a": 0, "k": [145.488, 399.854, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
|
|
},
|
|
"ao": 0,
|
|
"shapes": [
|
|
{
|
|
"ty": "gr",
|
|
"it": [
|
|
{
|
|
"ind": 0,
|
|
"ty": "sh",
|
|
"ix": 1,
|
|
"ks": {
|
|
"a": 0,
|
|
"k": {
|
|
"i": [
|
|
[1.653, -0.954],
|
|
[0, 0],
|
|
[1.653, 0.954],
|
|
[0, 0],
|
|
[-1.653, 0.954],
|
|
[0, 0],
|
|
[-1.653, -0.954],
|
|
[0, 0]
|
|
],
|
|
"o": [
|
|
[0, 0],
|
|
[-1.653, 0.954],
|
|
[0, 0],
|
|
[-1.653, -0.954],
|
|
[0, 0],
|
|
[1.653, -0.954],
|
|
[0, 0],
|
|
[1.653, 0.954]
|
|
],
|
|
"v": [
|
|
[71.878, 1.728],
|
|
[2.948, 41.498],
|
|
[-3.037, 41.498],
|
|
[-71.878, 1.728],
|
|
[-71.878, -1.728],
|
|
[-2.949, -41.498],
|
|
[3.037, -41.498],
|
|
[71.878, -1.728]
|
|
],
|
|
"c": true
|
|
},
|
|
"ix": 2
|
|
},
|
|
"nm": "Path 1",
|
|
"mn": "ADBE Vector Shape - Group",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "fl",
|
|
"c": { "a": 0, "k": [0.458823531866, 0.458823531866, 0.458823531866, 1], "ix": 4 },
|
|
"o": { "a": 0, "k": 100, "ix": 5 },
|
|
"r": 1,
|
|
"bm": 0,
|
|
"nm": "Fill 1",
|
|
"mn": "ADBE Vector Graphic - Fill",
|
|
"hd": false
|
|
},
|
|
{
|
|
"ty": "tr",
|
|
"p": { "a": 0, "k": [0, 0], "ix": 2 },
|
|
"a": { "a": 0, "k": [0, 0], "ix": 1 },
|
|
"s": { "a": 0, "k": [100, 100], "ix": 3 },
|
|
"r": { "a": 0, "k": 0, "ix": 6 },
|
|
"o": { "a": 0, "k": 100, "ix": 7 },
|
|
"sk": { "a": 0, "k": 0, "ix": 4 },
|
|
"sa": { "a": 0, "k": 0, "ix": 5 },
|
|
"nm": "Transform"
|
|
}
|
|
],
|
|
"nm": "Shadow",
|
|
"np": 2,
|
|
"cix": 2,
|
|
"bm": 0,
|
|
"ix": 1,
|
|
"mn": "ADBE Vector Group",
|
|
"hd": false
|
|
}
|
|
],
|
|
"ip": 0,
|
|
"op": 144,
|
|
"st": 0,
|
|
"bm": 0
|
|
}
|
|
],
|
|
"markers": []
|
|
}
|