feat: implement session persistence and workout session management - #9
feat: implement session persistence and workout session management#9DecodeX15 wants to merge 27 commits into
Conversation
… adding loading screen and storing embeddings
WalkthroughThis PR introduces a Flutter fitness app with SQLite persistence, onboarding, local AI inference, exercise recommendations, session management, navigation, themed widgets, and bundled exercise, model, and animation assets. ChangesMove Your Body App
Estimated code review effort: 5 (Critical) | ~120 minutes Poem
🚥 Pre-merge checks | ✅ 4✅ Passed checks (4 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 67
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
assets/animations/Ex1.json (1)
1-17904: 🚀 Performance & Scalability | 🔵 Trivial | ⚡ Quick winConsider minifying bundled Lottie JSON assets.
This animation file is unminified (pretty-printed with full indentation), which unnecessarily increases app bundle size across all
assets/animations/*.jsonfiles. Since these are bundled with the app and loaded at runtime, minifying (stripping whitespace) reduces both package size and parse overhead.As per path instructions, "assets/**/*" should be reviewed for asset optimization (e.g. "SVG assets are optimized"); the same principle applies to bundled Lottie JSON.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@assets/animations/Ex1.json` around lines 1 - 17904, Minify the bundled Lottie JSON asset represented by the animation object, removing indentation and unnecessary whitespace while preserving all animation data and valid JSON structure. Apply the same optimization consistently to the other bundled assets under the animations collection, without changing runtime behavior or asset contents.Source: Path instructions
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.gitignore:
- Line 349: Update the generated-output ignore pattern near lib/generated/ so it
matches generated/ directories at any depth under lib, including paths such as
lib/features/home/models/generated/. Preserve ignoring the existing top-level
generated directory.
In `@assets/animations/Ex15.json`:
- Line 1: Replace the embedded base64 PNG assets referenced by the Lottie
composition’s image_0 through image_4 entries with optimized external image
files, or re-author the animation using vector shapes. Ensure raster assets use
an appropriate format and size, and provide `@2x` and `@3x` density variants while
updating the composition references accordingly.
In `@assets/animations/Ex20.json`:
- Line 1: The animation embeds a large base64 PNG in the assets entry image_0,
unnecessarily increasing the Lottie payload. Re-export the SHOULDER STRETCH
animation without the raster asset where possible, preserving the existing
animation, or replace image_0 with an externally referenced, appropriately sized
and optimized image while updating comp_3’s refId accordingly.
In `@assets/animations/Ex4.json`:
- Line 1: Optimize the Lottie JSON asset and all sibling animation files before
bundling, using a Lottie/Bodymovin optimizer to reduce numeric precision to
roughly 2–3 decimal places and remove safe dead layers or redundant data.
Preserve the existing animation structure, timing, and exerciseId-based asset
lookup used by AnimationPreview.
In `@assets/animations/Ex9.json`:
- Line 1: The Lottie asset embeds its PNG as a base64 data URI instead of using
an external image asset. Update the image_0 asset to reference an external
optimized PNG, set its embedded-image flag appropriately, and preserve the
existing asset dimensions and animation references.
In `@assets/exercises/exercises.json`:
- Line 746: Normalize the movement_pattern values in the affected exercise
entries to use semicolons as the multi-value delimiter, replacing the plus
separator while preserving each movement component and the existing formatting
convention used by primary_muscles, secondary_muscles, and body_region.
- Around line 9-14: Update Exercise.fromJson to parse estimated_duration and use
the resulting value for estimatedTime instead of hardcoding 30; preserve values
from the seed JSON, including duration ranges such as “30-45 sec”, when creating
seeded exercises.
In `@build.yaml`:
- Line 1: Update the ignore rule under the targets configuration to use the
recursive pattern lib/**/generated/ instead of the top-level-only lib/generated/
pattern, ensuring generated directories nested anywhere under lib are ignored.
In `@lib/core/database/db_config.dart`:
- Around line 27-49: Update the openDatabase configuration in the
database-opening method to add an onConfigure callback that enables SQLite
foreign-key enforcement with PRAGMA foreign_keys = ON. Keep the existing
creation and migration callbacks unchanged so the ON DELETE CASCADE constraint
in SessionExercisesDatabaseService is applied.
- Around line 17-22: Update the database getter and its backing state to cache
the in-flight Future<Database> rather than only the resolved Database instance.
Ensure concurrent callers reuse the same initialization future and return its
result, while preserving _initDatabase as the single initialization path.
In `@lib/core/model/exercise_data.dart`:
- Around line 97-113: Replace the three enum lookups in Exercise.fromJson for
ExerciseType, Difficulty, and Intensity with firstWhere calls that provide
descriptive FormatException fallbacks for unrecognized or null values. Apply the
same change to the TagType lookup in Tag.fromMap; update both
lib/core/model/exercise_data.dart lines 97-113 and lib/core/model/tag_data.dart
lines 33-35, preserving successful enum parsing.
- Around line 97-113: Update the enum lookups in the exercise data
deserialization method for ExerciseType, Difficulty, and Intensity to provide an
orElse fallback for unrecognized JSON values, matching the handling used by
Tag.fromMap. Preserve valid enum parsing while preventing StateError and
supplying the appropriate fallback for each field.
- Around line 103-129: Update the exercise JSON parsing around _parseBodyRegions
and _parseEquipments to handle missing or null body_region and equipments values
without a runtime TypeError. Pass a non-null fallback consistent with the other
fields, while preserving the existing helper behavior for provided values.
- Line 117: Update the ExerciseData.fromJson mapping for estimatedTime to read
and convert json['estimated_time'] instead of using the hardcoded value 30,
preserving the JSON-provided per-exercise estimate.
- Around line 210-227: Update _parseEquipments to map the 'pull_up_bar' input to
Equipment.pullUpBar, preventing valid pull-up bar equipment from falling through
to the default stabilityBall mapping.
- Around line 229-276: Harden Exercise.fromMap against incomplete or malformed
database rows: validate nullable enum values before calling ExerciseType,
Difficulty, Intensity, BodyRegion, or Equipment.byName, safely decode
JSON-backed columns with null/format handling, and provide appropriate defaults
or nullable values matching the Exercise model. Add guards for direct string and
numeric assignments so non-nullable fields never receive null, while preserving
valid-row parsing behavior and preventing malformed reads from crashing the app.
In `@lib/core/model/tag_data.dart`:
- Around line 33-35: Update the enum lookup in the TagData parsing logic to
provide an orElse fallback when tagType is null or unrecognized, matching the
safe handling used for the firstWhere calls in exercise_data.dart. Ensure the
fallback preserves the model’s expected default or nullable behavior.
In `@lib/core/model/user_data.dart`:
- Line 76: Update UserData.fromMap and all four CSV-split fields to use a shared
helper that accepts nullable values, returns an empty list for null or empty
strings, and otherwise splits the string by commas. Remove the direct as String
casts while preserving the existing field mappings and list element behavior.
In `@lib/core/routing/app_router.dart`:
- Around line 134-136: Update the sessionId parsing in the app router to use
non-throwing numeric conversion instead of int.parse. Handle a failed conversion
by applying the established fallback or navigating to the appropriate error
route, while preserving the existing behavior for valid numeric session IDs.
- Around line 1-18: Normalize the imports in app_router.dart by replacing the
relative imports for app_routes.dart and the onboarding views with
package:move_your_body/... imports, matching the existing package-import style
throughout the file.
In `@lib/core/service/seed_service.dart`:
- Around line 20-23: Replace the count-only gate in the seed service with
persistent seed-version tracking, using a version constant that is bumped when
exercises.json changes. Compare the stored version before skipping seeding,
apply updated seed content when versions differ, and persist the new version
after successful seeding while retaining the existing skip behavior for the
current version.
- Around line 44-47: Update the catch block in the exercise seeding method to
preserve the existing diagnostic logging while propagating the seeding failure
to its caller instead of returning normally. Ensure callers can detect parsing
or insertion errors and that the method’s failure behavior remains consistent
with its async contract.
In `@lib/core/widgets/button_card.dart`:
- Around line 53-59: Update the Text style in the button card title rendering to
use textTheme.titleMedium instead of textTheme.titleLarge, preserving the
existing copyWith fontWeight and fontSize overrides.
In `@lib/core/widgets/custom_bottom_navbar.dart`:
- Around line 57-106: Update _buildNavItem to wrap each navigation item with a
Semantics widget using the provided label, ensuring screen readers announce the
destination for both selected and unselected states while preserving the
existing visual and tap behavior.
In `@lib/core/widgets/feature_chip.dart`:
- Around line 20-41: Wrap the tappable content returned by FeatureChip in a
Semantics widget, setting button to true and selected to the existing selected
value. Preserve the current GestureDetector behavior and visual styling inside
the wrapper, matching the accessibility pattern used by ButtonCard.
In `@lib/core/widgets/loading_screen.dart`:
- Around line 100-104: Update the catch-all error handling in the loading screen
pipeline so failures are not treated as successful completion: show the user an
explicit failure message and provide a retry path instead of unconditionally
navigating to AppRoutes.profile. Preserve navigation to AppRoutes.profile only
after the pipeline completes successfully, while retaining error logging for
diagnostics.
- Around line 36-37: Update the loading-screen initialization flow around
aiModelRepo.initModel() to apply a finite timeout and handle timeout failure
without leaving the user stuck indefinitely. Also restructure the independent
generateEmbedding and findTopMatches operations in the affected loading flow to
start concurrently and await their combined results, preserving their existing
outputs and behavior.
- Around line 45-61: Remove the interpolated onboarding text from the Phase 3
and Phase 4 logging around customGoal and customHealthIssue, retaining only
non-sensitive progress messages if needed. Locate the main flow’s unconditional
debugPrintUserData() call and remove it or gate it behind an explicit debug-only
condition so user-entered onboarding data is never emitted in production logs.
- Around line 84-86: Await the onboarding notifier’s updateResolvedTags call in
the loading flow, matching the awaited tagSetupRepositoryProvider update above
it so failures remain within the surrounding try/catch and navigation waits for
completion.
In `@lib/features/ai_inference/repositories/tag_setup_repository.dart`:
- Around line 58-89: Update _processSet to replace the per-tag db.query cache
checks with one upfront query for TagsTable.tableName filtered by type.name,
collecting existing tag names into a Set<String>. Use that set to skip cached
tags and only generate embeddings and insert records for missing tags,
preserving the existing empty-tag and logging behavior.
- Around line 29-56: The processAndSeedTags method redundantly loads and parses
exercises.json instead of reusing seeded exercise data. Remove the asset-loading
and JSON-parsing flow, query the seeded ExerciseTable through the existing
database/service APIs for goal_tags and contraindications, extract those values
into uniqueGoals and uniqueInjuries, then preserve the existing _processSet
calls.
- Around line 52-53: Remove the debug print statements throughout the tag setup
flow, including the calls near uniqueGoals/uniqueInjuries and the additional
listed ranges. Replace them with the project’s proper logger only when
diagnostic output is necessary, gated by kDebugMode or equivalent, while
preserving the surrounding tag processing behavior.
In `@lib/features/ai_inference/services/onnx_service.dart`:
- Line 44: Update the inference call in the ONNX service around
_session!.run(inputs) to enforce a timeout, so native runtime hangs cannot block
onboarding or loading indefinitely. Preserve the existing successful output
handling and use the service’s established timeout or error-handling conventions
if available.
- Around line 24-55: Update runInference to dispose every OrtValue created for
inputs and all tensors returned in outputs after the session run, including when
inference or output parsing throws; use a finally block or equivalent cleanup
while preserving the existing embedding return and error behavior.
In `@lib/features/ai_inference/services/tokenizer_service.dart`:
- Around line 12-32: Update TokenizerService.init() to rethrow initialization
errors after logging them, matching the failure propagation used by
onnx_service.dart; do not leave tokenizer failures silently represented only by
_isInitialized remaining false, so AiModelRepository.initModel() and its callers
receive the initialization exception.
In `@lib/features/ai_inference/view_model/ai_inference_view_model.dart`:
- Around line 40-55: Update initializeAiAndTags and AiState to expose
initialization failures through state instead of only debugPrint. Add or reuse
an error/failure field in AiState, set it in the catch path with the caught
error, and preserve the existing successful isReady update; ensure the UI can
observe the failure and support retry by re-invoking initializeAiAndTags.
In `@lib/features/home/repositories/session_repository.dart`:
- Around line 98-102: Remove the catch-and-return-null error handling from all
four session repository methods: getLatestIncompleteSession, createSession,
getSessionById, and createSessionFromExercises. Let database exceptions
propagate unchanged so HomeViewModel._initialize() and its existing try-catch
can report failures instead of treating them as missing sessions.
- Around line 28-103: Extract the shared transaction logic from createSession()
and createSessionFromExercises() into a private helper that accepts the
exercises to include, builds the session row, inserts each SessionExercise, and
returns the populated Session. Update both public methods to obtain their
respective exercise lists and delegate to this helper, preserving their existing
error handling and behavior.
- Around line 105-140: Extract the duplicated exercise query and mapping logic
from getLatestIncompleteSession() and getSessionById() into a private helper
that accepts a Session, loads its SessionExercisesTable rows ordered by
orderIndex, maps them to SessionExercise, and returns
session.copyWith(exercises: exercises). Replace both methods’ inline
implementations with calls to this helper while preserving their existing
session lookup and error handling.
In `@lib/features/home/screens/exercise_info_screen.dart`:
- Around line 18-34: Update the FutureBuilder handling in the exercise
information screen to check snapshot.hasError immediately after the
loading-state check and before evaluating snapshot.data. Render an error state
for database failures, while preserving the existing “Exercise not found” state
only when snapshot.data is null without an error.
- Around line 15-16: Cache the exercise-loading Future instead of recreating it
in build. Convert the screen to a StatefulWidget, initialize a stored Future
with _loadExercise(ref) in initState, and pass that cached Future to
FutureBuilder so rebuilds do not trigger additional database queries or loading
flashes.
In `@lib/features/home/screens/home_screen.dart`:
- Around line 49-58: Correct the title-to-image mappings in the plans list
within the home screen: update the “Cardio Strength” entry to use
cardio_strength.png and the “Lower back” entry to use lower_back.png, leaving
the plan titles unchanged.
- Line 27: Replace the hardcoded username in HomeScreen’s HomeAppBar with the
persisted UserData.username. Add and expose the username through HomeState, wire
it from homeViewModelProvider, and pass that state value to HomeAppBar while
preserving the existing screen flow.
In `@lib/features/home/screens/session_details_screen.dart`:
- Around line 146-170: Update the primary CTA in the session details screen so
it no longer appears actionable while session execution is unavailable: disable
the ElevatedButton by setting its onPressed to null and change the label from
“Let's start” to “Coming soon,” preserving the existing styling and layout.
In `@lib/features/home/services/recommendation_service.dart`:
- Around line 79-92: Update _bodyRegionScore to safely ignore empty or unknown
entries in user.targetBodyRegion instead of calling BodyRegion.values.byName
directly. Build the valid region set with a null-safe lookup, return 0 when no
valid regions remain, and preserve the existing matched-region weighting for
valid values.
In `@lib/features/home/view_model/home_view_model.dart`:
- Around line 75-78: Update createSession() to return immediately when
state.isCreatingSession is true, before starting any new session creation.
Preserve the existing hasIncompleteSession/currentSession guard and ensure
concurrent calls cannot create duplicate sessions.
In `@lib/features/home/widgets/exercise_info/animation_preview.dart`:
- Around line 30-54: Update _initVideoPlayer to check mounted immediately after
_videoController.initialize() completes and before constructing
ChewieController; if the widget is no longer mounted, return without creating or
assigning _chewieController. Preserve the existing controller setup and setState
behavior for mounted widgets.
In `@lib/features/home/widgets/exercise_info/section_card.dart`:
- Around line 29-40: Remove the unnecessary single-child Row in the section card
and place the existing Text widget directly in the parent’s children list,
preserving its title, style, and layout behavior.
In `@lib/features/home/widgets/home/search_bar.dart`:
- Line 11: Extract the duplicated width-scaling formula into a shared
ScreenScale utility, exposing a BuildContext scale helper that preserves the 390
baseline and 0.85–1.25 clamp range. Update the inline calculations in
lib/features/home/widgets/home/search_bar.dart:11,
lib/features/home/widgets/home/today_session_card.dart:17, and
lib/features/home/widgets/home/week_selector.dart:22 to use the helper, adding
the required imports.
In `@lib/features/home/widgets/home/session_summary_card.dart`:
- Around line 22-121: Extract the duplicated Expanded item structure from the
session summary card into a reusable _SummaryItem widget or helper accepting the
icon, label, and value. Replace both the Time and Burn inline layouts with this
helper while preserving their existing styling, alignment, spacing, and text
overflow behavior.
In `@lib/features/home/widgets/home/today_session_card.dart`:
- Around line 197-209: Update the ElevatedButton.icon in the today session card
to disable itself when either exercises is empty or
HomeViewModel.isCreatingSession is true. Read the notifier state through
homeViewModelProvider and preserve the existing createSession navigation flow
once enabled.
- Around line 35-37: Replace the hardcoded error text in the error-state Text
widget with homeState.errorMessage so the TodaySessionCard displays the actual
failure message, including session creation and onboarding errors.
In `@lib/features/home/widgets/home/week_selector.dart`:
- Line 32: Update the dayLabel calculation to avoid ambiguous single-letter
labels for Tuesday/Thursday and Saturday/Sunday. Use the locale-aware
three-letter abbreviation from DateFormat('EEE') in the week selector’s
day-label generation.
In `@lib/features/home/widgets/session_details/exercise_tile.dart`:
- Around line 79-223: Extract the duplicated _DurationInput and _StepperButton
behavior from
lib/features/home/widgets/session_details/exercise_tile.dart:79-223 into a
shared DurationStepperInput widget parameterized by minValue, maxValue, step,
and allowZero. Update
lib/features/home/widgets/session_details/timing_settings_card.dart:58-209 so
_TimingRow uses this shared widget, then remove its duplicate _StepperBtn
implementation while preserving each screen’s existing constraints and
callbacks.
In `@lib/features/home/widgets/session_details/timing_settings_card.dart`:
- Line 99: Update _increment to clamp the computed value to the existing 0–9999
range before passing it to widget.onChanged, matching _decrement and keeping
stepper values within the text field’s four-digit limit.
In `@lib/features/onboarding/repository/user_repository.dart`:
- Around line 44-61: Guard debugPrintUserData with Flutter’s kDebugMode so it
produces no logs outside debug builds, including username, health data, and
embeddings; import package:flutter/foundation.dart and preserve the existing
debug output only when kDebugMode is true.
- Around line 12-15: Update saveUser to insert the user with the fixed
identifier id = 1 and ConflictAlgorithm.replace, and use UserTable.tableName
instead of the hardcoded table name. Preserve the existing database acquisition
and user mapping flow while ensuring repeated saves replace the single user row.
In `@lib/features/onboarding/view/body_region_screen.dart`:
- Around line 70-125: Add a Full Body ButtonCard option to the body-region
choices alongside the existing BodyRegion values, using BodyRegion.fullBody.name
for selection state and toggleTargetBodyRegion. Match the existing card styling
and spacing so users can select the fullBody target region.
In `@lib/features/onboarding/view/difficulty_level.dart`:
- Around line 107-115: Disable each Continue button until its corresponding
selection is non-empty: in lib/features/onboarding/view/difficulty_level.dart
lines 107-115, guard the button using selectedDifficulty; in
lib/features/onboarding/view/intensity_level.dart lines 107-115, use
selectedIntensity; in lib/features/onboarding/view/body_region_screen.dart lines
129-137, use selectedBodyRegions; and in
lib/features/onboarding/view/equipment_screen.dart lines 136-144, use
selectedEquipments. Set onPressed to null for empty selections while preserving
the existing navigation when a valid selection exists.
In `@lib/features/onboarding/view/goal_screen.dart`:
- Around line 119-126: Make the Continue button containers full-width by adding
the existing full-width sizing pattern to the SizedBox wrapping the Continue
ElevatedButton in lib/features/onboarding/view/goal_screen.dart lines 119-126
and lib/features/onboarding/view/health_issues.dart lines 117-124. No other
button behavior needs to change.
- Around line 53-66: Extract the duplicated progress-dot UI into a shared
OnboardingProgressIndicator widget accepting currentStep, preserving the six-dot
layout and active/inactive colors. Replace the inline implementations in
lib/features/onboarding/view/goal_screen.dart lines 53-66 with currentStep: 0,
lib/features/onboarding/view/health_issues.dart lines 51-65 with currentStep: 1,
and lib/features/onboarding/view/user_details.dart lines 35-49 with currentStep:
5; remove the no-op width ternaries.
In `@lib/features/onboarding/view/health_issues.dart`:
- Around line 51-65: Update the progress indicator in the health issues screen’s
List.generate builder so the highlighted color condition uses index == 1 instead
of index == 0, reflecting the second onboarding step while leaving the remaining
dots unchanged.
In `@lib/features/onboarding/view/intensity_level.dart`:
- Around line 41-53: The onboarding progress indicator is duplicated with an
incorrect hardcoded active step. Extract a shared parameterized
OnboardingProgress widget and use it in
lib/features/onboarding/view/intensity_level.dart lines 41-53 with currentStep
3, lib/features/onboarding/view/body_region_screen.dart lines 40-53 with
currentStep 4, and lib/features/onboarding/view/equipment_screen.dart lines
42-55 with currentStep 5, preserving the existing colors and layout.
In `@lib/features/onboarding/view/splash_screen.dart`:
- Around line 23-39: Update _checkUser to catch errors from getUserData and
seedExercises, then navigate to the existing error or fallback route instead of
allowing the splash screen to remain indefinitely. Preserve the current
onboarding/home routing for successful loads and continue checking mounted
before using context or provider state.
- Around line 26-28: Remove the debug artifacts in the splash screen flow:
delete the commented-out SeedService debug call and the print statement inside
the user != null block. Preserve the surrounding onboarding behavior unchanged.
In `@lib/features/onboarding/view/user_details.dart`:
- Around line 78-89: Replace the character-allowing FilteringTextInputFormatter
in both the weight and height TextFields with whole-string validation that
permits digits and at most one decimal point, so invalid values such as “1.2.3”
are rejected during input rather than silently ignored. Preserve the existing
onChanged parsing and range validation behavior.
In `@test/widget_test.dart`:
- Line 11: Replace the default counter assertions in the test body with a smoke
test for MyApp: pump MyApp inside the required ProviderScope, allow the router’s
initial splash route to build, and assert the resulting app renders without
relying on counter text or Icons.add. Use the existing MyApp, ProviderScope, and
appRouter setup rather than testing the removed counter demo.
---
Outside diff comments:
In `@assets/animations/Ex1.json`:
- Around line 1-17904: Minify the bundled Lottie JSON asset represented by the
animation object, removing indentation and unnecessary whitespace while
preserving all animation data and valid JSON structure. Apply the same
optimization consistently to the other bundled assets under the animations
collection, without changing runtime behavior or asset contents.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: ASSERTIVE
Plan: Pro
Run ID: 10effafe-fa93-4691-8554-7c60eb8f5b2f
⛔ Files ignored due to path filters (78)
android/.gitignoreis excluded by!**/android/**android/app/build.gradle.ktsis excluded by!**/android/**android/app/src/debug/AndroidManifest.xmlis excluded by!**/android/**android/app/src/main/AndroidManifest.xmlis excluded by!**/android/**android/app/src/main/kotlin/org/aossie/move_your_body/MainActivity.ktis excluded by!**/android/**android/app/src/main/res/drawable-v21/launch_background.xmlis excluded by!**/android/**android/app/src/main/res/drawable/launch_background.xmlis excluded by!**/android/**android/app/src/main/res/mipmap-hdpi/ic_launcher.pngis excluded by!**/*.png,!**/android/**android/app/src/main/res/mipmap-hdpi/launcher_icon.pngis excluded by!**/*.png,!**/android/**android/app/src/main/res/mipmap-mdpi/ic_launcher.pngis excluded by!**/*.png,!**/android/**android/app/src/main/res/mipmap-mdpi/launcher_icon.pngis excluded by!**/*.png,!**/android/**android/app/src/main/res/mipmap-xhdpi/ic_launcher.pngis excluded by!**/*.png,!**/android/**android/app/src/main/res/mipmap-xhdpi/launcher_icon.pngis excluded by!**/*.png,!**/android/**android/app/src/main/res/mipmap-xxhdpi/ic_launcher.pngis excluded by!**/*.png,!**/android/**android/app/src/main/res/mipmap-xxhdpi/launcher_icon.pngis excluded by!**/*.png,!**/android/**android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.pngis excluded by!**/*.png,!**/android/**android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.pngis excluded by!**/*.png,!**/android/**android/app/src/main/res/values-night/styles.xmlis excluded by!**/android/**android/app/src/main/res/values/styles.xmlis excluded by!**/android/**android/app/src/profile/AndroidManifest.xmlis excluded by!**/android/**android/build.gradle.ktsis excluded by!**/android/**android/gradle.propertiesis excluded by!**/android/**android/gradle/wrapper/gradle-wrapper.propertiesis excluded by!**/android/**android/settings.gradle.ktsis excluded by!**/android/**assets/images/cardio_strength.pngis excluded by!**/*.pngassets/images/logo.pngis excluded by!**/*.pngassets/images/lower_back.pngis excluded by!**/*.pngassets/images/workout.pngis excluded by!**/*.pngios/.gitignoreis excluded by!**/ios/**ios/Flutter/AppFrameworkInfo.plistis excluded by!**/ios/**ios/Flutter/Debug.xcconfigis excluded by!**/ios/**ios/Flutter/Release.xcconfigis excluded by!**/ios/**ios/Runner.xcodeproj/project.pbxprojis excluded by!**/ios/**ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedatais excluded by!**/ios/**ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plistis excluded by!**/ios/**ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettingsis excluded by!**/ios/**ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcschemeis excluded by!**/ios/**ios/Runner.xcworkspace/contents.xcworkspacedatais excluded by!**/ios/**ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plistis excluded by!**/ios/**ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettingsis excluded by!**/ios/**ios/Runner/AppDelegate.swiftis excluded by!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.jsonis excluded by!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.jsonis excluded by!**/ios/**ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.pngis excluded by!**/*.png,!**/ios/**ios/Runner/Assets.xcassets/LaunchImage.imageset/README.mdis excluded by!**/ios/**ios/Runner/Base.lproj/LaunchScreen.storyboardis excluded by!**/ios/**ios/Runner/Base.lproj/Main.storyboardis excluded by!**/ios/**ios/Runner/Info.plistis excluded by!**/ios/**ios/Runner/Runner-Bridging-Header.his excluded by!**/ios/**ios/Runner/SceneDelegate.swiftis excluded by!**/ios/**ios/RunnerTests/RunnerTests.swiftis excluded by!**/ios/**lib/features/ai_inference/view_model/generated/ai_inference_view_model.g.dartis excluded by!**/generated/**lib/features/home/models/generated/home_state.freezed.dartis excluded by!**/generated/**lib/features/home/models/generated/session_details_state.freezed.dartis excluded by!**/generated/**lib/features/home/view_model/generated/home_view_model.g.dartis excluded by!**/generated/**lib/features/home/view_model/generated/session_details_view_model.g.dartis excluded by!**/generated/**lib/features/onboarding/model/generated/onboarding_data.freezed.dartis excluded by!**/generated/**lib/features/onboarding/view_model/generated/onboarding_view_model.g.dartis excluded by!**/generated/**lib/generated/app_localizations.dartis excluded by!**/generated/**lib/generated/app_localizations_en.dartis excluded by!**/generated/**pubspec.lockis excluded by!**/*.lock
📒 Files selected for processing (100)
.github/workflows/stale.yml.gitignore.metadataassets/animations/Ex1.jsonassets/animations/Ex10.jsonassets/animations/Ex13.jsonassets/animations/Ex14.jsonassets/animations/Ex15.jsonassets/animations/Ex16.jsonassets/animations/Ex17.jsonassets/animations/Ex18.jsonassets/animations/Ex19.jsonassets/animations/Ex2.jsonassets/animations/Ex20.jsonassets/animations/Ex22.jsonassets/animations/Ex23.jsonassets/animations/Ex24.jsonassets/animations/Ex29.jsonassets/animations/Ex3.jsonassets/animations/Ex4.jsonassets/animations/Ex5.jsonassets/animations/Ex6.jsonassets/animations/Ex9.jsonassets/exercises/exercises.jsonassets/models/model_quantized.onnxassets/models/vocab.txtbuild.yamllib/core/database/db_config.dartlib/core/database/schema/exercise_schema.dartlib/core/database/schema/session_exercises_schema.dartlib/core/database/schema/session_schedule_schema.dartlib/core/database/schema/tags_schema.dartlib/core/database/schema/user_schema.dartlib/core/database/tables/exercise_table.dartlib/core/database/tables/session_exercises_table.dartlib/core/database/tables/session_schedule_table.dartlib/core/database/tables/tags_table.dartlib/core/database/tables/user_table.dartlib/core/model/exercise_data.dartlib/core/model/session_data.dartlib/core/model/tag_data.dartlib/core/model/user_data.dartlib/core/routing/app_router.dartlib/core/routing/app_routes.dartlib/core/service/seed_service.dartlib/core/theme/app_colors.dartlib/core/theme/app_themes.dartlib/core/widgets/app_scaffold.dartlib/core/widgets/button_card.dartlib/core/widgets/custom_bottom_navbar.dartlib/core/widgets/feature_chip.dartlib/core/widgets/loading_screen.dartlib/features/ai_inference/repositories/ai_repository.dartlib/features/ai_inference/repositories/tag_setup_repository.dartlib/features/ai_inference/services/cosine_similairty.dartlib/features/ai_inference/services/onnx_service.dartlib/features/ai_inference/services/tokenizer_service.dartlib/features/ai_inference/view_model/ai_inference_view_model.dartlib/features/home/models/home_state.dartlib/features/home/models/session_details_state.dartlib/features/home/repositories/exercise_repository.dartlib/features/home/repositories/session_repository.dartlib/features/home/screens/exercise_info_screen.dartlib/features/home/screens/home_screen.dartlib/features/home/screens/session_details_screen.dartlib/features/home/services/equipment_filter_service.dartlib/features/home/services/recommendation_service.dartlib/features/home/services/safety_filter_service.dartlib/features/home/view_model/home_view_model.dartlib/features/home/view_model/session_details_view_model.dartlib/features/home/widgets/exercise_info/animation_preview.dartlib/features/home/widgets/exercise_info/exercise_info_body.dartlib/features/home/widgets/exercise_info/info_badges.dartlib/features/home/widgets/exercise_info/section_card.dartlib/features/home/widgets/home/home_app_bar.dartlib/features/home/widgets/home/quick_plan_card.dartlib/features/home/widgets/home/search_bar.dartlib/features/home/widgets/home/session_summary_card.dartlib/features/home/widgets/home/today_session_card.dartlib/features/home/widgets/home/week_selector.dartlib/features/home/widgets/home/weekly_stats_card.dartlib/features/home/widgets/session_details/exercise_tile.dartlib/features/home/widgets/session_details/instructions_card.dartlib/features/home/widgets/session_details/timing_settings_card.dartlib/features/onboarding/model/onboarding_data.dartlib/features/onboarding/repository/user_repository.dartlib/features/onboarding/view/body_region_screen.dartlib/features/onboarding/view/difficulty_level.dartlib/features/onboarding/view/equipment_screen.dartlib/features/onboarding/view/goal_screen.dartlib/features/onboarding/view/health_issues.dartlib/features/onboarding/view/intensity_level.dartlib/features/onboarding/view/resultscreen.dartlib/features/onboarding/view/splash_screen.dartlib/features/onboarding/view/user_details.dartlib/features/onboarding/view/welcome_screen.dartlib/features/onboarding/view_model/onboarding_view_model.dartlib/main.dartpubspec.yamltest/widget_test.dart
| # Flutter generated | ||
| .flutter-plugins | ||
| .flutter-plugins-dependencies | ||
| lib/generated/ No newline at end of file |
There was a problem hiding this comment.
🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win
lib/generated/ pattern won't match nested generated/ output directories.
The build.yaml configures freezed and source_gen to output to lib/{{dir}}/generated/{{name}}.*.dart. For a source file like lib/features/home/models/home_state.dart, the output lands at lib/features/home/models/generated/home_state.freezed.dart. The .gitignore entry lib/generated/ only matches the top-level lib/generated/ directory and will not match these nested paths, causing generated files to be tracked by git.
🛡️ Proposed fix
-lib/generated/
+lib/**/generated/📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| lib/generated/ | |
| lib/**/generated/ |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In @.gitignore at line 349, Update the generated-output ignore pattern near
lib/generated/ so it matches generated/ directories at any depth under lib,
including paths such as lib/features/home/models/generated/. Preserve ignoring
the existing top-level generated directory.
| @@ -0,0 +1,12 @@ | |||
| targets: | |||
There was a problem hiding this comment.
🗄️ Data Integrity & Integration | 🟡 Minor | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
printf '\n== build.yaml ==\n'
if [ -f build.yaml ]; then
cat -n build.yaml
else
echo 'build.yaml not found'
fi
printf '\n== .gitignore (relevant lines) ==\n'
if [ -f .gitignore ]; then
nl -ba .gitignore | sed -n '330,360p'
else
echo '.gitignore not found'
fi
printf '\n== locate builder config references ==\n'
rg -n "build_extensions|freezed|combining_builder|generated/" build.yaml .gitignore . -g '!**/.git/**' || trueRepository: AOSSIE-Org/MoveYourBody
Length of output: 685
🏁 Script executed:
#!/bin/bash
set -euo pipefail
printf '\n== .gitignore ==\n'
if [ -f .gitignore ]; then
cat -n .gitignore | sed -n '1,260p'
else
echo '.gitignore not found'
fi
printf '\n== candidate build config files ==\n'
git ls-files | rg '(^|/)(build\.yaml|\.gitignore|pubspec\.yaml|pubspec\.lock)$' || true
printf '\n== search for generated ignore rules ==\n'
rg -n 'lib/.*/generated/|lib/generated/' .gitignore . -g '!**/.git/**' || trueRepository: AOSSIE-Org/MoveYourBody
Length of output: 4987
🏁 Script executed:
#!/bin/bash
set -euo pipefail
python3 - <<'PY'
from pathlib import Path
p = Path('.gitignore')
if not p.exists():
print('.gitignore not found')
raise SystemExit(0)
for i, line in enumerate(p.read_text().splitlines(), 1):
if 'lib/generated/' in line or 'generated/' in line:
print(f'{i}:{line}')
PYRepository: AOSSIE-Org/MoveYourBody
Length of output: 180
🌐 Web query:
freezed build.yaml build_extensions source_gen:combining_builder options generated output subdirectory
💡 Result:
You can configure the output directory for files generated by Freezed and source_gen (such as.g.dart and.freezed.dart) by using the build_extensions option in your build.yaml file [1][2][3]. It is not possible to redirect all generated files into a single, centralized directory (e.g., a top-level /generated folder) because build_runner requires a unique mapping that prevents collisions when multiple source files share the same name [1][4]. Instead, you must use capture groups to maintain a directory structure that mirrors your source tree, typically by placing generated files within a subdirectory of the file's original location [1][5][3]. To implement this, add a build.yaml file in your project root and configure both the Freezed builder and the source_gen combining_builder as follows [1][3][6]: targets: $default: builders: source_gen|combining_builder: generate_for: - lib/.dart options: build_extensions: '^lib/{{path}}/{{file}}.dart': 'lib/{{path}}/generated/{{file}}.g.dart' freezed|freezed: enabled: true options: build_extensions: '^lib/{{path}}/{{file}}.dart': 'lib/{{path}}/generated/{{file}}.freezed.dart' In this configuration: 1. {{path}} captures the subdirectories relative to lib/ [1][3]. 2. {{file}} captures the filename [1][3]. 3. The generated files are created in a generated/ subdirectory within each respective source folder (e.g., lib/models/user.dart results in lib/models/generated/user.freezed.dart) [1][7]. Important Considerations: - Part Directives: Because you are moving the generated files, you must update the part directives in your source files to match the new location (e.g., part 'generated/user.freezed.dart';) [2]. - Collision Avoidance: If you attempt to use a static output path that ignores the input directory structure, build_runner will fail if two source files have the same name in different subdirectories, as they would attempt to overwrite the same output file [1][4]. Using the {{path}} capture group ensures each generated file has a unique path [1][3][4].
Citations:
- 1: https://stackoverflow.com/questions/68190081/is-there-a-way-to-put-the-generated-files-in-a-separate-folder-in-flutter
- 2: https://pub.dev/documentation/source_gen/latest/
- 3: https://stackoverflow.com/questions/54531025/how-to-generate-files-using-dart-source-gen-to-a-different-directory
- 4: https://stackoverflow.com/questions/74889545/is-there-a-build-extensions-rule-in-build-yaml-to-output-all-generated-flutter-m
- 5: https://www.simonbinder.eu/posts/build_directory_moves/
- 6: https://pub.dev/packages/freezed
- 7: Generating files in different directories rrousselGit/freezed#553
🌐 Web query:
site:pub.dev build_extensions build.yaml freezed source_gen combining_builder
💡 Result:
In the context of Dart code generation, source_gen:combining_builder is a specialized builder used to aggregate multiple output fragments generated by SharedPartBuilder into a single, cohesive .g.dart file [1][2][3]. ### Role of combining_builder When you use builders based on SharedPartBuilder (such as freezed or json_serializable), those builders are typically configured to build_to: cache [1][2]. This causes them to generate hidden intermediate files (e.g., .freezed.g.part or .json_serializable.g.part) rather than final source files [1][3]. The combining_builder is responsible for: 1. Detecting these intermediate part files [4]. 2. Concatenating them into the final .g.dart file in your source directory [1][2][3]. 3. Ensuring that multiple builders can contribute code to the same .g.dart file without conflicting [3]. ### Configuration in build.yaml To use combining_builder, you must configure it within your build.yaml file [1][2]. A common setup involves defining it under the builders section of your target [1][2]. Example configuration: yaml targets: $default: builders: # Configuring the combining builder source_gen:combining_builder: options: # Optional: Define custom headers or preambles header: "// Copyright 2026" # Optional: Ignore specific lints in generated files ignore_for_file: - lint_alpha When creating a custom builder that uses SharedPartBuilder, you must also inform build_runner to apply the combining_builder by adding an applies_builders entry to your builder's configuration [1][2]: yaml builders: my_custom_builder: import: "package:my_package/builder.dart" builder_factories: ["myCustomBuilder"] build_extensions: {".dart": [".my_custom_builder.g.part"]} auto_apply: dependents build_to: cache # Apply the combining builder to merge output applies_builders: ["source_gen:combining_builder"] ### Best Practices * Never use the .g.dart extension for any other builder; it is reserved for the output of combining_builder to prevent file collisions [1][2]. * If you are using standard packages like freezed or json_serializable, these are typically already set up to work with the combining_builder automatically via their own build.yaml definitions [5][6]. You generally only need to configure the combining_builder directly if you need to customize output options like header, preamble, or ignore_for_file [1][2].
Citations:
- 1: https://pub.dev/packages/source_gen
- 2: https://pub.dev/documentation/source_gen/latest/index.html
- 3: https://pub.dev/documentation/source_gen/latest/source_gen/SharedPartBuilder-class.html
- 4: https://pub.dev/documentation/source_gen/latest/builder/CombiningBuilder-class.html
- 5: https://pub.dev/documentation/freezed/latest/
- 6: https://pub.dev/packages/json_serializable
🌐 Web query:
site:pub.dev "build_extensions" "freezed" "build.yaml"
💡 Result:
In Dart and Flutter projects, the build_extensions configuration in a build.yaml file defines how a builder maps input files to output files. For the Freezed package, you generally do not need to manually configure build_extensions because it is handled automatically by the package's internal builder configuration [1][2]. However, if you are using multiple code generators together (such as Freezed and json_serializable), you may need to configure your build.yaml to ensure they run correctly [3]. While build_extensions are typically defined by the package author in their own builder definition, you can use build.yaml to manage builder options or dependencies [4][5]. If you find it necessary to reference build_extensions in your build.yaml for custom or complex build setups, the standard syntax follows this structure: builders: your_builder_name: build_extensions: { ".dart": [".g.dart"] } In the context of Freezed, users typically only interact with build.yaml to set global options for the Freezed generator, such as disabling unmodifiable collections: targets: $default: builders: freezed: options: makeCollectionsUnmodifiable: false If you are working with multiple generators that require specific build order, you can use the runs_before or applies_builders properties in your build.yaml to manage how builders interact with each other [6].
Citations:
- 1: https://pub.dev/packages/freezed
- 2: https://pub.dev/packages/freezed/versions/0.15.1+1
- 3: https://pub.dev/documentation/soti_schema_plus/latest/
- 4: https://pub.dev/packages/freezed/versions/2.5.8/changelog
- 5: https://pub.dev/packages/build_runner
- 6: https://pub.dev/packages/openapi_repository/versions/1.1.0
🌐 Web query:
site:pub.dev/source_gen "build_extensions" "build.yaml"
💡 Result:
source_gen uses build_extensions in build.yaml to map input files to generated outputs. The docs say you can change where generated files go by setting build_extensions on the builder; it’s a map from input patterns like ".dart" to output file names. For SharedPartBuilder, the example is:
build_extensions: {".dart": [".some_cool_builder.g.part"]}with build_to: cache and applies_builders: ["source_gen:combining_builder"]. [1]
Also, the build package docs note that build_extensions in build.yaml should usually match Builder.buildExtensions, because it affects builder ordering. [2]
🏁 Script executed:
#!/bin/bash
set -euo pipefail
printf '\n== pubspec.yaml ==\n'
cat -n pubspec.yaml
printf '\n== pubspec.lock (relevant packages) ==\n'
python3 - <<'PY'
from pathlib import Path
text = Path('pubspec.lock').read_text() if Path('pubspec.lock').exists() else ''
if not text:
print('pubspec.lock not found or empty')
raise SystemExit(0)
want = {'freezed', 'freezed_annotation', 'build_runner', 'source_gen'}
lines = text.splitlines()
for i, line in enumerate(lines, 1):
if line.startswith(' ') and line.strip(':') in want:
start = max(1, i-2)
end = min(len(lines), i+12)
for j in range(start, end+1):
print(f'{j}:{lines[j-1]}')
print('---')
PYRepository: AOSSIE-Org/MoveYourBody
Length of output: 5377
Ignore nested generated directories .gitignore only matches the top-level lib/generated/, so files under lib/**/generated/ will still be tracked. Change that rule to lib/**/generated/.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@build.yaml` at line 1, Update the ignore rule under the targets configuration
to use the recursive pattern lib/**/generated/ instead of the top-level-only
lib/generated/ pattern, ensuring generated directories nested anywhere under lib
are ignored.
| Future<Database> get database async { | ||
| if (_database != null) return _database!; | ||
|
|
||
| _database = await _initDatabase(); | ||
| return _database!; | ||
| } |
There was a problem hiding this comment.
🩺 Stability & Availability | 🟠 Major | ⚡ Quick win
Race condition in lazy database initialization.
Two concurrent callers can both see _database == null, each invoke _initDatabase(), and create separate Database instances. One instance is orphaned (resource leak) and both reference the same file, risking concurrent-write hazards. Cache the Future<Database> instead of the resolved Database?.
🔒 Proposed fix: cache the initialization future
- Database? _database;
-
- Future<Database> get database async {
- if (_database != null) return _database!;
-
- _database = await _initDatabase();
- return _database!;
- }
+ Future<Database>? _databaseFuture;
+
+ Future<Database> get database async {
+ _databaseFuture ??= _initDatabase();
+ return _databaseFuture!;
+ }📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| Future<Database> get database async { | |
| if (_database != null) return _database!; | |
| _database = await _initDatabase(); | |
| return _database!; | |
| } | |
| Future<Database>? _databaseFuture; | |
| Future<Database> get database async { | |
| _databaseFuture ??= _initDatabase(); | |
| return _databaseFuture!; | |
| } |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@lib/core/database/db_config.dart` around lines 17 - 22, Update the database
getter and its backing state to cache the in-flight Future<Database> rather than
only the resolved Database instance. Ensure concurrent callers reuse the same
initialization future and return its result, while preserving _initDatabase as
the single initialization path.
| return openDatabase( | ||
| path, | ||
| version: 4, | ||
| onCreate: (db, version) async { | ||
| await UserDatabaseService.createTable(db); | ||
| await ExerciseDatabaseService.createTable(db); | ||
| await TagsDatabaseService.createTable(db); | ||
| await SessionScheduleDatabaseService.createTable(db); | ||
| await SessionExercisesDatabaseService.createTable(db); | ||
| }, | ||
| onUpgrade: (db, oldVersion, newVersion) async { | ||
| if (oldVersion < 2) { | ||
| await ExerciseDatabaseService.createTable(db); | ||
| await TagsDatabaseService.createTable(db); | ||
| } | ||
| if (oldVersion < 3) { | ||
| await SessionScheduleDatabaseService.createTable(db); | ||
| } | ||
| if (oldVersion < 4) { | ||
| await SessionExercisesDatabaseService.createTable(db); | ||
| } | ||
| }, | ||
| ); |
There was a problem hiding this comment.
🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win
Foreign key constraints are not enforced — ON DELETE CASCADE will silently no-op.
SQLite disables FK enforcement by default. Without an onConfigure callback executing PRAGMA foreign_keys = ON, the FOREIGN KEY ... ON DELETE CASCADE defined in session_exercises_schema.dart (line 17) will never fire, leaving orphaned session_exercises rows when parent session_schedule rows are deleted.
🛡️ Proposed fix: enable foreign keys in onConfigure
return openDatabase(
path,
version: 4,
+ onConfigure: (db) async {
+ await db.execute('PRAGMA foreign_keys = ON');
+ },
onCreate: (db, version) async {📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| return openDatabase( | |
| path, | |
| version: 4, | |
| onCreate: (db, version) async { | |
| await UserDatabaseService.createTable(db); | |
| await ExerciseDatabaseService.createTable(db); | |
| await TagsDatabaseService.createTable(db); | |
| await SessionScheduleDatabaseService.createTable(db); | |
| await SessionExercisesDatabaseService.createTable(db); | |
| }, | |
| onUpgrade: (db, oldVersion, newVersion) async { | |
| if (oldVersion < 2) { | |
| await ExerciseDatabaseService.createTable(db); | |
| await TagsDatabaseService.createTable(db); | |
| } | |
| if (oldVersion < 3) { | |
| await SessionScheduleDatabaseService.createTable(db); | |
| } | |
| if (oldVersion < 4) { | |
| await SessionExercisesDatabaseService.createTable(db); | |
| } | |
| }, | |
| ); | |
| return openDatabase( | |
| path, | |
| version: 4, | |
| onConfigure: (db) async { | |
| await db.execute('PRAGMA foreign_keys = ON'); | |
| }, | |
| onCreate: (db, version) async { | |
| await UserDatabaseService.createTable(db); | |
| await ExerciseDatabaseService.createTable(db); | |
| await TagsDatabaseService.createTable(db); | |
| await SessionScheduleDatabaseService.createTable(db); | |
| await SessionExercisesDatabaseService.createTable(db); | |
| }, | |
| onUpgrade: (db, oldVersion, newVersion) async { | |
| if (oldVersion < 2) { | |
| await ExerciseDatabaseService.createTable(db); | |
| await TagsDatabaseService.createTable(db); | |
| } | |
| if (oldVersion < 3) { | |
| await SessionScheduleDatabaseService.createTable(db); | |
| } | |
| if (oldVersion < 4) { | |
| await SessionExercisesDatabaseService.createTable(db); | |
| } | |
| }, | |
| ); |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@lib/core/database/db_config.dart` around lines 27 - 49, Update the
openDatabase configuration in the database-opening method to add an onConfigure
callback that enables SQLite foreign-key enforcement with PRAGMA foreign_keys =
ON. Keep the existing creation and migration callbacks unchanged so the ON
DELETE CASCADE constraint in SessionExercisesDatabaseService is applied.
| type: ExerciseType.values.firstWhere((e) => e.name == json['type']), | ||
|
|
||
| primaryMuscles: _splitByComma(json['primary_muscles']), | ||
|
|
||
| secondaryMuscles: _splitByComma(json['secondary_muscles']), | ||
|
|
||
| bodyRegions: _parseBodyRegions(json['body_region']), | ||
|
|
||
| movementPattern: json['movement_pattern'] ?? '', | ||
|
|
||
| difficulty: Difficulty.values.firstWhere( | ||
| (e) => e.name == json['difficulty'], | ||
| ), | ||
|
|
||
| intensity: Intensity.values.firstWhere( | ||
| (e) => e.name == json['intensity'], | ||
| ), |
There was a problem hiding this comment.
🩺 Stability & Availability | 🔴 Critical | ⚡ Quick win
firstWhere without orElse used for enum lookups across exercise_data.dart and tag_data.dart. All four call sites use Enum.values.firstWhere((e) => e.name == value) without an orElse, throwing an unhelpful StateError: No element if the source data contains an unrecognized or null value.
lib/core/model/exercise_data.dart#L97-L113: AddorElseto theExerciseType,Difficulty, andIntensitylookups infromJsonwith descriptiveFormatExceptionmessages.lib/core/model/tag_data.dart#L33-L35: AddorElseto theTagTypelookup inTag.fromMapwith a descriptiveFormatExceptionmessage.
📍 Affects 2 files
lib/core/model/exercise_data.dart#L97-L113(this comment)lib/core/model/tag_data.dart#L33-L35
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@lib/core/model/exercise_data.dart` around lines 97 - 113, Replace the three
enum lookups in Exercise.fromJson for ExerciseType, Difficulty, and Intensity
with firstWhere calls that provide descriptive FormatException fallbacks for
unrecognized or null values. Apply the same change to the TagType lookup in
Tag.fromMap; update both lib/core/model/exercise_data.dart lines 97-113 and
lib/core/model/tag_data.dart lines 33-35, preserving successful enum parsing.
🩺 Stability & Availability | 🟠 Major | ⚡ Quick win
firstWhere without orElse crashes on unrecognized enum values.
ExerciseType, Difficulty, and Intensity lookups all use firstWhere without an orElse. If the JSON contains a value that doesn't match any enum name, this throws StateError: No element with no context about which field failed. This shares the same root cause as Tag.fromMap in tag_data.dart.
🛡️ Proposed fix for all three lookups
- type: ExerciseType.values.firstWhere((e) => e.name == json['type']),
+ type: ExerciseType.values.firstWhere(
+ (e) => e.name == json['type'],
+ orElse: () => throw FormatException(
+ 'Unknown ExerciseType: ${json['type']}',
+ ),
+ ),- difficulty: Difficulty.values.firstWhere(
- (e) => e.name == json['difficulty'],
- ),
+ difficulty: Difficulty.values.firstWhere(
+ (e) => e.name == json['difficulty'],
+ orElse: () => throw FormatException(
+ 'Unknown Difficulty: ${json['difficulty']}',
+ ),
+ ),- intensity: Intensity.values.firstWhere(
- (e) => e.name == json['intensity'],
- ),
+ intensity: Intensity.values.firstWhere(
+ (e) => e.name == json['intensity'],
+ orElse: () => throw FormatException(
+ 'Unknown Intensity: ${json['intensity']}',
+ ),
+ ),📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| type: ExerciseType.values.firstWhere((e) => e.name == json['type']), | |
| primaryMuscles: _splitByComma(json['primary_muscles']), | |
| secondaryMuscles: _splitByComma(json['secondary_muscles']), | |
| bodyRegions: _parseBodyRegions(json['body_region']), | |
| movementPattern: json['movement_pattern'] ?? '', | |
| difficulty: Difficulty.values.firstWhere( | |
| (e) => e.name == json['difficulty'], | |
| ), | |
| intensity: Intensity.values.firstWhere( | |
| (e) => e.name == json['intensity'], | |
| ), | |
| type: ExerciseType.values.firstWhere( | |
| (e) => e.name == json['type'], | |
| orElse: () => throw FormatException( | |
| 'Unknown ExerciseType: ${json['type']}', | |
| ), | |
| ), | |
| primaryMuscles: _splitByComma(json['primary_muscles']), | |
| secondaryMuscles: _splitByComma(json['secondary_muscles']), | |
| bodyRegions: _parseBodyRegions(json['body_region']), | |
| movementPattern: json['movement_pattern'] ?? '', | |
| difficulty: Difficulty.values.firstWhere( | |
| (e) => e.name == json['difficulty'], | |
| orElse: () => throw FormatException( | |
| 'Unknown Difficulty: ${json['difficulty']}', | |
| ), | |
| ), | |
| intensity: Intensity.values.firstWhere( | |
| (e) => e.name == json['intensity'], | |
| orElse: () => throw FormatException( | |
| 'Unknown Intensity: ${json['intensity']}', | |
| ), | |
| ), |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@lib/core/model/exercise_data.dart` around lines 97 - 113, Update the enum
lookups in the exercise data deserialization method for ExerciseType,
Difficulty, and Intensity to provide an orElse fallback for unrecognized JSON
values, matching the handling used by Tag.fromMap. Preserve valid enum parsing
while preventing StateError and supplying the appropriate fallback for each
field.
| super.dispose(); | ||
| } | ||
|
|
||
| void _increment() => widget.onChanged(widget.seconds + 5); |
There was a problem hiding this comment.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
_increment has no upper bound.
_decrement clamps to (0, 9999) but _increment does not clamp, so stepper taps can push values beyond 9999 while the text field caps at 4 digits. Add a matching .clamp(0, 9999) to _increment for consistency.
🛡️ Proposed fix
- void _increment() => widget.onChanged(widget.seconds + 5);
+ void _increment() => widget.onChanged((widget.seconds + 5).clamp(0, 9999));🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@lib/features/home/widgets/session_details/timing_settings_card.dart` at line
99, Update _increment to clamp the computed value to the existing 0–9999 range
before passing it to widget.onChanged, matching _decrement and keeping stepper
values within the text field’s four-digit limit.
| ButtonCard( | ||
| title: 'Cardio and Endurance', | ||
| selected: selectedBodyRegions.contains(BodyRegion.cardioAndEndurance.name), | ||
| titleFontSize: 20, | ||
| onTap: () { | ||
| onboardingNotifier.toggleTargetBodyRegion( | ||
| BodyRegion.cardioAndEndurance.name, | ||
| ); | ||
| }, | ||
| ), | ||
| const SizedBox(height: 20), | ||
|
|
||
| ButtonCard( | ||
| title: 'Upper Body', | ||
| selected: selectedBodyRegions.contains(BodyRegion.upperBody.name), | ||
| titleFontSize: 20, | ||
| onTap: () { | ||
| onboardingNotifier.toggleTargetBodyRegion(BodyRegion.upperBody.name); | ||
| }, | ||
| ), | ||
|
|
||
| const SizedBox(height: 20), | ||
|
|
||
| ButtonCard( | ||
| title: 'Core Strength', | ||
| selected: selectedBodyRegions.contains(BodyRegion.core.name), | ||
| titleFontSize: 20, | ||
| onTap: () { | ||
| onboardingNotifier.toggleTargetBodyRegion(BodyRegion.core.name); | ||
| }, | ||
| ), | ||
|
|
||
| const SizedBox(height: 20), | ||
|
|
||
| ButtonCard( | ||
| title: 'Lower Body', | ||
| selected: selectedBodyRegions.contains(BodyRegion.lowerBody.name), | ||
| titleFontSize: 20, | ||
| onTap: () { | ||
| onboardingNotifier.toggleTargetBodyRegion(BodyRegion.lowerBody.name); | ||
| }, | ||
| ), | ||
|
|
||
| const SizedBox(height: 20), | ||
| ButtonCard( | ||
| title: 'Mobility and Flexibility', | ||
| selected: selectedBodyRegions.contains( | ||
| BodyRegion.mobilityAndFlexibility.name, | ||
| ), | ||
| titleFontSize: 20, | ||
| onTap: () { | ||
| onboardingNotifier.toggleTargetBodyRegion( | ||
| BodyRegion.mobilityAndFlexibility.name, | ||
| ); | ||
| }, | ||
| ), |
There was a problem hiding this comment.
🎯 Functional Correctness | 🟠 Major | ⚡ Quick win
Missing fullBody option from the BodyRegion enum.
The BodyRegion enum defines 6 values (lowerBody, core, fullBody, upperBody, cardioAndEndurance, mobilityAndFlexibility), but the screen only offers 5 — fullBody is absent. Users cannot select "Full Body" as a target region, and exercises tagged with fullBody may never be recommended.
💚 Proposed fix: add the missing Full Body option
const SizedBox(height: 20),
ButtonCard(
+ title: 'Full Body',
+ selected: selectedBodyRegions.contains(BodyRegion.fullBody.name),
+ titleFontSize: 20,
+ onTap: () {
+ onboardingNotifier.toggleTargetBodyRegion(
+ BodyRegion.fullBody.name,
+ );
+ },
+ ),
+
+ const SizedBox(height: 20),
+ ButtonCard(
title: 'Mobility and Flexibility',📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| ButtonCard( | |
| title: 'Cardio and Endurance', | |
| selected: selectedBodyRegions.contains(BodyRegion.cardioAndEndurance.name), | |
| titleFontSize: 20, | |
| onTap: () { | |
| onboardingNotifier.toggleTargetBodyRegion( | |
| BodyRegion.cardioAndEndurance.name, | |
| ); | |
| }, | |
| ), | |
| const SizedBox(height: 20), | |
| ButtonCard( | |
| title: 'Upper Body', | |
| selected: selectedBodyRegions.contains(BodyRegion.upperBody.name), | |
| titleFontSize: 20, | |
| onTap: () { | |
| onboardingNotifier.toggleTargetBodyRegion(BodyRegion.upperBody.name); | |
| }, | |
| ), | |
| const SizedBox(height: 20), | |
| ButtonCard( | |
| title: 'Core Strength', | |
| selected: selectedBodyRegions.contains(BodyRegion.core.name), | |
| titleFontSize: 20, | |
| onTap: () { | |
| onboardingNotifier.toggleTargetBodyRegion(BodyRegion.core.name); | |
| }, | |
| ), | |
| const SizedBox(height: 20), | |
| ButtonCard( | |
| title: 'Lower Body', | |
| selected: selectedBodyRegions.contains(BodyRegion.lowerBody.name), | |
| titleFontSize: 20, | |
| onTap: () { | |
| onboardingNotifier.toggleTargetBodyRegion(BodyRegion.lowerBody.name); | |
| }, | |
| ), | |
| const SizedBox(height: 20), | |
| ButtonCard( | |
| title: 'Mobility and Flexibility', | |
| selected: selectedBodyRegions.contains( | |
| BodyRegion.mobilityAndFlexibility.name, | |
| ), | |
| titleFontSize: 20, | |
| onTap: () { | |
| onboardingNotifier.toggleTargetBodyRegion( | |
| BodyRegion.mobilityAndFlexibility.name, | |
| ); | |
| }, | |
| ), | |
| ButtonCard( | |
| title: 'Cardio and Endurance', | |
| selected: selectedBodyRegions.contains(BodyRegion.cardioAndEndurance.name), | |
| titleFontSize: 20, | |
| onTap: () { | |
| onboardingNotifier.toggleTargetBodyRegion( | |
| BodyRegion.cardioAndEndurance.name, | |
| ); | |
| }, | |
| ), | |
| const SizedBox(height: 20), | |
| ButtonCard( | |
| title: 'Upper Body', | |
| selected: selectedBodyRegions.contains(BodyRegion.upperBody.name), | |
| titleFontSize: 20, | |
| onTap: () { | |
| onboardingNotifier.toggleTargetBodyRegion(BodyRegion.upperBody.name); | |
| }, | |
| ), | |
| const SizedBox(height: 20), | |
| ButtonCard( | |
| title: 'Core Strength', | |
| selected: selectedBodyRegions.contains(BodyRegion.core.name), | |
| titleFontSize: 20, | |
| onTap: () { | |
| onboardingNotifier.toggleTargetBodyRegion(BodyRegion.core.name); | |
| }, | |
| ), | |
| const SizedBox(height: 20), | |
| ButtonCard( | |
| title: 'Lower Body', | |
| selected: selectedBodyRegions.contains(BodyRegion.lowerBody.name), | |
| titleFontSize: 20, | |
| onTap: () { | |
| onboardingNotifier.toggleTargetBodyRegion(BodyRegion.lowerBody.name); | |
| }, | |
| ), | |
| const SizedBox(height: 20), | |
| ButtonCard( | |
| title: 'Full Body', | |
| selected: selectedBodyRegions.contains(BodyRegion.fullBody.name), | |
| titleFontSize: 20, | |
| onTap: () { | |
| onboardingNotifier.toggleTargetBodyRegion( | |
| BodyRegion.fullBody.name, | |
| ); | |
| }, | |
| ), | |
| const SizedBox(height: 20), | |
| ButtonCard( | |
| title: 'Mobility and Flexibility', | |
| selected: selectedBodyRegions.contains( | |
| BodyRegion.mobilityAndFlexibility.name, | |
| ), | |
| titleFontSize: 20, | |
| onTap: () { | |
| onboardingNotifier.toggleTargetBodyRegion( | |
| BodyRegion.mobilityAndFlexibility.name, | |
| ); | |
| }, | |
| ), |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@lib/features/onboarding/view/body_region_screen.dart` around lines 70 - 125,
Add a Full Body ButtonCard option to the body-region choices alongside the
existing BodyRegion values, using BodyRegion.fullBody.name for selection state
and toggleTargetBodyRegion. Match the existing card styling and spacing so users
can select the fullBody target region.
| SizedBox( | ||
| width: double.infinity, | ||
| child: ElevatedButton( | ||
| onPressed: () { | ||
| context.push(AppRoutes.intensity); | ||
| }, | ||
| child: const Text('Continue'), | ||
| ), | ||
| ), |
There was a problem hiding this comment.
🎯 Functional Correctness | 🟠 Major | ⚡ Quick win
Continue buttons are always enabled across all four selection screens — users can skip without choosing. The shared root cause is that ElevatedButton.onPressed is unconditionally set in every screen, allowing users to advance through onboarding without selecting a difficulty, intensity, body region, or equipment. This can produce incomplete onboarding data and un-tailored recommendations downstream.
lib/features/onboarding/view/difficulty_level.dart#L107-L115: disable Continue whenselectedDifficultyis empty/null.lib/features/onboarding/view/intensity_level.dart#L107-L115: disable Continue whenselectedIntensityis empty/null.lib/features/onboarding/view/body_region_screen.dart#L129-L137: disable Continue whenselectedBodyRegionsis empty.lib/features/onboarding/view/equipment_screen.dart#L136-L144: disable Continue whenselectedEquipmentsis empty.
💚 Proposed fix for difficulty_level.dart (apply analogously to other screens)
SizedBox(
width: double.infinity,
child: ElevatedButton(
- onPressed: () {
+ onPressed: selectedDifficulty.isNotEmpty
+ ? () {
context.push(AppRoutes.intensity);
- },
+ }
+ : null,
child: const Text('Continue'),
),
),📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| SizedBox( | |
| width: double.infinity, | |
| child: ElevatedButton( | |
| onPressed: () { | |
| context.push(AppRoutes.intensity); | |
| }, | |
| child: const Text('Continue'), | |
| ), | |
| ), | |
| SizedBox( | |
| width: double.infinity, | |
| child: ElevatedButton( | |
| onPressed: selectedDifficulty.isNotEmpty | |
| ? () { | |
| context.push(AppRoutes.intensity); | |
| } | |
| : null, | |
| child: const Text('Continue'), | |
| ), | |
| ), |
📍 Affects 4 files
lib/features/onboarding/view/difficulty_level.dart#L107-L115(this comment)lib/features/onboarding/view/intensity_level.dart#L107-L115lib/features/onboarding/view/body_region_screen.dart#L129-L137lib/features/onboarding/view/equipment_screen.dart#L136-L144
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@lib/features/onboarding/view/difficulty_level.dart` around lines 107 - 115,
Disable each Continue button until its corresponding selection is non-empty: in
lib/features/onboarding/view/difficulty_level.dart lines 107-115, guard the
button using selectedDifficulty; in
lib/features/onboarding/view/intensity_level.dart lines 107-115, use
selectedIntensity; in lib/features/onboarding/view/body_region_screen.dart lines
129-137, use selectedBodyRegions; and in
lib/features/onboarding/view/equipment_screen.dart lines 136-144, use
selectedEquipments. Set onPressed to null for empty selections while preserving
the existing navigation when a valid selection exists.
| children: List.generate( | ||
| 6, | ||
| (index) => Container( | ||
| margin: const EdgeInsets.symmetric(horizontal: 4), | ||
| width: 8, | ||
| height: 8, | ||
| decoration: BoxDecoration( | ||
| color: index == 2 | ||
| ? colorScheme.primary | ||
| : colorScheme.onSurface.withValues(alpha: 0.25), | ||
| borderRadius: BorderRadius.circular(999), | ||
| ), | ||
| ), |
There was a problem hiding this comment.
📐 Maintainability & Code Quality | 🟠 Major | ⚡ Quick win
Progress indicator copy-paste bug: all three screens highlight step 2 instead of their actual step. The index == 2 check was copied from the difficulty screen (where it is correct) to intensity, body region, and equipment without updating the index. The root fix is to extract a shared progress widget parameterized by step index, eliminating the copy-paste pattern.
lib/features/onboarding/view/intensity_level.dart#L41-L53: changeindex == 2toindex == 3.lib/features/onboarding/view/body_region_screen.dart#L40-L53: changeindex == 2toindex == 4.lib/features/onboarding/view/equipment_screen.dart#L42-L55: changeindex == 2toindex == 5.
♻️ Proposed refactor: extract a shared OnboardingProgress widget
// lib/core/widgets/onboarding_progress.dart
import 'package:flutter/material.dart';
class OnboardingProgress extends StatelessWidget {
final int currentStep;
final int totalSteps;
final Color activeColor;
final Color inactiveColor;
const OnboardingProgress({
super.key,
required this.currentStep,
this.totalSteps = 6,
required this.activeColor,
required this.inactiveColor,
});
`@override`
Widget build(BuildContext context) {
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: List.generate(
totalSteps,
(index) => Container(
margin: const EdgeInsets.symmetric(horizontal: 4),
width: 8,
height: 8,
decoration: BoxDecoration(
color: index == currentStep ? activeColor : inactiveColor,
borderRadius: BorderRadius.circular(999),
),
),
),
);
}
}Then use it in each screen:
// In IntensityScreen:
Expanded(
child: OnboardingProgress(
currentStep: 3,
activeColor: colorScheme.primary,
inactiveColor: colorScheme.onSurface.withValues(alpha: 0.25),
),
),📍 Affects 3 files
lib/features/onboarding/view/intensity_level.dart#L41-L53(this comment)lib/features/onboarding/view/body_region_screen.dart#L40-L53lib/features/onboarding/view/equipment_screen.dart#L42-L55
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@lib/features/onboarding/view/intensity_level.dart` around lines 41 - 53, The
onboarding progress indicator is duplicated with an incorrect hardcoded active
step. Extract a shared parameterized OnboardingProgress widget and use it in
lib/features/onboarding/view/intensity_level.dart lines 41-53 with currentStep
3, lib/features/onboarding/view/body_region_screen.dart lines 40-53 with
currentStep 4, and lib/features/onboarding/view/equipment_screen.dart lines
42-55 with currentStep 5, preserving the existing colors and layout.
| import 'package:flutter_test/flutter_test.dart'; | ||
|
|
||
| import 'package:template_flutter/main.dart'; | ||
| import 'package:move_your_body/main.dart'; |
There was a problem hiding this comment.
🎯 Functional Correctness | 🟠 Major | ⚡ Quick win
Update the test body to match the new app — the current test will fail.
The import was updated to move_your_body, but the test body still asserts the default Flutter counter demo (find.text('0'), tap Icons.add, find.text('1')). The new MyApp uses MaterialApp.router with appRouter (initial route: splash screen) and has no counter. Additionally, the test pumps MyApp() without a ProviderScope wrapper, but the app uses Riverpod providers throughout.
💚 Proposed fix — replace with a basic smoke test
import 'package:move_your_body/main.dart';
+import 'package:flutter_riverpod/flutter_riverpod.dart';
void main() {
- testWidgets('Counter increments smoke test', (WidgetTester tester) async {
- // Build our app and trigger a frame.
- await tester.pumpWidget(const MyApp());
-
- // Verify that our counter starts at 0.
- expect(find.text('0'), findsOneWidget);
- expect(find.text('1'), findsNothing);
-
- // Tap the '+' icon and trigger a frame.
- await tester.tap(find.byIcon(Icons.add));
- await tester.pump();
-
- // Verify that our counter has incremented.
- expect(find.text('0'), findsNothing);
- expect(find.text('1'), findsOneWidget);
+ testWidgets('App boots and renders MaterialApp.router', (WidgetTester tester) async {
+ await tester.pumpWidget(const ProviderScope(child: MyApp()));
+ await tester.pump();
+
+ // Verify the app renders without throwing.
+ expect(find.byType(MaterialApp), findsOneWidget);
});
}📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| import 'package:move_your_body/main.dart'; | |
| import 'package:move_your_body/main.dart'; | |
| import 'package:flutter_riverpod/flutter_riverpod.dart'; | |
| void main() { | |
| testWidgets('App boots and renders MaterialApp.router', (WidgetTester tester) async { | |
| await tester.pumpWidget(const ProviderScope(child: MyApp())); | |
| await tester.pump(); | |
| // Verify the app renders without throwing. | |
| expect(find.byType(MaterialApp), findsOneWidget); | |
| }); | |
| } |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@test/widget_test.dart` at line 11, Replace the default counter assertions in
the test body with a smoke test for MyApp: pump MyApp inside the required
ProviderScope, allow the router’s initial splash route to build, and assert the
resulting app renders without relying on counter text or Icons.add. Use the
existing MyApp, ProviderScope, and appRouter setup rather than testing the
removed counter demo.
| @@ -0,0 +1 @@ | |||
| {"v":"5.6.5","fr":29.9700012207031,"ip":0,"op":121.000004928431,"w":800,"h":800,"nm":"ab crunches","ddd":0,"assets":[{"id":"image_0","w":800,"h":800,"u":"","p":"data:image/png;base64,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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGif/wNHEkgarNLwuAAAAABJRU5ErkJggg==","e":1},{"id":"image_1","w":800,"h":800,"u":"","p":"data:image/png;base64,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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANMH/AxEaxZqBA4+9AAAAAElFTkSuQmCC","e":1},{"id":"image_2","w":800,"h":800,"u":"","p":"data:image/png;base64,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","e":1},{"id":"image_3","w":800,"h":800,"u":"","p":"data:image/png;base64,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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIDh9f8BuDg/+rK923kAAAAASUVORK5CYII=","e":1},{"id":"image_4","w":800,"h":800,"u":"","p":"data:image/png;base64,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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHhR/wKoXrKUN8NZ/gAAAABJRU5ErkJggg==","e":1}],"layers":[{"ddd":0,"ind":1,"ty":2,"nm":"lower leg","refId":"image_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,400,0],"ix":2},"a":{"a":0,"k":[400,400,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ip":0,"op":121.000004928431,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":2,"nm":"thigh","parent":1,"refId":"image_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,400,0],"ix":2},"a":{"a":0,"k":[400,400,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ip":0,"op":121.000004928431,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":2,"nm":"hand","parent":4,"refId":"image_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[26.41]},{"t":120.0000048877,"s":[0]}],"ix":10},"p":{"a":0,"k":[255.227,488.729,0],"ix":2},"a":{"a":0,"k":[255.227,488.729,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ip":0,"op":121.000004928431,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":2,"nm":"body","parent":2,"refId":"image_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[46.522]},{"t":120.0000048877,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[451,495,0],"to":[0,0,0],"ti":[0,0,0]},{"t":120.0000048877,"s":[451,495,0]}],"ix":2},"a":{"a":0,"k":[451,495,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ip":0,"op":121.000004928431,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":2,"nm":"Layer 4","refId":"image_4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,400,0],"ix":2},"a":{"a":0,"k":[400,400,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ip":0,"op":121.000004928431,"st":0,"bm":0}],"markers":[]} No newline at end of file | |||
There was a problem hiding this comment.
🚀 Performance & Scalability | 🔵 Trivial | ⚖️ Poor tradeoff
Embedded base64 raster images bloat this Lottie asset and skip density variants.
Unlike the other animation files in this PR (which are pure vector shapes), this composition embeds 5 full PNGs as base64 data URIs at a single fixed 800x800 resolution. Base64 inlining adds ~33% overhead vs. shipping binary images, prevents standard image compression, and provides no @2x/@3x equivalent for high-DPI rendering.
Consider re-authoring this animation as vector shapes (consistent with the other bundled animations) or, if raster is required, shipping optimized external image assets instead of embedding base64 data.
As per path instructions, assets/**/* should have "Image optimization (appropriate size and format)" and "Proper @2x and @3x variants for different screen densities".
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@assets/animations/Ex15.json` at line 1, Replace the embedded base64 PNG
assets referenced by the Lottie composition’s image_0 through image_4 entries
with optimized external image files, or re-author the animation using vector
shapes. Ensure raster assets use an appropriate format and size, and provide `@2x`
and `@3x` density variants while updating the composition references accordingly.
Source: Path instructions
| @@ -0,0 +1 @@ | |||
| {"v":"5.7.8","fr":25,"ip":0,"op":170,"w":720,"h":720,"nm":"SHOULDER STRETCH","ddd":0,"assets":[{"id":"image_0","w":100,"h":49,"u":"","p":"data:image/png;base64,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","e":1},{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"2","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[360,341,0],"ix":2,"l":2},"a":{"a":0,"k":[720,360,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"w":1440,"h":720,"ip":92,"op":171,"st":92,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"1","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[360,341,0],"ix":2,"l":2},"a":{"a":0,"k":[720,360,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":1440,"h":720,"ip":0,"op":92,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Thẳng 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[359.779,317.572,0],"ix":2,"l":2},"a":{"a":0,"k":[719.779,336.572,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[8.741,7.115],[2.201,-9.462],[-7.866,-63.305],[-12.16,5.244],[-0.156,11.996],[-0.774,0]],"o":[[-6.496,-0.382],[-0.98,1.898],[-4.729,19.183],[4.87,2.822],[1.288,-19.414],[0.88,-0.471],[0,0]],"v":[[25.637,-54.592],[-14.839,-63.305],[-20.357,-45.54],[-21.153,60.534],[19.85,59.985],[22.195,5.13],[25.637,3.434]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.1254902035,0.1254902035,0.121568627656,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[694.306,438.406],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[4.729,19.183],[1.186,2.691],[6.496,-0.382],[0,0],[-0.903,-0.497],[0,-0.001],[-1.296,-19.538],[-4.87,2.822]],"o":[[-2.201,-9.462],[-8.741,7.115],[0,0],[0.753,0],[0,0.001],[0.148,11.925],[12.16,5.244],[7.866,-63.305]],"v":[[20.357,-45.4],[15.104,-63.445],[-25.637,-54.452],[-25.637,3.574],[-22.271,5.227],[-22.272,5.231],[-19.85,60.125],[21.153,60.674]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.086274512112,0.086274512112,0.086274512112,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[745.018,438.266],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.007,1.139],[0,0],[-8.212,-31.255],[0.489,-1.543],[0.067,4.696]],"o":[[0,0],[0.041,4.041],[-0.57,1.928],[-9.21,-31.196],[0,0]],"v":[[-5.394,-30.011],[-2.173,-28.428],[5.394,24.259],[3.622,30.011],[-5.37,-28.157]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[761.288,274.047],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 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],[14.429,-0.016],[0.667,15.601],[0,0],[0,0],[-0.028,-0.493],[-14.672,-0.895],[-0.991,-0.022],[0,0],[-1.856,15.601],[-0.019,0.686]],"o":[[0,0],[-0.667,15.601],[-14.429,-0.016],[0,0],[0,0],[0.019,0.686],[1.856,15.601],[0,0],[0.991,-0.022],[14.672,-0.895],[0.028,-0.493],[0,0]],"v":[[26.814,-16.374],[26.783,-15.648],[0,13.16],[-26.783,-15.648],[-26.814,-16.374],[-29.895,-14.859],[-29.823,-13.078],[-1.6,16.31],[0,16.374],[1.6,16.31],[29.823,-13.078],[29.895,-14.859]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[719.786,255.841],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-2.855,3.893],[-1.372,4.795],[-1.084,-4.016],[5.067,-17.778],[0,0],[-0.003,-0.024],[-0.049,-0.375],[-0.011,-0.086],[-0.037,-0.281],[-0.012,-0.088],[0,0],[0.197,-0.611],[0,0],[0,0]],"o":[[3.237,-4.413],[0.85,3.684],[-0.533,2.844],[0,0],[0.003,0.024],[0.051,0.394],[0.011,0.087],[0.038,0.295],[0.012,0.09],[0.451,3.458],[0,0.384],[0,0],[0,0],[-0.127,-4.826]],"v":[[-3.972,-28.278],[4.709,-44.729],[7.107,-35.627],[0.174,-9.671],[0.689,29.613],[0.698,29.684],[0.848,30.837],[0.881,31.094],[0.994,31.958],[1.029,32.226],[1.785,37.981],[1.475,39.492],[-5.515,44.729],[-7.086,-14.814]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.705882370472,0.235294118524,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[758.337,336.84],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.007,1.139],[0,0],[8.212,-31.255],[-0.489,-1.543],[-0.067,4.696]],"o":[[0,0],[-0.041,4.041],[0.57,1.928],[9.21,-31.196],[0,0]],"v":[[5.394,-30.011],[2.173,-28.428],[-5.394,24.259],[-3.622,30.011],[5.37,-28.157]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[678.284,274.047],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 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],[8.733,0],[4.022,0.634],[2.978,0],[2.905,-0.458],[3.91,0],[6.652,7.134],[0,0],[0,0],[-17.341,0],[0,0],[0,0]],"o":[[-6.652,7.134],[-3.91,0],[-2.904,-0.458],[-2.978,0],[-4.022,0.634],[-8.733,0],[0,0],[0,0],[0,0],[17.341,0],[0,0],[0,0]],"v":[[42.16,-12.547],[20.447,-0.007],[8.86,-1.214],[0,-1.901],[-8.86,-1.214],[-20.447,-0.007],[-42.16,-12.547],[-44.188,-7.734],[-31.969,12.547],[0,2.384],[31.969,12.547],[44.188,-7.734]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.78823530674,0.341176480055,0.156862750649,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[719.786,301.644],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[2.855,3.893],[1.372,4.795],[1.084,-4.016],[-5.067,-17.778],[0,0],[0.003,-0.024],[0.049,-0.375],[0.011,-0.086],[0.037,-0.281],[0.012,-0.088],[0,0],[-0.197,-0.611],[0,0],[0,0]],"o":[[-3.237,-4.413],[-0.85,3.684],[0.533,2.844],[0,0],[-0.003,0.024],[-0.051,0.394],[-0.011,0.087],[-0.038,0.295],[-0.012,0.09],[-0.451,3.458],[0,0.384],[0,0],[0,0],[0.127,-4.826]],"v":[[3.972,-28.278],[-4.709,-44.729],[-7.107,-35.627],[-0.174,-9.671],[-0.689,29.613],[-0.698,29.684],[-0.848,30.837],[-0.881,31.094],[-0.994,31.958],[-1.029,32.226],[-1.785,37.981],[-1.475,39.492],[5.515,44.729],[7.086,-14.814]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.705882370472,0.235294118524,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[681.235,336.84],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[11.916,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.829,0],[0,0],[0,0],[-0.692,0.456],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[-11.916,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.692,0.456],[0,0],[0,0],[0.829,0],[0,0],[0,0],[0,0],[0,0]],"v":[[18.06,-11.683],[17.501,-20.061],[-0.089,-25.833],[-17.501,-20.061],[-18.06,-11.683],[-20.48,-5.539],[-20.48,5.446],[-17.687,18.106],[-7.019,25.134],[-4.687,25.833],[-0.089,25.833],[4.687,25.833],[7.019,25.134],[17.687,18.106],[20.48,5.446],[20.48,-5.539]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431379795,0.760784327984,0.68235296011,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[719.875,206.203],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[-1.107,0],[0,0],[0,0],[-0.792,0.774],[0,0]],"o":[[0,0],[0,0],[0.792,0.774],[0,0],[0,0],[1.107,0],[0,0],[0,0]],"v":[[-0.089,-6.004],[-17.687,-6.004],[-6.634,4.797],[-3.672,6.004],[-0.089,6.004],[3.672,6.004],[6.634,4.797],[17.687,-6.004]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.835294127464,0.670588254929,0.549019634724,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[719.875,230.313],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[-2.607,0],[0.559,-3.537],[2.793,2.979]],"o":[[0,0],[2.607,0],[-0.559,3.538],[-2.793,-2.979]],"v":[[-0.834,-4.001],[2.331,-7.353],[3.448,1.025],[-3.255,6.425]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.86274510622,0.72549021244,0.627451002598,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[741.189,211.182],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[21.411,1.489],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[-21.411,1.489],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-0.089,-20.294],[-22.528,-1.489],[-22.528,15.267],[-17.237,20.294],[-0.089,-9.309],[17.237,20.294],[22.528,15.267],[22.528,-1.489]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.368627458811,0.235294118524,0.133333340287,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[719.875,191.727],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[2.607,0],[-0.559,-3.537],[-2.793,2.979]],"o":[[0,0],[-2.607,0],[0.559,3.538],[2.793,-2.979]],"v":[[0.834,-4.001],[-2.331,-7.353],[-3.448,1.025],[3.255,6.425]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.86274510622,0.72549021244,0.627451002598,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[698.56,211.182],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,4.696],[0.451,3.458],[0.012,0.09],[0.038,0.295],[0.011,0.087],[0.051,0.394],[0.003,0.024],[0,0],[-2.844,11.022],[0,0],[0,0],[15.855,-0.017],[0.671,15.693],[0,0],[9.849,-36.504],[-2.961,-9.87],[0,0],[0.003,-0.024],[0.049,-0.375],[0.011,-0.086],[0.037,-0.281],[0.012,-0.088],[0,0],[-23.875,-2.625]],"o":[[33.583,-4.667],[0,0],[-0.012,-0.088],[-0.037,-0.281],[-0.011,-0.086],[-0.049,-0.375],[-0.003,-0.024],[0,0],[2.961,-9.87],[-9.848,-36.504],[0,0],[-0.671,15.693],[-15.855,-0.017],[0,0],[0,0],[2.845,11.022],[0,0],[-0.003,0.024],[-0.051,0.394],[-0.011,0.087],[-0.038,0.295],[-0.012,0.09],[-0.451,3.458],[0,4.696],[0,0]],"v":[[-0.363,73.25],[40.336,61.311],[39.58,55.555],[39.545,55.288],[39.432,54.424],[39.399,54.166],[39.249,53.013],[39.24,52.942],[37.658,15.791],[45.125,-13.898],[37.727,-68.616],[28.381,-73.25],[0,-42.91],[-28.381,-73.25],[-37.727,-68.616],[-45.125,-13.898],[-37.658,15.791],[-39.24,52.942],[-39.249,53.013],[-39.399,54.166],[-39.432,54.424],[-39.545,55.288],[-39.58,55.555],[-40.336,61.311],[-4.279,73.083]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.839215695858,0.384313732386,0.156862750649,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[719.786,313.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 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":[[-4.435,1.422],[0,0],[7.553,-26.883],[4.065,0],[0,0],[2.387,2.927],[0,0],[0,3.009],[0,0]],"o":[[0,0],[0,0],[-1.14,4.059],[0,0],[-3.686,0],[0,0],[-1.841,-2.318],[0,0],[0,-2.522]],"v":[[-15.217,-17.244],[11.734,-20.089],[20.142,14.083],[10.362,20.089],[-9.469,20.089],[-19.043,15.474],[-19.324,15.12],[-22.172,6.877],[-22.172,-10.544]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431379795,0.760784327984,0.68235296011,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[743.349,273.657],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[4.435,1.422],[0,0],[-7.553,-26.883],[-4.065,0],[0,0],[-2.387,2.927],[0,0],[0,3.009],[0,0]],"o":[[0,0],[0,0],[1.14,4.059],[0,0],[3.686,0],[0,0],[1.841,-2.318],[0,0],[0,-2.522]],"v":[[15.217,-17.244],[-11.734,-20.089],[-20.142,14.083],[-10.362,20.089],[9.469,20.089],[19.043,15.474],[19.324,15.12],[22.172,6.877],[22.172,-10.544]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431379795,0.760784327984,0.68235296011,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[696.223,273.657],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[51.105,6.455],[0.005,25.515],[-51.105,6.455],[-17.595,-10.155],[-17.595,-25.515],[0.005,-24.025],[17.595,-25.515],[17.595,-10.155]],"c":true}]},{"t":8,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[50.23,6.705],[0.005,25.515],[-51.105,6.455],[-17.595,-10.155],[-17.595,-25.515],[0.005,-24.025],[17.595,-25.515],[17.595,-10.155]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.858823537827,0.709803938866,0.607843160629,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[719.785,246.655],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[719.785,246.655],"ix":2},"a":{"a":0,"k":[719.785,246.655],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[719.785,246.655],"ix":2},"a":{"a":0,"k":[719.785,246.655],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":14,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":171,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"nach 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[360,341,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.125,-0.375],[0,0],[-0.5,-0.25],[0,0],[4.438,11.688]],"o":[[0,0],[0,0],[-0.125,0.375],[0,0],[0.5,0.25],[0,0],[-3.83,-10.089]],"v":[[40.875,-109.188],[28.375,-106.875],[18,-92.625],[18.5,-74.125],[33.938,-51.813],[41.813,-50.375],[54.5,-92.813]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.835294117647,0.670588235294,0.549019607843,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":171,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"nach","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[360,341,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.125,-0.375],[0,0],[-0.5,-0.25],[0,0],[4.438,11.688]],"o":[[0,0],[0,0],[-0.125,0.375],[0,0],[0.5,0.25],[0,0],[-3.83,-10.089]],"v":[[40.875,-109.188],[28.375,-106.875],[18,-92.625],[18.5,-74.125],[33.938,-51.813],[41.813,-50.375],[54.5,-92.813]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.835294117647,0.670588235294,0.549019607843,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":171,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Thẳng 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[386.577,256.704,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[20.096,22.599],[24.303,-22.599],[-24.303,-4.8],[20.096,22.599]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.874509811401,0.764705896378,0.68235296011,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":171,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Thẳng","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[332.986,256.707,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-20.096,22.599],[-24.303,-22.599],[24.303,-4.8],[-20.096,22.599]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.874509811401,0.764705896378,0.68235296011,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":171,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Chân 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[385.052,472.354,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.456,-5.815],[-12.27,2.532],[-0.328,2.205],[-0.006,0.073],[0,0],[0,0]],"o":[[9.82,-0.936],[0.373,-2.273],[-1.721,-0.073],[0,0],[0,0],[0.661,9.061]],"v":[[-17.937,14.452],[18.641,8.467],[19.694,1.751],[16.883,1.532],[-9.995,-14.452],[-19.694,-8.775]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.835294127464,0.670588254929,0.549019634724,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":171,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Chân 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[332.985,472.408,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.128,1.692],[-0.002,0.032],[0,0],[0,0],[-0.802,-4.955],[-0.536,-2.468],[-9.346,3.163]],"o":[[-0.147,-0.032],[0,0],[0,0],[0.591,4.624],[0.476,2.33],[12.287,-1.051],[0.119,-1.553]],"v":[[19.918,1.574],[19.671,1.478],[-7.206,-14.507],[-19.918,-7.065],[-17.824,7.321],[-16.312,14.507],[19.548,6.447]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.835294127464,0.670588254929,0.549019634724,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":171,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":0,"nm":"Chân 2","refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[359.667,640.566,0],"ix":2,"l":2},"a":{"a":0,"k":[49.917,24.441,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":100,"h":49,"ip":0,"op":171,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"Chân 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[385.778,503.746,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.188,3.74],[-0.55,-0.22],[-0.509,-5.854],[-2.579,-5.003],[1.271,-7.929],[-3.382,-10.662],[-0.317,-0.852],[0,0],[0,0],[0,0],[0,0],[-2.156,0.003],[-0.022,0.846],[-0.368,5.291],[-3.231,17.81],[0.94,10.991]],"o":[[0,0],[0.373,16.773],[0.477,5.497],[-1.031,5.364],[-1.771,11.045],[0.36,1.135],[0.973,16.438],[0,0],[0,0],[0,0],[0.014,0.003],[-0.019,-0.709],[3.814,-1.058],[0.824,-11.84],[2.456,-13.539],[16.181,-75.184]],"v":[[20.745,-124.63],[-23.343,-88.216],[-18.041,-9.225],[-13.078,7.756],[-16.986,29.65],[-14.646,62.678],[-13.959,65.662],[-13.121,122.827],[-13.121,122.827],[-13.121,122.827],[-13.12,122.827],[-3.282,124.63],[-3.275,122.29],[4.457,113.525],[13.787,48.684],[13.638,-0.367]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431379795,0.760784327984,0.68235296011,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":171,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Chân","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[333.255,503.746,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-16.181,-75.184],[-2.456,-13.539],[-0.824,-11.84],[-3.814,-1.058],[0.019,-0.709],[-0.013,0.003],[0,0],[0,0],[0,0],[-0.973,16.438],[-0.36,1.135],[1.771,11.045],[1.031,5.364],[-0.477,5.497],[-0.373,16.773]],"o":[[-0.188,3.74],[-0.94,10.991],[3.231,17.81],[0.368,5.291],[0.022,0.846],[2.156,0.003],[0,0],[0,0],[0,0],[0,0],[0.317,-0.852],[3.382,-10.662],[-1.271,-7.929],[2.579,-5.003],[0.509,-5.854],[0.55,-0.22]],"v":[[-20.745,-124.63],[-13.638,-0.367],[-13.787,48.684],[-4.457,113.525],[3.275,122.29],[3.282,124.63],[13.12,122.827],[13.121,122.827],[13.121,122.827],[13.121,122.827],[13.959,65.662],[14.646,62.678],[16.986,29.65],[13.078,7.756],[18.041,-9.225],[23.343,-88.216]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.878431379795,0.760784327984,0.68235296011,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":171,"st":0,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"tay trai","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[9.466]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[9.466]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[30.403]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[48.499]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[48.499]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[48.499]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[30.403]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[9.466]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[9.466]},{"t":71,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[776.375,270.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[773.063,270.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[764.563,271.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[766.438,269.125,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[766.438,269.125,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[766.438,269.125,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[764.563,271.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[773.063,270.5,0],"to":[0,0,0],"ti":[0,0,0]},{"t":71,"s":[776.375,270.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[23.25,23.25,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":200,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":3,"nm":"tay phai","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[8.255]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[8.255]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[8.255]},{"t":71,"s":[0]}],"ix":10},"p":{"a":0,"k":[663.75,269.5,0],"ix":2,"l":2},"a":{"a":0,"k":[-56.25,-90.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":200,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"canh tay trai 2","parent":16,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[32.207]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[25.383]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[8.61]},{"t":21,"s":[2.39]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[0.664,23.653,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[1.98,25.461,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[0.649,18.839,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[-1.295,28.474,0],"to":[0,0,0],"ti":[0,0,0]},{"t":21,"s":[0.205,28.49,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0.25,-29,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-0.812,-1.81],[2.392,-26.306],[0,0],[7.489,6.261],[0.502,7.431],[-1.962,6.161]],"o":[[0,0],[-2.018,22.199],[0,0],[0,0],[-0.906,-13.419],[7.43,-11.687]],"v":[[8.194,-34.262],[12.107,-1.808],[8.645,38.038],[-3.077,37.963],[-12.308,-2.83],[-10.063,-31.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-2.012,-0.81],[2.425,-29.683],[0,0],[7.489,5.282],[0.502,6.27],[-1.962,5.198]],"o":[[3.783,1.524],[-1.534,18.773],[0,0],[0,0],[-0.906,-11.322],[3.152,-8.404]],"v":[[3.8,-38.895],[11.821,-9.158],[9.03,25.442],[-4.661,27.434],[-12.308,-10.16],[-11.39,-32.688]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-6.8,-1.851],[2.714,-27.281],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.13,21.412],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[2.708,-52.315],[12.107,-14.89],[8.343,34.648],[-4.454,34.238],[-12.308,-15.876],[-11.047,-40.918]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-6.8,-1.851],[2.714,-27.281],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.13,21.412],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[2.708,-52.315],[12.107,-14.89],[7.891,36.472],[-6.477,35.973],[-12.721,-15.696],[-11.047,-40.918]],"c":true}]},{"t":21,"s":[{"i":[[-6.8,-1.851],[3.604,-27.19],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.828,21.331],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[3.354,-53.648],[13.759,-14.066],[8.376,35.71],[-8.127,36.791],[-12.308,-15.876],[-11.798,-42.958]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.854901960784,0.709803921569,0.607843137255,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":9,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"ngon tay trai 2","parent":6,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-7.897,-7.95,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-1.561,4.812],[0,0],[1.936,-9.992],[0,0]],"o":[[0,0],[-1.056,1.082],[0,0],[0.169,1.59]],"v":[[0.57,11.749],[5.888,-15.703],[-2.913,-0.8],[-5.888,14.651]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-2.083,4.61],[0,0],[3.027,-9.717],[0,0]],"o":[[0,0],[-1.169,0.959],[0,0],[-0.008,1.599]],"v":[[-5.533,14.661],[2.783,-12.036],[-7.609,1.804],[-12.271,16.832]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-1.772,3.962],[0,0],[2.576,-8.351],[0,0]],"o":[[0,0],[-0.995,0.824],[0,0],[-0.007,1.374]],"v":[[-2.839,11.277],[2.783,-12.036],[-5.923,-0.171],[-8.649,13.189]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-1.772,3.962],[0,0],[2.576,-8.351],[0,0]],"o":[[0,0],[-0.995,0.824],[0,0],[-0.007,1.374]],"v":[[-2.839,11.277],[2.783,-12.036],[-5.923,-0.171],[-8.649,13.189]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[-1.772,3.24],[0,0],[2.576,-6.829],[0,0]],"o":[[0,0],[-0.995,0.674],[0,0],[-0.007,1.124]],"v":[[1.352,7.087],[6.975,-11.979],[-1.731,-2.275],[-4.458,8.65]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[-1.772,3.24],[0,0],[2.576,-6.829],[0,0]],"o":[[0,0],[-0.995,0.674],[0,0],[-0.007,1.124]],"v":[[1.352,7.087],[6.975,-11.979],[-1.731,-2.275],[-4.458,8.65]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[-1.772,3.24],[0,0],[2.576,-6.829],[0,0]],"o":[[0,0],[-0.995,0.674],[0,0],[-0.007,1.124]],"v":[[1.352,7.087],[6.975,-11.979],[-1.731,-2.275],[-4.458,8.65]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57,"s":[{"i":[[-1.772,3.962],[0,0],[2.576,-8.351],[0,0]],"o":[[0,0],[-0.995,0.824],[0,0],[-0.007,1.374]],"v":[[-2.839,11.277],[2.783,-12.036],[-5.923,-0.171],[-8.649,13.189]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[-1.772,3.962],[0,0],[2.576,-8.351],[0,0]],"o":[[0,0],[-0.995,0.824],[0,0],[-0.007,1.374]],"v":[[-2.839,11.277],[2.783,-12.036],[-5.923,-0.171],[-8.649,13.189]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":65,"s":[{"i":[[-2.083,4.61],[0,0],[3.027,-9.717],[0,0]],"o":[[0,0],[-1.169,0.959],[0,0],[-0.008,1.599]],"v":[[-5.533,14.661],[2.783,-12.036],[-7.609,1.804],[-12.271,16.832]],"c":true}]},{"t":70,"s":[{"i":[[-1.561,4.812],[0,0],[1.936,-9.992],[0,0]],"o":[[0,0],[-1.056,1.082],[0,0],[0.169,1.59]],"v":[[0.57,11.749],[5.888,-15.703],[-2.913,-0.8],[-5.888,14.651]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.854901960784,0.709803921569,0.607843137255,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"bong tay trai 2","parent":6,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":1,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":69,"s":[0]},{"t":70,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-5.871,8.692,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":65,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"t":70,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.800000011921,0.68235296011,0.603921592236,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"ban tay trai 2","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[-6.481]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[-6.481]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62,"s":[-6.481]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":65,"s":[0]},{"t":70,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[2.382,36.499,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[2.955,24.893,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[1.525,33.558,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[1.525,33.558,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[1.525,33.558,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":65,"s":[2.955,24.893,0],"to":[0,0,0],"ti":[0,0,0]},{"t":70,"s":[2.382,36.499,0]}],"ix":2,"l":2},"a":{"a":0,"k":[2.756,-21.925,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-2.53,-0.86],[0,0],[0,0],[1.24,0.96],[2.64,-1.46],[0.72,-5.88],[-0.55,-2.33],[0,0],[0,0]],"o":[[0,0],[0,0],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[0.01,3.74],[0.9,3.79],[0,0],[-0.19,1.93]],"v":[[-6.011,25.012],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-7.651,-11.098],[-6.641,-1.978],[-4.561,3.742],[-8.941,20.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-4.109,1.935],[-0.897,3.09],[0,0],[1.24,0.96],[2.64,-1.46],[0.891,-6.049],[0.231,-2.459],[0,0],[0,0]],"o":[[0,0],[0.897,-3.09],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[-0.624,3.602],[-0.361,3.841],[0,0],[0.113,2.423]],"v":[[-4.4,21.972],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-10.254,-9.975],[-12.291,0.922],[-13.41,9.558],[-13.556,16.365]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[-3.555,0.851],[-1.147,3.959],[0.433,2.884],[1.279,0.718],[2.577,-1.284],[0.662,-5.086],[-0.307,-1.792],[-0.895,-1.845],[0,0]],"o":[[0,0],[1.422,-4.909],[-0.433,-2.884],[-2.462,-1.382],[-2.23,1.111],[-0.334,2.388],[0.493,2.883],[0.895,1.845],[3.985,1.005]],"v":[[3.79,6.964],[8.796,2.894],[11.184,-16.54],[6.961,-24.557],[-1.632,-23.872],[-15.607,-14.24],[-14.634,-6.393],[-12.237,3.851],[-9.518,6.346]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[-3.555,0.851],[-1.147,3.959],[0.433,2.884],[1.279,0.718],[2.577,-1.284],[0.662,-5.086],[-0.307,-1.792],[-0.895,-1.845],[0,0]],"o":[[0,0],[1.422,-4.909],[-0.433,-2.884],[-2.462,-1.382],[-2.23,1.111],[-0.334,2.388],[0.493,2.883],[0.895,1.845],[3.985,1.005]],"v":[[3.79,6.964],[8.796,2.894],[11.184,-16.54],[6.961,-24.557],[-1.632,-23.872],[-15.607,-14.24],[-14.634,-6.393],[-12.237,3.851],[-9.518,6.346]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[-3.555,0.851],[-1.147,3.959],[0.433,2.884],[1.279,0.718],[2.577,-1.284],[0.662,-5.086],[-0.307,-1.792],[-0.895,-1.845],[0,0]],"o":[[0,0],[1.422,-4.909],[-0.433,-2.884],[-2.462,-1.382],[-2.23,1.111],[-0.334,2.388],[0.493,2.883],[0.895,1.845],[3.985,1.005]],"v":[[3.79,6.964],[8.796,2.894],[11.184,-16.54],[6.961,-24.557],[-1.632,-23.872],[-15.607,-14.24],[-14.634,-6.393],[-12.237,3.851],[-9.518,6.346]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":65,"s":[{"i":[[-4.109,1.935],[-0.897,3.09],[0,0],[1.24,0.96],[2.64,-1.46],[0.891,-6.049],[0.231,-2.459],[0,0],[0,0]],"o":[[0,0],[0.897,-3.09],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[-0.624,3.602],[-0.361,3.841],[0,0],[0.113,2.423]],"v":[[-4.4,21.972],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-10.254,-9.975],[-12.291,0.922],[-13.41,9.558],[-13.556,16.365]],"c":true}]},{"t":70,"s":[{"i":[[-2.53,-0.86],[0,0],[0,0],[1.24,0.96],[2.64,-1.46],[0.72,-5.88],[-0.55,-2.33],[0,0],[0,0]],"o":[[0,0],[0,0],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[0.01,3.74],[0.9,3.79],[0,0],[-0.19,1.93]],"v":[[-6.011,25.012],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-7.651,-11.098],[-6.641,-1.978],[-4.561,3.742],[-8.941,20.862]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.854901960784,0.709803921569,0.607843137255,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":205,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"ngon cai phai","parent":9,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[7.897,-7.95,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[1.561,4.812],[0,0],[-1.936,-9.992],[0,0]],"o":[[0,0],[1.056,1.082],[0,0],[-0.169,1.59]],"v":[[-0.57,11.749],[-5.888,-15.703],[2.913,-0.8],[5.888,14.651]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[1.561,4.812],[0,0],[-1.936,-9.992],[0,0]],"o":[[0,0],[1.056,1.082],[0,0],[-0.169,1.59]],"v":[[-0.57,11.749],[-5.888,-15.703],[2.913,-0.8],[5.888,14.651]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[1.757,4.744],[0,0],[-2.344,-9.904],[0,0]],"o":[[0,0],[0.414,-1.535],[0,0],[-0.103,1.596]],"v":[[-1.552,10.316],[-7.192,-12.842],[3.789,-1.674],[4.777,13.939]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[1.757,4.744],[0,0],[-2.344,-9.904],[0,0]],"o":[[0,0],[0.414,-1.535],[0,0],[-0.103,1.596]],"v":[[-1.552,10.316],[-7.192,-12.842],[3.789,-1.674],[4.777,13.939]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[1.757,4.744],[0,0],[-2.344,-9.904],[0,0]],"o":[[0,0],[0.414,-1.535],[0,0],[-0.103,1.596]],"v":[[-1.552,10.316],[-7.192,-12.842],[3.789,-1.674],[4.777,13.939]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[1.561,4.812],[0,0],[-1.936,-9.992],[0,0]],"o":[[0,0],[1.056,1.082],[0,0],[-0.169,1.59]],"v":[[-0.57,11.749],[-5.888,-15.703],[2.913,-0.8],[5.888,14.651]],"c":true}]},{"t":71,"s":[{"i":[[1.561,4.812],[0,0],[-1.936,-9.992],[0,0]],"o":[[0,0],[1.056,1.082],[0,0],[-0.169,1.59]],"v":[[-0.57,11.749],[-5.888,-15.703],[2.913,-0.8],[5.888,14.651]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.87450986376,0.764705942191,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"bong tay phai","parent":9,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":6,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":65,"s":[0]},{"t":66,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[5.871,8.692,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[-0.9,3.79],[0,0],[0.34,1.31],[0,0]],"v":[[3.07,12.17],[3.06,12.15],[-3.07,-5.56],[0.62,-12.17],[0.77,-10.67],[-1.31,-4.95],[2.24,8.33],[3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[-0.9,3.79],[0,0],[0.34,1.31],[0,0]],"v":[[3.07,12.17],[3.06,12.15],[-3.07,-5.56],[0.62,-12.17],[0.77,-10.67],[-1.31,-4.95],[2.24,8.33],[3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[-0.9,3.79],[0,0],[0.34,1.31],[0,0]],"v":[[3.07,12.17],[3.06,12.15],[-3.07,-5.56],[0.62,-12.17],[0.77,-10.67],[-1.31,-4.95],[2.24,8.33],[3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[-0.9,3.79],[0,0],[0.34,1.31],[0,0]],"v":[[3.07,12.17],[3.06,12.15],[-3.07,-5.56],[0.62,-12.17],[0.77,-10.67],[-1.31,-4.95],[2.24,8.33],[3.03,11.82]],"c":true}]},{"t":71,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[-0.9,3.79],[0,0],[0.34,1.31],[0,0]],"v":[[3.07,12.17],[3.06,12.15],[-3.07,-5.56],[0.62,-12.17],[0.77,-10.67],[-1.31,-4.95],[2.24,8.33],[3.03,11.82]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.800000011921,0.68235296011,0.603921592236,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"ban tay phai","parent":14,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[-9.086]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[5.957]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[5.957]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[5.957]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[-9.086]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[0]},{"t":71,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[-2.695,37.168,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[-2.788,31.148,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[-4.804,9.257,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[-5.4,17.641,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[-7.387,52.084,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[-7.387,52.084,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[-7.387,52.084,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[-5.4,17.641,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[-4.804,9.257,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[-2.788,31.148,0],"to":[0,0,0],"ti":[0,0,0]},{"t":71,"s":[-2.695,37.168,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-3.069,-21.256,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[2.53,-0.86],[0,0],[0,0],[-1.24,0.96],[-2.64,-1.46],[-0.72,-5.88],[0.55,-2.33],[0,0],[0,0],[-0.14,-1.02],[0,-0.11],[0,0]],"o":[[0,0],[0,0],[-0.38,-2.15],[2.38,-1.86],[2.29,1.25],[-0.01,3.74],[-0.9,3.79],[0,0],[0.34,1.31],[0.01,0.11],[0,0],[0.19,1.93]],"v":[[6.011,25.012],[-5.809,3.262],[-8.889,-19.338],[-7.079,-23.908],[1.541,-23.558],[7.651,-11.098],[6.641,-1.978],[4.561,3.742],[8.111,17.022],[8.901,20.512],[8.931,20.842],[8.941,20.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[2.53,-0.86],[0,0],[0,0],[-1.24,0.96],[-2.64,-1.46],[-0.72,-5.88],[0.55,-2.33],[0,0],[0,0],[-0.14,-1.02],[0,-0.11],[0,0]],"o":[[0,0],[0,0],[-0.38,-2.15],[2.38,-1.86],[2.29,1.25],[-0.01,3.74],[-0.9,3.79],[0,0],[0.34,1.31],[0.01,0.11],[0,0],[0.19,1.93]],"v":[[6.011,25.012],[-5.809,3.262],[-8.889,-19.338],[-7.079,-23.908],[1.541,-23.558],[7.651,-11.098],[6.641,-1.978],[4.561,3.742],[8.111,17.022],[8.901,20.512],[8.931,20.842],[8.941,20.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[1.093,1.153],[0.785,2.939],[0,0],[-1.24,0.96],[-2.64,-1.46],[-0.72,-5.88],[-0.641,-2.307],[-0.142,-2.091],[0,0],[1.024,-0.663],[0,-0.11],[0,0]],"o":[[-3.107,-3.279],[-1.869,-7.002],[-0.38,-2.15],[2.38,-1.86],[2.29,1.25],[0.942,3.412],[1.007,3.626],[0.142,2.091],[0.34,1.31],[0.01,0.11],[0,0],[-1.367,0.155]],"v":[[-4.518,9.865],[-15.073,-3.161],[-8.889,-19.338],[-5.876,-24.437],[1.541,-23.558],[7.598,-12.468],[7.348,-5.471],[7.224,0.673],[7.359,4.134],[5.885,7.843],[3.117,9.284],[-0.034,10.526]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[1.093,1.153],[0.785,2.939],[0,0],[-1.24,0.96],[-2.64,-1.46],[-0.72,-5.88],[-0.641,-2.307],[-0.142,-2.091],[0,0],[1.024,-0.663],[0,-0.11],[0,0]],"o":[[-3.107,-3.279],[-1.869,-7.002],[-0.38,-2.15],[2.38,-1.86],[2.29,1.25],[0.942,3.412],[1.007,3.626],[0.142,2.091],[0.34,1.31],[0.01,0.11],[0,0],[-1.367,0.155]],"v":[[-4.518,9.865],[-15.073,-3.161],[-8.889,-19.338],[-5.876,-24.437],[1.541,-23.558],[7.598,-12.468],[7.348,-5.471],[7.224,0.673],[7.359,4.134],[5.885,7.843],[3.117,9.284],[-0.034,10.526]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[1.093,1.153],[0.785,2.939],[0,0],[-1.24,0.96],[-2.64,-1.46],[-0.72,-5.88],[-0.641,-2.307],[-0.142,-2.091],[0,0],[1.024,-0.663],[0,-0.11],[0,0]],"o":[[-3.107,-3.279],[-1.869,-7.002],[-0.38,-2.15],[2.38,-1.86],[2.29,1.25],[0.942,3.412],[1.007,3.626],[0.142,2.091],[0.34,1.31],[0.01,0.11],[0,0],[-1.367,0.155]],"v":[[-4.518,9.865],[-15.073,-3.161],[-8.889,-19.338],[-5.876,-24.437],[1.541,-23.558],[7.598,-12.468],[7.348,-5.471],[7.224,0.673],[7.359,4.134],[5.885,7.843],[3.117,9.284],[-0.034,10.526]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[2.53,-0.86],[0,0],[0,0],[-1.24,0.96],[-2.64,-1.46],[-0.72,-5.88],[0.55,-2.33],[0,0],[0,0],[-0.14,-1.02],[0,-0.11],[0,0]],"o":[[0,0],[0,0],[-0.38,-2.15],[2.38,-1.86],[2.29,1.25],[-0.01,3.74],[-0.9,3.79],[0,0],[0.34,1.31],[0.01,0.11],[0,0],[0.19,1.93]],"v":[[6.011,25.012],[-5.809,3.262],[-8.889,-19.338],[-7.079,-23.908],[1.541,-23.558],[7.651,-11.098],[6.641,-1.978],[4.561,3.742],[8.111,17.022],[8.901,20.512],[8.931,20.842],[8.941,20.862]],"c":true}]},{"t":71,"s":[{"i":[[2.53,-0.86],[0,0],[0,0],[-1.24,0.96],[-2.64,-1.46],[-0.72,-5.88],[0.55,-2.33],[0,0],[0,0],[-0.14,-1.02],[0,-0.11],[0,0]],"o":[[0,0],[0,0],[-0.38,-2.15],[2.38,-1.86],[2.29,1.25],[-0.01,3.74],[-0.9,3.79],[0,0],[0.34,1.31],[0.01,0.11],[0,0],[0.19,1.93]],"v":[[6.011,25.012],[-5.809,3.262],[-8.889,-19.338],[-7.079,-23.908],[1.541,-23.558],[7.651,-11.098],[6.641,-1.978],[4.561,3.742],[8.111,17.022],[8.901,20.512],[8.931,20.842],[8.941,20.862]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.87450986376,0.764705942191,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"canh tay phai 2","parent":18,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":59,"s":[100]},{"t":60,"s":[0]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[-12.133]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[-67.527]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[-143.1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[-179.608]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[-179.608]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[-179.608]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[-143.1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[-67.527]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[-12.133]},{"t":71,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[-0.013,25.817,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[0.197,21.072,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[0.197,21.072,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[0.197,21.072,0],"to":[0,0,0],"ti":[0,0,0]},{"t":57,"s":[-0.013,25.817,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0.401,-26.836,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0.812,-1.81],[-2.392,-26.306],[0,0],[-7.489,6.261],[-0.502,7.431],[1.962,6.161]],"o":[[0,0],[2.018,22.199],[0,0],[0,0],[0.906,-13.419],[-8.26,-12.062]],"v":[[-8.569,-34.262],[-12.107,-1.808],[-8.645,38.038],[3.077,37.963],[12.308,-2.83],[10.063,-31.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[1.233,-1.451],[-2.392,-24.128],[0,0],[-7.489,5.742],[-0.502,6.816],[1.962,5.651]],"o":[[-1.1,1.295],[2.018,20.361],[0,0],[0,0],[0.906,-12.309],[-5.583,-8.993]],"v":[[-7.694,-35.542],[-12.107,-5.775],[-8.645,30.773],[3.077,30.704],[12.308,-6.712],[10.063,-32.561]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[1.233,-1.01],[-0.614,-16.947],[0,0],[-7.489,3.996],[-0.959,4.672],[1.962,3.932]],"o":[[-1.1,0.901],[0.496,13.699],[0,0],[0,0],[1.654,-8.06],[-5.583,-6.257]],"v":[[-8.033,-35.946],[-12.834,-16.577],[-10.889,11.701],[4.184,13.338],[12.052,-15.579],[10.618,-33.479]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[1.233,-1.16],[0.025,-18.53],[0,0],[-7.489,4.591],[-0.959,5.368],[1.962,4.518]],"o":[[-1.1,1.035],[-0.021,15.751],[0,0],[0,0],[1.654,-9.261],[-5.545,-9.875]],"v":[[-5.974,-35.765],[-12.834,-12.777],[-10.889,19.715],[4.184,21.596],[12.052,-11.63],[10.618,-32.198]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[1.47,-0.834],[0.025,-16.707],[0,0],[-7.489,4.139],[-0.959,4.84],[1.962,4.074]],"o":[[-2.028,1.151],[-0.021,14.201],[0,0],[0,0],[1.654,-8.35],[-5.545,-8.903]],"v":[[-7.973,-28.584],[-13.573,-3.898],[-13.643,52.994],[1.43,54.691],[12.052,-4.697],[10.618,-23.241]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[1.47,-0.834],[0.025,-16.707],[0,0],[-7.489,4.139],[-0.959,4.84],[1.962,4.074]],"o":[[-2.028,1.151],[-0.021,14.201],[0,0],[0,0],[1.654,-8.35],[-5.545,-8.903]],"v":[[-7.973,-28.584],[-13.573,-3.898],[-13.643,52.994],[1.43,54.691],[12.052,-4.697],[10.618,-23.241]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[1.47,-0.834],[0.025,-16.707],[0,0],[-7.489,4.139],[-0.959,4.84],[1.962,4.074]],"o":[[-2.028,1.151],[-0.021,14.201],[0,0],[0,0],[1.654,-8.35],[-5.545,-8.903]],"v":[[-7.973,-28.584],[-13.573,-3.898],[-13.643,52.994],[1.43,54.691],[12.052,-4.697],[10.618,-23.241]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[1.233,-1.16],[0.025,-18.53],[0,0],[-7.489,4.591],[-0.959,5.368],[1.962,4.518]],"o":[[-1.1,1.035],[-0.021,15.751],[0,0],[0,0],[1.654,-9.261],[-5.545,-9.875]],"v":[[-5.974,-35.765],[-12.834,-12.777],[-10.889,19.715],[4.184,21.596],[12.052,-11.63],[10.618,-32.198]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[1.233,-1.01],[-0.614,-16.947],[0,0],[-7.489,3.996],[-0.959,4.672],[1.962,3.932]],"o":[[-1.1,0.901],[0.496,13.699],[0,0],[0,0],[1.654,-8.06],[-5.583,-6.257]],"v":[[-8.033,-35.946],[-12.834,-16.577],[-10.889,11.701],[4.184,13.338],[12.052,-15.579],[10.618,-33.479]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[1.233,-1.451],[-2.392,-24.128],[0,0],[-7.489,5.742],[-0.502,6.816],[1.962,5.651]],"o":[[-1.1,1.295],[2.018,20.361],[0,0],[0,0],[0.906,-12.309],[-5.583,-8.993]],"v":[[-7.694,-35.542],[-12.107,-5.775],[-8.645,30.773],[3.077,30.704],[12.308,-6.712],[10.063,-32.561]],"c":true}]},{"t":71,"s":[{"i":[[0.812,-1.81],[-2.392,-26.306],[0,0],[-7.489,6.261],[-0.502,7.431],[1.962,6.161]],"o":[[0,0],[2.018,22.199],[0,0],[0,0],[0.906,-13.419],[-8.26,-12.062]],"v":[[-8.569,-34.262],[-12.107,-1.808],[-8.645,38.038],[3.077,37.963],[12.308,-2.83],[10.063,-31.012]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.87450986376,0.764705942191,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":12,"op":202,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"canh tay trai","parent":16,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[32.207]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[25.383]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[8.61]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[2.39]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[2.39]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[2.39]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[8.61]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[25.383]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[32.207]},{"t":71,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[0.664,23.653,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[1.98,25.461,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[0.649,18.839,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[-1.295,28.474,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[0.205,28.49,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[0.205,28.49,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[0.205,28.49,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[-1.295,28.474,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[0.649,18.839,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[1.98,25.461,0],"to":[0,0,0],"ti":[0,0,0]},{"t":71,"s":[0.664,23.653,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0.25,-29,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-0.812,-1.81],[2.392,-26.306],[0,0],[7.489,6.261],[0.502,7.431],[-1.962,6.161]],"o":[[0,0],[-2.018,22.199],[0,0],[0,0],[-0.906,-13.419],[7.43,-11.687]],"v":[[8.194,-34.262],[12.107,-1.808],[8.645,38.038],[-3.077,37.963],[-12.308,-2.83],[-10.063,-31.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-2.012,-0.81],[2.425,-29.683],[0,0],[7.489,5.282],[0.502,6.27],[-1.962,5.198]],"o":[[3.783,1.524],[-1.534,18.773],[0,0],[0,0],[-0.906,-11.322],[3.152,-8.404]],"v":[[3.8,-38.895],[11.821,-9.158],[9.03,25.442],[-4.661,27.434],[-12.308,-10.16],[-11.39,-32.688]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-6.8,-1.851],[2.714,-27.281],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.13,21.412],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[2.708,-52.315],[12.107,-14.89],[8.343,34.648],[-4.454,34.238],[-12.308,-15.876],[-11.047,-40.918]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-6.8,-1.851],[2.714,-27.281],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.13,21.412],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[2.708,-52.315],[12.107,-14.89],[7.891,36.472],[-6.477,35.973],[-12.721,-15.696],[-11.047,-40.918]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[-6.8,-1.851],[3.604,-27.19],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.828,21.331],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[3.354,-53.648],[13.759,-14.066],[8.376,35.71],[-8.127,36.791],[-12.308,-15.876],[-11.798,-42.958]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[-6.8,-1.851],[3.604,-27.19],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.828,21.331],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[3.354,-53.648],[13.759,-14.066],[8.376,35.71],[-8.127,36.791],[-12.308,-15.876],[-11.798,-42.958]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[-6.8,-1.851],[3.604,-27.19],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.828,21.331],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[3.354,-53.648],[13.759,-14.066],[8.376,35.71],[-8.127,36.791],[-12.308,-15.876],[-11.798,-42.958]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[-6.8,-1.851],[2.714,-27.281],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.13,21.412],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[2.708,-52.315],[12.107,-14.89],[7.891,36.472],[-6.477,35.973],[-12.721,-15.696],[-11.047,-40.918]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[-6.8,-1.851],[2.714,-27.281],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.13,21.412],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[2.708,-52.315],[12.107,-14.89],[8.343,34.648],[-4.454,34.238],[-12.308,-15.876],[-11.047,-40.918]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[-2.012,-0.81],[2.425,-29.683],[0,0],[7.489,5.282],[0.502,6.27],[-1.962,5.198]],"o":[[3.783,1.524],[-1.534,18.773],[0,0],[0,0],[-0.906,-11.322],[3.152,-8.404]],"v":[[3.8,-38.895],[11.821,-9.158],[9.03,25.442],[-4.661,27.434],[-12.308,-10.16],[-11.39,-32.688]],"c":true}]},{"t":71,"s":[{"i":[[-0.812,-1.81],[2.392,-26.306],[0,0],[7.489,6.261],[0.502,7.431],[-1.962,6.161]],"o":[[0,0],[-2.018,22.199],[0,0],[0,0],[-0.906,-13.419],[7.43,-11.687]],"v":[[8.194,-34.262],[12.107,-1.808],[8.645,38.038],[-3.077,37.963],[-12.308,-2.83],[-10.063,-31.012]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.854901960784,0.709803921569,0.607843137255,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":9,"op":202,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"bong tay trai","parent":13,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":1,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":70,"s":[0]},{"t":71,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-5.871,8.692,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"t":71,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.800000011921,0.68235296011,0.603921592236,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":9,"op":202,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"ban tay trai","parent":11,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":64,"s":[100]},{"t":65,"s":[0]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[-6.481]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[-6.481]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[-6.481]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[0]},{"t":71,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[2.382,36.499,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[2.955,24.893,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[1.525,33.558,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[1.525,33.558,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[1.525,33.558,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[2.955,24.893,0],"to":[0,0,0],"ti":[0,0,0]},{"t":71,"s":[2.382,36.499,0]}],"ix":2,"l":2},"a":{"a":0,"k":[2.756,-21.925,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-2.53,-0.86],[0,0],[0,0],[1.24,0.96],[2.64,-1.46],[0.72,-5.88],[-0.55,-2.33],[0,0],[0,0]],"o":[[0,0],[0,0],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[0.01,3.74],[0.9,3.79],[0,0],[-0.19,1.93]],"v":[[-6.011,25.012],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-7.651,-11.098],[-6.641,-1.978],[-4.561,3.742],[-8.941,20.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-4.109,1.935],[-0.897,3.09],[0,0],[1.24,0.96],[2.64,-1.46],[0.891,-6.049],[0.231,-2.459],[0,0],[0,0]],"o":[[0,0],[0.897,-3.09],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[-0.624,3.602],[-0.361,3.841],[0,0],[0.113,2.423]],"v":[[-4.4,21.972],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-10.254,-9.975],[-12.291,0.922],[-13.41,9.558],[-13.556,16.365]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[-3.555,0.851],[-1.147,3.959],[0.433,2.884],[1.279,0.718],[2.577,-1.284],[0.662,-5.086],[-0.307,-1.792],[-0.895,-1.845],[0,0]],"o":[[0,0],[1.422,-4.909],[-0.433,-2.884],[-2.462,-1.382],[-2.23,1.111],[-0.334,2.388],[0.493,2.883],[0.895,1.845],[3.985,1.005]],"v":[[3.79,6.964],[8.796,2.894],[11.184,-16.54],[6.961,-24.557],[-1.632,-23.872],[-15.607,-14.24],[-14.634,-6.393],[-12.237,3.851],[-9.518,6.346]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[-3.555,0.851],[-1.147,3.959],[0.433,2.884],[1.279,0.718],[2.577,-1.284],[0.662,-5.086],[-0.307,-1.792],[-0.895,-1.845],[0,0]],"o":[[0,0],[1.422,-4.909],[-0.433,-2.884],[-2.462,-1.382],[-2.23,1.111],[-0.334,2.388],[0.493,2.883],[0.895,1.845],[3.985,1.005]],"v":[[3.79,6.964],[8.796,2.894],[11.184,-16.54],[6.961,-24.557],[-1.632,-23.872],[-15.607,-14.24],[-14.634,-6.393],[-12.237,3.851],[-9.518,6.346]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[-3.555,0.851],[-1.147,3.959],[0.433,2.884],[1.279,0.718],[2.577,-1.284],[0.662,-5.086],[-0.307,-1.792],[-0.895,-1.845],[0,0]],"o":[[0,0],[1.422,-4.909],[-0.433,-2.884],[-2.462,-1.382],[-2.23,1.111],[-0.334,2.388],[0.493,2.883],[0.895,1.845],[3.985,1.005]],"v":[[3.79,6.964],[8.796,2.894],[11.184,-16.54],[6.961,-24.557],[-1.632,-23.872],[-15.607,-14.24],[-14.634,-6.393],[-12.237,3.851],[-9.518,6.346]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[-4.109,1.935],[-0.897,3.09],[0,0],[1.24,0.96],[2.64,-1.46],[0.891,-6.049],[0.231,-2.459],[0,0],[0,0]],"o":[[0,0],[0.897,-3.09],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[-0.624,3.602],[-0.361,3.841],[0,0],[0.113,2.423]],"v":[[-4.4,21.972],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-10.254,-9.975],[-12.291,0.922],[-13.41,9.558],[-13.556,16.365]],"c":true}]},{"t":71,"s":[{"i":[[-2.53,-0.86],[0,0],[0,0],[1.24,0.96],[2.64,-1.46],[0.72,-5.88],[-0.55,-2.33],[0,0],[0,0]],"o":[[0,0],[0,0],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[0.01,3.74],[0.9,3.79],[0,0],[-0.19,1.93]],"v":[[-6.011,25.012],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-7.651,-11.098],[-6.641,-1.978],[-4.561,3.742],[-8.941,20.862]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.854901960784,0.709803921569,0.607843137255,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":9,"op":202,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"canh tay phai","parent":18,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":59,"s":[0]},{"t":60,"s":[100]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[-12.133]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[-67.527]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[-143.1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[-179.608]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[-179.608]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[-179.608]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[-143.1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[-67.527]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[-12.133]},{"t":71,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[-0.013,25.817,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[0.197,21.072,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[0.197,21.072,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[0.197,21.072,0],"to":[0,0,0],"ti":[0,0,0]},{"t":57,"s":[-0.013,25.817,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0.401,-26.836,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0.812,-1.81],[-2.392,-26.306],[0,0],[-7.489,6.261],[-0.502,7.431],[1.962,6.161]],"o":[[0,0],[2.018,22.199],[0,0],[0,0],[0.906,-13.419],[-8.26,-12.062]],"v":[[-8.569,-34.262],[-12.107,-1.808],[-8.645,38.038],[3.077,37.963],[12.308,-2.83],[10.063,-31.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[1.233,-1.451],[-2.392,-24.128],[0,0],[-7.489,5.742],[-0.502,6.816],[1.962,5.651]],"o":[[-1.1,1.295],[2.018,20.361],[0,0],[0,0],[0.906,-12.309],[-5.583,-8.993]],"v":[[-7.694,-35.542],[-12.107,-5.775],[-8.645,30.773],[3.077,30.704],[12.308,-6.712],[10.063,-32.561]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[1.233,-1.01],[-0.614,-16.947],[0,0],[-7.489,3.996],[-0.959,4.672],[1.962,3.932]],"o":[[-1.1,0.901],[0.496,13.699],[0,0],[0,0],[1.654,-8.06],[-5.583,-6.257]],"v":[[-8.033,-35.946],[-12.834,-16.577],[-10.889,11.701],[4.184,13.338],[12.052,-15.579],[10.618,-33.479]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[1.233,-1.16],[0.025,-18.53],[0,0],[-7.489,4.591],[-0.959,5.368],[1.962,4.518]],"o":[[-1.1,1.035],[-0.021,15.751],[0,0],[0,0],[1.654,-9.261],[-5.545,-9.875]],"v":[[-5.974,-35.765],[-12.834,-12.777],[-10.889,19.715],[4.184,21.596],[12.052,-11.63],[10.618,-32.198]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[1.47,-0.834],[0.025,-16.707],[0,0],[-7.489,4.139],[-0.959,4.84],[1.962,4.074]],"o":[[-2.028,1.151],[-0.021,14.201],[0,0],[0,0],[1.654,-8.35],[-5.545,-8.903]],"v":[[-7.973,-28.584],[-13.573,-3.898],[-13.643,52.994],[1.43,54.691],[12.052,-4.697],[10.618,-23.241]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[1.47,-0.834],[0.025,-16.707],[0,0],[-7.489,4.139],[-0.959,4.84],[1.962,4.074]],"o":[[-2.028,1.151],[-0.021,14.201],[0,0],[0,0],[1.654,-8.35],[-5.545,-8.903]],"v":[[-7.973,-28.584],[-13.573,-3.898],[-13.643,52.994],[1.43,54.691],[12.052,-4.697],[10.618,-23.241]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[1.47,-0.834],[0.025,-16.707],[0,0],[-7.489,4.139],[-0.959,4.84],[1.962,4.074]],"o":[[-2.028,1.151],[-0.021,14.201],[0,0],[0,0],[1.654,-8.35],[-5.545,-8.903]],"v":[[-7.973,-28.584],[-13.573,-3.898],[-13.643,52.994],[1.43,54.691],[12.052,-4.697],[10.618,-23.241]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[1.233,-1.16],[0.025,-18.53],[0,0],[-7.489,4.591],[-0.959,5.368],[1.962,4.518]],"o":[[-1.1,1.035],[-0.021,15.751],[0,0],[0,0],[1.654,-9.261],[-5.545,-9.875]],"v":[[-5.974,-35.765],[-12.834,-12.777],[-10.889,19.715],[4.184,21.596],[12.052,-11.63],[10.618,-32.198]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[1.233,-1.01],[-0.614,-16.947],[0,0],[-7.489,3.996],[-0.959,4.672],[1.962,3.932]],"o":[[-1.1,0.901],[0.496,13.699],[0,0],[0,0],[1.654,-8.06],[-5.583,-6.257]],"v":[[-8.033,-35.946],[-12.834,-16.577],[-10.889,11.701],[4.184,13.338],[12.052,-15.579],[10.618,-33.479]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[1.233,-1.451],[-2.392,-24.128],[0,0],[-7.489,5.742],[-0.502,6.816],[1.962,5.651]],"o":[[-1.1,1.295],[2.018,20.361],[0,0],[0,0],[0.906,-12.309],[-5.583,-8.993]],"v":[[-7.694,-35.542],[-12.107,-5.775],[-8.645,30.773],[3.077,30.704],[12.308,-6.712],[10.063,-32.561]],"c":true}]},{"t":71,"s":[{"i":[[0.812,-1.81],[-2.392,-26.306],[0,0],[-7.489,6.261],[-0.502,7.431],[1.962,6.161]],"o":[[0,0],[2.018,22.199],[0,0],[0,0],[0.906,-13.419],[-8.26,-12.062]],"v":[[-8.569,-34.262],[-12.107,-1.808],[-8.645,38.038],[3.077,37.963],[12.308,-2.83],[10.063,-31.012]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.87450986376,0.764705942191,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":205,"st":0,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"cau vai trai","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[6.319,18.447,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[430.108,430.108,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0.149,-12.839],[7.871,-1.866],[0.748,7.405],[-3.316,10.39],[-3.147,0.579]],"o":[[-0.162,13.923],[-14.237,-0.437],[-0.576,-5.708],[4.018,-1.498],[10.965,0]],"v":[[16.254,0.561],[3.024,24.181],[-13.289,1.109],[-15.047,-21.111],[-6.822,-23.806]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-1.216,-11.91],[7.871,-1.866],[0.748,7.405],[-3.316,10.39],[-2.601,0.973]],"o":[[1.414,13.852],[-14.237,-0.437],[-0.576,-5.708],[3.897,-1.714],[11.585,-0.916]],"v":[[15.36,0.52],[3.024,24.181],[-13.762,1.695],[-17.41,-18.942],[-8.733,-22.722]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-1.694,-11.324],[10.017,-3.009],[0.436,7.43],[-4.692,6.055],[-3.577,-0.226]],"o":[[1.48,9.889],[-11.714,1.945],[-0.335,-5.716],[2.582,-2.762],[10.562,3.246]],"v":[[7.5,2.02],[-4.169,23.986],[-21.633,-3.329],[-17.41,-18.942],[-7.007,-22.629]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-1.694,-11.324],[10.017,-3.009],[0.341,7.435],[-4.043,4.06],[-2.454,-0.291]],"o":[[1.48,9.889],[-12.38,-0.006],[-0.307,-6.702],[3.354,-2.599],[8.601,0.397]],"v":[[14.979,-1.163],[-3.667,23.112],[-25.245,-3.311],[-18.101,-18.392],[-5.039,-23.652]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[-1.841,-10.621],[10.017,-3.009],[3.613,6.507],[-6.477,7.922],[-2.973,-0.623]],"o":[[1.707,9.852],[-7.793,1.813],[-3.715,-6.691],[7.324,-8.242],[6.435,1.349]],"v":[[16.547,-1.08],[-3.819,24.981],[-27.065,13.271],[-20.309,-11.327],[-1.759,-19.753]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[-1.841,-10.621],[10.017,-3.009],[3.613,6.507],[-6.477,7.922],[-2.973,-0.623]],"o":[[1.707,9.852],[-7.793,1.813],[-3.715,-6.691],[7.324,-8.242],[6.435,1.349]],"v":[[16.547,-1.08],[-3.819,24.981],[-27.065,13.271],[-20.309,-11.327],[-1.759,-19.753]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[-1.841,-10.621],[10.017,-3.009],[3.613,6.507],[-6.477,7.922],[-2.973,-0.623]],"o":[[1.707,9.852],[-7.793,1.813],[-3.715,-6.691],[7.324,-8.242],[6.435,1.349]],"v":[[16.547,-1.08],[-3.819,24.981],[-27.065,13.271],[-20.309,-11.327],[-1.759,-19.753]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[-1.694,-11.324],[10.017,-3.009],[0.341,7.435],[-4.043,4.06],[-2.454,-0.291]],"o":[[1.48,9.889],[-12.38,-0.006],[-0.307,-6.702],[3.354,-2.599],[8.601,0.397]],"v":[[14.979,-1.163],[-3.667,23.112],[-25.245,-3.311],[-18.101,-18.392],[-5.039,-23.652]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[-1.694,-11.324],[10.017,-3.009],[0.436,7.43],[-4.692,6.055],[-3.577,-0.226]],"o":[[1.48,9.889],[-11.714,1.945],[-0.335,-5.716],[2.582,-2.762],[10.562,3.246]],"v":[[7.5,2.02],[-4.169,23.986],[-21.633,-3.329],[-17.41,-18.942],[-7.007,-22.629]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[-1.216,-11.91],[7.871,-1.866],[0.748,7.405],[-3.316,10.39],[-2.601,0.973]],"o":[[1.414,13.852],[-14.237,-0.437],[-0.576,-5.708],[3.897,-1.714],[11.585,-0.916]],"v":[[15.36,0.52],[3.024,24.181],[-13.762,1.695],[-17.41,-18.942],[-8.733,-22.722]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":71,"s":[{"i":[[0.149,-12.839],[7.871,-1.866],[0.748,7.405],[-3.316,10.39],[-2.601,0.973]],"o":[[-0.162,13.923],[-14.237,-0.437],[-0.576,-5.708],[4.018,-1.498],[10.965,0]],"v":[[16.254,0.561],[3.024,24.181],[-13.289,1.109],[-15.047,-21.111],[-6.822,-24.181]],"c":true}]},{"t":72,"s":[{"i":[[0.149,-12.839],[7.871,-1.866],[0.748,7.405],[-3.316,10.39],[-3.147,0.579]],"o":[[-0.162,13.923],[-14.237,-0.437],[-0.576,-5.708],[4.018,-1.498],[10.965,0]],"v":[[16.254,0.561],[3.024,24.181],[-13.289,1.109],[-15.047,-21.111],[-6.822,-23.806]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.854901960784,0.709803921569,0.607843137255,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"bap tay trai","parent":15,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[-4.296]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[40.883]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[40.883]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[40.883]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[-4.296]},{"t":71,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[1.134,11.753,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[1.178,11.722,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[-11.08,13.449,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[-13.264,10.962,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[-13.264,10.962,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[-13.264,10.962,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[-11.08,13.449,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[1.178,11.722,0],"to":[0,0,0],"ti":[0,0,0]},{"t":71,"s":[1.134,11.753,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-0.25,-21.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0.449,-8.473],[1.988,-8.937],[0,0],[-1.935,23.694],[0,0]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[0,0],[0.888,-10.868],[4.118,2.955]],"v":[[14.816,-30.822],[15.26,2.442],[10.42,31.407],[-7.663,30.069],[-15.123,-15.519],[-14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[0,0],[0.449,-8.473],[2.644,-8.655],[0,0],[-1.935,23.694],[0,0]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[0,0],[0.888,-10.868],[4.118,2.955]],"v":[[14.816,-30.822],[15.26,2.442],[11.535,30.553],[-7.663,30.069],[-15.435,-15.491],[-14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[0,0],[0.449,-8.473],[1.464,-8.063],[1.469,0.758],[1.999,15.465],[-1.314,1.89]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[-1.57,-2.302],[-0.602,-5.198],[1.314,-1.89]],"v":[[14.345,-28.228],[16.014,-6.012],[14.476,11.236],[-7.715,13.873],[-15.32,-8.132],[-13.135,-30.689]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[0,0],[0.449,-8.473],[3.531,-9.675],[1.469,0.758],[0.28,9.651],[-1.314,1.89]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[-2.696,-4.98],[-0.139,-5.669],[1.314,-1.89]],"v":[[14.763,-28.68],[16.015,-6.21],[11.028,21.22],[-12.201,21.856],[-15.755,-3.925],[-14.105,-30.358]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[0,0],[-0.054,-8.485],[1.464,-8.063],[1.469,0.758],[0.435,9.432],[-1.314,1.89]],"o":[[0,0],[0.072,11.335],[-2.141,-0.461],[-2.975,-6.57],[-0.139,-5.669],[1.314,-1.89]],"v":[[14.952,-28.866],[17.599,-4.315],[11.981,31.418],[-11.468,23.994],[-16.087,-1.647],[-12.528,-30.365]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[0,0],[-0.054,-8.485],[1.464,-8.063],[1.469,0.758],[0.435,9.432],[-1.314,1.89]],"o":[[0,0],[0.072,11.335],[-2.141,-0.461],[-2.975,-6.57],[-0.139,-5.669],[1.314,-1.89]],"v":[[14.952,-28.866],[17.599,-4.315],[11.981,31.418],[-11.468,23.994],[-16.087,-1.647],[-12.528,-30.365]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0,0],[-0.054,-8.485],[1.464,-8.063],[1.469,0.758],[0.435,9.432],[-1.314,1.89]],"o":[[0,0],[0.072,11.335],[-2.141,-0.461],[-2.975,-6.57],[-0.139,-5.669],[1.314,-1.89]],"v":[[14.952,-28.866],[17.599,-4.315],[11.981,31.418],[-11.468,23.994],[-16.087,-1.647],[-12.528,-30.365]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[0,0],[0.449,-8.473],[3.531,-9.675],[1.469,0.758],[0.28,9.651],[-1.314,1.89]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[-2.696,-4.98],[-0.139,-5.669],[1.314,-1.89]],"v":[[14.763,-28.68],[16.015,-6.21],[11.028,21.22],[-12.201,21.856],[-15.755,-3.925],[-14.105,-30.358]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[0,0],[0.449,-8.473],[1.464,-8.063],[1.469,0.758],[1.999,15.465],[-1.314,1.89]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[-1.57,-2.302],[-0.602,-5.198],[1.314,-1.89]],"v":[[14.345,-28.228],[16.014,-6.012],[14.476,11.236],[-7.715,13.873],[-15.32,-8.132],[-13.135,-30.689]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[0.449,-8.473],[2.644,-8.655],[0,0],[-1.935,23.694],[0,0]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[0,0],[0.888,-10.868],[4.118,2.955]],"v":[[14.816,-30.822],[15.26,2.442],[11.535,30.553],[-7.663,30.069],[-15.435,-15.491],[-14.001,-31.407]],"c":true}]},{"t":71,"s":[{"i":[[0,0],[0.449,-8.473],[1.988,-8.937],[0,0],[-1.935,23.694],[0,0]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[0,0],[0.888,-10.868],[4.118,2.955]],"v":[[14.816,-30.822],[15.26,2.442],[10.42,31.407],[-7.663,30.069],[-15.123,-15.519],[-14.001,-31.407]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.854901960784,0.709803921569,0.607843137255,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"cau vai phai","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-58.139,-84.461,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-0.149,-12.839],[-7.871,-1.866],[-0.748,7.405],[3.316,10.39],[2.601,0.973]],"o":[[0.162,13.923],[14.237,-0.437],[0.576,-5.708],[-4.018,-1.498],[-10.965,0]],"v":[[-16.254,0.561],[-3.024,24.181],[13.289,1.109],[15.047,-21.111],[6.822,-24.181]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-0.149,-12.839],[-7.871,-1.866],[-0.748,7.405],[0.935,10.772],[2.422,0.484]],"o":[[0.162,13.923],[15.234,-0.437],[0.576,-5.708],[-4.018,-1.498],[-10.189,1.492]],"v":[[-16.254,0.561],[-3.024,24.181],[14.848,2.714],[15.513,-22.252],[5.186,-24.575]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[0.001,-10.643],[-7.871,-1.866],[-0.748,7.405],[0.935,10.772],[2.422,0.484]],"o":[[-0.001,13.924],[15.234,-0.437],[0.576,-5.708],[-4.018,-1.498],[-8.928,4.088]],"v":[[-14.007,1.245],[-3.024,24.181],[14.848,2.714],[15.513,-22.252],[5.186,-24.575]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[0.001,-10.643],[-7.871,-1.866],[-0.748,7.405],[0.935,10.772],[2.422,0.484]],"o":[[-0.001,13.924],[15.234,-0.437],[0.576,-5.708],[-4.018,-1.498],[-12.28,-0.731]],"v":[[-16.69,-5.06],[0.191,22.83],[14.848,2.714],[15.513,-22.252],[5.186,-24.575]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[0.001,-10.643],[-7.871,-1.866],[-0.748,7.405],[0.935,10.772],[2.422,0.484]],"o":[[-0.001,13.924],[15.234,-0.437],[0.576,-5.708],[-4.018,-1.498],[-12.28,-0.731]],"v":[[-16.69,-5.06],[0.191,22.83],[14.848,2.714],[15.513,-22.252],[5.186,-24.575]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0.001,-10.643],[-7.871,-1.866],[-0.748,7.405],[0.935,10.772],[2.422,0.484]],"o":[[-0.001,13.924],[15.234,-0.437],[0.576,-5.708],[-4.018,-1.498],[-12.28,-0.731]],"v":[[-16.69,-5.06],[0.191,22.83],[14.848,2.714],[15.513,-22.252],[5.186,-24.575]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[0.001,-10.643],[-7.871,-1.866],[-0.748,7.405],[0.935,10.772],[2.422,0.484]],"o":[[-0.001,13.924],[15.234,-0.437],[0.576,-5.708],[-4.018,-1.498],[-8.928,4.088]],"v":[[-14.007,1.245],[-3.024,24.181],[14.848,2.714],[15.513,-22.252],[5.186,-24.575]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[-0.149,-12.839],[-7.871,-1.866],[-0.748,7.405],[0.935,10.772],[2.422,0.484]],"o":[[0.162,13.923],[15.234,-0.437],[0.576,-5.708],[-4.018,-1.498],[-10.189,1.492]],"v":[[-16.254,0.561],[-3.024,24.181],[14.848,2.714],[15.513,-22.252],[5.186,-24.575]],"c":true}]},{"t":71,"s":[{"i":[[-0.149,-12.839],[-7.871,-1.866],[-0.748,7.405],[3.316,10.39],[2.601,0.973]],"o":[[0.162,13.923],[14.237,-0.437],[0.576,-5.708],[-4.018,-1.498],[-10.965,0]],"v":[[-16.254,0.561],[-3.024,24.181],[13.289,1.109],[15.047,-21.111],[6.822,-24.181]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.87450986376,0.764705942191,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"bap tay phai","parent":17,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[-4.301]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[-1.808]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[-10.793]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[-10.793]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[-10.793]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[-1.808]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[-4.301]},{"t":66,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[-1.563,13.133,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[-0.688,13.069,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[1.575,12.993,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[1.575,12.993,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[1.575,12.993,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[-0.688,13.069,0],"to":[0,0,0],"ti":[0,0,0]},{"t":66,"s":[-1.563,13.133,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-0.125,-18.25,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.935,23.694],[0,0]],"o":[[0,0],[0.462,8.725],[2.141,-0.461],[0,0],[-0.888,-10.868],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-10.42,31.407],[7.663,30.069],[15.123,-15.519],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.935,23.694],[0,0]],"o":[[0,0],[0.462,8.725],[2.141,-0.461],[0,0],[-0.888,-10.868],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-10.42,31.407],[7.663,30.069],[15.123,-15.519],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.576,23.399],[0,0]],"o":[[0,0],[0.462,8.725],[5.535,5.907],[0,0],[-0.733,-10.88],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-11.274,30.84],[6.414,31.033],[17.747,-12.004],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.576,23.399],[0,0]],"o":[[0,0],[0.462,8.725],[5.535,5.907],[0,0],[-0.733,-10.88],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-11.274,30.84],[6.414,31.033],[17.747,-12.004],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[0,0],[-0.924,-8.434],[-6.052,-1.576],[0,0],[1.028,22.848],[0,0]],"o":[[0,0],[0.979,8.939],[7.374,0.395],[0,0],[-0.49,-10.894],[-4.118,2.955]],"v":[[-12.829,-30.484],[-15.035,0.2],[-3.946,20.779],[7.467,18.567],[15.108,-11.746],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[0,0],[-0.924,-8.434],[-6.052,-1.576],[0,0],[1.028,22.848],[0,0]],"o":[[0,0],[0.979,8.939],[7.374,0.395],[0,0],[-0.49,-10.894],[-4.118,2.955]],"v":[[-12.829,-30.484],[-15.035,0.2],[-3.946,20.779],[7.467,18.567],[15.108,-11.746],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0,0],[-0.924,-8.434],[-6.052,-1.576],[0,0],[1.028,22.848],[0,0]],"o":[[0,0],[0.979,8.939],[7.374,0.395],[0,0],[-0.49,-10.894],[-4.118,2.955]],"v":[[-12.829,-30.484],[-15.035,0.2],[-3.946,20.779],[7.467,18.567],[15.108,-11.746],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.576,23.399],[0,0]],"o":[[0,0],[0.462,8.725],[5.535,5.907],[0,0],[-0.733,-10.88],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-11.274,30.84],[6.414,31.033],[17.747,-12.004],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.576,23.399],[0,0]],"o":[[0,0],[0.462,8.725],[5.535,5.907],[0,0],[-0.733,-10.88],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-11.274,30.84],[6.414,31.033],[17.747,-12.004],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.935,23.694],[0,0]],"o":[[0,0],[0.462,8.725],[2.141,-0.461],[0,0],[-0.888,-10.868],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-10.42,31.407],[7.663,30.069],[15.123,-15.519],[14.001,-31.407]],"c":true}]},{"t":71,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.935,23.694],[0,0]],"o":[[0,0],[0.462,8.725],[2.141,-0.461],[0,0],[-0.888,-10.868],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-10.42,31.407],[7.663,30.069],[15.123,-15.519],[14.001,-31.407]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.87450986376,0.764705942191,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.25,0.011],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0}]},{"id":"comp_2","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"tay trai","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[9.466]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[9.466]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[30.403]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[48.499]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[48.499]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[48.499]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[30.403]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[9.466]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[9.466]},{"t":71,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[776.375,270.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[773.063,270.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[764.563,271.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[766.438,269.125,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[766.438,269.125,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[766.438,269.125,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[764.563,271.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[773.063,270.5,0],"to":[0,0,0],"ti":[0,0,0]},{"t":71,"s":[776.375,270.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[23.25,23.25,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":200,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":3,"nm":"tay phai","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[8.255]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[8.255]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[8.255]},{"t":71,"s":[0]}],"ix":10},"p":{"a":0,"k":[663.75,269.5,0],"ix":2,"l":2},"a":{"a":0,"k":[-56.25,-90.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":200,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"canh tay trai 2","parent":16,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[32.207]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[25.383]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[8.61]},{"t":21,"s":[2.39]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[0.664,23.653,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[1.98,25.461,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[0.649,18.839,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[-1.295,28.474,0],"to":[0,0,0],"ti":[0,0,0]},{"t":21,"s":[0.205,28.49,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0.25,-29,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-0.812,-1.81],[2.392,-26.306],[0,0],[7.489,6.261],[0.502,7.431],[-1.962,6.161]],"o":[[0,0],[-2.018,22.199],[0,0],[0,0],[-0.906,-13.419],[7.43,-11.687]],"v":[[8.194,-34.262],[12.107,-1.808],[8.645,38.038],[-3.077,37.963],[-12.308,-2.83],[-10.063,-31.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-2.012,-0.81],[2.425,-29.683],[0,0],[7.489,5.282],[0.502,6.27],[-1.962,5.198]],"o":[[3.783,1.524],[-1.534,18.773],[0,0],[0,0],[-0.906,-11.322],[3.152,-8.404]],"v":[[3.8,-38.895],[11.821,-9.158],[9.03,25.442],[-4.661,27.434],[-12.308,-10.16],[-11.39,-32.688]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-6.8,-1.851],[2.714,-27.281],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.13,21.412],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[2.708,-52.315],[12.107,-14.89],[8.343,34.648],[-4.454,34.238],[-12.308,-15.876],[-11.047,-40.918]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-6.8,-1.851],[2.714,-27.281],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.13,21.412],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[2.708,-52.315],[12.107,-14.89],[7.891,36.472],[-6.477,35.973],[-12.721,-15.696],[-11.047,-40.918]],"c":true}]},{"t":21,"s":[{"i":[[-6.8,-1.851],[3.604,-27.19],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.828,21.331],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[3.354,-53.648],[13.759,-14.066],[8.376,35.71],[-8.127,36.791],[-12.308,-15.876],[-11.798,-42.958]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.87450986376,0.764705942191,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":9,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"ngon tay trai 2","parent":6,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-7.897,-7.95,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-1.561,4.812],[0,0],[1.936,-9.992],[0,0]],"o":[[0,0],[-1.056,1.082],[0,0],[0.169,1.59]],"v":[[0.57,11.749],[5.888,-15.703],[-2.913,-0.8],[-5.888,14.651]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-2.083,4.61],[0,0],[3.027,-9.717],[0,0]],"o":[[0,0],[-1.169,0.959],[0,0],[-0.008,1.599]],"v":[[-5.533,14.661],[2.783,-12.036],[-7.609,1.804],[-12.271,16.832]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-1.772,3.962],[0,0],[2.576,-8.351],[0,0]],"o":[[0,0],[-0.995,0.824],[0,0],[-0.007,1.374]],"v":[[-2.839,11.277],[2.783,-12.036],[-5.923,-0.171],[-8.649,13.189]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-1.772,3.962],[0,0],[2.576,-8.351],[0,0]],"o":[[0,0],[-0.995,0.824],[0,0],[-0.007,1.374]],"v":[[-2.839,11.277],[2.783,-12.036],[-5.923,-0.171],[-8.649,13.189]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[-1.772,3.24],[0,0],[2.576,-6.829],[0,0]],"o":[[0,0],[-0.995,0.674],[0,0],[-0.007,1.124]],"v":[[1.352,7.087],[6.975,-11.979],[-1.731,-2.275],[-4.458,8.65]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[-1.772,3.24],[0,0],[2.576,-6.829],[0,0]],"o":[[0,0],[-0.995,0.674],[0,0],[-0.007,1.124]],"v":[[1.352,7.087],[6.975,-11.979],[-1.731,-2.275],[-4.458,8.65]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[-1.772,3.24],[0,0],[2.576,-6.829],[0,0]],"o":[[0,0],[-0.995,0.674],[0,0],[-0.007,1.124]],"v":[[1.352,7.087],[6.975,-11.979],[-1.731,-2.275],[-4.458,8.65]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57,"s":[{"i":[[-1.772,3.962],[0,0],[2.576,-8.351],[0,0]],"o":[[0,0],[-0.995,0.824],[0,0],[-0.007,1.374]],"v":[[-2.839,11.277],[2.783,-12.036],[-5.923,-0.171],[-8.649,13.189]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[-1.772,3.962],[0,0],[2.576,-8.351],[0,0]],"o":[[0,0],[-0.995,0.824],[0,0],[-0.007,1.374]],"v":[[-2.839,11.277],[2.783,-12.036],[-5.923,-0.171],[-8.649,13.189]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":65,"s":[{"i":[[-2.083,4.61],[0,0],[3.027,-9.717],[0,0]],"o":[[0,0],[-1.169,0.959],[0,0],[-0.008,1.599]],"v":[[-5.533,14.661],[2.783,-12.036],[-7.609,1.804],[-12.271,16.832]],"c":true}]},{"t":70,"s":[{"i":[[-1.561,4.812],[0,0],[1.936,-9.992],[0,0]],"o":[[0,0],[-1.056,1.082],[0,0],[0.169,1.59]],"v":[[0.57,11.749],[5.888,-15.703],[-2.913,-0.8],[-5.888,14.651]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.874509811401,0.764705896378,0.68235296011,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"bong tay trai 2","parent":6,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":1,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":69,"s":[0]},{"t":70,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-5.871,8.692,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":65,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"t":70,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.800000011921,0.68235296011,0.603921592236,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"ban tay trai 2","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[-6.481]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[-6.481]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62,"s":[-6.481]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":65,"s":[0]},{"t":70,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[2.382,36.499,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[2.955,24.893,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[1.525,33.558,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[1.525,33.558,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[1.525,33.558,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":65,"s":[2.955,24.893,0],"to":[0,0,0],"ti":[0,0,0]},{"t":70,"s":[2.382,36.499,0]}],"ix":2,"l":2},"a":{"a":0,"k":[2.756,-21.925,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-2.53,-0.86],[0,0],[0,0],[1.24,0.96],[2.64,-1.46],[0.72,-5.88],[-0.55,-2.33],[0,0],[0,0]],"o":[[0,0],[0,0],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[0.01,3.74],[0.9,3.79],[0,0],[-0.19,1.93]],"v":[[-6.011,25.012],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-7.651,-11.098],[-6.641,-1.978],[-4.561,3.742],[-8.941,20.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-4.109,1.935],[-0.897,3.09],[0,0],[1.24,0.96],[2.64,-1.46],[0.891,-6.049],[0.231,-2.459],[0,0],[0,0]],"o":[[0,0],[0.897,-3.09],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[-0.624,3.602],[-0.361,3.841],[0,0],[0.113,2.423]],"v":[[-4.4,21.972],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-10.254,-9.975],[-12.291,0.922],[-13.41,9.558],[-13.556,16.365]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[-3.555,0.851],[-1.147,3.959],[0.433,2.884],[1.279,0.718],[2.577,-1.284],[0.662,-5.086],[-0.307,-1.792],[-0.895,-1.845],[0,0]],"o":[[0,0],[1.422,-4.909],[-0.433,-2.884],[-2.462,-1.382],[-2.23,1.111],[-0.334,2.388],[0.493,2.883],[0.895,1.845],[3.985,1.005]],"v":[[3.79,6.964],[8.796,2.894],[11.184,-16.54],[6.961,-24.557],[-1.632,-23.872],[-15.607,-14.24],[-14.634,-6.393],[-12.237,3.851],[-9.518,6.346]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[-3.555,0.851],[-1.147,3.959],[0.433,2.884],[1.279,0.718],[2.577,-1.284],[0.662,-5.086],[-0.307,-1.792],[-0.895,-1.845],[0,0]],"o":[[0,0],[1.422,-4.909],[-0.433,-2.884],[-2.462,-1.382],[-2.23,1.111],[-0.334,2.388],[0.493,2.883],[0.895,1.845],[3.985,1.005]],"v":[[3.79,6.964],[8.796,2.894],[11.184,-16.54],[6.961,-24.557],[-1.632,-23.872],[-15.607,-14.24],[-14.634,-6.393],[-12.237,3.851],[-9.518,6.346]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[-3.555,0.851],[-1.147,3.959],[0.433,2.884],[1.279,0.718],[2.577,-1.284],[0.662,-5.086],[-0.307,-1.792],[-0.895,-1.845],[0,0]],"o":[[0,0],[1.422,-4.909],[-0.433,-2.884],[-2.462,-1.382],[-2.23,1.111],[-0.334,2.388],[0.493,2.883],[0.895,1.845],[3.985,1.005]],"v":[[3.79,6.964],[8.796,2.894],[11.184,-16.54],[6.961,-24.557],[-1.632,-23.872],[-15.607,-14.24],[-14.634,-6.393],[-12.237,3.851],[-9.518,6.346]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":65,"s":[{"i":[[-4.109,1.935],[-0.897,3.09],[0,0],[1.24,0.96],[2.64,-1.46],[0.891,-6.049],[0.231,-2.459],[0,0],[0,0]],"o":[[0,0],[0.897,-3.09],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[-0.624,3.602],[-0.361,3.841],[0,0],[0.113,2.423]],"v":[[-4.4,21.972],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-10.254,-9.975],[-12.291,0.922],[-13.41,9.558],[-13.556,16.365]],"c":true}]},{"t":70,"s":[{"i":[[-2.53,-0.86],[0,0],[0,0],[1.24,0.96],[2.64,-1.46],[0.72,-5.88],[-0.55,-2.33],[0,0],[0,0]],"o":[[0,0],[0,0],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[0.01,3.74],[0.9,3.79],[0,0],[-0.19,1.93]],"v":[[-6.011,25.012],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-7.651,-11.098],[-6.641,-1.978],[-4.561,3.742],[-8.941,20.862]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.874509811401,0.764705896378,0.68235296011,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":205,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"ngon cai phai","parent":9,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[7.897,-7.95,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[1.561,4.812],[0,0],[-1.936,-9.992],[0,0]],"o":[[0,0],[1.056,1.082],[0,0],[-0.169,1.59]],"v":[[-0.57,11.749],[-5.888,-15.703],[2.913,-0.8],[5.888,14.651]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[1.561,4.812],[0,0],[-1.936,-9.992],[0,0]],"o":[[0,0],[1.056,1.082],[0,0],[-0.169,1.59]],"v":[[-0.57,11.749],[-5.888,-15.703],[2.913,-0.8],[5.888,14.651]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[1.757,4.744],[0,0],[-2.344,-9.904],[0,0]],"o":[[0,0],[0.414,-1.535],[0,0],[-0.103,1.596]],"v":[[-1.552,10.316],[-7.192,-12.842],[3.789,-1.674],[4.777,13.939]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[1.757,4.744],[0,0],[-2.344,-9.904],[0,0]],"o":[[0,0],[0.414,-1.535],[0,0],[-0.103,1.596]],"v":[[-1.552,10.316],[-7.192,-12.842],[3.789,-1.674],[4.777,13.939]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[1.757,4.744],[0,0],[-2.344,-9.904],[0,0]],"o":[[0,0],[0.414,-1.535],[0,0],[-0.103,1.596]],"v":[[-1.552,10.316],[-7.192,-12.842],[3.789,-1.674],[4.777,13.939]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[1.561,4.812],[0,0],[-1.936,-9.992],[0,0]],"o":[[0,0],[1.056,1.082],[0,0],[-0.169,1.59]],"v":[[-0.57,11.749],[-5.888,-15.703],[2.913,-0.8],[5.888,14.651]],"c":true}]},{"t":71,"s":[{"i":[[1.561,4.812],[0,0],[-1.936,-9.992],[0,0]],"o":[[0,0],[1.056,1.082],[0,0],[-0.169,1.59]],"v":[[-0.57,11.749],[-5.888,-15.703],[2.913,-0.8],[5.888,14.651]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.854901960784,0.709803921569,0.607843137255,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"bong tay phai","parent":9,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":6,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":65,"s":[0]},{"t":66,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[5.871,8.692,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[-0.9,3.79],[0,0],[0.34,1.31],[0,0]],"v":[[3.07,12.17],[3.06,12.15],[-3.07,-5.56],[0.62,-12.17],[0.77,-10.67],[-1.31,-4.95],[2.24,8.33],[3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[-0.9,3.79],[0,0],[0.34,1.31],[0,0]],"v":[[3.07,12.17],[3.06,12.15],[-3.07,-5.56],[0.62,-12.17],[0.77,-10.67],[-1.31,-4.95],[2.24,8.33],[3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[-0.9,3.79],[0,0],[0.34,1.31],[0,0]],"v":[[3.07,12.17],[3.06,12.15],[-3.07,-5.56],[0.62,-12.17],[0.77,-10.67],[-1.31,-4.95],[2.24,8.33],[3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[-0.9,3.79],[0,0],[0.34,1.31],[0,0]],"v":[[3.07,12.17],[3.06,12.15],[-3.07,-5.56],[0.62,-12.17],[0.77,-10.67],[-1.31,-4.95],[2.24,8.33],[3.03,11.82]],"c":true}]},{"t":71,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[-0.9,3.79],[0,0],[0.34,1.31],[0,0]],"v":[[3.07,12.17],[3.06,12.15],[-3.07,-5.56],[0.62,-12.17],[0.77,-10.67],[-1.31,-4.95],[2.24,8.33],[3.03,11.82]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.800000011921,0.68235296011,0.603921592236,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"ban tay phai","parent":14,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[-9.086]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[5.957]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[5.957]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[5.957]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[-9.086]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[0]},{"t":71,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[-2.695,37.168,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[-2.788,31.148,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[-4.804,9.257,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[-5.4,17.641,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[-7.387,52.084,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[-7.387,52.084,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[-7.387,52.084,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[-5.4,17.641,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[-4.804,9.257,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[-2.788,31.148,0],"to":[0,0,0],"ti":[0,0,0]},{"t":71,"s":[-2.695,37.168,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-3.069,-21.256,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[2.53,-0.86],[0,0],[0,0],[-1.24,0.96],[-2.64,-1.46],[-0.72,-5.88],[0.55,-2.33],[0,0],[0,0],[-0.14,-1.02],[0,-0.11],[0,0]],"o":[[0,0],[0,0],[-0.38,-2.15],[2.38,-1.86],[2.29,1.25],[-0.01,3.74],[-0.9,3.79],[0,0],[0.34,1.31],[0.01,0.11],[0,0],[0.19,1.93]],"v":[[6.011,25.012],[-5.809,3.262],[-8.889,-19.338],[-7.079,-23.908],[1.541,-23.558],[7.651,-11.098],[6.641,-1.978],[4.561,3.742],[8.111,17.022],[8.901,20.512],[8.931,20.842],[8.941,20.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[2.53,-0.86],[0,0],[0,0],[-1.24,0.96],[-2.64,-1.46],[-0.72,-5.88],[0.55,-2.33],[0,0],[0,0],[-0.14,-1.02],[0,-0.11],[0,0]],"o":[[0,0],[0,0],[-0.38,-2.15],[2.38,-1.86],[2.29,1.25],[-0.01,3.74],[-0.9,3.79],[0,0],[0.34,1.31],[0.01,0.11],[0,0],[0.19,1.93]],"v":[[6.011,25.012],[-5.809,3.262],[-8.889,-19.338],[-7.079,-23.908],[1.541,-23.558],[7.651,-11.098],[6.641,-1.978],[4.561,3.742],[8.111,17.022],[8.901,20.512],[8.931,20.842],[8.941,20.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[1.093,1.153],[0.785,2.939],[0,0],[-1.24,0.96],[-2.64,-1.46],[-0.72,-5.88],[-0.641,-2.307],[-0.142,-2.091],[0,0],[1.024,-0.663],[0,-0.11],[0,0]],"o":[[-3.107,-3.279],[-1.869,-7.002],[-0.38,-2.15],[2.38,-1.86],[2.29,1.25],[0.942,3.412],[1.007,3.626],[0.142,2.091],[0.34,1.31],[0.01,0.11],[0,0],[-1.367,0.155]],"v":[[-4.518,9.865],[-15.073,-3.161],[-8.889,-19.338],[-5.876,-24.437],[1.541,-23.558],[7.598,-12.468],[7.348,-5.471],[7.224,0.673],[7.359,4.134],[5.885,7.843],[3.117,9.284],[-0.034,10.526]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[1.093,1.153],[0.785,2.939],[0,0],[-1.24,0.96],[-2.64,-1.46],[-0.72,-5.88],[-0.641,-2.307],[-0.142,-2.091],[0,0],[1.024,-0.663],[0,-0.11],[0,0]],"o":[[-3.107,-3.279],[-1.869,-7.002],[-0.38,-2.15],[2.38,-1.86],[2.29,1.25],[0.942,3.412],[1.007,3.626],[0.142,2.091],[0.34,1.31],[0.01,0.11],[0,0],[-1.367,0.155]],"v":[[-4.518,9.865],[-15.073,-3.161],[-8.889,-19.338],[-5.876,-24.437],[1.541,-23.558],[7.598,-12.468],[7.348,-5.471],[7.224,0.673],[7.359,4.134],[5.885,7.843],[3.117,9.284],[-0.034,10.526]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[1.093,1.153],[0.785,2.939],[0,0],[-1.24,0.96],[-2.64,-1.46],[-0.72,-5.88],[-0.641,-2.307],[-0.142,-2.091],[0,0],[1.024,-0.663],[0,-0.11],[0,0]],"o":[[-3.107,-3.279],[-1.869,-7.002],[-0.38,-2.15],[2.38,-1.86],[2.29,1.25],[0.942,3.412],[1.007,3.626],[0.142,2.091],[0.34,1.31],[0.01,0.11],[0,0],[-1.367,0.155]],"v":[[-4.518,9.865],[-15.073,-3.161],[-8.889,-19.338],[-5.876,-24.437],[1.541,-23.558],[7.598,-12.468],[7.348,-5.471],[7.224,0.673],[7.359,4.134],[5.885,7.843],[3.117,9.284],[-0.034,10.526]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[2.53,-0.86],[0,0],[0,0],[-1.24,0.96],[-2.64,-1.46],[-0.72,-5.88],[0.55,-2.33],[0,0],[0,0],[-0.14,-1.02],[0,-0.11],[0,0]],"o":[[0,0],[0,0],[-0.38,-2.15],[2.38,-1.86],[2.29,1.25],[-0.01,3.74],[-0.9,3.79],[0,0],[0.34,1.31],[0.01,0.11],[0,0],[0.19,1.93]],"v":[[6.011,25.012],[-5.809,3.262],[-8.889,-19.338],[-7.079,-23.908],[1.541,-23.558],[7.651,-11.098],[6.641,-1.978],[4.561,3.742],[8.111,17.022],[8.901,20.512],[8.931,20.842],[8.941,20.862]],"c":true}]},{"t":71,"s":[{"i":[[2.53,-0.86],[0,0],[0,0],[-1.24,0.96],[-2.64,-1.46],[-0.72,-5.88],[0.55,-2.33],[0,0],[0,0],[-0.14,-1.02],[0,-0.11],[0,0]],"o":[[0,0],[0,0],[-0.38,-2.15],[2.38,-1.86],[2.29,1.25],[-0.01,3.74],[-0.9,3.79],[0,0],[0.34,1.31],[0.01,0.11],[0,0],[0.19,1.93]],"v":[[6.011,25.012],[-5.809,3.262],[-8.889,-19.338],[-7.079,-23.908],[1.541,-23.558],[7.651,-11.098],[6.641,-1.978],[4.561,3.742],[8.111,17.022],[8.901,20.512],[8.931,20.842],[8.941,20.862]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.854901960784,0.709803921569,0.607843137255,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"canh tay phai 2","parent":18,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":59,"s":[100]},{"t":60,"s":[0]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[-12.133]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[-67.527]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[-143.1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[-179.608]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[-179.608]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[-179.608]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[-143.1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[-67.527]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[-12.133]},{"t":71,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[-0.013,25.817,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[0.197,21.072,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[0.197,21.072,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[0.197,21.072,0],"to":[0,0,0],"ti":[0,0,0]},{"t":57,"s":[-0.013,25.817,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0.401,-26.836,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0.812,-1.81],[-2.392,-26.306],[0,0],[-7.489,6.261],[-0.502,7.431],[1.962,6.161]],"o":[[0,0],[2.018,22.199],[0,0],[0,0],[0.906,-13.419],[-8.26,-12.062]],"v":[[-8.569,-34.262],[-12.107,-1.808],[-8.645,38.038],[3.077,37.963],[12.308,-2.83],[10.063,-31.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[1.233,-1.451],[-2.392,-24.128],[0,0],[-7.489,5.742],[-0.502,6.816],[1.962,5.651]],"o":[[-1.1,1.295],[2.018,20.361],[0,0],[0,0],[0.906,-12.309],[-5.583,-8.993]],"v":[[-7.694,-35.542],[-12.107,-5.775],[-8.645,30.773],[3.077,30.704],[12.308,-6.712],[10.063,-32.561]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[1.233,-1.01],[-0.614,-16.947],[0,0],[-7.489,3.996],[-0.959,4.672],[1.962,3.932]],"o":[[-1.1,0.901],[0.496,13.699],[0,0],[0,0],[1.654,-8.06],[-5.583,-6.257]],"v":[[-8.033,-35.946],[-12.834,-16.577],[-10.889,11.701],[4.184,13.338],[12.052,-15.579],[10.618,-33.479]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[1.233,-1.16],[0.025,-18.53],[0,0],[-7.489,4.591],[-0.959,5.368],[1.962,4.518]],"o":[[-1.1,1.035],[-0.021,15.751],[0,0],[0,0],[1.654,-9.261],[-5.545,-9.875]],"v":[[-5.974,-35.765],[-12.834,-12.777],[-10.889,19.715],[4.184,21.596],[12.052,-11.63],[10.618,-32.198]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[1.47,-0.834],[0.025,-16.707],[0,0],[-7.489,4.139],[-0.959,4.84],[1.962,4.074]],"o":[[-2.028,1.151],[-0.021,14.201],[0,0],[0,0],[1.654,-8.35],[-5.545,-8.903]],"v":[[-7.973,-28.584],[-13.573,-3.898],[-13.643,52.994],[1.43,54.691],[12.052,-4.697],[10.618,-23.241]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[1.47,-0.834],[0.025,-16.707],[0,0],[-7.489,4.139],[-0.959,4.84],[1.962,4.074]],"o":[[-2.028,1.151],[-0.021,14.201],[0,0],[0,0],[1.654,-8.35],[-5.545,-8.903]],"v":[[-7.973,-28.584],[-13.573,-3.898],[-13.643,52.994],[1.43,54.691],[12.052,-4.697],[10.618,-23.241]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[1.47,-0.834],[0.025,-16.707],[0,0],[-7.489,4.139],[-0.959,4.84],[1.962,4.074]],"o":[[-2.028,1.151],[-0.021,14.201],[0,0],[0,0],[1.654,-8.35],[-5.545,-8.903]],"v":[[-7.973,-28.584],[-13.573,-3.898],[-13.643,52.994],[1.43,54.691],[12.052,-4.697],[10.618,-23.241]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[1.233,-1.16],[0.025,-18.53],[0,0],[-7.489,4.591],[-0.959,5.368],[1.962,4.518]],"o":[[-1.1,1.035],[-0.021,15.751],[0,0],[0,0],[1.654,-9.261],[-5.545,-9.875]],"v":[[-5.974,-35.765],[-12.834,-12.777],[-10.889,19.715],[4.184,21.596],[12.052,-11.63],[10.618,-32.198]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[1.233,-1.01],[-0.614,-16.947],[0,0],[-7.489,3.996],[-0.959,4.672],[1.962,3.932]],"o":[[-1.1,0.901],[0.496,13.699],[0,0],[0,0],[1.654,-8.06],[-5.583,-6.257]],"v":[[-8.033,-35.946],[-12.834,-16.577],[-10.889,11.701],[4.184,13.338],[12.052,-15.579],[10.618,-33.479]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[1.233,-1.451],[-2.392,-24.128],[0,0],[-7.489,5.742],[-0.502,6.816],[1.962,5.651]],"o":[[-1.1,1.295],[2.018,20.361],[0,0],[0,0],[0.906,-12.309],[-5.583,-8.993]],"v":[[-7.694,-35.542],[-12.107,-5.775],[-8.645,30.773],[3.077,30.704],[12.308,-6.712],[10.063,-32.561]],"c":true}]},{"t":71,"s":[{"i":[[0.812,-1.81],[-2.392,-26.306],[0,0],[-7.489,6.261],[-0.502,7.431],[1.962,6.161]],"o":[[0,0],[2.018,22.199],[0,0],[0,0],[0.906,-13.419],[-8.26,-12.062]],"v":[[-8.569,-34.262],[-12.107,-1.808],[-8.645,38.038],[3.077,37.963],[12.308,-2.83],[10.063,-31.012]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.854901960784,0.709803921569,0.607843137255,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":12,"op":202,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"canh tay trai","parent":16,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[32.207]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[25.383]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[8.61]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[2.39]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[2.39]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[2.39]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[8.61]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[25.383]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[32.207]},{"t":71,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[0.664,23.653,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[1.98,25.461,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[0.649,18.839,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[-1.295,28.474,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[0.205,28.49,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[0.205,28.49,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[0.205,28.49,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[-1.295,28.474,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[0.649,18.839,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[1.98,25.461,0],"to":[0,0,0],"ti":[0,0,0]},{"t":71,"s":[0.664,23.653,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0.25,-29,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-0.812,-1.81],[2.392,-26.306],[0,0],[7.489,6.261],[0.502,7.431],[-1.962,6.161]],"o":[[0,0],[-2.018,22.199],[0,0],[0,0],[-0.906,-13.419],[7.43,-11.687]],"v":[[8.194,-34.262],[12.107,-1.808],[8.645,38.038],[-3.077,37.963],[-12.308,-2.83],[-10.063,-31.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-2.012,-0.81],[2.425,-29.683],[0,0],[7.489,5.282],[0.502,6.27],[-1.962,5.198]],"o":[[3.783,1.524],[-1.534,18.773],[0,0],[0,0],[-0.906,-11.322],[3.152,-8.404]],"v":[[3.8,-38.895],[11.821,-9.158],[9.03,25.442],[-4.661,27.434],[-12.308,-10.16],[-11.39,-32.688]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-6.8,-1.851],[2.714,-27.281],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.13,21.412],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[2.708,-52.315],[12.107,-14.89],[8.343,34.648],[-4.454,34.238],[-12.308,-15.876],[-11.047,-40.918]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-6.8,-1.851],[2.714,-27.281],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.13,21.412],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[2.708,-52.315],[12.107,-14.89],[7.891,36.472],[-6.477,35.973],[-12.721,-15.696],[-11.047,-40.918]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[-6.8,-1.851],[3.604,-27.19],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.828,21.331],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[3.354,-53.648],[13.759,-14.066],[8.376,35.71],[-8.127,36.791],[-12.308,-15.876],[-11.798,-42.958]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[-6.8,-1.851],[3.604,-27.19],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.828,21.331],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[3.354,-53.648],[13.759,-14.066],[8.376,35.71],[-8.127,36.791],[-12.308,-15.876],[-11.798,-42.958]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[-6.8,-1.851],[3.604,-27.19],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.828,21.331],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[3.354,-53.648],[13.759,-14.066],[8.376,35.71],[-8.127,36.791],[-12.308,-15.876],[-11.798,-42.958]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[-6.8,-1.851],[2.714,-27.281],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.13,21.412],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[2.708,-52.315],[12.107,-14.89],[7.891,36.472],[-6.477,35.973],[-12.721,-15.696],[-11.047,-40.918]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[-6.8,-1.851],[2.714,-27.281],[0,0],[7.591,1.849],[0.818,7.144],[-1.332,6.119]],"o":[[4.019,1.094],[-2.13,21.412],[0,0],[0,0],[-1.453,-12.696],[2.073,-9.524]],"v":[[2.708,-52.315],[12.107,-14.89],[8.343,34.648],[-4.454,34.238],[-12.308,-15.876],[-11.047,-40.918]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[-2.012,-0.81],[2.425,-29.683],[0,0],[7.489,5.282],[0.502,6.27],[-1.962,5.198]],"o":[[3.783,1.524],[-1.534,18.773],[0,0],[0,0],[-0.906,-11.322],[3.152,-8.404]],"v":[[3.8,-38.895],[11.821,-9.158],[9.03,25.442],[-4.661,27.434],[-12.308,-10.16],[-11.39,-32.688]],"c":true}]},{"t":71,"s":[{"i":[[-0.812,-1.81],[2.392,-26.306],[0,0],[7.489,6.261],[0.502,7.431],[-1.962,6.161]],"o":[[0,0],[-2.018,22.199],[0,0],[0,0],[-0.906,-13.419],[7.43,-11.687]],"v":[[8.194,-34.262],[12.107,-1.808],[8.645,38.038],[-3.077,37.963],[-12.308,-2.83],[-10.063,-31.012]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.87450986376,0.764705942191,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":9,"op":202,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"bong tay trai","parent":13,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":1,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":70,"s":[0]},{"t":71,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-5.871,8.692,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]},{"t":71,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,-1.02]],"o":[[0,0],[0,0],[0,0],[0,0],[0.9,3.79],[0,0],[-0.34,1.31],[0,0]],"v":[[-3.07,12.17],[-3.06,12.15],[3.07,-5.56],[-0.62,-12.17],[-0.77,-10.67],[1.31,-4.95],[-2.24,8.33],[-3.03,11.82]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.800000011921,0.68235296011,0.603921592236,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":9,"op":202,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"ban tay trai","parent":11,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":64,"s":[100]},{"t":65,"s":[0]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[-6.481]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[-6.481]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[-6.481]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[0]},{"t":71,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[2.382,36.499,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[2.955,24.893,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[1.525,33.558,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[1.525,33.558,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[1.525,33.558,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[2.955,24.893,0],"to":[0,0,0],"ti":[0,0,0]},{"t":71,"s":[2.382,36.499,0]}],"ix":2,"l":2},"a":{"a":0,"k":[2.756,-21.925,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-2.53,-0.86],[0,0],[0,0],[1.24,0.96],[2.64,-1.46],[0.72,-5.88],[-0.55,-2.33],[0,0],[0,0]],"o":[[0,0],[0,0],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[0.01,3.74],[0.9,3.79],[0,0],[-0.19,1.93]],"v":[[-6.011,25.012],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-7.651,-11.098],[-6.641,-1.978],[-4.561,3.742],[-8.941,20.862]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-4.109,1.935],[-0.897,3.09],[0,0],[1.24,0.96],[2.64,-1.46],[0.891,-6.049],[0.231,-2.459],[0,0],[0,0]],"o":[[0,0],[0.897,-3.09],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[-0.624,3.602],[-0.361,3.841],[0,0],[0.113,2.423]],"v":[[-4.4,21.972],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-10.254,-9.975],[-12.291,0.922],[-13.41,9.558],[-13.556,16.365]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[-3.555,0.851],[-1.147,3.959],[0.433,2.884],[1.279,0.718],[2.577,-1.284],[0.662,-5.086],[-0.307,-1.792],[-0.895,-1.845],[0,0]],"o":[[0,0],[1.422,-4.909],[-0.433,-2.884],[-2.462,-1.382],[-2.23,1.111],[-0.334,2.388],[0.493,2.883],[0.895,1.845],[3.985,1.005]],"v":[[3.79,6.964],[8.796,2.894],[11.184,-16.54],[6.961,-24.557],[-1.632,-23.872],[-15.607,-14.24],[-14.634,-6.393],[-12.237,3.851],[-9.518,6.346]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[-3.555,0.851],[-1.147,3.959],[0.433,2.884],[1.279,0.718],[2.577,-1.284],[0.662,-5.086],[-0.307,-1.792],[-0.895,-1.845],[0,0]],"o":[[0,0],[1.422,-4.909],[-0.433,-2.884],[-2.462,-1.382],[-2.23,1.111],[-0.334,2.388],[0.493,2.883],[0.895,1.845],[3.985,1.005]],"v":[[3.79,6.964],[8.796,2.894],[11.184,-16.54],[6.961,-24.557],[-1.632,-23.872],[-15.607,-14.24],[-14.634,-6.393],[-12.237,3.851],[-9.518,6.346]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[-3.555,0.851],[-1.147,3.959],[0.433,2.884],[1.279,0.718],[2.577,-1.284],[0.662,-5.086],[-0.307,-1.792],[-0.895,-1.845],[0,0]],"o":[[0,0],[1.422,-4.909],[-0.433,-2.884],[-2.462,-1.382],[-2.23,1.111],[-0.334,2.388],[0.493,2.883],[0.895,1.845],[3.985,1.005]],"v":[[3.79,6.964],[8.796,2.894],[11.184,-16.54],[6.961,-24.557],[-1.632,-23.872],[-15.607,-14.24],[-14.634,-6.393],[-12.237,3.851],[-9.518,6.346]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[-4.016,1.92],[-0.803,4.432],[0,0],[1.279,0.79],[2.577,-1.412],[0.614,-5.388],[0.362,-2.157],[0,0],[0,0]],"o":[[0,0],[0.929,-5.125],[0.282,-1.918],[-2.462,-1.52],[-2.23,1.222],[-0.795,2.757],[-0.517,3.083],[0,0],[3.733,2.63]],"v":[[3.639,13.45],[7.902,-0.884],[9.807,-19.684],[6.961,-24.418],[-1.632,-23.665],[-9.737,-13.313],[-11.466,-5.098],[-12.338,5.585],[-11.813,12.212]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[-4.109,1.935],[-0.897,3.09],[0,0],[1.24,0.96],[2.64,-1.46],[0.891,-6.049],[0.231,-2.459],[0,0],[0,0]],"o":[[0,0],[0.897,-3.09],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[-0.624,3.602],[-0.361,3.841],[0,0],[0.113,2.423]],"v":[[-4.4,21.972],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-10.254,-9.975],[-12.291,0.922],[-13.41,9.558],[-13.556,16.365]],"c":true}]},{"t":71,"s":[{"i":[[-2.53,-0.86],[0,0],[0,0],[1.24,0.96],[2.64,-1.46],[0.72,-5.88],[-0.55,-2.33],[0,0],[0,0]],"o":[[0,0],[0,0],[0.38,-2.15],[-2.38,-1.86],[-2.29,1.25],[0.01,3.74],[0.9,3.79],[0,0],[-0.19,1.93]],"v":[[-6.011,25.012],[5.809,3.262],[8.889,-19.338],[7.079,-23.908],[-1.541,-23.558],[-7.651,-11.098],[-6.641,-1.978],[-4.561,3.742],[-8.941,20.862]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.874509811401,0.764705896378,0.68235296011,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":9,"op":202,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"canh tay phai","parent":18,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":59,"s":[0]},{"t":60,"s":[100]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[-12.133]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[-67.527]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[-143.1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[-179.608]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[-179.608]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[-179.608]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[-143.1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[-67.527]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[-12.133]},{"t":71,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[-0.013,25.817,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[-0.013,25.817,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[0.197,21.072,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[0.197,21.072,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[0.197,21.072,0],"to":[0,0,0],"ti":[0,0,0]},{"t":57,"s":[-0.013,25.817,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0.401,-26.836,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0.812,-1.81],[-2.392,-26.306],[0,0],[-7.489,6.261],[-0.502,7.431],[1.962,6.161]],"o":[[0,0],[2.018,22.199],[0,0],[0,0],[0.906,-13.419],[-8.26,-12.062]],"v":[[-8.569,-34.262],[-12.107,-1.808],[-8.645,38.038],[3.077,37.963],[12.308,-2.83],[10.063,-31.012]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[1.233,-1.451],[-2.392,-24.128],[0,0],[-7.489,5.742],[-0.502,6.816],[1.962,5.651]],"o":[[-1.1,1.295],[2.018,20.361],[0,0],[0,0],[0.906,-12.309],[-5.583,-8.993]],"v":[[-7.694,-35.542],[-12.107,-5.775],[-8.645,30.773],[3.077,30.704],[12.308,-6.712],[10.063,-32.561]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[1.233,-1.01],[-0.614,-16.947],[0,0],[-7.489,3.996],[-0.959,4.672],[1.962,3.932]],"o":[[-1.1,0.901],[0.496,13.699],[0,0],[0,0],[1.654,-8.06],[-5.583,-6.257]],"v":[[-8.033,-35.946],[-12.834,-16.577],[-10.889,11.701],[4.184,13.338],[12.052,-15.579],[10.618,-33.479]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[1.233,-1.16],[0.025,-18.53],[0,0],[-7.489,4.591],[-0.959,5.368],[1.962,4.518]],"o":[[-1.1,1.035],[-0.021,15.751],[0,0],[0,0],[1.654,-9.261],[-5.545,-9.875]],"v":[[-5.974,-35.765],[-12.834,-12.777],[-10.889,19.715],[4.184,21.596],[12.052,-11.63],[10.618,-32.198]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[1.47,-0.834],[0.025,-16.707],[0,0],[-7.489,4.139],[-0.959,4.84],[1.962,4.074]],"o":[[-2.028,1.151],[-0.021,14.201],[0,0],[0,0],[1.654,-8.35],[-5.545,-8.903]],"v":[[-7.973,-28.584],[-13.573,-3.898],[-13.643,52.994],[1.43,54.691],[12.052,-4.697],[10.618,-23.241]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[1.47,-0.834],[0.025,-16.707],[0,0],[-7.489,4.139],[-0.959,4.84],[1.962,4.074]],"o":[[-2.028,1.151],[-0.021,14.201],[0,0],[0,0],[1.654,-8.35],[-5.545,-8.903]],"v":[[-7.973,-28.584],[-13.573,-3.898],[-13.643,52.994],[1.43,54.691],[12.052,-4.697],[10.618,-23.241]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[1.47,-0.834],[0.025,-16.707],[0,0],[-7.489,4.139],[-0.959,4.84],[1.962,4.074]],"o":[[-2.028,1.151],[-0.021,14.201],[0,0],[0,0],[1.654,-8.35],[-5.545,-8.903]],"v":[[-7.973,-28.584],[-13.573,-3.898],[-13.643,52.994],[1.43,54.691],[12.052,-4.697],[10.618,-23.241]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[1.233,-1.16],[0.025,-18.53],[0,0],[-7.489,4.591],[-0.959,5.368],[1.962,4.518]],"o":[[-1.1,1.035],[-0.021,15.751],[0,0],[0,0],[1.654,-9.261],[-5.545,-9.875]],"v":[[-5.974,-35.765],[-12.834,-12.777],[-10.889,19.715],[4.184,21.596],[12.052,-11.63],[10.618,-32.198]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[1.233,-1.01],[-0.614,-16.947],[0,0],[-7.489,3.996],[-0.959,4.672],[1.962,3.932]],"o":[[-1.1,0.901],[0.496,13.699],[0,0],[0,0],[1.654,-8.06],[-5.583,-6.257]],"v":[[-8.033,-35.946],[-12.834,-16.577],[-10.889,11.701],[4.184,13.338],[12.052,-15.579],[10.618,-33.479]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[1.233,-1.451],[-2.392,-24.128],[0,0],[-7.489,5.742],[-0.502,6.816],[1.962,5.651]],"o":[[-1.1,1.295],[2.018,20.361],[0,0],[0,0],[0.906,-12.309],[-5.583,-8.993]],"v":[[-7.694,-35.542],[-12.107,-5.775],[-8.645,30.773],[3.077,30.704],[12.308,-6.712],[10.063,-32.561]],"c":true}]},{"t":71,"s":[{"i":[[0.812,-1.81],[-2.392,-26.306],[0,0],[-7.489,6.261],[-0.502,7.431],[1.962,6.161]],"o":[[0,0],[2.018,22.199],[0,0],[0,0],[0.906,-13.419],[-8.26,-12.062]],"v":[[-8.569,-34.262],[-12.107,-1.808],[-8.645,38.038],[3.077,37.963],[12.308,-2.83],[10.063,-31.012]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.854901960784,0.709803921569,0.607843137255,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":205,"st":0,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"cau vai trai","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[6.319,18.447,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[430.108,430.108,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0.149,-12.839],[7.871,-1.866],[0.748,7.405],[-3.316,10.39],[-3.147,0.579]],"o":[[-0.162,13.923],[-14.237,-0.437],[-0.576,-5.708],[4.018,-1.498],[10.965,0]],"v":[[16.254,0.561],[3.024,24.181],[-13.289,1.109],[-15.047,-21.111],[-6.822,-23.806]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-1.216,-11.91],[7.871,-1.866],[0.748,7.405],[-3.316,10.39],[-2.601,0.973]],"o":[[1.414,13.852],[-14.237,-0.437],[-0.576,-5.708],[3.897,-1.714],[11.585,-0.916]],"v":[[15.36,0.52],[3.024,24.181],[-13.762,1.695],[-17.41,-18.942],[-8.733,-22.722]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-1.694,-11.324],[10.017,-3.009],[0.436,7.43],[-4.692,6.055],[-3.577,-0.226]],"o":[[1.48,9.889],[-11.714,1.945],[-0.335,-5.716],[2.582,-2.762],[10.562,3.246]],"v":[[7.5,2.02],[-4.169,23.986],[-21.633,-3.329],[-17.41,-18.942],[-7.007,-22.629]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-1.694,-11.324],[10.017,-3.009],[0.341,7.435],[-4.043,4.06],[-2.454,-0.291]],"o":[[1.48,9.889],[-12.38,-0.006],[-0.307,-6.702],[3.354,-2.599],[8.601,0.397]],"v":[[14.979,-1.163],[-3.667,23.112],[-25.245,-3.311],[-18.101,-18.392],[-5.039,-23.652]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[-1.841,-10.621],[10.017,-3.009],[3.613,6.507],[-6.477,7.922],[-2.973,-0.623]],"o":[[1.707,9.852],[-7.793,1.813],[-3.715,-6.691],[7.324,-8.242],[6.435,1.349]],"v":[[16.547,-1.08],[-3.819,24.981],[-27.065,13.271],[-20.309,-11.327],[-1.759,-19.753]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[-1.841,-10.621],[10.017,-3.009],[3.613,6.507],[-6.477,7.922],[-2.973,-0.623]],"o":[[1.707,9.852],[-7.793,1.813],[-3.715,-6.691],[7.324,-8.242],[6.435,1.349]],"v":[[16.547,-1.08],[-3.819,24.981],[-27.065,13.271],[-20.309,-11.327],[-1.759,-19.753]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[-1.841,-10.621],[10.017,-3.009],[3.613,6.507],[-6.477,7.922],[-2.973,-0.623]],"o":[[1.707,9.852],[-7.793,1.813],[-3.715,-6.691],[7.324,-8.242],[6.435,1.349]],"v":[[16.547,-1.08],[-3.819,24.981],[-27.065,13.271],[-20.309,-11.327],[-1.759,-19.753]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[-1.694,-11.324],[10.017,-3.009],[0.341,7.435],[-4.043,4.06],[-2.454,-0.291]],"o":[[1.48,9.889],[-12.38,-0.006],[-0.307,-6.702],[3.354,-2.599],[8.601,0.397]],"v":[[14.979,-1.163],[-3.667,23.112],[-25.245,-3.311],[-18.101,-18.392],[-5.039,-23.652]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[-1.694,-11.324],[10.017,-3.009],[0.436,7.43],[-4.692,6.055],[-3.577,-0.226]],"o":[[1.48,9.889],[-11.714,1.945],[-0.335,-5.716],[2.582,-2.762],[10.562,3.246]],"v":[[7.5,2.02],[-4.169,23.986],[-21.633,-3.329],[-17.41,-18.942],[-7.007,-22.629]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[-1.216,-11.91],[7.871,-1.866],[0.748,7.405],[-3.316,10.39],[-2.601,0.973]],"o":[[1.414,13.852],[-14.237,-0.437],[-0.576,-5.708],[3.897,-1.714],[11.585,-0.916]],"v":[[15.36,0.52],[3.024,24.181],[-13.762,1.695],[-17.41,-18.942],[-8.733,-22.722]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":71,"s":[{"i":[[0.149,-12.839],[7.871,-1.866],[0.748,7.405],[-3.316,10.39],[-2.601,0.973]],"o":[[-0.162,13.923],[-14.237,-0.437],[-0.576,-5.708],[4.018,-1.498],[10.965,0]],"v":[[16.254,0.561],[3.024,24.181],[-13.289,1.109],[-15.047,-21.111],[-6.822,-24.181]],"c":true}]},{"t":72,"s":[{"i":[[0.149,-12.839],[7.871,-1.866],[0.748,7.405],[-3.316,10.39],[-3.147,0.579]],"o":[[-0.162,13.923],[-14.237,-0.437],[-0.576,-5.708],[4.018,-1.498],[10.965,0]],"v":[[16.254,0.561],[3.024,24.181],[-13.289,1.109],[-15.047,-21.111],[-6.822,-23.806]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.87450986376,0.764705942191,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"bap tay trai","parent":15,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[-4.296]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[40.883]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[40.883]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[40.883]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[-4.296]},{"t":71,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[1.134,11.753,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[1.178,11.722,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[-11.08,13.449,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[-13.264,10.962,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[-13.264,10.962,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[-13.264,10.962,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[-11.08,13.449,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[1.178,11.722,0],"to":[0,0,0],"ti":[0,0,0]},{"t":71,"s":[1.134,11.753,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-0.25,-21.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0.449,-8.473],[1.988,-8.937],[0,0],[-1.935,23.694],[0,0]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[0,0],[0.888,-10.868],[4.118,2.955]],"v":[[14.816,-30.822],[15.26,2.442],[10.42,31.407],[-7.663,30.069],[-15.123,-15.519],[-14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[0,0],[0.449,-8.473],[2.644,-8.655],[0,0],[-1.935,23.694],[0,0]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[0,0],[0.888,-10.868],[4.118,2.955]],"v":[[14.816,-30.822],[15.26,2.442],[11.535,30.553],[-7.663,30.069],[-15.435,-15.491],[-14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[0,0],[0.449,-8.473],[1.464,-8.063],[1.469,0.758],[1.999,15.465],[-1.314,1.89]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[-1.57,-2.302],[-0.602,-5.198],[1.314,-1.89]],"v":[[14.345,-28.228],[16.014,-6.012],[14.476,11.236],[-7.715,13.873],[-15.32,-8.132],[-13.135,-30.689]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[0,0],[0.449,-8.473],[3.531,-9.675],[1.469,0.758],[0.28,9.651],[-1.314,1.89]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[-2.696,-4.98],[-0.139,-5.669],[1.314,-1.89]],"v":[[14.763,-28.68],[16.015,-6.21],[11.028,21.22],[-12.201,21.856],[-15.755,-3.925],[-14.105,-30.358]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[0,0],[-0.054,-8.485],[1.464,-8.063],[1.469,0.758],[0.435,9.432],[-1.314,1.89]],"o":[[0,0],[0.072,11.335],[-2.141,-0.461],[-2.975,-6.57],[-0.139,-5.669],[1.314,-1.89]],"v":[[14.952,-28.866],[17.599,-4.315],[11.981,31.418],[-11.468,23.994],[-16.087,-1.647],[-12.528,-30.365]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[0,0],[-0.054,-8.485],[1.464,-8.063],[1.469,0.758],[0.435,9.432],[-1.314,1.89]],"o":[[0,0],[0.072,11.335],[-2.141,-0.461],[-2.975,-6.57],[-0.139,-5.669],[1.314,-1.89]],"v":[[14.952,-28.866],[17.599,-4.315],[11.981,31.418],[-11.468,23.994],[-16.087,-1.647],[-12.528,-30.365]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0,0],[-0.054,-8.485],[1.464,-8.063],[1.469,0.758],[0.435,9.432],[-1.314,1.89]],"o":[[0,0],[0.072,11.335],[-2.141,-0.461],[-2.975,-6.57],[-0.139,-5.669],[1.314,-1.89]],"v":[[14.952,-28.866],[17.599,-4.315],[11.981,31.418],[-11.468,23.994],[-16.087,-1.647],[-12.528,-30.365]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[0,0],[0.449,-8.473],[3.531,-9.675],[1.469,0.758],[0.28,9.651],[-1.314,1.89]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[-2.696,-4.98],[-0.139,-5.669],[1.314,-1.89]],"v":[[14.763,-28.68],[16.015,-6.21],[11.028,21.22],[-12.201,21.856],[-15.755,-3.925],[-14.105,-30.358]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[0,0],[0.449,-8.473],[1.464,-8.063],[1.469,0.758],[1.999,15.465],[-1.314,1.89]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[-1.57,-2.302],[-0.602,-5.198],[1.314,-1.89]],"v":[[14.345,-28.228],[16.014,-6.012],[14.476,11.236],[-7.715,13.873],[-15.32,-8.132],[-13.135,-30.689]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[0.449,-8.473],[2.644,-8.655],[0,0],[-1.935,23.694],[0,0]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[0,0],[0.888,-10.868],[4.118,2.955]],"v":[[14.816,-30.822],[15.26,2.442],[11.535,30.553],[-7.663,30.069],[-15.435,-15.491],[-14.001,-31.407]],"c":true}]},{"t":71,"s":[{"i":[[0,0],[0.449,-8.473],[1.988,-8.937],[0,0],[-1.935,23.694],[0,0]],"o":[[0,0],[-0.462,8.725],[-2.141,-0.461],[0,0],[0.888,-10.868],[4.118,2.955]],"v":[[14.816,-30.822],[15.26,2.442],[10.42,31.407],[-7.663,30.069],[-15.123,-15.519],[-14.001,-31.407]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.87450986376,0.764705942191,0.682352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"cau vai phai","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-58.139,-84.336,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-0.149,-12.839],[-7.871,-1.866],[-0.748,7.405],[3.316,10.39],[2.601,0.973]],"o":[[0.162,13.923],[14.237,-0.437],[0.576,-5.708],[-4.018,-1.498],[-10.965,0]],"v":[[-16.254,0.561],[-3.024,24.181],[13.289,1.109],[15.047,-21.111],[6.822,-24.181]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-0.149,-12.839],[-7.871,-1.866],[-0.748,7.405],[0.935,10.772],[2.422,0.484]],"o":[[0.162,13.923],[15.234,-0.437],[0.576,-5.708],[-4.018,-1.498],[-10.189,1.492]],"v":[[-16.254,0.561],[-3.024,24.181],[14.848,2.714],[15.513,-22.252],[5.186,-24.575]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[0.001,-10.643],[-7.871,-1.866],[-0.748,7.405],[0.935,10.772],[2.422,0.484]],"o":[[-0.001,13.924],[15.234,-0.437],[0.576,-5.708],[-4.018,-1.498],[-8.928,4.088]],"v":[[-14.007,1.245],[-3.024,24.181],[14.848,2.714],[15.513,-22.252],[5.186,-24.575]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[0.001,-10.643],[-7.871,-1.866],[-0.748,7.405],[0.935,10.772],[2.422,0.484]],"o":[[-0.001,13.924],[15.234,-0.437],[0.576,-5.708],[-4.018,-1.498],[-12.28,-0.731]],"v":[[-16.69,-5.06],[0.191,22.83],[14.848,2.714],[15.513,-22.252],[5.186,-24.575]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[0.001,-10.643],[-7.871,-1.866],[-0.748,7.405],[0.935,10.772],[2.422,0.484]],"o":[[-0.001,13.924],[15.234,-0.437],[0.576,-5.708],[-4.018,-1.498],[-12.28,-0.731]],"v":[[-16.69,-5.06],[0.191,22.83],[14.848,2.714],[15.513,-22.252],[5.186,-24.575]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0.001,-10.643],[-7.871,-1.866],[-0.748,7.405],[0.935,10.772],[2.422,0.484]],"o":[[-0.001,13.924],[15.234,-0.437],[0.576,-5.708],[-4.018,-1.498],[-12.28,-0.731]],"v":[[-16.69,-5.06],[0.191,22.83],[14.848,2.714],[15.513,-22.252],[5.186,-24.575]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[0.001,-10.643],[-7.871,-1.866],[-0.748,7.405],[0.935,10.772],[2.422,0.484]],"o":[[-0.001,13.924],[15.234,-0.437],[0.576,-5.708],[-4.018,-1.498],[-8.928,4.088]],"v":[[-14.007,1.245],[-3.024,24.181],[14.848,2.714],[15.513,-22.252],[5.186,-24.575]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[-0.149,-12.839],[-7.871,-1.866],[-0.748,7.405],[0.935,10.772],[2.422,0.484]],"o":[[0.162,13.923],[15.234,-0.437],[0.576,-5.708],[-4.018,-1.498],[-10.189,1.492]],"v":[[-16.254,0.561],[-3.024,24.181],[14.848,2.714],[15.513,-22.252],[5.186,-24.575]],"c":true}]},{"t":71,"s":[{"i":[[-0.149,-12.839],[-7.871,-1.866],[-0.748,7.405],[3.316,10.39],[2.601,0.973]],"o":[[0.162,13.923],[14.237,-0.437],[0.576,-5.708],[-4.018,-1.498],[-10.965,0]],"v":[[-16.254,0.561],[-3.024,24.181],[13.289,1.109],[15.047,-21.111],[6.822,-24.181]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.854901960784,0.709803921569,0.607843137255,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"bap tay phai","parent":17,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[-4.301]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[-1.808]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[-10.793]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[-10.793]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[-10.793]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[-1.808]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[-4.301]},{"t":66,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[-1.563,13.133,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[-1.563,13.133,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[-0.688,13.069,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[1.575,12.993,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[1.575,12.993,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[1.575,12.993,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[-0.688,13.069,0],"to":[0,0,0],"ti":[0,0,0]},{"t":66,"s":[-1.563,13.133,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-0.125,-18.25,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.935,23.694],[0,0]],"o":[[0,0],[0.462,8.725],[2.141,-0.461],[0,0],[-0.888,-10.868],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-10.42,31.407],[7.663,30.069],[15.123,-15.519],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.935,23.694],[0,0]],"o":[[0,0],[0.462,8.725],[2.141,-0.461],[0,0],[-0.888,-10.868],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-10.42,31.407],[7.663,30.069],[15.123,-15.519],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.576,23.399],[0,0]],"o":[[0,0],[0.462,8.725],[5.535,5.907],[0,0],[-0.733,-10.88],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-11.274,30.84],[6.414,31.033],[17.747,-12.004],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.576,23.399],[0,0]],"o":[[0,0],[0.462,8.725],[5.535,5.907],[0,0],[-0.733,-10.88],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-11.274,30.84],[6.414,31.033],[17.747,-12.004],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[0,0],[-0.924,-8.434],[-6.052,-1.576],[0,0],[1.028,22.848],[0,0]],"o":[[0,0],[0.979,8.939],[7.374,0.395],[0,0],[-0.49,-10.894],[-4.118,2.955]],"v":[[-12.829,-30.484],[-15.035,0.2],[-3.946,20.779],[7.467,18.567],[15.108,-11.746],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[{"i":[[0,0],[-0.924,-8.434],[-6.052,-1.576],[0,0],[1.028,22.848],[0,0]],"o":[[0,0],[0.979,8.939],[7.374,0.395],[0,0],[-0.49,-10.894],[-4.118,2.955]],"v":[[-12.829,-30.484],[-15.035,0.2],[-3.946,20.779],[7.467,18.567],[15.108,-11.746],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0,0],[-0.924,-8.434],[-6.052,-1.576],[0,0],[1.028,22.848],[0,0]],"o":[[0,0],[0.979,8.939],[7.374,0.395],[0,0],[-0.49,-10.894],[-4.118,2.955]],"v":[[-12.829,-30.484],[-15.035,0.2],[-3.946,20.779],[7.467,18.567],[15.108,-11.746],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.576,23.399],[0,0]],"o":[[0,0],[0.462,8.725],[5.535,5.907],[0,0],[-0.733,-10.88],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-11.274,30.84],[6.414,31.033],[17.747,-12.004],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.576,23.399],[0,0]],"o":[[0,0],[0.462,8.725],[5.535,5.907],[0,0],[-0.733,-10.88],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-11.274,30.84],[6.414,31.033],[17.747,-12.004],[14.001,-31.407]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.935,23.694],[0,0]],"o":[[0,0],[0.462,8.725],[2.141,-0.461],[0,0],[-0.888,-10.868],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-10.42,31.407],[7.663,30.069],[15.123,-15.519],[14.001,-31.407]],"c":true}]},{"t":71,"s":[{"i":[[0,0],[-0.449,-8.473],[-1.988,-8.937],[0,0],[1.935,23.694],[0,0]],"o":[[0,0],[0.462,8.725],[2.141,-0.461],[0,0],[-0.888,-10.868],[-4.118,2.955]],"v":[[-14.816,-30.822],[-15.26,2.442],[-10.42,31.407],[7.663,30.069],[15.123,-15.519],[14.001,-31.407]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.854901960784,0.709803921569,0.607843137255,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.25,0.011],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":202,"st":0,"bm":0}]},{"id":"comp_3","layers":[{"ddd":0,"ind":1,"ty":2,"nm":"Chân/SHOULDER STRETCH.ai","cl":"ai","refId":"image_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[50,24.5,0],"ix":2,"l":2},"a":{"a":0,"k":[50,24.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":200,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"1","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[360,325,0],"ix":2,"l":2},"a":{"a":0,"k":[360,360,0],"ix":1,"l":2},"s":{"a":0,"k":[116.111,116.111,100],"ix":6,"l":2}},"ao":0,"w":720,"h":720,"ip":0,"op":171,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":1,"nm":"White Solid 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[360,360,0],"ix":2,"l":2},"a":{"a":0,"k":[360,360,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"sw":720,"sh":720,"sc":"#f5f5f5","ip":0,"op":171,"st":0,"bm":0}],"markers":[{"tm":5,"cm":"1","dr":0},{"tm":8,"cm":"2","dr":0},{"tm":13,"cm":"3","dr":0},{"tm":21,"cm":"4","dr":0},{"tm":35,"cm":"5","dr":0}]} | |||
There was a problem hiding this comment.
🚀 Performance & Scalability | 🔵 Trivial | ⚖️ Poor tradeoff
Embedded raster image increases animation payload size.
This Lottie file embeds a base64-encoded PNG directly in its assets array rather than using pure vector shapes (unlike sibling animation files such as Ex22/Ex23/Ex29 which are vector-only). Consider re-exporting this animation without the baked raster asset, or referencing an externally optimized image, to reduce bundle size and parse cost.
As per path instructions, "Image optimization (appropriate size and format)" applies to assets/**/* files.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@assets/animations/Ex20.json` at line 1, The animation embeds a large base64
PNG in the assets entry image_0, unnecessarily increasing the Lottie payload.
Re-export the SHOULDER STRETCH animation without the raster asset where
possible, preserving the existing animation, or replace image_0 with an
externally referenced, appropriately sized and optimized image while updating
comp_3’s refId accordingly.
Source: Path instructions
| @@ -0,0 +1 @@ | |||
| {"v":"5.8.1","fr":30,"ip":0,"op":166,"w":985,"h":885,"nm":"render","ddd":0,"assets":[{"id":"comp_0","nm":"34","fr":30,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"vien co 2","parent":20,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-103.195,"ix":10},"p":{"a":0,"k":[-1.146,13.494,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"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":41,"s":[{"i":[[-3.33,14.747],[1.342,1.863],[0,0],[22.483,-33.616]],"o":[[2.959,-13.102],[-0.32,-0.444],[1.655,3.012],[7.361,-9.639]],"v":[[8.312,-3.72],[6.713,-24.697],[4.585,-27.175],[-9.525,27.175]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":61,"s":[{"i":[[-3.33,14.747],[1.342,1.863],[0,0],[22.483,-33.616]],"o":[[2.959,-13.102],[-0.32,-0.444],[1.655,3.012],[5.957,-6.84]],"v":[[7.127,-4.358],[7.039,-25.352],[4.809,-28.03],[-10.856,26.708]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":71,"s":[{"i":[[-3.704,14.553],[1.342,1.863],[0,0],[20.818,-33.198]],"o":[[3.314,-13.01],[-0.32,-0.444],[1.655,3.012],[5.964,-6.511]],"v":[[6.915,-4.206],[7.508,-25.005],[5.25,-27.574],[-10.579,27.996]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[-3.986,14.408],[1.342,1.863],[0,0],[22.248,-32.576]],"o":[[3.583,-12.941],[-0.32,-0.444],[1.655,3.012],[5.968,-6.262]],"v":[[6.756,-4.091],[8.106,-24.69],[5.584,-27.229],[-12.912,29.014]],"c":true}]},{"t":80,"s":[{"i":[[-4.157,14.319],[1.342,1.863],[0,0],[23.83,-32.006]],"o":[[3.745,-12.899],[-0.32,-0.444],[1.655,3.012],[5.971,-6.112]],"v":[[6.659,-4.022],[8.076,-24.586],[5.786,-27.021],[-13.26,27.604]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"tay R 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-70.469,"ix":10},"p":{"a":0,"k":[702.821,988.782,0],"ix":2,"l":2},"a":{"a":0,"k":[500.557,590.902,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.483,-2.712],[-0.056,-6.858],[0.873,2.074],[1.186,3.485],[0.113,5.481],[-7.221,3.613]],"o":[[0.403,0.737],[0.012,1.431],[-0.78,-1.853],[-1.125,-3.304],[-0.087,-4.208],[6.257,-3.131]],"v":[[3.296,-15.026],[10.746,13.358],[-10.322,20.421],[-13.497,13.835],[-18.552,-5.758],[-10.909,-20.081]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[508.08,604.99],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.034,-2.029],[0,0],[-1.421,0.582],[0,0],[0.367,1.435],[0,0],[2.282,-1.074],[0,0]],"o":[[0,0],[0.696,1.367],[0,0],[1.37,-0.561],[0,0],[-0.625,-2.443],[0,0],[-2.063,0.971]],"v":[[-3.412,-3.265],[0.967,5.334],[4.708,6.721],[4.708,6.721],[6.46,3.236],[4.066,-6.12],[-1.529,-8.755],[-1.529,-8.755]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[499.915,626.41],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.197,-1.647],[-0.196,-4.694],[1.791,3.214],[0.553,2.367],[-1.64,0.001]],"o":[[0,0],[0.11,2.632],[-1.508,-2.707],[-0.553,-2.367],[1.408,0]],"v":[[4.652,-6.2],[5.477,4.321],[1.647,4.374],[-1.326,-5.5],[1.766,-9.126]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[501.842,636.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},{"ty":"tr","p":{"a":0,"k":[501.842,636.388],"ix":2},"a":{"a":0,"k":[501.842,636.388],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.97,-2.298],[0,0],[-1.598,0.524],[0,0],[0.289,1.596],[0,0],[2.577,-0.995],[0,0]],"o":[[0,0],[0.653,1.548],[0,0],[1.541,-0.506],[0,0],[-0.492,-2.718],[0,0],[-2.33,0.899]],"v":[[-4.205,-2.064],[-0.095,7.674],[3.884,9.483],[3.884,9.483],[6.071,5.813],[4.189,-4.597],[-1.718,-7.914],[-1.718,-7.914]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[507.419,628.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 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.425,-1.767],[-1.872,-5.297],[0.081,3.35],[0.333,2.642],[1.141,-0.225]],"o":[[0,0],[0.961,2.721],[-0.108,-4.463],[-0.333,-2.642],[-2.037,0.402]],"v":[[-2.876,-3.844],[0.155,7.432],[4.527,6.507],[3.615,-4.693],[-0.019,-7.796]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[509.917,639.299],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[509.917,639.299],"ix":2},"a":{"a":0,"k":[509.917,639.299],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-0.736,-2.456],[0,0],[-1.69,0.358],[0,0],[0.117,1.663],[0,0],[2.744,-0.73],[0,0]],"o":[[0,0],[0.495,1.654],[0,0],[1.631,-0.345],[0,0],[-0.2,-2.832],[0,0],[-2.48,0.66]],"v":[[-5.603,-1.757],[-2.486,8.648],[1.378,10.939],[1.378,10.939],[4.02,7.432],[3.254,-3.412],[-2.411,-7.456],[-2.411,-7.456]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[514.588,626.138],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.069,-1.866],[0.009,-3.685],[1.725,4.026],[0.402,2.707],[-1.839,-0.151]],"o":[[0,0],[-0.007,2.965],[-2.017,-4.706],[-0.402,-2.707],[1.58,0.13]],"v":[[2.755,-5.21],[3.24,9.368],[-1.431,9.402],[-4.015,-4.977],[-0.212,-8.759]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[515.874,638.904],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[515.874,638.904],"ix":2},"a":{"a":0,"k":[515.874,638.904],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.91,-2.396],[0,0],[-1.66,0.479],[0,0],[0.237,1.65],[0,0],[2.684,-0.925],[0,0]],"o":[[0,0],[0.613,1.614],[0,0],[1.602,-0.462],[0,0],[-0.403,-2.81],[0,0],[-2.426,0.836]],"v":[[-11.15,0.915],[-7.292,11.068],[-3.274,13.075],[-3.274,13.075],[-0.891,9.388],[-2.334,-3.332],[-8.376,-5],[-8.376,-5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[521.105,621.751],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.187,-1.858],[-0.224,-3.678],[1.809,4.425],[0,0],[-2.296,0.027]],"o":[[0,0],[0.181,2.96],[-2.105,-5.148],[-0.454,-2.034],[1.585,-0.019]],"v":[[-2.351,-1.88],[-1.604,10.128],[-6.164,10.016],[-9.093,-1.218],[-5.537,-5.234]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[522.663,633.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 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[522.663,633.398],"ix":2},"a":{"a":0,"k":[522.663,633.398],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.371,4.367],[-1.389,-2.26],[-0.477,-8.059],[-0.47,-7.291],[1.41,1.177],[0.925,2.438],[0.95,0.426]],"o":[[-0.676,-7.953],[4.514,7.343],[0.245,4.138],[0.23,3.565],[-2.64,-2.204],[-1.154,-3.041],[-0.95,-0.426]],"v":[[-11.308,-4.839],[-3.231,-15.643],[2.959,1.045],[4.093,14.429],[0.278,15.754],[-3.25,8.704],[-6.104,2.449]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[515.874,617.947],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"canh tay R 2","parent":4,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[-18.956]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[22.668]},{"t":80,"s":[99.752]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.592,"y":0.58},"o":{"x":0.164,"y":0},"t":41,"s":[-15.533,-40.794,0],"to":[-0.32,-0.301,0],"ti":[0.795,0.749,0]},{"i":{"x":0.83,"y":1},"o":{"x":0.424,"y":0.607},"t":52,"s":[-18.007,-42.614,0],"to":[-0.656,-0.618,0],"ti":[0.264,0.248,0]},{"i":{"x":0.83,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[-19.033,-44.092,0],"to":[-0.583,-0.55,0],"ti":[0,0,0]},{"t":80,"s":[-20.839,-46.655,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-1.789,72.993,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[5.157,0.343],[-6.176,-42.671],[-2.37,-19.857],[-2.485,-15.5],[-8.034,0.221],[-2.311,14.912],[-2.115,21.183],[0.012,23.928],[8.643,5.2]],"o":[[-25.595,-1.704],[0.901,6.226],[2.825,23.672],[2.369,14.774],[10.359,-0.284],[2.328,-15.027],[1.93,-19.325],[-0.005,-10.974],[-5.947,-3.578]],"v":[[1.915,-76.389],[-29.098,-19.623],[-26.641,12.564],[-18.953,69.513],[-0.191,86.799],[16.915,67.776],[24.193,-2.573],[35.59,-45.829],[19.566,-70.404]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[6.119,-0.464],[-0.903,-16.719],[-1.158,-10.86],[-3.492,-13.815],[-8.034,0.221],[-2.311,14.912],[-0.679,9.032],[-1.799,20.951],[5.635,16.501]],"o":[[-30.003,2.274],[0.393,7.279],[1.244,11.667],[3.667,14.506],[10.359,-0.284],[2.328,-15.027],[0.428,-5.69],[0.889,-10.355],[-3.265,-9.56]],"v":[[3.817,-46.871],[-26.688,-1.232],[-25.385,35.311],[-20.04,68.472],[-0.191,86.799],[17.444,67.809],[21.368,31.79],[23.974,3.312],[27.896,-29.971]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":71,"s":[{"i":[[6.116,-0.244],[-0.903,-16.719],[-1.158,-10.86],[-3.492,-13.815],[-8.034,0.221],[-2.238,12.575],[-0.679,9.032],[-1.069,20.075],[5.12,13.535]],"o":[[-30.973,1.206],[0.393,7.279],[1.244,11.667],[3.667,14.506],[10.359,-0.284],[2.728,-14.955],[0.428,-5.69],[0.538,-10.374],[-3.795,-9.347]],"v":[[3.535,-49.627],[-26.476,-1.601],[-25.385,35.311],[-20.04,68.472],[-0.549,86.796],[17.444,67.809],[21.368,31.79],[24.251,2.467],[25.992,-33.61]],"c":true}]},{"t":80,"s":[{"i":[[6.113,-0.051],[-0.903,-16.719],[-1.158,-10.86],[-3.492,-13.815],[-8.034,0.221],[-2.174,10.515],[-0.679,9.032],[-0.425,19.303],[9.564,20.557]],"o":[[-31.828,0.266],[0.393,7.279],[1.244,11.667],[3.667,14.506],[10.359,-0.284],[3.079,-14.892],[0.428,-5.69],[0.229,-10.391],[-4.261,-9.159]],"v":[[3.287,-52.055],[-26.289,-1.926],[-25.385,35.311],[-20.04,68.472],[-0.864,86.794],[17.444,67.809],[21.368,31.79],[24.495,1.721],[24.313,-36.818]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"canh tay R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"cang tay R 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[14.651]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[18.807]},{"t":80,"s":[11.675]}],"ix":10},"p":{"a":0,"k":[704.465,987.77,0],"ix":2,"l":2},"a":{"a":0,"k":[23.568,53.253,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.355,4.444],[-4.105,-11.443],[-8.668,-41.191],[-4.432,-11.138],[4.312,-2.38],[0,0],[3.265,4.242],[13.357,23.003],[2.413,7.614]],"o":[[11.798,-4.617],[5.401,15.057],[2.276,10.817],[1.821,4.577],[0,0],[-4.686,2.587],[-7.505,-9.748],[-10.921,-18.809],[-2.898,-9.145]],"v":[[-23.253,-62.124],[0.731,-50.087],[19.408,8.397],[34.232,49.13],[29.962,61.664],[29.721,61.727],[15.648,58.227],[-15.098,8.421],[-33.203,-38.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"cang tay R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"nach R 2 mask","parent":18,"td":1,"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":61,"s":[-10.199]},{"t":80,"s":[2.172]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.567},"o":{"x":0.333,"y":0},"t":61,"s":[15.852,-32.912,0],"to":[-2.201,-0.021,0],"ti":[5.489,0.053,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.596},"t":71,"s":[0.802,-32.188,0],"to":[-4.837,-0.047,0],"ti":[1.939,0.019,0]},{"t":80,"s":[-8.988,-33.152,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":61,"s":[{"i":[[22.732,0],[0.966,-0.656],[-1.941,-17.002],[-20.142,-1.683],[0,28.489]],"o":[[-9.333,0],[-14.371,9.514],[2.598,22.754],[12.454,0],[0,-28.489]],"v":[[2.969,-51.584],[-12.728,-47.203],[-28.172,-1.249],[4.858,51.2],[30.716,5.824]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":71,"s":[{"i":[[24.345,2.926],[0.966,-0.656],[-1.941,-17.002],[-19.537,-1.379],[-0.006,27.514]],"o":[[-9.267,-1.114],[-14.208,8.8],[2.598,22.754],[12.454,0],[0.007,-28.489]],"v":[[2.822,-51.031],[-12.707,-46.978],[-27.904,-1.393],[4.454,50.868],[30.056,5.743]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":76,"s":[{"i":[[21.967,1.009],[0.966,-0.656],[-1.941,-17.002],[-19.08,-1.149],[-0.066,27.765]],"o":[[-9.308,-0.377],[-14.085,8.262],[2.598,22.754],[13.376,-0.144],[0.071,-29.797]],"v":[[2.711,-50.614],[-12.691,-46.808],[-27.701,-1.502],[4.313,51.041],[30.348,5.831]],"c":true}]},{"t":80,"s":[{"i":[[20.528,-0.15],[0.966,-0.656],[-1.941,-17.002],[-18.804,-1.01],[0.259,27.916]],"o":[[-9.333,0.068],[-14.011,7.936],[2.598,22.754],[12.454,0],[-0.265,-28.488]],"v":[[2.644,-50.361],[-12.681,-46.705],[-27.579,-1.568],[3.963,50.465],[29.698,5.658]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"nach R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"bong nach R 2","parent":7,"tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[4.35,24.745,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[-3.821,19.126],[0,0],[0,0],[9.074,-16.934],[-1.056,0.16]],"o":[[2.368,-12.215],[0,0],[0,0],[0.274,2.965],[9.884,-1.497]],"v":[[28.184,-3.062],[27.222,-28.319],[12.179,-23.506],[-4.2,25.303],[2.538,28.298]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[-3.821,19.126],[0,0],[0,0],[3.304,-28.435],[-2.101,1.33]],"o":[[2.368,-12.215],[0,0],[0,0],[4.934,-0.215],[6.552,-4.146]],"v":[[29.19,-2.835],[24.07,-63.133],[-9.461,-29.525],[2.632,28.902],[12.716,24.945]],"c":true}]},{"t":80,"s":[{"i":[[-3.821,19.126],[0,0],[0,0],[3.304,-28.435],[-2.101,1.33]],"o":[[2.368,-12.215],[0,0],[0,0],[4.934,-0.215],[6.552,-4.146]],"v":[[28.184,-3.062],[27.941,-62.75],[-10.169,-66.745],[-5.797,30.087],[12.716,24.945]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"bong nach R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"nach R 2","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.592],"y":[4.61]},"o":{"x":[0.21],"y":[0]},"t":41,"s":[98.927]},{"i":{"x":[0.846],"y":[1]},"o":{"x":[0.405],"y":[0.273]},"t":49,"s":[101.556]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[49.802]},{"t":80,"s":[-16.1]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.57,"y":0.165},"o":{"x":0.175,"y":0},"t":41,"s":[-14.791,-54.636,0],"to":[0.455,2.941,0],"ti":[0.455,-7.868,0]},{"i":{"x":0.839,"y":1},"o":{"x":0.397,"y":0.369},"t":49,"s":[-14.284,-42.956,0],"to":[-0.672,11.617,0],"ti":[-3.655,-6.748,0]},{"i":{"x":0.839,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[-17.559,-6.809,0],"to":[3.655,6.748,0],"ti":[0,0,0]},{"t":80,"s":[7.644,-2.466,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[22.732,0],[0.966,-0.656],[-1.941,-17.002],[-20.142,-1.683],[0,28.489]],"o":[[-9.333,0],[-14.371,9.514],[2.598,22.754],[12.454,0],[0,-28.489]],"v":[[2.969,-51.584],[-12.728,-47.203],[-28.172,-1.249],[4.858,51.2],[30.716,5.824]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[22.732,0],[0.966,-0.656],[-1.941,-17.002],[-20.142,-1.683],[0,28.489]],"o":[[-9.333,0],[-14.371,9.514],[2.598,22.754],[12.454,0],[0,-28.489]],"v":[[2.969,-51.584],[-12.728,-47.203],[-28.172,-1.249],[4.858,51.2],[30.716,5.824]],"c":true}]},{"t":80,"s":[{"i":[[18.74,0.088],[0.966,-0.656],[-1.941,-17.002],[-20.142,-1.683],[-0.014,26.332]],"o":[[-9.333,-0.044],[-14.371,9.514],[2.598,22.754],[12.454,0],[0.015,-28.489]],"v":[[2.644,-50.361],[-12.681,-46.705],[-28.172,-1.249],[3.896,50.976],[29.256,5.646]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"nach R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"vien nach R 2","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[2.969,0.348,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":61,"s":[{"i":[[-4.118,-27.949],[-20.244,-1.416],[-0.6,29.454],[27.946,-1.763]],"o":[[4.303,29.2],[16.924,1.183],[0.625,-30.672],[-25.834,1.63]],"v":[[-35.078,0.752],[2.179,54.457],[31.36,5.704],[-2.67,-54.418]],"c":true}]},{"t":80,"s":[{"i":[[-2.753,-24.472],[-21.171,0.664],[-0.998,27.365],[24.106,-1.507]],"o":[[3.299,29.33],[16.957,-0.532],[1.119,-30.658],[-25.835,1.615]],"v":[[-34.965,0.616],[1.632,55.324],[29.532,5.624],[-2.832,-53.461]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"vien nach R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"dui R 2","parent":21,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.57],"y":[0.559]},"o":{"x":[0.175],"y":[0]},"t":41,"s":[-144.769]},{"i":{"x":[0.839],"y":[1]},"o":{"x":[0.397],"y":[0.527]},"t":49,"s":[-94.257]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[-35.838]},{"t":80,"s":[-11.878]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.583,"y":0.549},"o":{"x":0.167,"y":0},"t":41,"s":[31.492,-0.142,0],"to":[-0.067,0.46,0],"ti":[1.363,-7.866,0]},{"i":{"x":0.833,"y":0.888},"o":{"x":0.417,"y":0.495},"t":51,"s":[28.211,17.868,0],"to":[-1.556,8.982,0],"ti":[-1.104,-0.787,0]},{"i":{"x":0.577,"y":0.695},"o":{"x":0.183,"y":0.338},"t":61,"s":[26.255,34.279,0],"to":[1.104,0.787,0],"ti":[-1.767,1.652,0]},{"i":{"x":0.703,"y":1},"o":{"x":0.343,"y":0.347},"t":71,"s":[31.7,32.473,0],"to":[0.957,-0.894,0],"ti":[0,0,0]},{"t":80,"s":[33.125,28.894,0]}],"ix":2,"l":2},"a":{"a":0,"k":[482.637,609.849,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[-13.724,1.733],[-0.265,-24.139],[8.97,-44.326],[0.84,15.04],[-2.443,32.259]],"o":[[29.251,-3.694],[0.353,32.17],[-5.962,17.512],[-2.258,-40.426],[1.628,-21.499]],"v":[[-12.024,-83.784],[33.642,-36.404],[22.987,86.49],[-41.199,57.905],[-46.274,-50.183]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":52,"s":[{"i":[[-13.721,0.496],[-0.884,-24.118],[9.133,-42.599],[0.509,15.052],[-3.006,32.786]],"o":[[29.371,-1.052],[1.264,33.645],[-5.854,18.238],[-1.367,-40.369],[1.964,-21.469]],"v":[[-12.291,-84.281],[33.219,-36.256],[23.158,85.689],[-41.529,72.149],[-45.57,-49.989]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[-13.718,-0.477],[-1.371,-24.101],[9.261,-41.242],[0.249,15.062],[-3.448,33.201]],"o":[[29.465,1.025],[1.98,34.803],[-5.77,18.809],[-0.666,-40.325],[2.228,-21.446]],"v":[[-12.5,-84.672],[32.887,-36.14],[23.293,85.059],[-41.788,83.344],[-45.016,-49.837]],"c":true}]},{"t":80,"s":[{"i":[[-13.721,0.381],[-1.371,-24.101],[9.261,-41.241],[0.249,15.062],[-3.448,33.201]],"o":[[33.992,-0.945],[1.98,34.803],[-4.52,15.177],[-0.666,-40.325],[2.228,-21.446]],"v":[[-13.261,-79.579],[31.988,-35.685],[17.753,88.156],[-42.901,85.54],[-44.887,-47.453]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.164705887437,0.168627455831,0.164705887437,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[489.39,659.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 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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[0,0],[4.296,-12.33],[13.081,1.544],[2.153,15.984],[0,0]],"o":[[-6.227,37.126],[-4.062,11.657],[-6.213,-0.733],[-2.921,-21.683],[0,0]],"v":[[26.166,-29.098],[13.349,25.621],[-10.01,42.877],[-28.922,22.158],[-35.594,-41.751]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":52,"s":[{"i":[[0,0],[4.724,-10.698],[11.376,2.593],[0.41,16.048],[0,0]],"o":[[-9.279,36.377],[-4.94,11.188],[-6.083,-1.387],[-0.577,-21.412],[0,0]],"v":[[20.578,-19.08],[4.559,33.357],[-21.508,49.146],[-36.567,25.938],[-38.715,-34.087]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[0,0],[6.082,-11.554],[12.706,3.472],[-0.96,16.099],[0,0]],"o":[[-11.678,35.788],[-5.75,10.923],[-6.035,-1.649],[1.264,-21.199],[0,0]],"v":[[16.187,-11.207],[-3.326,41.516],[-29.269,55.08],[-42.85,31.582],[-41.168,-28.064]],"c":true}]},{"t":80,"s":[{"i":[[0,0],[6.082,-11.554],[12.706,3.472],[-0.274,16.126],[0,0]],"o":[[-7.675,25.005],[-5.75,10.923],[-6.035,-1.649],[0.367,-21.637],[0,0]],"v":[[13.517,-12.845],[-2.491,30.044],[-28.335,39.232],[-42.605,16.951],[-41.168,-28.064]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[489.488,746.852],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"chan R2 mask","parent":9,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[113.219]},{"t":61,"s":[12.091]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[481.18,771.022,0],"to":[2.201,-1.255,0],"ti":[0,0,0]},{"t":61,"s":[469.277,776.843,0]}],"ix":2,"l":2},"a":{"a":0,"k":[6.097,-80.256,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[3.038,-18.678],[1.661,-24.032],[-0.173,-12.029],[6.415,-0.689],[1.68,9.617],[4.121,18.754],[-2.706,32.427],[-9.607,-0.377]],"o":[[-1.97,12.109],[-2.602,37.651],[0.146,10.204],[-6.064,0.651],[-2.6,-14.882],[-12.279,-55.881],[1.268,-15.2],[10.888,0.427]],"v":[[25.693,-74.83],[24.605,-14.737],[20.483,85.243],[8.75,100.743],[-5.733,89.988],[-21.471,14.568],[-15.557,-78.899],[4.956,-100.848]],"c":true}]},{"t":61,"s":[{"i":[[3.038,-18.678],[1.661,-24.032],[-0.173,-12.029],[6.415,-0.689],[1.68,9.617],[4.121,18.754],[-2.706,32.427],[-9.607,-0.377]],"o":[[-1.97,12.109],[-2.602,37.651],[0.146,10.204],[-6.064,0.651],[-2.6,-14.882],[-12.279,-55.881],[1.268,-15.2],[10.888,0.427]],"v":[[25.693,-74.83],[24.605,-14.737],[20.483,85.243],[8.75,100.743],[-5.733,89.988],[-21.471,14.568],[-15.557,-78.899],[4.956,-100.848]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"chan R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"bong chan R 2","parent":9,"tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":54.073,"ix":10},"p":{"a":0,"k":[455.247,730.551,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.454,-9.896],[-9.511,-1.875],[-6.714,3.802],[-9.071,7.959]],"o":[[15.829,-8.521],[-5.585,-3.694],[7.565,-4.284],[-22.659,9.288]],"v":[[-26.464,9.923],[13.002,6.527],[11.014,-3.69],[26.714,-16.173]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882352948189,0.568627476692,0.541176497936,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"giay R 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":40.207,"ix":10},"p":{"a":0,"k":[238.683,1004.961,0],"ix":2,"l":2},"a":{"a":0,"k":[545.738,976.526,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.714,7.826],[14.645,3.627],[2.887,3.141],[3.746,3.108],[0,0],[-3.272,-4.392],[-3.207,-2.267],[-2.516,-2.616],[-13.038,-2.083]],"o":[[-2.027,6.25],[-13.862,-3.433],[-2.029,-2.207],[-7.102,-5.894],[0,0],[1.65,2.215],[3.15,2.227],[5.199,5.404],[12.923,2.064]],"v":[[44.649,-10.527],[15.145,8.394],[-16.292,-18.573],[-30.035,-30.241],[-36.232,-42.074],[-37.046,-33.192],[-27.571,-24.206],[-17.988,-15.777],[15.449,11.573]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149019613862,0.149019613862,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[509.954,974.017],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.484,4.168],[-0.932,-3.029],[-10.771,-11.29],[-12.226,-4.017],[-6.334,7.088],[0.069,0.54],[1.158,-1.062],[1.891,-2.962],[7.19,0.758],[6.856,7.827],[8.229,7.33]],"o":[[-2.928,1.297],[1.626,5.283],[6.529,7.619],[8.437,2.772],[1.271,-1.423],[0.437,-1.735],[-2.858,2.622],[-1.657,2.595],[-7.092,-0.748],[-7.886,-9.002],[-10.366,-9.233]],"v":[[-31.584,-43.798],[-36.731,-33.674],[-11.913,-8.31],[16.146,13.699],[41.499,0.603],[44.752,-6.985],[40.751,-11.068],[37.439,-1.46],[19.698,9.738],[-5.939,-9.412],[-24.112,-27.114]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.886274516582,0.411764711142,0.152941182256,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[509.9,970.355],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[-0.725,-1.546],[-0.587,-3.801],[-6.333,-1.794],[-2.253,-8.914],[17.253,-2.305],[6.66,6.004],[-2.849,4.32],[-0.55,1.476],[-1.822,-0.213],[-9.035,-1.433],[-2.799,0.525]],"o":[[1.337,2.454],[0.966,6.259],[6.721,1.904],[-1.011,4.656],[-8.496,1.135],[-4.807,-4.334],[4.026,-9.493],[1.78,-4.779],[-4.385,4.975],[2.271,0.36],[5.545,-1.04]],"v":[[15.588,-33.716],[14.596,-22.192],[27.245,1.389],[42.767,7.979],[16.684,28.038],[-30.145,-14.11],[-32.436,-26.427],[-20.275,-39.192],[-13.36,-45.699],[-1.173,-31.916],[7.238,-35.704]],"c":true}]},{"t":80,"s":[{"i":[[-0.725,-1.546],[-0.587,-3.801],[-6.333,-1.794],[-2.253,-8.914],[17.253,-2.305],[6.66,6.004],[-2.849,4.32],[-0.55,1.476],[-1.822,-0.213],[-9.035,-1.433],[-2.799,0.525]],"o":[[1.337,2.454],[0.966,6.259],[6.721,1.904],[-1.011,4.656],[-8.496,1.135],[-4.807,-4.334],[4.026,-9.493],[1.78,-4.779],[-4.385,4.975],[2.271,0.36],[5.545,-1.04]],"v":[[18.265,-30.742],[15.432,-21.59],[27.245,1.389],[42.767,7.979],[16.684,28.038],[-30.145,-14.11],[-32.436,-26.427],[-19.192,-39.943],[-12.773,-45.295],[0.661,-30.521],[9.299,-31.717]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.227450981736,0.235294118524,0.23137255013,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[510.035,954.294],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":61,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"chan R3","parent":12,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[29.835]},{"t":80,"s":[50.944]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.697,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[505.054,920.975,0],"to":[0,0,0],"ti":[0,0,0]},{"t":80,"s":[499.113,925.178,0]}],"ix":2,"l":2},"a":{"a":0,"k":[6.707,90.188,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[3.038,-18.678],[1.661,-24.032],[-0.173,-12.029],[6.415,-0.689],[1.68,9.617],[4.121,18.754],[-2.706,32.427],[-9.607,-0.377]],"o":[[-1.97,12.109],[-2.602,37.651],[0.146,10.204],[-6.064,0.651],[-2.6,-14.882],[-12.279,-55.881],[1.268,-15.2],[10.888,0.427]],"v":[[25.693,-74.83],[24.605,-14.737],[20.483,85.243],[8.75,100.743],[-5.733,89.988],[-21.471,14.568],[-15.557,-78.899],[4.956,-100.848]],"c":true}]},{"t":80,"s":[{"i":[[3.038,-18.678],[1.661,-24.032],[-0.173,-12.029],[6.415,-0.689],[1.68,9.617],[4.121,18.754],[-2.706,32.427],[-9.607,-0.377]],"o":[[-1.97,12.109],[-2.602,37.651],[0.146,10.204],[-6.064,0.651],[-2.6,-14.882],[-12.279,-55.881],[1.268,-15.2],[10.888,0.427]],"v":[[25.693,-74.83],[24.605,-14.737],[20.483,85.243],[8.75,100.743],[-5.733,89.988],[-21.471,14.568],[-15.557,-78.899],[4.956,-100.848]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"chan R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":61,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"giay R 2","parent":15,"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":41,"s":[-59.147]},{"t":61,"s":[-29.835]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.614},"o":{"x":0.333,"y":0},"t":41,"s":[4.901,79.6,0],"to":[-0.041,1.375,0],"ti":[0.089,-2.971,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.51},"t":55,"s":[5.263,88.118,0],"to":[-0.032,1.056,0],"ti":[0.015,-0.489,0]},{"t":61,"s":[4.564,90.781,0]}],"ix":2,"l":2},"a":{"a":0,"k":[502.9,920.424,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[0.009,8.755],[14.343,0.411],[2.887,3.141],[3.97,2.817],[0,0],[-2.087,-2.352],[-3.207,-2.267],[-2.516,-2.616],[-17.089,-0.967]],"o":[[-2.027,6.25],[-15.844,-0.454],[-2.029,-2.207],[-5.288,-3.753],[0,0],[0.901,1.015],[3.15,2.227],[5.199,5.404],[14.572,0.825]],"v":[[43.821,1.467],[14.971,10.996],[-18.216,-16.783],[-29.541,-27.139],[-36.128,-36.433],[-35.43,-28.666],[-26.604,-20.932],[-17.278,-10.484],[14.908,13.258]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[-5.287,8.819],[10.954,2.905],[2.887,3.141],[3.935,2.862],[0,0],[-2.268,-2.664],[-3.207,-2.267],[-2.516,-2.616],[-16.098,-3.659]],"o":[[-8.255,5.833],[-16,-2.584],[-2.029,-2.207],[-5.566,-4.08],[0,0],[1.015,1.198],[3.15,2.227],[5.199,5.404],[9.482,2.155]],"v":[[42.622,8.83],[15.193,10.85],[-17.922,-17.057],[-29.616,-27.614],[-36.144,-37.296],[-35.677,-29.358],[-26.752,-21.432],[-17.387,-11.294],[14.572,13.42]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":59,"s":[{"i":[[-5.287,8.819],[10.954,2.905],[2.887,3.141],[3.935,2.862],[0,0],[-2.268,-2.664],[-3.207,-2.267],[-2.516,-2.616],[-16.098,-3.659]],"o":[[-8.255,5.833],[-16,-2.584],[-2.029,-2.207],[-5.566,-4.08],[0,0],[1.015,1.198],[3.15,2.227],[5.199,5.404],[9.482,2.155]],"v":[[42.622,8.83],[15.193,10.85],[-17.922,-17.057],[-29.616,-27.614],[-36.144,-37.296],[-35.677,-29.358],[-26.752,-21.432],[-17.387,-11.294],[14.572,13.42]],"c":true}]},{"t":61,"s":[{"i":[[1.714,7.826],[14.645,3.627],[2.887,3.141],[3.746,3.108],[0,0],[-3.272,-4.392],[-3.207,-2.267],[-2.516,-2.616],[-13.038,-2.083]],"o":[[-2.027,6.25],[-13.862,-3.433],[-2.029,-2.207],[-7.102,-5.894],[0,0],[1.65,2.215],[3.15,2.227],[5.199,5.404],[12.923,2.064]],"v":[[44.649,-10.527],[15.145,8.394],[-16.292,-18.573],[-30.035,-30.241],[-36.232,-42.074],[-37.046,-33.192],[-27.571,-24.206],[-17.988,-15.777],[15.449,11.573]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149019613862,0.149019613862,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[509.954,974.017],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[-0.497,3.286],[-0.932,-3.029],[-7.471,-11.318],[-12.862,-0.433],[-3.934,7.697],[0,0.321],[4.572,-2.227],[2.445,-1.264],[7.19,0.758],[6.465,8.154],[9.01,6.534]],"o":[[-2.434,1.848],[1.626,5.283],[6.529,7.619],[7.831,0.264],[0.431,-0.844],[0,-1.245],[-7.243,3.529],[-2.735,1.414],[-7.092,-0.748],[-7.516,-9.48],[-9.198,-6.67]],"v":[[-33.091,-39.578],[-36.014,-29.534],[-13.742,-5.537],[15.712,15.703],[43.882,6.036],[44.42,3.853],[39.574,2.449],[31.407,9.122],[14.581,10.462],[-9.071,-6.437],[-25.098,-23.826]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[-0.648,3.421],[-0.932,-3.029],[-7.976,-11.314],[-13.316,-2.915],[-5.838,6.24],[0.011,0.354],[3.719,-0.937],[2.361,-1.524],[6.413,2.015],[6.525,8.104],[8.891,6.655]],"o":[[-2.51,1.764],[1.626,5.283],[6.529,7.619],[7.571,1.495],[0.56,-0.932],[0.067,-1.32],[-4.522,1.452],[-2.57,1.595],[-6.803,-2.137],[-7.573,-9.407],[-9.377,-7.062]],"v":[[-32.86,-40.224],[-36.123,-30.167],[-13.462,-5.961],[15.975,15.788],[42.468,12.725],[43.673,9.659],[38.37,8.629],[30.549,12.314],[14.973,10.967],[-8.592,-6.892],[-24.947,-24.329]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":59,"s":[{"i":[[-0.648,3.421],[-0.932,-3.029],[-7.976,-11.314],[-13.316,-2.915],[-5.838,6.24],[0.011,0.354],[3.72,-0.937],[2.361,-1.524],[6.413,2.015],[6.525,8.104],[8.891,6.655]],"o":[[-2.51,1.764],[1.626,5.283],[6.529,7.62],[7.571,1.495],[0.56,-0.932],[0.067,-1.32],[-4.522,1.452],[-2.57,1.595],[-6.803,-2.137],[-7.573,-9.407],[-9.377,-7.062]],"v":[[-32.86,-40.224],[-36.123,-30.167],[-13.462,-5.961],[15.975,15.788],[42.468,12.725],[43.673,9.659],[38.37,8.629],[30.549,12.314],[14.973,10.967],[-8.592,-6.892],[-24.947,-24.329]],"c":true}]},{"t":61,"s":[{"i":[[-1.484,4.168],[-0.932,-3.029],[-10.771,-11.29],[-12.226,-4.017],[-6.334,7.088],[0.069,0.54],[1.158,-1.062],[1.891,-2.962],[7.19,0.758],[6.856,7.827],[8.229,7.33]],"o":[[-2.928,1.297],[1.626,5.283],[6.529,7.619],[8.437,2.772],[1.271,-1.423],[0.437,-1.735],[-2.858,2.622],[-1.657,2.595],[-7.092,-0.748],[-7.886,-9.002],[-10.366,-9.233]],"v":[[-31.584,-43.798],[-36.731,-33.674],[-11.913,-8.31],[16.146,13.699],[41.499,0.603],[44.752,-6.985],[40.751,-11.068],[37.439,-1.46],[19.698,9.738],[-5.939,-9.412],[-24.112,-27.114]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.886274516582,0.411764711142,0.152941182256,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[509.9,970.355],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[-0.725,-1.546],[-0.137,-3.844],[-12.502,-4.306],[0.18,-4.787],[21.826,-0.516],[6.66,6.004],[-2.849,4.32],[-0.55,1.476],[-1.822,-0.213],[-13.295,-0.776],[-2.619,1.118]],"o":[[1.337,2.454],[0.24,6.731],[6.604,2.275],[-1.011,4.656],[-16.962,0.401],[-4.807,-4.334],[4.026,-9.493],[1.78,-4.779],[-4.385,4.975],[2.296,0.134],[4.623,-1.973]],"v":[[19.44,-30.998],[14.977,-21.451],[33.092,8.886],[43.972,20.055],[16.426,28.992],[-31.57,-11.924],[-32.436,-26.427],[-20.128,-40.953],[-13.213,-45.332],[-0.927,-32.206],[8.03,-33.509]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[-0.725,-1.546],[-0.206,-3.837],[-9.54,-7.238],[2.169,-7.515],[11.723,3.566],[6.66,6.004],[-2.849,4.32],[-0.55,1.476],[-1.822,-0.213],[-12.644,-0.876],[-2.647,1.027]],"o":[[1.337,2.454],[0.351,6.659],[5.822,3.302],[-1.011,4.656],[-15.315,-1.951],[-4.807,-4.334],[4.026,-9.493],[1.78,-4.779],[-4.385,4.975],[2.292,0.169],[4.764,-1.83]],"v":[[19.152,-31.117],[14.919,-21.564],[31.137,8.412],[43.046,25.784],[16.466,28.846],[-31.352,-12.258],[-32.436,-26.427],[-20.15,-40.684],[-13.235,-45.388],[-0.965,-32.162],[8.041,-33.481]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":59,"s":[{"i":[[-1.583,-2.328],[-0.206,-3.837],[-9.541,-7.238],[2.169,-7.515],[11.723,3.566],[6.66,6.004],[-2.849,4.32],[-0.55,1.476],[-1.822,-0.213],[-12.644,-0.876],[-2.647,1.027]],"o":[[1.337,2.454],[0.351,6.659],[5.822,3.302],[-1.011,4.656],[-15.315,-1.951],[-4.807,-4.334],[4.026,-9.493],[1.78,-4.779],[-4.385,4.975],[2.292,0.169],[4.764,-1.83]],"v":[[16.032,-33.414],[14.919,-21.564],[31.137,8.412],[43.046,25.784],[16.466,28.846],[-31.352,-12.258],[-32.436,-26.427],[-20.15,-40.684],[-13.235,-45.388],[-0.965,-32.162],[7.199,-35.007]],"c":true}]},{"t":61,"s":[{"i":[[-0.725,-1.546],[-0.587,-3.801],[-6.333,-1.794],[-2.253,-8.914],[17.253,-2.305],[6.66,6.004],[-2.849,4.32],[-0.55,1.476],[-1.822,-0.213],[-9.035,-1.433],[-2.799,0.525]],"o":[[1.337,2.454],[0.966,6.259],[6.721,1.904],[-1.011,4.656],[-8.496,1.135],[-4.807,-4.334],[4.026,-9.493],[1.78,-4.779],[-4.385,4.975],[2.271,0.36],[5.545,-1.04]],"v":[[15.588,-33.716],[14.596,-22.192],[27.245,1.389],[42.767,7.979],[16.684,28.038],[-30.145,-14.11],[-32.436,-26.427],[-20.275,-39.192],[-13.36,-45.699],[-1.173,-31.916],[7.238,-35.704]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.227450981736,0.235294118524,0.23137255013,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[510.035,954.294],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":41,"op":61,"st":-3,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"chan R2","parent":9,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.57],"y":[0.372]},"o":{"x":[0.175],"y":[0]},"t":41,"s":[113.219]},{"i":{"x":[0.839],"y":[1]},"o":{"x":[0.397],"y":[0.419]},"t":49,"s":[80.317]},{"t":61,"s":[12.091]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.57,"y":0.544},"o":{"x":0.194,"y":0},"t":41,"s":[481.18,771.022,0],"to":[1.099,-0.626,0],"ti":[3.244,-1.609,0]},{"i":{"x":0.664,"y":0.826},"o":{"x":0.32,"y":0.245},"t":49,"s":[475.937,774.873,0],"to":[-1.602,0.795,0],"ti":[1.251,-0.293,0]},{"i":{"x":0.697,"y":1},"o":{"x":0.352,"y":0.423},"t":55,"s":[470.246,779.421,0],"to":[-1.29,0.302,0],"ti":[0,0,0]},{"t":61,"s":[469.277,776.843,0]}],"ix":2,"l":2},"a":{"a":0,"k":[6.097,-80.256,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[3.038,-18.678],[1.661,-24.032],[-0.173,-12.029],[6.415,-0.689],[1.68,9.617],[4.121,18.754],[-2.706,32.427],[-9.607,-0.377]],"o":[[-1.97,12.109],[-2.602,37.651],[0.146,10.204],[-6.064,0.651],[-2.6,-14.882],[-12.279,-55.881],[1.268,-15.2],[10.888,0.427]],"v":[[25.693,-74.83],[24.605,-14.737],[20.483,85.243],[8.75,100.743],[-5.733,89.988],[-21.471,14.568],[-15.557,-78.899],[4.956,-100.848]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":52,"s":[{"i":[[1.207,-18.979],[1.661,-24.032],[-0.173,-12.029],[6.415,-0.689],[1.68,9.617],[4.121,18.754],[-2.706,32.427],[-9.607,-0.377]],"o":[[-0.779,12.243],[-2.602,37.651],[0.146,10.204],[-6.064,0.651],[-2.6,-14.882],[-12.279,-55.881],[1.268,-15.2],[10.888,0.427]],"v":[[25.693,-74.83],[24.605,-14.737],[20.483,85.243],[8.75,100.743],[-5.733,89.988],[-21.471,14.568],[-15.557,-78.899],[4.956,-100.848]],"c":true}]},{"t":61,"s":[{"i":[[3.038,-18.678],[1.661,-24.032],[-0.173,-12.029],[6.415,-0.689],[1.68,9.617],[4.121,18.754],[-2.706,32.427],[-9.607,-0.377]],"o":[[-1.97,12.109],[-2.602,37.651],[0.146,10.204],[-6.064,0.651],[-2.6,-14.882],[-12.279,-55.881],[1.268,-15.2],[10.888,0.427]],"v":[[25.693,-74.83],[24.605,-14.737],[20.483,85.243],[8.75,100.743],[-5.733,89.988],[-21.471,14.568],[-15.557,-78.899],[4.956,-100.848]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"chan R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":61,"st":-3,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"than 4","parent":7,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[10.199]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[10.199]},{"t":80,"s":[-0.962]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":41,"s":[-32.477,133.436,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[-32.477,133.436,0],"to":[8.512,0.629,0],"ti":[-8.512,-0.629,0]},{"t":80,"s":[18.594,137.21,0]}],"ix":2,"l":2},"a":{"a":0,"k":[7.517,104.166,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[7.879,-3.254],[8.356,-20.118],[0.418,-22.068],[-1.867,-10.906],[-1.16,-3.121],[-24.227,21.339],[-0.205,6.833],[-1.299,7.285],[-0.921,4.781],[-0.352,4.514],[4.502,12.891],[9.42,12.361],[13.538,2.403]],"o":[[-8.289,7.245],[-5.56,13.386],[-0.592,31.299],[1.164,6.798],[1.331,3.581],[24.962,-21.987],[0.252,-8.39],[3.776,-21.181],[0.921,-4.781],[1.581,-20.25],[-2.823,-8.084],[-4.112,-5.396],[-18.371,-3.261]],"v":[[-34.154,-90.998],[-54.064,-55.55],[-61.614,-6.49],[-55.398,56.82],[-40.775,108.216],[-1.114,106.176],[40.006,55.55],[40.558,38.143],[52.889,0.874],[54.314,-9.159],[50.68,-56.441],[38.455,-78.439],[2.816,-93.232]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[7.879,-3.254],[7.724,-20.351],[-1.065,-21.965],[-1.867,-10.906],[-1.16,-3.121],[-26.045,15.706],[0.046,7.425],[-0.969,7.324],[-1.035,5.174],[-0.352,4.514],[4.502,12.891],[9.42,12.361],[13.528,2.462]],"o":[[-7.309,6.603],[-5.176,13.656],[1.566,31.501],[1.164,6.798],[1.331,3.581],[29.811,-16.853],[-1.605,-8.527],[2.819,-21.32],[0.951,-4.775],[1.581,-20.25],[-2.823,-8.084],[-4.112,-5.396],[-19.156,-3.492]],"v":[[-34.192,-91.185],[-53.84,-55.401],[-59.012,-6.582],[-50.298,56.367],[-37.938,105.942],[1.171,109.545],[47.504,58.021],[44.077,39.224],[52.519,1.92],[54.314,-9.159],[50.68,-56.441],[38.455,-78.439],[2.835,-93.381]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[7.879,-3.254],[6.694,-20.73],[-3.479,-21.796],[-1.867,-10.906],[-1.16,-3.121],[-29.007,6.532],[0.455,8.388],[-0.432,7.387],[-1.22,5.814],[-0.352,4.514],[4.502,12.891],[9.42,12.361],[13.51,2.558]],"o":[[-5.713,5.558],[-4.551,14.094],[5.081,31.831],[1.164,6.798],[1.331,3.581],[37.708,-8.491],[-0.455,-8.382],[1.261,-21.547],[1,-4.765],[1.581,-20.25],[-2.823,-8.084],[-4.112,-5.396],[-20.434,-3.869]],"v":[[-34.254,-91.488],[-53.474,-55.159],[-54.775,-6.731],[-41.992,55.629],[-33.316,102.237],[4.894,115.033],[55.279,72.347],[49.808,40.984],[51.917,3.623],[54.314,-9.159],[50.68,-56.441],[38.455,-78.439],[2.864,-93.624]],"c":true}]},{"t":80,"s":[{"i":[[7.879,-3.254],[3.988,-12.822],[-4.266,-21.656],[-1.867,-10.906],[-1.16,-3.121],[-34.77,-1.055],[-0.465,9.565],[0.002,7.4],[0.712,6.748],[0.02,4.528],[4.502,12.891],[9.08,10.346],[13.51,2.558]],"o":[[-4.816,5.541],[-4.399,14.142],[4.979,25.273],[1.164,6.798],[1.331,3.581],[42.511,1.29],[0.407,-8.384],[-0.005,-21.623],[-0.511,-4.842],[-0.09,-20.456],[-2.823,-8.084],[-4.475,-5.099],[-20.434,-3.869]],"v":[[-33.659,-91.91],[-55.584,-54.873],[-56.567,-7.221],[-40.906,46.361],[-37.809,89.589],[5.105,114.515],[58.975,89.616],[54.927,42.35],[53.613,4.496],[53.182,-9.199],[47.725,-54.085],[33.766,-77.456],[2.864,-93.624]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725495338,0.415686279535,0.164705887437,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"than","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"bong than 2","parent":18,"tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[1.442,42.931,0],"ix":2,"l":2},"a":{"a":0,"k":[498.792,499.096,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[0,0],[0.94,-0.495],[1.3,-0.047],[5.764,0.5],[12.621,19.259],[0,0],[-0.857,-5.327],[2.539,-7.935],[0,0],[-47.382,-4.79],[-2.533,-0.122],[0.88,17.787],[-3.531,6.008],[-4.224,0.467],[-2.075,-0.183]],"o":[[0,0],[-2.545,0.75],[-3.884,0.139],[-5.764,-0.5],[-12.621,-19.259],[0.672,4.421],[4.972,30.907],[-2.102,6.569],[0,0],[2.669,0.27],[0.597,-10.71],[-1.5,-30.333],[4.276,-7.275],[2.419,-0.267],[-0.115,-3.792]],"v":[[91.233,-54.912],[86.714,-53.481],[79.729,-51.945],[66.791,-50.969],[42.144,-134.932],[-0.546,-161.12],[20.038,-52.53],[20.619,-6.607],[7.594,47.32],[50.95,67.06],[58.747,67.635],[61.844,24.352],[62.387,-31.966],[86.536,-46.984],[93.362,-48.263]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[0,0],[0.94,-0.495],[1.3,-0.047],[5.764,0.5],[12.621,19.259],[0,0],[-1.209,-5.258],[-0.428,-8.32],[0,0],[-21.392,4.72],[-2.533,-0.122],[0.88,17.787],[-3.531,6.008],[-4.224,0.467],[-2.075,-0.183]],"o":[[0,0],[-2.545,0.75],[-3.884,0.139],[-5.764,-0.5],[-12.621,-19.259],[0.672,4.421],[7.934,34.517],[0.398,7.736],[0,0],[2.619,-0.578],[0.597,-10.71],[-1.5,-30.333],[4.276,-7.275],[2.419,-0.267],[-0.115,-3.792]],"v":[[91.233,-54.912],[86.714,-53.481],[79.729,-51.945],[66.791,-50.969],[42.144,-134.932],[15.514,-151.753],[26.812,-49.951],[30.72,10.475],[37.826,57.381],[59.973,67.524],[74.624,64.794],[61.844,24.352],[62.387,-31.966],[86.536,-46.984],[93.362,-48.263]],"c":true}]},{"t":80,"s":[{"i":[[0,0],[0.94,-0.495],[1.3,-0.047],[5.764,0.5],[21.056,18.092],[0,0],[-1.209,-5.258],[-0.428,-8.32],[0,0],[-21.392,4.72],[-2.533,-0.122],[0.88,17.787],[-3.531,6.008],[-4.224,0.467],[-2.075,-0.183]],"o":[[0,0],[-2.545,0.75],[-3.884,0.139],[-5.764,-0.5],[-17.465,-15.006],[-22.29,11.531],[7.934,34.517],[0.398,7.736],[0,0],[2.619,-0.578],[0.597,-10.71],[-1.5,-30.333],[4.276,-7.275],[2.419,-0.267],[-0.115,-3.792]],"v":[[84.361,-46.366],[79.843,-44.935],[72.858,-43.399],[61.665,-42.556],[37.544,-124.553],[3.272,-141.294],[8.109,-40.379],[23.848,19.021],[28.887,73.356],[53.101,76.07],[67.753,73.34],[64.263,33.069],[55.515,-23.42],[79.664,-38.438],[86.491,-39.717]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.800000011921,0.368627458811,0.156862750649,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[498.792,499.096],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"than 2","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[10.199]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[10.199]},{"t":80,"s":[-0.975]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":41,"s":[-20.165,-33.85,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[-20.165,-33.85,0],"to":[3.065,0.781,0],"ti":[-3.065,-0.781,0]},{"t":80,"s":[-1.776,-29.162,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-9.988,-62.656,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[7.879,-3.254],[8.356,-20.118],[0.418,-22.068],[-1.867,-10.906],[-1.16,-3.121],[-24.227,21.339],[-0.205,6.833],[-1.299,7.285],[-0.921,4.781],[-0.352,4.514],[4.502,12.891],[9.42,12.361],[13.538,2.403]],"o":[[-8.289,7.245],[-5.56,13.386],[-0.592,31.299],[1.164,6.798],[1.331,3.581],[24.962,-21.987],[0.252,-8.39],[3.776,-21.181],[0.921,-4.781],[1.581,-20.25],[-2.823,-8.084],[-4.112,-5.396],[-18.371,-3.261]],"v":[[-34.154,-90.998],[-54.064,-55.55],[-61.614,-6.49],[-55.398,56.82],[-40.775,108.216],[-1.114,106.176],[40.006,55.55],[40.558,38.143],[52.889,0.874],[54.314,-9.159],[50.68,-56.441],[38.455,-78.439],[2.816,-93.232]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":49,"s":[{"i":[[7.879,-3.254],[7.724,-20.351],[-1.065,-21.965],[-1.867,-10.906],[-1.16,-3.121],[-26.045,15.706],[0.046,7.425],[-0.969,7.324],[-1.035,5.174],[-0.352,4.514],[4.502,12.891],[9.42,12.361],[13.528,2.462]],"o":[[-7.309,6.603],[-5.176,13.656],[1.566,31.501],[1.164,6.798],[1.331,3.581],[29.811,-16.853],[-1.605,-8.527],[2.819,-21.32],[0.951,-4.775],[1.581,-20.25],[-2.823,-8.084],[-4.112,-5.396],[-19.156,-3.492]],"v":[[-34.192,-91.185],[-53.84,-55.401],[-59.012,-6.582],[-50.298,56.367],[-37.938,105.942],[1.171,109.545],[47.504,58.021],[44.077,39.224],[52.519,1.92],[54.314,-9.159],[50.68,-56.441],[38.455,-78.439],[2.835,-93.381]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[7.879,-3.254],[6.694,-20.73],[-3.479,-21.796],[-1.867,-10.906],[-1.16,-3.121],[-29.007,6.532],[0.455,8.388],[-0.432,7.387],[-1.22,5.814],[-0.352,4.514],[4.502,12.891],[9.42,12.361],[13.51,2.558]],"o":[[-5.713,5.558],[-4.551,14.094],[5.081,31.831],[1.164,6.798],[1.331,3.581],[37.708,-8.491],[-0.455,-8.382],[1.261,-21.547],[1,-4.765],[1.581,-20.25],[-2.823,-8.084],[-4.112,-5.396],[-20.434,-3.869]],"v":[[-34.254,-91.488],[-53.474,-55.159],[-54.775,-6.731],[-42.677,56.023],[-34.713,102.266],[4.894,115.033],[55.279,72.347],[49.808,40.984],[51.917,3.623],[54.314,-9.159],[50.68,-56.441],[38.455,-78.439],[2.864,-93.624]],"c":true}]},{"t":80,"s":[{"i":[[7.879,-3.254],[3.988,-12.822],[-4.266,-21.656],[-1.867,-10.906],[-1.16,-3.121],[-34.77,-1.055],[-0.465,9.565],[0.002,7.4],[0.712,6.748],[0.02,4.528],[4.502,12.891],[9.08,10.346],[13.51,2.558]],"o":[[-4.816,5.541],[-4.399,14.142],[4.979,25.273],[1.164,6.798],[1.331,3.581],[42.511,1.29],[0.407,-8.384],[-0.005,-21.623],[-0.511,-4.842],[-0.09,-20.456],[-2.823,-8.084],[-4.475,-5.099],[-20.434,-3.869]],"v":[[-33.659,-91.91],[-55.584,-54.873],[-56.567,-7.221],[-40.906,46.361],[-37.809,89.589],[5.105,114.515],[58.975,89.616],[54.927,42.35],[53.613,4.496],[53.182,-9.199],[47.725,-54.085],[33.766,-77.456],[2.864,-93.624]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725495338,0.415686279535,0.164705887437,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"than","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"dau 2","parent":20,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.652],"y":[0.985]},"o":{"x":[0.299],"y":[0]},"t":41,"s":[0]},{"i":{"x":[0.822],"y":[1]},"o":{"x":[0.415],"y":[-0.03]},"t":49,"s":[-12.349]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[-1.136]},{"t":80,"s":[-5.025]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41,"s":[-1.157,-4.055,0],"to":[0.184,-0.399,0],"ti":[-0.27,0.69,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[-0.053,-6.45,0],"to":[0.27,-0.69,0],"ti":[-0.086,0.291,0]},{"t":80,"s":[0.461,-8.196,0]}],"ix":2,"l":2},"a":{"a":0,"k":[492.654,328.724,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.604,10.238],[1.531,-5.127],[-3.569,-6.235],[-2.693,1.026]],"o":[[-2.678,-10.527],[-1.531,5.127],[2.946,5.146],[3.025,-1.152]],"v":[[7.274,-3.878],[-8.122,-8.125],[-3.877,6.427],[5.365,11.573]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[486.338,304.414],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[18.633,-25.828],[-8.901,-17.979],[-2.812,2.75],[0,0],[0,0],[-0.351,2.041],[-0.14,2.66],[-0.19,1.573],[-2.49,2.89]],"o":[[0,0],[-17.826,24.71],[0,0],[2.812,-2.75],[0,0],[0,0],[0.351,-2.041],[0.14,-2.66],[6.499,0.702],[4.232,-4.37]],"v":[[41.463,-34.636],[-33.642,-26.458],[-25.566,40.522],[-16.622,35.294],[-7.608,21.434],[1.743,15.28],[2.719,5.429],[6.278,-2.198],[7.131,-16.54],[36.715,-20.638]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.352941185236,0.349019616842,0.368627458811,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[496.572,283.944],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.188,-1.314],[1.5,-1.031],[-0.031,-0.781]],"o":[[2.371,6.346],[0.188,1.314],[-1.5,1.031],[0,0]],"v":[[-3.58,-11.033],[4.129,4.407],[2.254,8.096],[-4.163,11.033]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[538.035,303.517],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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,-3.486],[0.005,-0.806],[1.228,-11.789],[0.588,-1.073],[5.239,1.595],[4.625,6.125],[0,0]],"o":[[0.784,10.792],[0,2.914],[-0.008,1.38],[-0.862,8.278],[-1.426,2.6],[-6.257,-1.905],[-2.912,-3.857],[0,0]],"v":[[24.433,-33.561],[24.185,-19.103],[25.077,-12.033],[25.11,9.606],[23.215,30.434],[4.605,32.897],[-17.069,20.772],[-25.646,-13.629]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[511.112,308.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 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,-17.771],[17.771,0],[0,17.771],[-17.771,0]],"o":[[0,17.771],[-17.771,0],[0,-17.771],[17.771,0]],"v":[[32.177,0],[0,32.177],[-32.177,0],[0,-32.177]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[503.419,276.745],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[3.667,-8.45],[0,0]],"o":[[4.306,6.945],[-4.811,-9.841],[0,0]],"v":[[2.503,-17.329],[-0.619,19.299],[-10.64,-15.476]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.215686276555,0.211764708161,0.223529413342,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[528.064,278.26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"co 2","parent":18,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[-1.626]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[-4.796]},{"t":80,"s":[-4.796]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.576,"y":0.576},"o":{"x":0.184,"y":0.184},"t":41,"s":[-12.786,-85.174,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.703,"y":1},"o":{"x":0.342,"y":0},"t":61,"s":[-12.786,-85.174,0],"to":[0,0,0],"ti":[0,0,0]},{"t":80,"s":[-11.53,-85.144,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-4.5,19.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[0,0],[-1.149,-13.7],[-4.66,-4.651],[0,0],[-0.912,3.794],[0,0]],"o":[[0,0],[0.345,4.109],[-5.561,5.821],[0,0],[0.912,-3.794],[0,0]],"v":[[25.106,-30.484],[22.669,16.237],[29.763,30.264],[-29.763,17.522],[-26.13,10.325],[-18.925,-31.394]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[0,0],[-4.483,-12.997],[-1.832,-6.911],[0,0],[-0.912,3.794],[0,0]],"o":[[0,0],[1.562,4.529],[-5.561,5.821],[0,0],[0.912,-3.794],[0,0]],"v":[[25.106,-30.484],[23.883,11.564],[33.663,29.178],[-29.763,17.522],[-26.13,10.325],[-18.413,-31.328]],"c":true}]},{"t":80,"s":[{"i":[[0,0],[-2.744,-13.133],[-0.83,-7.405],[0,0],[-0.912,3.794],[0,0]],"o":[[0,0],[0.98,4.689],[-5.561,5.821],[0,0],[0.912,-3.794],[0,0]],"v":[[26.604,-30.223],[23.874,12.689],[33.663,29.178],[-29.763,17.522],[-26.13,10.325],[-18.413,-31.328]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"co","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"mong 2","parent":18,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[-14.124]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[-7.688]},{"t":80,"s":[4.606]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[6.72,83.578,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":61,"s":[13.65,72.477,0],"to":[0,0,0],"ti":[0,0,0]},{"t":80,"s":[13.65,72.477,0]}],"ix":2,"l":2},"a":{"a":0,"k":[9.18,-46.38,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[0,0],[-13.731,-19.393],[-36.771,9.33],[-5.87,8.963],[0.21,9.433],[2.013,6.429],[3.742,17.096]],"o":[[-0.91,19.865],[7.52,10.62],[10.427,-2.646],[5.546,-8.468],[-0.148,-6.62],[-3.196,-10.205],[0,0]],"v":[[-42.103,-53.138],[-30.297,15.635],[36.128,38.888],[62.031,22.813],[68.641,-3.188],[65.081,-22.195],[53.399,-60.885]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":46,"s":[{"i":[[0,0],[-17.545,-22.785],[-33.401,8.398],[-6.396,8.491],[0.432,11.421],[2.309,8.951],[5.178,17.867]],"o":[[-0.91,19.865],[7.939,10.258],[10.419,-2.722],[6.165,-8.122],[-0.211,-6.617],[-2.945,-10.366],[0,0]],"v":[[-42.023,-51.74],[-27.258,29.424],[34.551,47.5],[60.71,31.741],[68.758,4.368],[63.477,-18.691],[51.244,-60.877]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":51,"s":[{"i":[[0,0],[-22.448,-27.146],[-28.016,3.734],[-7.073,7.884],[0.718,13.978],[2.688,12.193],[7.024,18.859]],"o":[[-0.91,19.865],[8.478,9.791],[8.684,-0.104],[6.96,-7.677],[-0.292,-6.613],[-2.623,-10.573],[0,0]],"v":[[-41.921,-49.943],[-22.52,39.591],[32.523,58.572],[60.153,45.854],[68.908,14.083],[61.414,-14.186],[48.474,-60.868]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":56,"s":[{"i":[[0,0],[-27.815,-28.966],[-15.099,-2.692],[-7.75,7.277],[1.003,16.535],[3.068,15.436],[8.205,20.675]],"o":[[-0.91,19.865],[9.016,9.324],[7.2,2.606],[7.756,-7.232],[-0.374,-6.61],[-2.3,-10.78],[0,0]],"v":[[-41.449,-48.396],[-20.843,49.392],[26.051,74.149],[55.392,62.1],[69.058,23.797],[59.352,-9.68],[46.591,-60.921]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[0,0],[-31.989,-30.382],[-6.59,-2.591],[-8.276,6.805],[1.225,18.524],[3.363,17.958],[9.123,22.087]],"o":[[-0.91,19.865],[9.436,8.961],[6.045,4.715],[8.375,-6.887],[-0.437,-6.607],[-2.049,-10.942],[0,0]],"v":[[-41.083,-47.193],[-19.539,57.014],[16.485,84.661],[51.689,74.735],[69.175,31.353],[57.748,-6.176],[45.126,-60.963]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[{"i":[[0,0],[-30.274,-33.284],[-5.162,-4.308],[-9.67,6.507],[1.225,18.524],[3.662,17.85],[9.123,22.087]],"o":[[-0.91,19.865],[8.358,8.821],[6.045,4.715],[8.67,-6.153],[-0.437,-6.607],[-2.237,-10.899],[0,0]],"v":[[-41.226,-47.17],[-20.037,54.317],[12.432,80.659],[49.421,72.514],[69.985,31.637],[58.839,-6.348],[46.31,-59.801]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":71,"s":[{"i":[[0,0],[-28.069,-37.015],[-6.074,-4.238],[-11.463,6.125],[1.225,18.524],[4.045,17.711],[9.123,22.087]],"o":[[-0.91,19.865],[6.971,8.641],[6.045,4.715],[9.049,-5.21],[-0.437,-6.607],[-2.479,-10.845],[0,0]],"v":[[-41.411,-47.141],[-21.917,51.576],[2.482,77.07],[46.505,69.658],[71.026,32.003],[60.242,-6.569],[47.831,-58.306]],"c":true}]},{"t":80,"s":[{"i":[[0,0],[-24.615,-42.86],[-4.062,-3.085],[-14.272,5.526],[1.225,18.524],[4.646,17.494],[9.123,22.087]],"o":[[-0.91,19.865],[4.8,8.358],[6.045,4.715],[9.643,-3.734],[-0.437,-6.607],[-2.857,-10.759],[0,0]],"v":[[-41.7,-47.095],[-24.918,45.755],[-16.469,63.921],[39.501,60.624],[72.657,32.575],[62.44,-6.915],[48.14,-55.491]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.086274512112,0.086274512112,0.086274512112,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"mong","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"dui L 2","parent":21,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.57],"y":[0.568]},"o":{"x":[0.175],"y":[0]},"t":41,"s":[-147.998]},{"i":{"x":[0.839],"y":[1]},"o":{"x":[0.397],"y":[0.536]},"t":49,"s":[-92.11]},{"i":{"x":[0.588],"y":[0.466]},"o":{"x":[0.165],"y":[0]},"t":61,"s":[-29.749]},{"i":{"x":[0.831],"y":[1]},"o":{"x":[0.421],"y":[0.466]},"t":71,"s":[-17.281]},{"t":80,"s":[-4.155]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[14.722,-13.192,0],"to":[-1.457,-1.604,0],"ti":[1.39,-0.278,0]},{"i":{"x":0.577,"y":0.797},"o":{"x":0.183,"y":0},"t":61,"s":[5.563,-22.858,0],"to":[-0.634,0.21,0],"ti":[-0.478,-0.872,0]},{"i":{"x":0.703,"y":1},"o":{"x":0.343,"y":0.168},"t":71,"s":[1.968,-19.162,0],"to":[0.372,0.68,0],"ti":[0,0,0]},{"t":80,"s":[6.602,-19.478,0]}],"ix":2,"l":2},"a":{"a":0,"k":[520.621,595.766,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[-15.515,5.408],[-1.038,-17.231],[5.412,-63.513],[1.968,10.976],[-0.289,16.792]],"o":[[25.914,-9.032],[2.603,43.189],[-3.875,16.76],[-1.183,-6.597],[0.348,-20.24]],"v":[[-11.029,-81.506],[33.688,-60.94],[28.656,73.727],[-29.237,58.787],[-36.095,-40.204]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[-15.554,5.292],[-1.038,-17.231],[6.049,-50.93],[3.083,13.626],[-1.333,19.263]],"o":[[24.697,-8.403],[2.603,43.189],[-3.875,16.76],[-1.479,-6.537],[1.397,-20.195]],"v":[[-13.477,-80.474],[34.639,-50.328],[31.807,70.395],[-28.689,63.085],[-36.988,-40.083]],"c":true}]},{"t":80,"s":[{"i":[[-15.554,5.292],[-1.179,-17.222],[8.634,-52.506],[2.001,16.507],[-1.333,19.263]],"o":[[24.697,-8.403],[2.942,42.982],[-4.805,10.707],[-0.807,-6.653],[1.397,-20.195]],"v":[[-12.907,-81.149],[34.639,-50.328],[27.985,81.63],[-28.211,79.227],[-38.077,-39.615]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.086274512112,0.086274512112,0.086274512112,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[522.587,655.592],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[0,0],[2.636,-12.084],[11.253,0.718],[2.34,14.96],[0,0]],"o":[[-1.407,32.029],[-2.47,11.323],[-5.862,-0.374],[-3.106,-19.857],[0,0]],"v":[[26.355,-31.646],[19.314,21.357],[-1.25,39.693],[-19.843,21.404],[-28.191,-39.364]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[0,0],[3.566,-11.843],[11.163,1.589],[1.172,15.097],[0,0]],"o":[[-3.888,31.823],[-3.341,11.097],[-5.815,-0.828],[-1.555,-20.038],[0,0]],"v":[[24.034,-33.128],[12.901,19.168],[-9.023,35.853],[-25.922,15.727],[-30.537,-40.295]],"c":true}]},{"t":80,"s":[{"i":[[0,0],[3.566,-11.843],[11.163,1.589],[1.172,15.097],[0,0]],"o":[[-3.888,31.823],[-3.341,11.097],[-5.815,-0.828],[-1.555,-20.038],[0,0]],"v":[[24.034,-33.128],[12.901,19.168],[-9.023,35.853],[-25.922,15.727],[-30.537,-40.295]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[523.051,734.868],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":23,"ty":4,"nm":"giay L 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":55.619,"ix":10},"p":{"a":0,"k":[339.461,934.919,0],"ix":2,"l":2},"a":{"a":0,"k":[576.061,936.775,0],"ix":1,"l":2},"s":{"a":0,"k":[87,87,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.432,8.165],[11.318,0.141],[4.53,2.592],[6.92,2.966],[0,0],[-1.079,-2.344],[-7.023,-2.925],[-1.874,-0.971],[-14.427,0.294]],"o":[[0.143,6.611],[-12.409,-0.154],[-3.928,-2.248],[-11.582,-4.965],[0,0],[0.807,1.754],[5.324,2.217],[4.322,2.239],[11.523,-0.235]],"v":[[36.99,-17.985],[17.038,5.546],[-12.347,-8.953],[-26.969,-17.544],[-38.679,-28.252],[-39.826,-23.341],[-26.972,-14.03],[-14.524,-6.5],[17.147,8.222]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149019613862,0.149019613862,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[544.232,939.799],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.355,2.483],[-0.899,-2.672],[-11.553,-4.881],[-16.909,-0.961],[-4.082,16.603],[1.401,0.256],[-0.044,-1.79],[0.931,-1.961],[8.698,-0.483],[6.259,2.714],[3.628,2.145]],"o":[[-1.417,1.95],[1.281,3.807],[8.384,3.351],[6.171,0.351],[0.754,-3.067],[-1.018,0.864],[0.033,1.343],[-3.93,8.276],[-11.225,0.624],[-6.329,-2.744],[-7.707,-4.557]],"v":[[-36.271,-31.206],[-38.825,-23.493],[-21.04,-10.704],[16.397,8.768],[37.191,-12.825],[33.069,-18.44],[32.167,-15.127],[32.337,-9.456],[16.294,4.496],[-17.47,-15.159],[-28.678,-20.23]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.886274516582,0.411764711142,0.152941182256,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[544.277,937.331],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[-2.175,-1.991],[-2.046,-3.762],[-5.48,-0.745],[-7.074,-6.596],[12.914,-0.635],[7.009,3.103],[-1.033,7.533],[0.032,1.232],[-1.36,-0.429],[-6.342,1.039],[-1.855,0.902]],"o":[[3.023,2.004],[5.079,9.336],[5.936,0.807],[0.802,1.231],[-13.108,0.645],[-18.836,-8.338],[1.542,-11.248],[-0.084,-3.233],[-2.359,5.778],[1.787,-0.293],[3.205,-1.558]],"v":[[5.97,-27.362],[5.825,-17.72],[20.16,-0.275],[34.6,0.968],[17.785,24.577],[-14.124,6.611],[-36.582,-11.335],[-27.718,-26.567],[-23.024,-32.548],[-9.448,-23.508],[-2.549,-26.372]],"c":true}]},{"t":80,"s":[{"i":[[-2.175,-1.991],[-2.046,-3.762],[-5.48,-0.745],[-7.074,-6.596],[12.914,-0.635],[7.009,3.103],[-1.033,7.533],[0.032,1.232],[-1.36,-0.429],[-6.13,-1.929],[-1.855,0.902]],"o":[[3.023,2.004],[5.079,9.336],[5.936,0.807],[0.802,1.231],[-13.108,0.645],[-18.836,-8.338],[1.542,-11.248],[-0.084,-3.233],[-2.359,5.778],[3.819,1.202],[3.205,-1.558]],"v":[[9.955,-22.372],[7.96,-12.952],[20.16,-0.275],[34.6,0.968],[17.785,24.577],[-14.124,6.611],[-36.582,-11.335],[-26.52,-26.792],[-20.671,-32.679],[-7.008,-20.968],[1.838,-21.716]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149019613862,0.149019613862,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[544.21,919.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 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":61,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"chan L 3","parent":23,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.588],"y":[0.423]},"o":{"x":[0.165],"y":[0]},"t":61,"s":[16.321]},{"i":{"x":[0.831],"y":[1]},"o":{"x":[0.421],"y":[0.435]},"t":71,"s":[29.107]},{"t":80,"s":[44.672]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.694,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[533.26,896.503,0],"to":[0,0,0],"ti":[0,0,0]},{"t":80,"s":[529.728,901.92,0]}],"ix":2,"l":2},"a":{"a":0,"k":[2.126,57.59,0],"ix":1,"l":2},"s":{"a":0,"k":[114.943,114.943,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[3.476,-18.741],[2.188,-22.51],[0.245,-11.292],[6.018,-0.479],[0.575,9.146],[2.831,17.8],[-2.128,16.093],[-8.976,-0.605]],"o":[[-2.1,11.324],[-3.428,35.267],[-0.328,15.105],[-5.689,0.452],[-0.87,-13.836],[-6.62,-41.623],[1.877,-14.197],[10.173,0.686]],"v":[[24.674,-69.697],[19.283,-16.592],[14.209,47.474],[2.19,67.292],[-10.564,55.671],[-17.899,-7.058],[-13.799,-74.594],[5.967,-94.657]],"c":true}]},{"t":80,"s":[{"i":[[3.476,-18.741],[2.188,-22.51],[0.245,-11.292],[6.018,-0.479],[1.483,9.043],[2.656,17.827],[-2.128,16.093],[-8.976,-0.605]],"o":[[-2.1,11.324],[-3.428,35.267],[-0.328,15.105],[-5.689,0.452],[-2.285,-13.936],[-5.819,-39.054],[1.877,-14.197],[10.173,0.686]],"v":[[23.275,-62.709],[19.283,-16.592],[14.019,47.128],[2.19,67.292],[-10.173,55.727],[-20.817,-5.639],[-14.963,-68.412],[4.825,-89.749]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"chan L","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":61,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":25,"ty":4,"nm":"giay L 2","parent":26,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[-55.158]},{"t":61,"s":[-16.321]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41,"s":[4.107,80.601,0],"to":[-0.608,-3.244,0],"ti":[0.608,3.244,0]},{"t":61,"s":[0.461,61.137,0]}],"ix":2,"l":2},"a":{"a":0,"k":[530.277,899.878,0],"ix":1,"l":2},"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":41,"s":[100,100,100]},{"t":61,"s":[87,87,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[0.385,7.375],[11.318,0.141],[4.53,2.592],[7.321,1.758],[0,0],[-0.916,-1.645],[-7.385,-1.394],[-1.874,-0.971],[-15.471,0.028]],"o":[[-1.615,3.562],[-12.409,-0.154],[-3.928,-2.248],[-11.635,-2.794],[0,0],[0.839,1.507],[5.668,1.07],[4.322,2.239],[11.525,-0.021]],"v":[[41.633,-4.798],[16.489,3.168],[-11.429,-10.676],[-27.035,-17.067],[-39.144,-26.046],[-39.629,-21.466],[-26.972,-14.03],[-12.867,-8.413],[16.489,4.986]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[-1.155,5.452],[10.742,3.565],[4.53,2.592],[7.26,1.943],[0,0],[-0.941,-1.752],[-7.33,-1.628],[-1.874,-0.971],[-12.92,-4.336]],"o":[[-2.324,3.171],[-11.618,-3.856],[-3.928,-2.248],[-11.627,-3.126],[0,0],[0.834,1.545],[5.615,1.245],[4.322,2.239],[10.926,3.667]],"v":[[41.704,3.619],[16.46,2.287],[-11.569,-10.412],[-27.025,-17.14],[-39.073,-26.384],[-39.659,-21.753],[-26.972,-14.03],[-13.12,-8.12],[16.455,4.641]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":59,"s":[{"i":[[-1.155,5.452],[10.742,3.565],[4.53,2.592],[7.26,1.943],[0,0],[-0.941,-1.752],[-7.33,-1.628],[-1.874,-0.971],[-12.92,-4.336]],"o":[[-2.324,3.171],[-11.618,-3.856],[-3.928,-2.248],[-11.627,-3.126],[0,0],[0.834,1.545],[5.615,1.245],[4.322,2.239],[10.926,3.667]],"v":[[41.704,3.619],[16.46,2.287],[-11.57,-10.412],[-27.025,-17.14],[-39.073,-26.384],[-39.659,-21.753],[-26.972,-14.03],[-13.12,-8.12],[16.455,4.641]],"c":true}]},{"t":61,"s":[{"i":[[3.432,8.165],[11.318,0.141],[4.53,2.592],[6.92,2.966],[0,0],[-1.079,-2.344],[-7.023,-2.925],[-1.874,-0.971],[-14.427,0.294]],"o":[[0.143,6.611],[-12.409,-0.154],[-3.928,-2.248],[-11.582,-4.965],[0,0],[0.807,1.754],[5.324,2.217],[4.322,2.239],[11.523,-0.235]],"v":[[36.99,-17.985],[17.038,5.546],[-12.347,-8.953],[-26.969,-17.544],[-38.679,-28.252],[-39.826,-23.341],[-26.972,-14.03],[-14.524,-6.5],[17.147,8.222]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149019613862,0.149019613862,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[544.232,939.799],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[0.355,2.483],[-0.899,-2.672],[-15.616,-5.337],[-16.909,-0.961],[-2.058,6.479],[0.662,1.231],[0.505,-0.816],[2.078,-0.628],[8.698,-0.483],[6.259,2.714],[4.302,1.918]],"o":[[-1.055,2.112],[1.281,3.807],[8.384,3.351],[6.171,0.351],[0.172,-0.542],[-0.329,-0.908],[-0.707,1.142],[-6.568,1.986],[-11.225,0.624],[-6.329,-2.744],[-8.177,-3.646]],"v":[[-37.348,-29.506],[-39.434,-20.95],[-14.287,-8.869],[16.506,6.318],[41.588,-2.331],[41.588,-6.083],[38.733,-4.367],[34.627,-1.099],[16.444,1.987],[-12.224,-13.92],[-27.83,-19.562]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[0.355,2.483],[-0.899,-2.672],[-14.994,-5.267],[-15.608,-4.622],[-5.89,5.993],[0.775,1.082],[1.013,-0.445],[1.903,-0.832],[8.312,2.609],[6.259,2.714],[4.199,1.953]],"o":[[-1.11,2.087],[1.281,3.807],[8.384,3.351],[5.926,1.755],[0.261,-0.928],[-0.876,-0.055],[-1.076,0.665],[-6.747,1.704],[-9.211,-2.891],[-6.329,-2.744],[-8.105,-3.786]],"v":[[-37.183,-29.766],[-39.341,-21.339],[-15.437,-8.987],[16.73,5.506],[41.791,6.197],[42.957,1.729],[40.729,1.972],[37.112,4.4],[16.5,1.612],[-13.165,-13.542],[-28.267,-18.897]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":59,"s":[{"i":[[0.355,2.483],[-0.899,-2.672],[-14.994,-5.267],[-15.608,-4.622],[-5.89,5.993],[0.775,1.082],[1.013,-0.445],[1.903,-0.832],[8.312,2.609],[6.259,2.714],[4.199,1.953]],"o":[[-1.11,2.087],[1.281,3.807],[8.384,3.351],[5.926,1.755],[0.261,-0.928],[-0.876,-0.055],[-1.076,0.665],[-6.747,1.703],[-9.211,-2.891],[-6.329,-2.744],[-8.105,-3.786]],"v":[[-37.183,-29.766],[-39.341,-21.339],[-15.437,-8.987],[16.73,5.506],[41.791,6.197],[42.957,1.729],[40.729,1.972],[37.112,4.4],[16.5,1.612],[-13.165,-13.542],[-28.267,-18.897]],"c":true}]},{"t":61,"s":[{"i":[[0.355,2.483],[-0.899,-2.672],[-11.553,-4.881],[-16.909,-0.961],[-4.082,16.603],[1.401,0.256],[-0.044,-1.79],[0.931,-1.961],[8.698,-0.483],[6.259,2.714],[3.628,2.145]],"o":[[-1.417,1.95],[1.281,3.807],[8.384,3.351],[6.171,0.351],[0.754,-3.067],[-1.018,0.864],[0.033,1.343],[-3.93,8.276],[-11.225,0.624],[-6.329,-2.744],[-7.707,-4.557]],"v":[[-36.271,-31.206],[-38.825,-23.493],[-21.04,-10.704],[16.397,8.768],[37.191,-12.825],[33.069,-18.44],[32.167,-15.127],[32.337,-9.456],[16.294,4.496],[-17.47,-15.159],[-28.678,-20.23]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.886274516582,0.411764711142,0.152941182256,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[544.277,937.331],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[-2.175,-1.991],[-2.046,-3.762],[-14.057,-2.754],[-0.042,-2.697],[17.215,-0.462],[7.009,3.103],[-1.346,9.259],[0.032,1.232],[-1.36,-0.429],[-8.95,3.117],[-2.062,0.045]],"o":[[2.416,-0.217],[5.079,9.336],[5.407,1.059],[-0.797,3.661],[-18.088,0.485],[-18.836,-8.338],[1.633,-11.235],[-0.084,-3.233],[-1.235,5.946],[1.71,-0.596],[3.374,-0.073]],"v":[[13.403,-22.451],[8.899,-13.179],[33.763,5.289],[41.655,12.411],[16.886,21.437],[-13.157,5.706],[-37.53,-10.331],[-27.718,-26.567],[-22.287,-30.825],[-5.323,-23.558],[4.852,-25.486]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":45,"s":[{"i":[[-2.175,-1.991],[-2.046,-3.762],[-10.309,-8.365],[1.144,-5.248],[13.091,4.923],[7.009,3.103],[-1.298,8.995],[0.032,1.232],[-1.36,-0.429],[-8.551,2.799],[-2.031,0.176]],"o":[[2.509,0.122],[5.079,9.336],[4.526,2.747],[-2.016,4.584],[-16.224,-6.101],[-18.836,-8.338],[1.619,-11.237],[-0.084,-3.233],[-1.407,5.921],[1.722,-0.549],[3.348,-0.3]],"v":[[11.828,-24.681],[10.662,-16.412],[31.595,4.969],[43.019,19.825],[17.024,21.918],[-13.305,5.844],[-37.385,-10.484],[-27.718,-26.567],[-22.4,-31.089],[-5.954,-23.551],[3.72,-25.621]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":59,"s":[{"i":[[-2.175,-1.991],[-2.046,-3.762],[-10.309,-8.365],[1.144,-5.248],[13.091,4.923],[7.009,3.103],[-1.298,8.995],[0.032,1.232],[-1.36,-0.429],[-8.551,2.799],[-2.031,0.176]],"o":[[2.509,0.122],[5.079,9.336],[4.526,2.747],[-2.016,4.584],[-16.224,-6.101],[-18.836,-8.338],[1.619,-11.237],[-0.084,-3.233],[-1.407,5.921],[1.722,-0.549],[3.348,-0.3]],"v":[[11.828,-24.681],[10.662,-16.412],[31.595,4.969],[43.019,19.825],[17.024,21.918],[-13.305,5.844],[-37.385,-10.484],[-27.718,-26.567],[-22.4,-31.089],[-5.954,-23.551],[3.72,-25.621]],"c":true}]},{"t":61,"s":[{"i":[[-2.175,-1.991],[-2.046,-3.762],[-5.48,-0.745],[-7.074,-6.596],[12.914,-0.635],[7.009,3.103],[-1.033,7.533],[0.032,1.232],[-1.36,-0.429],[-6.342,1.039],[-1.855,0.902]],"o":[[3.023,2.004],[5.079,9.336],[5.936,0.807],[0.802,1.231],[-13.108,0.645],[-18.836,-8.338],[1.542,-11.248],[-0.084,-3.233],[-2.359,5.778],[1.787,-0.293],[3.205,-1.558]],"v":[[5.97,-27.362],[5.825,-17.72],[20.16,-0.275],[34.6,0.968],[17.785,24.577],[-14.124,6.611],[-36.582,-11.335],[-27.718,-26.567],[-23.024,-32.548],[-9.448,-23.508],[-2.549,-26.372]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149019613862,0.149019613862,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[544.21,919.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 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":61,"st":-3,"bm":0},{"ddd":0,"ind":26,"ty":4,"nm":"chan L 2","parent":22,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.57],"y":[0.292]},"o":{"x":[0.175],"y":[0]},"t":41,"s":[112.459]},{"i":{"x":[0.839],"y":[1]},"o":{"x":[0.397],"y":[0.397]},"t":49,"s":[82.278]},{"t":61,"s":[7.9]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.617,"y":0},"o":{"x":0.194,"y":0},"t":41,"s":[522.348,756.221,0],"to":[-0.2,-0.613,0],"ti":[0.666,2.327,0]},{"i":{"x":0.66,"y":0.53},"o":{"x":0.324,"y":0.329},"t":49,"s":[520.743,754.984,0],"to":[-0.217,-0.757,0],"ti":[0.221,1.098,0]},{"i":{"x":0.67,"y":0.166},"o":{"x":0.333,"y":0.742},"t":52,"s":[518.932,753.684,0],"to":[-0.29,-1.441,0],"ti":[-0.071,1.648,0]},{"i":{"x":0.694,"y":1},"o":{"x":0.352,"y":0.285},"t":56,"s":[518.017,752.369,0],"to":[0.094,-2.182,0],"ti":[0,0,0]},{"t":61,"s":[519.04,744.74,0]}],"ix":2,"l":2},"a":{"a":0,"k":[6.547,-76.127,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[3.335,-17.45],[2.188,-22.51],[0.156,-11.294],[6.018,-0.479],[1.317,9.069],[3.359,17.708],[-3.387,30.361],[-8.976,-0.605]],"o":[[-2.162,11.312],[-3.428,35.267],[-0.133,9.58],[-5.689,0.452],[-2.038,-14.035],[-10.007,-52.764],[1.588,-14.232],[10.172,0.686]],"v":[[24.674,-69.697],[21.642,-12.536],[15.571,80.393],[4.188,94.633],[-9.073,84.161],[-21.8,12.969],[-13.799,-74.594],[5.967,-94.657]],"c":true}]},{"t":61,"s":[{"i":[[3.476,-18.741],[2.188,-22.51],[0.245,-11.292],[6.018,-0.479],[0.575,9.146],[2.831,17.8],[-2.128,16.093],[-8.976,-0.605]],"o":[[-2.1,11.324],[-3.428,35.267],[-0.328,15.105],[-5.689,0.452],[-0.87,-13.836],[-6.62,-41.623],[1.877,-14.197],[10.173,0.686]],"v":[[24.674,-69.697],[19.283,-16.592],[14.209,47.474],[2.19,67.292],[-10.564,55.671],[-17.899,-7.058],[-13.799,-74.594],[5.967,-94.657]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"chan L","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":61,"st":-3,"bm":0},{"ddd":0,"ind":27,"ty":4,"nm":"ban tay L 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-71.247,"ix":10},"p":{"a":0,"k":[722.153,932.941,0],"ix":2,"l":2},"a":{"a":0,"k":[556.241,576.254,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.558,4.106],[-1.42,-2.068],[-0.834,-7.587],[-0.791,-6.862],[1.388,1.044],[0.99,2.258],[0.917,0.357]],"o":[[-1.017,-7.477],[4.612,6.719],[0.428,3.895],[0.387,3.355],[-2.598,-1.955],[-1.234,-2.817],[-0.917,-0.357]],"v":[[-14.797,-2.677],[-7.685,-13.263],[-1.045,2.199],[0.663,14.783],[-2.876,16.216],[-6.543,9.727],[-9.537,3.956]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[572.713,595.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 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.174,-2.676],[-1.197,-9.714],[0.825,1.961],[1.121,3.294],[-0.048,5.789],[-6.773,4.205]],"o":[[4.623,10.534],[0.165,1.343],[-0.737,-1.752],[-1.063,-3.124],[0.033,-3.979],[5.62,-3.489]],"v":[[2.591,-14.348],[9.101,12.596],[-12.247,15.842],[-14.253,9.979],[-16.604,-4.273],[-10.185,-18.756]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[563.832,588.477],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.667,-2.047],[0,0],[-1.412,0.335],[0,0],[0.132,1.394],[0,0],[2.289,-0.668],[0,0]],"o":[[0,0],[0.449,1.379],[0,0],[1.362,-0.323],[0,0],[-0.225,-2.374],[0,0],[-2.069,0.604]],"v":[[-7.32,-12.804],[-4.493,-4.13],[-1.203,-2.284],[-1.203,-2.284],[0.945,-5.281],[0.084,-14.372],[-4.754,-17.655],[-4.754,-17.655]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[556.161,608.722],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.254,-1.548],[0.689,-4.256],[0.905,2.629],[0.62,2.213],[-1.522,0.292]],"o":[[0,0],[-0.398,2.459],[-0.954,-2.77],[-0.62,-2.213],[1.818,-0.349]],"v":[[-0.217,-16.268],[-0.195,-7.742],[-4.239,-6.463],[-7.178,-15.431],[-4.408,-18.984]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[557.982,618.155],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[557.982,618.155],"ix":2},"a":{"a":0,"k":[557.982,618.155],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-0.917,-2.173],[0,0],[-1.51,0.496],[0,0],[0.273,1.509],[0,0],[2.437,-0.94],[0,0]],"o":[[0,0],[0.618,1.463],[0,0],[1.457,-0.478],[0,0],[-0.465,-2.57],[0,0],[-2.203,0.85]],"v":[[-5.093,-6.066],[-1.206,3.141],[2.555,4.851],[2.555,4.851],[4.623,1.381],[2.843,-8.461],[-2.741,-11.596],[-2.741,-11.596]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[563.255,610.712],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.402,-1.67],[-1.77,-5.008],[0.076,3.167],[0.315,2.498],[1.079,-0.213]],"o":[[0,0],[0.909,2.572],[-0.102,-4.219],[-0.315,-2.498],[-1.926,0.38]],"v":[[-3.836,-7.748],[-0.97,2.912],[3.163,2.038],[2.301,-8.551],[-1.135,-11.485]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[565.617,620.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 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[565.617,620.907],"ix":2},"a":{"a":0,"k":[565.617,620.907],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.591,-2.35],[0,0],[-1.612,0.267],[0,0],[0.041,1.575],[0,0],[2.622,-0.573],[0,0]],"o":[[0,0],[0.398,1.583],[0,0],[1.555,-0.257],[0,0],[-0.069,-2.683],[0,0],[-2.37,0.518]],"v":[[-5.583,-5.756],[-3.079,4.204],[0.473,6.531],[0.473,6.531],[3.117,3.331],[2.853,-6.944],[-2.327,-11.004],[-2.327,-11.004]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[570.033,608.464],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.014,-1.765],[0.165,-3.48],[1.459,3.875],[0.265,2.573],[-1.731,-0.22]],"o":[[0,0],[-0.132,2.8],[-1.706,-4.531],[-0.265,-2.573],[1.487,0.189]],"v":[[1.915,-8.621],[1.756,5.168],[-2.657,5.002],[-4.489,-8.687],[-0.737,-12.099]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[571.249,620.534],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[571.249,620.534],"ix":2},"a":{"a":0,"k":[571.249,620.534],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.761,-2.301],[0,0],[-1.588,0.384],[0,0],[0.156,1.568],[0,0],[2.573,-0.763],[0,0]],"o":[[0,0],[0.513,1.55],[0,0],[1.532,-0.37],[0,0],[-0.265,-2.671],[0,0],[-2.326,0.69]],"v":[[-11.969,-3.658],[-8.743,6.091],[-5.03,8.152],[-5.03,8.152],[-2.628,4.767],[-4.058,-5.32],[-9.106,-9.131],[-9.106,-9.131]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[576.195,604.316],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.1,-1.762],[-0.061,-3.483],[1.526,4.254],[0,0],[-2.17,-0.069]],"o":[[0,0],[0.049,2.803],[-1.776,-4.95],[-0.345,-1.94],[1.498,0.048]],"v":[[-4.024,-5.882],[-3.813,5.49],[-8.115,5.197],[-10.419,-5.534],[-6.895,-9.181]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[577.668,615.328],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[577.668,615.328],"ix":2},"a":{"a":0,"k":[577.668,615.328],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":28,"ty":4,"nm":"cang tay L 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[12]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[26.507]},{"t":80,"s":[6.42]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":41,"s":[721.461,929.689,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.167,"y":0.167},"t":61,"s":[721.461,929.689,0],"to":[0,0,0],"ti":[0,0,0]},{"t":80,"s":[721.461,929.689,0]}],"ix":2,"l":2},"a":{"a":0,"k":[19.066,43.66,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[-10.889,4.261],[-3.936,-10.973],[-8.312,-39.499],[-4.25,-10.681],[4.135,-2.283],[0,0],[2.536,4.463],[14.153,21.821],[2.314,7.302]],"o":[[11.313,-4.427],[5.179,14.438],[2.183,10.372],[1.746,4.389],[0,0],[-4.494,2.481],[-5.414,-9.53],[-11.349,-17.498],[-2.779,-8.77]],"v":[[-22.298,-59.573],[0.701,-48.03],[18.084,4.97],[28.359,37.122],[25.642,52.698],[23.48,53.349],[10.757,47.489],[-13.629,5.588],[-30.958,-36.656]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[-10.889,4.261],[-3.936,-10.973],[-8.312,-39.499],[-4.25,-10.681],[4.135,-2.283],[0,0],[2.536,4.463],[14.153,21.821],[2.314,7.302]],"o":[[11.313,-4.427],[5.179,14.438],[2.183,10.372],[1.746,4.389],[0,0],[-4.494,2.481],[-5.414,-9.53],[-11.349,-17.498],[-2.779,-8.77]],"v":[[-22.298,-59.573],[0.701,-48.03],[18.084,4.97],[28.359,37.122],[25.642,52.698],[23.48,53.349],[10.757,47.489],[-13.629,5.588],[-30.958,-36.656]],"c":true}]},{"t":80,"s":[{"i":[[-10.383,5.216],[-4.289,-10.84],[-3.106,-14.752],[-4.25,-10.681],[4.135,-2.283],[0,0],[2.536,4.463],[6.863,12.737],[2.314,7.302]],"o":[[12.416,-6.237],[3.565,9.012],[2.184,10.372],[1.746,4.389],[0,0],[-4.494,2.481],[-5.414,-9.53],[-3.743,-6.947],[-2.779,-8.77]],"v":[[-15.073,-35.606],[11.659,-19.954],[18.084,4.97],[28.359,37.122],[25.642,52.698],[23.48,53.349],[10.757,47.489],[-10.293,11.754],[-21.064,-9.09]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"cang tay L","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":29,"ty":4,"nm":"canh tay L 2","parent":28,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[-0.718]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[31.645]},{"t":80,"s":[127.841]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[-16.281,-42.708,0],"to":[-0.298,0.149,0],"ti":[-1.404,-2.976,0]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[-18.07,-41.815,0],"to":[1.404,2.976,0],"ti":[-1.702,-2.827,0]},{"t":80,"s":[-7.859,-24.85,0]}],"ix":2,"l":2},"a":{"a":0,"k":[16.274,51.238,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41,"s":[{"i":[[-18.385,3.815],[-6.789,-7.255],[0.905,-21.562],[-4.268,-19.033],[-2.041,-12.759],[7.521,-1.68],[4.125,8.742],[10.123,34.963]],"o":[[11.247,-2.334],[6.33,6.764],[-0.291,6.934],[5.002,22.307],[2.267,14.168],[-9.698,2.166],[-4.406,-9.34],[-15.719,-25.03]],"v":[[-15.917,-70.448],[12.138,-64.99],[21.086,-24.06],[25.265,2.523],[31.426,42.66],[20.342,63.826],[0.41,52.562],[-27.179,-17.325]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":61,"s":[{"i":[[-22.017,6.643],[-6.405,-9.117],[0.397,-8.005],[-1.629,-10.279],[-2.041,-12.759],[7.521,-1.68],[4.962,8.296],[9.836,25.317]],"o":[[11.582,-3.494],[5.89,8.383],[-0.344,6.932],[1.676,10.573],[2.267,14.168],[-9.698,2.166],[-4.893,-8.181],[-10.974,-25.28]],"v":[[-6.701,-43.828],[21.289,-33.215],[24.113,-7.612],[27.746,18.191],[31.426,42.66],[20.342,63.826],[0.41,52.562],[-18.016,14.119]],"c":true}]},{"t":80,"s":[{"i":[[-28.297,7.133],[-6.405,-9.117],[0.397,-8.005],[-1.629,-10.279],[-2.041,-12.759],[7.521,-1.68],[4.962,8.296],[9.836,25.317]],"o":[[11.73,-2.957],[5.89,8.383],[-0.344,6.932],[1.676,10.573],[2.267,14.168],[-9.698,2.166],[-4.893,-8.181],[-10.974,-25.28]],"v":[[-7.293,-45.869],[19.604,-32.794],[24.113,-7.612],[27.746,18.191],[31.426,42.66],[20.51,64.535],[0.41,52.562],[-16.863,13.869]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"canh tay L","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":41,"op":88,"st":-3,"bm":0},{"ddd":0,"ind":30,"ty":4,"nm":"tay R 3","parent":31,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[0.634]},"o":{"x":[0.333],"y":[0]},"t":88,"s":[-85.119]},{"i":{"x":[0.667],"y":[0.576]},"o":{"x":[0.333],"y":[0.469]},"t":108,"s":[-27.028]},{"i":{"x":[0.667],"y":[0.963]},"o":{"x":[0.333],"y":[0.221]},"t":118,"s":[-4.342]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[-0.111]},"t":123,"s":[17.419]},{"i":{"x":[0.667],"y":[0.286]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[-1.178]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[12.742]},"t":141,"s":[-0.063]},{"t":146,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.462},"o":{"x":0.333,"y":0},"t":88,"s":[22.233,54.648,0],"to":[-0.109,-0.645,0],"ti":[0.381,2.25,0]},{"i":{"x":0.667,"y":0.969},"o":{"x":0.333,"y":0.039},"t":108,"s":[21.403,49.748,0],"to":[-0.336,-1.988,0],"ti":[0.271,1.602,0]},{"i":{"x":0.667,"y":0.658},"o":{"x":0.333,"y":0.022},"t":123,"s":[4.355,0.581,0],"to":[-0.104,-0.616,0],"ti":[-3.754,-9.918,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.778},"t":129,"s":[13.594,28.207,0],"to":[4.122,10.891,0],"ti":[0.012,0.071,0]},{"i":{"x":0.667,"y":0.987},"o":{"x":0.167,"y":0},"t":136,"s":[20.03,41.633,0],"to":[-0.367,-2.169,0],"ti":[0.271,1.602,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.011},"t":141,"s":[2.153,3.246,0],"to":[-0.219,-1.293,0],"ti":[-3.167,-7.387,0]},{"t":146,"s":[21.156,47.565,0]}],"ix":2,"l":2},"a":{"a":0,"k":[500.557,590.902,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":108,"s":[{"i":[[-1.483,-2.712],[-0.056,-6.858],[0.873,2.074],[1.186,3.485],[0.113,5.481],[-7.221,3.613]],"o":[[0.403,0.737],[0.012,1.431],[-0.78,-1.853],[-1.125,-3.304],[-0.087,-4.208],[6.257,-3.131]],"v":[[3.296,-15.026],[10.746,13.358],[-10.322,20.421],[-13.497,13.835],[-18.552,-5.758],[-10.909,-20.081]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":123,"s":[{"i":[[-1.483,-2.712],[-1.06,-5.462],[0.873,2.074],[1.186,3.485],[-1.929,4.786],[-7.221,3.613]],"o":[[0.403,0.737],[0.273,1.405],[-0.78,-1.853],[-1.125,-3.304],[1.435,-3.561],[6.257,-3.131]],"v":[[4.195,-14.953],[16.169,12.079],[-13.351,19.091],[-18.91,9.133],[-18.589,-3.846],[-10.824,-19.414]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-1.483,-2.712],[-0.056,-6.858],[0.873,2.074],[1.186,3.485],[0.113,5.481],[-7.221,3.613]],"o":[[0.403,0.737],[0.012,1.431],[-0.78,-1.853],[-1.125,-3.304],[-0.087,-4.208],[6.257,-3.131]],"v":[[3.296,-15.026],[10.746,13.358],[-10.322,20.422],[-13.497,13.835],[-18.552,-5.758],[-10.909,-20.081]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":141,"s":[{"i":[[-1.483,-2.712],[-1.06,-5.462],[0.873,2.074],[1.186,3.485],[-1.929,4.786],[-7.221,3.613]],"o":[[0.403,0.737],[0.273,1.405],[-0.78,-1.853],[-1.125,-3.304],[1.435,-3.561],[6.257,-3.131]],"v":[[4.195,-14.953],[16.169,12.079],[-13.351,19.091],[-18.91,9.133],[-18.589,-3.846],[-10.824,-19.414]],"c":true}]},{"t":146,"s":[{"i":[[-1.483,-2.712],[-1.06,-5.462],[0.873,2.074],[1.186,3.485],[-0.903,5.579],[-7.221,3.613]],"o":[[0.403,0.737],[0.273,1.405],[-0.78,-1.853],[-1.125,-3.304],[0.672,-4.155],[6.257,-3.131]],"v":[[3.296,-15.026],[17.279,11.77],[-11.937,20.729],[-15.083,14.597],[-17.028,-4.641],[-10.909,-20.081]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[508.08,604.99],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":108,"s":[{"i":[[-1.034,-2.029],[0,0],[-1.421,0.582],[0,0],[0.367,1.435],[0,0],[2.282,-1.074],[0,0]],"o":[[0,0],[0.696,1.367],[0,0],[1.37,-0.561],[0,0],[-0.625,-2.443],[0,0],[-2.063,0.971]],"v":[[-3.412,-3.265],[0.967,5.334],[4.708,6.721],[4.708,6.721],[6.46,3.236],[4.066,-6.12],[-1.529,-8.755],[-1.529,-8.755]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":123,"s":[{"i":[[-0.667,-2.703],[0,0],[-1.399,0.631],[0,0],[0.418,1.421],[0,0],[2.243,-1.154],[0,0]],"o":[[0,0],[0.744,1.341],[0,0],[1.35,-0.609],[0,0],[-0.711,-2.42],[0,0],[-2.027,1.043]],"v":[[-10.87,-9.889],[-7.539,-1.713],[-1.877,-0.405],[-1.877,-0.405],[-0.249,-3.949],[-2.972,-13.216],[-9.701,-17.077],[-10.146,-16.982]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-1.034,-2.029],[0,0],[-1.421,0.582],[0,0],[0.367,1.435],[0,0],[2.282,-1.074],[0,0]],"o":[[0,0],[0.696,1.367],[0,0],[1.37,-0.561],[0,0],[-0.625,-2.443],[0,0],[-2.063,0.971]],"v":[[-3.412,-3.265],[0.967,5.334],[4.708,6.721],[4.708,6.721],[6.46,3.236],[4.066,-6.12],[-1.529,-8.755],[-1.529,-8.755]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":141,"s":[{"i":[[-0.667,-2.703],[0,0],[-1.399,0.631],[0,0],[0.418,1.421],[0,0],[2.243,-1.154],[0,0]],"o":[[0,0],[0.744,1.341],[0,0],[1.35,-0.609],[0,0],[-0.711,-2.42],[0,0],[-2.027,1.043]],"v":[[-10.87,-9.889],[-7.539,-1.713],[-1.877,-0.405],[-1.877,-0.405],[-0.249,-3.949],[-2.972,-13.216],[-9.701,-17.077],[-10.146,-16.982]],"c":true}]},{"t":146,"s":[{"i":[[-0.883,-2.099],[0,0],[-1.459,0.477],[0,0],[0.262,1.458],[0,0],[2.354,-0.906],[0,0]],"o":[[0,0],[0.595,1.414],[0,0],[1.408,-0.46],[0,0],[-0.446,-2.482],[0,0],[-2.128,0.818]],"v":[[-4.552,-2.544],[-0.81,6.35],[2.821,8.006],[2.821,8.006],[4.822,4.658],[3.114,-4.848],[-2.275,-7.883],[-2.275,-7.883]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[499.915,626.41],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":108,"s":[{"i":[[-0.197,-1.647],[-0.196,-4.694],[1.791,3.214],[0.553,2.367],[-1.64,0.001]],"o":[[0,0],[0.11,2.632],[-1.508,-2.707],[-0.553,-2.367],[1.408,0]],"v":[[4.652,-6.2],[5.477,4.321],[1.647,4.374],[-1.326,-5.5],[1.766,-9.126]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":123,"s":[{"i":[[-0.255,-1.639],[0.979,-4.595],[1.179,3.516],[0.636,2.346],[-1.639,0.058]],"o":[[0,0],[-0.549,2.577],[-0.985,-2.938],[-0.636,-2.346],[1.407,-0.05]],"v":[[-2.039,-13.391],[-1.562,-1.325],[-6.617,-2.335],[-9.895,-13.122],[-5.026,-16.213]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-0.197,-1.647],[-0.196,-4.694],[1.791,3.214],[0.553,2.367],[-1.64,0.001]],"o":[[0,0],[0.11,2.632],[-1.508,-2.707],[-0.553,-2.367],[1.408,0]],"v":[[4.652,-6.2],[5.477,4.321],[1.647,4.374],[-1.326,-5.5],[1.766,-9.126]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":141,"s":[{"i":[[-0.255,-1.639],[0.979,-4.595],[1.179,3.516],[0.636,2.346],[-1.639,0.058]],"o":[[0,0],[-0.549,2.577],[-0.985,-2.938],[-0.636,-2.346],[1.407,-0.05]],"v":[[-2.039,-13.391],[-1.562,-1.325],[-6.617,-2.335],[-9.895,-13.122],[-5.026,-16.213]],"c":true}]},{"t":146,"s":[{"i":[[-0.077,-1.657],[0.146,-4.696],[1.553,3.336],[0.38,2.401],[-1.635,-0.119]],"o":[[0,0],[-0.082,2.633],[-1.308,-2.809],[-0.38,-2.401],[1.405,0.102]],"v":[[2.973,-4.772],[3.032,5.781],[-0.792,5.556],[-3.039,-4.507],[0.308,-7.9]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[501.842,636.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},{"ty":"tr","p":{"a":0,"k":[501.842,636.388],"ix":2},"a":{"a":0,"k":[501.842,636.388],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":108,"s":[{"i":[[-0.97,-2.298],[0,0],[-1.598,0.524],[0,0],[0.289,1.596],[0,0],[2.577,-0.995],[0,0]],"o":[[0,0],[0.653,1.548],[0,0],[1.541,-0.506],[0,0],[-0.492,-2.718],[0,0],[-2.33,0.899]],"v":[[-4.205,-2.064],[-0.095,7.674],[3.884,9.483],[3.884,9.483],[6.071,5.813],[4.189,-4.597],[-1.718,-7.914],[-1.718,-7.914]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":123,"s":[{"i":[[-1.548,-1.957],[0,0],[-1.4,0.931],[0,0],[0.704,1.462],[0,0],[2.219,-1.646],[0,0]],"o":[[0,0],[1.042,1.318],[0,0],[1.351,-0.898],[0,0],[-1.198,-2.489],[0,0],[-2.006,1.487]],"v":[[-10.592,-3.023],[-4.035,5.267],[0.282,5.95],[0.282,5.95],[1.412,1.83],[-3.177,-7.702],[-9.753,-9.325],[-9.753,-9.325]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-0.97,-2.298],[0,0],[-1.598,0.524],[0,0],[0.289,1.596],[0,0],[2.577,-0.995],[0,0]],"o":[[0,0],[0.653,1.548],[0,0],[1.541,-0.506],[0,0],[-0.492,-2.718],[0,0],[-2.33,0.899]],"v":[[-4.205,-2.064],[-0.095,7.674],[3.884,9.483],[3.884,9.483],[6.071,5.813],[4.189,-4.597],[-1.718,-7.914],[-1.718,-7.914]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":141,"s":[{"i":[[-1.548,-1.957],[0,0],[-1.4,0.931],[0,0],[0.704,1.462],[0,0],[2.219,-1.646],[0,0]],"o":[[0,0],[1.042,1.318],[0,0],[1.351,-0.898],[0,0],[-1.198,-2.489],[0,0],[-2.006,1.487]],"v":[[-10.592,-3.023],[-4.035,5.267],[0.282,5.95],[0.282,5.95],[1.412,1.83],[-3.177,-7.702],[-9.753,-9.325],[-9.753,-9.325]],"c":true}]},{"t":146,"s":[{"i":[[-0.97,-2.298],[0,0],[-1.598,0.524],[0,0],[0.289,1.596],[0,0],[2.577,-0.995],[0,0]],"o":[[0,0],[0.653,1.548],[0,0],[1.541,-0.506],[0,0],[-0.492,-2.718],[0,0],[-2.33,0.899]],"v":[[-4.99,-2.78],[-0.88,6.957],[3.099,8.766],[3.099,8.766],[5.286,5.096],[3.404,-5.314],[-2.502,-8.63],[-2.502,-8.63]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[507.419,628.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 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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":108,"s":[{"i":[[-0.425,-1.767],[-1.872,-5.297],[0.081,3.35],[0.333,2.642],[1.141,-0.225]],"o":[[0,0],[0.961,2.721],[-0.108,-4.463],[-0.333,-2.642],[-2.037,0.402]],"v":[[-2.876,-3.844],[0.155,7.432],[4.527,6.507],[3.615,-4.693],[-0.019,-7.796]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":123,"s":[{"i":[[-0.88,-1.589],[-3.216,-4.607],[0.971,3.208],[1.025,2.458],[1.04,-0.521]],"o":[[0,0],[1.652,2.366],[-1.293,-4.273],[-1.025,-2.458],[-1.856,0.93]],"v":[[-7.001,-6.149],[-1.074,3.911],[2.893,1.855],[-0.971,-8.697],[-5.301,-10.72]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-0.425,-1.767],[-1.872,-5.297],[0.081,3.35],[0.333,2.642],[1.141,-0.225]],"o":[[0,0],[0.961,2.721],[-0.108,-4.463],[-0.333,-2.642],[-2.037,0.402]],"v":[[-2.876,-3.844],[0.155,7.432],[4.527,6.507],[3.615,-4.693],[-0.019,-7.796]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":141,"s":[{"i":[[-0.88,-1.589],[-3.216,-4.607],[0.971,3.208],[1.025,2.458],[1.04,-0.521]],"o":[[0,0],[1.652,2.366],[-1.293,-4.273],[-1.025,-2.458],[-1.856,0.93]],"v":[[-7.001,-6.149],[-1.074,3.911],[2.893,1.855],[-0.971,-8.697],[-5.301,-10.72]],"c":true}]},{"t":146,"s":[{"i":[[-0.425,-1.767],[-1.872,-5.297],[0.081,3.35],[0.333,2.642],[1.141,-0.225]],"o":[[0,0],[0.961,2.721],[-0.108,-4.463],[-0.333,-2.642],[-2.037,0.402]],"v":[[-3.66,-4.56],[-0.63,6.716],[3.742,5.791],[2.83,-5.409],[-0.804,-8.513]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[509.917,639.299],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[509.917,639.299],"ix":2},"a":{"a":0,"k":[509.917,639.299],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":108,"s":[{"i":[[-0.736,-2.456],[0,0],[-1.69,0.358],[0,0],[0.117,1.663],[0,0],[2.744,-0.73],[0,0]],"o":[[0,0],[0.495,1.654],[0,0],[1.631,-0.345],[0,0],[-0.2,-2.832],[0,0],[-2.48,0.66]],"v":[[-5.603,-1.757],[-2.486,8.648],[1.378,10.939],[1.378,10.939],[4.02,7.432],[3.254,-3.412],[-2.411,-7.456],[-2.411,-7.456]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":123,"s":[{"i":[[-1.274,-2.224],[0,0],[-1.565,0.733],[0,0],[0.492,1.593],[0,0],[2.506,-1.334],[0,0]],"o":[[0,0],[0.858,1.498],[0,0],[1.51,-0.707],[0,0],[-0.838,-2.712],[0,0],[-2.265,1.206]],"v":[[-9.995,-3.51],[-4.595,5.915],[-0.312,7.267],[-0.312,7.267],[1.465,3.252],[-1.746,-7.134],[-8.182,-9.786],[-8.182,-9.786]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-0.736,-2.456],[0,0],[-1.69,0.358],[0,0],[0.117,1.663],[0,0],[2.744,-0.73],[0,0]],"o":[[0,0],[0.495,1.654],[0,0],[1.631,-0.345],[0,0],[-0.2,-2.832],[0,0],[-2.48,0.66]],"v":[[-5.603,-1.757],[-2.486,8.648],[1.378,10.939],[1.378,10.939],[4.02,7.432],[3.254,-3.412],[-2.411,-7.456],[-2.411,-7.456]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":141,"s":[{"i":[[-1.274,-2.224],[0,0],[-1.565,0.733],[0,0],[0.492,1.593],[0,0],[2.506,-1.334],[0,0]],"o":[[0,0],[0.858,1.498],[0,0],[1.51,-0.707],[0,0],[-0.838,-2.712],[0,0],[-2.265,1.206]],"v":[[-9.995,-3.51],[-4.595,5.915],[-0.312,7.267],[-0.312,7.267],[1.465,3.252],[-1.746,-7.134],[-8.182,-9.786],[-8.182,-9.786]],"c":true}]},{"t":146,"s":[{"i":[[-0.625,-2.486],[0,0],[-1.705,0.282],[0,0],[0.043,1.666],[0,0],[2.774,-0.606],[0,0]],"o":[[0,0],[0.421,1.674],[0,0],[1.644,-0.272],[0,0],[-0.073,-2.838],[0,0],[-2.507,0.548]],"v":[[-4.533,-3.691],[-1.885,6.843],[1.873,9.304],[1.873,9.304],[4.669,5.919],[4.389,-4.948],[-1.089,-9.243],[-1.089,-9.243]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[514.588,626.138],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":108,"s":[{"i":[[-0.069,-1.866],[0.009,-3.685],[1.725,4.026],[0.402,2.707],[-1.839,-0.151]],"o":[[0,0],[-0.007,2.965],[-2.017,-4.706],[-0.402,-2.707],[1.58,0.13]],"v":[[2.755,-5.21],[3.24,9.368],[-1.431,9.402],[-4.015,-4.977],[-0.212,-8.759]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":123,"s":[{"i":[[-0.491,-1.801],[-0.829,-3.59],[2.595,3.528],[1.006,2.544],[-1.826,0.271]],"o":[[0,0],[0.667,2.889],[-3.034,-4.125],[-1.006,-2.544],[1.568,-0.233]],"v":[[0.226,-9.398],[4.011,4.688],[-0.53,5.783],[-6.313,-7.632],[-3.469,-12.18]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-0.069,-1.866],[0.009,-3.685],[1.725,4.026],[0.402,2.707],[-1.839,-0.151]],"o":[[0,0],[-0.007,2.965],[-2.017,-4.706],[-0.402,-2.707],[1.58,0.13]],"v":[[2.755,-5.21],[3.24,9.368],[-1.431,9.402],[-4.015,-4.977],[-0.212,-8.759]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":141,"s":[{"i":[[-0.491,-1.801],[-0.829,-3.59],[2.595,3.528],[1.006,2.544],[-1.826,0.271]],"o":[[0,0],[0.667,2.889],[-3.034,-4.125],[-1.006,-2.544],[1.568,-0.233]],"v":[[0.226,-9.398],[4.011,4.688],[-0.53,5.783],[-6.313,-7.632],[-3.469,-12.18]],"c":true}]},{"t":146,"s":[{"i":[[0.015,-1.867],[0.174,-3.681],[1.543,4.099],[0.28,2.722],[-1.831,-0.233]],"o":[[0,0],[-0.14,2.962],[-1.804,-4.792],[-0.28,-2.722],[1.572,0.2]],"v":[[3.398,-6.722],[3.229,7.862],[-1.439,7.687],[-3.376,-6.792],[0.593,-10.401]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[515.874,638.904],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[515.874,638.904],"ix":2},"a":{"a":0,"k":[515.874,638.904],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":108,"s":[{"i":[[-0.91,-2.396],[0,0],[-1.66,0.479],[0,0],[0.237,1.65],[0,0],[2.684,-0.925],[0,0]],"o":[[0,0],[0.613,1.614],[0,0],[1.602,-0.462],[0,0],[-0.403,-2.81],[0,0],[-2.426,0.836]],"v":[[-11.15,0.915],[-7.292,11.068],[-3.274,13.075],[-3.274,13.075],[-0.891,9.388],[-2.334,-3.332],[-8.376,-5],[-8.376,-5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":123,"s":[{"i":[[-1.382,-2.159],[0,0],[-1.527,0.809],[0,0],[0.57,1.567],[0,0],[2.438,-1.455],[0,0]],"o":[[0,0],[0.931,1.454],[0,0],[1.473,-0.78],[0,0],[-0.97,-2.668],[0,0],[-2.203,1.315]],"v":[[-10.547,-0.78],[-4.692,8.368],[-0.347,9.509],[-0.347,9.509],[1.23,5.412],[-2.486,-4.804],[-9.044,-7.137],[-9.044,-7.137]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-0.91,-2.396],[0,0],[-1.66,0.479],[0,0],[0.237,1.65],[0,0],[2.684,-0.925],[0,0]],"o":[[0,0],[0.613,1.614],[0,0],[1.602,-0.462],[0,0],[-0.403,-2.81],[0,0],[-2.426,0.836]],"v":[[-11.15,0.915],[-7.292,11.068],[-3.274,13.075],[-3.274,13.075],[-0.891,9.388],[-2.334,-3.332],[-8.376,-5],[-8.376,-5]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":141,"s":[{"i":[[-1.382,-2.159],[0,0],[-1.527,0.809],[0,0],[0.57,1.567],[0,0],[2.438,-1.455],[0,0]],"o":[[0,0],[0.931,1.454],[0,0],[1.473,-0.78],[0,0],[-0.97,-2.668],[0,0],[-2.203,1.315]],"v":[[-10.547,-0.78],[-4.692,8.368],[-0.347,9.509],[-0.347,9.509],[1.23,5.412],[-2.486,-4.804],[-9.044,-7.137],[-9.044,-7.137]],"c":true}]},{"t":146,"s":[{"i":[[-0.73,-2.457],[0,0],[-1.691,0.354],[0,0],[0.114,1.663],[0,0],[2.745,-0.723],[0,0]],"o":[[0,0],[0.492,1.655],[0,0],[1.631,-0.342],[0,0],[-0.194,-2.832],[0,0],[-2.481,0.654]],"v":[[-4.71,-3.469],[-1.617,6.943],[2.241,9.242],[2.241,9.242],[4.891,5.742],[4.15,-5.104],[-1.506,-9.162],[-1.506,-9.162]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[521.105,621.751],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":108,"s":[{"i":[[-0.187,-1.858],[-0.224,-3.678],[1.809,4.425],[0,0],[-2.296,0.027]],"o":[[0,0],[0.181,2.96],[-2.105,-5.148],[-0.454,-2.034],[1.585,-0.019]],"v":[[-2.351,-1.88],[-1.604,10.128],[-6.164,10.016],[-9.093,-1.218],[-5.537,-5.234]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":123,"s":[{"i":[[-0.563,-1.78],[-0.973,-3.554],[2.677,3.961],[0,0],[-2.242,0.497]],"o":[[0,0],[0.783,2.86],[-3.114,-4.608],[-0.861,-1.898],[1.548,-0.343]],"v":[[-0.155,-5.883],[3.036,5.717],[-1.451,6.542],[-6.618,-3.854],[-3.96,-8.513]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-0.187,-1.858],[-0.224,-3.678],[1.809,4.425],[0,0],[-2.296,0.027]],"o":[[0,0],[0.181,2.96],[-2.105,-5.148],[-0.454,-2.034],[1.585,-0.019]],"v":[[-2.351,-1.88],[-1.604,10.128],[-6.164,10.016],[-9.093,-1.218],[-5.537,-5.234]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":141,"s":[{"i":[[-0.563,-1.78],[-0.973,-3.554],[2.677,3.961],[0,0],[-2.242,0.497]],"o":[[0,0],[0.783,2.86],[-3.114,-4.608],[-0.861,-1.898],[1.548,-0.343]],"v":[[-0.155,-5.883],[3.036,5.717],[-1.451,6.542],[-6.618,-3.854],[-3.96,-8.513]],"c":true}]},{"t":146,"s":[{"i":[[-0.048,-1.866],[0.049,-3.684],[1.475,4.547],[0,0],[-2.292,-0.144]],"o":[[0,0],[-0.04,2.965],[-1.716,-5.29],[-0.302,-2.062],[1.582,0.099]],"v":[[3.402,-5.519],[3.256,6.511],[-1.283,6.061],[-3.37,-5.36],[0.474,-9.1]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[522.663,633.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 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[522.663,633.398],"ix":2},"a":{"a":0,"k":[522.663,633.398],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":108,"s":[{"i":[[0.371,4.367],[-1.389,-2.26],[-0.477,-8.059],[-0.47,-7.291],[1.41,1.177],[0.925,2.438],[0.95,0.426]],"o":[[-0.676,-7.953],[4.514,7.343],[0.245,4.138],[0.23,3.565],[-2.64,-2.204],[-1.154,-3.041],[-0.95,-0.426]],"v":[[-11.308,-4.839],[-3.231,-15.643],[2.959,1.045],[4.093,14.429],[0.278,15.754],[-3.25,8.704],[-6.104,2.449]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":123,"s":[{"i":[[1.267,4.196],[-1.814,-1.936],[-3.013,-7.377],[-1.968,-7.036],[1.187,1.964],[1.171,2.331],[1.018,0.22]],"o":[[-2.306,-7.641],[4.19,4.471],[1.567,3.837],[0.962,3.44],[-1.529,-2.531],[-1.461,-2.908],[-1.018,-0.22]],"v":[[-6.126,-3.405],[-0.458,-15.646],[8.791,-0.655],[12.427,12.064],[9.32,13.772],[5.953,7.569],[2.734,1.997]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[0.371,4.367],[-1.389,-2.26],[-0.477,-8.059],[-0.47,-7.291],[1.41,1.177],[0.925,2.438],[0.95,0.426]],"o":[[-0.676,-7.953],[4.514,7.343],[0.245,4.138],[0.23,3.565],[-2.64,-2.204],[-1.154,-3.041],[-0.95,-0.426]],"v":[[-11.308,-4.839],[-3.231,-15.643],[2.959,1.045],[4.093,14.429],[0.278,15.754],[-3.25,8.704],[-6.104,2.449]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":141,"s":[{"i":[[1.267,4.196],[-1.814,-1.936],[-3.013,-7.377],[-1.968,-7.036],[1.187,1.964],[1.171,2.331],[1.018,0.22]],"o":[[-2.306,-7.641],[4.19,4.471],[1.567,3.837],[0.962,3.44],[-1.529,-2.531],[-1.461,-2.908],[-1.018,-0.22]],"v":[[-6.126,-3.405],[-0.458,-15.646],[8.791,-0.655],[12.427,12.064],[9.32,13.772],[5.953,7.569],[2.734,1.997]],"c":true}]},{"t":146,"s":[{"i":[[0.551,4.348],[-1.482,-2.201],[-0.81,-8.032],[-0.771,-7.265],[1.458,1.118],[1.025,2.398],[0.967,0.386]],"o":[[-1.004,-7.918],[4.814,7.15],[0.416,4.124],[0.377,3.552],[-2.729,-2.093],[-1.279,-2.991],[-0.967,-0.386]],"v":[[-8.062,-4.745],[-0.439,-15.873],[6.436,0.544],[8.122,13.869],[4.366,15.351],[0.55,8.453],[-2.562,2.321]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[515.874,617.947],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":31,"ty":4,"nm":"cang tay R 3","parent":32,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[-0.085]},"o":{"x":[0.333],"y":[0]},"t":88,"s":[18.956]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[-0.324]},"t":108,"s":[14.587]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[35.048]},{"t":146,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.5},"o":{"x":0.333,"y":0},"t":88,"s":[-2.557,63.789,0],"to":[-0.123,-0.866,0],"ti":[0.307,2.165,0]},{"i":{"x":0.667,"y":0.982},"o":{"x":0.333,"y":0.018},"t":108,"s":[-3.294,58.593,0],"to":[-0.188,-1.324,0],"ti":[-2.272,0.135,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.017},"t":123,"s":[-0.578,-51.534,0],"to":[1.122,-0.067,0],"ti":[0.048,0.336,0]},{"i":{"x":0.615,"y":0.725},"o":{"x":0.17,"y":0},"t":136,"s":[-2.36,49.187,0],"to":[-0.199,-1.405,0],"ti":[-1.147,24.663,0]},{"i":{"x":0.69,"y":0.988},"o":{"x":0.351,"y":0.574},"t":140,"s":[-2.425,-41.841,0],"to":[0.266,-5.728,0],"ti":[-0.428,0.026,0]},{"i":{"x":0.667,"y":0.489},"o":{"x":0.333,"y":0.006},"t":141,"s":[-0.578,-51.534,0],"to":[0.248,-0.015,0],"ti":[0.702,-10.594,0]},{"i":{"x":0.667,"y":0.683},"o":{"x":0.333,"y":0.331},"t":142,"s":[-2.737,-31.124,0],"to":[-0.692,10.443,0],"ti":[0.377,-10.123,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.572},"t":143,"s":[-3.49,0.577,0],"to":[-0.969,26.06,0],"ti":[0.323,-9.811,0]},{"t":146,"s":[-4.031,53.399,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-19.25,-49.25,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[-11.355,4.444],[-4.105,-11.443],[-8.668,-41.191],[-4.432,-11.138],[4.312,-2.38],[0,0],[3.265,4.242],[13.357,23.003],[2.413,7.614]],"o":[[11.798,-4.617],[5.401,15.057],[2.276,10.817],[1.821,4.577],[0,0],[-4.686,2.587],[-7.505,-9.748],[-10.921,-18.809],[-2.898,-9.145]],"v":[[-23.253,-62.124],[0.731,-50.087],[19.408,8.397],[34.232,49.13],[29.962,61.664],[29.721,61.727],[15.648,58.227],[-15.098,8.421],[-33.203,-38.163]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":108,"s":[{"i":[[-11.355,4.444],[-4.105,-11.443],[-8.668,-41.191],[-4.432,-11.138],[4.312,-2.38],[0,0],[2.955,4.448],[14.058,22.879],[2.413,7.614]],"o":[[11.798,-4.617],[5.401,15.057],[2.276,10.817],[1.821,4.577],[0,0],[-4.686,2.587],[-6.575,-9.843],[-11.378,-18.528],[-2.898,-9.145]],"v":[[-23.253,-62.124],[0.731,-50.087],[19.408,8.397],[34.012,49.769],[29.695,62.122],[29.574,62.153],[15.924,58.543],[-14.949,8.253],[-33.203,-38.163]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":123,"s":[{"i":[[-11.355,4.444],[-5.03,-11.046],[-0.676,-4.559],[-0.531,-9.51],[4.893,-1.836],[0,0],[3.261,4.236],[7.028,7.361],[2.413,7.614]],"o":[[11.798,-4.617],[6.337,13.977],[1.655,11.157],[0.274,4.913],[0,0],[-4.686,2.587],[-6.452,-8.383],[-10.042,-10.517],[-2.898,-9.145]],"v":[[-22.666,-62.473],[6.208,-52.823],[11.87,-27.847],[15.159,4.061],[7.344,15.41],[7.725,15.417],[-9.288,11.206],[-22.937,-8.595],[-38.483,-35.558]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-11.355,4.444],[-5.469,-10.857],[-7.907,-39.887],[-3.337,-11.462],[4.312,-2.38],[0,0],[2.644,4.654],[14.759,22.756],[2.413,7.614]],"o":[[11.798,-4.617],[6.782,13.464],[2.149,10.842],[1.377,4.729],[0,0],[-4.686,2.587],[-5.646,-9.938],[-11.835,-18.248],[-2.898,-9.145]],"v":[[-22.387,-62.639],[1.543,-50.876],[22.719,7.566],[32.257,49.86],[28.988,61.812],[29.065,61.911],[16.99,58.244],[-11.904,6.31],[-32.557,-38.35]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":141,"s":[{"i":[[-11.355,4.444],[-5.03,-11.046],[-0.676,-4.559],[-0.531,-9.51],[4.893,-1.836],[0,0],[3.261,4.236],[7.343,7.047],[1.114,8.961]],"o":[[11.798,-4.617],[6.337,13.977],[1.655,11.157],[0.274,4.913],[0,0],[-4.686,2.587],[-6.452,-8.383],[-10.483,-10.06],[-1.184,-9.52]],"v":[[-22.666,-62.473],[5.463,-52.559],[11.87,-27.847],[15.159,4.061],[7.344,15.41],[7.725,15.417],[-7.107,14.292],[-23.56,-8.459],[-37.494,-36.201]],"c":true}]},{"t":146,"s":[{"i":[[-11.355,4.444],[-4.105,-11.443],[-8.668,-41.191],[-4.432,-11.138],[4.312,-2.38],[0,0],[2.644,4.654],[14.759,22.756],[2.413,7.614]],"o":[[11.798,-4.617],[5.401,15.057],[2.276,10.817],[1.821,4.577],[0,0],[-4.686,2.587],[-5.646,-9.938],[-11.835,-18.248],[-2.898,-9.145]],"v":[[-23.253,-62.124],[0.731,-50.087],[19.408,8.397],[33.791,50.409],[29.427,62.579],[29.427,62.579],[16.2,58.858],[-14.799,8.085],[-33.203,-38.163]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"cang tay R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":32,"ty":4,"nm":"canh tay R 3","parent":36,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[0.292]},"o":{"x":[0.333],"y":[0]},"t":88,"s":[-98.927]},{"i":{"x":[0.649],"y":[0.404]},"o":{"x":[0.301],"y":[0.19]},"t":108,"s":[-64.006]},{"i":{"x":[0.824],"y":[1]},"o":{"x":[0.41],"y":[0.391]},"t":118,"s":[-5.279]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[182.945]},{"t":146,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.5},"o":{"x":0.333,"y":0},"t":88,"s":[-1.628,-14.464,0],"to":[-0.045,-0.812,0],"ti":[0.112,2.029,0]},{"i":{"x":0.667,"y":0.533},"o":{"x":0.333,"y":0.23},"t":108,"s":[-1.896,-19.334,0],"to":[-0.04,-0.733,0],"ti":[-1.968,1.215,0]},{"i":{"x":0.667,"y":0.831},"o":{"x":0.333,"y":0.236},"t":118,"s":[-0.154,-24.071,0],"to":[1.039,-0.641,0],"ti":[-0.842,-1.04,0]},{"i":{"x":0.667,"y":0.913},"o":{"x":0.333,"y":0.126},"t":123,"s":[4.835,-24.105,0],"to":[1.764,2.179,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.951},"o":{"x":0.333,"y":0.033},"t":136,"s":[0.571,-6.577,0],"to":[0,0,0],"ti":[-0.842,-1.04,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.109},"t":141,"s":[4.835,-24.105,0],"to":[1.764,2.179,0],"ti":[1.167,0.016,0]},{"t":146,"s":[-2.165,-24.202,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-0.25,-54,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[12.652,0.842],[-6.176,-42.671],[-2.37,-19.857],[-2.485,-15.5],[-8.034,0.221],[-2.311,14.912],[-2.115,21.183],[0.012,23.928]],"o":[[-25.595,-1.704],[0.901,6.226],[2.825,23.672],[2.369,14.774],[10.359,-0.284],[2.328,-15.027],[1.93,-19.325],[-0.009,-18.526]],"v":[[1.915,-76.389],[-29.098,-19.623],[-26.641,12.564],[-18.953,69.513],[-0.191,86.799],[16.915,67.776],[24.193,-2.573],[35.59,-45.829]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":108,"s":[{"i":[[14.955,-1.608],[-7.597,-41.048],[-1.455,-20.095],[-2.485,-15.5],[-8.034,0.221],[-1,12.494],[-1.715,29.559],[1.721,18.279]],"o":[[-24.36,-0.359],[1.257,6.641],[1.729,23.752],[2.369,14.774],[10.359,-0.284],[0.952,-14.403],[3.07,-16.575],[-2.29,-14.136]],"v":[[2.425,-77.808],[-27.722,-19.582],[-25.517,10.956],[-19.126,63.483],[-0.66,81.373],[16.791,62.753],[25.353,-11.323],[31.253,-55.11]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":118,"s":[{"i":[[10.191,0.309],[-6.505,-28.847],[-1.075,-8.248],[-1.19,-6.089],[-7.278,-0.16],[-2.554,9.706],[-1.618,13.819],[1.224,8.931]],"o":[[-23.782,-2.023],[0.58,3.303],[1.447,10.204],[3.448,11.706],[10.559,0.265],[1.928,-8.127],[1.706,-8.112],[-1.596,-17.55]],"v":[[1.68,-79.768],[-27.419,-31.694],[-25.261,-18.08],[-19.907,5.366],[-0.535,18.644],[19.47,3.584],[25.653,-31.324],[26.722,-54.728]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":123,"s":[{"i":[[9.828,0.35],[-5.959,-22.747],[-0.885,-2.324],[-0.542,-1.383],[-6.9,-0.35],[-3.331,8.312],[-1.57,5.949],[0.581,4.653]],"o":[[-19.18,-1.266],[0.242,1.634],[1.306,3.43],[3.988,10.173],[10.659,0.54],[2.416,-4.989],[1.024,-3.881],[-1.168,-9.355]],"v":[[-1.462,-76.497],[-27.268,-37.75],[-25.133,-32.599],[-20.298,-23.693],[-0.473,-12.721],[19.471,-26.138],[24.848,-41.119],[26.021,-55.847]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":129,"s":[{"i":[[10.394,0.285],[-12.531,-22.71],[-1.182,-11.564],[-1.553,-8.723],[-8.497,0.169],[-2.119,10.487],[-1.645,18.225],[2.652,10.649]],"o":[[-18.561,-1.392],[0.77,4.237],[1.526,13.997],[3.146,12.565],[10.493,-0.09],[1.655,-9.884],[2.088,-10.481],[-1.752,-11.841]],"v":[[1.186,-77.064],[-27.847,-30.717],[-25.504,-9.902],[-20.048,18.269],[-0.833,33.485],[18.471,16.159],[26.248,-26.332],[28.022,-54.334]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[16.764,-0.334],[-9.704,-42.01],[-1.455,-20.095],[-2.485,-15.5],[-9.97,0.648],[-1,12.494],[-1.715,29.559],[2.387,13.844]],"o":[[-21.732,0.673],[1.521,6.585],[1.729,23.752],[2.369,14.774],[10.341,-0.672],[0.952,-14.403],[3.07,-16.575],[-2.29,-14.136]],"v":[[2.341,-79.916],[-25.649,-25.815],[-23.632,11.114],[-19.818,57.009],[-1.166,76.142],[17.549,55.207],[27.539,-12.681],[31.35,-53.384]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":141,"s":[{"i":[[9.828,0.35],[-5.959,-22.747],[-0.885,-2.324],[-0.542,-1.383],[-6.9,-0.35],[-3.331,8.312],[-1.57,5.949],[0.739,4.631]],"o":[[-19.18,-1.266],[0.242,1.634],[1.306,3.43],[3.988,10.173],[10.659,0.54],[2.416,-4.989],[1.024,-3.881],[-2.338,-14.659]],"v":[[-1.462,-76.497],[-27.268,-37.75],[-25.133,-32.599],[-20.298,-23.693],[-0.473,-12.721],[20.597,-25.479],[26.093,-40.946],[26.601,-59.308]],"c":true}]},{"t":146,"s":[{"i":[[9.18,-0.391],[-9.019,-39.425],[-0.541,-20.333],[-2.485,-15.5],[-8.034,0.221],[0.31,10.076],[-1.315,37.934],[5.17,11.024]],"o":[[-23.126,0.985],[1.614,7.055],[0.634,23.832],[2.369,14.774],[10.359,-0.284],[-0.424,-13.779],[4.211,-13.824],[-4.571,-9.746]],"v":[[2.884,-75.94],[-26.346,-19.541],[-24.393,9.348],[-19.299,57.453],[-1.129,75.948],[16.668,57.729],[26.513,-20.073],[24.149,-60.043]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"canh tay R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":33,"ty":4,"nm":"vien co 3","parent":49,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-103.195,"ix":10},"p":{"a":0,"k":[-1.146,13.494,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[-3.33,14.747],[1.342,1.863],[0,0],[22.483,-33.616]],"o":[[2.959,-13.102],[-0.32,-0.444],[1.655,3.012],[7.361,-9.639]],"v":[[8.312,-3.72],[6.713,-24.697],[4.585,-27.175],[-9.525,27.175]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":108,"s":[{"i":[[-4.619,12.73],[1.074,2.006],[0,0],[26.33,-25.143]],"o":[[4.053,-11.219],[-0.256,-0.478],[1.232,3.176],[6.698,-4.215]],"v":[[3.565,-6.559],[4.872,-26.707],[3.389,-29.257],[-17.559,18.869]],"c":true}]},{"t":128,"s":[{"i":[[-5.908,10.713],[0.807,2.15],[0,0],[31.114,-14.573]],"o":[[5.148,-9.335],[-0.192,-0.512],[0.809,3.34],[9.626,-3.691]],"v":[[-1.182,-9.398],[3.031,-28.717],[2.192,-31.34],[-25.593,10.564]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":34,"ty":4,"nm":"nach R mask 2","parent":44,"td":1,"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":88,"s":[-10.199]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":128,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[-1.751]},{"t":146,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":88,"s":[15.852,-32.912,0],"to":[-7.851,-2.06,0],"ti":[8.098,3.513,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[-31.252,-45.274,0],"to":[-8.098,-3.513,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":136,"s":[-32.734,-53.987,0],"to":[0,0,0],"ti":[-0.247,-1.452,0]},{"t":146,"s":[-31.252,-45.274,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[22.732,0],[0.966,-0.656],[-1.941,-17.002],[-20.142,-1.683],[0,28.489]],"o":[[-9.333,0],[-14.371,9.514],[2.598,22.754],[12.454,0],[0,-28.489]],"v":[[2.969,-51.584],[-12.728,-47.203],[-28.172,-1.249],[4.858,51.2],[30.716,5.824]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":108,"s":[{"i":[[21.09,1.919],[0.966,-0.656],[-1.822,-15.739],[-21.041,-0.812],[0,28.489]],"o":[[-9.295,-0.846],[-14.639,10.513],[2.511,21.68],[12.454,0],[0,-28.489]],"v":[[2.805,-49.963],[-13.308,-46.109],[-28.64,-1.909],[5.079,50.649],[30.288,5.963]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[{"i":[[22.732,0],[0.966,-0.656],[-1.703,-14.475],[-21.941,0.06],[0,28.489]],"o":[[-9.333,0],[-17.286,10.944],[2.424,20.606],[12.454,0],[0,-28.489]],"v":[[2.969,-51.584],[-13.59,-47.008],[-30.121,-2.094],[4.764,51.584],[30.716,5.824]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[22.732,0],[0.966,-0.656],[-1.703,-14.475],[-21.941,0.06],[0,28.489]],"o":[[-9.333,0],[-17.286,10.944],[2.424,20.606],[12.454,0],[0,-28.489]],"v":[[2.969,-51.584],[-13.59,-47.008],[-30.121,-2.094],[4.764,51.584],[30.716,5.824]],"c":true}]},{"t":146,"s":[{"i":[[22.732,0],[0.966,-0.656],[-1.703,-14.475],[-21.941,0.06],[0,28.489]],"o":[[-9.333,0],[-17.286,10.944],[2.424,20.606],[12.454,0],[0,-28.489]],"v":[[2.969,-51.584],[-13.59,-47.008],[-30.121,-2.094],[4.764,51.584],[30.716,5.824]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"nach R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":35,"ty":4,"nm":"bong nach R 3","parent":36,"tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[4.35,24.745,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[-3.821,19.126],[0,0],[0,0],[9.074,-16.934],[-1.056,0.16]],"o":[[2.368,-12.215],[0,0],[0,0],[0.274,2.965],[9.884,-1.497]],"v":[[28.184,-3.062],[27.222,-28.319],[12.179,-23.506],[-4.2,25.303],[2.538,28.298]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":118,"s":[{"i":[[2.59,17.494],[0,0],[0,0],[-0.234,-18.874],[-11.876,1.781]],"o":[[-0.357,-12.753],[0,0],[0,0],[3.126,7.389],[13.354,-2.099]],"v":[[29.402,18.166],[19.368,-42.632],[-8.759,-32.307],[-26.496,26.703],[-4.384,43.013]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":121,"s":[{"i":[[-6.3,13.538],[0,0],[0,0],[8.318,-12.944],[-7.034,-5.081]],"o":[[14.798,-14.141],[0,0],[0,0],[-5.665,4.216],[5.113,6.479]],"v":[[-12.751,27.503],[17.309,-36.527],[-7.732,-41.524],[-36.525,-13.96],[-37.181,14.682]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":122,"s":[{"i":[[-9.264,12.219],[0,0],[0,0],[11.169,-10.967],[-5.42,-7.369]],"o":[[20.307,-16.703],[0,0],[0,0],[-5.605,5.315],[4.296,7.493]],"v":[[-20.485,16.5],[16.623,-34.492],[-7.39,-44.596],[-41.146,-23.581],[-43.898,4.827]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":123,"s":[{"i":[[-12.227,10.9],[0,0],[0,0],[14.02,-8.99],[-3.806,-9.656]],"o":[[25.918,-16.556],[0,0],[0,0],[-5.546,6.414],[3.479,8.507]],"v":[[-26.707,5.201],[15.937,-32.457],[-7.047,-47.669],[-45.766,-33.203],[-50.615,-5.027]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[{"i":[[-15.19,9.581],[0,0],[0,0],[16.871,-7.013],[-2.192,-11.943]],"o":[[31.954,-14.142],[0,0],[0,0],[-5.486,7.513],[2.662,9.52]],"v":[[-30.02,-2.037],[15.25,-30.423],[-6.705,-50.741],[-50.387,-42.824],[-57.332,-14.881]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":128,"s":[{"i":[[-16.361,-5.403],[0,0],[0,0],[15.192,8.81],[6.017,-8.171]],"o":[[23.72,14.369],[0,0],[0,0],[-8.772,1.462],[-4.357,7.328]],"v":[[-43.31,-36.826],[-1.959,-21.799],[-0.722,-49.465],[-29.633,-76.397],[-52.378,-63.462]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":132,"s":[{"i":[[-12.781,1.6],[0,0],[0,0],[13.359,1.68],[1.064,-5.83]],"o":[[16.145,6.487],[0,0],[0,0],[-4.642,4.293],[-0.26,5.236]],"v":[[-19.125,-31.394],[9.401,-27.342],[1.859,-45.473],[-23.566,-56.789],[-32.593,-41.786]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":136,"s":[{"i":[[-10.869,-6.017],[0,0],[0,0],[15.677,-0.65],[2.22,-8.433]],"o":[[6.875,3.431],[0,0],[0,0],[-7.364,4.704],[-1.193,4.531]],"v":[[-34.965,-36.711],[5.235,-18.377],[-3.539,-32.075],[-37.987,-66.185],[-51.754,-49.374]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[{"i":[[-9.375,-6.392],[0,0],[0,0],[14.312,0.736],[2.732,-7.481]],"o":[[5.961,3.702],[0,0],[0,0],[-7.095,3.654],[-1.468,4.02]],"v":[[-36.692,-36.117],[-1.686,-16.042],[-8.506,-29.242],[-36.947,-63.177],[-50.889,-49.054]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":140,"s":[{"i":[[-10.901,0.722],[0,0],[0,0],[11.284,-7.94],[-2.371,-7.293]],"o":[[6.716,-0.734],[0,0],[0,0],[-3.208,6.982],[1.274,3.919]],"v":[[-32.878,-20.154],[5.942,-21.598],[-7.186,-28.929],[-48.891,-37.761],[-51.073,-18.78]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":141,"s":[{"i":[[-11.664,4.279],[0,0],[0,0],[9.77,-12.278],[-4.923,-7.198]],"o":[[7.094,-2.951],[0,0],[0,0],[-1.264,8.646],[2.645,3.868]],"v":[[-30.601,-8.047],[9.572,-26.438],[-6.527,-28.772],[-54.863,-25.054],[-51.164,-3.643]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":144,"s":[{"i":[[-5.801,15.377],[0,0],[0,0],[9.022,-15.185],[-9.856,-6.266]],"o":[[0.568,-10.44],[0,0],[0,0],[3.94,10.689],[5.017,3.487]],"v":[[4.406,32.97],[18.355,-26.738],[-7.773,-23.042],[-42.606,13.414],[-23.423,35.287]],"c":true}]},{"t":146,"s":[{"i":[[-3.821,19.126],[0,0],[0,0],[8.77,-16.167],[-11.332,0.031]],"o":[[-2.813,-13.239],[0,0],[0,0],[5.697,11.379],[9.997,0]],"v":[[25.77,9.202],[21.322,-26.839],[-8.194,-21.106],[-30.27,14.035],[-0.336,30.714]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"bong nach R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":36,"ty":4,"nm":"nach R 3","parent":44,"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":88,"s":[-10.199]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":128,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[-1.667]},{"t":146,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":88,"s":[15.852,-32.912,0],"to":[-7.851,-2.06,0],"ti":[8.076,3.492,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[-31.252,-45.274,0],"to":[-8.076,-3.492,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":136,"s":[-32.606,-53.866,0],"to":[0,0,0],"ti":[-0.226,-1.432,0]},{"t":146,"s":[-31.252,-45.274,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[22.732,0],[0.966,-0.656],[-1.941,-17.002],[-20.142,-1.683],[0,28.489]],"o":[[-9.333,0],[-14.371,9.514],[2.598,22.754],[12.454,0],[0,-28.489]],"v":[[2.969,-51.584],[-12.728,-47.203],[-28.172,-1.249],[4.858,51.2],[30.716,5.824]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":108,"s":[{"i":[[21.09,1.919],[0.966,-0.656],[-1.822,-15.739],[-21.041,-0.812],[0,28.489]],"o":[[-9.295,-0.846],[-14.639,10.513],[2.511,21.68],[12.454,0],[0,-28.489]],"v":[[2.805,-49.963],[-13.308,-46.109],[-28.64,-1.909],[5.079,50.649],[30.288,5.963]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[{"i":[[22.732,0],[0.966,-0.656],[-1.703,-14.475],[-21.941,0.06],[0,28.489]],"o":[[-9.333,0],[-17.286,10.944],[2.424,20.606],[12.454,0],[0,-28.489]],"v":[[2.969,-51.584],[-13.59,-47.008],[-30.121,-2.094],[4.764,51.584],[30.716,5.824]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[22.732,0],[0.966,-0.656],[-1.703,-14.475],[-21.941,0.06],[0,28.489]],"o":[[-9.333,0],[-17.286,10.944],[2.424,20.606],[12.454,0],[0,-28.489]],"v":[[2.969,-51.584],[-13.59,-47.008],[-30.121,-2.094],[4.764,51.584],[30.716,5.824]],"c":true}]},{"t":146,"s":[{"i":[[22.732,0],[0.966,-0.656],[-1.703,-14.475],[-21.941,0.06],[0,28.489]],"o":[[-9.333,0],[-17.286,10.944],[2.424,20.606],[12.454,0],[0,-28.489]],"v":[[2.969,-51.584],[-13.59,-47.008],[-30.121,-2.094],[4.764,51.584],[30.716,5.824]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"nach R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":37,"ty":4,"nm":"vien nach R 3","parent":36,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[2.969,0.348,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[-4.118,-27.949],[-20.244,-1.416],[-0.6,29.454],[27.946,-1.763]],"o":[[4.303,29.2],[16.924,1.183],[0.625,-30.672],[-25.834,1.63]],"v":[[-35.078,0.752],[2.179,54.457],[31.36,5.704],[-2.67,-54.418]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":108,"s":[{"i":[[-4.118,-27.949],[-19.147,-2.132],[-0.6,29.454],[21.929,-0.542]],"o":[[4.303,29.2],[14.09,1.569],[0.625,-30.672],[-24.911,0.615]],"v":[[-34.484,0.965],[1.513,54.091],[31.547,5.689],[-2.489,-53.638]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":128,"s":[{"i":[[-4.471,-29.623],[-19.591,-1.496],[-0.6,29.454],[30.385,-1.958]],"o":[[4.405,29.185],[16.916,1.292],[0.625,-30.672],[-23.902,1.54]],"v":[[-35.762,0.999],[1.172,54.476],[31.734,5.674],[-3.536,-54.293]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":136,"s":[{"i":[[-4.324,-28.925],[-19.008,-1.395],[-0.6,29.454],[30.439,-0.733]],"o":[[4.362,29.191],[16.919,1.24],[0.625,-30.672],[-25.969,0.625]],"v":[[-35.434,0.933],[1.592,54.468],[31.734,5.674],[-3.175,-54.345]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":141,"s":[{"i":[[-4.193,-28.303],[-21.01,-0.934],[-0.6,29.454],[30.405,-1.513]],"o":[[4.324,29.197],[16.948,0.754],[0.625,-30.672],[-24.652,1.208]],"v":[[-34.468,0.865],[1.966,54.461],[31.734,5.674],[-2.854,-54.391]],"c":true}]},{"t":146,"s":[{"i":[[-4.118,-27.949],[-18.194,-1.254],[-0.6,29.454],[30.385,-1.958]],"o":[[4.303,29.2],[16.925,1.167],[0.625,-30.672],[-23.902,1.54]],"v":[[-30.777,-0.348],[2.179,54.457],[31.734,5.674],[-2.67,-54.418]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"vien nach R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":38,"ty":4,"nm":"nguc 2","parent":44,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[8.781,-100.08,0],"ix":2,"l":2},"a":{"a":0,"k":[506.13,356.085,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[27.284,5.963],[9.994,1.507],[7.349,-3.89],[0.294,-0.18],[-16.276,-7.712],[-0.05,0.641],[0.384,0.795]],"o":[[-7.668,-3.473],[-8.958,-1.351],[0,0],[9.836,-6.39],[33.414,6.359],[0.329,-1.593],[-4.454,-10.89]],"v":[[6.711,-9.867],[-14.274,-15.849],[-43.052,-12.734],[-43.458,-12.143],[6.832,-9.848],[43.882,31.901],[42.672,26.019]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":108,"s":[{"i":[[18.998,11.874],[9.994,1.507],[7.219,-2.926],[1.418,-1.361],[-23.084,-16.863],[-5.077,1.419],[0.384,0.795]],"o":[[-8.841,-4.822],[-8.958,-1.351],[0,0],[8.372,-5.284],[22.013,13.87],[1.241,-1.031],[-4.454,-10.89]],"v":[[8.604,-13.554],[-14.051,-23.925],[-41.086,-21.918],[-43.545,-19.07],[5.56,-9.449],[43.213,32.304],[42.672,26.019]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[{"i":[[13.103,14.407],[9.994,1.507],[7.089,-1.962],[2.542,-2.542],[-19.281,-24.695],[-10.104,2.197],[0.384,0.795]],"o":[[-8.508,-9.354],[-8.958,-1.351],[0,0],[6.908,-4.178],[12.305,15.76],[2.154,-0.468],[-4.454,-10.89]],"v":[[11.797,-19.23],[-13.828,-32.001],[-39.119,-31.101],[-43.632,-25.996],[3.672,-8.107],[42.544,32.708],[42.672,26.019]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[13.032,14.472],[9.994,1.507],[7.089,-1.962],[2.542,-2.542],[-19.281,-24.695],[-10.104,2.197],[0.384,0.795]],"o":[[-8.73,-9.695],[-8.958,-1.351],[0,0],[6.908,-4.178],[12.305,15.76],[2.154,-0.468],[-4.454,-10.89]],"v":[[11.064,-18.585],[-13.828,-32.001],[-39.119,-31.101],[-43.632,-25.996],[2.304,-7.821],[41.886,31.475],[42.672,26.019]],"c":true}]},{"t":146,"s":[{"i":[[13.103,14.407],[9.994,1.507],[7.089,-1.962],[2.542,-2.542],[-19.281,-24.695],[-10.104,2.197],[0.384,0.795]],"o":[[-8.508,-9.354],[-8.958,-1.351],[0,0],[6.908,-4.178],[12.305,15.76],[2.154,-0.468],[-4.454,-10.89]],"v":[[11.797,-19.23],[-13.828,-32],[-39.119,-31.101],[-43.632,-25.996],[3.672,-8.107],[42.544,32.708],[42.672,26.019]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[506.29,375.964],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[2.247,8.351],[9.739,12.107],[8.999,2.805],[7.265,0.909],[6.121,-0.78],[2.514,-1.112],[0,0],[-27.005,-10.08],[-6.425,-10.863],[0.011,-0.274]],"o":[[-3.687,-8.699],[-2.155,-2.678],[-5.55,-1.73],[-5.7,-0.714],[-4.684,1.094],[0,0],[3.784,-1.58],[19.001,6.194],[6.172,10.435],[0.348,0.025]],"v":[[42.634,21.512],[29.864,-1.212],[5.877,-13.64],[-11.794,-18.227],[-30.973,-18.322],[-41.828,-15.277],[-41.825,-15.016],[5.95,-13.533],[37.199,9.159],[44.848,32.987]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":108,"s":[{"i":[[3.044,8.069],[9.636,12.65],[7.968,5.118],[6.93,2.034],[6.121,-0.78],[2.555,-1.433],[0,0],[-24.544,-19.801],[-7.549,-10.202],[-2.258,0.664]],"o":[[-5.127,-10.329],[-5.517,-6.203],[-5.527,-2.707],[-5.512,-1.618],[-4.606,0.698],[0,0],[3.784,-1.58],[12.411,8.584],[6.159,8.598],[1.001,-0.28]],"v":[[42.779,21.571],[28.029,-0.262],[5.016,-18.255],[-12.293,-25.368],[-31.508,-25.841],[-42.327,-22.418],[-43.749,-21.069],[4.641,-11.15],[31.549,17.065],[44.187,31.116]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[{"i":[[3.842,7.787],[9.532,13.193],[8.005,5.359],[6.982,0.874],[6.121,-0.78],[2.596,-1.754],[0,0],[-22.083,-29.523],[-8.674,-9.541],[-4.527,1.602]],"o":[[-6.567,-11.959],[-7.801,-10.796],[-5.504,-3.685],[-5.7,-0.714],[-4.528,0.302],[0,0],[3.784,-1.58],[6.544,8.749],[6.146,6.76],[1.654,-0.585]],"v":[[42.924,21.63],[28.499,-1.239],[5.656,-25.622],[-12.793,-32.509],[-32.043,-33.361],[-42.827,-29.559],[-45.674,-27.122],[3.332,-8.767],[27.726,23.774],[44.292,33.328]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[3.842,7.787],[9.532,13.193],[8.005,5.359],[6.982,0.874],[6.121,-0.78],[2.596,-1.754],[0,0],[-22.083,-29.523],[-8.674,-9.541],[-4.527,1.602]],"o":[[-6.567,-11.959],[-7.801,-10.796],[-5.504,-3.685],[-5.7,-0.714],[-4.528,0.302],[0,0],[3.784,-1.58],[6.544,8.749],[6.146,6.76],[1.654,-0.585]],"v":[[42.924,21.63],[28.499,-1.239],[5.656,-25.622],[-12.793,-32.509],[-32.043,-33.361],[-44.839,-30.006],[-47.174,-27.082],[2.237,-7.613],[27.726,23.774],[43.378,31.852]],"c":true}]},{"t":146,"s":[{"i":[[3.842,7.787],[9.532,13.193],[8.005,5.359],[6.982,0.874],[6.121,-0.78],[2.596,-1.754],[0,0],[-22.083,-29.523],[-8.674,-9.541],[-4.527,1.602]],"o":[[-6.567,-11.959],[-7.801,-10.796],[-5.504,-3.685],[-5.7,-0.714],[-4.528,0.302],[0,0],[3.784,-1.58],[6.544,8.749],[6.146,6.76],[1.654,-0.585]],"v":[[42.924,21.63],[28.499,-1.239],[5.656,-25.622],[-12.793,-32.509],[-32.043,-33.361],[-42.827,-29.559],[-45.674,-27.122],[3.332,-8.767],[27.726,23.774],[44.292,33.328]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[505.63,379.38],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":39,"ty":4,"nm":"dui R 3","parent":47,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[0.307]},"o":{"x":[0.333],"y":[0]},"t":88,"s":[-113.219]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0.391]},"t":108,"s":[-72.355]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":128,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[-1.048]},{"t":146,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.396},"o":{"x":0.333,"y":0},"t":88,"s":[12.319,-80.434,0],"to":[-0.247,1.266,0],"ti":[2.068,-2.193,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.562},"t":108,"s":[9.65,-75.18,0],"to":[-2.068,2.192,0],"ti":[1.509,-0.689,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[2.392,-69.911,0],"to":[-1.509,0.689,0],"ti":[-2.193,1.001,0]},{"t":146,"s":[2.392,-69.911,0]}],"ix":2,"l":2},"a":{"a":0,"k":[478.89,776.81,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"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":88,"s":[{"i":[[-13.724,1.733],[-0.265,-24.139],[8.97,-44.326],[0.84,15.04],[-2.443,32.259]],"o":[[29.251,-3.694],[0.353,32.17],[-5.962,17.512],[-2.258,-40.426],[1.628,-21.499]],"v":[[-12.024,-83.784],[33.642,-36.404],[22.987,86.49],[-41.199,57.905],[-46.274,-50.183]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[{"i":[[-13.724,1.733],[0.62,-24.482],[6.726,-43.97],[0.84,15.04],[-2.443,32.259]],"o":[[29.251,-3.694],[-0.745,29.414],[-5.846,18.221],[-2.258,-40.426],[1.628,-21.499]],"v":[[-14.798,-89.955],[39.727,-36.954],[29.485,78.308],[-35.038,77.058],[-38.991,-58.239]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-13.724,1.733],[0.62,-24.482],[6.726,-43.97],[0.84,15.04],[-2.443,32.259]],"o":[[29.251,-3.694],[-0.745,29.414],[-5.846,18.221],[-2.258,-40.426],[1.628,-21.5]],"v":[[-14.188,-95.223],[40.337,-42.222],[30.095,73.04],[-34.428,71.79],[-38.38,-63.507]],"c":true}]},{"t":146,"s":[{"i":[[-13.724,1.733],[0.62,-24.482],[6.726,-43.97],[0.84,15.04],[-2.443,32.259]],"o":[[29.251,-3.694],[-0.745,29.414],[-5.846,18.221],[-2.258,-40.426],[1.628,-21.499]],"v":[[-14.798,-89.955],[39.727,-36.954],[29.485,78.308],[-35.038,77.058],[-38.991,-58.239]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.164705887437,0.168627455831,0.164705887437,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[489.39,659.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 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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[0,0],[4.296,-12.33],[13.081,1.544],[2.153,15.984],[0,0]],"o":[[-6.227,37.126],[-4.062,11.657],[-6.213,-0.733],[-2.921,-21.683],[0,0]],"v":[[26.166,-29.098],[13.349,25.621],[-10.01,42.877],[-28.922,22.158],[-35.594,-41.751]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[0,0],[4.296,-12.33],[13.081,1.544],[0.344,16.124],[0,0]],"o":[[-7.817,35.903],[-4.062,11.657],[-6.213,-0.733],[-0.452,-21.206],[0,0]],"v":[[31.622,-43.086],[13.349,25.621],[-10.01,42.877],[-28.922,22.158],[-31.622,-43.086]],"c":true}]},{"t":146,"s":[{"i":[[0,0],[4.296,-12.329],[13.081,1.544],[0.344,16.124],[0,0]],"o":[[-7.817,35.903],[-4.062,11.657],[-6.213,-0.733],[-0.452,-21.206],[0,0]],"v":[[31.622,-43.086],[13.349,25.621],[-10.01,42.877],[-28.922,22.158],[-31.622,-43.086]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[489.488,746.852],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":40,"ty":4,"nm":"chan R mask 2","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[0.583]},"o":{"x":[0.333],"y":[0]},"t":88,"s":[59.147]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0.624]},"t":108,"s":[23.692]},{"t":128,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.424},"o":{"x":0.333,"y":0},"t":88,"s":[493.248,927.471,0],"to":[-0.077,0.702,0],"ti":[2.239,-2.239,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.393},"t":108,"s":[490.873,933.47,0],"to":[-2.24,2.24,0],"ti":[0.848,-0.848,0]},{"t":128,"s":[482.498,938.221,0]}],"ix":2,"l":2},"a":{"a":0,"k":[6,91.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"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":88,"s":[{"i":[[3.038,-18.678],[1.661,-24.032],[-0.173,-12.029],[6.415,-0.689],[1.68,9.617],[4.121,18.754],[-2.706,32.427],[-9.607,-0.377]],"o":[[-1.97,12.109],[-2.602,37.651],[0.146,10.204],[-6.064,0.651],[-2.6,-14.882],[-12.279,-55.881],[1.268,-15.2],[10.888,0.427]],"v":[[25.693,-74.83],[24.605,-14.737],[20.483,85.243],[8.75,100.743],[-5.733,89.988],[-21.471,14.568],[-15.557,-78.899],[4.956,-100.848]],"c":true}]},{"t":128,"s":[{"i":[[3.038,-18.678],[1.661,-24.032],[-0.173,-12.029],[6.415,-0.689],[1.68,9.617],[4.121,18.754],[-2.706,32.427],[-9.607,-0.377]],"o":[[-1.97,12.109],[-2.602,37.651],[0.146,10.204],[-6.064,0.651],[-2.6,-14.882],[-12.279,-55.881],[1.268,-15.2],[10.888,0.427]],"v":[[25.693,-74.83],[24.605,-14.737],[20.483,85.243],[8.75,100.743],[-5.733,89.988],[-21.471,14.568],[-15.557,-78.899],[4.956,-100.848]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"chan R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":41,"ty":4,"nm":"bong chan R 3","parent":39,"tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":54.073,"ix":10},"p":{"a":0,"k":[455.247,730.551,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.454,-9.896],[-9.511,-1.875],[-6.714,3.802],[-9.071,7.959]],"o":[[15.829,-8.521],[-5.585,-3.694],[7.565,-4.284],[-22.659,9.288]],"v":[[-26.464,9.923],[13.002,6.527],[11.014,-3.69],[26.714,-16.173]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882352948189,0.568627476692,0.541176497936,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":42,"ty":4,"nm":"than mask 2","parent":50,"td":1,"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":88,"s":[14.124]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[0]},{"t":146,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":88,"s":[4.928,-26.22,0],"to":[0.188,-0.755,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":136,"s":[6.058,-30.751,0],"to":[0,0,0],"ti":[0.188,-0.755,0]},{"t":146,"s":[4.928,-26.22,0]}],"ix":2,"l":2},"a":{"a":0,"k":[7.517,104.166,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[7.879,-3.254],[8.356,-20.118],[0.418,-22.068],[-1.867,-10.906],[-1.16,-3.121],[-24.227,21.339],[-0.205,6.833],[-1.299,7.285],[-0.921,4.781],[-0.352,4.514],[4.502,12.891],[9.42,12.361],[13.538,2.403]],"o":[[-8.289,7.245],[-5.56,13.386],[-0.592,31.299],[1.164,6.798],[1.331,3.581],[24.962,-21.987],[0.252,-8.39],[3.776,-21.181],[0.921,-4.781],[1.581,-20.25],[-2.823,-8.084],[-4.112,-5.396],[-18.371,-3.261]],"v":[[-34.154,-90.998],[-54.064,-55.55],[-61.614,-6.49],[-55.398,56.82],[-40.775,108.216],[-1.114,106.176],[40.006,55.55],[40.558,38.143],[52.889,0.874],[54.314,-9.159],[50.68,-56.441],[38.455,-78.439],[2.816,-93.232]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":108,"s":[{"i":[[7.879,-3.254],[3.553,-22.684],[-1.589,-22.21],[-0.934,-8.902],[-0.58,-1.561],[-35.804,8.275],[-0.103,7.613],[-0.814,7.643],[-0.461,2.39],[-0.352,4.514],[5.256,12.576],[9.649,13.016],[13.226,2.582]],"o":[[-8.289,7.245],[-2.339,15.595],[2.19,31.103],[0.582,6.848],[0.665,1.791],[30.998,-9.122],[0.126,-8.392],[2.427,-23.668],[0.461,-2.39],[1.581,-20.25],[-3.912,-6.884],[-11.149,-11.392],[-14.982,-2.356]],"v":[[-34.095,-98.837],[-56.861,-58.301],[-57.457,-7.396],[-49.278,54.296],[-43.769,98.858],[-2.26,107.707],[49.028,74.497],[49.283,42.041],[55.48,1.87],[56.803,-7.814],[51.315,-55.51],[36.294,-77.04],[-0.796,-101.263]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[7.879,-3.254],[-1.25,-25.25],[-3.595,-22.351],[0,-6.897],[0,0],[-47.382,-4.789],[0,8.394],[-0.33,8],[0,0],[-0.352,4.514],[6.01,12.261],[9.877,13.67],[17.137,2.145]],"o":[[-8.289,7.245],[0.881,17.804],[4.972,30.907],[0,6.897],[0,0],[37.034,3.743],[0,-8.394],[1.079,-26.155],[0,0],[1.581,-20.25],[-4.419,-9.015],[-13.164,-18.219],[-11.592,-1.451]],"v":[[-34.035,-106.675],[-62.143,-60.486],[-55.793,-7.985],[-41.165,51.468],[-46.762,89.5],[-3.406,109.239],[59.995,86.641],[58.883,45.916],[58.071,2.865],[59.293,-6.468],[51.949,-54.579],[36.884,-78.024],[-4.408,-109.293]],"c":true}]},{"t":146,"s":[{"i":[[7.879,-3.254],[-1.25,-25.25],[-3.595,-22.351],[0,-6.897],[0,0],[-47.382,-4.789],[0,8.394],[-0.33,8],[0,0],[-0.352,4.514],[6.01,12.261],[9.877,13.67],[17.137,2.145]],"o":[[-8.289,7.245],[0.881,17.804],[4.972,30.907],[0,6.897],[0,0],[37.034,3.743],[0,-8.394],[1.079,-26.155],[0,0],[1.581,-20.25],[-4.419,-9.015],[-13.164,-18.219],[-11.592,-1.451]],"v":[[-34.035,-106.675],[-59.658,-61.052],[-53.301,-8.302],[-43.158,51.771],[-46.762,89.5],[-3.406,109.239],[58.05,93.445],[58.008,45.939],[58.071,2.865],[59.293,-6.468],[51.949,-54.579],[36.884,-78.024],[-4.408,-109.293]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725495338,0.415686279535,0.164705887437,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"than","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":43,"ty":4,"nm":"bong than 3","parent":44,"tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[1.442,42.931,0],"ix":2,"l":2},"a":{"a":0,"k":[498.792,499.096,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[0,0],[0.94,-0.495],[1.3,-0.047],[5.764,0.5],[12.621,19.259],[0,0],[-0.857,-5.327],[2.539,-7.935],[0,0],[-47.382,-4.79],[-2.533,-0.122],[0.88,17.787],[-3.531,6.008],[-4.224,0.467],[-2.075,-0.183]],"o":[[0,0],[-2.545,0.75],[-3.884,0.139],[-5.764,-0.5],[-12.621,-19.259],[0.672,4.421],[4.972,30.907],[-2.102,6.569],[0,0],[2.669,0.27],[0.597,-10.71],[-1.5,-30.333],[4.276,-7.275],[2.419,-0.267],[-0.115,-3.792]],"v":[[91.233,-54.912],[86.714,-53.481],[79.729,-51.945],[66.791,-50.969],[42.144,-134.932],[-0.546,-161.12],[20.038,-52.53],[20.619,-6.607],[7.594,47.32],[50.95,67.06],[58.747,67.635],[61.844,24.352],[62.387,-31.966],[86.536,-46.984],[93.362,-48.263]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":108,"s":[{"i":[[0,0],[0.357,0.493],[1.3,-0.047],[5.764,0.5],[11.312,19.305],[0,0],[-0.857,-5.327],[1.27,-7.416],[0,0],[-43.079,9.895],[-2.533,-0.122],[0.88,17.787],[-4.661,4.941],[-4.224,0.467],[-2.075,-0.183]],"o":[[0,0],[-2.24,0.394],[-3.884,0.139],[-5.764,-0.5],[-6.311,-9.629],[0.672,4.421],[4.972,30.907],[-1.051,6.733],[0,0],[2.614,-0.6],[0.597,-10.71],[-1.5,-30.333],[5.034,-5.575],[2.419,-0.267],[-0.115,-3.792]],"v":[[73.931,-47.489],[71.872,-48.002],[66.116,-47.438],[46.788,-43.737],[19.597,-100.908],[-28.788,-113.434],[-17.352,-51.882],[-11.991,1.116],[-22.348,73.382],[21.46,74.603],[30.68,71.629],[33.945,23.976],[36.549,-22.35],[68.761,-40.859],[75.115,-41.237]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":118,"s":[{"i":[[0,0],[-0.014,1.122],[1.3,-0.047],[5.764,0.5],[10.478,19.335],[0,0],[-0.857,-5.327],[0.461,-7.085],[0,0],[-45.82,0.54],[-2.533,-0.122],[0.88,17.787],[-5.381,4.262],[-4.224,0.467],[-2.075,-0.183]],"o":[[0,0],[-2.045,0.167],[-3.884,0.139],[-5.764,-0.5],[-2.29,-3.495],[0.672,4.421],[4.972,30.907],[-0.382,6.838],[0,0],[2.649,-0.046],[0.597,-10.71],[-1.5,-30.333],[5.517,-4.492],[2.419,-0.267],[-0.115,-3.792]],"v":[[62.908,-42.761],[62.417,-44.512],[57.444,-44.567],[34.045,-39.13],[5.234,-79.232],[-46.78,-83.056],[-41.172,-51.469],[-32.765,6.037],[-41.789,65.59],[2.698,73.306],[12.656,72.84],[16.171,23.737],[20.089,-16.223],[57.438,-36.956],[63.49,-36.76]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[{"i":[[0,0],[-0.225,1.48],[1.3,-0.047],[5.764,0.5],[10.003,19.352],[0,0],[-0.857,-5.327],[0,-6.897],[0,0],[-47.382,-4.789],[-2.533,-0.122],[0.88,17.787],[-5.792,3.875],[-4.224,0.467],[-2.075,-0.183]],"o":[[0,0],[-1.934,0.038],[-3.884,0.139],[-5.764,-0.5],[0,0],[0.672,4.421],[4.972,30.907],[0,6.897],[0,0],[2.669,0.27],[0.597,-10.71],[-1.5,-30.333],[5.792,-3.875],[2.419,-0.267],[-0.115,-3.792]],"v":[[56.629,-40.067],[57.03,-42.524],[52.504,-42.931],[26.785,-36.505],[-2.949,-66.883],[-57.03,-65.749],[-54.743,-51.233],[-44.6,8.84],[-50.746,53.5],[-7.991,72.568],[2.387,73.53],[6.045,23.6],[10.712,-12.733],[50.987,-34.733],[56.867,-34.21]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[0,0],[-0.225,1.48],[1.3,-0.047],[5.764,0.5],[10.003,19.352],[0,0],[-0.857,-5.327],[0,-6.897],[0,0],[-47.382,-4.789],[-2.533,-0.122],[0.88,17.787],[-5.792,3.875],[-4.224,0.467],[-2.075,-0.183]],"o":[[0,0],[-1.934,0.038],[-3.884,0.139],[-5.764,-0.5],[0,0],[-0.135,4.772],[4.972,30.907],[0,6.897],[0,0],[2.669,0.27],[0.597,-10.71],[-1.5,-30.333],[5.792,-3.875],[2.419,-0.267],[-0.115,-3.792]],"v":[[57.168,-40.956],[57.846,-44.734],[52.768,-44.752],[26.884,-37.508],[-4.384,-69.096],[-62.249,-83.366],[-57.992,-51.147],[-42.992,8.172],[-49.838,50.988],[-5.684,67.83],[3.36,68.248],[11.583,24.954],[11.44,-13.565],[51.072,-36.236],[57.633,-35.981]],"c":true}]},{"t":146,"s":[{"i":[[0,0],[-0.225,1.48],[1.3,-0.047],[5.764,0.5],[10.003,19.352],[0,0],[-0.857,-5.327],[0,-6.897],[0,0],[-47.382,-4.789],[-2.533,-0.122],[0.88,17.787],[-5.792,3.875],[-4.224,0.467],[-2.075,-0.183]],"o":[[0,0],[-1.934,0.038],[-3.884,0.139],[-5.764,-0.5],[0,0],[0.672,4.421],[4.972,30.907],[0,6.897],[0,0],[2.669,0.27],[0.597,-10.71],[-1.5,-30.333],[5.792,-3.875],[2.419,-0.267],[-0.115,-3.792]],"v":[[56.629,-40.067],[57.03,-42.524],[52.504,-42.931],[26.785,-36.505],[-2.949,-66.883],[-57.03,-65.749],[-54.743,-51.233],[-44.6,8.84],[-48.205,46.568],[-4.849,66.308],[2.948,66.883],[6.045,23.6],[10.712,-12.733],[50.987,-34.733],[56.867,-34.21]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.800000011921,0.368627458811,0.156862750649,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[498.792,499.096],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":44,"ty":4,"nm":"than 5","parent":50,"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":88,"s":[14.124]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[0]},{"t":146,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":88,"s":[4.928,-26.22,0],"to":[0.188,-0.755,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":136,"s":[6.058,-30.751,0],"to":[0,0,0],"ti":[0.188,-0.755,0]},{"t":146,"s":[4.928,-26.22,0]}],"ix":2,"l":2},"a":{"a":0,"k":[7.517,104.166,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[7.879,-3.254],[8.356,-20.118],[0.418,-22.068],[-1.867,-10.906],[-1.16,-3.121],[-24.227,21.339],[-0.205,6.833],[-1.299,7.285],[-0.921,4.781],[-0.352,4.514],[4.502,12.891],[9.42,12.361],[13.538,2.403]],"o":[[-8.289,7.245],[-5.56,13.386],[-0.592,31.299],[1.164,6.798],[1.331,3.581],[24.962,-21.987],[0.252,-8.39],[3.776,-21.181],[0.921,-4.781],[1.581,-20.25],[-2.823,-8.084],[-4.112,-5.396],[-18.371,-3.261]],"v":[[-34.154,-90.998],[-54.064,-55.55],[-61.614,-6.49],[-55.398,56.82],[-40.775,108.216],[-1.114,106.176],[40.006,55.55],[40.558,38.143],[52.889,0.874],[54.314,-9.159],[50.68,-56.441],[38.455,-78.439],[2.816,-93.232]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":108,"s":[{"i":[[7.879,-3.254],[3.553,-22.684],[-1.589,-22.21],[-0.934,-8.902],[-0.58,-1.561],[-35.804,8.275],[-0.103,7.613],[-0.814,7.643],[-0.461,2.39],[-0.352,4.514],[5.256,12.576],[9.649,13.016],[13.226,2.582]],"o":[[-8.289,7.245],[-2.339,15.595],[2.19,31.103],[0.582,6.848],[0.665,1.791],[30.998,-9.122],[0.126,-8.392],[2.427,-23.668],[0.461,-2.39],[1.581,-20.25],[-3.912,-6.884],[-11.149,-11.392],[-14.982,-2.356]],"v":[[-34.095,-98.837],[-56.861,-58.301],[-57.457,-7.396],[-49.278,54.296],[-43.769,98.858],[-2.26,107.707],[49.028,74.497],[49.283,42.041],[55.48,1.87],[56.803,-7.814],[51.315,-55.51],[36.294,-77.04],[-0.796,-101.263]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":123,"s":[{"i":[[7.879,-3.254],[0.709,-30.534],[-4.002,-22.11],[-0.372,-7.696],[-0.231,-0.622],[-42.769,0.416],[-0.041,8.083],[-0.523,7.858],[-0.184,0.952],[-0.352,4.514],[5.71,12.387],[9.786,13.409],[15.579,2.319]],"o":[[-8.73,3.874],[-0.402,16.924],[5.661,31.27],[0.232,6.877],[0.265,0.713],[34.629,-1.383],[0.05,-8.393],[1.616,-25.164],[0.184,-0.952],[1.581,-20.25],[-4.217,-8.166],[-12.361,-15.499],[-12.943,-1.812]],"v":[[-34.059,-103.552],[-61.835,-63.034],[-54.957,-7.941],[-42.736,52.851],[-45.57,93.228],[-2.95,108.629],[55.626,81.802],[55.058,44.372],[57.039,2.468],[58.301,-7.004],[51.696,-54.95],[36.649,-77.632],[-2.968,-106.094]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[7.879,-3.254],[-1.25,-25.25],[-3.595,-22.351],[0,-6.897],[0,0],[-47.382,-4.789],[0,8.394],[-0.33,8],[0,0],[-0.352,4.514],[6.01,12.261],[9.877,13.67],[17.137,2.145]],"o":[[-11.382,5.827],[0.881,17.804],[4.972,30.907],[0,6.897],[0,0],[37.034,3.743],[0,-8.394],[1.079,-26.155],[0,0],[1.581,-20.25],[-4.419,-9.015],[-13.164,-18.219],[-11.592,-1.451]],"v":[[-34.035,-106.675],[-62.36,-59.229],[-55.543,-7.992],[-41.178,50.968],[-46.762,89.5],[-3.406,109.239],[59.995,86.641],[58.883,45.916],[58.071,2.865],[59.293,-6.468],[51.949,-54.579],[36.884,-78.024],[-4.408,-109.293]],"c":true}]},{"t":146,"s":[{"i":[[7.879,-3.254],[-1.25,-25.25],[-3.595,-22.351],[0,-6.897],[0,0],[-47.382,-4.789],[0,8.394],[-0.33,8],[0,0],[-0.352,4.514],[6.01,12.261],[9.877,13.67],[17.137,2.145]],"o":[[-8.289,7.245],[0.881,17.804],[4.972,30.907],[0,6.897],[0,0],[37.034,3.743],[0,-8.394],[1.079,-26.155],[0,0],[1.581,-20.25],[-4.419,-9.015],[-13.164,-18.219],[-11.592,-1.451]],"v":[[-34.035,-106.675],[-59.658,-61.052],[-53.301,-8.302],[-43.158,51.771],[-46.762,89.5],[-3.406,109.239],[58.05,93.445],[58.008,45.939],[58.071,2.865],[59.293,-6.468],[51.949,-54.579],[36.884,-78.024],[-4.408,-109.293]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725495338,0.415686279535,0.164705887437,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"than","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":45,"ty":4,"nm":"giay R 6","parent":47,"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":118,"s":[-6.301]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":123,"s":[14.812]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[22.822]},{"i":{"x":[0.583],"y":[0.57]},"o":{"x":[0.167],"y":[0]},"t":142,"s":[22.822]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.417],"y":[0.598]},"t":144,"s":[9.533]},{"t":146,"s":[-0.023]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":118,"s":[7.866,90.29,0],"to":[-0.521,0.003,0],"ti":[0.521,-0.003,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":123,"s":[4.739,90.306,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":136,"s":[4.739,90.306,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":0.552},"o":{"x":0.333,"y":0},"t":142,"s":[4.739,90.306,0],"to":[0.531,-0.083,0],"ti":[-1.328,0.208,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.565},"t":144,"s":[8.302,89.805,0],"to":[1.328,-0.208,0],"ti":[-0.531,0.083,0]},{"t":146,"s":[11.114,89.306,0]}],"ix":2,"l":2},"a":{"a":0,"k":[487.65,935.924,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":118,"s":[{"i":[[0.009,8.755],[14.343,0.411],[3.563,1.841],[4.245,2.371],[0,0],[-0.917,-1.567],[-3.427,-1.909],[-3.097,-1.846],[-17.089,-0.967]],"o":[[-2.027,6.25],[-15.844,-0.454],[-2.638,-1.352],[-5.818,-3.245],[0,0],[0.647,1.186],[3.365,1.874],[6.959,4.112],[14.572,0.825]],"v":[[43.821,1.467],[14.971,10.996],[-21.96,-4.865],[-36.923,-10.475],[-42.615,-16.816],[-41.863,-12.529],[-36.413,-7.379],[-21.814,-1.519],[14.961,13.099]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":123,"s":[{"i":[[0.009,8.755],[14.343,0.411],[3.563,1.841],[4.245,2.371],[0,0],[-0.917,-1.567],[-3.427,-1.909],[-3.097,-1.846],[-17.089,-0.967]],"o":[[-2.027,6.25],[-15.844,-0.454],[-2.638,-1.352],[-5.818,-3.245],[0,0],[0.647,1.185],[3.365,1.874],[6.959,4.112],[14.572,0.825]],"v":[[43.821,1.467],[14.971,10.997],[-21.96,-4.865],[-36.923,-10.475],[-42.615,-16.816],[-41.863,-12.529],[-36.413,-7.379],[-21.814,-1.519],[14.961,13.099]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[0.009,8.755],[14.343,0.411],[3.563,1.841],[4.245,2.371],[0,0],[-0.917,-1.567],[-3.427,-1.909],[-3.097,-1.846],[-17.089,-0.967]],"o":[[-2.027,6.25],[-15.844,-0.454],[-2.638,-1.352],[-5.818,-3.245],[0,0],[0.647,1.185],[3.365,1.874],[6.959,4.112],[14.572,0.825]],"v":[[43.821,1.467],[14.971,10.997],[-21.96,-4.865],[-36.923,-10.475],[-42.615,-16.816],[-41.863,-12.529],[-36.413,-7.379],[-21.814,-1.519],[14.961,13.099]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":142,"s":[{"i":[[0.009,8.755],[14.343,0.411],[3.563,1.841],[4.245,2.371],[0,0],[-0.917,-1.567],[-3.427,-1.909],[-3.097,-1.846],[-17.089,-0.967]],"o":[[-2.027,6.25],[-15.844,-0.454],[-2.638,-1.352],[-5.818,-3.245],[0,0],[0.647,1.185],[3.365,1.874],[6.959,4.112],[14.572,0.825]],"v":[[43.821,1.467],[14.971,10.997],[-21.96,-4.865],[-36.923,-10.475],[-42.615,-16.816],[-41.863,-12.529],[-36.413,-7.379],[-21.814,-1.519],[14.961,13.099]],"c":true}]},{"t":146,"s":[{"i":[[0.009,8.755],[14.343,0.411],[3.688,1.6],[4.296,2.288],[0,0],[-0.701,-1.422],[-3.468,-1.842],[-3.205,-1.704],[-17.089,-0.967]],"o":[[-2.027,6.25],[-15.844,-0.454],[-2.75,-1.193],[-5.916,-3.151],[0,0],[0.6,1.217],[3.405,1.809],[7.284,3.873],[14.572,0.825]],"v":[[43.821,1.467],[14.971,10.997],[-22.653,-2.658],[-38.291,-7.389],[-43.816,-13.183],[-43.055,-9.541],[-38.229,-4.869],[-22.653,0.141],[14.971,13.07]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149019613862,0.149019613862,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[509.954,974.017],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":118,"s":[{"i":[[0.302,3.178],[-0.932,-3.029],[-8.014,-6.203],[-16.39,-0.068],[-3.934,7.697],[0,0.321],[4.572,-2.227],[2.445,-1.264],[7.19,0.758],[8.368,6.904],[5.664,2.74]],"o":[[-0.709,3.263],[1.626,5.283],[8.453,5.867],[7.835,0.041],[0.431,-0.844],[0,-1.245],[-7.243,3.529],[-2.735,1.414],[-7.092,-0.748],[-7.034,-5.965],[-9.528,-4.31]],"v":[[-42.108,-19.486],[-42.289,-11.182],[-20.333,2.162],[15.132,15.756],[43.618,5.878],[44.156,3.694],[39.785,2.501],[31.407,9.069],[14.581,10.462],[-14.028,0.155],[-31.373,-8.164]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":123,"s":[{"i":[[0.302,3.178],[-0.932,-3.029],[-8.014,-6.203],[-16.39,-0.068],[-3.934,7.697],[0,0.321],[4.572,-2.227],[2.445,-1.264],[7.19,0.758],[8.368,6.904],[5.664,2.74]],"o":[[-0.709,3.263],[1.626,5.283],[8.453,5.867],[7.835,0.041],[0.431,-0.844],[0,-1.245],[-7.243,3.529],[-2.735,1.414],[-7.092,-0.748],[-7.034,-5.965],[-9.528,-4.31]],"v":[[-42.108,-19.486],[-42.289,-11.182],[-20.333,2.162],[15.132,15.756],[43.618,5.878],[44.156,3.694],[39.784,2.501],[31.407,9.069],[14.581,10.462],[-14.028,0.155],[-31.373,-8.164]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[0.302,3.178],[-0.932,-3.029],[-8.014,-6.203],[-16.39,-0.068],[-3.934,7.697],[0,0.321],[4.572,-2.227],[2.445,-1.264],[7.19,0.758],[8.368,6.904],[5.664,2.74]],"o":[[-0.709,3.263],[1.626,5.283],[8.453,5.867],[7.835,0.041],[0.431,-0.844],[0,-1.245],[-7.243,3.529],[-2.735,1.414],[-7.092,-0.748],[-7.034,-5.965],[-9.528,-4.31]],"v":[[-42.108,-19.486],[-42.289,-11.182],[-20.333,2.162],[15.132,15.756],[43.618,5.878],[44.156,3.694],[39.784,2.501],[31.407,9.069],[14.581,10.462],[-14.028,0.155],[-31.373,-8.164]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":142,"s":[{"i":[[0.302,3.178],[-0.932,-3.029],[-8.014,-6.203],[-16.39,-0.068],[-3.934,7.697],[0,0.321],[4.572,-2.227],[2.445,-1.264],[7.19,0.758],[8.368,6.904],[5.664,2.74]],"o":[[-0.709,3.263],[1.626,5.283],[8.453,5.867],[7.835,0.041],[0.431,-0.844],[0,-1.245],[-7.243,3.529],[-2.735,1.414],[-7.092,-0.748],[-7.034,-5.965],[-9.528,-4.31]],"v":[[-42.108,-19.486],[-42.289,-11.182],[-20.333,2.162],[15.132,15.756],[43.618,5.878],[44.156,3.694],[39.784,2.501],[31.407,9.069],[14.581,10.462],[-14.028,0.155],[-31.373,-8.164]],"c":true}]},{"t":146,"s":[{"i":[[0.45,3.159],[-0.932,-3.029],[-8.114,-5.256],[-17.043,0],[-3.934,7.697],[0,0.321],[4.572,-2.227],[2.445,-1.264],[7.19,0.758],[8.72,6.673],[5.044,2.037]],"o":[[-0.389,3.524],[1.626,5.283],[8.81,5.543],[7.835,0],[0.431,-0.844],[0,-1.245],[-7.243,3.529],[-2.735,1.414],[-7.092,-0.748],[-6.945,-5.314],[-9.589,-3.873]],"v":[[-43.778,-15.766],[-43.451,-7.784],[-21.554,3.588],[15.025,15.766],[43.569,5.848],[44.108,3.665],[39.824,2.511],[31.407,9.059],[14.581,10.462],[-14.946,1.375],[-32.535,-5.264]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.886274516582,0.411764711142,0.152941182256,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[509.9,970.355],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":118,"s":[{"i":[[-4.309,1.463],[-2.144,-4.925],[-19.418,-6.265],[-0.017,-3.643],[21.824,-0.576],[7.023,4.326],[0.255,6.652],[-0.125,1.559],[-1.45,0.553],[-11.675,3.766],[-1.455,2.338]],"o":[[3.213,-0.237],[2.542,6.153],[6.645,2.153],[-1.011,4.656],[-21.997,0.583],[-5.503,-3.368],[0.084,-10.677],[0.379,-4.202],[-0.07,4.906],[2.157,-0.707],[2.009,-2.968]],"v":[[-5.451,-29.785],[-0.369,-21.134],[33.83,7.673],[43.972,20.055],[16.426,29.519],[-28.881,12.492],[-42.086,-0.271],[-38.374,-19.332],[-35.678,-24.871],[-21.546,-19.234],[-16.703,-24.808]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":123,"s":[{"i":[[-4.309,1.463],[-2.144,-4.925],[-19.418,-6.265],[-0.017,-3.643],[21.824,-0.576],[7.023,4.326],[0.255,6.652],[-0.125,1.559],[-1.45,0.553],[-11.675,3.766],[-1.455,2.338]],"o":[[3.213,-0.237],[2.542,6.153],[6.645,2.153],[-1.011,4.656],[-21.997,0.583],[-5.503,-3.368],[0.084,-10.677],[0.379,-4.202],[-0.07,4.906],[2.157,-0.707],[2.009,-2.969]],"v":[[-5.451,-29.785],[-0.369,-21.134],[33.83,7.673],[43.972,20.055],[16.426,29.519],[-28.881,12.492],[-42.086,-0.271],[-38.374,-19.332],[-35.678,-24.871],[-21.546,-19.234],[-16.703,-24.808]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-4.309,1.463],[-2.144,-4.925],[-19.418,-6.265],[-0.017,-3.643],[21.824,-0.576],[7.023,4.326],[0.255,6.652],[0.136,1.558],[-1.45,0.553],[-11.675,3.766],[-1.455,2.338]],"o":[[3.213,-0.237],[2.542,6.153],[6.645,2.153],[-1.011,4.656],[-21.997,0.583],[-5.503,-3.368],[0.084,-10.677],[-0.277,-3.185],[1.464,4.121],[2.157,-0.707],[2.009,-2.969]],"v":[[-8.335,-30.907],[-0.369,-21.134],[33.83,7.673],[43.972,20.055],[16.426,29.519],[-28.881,12.492],[-42.086,-0.271],[-39.729,-18.689],[-37.592,-24.239],[-21.106,-18.889],[-16.703,-24.808]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":142,"s":[{"i":[[-4.309,1.463],[-2.144,-4.925],[-19.418,-6.265],[-0.017,-3.643],[21.824,-0.576],[7.023,4.326],[0.255,6.652],[0.136,1.558],[-1.45,0.553],[-11.675,3.766],[-1.455,2.338]],"o":[[3.213,-0.237],[2.542,6.153],[6.645,2.153],[-1.011,4.656],[-21.997,0.583],[-5.503,-3.368],[0.084,-10.677],[-0.278,-3.185],[1.464,4.121],[2.157,-0.707],[2.009,-2.969]],"v":[[-8.335,-30.907],[-0.369,-21.134],[33.83,7.673],[43.972,20.055],[16.426,29.519],[-28.881,12.492],[-42.086,-0.271],[-39.729,-18.689],[-37.592,-24.239],[-21.106,-18.889],[-16.703,-24.808]],"c":true}]},{"t":146,"s":[{"i":[[-4.973,2.02],[-2.515,-5.125],[-20.699,-6.628],[-0.053,-3.431],[21.824,-0.587],[7.09,4.015],[0.83,7.084],[-0.046,1.574],[-1.381,0.695],[-11.375,4.607],[-1.24,2.564]],"o":[[3.561,-0.736],[2.968,6.046],[6.652,2.13],[-1.011,4.656],[-22.93,0.617],[-5.632,-3.19],[-0.645,-10.896],[0.119,-4.095],[0.729,4.893],[2.131,-0.863],[1.525,-3.153]],"v":[[-10.06,-29.561],[-3.21,-21.076],[33.967,7.449],[43.972,20.055],[16.426,29.617],[-28.383,17.014],[-43.873,4.573],[-41.753,-15.328],[-39.838,-21.082],[-25.365,-16.831],[-21.283,-23.196]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.227450981736,0.235294118524,0.23137255013,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[510.035,954.294],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":118,"op":179,"st":88,"bm":0},{"ddd":0,"ind":46,"ty":4,"nm":"giay R 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[535.15,984.424,0],"ix":2,"l":2},"a":{"a":0,"k":[535.15,984.424,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[0.009,8.755],[14.343,0.411],[2.887,3.141],[3.97,2.817],[0,0],[-2.087,-2.352],[-3.207,-2.267],[-2.516,-2.616],[-17.089,-0.967]],"o":[[-2.027,6.25],[-15.844,-0.454],[-2.029,-2.207],[-5.288,-3.753],[0,0],[0.901,1.015],[3.15,2.227],[5.199,5.404],[14.572,0.825]],"v":[[43.821,1.467],[14.971,10.996],[-18.216,-16.783],[-29.541,-27.139],[-36.128,-36.433],[-35.43,-28.666],[-26.604,-20.932],[-17.278,-10.484],[14.908,13.258]],"c":true}]},{"t":118,"s":[{"i":[[0.009,8.755],[14.343,0.411],[3.563,1.841],[4.245,2.371],[0,0],[-0.917,-1.567],[-3.427,-1.909],[-3.097,-1.846],[-17.089,-0.967]],"o":[[-2.027,6.25],[-15.844,-0.454],[-2.638,-1.352],[-5.818,-3.245],[0,0],[0.647,1.186],[3.365,1.874],[6.959,4.112],[14.572,0.825]],"v":[[43.821,1.467],[14.971,10.996],[-21.96,-4.865],[-36.923,-10.475],[-42.615,-16.816],[-41.863,-12.529],[-36.413,-7.379],[-21.814,-1.519],[14.961,13.099]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149019613862,0.149019613862,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[509.954,974.017],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[-0.497,3.286],[-0.932,-3.029],[-7.471,-11.318],[-12.862,-0.433],[-3.934,7.697],[0,0.321],[4.572,-2.227],[2.445,-1.264],[7.19,0.758],[6.465,8.154],[9.01,6.534]],"o":[[-2.434,1.848],[1.626,5.283],[6.529,7.619],[7.831,0.264],[0.431,-0.844],[0,-1.245],[-7.243,3.529],[-2.735,1.414],[-7.092,-0.748],[-7.516,-9.48],[-9.198,-6.67]],"v":[[-33.091,-39.578],[-36.014,-29.534],[-13.742,-5.537],[15.712,15.703],[43.882,6.036],[44.42,3.853],[39.574,2.449],[31.407,9.122],[14.581,10.462],[-9.071,-6.437],[-25.098,-23.826]],"c":true}]},{"t":118,"s":[{"i":[[0.302,3.178],[-0.932,-3.029],[-8.014,-6.203],[-16.39,-0.068],[-3.934,7.697],[0,0.321],[4.572,-2.227],[2.445,-1.264],[7.19,0.758],[8.368,6.904],[5.664,2.74]],"o":[[-0.709,3.263],[1.626,5.283],[8.453,5.867],[7.835,0.041],[0.431,-0.844],[0,-1.245],[-7.243,3.529],[-2.735,1.414],[-7.092,-0.748],[-7.034,-5.965],[-9.528,-4.31]],"v":[[-42.108,-19.486],[-42.289,-11.182],[-20.333,2.162],[15.132,15.756],[43.618,5.878],[44.156,3.694],[39.785,2.501],[31.407,9.069],[14.581,10.462],[-14.028,0.155],[-31.373,-8.164]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.886274516582,0.411764711142,0.152941182256,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[509.9,970.355],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[-0.725,-1.546],[-0.137,-3.844],[-12.502,-4.306],[0.18,-4.787],[21.826,-0.516],[6.66,6.004],[-2.849,4.32],[-0.55,1.476],[-1.822,-0.213],[-13.295,-0.776],[-2.619,1.118]],"o":[[1.337,2.454],[0.24,6.731],[6.604,2.275],[-1.011,4.656],[-16.962,0.401],[-4.807,-4.334],[4.026,-9.493],[1.78,-4.779],[-4.385,4.975],[2.296,0.134],[4.623,-1.973]],"v":[[19.44,-30.998],[14.977,-21.451],[33.092,8.886],[43.972,20.055],[16.426,28.992],[-31.57,-11.924],[-32.436,-26.427],[-20.128,-40.953],[-13.213,-45.332],[-0.927,-32.206],[8.03,-33.509]],"c":true}]},{"t":118,"s":[{"i":[[-4.309,1.463],[-2.144,-4.925],[-19.418,-6.265],[-0.017,-3.643],[21.824,-0.576],[7.023,4.326],[0.255,6.652],[-0.125,1.559],[-1.45,0.553],[-11.675,3.766],[-1.455,2.338]],"o":[[3.213,-0.237],[2.542,6.153],[6.645,2.153],[-1.011,4.656],[-21.997,0.583],[-5.503,-3.368],[0.084,-10.677],[0.379,-4.202],[-0.07,4.906],[2.157,-0.707],[2.009,-2.968]],"v":[[-5.451,-29.785],[-0.369,-21.134],[33.83,7.673],[43.972,20.055],[16.426,29.519],[-28.881,12.492],[-42.086,-0.271],[-38.374,-19.332],[-35.678,-24.871],[-21.546,-19.234],[-16.703,-24.808]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.227450981736,0.235294118524,0.23137255013,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[510.035,954.294],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":88,"op":118,"st":88,"bm":0},{"ddd":0,"ind":47,"ty":4,"nm":"chan R 2","parent":46,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[0.583]},"o":{"x":[0.333],"y":[0]},"t":88,"s":[59.147]},{"i":{"x":[0.667],"y":[0.766]},"o":{"x":[0.333],"y":[0.425]},"t":108,"s":[23.692]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[1.966]},"t":118,"s":[6.301]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[2.57]},{"t":146,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.45},"o":{"x":0.333,"y":0},"t":88,"s":[493.248,927.471,0],"to":[-0.146,1.333,0],"ti":[2.239,-2.239,0]},{"i":{"x":0.667,"y":0.713},"o":{"x":0.333,"y":0.279},"t":108,"s":[491.748,933.97,0],"to":[-1.295,1.295,0],"ti":[1.826,-0.903,0]},{"i":{"x":0.667,"y":0.543},"o":{"x":0.333,"y":0.038},"t":118,"s":[485.662,936.922,0],"to":[-0.396,0.196,0],"ti":[6.68,23.372,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.508},"t":128,"s":[475.856,886.68,0],"to":[-5.121,-17.919,0],"ti":[0.108,0.145,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[461.123,852.971,0],"to":[-0.25,-0.333,0],"ti":[-2.452,0.638,0]},{"t":146,"s":[482.498,938.221,0]}],"ix":2,"l":2},"a":{"a":0,"k":[6,91.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[3.038,-18.678],[1.661,-24.032],[-0.173,-12.029],[6.415,-0.689],[1.68,9.617],[4.121,18.754],[-2.706,32.427],[-9.607,-0.377]],"o":[[-1.97,12.109],[-2.602,37.651],[0.146,10.204],[-6.064,0.651],[-2.6,-14.882],[-12.279,-55.881],[1.268,-15.2],[10.888,0.427]],"v":[[25.693,-74.83],[24.605,-14.737],[20.483,85.243],[8.75,100.743],[-5.733,89.988],[-21.471,14.568],[-15.557,-78.899],[4.956,-100.848]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":118,"s":[{"i":[[3.038,-18.678],[1.661,-24.032],[-0.173,-12.029],[6.415,-0.689],[1.68,9.617],[4.121,18.754],[-2.706,32.427],[-9.607,-0.377]],"o":[[-1.97,12.109],[-2.602,37.651],[0.146,10.204],[-6.064,0.651],[-2.6,-14.882],[-12.279,-55.881],[1.268,-15.2],[10.888,0.427]],"v":[[25.693,-74.83],[24.605,-14.737],[20.483,85.243],[8.75,100.743],[-5.733,89.988],[-21.471,14.568],[-15.557,-78.899],[4.956,-100.848]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[3.038,-18.678],[1.661,-24.032],[-0.173,-12.029],[6.415,-0.689],[1.68,9.617],[4.121,18.754],[-4.173,29.191],[-9.607,-0.377]],"o":[[-1.97,12.109],[-2.602,37.651],[0.146,10.204],[-6.064,0.651],[-2.6,-14.882],[-12.279,-55.881],[2.159,-15.099],[10.888,0.427]],"v":[[25.693,-74.83],[24.605,-14.737],[20.483,85.243],[8.75,100.743],[-5.733,89.988],[-20.483,14.274],[-15.557,-78.899],[4.956,-100.848]],"c":true}]},{"t":146,"s":[{"i":[[3.038,-18.678],[1.661,-24.032],[-0.173,-12.029],[6.415,-0.689],[1.68,9.617],[4.121,18.754],[-2.706,32.427],[-9.607,-0.377]],"o":[[-1.97,12.109],[-2.602,37.651],[0.146,10.204],[-6.064,0.651],[-2.6,-14.882],[-12.279,-55.881],[1.268,-15.2],[10.888,0.427]],"v":[[25.693,-74.83],[24.605,-14.737],[20.483,85.243],[8.75,100.743],[-5.733,89.988],[-21.471,14.568],[-15.557,-78.899],[4.956,-100.848]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"chan R","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":48,"ty":4,"nm":"dau 3","parent":49,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-1.157,-4.055,0],"ix":2,"l":2},"a":{"a":0,"k":[492.654,328.724,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.604,10.238],[1.531,-5.127],[-3.569,-6.235],[-2.693,1.026]],"o":[[-2.678,-10.527],[-1.531,5.127],[2.946,5.146],[3.025,-1.152]],"v":[[7.274,-3.878],[-8.122,-8.125],[-3.877,6.427],[5.365,11.573]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[486.338,304.414],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[18.633,-25.828],[-8.901,-17.979],[-2.812,2.75],[0,0],[0,0],[-0.351,2.041],[-0.14,2.66],[-0.19,1.573],[-2.49,2.89]],"o":[[0,0],[-17.826,24.71],[0,0],[2.812,-2.75],[0,0],[0,0],[0.351,-2.041],[0.14,-2.66],[6.499,0.702],[4.232,-4.37]],"v":[[41.463,-34.636],[-33.642,-26.458],[-25.566,40.522],[-16.622,35.294],[-7.608,21.434],[1.743,15.28],[2.719,5.429],[6.278,-2.198],[7.131,-16.54],[36.715,-20.638]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.352941185236,0.349019616842,0.368627458811,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[496.572,283.944],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.188,-1.314],[1.5,-1.031],[-0.031,-0.781]],"o":[[2.371,6.346],[0.188,1.314],[-1.5,1.031],[0,0]],"v":[[-3.58,-11.033],[4.129,4.407],[2.254,8.096],[-4.163,11.033]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[538.035,303.517],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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,-3.486],[0.005,-0.806],[1.228,-11.789],[0.588,-1.073],[5.239,1.595],[4.625,6.125],[0,0]],"o":[[0.784,10.792],[0,2.914],[-0.008,1.38],[-0.862,8.278],[-1.426,2.6],[-6.257,-1.905],[-2.912,-3.857],[0,0]],"v":[[24.433,-33.561],[24.185,-19.103],[25.077,-12.033],[25.11,9.606],[23.215,30.434],[4.605,32.897],[-17.069,20.772],[-25.646,-13.629]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[511.112,308.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 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,-17.771],[17.771,0],[0,17.771],[-17.771,0]],"o":[[0,17.771],[-17.771,0],[0,-17.771],[17.771,0]],"v":[[32.177,0],[0,32.177],[-32.177,0],[0,-32.177]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.96862745285,0.698039233685,0.623529434204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[503.419,276.745],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[0,0],[3.667,-8.45],[0,0]],"o":[[4.306,6.945],[-4.811,-9.841],[0,0]],"v":[[2.138,-17.243],[-0.984,19.385],[-11.005,-15.39]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[{"i":[[0,0],[3.667,-8.45],[0,0]],"o":[[4.306,6.945],[-4.811,-9.841],[0,0]],"v":[[5.61,-18.314],[2.488,18.314],[-7.533,-16.461]],"c":true}]},{"t":146,"s":[{"i":[[0,0],[3.667,-8.45],[0,0]],"o":[[4.306,6.945],[-4.811,-9.841],[0,0]],"v":[[5.61,-18.314],[2.488,18.314],[-7.533,-16.461]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.215686276555,0.211764708161,0.223529413342,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[528.064,278.26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":49,"ty":4,"nm":"co 3","parent":44,"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":88,"s":[-1.626]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":128,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[0]},{"t":146,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":88,"s":[-12.786,-85.174,0],"to":[0.791,-3.119,0],"ti":[-0.29,3.147,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[-8.039,-103.885,0],"to":[0.29,-3.147,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":136,"s":[-11.045,-104.056,0],"to":[0,0,0],"ti":[-0.501,-0.028,0]},{"t":146,"s":[-8.039,-103.885,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-4.5,19.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"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":88,"s":[{"i":[[0,0],[-1.149,-13.7],[-4.66,-4.651],[0,0],[-0.912,3.794],[0,0]],"o":[[0,0],[0.345,4.109],[-5.561,5.821],[0,0],[0.912,-3.794],[0,0]],"v":[[25.106,-30.484],[22.669,16.237],[29.763,30.264],[-29.763,17.522],[-26.13,10.325],[-18.925,-31.394]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[{"i":[[0,0],[-1.149,-13.7],[-4.66,-4.651],[0,0],[-0.912,3.794],[0,0]],"o":[[0,0],[0.345,4.109],[-5.561,5.821],[0,0],[0.912,-3.794],[0,0]],"v":[[25.106,-30.484],[22.669,16.237],[29.763,30.264],[-29.763,17.522],[-26.13,10.325],[-18.925,-31.394]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[0,0],[-1.149,-13.7],[-4.66,-4.651],[0,0],[-0.912,3.794],[0,0]],"o":[[0,0],[0.345,4.109],[-5.561,5.821],[0,0],[0.912,-3.794],[0,0]],"v":[[25.106,-30.484],[22.669,16.237],[29.763,30.264],[-29.763,17.522],[-26.13,10.325],[-18.925,-31.394]],"c":true}]},{"t":146,"s":[{"i":[[0,0],[-1.149,-13.7],[-4.66,-4.651],[0,0],[-0.912,3.794],[0,0]],"o":[[0,0],[0.345,4.109],[-5.561,5.821],[0,0],[0.912,-3.794],[0,0]],"v":[[25.106,-30.484],[22.669,16.237],[29.763,30.264],[-29.763,17.522],[-26.13,10.325],[-18.925,-31.394]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"co","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":50,"ty":4,"nm":"mong 3","parent":39,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[0.219]},"o":{"x":[0.333],"y":[0]},"t":88,"s":[144.769]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0.385]},"t":108,"s":[98.442]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":128,"s":[4.499]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[0]},{"t":146,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.63},"o":{"x":0.333,"y":0},"t":88,"s":[485.011,556.887,0],"to":[0,0,0],"ti":[2.601,-17.644,0]},{"i":{"x":0.667,"y":0.532},"o":{"x":0.333,"y":0.219},"t":108,"s":[453.736,593.436,0],"to":[-0.623,4.227,0],"ti":[-2.96,-9.417,0]},{"i":{"x":0.667,"y":0.764},"o":{"x":0.333,"y":0.355},"t":113,"s":[456.854,613.813,0],"to":[2.97,9.451,0],"ti":[-6.532,-2.336,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.78},"t":118,"s":[474.736,633.471,0],"to":[11.868,4.245,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[503.173,627.688,0],"to":[0,0,0],"ti":[10.264,-6.457,0]},{"t":146,"s":[498.938,628.301,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-1,41.75,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[0,0],[-13.731,-19.393],[-36.771,9.33],[-5.87,8.963],[0.21,9.433],[2.013,6.429],[3.742,17.096]],"o":[[-0.91,19.865],[7.52,10.62],[10.427,-2.646],[5.546,-8.468],[-0.148,-6.62],[-3.196,-10.205],[0,0]],"v":[[-42.103,-53.138],[-30.297,15.635],[36.128,38.888],[62.031,22.813],[68.641,-3.188],[65.081,-22.195],[53.399,-60.885]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":98,"s":[{"i":[[0,0],[-11.131,-20.001],[-34.288,3.594],[-7.335,8.832],[0.106,10.3],[1.204,6.369],[3.292,17.294]],"o":[[-2.144,20.132],[6.348,11.496],[11.807,-1.252],[6.564,-7.72],[-0.09,-6.62],[-1.911,-10.109],[0,0]],"v":[[-41.574,-53.628],[-35.182,12.996],[23.279,41.668],[51.625,25.532],[63.692,-3.296],[61.641,-22.179],[53.399,-60.885]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":108,"s":[{"i":[[0,0],[-6.568,-21.067],[-24.939,-2.628],[-9.907,8.601],[-0.076,11.821],[1.047,7.351],[2.501,17.641]],"o":[[-4.312,20.6],[4.292,13.033],[14.23,1.193],[8.352,-6.407],[0.011,-6.62],[-1.663,-11.669],[0,0]],"v":[[-41.511,-54.237],[-43.755,8.363],[0.726,46.546],[38.969,33.879],[61.9,2.453],[60.205,-18.187],[53.399,-60.885]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":113,"s":[{"i":[[0,0],[-4.978,-21.636],[-16.404,-5.525],[-14.674,9.24],[-0.167,12.582],[1.285,7.538],[2.106,17.815]],"o":[[-5.396,20.834],[3.264,13.801],[14.019,6.246],[7.568,-5.635],[0.061,-6.62],[-2.039,-11.965],[0,0]],"v":[[-41.219,-56.525],[-47.584,4.765],[-16.567,44.433],[35.769,37.371],[59.984,7.037],[57.893,-13.928],[50.655,-57.512]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":118,"s":[{"i":[[0,0],[-3.388,-22.204],[-8.843,-6.795],[-10.36,21.301],[-0.259,13.343],[0.516,8.96],[3.923,16.797]],"o":[[-6.48,21.069],[2.236,14.569],[13.808,11.3],[4.965,-7.523],[0.111,-6.62],[-0.82,-14.223],[0,0]],"v":[[-41.793,-58.563],[-51.412,1.167],[-33.859,39.06],[32.568,40.863],[58.067,11.621],[61.244,-13.041],[50.253,-54.748]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[{"i":[[0,0],[-1.576,-22.852],[-1.592,-5.871],[-10.618,28.537],[-1.214,14.162],[0.214,9.877],[1.26,18.186]],"o":[[-7.714,21.335],[1.065,15.445],[7.53,27.762],[3.036,-8.159],[0.703,-8.2],[-0.34,-15.679],[0,0]],"v":[[-42.447,-60.885],[-55.775,-2.932],[-50.218,31.562],[28.921,44.842],[57.086,16.337],[57.317,-8.376],[55.441,-60.603]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[0,0],[-1.576,-22.852],[-2.589,-5.703],[-10.618,28.537],[-2.948,13.905],[-0.27,9.876],[1.26,18.186]],"o":[[-9.011,19.809],[1.065,15.445],[11.889,26.193],[3.036,-8.159],[1.653,-7.796],[0.449,-16.467],[0,0]],"v":[[-42.577,-56.379],[-57.876,-2.001],[-50.218,31.562],[28.921,44.842],[58.327,19.405],[59.818,-8.195],[57.451,-58.991]],"c":true}]},{"t":146,"s":[{"i":[[0,0],[-1.576,-22.852],[-1.592,-5.871],[-10.618,28.537],[-0.363,14.21],[0.214,9.877],[1.26,18.186]],"o":[[-7.714,21.335],[1.065,15.445],[7.53,27.762],[3.036,-8.159],[0.169,-6.619],[-0.34,-15.679],[0,0]],"v":[[-42.447,-60.885],[-55.775,-2.932],[-50.218,31.562],[28.921,44.842],[55.883,16.844],[55.813,-8.338],[53.399,-60.885]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.086274512112,0.086274512112,0.086274512112,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"mong","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":51,"ty":4,"nm":"giay L 6","parent":54,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.672],"y":[0.335]},"o":{"x":[0.296],"y":[0]},"t":118,"s":[-6.389]},{"i":{"x":[0.806],"y":[1]},"o":{"x":[0.43],"y":[0.387]},"t":121,"s":[-0.369]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":123,"s":[8.675]},{"i":{"x":[0.585],"y":[1.172]},"o":{"x":[0.178],"y":[0]},"t":136,"s":[8.675]},{"i":{"x":[0.673],"y":[0.615]},"o":{"x":[0.336],"y":[0.048]},"t":142,"s":[23.802]},{"i":{"x":[0.69],"y":[1]},"o":{"x":[0.351],"y":[0.64]},"t":144,"s":[9.264]},{"t":146,"s":[-0.154]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":118,"s":[4.181,82.771,0],"to":[-0.417,0.012,0],"ti":[0.351,0.025,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":123,"s":[1.682,82.841,0],"to":[-0.351,-0.025,0],"ti":[-0.646,0.22,0]},{"i":{"x":0.667,"y":0.561},"o":{"x":0.333,"y":0},"t":136,"s":[2.074,82.619,0],"to":[0.119,-0.041,0],"ti":[0.043,0.12,0]},{"i":{"x":0.667,"y":0.632},"o":{"x":0.333,"y":0.153},"t":139,"s":[1.633,82.589,0],"to":[-0.1,-0.278,0],"ti":[-0.595,0.185,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.217},"t":142,"s":[2.337,81.486,0],"to":[0.532,-0.166,0],"ti":[-0.223,0.07,0]},{"t":146,"s":[5.556,81.521,0]}],"ix":2,"l":2},"a":{"a":0,"k":[522.777,909.128,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":118,"s":[{"i":[[0.37,6.619],[11.317,-0.138],[5.111,0.405],[7.497,0.275],[0,0],[-0.909,-0.98],[-7.379,-0.218],[-2.074,-0.152],[-14.619,0.004]],"o":[[-1.041,4.006],[-12.886,0.159],[-5.017,-0.351],[-12.796,-0.437],[0,0],[1.106,1.156],[5.752,0.167],[4.675,0.35],[11.525,-0.003]],"v":[[41.633,-4.798],[16.489,3.168],[-13.275,-0.973],[-29.46,-1.352],[-41.201,-6.904],[-40.789,-2.587],[-29.451,1.263],[-13.499,1.238],[16.489,4.827]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-4.41,4.371],[6.913,5.989],[3.275,4.089],[5.546,4.357],[0,0],[-2.046,-3.97],[-7.738,-6.957],[-3.445,-3.836],[-11.934,-8.973]],"o":[[-4.933,-0.046],[-9.38,-8.125],[-2.829,-3.532],[-10.224,-8.033],[0,0],[0.79,1.533],[4.141,3.723],[3.252,3.622],[6.001,4.512]],"v":[[9.255,36.235],[-10.127,27.291],[-30.989,4.48],[-42.294,-6.448],[-53.702,-22.142],[-54.683,-15.606],[-43.576,-3.362],[-32.236,7.002],[-10.682,29.918]],"c":true}]},{"t":146,"s":[{"i":[[0.368,6.479],[11.317,-0.19],[5.219,0],[7.529,0],[0,0],[-0.908,-0.857],[-7.378,0],[-2.11,0],[-14.461,0]],"o":[[-0.934,4.088],[-12.975,0.217],[-5.219,0],[-13.01,0],[0,0],[1.155,1.091],[5.768,0],[4.74,0],[11.525,0]],"v":[[41.633,-4.798],[16.489,3.168],[-13.617,0.824],[-29.91,1.558],[-41.582,-3.359],[-41.004,0.909],[-29.91,4.095],[-13.617,3.025],[16.489,4.798]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149019613862,0.149019613862,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[544.232,939.799],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":118,"s":[{"i":[[0.355,2.483],[-0.442,-2.777],[-17.83,0.267],[-18.176,-0.15],[-2.058,6.479],[0.662,1.231],[0.505,-0.816],[2.078,-0.628],[8.698,-0.483],[6.442,0.424],[4.287,0.503]],"o":[[-0.424,2.668],[0.985,6.738],[8.527,0.524],[6.179,0.055],[0.172,-0.542],[-0.329,-0.908],[-0.707,1.142],[-6.568,1.986],[-11.225,0.624],[-6.809,-0.429],[-8.82,-0.993]],"v":[[-41.039,-10.099],[-41.279,-3.337],[-13.759,2.574],[16.454,6.476],[41.588,-2.331],[41.588,-6.083],[38.733,-4.367],[34.627,-1.099],[16.444,1.987],[-13.437,-3.109],[-29.623,-3.531]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-0.602,2.435],[0.168,-2.815],[-12.475,-10.803],[-13.439,-10.306],[-6.333,2.282],[0.037,2.169],[1.145,0.041],[2.094,0.574],[5.24,5],[4.785,4.863],[3.269,3.392]],"o":[[-1.77,1.563],[-0.24,4.01],[6.516,6.25],[5.062,3.882],[0.535,-0.193],[0.036,-0.965],[-1.343,-0.048],[-7.502,-2.056],[-8.134,-7.761],[-4.838,-4.917],[-6.213,-6.447]],"v":[[-48.605,-25.097],[-53.747,-17.949],[-35.52,3.278],[-12.558,28.989],[8.951,38.485],[12.969,34.978],[10.319,34.09],[4.882,33.98],[-11.543,23.452],[-31.692,-0.754],[-43.835,-11.925]],"c":true}]},{"t":146,"s":[{"i":[[0.355,2.483],[-0.357,-2.797],[-18.24,1.304],[-18.411,0],[-2.058,6.479],[0.662,1.231],[0.505,-0.816],[2.078,-0.628],[8.698,-0.483],[6.475,0],[4.285,0.24]],"o":[[-0.307,2.771],[0.93,7.281],[8.553,0],[6.181,0],[0.172,-0.542],[-0.329,-0.908],[-0.707,1.142],[-6.568,1.986],[-11.225,0.624],[-6.898,0],[-8.939,-0.502]],"v":[[-41.723,-6.505],[-41.621,-0.075],[-13.662,4.693],[16.444,6.506],[41.588,-2.331],[41.588,-6.083],[38.733,-4.367],[34.627,-1.099],[16.444,1.987],[-13.662,-1.107],[-29.955,-0.562]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.886274516582,0.411764711142,0.152941182256,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[544.277,937.331],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"t":118,"s":[{"i":[[-3.429,0.687],[-3.407,-5.257],[-14.057,-2.754],[-0.042,-2.697],[17.215,-0.462],[7.438,0.369],[-0.253,9.338],[0.032,1.232],[-1.265,0.681],[-5.987,4.811],[-1.182,1.644]],"o":[[2.123,0.268],[5.73,8.944],[5.407,1.059],[-0.797,3.661],[-18.088,0.485],[-20.256,-0.982],[0.308,-10.701],[-0.084,-3.233],[1.435,4.286],[1.371,-1.142],[1.611,-2.026]],"v":[[-7.486,-21.586],[-2.769,-13.839],[33.763,5.289],[41.655,12.411],[16.582,20.981],[-13.512,17.374],[-40.879,6.461],[-36.697,-9.624],[-34.006,-14.693],[-17.802,-13.362],[-13.564,-18.068]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-3.061,-1.501],[-1.02,-4.159],[-6.846,-12.582],[2.728,-4.856],[8.322,7.318],[4.637,4.566],[-2.404,9.042],[-0.071,1.23],[-1.32,-0.541],[-9.469,-0.394],[-1.813,0.984]],"o":[[3.268,1.993],[2.492,10.166],[3.408,6.263],[-3.548,3.014],[-13.588,-11.949],[-14.677,-14.453],[1.94,-7.297],[0.186,-3.228],[-1.614,4.707],[1.675,0.07],[2.431,-1.32]],"v":[[-6.58,-11.859],[-4.725,3.489],[9.668,38.546],[12.852,52.985],[-7.535,47.307],[-31.948,21.066],[-50.453,-3.503],[-40.518,-13.923],[-35.216,-18.571],[-20.533,-9.024],[-14.867,-10.063]],"c":true}]},{"t":146,"s":[{"i":[[-3.923,1.588],[-3.723,-5.604],[-14.057,-2.754],[-0.042,-2.697],[17.215,-0.462],[7.537,-0.265],[0,9.356],[0.032,1.232],[-1.242,0.939],[-5.299,5.204],[-0.978,2.016]],"o":[[2.416,-0.217],[5.881,8.853],[5.406,1.059],[-0.797,3.661],[-18.088,0.485],[-20.586,0.725],[0,-10.577],[-0.084,-3.233],[2.055,3.9],[1.292,-1.269],[1.203,-2.479]],"v":[[-11.347,-20.951],[-5.476,-13.992],[33.763,5.289],[41.655,12.411],[16.511,20.875],[-13.594,20.081],[-41.655,10.357],[-38.781,-5.692],[-36.725,-10.95],[-20.698,-10.996],[-17.46,-16.173]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149019613862,0.149019613862,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[544.21,919.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 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":118,"op":183,"st":88,"bm":0},{"ddd":0,"ind":52,"ty":4,"nm":"giay L 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[570.277,944.128,0],"ix":2,"l":2},"a":{"a":0,"k":[570.277,944.128,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[0.385,7.375],[11.318,0.141],[4.53,2.592],[7.321,1.758],[0,0],[-0.916,-1.645],[-7.385,-1.394],[-1.874,-0.971],[-15.471,0.028]],"o":[[-1.615,3.562],[-12.409,-0.154],[-3.928,-2.248],[-11.635,-2.794],[0,0],[0.839,1.507],[5.668,1.07],[4.322,2.239],[11.525,-0.021]],"v":[[41.633,-4.798],[16.489,3.168],[-11.429,-10.676],[-27.035,-17.067],[-39.144,-26.046],[-39.629,-21.466],[-26.972,-14.03],[-12.867,-8.413],[16.489,4.986]],"c":true}]},{"t":118,"s":[{"i":[[0.37,6.619],[11.317,-0.138],[5.111,0.405],[7.497,0.275],[0,0],[-0.909,-0.98],[-7.379,-0.218],[-2.074,-0.152],[-14.619,0.004]],"o":[[-1.041,4.006],[-12.886,0.159],[-5.017,-0.351],[-12.796,-0.437],[0,0],[1.106,1.156],[5.752,0.167],[4.675,0.35],[11.525,-0.003]],"v":[[41.633,-4.798],[16.489,3.168],[-13.275,-0.973],[-29.46,-1.352],[-41.201,-6.904],[-40.789,-2.587],[-29.451,1.263],[-13.499,1.238],[16.489,4.827]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149019613862,0.149019613862,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[544.232,939.799],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[0.355,2.483],[-0.899,-2.672],[-15.616,-5.337],[-16.909,-0.961],[-2.058,6.479],[0.662,1.231],[0.505,-0.816],[2.078,-0.628],[8.698,-0.483],[6.259,2.714],[4.302,1.918]],"o":[[-1.055,2.112],[1.281,3.807],[8.384,3.351],[6.171,0.351],[0.172,-0.542],[-0.329,-0.908],[-0.707,1.142],[-6.568,1.986],[-11.225,0.624],[-6.329,-2.744],[-8.177,-3.646]],"v":[[-37.348,-29.506],[-39.434,-20.95],[-14.287,-8.869],[16.506,6.318],[41.588,-2.331],[41.588,-6.083],[38.733,-4.367],[34.627,-1.099],[16.444,1.987],[-12.224,-13.92],[-27.83,-19.562]],"c":true}]},{"t":118,"s":[{"i":[[0.355,2.483],[-0.442,-2.777],[-17.83,0.267],[-18.176,-0.15],[-2.058,6.479],[0.662,1.231],[0.505,-0.816],[2.078,-0.628],[8.698,-0.483],[6.442,0.424],[4.287,0.503]],"o":[[-0.424,2.668],[0.985,6.738],[8.527,0.524],[6.179,0.055],[0.172,-0.542],[-0.329,-0.908],[-0.707,1.142],[-6.568,1.986],[-11.225,0.624],[-6.809,-0.429],[-8.82,-0.993]],"v":[[-41.039,-10.099],[-41.279,-3.337],[-13.759,2.574],[16.454,6.476],[41.588,-2.331],[41.588,-6.083],[38.733,-4.367],[34.627,-1.099],[16.444,1.987],[-13.437,-3.109],[-29.623,-3.531]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.886274516582,0.411764711142,0.152941182256,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[544.277,937.331],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.875},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[-2.175,-1.991],[-2.046,-3.762],[-14.057,-2.754],[-0.042,-2.697],[17.215,-0.462],[7.009,3.103],[-1.346,9.259],[0.032,1.232],[-1.36,-0.429],[-8.95,3.117],[-2.062,0.045]],"o":[[2.416,-0.217],[5.079,9.336],[5.407,1.059],[-0.797,3.661],[-18.088,0.485],[-18.836,-8.338],[1.633,-11.235],[-0.084,-3.233],[-1.235,5.946],[1.71,-0.596],[3.374,-0.073]],"v":[[13.403,-22.451],[8.899,-13.179],[33.763,5.289],[41.655,12.411],[16.886,21.437],[-13.157,5.706],[-37.53,-10.331],[-27.718,-26.567],[-22.287,-30.825],[-5.323,-23.558],[4.852,-25.486]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.125},"t":108,"s":[{"i":[[-2.613,-0.803],[-2.885,-4.683],[-14.057,-2.754],[-0.042,-2.697],[17.215,-0.462],[7.273,1.419],[-0.673,9.308],[0.032,1.232],[-1.301,0.255],[-7.124,4.161],[-1.52,1.03]],"o":[[1.637,1.072],[5.48,9.095],[5.407,1.059],[-0.797,3.661],[-18.088,0.485],[-19.711,-3.807],[0.816,-10.906],[-0.084,-3.233],[0.41,4.923],[1.501,-0.932],[2.288,-1.276]],"v":[[-1.097,-22.638],[1.712,-13.586],[33.763,5.289],[41.655,12.411],[16.699,21.156],[-13.376,12.894],[-39.593,0.013],[-33.249,-16.13],[-29.506,-20.888],[-13.01,-17.277],[-7.116,-21.205]],"c":true}]},{"t":118,"s":[{"i":[[-3.429,0.687],[-3.407,-5.257],[-14.057,-2.754],[-0.042,-2.697],[17.215,-0.462],[7.438,0.369],[-0.253,9.338],[0.032,1.232],[-1.265,0.681],[-5.987,4.811],[-1.182,1.644]],"o":[[2.123,0.268],[5.73,8.944],[5.407,1.059],[-0.797,3.661],[-18.088,0.485],[-20.256,-0.982],[0.308,-10.701],[-0.084,-3.233],[1.435,4.286],[1.371,-1.142],[1.611,-2.026]],"v":[[-7.486,-21.586],[-2.769,-13.839],[33.763,5.289],[41.655,12.411],[16.582,20.981],[-13.512,17.374],[-40.879,6.461],[-36.697,-9.624],[-34.006,-14.693],[-17.802,-13.362],[-13.564,-18.068]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149019613862,0.149019613862,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[544.21,919.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 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":118,"st":88,"bm":0},{"ddd":0,"ind":53,"ty":4,"nm":"dui L 3","parent":54,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[0.402]},"o":{"x":[0.333],"y":[0]},"t":88,"s":[-112.459]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0.424]},"t":108,"s":[-65.454]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":128,"s":[0.841]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[-0.205]},{"t":146,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.4},"o":{"x":0.333,"y":0},"t":88,"s":[11.665,-76.878,0],"to":[0.154,1.31,0],"ti":[1.59,-2.193,0]},{"i":{"x":0.667,"y":0.593},"o":{"x":0.333,"y":0.4},"t":108,"s":[10.138,-71.824,0],"to":[-0.928,1.28,0],"ti":[1.331,-1.096,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.392},"t":118,"s":[6.87,-69.461,0],"to":[-0.949,0.781,0],"ti":[0.546,-0.277,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[4.033,-66.351,0],"to":[-1.311,0.666,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":136,"s":[4.033,-66.351,0],"to":[0,0,0],"ti":[-1.932,0.981,0]},{"t":146,"s":[4.033,-66.351,0]}],"ix":2,"l":2},"a":{"a":0,"k":[521.087,761.238,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[-15.515,5.408],[-1.038,-17.231],[5.412,-63.513],[1.968,10.976],[-0.289,16.792]],"o":[[25.914,-9.032],[2.603,43.189],[-3.875,16.76],[-1.183,-6.597],[0.348,-20.24]],"v":[[-11.029,-81.506],[33.688,-60.94],[28.656,73.727],[-29.237,58.787],[-36.095,-40.204]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":118,"s":[{"i":[[-15.515,5.408],[-1.038,-17.231],[5.997,-63.676],[1.968,10.976],[-0.289,16.792]],"o":[[25.914,-9.032],[2.603,43.189],[-3.875,16.76],[-1.183,-6.597],[0.348,-20.24]],"v":[[-10.247,-87.563],[33.749,-68.35],[28.656,73.727],[-27.148,71.608],[-40.46,-40.588]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[{"i":[[-15.515,5.408],[-1.038,-17.231],[6.105,-63.706],[1.968,10.976],[-0.289,16.792]],"o":[[25.914,-9.032],[2.603,43.189],[-3.875,16.76],[-1.183,-6.597],[0.348,-20.24]],"v":[[-9.677,-81.482],[37.176,-59.778],[28.656,73.727],[-26.761,73.982],[-34.878,-40.391]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-15.515,5.408],[-0.836,-17.242],[6.105,-63.706],[1.968,10.976],[-0.289,16.792]],"o":[[25.914,-9.032],[2.045,42.155],[-3.875,16.76],[-1.183,-6.597],[0.348,-20.24]],"v":[[-9.677,-81.482],[38.298,-59.699],[28.656,73.727],[-26.761,73.982],[-34.878,-40.391]],"c":true}]},{"t":146,"s":[{"i":[[-15.515,5.408],[-1.038,-17.231],[6.105,-63.706],[1.968,10.976],[-0.289,16.792]],"o":[[25.914,-9.032],[2.603,43.189],[-3.875,16.76],[-1.183,-6.597],[0.348,-20.24]],"v":[[-9.677,-81.482],[33.665,-59.588],[28.656,73.727],[-26.761,73.982],[-34.878,-40.391]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.086274512112,0.086274512112,0.086274512112,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[522.587,655.592],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0.258,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[0,0],[2.636,-12.084],[11.253,0.718],[2.34,14.96],[0,0]],"o":[[-1.407,32.029],[-2.47,11.323],[-5.862,-0.374],[-3.106,-19.857],[0,0]],"v":[[26.355,-31.646],[19.314,21.357],[-1.25,39.693],[-19.843,21.404],[-28.191,-39.364]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"t":128,"s":[{"i":[[0,0],[3.044,-11.874],[12.36,0.41],[2.34,14.96],[0,0]],"o":[[-1.407,32.029],[-2.878,11.226],[-5.871,-0.195],[-3.106,-19.857],[0,0]],"v":[[28.191,-37.578],[19.314,21.357],[-1.174,39.347],[-19.843,21.404],[-28.191,-39.364]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[0,0],[3.044,-11.874],[12.36,0.41],[2.34,14.96],[0,0]],"o":[[-1.407,32.029],[-2.878,11.226],[-5.871,-0.195],[-3.106,-19.857],[0,0]],"v":[[28.191,-37.578],[19.314,21.357],[-1.174,39.347],[-19.843,21.404],[-28.191,-39.364]],"c":true}]},{"t":146,"s":[{"i":[[0,0],[3.044,-11.874],[12.36,0.41],[2.34,14.96],[0,0]],"o":[[-1.407,32.029],[-2.878,11.226],[-5.871,-0.195],[-3.106,-19.857],[0,0]],"v":[[28.191,-37.578],[19.314,21.357],[-1.174,39.347],[-19.843,21.404],[-28.191,-39.364]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[523.051,734.868],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0.258,"ix":6},"o":{"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":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":54,"ty":4,"nm":"chan L 4","parent":52,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[0.57]},"o":{"x":[0.333],"y":[0]},"t":88,"s":[55.158]},{"i":{"x":[0.667],"y":[0.758]},"o":{"x":[0.333],"y":[0.412]},"t":108,"s":[23.121]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0.696]},"t":118,"s":[6.389]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[-4.095]},{"t":146,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.583},"o":{"x":0.333,"y":0},"t":88,"s":[524.804,902.339,0],"to":[-0.396,0.979,0],"ti":[0.99,-2.448,0]},{"i":{"x":0.667,"y":0.738},"o":{"x":0.333,"y":0.465},"t":108,"s":[522.553,909.59,0],"to":[-0.621,1.536,0],"ti":[0.511,-0.77,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.018},"t":118,"s":[521.189,912.702,0],"to":[-0.155,0.234,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[536.304,824.339,0],"to":[0,0,0],"ti":[-0.792,1.958,0]},{"t":146,"s":[520.054,914.089,0]}],"ix":2,"l":2},"a":{"a":0,"k":[3,86.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[3.335,-17.45],[2.188,-22.51],[0.156,-11.294],[6.018,-0.479],[1.317,9.069],[3.359,17.708],[-3.387,30.361],[-8.976,-0.605]],"o":[[-2.162,11.312],[-3.428,35.267],[-0.133,9.58],[-5.689,0.452],[-2.038,-14.035],[-10.007,-52.764],[1.588,-14.232],[10.172,0.686]],"v":[[24.674,-69.697],[21.642,-12.536],[15.571,80.393],[4.188,94.633],[-9.073,84.161],[-21.8,12.969],[-13.799,-74.594],[5.967,-94.657]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":118,"s":[{"i":[[3.335,-17.45],[2.188,-22.51],[0.156,-11.294],[6.018,-0.479],[1.317,9.069],[3.359,17.708],[-3.387,30.361],[-8.976,-0.605]],"o":[[-2.162,11.312],[-3.428,35.267],[-0.133,9.58],[-5.689,0.452],[-2.038,-14.035],[-10.007,-52.764],[1.588,-14.232],[10.172,0.686]],"v":[[24.674,-69.697],[21.642,-12.536],[15.571,80.393],[4.188,94.633],[-9.073,84.161],[-21.8,12.969],[-13.799,-74.594],[5.967,-94.657]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[3.335,-17.45],[2.188,-22.51],[0.156,-11.294],[6.018,-0.479],[1.317,9.069],[3.359,17.708],[-3.387,30.361],[-8.976,-0.605]],"o":[[-2.162,11.312],[-3.428,35.267],[-0.133,9.58],[-5.689,0.452],[-2.038,-14.035],[-10.007,-52.764],[1.588,-14.232],[10.172,0.686]],"v":[[24.674,-69.697],[21.642,-12.536],[15.571,80.393],[4.188,94.633],[-9.073,84.161],[-21.8,12.969],[-13.799,-74.594],[5.967,-94.657]],"c":true}]},{"t":146,"s":[{"i":[[3.335,-17.45],[2.188,-22.51],[0.156,-11.294],[6.018,-0.479],[1.317,9.069],[3.359,17.708],[-3.387,30.361],[-8.976,-0.605]],"o":[[-2.162,11.312],[-3.428,35.267],[-0.133,9.58],[-5.689,0.452],[-2.038,-14.035],[-10.007,-52.764],[1.588,-14.232],[10.172,0.686]],"v":[[24.674,-69.697],[21.642,-12.536],[15.571,80.393],[4.188,94.633],[-9.073,84.161],[-21.8,12.969],[-13.799,-74.594],[5.967,-94.657]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"chan L","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":88,"op":178,"st":88,"bm":0},{"ddd":0,"ind":55,"ty":4,"nm":"ban tay L 3","parent":56,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[0.638]},"o":{"x":[0.333],"y":[0]},"t":88,"s":[-83.246]},{"i":{"x":[0.667],"y":[1.782]},"o":{"x":[0.333],"y":[3.819]},"t":108,"s":[-25.72]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[-6.581]},"t":123,"s":[-21.632]},{"i":{"x":[0.667],"y":[-1.531]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[-21.211]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[-0.049]},"t":141,"s":[-21.632]},{"t":146,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.5},"o":{"x":0.333,"y":0},"t":88,"s":[20.418,46.697,0],"to":[0.011,0.104,0],"ti":[-0.029,-0.26,0]},{"i":{"x":0.667,"y":0.964},"o":{"x":0.333,"y":0.027},"t":108,"s":[20.487,47.321,0],"to":[0.018,0.159,0],"ti":[0.313,0.306,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.036},"t":123,"s":[15.922,39.834,0],"to":[-0.2,-0.195,0],"ti":[-0.004,-0.04,0]},{"i":{"x":0.667,"y":0.986},"o":{"x":0.167,"y":0},"t":136,"s":[19.43,46.467,0],"to":[0.023,0.208,0],"ti":[0.313,0.306,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.011},"t":141,"s":[15.922,39.834,0],"to":[-0.2,-0.195,0],"ti":[-0.772,-1.352,0]},{"t":146,"s":[20.556,47.945,0]}],"ix":2,"l":2},"a":{"a":0,"k":[556.241,576.254,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"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":88,"s":[{"i":[[0.558,4.106],[-1.42,-2.068],[-0.834,-7.587],[-0.791,-6.862],[1.388,1.044],[0.99,2.258],[0.917,0.357]],"o":[[-1.017,-7.477],[4.612,6.719],[0.428,3.895],[0.387,3.355],[-2.598,-1.955],[-1.234,-2.817],[-0.917,-0.357]],"v":[[-14.797,-2.677],[-7.685,-13.263],[-1.045,2.199],[0.663,14.783],[-2.876,16.216],[-6.543,9.727],[-9.537,3.956]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":108,"s":[{"i":[[0.558,4.106],[-1.42,-2.068],[-0.834,-7.587],[-0.791,-6.862],[1.388,1.044],[0.99,2.258],[0.917,0.357]],"o":[[-1.017,-7.477],[4.612,6.719],[0.428,3.895],[0.387,3.355],[-2.598,-1.955],[-1.234,-2.817],[-0.917,-0.357]],"v":[[-14.797,-2.677],[-7.685,-13.263],[-1.045,2.199],[0.663,14.783],[-2.876,16.216],[-6.543,9.727],[-9.537,3.956]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[1.49,3.867],[-1.858,-1.685],[-2.561,-7.19],[-2.352,-6.495],[1.591,0.696],[1.484,1.969],[0.975,0.136]],"o":[[-2.713,-7.041],[6.037,5.474],[1.315,3.692],[1.15,3.176],[-2.979,-1.303],[-1.851,-2.456],[-0.975,-0.136]],"v":[[-1.24,-4.569],[3.24,-16.51],[13.266,-2.995],[17.828,8.856],[14.715,11.066],[9.651,5.597],[5.408,0.673]],"c":true}]},{"t":146,"s":[{"i":[[0.943,4.035],[-1.608,-1.925],[-1.546,-7.474],[-1.435,-6.757],[1.48,0.909],[1.198,2.155],[0.947,0.269]],"o":[[-1.718,-7.348],[5.225,6.254],[0.794,3.838],[0.702,3.304],[-2.771,-1.701],[-1.495,-2.688],[-0.947,-0.269]],"v":[[-8.428,-3.415],[-2.346,-14.625],[5.722,0.142],[8.609,12.509],[5.221,14.269],[0.959,8.155],[-2.566,2.693]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[572.713,595.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 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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[-1.174,-2.676],[-1.197,-9.714],[0.825,1.961],[1.121,3.294],[-0.048,5.789],[-6.773,4.205]],"o":[[4.623,10.534],[0.165,1.343],[-0.737,-1.752],[-1.063,-3.124],[0.033,-3.979],[5.62,-3.489]],"v":[[2.591,-14.348],[9.101,12.596],[-12.247,15.842],[-14.253,9.979],[-16.604,-4.273],[-10.185,-18.756]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":108,"s":[{"i":[[-1.174,-2.676],[-1.197,-9.714],[0.825,1.961],[1.121,3.294],[-0.048,5.789],[-6.773,4.205]],"o":[[4.623,10.534],[0.166,1.343],[-0.737,-1.752],[-1.063,-3.124],[0.033,-3.979],[5.62,-3.489]],"v":[[2.591,-14.348],[9.101,12.596],[-12.247,15.842],[-14.253,9.979],[-16.604,-4.273],[-10.185,-18.756]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-2.089,-2.043],[-6.503,-15.564],[0.825,1.961],[1.121,3.294],[-0.854,5.275],[-6.827,3.416]],"o":[[3.264,3.192],[0.522,1.248],[-0.737,-1.752],[-1.063,-3.124],[0.636,-3.928],[5.916,-2.96]],"v":[[3.753,-15.617],[21.096,4.175],[-11.862,19.553],[-13.822,13.568],[-16.663,-6.624],[-10.265,-18.992]],"c":true}]},{"t":146,"s":[{"i":[[-1.659,-2.405],[-3.924,-15.521],[0.825,1.961],[1.121,3.294],[-0.854,5.275],[-6.827,3.416]],"o":[[7.452,10.801],[0.332,1.312],[-0.737,-1.752],[-1.063,-3.124],[0.636,-3.928],[5.916,-2.96]],"v":[[3.165,-14.213],[16.287,11.014],[-11.238,19.591],[-14.212,13.794],[-16.051,-4.394],[-10.265,-18.992]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[563.832,588.477],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[-0.667,-2.047],[0,0],[-1.412,0.335],[0,0],[0.132,1.394],[0,0],[2.289,-0.668],[0,0]],"o":[[0,0],[0.449,1.379],[0,0],[1.362,-0.323],[0,0],[-0.225,-2.374],[0,0],[-2.069,0.604]],"v":[[-7.32,-12.804],[-4.493,-4.13],[-1.203,-2.284],[-1.203,-2.284],[0.945,-5.281],[0.084,-14.372],[-4.754,-17.655],[-4.754,-17.655]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":108,"s":[{"i":[[-0.667,-2.047],[0,0],[-1.412,0.335],[0,0],[0.132,1.394],[0,0],[2.289,-0.668],[0,0]],"o":[[0,0],[0.449,1.379],[0,0],[1.362,-0.323],[0,0],[-0.225,-2.374],[0,0],[-2.069,0.604]],"v":[[-7.32,-12.804],[-4.493,-4.13],[-1.203,-2.284],[-1.203,-2.284],[0.945,-5.281],[0.084,-14.372],[-4.754,-17.655],[-4.754,-17.655]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-0.546,-2.083],[0,0],[-1.429,0.251],[0,0],[0.05,1.399],[0,0],[2.325,-0.533],[0,0]],"o":[[0,0],[0.368,1.403],[0,0],[1.379,-0.242],[0,0],[-0.085,-2.383],[0,0],[-2.101,0.481]],"v":[[-4.464,-2.495],[-2.151,6.33],[1.026,8.366],[1.026,8.366],[3.346,5.5],[3.02,-3.626],[-1.618,-7.187],[-1.618,-7.187]],"c":true}]},{"t":146,"s":[{"i":[[-0.835,-1.985],[0,0],[-1.379,0.451],[0,0],[0.248,1.378],[0,0],[2.226,-0.856],[0,0]],"o":[[0,0],[0.562,1.337],[0,0],[1.331,-0.435],[0,0],[-0.422,-2.347],[0,0],[-2.012,0.774]],"v":[[-4.304,-2.405],[-0.765,6.004],[2.667,7.569],[2.667,7.569],[4.559,4.404],[2.944,-4.584],[-2.151,-7.453],[-2.151,-7.453]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[556.161,608.722],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":88,"s":[{"i":[[-0.254,-1.548],[0.689,-4.256],[0.905,2.629],[0.62,2.213],[-1.522,0.292]],"o":[[0,0],[-0.398,2.459],[-0.954,-2.77],[-0.62,-2.213],[1.818,-0.349]],"v":[[-0.217,-16.268],[-0.195,-7.742],[-4.239,-6.463],[-7.178,-15.431],[-4.408,-18.984]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":108,"s":[{"i":[[-0.254,-1.548],[0.69,-4.256],[0.905,2.63],[0.62,2.213],[-1.522,0.292]],"o":[[0,0],[-0.398,2.459],[-0.954,-2.77],[-0.62,-2.213],[1.818,-0.349]],"v":[[-0.217,-16.268],[-0.195,-7.742],[-4.239,-6.463],[-7.178,-15.431],[-4.408,-18.984]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0},"t":136,"s":[{"i":[[-0.303,-1.539],[-0.519,-4.411],[1.917,2.903],[0.69,2.192],[-1.546,0.117]],"o":[[0,0],[0.291,2.474],[-1.615,-2.445],[-0.69,-2.192],[1.328,-0.101]],"v":[[1.557,-5.691],[3.083,4.169],[-0.524,4.492],[-4.188,-4.052],[-1.372,-8.244]],"c":true}]},{"t":146,"s":[{"i":[[-0.072,-1.567],[0.138,-4.44],[1.468,3.154],[0.359,2.27],[-1.546,-0.112]],"o":[[0,0],[-0.077,2.49],[-1.236,-2.656],[-0.359,-2.27],[1.328,0.096]],"v":[[2.811,-4.511],[2.867,5.466],[-0.748,5.253],[-2.874,-4.261],[0.291,-7.469]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019610882,0.611764729023,0.568627476692,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[557.982,618.155],"ix":2},"a": | |||
There was a problem hiding this comment.
🚀 Performance & Scalability | 🔵 Trivial | ⚡ Quick win
Lottie asset is functionally consistent with its consumer, but numeric precision could be trimmed for size.
The exerciseId-based path and structure line up correctly with exercises.json and AnimationPreview's Lottie.asset('assets/animations/${widget.exercise.exerciseId}.json') lookup. The JSON is already minified, but many keyframe coordinates carry excessive decimal precision (e.g., values like -0.049, 0.062) typical of raw AE/Bodymovin exports; rounding to 2-3 decimal places via a Lottie optimizer would reduce payload size with negligible visual impact, especially since 20 similar animation files are bundled.
As per path instructions, asset files should undergo optimization; please confirm whether this and the sibling assets/animations/*.json files were run through a Lottie/Bodymovin optimization step (e.g., precision reduction, dead-layer removal) before bundling.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@assets/animations/Ex4.json` at line 1, Optimize the Lottie JSON asset and all
sibling animation files before bundling, using a Lottie/Bodymovin optimizer to
reduce numeric precision to roughly 2–3 decimal places and remove safe dead
layers or redundant data. Preserve the existing animation structure, timing, and
exerciseId-based asset lookup used by AnimationPreview.
Source: Path instructions
| @@ -0,0 +1 @@ | |||
| {"v":"5.7.6","fr":25,"ip":0,"op":25,"w":720,"h":720,"nm":"JUMPING JACKS","ddd":0,"assets":[{"id":"image_0","w":32,"h":50,"u":"","p":"data:image/png;base64,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","e":1},{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Thân 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":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[354.363,252.554,0],"to":[0,0.393,0],"ti":[0,0.326,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":7,"s":[354.38,212.125,0],"to":[0,-0.262,0],"ti":[0,-0.168,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":15,"s":[354.331,245.991,0],"to":[0,0.146,0],"ti":[0,-0.168,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":16,"s":[354.331,245.991,0],"to":[0,0.146,0],"ti":[0,0.326,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":24,"s":[354.38,212.125,0],"to":[0,-0.262,0],"ti":[0,-1.5,0]},{"t":31,"s":[354.363,252.554,0]}],"ix":2,"l":2},"a":{"a":0,"k":[51.508,123.892,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.149,2.125],[-14.83,0.309],[-12.484,3.778],[-0.414,-9.04],[6.449,-5.231],[12.63,-0.016],[10.918,7.598],[0.857,7.44]],"o":[[11.334,2.854],[15.994,-0.334],[-0.401,2.46],[0.393,8.588],[-8.901,7.219],[-9.942,-0.114],[-6.309,-4.391],[-1.115,-9.678]],"v":[[-41.703,-21.93],[-0.897,-16.039],[41.445,-22.345],[43.617,-2.455],[24.642,30.297],[0.015,17.152],[-29.034,31.212],[-42.141,-0.631]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.085153288,0.069799019309,0.072872820088,1],"ix":4},"o":{"a":0,"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.515,225.604],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[96.913,159.471],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0.007,1.139],[0,0],[-8.212,-31.256],[0.489,-1.543],[0.066,4.696]],"o":[[0,0],[0.041,4.041],[-0.57,1.928],[-9.21,-31.195],[0,0]],"v":[[-6.609,-30.324],[-3.389,-28.74],[4.178,23.948],[2.406,29.699],[-6.585,-28.469]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[0.007,1.139],[0,0],[-11.196,-31.879],[0.489,-1.543],[-0.183,5.726]],"o":[[0,0],[0.041,4.041],[-0.57,1.928],[-11.112,-31.505],[0,0]],"v":[[-12.703,-34.792],[-10.389,-33.303],[5.491,24.26],[3.719,30.011],[-12.46,-29.657]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0.007,1.139],[0,0],[-11.196,-31.879],[0.489,-1.543],[-0.183,5.726]],"o":[[0,0],[0.041,4.041],[-0.57,1.928],[-11.112,-31.505],[0,0]],"v":[[-12.703,-34.792],[-10.389,-33.303],[5.491,24.26],[3.719,30.011],[-12.46,-29.657]],"c":true}]},{"t":31,"s":[{"i":[[0.007,1.139],[0,0],[-8.212,-31.256],[0.489,-1.543],[0.066,4.696]],"o":[[0,0],[0.041,4.041],[-0.57,1.928],[-9.21,-31.195],[0,0]],"v":[[-5.297,-30.011],[-2.076,-28.428],[5.491,24.26],[3.719,30.011],[-5.272,-28.157]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.999999820485,0.999999760646,0.999999820485,1],"ix":4},"o":{"a":0,"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.913,102.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-2.904,-0.458],[-3.91,0],[-6.652,7.134],[0,0],[0,0],[17.341,0],[0,0]],"o":[[4.022,0.634],[8.733,0],[0,0],[0,0],[0,0],[0,0],[2.978,0]],"v":[[-13.234,-1.214],[-1.647,-0.006],[20.066,-12.547],[22.094,-7.734],[9.875,12.547],[-22.094,2.384],[-22.094,-1.9]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.78823530674,0.341176480055,0.156862750649,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[73.602,130.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 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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0.991,-0.022],[0,0],[-0.667,15.601],[0,0],[0,0],[0.028,-0.494],[14.672,-0.895]],"o":[[0,0],[14.429,-0.016],[0,0],[0,0],[-0.018,0.686],[-1.856,15.601],[0,0]],"v":[[-15.104,16.405],[-14.947,13.066],[12.898,-16.273],[12.929,-16.999],[16.01,-15.484],[15.938,-13.703],[-12.191,16.217]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[0.991,-0.022],[0,0],[-0.667,15.601],[0,0],[0,0],[0.028,-0.494],[14.672,-0.895]],"o":[[0,0],[14.429,-0.016],[0,0],[0,0],[-0.018,0.686],[-1.856,15.601],[0,0]],"v":[[-14.947,16.374],[-14.947,13.16],[7.273,-17.773],[7.335,-18.936],[10.635,-17.484],[10.376,-14.453],[-13.348,16.311]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0.991,-0.022],[0,0],[-0.667,15.601],[0,0],[0,0],[0.028,-0.494],[14.672,-0.895]],"o":[[0,0],[14.429,-0.016],[0,0],[0,0],[-0.018,0.686],[-1.856,15.601],[0,0]],"v":[[-14.947,16.374],[-14.947,13.16],[7.273,-17.773],[7.335,-18.936],[10.635,-17.484],[10.376,-14.453],[-13.348,16.311]],"c":true}]},{"t":31,"s":[{"i":[[0.991,-0.022],[0,0],[-0.667,15.601],[0,0],[0,0],[0.028,-0.494],[14.672,-0.895]],"o":[[0,0],[14.429,-0.016],[0,0],[0,0],[-0.018,0.686],[-1.856,15.601],[0,0]],"v":[[-14.947,16.374],[-14.947,13.16],[11.835,-15.648],[11.867,-16.374],[14.947,-14.859],[14.876,-13.078],[-13.348,16.311]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.999999820485,0.999999760646,0.999999820485,1],"ix":4},"o":{"a":0,"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.456,84.657],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-2.855,3.893],[-1.372,4.794],[-1.083,-4.017],[5.067,-17.778],[0,0],[-0.003,-0.024],[-0.049,-0.375],[-0.012,-0.086],[-0.037,-0.281],[-0.012,-0.088],[0,0],[0.197,-0.611],[0,0],[0,0]],"o":[[3.237,-4.413],[0.85,3.683],[-0.533,2.844],[0,0],[0.003,0.024],[0.051,0.394],[0.011,0.086],[0.038,0.295],[0.012,0.09],[0.451,3.458],[-0.886,0.231],[0,0],[0,0],[-0.127,-4.826]],"v":[[-3.919,-28.278],[4.762,-44.729],[7.16,-35.627],[2.415,-12.672],[1.586,26.894],[-0.686,30.87],[0.901,30.837],[-0.003,31.156],[0.203,32.208],[0.238,32.414],[0.713,37.575],[0.434,39.43],[-5.462,44.729],[-7.033,-14.814]],"c":true}]},{"t":15,"s":[{"i":[[-2.855,3.893],[-1.372,4.794],[-1.083,-4.017],[5.067,-17.778],[0,0],[-0.003,-0.024],[-0.049,-0.375],[-0.012,-0.086],[-0.037,-0.281],[-0.012,-0.088],[0,0],[0.197,-0.611],[0,0],[0,0]],"o":[[3.237,-4.413],[0.85,3.683],[-0.533,2.844],[0,0],[0.003,0.024],[0.051,0.394],[0.011,0.086],[0.038,0.295],[0.012,0.09],[0.451,3.458],[0,0.384],[0,0],[0,0],[-0.127,-4.826]],"v":[[-3.919,-28.278],[4.762,-44.729],[7.16,-35.627],[0.227,-9.672],[0.742,29.613],[0.751,29.683],[0.901,30.837],[0.935,31.094],[1.047,31.958],[1.082,32.226],[0.401,38.262],[0.872,39.367],[-5.462,44.729],[-7.033,-14.814]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.705882370472,0.239215686917,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[90.006,165.657],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-0.007,1.139],[0,0],[8.212,-31.256],[-0.488,-1.543],[-0.066,4.696]],"o":[[0,0],[-0.041,4.041],[0.57,1.928],[9.211,-31.195],[0,0]],"v":[[5.297,-30.011],[2.076,-28.428],[-5.491,24.26],[-3.72,30.011],[5.272,-28.157]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[-0.007,1.139],[0,0],[12.784,-29.691],[-0.488,-1.543],[-0.104,7.632]],"o":[[0,0],[-0.033,3.559],[0.57,1.928],[13.013,-35.005],[0,0]],"v":[[13.328,-33.855],[10.701,-32.553],[-5.647,24.51],[-3.72,30.011],[13.21,-31.719]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-0.007,1.139],[0,0],[12.784,-29.691],[-0.488,-1.543],[-0.104,7.632]],"o":[[0,0],[-0.033,3.559],[0.57,1.928],[13.013,-35.005],[0,0]],"v":[[13.328,-33.855],[10.701,-32.553],[-5.647,24.51],[-3.72,30.011],[13.21,-31.719]],"c":true}]},{"t":31,"s":[{"i":[[-0.007,1.139],[0,0],[8.212,-31.256],[-0.488,-1.543],[-0.066,4.696]],"o":[[0,0],[-0.041,4.041],[0.57,1.928],[9.211,-31.195],[0,0]],"v":[[5.297,-30.011],[2.076,-28.428],[-5.491,24.26],[-3.72,30.011],[5.272,-28.157]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.999999820485,0.999999760646,0.999999820485,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[10.103,102.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[2.905,-0.458],[3.91,0],[6.652,7.134],[0,0],[0,0],[-17.341,0],[0,0]],"o":[[-4.022,0.634],[-8.733,0],[0,0],[0,0],[0,0],[0,0],[-2.978,0]],"v":[[13.234,-1.214],[1.647,-0.006],[-20.066,-12.547],[-22.094,-7.734],[-9.875,12.547],[22.094,2.384],[22.094,-1.9]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.78823530674,0.341176480055,0.156862750649,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[29.414,130.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 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-0.991,-0.022],[0,0],[0.667,15.601],[0,0],[0,0],[-0.028,-0.494],[-14.672,-0.895]],"o":[[0,0],[-14.429,-0.016],[0,0],[0,0],[0.018,0.686],[1.856,15.601],[0,0]],"v":[[14.948,16.374],[14.948,13.16],[-11.836,-15.648],[-11.867,-16.374],[-14.948,-14.859],[-14.876,-13.078],[13.348,16.311]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[-0.991,-0.022],[0,0],[0.667,15.601],[0,0],[0,0],[-0.028,-0.494],[-14.672,-0.895]],"o":[[0,0],[-14.429,-0.016],[0,0],[0,0],[0.018,0.686],[2.398,15.353],[0,0]],"v":[[14.948,16.374],[14.948,13.16],[-6.773,-17.648],[-6.804,-18.624],[-10.135,-17.296],[-9.876,-14.266],[13.348,16.311]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-0.991,-0.022],[0,0],[0.667,15.601],[0,0],[0,0],[-0.028,-0.494],[-14.672,-0.895]],"o":[[0,0],[-14.429,-0.016],[0,0],[0,0],[0.018,0.686],[2.398,15.353],[0,0]],"v":[[14.948,16.374],[14.948,13.16],[-6.773,-17.648],[-6.804,-18.624],[-10.135,-17.296],[-9.876,-14.266],[13.348,16.311]],"c":true}]},{"t":31,"s":[{"i":[[-0.991,-0.022],[0,0],[0.667,15.601],[0,0],[0,0],[-0.028,-0.494],[-14.672,-0.895]],"o":[[0,0],[-14.429,-0.016],[0,0],[0,0],[0.018,0.686],[1.856,15.601],[0,0]],"v":[[14.948,16.374],[14.948,13.16],[-11.836,-15.648],[-11.867,-16.374],[-14.948,-14.859],[-14.876,-13.078],[13.348,16.311]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.999999820485,0.999999760646,0.999999820485,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[36.561,84.657],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[2.855,3.893],[1.372,4.794],[1.083,-4.017],[-5.067,-17.778],[0,0],[-0.002,-0.024],[0.049,-0.375],[0.012,-0.086],[0.037,-0.281],[0.012,-0.088],[0,0],[-0.197,-0.611],[0,0],[0,0]],"o":[[-3.237,-4.413],[-0.85,3.683],[0.533,2.844],[0,0],[-0.003,0.024],[0.199,2.935],[-0.011,0.086],[-0.038,0.295],[-0.012,0.09],[-0.451,3.458],[0,0.384],[0,0],[0,0],[0.127,-4.826]],"v":[[3.919,-28.278],[-4.762,-44.729],[-7.16,-35.627],[-0.227,-9.672],[-1.742,24.863],[-1.501,28.745],[-0.089,30.962],[-0.341,31.156],[-0.391,31.958],[-0.332,32.414],[-1.838,37.981],[-1.528,39.492],[5.462,44.729],[7.033,-14.814]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.705882370472,0.239215686917,0.149019613862,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[13.011,165.657],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[11.916,0],[0,0],[0,0],[-0.692,0.456],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0.829,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7.864,-11.683],[7.305,-20.061],[-11.503,-25.958],[-11.471,25.833],[-5.508,25.833],[-3.177,25.134],[7.492,18.106],[10.284,5.446],[10.284,-5.539]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.88461225921,0.741493793562,0.621638518689,1],"ix":4},"o":{"a":0,"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.792,35.02],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.792,0.774],[0,0],[0,0]],"o":[[0,0],[1.107,0],[0,0],[0,0],[0,0]],"v":[[-9.45,6.004],[-5.127,6.004],[-2.165,4.798],[8.888,-6.004],[-9.45,-6.004]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.833970791686,0.626120713178,0.456018066406,1],"ix":4},"o":{"a":0,"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.396,59.13],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[-2.606,0],[0.559,-3.538],[2.792,2.979]],"o":[[0,0],[2.607,0],[-0.558,3.537],[-2.793,-2.979]],"v":[[-0.279,-5.027],[2.885,-8.378],[4.003,0],[-2.699,5.399]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.864770687328,0.697829123104,0.552131204044,1],"ix":4},"o":{"a":0,"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.356,41.024],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[21.411,1.49],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[11.309,15.267],[11.309,-1.489],[-11.746,-20.263],[-11.746,-9.278],[6.017,20.294]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.291390841615,0.135996799843,0.058056951037,1],"ix":4},"o":{"a":0,"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.816,20.544],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[0,0],[0,0],[0,0],[-0.829,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0.692,0.456],[0,0],[0,0],[-11.915,0]],"v":[[-7.216,-20.061],[-7.776,-11.683],[-10.195,-5.539],[-10.195,5.446],[-7.402,18.106],[3.266,25.134],[5.598,25.833],[10.195,25.833],[10.195,-25.833]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.88461225921,0.741493793562,0.621638518689,1],"ix":4},"o":{"a":0,"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.312,35.02],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.792,0.774],[0,0],[0,0]],"o":[[0,0],[-1.107,0],[0,0],[0,0],[0,0]],"v":[[8.8,6.004],[5.215,6.004],[2.253,4.798],[-8.8,-6.004],[8.8,-6.004]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.833970791686,0.626120713178,0.456018066406,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[42.709,59.13],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[2.606,0],[-0.559,-3.538],[-2.792,2.979]],"o":[[0,0],[-2.607,0],[0.558,3.537],[2.793,-2.979]],"v":[[0.28,-5.027],[-2.885,-8.378],[-4.003,0],[2.699,5.399]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.864770687328,0.697829123104,0.552131204044,1],"ix":4},"o":{"a":0,"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.837,41.024],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[0,0],[0,0],[-21.41,1.49],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-11.219,15.267],[-11.219,-1.489],[11.219,-20.294],[11.219,-9.309],[-5.929,20.294]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.291390841615,0.135996799843,0.058056951037,1],"ix":4},"o":{"a":0,"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.288,20.544],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,4.696],[-0.567,3.518],[0.012,0.089],[0.038,0.294],[0.012,0.087],[0.051,0.394],[0.003,0.024],[0,0],[-2.844,11.022],[0,0],[0,0],[15.854,-0.017],[0.67,15.693],[0,0],[9.848,-36.504],[-2.961,-9.87],[0,0],[0.003,-0.024],[0.049,-0.375],[0.012,-0.086],[0.037,-0.281],[0.012,-0.088],[0,0],[-23.875,-2.625]],"o":[[33.583,-4.667],[0,0],[0.014,-0.088],[-0.036,-0.281],[-0.011,-0.086],[-0.048,-0.375],[-0.003,-0.024],[0,0],[2.961,-9.87],[-9.848,-36.504],[0,0],[-0.671,15.693],[-15.855,-0.017],[0,0],[0,0],[2.845,11.022],[0,0],[-0.003,0.024],[-0.051,0.394],[-0.011,0.087],[0.445,0.274],[-0.012,0.089],[-0.451,3.459],[0,4.696],[0,0]],"v":[[-0.362,73.25],[39.152,61.467],[37.798,56.149],[37.888,55.913],[37.276,54.955],[37.742,54.572],[37.156,53.576],[39.022,48.255],[37.659,15.791],[45.125,-13.898],[37.728,-68.616],[28.382,-73.25],[0,-42.91],[-28.38,-73.25],[-37.728,-68.616],[-45.125,-13.898],[-37.658,15.791],[-40.49,48.442],[-35.499,53.888],[-40.148,54.26],[-38.995,54.424],[-39.201,55.226],[-38.954,55.586],[-40.336,61.311],[-4.28,73.083]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[0,0],[0,4.696],[0.451,3.459],[0.012,0.089],[0.038,0.294],[0.012,0.087],[0.051,0.394],[0.003,0.024],[0,0],[-2.844,11.022],[0,0],[0,0],[15.854,-0.017],[0.987,15.698],[0,0],[16.512,-35.248],[-2.961,-9.87],[0,0],[0.003,-0.024],[0.049,-0.375],[0.012,-0.086],[0.037,-0.281],[0.012,-0.088],[0,0],[-23.875,-2.625]],"o":[[33.583,-4.667],[0,0],[-0.011,-0.088],[-0.036,-0.281],[-0.011,-0.086],[-0.048,-0.375],[-0.003,-0.024],[0,0],[2.961,-9.87],[-16.487,-37.06],[0,0],[-0.671,15.693],[-15.855,-0.017],[0,0],[0,0],[2.845,11.022],[0,0],[-0.003,0.024],[-0.051,0.394],[-0.011,0.087],[-0.038,0.294],[-0.012,0.089],[-0.451,3.459],[0,4.696],[0,0]],"v":[[-0.362,73.25],[39.555,61.315],[39.111,55.68],[39.544,55.288],[39.432,54.424],[39.398,54.166],[39.25,53.013],[39.241,52.942],[37.659,15.791],[45.125,-13.898],[28.665,-73.71],[23.1,-75.969],[0,-42.91],[-24.193,-75],[-27.853,-73.428],[-45.125,-13.898],[-37.658,15.791],[-39.24,52.942],[-39.249,53.013],[-39.398,54.166],[-39.432,54.424],[-39.544,55.288],[-39.579,55.555],[-40.336,61.311],[-4.28,73.083]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0,0],[0,4.696],[0.451,3.459],[0.012,0.089],[0.038,0.294],[0.012,0.087],[0.051,0.394],[0.003,0.024],[0,0],[-2.844,11.022],[0,0],[0,0],[15.854,-0.017],[0.987,15.698],[0,0],[16.512,-35.248],[-2.961,-9.87],[0,0],[0.003,-0.024],[0.049,-0.375],[0.012,-0.086],[0.037,-0.281],[0.012,-0.088],[0,0],[-23.875,-2.625]],"o":[[33.583,-4.667],[0,0],[-0.011,-0.088],[-0.036,-0.281],[-0.011,-0.086],[-0.048,-0.375],[-0.003,-0.024],[0,0],[2.961,-9.87],[-16.487,-37.06],[0,0],[-0.671,15.693],[-15.855,-0.017],[0,0],[0,0],[2.845,11.022],[0,0],[-0.003,0.024],[-0.051,0.394],[-0.011,0.087],[-0.038,0.294],[-0.012,0.089],[-0.451,3.459],[0,4.696],[0,0]],"v":[[-0.362,73.25],[40.336,61.311],[39.579,55.555],[39.544,55.288],[39.432,54.424],[39.398,54.166],[39.25,53.013],[39.241,52.942],[37.659,15.791],[45.125,-13.898],[28.665,-73.71],[23.1,-75.969],[0,-42.91],[-24.193,-75],[-27.853,-73.428],[-45.125,-13.898],[-37.658,15.791],[-39.24,52.942],[-39.249,53.013],[-39.398,54.166],[-39.432,54.424],[-39.544,55.288],[-39.579,55.555],[-40.336,61.311],[-4.28,73.083]],"c":false}]},{"t":31,"s":[{"i":[[0,0],[0,4.696],[0.451,3.459],[0.012,0.089],[0.038,0.294],[0.012,0.087],[0.051,0.394],[0.003,0.024],[0,0],[-2.844,11.022],[0,0],[0,0],[15.854,-0.017],[0.67,15.693],[0,0],[9.848,-36.504],[-2.961,-9.87],[0,0],[0.003,-0.024],[0.049,-0.375],[0.012,-0.086],[0.037,-0.281],[0.012,-0.088],[0,0],[-23.875,-2.625]],"o":[[33.583,-4.667],[0,0],[-0.011,-0.088],[-0.036,-0.281],[-0.011,-0.086],[-0.048,-0.375],[-0.003,-0.024],[0,0],[2.961,-9.87],[-9.848,-36.504],[0,0],[-0.671,15.693],[-15.855,-0.017],[0,0],[0,0],[2.845,11.022],[0,0],[-0.003,0.024],[-0.051,0.394],[-0.011,0.087],[-0.038,0.294],[-0.012,0.089],[-0.451,3.459],[0,4.696],[0,0]],"v":[[-0.362,73.25],[39.18,61.315],[39.236,55.553],[39.544,55.288],[39.432,54.424],[39.398,54.166],[39.25,53.013],[39.241,52.942],[37.659,15.791],[45.125,-13.898],[37.728,-68.616],[28.382,-73.25],[0,-42.91],[-28.38,-73.25],[-37.728,-68.616],[-45.125,-13.898],[-37.658,15.791],[-39.24,52.942],[-39.249,53.013],[-39.398,54.166],[-39.432,54.424],[-39.544,55.288],[-39.579,55.555],[-40.336,61.311],[-4.28,73.083]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.839215695858,0.384313732386,0.152941182256,1],"ix":4},"o":{"a":0,"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.508,142.328],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-4.435,1.422],[0,0],[7.553,-26.883],[4.065,0],[0,0],[2.387,2.928],[0,0],[0,3.009],[0,0]],"o":[[0,0],[0,0],[-1.14,4.059],[0,0],[-3.686,0],[0,0],[-1.84,-2.318],[0,0],[0,-2.522]],"v":[[-17.978,-17.245],[8.971,-20.089],[17.38,14.083],[7.599,20.089],[-12.23,20.089],[-21.805,15.474],[-22.086,15.12],[-24.934,6.878],[-24.934,-10.544]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.886274516582,0.706579983234,0.556093811989,1],"ix":4},"o":{"a":0,"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.833,102.474],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8.8,-13.964],[8.8,13.964],[-8.8,13.964],[-8.8,-12.473]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882352948189,0.741176486015,0.61960786581,1],"ix":4},"o":{"a":0,"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.307,63.924],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-11.411,-18.529],[24.895,-0.529],[-26.208,18.529],[-26.208,-18.529]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882352948189,0.741176486015,0.61960786581,1],"ix":4},"o":{"a":0,"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.06,82.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 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":[[4.435,1.422],[0,0],[-7.553,-26.883],[-4.065,0],[0,0],[-2.387,2.928],[0,0],[0,3.009],[0,0]],"o":[[0,0],[0,0],[1.14,4.059],[0,0],[3.686,0],[0,0],[1.841,-2.318],[0,0],[0,-2.522]],"v":[[16.76,-17.245],[-10.19,-20.089],[-18.599,14.083],[-8.818,20.089],[11.012,20.089],[20.586,15.474],[20.867,15.12],[23.715,6.878],[23.715,-10.544]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.886274516582,0.705882370472,0.556862771511,1],"ix":4},"o":{"a":0,"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.183,102.474],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-8.799,-13.964],[-8.799,13.964],[8.799,13.964],[8.799,-12.473]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882352948189,0.741176486015,0.61960786581,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[42.709,63.924],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10.755,-18.529],[-25.551,-0.529],[25.551,18.529],[25.551,-18.529]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882352948189,0.741176486015,0.61960786581,1],"ix":4},"o":{"a":0,"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.957,82.454],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[20.096,22.599],[24.303,-22.599],[-24.303,-4.8]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.880725815717,0.742120780197,0.621180515663,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[78.299,104.521],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-20.095,22.599],[-24.302,-22.599],[24.302,-4.8]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.880725815717,0.742120780197,0.621180515663,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[24.707,104.524],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"Pre-comp 16","parent":1,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[45.395,242.227,0],"ix":2,"l":2},"a":{"a":0,"k":[360,360,0],"ix":1,"l":2},"s":{"a":0,"k":[-100,100,100],"ix":6,"l":2}},"ao":0,"w":720,"h":720,"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"Pre-comp 16","parent":1,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[57.207,241.915,0],"ix":2,"l":2},"a":{"a":0,"k":[360,360,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":720,"h":720,"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Shape Layer 10","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":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[357.75,360.125,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[357.75,372.625,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[357.75,347.625,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[357.75,354.625,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[357.75,374,0],"to":[0,0,0],"ti":[0,0,0]},{"t":31,"s":[357.75,359.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[98.322,101.711,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":0,"s":[86.375,33.625]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":7,"s":[95.375,33.625]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":10,"s":[111.375,33.625]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":15,"s":[215.375,33.625]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":21,"s":[111.375,33.625]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"t":24,"s":[95.375,33.625]},{"t":31,"s":[86.375,33.625]}],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":356,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[0.733333349228,0.733333349228,0.733333349228,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-4.188,228.688],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[95.936,80.278],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Cẳng tay trái Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":7,"s":[-53]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[-185]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[-185]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[-53]},{"t":31,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[106.887,96.994,0],"to":[-1.667,-3.167,0],"ti":[1.667,3.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[96.887,77.994,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[96.887,77.994,0],"to":[1.667,3.167,0],"ti":[-1.667,-3.167,0]},{"t":31,"s":[106.887,96.994,0]}],"ix":2,"l":2},"a":{"a":0,"k":[16.303,21.188,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0],[-4.547,-8.062],[2.031,-14.281],[-1.576,-10.781],[0,0],[-0.149,-1.422],[0,0],[1.806,-10.634],[0,0],[0,0],[0,0],[-0.158,6.36],[-0.88,3.943],[0,0],[0.4,2.553],[0,0],[1.09,7.086]],"o":[[0,0],[0,0],[3.001,5.322],[-0.249,1.748],[0.896,6.125],[0,0],[0.584,5.542],[0,0],[-1.687,9.937],[0,0],[0,0],[0.062,-6.812],[0.125,-5.031],[0.824,-3.693],[0,0],[-2.167,-13.833],[0,0],[-1.6,-10.393]],"v":[[-17.678,-80.92],[-5.806,-75.048],[9.163,-64.33],[13.772,-39.111],[16.783,-25.955],[15.772,3.202],[15.908,8.92],[15.991,25.108],[13.21,45.077],[5.585,80.92],[-5.842,72.712],[-5.228,55.889],[-7.416,30.67],[-5.788,16.555],[-6.686,3.775],[-9.186,-4.309],[-9.478,-29.892],[-15.908,-57.837]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":1,"s":[{"i":[[0,0],[0,0],[-4.265,-8.415],[2.686,-14.164],[-1.217,-10.792],[0,0],[-0.068,-1.903],[0,0],[1.806,-10.634],[0,0],[0,0],[0,0],[-0.019,6.454],[-0.734,4.102],[0,0],[0.493,2.569],[0,0],[1.064,7.448]],"o":[[0,0],[0,0],[2.802,5.515],[-0.325,1.725],[0.66,6.495],[0,0],[0.416,5.717],[0,0],[-1.687,9.937],[0,0],[0,0],[0.043,-6.768],[0.011,-5.137],[0.689,-3.754],[0,0],[-2.458,-13.377],[0,0],[-1.353,-7.376]],"v":[[-18.032,-74.606],[-16.912,-83.723],[10.193,-65.397],[13.426,-39.66],[16.071,-25.386],[14.501,3.355],[14.668,10.301],[14.533,26.229],[11.832,45.623],[4.758,80.09],[-6.623,71.825],[-6.214,55.559],[-8.451,30.601],[-7.132,15.958],[-7.658,3.256],[-9.58,-5.13],[-10.485,-30.25],[-16.993,-58.203]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[{"i":[[0,0],[0,0],[-3.982,-8.769],[3.342,-14.048],[-0.857,-10.802],[0,0],[0.013,-2.383],[0,0],[1.806,-10.634],[0,0],[0,0],[0,0],[0.121,6.548],[-0.587,4.262],[0,0],[0.587,2.585],[0,0],[1.038,7.811]],"o":[[0,0],[0,0],[2.603,5.707],[-0.4,1.701],[0.424,6.865],[0,0],[0.248,5.892],[0,0],[-1.687,9.937],[0,0],[0,0],[0.025,-6.724],[-0.103,-5.242],[0.555,-3.815],[0,0],[-2.75,-12.921],[0,0],[-1.107,-4.36]],"v":[[-18.386,-68.292],[-13.708,-86.209],[11.223,-66.463],[13.079,-40.209],[15.36,-24.816],[13.23,3.508],[13.428,11.683],[13.075,27.35],[10.455,46.169],[3.931,79.259],[-7.404,70.937],[-7.2,55.229],[-9.487,30.532],[-8.476,15.361],[-8.631,2.737],[-9.975,-5.95],[-11.493,-30.609],[-18.078,-58.569]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":3,"s":[{"i":[[0,0],[0,0],[-3.7,-9.122],[3.997,-13.931],[-0.498,-10.813],[0,0],[0.094,-2.864],[0,0],[1.806,-10.634],[0,0],[0,0],[0,0],[0.26,6.641],[-0.441,4.421],[0,0],[0.68,2.601],[0,0],[2.75,9.375]],"o":[[0,0],[0,0],[2.403,5.9],[-0.476,1.678],[0.188,7.235],[0,0],[0.08,6.066],[0,0],[-1.687,9.937],[0,0],[0,0],[0.006,-6.681],[-0.217,-5.348],[0.42,-3.876],[0,0],[-3.041,-12.464],[0,0],[-2.549,-7.749]],"v":[[-21.691,-63.496],[-11.873,-88.767],[12.253,-67.53],[12.732,-40.759],[14.649,-24.247],[11.959,3.661],[12.188,13.064],[11.617,28.472],[9.077,46.715],[3.104,78.429],[-8.184,70.049],[-8.187,54.899],[-10.523,30.463],[-9.82,14.764],[-9.603,2.217],[-10.37,-6.771],[-13.524,-30.548],[-19.549,-47.167]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[0,0],[0,0],[-4.052,-11.161],[5.308,-13.698],[0.221,-10.834],[0,0],[0.256,-3.825],[0,0],[1.806,-10.634],[0,0],[0,0],[0,0],[0.539,6.829],[-0.148,4.74],[0,0],[0.867,2.634],[0,0],[-0.297,11.665]],"o":[[0,0],[0,0],[2.251,6.201],[-0.627,1.631],[-0.283,7.975],[0,0],[-0.256,6.416],[0,0],[-1.687,9.937],[0,0],[0,0],[-0.031,-6.593],[-0.445,-5.559],[0.151,-3.998],[0,0],[-3.624,-11.552],[0,0],[-0.388,-4.058]],"v":[[-23.568,-55.007],[-4.736,-85.844],[14.312,-69.663],[12.039,-41.857],[13.226,-23.108],[9.417,3.966],[9.709,15.827],[8.701,30.714],[6.323,47.807],[1.45,76.769],[-9.745,68.274],[-10.16,54.24],[-12.595,30.325],[-12.509,13.57],[-11.549,1.179],[-11.159,-8.412],[-14.517,-31.684],[-17.415,-50.096]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[0,0],[0,0],[-3.533,-9.956],[5.465,-12.626],[0.581,-10.844],[0,0],[0.337,-4.305],[0,0],[1.806,-10.634],[0,0],[0,0],[0,0],[0.678,6.923],[-0.002,4.9],[0,0],[0.961,2.65],[0,0],[-0.171,9.92]],"o":[[0,0],[0,0],[2.237,6.326],[-0.7,1.609],[-0.519,8.345],[0,0],[-0.424,6.591],[0,0],[-1.687,9.937],[0,0],[0,0],[-0.05,-6.549],[-0.559,-5.665],[0.017,-4.059],[0,0],[-3.915,-11.096],[0,0],[-3.721,-2.857]],"v":[[-27.84,-49.5],[-0.618,-84.969],[16.442,-67.763],[13.794,-41.642],[12.515,-22.538],[8.146,4.119],[8.469,17.208],[7.242,31.835],[4.945,48.353],[0.623,75.938],[-10.526,67.387],[-11.146,53.91],[-13.631,30.256],[-13.853,12.973],[-12.521,0.66],[-11.554,-9.232],[-15.525,-32.043],[-17.92,-47.963]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[{"i":[[0,0],[0,0],[-3.014,-8.751],[5.622,-11.554],[0.94,-10.855],[0,0],[0.419,-4.786],[0,0],[1.806,-10.634],[0,0],[0,0],[0,0],[0.818,7.016],[0.144,5.059],[0,0],[1.054,2.666],[0,0],[-0.852,13.496]],"o":[[0,0],[0,0],[2.222,6.45],[-0.772,1.588],[-0.755,8.715],[0,0],[-0.592,6.766],[0,0],[-1.687,9.937],[0,0],[0,0],[-0.069,-6.506],[-0.673,-5.771],[-0.118,-4.12],[0,0],[-4.207,-10.639],[0,0],[0.096,-1.525]],"v":[[-33.173,-42.753],[3.194,-83.512],[18.268,-65.282],[15.244,-40.846],[11.499,-21.387],[6.57,4.854],[6.924,19.172],[5.479,33.538],[3.263,49.481],[-0.509,75.69],[-11.612,67.081],[-12.438,54.162],[-14.972,30.768],[-15.502,12.958],[-13.799,0.722],[-12.254,-9.471],[-16.838,-31.819],[-17.197,-50.253]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[8.411,-0.376],[0,0],[-2.83,-8.802],[5.45,-13.86],[0.86,-10.383],[0,0],[0.282,-4.064],[0,0],[1.351,-10.3],[0,0],[0,0],[0,0],[0.99,6.863],[0.323,5.035],[0,0],[0.821,2.696],[0,0],[-0.899,12.404]],"o":[[0,0],[0,0],[2.061,6.37],[-0.614,2.753],[-0.722,8.894],[-0.493,1.187],[0.099,6.668],[0,0],[-1.219,10.024],[0,0],[0,0],[-0.416,-6.464],[-0.842,-5.736],[-0.289,-4.206],[0,0],[-3.252,-10.959],[0,0],[0.364,-3.844]],"v":[[-34.187,-57.551],[4.215,-81.017],[14.635,-71.891],[13.642,-37.506],[10.782,-21.765],[5.945,3.187],[4.929,17.636],[4.775,33.014],[3.288,48.749],[0.674,75.833],[-10.382,69.32],[-13.113,53.787],[-16.22,31.452],[-17.144,14.548],[-16.043,2.511],[-14.499,-9.105],[-18.231,-31.446],[-18.646,-52.854]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9,"s":[{"i":[[5.14,0.339],[0,0],[-2.605,-8.858],[5.839,-13.186],[0.833,-10.225],[0,0],[0.237,-3.823],[0,0],[1.199,-10.188],[0,0],[0,0],[0,0],[1.047,6.812],[0.382,5.027],[0,0],[0.743,2.706],[0,0],[5.607,6.47]],"o":[[0,0],[0,0],[2.045,7.207],[-0.611,3.182],[-0.711,8.954],[-0.658,1.583],[0.329,6.635],[0,0],[-1.063,10.053],[0,0],[0,0],[-0.532,-6.45],[-0.898,-5.724],[-0.346,-4.234],[0,0],[-3.753,-9.427],[0,0],[-2.134,-1.634]],"v":[[-35.75,-62.61],[4.611,-84.777],[15.65,-71.697],[11.212,-42.592],[10.442,-21.697],[5.635,2.825],[4.162,17.317],[4.439,33.034],[3.195,48.699],[0.966,76.075],[-10.074,70.26],[-13.44,53.856],[-16.738,31.873],[-17.793,15.272],[-16.893,3.301],[-15.349,-8.789],[-18.235,-41.352],[-24.8,-59.139]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[4.877,1.669],[0,0],[-2.38,-8.913],[6.228,-12.511],[0.806,-10.068],[0,0],[0.191,-3.582],[0,0],[1.048,-10.077],[0,0],[0,0],[0,0],[1.104,6.761],[0.442,5.018],[0,0],[0.665,2.716],[0,0],[11.195,11.525]],"o":[[0,0],[0,0],[2.029,8.044],[-0.609,3.611],[-0.7,9.013],[-0.822,1.979],[0.559,6.603],[0,0],[-0.907,10.082],[0,0],[0,0],[-0.647,-6.437],[-0.954,-5.712],[-0.403,-4.263],[0,0],[-7.033,-17.454],[0,0],[-1.99,-1.769]],"v":[[-43.06,-73.931],[-6.181,-79.365],[16.664,-71.502],[11.029,-42.378],[10.101,-21.63],[5.325,2.464],[3.395,16.999],[4.103,33.053],[3.102,48.649],[1.259,76.317],[-9.766,71.2],[-13.766,53.925],[-17.256,32.295],[-18.442,15.996],[-17.743,4.091],[-16.2,-8.473],[-19.753,-45.606],[-31.392,-67.891]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[{"i":[[7.884,8.385],[0,0],[-4.031,-8.32],[6.617,-11.837],[0.779,-9.911],[0,0],[0.146,-3.342],[0,0],[0.896,-9.965],[0,0],[0,0],[0,0],[1.162,6.71],[0.501,5.01],[0,0],[0.588,2.726],[0,0],[-1.264,11.802]],"o":[[0,0],[0,0],[2.013,8.881],[-0.606,4.039],[-0.688,9.073],[-0.986,2.375],[0.79,6.57],[0,0],[-0.751,10.111],[0,0],[0,0],[-0.763,-6.423],[-1.011,-5.7],[-0.46,-4.292],[0,0],[-2.297,-11.278],[0,0],[-0.457,-6.75]],"v":[[-35.16,-81.007],[-8.367,-80.998],[17.284,-71.027],[10.846,-42.165],[9.761,-21.562],[5.015,2.102],[2.628,16.682],[3.766,33.072],[3.009,48.599],[1.552,76.558],[-9.458,72.14],[-14.093,53.994],[-17.774,32.717],[-19.09,16.72],[-18.593,4.881],[-17.05,-8.157],[-18.407,-31.059],[-21.47,-57.555]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[8.088,14.889],[0,0],[-3.842,-4.463],[7.005,-11.162],[0.752,-9.753],[0,0],[0.1,-3.101],[0,0],[0.745,-9.854],[0,0],[0,0],[0,0],[1.219,6.659],[0.561,5.002],[0,0],[0.51,2.736],[0,0],[-1.386,11.601]],"o":[[0,0],[0,0],[1.997,9.718],[-0.603,4.468],[-0.677,9.133],[-1.151,2.771],[1.02,6.537],[0,0],[-0.596,10.14],[0,0],[0,0],[-0.879,-6.409],[-1.067,-5.689],[-0.517,-4.32],[0,0],[-1.978,-11.384],[0,0],[-0.731,-7.719]],"v":[[-31.414,-90.142],[2.44,-76.64],[16.456,-66.808],[10.664,-41.952],[9.42,-21.494],[4.705,1.74],[1.861,16.363],[3.43,33.092],[2.916,48.549],[1.844,76.8],[-9.15,73.081],[-14.42,54.063],[-18.292,33.139],[-19.739,17.444],[-19.443,5.671],[-17.9,-7.841],[-19.153,-31.812],[-20.753,-53.782]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-0.247,19.734],[0,0],[-3.499,-6.362],[7.394,-10.488],[0.725,-9.596],[0,0],[0.055,-2.86],[0,0],[0.593,-9.742],[0,0],[0,0],[0,0],[1.276,6.608],[0.62,4.994],[0,0],[0.432,2.746],[0,0],[-1.508,11.4]],"o":[[0,0],[0,0],[5.175,9.41],[-0.601,4.897],[-0.666,9.193],[-1.315,3.166],[1.25,6.505],[0,0],[-0.44,10.169],[0,0],[0,0],[-0.994,-6.395],[-1.123,-5.677],[-0.575,-4.349],[0,0],[-1.66,-11.491],[0,0],[-1.004,-8.688]],"v":[[-22.642,-97.852],[-2.167,-87.756],[15.414,-71.397],[10.481,-41.739],[9.08,-21.426],[4.395,1.378],[1.095,16.045],[3.094,33.111],[2.822,48.499],[2.137,77.042],[-8.842,74.021],[-14.746,54.132],[-18.81,33.56],[-20.388,18.168],[-20.293,6.461],[-18.75,-7.525],[-19.032,-30.612],[-20.943,-55.809]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[{"i":[[-4.032,15.923],[0,0],[-1.909,-6.099],[3.501,-13.163],[0.59,-8.809],[0,0],[-0.173,-1.656],[0,0],[-0.165,-9.185],[0,0],[0,0],[0,0],[1.563,6.352],[0.917,4.954],[0,0],[0.043,2.796],[0,0],[-1.671,12.798]],"o":[[0,0],[0,0],[2.515,8.034],[-0.194,6.746],[-0.611,9.491],[-2.137,5.146],[2.401,6.342],[0,0],[0.34,10.314],[0,0],[0,0],[-1.573,-6.326],[-1.405,-5.618],[-0.86,-4.491],[0,0],[-0.068,-12.023],[0,0],[1.784,-15.363]],"v":[[-12.048,-103.711],[5.528,-84.437],[14.812,-68.389],[11.062,-41.895],[7.377,-21.087],[2.846,-0.43],[-2.74,14.455],[1.412,33.208],[2.356,48.249],[3.599,78.25],[-7.301,78.721],[-16.38,54.477],[-21.399,35.669],[-23.633,21.788],[-24.542,10.411],[-23.001,-5.945],[-20.594,-29.494],[-19.89,-64.2]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[-1.696,3.758],[0,0],[-0.559,-3.76],[1.839,-7.481],[0.455,-8.022],[0,0],[-0.4,-0.453],[0,0],[-0.924,-8.628],[0,0],[0,0],[0,0],[1.85,6.097],[1.215,4.913],[0,0],[-0.345,2.846],[0,0],[-1.139,6.943]],"o":[[0,0],[0,0],[0.565,3.802],[-2.052,8.349],[-0.555,9.79],[-2.959,7.125],[3.552,6.179],[0,0],[1.12,10.458],[0,0],[0,0],[-2.152,-6.257],[-1.687,-5.56],[-1.146,-4.634],[0,0],[1.524,-12.554],[0,0],[3.803,-23.188]],"v":[[1.202,-108.688],[9.844,-81.656],[13.263,-61.274],[11.642,-42.051],[5.674,-20.748],[1.296,-2.239],[-6.574,12.865],[-0.269,33.305],[1.89,47.999],[5.062,79.459],[-5.76,83.422],[-18.013,54.822],[-23.989,37.778],[-26.877,25.408],[-28.791,14.361],[-27.253,-4.365],[-22.155,-28.376],[-13.123,-60.807]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-1.696,3.758],[0,0],[-0.559,-3.76],[1.839,-7.481],[0.455,-8.022],[0,0],[-0.4,-0.453],[0,0],[-0.924,-8.628],[0,0],[0,0],[0,0],[1.85,6.097],[1.215,4.913],[0,0],[-0.345,2.846],[0,0],[-1.139,6.943]],"o":[[0,0],[0,0],[0.565,3.802],[-2.052,8.349],[-0.555,9.79],[-2.959,7.125],[3.552,6.179],[0,0],[1.12,10.458],[0,0],[0,0],[-2.152,-6.257],[-1.687,-5.56],[-1.146,-4.634],[0,0],[1.524,-12.554],[0,0],[3.803,-23.188]],"v":[[1.202,-108.688],[9.844,-81.656],[13.263,-61.274],[11.642,-42.051],[5.674,-20.748],[1.296,-2.239],[-6.574,12.865],[-0.269,33.305],[1.89,47.999],[5.062,79.459],[-5.76,83.422],[-18.013,54.822],[-23.989,37.778],[-26.877,25.408],[-28.791,14.361],[-27.253,-4.365],[-22.155,-28.376],[-13.123,-60.807]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":17,"s":[{"i":[[-4.032,15.923],[0,0],[-1.909,-6.099],[3.501,-13.163],[0.59,-8.809],[0,0],[-0.173,-1.656],[0,0],[-0.165,-9.185],[0,0],[0,0],[0,0],[1.563,6.352],[0.917,4.954],[0,0],[0.043,2.796],[0,0],[-1.671,12.798]],"o":[[0,0],[0,0],[2.515,8.034],[-0.194,6.746],[-0.611,9.491],[-2.137,5.146],[2.401,6.342],[0,0],[0.34,10.314],[0,0],[0,0],[-1.573,-6.326],[-1.405,-5.618],[-0.86,-4.491],[0,0],[-0.068,-12.023],[0,0],[1.784,-15.363]],"v":[[-12.048,-103.711],[5.528,-84.437],[14.812,-68.389],[11.062,-41.895],[7.377,-21.087],[2.846,-0.43],[-2.74,14.455],[1.412,33.208],[2.356,48.249],[3.599,78.25],[-7.301,78.721],[-16.38,54.477],[-21.399,35.669],[-23.633,21.788],[-24.542,10.411],[-23.001,-5.945],[-20.594,-29.494],[-19.89,-64.2]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[-0.247,19.734],[0,0],[-3.499,-6.362],[7.394,-10.488],[0.725,-9.596],[0,0],[0.055,-2.86],[0,0],[0.593,-9.742],[0,0],[0,0],[0,0],[1.276,6.608],[0.62,4.994],[0,0],[0.432,2.746],[0,0],[-1.508,11.4]],"o":[[0,0],[0,0],[5.175,9.41],[-0.601,4.897],[-0.666,9.193],[-1.315,3.166],[1.25,6.505],[0,0],[-0.44,10.169],[0,0],[0,0],[-0.994,-6.395],[-1.123,-5.677],[-0.575,-4.349],[0,0],[-1.66,-11.491],[0,0],[-1.004,-8.688]],"v":[[-22.642,-97.852],[-2.167,-87.756],[15.414,-71.397],[10.481,-41.739],[9.08,-21.426],[4.395,1.378],[1.095,16.045],[3.094,33.111],[2.822,48.499],[2.137,77.042],[-8.842,74.021],[-14.746,54.132],[-18.81,33.56],[-20.388,18.168],[-20.293,6.461],[-18.75,-7.525],[-19.032,-30.612],[-20.943,-55.809]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[{"i":[[8.088,14.889],[0,0],[-3.842,-4.463],[7.005,-11.162],[0.752,-9.753],[0,0],[0.1,-3.101],[0,0],[0.745,-9.854],[0,0],[0,0],[0,0],[1.219,6.659],[0.561,5.002],[0,0],[0.51,2.736],[0,0],[-1.386,11.601]],"o":[[0,0],[0,0],[1.997,9.718],[-0.603,4.468],[-0.677,9.133],[-1.151,2.771],[1.02,6.537],[0,0],[-0.596,10.14],[0,0],[0,0],[-0.879,-6.409],[-1.067,-5.689],[-0.517,-4.32],[0,0],[-1.978,-11.384],[0,0],[-0.731,-7.719]],"v":[[-31.414,-90.142],[2.44,-76.64],[16.456,-66.808],[10.664,-41.952],[9.42,-21.494],[4.705,1.74],[1.861,16.363],[3.43,33.092],[2.916,48.549],[1.844,76.8],[-9.15,73.081],[-14.42,54.063],[-18.292,33.139],[-19.739,17.444],[-19.443,5.671],[-17.9,-7.841],[-19.153,-31.812],[-20.753,-53.782]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[7.884,8.385],[0,0],[-4.031,-8.32],[6.617,-11.837],[0.779,-9.911],[0,0],[0.146,-3.342],[0,0],[0.896,-9.965],[0,0],[0,0],[0,0],[1.162,6.71],[0.501,5.01],[0,0],[0.588,2.726],[0,0],[-1.264,11.802]],"o":[[0,0],[0,0],[2.013,8.881],[-0.606,4.039],[-0.688,9.073],[-0.986,2.375],[0.79,6.57],[0,0],[-0.751,10.111],[0,0],[0,0],[-0.763,-6.423],[-1.011,-5.7],[-0.46,-4.292],[0,0],[-2.297,-11.278],[0,0],[-0.457,-6.75]],"v":[[-35.16,-81.007],[-8.367,-80.998],[17.284,-71.027],[10.846,-42.165],[9.761,-21.562],[5.015,2.102],[2.628,16.682],[3.766,33.072],[3.009,48.599],[1.552,76.558],[-9.458,72.14],[-14.093,53.994],[-17.774,32.717],[-19.09,16.72],[-18.593,4.881],[-17.05,-8.157],[-18.407,-31.059],[-21.47,-57.555]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[4.877,1.669],[0,0],[-2.38,-8.913],[6.228,-12.511],[0.806,-10.068],[0,0],[0.191,-3.582],[0,0],[1.048,-10.077],[0,0],[0,0],[0,0],[1.104,6.761],[0.442,5.018],[0,0],[0.665,2.716],[0,0],[11.195,11.525]],"o":[[0,0],[0,0],[2.029,8.044],[-0.609,3.611],[-0.7,9.013],[-0.822,1.979],[0.559,6.603],[0,0],[-0.907,10.082],[0,0],[0,0],[-0.647,-6.437],[-0.954,-5.712],[-0.403,-4.263],[0,0],[-7.033,-17.454],[0,0],[-1.99,-1.769]],"v":[[-43.06,-73.931],[-6.181,-79.365],[16.664,-71.502],[11.029,-42.378],[10.101,-21.63],[5.325,2.464],[3.395,16.999],[4.103,33.053],[3.102,48.649],[1.259,76.317],[-9.766,71.2],[-13.766,53.925],[-17.256,32.295],[-18.442,15.996],[-17.743,4.091],[-16.2,-8.473],[-19.753,-45.606],[-31.392,-67.891]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[{"i":[[5.14,0.339],[0,0],[-2.605,-8.858],[5.839,-13.186],[0.833,-10.225],[0,0],[0.237,-3.823],[0,0],[1.199,-10.188],[0,0],[0,0],[0,0],[1.047,6.812],[0.382,5.027],[0,0],[0.743,2.706],[0,0],[5.607,6.47]],"o":[[0,0],[0,0],[2.045,7.207],[-0.611,3.182],[-0.711,8.954],[-0.658,1.583],[0.329,6.635],[0,0],[-1.063,10.053],[0,0],[0,0],[-0.532,-6.45],[-0.898,-5.724],[-0.346,-4.234],[0,0],[-3.753,-9.427],[0,0],[-2.134,-1.634]],"v":[[-35.75,-62.61],[4.611,-84.777],[15.65,-71.697],[11.212,-42.592],[10.442,-21.697],[5.635,2.825],[4.162,17.317],[4.439,33.034],[3.195,48.699],[0.966,76.075],[-10.074,70.26],[-13.44,53.856],[-16.738,31.873],[-17.793,15.272],[-16.893,3.301],[-15.349,-8.789],[-18.235,-41.352],[-24.8,-59.139]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[{"i":[[8.411,-0.376],[0,0],[-2.83,-8.802],[5.45,-13.86],[0.86,-10.383],[0,0],[0.282,-4.064],[0,0],[1.351,-10.3],[0,0],[0,0],[0,0],[0.99,6.863],[0.323,5.035],[0,0],[0.821,2.696],[0,0],[-0.899,12.404]],"o":[[0,0],[0,0],[2.061,6.37],[-0.614,2.753],[-0.722,8.894],[-0.493,1.187],[0.099,6.668],[0,0],[-1.219,10.024],[0,0],[0,0],[-0.416,-6.464],[-0.842,-5.736],[-0.289,-4.206],[0,0],[-3.252,-10.959],[0,0],[0.364,-3.844]],"v":[[-34.187,-57.551],[4.215,-81.017],[14.635,-71.891],[13.642,-37.506],[10.782,-21.765],[5.945,3.187],[4.929,17.636],[4.775,33.014],[3.288,48.749],[0.674,75.833],[-10.382,69.32],[-13.113,53.787],[-16.22,31.452],[-17.144,14.548],[-16.043,2.511],[-14.499,-9.105],[-18.231,-31.446],[-18.646,-52.854]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[0,0],[0,0],[-3.014,-8.751],[5.622,-11.554],[0.94,-10.855],[0,0],[0.419,-4.786],[0,0],[1.806,-10.634],[0,0],[0,0],[0,0],[0.818,7.016],[0.144,5.059],[0,0],[1.054,2.666],[0,0],[-0.852,13.496]],"o":[[0,0],[0,0],[2.222,6.45],[-0.772,1.588],[-0.755,8.715],[0,0],[-0.592,6.766],[0,0],[-1.687,9.937],[0,0],[0,0],[-0.069,-6.506],[-0.673,-5.771],[-0.118,-4.12],[0,0],[-4.207,-10.639],[0,0],[0.096,-1.525]],"v":[[-33.173,-42.753],[3.194,-83.512],[18.268,-65.282],[15.244,-40.846],[11.499,-21.387],[6.57,4.854],[6.924,19.172],[5.479,33.538],[3.263,49.481],[-0.509,75.69],[-11.612,67.081],[-12.438,54.162],[-14.972,30.768],[-15.502,12.958],[-13.799,0.722],[-12.254,-9.471],[-16.838,-31.819],[-17.197,-50.253]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,0],[0,0],[-3.533,-9.956],[5.465,-12.626],[0.581,-10.844],[0,0],[0.337,-4.305],[0,0],[1.806,-10.634],[0,0],[0,0],[0,0],[0.678,6.923],[-0.002,4.9],[0,0],[0.961,2.65],[0,0],[-0.171,9.92]],"o":[[0,0],[0,0],[2.237,6.326],[-0.7,1.609],[-0.519,8.345],[0,0],[-0.424,6.591],[0,0],[-1.687,9.937],[0,0],[0,0],[-0.05,-6.549],[-0.559,-5.665],[0.017,-4.059],[0,0],[-3.915,-11.096],[0,0],[-3.721,-2.857]],"v":[[-27.84,-49.5],[-0.618,-84.969],[16.442,-67.763],[13.794,-41.642],[12.515,-22.538],[8.146,4.119],[8.469,17.208],[7.242,31.835],[4.945,48.353],[0.623,75.938],[-10.526,67.387],[-11.146,53.91],[-13.631,30.256],[-13.853,12.973],[-12.521,0.66],[-11.554,-9.232],[-15.525,-32.043],[-17.92,-47.963]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[{"i":[[0,0],[0,0],[-4.052,-11.161],[5.308,-13.698],[0.221,-10.834],[0,0],[0.256,-3.825],[0,0],[1.806,-10.634],[0,0],[0,0],[0,0],[0.539,6.829],[-0.148,4.74],[0,0],[0.867,2.634],[0,0],[-0.297,11.665]],"o":[[0,0],[0,0],[2.251,6.201],[-0.627,1.631],[-0.283,7.975],[0,0],[-0.256,6.416],[0,0],[-1.687,9.937],[0,0],[0,0],[-0.031,-6.593],[-0.445,-5.559],[0.151,-3.998],[0,0],[-3.624,-11.552],[0,0],[-0.388,-4.058]],"v":[[-23.568,-55.007],[-4.736,-85.844],[14.312,-69.663],[12.039,-41.857],[13.226,-23.108],[9.417,3.966],[9.709,15.827],[8.701,30.714],[6.323,47.807],[1.45,76.769],[-9.745,68.274],[-10.16,54.24],[-12.595,30.325],[-12.509,13.57],[-11.549,1.179],[-11.159,-8.412],[-14.517,-31.684],[-17.415,-50.096]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[0,0],[0,0],[-3.7,-9.122],[3.997,-13.931],[-0.498,-10.813],[0,0],[0.094,-2.864],[0,0],[1.806,-10.634],[0,0],[0,0],[0,0],[0.26,6.641],[-0.441,4.421],[0,0],[0.68,2.601],[0,0],[2.75,9.375]],"o":[[0,0],[0,0],[2.403,5.9],[-0.476,1.678],[0.188,7.235],[0,0],[0.08,6.066],[0,0],[-1.687,9.937],[0,0],[0,0],[0.006,-6.681],[-0.217,-5.348],[0.42,-3.876],[0,0],[-3.041,-12.464],[0,0],[-2.549,-7.749]],"v":[[-21.691,-63.496],[-11.873,-88.767],[12.253,-67.53],[12.732,-40.759],[14.649,-24.247],[11.959,3.661],[12.188,13.064],[11.617,28.472],[9.077,46.715],[3.104,78.429],[-8.184,70.049],[-8.187,54.899],[-10.523,30.463],[-9.82,14.764],[-9.603,2.217],[-10.37,-6.771],[-13.524,-30.548],[-19.549,-47.167]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":29,"s":[{"i":[[0,0],[0,0],[-3.982,-8.769],[3.342,-14.048],[-0.857,-10.802],[0,0],[0.013,-2.383],[0,0],[1.806,-10.634],[0,0],[0,0],[0,0],[0.121,6.548],[-0.587,4.262],[0,0],[0.587,2.585],[0,0],[1.038,7.811]],"o":[[0,0],[0,0],[2.603,5.707],[-0.4,1.701],[0.424,6.865],[0,0],[0.248,5.892],[0,0],[-1.687,9.937],[0,0],[0,0],[0.025,-6.724],[-0.103,-5.242],[0.555,-3.815],[0,0],[-2.75,-12.921],[0,0],[-1.107,-4.36]],"v":[[-18.386,-68.292],[-13.708,-86.209],[11.223,-66.463],[13.079,-40.209],[15.36,-24.816],[13.23,3.508],[13.428,11.683],[13.075,27.35],[10.455,46.169],[3.931,79.259],[-7.404,70.937],[-7.2,55.229],[-9.487,30.532],[-8.476,15.361],[-8.631,2.737],[-9.975,-5.95],[-11.493,-30.609],[-18.078,-58.569]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[0,0],[-4.265,-8.415],[2.686,-14.164],[-1.217,-10.792],[0,0],[-0.068,-1.903],[0,0],[1.806,-10.634],[0,0],[0,0],[0,0],[-0.019,6.454],[-0.734,4.102],[0,0],[0.493,2.569],[0,0],[1.064,7.448]],"o":[[0,0],[0,0],[2.802,5.515],[-0.325,1.725],[0.66,6.495],[0,0],[0.416,5.717],[0,0],[-1.687,9.937],[0,0],[0,0],[0.043,-6.768],[0.011,-5.137],[0.689,-3.754],[0,0],[-2.458,-13.377],[0,0],[-1.353,-7.376]],"v":[[-18.032,-74.606],[-16.912,-83.723],[10.193,-65.397],[13.426,-39.66],[16.071,-25.386],[14.501,3.355],[14.668,10.301],[14.533,26.229],[11.832,45.623],[4.758,80.09],[-6.623,71.825],[-6.214,55.559],[-8.451,30.601],[-7.132,15.958],[-7.658,3.256],[-9.58,-5.13],[-10.485,-30.25],[-16.993,-58.203]],"c":true}]},{"t":31,"s":[{"i":[[0,0],[0,0],[-4.547,-8.062],[2.031,-14.281],[-1.576,-10.781],[0,0],[-0.149,-1.422],[0,0],[1.806,-10.634],[0,0],[0,0],[0,0],[-0.158,6.36],[-0.88,3.943],[0,0],[0.4,2.553],[0,0],[1.09,7.086]],"o":[[0,0],[0,0],[3.001,5.322],[-0.249,1.748],[0.896,6.125],[0,0],[0.584,5.542],[0,0],[-1.687,9.937],[0,0],[0,0],[0.062,-6.812],[0.125,-5.031],[0.824,-3.693],[0,0],[-2.167,-13.833],[0,0],[-1.6,-10.393]],"v":[[-17.678,-80.92],[-5.806,-75.048],[9.163,-64.33],[13.772,-39.111],[16.783,-25.955],[15.772,3.202],[15.908,8.92],[15.991,25.108],[13.21,45.077],[5.585,80.92],[-5.842,72.712],[-5.228,55.889],[-7.416,30.67],[-5.788,16.555],[-6.686,3.775],[-9.186,-4.309],[-9.478,-29.892],[-15.908,-57.837]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882352948189,0.741176486015,0.61960786581,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[17.928,81.17],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"bà n tay trái Outlines","parent":6,"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":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[18.151,153.122,0],"to":[0.255,0.904,0],"ti":[-0.587,-2.082,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[17.928,151.855,0],"to":[0.786,2.788,0],"ti":[-1.21,-4.435,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[20.026,159.488,0],"to":[0.717,2.626,0],"ti":[-0.013,-0.022,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[22.939,170.104,0],"to":[0.067,0.114,0],"ti":[-0.013,-0.022,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[22.939,170.104,0],"to":[0.067,0.114,0],"ti":[-1.21,-4.435,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[20.026,159.488,0],"to":[0.717,2.626,0],"ti":[-0.587,-2.082,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[17.928,151.855,0],"to":[0.786,2.788,0],"ti":[-0.798,-2.83,0]},{"t":31,"s":[18.151,153.122,0]}],"ix":2,"l":2},"a":{"a":0,"k":[14.077,0.239,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[5.443,6.839],[2.911,-5.917],[0.119,-6.952],[-3.591,0.552],[0.296,-2.302],[-1.82,1.094],[-2.638,5.515],[-0.718,0.593],[0,0]],"o":[[0,0],[-1.67,4.45],[-0.01,0.63],[-0.609,2.498],[0.166,2.33],[0.879,-0.529],[3.014,-6.301],[0,0],[0,0]],"v":[[-1.42,-26.614],[-6.834,-19.218],[-8.917,-2.079],[-5.002,3.497],[-10.077,23.135],[-6.512,25.52],[-0.416,14.269],[6.406,0.672],[10.077,-21.928]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[{"i":[[5.443,6.839],[0.916,-7.597],[1.496,-6.79],[-2.439,3.548],[0.296,-2.302],[-1.82,1.094],[-1.126,6.009],[-0.453,3.793],[0,0]],"o":[[0,0],[-0.309,3.344],[-1.257,5.705],[-0.609,2.498],[-0.02,3.441],[0.879,-0.529],[1.4,-7.468],[0,0],[0,0]],"v":[[-7.583,-32.3],[-13.64,-21.447],[-14.535,-4.342],[-9.361,-0.419],[-10.752,20.786],[-6.512,25.52],[-2.713,12.986],[-0.076,-2.114],[3.915,-24.602]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9,"s":[{"i":[[5.622,4.26],[1.398,-7.432],[-1.472,-6.098],[-1.168,6.855],[-0.178,-1.731],[-0.084,-1.473],[-2.158,5.825],[-0.181,4.838],[0,0]],"o":[[0,0],[-0.782,6.357],[1.471,8.263],[0.457,4.87],[0.5,2.371],[0.102,1.8],[1.621,-6.855],[0,0],[0,0]],"v":[[-7.583,-32.3],[-10.685,-21.954],[-11.345,-2.19],[-5.527,-1.526],[-2.99,13.586],[-2.367,21.915],[2.751,20.848],[4.184,-8.579],[3.874,-27.234]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[5.667,3.615],[1.757,-8.224],[-0.494,-6.651],[-1.949,0.202],[-0.113,-3.12],[-1.658,-0.654],[-1.819,5.804],[-0.396,7.686],[0,0]],"o":[[0,0],[-1.097,7.395],[3.962,7.323],[1.547,5.202],[-0.062,5.755],[2.593,-0.553],[2.26,-8.252],[0,0],[0,0]],"v":[[-7.583,-32.3],[-11.564,-21.6],[-12.776,-1.563],[-7.309,-6.252],[-6.457,7.805],[-4.626,22.274],[3.137,7.305],[5.409,-10.382],[3.515,-27.62]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[{"i":[[5.712,2.97],[2.117,-9.017],[-1.079,-6.422],[-1.983,-4.258],[-2.564,0.483],[-0.201,3.187],[-1.479,5.783],[1.444,7.383],[0,0]],"o":[[0,0],[-1.411,8.433],[0.944,6.979],[2.638,5.534],[1.445,-2.425],[0.36,-5.692],[4.451,9.963],[0,0],[0,0]],"v":[[-7.583,-32.3],[-11.693,-21.25],[-12.332,-0.946],[-8.702,12.77],[-1.073,19.347],[-0.334,9.845],[1.395,-6.852],[6.633,-12.184],[3.156,-28.005]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[5.757,2.326],[1.404,-8.441],[-0.882,-6.585],[-2.656,-4.348],[0.056,5.725],[0.067,4.105],[-1.609,5.208],[1.738,8.841],[0,0]],"o":[[0,0],[-0.957,7.959],[1.818,8.776],[4.256,4.207],[0.16,-2.763],[0.349,-3.564],[2.985,7.93],[0,0],[0,0]],"v":[[-7.583,-32.3],[-13.603,-20.016],[-13.815,-0.568],[-7.88,14.657],[-2.064,11.358],[-2.112,2.518],[0.007,-7.89],[7.436,-14.317],[3.494,-28.935]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[5.802,1.681],[0.691,-7.865],[-0.686,-6.747],[-3.33,-4.438],[0.547,6.182],[-0.283,-1.616],[-0.799,5.742],[0.959,4.864],[0,0]],"o":[[0,0],[-0.58,5.595],[1.048,10.308],[6.08,8.103],[0.208,0.619],[1.061,3.778],[0.107,-4.819],[0,0],[0,0]],"v":[[-7.583,-32.3],[-11.926,-20.704],[-13.045,-1.936],[-7.057,16.543],[-2.344,6.647],[1.574,-5.992],[8.235,-4.149],[6.6,-16.094],[3.832,-29.865]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[6.251,-4.767],[-1.076,-8.948],[-4.918,-4.915],[-4.93,-1.832],[0.674,4.812],[-0.783,-1.974],[2.598,5.534],[4.973,3.55],[0,0]],"o":[[0,0],[1.276,3.617],[3.508,3.506],[6.233,1.089],[-0.521,-3.763],[3.458,8.723],[-3.585,-7.636],[0,0],[0,0]],"v":[[-7.583,-32.3],[-7.269,-18.254],[0.475,-6.667],[9.443,-0.216],[18.013,-6.812],[13.514,-22.668],[24.17,-18.917],[12.641,-34.88],[3.728,-36.445]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[6.251,-4.767],[-1.076,-8.948],[-4.918,-4.915],[-4.93,-1.832],[0.674,4.812],[-0.783,-1.974],[2.598,5.534],[4.973,3.55],[0,0]],"o":[[0,0],[1.276,3.617],[3.508,3.506],[6.233,1.089],[-0.521,-3.763],[3.458,8.723],[-3.585,-7.636],[0,0],[0,0]],"v":[[-7.583,-32.3],[-7.269,-18.254],[0.475,-6.667],[9.443,-0.216],[18.013,-6.812],[13.514,-22.668],[24.17,-18.917],[12.641,-34.88],[3.728,-36.445]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[5.802,1.681],[0.691,-7.865],[-0.686,-6.747],[-3.33,-4.438],[0.547,6.182],[-0.283,-1.616],[-0.799,5.742],[0.959,4.864],[0,0]],"o":[[0,0],[-0.58,5.595],[1.048,10.308],[6.08,8.103],[0.208,0.619],[1.061,3.778],[0.107,-4.819],[0,0],[0,0]],"v":[[-7.583,-32.3],[-11.926,-20.704],[-13.045,-1.936],[-7.057,16.543],[-2.344,6.647],[1.574,-5.992],[8.235,-4.149],[6.6,-16.094],[3.832,-29.865]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[{"i":[[5.757,2.326],[1.404,-8.441],[-0.882,-6.585],[-2.656,-4.348],[0.056,5.725],[0.067,4.105],[-1.609,5.208],[1.738,8.841],[0,0]],"o":[[0,0],[-0.957,7.959],[1.818,8.776],[4.256,4.207],[0.16,-2.763],[0.349,-3.564],[2.985,7.93],[0,0],[0,0]],"v":[[-7.583,-32.3],[-13.603,-20.016],[-13.815,-0.568],[-7.88,14.657],[-2.064,11.358],[-2.112,2.518],[0.007,-7.89],[7.436,-14.317],[3.494,-28.935]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[5.712,2.97],[2.117,-9.017],[-1.079,-6.422],[-1.983,-4.258],[-2.564,0.483],[-0.201,3.187],[-1.479,5.783],[1.444,7.383],[0,0]],"o":[[0,0],[-1.411,8.433],[0.944,6.979],[2.638,5.534],[1.445,-2.425],[0.36,-5.692],[4.451,9.963],[0,0],[0,0]],"v":[[-7.583,-32.3],[-11.693,-21.25],[-12.332,-0.946],[-8.702,12.77],[-1.073,19.347],[-0.334,9.845],[1.395,-6.852],[6.633,-12.184],[3.156,-28.005]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[5.667,3.615],[1.757,-8.224],[-0.494,-6.651],[-1.949,0.202],[-0.113,-3.12],[-1.658,-0.654],[-1.819,5.804],[-0.396,7.686],[0,0]],"o":[[0,0],[-1.097,7.395],[3.962,7.323],[1.547,5.202],[-0.062,5.755],[2.593,-0.553],[2.26,-8.252],[0,0],[0,0]],"v":[[-7.583,-32.3],[-11.564,-21.6],[-12.776,-1.563],[-7.309,-6.252],[-6.457,7.805],[-4.626,22.274],[3.137,7.305],[5.409,-10.382],[3.515,-27.62]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[{"i":[[5.622,4.26],[1.398,-7.432],[-1.472,-6.098],[-1.168,6.855],[-0.178,-1.731],[-0.084,-1.473],[-2.158,5.825],[-0.181,4.838],[0,0]],"o":[[0,0],[-0.782,6.357],[1.471,8.263],[0.457,4.87],[0.5,2.371],[0.102,1.8],[1.621,-6.855],[0,0],[0,0]],"v":[[-7.583,-32.3],[-10.685,-21.954],[-11.345,-2.19],[-5.527,-1.526],[-2.99,13.586],[-2.367,21.915],[2.751,20.848],[4.184,-8.579],[3.874,-27.234]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[5.443,6.839],[0.916,-7.597],[1.496,-6.79],[-2.439,3.548],[0.296,-2.302],[-1.82,1.094],[-1.126,6.009],[-0.453,3.793],[0,0]],"o":[[0,0],[-0.309,3.344],[-1.257,5.705],[-0.609,2.498],[-0.02,3.441],[0.879,-0.529],[1.4,-7.468],[0,0],[0,0]],"v":[[-7.583,-32.3],[-13.64,-21.447],[-14.535,-4.342],[-9.361,-0.419],[-10.752,20.786],[-6.512,25.52],[-2.713,12.986],[-0.076,-2.114],[3.915,-24.602]],"c":true}]},{"t":31,"s":[{"i":[[5.443,6.839],[2.911,-5.917],[0.119,-6.952],[-3.591,0.552],[0.296,-2.302],[-1.82,1.094],[-2.638,5.515],[-0.718,0.593],[0,0]],"o":[[0,0],[-1.67,4.45],[-0.01,0.63],[-0.609,2.498],[0.166,2.33],[0.879,-0.529],[3.014,-6.301],[0,0],[0,0]],"v":[[-1.42,-26.614],[-6.834,-19.218],[-8.917,-2.079],[-5.002,3.497],[-10.077,23.135],[-6.512,25.52],[-0.416,14.269],[6.406,0.672],[10.077,-21.928]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.88461225921,0.741493793562,0.621638518689,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[10.327,26.863],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Cẳng tay phải Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":7,"s":[53]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[185]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[185]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[53]},{"t":31,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[-4.451,96.994,0],"to":[1.5,-3.167,0],"ti":[-1.5,3.167,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[4.549,77.994,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[4.549,77.994,0],"to":[-1.5,3.167,0],"ti":[1.5,-3.167,0]},{"t":31,"s":[-4.451,96.994,0]}],"ix":2,"l":2},"a":{"a":0,"k":[18.878,21.141,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0],[4.547,-8.063],[-2.031,-14.281],[1.577,-10.782],[0,0],[0.15,-1.423],[0,0],[-1.806,-10.634],[0,0],[0,0],[0,0],[0.158,6.359],[0.879,3.944],[0,0],[-0.4,2.553],[0,0],[-1.581,9.294]],"o":[[0,0],[0,0],[-3.002,5.321],[0.249,1.748],[-0.896,6.125],[0,0],[-0.583,5.541],[0,0],[1.687,9.937],[0,0],[0,0],[-0.062,-6.812],[-0.125,-5.032],[-0.824,-3.692],[0,0],[2.166,-13.833],[0,0],[1.562,-9.188]],"v":[[17.628,-80.895],[5.856,-75.074],[-9.112,-64.355],[-13.722,-39.137],[-16.732,-25.98],[-15.722,3.176],[-15.857,8.895],[-15.94,25.082],[-13.159,45.051],[-5.534,80.895],[5.893,72.686],[5.278,55.863],[7.466,30.645],[5.839,16.529],[6.737,3.749],[9.237,-4.335],[9.528,-29.918],[15.847,-57.879]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":1,"s":[{"i":[[0,0],[0,0],[6.792,-11.706],[-2.538,-14.398],[1.377,-10.798],[0,0],[0.15,-1.423],[0,0],[-1.806,-10.634],[0,0],[0,0],[0,0],[0.098,6.359],[0.822,4.138],[0,0],[-0.509,2.673],[0,0],[-0.394,9.031]],"o":[[0,0],[0,0],[-3.856,6.358],[0.303,1.735],[-0.782,6.144],[0,0],[-0.583,5.541],[0,0],[1.687,9.937],[0,0],[0,0],[0.098,-6.876],[-0.075,-5.09],[-0.755,-3.703],[0,0],[2.996,-15.175],[0,0],[0.846,-7.178]],"v":[[17.817,-74.418],[17.522,-83.766],[-9.528,-66.897],[-13.91,-39.57],[-16.146,-25.986],[-14.703,2.893],[-14.681,10.094],[-14.707,26.235],[-11.881,45.432],[-4.768,79.997],[6.652,72.006],[6.164,55.636],[8.302,30.604],[7.022,16.235],[7.576,3.615],[9.192,-4.861],[10.829,-30.613],[17.491,-58.541]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[{"i":[[0,0],[0,0],[5.564,-7.309],[-3.046,-14.515],[1.177,-10.814],[0,0],[0.15,-1.423],[0,0],[-1.806,-10.634],[0,0],[0,0],[0,0],[0.038,6.358],[0.766,4.332],[0,0],[-0.618,2.793],[0,0],[0.793,8.768]],"o":[[0,0],[0,0],[-4.71,7.395],[0.356,1.723],[-0.669,6.163],[0,0],[-0.583,5.541],[0,0],[1.687,9.937],[0,0],[0,0],[0.258,-6.939],[-0.025,-5.148],[-0.687,-3.713],[0,0],[3.825,-16.517],[0,0],[0.129,-5.168]],"v":[[18.006,-67.941],[13.854,-86.385],[-9.944,-69.439],[-14.099,-40.002],[-15.561,-25.992],[-13.685,2.609],[-13.505,11.293],[-13.474,27.388],[-10.604,45.814],[-4.001,79.098],[7.41,71.325],[7.05,55.41],[9.138,30.563],[8.205,15.942],[8.414,3.481],[9.147,-5.387],[12.13,-31.308],[19.136,-59.203]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":3,"s":[{"i":[[0,0],[0,0],[6.073,-6.933],[-3.553,-14.632],[0.977,-10.831],[0,0],[0.15,-1.423],[0,0],[-1.806,-10.634],[0,0],[0,0],[0,0],[-0.022,6.358],[0.709,4.526],[0,0],[-0.728,2.912],[-0.092,2.512],[-1.141,4.778]],"o":[[0,0],[0,0],[-5.563,8.431],[0.41,1.71],[-0.555,6.182],[0,0],[-0.583,5.541],[0,0],[1.687,9.937],[0,0],[0,0],[0.418,-7.003],[0.024,-5.205],[-0.618,-3.724],[0,0],[4.632,-16.187],[0.195,-5.306],[1.668,-6.982]],"v":[[19.732,-63.502],[10.699,-87.968],[-10.36,-71.981],[-14.287,-40.435],[-14.975,-25.997],[-12.666,2.326],[-12.329,12.492],[-12.241,28.54],[-9.326,46.195],[-3.235,78.2],[8.169,70.645],[7.937,55.183],[9.973,30.522],[9.387,15.648],[9.253,3.348],[9.101,-5.913],[15.293,-30.73],[17.704,-46.806]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[0,0],[0,0],[7.666,-9.185],[-4.567,-14.867],[0.577,-10.863],[0,0],[0.15,-1.423],[0,0],[-1.806,-10.634],[0,0],[0,0],[0,0],[-0.142,6.357],[0.596,4.913],[0,0],[-0.946,3.152],[0,0],[0.545,3.776]],"o":[[0,0],[0,0],[-6.697,10.884],[0.518,1.685],[-0.328,6.22],[0,0],[-0.583,5.541],[0,0],[1.687,9.937],[0,0],[0,0],[0.738,-7.13],[0.124,-5.321],[-0.481,-3.746],[0,0],[6.314,-20.544],[0,0],[3.08,-4.369]],"v":[[23.041,-55.314],[5.012,-86.69],[-11.389,-75.13],[-14.664,-41.3],[-13.803,-26.009],[-10.629,1.759],[-9.978,14.891],[-9.775,30.846],[-6.77,46.958],[-1.702,76.404],[9.686,69.284],[9.709,54.73],[11.645,30.44],[11.753,15.06],[10.93,3.08],[9.011,-6.965],[16.054,-34.308],[16.407,-50.135]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[0,0],[0,0],[6.079,-8.417],[-4.415,-15.285],[-0.378,-11.512],[0,0],[0.15,-1.423],[0,0],[-1.806,-10.634],[0,0],[0,0],[0,0],[-0.202,6.356],[0.54,5.107],[0,0],[-1.086,3.262],[-0.3,2.338],[0.725,4.691]],"o":[[0,0],[0,0],[-7.338,12.237],[0.49,1.694],[0.205,6.239],[0,0],[-0.583,5.541],[0,0],[1.687,9.937],[0,0],[0,0],[0.898,-7.194],[0.174,-5.379],[-0.412,-3.757],[0,0],[7.064,-21.216],[0.385,-2.998],[4.98,-2.611]],"v":[[28.014,-50.416],[0.583,-85.868],[-12.276,-75.025],[-14.852,-41.732],[-13.218,-26.015],[-9.611,1.476],[-8.802,16.09],[-8.541,31.999],[-5.493,47.34],[-0.936,75.505],[10.445,68.603],[10.595,54.504],[12.481,30.399],[12.936,14.767],[11.769,2.946],[9.842,-7.927],[16.934,-34.037],[18.621,-48.984]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[{"i":[[-7.771,-3.451],[0,0],[4.492,-7.65],[-4.262,-15.704],[0.177,-10.895],[0,0],[0.15,-1.423],[0,0],[-1.806,-10.634],[0,0],[0,0],[0,0],[-0.261,6.356],[0.483,5.301],[0,0],[-1.164,3.392],[0,0],[1.469,8.031]],"o":[[0,0],[0,0],[-7.98,13.59],[0.462,1.704],[-0.101,6.258],[0,0],[-0.583,5.541],[0,0],[1.687,9.937],[0,0],[0,0],[1.059,-7.257],[0.224,-5.436],[-0.343,-3.767],[0,0],[7.973,-23.229],[0,0],[-0.482,-2.635]],"v":[[34.999,-46.049],[-2.873,-84.469],[-13.163,-74.92],[-15.04,-42.165],[-12.632,-26.021],[-8.592,1.192],[-7.626,17.289],[-7.308,33.152],[-4.215,47.721],[-0.17,74.607],[11.204,67.923],[11.482,54.277],[13.317,30.358],[14.119,14.473],[12.608,2.812],[10.672,-8.888],[17.167,-35.901],[17.132,-51.276]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[0,0],[0,0],[3.557,-9.603],[-3.762,-13.064],[0.14,-9.678],[0,0],[0.204,-1.411],[0,0],[-1.438,-9.263],[0,0],[0,0],[0,0],[-0.519,6.313],[0.483,5.301],[0,0],[-0.449,3.432],[-0.596,6.785],[0.506,4.641]],"o":[[0,0],[0,0],[-3.982,14.636],[1.599,1.986],[-0.071,6.315],[0,0],[-0.772,5.438],[0,0],[1.128,9.937],[0,0],[0,0],[1.333,-7.197],[0.414,-5.298],[-0.343,-3.767],[0,0],[3.041,-13.997],[0.764,-8.699],[4.271,-5.428]],"v":[[34.098,-59.046],[-4.296,-82.352],[-14.672,-73.864],[-14.398,-40.318],[-11.493,-24.594],[-6.163,3.385],[-6.06,18.699],[-6.373,34.283],[-4.012,48.603],[-1.16,75.719],[10.229,71.124],[12.201,55.092],[15.378,30.973],[16.441,14.249],[14.704,2.201],[14.818,-11.062],[18.481,-34.525],[18.616,-54.316]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9,"s":[{"i":[[0,0],[0,0],[2.715,-6.799],[-4.079,-11.494],[-0.034,-9.156],[0,0],[0.222,-1.407],[0,0],[-1.315,-8.805],[0,0],[0,0],[0,0],[-0.605,6.299],[0.483,5.301],[0,0],[-0.432,3.431],[-0.298,3.393],[-4.197,4.382]],"o":[[0,0],[0,0],[-3.977,12.638],[1.811,2.397],[-0.06,6.334],[0,0],[-0.836,5.403],[0,0],[0.941,9.938],[0,0],[0,0],[1.425,-7.177],[0.477,-5.251],[-0.343,-3.767],[0,0],[4.507,-18.144],[0.382,-4.349],[3.08,-2.471]],"v":[[35.295,-64.263],[-7.997,-80.331],[-15.685,-73.471],[-13.73,-41.479],[-11.113,-24.118],[-5.353,4.115],[-5.538,19.169],[-6.061,34.66],[-3.945,48.897],[-1.49,76.089],[9.904,72.191],[12.441,55.364],[16.065,31.177],[17.216,14.174],[15.478,1.716],[14.962,-10.11],[17.729,-45.595],[24.375,-60.831]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[0,0],[0,0],[1.095,-6.502],[-4.396,-9.924],[-0.207,-8.633],[0,0],[0.239,-1.403],[0,0],[-1.192,-8.348],[0,0],[0,0],[0,0],[-0.69,6.284],[0.483,5.301],[0,0],[-0.416,3.43],[0,0],[-6.106,4.241]],"o":[[0,0],[-6.653,-0.423],[-3.971,10.64],[2.023,2.809],[-0.05,6.353],[0,0],[-0.899,5.369],[0,0],[0.755,9.938],[0,0],[0,0],[1.516,-7.157],[0.54,-5.205],[-0.343,-3.767],[0,0],[5.973,-22.29],[0,0],[5.477,-3.576]],"v":[[42.161,-75.563],[10.288,-80.495],[-16.699,-73.077],[-13.062,-42.641],[-10.733,-23.642],[-4.543,4.846],[-5.015,19.64],[-5.749,35.037],[-3.877,49.191],[-1.82,76.459],[9.579,73.259],[12.681,55.636],[16.752,31.382],[17.99,14.099],[16.253,1.231],[15.107,-9.158],[16.977,-56.665],[30.521,-68.384]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[{"i":[[0,0],[5.573,-0.06],[4.452,-5.475],[-4.713,-8.354],[-0.38,-8.11],[0,0],[0.257,-1.399],[0,0],[-1.069,-7.891],[0,0],[0,0],[0,0],[-0.776,6.27],[0.483,5.301],[0,0],[-0.399,3.429],[0,0],[-1.047,12.059]],"o":[[0,0],[-4.741,0.051],[-3.965,8.642],[2.234,3.221],[-0.04,6.372],[0,0],[-0.962,5.334],[0,0],[0.568,9.938],[0,0],[0,0],[1.608,-7.137],[0.603,-5.159],[-0.343,-3.767],[0,0],[4.157,-14.493],[0,0],[-0.38,-11.749]],"v":[[33.875,-82.582],[7.947,-80.61],[-17.412,-72.237],[-12.394,-43.802],[-10.354,-23.167],[-3.733,5.577],[-4.493,20.11],[-5.437,35.414],[-3.81,49.484],[-2.15,76.83],[9.254,74.326],[12.921,55.908],[17.439,31.587],[18.764,14.025],[17.027,0.745],[15.346,-9.039],[16.549,-34.058],[21.287,-57.723]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[0,0],[0,0],[0.36,-1.397],[-4.234,-5.218],[-1.778,-10.698],[0,0],[0.275,-1.395],[0,0],[-0.946,-7.434],[0,0],[0,0],[0,0],[-0.862,6.256],[0.483,5.301],[0,0],[-0.383,3.428],[0,0],[2.768,11.687]],"o":[[0,0],[0,0],[-2.445,9.49],[-0.23,6.918],[0.198,6.376],[0,0],[-1.025,5.3],[0,0],[0.381,9.938],[0,0],[0,0],[1.699,-7.117],[0.667,-5.112],[-0.343,-3.767],[0,0],[2.798,-11.907],[0,0],[-0.141,-10.142]],"v":[[29.671,-91.473],[-4.855,-77.781],[-18.114,-68.145],[-11.41,-44.916],[-10.224,-22.659],[-2.924,6.308],[-3.971,20.58],[-5.126,35.791],[-3.742,49.778],[-2.48,77.2],[8.929,75.393],[13.161,56.18],[18.127,31.792],[19.538,13.95],[17.461,1.854],[16.267,-8.932],[18.224,-32.552],[16.704,-56.838]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[0,0],[0,0],[2.864,-6.725],[-2.654,-3.588],[0.078,-7.65],[0,0],[0.293,-1.391],[0,0],[-0.824,-6.977],[0,0],[0,0],[0,0],[-0.948,6.242],[0.483,5.301],[0,0],[-0.271,3.433],[0,0],[1.979,14.523]],"o":[[0,0],[0,0],[-4.963,11.652],[1.441,7.227],[-0.019,6.411],[0,0],[-1.088,5.266],[0,0],[0.195,9.938],[0,0],[0,0],[1.791,-7.097],[0.73,-5.066],[-0.343,-3.767],[0,0],[1.668,-6.195],[0,0],[1.642,-7.21]],"v":[[20.478,-98.695],[0.425,-88.799],[-17.22,-72.346],[-11.288,-40.404],[-9.594,-22.215],[-2.114,7.039],[-3.449,21.05],[-4.814,36.168],[-3.675,50.072],[-2.81,77.571],[8.605,76.46],[13.401,56.452],[18.814,31.997],[20.312,13.875],[19.647,0.482],[20.061,-9.347],[20.503,-28.515],[19.841,-56.055]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[{"i":[[0,0],[0,0],[1.796,-7.586],[-1.72,-2.267],[0.016,-5.622],[0,0],[0.383,-1.371],[0,0],[-0.21,-4.691],[0,0],[0,0],[0,0],[-1.377,6.171],[0.483,5.301],[0,0],[0.287,3.459],[0,0],[1.15,8.331]],"o":[[0,0],[0,0],[-3.067,12.616],[3.49,6.948],[0.032,6.506],[0,0],[-1.404,5.093],[0,0],[-0.738,9.939],[0,0],[0,0],[2.248,-6.997],[1.047,-4.835],[-0.343,-3.768],[0,0],[-1.421,-21.435],[0,0],[-0.84,-12.612]],"v":[[9.572,-104.203],[-5.189,-85.5],[-16.619,-64.065],[-11.052,-35.866],[-7.511,-19.959],[2.12,10.571],[-0.654,23.279],[-3.07,37.931],[-3.153,51.419],[-4.276,79.301],[7.164,81.673],[14.784,57.688],[22.434,32.898],[24.368,13.38],[22.436,-2.05],[19.956,-14.616],[17.202,-50.735],[16.497,-64.762]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[0,0],[0,0],[0.728,-8.447],[-1.885,-3.253],[-0.045,-3.594],[0,0],[0.472,-1.351],[0,0],[0.404,-2.406],[0,0],[0,0],[0,0],[-1.806,6.099],[0.483,5.301],[0,0],[0.846,3.485],[0,0],[1.524,9.382]],"o":[[0,0],[0,0],[-1.17,13.58],[4.346,7.501],[0.083,6.602],[0,0],[-1.72,4.921],[0,0],[-1.67,9.94],[0,0],[0,0],[2.706,-6.897],[1.363,-4.604],[-0.343,-3.767],[0,0],[-5.033,-20.745],[0,0],[-2.497,-15.37]],"v":[[-2.974,-107.774],[-12.548,-81.286],[-16.415,-61.167],[-11.185,-31.084],[-5.797,-17.459],[5.985,14.347],[1.772,25.752],[-1.695,39.938],[-2.999,53.011],[-6.111,81.275],[5.356,87.131],[15.799,59.169],[25.685,34.044],[28.055,13.128],[25.962,-3.752],[23.946,-16.986],[13.368,-49.607],[8.262,-66.508]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0,0],[0,0],[0.728,-8.447],[-1.885,-3.253],[-0.045,-3.594],[0,0],[0.472,-1.351],[0,0],[0.404,-2.406],[0,0],[0,0],[0,0],[-1.806,6.099],[0.483,5.301],[0,0],[0.846,3.485],[0,0],[1.524,9.382]],"o":[[0,0],[0,0],[-1.17,13.58],[4.346,7.501],[0.083,6.602],[0,0],[-1.72,4.921],[0,0],[-1.67,9.94],[0,0],[0,0],[2.706,-6.897],[1.363,-4.604],[-0.343,-3.767],[0,0],[-5.033,-20.745],[0,0],[-2.497,-15.37]],"v":[[-2.974,-107.774],[-12.548,-81.286],[-16.415,-61.167],[-11.185,-31.084],[-5.797,-17.459],[5.985,14.347],[1.772,25.752],[-1.695,39.938],[-2.999,53.011],[-6.111,81.275],[5.356,87.131],[15.799,59.169],[25.685,34.044],[28.055,13.128],[25.962,-3.752],[23.946,-16.986],[13.368,-49.607],[8.262,-66.508]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":17,"s":[{"i":[[0,0],[0,0],[1.796,-7.586],[-1.72,-2.267],[0.016,-5.622],[0,0],[0.383,-1.371],[0,0],[-0.21,-4.691],[0,0],[0,0],[0,0],[-1.377,6.171],[0.483,5.301],[0,0],[0.287,3.459],[0,0],[1.15,8.331]],"o":[[0,0],[0,0],[-3.067,12.616],[3.49,6.948],[0.032,6.506],[0,0],[-1.404,5.093],[0,0],[-0.738,9.939],[0,0],[0,0],[2.248,-6.997],[1.047,-4.835],[-0.343,-3.768],[0,0],[-1.421,-21.435],[0,0],[-0.84,-12.612]],"v":[[9.572,-104.203],[-5.189,-85.5],[-16.619,-64.065],[-11.052,-35.866],[-7.511,-19.959],[2.12,10.571],[-0.654,23.279],[-3.07,37.931],[-3.153,51.419],[-4.276,79.301],[7.164,81.673],[14.784,57.689],[22.434,32.898],[24.368,13.38],[22.436,-2.05],[19.956,-14.616],[17.202,-50.735],[16.497,-64.762]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[0,0],[0,0],[2.864,-6.725],[-2.654,-3.588],[0.078,-7.65],[0,0],[0.293,-1.391],[0,0],[-0.824,-6.977],[0,0],[0,0],[0,0],[-0.948,6.242],[0.483,5.301],[0,0],[-0.271,3.433],[0,0],[1.979,14.523]],"o":[[0,0],[0,0],[-4.963,11.652],[1.441,7.227],[-0.019,6.411],[0,0],[-1.088,5.266],[0,0],[0.195,9.938],[0,0],[0,0],[1.791,-7.097],[0.73,-5.066],[-0.343,-3.767],[0,0],[1.668,-6.195],[0,0],[1.642,-7.21]],"v":[[20.478,-98.695],[0.425,-88.799],[-17.22,-72.346],[-11.288,-40.404],[-9.594,-22.215],[-2.114,7.039],[-3.449,21.05],[-4.814,36.168],[-3.675,50.072],[-2.81,77.571],[8.605,76.46],[13.401,56.452],[18.814,31.997],[20.312,13.875],[19.647,0.482],[20.061,-9.347],[20.503,-28.515],[19.841,-56.055]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[{"i":[[0,0],[0,0],[0.36,-1.397],[-4.234,-5.218],[-1.778,-10.698],[0,0],[0.275,-1.395],[0,0],[-0.946,-7.434],[0,0],[0,0],[0,0],[-0.862,6.256],[0.483,5.301],[0,0],[-0.383,3.428],[0,0],[2.768,11.687]],"o":[[0,0],[0,0],[-2.445,9.49],[-0.23,6.918],[0.198,6.376],[0,0],[-1.025,5.3],[0,0],[0.381,9.938],[0,0],[0,0],[1.699,-7.117],[0.667,-5.112],[-0.343,-3.767],[0,0],[2.798,-11.907],[0,0],[-0.141,-10.142]],"v":[[29.671,-91.473],[-4.855,-77.781],[-18.114,-68.145],[-11.41,-44.916],[-10.224,-22.659],[-2.924,6.308],[-3.971,20.58],[-5.126,35.791],[-3.742,49.778],[-2.48,77.2],[8.929,75.393],[13.161,56.18],[18.127,31.792],[19.538,13.95],[17.461,1.854],[16.267,-8.932],[18.224,-32.552],[16.704,-56.838]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[0,0],[5.573,-0.06],[4.452,-5.475],[-4.713,-8.354],[-0.38,-8.11],[0,0],[0.257,-1.399],[0,0],[-1.069,-7.891],[0,0],[0,0],[0,0],[-0.776,6.27],[0.483,5.301],[0,0],[-0.399,3.429],[0,0],[-1.047,12.059]],"o":[[0,0],[-4.741,0.051],[-3.965,8.642],[2.234,3.221],[-0.04,6.372],[0,0],[-0.962,5.334],[0,0],[0.568,9.938],[0,0],[0,0],[1.608,-7.137],[0.603,-5.159],[-0.343,-3.767],[0,0],[4.157,-14.493],[0,0],[-0.38,-11.749]],"v":[[33.875,-82.582],[7.947,-80.61],[-17.412,-72.237],[-12.394,-43.802],[-10.354,-23.167],[-3.733,5.577],[-4.493,20.11],[-5.437,35.414],[-3.81,49.484],[-2.15,76.83],[9.254,74.326],[12.921,55.908],[17.439,31.587],[18.764,14.025],[17.027,0.745],[15.346,-9.039],[16.549,-34.058],[21.287,-57.723]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[0,0],[0,0],[1.095,-6.502],[-4.396,-9.924],[-0.207,-8.633],[0,0],[0.239,-1.403],[0,0],[-1.192,-8.348],[0,0],[0,0],[0,0],[-0.69,6.284],[0.483,5.301],[0,0],[-0.416,3.43],[0,0],[-6.106,4.241]],"o":[[0,0],[-6.653,-0.423],[-3.971,10.64],[2.023,2.809],[-0.05,6.353],[0,0],[-0.899,5.369],[0,0],[0.755,9.938],[0,0],[0,0],[1.516,-7.157],[0.54,-5.205],[-0.343,-3.767],[0,0],[5.973,-22.29],[0,0],[5.477,-3.576]],"v":[[42.161,-75.563],[10.288,-80.495],[-16.699,-73.077],[-13.062,-42.641],[-10.733,-23.642],[-4.543,4.846],[-5.015,19.64],[-5.749,35.037],[-3.877,49.191],[-1.82,76.459],[9.579,73.259],[12.681,55.636],[16.752,31.382],[17.99,14.099],[16.253,1.231],[15.107,-9.158],[16.977,-56.665],[30.521,-68.384]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[{"i":[[0,0],[0,0],[2.715,-6.799],[-4.079,-11.494],[-0.034,-9.156],[0,0],[0.222,-1.407],[0,0],[-1.315,-8.805],[0,0],[0,0],[0,0],[-0.605,6.299],[0.483,5.301],[0,0],[-0.432,3.431],[-0.298,3.393],[-4.197,4.382]],"o":[[0,0],[0,0],[-3.977,12.638],[1.811,2.397],[-0.06,6.334],[0,0],[-0.836,5.403],[0,0],[0.941,9.938],[0,0],[0,0],[1.425,-7.177],[0.477,-5.251],[-0.343,-3.767],[0,0],[4.507,-18.144],[0.382,-4.349],[3.08,-2.471]],"v":[[35.295,-64.263],[-7.997,-80.331],[-15.685,-73.471],[-13.73,-41.479],[-11.113,-24.118],[-5.353,4.115],[-5.538,19.169],[-6.061,34.66],[-3.945,48.897],[-1.49,76.089],[9.904,72.191],[12.441,55.364],[16.065,31.177],[17.216,14.174],[15.478,1.716],[14.962,-10.11],[17.729,-45.595],[24.375,-60.831]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[{"i":[[0,0],[0,0],[3.557,-9.603],[-3.762,-13.064],[0.14,-9.678],[0,0],[0.204,-1.411],[0,0],[-1.438,-9.263],[0,0],[0,0],[0,0],[-0.519,6.313],[0.483,5.301],[0,0],[-0.449,3.432],[-0.596,6.785],[0.506,4.641]],"o":[[0,0],[0,0],[-3.982,14.636],[1.599,1.986],[-0.071,6.315],[0,0],[-0.772,5.438],[0,0],[1.128,9.937],[0,0],[0,0],[1.333,-7.197],[0.414,-5.298],[-0.343,-3.767],[0,0],[3.041,-13.997],[0.764,-8.699],[4.271,-5.428]],"v":[[34.098,-59.046],[-4.296,-82.352],[-14.672,-73.864],[-14.398,-40.318],[-11.493,-24.594],[-6.163,3.385],[-6.06,18.699],[-6.373,34.283],[-4.012,48.603],[-1.16,75.719],[10.229,71.124],[12.201,55.092],[15.378,30.973],[16.441,14.249],[14.704,2.201],[14.818,-11.062],[18.481,-34.525],[18.616,-54.316]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-7.771,-3.451],[0,0],[4.492,-7.65],[-4.262,-15.704],[0.177,-10.895],[0,0],[0.15,-1.423],[0,0],[-1.806,-10.634],[0,0],[0,0],[0,0],[-0.261,6.356],[0.483,5.301],[0,0],[-1.164,3.392],[0,0],[1.469,8.031]],"o":[[0,0],[0,0],[-7.98,13.59],[0.462,1.704],[-0.101,6.258],[0,0],[-0.583,5.541],[0,0],[1.687,9.937],[0,0],[0,0],[1.059,-7.257],[0.224,-5.436],[-0.343,-3.767],[0,0],[7.973,-23.229],[0,0],[-0.482,-2.635]],"v":[[34.999,-46.049],[-2.873,-84.469],[-13.163,-74.92],[-15.04,-42.165],[-12.632,-26.021],[-8.592,1.192],[-7.626,17.289],[-7.308,33.152],[-4.215,47.721],[-0.17,74.607],[11.204,67.923],[11.482,54.277],[13.317,30.358],[14.119,14.473],[12.608,2.812],[10.672,-8.888],[17.167,-35.901],[17.132,-51.276]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[{"i":[[0,0],[0,0],[6.079,-8.417],[-4.415,-15.285],[-0.378,-11.512],[0,0],[0.15,-1.423],[0,0],[-1.806,-10.634],[0,0],[0,0],[0,0],[-0.202,6.356],[0.54,5.107],[0,0],[-1.086,3.262],[-0.3,2.338],[0.725,4.691]],"o":[[0,0],[0,0],[-7.338,12.237],[0.49,1.694],[0.205,6.239],[0,0],[-0.583,5.541],[0,0],[1.687,9.937],[0,0],[0,0],[0.898,-7.194],[0.174,-5.379],[-0.412,-3.757],[0,0],[7.064,-21.216],[0.385,-2.998],[4.98,-2.611]],"v":[[28.014,-50.416],[0.583,-85.868],[-12.276,-75.025],[-14.852,-41.732],[-13.218,-26.015],[-9.611,1.476],[-8.802,16.09],[-8.541,31.999],[-5.493,47.34],[-0.936,75.505],[10.445,68.603],[10.595,54.504],[12.481,30.399],[12.936,14.767],[11.769,2.946],[9.842,-7.927],[16.934,-34.037],[18.621,-48.984]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[{"i":[[0,0],[0,0],[7.666,-9.185],[-4.567,-14.867],[0.577,-10.863],[0,0],[0.15,-1.423],[0,0],[-1.806,-10.634],[0,0],[0,0],[0,0],[-0.142,6.357],[0.596,4.913],[0,0],[-0.946,3.152],[0,0],[0.545,3.776]],"o":[[0,0],[0,0],[-6.697,10.884],[0.518,1.685],[-0.328,6.22],[0,0],[-0.583,5.541],[0,0],[1.687,9.937],[0,0],[0,0],[0.738,-7.13],[0.124,-5.321],[-0.481,-3.746],[0,0],[6.314,-20.544],[0,0],[3.08,-4.369]],"v":[[23.041,-55.314],[5.012,-86.69],[-11.389,-75.13],[-14.664,-41.3],[-13.803,-26.009],[-10.629,1.759],[-9.978,14.891],[-9.775,30.846],[-6.77,46.958],[-1.702,76.404],[9.686,69.284],[9.709,54.73],[11.645,30.44],[11.753,15.06],[10.93,3.08],[9.011,-6.965],[16.054,-34.308],[16.407,-50.135]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[0,0],[0,0],[6.073,-6.933],[-3.553,-14.632],[0.977,-10.831],[0,0],[0.15,-1.423],[0,0],[-1.806,-10.634],[0,0],[0,0],[0,0],[-0.022,6.358],[0.709,4.526],[0,0],[-0.728,2.912],[-0.092,2.512],[-1.141,4.778]],"o":[[0,0],[0,0],[-5.563,8.431],[0.41,1.71],[-0.555,6.182],[0,0],[-0.583,5.541],[0,0],[1.687,9.937],[0,0],[0,0],[0.418,-7.003],[0.024,-5.205],[-0.618,-3.724],[0,0],[4.632,-16.187],[0.195,-5.306],[1.668,-6.982]],"v":[[19.732,-63.502],[10.699,-87.968],[-10.36,-71.981],[-14.287,-40.435],[-14.975,-25.997],[-12.666,2.326],[-12.329,12.492],[-12.241,28.54],[-9.326,46.195],[-3.235,78.2],[8.169,70.645],[7.937,55.183],[9.973,30.522],[9.387,15.648],[9.253,3.348],[9.101,-5.913],[15.293,-30.73],[17.704,-46.806]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":29,"s":[{"i":[[0,0],[0,0],[5.564,-7.309],[-3.046,-14.515],[1.177,-10.814],[0,0],[0.15,-1.423],[0,0],[-1.806,-10.634],[0,0],[0,0],[0,0],[0.038,6.358],[0.766,4.332],[0,0],[-0.618,2.793],[0,0],[0.793,8.768]],"o":[[0,0],[0,0],[-4.71,7.395],[0.356,1.723],[-0.669,6.163],[0,0],[-0.583,5.541],[0,0],[1.687,9.937],[0,0],[0,0],[0.258,-6.939],[-0.025,-5.148],[-0.687,-3.713],[0,0],[3.825,-16.517],[0,0],[0.129,-5.168]],"v":[[18.006,-67.941],[13.854,-86.385],[-9.944,-69.439],[-14.099,-40.002],[-15.561,-25.992],[-13.685,2.609],[-13.505,11.293],[-13.474,27.388],[-10.604,45.814],[-4.001,79.099],[7.41,71.325],[7.05,55.41],[9.138,30.563],[8.205,15.942],[8.414,3.481],[9.147,-5.387],[12.13,-31.308],[19.136,-59.203]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[0,0],[6.792,-11.706],[-2.538,-14.398],[1.377,-10.798],[0,0],[0.15,-1.423],[0,0],[-1.806,-10.634],[0,0],[0,0],[0,0],[0.098,6.359],[0.822,4.138],[0,0],[-0.509,2.673],[0,0],[-0.394,9.031]],"o":[[0,0],[0,0],[-3.856,6.358],[0.303,1.735],[-0.782,6.144],[0,0],[-0.583,5.541],[0,0],[1.687,9.937],[0,0],[0,0],[0.098,-6.876],[-0.075,-5.09],[-0.755,-3.703],[0,0],[2.996,-15.175],[0,0],[0.846,-7.178]],"v":[[17.817,-74.418],[17.522,-83.766],[-9.528,-66.897],[-13.91,-39.57],[-16.146,-25.986],[-14.703,2.893],[-14.681,10.094],[-14.707,26.235],[-11.881,45.432],[-4.768,79.997],[6.652,72.006],[6.164,55.636],[8.302,30.604],[7.022,16.235],[7.576,3.615],[9.192,-4.861],[10.829,-30.613],[17.491,-58.541]],"c":true}]},{"t":31,"s":[{"i":[[0,0],[0,0],[4.547,-8.063],[-2.031,-14.281],[1.577,-10.782],[0,0],[0.15,-1.423],[0,0],[-1.806,-10.634],[0,0],[0,0],[0,0],[0.158,6.359],[0.879,3.944],[0,0],[-0.4,2.553],[0,0],[-1.581,9.294]],"o":[[0,0],[0,0],[-3.002,5.321],[0.249,1.748],[-0.896,6.125],[0,0],[-0.583,5.541],[0,0],[1.687,9.937],[0,0],[0,0],[-0.062,-6.812],[-0.125,-5.032],[-0.824,-3.692],[0,0],[2.166,-13.833],[0,0],[1.562,-9.188]],"v":[[17.628,-80.895],[5.856,-75.074],[-9.112,-64.355],[-13.722,-39.137],[-16.732,-25.98],[-15.722,3.176],[-15.857,8.895],[-15.94,25.082],[-13.159,45.051],[-5.534,80.895],[5.893,72.686],[5.278,55.863],[7.466,30.645],[5.839,16.529],[6.737,3.749],[9.237,-4.335],[9.528,-29.918],[15.847,-57.879]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882352948189,0.741176486015,0.61960786581,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[17.878,81.145],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Bà n tay phải Outlines","parent":8,"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":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[17.425,153.141,0],"to":[-0.156,0.889,0],"ti":[0.359,-2.047,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[18.153,152.957,0],"to":[-0.482,2.744,0],"ti":[0.913,-4.043,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[17.61,157.994,0],"to":[-0.539,2.388,0],"ti":[0.023,-0.075,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[14.494,169.839,0],"to":[-0.08,0.259,0],"ti":[0.023,-0.075,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[14.494,169.839,0],"to":[-0.08,0.259,0],"ti":[0.913,-4.043,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[17.61,157.994,0],"to":[-0.539,2.388,0],"ti":[0.359,-2.047,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[18.153,152.957,0],"to":[-0.482,2.744,0],"ti":[0.488,-2.783,0]},{"t":31,"s":[17.425,153.141,0]}],"ix":2,"l":2},"a":{"a":0,"k":[6.296,0.308,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-5.443,6.839],[-2.911,-5.917],[-0.119,-6.952],[3.591,0.552],[-0.296,-2.302],[1.82,1.094],[2.638,5.515],[0.718,0.593],[0,0]],"o":[[0,0],[1.67,4.45],[0.01,0.63],[0.609,2.498],[-0.166,2.33],[-0.879,-0.529],[-3.014,-6.301],[0,0],[0,0]],"v":[[1.421,-26.614],[6.834,-19.218],[8.917,-2.079],[5.002,3.497],[10.077,23.135],[6.512,25.52],[0.416,14.269],[-6.406,0.672],[-10.077,-21.928]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[{"i":[[-6.73,-5.137],[-0.947,-4.97],[-0.589,-7.278],[2.881,1.445],[-0.296,-2.302],[2.246,1.524],[1.509,5.435],[0.069,2.163],[0,0]],"o":[[0,0],[0.89,4.669],[0.308,3.814],[0.609,2.498],[-0.145,4.637],[-0.849,-0.576],[-1.869,-6.73],[0,0],[0,0]],"v":[[6.662,-30.92],[12.753,-21.88],[14.521,-3.492],[10.358,0.959],[11.38,22.237],[6.512,25.52],[3.168,13.525],[-0.775,-1.816],[-4.471,-24.591]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9,"s":[{"i":[[-7.434,2.708],[-1.304,-7.513],[1.645,-6.728],[1.308,7.39],[0.591,-0.548],[-0.364,0.204],[0.967,4.471],[0.269,3.163],[0,0]],"o":[[0,0],[0.79,4.555],[-0.295,3.843],[0.005,2.373],[-0.326,1.956],[-3.261,-1.699],[-1.169,-6.782],[0,0],[0,0]],"v":[[6.159,-30.611],[11.328,-20.004],[10.611,-2.705],[4.581,-4.184],[4.4,19.852],[1.049,21.977],[-4.022,6.1],[-5.615,-12.065],[-5.052,-28.039]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[-7.407,2.589],[-1.622,-7.205],[1.258,-6.361],[1.795,-0.001],[2.413,-0.719],[-0.251,0.079],[0.745,4.616],[-0.07,3.189],[0,0]],"o":[[0,0],[0.958,4.64],[-4.844,8.494],[-0.853,3.178],[-2.843,0.195],[-2.904,-5.762],[-0.863,-6.733],[0,0],[0,0]],"v":[[6.033,-30.534],[10.898,-20.621],[11.663,-5.288],[5.109,-9.3],[3.826,17.977],[-1.803,13.526],[-6.586,-4.024],[-6.889,-16.175],[-5.206,-28.538]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[{"i":[[-7.379,2.469],[-1.94,-6.898],[0.871,-5.994],[2.282,-7.392],[4.236,-0.89],[-0.139,-0.046],[0.522,4.761],[-0.409,3.215],[0,0]],"o":[[0,0],[1.125,4.724],[0.004,4.967],[-1.711,3.984],[-3.994,-2.273],[-1.936,5.714],[-0.556,-6.683],[0,0],[0,0]],"v":[[5.907,-30.457],[10.468,-21.238],[11.206,-6.13],[8.743,10.353],[2.496,17.098],[-1.345,-5.405],[-7.707,-4.388],[-7.438,-15.78],[-5.36,-29.036]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-7.325,2.23],[-2.576,-6.282],[0.097,-5.259],[4.033,-6.17],[-1.888,4.175],[0.087,-0.297],[0.078,5.052],[-1.087,3.267],[0,0]],"o":[[0,0],[1.459,4.893],[-0.901,7.481],[-12.328,18.862],[-0.44,-7.867],[-2.184,3.5],[0.058,-6.583],[0,0],[0,0]],"v":[[5.656,-30.303],[9.608,-22.471],[11.8,-9.555],[5.281,10.152],[-3.096,7.249],[-4.07,-8.817],[-12.281,-3.862],[-9.26,-19.496],[-5.667,-30.033]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[-4.895,-0.848],[1.468,-4.841],[3.561,-5.837],[2.202,-1.862],[3.695,5.593],[1.213,-1.552],[-0.93,1.097],[-5.5,2.184],[0,0]],"o":[[0,0],[-1.33,4.387],[-2.406,3.945],[-2.108,1.934],[-0.957,-7.426],[-9.86,12.612],[5.052,-5.955],[0,0],[0,0]],"v":[[4.399,-29.53],[3.934,-20.857],[-1.276,-9.074],[-8.586,-0.803],[-21.574,-2.328],[-16.656,-22.017],[-27.034,-19.029],[-14.807,-33.84],[-6.467,-35.207]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-4.895,-0.848],[1.468,-4.841],[3.561,-5.837],[2.202,-1.862],[3.695,5.593],[1.213,-1.552],[-0.93,1.097],[-5.5,2.184],[0,0]],"o":[[0,0],[-1.33,4.387],[-2.406,3.945],[-2.108,1.934],[-0.957,-7.426],[-9.86,12.612],[5.052,-5.955],[0,0],[0,0]],"v":[[4.399,-29.53],[3.934,-20.857],[-1.276,-9.074],[-8.586,-0.803],[-21.574,-2.328],[-16.656,-22.017],[-27.034,-19.029],[-14.807,-33.84],[-6.467,-35.207]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[-7.325,2.23],[-2.576,-6.282],[0.097,-5.259],[4.033,-6.17],[-1.888,4.175],[0.087,-0.297],[0.078,5.052],[-1.087,3.267],[0,0]],"o":[[0,0],[1.459,4.893],[-0.901,7.481],[-12.328,18.862],[-0.44,-7.867],[-2.184,3.5],[0.058,-6.583],[0,0],[0,0]],"v":[[5.656,-30.303],[9.608,-22.471],[11.8,-9.555],[5.281,10.152],[-3.096,7.249],[-4.07,-8.817],[-12.281,-3.862],[-9.26,-19.496],[-5.667,-30.033]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[-7.379,2.469],[-1.94,-6.898],[0.871,-5.994],[2.282,-7.392],[4.236,-0.89],[-0.139,-0.046],[0.522,4.761],[-0.409,3.215],[0,0]],"o":[[0,0],[1.125,4.724],[0.004,4.967],[-1.711,3.984],[-3.994,-2.273],[-1.936,5.714],[-0.556,-6.683],[0,0],[0,0]],"v":[[5.907,-30.457],[10.468,-21.238],[11.206,-6.13],[8.743,10.353],[2.496,17.098],[-1.345,-5.405],[-7.707,-4.388],[-7.438,-15.78],[-5.36,-29.036]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[{"i":[[-7.407,2.589],[-1.622,-7.205],[1.258,-6.361],[1.795,-0.001],[2.413,-0.719],[-0.251,0.079],[0.745,4.616],[-0.07,3.189],[0,0]],"o":[[0,0],[0.958,4.64],[-4.844,8.494],[-0.853,3.178],[-2.843,0.195],[-2.904,-5.762],[-0.863,-6.733],[0,0],[0,0]],"v":[[6.033,-30.534],[10.898,-20.621],[11.663,-5.288],[5.109,-9.3],[3.826,17.977],[-1.803,13.526],[-6.586,-4.024],[-6.889,-16.175],[-5.206,-28.538]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[{"i":[[-7.434,2.708],[-1.304,-7.513],[1.645,-6.728],[1.308,7.39],[0.591,-0.548],[-0.364,0.204],[0.967,4.471],[0.269,3.163],[0,0]],"o":[[0,0],[0.79,4.555],[-0.295,3.843],[0.005,2.373],[-0.326,1.956],[-3.261,-1.699],[-1.169,-6.782],[0,0],[0,0]],"v":[[6.159,-30.611],[11.328,-20.004],[10.611,-2.705],[4.581,-4.184],[4.4,19.852],[1.049,21.977],[-4.022,6.1],[-5.615,-12.065],[-5.052,-28.039]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[-6.73,-5.137],[-0.947,-4.97],[-0.589,-7.278],[2.881,1.445],[-0.296,-2.302],[2.246,1.524],[1.509,5.435],[0.069,2.163],[0,0]],"o":[[0,0],[0.89,4.669],[0.308,3.814],[0.609,2.498],[-0.145,4.637],[-0.849,-0.576],[-1.869,-6.73],[0,0],[0,0]],"v":[[6.662,-30.92],[12.753,-21.88],[14.521,-3.492],[10.358,0.959],[11.38,22.237],[6.512,25.52],[3.168,13.525],[-0.775,-1.816],[-4.471,-24.591]],"c":true}]},{"t":31,"s":[{"i":[[-5.443,6.839],[-2.911,-5.917],[-0.119,-6.952],[3.591,0.552],[-0.296,-2.302],[1.82,1.094],[2.638,5.515],[0.718,0.593],[0,0]],"o":[[0,0],[1.67,4.45],[0.01,0.63],[0.609,2.498],[-0.166,2.33],[-0.879,-0.529],[-3.014,-6.301],[0,0],[0,0]],"v":[[1.421,-26.614],[6.834,-19.218],[8.917,-2.079],[5.002,3.497],[10.077,23.135],[6.512,25.52],[0.416,14.269],[-6.406,0.672],[-10.077,-21.928]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.88461225921,0.741493793562,0.621638518689,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[10.327,26.864],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":34,"st":0,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Äùi trái","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":10,"s":[-8]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[-19.522]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[-19.522]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[-8]},{"t":31,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[375.863,323.219,0],"to":[0,0,0],"ti":[0,0,0]},{"t":31,"s":[375.863,323.219,0]}],"ix":2,"l":2},"a":{"a":0,"k":[22.188,20.35,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[-9.244,8.038],[0,0],[5.024,-35.693],[20.283,5.362],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[4.441,26.313],[-6.594,3.257],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.43,-61.56],[19.748,-39.719],[14.799,55.551],[-24.188,56.198],[-24.188,9.578],[-24.188,-7.378],[-24.188,-32.253],[-24.188,-52.315]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[{"i":[[-11.28,6.315],[0,0],[5.024,-35.693],[20.283,5.362],[0,0],[0,0],[-2.69,8.355],[0,0]],"o":[[0,0],[4.441,26.313],[-6.594,3.257],[0,0],[0,0],[0,0],[2.577,-8.003],[0,0]],"v":[[17.072,-55.194],[19.748,-39.719],[14.799,55.55],[-24.67,57.273],[-30.617,16.577],[-29.968,-8.992],[-26.264,-30.111],[-19.569,-53.158]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[-11.28,6.315],[0,0],[5.024,-35.693],[20.283,5.362],[0,0],[0,0],[-2.69,8.355],[0,0]],"o":[[0,0],[4.441,26.313],[-6.594,3.257],[0,0],[0,0],[0,0],[2.577,-8.003],[0,0]],"v":[[17.072,-55.194],[19.748,-39.719],[14.799,55.551],[-24.67,57.273],[-30.617,16.577],[-29.968,-8.992],[-26.264,-30.111],[-19.569,-53.158]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[{"i":[[-11.28,6.315],[0,0],[5.024,-35.693],[20.283,5.362],[0,0],[0,0],[-2.69,8.355],[0,0]],"o":[[0,0],[4.441,26.313],[-6.594,3.257],[0,0],[0,0],[0,0],[2.577,-8.003],[0,0]],"v":[[17.072,-55.194],[19.748,-39.719],[14.799,55.55],[-24.67,57.273],[-30.617,16.577],[-29.968,-8.992],[-26.264,-30.111],[-19.569,-53.158]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[-11.28,6.315],[0,0],[5.024,-35.693],[20.283,5.362],[0,0],[0,0],[-2.69,8.355],[0,0]],"o":[[0,0],[4.441,26.313],[-6.594,3.257],[0,0],[0,0],[0,0],[2.577,-8.003],[0,0]],"v":[[17.072,-55.194],[19.748,-39.719],[14.799,55.55],[-24.67,57.273],[-30.617,16.577],[-29.968,-8.992],[-26.264,-30.111],[-19.569,-53.158]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[-11.28,6.315],[0,0],[5.024,-35.693],[20.283,5.362],[0,0],[0,0],[-2.69,8.355],[0,0]],"o":[[0,0],[4.441,26.313],[-6.594,3.257],[0,0],[0,0],[0,0],[2.577,-8.003],[0,0]],"v":[[17.072,-55.194],[19.748,-39.719],[14.799,55.55],[-24.67,57.273],[-30.617,16.577],[-29.968,-8.992],[-26.264,-30.111],[-19.569,-53.158]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[-11.28,6.315],[0,0],[5.024,-35.693],[20.283,5.362],[0,0],[0,0],[-2.69,8.355],[0,0]],"o":[[0,0],[4.441,26.313],[-6.594,3.257],[0,0],[0,0],[0,0],[2.577,-8.003],[0,0]],"v":[[17.072,-55.194],[19.748,-39.719],[14.799,55.55],[-24.67,57.273],[-30.617,16.577],[-29.968,-8.992],[-26.264,-30.111],[-19.569,-53.158]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[{"i":[[-11.28,6.315],[0,0],[5.024,-35.693],[20.283,5.362],[0,0],[0,0],[-2.69,8.355],[0,0]],"o":[[0,0],[4.441,26.313],[-6.594,3.257],[0,0],[0,0],[0,0],[2.577,-8.003],[0,0]],"v":[[17.072,-55.194],[19.748,-39.719],[14.799,55.55],[-24.67,57.273],[-30.617,16.577],[-29.968,-8.992],[-26.264,-30.111],[-19.569,-53.158]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[{"i":[[-11.28,6.315],[0,0],[5.024,-35.693],[20.283,5.362],[0,0],[0,0],[-2.69,8.355],[0,0]],"o":[[0,0],[4.441,26.313],[-6.594,3.257],[0,0],[0,0],[0,0],[2.577,-8.003],[0,0]],"v":[[17.072,-55.194],[19.748,-39.719],[14.799,55.55],[-24.67,57.273],[-30.617,16.577],[-29.968,-8.992],[-26.264,-30.111],[-19.569,-53.158]],"c":true}]},{"t":31,"s":[{"i":[[-9.244,8.038],[0,0],[5.024,-35.693],[20.283,5.362],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[4.441,26.313],[-6.594,3.257],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.43,-61.56],[19.748,-39.719],[14.799,55.551],[-24.188,56.198],[-24.188,9.578],[-24.188,-7.378],[-24.188,-32.253],[-24.188,-52.315]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.085153288,0.069799019309,0.072872820088,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[24.438,61.81],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":72,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":2,"nm":"Giầy trái/JUMPING JACKS.ai","cl":"ai","parent":3,"refId":"image_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[13.345]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[13.345]},{"t":31,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[20.122,249.424,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[15.688,253.094,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[15.688,253.094,0],"to":[0,0,0],"ti":[0,0,0]},{"t":31,"s":[20.122,249.424,0]}],"ix":2,"l":2},"a":{"a":0,"k":[16,25,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":70,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Chân trái ","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[-1.077]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[2.571]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[2.571]},{"t":31,"s":[-1.077]}],"ix":10},"p":{"a":0,"k":[23.78,20.448,0],"ix":2,"l":2},"a":{"a":0,"k":[25.454,1.517,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0],[0.212,-2.708],[0.119,0.199],[1.441,-8.218],[-3.061,-10.167],[-0.289,-0.813],[0,0],[-2.048,-0.027],[-0.033,0.802],[-0.423,5.017],[-3.315,16.858]],"o":[[0,0],[0,0],[-0.161,-0.245],[-1.021,4.883],[-1.835,10.458],[0.326,1.082],[0.694,15.614],[0,0],[-0.008,-0.673],[3.635,-0.951],[0.946,-11.226],[3.314,-16.859]],"v":[[13.856,-61.861],[-10.137,-54.224],[-10.485,-49.891],[-10.912,-50.565],[-15.21,-28.474],[-13.45,2.906],[-12.838,5.748],[-12.838,60.014],[-3.525,61.862],[-3.486,59.642],[3.975,51.431],[13.731,-9.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[0,0],[0,0],[0.212,-2.708],[0.119,0.199],[1.441,-8.218],[-3.061,-10.167],[-0.289,-0.813],[0,0],[-2.048,-0.027],[-0.033,0.802],[-0.423,5.017],[-3.315,16.858]],"o":[[0,0],[0,0],[-0.161,-0.245],[-1.021,4.883],[-1.835,10.458],[0.326,1.082],[0.694,15.614],[0,0],[-0.008,-0.673],[3.635,-0.951],[0.946,-11.226],[3.314,-16.859]],"v":[[13.856,-61.861],[-10.137,-54.224],[-10.485,-49.891],[-10.912,-50.565],[-15.21,-28.474],[-13.45,2.906],[-12.838,5.748],[-12.838,60.014],[-3.525,61.862],[-3.486,59.642],[3.975,51.431],[13.731,-9.98]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0,0],[0,0],[0.212,-2.708],[0.119,0.199],[1.441,-8.218],[-3.061,-10.167],[-0.289,-0.813],[0,0],[-2.048,-0.027],[-0.033,0.802],[-0.423,5.017],[-3.315,16.858]],"o":[[0,0],[0,0],[-0.161,-0.245],[-1.021,4.883],[-1.835,10.458],[0.326,1.082],[0.694,15.614],[0,0],[-0.008,-0.673],[3.635,-0.951],[0.946,-11.226],[3.314,-16.859]],"v":[[13.856,-61.861],[-10.137,-54.224],[-10.485,-49.891],[-10.912,-50.565],[-15.21,-28.474],[-13.45,2.906],[-12.838,5.748],[-12.838,60.014],[-3.525,61.862],[-3.486,59.642],[3.975,51.431],[13.731,-9.98]],"c":true}]},{"t":31,"s":[{"i":[[0,0],[0,0],[0.212,-2.708],[0.119,0.199],[1.441,-8.218],[-3.061,-10.167],[-0.289,-0.813],[0,0],[-2.048,-0.027],[-0.033,0.802],[-0.423,5.017],[-3.315,16.858]],"o":[[0,0],[0,0],[-0.161,-0.245],[-1.021,4.883],[-1.835,10.458],[0.326,1.082],[0.694,15.614],[0,0],[-0.008,-0.673],[3.635,-0.951],[0.946,-11.226],[3.314,-16.859]],"v":[[13.856,-61.861],[-10.137,-54.224],[-10.485,-49.891],[-10.912,-50.565],[-15.21,-28.474],[-13.45,2.906],[-12.838,5.748],[-12.838,60.014],[-3.525,61.862],[-3.486,59.642],[3.975,51.431],[13.731,-9.98]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.88461225921,0.741493793562,0.621638518689,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[19.853,179.832],"to":[0,0],"ti":[0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[25.725,180.215],"to":[0,0],"ti":[0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[25.725,180.215],"to":[0,0],"ti":[0,0]},{"t":31,"s":[19.853,179.832]}],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[5.05]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[5.05]},{"t":31,"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 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":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[-0.401,-5.563],[-5.95,0.319],[0,0],[0,0],[-1.934,2.296],[0,0],[-0.245,11.926],[0.127,3.566],[0,0]],"o":[[0.121,15.924],[0.743,10.306],[0,0],[0,0],[2.496,-0.681],[0,0],[15.235,-71.496],[-0.275,-3.554],[0,0],[0,0]],"v":[[-24.02,-5.188],[-21.241,44.704],[-8.583,68.721],[-8.587,69.492],[-7.15,68.471],[-0.51,63.755],[8.507,54.41],[17.769,-53.544],[17.178,-64.287],[-22.115,-69.492]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[{"i":[[0,0],[-0.401,-5.563],[-5.95,0.319],[0,0],[0,0],[-1.934,2.296],[0,0],[-0.245,11.926],[0.127,3.566],[0,0]],"o":[[0.121,15.924],[0.743,10.306],[0,0],[0,0],[2.496,-0.681],[0,0],[16.666,-71.645],[-0.275,-3.554],[0,0],[0,0]],"v":[[-23.406,18.622],[-23.821,47.726],[-11.273,69],[-8.587,69.491],[-7.15,68.471],[-0.51,63.754],[8.507,54.41],[28.192,-30.679],[29.972,-50.486],[-3.802,-54.904]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0,0],[-0.401,-5.563],[-5.95,0.319],[0,0],[0,0],[-1.934,2.296],[0,0],[-0.245,11.926],[0.127,3.566],[0,0]],"o":[[0.121,15.924],[0.743,10.306],[0,0],[0,0],[2.496,-0.681],[0,0],[16.666,-71.645],[-0.275,-3.554],[0,0],[0,0]],"v":[[-23.406,18.622],[-23.821,47.726],[-11.273,69],[-8.587,69.491],[-7.15,68.471],[-0.51,63.754],[8.507,54.41],[28.192,-30.679],[29.972,-50.486],[-3.802,-54.904]],"c":false}]},{"t":31,"s":[{"i":[[0,0],[-0.401,-5.563],[-5.95,0.319],[0,0],[0,0],[-1.934,2.296],[0,0],[-0.245,11.926],[0.127,3.566],[0,0]],"o":[[0.121,15.924],[0.743,10.306],[0,0],[0,0],[2.496,-0.681],[0,0],[15.367,-71.868],[-0.275,-3.554],[0,0],[0,0]],"v":[[-24.261,0.933],[-21.241,44.704],[-8.583,68.721],[-8.587,69.492],[-7.15,68.471],[-0.51,63.755],[8.507,54.41],[17.769,-53.544],[17.178,-64.287],[-22.115,-69.492]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.88461225921,0.741493793562,0.621638518689,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[25.423,69.742],"to":[0,0],"ti":[0,0]},{"t":31,"s":[25.423,69.742]}],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100.012,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[-11.769]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[-11.769]},{"t":31,"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 3","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":72,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Pre-comp 3","refId":"comp_0","sr":0.75,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[360,416,0],"ix":2,"l":2},"a":{"a":0,"k":[360,360,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":720,"h":720,"ip":0,"op":25.5,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":1,"nm":"White Solid 41","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[360,360,0],"ix":2,"l":2},"a":{"a":0,"k":[360,360,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"sw":720,"sh":720,"sc":"#f5f5f5","ip":0,"op":100,"st":0,"bm":0}],"markers":[]} | |||
There was a problem hiding this comment.
🚀 Performance & Scalability | 🔵 Trivial | 💤 Low value
Embedded base64 raster image inside the Lottie JSON.
Unlike the other animation assets in this PR, this file embeds a small PNG inline ("e":1" in the image_0 asset) rather than referencing an external file. Base64 encoding adds ~33% size overhead and bypasses normal image-asset optimization/caching. Consider re-exporting with the image as an external referenced asset where the animation pipeline supports it.
As per path instructions, "Review asset files for: Image optimization (appropriate size and format)".
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@assets/animations/Ex9.json` at line 1, The Lottie asset embeds its PNG as a
base64 data URI instead of using an external image asset. Update the image_0
asset to reference an external optimized PNG, set its embedded-image flag
appropriately, and preserve the existing asset dimensions and animation
references.
Source: Path instructions
| "body_region": "lower_body;mobility_and_flexibility", | ||
| "movement_pattern": "squat + reach", | ||
| "difficulty": "beginner", | ||
| "intensity": "moderate", | ||
| "goal_tags": "mobility;warmup;fat_burn", | ||
| "estimated_duration": "45s", |
There was a problem hiding this comment.
🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
fd exercise_data.dart
ast-grep run --pattern 'factory Exercise.fromJson($_) { $$$ }' --lang dart lib/core/model/exercise_data.dart 2>/dev/null
rg -n "body_region|estimated_duration|estimated_time" lib/core/model/exercise_data.dartRepository: AOSSIE-Org/MoveYourBody
Length of output: 258
🏁 Script executed:
#!/bin/bash
set -euo pipefail
# Map the relevant files first.
fd -a "exercise_data.dart|exercise_table.dart|exercise_schema.dart|seed_service.dart" lib
# Read the model file around fromJson/toMap.
cat -n lib/core/model/exercise_data.dart | sed -n '1,220p'
# Read the DB table and schema files.
cat -n lib/core/database/tables/exercise_table.dart | sed -n '1,220p'
cat -n lib/core/database/schema/exercise_schema.dart | sed -n '1,260p'
# Read the seed service for error handling and JSON ingestion.
cat -n lib/core/database/seed_service.dart | sed -n '1,260p'Repository: AOSSIE-Org/MoveYourBody
Length of output: 9726
🏁 Script executed:
#!/bin/bash
set -euo pipefail
# Read the seed service.
cat -n lib/core/service/seed_service.dart | sed -n '1,260p'
# Inspect the exercise asset for estimated_duration/body_region keys.
rg -n '"body_region"|"estimated_duration"|"estimated_time"' assets/exercises/exercises.json
# Show a few representative records around those keys.
python3 - <<'PY'
import json
from pathlib import Path
p = Path('assets/exercises/exercises.json')
data = json.loads(p.read_text())
print('records:', len(data))
for i in [0, 1, 2, 10, 100, 500, len(data)-1]:
if 0 <= i < len(data):
item = data[i]
print('idx', i, 'exercise_id', item.get('exercise_id'),
'body_region', item.get('body_region'),
'estimated_duration', item.get('estimated_duration'))
PYRepository: AOSSIE-Org/MoveYourBody
Length of output: 10580
🏁 Script executed:
#!/bin/bash
set -euo pipefail
rg -n "\bestimatedTime\b|estimated_time|estimated_duration" lib assets
# Inspect the JSON structure around the top level.
python3 - <<'PY'
import json
from pathlib import Path
data = json.loads(Path('assets/exercises/exercises.json').read_text())
print(type(data).__name__)
print(data.keys() if isinstance(data, dict) else 'not-dict')
if isinstance(data, dict):
ex = data.get('exercises')
print('exercises type:', type(ex).__name__, 'len:', len(ex) if hasattr(ex, '__len__') else 'n/a')
first = ex[0]
print({k: first.get(k) for k in ['exercise_id','body_region','estimated_duration','difficulty','intensity']})
PYRepository: AOSSIE-Org/MoveYourBody
Length of output: 7367
Parse estimated_duration before seeding Exercise.fromJson ignores estimated_duration and hardcodes estimatedTime: 30, so every seeded row stores the same estimated_time instead of the values in assets/exercises/exercises.json (including ranges like 30-45 sec). body_region is already handled correctly via bodyRegions/body_regions.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@assets/exercises/exercises.json` around lines 9 - 14, Update
Exercise.fromJson to parse estimated_duration and use the resulting value for
estimatedTime instead of hardcoding 30; preserve values from the seed JSON,
including duration ranges such as “30-45 sec”, when creating seeded exercises.
| SizedBox( | ||
| child: ElevatedButton( | ||
| onPressed: () { | ||
| context.push(AppRoutes.healthIssues); | ||
| }, | ||
| child: const Text('Continue'), | ||
| ), | ||
| ), |
There was a problem hiding this comment.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
Continue buttons are not full-width across onboarding screens. Both goal_screen.dart and health_issues.dart wrap the Continue ElevatedButton in a SizedBox without width: double.infinity, while welcome_screen.dart and user_details.dart correctly set it. This produces visually inconsistent button widths.
lib/features/onboarding/view/goal_screen.dart#L119-L126: addwidth: double.infinityto theSizedBox.lib/features/onboarding/view/health_issues.dart#L117-L124: addwidth: double.infinityto theSizedBox.
📍 Affects 2 files
lib/features/onboarding/view/goal_screen.dart#L119-L126(this comment)lib/features/onboarding/view/health_issues.dart#L117-L124
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@lib/features/onboarding/view/goal_screen.dart` around lines 119 - 126, Make
the Continue button containers full-width by adding the existing full-width
sizing pattern to the SizedBox wrapping the Continue ElevatedButton in
lib/features/onboarding/view/goal_screen.dart lines 119-126 and
lib/features/onboarding/view/health_issues.dart lines 117-124. No other button
behavior needs to change.
| children: List.generate( | ||
| 6, | ||
| (index) => Container( | ||
| margin: const EdgeInsets.symmetric(horizontal: 4), | ||
| width: index == 0 ? 8 : 8, | ||
| height: 8, | ||
| decoration: BoxDecoration( | ||
| color: index == 0 | ||
| ? colorScheme.primary | ||
| : colorScheme.onSurface.withValues(alpha: 0.25), | ||
| borderRadius: BorderRadius.circular(999), | ||
| ), | ||
| ), | ||
| ), | ||
| ), |
There was a problem hiding this comment.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
Progress indicator highlights the wrong step.
The indicator highlights index == 0 (first dot), identical to goal_screen.dart. Since health issues is the second step in the onboarding flow, this should highlight index == 1. Users are misled about their current progress.
🔧 Proposed fix
children: List.generate(
6,
(index) => Container(
margin: const EdgeInsets.symmetric(horizontal: 4),
- width: index == 0 ? 8 : 8,
+ width: 8,
height: 8,
decoration: BoxDecoration(
- color: index == 0
+ color: index == 1
? colorScheme.primary
: colorScheme.onSurface.withValues(alpha: 0.25),
borderRadius: BorderRadius.circular(999),
),
),
),📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| children: List.generate( | |
| 6, | |
| (index) => Container( | |
| margin: const EdgeInsets.symmetric(horizontal: 4), | |
| width: index == 0 ? 8 : 8, | |
| height: 8, | |
| decoration: BoxDecoration( | |
| color: index == 0 | |
| ? colorScheme.primary | |
| : colorScheme.onSurface.withValues(alpha: 0.25), | |
| borderRadius: BorderRadius.circular(999), | |
| ), | |
| ), | |
| ), | |
| ), | |
| children: List.generate( | |
| 6, | |
| (index) => Container( | |
| margin: const EdgeInsets.symmetric(horizontal: 4), | |
| width: 8, | |
| height: 8, | |
| decoration: BoxDecoration( | |
| color: index == 1 | |
| ? colorScheme.primary | |
| : colorScheme.onSurface.withValues(alpha: 0.25), | |
| borderRadius: BorderRadius.circular(999), | |
| ), | |
| ), | |
| ), | |
| ), |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@lib/features/onboarding/view/health_issues.dart` around lines 51 - 65, Update
the progress indicator in the health issues screen’s List.generate builder so
the highlighted color condition uses index == 1 instead of index == 0,
reflecting the second onboarding step while leaving the remaining dots
unchanged.
| Future<void> _checkUser() async { | ||
| final user = await ref.read(userRepositoryProvider).getUserData(); | ||
| await SeedService().seedExercises(); | ||
| // await SeedService().debugPrintExercises(); | ||
| if (user != null) { | ||
| print("-------------------"); | ||
| ref.read(onboardingViewModelProvider.notifier).loadFromUserData(user); | ||
| } | ||
|
|
||
| if (!mounted) return; | ||
|
|
||
| final targetRoute = user?.isOnboarded == true | ||
| ? AppRoutes.home | ||
| : AppRoutes.welcome; | ||
|
|
||
| context.go(targetRoute); | ||
| } |
There was a problem hiding this comment.
🩺 Stability & Availability | 🟠 Major | ⚡ Quick win
Unhandled errors in _checkUser can brick the app on the splash screen.
If getUserData() throws (e.g., database corruption or schema mismatch), the exception propagates unhandled from initState and the user is left staring at a CircularProgressIndicator with no recovery path. Wrap the async operations in a try-catch and navigate to an error or fallback state.
🛡️ Proposed fix
Future<void> _checkUser() async {
+ try {
final user = await ref.read(userRepositoryProvider).getUserData();
await SeedService().seedExercises();
- // await SeedService().debugPrintExercises();
if (user != null) {
- print("-------------------");
ref.read(onboardingViewModelProvider.notifier).loadFromUserData(user);
}
if (!mounted) return;
final targetRoute = user?.isOnboarded == true
? AppRoutes.home
: AppRoutes.welcome;
context.go(targetRoute);
+ } catch (e, stackTrace) {
+ debugPrint('Splash initialization failed: $e\n$stackTrace');
+ if (mounted) {
+ context.go(AppRoutes.welcome);
+ }
+ }
}📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| Future<void> _checkUser() async { | |
| final user = await ref.read(userRepositoryProvider).getUserData(); | |
| await SeedService().seedExercises(); | |
| // await SeedService().debugPrintExercises(); | |
| if (user != null) { | |
| print("-------------------"); | |
| ref.read(onboardingViewModelProvider.notifier).loadFromUserData(user); | |
| } | |
| if (!mounted) return; | |
| final targetRoute = user?.isOnboarded == true | |
| ? AppRoutes.home | |
| : AppRoutes.welcome; | |
| context.go(targetRoute); | |
| } | |
| Future<void> _checkUser() async { | |
| try { | |
| final user = await ref.read(userRepositoryProvider).getUserData(); | |
| await SeedService().seedExercises(); | |
| if (user != null) { | |
| ref.read(onboardingViewModelProvider.notifier).loadFromUserData(user); | |
| } | |
| if (!mounted) return; | |
| final targetRoute = user?.isOnboarded == true | |
| ? AppRoutes.home | |
| : AppRoutes.welcome; | |
| context.go(targetRoute); | |
| } catch (e, stackTrace) { | |
| debugPrint('Splash initialization failed: $e\n$stackTrace'); | |
| if (mounted) { | |
| context.go(AppRoutes.welcome); | |
| } | |
| } | |
| } |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@lib/features/onboarding/view/splash_screen.dart` around lines 23 - 39, Update
_checkUser to catch errors from getUserData and seedExercises, then navigate to
the existing error or fallback route instead of allowing the splash screen to
remain indefinitely. Preserve the current onboarding/home routing for successful
loads and continue checking mounted before using context or provider state.
| // await SeedService().debugPrintExercises(); | ||
| if (user != null) { | ||
| print("-------------------"); |
There was a problem hiding this comment.
📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value
Remove debug artifacts.
print("-------------------") is not stripped in release builds and the commented-out // await SeedService().debugPrintExercises(); is dead code. Both should be removed.
🧹 Proposed cleanup
final user = await ref.read(userRepositoryProvider).getUserData();
await SeedService().seedExercises();
- // await SeedService().debugPrintExercises();
if (user != null) {
- print("-------------------");
ref.read(onboardingViewModelProvider.notifier).loadFromUserData(user);
}📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| // await SeedService().debugPrintExercises(); | |
| if (user != null) { | |
| print("-------------------"); | |
| final user = await ref.read(userRepositoryProvider).getUserData(); | |
| await SeedService().seedExercises(); | |
| if (user != null) { | |
| ref.read(onboardingViewModelProvider.notifier).loadFromUserData(user); | |
| } |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@lib/features/onboarding/view/splash_screen.dart` around lines 26 - 28, Remove
the debug artifacts in the splash screen flow: delete the commented-out
SeedService debug call and the print statement inside the user != null block.
Preserve the surrounding onboarding behavior unchanged.
| TextField( | ||
| keyboardType: TextInputType.number, | ||
| inputFormatters: [ | ||
| FilteringTextInputFormatter.allow(RegExp(r'[0-9.]')), | ||
| ], | ||
| onChanged: (value) { | ||
| final weight = double.tryParse(value); | ||
|
|
||
| if (weight != null && weight > 0 && weight <= 500) { | ||
| onboardingNotifier.setWeight(weight); | ||
| } | ||
| }, |
There was a problem hiding this comment.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
Weight field allows multiple decimal points with no user feedback.
FilteringTextInputFormatter.allow(RegExp(r'[0-9.]')) permits input like "1.2.3". While double.tryParse rejects it, the value is silently ignored — the user gets no indication their input was invalid. The same issue exists on lines 103-105 for the height field. Consider a formatter that validates the entire string.
🛡️ Proposed fix for both weight and height fields
inputFormatters: [
- FilteringTextInputFormatter.allow(RegExp(r'[0-9.]')),
+ TextInputFormatter.withFunction((oldValue, newValue) =>
+ RegExp(r'^\d*\.?\d*$').hasMatch(newValue.text)
+ ? newValue
+ : oldValue),
],Apply the same change to the height TextField at lines 103-105.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@lib/features/onboarding/view/user_details.dart` around lines 78 - 89, Replace
the character-allowing FilteringTextInputFormatter in both the weight and height
TextFields with whole-string validation that permits digits and at most one
decimal point, so invalid values such as “1.2.3” are rejected during input
rather than silently ignored. Preserve the existing onChanged parsing and range
validation behavior.
There was a problem hiding this comment.
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
lib/core/widgets/loading_screen.dart (1)
62-73: 🚀 Performance & Scalability | 🟡 Minor | ⚡ Quick winIndependent
findTopMatchescalls still run sequentially.The goal and health match queries are independent but awaited one after another, adding avoidable latency to a user-facing loading screen.
♻️ Proposed fix: use Future.wait
- final goalMatches = await tagSetupRepo.findTopMatches( - type: TagType.goal, - userEmbedding: customGoalBytes, - limit: 3, - threshold: 0.60, - ); - final healthMatches = await tagSetupRepo.findTopMatches( - type: TagType.injury, - userEmbedding: customHealthBytes, - limit: 3, - threshold: 0.60, - ); + final results = await Future.wait([ + tagSetupRepo.findTopMatches( + type: TagType.goal, + userEmbedding: customGoalBytes, + limit: 3, + threshold: 0.60, + ), + tagSetupRepo.findTopMatches( + type: TagType.injury, + userEmbedding: customHealthBytes, + limit: 3, + threshold: 0.60, + ), + ]); + final goalMatches = results[0]; + final healthMatches = results[1];🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@lib/core/widgets/loading_screen.dart` around lines 62 - 73, Update the loading flow around the independent goal and health findTopMatches calls to execute them concurrently with Future.wait, then assign each result to goalMatches and healthMatches while preserving their existing TagType, embeddings, limits, and thresholds.
♻️ Duplicate comments (8)
lib/features/onboarding/repository/user_repository.dart (1)
14-15: 🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win
saveUserdelete+insert is non-atomic and still uses hardcoded table name.The delete-then-insert approach creates a window where no user data exists. If the insert fails (disk full, constraint violation), the user's profile is permanently lost. The table name is also still hardcoded as
'user_data'instead ofUserTable.tableName.🔧 Proposed fix: use ConflictAlgorithm.replace with fixed id
Future<void> saveUser(UserData user) async { final db = await DatabaseService.instance.database; - await db.delete('user_data'); - await db.insert('user_data', user.toMap()); + await db.insert( + UserTable.tableName, + {...user.toMap(), UserTable.id: 1}, + conflictAlgorithm: ConflictAlgorithm.replace, + ); }This is atomic, replaces the single user row, and uses the table constant.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@lib/features/onboarding/repository/user_repository.dart` around lines 14 - 15, Update saveUser to replace the existing user row atomically using ConflictAlgorithm.replace with the fixed user id, rather than deleting and reinserting; use UserTable.tableName instead of the hardcoded 'user_data' table name.lib/core/widgets/loading_screen.dart (3)
97-100: 🩺 Stability & Availability | 🟠 Major | ⚡ Quick winAny pipeline failure still routes user to
AppRoutes.profileunconditionally.The catch-all logs and navigates to the same success destination regardless of failure type (model init, embedding generation, save, tag resolution). Users get no feedback that onboarding data may be incomplete, and there's no retry path.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@lib/core/widgets/loading_screen.dart` around lines 97 - 100, Update the catch-all error handling around the loading pipeline so failures do not unconditionally navigate to AppRoutes.profile. Preserve the error logging, but provide the user with clear failure feedback and a retry path, and only route to the profile after the onboarding pipeline completes successfully.
36-37: 🩺 Stability & Availability | 🟠 Major | ⚡ Quick win
initModel()still has no timeout — user can hang indefinitely.A stalled model load leaves the user stuck on the loading screen with no recovery path. Add a finite timeout and handle failure gracefully.
🛡️ Proposed fix
- await aiModelRepo.initModel(); + await aiModelRepo.initModel().timeout( + const Duration(seconds: 30), + onTimeout: () => throw TimeoutException('Model init timed out'), + );🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@lib/core/widgets/loading_screen.dart` around lines 36 - 37, Update the loading flow around aiModelRepo.initModel() to enforce a finite timeout, catch timeout or initialization failures, and provide a graceful recovery path instead of leaving the user indefinitely on the loading screen. Preserve the normal successful initialization flow and use the surrounding loading screen’s existing error or navigation handling where available.
46-48: 🔒 Security & Privacy | 🟠 Major | ⚡ Quick winSensitive user data is logged on production paths without debug-mode guards. The shared root cause is that PII (username, health-issue tags, custom goal/health text, embeddings) is emitted via
debugPrintunconditionally, leaking special-category health data into device logs and crash reporters.
lib/core/widgets/loading_screen.dart#L46-L48: remove interpolatedcustomGoalfromkDebugMode.lib/core/widgets/loading_screen.dart#L55-L56: remove interpolatedcustomHealthIssuefromkDebugMode.lib/core/widgets/loading_screen.dart#L84: remove thedebugPrintUserData()call or gate behindkDebugMode.lib/features/onboarding/repository/user_repository.dart#L45-L62: guarddebugPrintUserData()withkDebugModeso it produces no output in release builds.🛡️ Proposed fixes
loading_screen.dart — remove interpolated PII and gate debug calls:
- print( - "🧠 Pipeline Phase 3: Generating embedding for Custom Goal: '${onboardingData.customGoal}'", - ); + debugPrint("🧠 Pipeline Phase 3: Generating embedding for Custom Goal"); ... - print( - "🧠 Pipeline Phase 4: Generating embedding for Custom Injury: '${onboardingData.customHealthIssue}'", - ); + debugPrint("🧠 Pipeline Phase 4: Generating embedding for Custom Injury"); ... - await ref.read(userRepositoryProvider).debugPrintUserData();user_repository.dart — guard with
kDebugMode:+import 'package:flutter/foundation.dart'; ... Future<void> debugPrintUserData() async { + if (!kDebugMode) return; final user = await getUserData();🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@lib/core/widgets/loading_screen.dart` around lines 46 - 48, The loading and onboarding debug paths expose sensitive user data in release builds. In lib/core/widgets/loading_screen.dart lines 46-48 and 55-56, remove the customGoal and customHealthIssue interpolations or guard those logs with kDebugMode; at line 84, remove or kDebugMode-guard debugPrintUserData(). In lib/features/onboarding/repository/user_repository.dart lines 45-62, update debugPrintUserData() to produce output only when kDebugMode is enabled.lib/features/onboarding/view/goal_screen.dart (2)
120-127: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick winContinue buttons are not full-width in goal and health issues screens. Both wrap the
ElevatedButtonin aSizedBoxwithoutwidth: double.infinity, unlikewelcome_screen.dartanddifficulty_level.dartwhich correctly set it.
lib/features/onboarding/view/goal_screen.dart#L120-L127: addwidth: double.infinityto theSizedBox.lib/features/onboarding/view/health_issues.dart#L120-L127: addwidth: double.infinityto theSizedBox.💚 Proposed fix
SizedBox( + width: double.infinity, child: ElevatedButton(🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@lib/features/onboarding/view/goal_screen.dart` around lines 120 - 127, Make the Continue button containers full-width by adding width: double.infinity to the SizedBox wrapping the ElevatedButton in lib/features/onboarding/view/goal_screen.dart lines 120-127 and lib/features/onboarding/view/health_issues.dart lines 120-127.
53-66: 📐 Maintainability & Code Quality | 🟠 Major | ⚡ Quick winProgress indicator dots still duplicated across onboarding screens.
The
List.generate(6, ...)pattern is copy-pasted ingoal_screen.dart,health_issues.dart,difficulty_level.dart,intensity_level.dart, anduser_details.dart, each hardcoding its own active index. Extract a sharedOnboardingProgressIndicatorwidget parameterized bycurrentStep.🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@lib/features/onboarding/view/goal_screen.dart` around lines 53 - 66, Extract the duplicated six-dot progress indicator from the onboarding screens into a shared OnboardingProgressIndicator widget with a currentStep parameter controlling the active dot. Replace the inline List.generate implementations in goal_screen.dart, health_issues.dart, difficulty_level.dart, intensity_level.dart, and user_details.dart, preserving the existing styling and each screen’s active index.lib/features/onboarding/view/difficulty_level.dart (1)
107-115: 🎯 Functional Correctness | 🟠 Major | ⚡ Quick winContinue buttons are always enabled — users can skip without selecting. Both screens set
ElevatedButton.onPressedunconditionally, allowing users to advance through onboarding without choosing a difficulty or intensity, producing incomplete data downstream.
lib/features/onboarding/view/difficulty_level.dart#L107-L115: disable Continue whenselectedDifficultyis empty.lib/features/onboarding/view/intensity_level.dart#L107-L115: disable Continue whenselectedIntensityis empty.💚 Proposed fix for difficulty_level.dart (apply analogously to intensity_level.dart)
child: ElevatedButton( - onPressed: () { + onPressed: selectedDifficulty.isNotEmpty ? () { context.push(AppRoutes.intensity); - }, + } : null, child: const Text('Continue'), ),🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@lib/features/onboarding/view/difficulty_level.dart` around lines 107 - 115, Disable the Continue button until a selection is made: in lib/features/onboarding/view/difficulty_level.dart lines 107-115, make ElevatedButton.onPressed null when selectedDifficulty is empty while preserving the existing navigation otherwise; apply the same change in lib/features/onboarding/view/intensity_level.dart lines 107-115 using selectedIntensity and its existing navigation route.lib/features/onboarding/view/health_issues.dart (1)
54-67: 🎯 Functional Correctness | 🟠 Major | ⚡ Quick winProgress indicator highlights the wrong onboarding step in two screens. The active-dot condition was copied from
difficulty_level.dartwithout updating the index for each screen's actual position in the flow.
lib/features/onboarding/view/health_issues.dart#L54-L67: changeindex == 0toindex == 1(health issues is step 2).lib/features/onboarding/view/intensity_level.dart#L41-L53: changeindex == 2toindex == 3(intensity is step 4).🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@lib/features/onboarding/view/health_issues.dart` around lines 54 - 67, Update the progress indicator active-dot conditions: in lib/features/onboarding/view/health_issues.dart lines 54-67, use index == 1 for the health issues step; in lib/features/onboarding/view/intensity_level.dart lines 41-53, use index == 3 for the intensity step. Apply the corresponding condition consistently to each dot’s active color and styling.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Outside diff comments:
In `@lib/core/widgets/loading_screen.dart`:
- Around line 62-73: Update the loading flow around the independent goal and
health findTopMatches calls to execute them concurrently with Future.wait, then
assign each result to goalMatches and healthMatches while preserving their
existing TagType, embeddings, limits, and thresholds.
---
Duplicate comments:
In `@lib/core/widgets/loading_screen.dart`:
- Around line 97-100: Update the catch-all error handling around the loading
pipeline so failures do not unconditionally navigate to AppRoutes.profile.
Preserve the error logging, but provide the user with clear failure feedback and
a retry path, and only route to the profile after the onboarding pipeline
completes successfully.
- Around line 36-37: Update the loading flow around aiModelRepo.initModel() to
enforce a finite timeout, catch timeout or initialization failures, and provide
a graceful recovery path instead of leaving the user indefinitely on the loading
screen. Preserve the normal successful initialization flow and use the
surrounding loading screen’s existing error or navigation handling where
available.
- Around line 46-48: The loading and onboarding debug paths expose sensitive
user data in release builds. In lib/core/widgets/loading_screen.dart lines 46-48
and 55-56, remove the customGoal and customHealthIssue interpolations or guard
those logs with kDebugMode; at line 84, remove or kDebugMode-guard
debugPrintUserData(). In lib/features/onboarding/repository/user_repository.dart
lines 45-62, update debugPrintUserData() to produce output only when kDebugMode
is enabled.
In `@lib/features/onboarding/repository/user_repository.dart`:
- Around line 14-15: Update saveUser to replace the existing user row atomically
using ConflictAlgorithm.replace with the fixed user id, rather than deleting and
reinserting; use UserTable.tableName instead of the hardcoded 'user_data' table
name.
In `@lib/features/onboarding/view/difficulty_level.dart`:
- Around line 107-115: Disable the Continue button until a selection is made: in
lib/features/onboarding/view/difficulty_level.dart lines 107-115, make
ElevatedButton.onPressed null when selectedDifficulty is empty while preserving
the existing navigation otherwise; apply the same change in
lib/features/onboarding/view/intensity_level.dart lines 107-115 using
selectedIntensity and its existing navigation route.
In `@lib/features/onboarding/view/goal_screen.dart`:
- Around line 120-127: Make the Continue button containers full-width by adding
width: double.infinity to the SizedBox wrapping the ElevatedButton in
lib/features/onboarding/view/goal_screen.dart lines 120-127 and
lib/features/onboarding/view/health_issues.dart lines 120-127.
- Around line 53-66: Extract the duplicated six-dot progress indicator from the
onboarding screens into a shared OnboardingProgressIndicator widget with a
currentStep parameter controlling the active dot. Replace the inline
List.generate implementations in goal_screen.dart, health_issues.dart,
difficulty_level.dart, intensity_level.dart, and user_details.dart, preserving
the existing styling and each screen’s active index.
In `@lib/features/onboarding/view/health_issues.dart`:
- Around line 54-67: Update the progress indicator active-dot conditions: in
lib/features/onboarding/view/health_issues.dart lines 54-67, use index == 1 for
the health issues step; in lib/features/onboarding/view/intensity_level.dart
lines 41-53, use index == 3 for the intensity step. Apply the corresponding
condition consistently to each dot’s active color and styling.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: ASSERTIVE
Plan: Pro
Run ID: 7d0b4d6c-7639-4e06-a274-97db732a724f
📒 Files selected for processing (8)
lib/core/widgets/loading_screen.dartlib/features/onboarding/repository/user_repository.dartlib/features/onboarding/view/difficulty_level.dartlib/features/onboarding/view/goal_screen.dartlib/features/onboarding/view/health_issues.dartlib/features/onboarding/view/intensity_level.dartlib/features/onboarding/view/welcome_screen.dartlib/features/onboarding/view_model/onboarding_view_model.dart
|
Please resolve the merge conflicts before review. Your PR will only be reviewed by a maintainer after all conflicts have been resolved. 📺 Watch this video to understand why conflicts occur and how to resolve them: |
Addressed Issues:
Fixes #(issue number)
Screenshots/Recordings:
WhatsApp.Video.2026-07-11.at.3.33.27.PM.mp4
Additional Notes:
This PR lays the foundation for the workout session system by introducing persistent session management and integrating it with the Home flow.
What's included
session_exercisesandsession_scheduletables to persist generated workout sessions and their exercises.SessionRepositoryresponsible for:Planned for the next PR
Checklist
We encourage contributors to use AI tools responsibly when creating Pull Requests. While AI can be a valuable aid, it is essential to ensure that your contributions meet the task requirements, build successfully, include relevant tests, and pass all linters. Submissions that do not meet these standards may be closed without warning to maintain the quality and integrity of the project. Please take the time to understand the changes you are proposing and their impact.
Summary by CodeRabbit