├── ios ├── Runner │ ├── Runner-Bridging-Header.h │ ├── Assets.xcassets │ │ ├── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ ├── README.md │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── Contents.json │ ├── AppDelegate.swift │ ├── SplashViewController.swift │ ├── Info.plist │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── splash_screen.json ├── Flutter │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── AppFrameworkInfo.plist ├── Runner.xcodeproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── IDEWorkspaceChecks.plist │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ └── project.pbxproj ├── Podfile ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── WorkspaceSettings.xcsettings │ │ └── IDEWorkspaceChecks.plist ├── Podfile.lock └── .gitignore ├── demo ├── ios.gif └── android.gif ├── android ├── gradle.properties ├── app │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── values │ │ │ │ │ └── styles.xml │ │ │ │ └── layout │ │ │ │ │ └── splash_view.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── abedelazizshe │ │ │ │ │ └── flutter_lottie_splash_app │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── SplashView.kt │ │ │ └── AndroidManifest.xml │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ └── profile │ │ │ └── AndroidManifest.xml │ └── build.gradle ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── .gitignore ├── settings.gradle └── build.gradle ├── .metadata ├── pubspec.yaml ├── .gitignore ├── README.md ├── test └── widget_test.dart ├── lib └── main.dart └── pubspec.lock /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /demo/ios.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/demo/ios.gif -------------------------------------------------------------------------------- /demo/android.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/demo/android.gif -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | android.enableR8=true 5 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbedElazizShe/flutter_lottie_splash_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'Runner' do 5 | # Comment the next line if you don't want to use dynamic frameworks 6 | use_frameworks! 7 | 8 | pod 'lottie-ios' 9 | # Pods for Runner 10 | 11 | end 12 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - lottie-ios (3.1.9) 3 | 4 | DEPENDENCIES: 5 | - lottie-ios 6 | 7 | SPEC REPOS: 8 | trunk: 9 | - lottie-ios 10 | 11 | SPEC CHECKSUMS: 12 | lottie-ios: 3a3758ef5a008e762faec9c9d50a39842f26d124 13 | 14 | PODFILE CHECKSUM: 292797415e27a3ebea8d709651169cec1b1af250 15 | 16 | COCOAPODS: 1.10.0 17 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 1aafb3a8b9b0c36241c5f5b34ee914770f015818 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/abedelazizshe/flutter_lottie_splash_app/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.abedelazizshe.flutter_lottie_splash_app 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | import io.flutter.embedding.android.SplashScreen 5 | 6 | class MainActivity: FlutterActivity() { 7 | 8 | override fun provideSplashScreen(): SplashScreen? = SplashView() 9 | } 10 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") 4 | def properties = new Properties() 5 | 6 | assert localPropertiesFile.exists() 7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } 8 | 9 | def flutterSdkPath = properties.getProperty("flutter.sdk") 10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" 12 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: flutter_lottie_splash_app 2 | description: A Flutter application to demonstrate how to add an animated splash screen natively. 3 | 4 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev 5 | 6 | version: 1.0.0+1 7 | 8 | environment: 9 | sdk: ">=2.7.0 <3.0.0" 10 | 11 | dependencies: 12 | flutter: 13 | sdk: flutter 14 | 15 | cupertino_icons: ^1.0.0 16 | 17 | dev_dependencies: 18 | flutter_test: 19 | sdk: flutter 20 | 21 | flutter: 22 | uses-material-design: true 23 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/abedelazizshe/flutter_lottie_splash_app/SplashView.kt: -------------------------------------------------------------------------------- 1 | package com.abedelazizshe.flutter_lottie_splash_app 2 | 3 | import android.content.Context 4 | import android.os.Bundle 5 | import android.view.LayoutInflater 6 | import android.view.View 7 | import io.flutter.embedding.android.SplashScreen 8 | 9 | class SplashView : SplashScreen { 10 | override fun createSplashView(context: Context, savedInstanceState: Bundle?): View? = 11 | LayoutInflater.from(context).inflate(R.layout.splash_view, null, false) 12 | 13 | override fun transitionToFlutter(onTransitionComplete: Runnable) { 14 | onTransitionComplete.run() 15 | } 16 | } -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | *.mode1v3 2 | *.mode2v3 3 | *.moved-aside 4 | *.pbxuser 5 | *.perspectivev3 6 | **/*sync/ 7 | .sconsign.dblite 8 | .tags* 9 | **/.vagrant/ 10 | **/DerivedData/ 11 | Icon? 12 | **/Pods/ 13 | **/.symlinks/ 14 | profile 15 | xcuserdata 16 | **/.generated/ 17 | Flutter/App.framework 18 | Flutter/Flutter.framework 19 | Flutter/Flutter.podspec 20 | Flutter/Generated.xcconfig 21 | Flutter/app.flx 22 | Flutter/app.zip 23 | Flutter/flutter_assets/ 24 | Flutter/flutter_export_environment.sh 25 | ServiceDefinitions.json 26 | Runner/GeneratedPluginRegistrant.* 27 | 28 | # Exceptions to above rules. 29 | !default.mode1v3 30 | !default.mode2v3 31 | !default.pbxuser 32 | !default.perspectivev3 33 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.3.50' 3 | repositories { 4 | google() 5 | jcenter() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:3.5.0' 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | } 12 | } 13 | 14 | allprojects { 15 | repositories { 16 | google() 17 | jcenter() 18 | } 19 | } 20 | 21 | rootProject.buildDir = '../build' 22 | subprojects { 23 | project.buildDir = "${rootProject.buildDir}/${project.name}" 24 | } 25 | subprojects { 26 | project.evaluationDependsOn(':app') 27 | } 28 | 29 | task clean(type: Delete) { 30 | delete rootProject.buildDir 31 | } 32 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | 7 | lazy var flutterEngine = FlutterEngine(name: "MyApp") 8 | 9 | override func application( 10 | _ application: UIApplication, 11 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 12 | ) -> Bool { 13 | // Runs the default Dart entrypoint with a default Flutter route. 14 | flutterEngine.run() 15 | // Used to connect plugins (only if you have plugins with iOS platform code). 16 | GeneratedPluginRegistrant.register(with: self.flutterEngine) 17 | 18 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ 17 | 18 | # The .vscode folder contains launch configuration and tasks you configure in 19 | # VS Code which you may wish to be included in version control, so this line 20 | # is commented out by default. 21 | #.vscode/ 22 | 23 | # Flutter/Dart/Pub related 24 | **/doc/api/ 25 | **/ios/Flutter/.last_build_id 26 | .dart_tool/ 27 | .flutter-plugins 28 | .flutter-plugins-dependencies 29 | .packages 30 | .pub-cache/ 31 | .pub/ 32 | /build/ 33 | 34 | # Web related 35 | lib/generated_plugin_registrant.dart 36 | 37 | # Symbolication related 38 | app.*.symbols 39 | 40 | # Obfuscation related 41 | app.*.map.json 42 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # flutter_lottie_splash_app 2 | 3 | A Flutter application to demonstrate how to add an animated splash screen natively. 4 | 5 | ## Demo 6 | 7 | Android | iOS 8 | :-------------------------:|:-------------------------: 9 | 10 | ![android](/demo/android.gif) | ![ios](/demo/ios.gif) 11 | 12 | 13 | ## Getting Started 14 | 15 | This project is a starting point for a Flutter application. 16 | 17 | A few resources to get you started if this is your first Flutter project: 18 | 19 | - [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) 20 | - [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) 21 | 22 | For help getting started with Flutter, view our 23 | [online documentation](https://flutter.dev/docs), which offers tutorials, 24 | samples, guidance on mobile development, and a full API reference. 25 | -------------------------------------------------------------------------------- /android/app/src/main/res/layout/splash_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 17 | 18 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 8.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter widget test. 2 | // 3 | // To perform an interaction with a widget in your test, use the WidgetTester 4 | // utility that Flutter provides. For example, you can send tap and scroll 5 | // gestures. You can also use WidgetTester to find child widgets in the widget 6 | // tree, read text, and verify that the values of widget properties are correct. 7 | 8 | import 'package:flutter/material.dart'; 9 | import 'package:flutter_test/flutter_test.dart'; 10 | 11 | import 'package:flutter_lottie_splash_app/main.dart'; 12 | 13 | void main() { 14 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 15 | // Build our app and trigger a frame. 16 | await tester.pumpWidget(MyApp()); 17 | 18 | // Verify that our counter starts at 0. 19 | expect(find.text('0'), findsOneWidget); 20 | expect(find.text('1'), findsNothing); 21 | 22 | // Tap the '+' icon and trigger a frame. 23 | await tester.tap(find.byIcon(Icons.add)); 24 | await tester.pump(); 25 | 26 | // Verify that our counter has incremented. 27 | expect(find.text('0'), findsNothing); 28 | expect(find.text('1'), findsOneWidget); 29 | }); 30 | } 31 | -------------------------------------------------------------------------------- /ios/Runner/SplashViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SplashViewController.swift 3 | // Runner 4 | // 5 | // Created by Abed Elaziz on 29/11/2020. 6 | // 7 | 8 | import UIKit 9 | import Lottie 10 | 11 | public class SplashViewController: UIViewController { 12 | 13 | private var animationView: AnimationView? 14 | 15 | public override func viewDidAppear(_ animated: Bool) { 16 | animationView = .init(name: "splash_screen") 17 | animationView!.frame = view.bounds 18 | animationView!.contentMode = .scaleAspectFit 19 | animationView!.loopMode = .playOnce 20 | animationView!.animationSpeed = 1.00 21 | view.addSubview(animationView!) 22 | animationView!.play{ (finished) in 23 | self.startFlutterApp() 24 | } 25 | } 26 | 27 | func startFlutterApp() { 28 | let appDelegate = UIApplication.shared.delegate as! AppDelegate 29 | let flutterEngine = appDelegate.flutterEngine 30 | let flutterViewController = 31 | FlutterViewController(engine: flutterEngine, nibName: nil, bundle: nil) 32 | 33 | flutterViewController.modalPresentationStyle = .custom 34 | flutterViewController.modalTransitionStyle = .crossDissolve 35 | 36 | present(flutterViewController, animated: true, completion: nil) 37 | 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | flutter_lottie_splash_app 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | $(FLUTTER_BUILD_NAME) 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UISupportedInterfaceOrientations 30 | 31 | UIInterfaceOrientationPortrait 32 | UIInterfaceOrientationLandscapeLeft 33 | UIInterfaceOrientationLandscapeRight 34 | 35 | UISupportedInterfaceOrientations~ipad 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationPortraitUpsideDown 39 | UIInterfaceOrientationLandscapeLeft 40 | UIInterfaceOrientationLandscapeRight 41 | 42 | UIViewControllerBasedStatusBarAppearance 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | void main() { 4 | runApp(MyApp()); 5 | } 6 | 7 | class MyApp extends StatelessWidget { 8 | @override 9 | Widget build(BuildContext context) { 10 | return MaterialApp( 11 | title: 'Flutter Splash Demo', 12 | theme: ThemeData( 13 | primarySwatch: Colors.orange, 14 | visualDensity: VisualDensity.adaptivePlatformDensity, 15 | ), 16 | home: MyHomePage(title: 'Flutter Demo Home Page'), 17 | ); 18 | } 19 | } 20 | 21 | class MyHomePage extends StatefulWidget { 22 | MyHomePage({Key key, this.title}) : super(key: key); 23 | 24 | final String title; 25 | 26 | @override 27 | _MyHomePageState createState() => _MyHomePageState(); 28 | } 29 | 30 | class _MyHomePageState extends State { 31 | int _counter = 0; 32 | 33 | void _incrementCounter() { 34 | setState(() { 35 | _counter++; 36 | }); 37 | } 38 | 39 | @override 40 | Widget build(BuildContext context) { 41 | return Scaffold( 42 | appBar: AppBar( 43 | title: Text(widget.title), 44 | ), 45 | body: Center( 46 | child: Column( 47 | mainAxisAlignment: MainAxisAlignment.center, 48 | children: [ 49 | Text( 50 | 'You have pushed the button this many times:', 51 | ), 52 | Text( 53 | '$_counter', 54 | style: Theme.of(context).textTheme.headline4, 55 | ), 56 | ], 57 | ), 58 | ), 59 | floatingActionButton: FloatingActionButton( 60 | onPressed: _incrementCounter, 61 | tooltip: 'Increment', 62 | child: Icon(Icons.add), 63 | ), // This trailing comma makes auto-formatting nicer for build methods. 64 | ); 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply plugin: 'kotlin-android' 26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 27 | 28 | android { 29 | compileSdkVersion 29 30 | 31 | sourceSets { 32 | main.java.srcDirs += 'src/main/kotlin' 33 | } 34 | 35 | lintOptions { 36 | disable 'InvalidPackage' 37 | } 38 | 39 | defaultConfig { 40 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 41 | applicationId "com.abedelazizshe.flutter_lottie_splash_app" 42 | minSdkVersion 16 43 | targetSdkVersion 29 44 | versionCode flutterVersionCode.toInteger() 45 | versionName flutterVersionName 46 | } 47 | 48 | buildTypes { 49 | release { 50 | // TODO: Add your own signing config for the release build. 51 | // Signing with the debug keys for now, so `flutter run --release` works. 52 | signingConfig signingConfigs.debug 53 | } 54 | } 55 | } 56 | 57 | flutter { 58 | source '../..' 59 | } 60 | 61 | dependencies { 62 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 63 | // Lottie 64 | implementation "com.airbnb.android:lottie:3.5.0" 65 | implementation "com.android.support.constraint:constraint-layout:2.0.4" 66 | } 67 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 8 | 12 | 19 | 23 | 27 | 28 | 29 | 30 | 31 | 32 | 34 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-60x60@2x.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "60x60", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-60x60@3x.png", 55 | "scale" : "3x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-App-20x20@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "20x20", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-App-20x20@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-29x29@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-29x29@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-40x40@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "40x40", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-40x40@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-76x76@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "76x76", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-76x76@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "83.5x83.5", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-App-83.5x83.5@2x.png", 109 | "scale" : "2x" 110 | }, 111 | { 112 | "size" : "1024x1024", 113 | "idiom" : "ios-marketing", 114 | "filename" : "Icon-App-1024x1024@1x.png", 115 | "scale" : "1x" 116 | } 117 | ], 118 | "info" : { 119 | "version" : 1, 120 | "author" : "xcode" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 41 | 42 | 52 | 54 | 60 | 61 | 62 | 63 | 69 | 71 | 77 | 78 | 79 | 80 | 82 | 83 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | async: 5 | dependency: transitive 6 | description: 7 | name: async 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "2.5.0-nullsafety.1" 11 | boolean_selector: 12 | dependency: transitive 13 | description: 14 | name: boolean_selector 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "2.1.0-nullsafety.1" 18 | characters: 19 | dependency: transitive 20 | description: 21 | name: characters 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "1.1.0-nullsafety.3" 25 | charcode: 26 | dependency: transitive 27 | description: 28 | name: charcode 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.2.0-nullsafety.1" 32 | clock: 33 | dependency: transitive 34 | description: 35 | name: clock 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.1.0-nullsafety.1" 39 | collection: 40 | dependency: transitive 41 | description: 42 | name: collection 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.15.0-nullsafety.3" 46 | cupertino_icons: 47 | dependency: "direct main" 48 | description: 49 | name: cupertino_icons 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "1.0.0" 53 | fake_async: 54 | dependency: transitive 55 | description: 56 | name: fake_async 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "1.2.0-nullsafety.1" 60 | flutter: 61 | dependency: "direct main" 62 | description: flutter 63 | source: sdk 64 | version: "0.0.0" 65 | flutter_test: 66 | dependency: "direct dev" 67 | description: flutter 68 | source: sdk 69 | version: "0.0.0" 70 | matcher: 71 | dependency: transitive 72 | description: 73 | name: matcher 74 | url: "https://pub.dartlang.org" 75 | source: hosted 76 | version: "0.12.10-nullsafety.1" 77 | meta: 78 | dependency: transitive 79 | description: 80 | name: meta 81 | url: "https://pub.dartlang.org" 82 | source: hosted 83 | version: "1.3.0-nullsafety.3" 84 | path: 85 | dependency: transitive 86 | description: 87 | name: path 88 | url: "https://pub.dartlang.org" 89 | source: hosted 90 | version: "1.8.0-nullsafety.1" 91 | sky_engine: 92 | dependency: transitive 93 | description: flutter 94 | source: sdk 95 | version: "0.0.99" 96 | source_span: 97 | dependency: transitive 98 | description: 99 | name: source_span 100 | url: "https://pub.dartlang.org" 101 | source: hosted 102 | version: "1.8.0-nullsafety.2" 103 | stack_trace: 104 | dependency: transitive 105 | description: 106 | name: stack_trace 107 | url: "https://pub.dartlang.org" 108 | source: hosted 109 | version: "1.10.0-nullsafety.1" 110 | stream_channel: 111 | dependency: transitive 112 | description: 113 | name: stream_channel 114 | url: "https://pub.dartlang.org" 115 | source: hosted 116 | version: "2.1.0-nullsafety.1" 117 | string_scanner: 118 | dependency: transitive 119 | description: 120 | name: string_scanner 121 | url: "https://pub.dartlang.org" 122 | source: hosted 123 | version: "1.1.0-nullsafety.1" 124 | term_glyph: 125 | dependency: transitive 126 | description: 127 | name: term_glyph 128 | url: "https://pub.dartlang.org" 129 | source: hosted 130 | version: "1.2.0-nullsafety.1" 131 | test_api: 132 | dependency: transitive 133 | description: 134 | name: test_api 135 | url: "https://pub.dartlang.org" 136 | source: hosted 137 | version: "0.2.19-nullsafety.2" 138 | typed_data: 139 | dependency: transitive 140 | description: 141 | name: typed_data 142 | url: "https://pub.dartlang.org" 143 | source: hosted 144 | version: "1.3.0-nullsafety.3" 145 | vector_math: 146 | dependency: transitive 147 | description: 148 | name: vector_math 149 | url: "https://pub.dartlang.org" 150 | source: hosted 151 | version: "2.1.0-nullsafety.3" 152 | sdks: 153 | dart: ">=2.10.0-110 <2.11.0" 154 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 51; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 048ADFAB257387BE000975CD /* SplashViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 048ADFAA257387BE000975CD /* SplashViewController.swift */; }; 11 | 048ADFAD257388AD000975CD /* splash_screen.json in Resources */ = {isa = PBXBuildFile; fileRef = 048ADFAC257388AD000975CD /* splash_screen.json */; }; 12 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 13 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 14 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 15 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 16 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 17 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 18 | B87B3856363660A0714CC5E7 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 418D0B0AED7883ADC46D6979 /* Pods_Runner.framework */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXCopyFilesBuildPhase section */ 22 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 23 | isa = PBXCopyFilesBuildPhase; 24 | buildActionMask = 2147483647; 25 | dstPath = ""; 26 | dstSubfolderSpec = 10; 27 | files = ( 28 | ); 29 | name = "Embed Frameworks"; 30 | runOnlyForDeploymentPostprocessing = 0; 31 | }; 32 | /* End PBXCopyFilesBuildPhase section */ 33 | 34 | /* Begin PBXFileReference section */ 35 | 048ADFAA257387BE000975CD /* SplashViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SplashViewController.swift; sourceTree = ""; }; 36 | 048ADFAC257388AD000975CD /* splash_screen.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = splash_screen.json; sourceTree = ""; }; 37 | 0CF78AE96336623519848A10 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; 38 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 39 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 40 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 41 | 418D0B0AED7883ADC46D6979 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 560FD1669845057C826F18EA /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; 43 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 44 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 45 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 46 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 47 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 48 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 50 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 51 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 52 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 53 | D598AD19980272FBE21A8310 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; 54 | /* End PBXFileReference section */ 55 | 56 | /* Begin PBXFrameworksBuildPhase section */ 57 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 58 | isa = PBXFrameworksBuildPhase; 59 | buildActionMask = 2147483647; 60 | files = ( 61 | B87B3856363660A0714CC5E7 /* Pods_Runner.framework in Frameworks */, 62 | ); 63 | runOnlyForDeploymentPostprocessing = 0; 64 | }; 65 | /* End PBXFrameworksBuildPhase section */ 66 | 67 | /* Begin PBXGroup section */ 68 | 7FC439CB2139041A3C73C062 /* Pods */ = { 69 | isa = PBXGroup; 70 | children = ( 71 | D598AD19980272FBE21A8310 /* Pods-Runner.debug.xcconfig */, 72 | 0CF78AE96336623519848A10 /* Pods-Runner.release.xcconfig */, 73 | 560FD1669845057C826F18EA /* Pods-Runner.profile.xcconfig */, 74 | ); 75 | path = Pods; 76 | sourceTree = ""; 77 | }; 78 | 8700449129AA7CA58ABF528B /* Frameworks */ = { 79 | isa = PBXGroup; 80 | children = ( 81 | 418D0B0AED7883ADC46D6979 /* Pods_Runner.framework */, 82 | ); 83 | name = Frameworks; 84 | sourceTree = ""; 85 | }; 86 | 9740EEB11CF90186004384FC /* Flutter */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 90 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 91 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 92 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 93 | ); 94 | name = Flutter; 95 | sourceTree = ""; 96 | }; 97 | 97C146E51CF9000F007C117D = { 98 | isa = PBXGroup; 99 | children = ( 100 | 9740EEB11CF90186004384FC /* Flutter */, 101 | 97C146F01CF9000F007C117D /* Runner */, 102 | 97C146EF1CF9000F007C117D /* Products */, 103 | 7FC439CB2139041A3C73C062 /* Pods */, 104 | 8700449129AA7CA58ABF528B /* Frameworks */, 105 | ); 106 | sourceTree = ""; 107 | }; 108 | 97C146EF1CF9000F007C117D /* Products */ = { 109 | isa = PBXGroup; 110 | children = ( 111 | 97C146EE1CF9000F007C117D /* Runner.app */, 112 | ); 113 | name = Products; 114 | sourceTree = ""; 115 | }; 116 | 97C146F01CF9000F007C117D /* Runner */ = { 117 | isa = PBXGroup; 118 | children = ( 119 | 048ADFAC257388AD000975CD /* splash_screen.json */, 120 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 121 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 122 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 123 | 97C147021CF9000F007C117D /* Info.plist */, 124 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 125 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 126 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 127 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 128 | 048ADFAA257387BE000975CD /* SplashViewController.swift */, 129 | ); 130 | path = Runner; 131 | sourceTree = ""; 132 | }; 133 | /* End PBXGroup section */ 134 | 135 | /* Begin PBXNativeTarget section */ 136 | 97C146ED1CF9000F007C117D /* Runner */ = { 137 | isa = PBXNativeTarget; 138 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 139 | buildPhases = ( 140 | 42B9C4F5BCAEE63D4AB08BD9 /* [CP] Check Pods Manifest.lock */, 141 | 9740EEB61CF901F6004384FC /* Run Script */, 142 | 97C146EA1CF9000F007C117D /* Sources */, 143 | 97C146EB1CF9000F007C117D /* Frameworks */, 144 | 97C146EC1CF9000F007C117D /* Resources */, 145 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 146 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 147 | C816764DEF0E4789A13F68A1 /* [CP] Embed Pods Frameworks */, 148 | ); 149 | buildRules = ( 150 | ); 151 | dependencies = ( 152 | ); 153 | name = Runner; 154 | productName = Runner; 155 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 156 | productType = "com.apple.product-type.application"; 157 | }; 158 | /* End PBXNativeTarget section */ 159 | 160 | /* Begin PBXProject section */ 161 | 97C146E61CF9000F007C117D /* Project object */ = { 162 | isa = PBXProject; 163 | attributes = { 164 | LastUpgradeCheck = 1220; 165 | ORGANIZATIONNAME = ""; 166 | TargetAttributes = { 167 | 97C146ED1CF9000F007C117D = { 168 | CreatedOnToolsVersion = 7.3.1; 169 | LastSwiftMigration = 1100; 170 | }; 171 | }; 172 | }; 173 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 174 | compatibilityVersion = "Xcode 9.3"; 175 | developmentRegion = en; 176 | hasScannedForEncodings = 0; 177 | knownRegions = ( 178 | en, 179 | Base, 180 | ); 181 | mainGroup = 97C146E51CF9000F007C117D; 182 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 183 | projectDirPath = ""; 184 | projectRoot = ""; 185 | targets = ( 186 | 97C146ED1CF9000F007C117D /* Runner */, 187 | ); 188 | }; 189 | /* End PBXProject section */ 190 | 191 | /* Begin PBXResourcesBuildPhase section */ 192 | 97C146EC1CF9000F007C117D /* Resources */ = { 193 | isa = PBXResourcesBuildPhase; 194 | buildActionMask = 2147483647; 195 | files = ( 196 | 048ADFAD257388AD000975CD /* splash_screen.json in Resources */, 197 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 198 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 199 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 200 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 201 | ); 202 | runOnlyForDeploymentPostprocessing = 0; 203 | }; 204 | /* End PBXResourcesBuildPhase section */ 205 | 206 | /* Begin PBXShellScriptBuildPhase section */ 207 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 208 | isa = PBXShellScriptBuildPhase; 209 | buildActionMask = 2147483647; 210 | files = ( 211 | ); 212 | inputPaths = ( 213 | ); 214 | name = "Thin Binary"; 215 | outputPaths = ( 216 | ); 217 | runOnlyForDeploymentPostprocessing = 0; 218 | shellPath = /bin/sh; 219 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 220 | }; 221 | 42B9C4F5BCAEE63D4AB08BD9 /* [CP] Check Pods Manifest.lock */ = { 222 | isa = PBXShellScriptBuildPhase; 223 | buildActionMask = 2147483647; 224 | files = ( 225 | ); 226 | inputFileListPaths = ( 227 | ); 228 | inputPaths = ( 229 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 230 | "${PODS_ROOT}/Manifest.lock", 231 | ); 232 | name = "[CP] Check Pods Manifest.lock"; 233 | outputFileListPaths = ( 234 | ); 235 | outputPaths = ( 236 | "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", 237 | ); 238 | runOnlyForDeploymentPostprocessing = 0; 239 | shellPath = /bin/sh; 240 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 241 | showEnvVarsInLog = 0; 242 | }; 243 | 9740EEB61CF901F6004384FC /* Run Script */ = { 244 | isa = PBXShellScriptBuildPhase; 245 | buildActionMask = 2147483647; 246 | files = ( 247 | ); 248 | inputPaths = ( 249 | ); 250 | name = "Run Script"; 251 | outputPaths = ( 252 | ); 253 | runOnlyForDeploymentPostprocessing = 0; 254 | shellPath = /bin/sh; 255 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 256 | }; 257 | C816764DEF0E4789A13F68A1 /* [CP] Embed Pods Frameworks */ = { 258 | isa = PBXShellScriptBuildPhase; 259 | buildActionMask = 2147483647; 260 | files = ( 261 | ); 262 | inputFileListPaths = ( 263 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", 264 | ); 265 | name = "[CP] Embed Pods Frameworks"; 266 | outputFileListPaths = ( 267 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", 268 | ); 269 | runOnlyForDeploymentPostprocessing = 0; 270 | shellPath = /bin/sh; 271 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; 272 | showEnvVarsInLog = 0; 273 | }; 274 | /* End PBXShellScriptBuildPhase section */ 275 | 276 | /* Begin PBXSourcesBuildPhase section */ 277 | 97C146EA1CF9000F007C117D /* Sources */ = { 278 | isa = PBXSourcesBuildPhase; 279 | buildActionMask = 2147483647; 280 | files = ( 281 | 048ADFAB257387BE000975CD /* SplashViewController.swift in Sources */, 282 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 283 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 284 | ); 285 | runOnlyForDeploymentPostprocessing = 0; 286 | }; 287 | /* End PBXSourcesBuildPhase section */ 288 | 289 | /* Begin PBXVariantGroup section */ 290 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 291 | isa = PBXVariantGroup; 292 | children = ( 293 | 97C146FB1CF9000F007C117D /* Base */, 294 | ); 295 | name = Main.storyboard; 296 | sourceTree = ""; 297 | }; 298 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 299 | isa = PBXVariantGroup; 300 | children = ( 301 | 97C147001CF9000F007C117D /* Base */, 302 | ); 303 | name = LaunchScreen.storyboard; 304 | sourceTree = ""; 305 | }; 306 | /* End PBXVariantGroup section */ 307 | 308 | /* Begin XCBuildConfiguration section */ 309 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 310 | isa = XCBuildConfiguration; 311 | buildSettings = { 312 | ALWAYS_SEARCH_USER_PATHS = NO; 313 | CLANG_ANALYZER_NONNULL = YES; 314 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 315 | CLANG_CXX_LIBRARY = "libc++"; 316 | CLANG_ENABLE_MODULES = YES; 317 | CLANG_ENABLE_OBJC_ARC = YES; 318 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 319 | CLANG_WARN_BOOL_CONVERSION = YES; 320 | CLANG_WARN_COMMA = YES; 321 | CLANG_WARN_CONSTANT_CONVERSION = YES; 322 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 323 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 324 | CLANG_WARN_EMPTY_BODY = YES; 325 | CLANG_WARN_ENUM_CONVERSION = YES; 326 | CLANG_WARN_INFINITE_RECURSION = YES; 327 | CLANG_WARN_INT_CONVERSION = YES; 328 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 329 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 330 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 331 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 332 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 333 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 334 | CLANG_WARN_STRICT_PROTOTYPES = YES; 335 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 336 | CLANG_WARN_UNREACHABLE_CODE = YES; 337 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 338 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 339 | COPY_PHASE_STRIP = NO; 340 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 341 | ENABLE_NS_ASSERTIONS = NO; 342 | ENABLE_STRICT_OBJC_MSGSEND = YES; 343 | GCC_C_LANGUAGE_STANDARD = gnu99; 344 | GCC_NO_COMMON_BLOCKS = YES; 345 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 346 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 347 | GCC_WARN_UNDECLARED_SELECTOR = YES; 348 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 349 | GCC_WARN_UNUSED_FUNCTION = YES; 350 | GCC_WARN_UNUSED_VARIABLE = YES; 351 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 352 | MTL_ENABLE_DEBUG_INFO = NO; 353 | SDKROOT = iphoneos; 354 | SUPPORTED_PLATFORMS = iphoneos; 355 | TARGETED_DEVICE_FAMILY = "1,2"; 356 | VALIDATE_PRODUCT = YES; 357 | }; 358 | name = Profile; 359 | }; 360 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 361 | isa = XCBuildConfiguration; 362 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 363 | buildSettings = { 364 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 365 | CLANG_ENABLE_MODULES = YES; 366 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 367 | DEVELOPMENT_TEAM = 36S5Q8S4V5; 368 | ENABLE_BITCODE = NO; 369 | FRAMEWORK_SEARCH_PATHS = ( 370 | "$(inherited)", 371 | "$(PROJECT_DIR)/Flutter", 372 | ); 373 | INFOPLIST_FILE = Runner/Info.plist; 374 | LD_RUNPATH_SEARCH_PATHS = ( 375 | "$(inherited)", 376 | "@executable_path/Frameworks", 377 | ); 378 | LIBRARY_SEARCH_PATHS = ( 379 | "$(inherited)", 380 | "$(PROJECT_DIR)/Flutter", 381 | ); 382 | PRODUCT_BUNDLE_IDENTIFIER = com.abedelazizshe.flutterLottieSplashApp; 383 | PRODUCT_NAME = "$(TARGET_NAME)"; 384 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 385 | SWIFT_VERSION = 5.0; 386 | VERSIONING_SYSTEM = "apple-generic"; 387 | }; 388 | name = Profile; 389 | }; 390 | 97C147031CF9000F007C117D /* Debug */ = { 391 | isa = XCBuildConfiguration; 392 | buildSettings = { 393 | ALWAYS_SEARCH_USER_PATHS = NO; 394 | CLANG_ANALYZER_NONNULL = YES; 395 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 396 | CLANG_CXX_LIBRARY = "libc++"; 397 | CLANG_ENABLE_MODULES = YES; 398 | CLANG_ENABLE_OBJC_ARC = YES; 399 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 400 | CLANG_WARN_BOOL_CONVERSION = YES; 401 | CLANG_WARN_COMMA = YES; 402 | CLANG_WARN_CONSTANT_CONVERSION = YES; 403 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 404 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 405 | CLANG_WARN_EMPTY_BODY = YES; 406 | CLANG_WARN_ENUM_CONVERSION = YES; 407 | CLANG_WARN_INFINITE_RECURSION = YES; 408 | CLANG_WARN_INT_CONVERSION = YES; 409 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 410 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 411 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 412 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 413 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 414 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 415 | CLANG_WARN_STRICT_PROTOTYPES = YES; 416 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 417 | CLANG_WARN_UNREACHABLE_CODE = YES; 418 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 419 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 420 | COPY_PHASE_STRIP = NO; 421 | DEBUG_INFORMATION_FORMAT = dwarf; 422 | ENABLE_STRICT_OBJC_MSGSEND = YES; 423 | ENABLE_TESTABILITY = YES; 424 | GCC_C_LANGUAGE_STANDARD = gnu99; 425 | GCC_DYNAMIC_NO_PIC = NO; 426 | GCC_NO_COMMON_BLOCKS = YES; 427 | GCC_OPTIMIZATION_LEVEL = 0; 428 | GCC_PREPROCESSOR_DEFINITIONS = ( 429 | "DEBUG=1", 430 | "$(inherited)", 431 | ); 432 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 433 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 434 | GCC_WARN_UNDECLARED_SELECTOR = YES; 435 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 436 | GCC_WARN_UNUSED_FUNCTION = YES; 437 | GCC_WARN_UNUSED_VARIABLE = YES; 438 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 439 | MTL_ENABLE_DEBUG_INFO = YES; 440 | ONLY_ACTIVE_ARCH = YES; 441 | SDKROOT = iphoneos; 442 | TARGETED_DEVICE_FAMILY = "1,2"; 443 | }; 444 | name = Debug; 445 | }; 446 | 97C147041CF9000F007C117D /* Release */ = { 447 | isa = XCBuildConfiguration; 448 | buildSettings = { 449 | ALWAYS_SEARCH_USER_PATHS = NO; 450 | CLANG_ANALYZER_NONNULL = YES; 451 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 452 | CLANG_CXX_LIBRARY = "libc++"; 453 | CLANG_ENABLE_MODULES = YES; 454 | CLANG_ENABLE_OBJC_ARC = YES; 455 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 456 | CLANG_WARN_BOOL_CONVERSION = YES; 457 | CLANG_WARN_COMMA = YES; 458 | CLANG_WARN_CONSTANT_CONVERSION = YES; 459 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 460 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 461 | CLANG_WARN_EMPTY_BODY = YES; 462 | CLANG_WARN_ENUM_CONVERSION = YES; 463 | CLANG_WARN_INFINITE_RECURSION = YES; 464 | CLANG_WARN_INT_CONVERSION = YES; 465 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 466 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 467 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 468 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 469 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 470 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 471 | CLANG_WARN_STRICT_PROTOTYPES = YES; 472 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 473 | CLANG_WARN_UNREACHABLE_CODE = YES; 474 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 475 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 476 | COPY_PHASE_STRIP = NO; 477 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 478 | ENABLE_NS_ASSERTIONS = NO; 479 | ENABLE_STRICT_OBJC_MSGSEND = YES; 480 | GCC_C_LANGUAGE_STANDARD = gnu99; 481 | GCC_NO_COMMON_BLOCKS = YES; 482 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 483 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 484 | GCC_WARN_UNDECLARED_SELECTOR = YES; 485 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 486 | GCC_WARN_UNUSED_FUNCTION = YES; 487 | GCC_WARN_UNUSED_VARIABLE = YES; 488 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 489 | MTL_ENABLE_DEBUG_INFO = NO; 490 | SDKROOT = iphoneos; 491 | SUPPORTED_PLATFORMS = iphoneos; 492 | SWIFT_COMPILATION_MODE = wholemodule; 493 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 494 | TARGETED_DEVICE_FAMILY = "1,2"; 495 | VALIDATE_PRODUCT = YES; 496 | }; 497 | name = Release; 498 | }; 499 | 97C147061CF9000F007C117D /* Debug */ = { 500 | isa = XCBuildConfiguration; 501 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 502 | buildSettings = { 503 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 504 | CLANG_ENABLE_MODULES = YES; 505 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 506 | DEVELOPMENT_TEAM = 36S5Q8S4V5; 507 | ENABLE_BITCODE = NO; 508 | FRAMEWORK_SEARCH_PATHS = ( 509 | "$(inherited)", 510 | "$(PROJECT_DIR)/Flutter", 511 | ); 512 | INFOPLIST_FILE = Runner/Info.plist; 513 | LD_RUNPATH_SEARCH_PATHS = ( 514 | "$(inherited)", 515 | "@executable_path/Frameworks", 516 | ); 517 | LIBRARY_SEARCH_PATHS = ( 518 | "$(inherited)", 519 | "$(PROJECT_DIR)/Flutter", 520 | ); 521 | PRODUCT_BUNDLE_IDENTIFIER = com.abedelazizshe.flutterLottieSplashApp; 522 | PRODUCT_NAME = "$(TARGET_NAME)"; 523 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 524 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 525 | SWIFT_VERSION = 5.0; 526 | VERSIONING_SYSTEM = "apple-generic"; 527 | }; 528 | name = Debug; 529 | }; 530 | 97C147071CF9000F007C117D /* Release */ = { 531 | isa = XCBuildConfiguration; 532 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 533 | buildSettings = { 534 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 535 | CLANG_ENABLE_MODULES = YES; 536 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 537 | DEVELOPMENT_TEAM = 36S5Q8S4V5; 538 | ENABLE_BITCODE = NO; 539 | FRAMEWORK_SEARCH_PATHS = ( 540 | "$(inherited)", 541 | "$(PROJECT_DIR)/Flutter", 542 | ); 543 | INFOPLIST_FILE = Runner/Info.plist; 544 | LD_RUNPATH_SEARCH_PATHS = ( 545 | "$(inherited)", 546 | "@executable_path/Frameworks", 547 | ); 548 | LIBRARY_SEARCH_PATHS = ( 549 | "$(inherited)", 550 | "$(PROJECT_DIR)/Flutter", 551 | ); 552 | PRODUCT_BUNDLE_IDENTIFIER = com.abedelazizshe.flutterLottieSplashApp; 553 | PRODUCT_NAME = "$(TARGET_NAME)"; 554 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 555 | SWIFT_VERSION = 5.0; 556 | VERSIONING_SYSTEM = "apple-generic"; 557 | }; 558 | name = Release; 559 | }; 560 | /* End XCBuildConfiguration section */ 561 | 562 | /* Begin XCConfigurationList section */ 563 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 564 | isa = XCConfigurationList; 565 | buildConfigurations = ( 566 | 97C147031CF9000F007C117D /* Debug */, 567 | 97C147041CF9000F007C117D /* Release */, 568 | 249021D3217E4FDB00AE95B9 /* Profile */, 569 | ); 570 | defaultConfigurationIsVisible = 0; 571 | defaultConfigurationName = Release; 572 | }; 573 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 574 | isa = XCConfigurationList; 575 | buildConfigurations = ( 576 | 97C147061CF9000F007C117D /* Debug */, 577 | 97C147071CF9000F007C117D /* Release */, 578 | 249021D4217E4FDB00AE95B9 /* Profile */, 579 | ); 580 | defaultConfigurationIsVisible = 0; 581 | defaultConfigurationName = Release; 582 | }; 583 | /* End XCConfigurationList section */ 584 | }; 585 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 586 | } 587 | -------------------------------------------------------------------------------- /ios/Runner/splash_screen.json: -------------------------------------------------------------------------------- 1 | {"v":"5.5.7","meta":{"g":"LottieFiles AE 0.1.20","a":"","k":"","d":"","tc":""},"fr":60,"ip":0,"op":240,"w":530,"h":530,"nm":"Basket of Fruit","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Leaf Outlines","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":75,"s":[80]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":101.959,"s":[-51]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":119.66,"s":[1]},{"t":136,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":75,"s":[326.105,154.01,0],"to":[119.667,141.333,0],"ti":[-219.667,-101.333,0]},{"t":136,"s":[216.105,474.01,0]}],"ix":2},"a":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":106,"s":[53.297,50.438,0],"to":[0,0,0],"ti":[0,0,0]},{"t":121,"s":[53.297,50.438,0]}],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[0.499,0.419,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":75,"s":[0,0,100]},{"i":{"x":[0.667,0.667,0.667],"y":[0.725,0.816,1]},"o":{"x":[0.333,0.333,0.333],"y":[0.36,0.211,0]},"t":102,"s":[43.866,37.866,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0.598,-3.643,0]},"t":119,"s":[82.314,103.314,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":136,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":158,"s":[100,100,100]},{"t":166,"s":[0,0,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-18.952,-5.707]],"o":[[0,0],[0,0]],"v":[[-21.635,-16.945],[21.635,16.945]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.087,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[62.24,54.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":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":[[-13.382,14.117],[13.382,7.708],[-3.423,-10.68],[-6.563,-14.117]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.087,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[38.79,43.157],"ix":2},"a":{"a":0,"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]],"o":[[0,0],[0,0]],"v":[[-4.394,13.04],[4.394,-13.04]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.087,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[56.604,37.79],"ix":2},"a":{"a":0,"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":[[-1.398,-0.328],[0.213,-1.189],[0.3,-1.077],[0.949,-1.71],[2.824,-2.232],[3.789,-0.998],[2.21,-0.095],[1.227,0.108],[1.402,0.334],[-0.212,1.191],[-0.297,1.081],[-0.949,1.709],[-2.839,2.214],[-3.794,0.991],[-2.208,0.099],[-1.224,-0.105]],"o":[[-0.02,1.437],[-0.194,1.213],[-0.629,2.118],[-1.88,3.441],[-2.834,2.219],[-1.888,0.506],[-1.121,0.028],[-1.206,-0.083],[0.015,-1.442],[0.191,-1.216],[0.627,-2.121],[1.884,-3.436],[2.85,-2.2],[1.888,-0.507],[1.117,-0.03],[1.205,0.08]],"v":[[17.021,-13.306],[16.667,-9.373],[15.894,-5.978],[13.529,-0.233],[6.396,8.179],[-3.474,13.089],[-9.622,13.99],[-13.111,13.911],[-17.021,13.29],[-16.677,9.345],[-15.911,5.941],[-13.548,0.194],[-6.397,-8.196],[3.492,-13.08],[9.638,-13.986],[13.12,-13.914]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[34.852,64.608],"ix":2},"a":{"a":0,"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.649,1.281],[-1.047,0.602],[-1.018,0.463],[-1.919,0.375],[-3.527,-0.723],[-3.204,-2.257],[-1.496,-1.63],[-0.707,-1.009],[-0.648,-1.288],[1.048,-0.603],[1.018,-0.468],[1.919,-0.374],[3.522,0.747],[3.201,2.264],[1.496,1.626],[0.708,1.005]],"o":[[1.112,-0.909],[1.053,-0.633],[2.026,-0.883],[3.843,-0.776],[3.523,0.741],[1.603,1.118],[0.743,0.839],[0.714,0.977],[-1.114,0.917],[-1.054,0.637],[-2.027,0.885],[-3.842,0.77],[-3.518,-0.764],[-1.603,-1.118],[-0.744,-0.836],[-0.713,-0.973]],"v":[[-21.135,-4.473],[-17.898,-6.734],[-14.802,-8.329],[-8.884,-10.219],[2.146,-10.178],[12.258,-5.785],[16.906,-1.661],[19.09,1.059],[21.135,4.451],[17.894,6.727],[14.796,8.333],[8.876,10.225],[-2.147,10.155],[-12.252,5.734],[-16.901,1.614],[-19.089,-1.098]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[30.745,46.878],"ix":2},"a":{"a":0,"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":[[1.328,0.842],[-0.894,1.033],[-0.926,0.896],[-1.979,1.242],[-4.298,1.017],[-4.651,-0.511],[-2.441,-0.754],[-1.265,-0.571],[-1.33,-0.848],[0.893,-1.036],[0.925,-0.901],[1.979,-1.241],[4.303,-0.994],[4.652,0.518],[2.441,0.751],[1.265,0.566]],"o":[[0.823,-1.34],[0.887,-1.064],[1.862,-1.746],[3.952,-2.51],[4.301,-1],[2.323,0.245],[1.227,0.402],[1.258,0.538],[-0.821,1.347],[-0.886,1.069],[-1.861,1.75],[-3.954,2.504],[-4.307,0.976],[-2.324,-0.245],[-1.225,-0.397],[-1.256,-0.536]],"v":[[-25.814,5.99],[-23.238,2.436],[-20.508,-0.456],[-14.747,-4.941],[-2.344,-10.111],[11.061,-10.949],[18.208,-9.449],[21.934,-8.042],[25.814,-5.967],[23.242,-2.398],[20.513,0.503],[14.753,4.993],[2.344,10.133],[-11.068,10.941],[-18.215,9.445],[-21.939,8.049]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[26.064,57.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 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":[[1.432,0.109],[-0.028,1.207],[-0.131,1.111],[-0.674,1.835],[-2.447,2.64],[-3.591,1.568],[-2.169,0.433],[-1.229,0.082],[-1.437,-0.114],[0.027,-1.209],[0.127,-1.113],[0.675,-1.835],[2.464,-2.624],[3.596,-1.563],[2.166,-0.436],[1.226,-0.085]],"o":[[-0.201,-1.423],[0.005,-1.229],[0.296,-2.189],[1.329,-3.69],[2.46,-2.628],[1.787,-0.791],[1.103,-0.201],[1.205,-0.105],[0.206,1.427],[-0.002,1.231],[-0.294,2.192],[-1.334,3.685],[-2.478,2.611],[-1.788,0.791],[-1.1,0.202],[-1.202,0.105]],"v":[[-14.779,15.761],[-15.034,11.821],[-14.792,8.346],[-13.339,2.307],[-7.584,-7.103],[1.414,-13.471],[7.35,-15.307],[10.809,-15.765],[14.769,-15.754],[15.035,-11.802],[14.802,-8.321],[13.351,-2.279],[7.575,7.111],[-1.445,13.458],[-7.379,15.297],[-10.831,15.762]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[67.433,34.827],"ix":2},"a":{"a":0,"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":[[-1.006,1.025],[-0.906,-0.799],[-0.765,-0.816],[-0.97,-1.698],[-0.445,-3.573],[1.113,-3.757],[1.065,-1.939],[0.729,-0.993],[1.013,-1.026],[0.908,0.798],[0.77,0.814],[0.97,1.698],[0.421,3.576],[-1.118,3.757],[-1.061,1.938],[-0.725,0.992]],"o":[[1.218,0.762],[0.937,0.795],[1.485,1.636],[1.967,3.392],[0.428,3.574],[-0.545,1.878],[-0.557,0.972],[-0.695,0.988],[-1.225,-0.761],[-0.941,-0.794],[-1.488,-1.637],[-1.96,-3.393],[-0.403,-3.577],[0.546,-1.877],[0.553,-0.973],[0.692,-0.99]],"v":[[-2.557,-21.449],[0.622,-19.107],[3.125,-16.686],[6.81,-11.686],[10.305,-1.223],[9.384,9.76],[6.967,15.486],[5.09,18.428],[2.532,21.449],[-0.662,19.109],[-3.176,16.689],[-6.865,11.689],[-10.33,1.224],[-9.38,-9.764],[-6.966,-15.488],[-5.099,-18.428]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[50.148,29.147],"ix":2},"a":{"a":0,"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":[[-1.408,0.7],[-0.42,-1.301],[-0.286,-1.256],[-0.035,-2.337],[1.359,-4.202],[2.849,-3.711],[1.911,-1.696],[1.143,-0.787],[1.415,-0.698],[0.423,1.302],[0.289,1.258],[0.036,2.336],[-1.381,4.195],[-2.855,3.711],[-1.907,1.697],[-1.139,0.787]],"o":[[0.719,1.399],[0.449,1.309],[0.528,2.498],[0.098,4.68],[-1.376,4.196],[-1.413,1.86],[-0.979,0.841],[-1.112,0.796],[-0.725,-1.402],[-0.453,-1.312],[-0.532,-2.499],[-0.09,-4.679],[1.399,-4.189],[1.415,-1.859],[0.976,-0.842],[1.109,-0.798]],"v":[[8.285,-25.174],[9.988,-21.126],[11.044,-17.294],[11.892,-10.04],[9.882,3.245],[3.645,15.141],[-1.344,20.473],[-4.478,22.93],[-8.264,25.174],[-9.982,21.122],[-11.047,17.285],[-11.9,10.032],[-9.861,-3.245],[-3.597,-15.133],[1.389,-20.467],[4.514,-22.926]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[60.944,25.424],"ix":2},"a":{"a":0,"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.798,-1.194],[1.037,0.617],[0.903,0.659],[1.268,1.487],[1.101,3.427],[-0.395,3.898],[-0.687,2.102],[-0.532,1.112],[-0.805,1.196],[-1.04,-0.616],[-0.907,-0.657],[-1.268,-1.489],[-1.077,-3.435],[0.401,-3.9],[0.682,-2.101],[0.529,-1.11]],"o":[[-1.338,-0.522],[-1.068,-0.607],[-1.763,-1.333],[-2.563,-2.969],[-1.083,-3.434],[0.188,-1.945],[0.367,-1.06],[0.5,-1.1],[1.345,0.521],[1.073,0.607],[1.767,1.332],[2.555,2.969],[1.06,3.441],[-0.188,1.946],[-0.364,1.059],[-0.497,1.099]],"v":[[6.493,20.604],[2.934,18.893],[0.025,16.979],[-4.525,12.749],[-9.9,3.118],[-11.035,-7.848],[-9.721,-13.921],[-8.423,-17.16],[-6.471,-20.604],[-2.898,-18.898],[0.021,-16.986],[4.576,-12.757],[9.923,-3.117],[11.029,7.857],[9.719,13.928],[8.43,17.165]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.6,0.226999993418,0.136999990426,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":[40.384,24.428],"ix":2},"a":{"a":0,"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.4,1.379],[-1.14,0.396],[-1.085,0.267],[-1.955,0.013],[-3.331,-1.365],[-2.728,-2.812],[-1.167,-1.879],[-0.508,-1.122],[-0.397,-1.385],[1.142,-0.399],[1.088,-0.271],[1.954,-0.012],[3.322,1.388],[2.726,2.819],[1.169,1.876],[0.51,1.118]],"o":[[1.261,-0.687],[1.152,-0.426],[2.155,-0.49],[3.921,-0.05],[3.324,1.382],[1.368,1.396],[0.574,0.963],[0.52,1.092],[-1.263,0.695],[-1.154,0.43],[-2.156,0.495],[-3.918,0.043],[-3.315,-1.403],[-1.368,-1.397],[-0.575,-0.959],[-0.521,-1.089]],"v":[[-19.939,-8.317],[-16.339,-9.938],[-13.001,-10.931],[-6.835,-11.689],[3.997,-9.601],[13.117,-3.409],[16.919,1.505],[18.562,4.584],[19.939,8.296],[16.333,9.932],[12.991,10.934],[6.824,11.696],[-3.996,9.58],[-13.105,3.361],[-16.909,-1.55],[-18.555,-4.62]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.6,0.226999993418,0.136999990426,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":[26.958,36.717],"ix":2},"a":{"a":0,"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.082,1.57],[-1.339,-0.273],[-1.235,-0.367],[-2.054,-1.115],[-2.995,-3.246],[-1.838,-4.303],[-0.54,-2.497],[-0.124,-1.383],[0.087,-1.574],[1.342,0.269],[1.239,0.364],[2.053,1.116],[2.977,3.263],[1.832,4.309],[0.544,2.496],[0.127,1.379]],"o":[[1.571,0.06],[1.363,0.251],[2.436,0.766],[4.126,2.212],[2.982,3.258],[0.926,2.145],[0.252,1.266],[0.149,1.359],[-1.576,-0.055],[-1.365,-0.248],[-2.438,-0.763],[-4.121,-2.216],[-2.963,-3.273],[-0.926,-2.144],[-0.255,-1.262],[-0.15,-1.359]],"v":[[-17.878,-19.561],[-13.517,-19.058],[-9.658,-18.097],[-2.922,-15.279],[7.668,-7.008],[14.976,4.262],[17.174,11.226],[17.777,15.163],[17.873,19.561],[13.5,19.07],[9.633,18.117],[2.896,15.299],[-7.673,7.008],[-14.958,-4.281],[-17.16,-11.243],[-17.77,-15.171]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.6,0.226999993418,0.136999990426,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":[29.024,25.453],"ix":2},"a":{"a":0,"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}],"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Basket Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":10,"s":[273.311,492.402,0],"to":[0,0.5,0],"ti":[0,8.234,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":15,"s":[273.311,495.402,0],"to":[0,-8.234,0],"ti":[0,0.5,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":23,"s":[273.311,443,0],"to":[0,-0.5,0],"ti":[0,-8.234,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":45,"s":[273.311,492.402,0],"to":[0,0,0],"ti":[0,0,0]},{"t":146,"s":[273.311,492.402,0]}],"ix":2},"a":{"a":0,"k":[125.976,208.007,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":10,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":15,"s":[100,80,100]},{"i":{"x":[0.667,0.667,0.667],"y":[0.838,2.352,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":23,"s":[90,105,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[1.352,0.075,0]},"t":35,"s":[100,105,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":45,"s":[100,90,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":51.855,"s":[95,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":57,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":136,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":146,"s":[100,90,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":156.855,"s":[95,100,100]},{"t":162,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.467,0],[0,0],[0,7.467],[-7.467,0],[0,0],[0,-7.466]],"o":[[0,0],[-7.467,0],[0,-7.466],[0,0],[7.467,0],[0,7.467]],"v":[[111.206,13.52],[-111.205,13.52],[-124.725,-0.001],[-111.205,-13.52],[111.206,-13.52],[124.725,-0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,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":[124.975,13.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 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":[[7.467,0],[0,0],[0,7.466],[-7.466,0],[0,0],[0,-7.466]],"o":[[0,0],[-7.466,0],[0,-7.466],[0,0],[7.467,0],[0,7.466]],"v":[[103.299,13.519],[-103.298,13.519],[-116.818,0],[-103.298,-13.519],[103.299,-13.519],[116.818,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[124.975,34.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":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.467,0],[0,0],[0,7.466],[-7.467,0],[0,0],[0,-7.466]],"o":[[0,0],[-7.467,0],[0,-7.466],[0,0],[7.467,0],[0,7.466]],"v":[[94.896,13.52],[-94.896,13.52],[-108.416,-0.001],[-94.896,-13.52],[94.896,-13.52],[108.416,-0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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":[124.975,54.527],"ix":2},"a":{"a":0,"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":[[7.467,0],[0,0],[0,7.467],[-7.467,0],[0,0],[0,-7.466]],"o":[[0,0],[-7.467,0],[0,-7.466],[0,0],[7.467,0],[0,7.467]],"v":[[87.657,13.52],[-87.658,13.52],[-101.176,-0.001],[-87.658,-13.52],[87.657,-13.52],[101.176,-0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976000019148,0.791999966491,0.607999973671,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":[124.976,74.86],"ix":2},"a":{"a":0,"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":[[7.467,0],[0,0],[0,7.467],[-7.467,0],[0,0],[0,-7.465]],"o":[[0,0],[-7.467,0],[0,-7.465],[0,0],[7.467,0],[0,7.467]],"v":[[81.243,13.52],[-81.243,13.52],[-94.762,-0.001],[-81.243,-13.52],[81.243,-13.52],[94.762,-0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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":[124.976,94.61],"ix":2},"a":{"a":0,"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":[[7.467,0],[0,0],[0,7.466],[-7.466,0],[0,0],[0,-7.466]],"o":[[0,0],[-7.466,0],[0,-7.466],[0,0],[7.467,0],[0,7.466]],"v":[[74.427,13.519],[-74.428,13.519],[-87.947,0],[-74.428,-13.519],[74.427,-13.519],[87.947,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976000019148,0.791999966491,0.607999973671,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":[124.976,114.568],"ix":2},"a":{"a":0,"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":[[7.205,0],[0,0],[0,7.205],[0,0],[-7.205,0],[0,0],[0,-7.205],[0,0]],"o":[[0,0],[-7.205,0],[0,0],[0,-7.205],[0,0],[7.205,0],[0,0],[0,7.205]],"v":[[63.686,13.52],[-63.685,13.52],[-76.73,0.474],[-76.73,-0.473],[-63.685,-13.52],[63.686,-13.52],[76.73,-0.473],[76.73,0.474]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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":[124.975,134.694],"ix":2},"a":{"a":0,"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":[[6.94,0],[0,0],[0,6.94],[0,0],[-6.941,0],[0,0],[0,-6.941],[0,0]],"o":[[0,0],[-6.941,0],[0,0],[0,-6.941],[0,0],[6.94,0],[0,0],[0,6.94]],"v":[[58.645,13.52],[-58.644,13.52],[-71.212,0.953],[-71.212,-0.951],[-58.644,-13.52],[58.645,-13.52],[71.212,-0.951],[71.212,0.953]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976000019148,0.791999966491,0.607999973671,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":[124.975,154.651],"ix":2},"a":{"a":0,"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":[[6.345,0],[0,0],[0,6.344],[0,0],[-6.344,0],[0,0],[0,-6.344],[0,0]],"o":[[0,0],[-6.344,0],[0,0],[0,-6.344],[0,0],[6.345,0],[0,0],[0,6.344]],"v":[[48.006,13.52],[-48.005,13.52],[-59.493,2.033],[-59.493,-2.033],[-48.005,-13.52],[48.006,-13.52],[59.493,-2.033],[59.493,2.033]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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":[124.975,175.608],"ix":2},"a":{"a":0,"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":[[6.38,0],[0,0],[0,6.379],[0,0],[-6.38,0],[0,0],[0,-6.38],[0,0]],"o":[[0,0],[-6.38,0],[0,0],[0,-6.38],[0,0],[6.38,0],[0,0],[0,6.379]],"v":[[34.57,13.52],[-34.571,13.52],[-46.122,1.968],[-46.122,-1.967],[-34.571,-13.52],[34.57,-13.52],[46.122,-1.967],[46.122,1.968]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976000019148,0.791999966491,0.607999973671,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.784,194.244],"ix":2},"a":{"a":0,"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":300,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Pine Outlines","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":45,"s":[77]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":77,"s":[6]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":83,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":157,"s":[0]},{"t":177,"s":[77]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":45,"s":[333.074,353.096,0],"to":[27.167,-0.833,0],"ti":[-5.667,12.833,0]},{"t":77,"s":[367.074,276.096,0],"h":1},{"i":{"x":0.667,"y":0.943},"o":{"x":0.333,"y":0.093},"t":136,"s":[367.074,276.096,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.046},"t":146,"s":[367.074,302.096,0],"to":[0,0,0],"ti":[15.833,39.333,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":157,"s":[367.074,276.096,0],"to":[-5.239,-13.014,0],"ti":[-14.022,0.43,0]},{"t":177,"s":[333.074,353.096,0]}],"ix":2},"a":{"a":0,"k":[25.242,26.116,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":19,"s":[20,20,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":45,"s":[40,40,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":77,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":157,"s":[100,100,100]},{"t":177,"s":[40,40,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.2,-0.754],[-0.325,0.754],[1.2,-0.083]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.61,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[28.142,43.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 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]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.2,-0.754],[-0.325,0.754],[1.2,-0.082]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.61,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[25.712,38.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 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]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.2,-0.754],[-0.325,0.754],[1.2,-0.083]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.61,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[33.501,40.382],"ix":2},"a":{"a":0,"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],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.2,-0.754],[-0.325,0.754],[1.2,-0.083]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.61,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[35.7,32.512],"ix":2},"a":{"a":0,"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],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.2,-0.754],[-0.325,0.754],[1.2,-0.083]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.61,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[30.34,35.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 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]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.2,-0.754],[-0.325,0.754],[1.2,-0.083]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.61,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[27.911,30.336],"ix":2},"a":{"a":0,"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,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.2,-0.754],[-0.325,0.754],[1.2,-0.083]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.61,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[19.428,40.896],"ix":2},"a":{"a":0,"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]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.2,-0.754],[-0.325,0.754],[1.2,-0.083]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.61,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[16.998,35.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 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]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.2,-0.754],[-0.325,0.754],[1.2,-0.083]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.61,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[21.626,33.027],"ix":2},"a":{"a":0,"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],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.2,-0.754],[-0.325,0.754],[1.2,-0.083]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.61,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[19.197,27.901],"ix":2},"a":{"a":0,"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,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.2,-0.754],[-0.325,0.754],[1.2,-0.083]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.61,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[10.714,38.461],"ix":2},"a":{"a":0,"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],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.2,-0.754],[-0.325,0.754],[1.2,-0.083]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.61,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[8.284,33.335],"ix":2},"a":{"a":0,"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],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.2,-0.754],[-0.325,0.754],[1.2,-0.082]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.61,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[12.913,30.591],"ix":2},"a":{"a":0,"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],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.2,-0.754],[-0.325,0.754],[1.2,-0.083]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0.61,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[10.483,25.466],"ix":2},"a":{"a":0,"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":[[2.65,0.74],[0,0],[-0.74,2.65],[0,0],[-2.65,-0.741],[0,0],[0.741,-2.651],[0,0]],"o":[[0,0],[-2.649,-0.741],[0,0],[0.74,-2.65],[0,0],[2.651,0.74],[0,0],[-0.741,2.649]],"v":[[17.892,10.597],[-20.795,-0.213],[-24.252,-6.352],[-24.032,-7.139],[-17.893,-10.596],[20.793,0.214],[24.251,6.353],[24.031,7.14]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,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":[25.242,19.766],"ix":2},"a":{"a":0,"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":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-8.281,-2.314],[0,0],[2.315,-8.282]],"o":[[0,0],[0,0],[2.314,-8.281],[0,0],[8.281,2.314],[0,0]],"v":[[16.483,12.423],[-19.282,2.43],[-18.797,0.695],[0.387,-10.109],[6.163,-8.495],[16.967,10.69]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,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":[26.162,14.054],"ix":2},"a":{"a":0,"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":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[6.849,1.914],[0,0],[-1.914,6.848],[0,0],[0,0],[0,0]],"o":[[0,0],[-6.848,-1.914],[0,0],[0,0],[0,0],[-1.914,6.848]],"v":[[-1.184,15.724],[-8.176,13.771],[-17.111,-2.094],[-12.766,-17.638],[19.025,-8.756],[14.681,6.789]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[21.854,34.343],"ix":2},"a":{"a":0,"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":17,"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],[-1.802,-0.513],[0.514,-1.803]],"o":[[0,0],[0,0],[0.514,-1.802],[1.803,0.514],[0,0]],"v":[[0.683,10.514],[-5.846,8.654],[-1.197,-7.667],[2.997,-10.001],[5.331,-5.807]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,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":[27.742,10.764],"ix":2},"a":{"a":0,"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":18,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Apple Outlines","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":52,"s":[52]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":83,"s":[-14]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":88,"s":[-8]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":161,"s":[-8]},{"t":181,"s":[52]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":52,"s":[244.47,372.698,0],"to":[60,-11.583,0],"ti":[56,-3.417,0]},{"t":82.879,"s":[223.97,276.198,0],"h":1},{"i":{"x":0.673,"y":0.885},"o":{"x":0.337,"y":0.12},"t":136,"s":[223.97,276.198,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.69,"y":1},"o":{"x":0.351,"y":0.082},"t":146,"s":[223.97,302.198,0],"to":[-12.81,0.782,0],"ti":[56,-3.417,0]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":161,"s":[223.97,276.198,0],"to":[-12.81,0.782,0],"ti":[-12.601,2.433,0]},{"t":181,"s":[244.47,372.698,0]}],"ix":2},"a":{"a":0,"k":[58.143,57.353,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":19,"s":[20,80,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":52,"s":[80,80,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":82.879,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":161,"s":[100,100,100]},{"t":181,"s":[80,80,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],[-1.848,0.317],[-0.317,-1.847]],"o":[[0,0],[0,0],[-0.317,-1.847],[1.848,-0.317],[0,0]],"v":[[4.939,9.333],[-1.751,10.481],[-4.622,-6.245],[-1.851,-10.164],[2.068,-7.393]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.219999994016,0.071000005685,0.063000002094,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":[54.218,10.731],"ix":2},"a":{"a":0,"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":[[-9.462,0.336],[0,0],[0.681,19.202],[0,0],[19.202,-0.682],[0,0],[-0.336,-9.462],[0,0]],"o":[[0,0],[19.203,-0.682],[0,0],[-0.682,-19.202],[0,0],[-9.462,0.336],[0,0],[0.336,9.462]],"v":[[-10.237,50.571],[-3.55,50.334],[29.986,14.33],[28.884,-16.691],[-7.119,-50.225],[-13.807,-49.988],[-30.331,-32.247],[-27.978,34.048]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.694000004787,0.086000001197,0.071000005685,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":[85.368,54.725],"ix":2},"a":{"a":0,"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":[[9.1,-2.615],[0,0],[5.31,18.466],[0,0],[-18.467,5.309],[0,0],[-2.616,-9.099],[0,0]],"o":[[0,0],[-18.466,5.308],[0,0],[-5.309,-18.466],[0,0],[9.099,-2.616],[0,0],[2.616,9.099]],"v":[[24.506,46.081],[18.075,47.932],[-24.975,24.107],[-33.552,-5.725],[-9.728,-48.775],[-3.297,-50.624],[17.915,-38.884],[36.245,24.87]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.694000004787,0.086000001197,0.071000005685,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":[39.111,61.217],"ix":2},"a":{"a":0,"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}],"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Pear Outlines","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":57,"s":[-115]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":88,"s":[10]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":94,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":165,"s":[0]},{"t":186,"s":[-115]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":57,"s":[271.507,410.891,0],"to":[-41.833,-31.5,0],"ti":[-78.167,0.5,0]},{"t":88,"s":[308.507,287.891,0],"h":1},{"i":{"x":0.667,"y":0.729},"o":{"x":0.333,"y":0.196},"t":136,"s":[308.507,287.891,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.178},"t":146,"s":[308.507,313.891,0],"to":[21.407,-0.137,0],"ti":[-78.167,0.5,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":165,"s":[308.507,287.891,0],"to":[21.407,-0.137,0],"ti":[17.101,12.877,0]},{"t":186,"s":[271.507,410.891,0]}],"ix":2},"a":{"a":0,"k":[54.38,117.823,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":19,"s":[20,20,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":57,"s":[50,50,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":88,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":165,"s":[100,100,100]},{"t":186,"s":[50,50,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],[-1.813,-0.48],[0.48,-1.812]],"o":[[0,0],[0,0],[0.48,-1.812],[1.811,0.48],[0,0]],"v":[[0.868,10.517],[-5.694,8.779],[-1.348,-7.626],[2.803,-10.037],[5.214,-5.887]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.219999994016,0.071000005685,0.063000002094,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":[86.166,10.767],"ix":2},"a":{"a":0,"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":[[15.8,4.187],[0,0],[-7.638,14.45],[0,0],[-18.795,-4.979],[2.039,-19.337],[0,0]],"o":[[0,0],[-15.799,-4.186],[0,0],[7.802,-17.81],[18.796,4.979],[0,0],[-0.518,16.336]],"v":[[22.067,66.82],[-34.536,51.826],[-50.492,15.392],[-19.243,-43.733],[26.974,-66.029],[56.091,-23.775],[53.97,43.066]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.607999973671,0.517999985639,0.051000000449,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":[58.38,79.388],"ix":2},"a":{"a":0,"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":300,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Corn Outlines","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":63,"s":[79]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":94,"s":[-5]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":101,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":169,"s":[0]},{"t":192,"s":[79]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":63,"s":[300.556,389.522,0],"to":[25.333,-18.333,0],"ti":[110.667,-13.667,0]},{"t":94,"s":[236.556,291.522,0],"h":1},{"i":{"x":0.672,"y":0.538},"o":{"x":0.338,"y":0.241},"t":136,"s":[236.556,291.522,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.273},"t":146,"s":[236.556,317.522,0],"to":[-19.361,2.391,0],"ti":[110.667,-13.667,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":169,"s":[236.556,291.522,0],"to":[-19.361,2.391,0],"ti":[-15.804,11.437,0]},{"t":192,"s":[300.556,389.522,0]}],"ix":2},"a":{"a":0,"k":[116.551,156.779,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":19,"s":[20,20,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":63,"s":[40,40,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":94,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":169,"s":[100,100,100]},{"t":192,"s":[40,40,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.673,-1.115],[0,0],[1.115,2.673],[0,0],[-2.673,1.115],[0,0],[-1.115,-2.674],[0,0]],"o":[[0,0],[-2.674,1.114],[0,0],[-1.115,-2.673],[0,0],[2.673,-1.115],[0,0],[1.115,2.673]],"v":[[9.495,7.091],[-1.645,11.736],[-8.503,8.913],[-12.316,-0.232],[-9.495,-7.091],[1.645,-11.735],[8.503,-8.913],[12.316,0.232]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.219999994016,0.071000005685,0.063000002094,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":[119.632,158.486],"ix":2},"a":{"a":0,"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":[[-1.526,-3.118],[2.906,-0.5],[2.529,-0.677],[3.281,-1.909],[2.135,-2.299],[2.111,-3.191],[2.215,-4.006],[1.026,-2.276],[0.595,-1.115],[0.615,-1.156],[0.628,-1.181],[0.656,-1.215],[0.697,-1.235],[0.718,-1.264],[0.797,-1.284],[0,0],[0.407,-0.657],[2.207,-2.702],[1.615,6.057],[0.266,1.533],[0.199,1.542],[0.139,1.561],[0.004,1.57],[-0.088,1.59],[-0.184,1.594],[-0.758,3.202],[-4.162,6.164],[-6.998,4.213],[0,0],[-0.926,0.421],[-0.948,0.362],[-0.973,0.285],[-3.871,0.024],[-0.953,-0.07],[-0.919,-0.177],[-1.734,-0.553],[-2.975,-1.709],[-2.39,-2.343]],"o":[[-3.401,0.46],[-2.904,0.53],[-5.054,1.302],[-3.278,2.002],[-2.122,2.302],[-2.146,3.112],[-0.998,2.11],[-0.545,1.109],[-0.603,1.121],[-0.575,1.17],[-0.624,1.194],[-0.627,1.223],[-0.706,1.232],[-0.713,1.269],[0,0],[-0.36,0.655],[-1.616,2.629],[-3.611,-5.77],[-0.39,-1.514],[-0.27,-1.53],[-0.218,-1.548],[-0.058,-1.56],[-0.018,-1.577],[0.135,-1.587],[0.276,-3.175],[1.776,-6.426],[4.04,-6.132],[0,0],[0.881,-0.494],[0.939,-0.407],[0.973,-0.314],[3.898,-1.144],[0.967,-0.008],[0.949,0.09],[1.848,0.325],[3.505,0.95],[2.973,1.72],[2.369,2.359]],"v":[[42.583,-28.589],[33.224,-27.161],[25.075,-25.402],[12.494,-20.472],[4.761,-14.098],[-1.476,-5.928],[-7.85,5.055],[-11.12,11.438],[-12.85,14.767],[-14.565,18.239],[-16.411,21.755],[-18.257,25.394],[-20.265,29.077],[-22.314,32.855],[-24.551,36.686],[-25.756,38.622],[-26.939,40.588],[-32.523,48.579],[-40.066,30.835],[-41.154,26.273],[-41.881,21.659],[-42.418,17.006],[-42.552,12.302],[-42.495,7.569],[-42.038,2.791],[-40.236,-6.824],[-31.827,-25.902],[-15.263,-42.095],[-12.623,-43.62],[-9.834,-44.904],[-7.009,-46.072],[-4.082,-46.959],[7.703,-48.571],[10.579,-48.428],[13.398,-48.14],[18.803,-46.969],[28.509,-42.845],[36.546,-36.67]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.851000019148,0.713999968884,0.282000014361,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":[148.178,110.914],"ix":2},"a":{"a":0,"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":[[-1.303,-3.421],[7.678,-3.956],[3.322,-2.697],[0.423,-0.326],[0.397,-0.418],[0.833,-0.737],[0.838,-0.785],[0.402,-0.447],[0,0],[0,0],[0,0],[0.859,-0.918],[0.869,-0.964],[0,0],[0.432,-0.51],[0.908,-1.009],[0.441,-0.536],[0,0],[0.931,-1.063],[0.954,-1.093],[0.975,-1.104],[1.007,-1.125],[1.052,-1.127],[1.078,-1.145],[1.158,-1.14],[0,0],[0.59,-0.58],[2.927,-2.224],[-0.3,6.687],[-0.205,1.647],[-0.271,1.638],[-0.315,1.64],[-0.458,1.605],[-0.505,1.603],[-0.629,1.571],[-1.633,3.039],[-0.44,0.747],[0,0],[-0.988,1.46],[-1.131,1.402],[-0.598,0.685],[0,0],[0,0],[-0.745,0.606],[-1.476,1.185],[-1.626,1.05],[-0.868,0.481],[-0.876,0.458],[-8.17,-0.07],[-3.797,-1.136],[0,0],[-0.459,-0.163],[-0.889,-0.367],[-1.597,-1.016],[-2.452,-2.683]],"o":[[-14.167,-0.756],[-3.873,2.004],[-0.412,0.354],[-0.418,0.335],[-0.799,0.791],[-0.804,0.836],[-0.426,0.371],[0,0],[0,0],[0,0],[-0.826,0.931],[-0.821,0.991],[0,0],[-0.415,0.514],[-0.851,1.032],[-0.464,0.492],[0,0],[-0.886,1.071],[-0.915,1.09],[-0.923,1.109],[-0.963,1.125],[-0.984,1.137],[-1.057,1.125],[-1.075,1.151],[0,0],[-0.544,0.592],[-2.349,2.326],[-1.657,-6.997],[0.087,-1.668],[0.203,-1.649],[0.253,-1.647],[0.406,-1.611],[0.437,-1.616],[0.585,-1.578],[1.187,-3.157],[0.403,-0.764],[0,0],[0.939,-1.487],[1.076,-1.433],[0.577,-0.695],[0,0],[0,0],[0.654,-0.652],[1.441,-1.235],[1.569,-1.133],[0.789,-0.543],[0.865,-0.486],[7.119,-3.54],[4.08,0.099],[0,0],[0.468,0.144],[0.917,0.336],[1.752,0.823],[3.22,1.947],[2.441,2.666]],"v":[[51.156,-25.51],[18.731,-19.979],[8.201,-12.915],[6.966,-11.867],[5.725,-10.813],[3.256,-8.577],[0.792,-6.152],[-0.442,-4.887],[-1.678,-3.585],[-2.943,-2.311],[-4.171,-0.915],[-6.706,1.838],[-9.226,4.781],[-10.534,6.227],[-11.799,7.773],[-14.423,10.84],[-15.736,12.417],[-17.054,14.025],[-19.798,17.214],[-22.542,20.529],[-25.428,23.829],[-28.334,27.229],[-31.406,30.615],[-34.536,34.066],[-37.859,37.512],[-39.607,39.225],[-41.339,40.969],[-49.107,47.83],[-50.855,27.378],[-50.512,22.381],[-49.82,17.441],[-48.95,12.521],[-47.691,7.679],[-46.273,2.861],[-44.469,-1.874],[-40.107,-11.153],[-38.872,-13.43],[-37.469,-15.66],[-34.562,-20.07],[-31.223,-24.313],[-29.492,-26.396],[-27.575,-28.4],[-25.63,-30.376],[-23.587,-32.291],[-19.213,-35.926],[-14.4,-39.205],[-11.853,-40.699],[-9.222,-42.087],[14.259,-47.76],[26.156,-46.1],[27.574,-45.712],[28.959,-45.221],[31.671,-44.184],[36.738,-41.548],[45.294,-34.577]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,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.696,111.275],"ix":2},"a":{"a":0,"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],[0.429,3.287],[-0.296,3.349],[-4.033,6.404],[-0.541,0.787],[-0.609,0.768],[-0.711,0.714],[-0.748,0.69],[0,0],[-0.409,0.32],[-0.857,0.609],[-1.886,1.01],[-7.848,-0.773],[-6.226,-3.075],[-4.51,-4.514],[-1.102,-1.136],[-0.98,-1.238],[-0.919,-1.27],[-0.82,-1.343],[-1.576,-6.637],[3.01,0.702],[0.721,0.203],[0,0],[1.405,0.381],[1.381,0.333],[1.308,0.401],[1.294,0.337],[1.228,0.391],[4.288,1.207],[3.308,0.349],[0.793,0.107],[0.74,0.07],[0.719,0.055],[0.711,-0.029],[3.606,-1.906],[4.116,-3.484],[2.185,-2.041]],"o":[[-1.434,-3.17],[-0.434,-3.298],[0.654,-6.668],[0.512,-0.793],[0.551,-0.783],[0.629,-0.761],[0.715,-0.708],[0,0],[0.391,-0.333],[0.821,-0.642],[1.716,-1.211],[7.759,-3.774],[7.9,0.764],[6.01,3.273],[1.149,1.105],[1.074,1.171],[0.979,1.23],[0.939,1.255],[3.231,5.421],[-3.483,-0.338],[-0.754,-0.173],[0,0],[-1.476,-0.332],[-1.406,-0.367],[-1.368,-0.36],[-1.326,-0.364],[-1.276,-0.36],[-4.948,-1.561],[-4.258,-0.935],[-0.791,-0.009],[-0.73,0.022],[-0.69,0.038],[-0.653,0.104],[-2.686,0.4],[-3.589,1.877],[-2.051,1.751],[0,0]],"v":[[-49.73,30.361],[-52.301,20.637],[-52.473,10.663],[-45.837,-9.258],[-44.275,-11.647],[-42.471,-13.945],[-40.523,-16.186],[-38.343,-18.307],[-37.215,-19.343],[-35.995,-20.307],[-33.469,-22.17],[-27.948,-25.365],[-3.451,-29.588],[17.648,-23.303],[33.617,-11.697],[36.971,-8.298],[39.992,-4.652],[42.827,-0.882],[45.358,3.105],[52.769,20.99],[43.14,19.327],[40.908,18.786],[38.68,18.288],[34.378,17.199],[30.248,16.029],[26.222,14.906],[22.341,13.721],[18.563,12.632],[4.688,8.665],[-6.752,6.596],[-9.12,6.425],[-11.297,6.396],[-13.357,6.465],[-15.382,6.68],[-24.733,9.902],[-36.352,18.157],[-42.748,23.831]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,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":[68.961,129.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 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":[[9.071,-10.821],[0.325,3.582],[-0.712,3.673],[-5.487,6.08],[-7.523,2.766],[-1.901,0.468],[-1.923,0.369],[-1.899,0.178],[-0.924,0.01],[0,0],[0,0],[-0.903,-0.07],[-1.779,-0.233],[-1.72,-0.37],[0,0],[-0.826,-0.248],[-1.626,-0.548],[-1.571,-0.627],[-1.53,-0.691],[-1.451,-0.825],[-1.426,-0.841],[-1.343,-0.978],[-1.309,-1.011],[-1.24,-1.11],[-3.78,-6.088],[3.291,-0.04],[0.8,0.028],[0,0],[1.566,0.042],[0,0],[1.492,0.098],[1.468,0.111],[1.429,0.12],[1.409,0.121],[1.375,0.117],[0,0],[0.67,0.011],[1.319,0.114],[0.65,0.068],[0,0],[1.268,0.107],[1.226,0.059],[0.601,0.015],[0,0],[0,0],[0,0],[0.283,-0.007],[1.137,0.007],[1.096,-0.027],[0.525,-0.055],[0.527,-0.049],[0.496,-0.095],[0,0],[0.494,-0.099],[0,0],[1.049,-0.215],[0,0],[0.464,-0.231]],"o":[[-1.616,-3.271],[-0.315,-3.596],[1.374,-7.352],[5.452,-6.142],[1.874,-0.64],[1.896,-0.453],[1.886,-0.241],[0.959,-0.114],[0,0],[0,0],[0.912,0.046],[1.796,0.171],[1.734,0.316],[0,0],[0.838,0.213],[1.651,0.49],[1.642,0.506],[1.557,0.652],[1.487,0.772],[1.459,0.8],[1.378,0.932],[1.351,0.956],[1.306,1.017],[4.94,4.479],[-3.627,0.52],[-0.824,0.012],[0,0],[-1.617,0.025],[0,0],[-1.533,-0.042],[-1.501,-0.073],[-1.462,-0.079],[-1.439,-0.088],[-1.401,-0.079],[0,0],[-0.685,-0.057],[-1.344,-0.057],[-0.66,-0.049],[0,0],[-1.282,-0.051],[-1.24,-0.025],[-0.609,-0.028],[0,0],[0,0],[0,0],[-0.292,-0.004],[-1.123,0.055],[-1.071,0.106],[-0.566,-0.01],[-0.514,0.077],[-0.546,0.019],[0,0],[-0.533,0.047],[0,0],[-1.009,0.199],[0,0],[-0.484,0.181],[-8.005,2.858]],"v":[[-58.792,29.655],[-61.489,19.251],[-60.888,8.3],[-50.376,-12.454],[-30.101,-25.873],[-24.398,-27.656],[-18.661,-28.872],[-12.98,-29.495],[-10.169,-29.636],[-7.387,-29.656],[-4.604,-29.633],[-1.898,-29.421],[3.48,-28.844],[8.666,-27.834],[11.24,-27.277],[13.726,-26.561],[18.647,-25.019],[23.381,-23.162],[28.008,-21.127],[32.417,-18.753],[36.732,-16.252],[40.823,-13.416],[44.805,-10.443],[48.578,-7.177],[61.804,8.423],[51.502,9.133],[49.053,9.14],[46.616,9.179],[41.852,9.127],[37.218,8.93],[32.673,8.743],[28.235,8.424],[23.885,8.168],[19.625,7.798],[15.457,7.522],[13.402,7.337],[11.373,7.167],[7.383,6.895],[5.412,6.716],[3.484,6.641],[-0.336,6.386],[-4.025,6.285],[-5.854,6.19],[-7.619,6.211],[-9.383,6.189],[-10.266,6.161],[-11.113,6.201],[-14.499,6.277],[-17.739,6.503],[-19.309,6.674],[-20.878,6.831],[-22.406,7.055],[-23.932,7.276],[-25.427,7.561],[-26.929,7.861],[-29.915,8.606],[-31.381,9.096],[-32.897,9.596]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.851000019148,0.713999968884,0.282000014361,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":[62.054,147.652],"ix":2},"a":{"a":0,"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":[[3.206,-1.336],[0,0],[1.336,3.206],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.337],[0,0],[-1.337,-3.205],[0,0],[3.205,-1.337],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.947,7.965],[-10.171,4.581],[-10.413,4.001],[-7.03,-4.222],[1.948,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[57.64,9.553],"ix":2},"a":{"a":0,"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":[[3.206,-1.336],[0,0],[1.337,3.206],[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.337],[0,0],[-1.337,-3.206],[0,0],[3.206,-1.337],[0,0],[1.337,3.205]],"v":[[7.03,4.222],[-1.947,7.965],[-10.171,4.581],[-10.413,4.002],[-7.031,-4.222],[1.948,-7.965],[10.172,-4.583],[10.413,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.219999994016,0.071000005685,0.063000002094,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":[72.846,17.043],"ix":2},"a":{"a":0,"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":[[3.206,-1.337],[0,0],[1.337,3.205],[0,0],[-3.206,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.337],[0,0],[-1.337,-3.205],[0,0],[3.206,-1.337],[0,0],[1.337,3.205]],"v":[[7.03,4.222],[-1.947,7.965],[-10.171,4.581],[-10.413,4.001],[-7.029,-4.222],[1.948,-7.965],[10.172,-4.583],[10.413,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[52.261,25.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 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":[[3.206,-1.336],[0,0],[1.337,3.206],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.337],[0,0],[-1.337,-3.205],[0,0],[3.206,-1.337],[0,0],[1.337,3.205]],"v":[[7.03,4.222],[-1.947,7.965],[-10.171,4.581],[-10.413,4.001],[-7.031,-4.222],[1.948,-7.965],[10.172,-4.583],[10.413,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,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":[87.871,25.324],"ix":2},"a":{"a":0,"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":[[3.206,-1.336],[0,0],[1.337,3.205],[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.336],[0,0],[-1.337,-3.206],[0,0],[3.206,-1.337],[0,0],[1.337,3.206]],"v":[[7.03,4.222],[-1.947,7.967],[-10.171,4.583],[-10.413,4.002],[-7.031,-4.222],[1.948,-7.965],[10.172,-4.583],[10.413,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[67.286,33.907],"ix":2},"a":{"a":0,"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":[[3.206,-1.336],[0,0],[1.337,3.206],[0,0],[-3.206,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.337],[0,0],[-1.337,-3.206],[0,0],[3.206,-1.337],[0,0],[1.337,3.205]],"v":[[7.03,4.222],[-1.947,7.965],[-10.171,4.581],[-10.413,4.002],[-7.029,-4.222],[1.948,-7.965],[10.172,-4.583],[10.413,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[46.701,42.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 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":[[3.206,-1.337],[0,0],[1.336,3.205],[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0],[3.205,-1.337],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.948,7.965],[-10.171,4.581],[-10.413,4.001],[-7.03,-4.223],[1.948,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.219999994016,0.071000005685,0.063000002094,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.59,143.219],"ix":2},"a":{"a":0,"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":[[3.206,-1.336],[0,0],[1.336,3.205],[0,0],[-3.205,1.337],[0,0],[-1.337,-3.206],[0,0]],"o":[[0,0],[-3.206,1.336],[0,0],[-1.337,-3.205],[0,0],[3.205,-1.336],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.947,7.966],[-10.171,4.582],[-10.413,4.001],[-7.03,-4.223],[1.948,-7.966],[10.172,-4.582],[10.414,-4.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[117.917,127.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 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":[[3.206,-1.337],[0,0],[1.337,3.205],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.336],[0,0],[-1.337,-3.205],[0,0],[3.205,-1.336],[0,0],[1.336,3.205]],"v":[[7.03,4.223],[-1.947,7.966],[-10.171,4.582],[-10.413,4.001],[-7.03,-4.222],[1.948,-7.966],[10.172,-4.582],[10.414,-4.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,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":[97.332,135.601],"ix":2},"a":{"a":0,"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":[[3.206,-1.336],[0,0],[1.337,3.205],[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.336],[0,0],[-1.337,-3.206],[0,0],[3.205,-1.337],[0,0],[1.337,3.206]],"v":[[7.03,4.222],[-1.947,7.967],[-10.171,4.583],[-10.413,4.002],[-7.031,-4.222],[1.948,-7.965],[10.172,-4.583],[10.413,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[123.362,110.44],"ix":2},"a":{"a":0,"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":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.206,-1.336],[0,0],[1.337,3.206],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.337],[0,0],[-1.337,-3.205],[0,0],[3.206,-1.337],[0,0],[1.337,3.205]],"v":[[7.03,4.222],[-1.947,7.965],[-10.171,4.581],[-10.413,4.001],[-7.031,-4.222],[1.948,-7.965],[10.172,-4.583],[10.413,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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.777,119.023],"ix":2},"a":{"a":0,"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":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.206,-1.336],[0,0],[1.337,3.206],[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.337],[0,0],[-1.337,-3.206],[0,0],[3.206,-1.337],[0,0],[1.337,3.206]],"v":[[7.03,4.222],[-1.947,7.965],[-10.171,4.581],[-10.413,4.002],[-7.031,-4.222],[1.948,-7.965],[10.172,-4.583],[10.413,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.219999994016,0.071000005685,0.063000002094,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":[82.192,127.606],"ix":2},"a":{"a":0,"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":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.205,-1.336],[0,0],[1.336,3.205],[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.205,1.336],[0,0],[-1.337,-3.206],[0,0],[3.205,-1.337],[0,0],[1.336,3.206]],"v":[[7.03,4.222],[-1.948,7.967],[-10.171,4.583],[-10.413,4.002],[-7.03,-4.222],[1.948,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[118.279,98.251],"ix":2},"a":{"a":0,"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":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.206,-1.336],[0,0],[1.336,3.206],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.205,1.337],[0,0],[-1.337,-3.206],[0,0],[3.205,-1.337],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.948,7.965],[-10.171,4.581],[-10.413,4.002],[-7.03,-4.222],[1.948,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,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":[97.694,106.835],"ix":2},"a":{"a":0,"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":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.206,-1.336],[0,0],[1.336,3.205],[0,0],[-3.205,1.337],[0,0],[-1.337,-3.206],[0,0]],"o":[[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0],[3.205,-1.337],[0,0],[1.336,3.206]],"v":[[7.03,4.222],[-1.948,7.967],[-10.171,4.583],[-10.413,4.002],[-7.03,-4.222],[1.948,-7.965],[10.172,-4.581],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[77.109,115.418],"ix":2},"a":{"a":0,"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":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.205,-1.336],[0,0],[1.336,3.205],[0,0],[-3.205,1.337],[0,0],[-1.337,-3.206],[0,0]],"o":[[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0],[3.206,-1.337],[0,0],[1.336,3.206]],"v":[[7.03,4.222],[-1.948,7.967],[-10.171,4.583],[-10.413,4.002],[-7.03,-4.222],[1.947,-7.965],[10.172,-4.581],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.219999994016,0.071000005685,0.063000002094,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":[113.197,86.063],"ix":2},"a":{"a":0,"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 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.205,-1.336],[0,0],[1.336,3.206],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.205,1.337],[0,0],[-1.337,-3.206],[0,0],[3.206,-1.337],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.948,7.965],[-10.171,4.581],[-10.413,4.002],[-7.03,-4.222],[1.947,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[92.612,94.646],"ix":2},"a":{"a":0,"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 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.205,-1.337],[0,0],[1.336,3.205],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0],[3.206,-1.337],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.948,7.965],[-10.171,4.581],[-10.413,4.001],[-7.03,-4.222],[1.947,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[72.027,103.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 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.206,-1.337],[0,0],[1.337,3.205],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.337],[0,0],[-1.337,-3.205],[0,0],[3.205,-1.337],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.947,7.965],[-10.171,4.581],[-10.413,4.001],[-7.03,-4.222],[1.948,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.952999997606,0.713999968884,0.630999995213,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":[108.115,73.875],"ix":2},"a":{"a":0,"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 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.206,-1.336],[0,0],[1.337,3.206],[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.337],[0,0],[-1.337,-3.206],[0,0],[3.206,-1.337],[0,0],[1.337,3.205]],"v":[[7.03,4.222],[-1.947,7.965],[-10.171,4.581],[-10.413,4.002],[-7.031,-4.222],[1.948,-7.965],[10.172,-4.583],[10.413,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[87.53,82.458],"ix":2},"a":{"a":0,"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 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.206,-1.337],[0,0],[1.337,3.205],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.337],[0,0],[-1.337,-3.205],[0,0],[3.206,-1.337],[0,0],[1.337,3.205]],"v":[[7.03,4.222],[-1.947,7.965],[-10.171,4.581],[-10.413,4.001],[-7.031,-4.222],[1.948,-7.965],[10.172,-4.583],[10.413,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.8,0.490000017952,0.426999978458,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":[66.945,91.041],"ix":2},"a":{"a":0,"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 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.205,-1.337],[0,0],[1.336,3.205],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0],[3.205,-1.337],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.948,7.965],[-10.171,4.581],[-10.413,4.001],[-7.03,-4.222],[1.948,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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.033,61.686],"ix":2},"a":{"a":0,"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 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.206,-1.336],[0,0],[1.336,3.206],[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.205,1.337],[0,0],[-1.337,-3.206],[0,0],[3.205,-1.337],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.948,7.965],[-10.171,4.581],[-10.413,4.002],[-7.03,-4.222],[1.948,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.219999994016,0.071000005685,0.063000002094,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":[82.448,70.269],"ix":2},"a":{"a":0,"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 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.206,-1.337],[0,0],[1.336,3.205],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0],[3.205,-1.337],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.948,7.965],[-10.171,4.581],[-10.413,4.001],[-7.03,-4.222],[1.948,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[61.863,78.853],"ix":2},"a":{"a":0,"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 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.205,-1.337],[0,0],[1.336,3.205],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0],[3.206,-1.337],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.948,7.965],[-10.171,4.581],[-10.413,4.001],[-7.03,-4.222],[1.947,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.219999994016,0.071000005685,0.063000002094,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":[97.951,49.498],"ix":2},"a":{"a":0,"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 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.205,-1.336],[0,0],[1.336,3.206],[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.205,1.337],[0,0],[-1.337,-3.206],[0,0],[3.206,-1.337],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.948,7.965],[-10.171,4.581],[-10.413,4.002],[-7.03,-4.222],[1.947,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[77.366,58.081],"ix":2},"a":{"a":0,"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 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.205,-1.336],[0,0],[1.336,3.205],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0],[3.206,-1.337],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.948,7.965],[-10.171,4.581],[-10.413,4.001],[-7.03,-4.222],[1.947,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.952999997606,0.713999968884,0.630999995213,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":[56.781,66.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 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.206,-1.337],[0,0],[1.336,3.205],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.337],[0,0],[-1.337,-3.205],[0,0],[3.205,-1.337],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.947,7.965],[-10.171,4.581],[-10.413,4.001],[-7.03,-4.222],[1.948,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[92.868,37.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 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.206,-1.336],[0,0],[1.337,3.206],[0,0],[-3.205,1.337],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.337],[0,0],[-1.337,-3.206],[0,0],[3.205,-1.337],[0,0],[1.336,3.205]],"v":[[7.03,4.222],[-1.947,7.965],[-10.171,4.581],[-10.413,4.002],[-7.03,-4.222],[1.948,-7.965],[10.172,-4.583],[10.414,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.952999997606,0.713999968884,0.630999995213,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":[72.283,45.892],"ix":2},"a":{"a":0,"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 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.206,-1.336],[0,0],[1.337,3.206],[0,0],[-3.205,1.336],[0,0],[-1.337,-3.205],[0,0]],"o":[[0,0],[-3.206,1.337],[0,0],[-1.337,-3.205],[0,0],[3.206,-1.337],[0,0],[1.337,3.205]],"v":[[7.03,4.222],[-1.947,7.965],[-10.171,4.581],[-10.413,4.001],[-7.031,-4.222],[1.948,-7.965],[10.172,-4.583],[10.413,-4.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.219999994016,0.071000005685,0.063000002094,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":[51.699,54.476],"ix":2},"a":{"a":0,"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 35","np":2,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-16.135,-38.697],[16.135,38.697]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.6,0.226999993418,0.136999990426,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":62.205,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[85.453,76.516],"ix":2},"a":{"a":0,"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 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Maple Tree Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":38.463,"s":[104]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":54.258,"s":[-17]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68.924,"s":[8]},{"i":{"x":[0.815],"y":[1]},"o":{"x":[0.212],"y":[0]},"t":77.949,"s":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":174,"s":[0]},{"t":190,"s":[104]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":136,"s":[276.749,468.688,0],"to":[0,3.333,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":146,"s":[276.749,488.688,0],"to":[0,0,0],"ti":[0,3.333,0]},{"t":161,"s":[276.749,468.688,0]}],"ix":2},"a":{"a":0,"k":[77.243,402.288,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":34,"s":[0,0,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":52,"s":[100,90,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":69,"s":[100,106,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":77.949,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":174,"s":[100,100,100]},{"t":196,"s":[0,0,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":[[10.834,9.76],[-10.834,-9.76]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2.931,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[66.127,159.91],"ix":2},"a":{"a":0,"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":[[-13.219,14.564],[13.219,5.652],[-5.427,-11.381],[-8.911,-14.564]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.102,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[42.343,144.72],"ix":2},"a":{"a":0,"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]],"o":[[0,0],[0,0]],"v":[[-3.247,13.566],[3.247,-13.566]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.102,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[58.844,136.765],"ix":2},"a":{"a":0,"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":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.442,-0.204],[0.107,-1.219],[0.205,-1.115],[0.802,-1.813],[2.646,-2.513],[3.735,-1.353],[2.223,-0.298],[1.249,-0.002],[1.446,0.209],[-0.105,1.222],[-0.202,1.118],[-0.803,1.812],[-2.664,2.496],[-3.739,1.348],[-2.22,0.3],[-1.245,0.006]],"o":[[0.111,1.452],[-0.085,1.243],[-0.442,2.196],[-1.584,3.646],[-2.661,2.498],[-1.86,0.684],[-1.129,0.13],[-1.226,0.027],[-0.116,-1.457],[0.083,-1.245],[0.439,-2.199],[1.589,-3.641],[2.677,-2.48],[1.861,-0.684],[1.126,-0.134],[1.224,-0.029]],"v":[[15.976,-14.985],[15.977,-10.982],[15.506,-7.482],[13.643,-1.467],[7.21,7.679],[-2.309,13.536],[-8.434,15.007],[-11.964,15.244],[-15.968,14.975],[-15.981,10.96],[-15.518,7.454],[-13.656,1.436],[-7.202,-7.688],[2.335,-13.523],[8.458,-14.997],[11.98,-15.243]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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":[39.325,165.824],"ix":2},"a":{"a":0,"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":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.772,1.234],[-1.002,0.703],[-0.985,0.561],[-1.903,0.553],[-3.627,-0.407],[-3.44,-1.987],[-1.659,-1.509],[-0.805,-0.954],[-0.772,-1.241],[1.003,-0.705],[0.986,-0.565],[1.903,-0.553],[3.624,0.431],[3.439,1.994],[1.66,1.505],[0.806,0.949]],"o":[[1.04,-1.02],[1.006,-0.735],[1.965,-1.076],[3.81,-1.136],[3.624,0.427],[1.721,0.982],[0.826,0.78],[0.81,0.92],[-1.04,1.027],[-1.006,0.739],[-1.965,1.08],[-3.809,1.128],[-3.622,-0.452],[-1.721,-0.983],[-0.827,-0.776],[-0.811,-0.917]],"v":[[-21.745,-2.589],[-18.684,-5.166],[-15.704,-7.059],[-9.901,-9.507],[1.24,-10.472],[11.848,-6.96],[16.919,-3.222],[19.372,-0.674],[21.745,2.564],[18.681,5.158],[15.699,7.062],[9.896,9.512],[-1.24,10.449],[-11.846,6.907],[-16.916,3.17],[-19.37,0.633]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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":[33.563,148.301],"ix":2},"a":{"a":0,"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":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.418,0.729],[-0.809,1.125],[-0.854,0.989],[-1.885,1.434],[-4.247,1.418],[-4.743,-0.092],[-2.534,-0.539],[-1.33,-0.459],[-1.42,-0.736],[0.807,-1.128],[0.852,-0.993],[1.885,-1.434],[4.254,-1.396],[4.745,0.097],[2.532,0.536],[1.328,0.456]],"o":[[0.709,-1.428],[0.798,-1.155],[1.72,-1.934],[3.76,-2.895],[4.252,-1.402],[2.368,0.034],[1.275,0.294],[1.319,0.428],[-0.706,1.434],[-0.798,1.159],[-1.719,1.938],[-3.764,2.888],[-4.26,1.378],[-2.368,-0.036],[-1.274,-0.289],[-1.318,-0.426]],"v":[[-25.518,8.403],[-23.24,4.58],[-20.747,1.412],[-15.34,-3.643],[-3.29,-9.994],[10.169,-12.063],[17.521,-11.201],[21.411,-10.121],[25.518,-8.38],[23.247,-4.541],[20.755,-1.364],[15.35,3.695],[3.29,10.018],[-10.178,12.058],[-17.529,11.198],[-21.417,10.129]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.948999980852,0.666999966491,0.592000026329,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":[29.79,159.246],"ix":2},"a":{"a":0,"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":3,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[54.663,149.581],"ix":2},"a":{"a":0,"k":[54.663,149.581],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":105,"s":[-12]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":131,"s":[5]},{"t":158,"s":[0]}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 45","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.456,-0.021],[0.081,1.221],[-0.031,1.133],[-0.513,1.915],[-2.229,2.89],[-3.482,1.91],[-2.15,0.636],[-1.233,0.195],[-1.462,0.016],[-0.084,-1.223],[0.028,-1.136],[0.515,-1.914],[2.248,-2.875],[3.489,-1.907],[2.148,-0.638],[1.23,-0.197]],"o":[[-0.333,-1.418],[-0.107,-1.241],[0.099,-2.238],[1.005,-3.846],[2.245,-2.877],[1.733,-0.963],[1.096,-0.302],[1.208,-0.215],[0.338,1.423],[0.11,1.244],[-0.096,2.24],[-1.009,3.842],[-2.265,2.862],[-1.733,0.962],[-1.092,0.305],[-1.204,0.217]],"v":[[-13.486,17.258],[-14.103,13.303],[-14.176,9.773],[-13.26,3.542],[-8.309,-6.484],[0.195,-13.734],[6.02,-16.13],[9.472,-16.908],[13.472,-17.258],[14.101,-13.293],[14.182,-9.756],[13.268,-3.523],[8.295,6.484],[-0.234,13.716],[-6.058,16.114],[-9.501,16.898]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[69.51,132.789],"ix":2},"a":{"a":0,"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":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.922,1.127],[-0.987,-0.724],[-0.847,-0.754],[-1.135,-1.625],[-0.777,-3.566],[0.78,-3.895],[0.898,-2.055],[0.645,-1.068],[0.929,-1.129],[0.99,0.724],[0.851,0.753],[1.133,1.625],[0.753,3.571],[-0.787,3.896],[-0.894,2.054],[-0.641,1.068]],"o":[[1.299,0.658],[1.018,0.717],[1.649,1.516],[2.296,3.245],[0.756,3.57],[-0.379,1.946],[-0.474,1.033],[-0.612,1.062],[-1.306,-0.657],[-1.022,-0.716],[-1.653,-1.516],[-2.29,-3.247],[-0.732,-3.575],[0.379,-1.945],[0.47,-1.032],[0.61,-1.061]],"v":[[-4.538,-21.425],[-1.115,-19.35],[1.633,-17.133],[5.811,-12.421],[10.295,-2.178],[10.367,8.997],[8.449,14.998],[6.822,18.139],[4.515,21.425],[1.076,19.353],[-1.682,17.138],[-5.863,12.427],[-10.318,2.177],[-10.36,-9.004],[-8.446,-15.004],[-6.83,-18.143]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[51.536,128.629],"ix":2},"a":{"a":0,"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":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.358,0.834],[-0.543,-1.275],[-0.403,-1.242],[-0.249,-2.356],[0.988,-4.367],[2.537,-4.008],[1.775,-1.887],[1.082,-0.899],[1.365,-0.833],[0.546,1.275],[0.408,1.243],[0.248,2.356],[-1.013,4.361],[-2.545,4.007],[-1.771,1.888],[-1.078,0.899]],"o":[[0.853,1.346],[0.573,1.281],[0.761,2.474],[0.526,4.717],[-1.007,4.363],[-1.258,2.007],[-0.912,0.937],[-1.05,0.906],[-0.86,-1.348],[-0.578,-1.283],[-0.765,-2.475],[-0.519,-4.715],[1.03,-4.357],[1.258,-2.006],[0.908,-0.938],[1.047,-0.906]],"v":[[6.069,-26.171],[8.157,-22.241],[9.573,-18.467],[11.09,-11.222],[10.274,2.375],[5.064,14.955],[0.512,20.796],[-2.427,23.562],[-6.046,26.171],[-8.149,22.238],[-9.576,18.461],[-11.097,11.215],[-10.25,-2.375],[-5.012,-14.949],[-0.465,-20.79],[2.465,-23.558]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[62.096,123.882],"ix":2},"a":{"a":0,"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":3,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[55.21,149.543],"ix":2},"a":{"a":0,"k":[55.21,149.543],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":105,"s":[10]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":131,"s":[-6]},{"t":158,"s":[0]}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 44","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.697,-1.279],[1.104,0.528],[0.972,0.583],[1.416,1.387],[1.425,3.36],[-0.044,3.972],[-0.501,2.186],[-0.435,1.171],[-0.703,1.282],[-1.107,-0.527],[-0.976,-0.582],[-1.416,-1.387],[-1.403,-3.369],[0.05,-3.974],[0.498,-2.184],[0.431,-1.168]],"o":[[-1.399,-0.406],[-1.133,-0.516],[-1.902,-1.185],[-2.859,-2.762],[-1.406,-3.368],[0.011,-1.982],[0.274,-1.102],[0.405,-1.157],[1.406,0.403],[1.138,0.514],[1.905,1.182],[2.852,2.765],[1.383,3.378],[-0.012,1.983],[-0.27,1.101],[-0.402,1.156]],"v":[[8.435,20.212],[4.686,18.81],[1.575,17.142],[-3.405,13.286],[-9.712,4.053],[-11.857,-6.914],[-11.086,-13.167],[-10.071,-16.556],[-8.414,-20.212],[-4.65,-18.815],[-1.528,-17.15],[3.455,-13.296],[9.734,-4.052],[11.851,6.927],[11.083,13.178],[10.078,16.562]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976000019148,0.791999966491,0.607999973671,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":[41.248,124.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 10","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.53,1.356],[-1.115,0.505],[-1.073,0.368],[-1.972,0.191],[-3.488,-1.073],[-3.011,-2.591],[-1.349,-1.791],[-0.615,-1.087],[-0.528,-1.363],[1.116,-0.507],[1.074,-0.372],[1.972,-0.19],[3.481,1.096],[3.009,2.598],[1.351,1.786],[0.617,1.083]],"o":[[1.211,-0.81],[1.125,-0.535],[2.13,-0.692],[3.954,-0.408],[3.482,1.092],[1.509,1.285],[0.668,0.92],[0.624,1.054],[-1.213,0.816],[-1.126,0.54],[-2.132,0.696],[-3.952,0.402],[-3.475,-1.116],[-1.508,-1.285],[-0.669,-0.916],[-0.625,-1.051]],"v":[[-20.889,-6.579],[-17.402,-8.544],[-14.122,-9.851],[-7.967,-11.179],[3.16,-10.06],[12.932,-4.64],[17.219,-0.025],[19.16,2.934],[20.889,6.556],[17.397,8.536],[14.115,9.853],[7.958,11.185],[-3.16,10.037],[-12.924,4.588],[-17.212,-0.023],[-19.155,-2.973]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976000019148,0.791999966491,0.607999973671,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":[28.812,138.389],"ix":2},"a":{"a":0,"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":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.061,1.593],[-1.377,-0.152],[-1.281,-0.258],[-2.174,-0.939],[-3.32,-3.004],[-2.247,-4.178],[-0.773,-2.473],[-0.251,-1.384],[-0.057,-1.598],[1.378,0.15],[1.283,0.255],[2.174,0.939],[3.303,3.022],[2.243,4.182],[0.776,2.469],[0.255,1.381]],"o":[[1.592,-0.083],[1.398,0.129],[2.528,0.55],[4.368,1.856],[3.308,3.017],[1.132,2.08],[0.37,1.255],[0.274,1.359],[-1.597,0.088],[-1.401,-0.126],[-2.532,-0.547],[-4.363,-1.862],[-3.292,-3.036],[-1.131,-2.082],[-0.372,-1.252],[-0.276,-1.358]],"v":[[-19.833,-18.121],[-15.384,-18.013],[-11.4,-17.394],[-4.343,-15.163],[7.104,-7.779],[15.51,2.933],[18.366,9.764],[19.334,13.683],[19.833,18.116],[15.373,18.019],[11.382,17.408],[4.322,15.18],[-7.104,7.774],[-15.491,-2.96],[-18.349,-9.788],[-19.324,-13.7]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976000019148,0.791999966491,0.607999973671,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":[29.87,126.829],"ix":2},"a":{"a":0,"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":3,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[53.313,148.794],"ix":2},"a":{"a":0,"k":[53.313,148.794],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":105,"s":[9]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":131,"s":[-7]},{"t":158,"s":[0]}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 43","np":3,"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]],"o":[[0,0],[0,0]],"v":[[-16.951,8.79],[16.951,-8.79]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2.931,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[93.647,181.754],"ix":2},"a":{"a":0,"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":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":[[-16.244,-18.257],[-17.484,18.257],[11.979,3.237],[17.484,0.43]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.443,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[127.689,154.936],"ix":2},"a":{"a":0,"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":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]],"o":[[0,0],[0,0]],"v":[[-15.138,-10.224],[15.138,10.224]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.443,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[125.374,183.479],"ix":2},"a":{"a":0,"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":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.913,-1.674],[1.445,0.693],[1.272,0.764],[1.862,1.814],[1.857,4.404],[-0.059,5.201],[-0.67,2.867],[-0.571,1.532],[-0.342,0.79],[-0.512,0.86],[-0.875,-0.282],[-0.724,-0.346],[-1.277,-0.763],[-1.86,-1.814],[-1.831,-4.415],[0.066,-5.204],[0.668,-2.866],[0.567,-1.53]],"o":[[-1.831,-0.532],[-1.485,-0.676],[-2.504,-1.547],[-3.736,-3.621],[-1.84,-4.41],[0.024,-2.599],[0.36,-1.444],[0.266,-0.758],[0.416,-0.82],[0.969,0.244],[0.802,0.314],[1.49,0.674],[2.507,1.546],[3.731,3.625],[1.814,4.421],[-0.026,2.599],[-0.355,1.441],[-0.528,1.514]],"v":[[11.03,26.476],[6.122,24.636],[2.049,22.449],[-4.47,17.395],[-12.722,5.299],[-15.521,-9.066],[-14.506,-17.252],[-13.173,-21.689],[-12.238,-24.02],[-10.999,-26.476],[-8.385,-25.623],[-6.073,-24.644],[-1.987,-22.462],[4.536,-17.411],[12.752,-5.299],[15.514,9.081],[14.504,17.266],[13.184,21.697]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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.721,146.18],"ix":2},"a":{"a":0,"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":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.869,0.379],[-0.4,-1.552],[-0.234,-1.466],[0.189,-2.592],[2.174,-4.257],[4.019,-3.303],[2.625,-1.333],[1.54,-0.549],[0.825,-0.246],[0.987,-0.162],[0.346,0.852],[0.202,0.777],[0.239,1.469],[-0.192,2.591],[-2.198,4.243],[-4.025,3.3],[-2.623,1.334],[-1.535,0.551]],"o":[[0.771,1.744],[0.438,1.572],[0.429,2.911],[-0.365,5.191],[-2.191,4.248],[-2.002,1.655],[-1.336,0.655],[-0.751,0.285],[-0.896,0.209],[-0.438,-0.899],[-0.277,-0.816],[-0.443,-1.574],[-0.431,-2.912],[0.371,-5.189],[2.215,-4.236],[2.006,-1.653],[1.332,-0.656],[1.497,-0.571]],"v":[[13.186,-25.475],[14.937,-20.535],[15.886,-16.008],[16.216,-7.768],[12.274,6.335],[3.084,17.725],[-3.833,22.219],[-8.085,24.055],[-10.471,24.84],[-13.148,25.475],[-14.178,22.925],[-14.918,20.525],[-15.879,15.993],[-16.213,7.751],[-12.236,-6.333],[-3.011,-17.706],[3.902,-22.203],[8.143,-24.046]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[122.862,147.18],"ix":2},"a":{"a":0,"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":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.592,1.401],[-1.033,-1.51],[-0.82,-1.501],[-0.9,-2.971],[0.215,-5.859],[2.294,-5.774],[1.839,-2.858],[1.176,-1.418],[1.601,-1.4],[1.037,1.509],[0.825,1.501],[0.897,2.972],[-0.246,5.858],[-2.304,5.773],[-1.836,2.858],[-1.17,1.419]],"o":[[1.471,1.528],[1.048,1.51],[1.595,3],[1.818,5.943],[-0.238,5.858],[-1.141,2.887],[-0.948,1.428],[-1.158,1.419],[-1.48,-1.528],[-1.054,-1.511],[-1.597,-3],[-1.81,-5.942],[0.27,-5.857],[1.144,-2.887],[0.942,-1.428],[1.153,-1.419]],"v":[[1.472,-35.148],[5.111,-30.596],[7.847,-26.082],[11.557,-17.126],[13.798,0.571],[10.14,18.024],[5.699,26.642],[2.584,30.914],[-1.441,35.148],[-5.101,30.596],[-7.851,26.081],[-11.564,17.124],[-13.766,-0.571],[-10.07,-18.022],[-5.632,-26.64],[-2.532,-30.913]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[111.154,137.506],"ix":2},"a":{"a":0,"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":3,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[110.841,172.429],"ix":2},"a":{"a":0,"k":[110.841,172.429],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":105,"s":[-15]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":131,"s":[9]},{"t":158,"s":[0]}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 42","np":3,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.645,1.795],[-1.535,-0.462],[-1.375,-0.559],[-2.119,-1.506],[-2.513,-4.066],[-0.741,-5.148],[0.222,-2.936],[0.328,-1.601],[0.217,-0.833],[0.373,-0.929],[0.909,0.145],[0.768,0.23],[1.38,0.558],[2.116,1.508],[2.488,4.081],[0.736,5.152],[-0.218,2.935],[-0.324,1.599]],"o":[[1.892,0.245],[1.57,0.44],[2.712,1.144],[4.249,3.004],[2.496,4.075],[0.376,2.571],[-0.134,1.482],[-0.146,0.789],[-0.285,0.875],[-0.996,-0.092],[-0.841,-0.187],[-1.576,-0.438],[-2.714,-1.141],[-4.244,-3.007],[-2.473,-4.09],[-0.373,-2.572],[0.129,-1.479],[0.289,-1.576]],"v":[[-14.971,-24.468],[-9.838,-23.404],[-5.477,-21.869],[1.74,-17.878],[11.755,-7.194],[16.729,6.569],[16.985,14.815],[16.351,19.404],[15.785,21.85],[14.938,24.468],[12.223,24.027],[9.788,23.415],[5.415,21.886],[-1.807,17.898],[-11.786,7.194],[-16.729,-6.59],[-16.989,-14.833],[-16.365,-19.415]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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.36,198.376],"ix":2},"a":{"a":0,"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":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.958,-1.649],[1.342,-0.877],[1.314,-0.692],[2.516,-0.652],[4.729,0.695],[4.416,2.748],[2.105,2.059],[1.013,1.282],[0.497,0.703],[0.471,0.883],[-0.696,0.602],[-0.671,0.44],[-1.314,0.698],[-2.516,0.649],[-4.725,-0.723],[-4.415,-2.755],[-2.104,-2.057],[-1.014,-1.277]],"o":[[-1.405,1.29],[-1.348,0.918],[-2.621,1.339],[-5.035,1.317],[-4.725,-0.714],[-2.209,-1.367],[-1.048,-1.057],[-0.51,-0.62],[-0.486,-0.781],[0.712,-0.704],[0.683,-0.523],[1.35,-0.924],[2.621,-1.341],[5.034,-1.311],[4.72,0.741],[2.209,1.37],[1.049,1.052],[1.021,1.236]],"v":[[28.351,4.324],[24.231,7.566],[20.248,9.915],[12.549,12.868],[-2.074,13.652],[-15.808,8.596],[-22.283,3.484],[-25.385,0.044],[-26.891,-1.964],[-28.351,-4.296],[-26.265,-6.09],[-24.229,-7.559],[-20.244,-9.922],[-12.542,-12.879],[2.075,-13.624],[15.801,-8.529],[22.277,-3.422],[25.381,0.005]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[138.719,178.235],"ix":2},"a":{"a":0,"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":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.372,-2.088],[1.826,-0.1],[1.708,0.077],[3.007,0.771],[4.899,3.222],[3.747,4.956],[1.489,3.055],[0.603,1.741],[0.368,2.096],[-1.828,0.104],[-1.711,-0.073],[-3.005,-0.773],[-4.881,-3.249],[-3.741,-4.963],[-1.491,-3.053],[-0.605,-1.736]],"o":[[-2.069,0.465],[-1.835,0.114],[-3.392,-0.192],[-6.025,-1.527],[-4.885,-3.242],[-1.877,-2.472],[-0.73,-1.55],[-0.614,-1.726],[2.076,-0.473],[1.839,-0.118],[3.394,0.19],[6.021,1.534],[4.868,3.268],[1.875,2.475],[0.733,1.546],[0.616,1.722]],"v":[[29.299,19.481],[23.52,20.232],[18.241,20.231],[8.66,18.759],[-7.634,11.499],[-20.661,-0.678],[-25.726,-8.945],[-27.764,-13.823],[-29.299,-19.46],[-23.508,-20.229],[-18.221,-20.239],[-8.638,-18.771],[7.635,-11.478],[20.64,0.732],[25.708,8.995],[27.753,13.862]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.647000002394,0.224000010771,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":[139.667,193.398],"ix":2},"a":{"a":0,"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 21","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[109.857,171.872],"ix":2},"a":{"a":0,"k":[109.857,171.872],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":105,"s":[13]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":131,"s":[-10.377]},{"t":158,"s":[0]}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 41","np":3,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.247,1.443],[-1.156,1.11],[-1.162,0.924],[-2.351,1.108],[-4.775,0.194],[-4.85,-1.88],[-2.449,-1.634],[-1.235,-1.072],[-0.619,-0.598],[-0.626,-0.781],[0.572,-0.72],[0.577,-0.557],[1.162,-0.929],[2.352,-1.105],[4.777,-0.166],[4.849,1.887],[2.45,1.631],[1.234,1.067]],"o":[[1.141,-1.528],[1.155,-1.153],[2.327,-1.801],[4.704,-2.228],[4.776,-0.176],[2.424,0.934],[1.226,0.843],[0.616,0.515],[0.622,0.677],[-0.568,0.823],[-0.575,0.641],[-1.154,1.158],[-2.327,1.805],[-4.703,2.222],[-4.777,0.148],[-2.425,-0.936],[-1.225,-0.839],[-1.233,-1.025]],"v":[[-28.657,1.04],[-25.213,-2.91],[-21.735,-5.958],[-14.717,-10.289],[-0.494,-13.772],[13.941,-11.354],[21.251,-7.531],[24.938,-4.727],[26.791,-3.033],[28.657,-1.012],[26.942,1.137],[25.213,2.959],[21.736,6.02],[14.718,10.356],[0.493,13.8],[-13.942,11.342],[-21.252,7.525],[-24.938,4.734]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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":[148.195,167.433],"ix":2},"a":{"a":0,"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 22","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.907,0.025],[-0.106,-1.6],[0.042,-1.485],[0.667,-2.512],[2.926,-3.779],[4.561,-2.5],[2.827,-0.823],[1.616,-0.253],[0.855,-0.089],[1,0.023],[0.184,0.902],[0.054,0.801],[-0.037,1.487],[-0.669,2.511],[-2.948,3.762],[-4.566,2.496],[-2.825,0.824],[-1.611,0.257]],"o":[[0.435,1.857],[0.138,1.625],[-0.119,2.94],[-1.322,5.034],[-2.94,3.767],[-2.276,1.254],[-1.435,0.395],[-0.79,0.14],[-0.92,0.04],[-0.264,-0.965],[-0.119,-0.852],[-0.143,-1.629],[0.118,-2.942],[1.327,-5.029],[2.962,-3.751],[2.278,-1.252],[1.43,-0.399],[1.577,-0.283]],"v":[[17.677,-22.6],[18.481,-17.42],[18.573,-12.797],[17.368,-4.639],[10.877,8.487],[-0.266,17.974],[-7.898,21.107],[-12.418,22.122],[-14.907,22.45],[-17.655,22.577],[-18.195,19.879],[-18.476,17.384],[-18.58,12.753],[-17.378,4.591],[-10.855,-8.51],[0.319,-17.973],[7.947,-21.108],[12.456,-22.132]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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":[137.209,145.929],"ix":2},"a":{"a":0,"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 23","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":[[-2.002,-0.7],[0.81,-1.64],[0.905,-1.45],[2.147,-2.243],[5.211,-2.688],[6.156,-0.833],[3.394,0.201],[1.813,0.328],[2.006,0.708],[-0.806,1.644],[-0.903,1.456],[-2.149,2.24],[-5.226,2.658],[-6.161,0.825],[-3.392,-0.198],[-1.811,-0.324]],"o":[[-0.609,2.031],[-0.801,1.655],[-1.833,2.862],[-4.287,4.5],[-5.222,2.666],[-3.075,0.422],[-1.708,-0.125],[-1.804,-0.313],[0.606,-2.039],[0.799,-1.66],[1.83,-2.863],[4.291,-4.493],[5.236,-2.639],[3.076,-0.42],[1.706,0.12],[1.802,0.308]],"v":[[31.341,-15.994],[29.16,-10.589],[26.57,-5.99],[20.586,1.636],[6.265,12.273],[-10.737,17.648],[-20.427,18.006],[-25.677,17.389],[-31.341,15.959],[-29.17,10.537],[-26.585,5.924],[-20.603,-1.705],[-6.264,-12.305],[10.756,-17.648],[20.443,-18.01],[25.687,-17.403]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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":[150.894,152.546],"ix":2},"a":{"a":0,"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 24","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[119.656,167.522],"ix":2},"a":{"a":0,"k":[119.656,167.522],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":105,"s":[11]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":131,"s":[-4]},{"t":158,"s":[0]}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 40","np":3,"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],[0,0]],"o":[[0,0],[0,0]],"v":[[76.961,57.232],[76.961,403.11]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2.931,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[77.301,403.151],"ix":2},"a":{"a":0,"k":[77.301,403.151],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":104.666,"s":[1]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":131,"s":[-1]},{"t":158,"s":[0]}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":78,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-19.741,-10.923],[19.741,10.923]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":105,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-19.741,-10.923],[24.341,8.064]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":131,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-19.741,-10.923],[14.483,10.845]],"c":false}]},{"t":158,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-19.725,-10.924],[19.757,10.921]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.782,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[76.068,99.636],"ix":2},"a":{"a":0,"k":[18.977,10.498],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":105,"s":[13]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":131,"s":[-8]},{"t":158,"s":[4]}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":78,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-19.741,10.922],[19.741,-10.922]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":105,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-14.741,9.172],[19.741,-10.922]],"c":false}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":131,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-24.241,11.547],[19.741,-10.922]],"c":false}]},{"t":158,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-19.741,10.922],[19.741,-10.922]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.165000002992,0.231000010173,0.156999999402,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1.782,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[76.844,99.877],"ix":2},"a":{"a":0,"k":[-19.817,10.739],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":105,"s":[10]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":131,"s":[-5]},{"t":158,"s":[0]}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.325,-2.001],[1.576,-1.233],[1.555,-0.972],[3.04,-1.031],[5.887,0.433],[5.689,2.988],[2.779,2.346],[1.365,1.489],[1.324,2.013],[-1.576,1.238],[-1.556,0.978],[-3.04,1.029],[-5.884,-0.466],[-5.688,-2.997],[-2.778,-2.343],[-1.365,-1.481]],"o":[[-1.617,1.773],[-1.576,1.254],[-3.106,1.888],[-6.082,2.087],[-5.886,-0.444],[-2.845,-1.484],[-1.387,-1.206],[-1.367,-1.466],[1.618,-1.786],[1.578,-1.261],[3.106,-1.891],[6.081,-2.077],[5.883,0.478],[2.846,1.487],[1.388,1.199],[1.367,1.461]],"v":[[35.311,2.748],[30.533,7.116],[25.841,10.371],[16.625,14.708],[-1.314,17.003],[-18.69,12.026],[-27.129,6.317],[-31.263,2.362],[-35.311,-2.714],[-30.531,-7.108],[-25.837,-10.38],[-16.621,-14.724],[1.314,-16.97],[18.686,-11.944],[27.125,-6.241],[31.261,-2.303]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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":[40.677,97.511],"ix":2},"a":{"a":0,"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 28","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.678,2.302],[-1.958,-0.412],[-1.745,-0.565],[-2.746,-1.662],[-3.458,-4.782],[-1.378,-6.277],[0.004,-3.637],[0.26,-2.002],[0.687,-2.309],[1.962,0.408],[1.751,0.56],[2.744,1.664],[3.432,4.803],[1.37,6.282],[-0.004,3.635],[-0.254,1.998]],"o":[[2.398,0.096],[1.975,0.399],[3.444,1.162],[5.512,3.31],[3.45,4.79],[0.696,3.132],[-0.031,1.837],[-0.242,1.99],[-2.408,-0.089],[-1.98,-0.396],[-3.446,-1.16],[-5.505,-3.316],[-3.423,-4.809],[-0.693,-3.135],[0.024,-1.833],[0.237,-1.987]],"v":[[-20.663,-28.777],[-14.245,-27.933],[-8.732,-26.439],[0.52,-22.18],[13.824,-9.932],[21.204,6.569],[22.271,16.702],[21.906,22.411],[20.628,28.777],[14.188,27.949],[8.661,26.464],[-0.596,22.208],[-13.862,9.931],[-21.202,-6.597],[-22.271,-16.727],[-21.921,-22.426]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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":[55.339,71.522],"ix":2},"a":{"a":0,"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 29","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.649,2.538],[-2.24,0.289],[-2.099,0.038],[-3.773,-0.678],[-6.324,-3.528],[-5.066,-5.762],[-2.116,-3.621],[-0.912,-2.07],[-0.644,-2.548],[2.243,-0.294],[2.1,-0.039],[3.772,0.68],[6.307,3.558],[5.062,5.769],[2.119,3.616],[0.914,2.067]],"o":[[2.506,-0.761],[2.241,-0.29],[4.191,-0.063],[7.558,1.337],[6.312,3.547],[2.538,2.872],[1.056,1.815],[0.913,2.07],[-2.513,0.772],[-2.242,0.294],[-4.193,0.068],[-7.554,-1.344],[-6.296,-3.578],[-2.536,-2.875],[-1.057,-1.814],[-0.915,-2.065]],"v":[[-37.859,-21.338],[-30.809,-22.788],[-24.304,-23.273],[-12.372,-22.325],[8.359,-14.865],[25.51,-1.05],[32.503,8.667],[35.455,14.494],[37.859,21.296],[30.795,22.77],[24.282,23.268],[12.348,22.327],[-8.36,14.826],[-25.488,0.968],[-32.484,-8.744],[-35.444,-14.557]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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":[38.108,79.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 30","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[76.348,97.844],"ix":2},"a":{"a":0,"k":[76.348,97.844],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":105,"s":[15]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":131,"s":[-8]},{"t":158,"s":[0]}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 37","np":3,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.617,1.773],[-1.367,1.461],[-1.388,1.199],[-2.845,1.487],[-5.884,0.478],[-6.081,-2.077],[-3.106,-1.891],[-1.578,-1.261],[-1.619,-1.786],[1.366,-1.466],[1.387,-1.206],[2.846,-1.484],[5.886,-0.444],[6.082,2.087],[3.105,1.888],[1.577,1.254]],"o":[[1.325,-2.001],[1.365,-1.481],[2.779,-2.343],[5.688,-2.997],[5.884,-0.466],[3.04,1.029],[1.556,0.978],[1.575,1.238],[-1.325,2.013],[-1.365,1.489],[-2.778,2.346],[-5.688,2.988],[-5.887,0.433],[-3.041,-1.031],[-1.556,-0.972],[-1.575,-1.233]],"v":[[-35.311,2.748],[-31.262,-2.303],[-27.126,-6.241],[-18.686,-11.944],[-1.314,-16.97],[16.621,-14.724],[25.837,-10.38],[30.531,-7.108],[35.311,-2.714],[31.263,2.362],[27.128,6.317],[18.689,12.026],[1.314,17.003],[-16.625,14.708],[-25.841,10.371],[-30.534,7.116]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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":[113.035,97.511],"ix":2},"a":{"a":0,"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 31","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":[[-2.398,0.096],[-0.237,-1.987],[-0.024,-1.833],[0.694,-3.135],[3.423,-4.809],[5.504,-3.316],[3.447,-1.16],[1.981,-0.396],[2.408,-0.089],[0.241,1.99],[0.03,1.837],[-0.697,3.132],[-3.45,4.79],[-5.512,3.31],[-3.443,1.162],[-1.975,0.399]],"o":[[0.678,2.302],[0.254,1.998],[0.003,3.635],[-1.369,6.282],[-3.431,4.803],[-2.745,1.664],[-1.75,0.56],[-1.962,0.408],[-0.688,-2.309],[-0.26,-2.002],[-0.005,-3.637],[1.377,-6.277],[3.459,-4.782],[2.747,-1.662],[1.745,-0.565],[1.957,-0.412]],"v":[[20.664,-28.777],[21.922,-22.426],[22.271,-16.727],[21.202,-6.597],[13.862,9.931],[0.596,22.208],[-8.661,26.464],[-14.188,27.949],[-20.626,28.777],[-21.905,22.411],[-22.27,16.702],[-21.203,6.569],[-13.824,-9.932],[-0.52,-22.18],[8.733,-26.439],[14.245,-27.933]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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.373,71.522],"ix":2},"a":{"a":0,"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 32","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":[[-2.506,-0.761],[0.914,-2.065],[1.056,-1.814],[2.536,-2.875],[6.295,-3.578],[7.554,-1.344],[4.194,0.068],[2.243,0.294],[2.512,0.772],[-0.913,2.07],[-1.055,1.815],[-2.537,2.872],[-6.313,3.547],[-7.557,1.337],[-4.19,-0.063],[-2.24,-0.29]],"o":[[-0.648,2.538],[-0.915,2.067],[-2.119,3.616],[-5.062,5.769],[-6.307,3.558],[-3.772,0.68],[-2.099,-0.039],[-2.243,-0.294],[0.643,-2.548],[0.911,-2.07],[2.117,-3.621],[5.066,-5.762],[6.323,-3.528],[3.774,-0.678],[2.099,0.038],[2.24,0.289]],"v":[[37.858,-21.338],[35.444,-14.557],[32.484,-8.744],[25.487,0.968],[8.36,14.826],[-12.347,22.327],[-24.283,23.268],[-30.795,22.77],[-37.858,21.296],[-35.455,14.494],[-32.504,8.667],[-25.511,-1.05],[-8.359,-14.865],[12.371,-22.325],[24.303,-23.273],[30.808,-22.788]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.705999995213,0.395999983245,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.604,79.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 33","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[76.14,99.727],"ix":2},"a":{"a":0,"k":[76.14,99.727],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":105,"s":[7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":131,"s":[-4]},{"t":158,"s":[0]}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 38","np":3,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.339,-0.539],[0.602,1.908],[0.364,1.797],[-0.099,3.209],[-2.471,5.36],[-4.793,4.28],[-3.17,1.779],[-1.872,0.756],[-2.35,0.534],[-0.606,-1.91],[-0.37,-1.8],[0.104,-3.207],[2.501,-5.347],[4.803,-4.275],[3.168,-1.78],[1.867,-0.758]],"o":[[-1.094,-2.137],[-0.621,-1.916],[-0.678,-3.571],[0.18,-6.427],[2.481,-5.356],[2.388,-2.144],[1.617,-0.876],[1.852,-0.766],[1.104,2.141],[0.627,1.92],[0.681,3.573],[-0.188,6.423],[-2.512,5.342],[-2.391,2.143],[-1.61,0.879],[-1.847,0.769]],"v":[[-14.969,32.108],[-17.383,26.102],[-18.785,20.565],[-19.616,10.414],[-15.47,-7.189],[-4.714,-21.715],[3.592,-27.616],[8.747,-30.099],[14.922,-32.108],[17.358,-26.091],[18.776,-20.548],[19.611,-10.393],[15.423,7.19],[4.621,21.695],[-3.681,27.596],[-8.819,30.087]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976000019148,0.791999966491,0.607999973671,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":[91.844,55.036],"ix":2},"a":{"a":0,"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 34","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.094,2.137],[-1.847,-0.768],[-1.61,-0.878],[-2.39,-2.143],[-2.511,-5.342],[-0.189,-6.423],[0.68,-3.572],[0.627,-1.919],[1.104,-2.141],[1.852,0.765],[1.616,0.875],[2.388,2.144],[2.48,5.356],[0.18,6.427],[-0.678,3.571],[-0.621,1.916]],"o":[[2.339,0.539],[1.867,0.759],[3.169,1.781],[4.802,4.275],[2.501,5.347],[0.102,3.207],[-0.371,1.801],[-0.607,1.91],[-2.349,-0.534],[-1.873,-0.756],[-3.171,-1.78],[-4.793,-4.28],[-2.471,-5.36],[-0.1,-3.209],[0.364,-1.796],[0.602,-1.908]],"v":[[-14.969,-32.109],[-8.819,-30.088],[-3.68,-27.597],[4.621,-21.695],[15.422,-7.189],[19.612,10.394],[18.778,20.548],[17.36,26.09],[14.922,32.109],[8.748,30.1],[3.594,27.615],[-4.713,21.715],[-15.469,7.189],[-19.614,-10.413],[-18.785,-20.566],[-17.383,-26.101]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976000019148,0.791999966491,0.607999973671,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":[61.998,55.036],"ix":2},"a":{"a":0,"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 35","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":[[-1.893,1.811],[-1.352,-1.81],[-1.063,-1.81],[-1.261,-3.621],[-0.028,-7.241],[2.535,-7.241],[2.116,-3.621],[1.356,-1.81],[1.904,-1.811],[1.356,1.811],[1.065,1.81],[1.258,3.621],[-0.005,7.241],[-2.544,7.241],[-2.111,3.62],[-1.351,1.81]],"o":[[1.893,1.811],[1.351,1.81],[2.111,3.62],[2.543,7.241],[0.006,7.241],[-1.259,3.621],[-1.065,1.81],[-1.355,1.811],[-1.904,-1.811],[-1.355,-1.81],[-2.116,-3.621],[-2.535,-7.241],[0.029,-7.241],[1.261,-3.621],[1.062,-1.81],[1.351,-1.81]],"v":[[0,-43.448],[4.724,-38.016],[8.336,-32.585],[13.366,-21.723],[17.037,0],[13.415,21.724],[8.378,32.586],[4.749,38.016],[0,43.448],[-4.75,38.016],[-8.378,32.586],[-13.415,21.724],[-17.038,0],[-13.366,-21.723],[-8.336,-32.585],[-4.724,-38.016]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976000019148,0.791999966491,0.607999973671,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":[76.92,43.697],"ix":2},"a":{"a":0,"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 36","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[77.223,86.586],"ix":2},"a":{"a":0,"k":[77.223,86.586],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":105,"s":[11]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":131,"s":[-9]},{"t":158,"s":[0]}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 39","np":3,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":300,"st":0,"bm":0}],"markers":[{"tm":78,"cm":"1","dr":0},{"tm":105,"cm":"2","dr":0},{"tm":131,"cm":"3","dr":0},{"tm":158,"cm":"4","dr":0}]} --------------------------------------------------------------------------------