lottie-ios 3.2.3 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (584) hide show
  1. package/.github/actions/setup/action.yml +32 -0
  2. package/.github/issue_template.md +6 -23
  3. package/.github/workflows/main.yml +95 -0
  4. package/.spi.yml +6 -0
  5. package/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata +7 -0
  6. package/.swiftpm/xcode/package.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  7. package/.swiftpm/xcode/xcuserdata/{brandonwithrow.xcuserdatad → cal.xcuserdatad}/xcschemes/xcschememanagement.plist +25 -15
  8. package/.swiftpm/xcode/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  9. package/Gemfile +4 -0
  10. package/Gemfile.lock +102 -0
  11. package/Lottie.xcodeproj/project.pbxproj +2005 -1974
  12. package/Lottie.xcodeproj/project.xcworkspace/contents.xcworkspacedata +1 -1
  13. package/Lottie.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +23 -0
  14. package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  15. package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_iOS.xcscheme → Lottie (iOS).xcscheme } +15 -18
  16. package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_macOS.xcscheme → Lottie (macOS).xcscheme } +7 -20
  17. package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_tvOS.xcscheme → Lottie (tvOS).xcscheme } +5 -18
  18. package/Lottie.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +37 -0
  19. package/Lottie.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +24 -0
  20. package/Lottie.xcworkspace/contents.xcworkspacedata +10 -0
  21. package/Lottie.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  22. package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +34 -0
  23. package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  24. package/{Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad → Lottie.xcworkspace/xcuserdata/cal.xcuserdatad}/xcdebugger/Breakpoints_v2.xcbkptlist +2 -2
  25. package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/xcdebugger/Expressions.xcexplist +153 -0
  26. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  27. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +39 -0
  28. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Expressions.xcexplist +25 -0
  29. package/Mintfile +3 -0
  30. package/Package.swift +5 -15
  31. package/README.md +40 -59
  32. package/Rakefile +125 -0
  33. package/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift +76 -0
  34. package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +322 -0
  35. package/Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift +53 -0
  36. package/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift +41 -0
  37. package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +28 -0
  38. package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +167 -0
  39. package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +229 -0
  40. package/Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift +52 -0
  41. package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +31 -0
  42. package/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift +246 -0
  43. package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +95 -0
  44. package/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift +70 -0
  45. package/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +205 -0
  46. package/Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift +37 -0
  47. package/Sources/Private/CoreAnimation/CompatibilityTracker.swift +130 -0
  48. package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +492 -0
  49. package/Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift +35 -0
  50. package/Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift +37 -0
  51. package/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift +61 -0
  52. package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +77 -0
  53. package/Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift +33 -0
  54. package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +87 -0
  55. package/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift +131 -0
  56. package/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift +87 -0
  57. package/Sources/Private/CoreAnimation/Layers/ImageLayer.swift +79 -0
  58. package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +60 -0
  59. package/Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift +138 -0
  60. package/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift +140 -0
  61. package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +259 -0
  62. package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +305 -0
  63. package/Sources/Private/CoreAnimation/Layers/SolidLayer.swift +47 -0
  64. package/Sources/Private/CoreAnimation/Layers/TextLayer.swift +91 -0
  65. package/Sources/Private/CoreAnimation/Layers/TransformLayer.swift +11 -0
  66. package/Sources/Private/CoreAnimation/ValueProviderStore.swift +139 -0
  67. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/CompositionLayer.swift +93 -85
  68. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/ImageCompositionLayer.swift +24 -21
  69. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/MaskContainerLayer.swift +77 -54
  70. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/NullCompositionLayer.swift +5 -5
  71. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/PreCompositionLayer.swift +57 -41
  72. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/ShapeCompositionLayer.swift +22 -20
  73. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/SolidCompositionLayer.swift +26 -17
  74. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/TextCompositionLayer.swift +42 -36
  75. package/{lottie-swift/src/Private/LayerContainers/AnimationContainer.swift → Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift} +201 -140
  76. package/Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift +47 -0
  77. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/CompositionLayersInitializer.swift +33 -24
  78. package/{lottie-swift/src/Private/LayerContainers/Utility/TextLayer.swift → Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift} +119 -105
  79. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/InvertedMatteLayer.swift +25 -24
  80. package/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift +41 -0
  81. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/LayerImageProvider.swift +20 -16
  82. package/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift +40 -0
  83. package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/LayerTransformNode.swift +83 -67
  84. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Extensions/ItemsExtension.swift +6 -4
  85. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/NodeProperty.swift +29 -21
  86. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.swift +16 -10
  87. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.swift +6 -6
  88. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift +5 -5
  89. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift +10 -8
  90. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueContainer.swift +25 -21
  91. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift +23 -17
  92. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/KeyframeInterpolator.swift +128 -108
  93. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.swift +22 -17
  94. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +113 -79
  95. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift +22 -16
  96. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift +19 -15
  97. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift +22 -20
  98. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift +22 -23
  99. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +242 -0
  100. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift +29 -22
  101. package/{lottie-swift/src/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift → Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift} +92 -65
  102. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift +22 -18
  103. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +139 -0
  104. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +170 -0
  105. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/RectNode.swift +94 -57
  106. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift +42 -29
  107. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/StarNode.swift +105 -66
  108. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +155 -0
  109. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift +51 -37
  110. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +54 -42
  111. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +65 -57
  112. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +84 -58
  113. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +138 -119
  114. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/AnimatorNode.swift +80 -79
  115. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/PathNode.swift +5 -3
  116. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/RenderNode.swift +22 -17
  117. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +26 -23
  118. package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift +35 -25
  119. package/Sources/Private/Model/Animation.swift +160 -0
  120. package/Sources/Private/Model/Assets/Asset.swift +43 -0
  121. package/{lottie-swift/src → Sources}/Private/Model/Assets/AssetLibrary.swift +40 -13
  122. package/Sources/Private/Model/Assets/ImageAsset.swift +112 -0
  123. package/{lottie-swift/src → Sources}/Private/Model/Assets/PrecompAsset.swift +20 -10
  124. package/Sources/Private/Model/DictionaryInitializable.swift +67 -0
  125. package/Sources/Private/Model/Extensions/Bundle.swift +34 -0
  126. package/{lottie-swift/src → Sources}/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift +8 -4
  127. package/Sources/Private/Model/Keyframes/KeyframeData.swift +113 -0
  128. package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +197 -0
  129. package/{lottie-swift/src → Sources}/Private/Model/Layers/ImageLayerModel.swift +21 -11
  130. package/Sources/Private/Model/Layers/LayerModel.swift +228 -0
  131. package/{lottie-swift/src → Sources}/Private/Model/Layers/PreCompLayerModel.swift +39 -22
  132. package/{lottie-swift/src → Sources}/Private/Model/Layers/ShapeLayerModel.swift +23 -12
  133. package/{lottie-swift/src → Sources}/Private/Model/Layers/SolidLayerModel.swift +31 -19
  134. package/{lottie-swift/src → Sources}/Private/Model/Layers/TextLayerModel.swift +33 -19
  135. package/Sources/Private/Model/Objects/DashPattern.swift +44 -0
  136. package/Sources/Private/Model/Objects/Marker.swift +33 -0
  137. package/Sources/Private/Model/Objects/Mask.swift +80 -0
  138. package/Sources/Private/Model/Objects/Transform.swift +179 -0
  139. package/Sources/Private/Model/ShapeItems/Ellipse.swift +75 -0
  140. package/Sources/Private/Model/ShapeItems/Fill.swift +74 -0
  141. package/Sources/Private/Model/ShapeItems/GradientFill.swift +124 -0
  142. package/Sources/Private/Model/ShapeItems/GradientStroke.swift +186 -0
  143. package/{lottie-swift/src → Sources}/Private/Model/ShapeItems/Group.swift +21 -10
  144. package/{lottie-swift/src → Sources}/Private/Model/ShapeItems/Merge.swift +29 -11
  145. package/Sources/Private/Model/ShapeItems/Rectangle.swift +73 -0
  146. package/Sources/Private/Model/ShapeItems/Repeater.swift +136 -0
  147. package/Sources/Private/Model/ShapeItems/Shape.swift +56 -0
  148. package/Sources/Private/Model/ShapeItems/ShapeItem.swift +163 -0
  149. package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +136 -0
  150. package/Sources/Private/Model/ShapeItems/Star.swift +132 -0
  151. package/Sources/Private/Model/ShapeItems/Stroke.swift +102 -0
  152. package/Sources/Private/Model/ShapeItems/Trim.swift +78 -0
  153. package/Sources/Private/Model/Text/Font.swift +61 -0
  154. package/{lottie-swift/src → Sources}/Private/Model/Text/Glyph.swift +63 -39
  155. package/Sources/Private/Model/Text/TextAnimator.swift +165 -0
  156. package/Sources/Private/Model/Text/TextDocument.swift +123 -0
  157. package/Sources/Private/RootAnimationLayer.swift +51 -0
  158. package/{lottie-swift/src → Sources}/Private/Utility/Debugging/AnimatorNodeDebugging.swift +7 -7
  159. package/{lottie-swift/src → Sources}/Private/Utility/Debugging/LayerDebugging.swift +72 -47
  160. package/Sources/Private/Utility/Debugging/TestHelpers.swift +10 -0
  161. package/{lottie-swift/src → Sources}/Private/Utility/Extensions/AnimationKeypathExtension.swift +69 -59
  162. package/Sources/Private/Utility/Extensions/BlendMode+Filter.swift +31 -0
  163. package/Sources/Private/Utility/Extensions/CGColor+RGB.swift +22 -0
  164. package/{lottie-swift/src → Sources}/Private/Utility/Extensions/CGFloatExtensions.swift +70 -67
  165. package/Sources/Private/Utility/Extensions/DataExtension.swift +27 -0
  166. package/Sources/Private/Utility/Extensions/MathKit.swift +451 -0
  167. package/Sources/Private/Utility/Extensions/StringExtensions.swift +39 -0
  168. package/{lottie-swift/src → Sources}/Private/Utility/Helpers/AnimationContext.swift +42 -16
  169. package/Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift +135 -0
  170. package/{lottie-swift/src → Sources}/Private/Utility/Interpolatable/KeyframeExtensions.swift +13 -10
  171. package/Sources/Private/Utility/Interpolatable/KeyframeGroup+Extensions.swift +59 -0
  172. package/{lottie-swift/src → Sources}/Private/Utility/Primitives/BezierPath.swift +229 -142
  173. package/Sources/Private/Utility/Primitives/CGPointExtension.swift +35 -0
  174. package/{lottie-swift/src → Sources}/Private/Utility/Primitives/ColorExtension.swift +46 -14
  175. package/{lottie-swift/src → Sources}/Private/Utility/Primitives/CompoundBezierPath.swift +58 -49
  176. package/Sources/Private/Utility/Primitives/CurveVertex.swift +186 -0
  177. package/Sources/Private/Utility/Primitives/PathElement.swift +75 -0
  178. package/Sources/Private/Utility/Primitives/UnitBezier.swift +115 -0
  179. package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +341 -0
  180. package/Sources/Public/Animation/AnimationPublic.swift +269 -0
  181. package/Sources/Public/Animation/AnimationView.swift +1315 -0
  182. package/Sources/Public/Animation/AnimationViewInitializers.swift +107 -0
  183. package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +22 -0
  184. package/{lottie-swift/src → Sources}/Public/AnimationCache/LRUAnimationCache.swift +22 -18
  185. package/Sources/Public/DynamicProperties/AnimationKeypath.swift +49 -0
  186. package/Sources/Public/DynamicProperties/AnyValueProvider.swift +132 -0
  187. package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift +54 -36
  188. package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift +40 -36
  189. package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +125 -0
  190. package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/PointValueProvider.swift +40 -35
  191. package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift +40 -35
  192. package/{lottie-swift/src → Sources}/Public/FontProvider/AnimationFontProvider.swift +15 -8
  193. package/Sources/Public/ImageProvider/AnimationImageProvider.swift +21 -0
  194. package/Sources/Public/Keyframes/Interpolatable.swift +253 -0
  195. package/Sources/Public/Keyframes/Keyframe.swift +92 -0
  196. package/Sources/Public/Logging/LottieLogger.swift +124 -0
  197. package/Sources/Public/LottieConfiguration.swift +143 -0
  198. package/{lottie-swift/src → Sources}/Public/Primitives/AnimationTime.swift +1 -1
  199. package/{lottie-swift/src → Sources}/Public/Primitives/Color.swift +10 -6
  200. package/{lottie-swift/src → Sources}/Public/Primitives/Vectors.swift +13 -12
  201. package/Sources/Public/TextProvider/AnimationTextProvider.swift +53 -0
  202. package/{lottie-swift/src → Sources}/Public/iOS/AnimatedButton.swift +36 -26
  203. package/{lottie-swift/src → Sources}/Public/iOS/AnimatedControl.swift +102 -91
  204. package/{lottie-swift/src → Sources}/Public/iOS/AnimatedSwitch.swift +123 -92
  205. package/{lottie-swift/src → Sources}/Public/iOS/AnimationSubview.swift +3 -3
  206. package/Sources/Public/iOS/AnimationViewBase.swift +78 -0
  207. package/{lottie-swift/src → Sources}/Public/iOS/BundleImageProvider.swift +37 -34
  208. package/{lottie-swift/src → Sources}/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift +4 -0
  209. package/{lottie-swift/src → Sources}/Public/iOS/Compatibility/CompatibleAnimationView.swift +38 -29
  210. package/{lottie-swift/src → Sources}/Public/iOS/FilepathImageProvider.swift +24 -20
  211. package/{lottie-swift/src → Sources}/Public/iOS/UIColorExtension.swift +4 -4
  212. package/{lottie-swift/src/Public/MacOS/AnimationSubview.swift → Sources/Public/macOS/AnimationSubview.macOS.swift} +4 -5
  213. package/{lottie-swift/src/Public/MacOS/LottieView.swift → Sources/Public/macOS/AnimationViewBase.macOS.swift} +58 -50
  214. package/{lottie-swift/src/Public/MacOS/BundleImageProvider.swift → Sources/Public/macOS/BundleImageProvider.macOS.swift} +32 -32
  215. package/Sources/Public/macOS/FilepathImageProvider.macOS.swift +69 -0
  216. package/Tests/AnimationKeypathTests.swift +94 -0
  217. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-7Vi1RszY1XYnR2CCkEwIpKG8NwwA9zsZEz_WD7Dv6kKh4RC7N7ob8NIRVHGUJKp7eXxlpeI_gzD87Pcs_2u0g== +0 -0
  218. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-SKV2drO-SFlrlh-wrzECDMkUSr-aF1lV9h-5onOy94zSTsD-oI45s0-KpOK45L-kq3hRY7v9vm-xmh00_eheg== +0 -0
  219. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-_CU_vuaiFfObSeDFfmp7GuB20ThMSAL-P_RUMowiQLbdu-y0bU9upIm3q8g6XmXUG5hP6J1az0Ma5Hi_rhhRg== +0 -0
  220. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~03aPYP6VHJjZj5DlphGarj0xdw43qu09Onx5SReZoPvg9zh5uL212E-KWfGct9jf6JG0JFV2tdbBi7X_8bH9aw== +0 -0
  221. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~1Z82GPBBPc1VLvn4O7V5glb6lgyXteNlDREUzV_TPymM4ra4UkBMklzV90lEqoYRCDuRVzaQHaDYbmYp3-8CFw== +0 -0
  222. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~1mFDCboXpUu9pSHAiVGr1O_QgqEEtvJp_LUhickxLZo0Z5pj3fvadn1l2MzEOd4bFsVBZifUvcyPa7dzlMWF-A== +0 -0
  223. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~2_L9PUjv2JDKu1n8bDLb4XLB-yex6ZVjDDMwfuKAr7teDw-SKgLgkW6H-m_gjWChIVdB4vW6yvHP7XJxvXtRNA== +0 -0
  224. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +1 -0
  225. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~4krT4ZMzDOu34msFUq0Xod142kw4pAeSWX4JSxlsjOI0Wanu3343qeespgFi61MTWq1DdH9XXspVKqGlGm_fyw== +0 -0
  226. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~5_aJsdP-e3dRTAUnH-y1U2plaCuUi1vyHriaZuNK0xFe8wGl9Qft6uLCX2Qt6CRBKJQluEe9o0uRWw1eb42FHQ== +0 -0
  227. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~8b0bSqV7eND54zvHvu1v2Htpm7yn-BOEFw5d3mITJrXWNykJ5BTR9WbrD80JEctNcT-rDqO2xfrQk1tFWeY6Sw== +0 -0
  228. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~9u8KAGpgtSm-mQ12Py8RZUbYbDlBhM3w1I2MQO53K2CSn6IePp7g65DBcdXTYMfG1bgoJ-6x30fjnGe-2UYsDQ== +0 -0
  229. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Bw7uMs4wqB9ahfEqGii2FkQ9pvZmG6HGe2hmbAT2wyM5hpn8Xh5dELysMcEz6hEsqmn6HdRdLOLZhC_fNaXzgA== +0 -0
  230. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~BwUq2xXQYuE8ya6HT6lfNsdtEjz5AKGf8GvLY6VBxQyIY1vgj_Gov-3NeM69OS66BQRDK0PG9H4Oyg0R48E4vg== +0 -0
  231. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~EkDVUR6dcnzxV_lYjkrJ5QGMVTCvb_upAoBF6DBu61sQkGvZN3fSRTsJ1XfJIZO-JUzdNoVA3D_CcvokL0gnQg== +0 -0
  232. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~FUkcLSJ8RAuPenM4HFG1R-sN5-cDBGcTxgR2jaVCna7xV0ZTyBHriB1Nn59mariNlJDiCoBtMUQEmauGxWtfBA== +0 -0
  233. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~FqsuZe4RVLOOVUYLTL-GTIohZ8TdSfxx7m2KJtLYFPGOdE4XorTX7Oc7kXbhghPRppXT3jW-slI37M34YNEvLQ== +0 -0
  234. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~G4F_NtyTj3i46fmKm0NorHAeq8tYWWYf6uv5yC1DwzdpWVoYbOPufmFNvdEbxZt4AMdV0gKx3HI46EAXNOQVFg== +0 -0
  235. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~GxetzGUNDgaBBXcTmLK6p9JBDX3I3QPshshbui1IaEWvJbQko-E36tCKwaJYHbleAWz9FqkAM_Tqx3YOmSVkVg== +0 -0
  236. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~H1Wjd5kKWDW4t3SDodxiHV72V8WT0xwPubw5cJTNLkPRLgaILFPh-dpy8EOUNgy1KzrDujFsm9EcTsbuqtMPLA== +0 -0
  237. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~JpI5MH4zCgebUHFpXVn4zjtsGtMNnO7BQZWfNARAB5UWa9gqz6YXHR3uLCJ_AvJ3lh53BUVkavsx9TY2FMmxbA== +0 -0
  238. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~JujNYkJtcux0Ni4QnR64zu4Wz_zYjyKvYaYZm5ypxTLPSzF3_jNE_NO4sdbDamF8wEqWoky1uf4ZE0JT3L607A== +0 -0
  239. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~KJSEA6DKnb2_FRPSqKZGh41eo-C8x448J9kEBrH012bUrZfOSDvrgmIrU0Vz7Ri3gaS9aKKmSaVMvXsHSlTJVA== +0 -0
  240. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~MStOwu3jBlJtcRnxrseVOuhI4kCj--ggFPG7sqrq5w1hjrI3bVyD-bm1Jwyx0noY3wT1rHDEvaGWnV2qsGjGwg== +0 -0
  241. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~McsJ8kFVf3IjhgXIRdw8Xx-EXgbV071bmlj2BBnk52xrWl3sEeiIyxwUsF7mIWvMRWfcFfu4VGHYyqfk2BeHXw== +0 -0
  242. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~NHt9fVe4kDdbxnglKcEwXaRK-WsYEOaD23Kbl8SJPRMYHr_Z6SJd_HmG3BROHHR_M6TgSmucONpDJdTj5tjuFw== +0 -0
  243. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Nfo2iwCPcfAcOBIVyoUAK0-PIfr5qYxIKZt-uaSaTBdrTNxAuJ1ItmeDPZ3VdJJmxD_c22No7x482bdd3_yYtw== +0 -0
  244. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~S2Qlu11xBhEd5aGSzWsnw1TR8u8PiOF93GO0j5bfNoAFCVzxKOwhRFoIXba2EpQnLQqFdIKyhWN3l70A4GPHmg== +0 -0
  245. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~W7a7M37RO9jgck2zeR0471Pm7e8K0Kqj5tXEouDjvqKZXSrWxMaWD28oqkKKYAiU4608R4S9mM11KyphljdMSw== +0 -0
  246. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~XUo1oyPCrlL7CA74wG-OzQ06VOWJYWvHGFHU7keZN1SKaIXjHX5qi_kBzjG_rBCi89-S8GVmCy7S3PHSjG8SbQ== +0 -0
  247. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Xh0VmDvFNMELHu08-vrs54pegVyUwwDRxx_nXkwyD0NjnYozyqcGAKAr_QWHmw6F8XyuWg51M9KGpJJIFzzGuw== +0 -0
  248. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Xve-wMBp_lxVUgD9qH5GwieGP9cAWtm0xULZvdGjBRUMvaevmpCB5gnbMBuIXAO6a1c9v6WUq0jNVX7ut5HvOw== +0 -0
  249. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~ZU1XkZFgnEE22CXEF-pOlcj5f10x-KM1Vw9d4IOLu-NiTZcz7koYPixhdrB1PJr8J-h9NpJmfqEastfxamA1jQ== +0 -0
  250. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~_YkNYEHTsbbtFILJpzH3HenH0t4ShI25dIMdve541CF5bl-jPF3X3F7tq-t5dvP0TEkATsOJdLQdBp1xv4Q-ag== +0 -0
  251. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~boy6mpn2jkwm60jjgQ0TG25UqRdN46LzmgTVCrpy6nBOgkLCGkGHcbceiwjU1itS_vj3-iQX0ZnrWOQrPyfHNA== +0 -0
  252. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~bwzpVZ9hAqGDHhXs2FRA82dfGfLmc7-m0uQhZDDfHHO7hQ17M_Np341BZX4WDLhYYS4cdUgaDodlNpdfpG3nXw== +0 -0
  253. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~cBxe-9PpAGFdAsYkmdN3lJVqEliLcRYlyoAov0aPZfJGwUr_cOm3XpjO7nmf_2eLf8UAx-rycjnJzw07xLrNCA== +1 -0
  254. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~dirWk6W4Pav1oyciuflfJlRu0iuxbYOmrpQapOJ0mV9C1SQ-jvDRv_7h753Cy18-SwULARUdWsyUy3yNNvxF7w== +0 -0
  255. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~ebwZVjSEHroc9jtIm4jd_h_YAqEBcOkAZ4HPNJT8pLCldjRcTq-obQLakxXOhfuoOBlYBoZLuO-Y0lskeZRYKw== +0 -0
  256. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~gfcRcmRIr0h09d0jiZsA7nUeQv2XtapxuYEXZy1Z9um0tTJQvz-O5ef5f7zhLenLvjnDtDtlY_aY4Hvpce6e1Q== +0 -0
  257. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~hgOgiVCyv2R0W-f0qKw5xYPeUwj8_ccCM9vKH_7vAQcCO9t8BwR1APGRBv20AONmp-PYMXmtgsBlQkNBRBpdQA== +0 -0
  258. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~hrhCl-YRAAr8ByNB_LCgEBsVNHMp92gTIUknetpUHMjcXl4Hpn_uY-h6C45oga0ZALnfGCo6iKTmiPLa4Qvnpg== +0 -0
  259. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~n2yoR7JsyL4DSUwmjnpE4Iq9Qi_eeZrmpPU8cdehDFKfESK7nwxXxfrSMQbk0BQ2lgGPadoRcd1-qr1xVz97jA== +0 -0
  260. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~nMCcZm8WvPogyO_nuJ926Q3Q2dqVMN2LdjEL1Kq2wJ_RG-rH-e_6v41l1xZbCsQTa3XykQdEiXNc0HtAvT6IRA== +0 -0
  261. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~oc3C7xkUt-OWDL6rrsxs-seS4Fu1bqBWAAXCHalgShaGg9MUrOiRbHT2DcAnhyQFKx6x5FRbvjmYoQWrQiXJZA== +0 -0
  262. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~p-ihj7SEgkDXpMu9hvKE_wiX9cvtwyXrdIn964BfedXHKGpC6o7mMPxEyC0kRPVi_EZs_MRV5bAPEpl5h5we0g== +0 -0
  263. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~qlhO_D9oE8uSKH-mZqyRF9pp4Zv1Tv0dIYcqrH4hb1VWlIxcdxmg2j0M8496cQeFXC5bn_JMXdBlD-d6cnFF8w== +0 -0
  264. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~tjpiyIxJR_boTdUNrtFDuKIZoY84fI4lA1oMJbq9e2ZmYKIK5FeRN2O8cV_yMOYJGr4lbv03kTmT70mCjUc2_Q== +0 -0
  265. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~wULeoj18eEKJWAKx1uFQVwS48cUGFcYPRJQj1Ro5XNJsWCwppGSCdIPhwifD6Z2f_j3zfI2SmC2Gg81sBXXW7g== +0 -0
  266. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~zrEihMys4NVV5rx6FmuzEGO2TjloI3OiC7yzIhvqYoRo43ibb2F-Km6Jf4NX-ac62pOLBYZRcjQTvYMpn75_oA== +0 -0
  267. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-7Vi1RszY1XYnR2CCkEwIpKG8NwwA9zsZEz_WD7Dv6kKh4RC7N7ob8NIRVHGUJKp7eXxlpeI_gzD87Pcs_2u0g== +0 -0
  268. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-SKV2drO-SFlrlh-wrzECDMkUSr-aF1lV9h-5onOy94zSTsD-oI45s0-KpOK45L-kq3hRY7v9vm-xmh00_eheg== +0 -0
  269. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-_CU_vuaiFfObSeDFfmp7GuB20ThMSAL-P_RUMowiQLbdu-y0bU9upIm3q8g6XmXUG5hP6J1az0Ma5Hi_rhhRg== +0 -0
  270. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~03aPYP6VHJjZj5DlphGarj0xdw43qu09Onx5SReZoPvg9zh5uL212E-KWfGct9jf6JG0JFV2tdbBi7X_8bH9aw== +0 -0
  271. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~1Z82GPBBPc1VLvn4O7V5glb6lgyXteNlDREUzV_TPymM4ra4UkBMklzV90lEqoYRCDuRVzaQHaDYbmYp3-8CFw== +0 -0
  272. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~1mFDCboXpUu9pSHAiVGr1O_QgqEEtvJp_LUhickxLZo0Z5pj3fvadn1l2MzEOd4bFsVBZifUvcyPa7dzlMWF-A== +0 -0
  273. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~2_L9PUjv2JDKu1n8bDLb4XLB-yex6ZVjDDMwfuKAr7teDw-SKgLgkW6H-m_gjWChIVdB4vW6yvHP7XJxvXtRNA== +0 -0
  274. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +0 -0
  275. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~4krT4ZMzDOu34msFUq0Xod142kw4pAeSWX4JSxlsjOI0Wanu3343qeespgFi61MTWq1DdH9XXspVKqGlGm_fyw== +0 -0
  276. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~5_aJsdP-e3dRTAUnH-y1U2plaCuUi1vyHriaZuNK0xFe8wGl9Qft6uLCX2Qt6CRBKJQluEe9o0uRWw1eb42FHQ== +0 -0
  277. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~8b0bSqV7eND54zvHvu1v2Htpm7yn-BOEFw5d3mITJrXWNykJ5BTR9WbrD80JEctNcT-rDqO2xfrQk1tFWeY6Sw== +0 -0
  278. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~9u8KAGpgtSm-mQ12Py8RZUbYbDlBhM3w1I2MQO53K2CSn6IePp7g65DBcdXTYMfG1bgoJ-6x30fjnGe-2UYsDQ== +0 -0
  279. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Bw7uMs4wqB9ahfEqGii2FkQ9pvZmG6HGe2hmbAT2wyM5hpn8Xh5dELysMcEz6hEsqmn6HdRdLOLZhC_fNaXzgA== +0 -0
  280. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~BwUq2xXQYuE8ya6HT6lfNsdtEjz5AKGf8GvLY6VBxQyIY1vgj_Gov-3NeM69OS66BQRDK0PG9H4Oyg0R48E4vg== +0 -0
  281. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~EkDVUR6dcnzxV_lYjkrJ5QGMVTCvb_upAoBF6DBu61sQkGvZN3fSRTsJ1XfJIZO-JUzdNoVA3D_CcvokL0gnQg== +0 -0
  282. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~FUkcLSJ8RAuPenM4HFG1R-sN5-cDBGcTxgR2jaVCna7xV0ZTyBHriB1Nn59mariNlJDiCoBtMUQEmauGxWtfBA== +0 -0
  283. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~FqsuZe4RVLOOVUYLTL-GTIohZ8TdSfxx7m2KJtLYFPGOdE4XorTX7Oc7kXbhghPRppXT3jW-slI37M34YNEvLQ== +0 -0
  284. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~G4F_NtyTj3i46fmKm0NorHAeq8tYWWYf6uv5yC1DwzdpWVoYbOPufmFNvdEbxZt4AMdV0gKx3HI46EAXNOQVFg== +0 -0
  285. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~GxetzGUNDgaBBXcTmLK6p9JBDX3I3QPshshbui1IaEWvJbQko-E36tCKwaJYHbleAWz9FqkAM_Tqx3YOmSVkVg== +0 -0
  286. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~H1Wjd5kKWDW4t3SDodxiHV72V8WT0xwPubw5cJTNLkPRLgaILFPh-dpy8EOUNgy1KzrDujFsm9EcTsbuqtMPLA== +0 -0
  287. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~JpI5MH4zCgebUHFpXVn4zjtsGtMNnO7BQZWfNARAB5UWa9gqz6YXHR3uLCJ_AvJ3lh53BUVkavsx9TY2FMmxbA== +0 -0
  288. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~JujNYkJtcux0Ni4QnR64zu4Wz_zYjyKvYaYZm5ypxTLPSzF3_jNE_NO4sdbDamF8wEqWoky1uf4ZE0JT3L607A== +0 -0
  289. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~KJSEA6DKnb2_FRPSqKZGh41eo-C8x448J9kEBrH012bUrZfOSDvrgmIrU0Vz7Ri3gaS9aKKmSaVMvXsHSlTJVA== +0 -0
  290. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~MStOwu3jBlJtcRnxrseVOuhI4kCj--ggFPG7sqrq5w1hjrI3bVyD-bm1Jwyx0noY3wT1rHDEvaGWnV2qsGjGwg== +0 -0
  291. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~McsJ8kFVf3IjhgXIRdw8Xx-EXgbV071bmlj2BBnk52xrWl3sEeiIyxwUsF7mIWvMRWfcFfu4VGHYyqfk2BeHXw== +0 -0
  292. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~NHt9fVe4kDdbxnglKcEwXaRK-WsYEOaD23Kbl8SJPRMYHr_Z6SJd_HmG3BROHHR_M6TgSmucONpDJdTj5tjuFw== +0 -0
  293. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Nfo2iwCPcfAcOBIVyoUAK0-PIfr5qYxIKZt-uaSaTBdrTNxAuJ1ItmeDPZ3VdJJmxD_c22No7x482bdd3_yYtw== +0 -0
  294. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~S2Qlu11xBhEd5aGSzWsnw1TR8u8PiOF93GO0j5bfNoAFCVzxKOwhRFoIXba2EpQnLQqFdIKyhWN3l70A4GPHmg== +0 -0
  295. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~W7a7M37RO9jgck2zeR0471Pm7e8K0Kqj5tXEouDjvqKZXSrWxMaWD28oqkKKYAiU4608R4S9mM11KyphljdMSw== +0 -0
  296. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~XUo1oyPCrlL7CA74wG-OzQ06VOWJYWvHGFHU7keZN1SKaIXjHX5qi_kBzjG_rBCi89-S8GVmCy7S3PHSjG8SbQ== +0 -0
  297. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Xh0VmDvFNMELHu08-vrs54pegVyUwwDRxx_nXkwyD0NjnYozyqcGAKAr_QWHmw6F8XyuWg51M9KGpJJIFzzGuw== +0 -0
  298. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Xve-wMBp_lxVUgD9qH5GwieGP9cAWtm0xULZvdGjBRUMvaevmpCB5gnbMBuIXAO6a1c9v6WUq0jNVX7ut5HvOw== +0 -0
  299. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~ZU1XkZFgnEE22CXEF-pOlcj5f10x-KM1Vw9d4IOLu-NiTZcz7koYPixhdrB1PJr8J-h9NpJmfqEastfxamA1jQ== +0 -0
  300. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~_YkNYEHTsbbtFILJpzH3HenH0t4ShI25dIMdve541CF5bl-jPF3X3F7tq-t5dvP0TEkATsOJdLQdBp1xv4Q-ag== +0 -0
  301. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~boy6mpn2jkwm60jjgQ0TG25UqRdN46LzmgTVCrpy6nBOgkLCGkGHcbceiwjU1itS_vj3-iQX0ZnrWOQrPyfHNA== +0 -0
  302. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~bwzpVZ9hAqGDHhXs2FRA82dfGfLmc7-m0uQhZDDfHHO7hQ17M_Np341BZX4WDLhYYS4cdUgaDodlNpdfpG3nXw== +0 -0
  303. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~cBxe-9PpAGFdAsYkmdN3lJVqEliLcRYlyoAov0aPZfJGwUr_cOm3XpjO7nmf_2eLf8UAx-rycjnJzw07xLrNCA== +0 -0
  304. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~dirWk6W4Pav1oyciuflfJlRu0iuxbYOmrpQapOJ0mV9C1SQ-jvDRv_7h753Cy18-SwULARUdWsyUy3yNNvxF7w== +0 -0
  305. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~ebwZVjSEHroc9jtIm4jd_h_YAqEBcOkAZ4HPNJT8pLCldjRcTq-obQLakxXOhfuoOBlYBoZLuO-Y0lskeZRYKw== +0 -0
  306. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~gfcRcmRIr0h09d0jiZsA7nUeQv2XtapxuYEXZy1Z9um0tTJQvz-O5ef5f7zhLenLvjnDtDtlY_aY4Hvpce6e1Q== +0 -0
  307. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~hgOgiVCyv2R0W-f0qKw5xYPeUwj8_ccCM9vKH_7vAQcCO9t8BwR1APGRBv20AONmp-PYMXmtgsBlQkNBRBpdQA== +0 -0
  308. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~hrhCl-YRAAr8ByNB_LCgEBsVNHMp92gTIUknetpUHMjcXl4Hpn_uY-h6C45oga0ZALnfGCo6iKTmiPLa4Qvnpg== +0 -0
  309. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~n2yoR7JsyL4DSUwmjnpE4Iq9Qi_eeZrmpPU8cdehDFKfESK7nwxXxfrSMQbk0BQ2lgGPadoRcd1-qr1xVz97jA== +0 -0
  310. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~nMCcZm8WvPogyO_nuJ926Q3Q2dqVMN2LdjEL1Kq2wJ_RG-rH-e_6v41l1xZbCsQTa3XykQdEiXNc0HtAvT6IRA== +0 -0
  311. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~oc3C7xkUt-OWDL6rrsxs-seS4Fu1bqBWAAXCHalgShaGg9MUrOiRbHT2DcAnhyQFKx6x5FRbvjmYoQWrQiXJZA== +0 -0
  312. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~p-ihj7SEgkDXpMu9hvKE_wiX9cvtwyXrdIn964BfedXHKGpC6o7mMPxEyC0kRPVi_EZs_MRV5bAPEpl5h5we0g== +0 -0
  313. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~qlhO_D9oE8uSKH-mZqyRF9pp4Zv1Tv0dIYcqrH4hb1VWlIxcdxmg2j0M8496cQeFXC5bn_JMXdBlD-d6cnFF8w== +0 -0
  314. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~tjpiyIxJR_boTdUNrtFDuKIZoY84fI4lA1oMJbq9e2ZmYKIK5FeRN2O8cV_yMOYJGr4lbv03kTmT70mCjUc2_Q== +0 -0
  315. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~wULeoj18eEKJWAKx1uFQVwS48cUGFcYPRJQj1Ro5XNJsWCwppGSCdIPhwifD6Z2f_j3zfI2SmC2Gg81sBXXW7g== +0 -0
  316. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~zrEihMys4NVV5rx6FmuzEGO2TjloI3OiC7yzIhvqYoRo43ibb2F-Km6Jf4NX-ac62pOLBYZRcjQTvYMpn75_oA== +0 -0
  317. package/Tests/Artifacts/LottieTests.xcresult/Info.plist +29 -0
  318. package/Tests/AutomaticEngineTests.swift +57 -0
  319. package/Tests/BundleTests.swift +25 -0
  320. package/Tests/DataURLTests.swift +64 -0
  321. package/Tests/ParsingTests.swift +42 -0
  322. package/Tests/PerformanceTests.swift +215 -0
  323. package/Tests/Samples/9squares_AlBoardman.json +1 -0
  324. package/Tests/Samples/Boat_Loader.json +1 -0
  325. package/Tests/Samples/HamburgerArrow.json +1 -0
  326. package/Tests/Samples/IconTransitions.json +1 -0
  327. package/Tests/Samples/Images/dog.png +0 -0
  328. package/Tests/Samples/Issues/issue_1403.json +1 -0
  329. package/Tests/Samples/Issues/issue_1407.json +1 -0
  330. package/Tests/Samples/Issues/issue_1488.json +1 -0
  331. package/Tests/Samples/Issues/issue_1505.json +1 -0
  332. package/Tests/Samples/Issues/issue_1628.json +1 -0
  333. package/Tests/Samples/Issues/pr_1536.json +1 -0
  334. package/Tests/Samples/Issues/pr_1563.json +8439 -0
  335. package/Tests/Samples/Issues/pr_1592.json +5527 -0
  336. package/Tests/Samples/Issues/pr_1599.json +738 -0
  337. package/Tests/Samples/Issues/pr_1604_1.json +1 -0
  338. package/Tests/Samples/Issues/pr_1604_2.json +1 -0
  339. package/Tests/Samples/LottieFiles/LICENSE.md +14 -0
  340. package/Tests/Samples/LottieFiles/bounce_strokes.json +1 -0
  341. package/Tests/Samples/LottieFiles/cactus.json +1 -0
  342. package/Tests/Samples/LottieFiles/dog_car_ride.json +1 -0
  343. package/Tests/Samples/LottieFiles/draft_icon.json +1 -0
  344. package/Tests/Samples/LottieFiles/gradient_1.json +1 -0
  345. package/Tests/Samples/LottieFiles/gradient_2.json +1 -0
  346. package/Tests/Samples/LottieFiles/gradient_pill.json +1 -0
  347. package/Tests/Samples/LottieFiles/gradient_shapes.json +1 -0
  348. package/Tests/Samples/LottieFiles/gradient_square.json +1 -0
  349. package/Tests/Samples/LottieFiles/growth.json +1 -0
  350. package/Tests/Samples/LottieFiles/infinity_loader.json +1 -0
  351. package/Tests/Samples/LottieFiles/loading_dots_1.json +1 -0
  352. package/Tests/Samples/LottieFiles/loading_dots_2.json +1 -0
  353. package/Tests/Samples/LottieFiles/loading_dots_3.json +1 -0
  354. package/Tests/Samples/LottieFiles/loading_gradient_strokes.json +1 -0
  355. package/Tests/Samples/LottieFiles/settings_slider.json +1 -0
  356. package/Tests/Samples/LottieFiles/shop.json +1 -0
  357. package/Tests/Samples/LottieFiles/step_loader.json +1 -0
  358. package/Tests/Samples/LottieLogo1.json +1 -0
  359. package/Tests/Samples/LottieLogo1_masked.json +1 -0
  360. package/Tests/Samples/LottieLogo2.json +1 -0
  361. package/Tests/Samples/MotionCorpse_Jrcanest.json +1 -0
  362. package/Tests/Samples/Nonanimating/BasicLayers.json +1 -0
  363. package/Tests/Samples/Nonanimating/DisableNodesTest.json +1 -0
  364. package/Tests/Samples/Nonanimating/FirstText.json +1 -0
  365. package/Tests/Samples/Nonanimating/GeometryTransformTest.json +1 -0
  366. package/Tests/Samples/Nonanimating/Text_AnimatedProperties.json +1 -0
  367. package/Tests/Samples/Nonanimating/Text_Glyph.json +1 -0
  368. package/Tests/Samples/Nonanimating/Text_NoAnimation.json +1 -0
  369. package/Tests/Samples/Nonanimating/Text_NoGlyph.json +1 -0
  370. package/Tests/Samples/Nonanimating/Zoom.json +1 -0
  371. package/Tests/Samples/Nonanimating/_dog.json +1 -0
  372. package/Tests/Samples/Nonanimating/base64Test.json +1 -0
  373. package/Tests/Samples/Nonanimating/blend_mode_test.json +1 -0
  374. package/Tests/Samples/Nonanimating/keypathTest.json +1 -0
  375. package/Tests/Samples/Nonanimating/verifyLineHeight.json +1 -0
  376. package/Tests/Samples/PinJump.json +1 -0
  377. package/Tests/Samples/Private/BrokenLottieFiles/growth_man.json +874 -0
  378. package/Tests/Samples/Private/BrokenLottieFiles/rocket.json +1 -0
  379. package/Tests/Samples/Private/China_EmptyState_Itinerary.json +1 -0
  380. package/Tests/Samples/Private/LoaderHourglass.json +12070 -0
  381. package/Tests/Samples/Private/README.md +7 -0
  382. package/Tests/Samples/Private/Urgency/alarm_animated.json +1 -0
  383. package/Tests/Samples/Private/Urgency/diamond_animated.json +1 -0
  384. package/Tests/Samples/Private/Urgency/eye_animated.json +1 -0
  385. package/Tests/Samples/Private/Urgency/light_bulb_animated.json +1 -0
  386. package/Tests/Samples/Private/Urgency/light_bulb_static.json +1 -0
  387. package/Tests/Samples/Private/Urgency/piggy_bank_static.json +1 -0
  388. package/Tests/Samples/Private/Urgency/price_tag_legacy.json +1 -0
  389. package/Tests/Samples/Private/Urgency/rausch_alarm.json +1 -0
  390. package/Tests/Samples/Private/Urgency/rausch_alert.json +1 -0
  391. package/Tests/Samples/Private/Urgency/rausch_clock.json +1 -0
  392. package/Tests/Samples/Private/Urgency/rausch_diamond.json +1 -0
  393. package/Tests/Samples/Private/Urgency/rausch_money.json +1 -0
  394. package/Tests/Samples/Private/Urgency/rausch_piggy_bank.json +1 -0
  395. package/Tests/Samples/Private/Urgency/rausch_tag.json +1 -0
  396. package/Tests/Samples/Private/Urgency/red_envelope_animated.json +1 -0
  397. package/Tests/Samples/Private/Urgency/tag_animated.json +1 -0
  398. package/Tests/Samples/Private/Urgency/trophy_animated.json +1 -0
  399. package/Tests/Samples/Private/Urgency/wings_key_animated.json +1 -0
  400. package/Tests/Samples/Private/_flexible.json +1 -0
  401. package/Tests/Samples/Private/aircover.json +1 -0
  402. package/Tests/Samples/Private/belo_spin_rausch.json +1 -0
  403. package/Tests/Samples/Private/celebration.json +2821 -0
  404. package/Tests/Samples/Private/checkbox.json +1 -0
  405. package/Tests/Samples/Private/checkbox_small.json +1 -0
  406. package/Tests/Samples/Private/getting_your_trip_ready.json +3540 -0
  407. package/Tests/Samples/Private/gradient_afternoon.json +1 -0
  408. package/Tests/Samples/Private/gradient_brand.json +1 -0
  409. package/Tests/Samples/Private/gradient_evening.json +1 -0
  410. package/Tests/Samples/Private/gradient_morning.json +1 -0
  411. package/Tests/Samples/Private/issue_1467.json +1 -0
  412. package/Tests/Samples/Private/loading_dots.json +1 -0
  413. package/Tests/Samples/Private/loading_dots_small.json +1 -0
  414. package/Tests/Samples/Private/payment_loader.json +1 -0
  415. package/Tests/Samples/Private/radio_button.json +1 -0
  416. package/Tests/Samples/Private/selfie_intro.json +1 -0
  417. package/Tests/Samples/Private/stepper_add.json +1 -0
  418. package/Tests/Samples/Private/stepper_subtract.json +1 -0
  419. package/Tests/Samples/Private/switch.json +1 -0
  420. package/Tests/Samples/Private/thumb.json +1 -0
  421. package/Tests/Samples/Private/toggle_no.json +1 -0
  422. package/Tests/Samples/Private/toggle_yes.json +1 -0
  423. package/Tests/Samples/Private/user_error_black_and_white.json +1 -0
  424. package/Tests/Samples/Private/user_error_cut_off.json +1 -0
  425. package/Tests/Samples/Switch.json +1 -0
  426. package/Tests/Samples/Switch_States.json +1 -0
  427. package/Tests/Samples/TwitterHeart.json +1 -0
  428. package/Tests/Samples/TwitterHeartButton.json +1 -0
  429. package/Tests/Samples/TypeFace/A.json +1 -0
  430. package/Tests/Samples/TypeFace/Apostrophe.json +1 -0
  431. package/Tests/Samples/TypeFace/B.json +1 -0
  432. package/Tests/Samples/TypeFace/BlinkingCursor.json +1 -0
  433. package/Tests/Samples/TypeFace/C.json +1 -0
  434. package/Tests/Samples/TypeFace/Colon.json +1 -0
  435. package/Tests/Samples/TypeFace/Comma.json +1 -0
  436. package/Tests/Samples/TypeFace/D.json +1 -0
  437. package/Tests/Samples/TypeFace/E.json +1 -0
  438. package/Tests/Samples/TypeFace/F.json +1 -0
  439. package/Tests/Samples/TypeFace/G.json +1 -0
  440. package/Tests/Samples/TypeFace/H.json +1 -0
  441. package/Tests/Samples/TypeFace/I.json +1 -0
  442. package/Tests/Samples/TypeFace/J.json +1 -0
  443. package/Tests/Samples/TypeFace/K.json +1 -0
  444. package/Tests/Samples/TypeFace/L.json +1 -0
  445. package/Tests/Samples/TypeFace/M.json +1 -0
  446. package/Tests/Samples/TypeFace/N.json +1 -0
  447. package/Tests/Samples/TypeFace/O.json +1 -0
  448. package/Tests/Samples/TypeFace/P.json +1 -0
  449. package/Tests/Samples/TypeFace/Q.json +1 -0
  450. package/Tests/Samples/TypeFace/R.json +1 -0
  451. package/Tests/Samples/TypeFace/S.json +1 -0
  452. package/Tests/Samples/TypeFace/T.json +1 -0
  453. package/Tests/Samples/TypeFace/U.json +1 -0
  454. package/Tests/Samples/TypeFace/V.json +1 -0
  455. package/Tests/Samples/TypeFace/W.json +1 -0
  456. package/Tests/Samples/TypeFace/X.json +1 -0
  457. package/Tests/Samples/TypeFace/Y.json +1 -0
  458. package/Tests/Samples/TypeFace/Z.json +1 -0
  459. package/Tests/Samples/Watermelon.json +1 -0
  460. package/Tests/Samples/setValueTest.json +1 -0
  461. package/Tests/Samples/timeremap.json +1 -0
  462. package/Tests/Samples/vcTransition1.json +1 -0
  463. package/Tests/Samples/vcTransition2.json +1 -0
  464. package/Tests/SnapshotConfiguration.swift +153 -0
  465. package/Tests/SnapshotTests.swift +265 -0
  466. package/Tests/Utils/Bundle+Module.swift +30 -0
  467. package/Tests/Utils/HardcodedFontProvider.swift +19 -0
  468. package/Tests/Utils/HardcodedImageProvider.swift +23 -0
  469. package/Tests/Utils/Snapshotting+presentationLayer.swift +47 -0
  470. package/Tests/ValueProvidersTests.swift +27 -0
  471. package/lottie-ios.podspec +12 -12
  472. package/package.json +1 -1
  473. package/script/lint/airbnb.swiftformat +68 -0
  474. package/script/lint/swiftlint.yml +38 -0
  475. package/script/test-carthage/Cartfile +1 -0
  476. package/script/test-carthage/Cartfile.resolved +1 -0
  477. package/script/test-carthage/Carthage/Build/.lottie-ios.version +19 -0
  478. package/script/test-carthage/Carthage/Build/Lottie.xcframework/Info.plist +46 -0
  479. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/BCSymbolMaps/BF971162-BE99-3507-B5B3-11947DC6B176.bcsymbolmap +14778 -0
  480. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Headers/Lottie-Swift.h +673 -0
  481. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Info.plist +0 -0
  482. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Lottie +0 -0
  483. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  484. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios.swiftmodule +0 -0
  485. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftdoc +0 -0
  486. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftmodule +0 -0
  487. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/module.modulemap +4 -0
  488. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/dSYMs/Lottie.framework.dSYM/Contents/Info.plist +20 -0
  489. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/dSYMs/Lottie.framework.dSYM/Contents/Resources/DWARF/Lottie +0 -0
  490. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Headers/Lottie-Swift.h +1352 -0
  491. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Info.plist +0 -0
  492. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Lottie +0 -0
  493. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
  494. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/arm64.swiftsourceinfo +0 -0
  495. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
  496. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/x86_64.swiftsourceinfo +0 -0
  497. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  498. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios-simulator.swiftmodule +0 -0
  499. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftdoc +0 -0
  500. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftmodule +0 -0
  501. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  502. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64-apple-ios-simulator.swiftmodule +0 -0
  503. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64.swiftdoc +0 -0
  504. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64.swiftmodule +0 -0
  505. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/module.modulemap +4 -0
  506. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/_CodeSignature/CodeResources +256 -0
  507. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/dSYMs/Lottie.framework.dSYM/Contents/Info.plist +20 -0
  508. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/dSYMs/Lottie.framework.dSYM/Contents/Resources/DWARF/Lottie +0 -0
  509. package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  510. package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +37 -0
  511. package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  512. package/script/test-carthage/CarthageTest/AppDelegate.swift +27 -0
  513. package/script/test-carthage/CarthageTest/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  514. package/script/test-carthage/CarthageTest/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
  515. package/script/test-carthage/CarthageTest/Assets.xcassets/Contents.json +6 -0
  516. package/script/test-carthage/CarthageTest/Base.lproj/LaunchScreen.storyboard +25 -0
  517. package/script/test-carthage/CarthageTest/Base.lproj/Main.storyboard +24 -0
  518. package/script/test-carthage/CarthageTest/Info.plist +66 -0
  519. package/script/test-carthage/CarthageTest/SceneDelegate.swift +10 -0
  520. package/script/test-carthage/CarthageTest/ViewController.swift +15 -0
  521. package/script/test-carthage/CarthageTest.xcodeproj/project.pbxproj +378 -0
  522. package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  523. package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  524. package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  525. package/script/test-carthage/CarthageTest.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  526. package/script/test-carthage/Mintfile +1 -0
  527. package/script/test-spm/LottieSPM.xcworkspace/contents.xcworkspacedata +7 -0
  528. package/script/test-spm/LottieSPM.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  529. package/script/test-spm/Mintfile +1 -0
  530. package/.swiftpm/xcode/package.xcworkspace/xcuserdata/brandonwithrow.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  531. package/Lottie/Info.plist +0 -22
  532. package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/brandonwithrow.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  533. package/Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad/xcschemes/LottieLibraryMacOS.xcscheme +0 -80
  534. package/Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad/xcschemes/xcschememanagement.plist +0 -57
  535. package/lottie-swift/Assets/.gitkeep +0 -0
  536. package/lottie-swift/src/Private/LayerContainers/Utility/LayerFontProvider.swift +0 -37
  537. package/lottie-swift/src/Private/LayerContainers/Utility/LayerTextProvider.swift +0 -36
  538. package/lottie-swift/src/Private/Model/Animation.swift +0 -107
  539. package/lottie-swift/src/Private/Model/Assets/Asset.swift +0 -27
  540. package/lottie-swift/src/Private/Model/Assets/ImageAsset.swift +0 -48
  541. package/lottie-swift/src/Private/Model/Keyframes/Keyframe.swift +0 -128
  542. package/lottie-swift/src/Private/Model/Keyframes/KeyframeGroup.swift +0 -108
  543. package/lottie-swift/src/Private/Model/Layers/LayerModel.swift +0 -150
  544. package/lottie-swift/src/Private/Model/Objects/DashPattern.swift +0 -24
  545. package/lottie-swift/src/Private/Model/Objects/Marker.swift +0 -23
  546. package/lottie-swift/src/Private/Model/Objects/Mask.swift +0 -48
  547. package/lottie-swift/src/Private/Model/Objects/Transform.swift +0 -105
  548. package/lottie-swift/src/Private/Model/ShapeItems/Ellipse.swift +0 -50
  549. package/lottie-swift/src/Private/Model/ShapeItems/FillI.swift +0 -49
  550. package/lottie-swift/src/Private/Model/ShapeItems/GradientFill.swift +0 -86
  551. package/lottie-swift/src/Private/Model/ShapeItems/GradientStroke.swift +0 -125
  552. package/lottie-swift/src/Private/Model/ShapeItems/Rectangle.swift +0 -50
  553. package/lottie-swift/src/Private/Model/ShapeItems/Repeater.swift +0 -80
  554. package/lottie-swift/src/Private/Model/ShapeItems/Shape.swift +0 -37
  555. package/lottie-swift/src/Private/Model/ShapeItems/ShapeItem.swift +0 -95
  556. package/lottie-swift/src/Private/Model/ShapeItems/ShapeTransform.swift +0 -68
  557. package/lottie-swift/src/Private/Model/ShapeItems/Star.swift +0 -86
  558. package/lottie-swift/src/Private/Model/ShapeItems/Stroke.swift +0 -67
  559. package/lottie-swift/src/Private/Model/ShapeItems/Trim.swift +0 -53
  560. package/lottie-swift/src/Private/Model/Text/Font.swift +0 -35
  561. package/lottie-swift/src/Private/Model/Text/TextAnimator.swift +0 -99
  562. package/lottie-swift/src/Private/Model/Text/TextDocument.swift +0 -70
  563. package/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +0 -109
  564. package/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +0 -132
  565. package/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +0 -141
  566. package/lottie-swift/src/Private/Utility/Extensions/MathKit.swift +0 -539
  567. package/lottie-swift/src/Private/Utility/Extensions/StringExtensions.swift +0 -32
  568. package/lottie-swift/src/Private/Utility/Interpolatable/Interpolatable.swift +0 -18
  569. package/lottie-swift/src/Private/Utility/Interpolatable/InterpolatableExtensions.swift +0 -170
  570. package/lottie-swift/src/Private/Utility/Primitives/CurveVertex.swift +0 -177
  571. package/lottie-swift/src/Private/Utility/Primitives/PathElement.swift +0 -68
  572. package/lottie-swift/src/Private/Utility/Primitives/VectorsExtensions.swift +0 -218
  573. package/lottie-swift/src/Public/Animation/AnimationPublic.swift +0 -196
  574. package/lottie-swift/src/Public/Animation/AnimationView.swift +0 -1006
  575. package/lottie-swift/src/Public/Animation/AnimationViewInitializers.swift +0 -83
  576. package/lottie-swift/src/Public/AnimationCache/AnimationCacheProvider.swift +0 -24
  577. package/lottie-swift/src/Public/DynamicProperties/AnimationKeypath.swift +0 -46
  578. package/lottie-swift/src/Public/DynamicProperties/AnyValueProvider.swift +0 -29
  579. package/lottie-swift/src/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +0 -114
  580. package/lottie-swift/src/Public/ImageProvider/AnimationImageProvider.swift +0 -23
  581. package/lottie-swift/src/Public/MacOS/FilepathImageProvider.swift +0 -67
  582. package/lottie-swift/src/Public/TextProvider/AnimationTextProvider.swift +0 -39
  583. package/lottie-swift/src/Public/iOS/LottieView.swift +0 -62
  584. package/lottie-swift-testing.podspec +0 -32
@@ -0,0 +1 @@
1
+ {"v":"4.8.0","meta":{"g":"LottieFiles AE ","a":"","k":"","d":"","tc":""},"fr":60,"ip":0,"op":300,"w":849,"h":410,"nm":"AC4G_ENGLISH_LPHERO_XL","ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"tagline","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[418,284,0],"ix":2},"a":{"a":0,"k":[290.5,179.5,0],"ix":1},"s":{"a":0,"k":[93,93,100],"ix":6}},"ao":0,"w":581,"h":359,"ip":0,"op":1213,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"air_2 build","refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[422,84,0],"ix":2},"a":{"a":0,"k":[960,127.5,0],"ix":1},"s":{"a":0,"k":[75,75,100],"ix":6}},"ao":0,"w":1920,"h":255,"ip":-1,"op":1212,"st":-1,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Layer 1 Outlines 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":297,"s":[0]},{"t":325.02734375,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":279,"s":[421.005,253.352,0],"to":[0,-12.333,0],"ti":[0,12.333,0]},{"t":359,"s":[421.005,179.352,0]}],"ix":2},"a":{"a":0,"k":[421.342,179.602,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.384,0],[0.336,0.191],[0.192,0.312],[0,0.408],[-0.191,0.311],[-0.313,0.191],[-0.385,0],[-0.313,-0.193],[-0.192,-0.336],[0,-0.408],[0.216,-0.337],[0.336,-0.192]],"o":[[-0.385,0],[-0.313,-0.192],[-0.191,-0.337],[0,-0.408],[0.192,-0.336],[0.336,-0.193],[0.384,0],[0.336,0.191],[0.216,0.311],[0,0.408],[-0.192,0.312],[-0.313,0.191]],"v":[[123.069,57.612],[121.988,57.324],[121.231,56.568],[120.944,55.452],[121.231,54.372],[121.988,53.58],[123.069,53.292],[124.112,53.58],[124.905,54.372],[125.228,55.452],[124.905,56.568],[124.112,57.324]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-0.912,0],[-0.743,0.36],[-0.552,0.623],[-0.313,0.864],[0,1.055],[0.311,0.864],[0.576,0.623],[0.769,0.361],[0.912,0],[0.769,-0.359],[0.576,-0.648],[0.311,-0.888],[0,-1.056],[-0.313,-0.888],[-0.553,-0.648],[-0.744,-0.361]],"o":[[0.912,0],[0.769,-0.361],[0.576,-0.648],[0.311,-0.888],[0,-1.056],[-0.313,-0.888],[-0.552,-0.648],[-0.743,-0.359],[-0.912,0],[-0.744,0.361],[-0.553,0.623],[-0.313,0.864],[0,1.055],[0.311,0.864],[0.576,0.623],[0.769,0.36]],"v":[[108.616,55.416],[111.099,54.876],[113.08,53.4],[114.413,51.132],[114.88,48.216],[114.413,45.336],[113.08,43.068],[111.099,41.555],[108.616,41.015],[106.095,41.555],[104.116,43.068],[102.82,45.336],[102.351,48.216],[102.82,51.132],[104.116,53.4],[106.095,54.876]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.153,0.672],[-1.464,0],[-1.056,-0.504],[-0.792,-0.889],[-0.432,-1.2],[0,-1.391],[0.456,-1.2],[0.815,-0.889],[1.08,-0.504],[1.248,0],[1.176,0.696],[0.672,1.223],[0,0]],"o":[[0,0],[0,0],[0,0],[0.672,-1.176],[1.176,-0.695],[1.223,0],[1.055,0.481],[0.792,0.888],[0.456,1.176],[0,1.393],[-0.432,1.199],[-0.792,0.888],[-1.08,0.504],[-1.439,0],[-1.175,-0.697],[0,0],[0,0]],"v":[[99.544,57.504],[99.544,30.792],[102.423,30.792],[102.423,42.204],[105.16,39.431],[109.12,38.387],[112.54,39.143],[115.311,41.196],[117.147,44.328],[117.832,48.179],[117.147,52.068],[115.276,55.2],[112.467,57.288],[108.975,58.044],[105.051,57],[102.28,54.12],[102.135,57.504]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.031,0.624],[-1.368,0],[-1.057,-0.672],[-0.553,-1.248],[0,-1.68],[0,0],[0,0],[0,0],[0.815,1.008],[1.487,0],[0.817,-0.48],[0.456,-0.839],[0,-1.057],[0,0]],"o":[[0,0],[0,0],[0,0],[0.553,-1.056],[1.057,-0.648],[1.416,0],[1.056,0.673],[0.575,1.224],[0,0],[0,0],[0,0],[0,-1.847],[-0.792,-1.009],[-1.032,0],[-0.792,0.455],[-0.456,0.817],[0,0],[0,0]],"v":[[78.908,57.504],[78.908,38.927],[81.5,38.927],[81.643,41.88],[84.02,39.36],[87.656,38.387],[91.364,39.395],[93.776,42.276],[94.639,46.632],[94.639,57.504],[91.759,57.504],[91.759,46.811],[90.536,42.528],[87.116,41.015],[84.343,41.736],[82.471,43.679],[81.788,46.488],[81.788,57.504]],"c":true},"ix":2},"nm":"Path 4","mn":"ADBE Vector Shape - Group","hd":false},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[-0.913,0],[-0.744,0.36],[-0.551,0.623],[-0.311,0.864],[0,1.055],[0.313,0.864],[0.577,0.623],[0.768,0.361],[0.912,0],[0.768,-0.359],[0.576,-0.648],[0.311,-0.888],[0,-1.056],[-0.313,-0.888],[-0.552,-0.648],[-0.744,-0.361]],"o":[[0.912,0],[0.768,-0.361],[0.577,-0.648],[0.313,-0.888],[0,-1.056],[-0.311,-0.888],[-0.551,-0.648],[-0.744,-0.359],[-0.913,0],[-0.744,0.361],[-0.552,0.623],[-0.313,0.864],[0,1.055],[0.311,0.864],[0.576,0.623],[0.768,0.36]],"v":[[65.585,55.416],[68.069,54.876],[70.048,53.4],[71.38,51.132],[71.848,48.216],[71.38,45.336],[70.048,43.068],[68.069,41.555],[65.585,41.015],[63.065,41.555],[61.085,43.068],[59.789,45.336],[59.322,48.216],[59.789,51.132],[61.085,53.4],[63.065,54.876]],"c":true},"ix":2},"nm":"Path 5","mn":"ADBE Vector Shape - Group","hd":false},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.153,0.672],[-1.464,0],[-1.055,-0.504],[-0.792,-0.889],[-0.433,-1.2],[0,-1.391],[0.456,-1.2],[0.815,-0.889],[1.08,-0.504],[1.248,0],[1.177,0.696],[0.672,1.223],[0,0]],"o":[[0,0],[0,0],[0,0],[0.673,-1.176],[1.175,-0.695],[1.223,0],[1.057,0.481],[0.792,0.888],[0.456,1.176],[0,1.393],[-0.433,1.199],[-0.792,0.888],[-1.08,0.504],[-1.44,0],[-1.176,-0.697],[0,0],[0,0]],"v":[[56.512,57.504],[56.512,30.792],[59.392,30.792],[59.392,42.204],[62.129,39.431],[66.09,38.387],[69.508,39.143],[72.281,41.196],[74.117,44.328],[74.801,48.179],[74.117,52.068],[72.245,55.2],[69.436,57.288],[65.945,58.044],[62.02,57],[59.249,54.12],[59.104,57.504]],"c":true},"ix":2},"nm":"Path 6","mn":"ADBE Vector Shape - Group","hd":false},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.913,0.649],[-1.224,0],[-0.313,-0.072],[-0.24,-0.096],[0,0],[0.288,0.025],[0.288,0],[0.769,-0.504],[0.431,-0.936],[0,-1.248],[0,0]],"o":[[0,0],[0,0],[0,0],[0.456,-1.152],[0.912,-0.672],[0.408,0],[0.336,0.048],[0,0],[-0.264,-0.097],[-0.289,-0.047],[-1.008,0],[-0.743,0.504],[-0.409,0.911],[0,0],[0,0]],"v":[[43.012,57.504],[43.012,38.927],[45.604,38.927],[45.785,42.383],[47.837,39.683],[51.041,38.675],[52.121,38.784],[52.986,39],[52.625,41.736],[51.797,41.555],[50.932,41.484],[48.268,42.24],[46.505,44.4],[45.892,47.639],[45.892,57.504]],"c":true},"ix":2},"nm":"Path 7","mn":"ADBE Vector Shape - Group","hd":false},{"ind":7,"ty":"sh","ix":8,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[35.103,38.927],[37.983,38.927],[37.983,57.503],[35.103,57.503]],"c":true},"ix":2},"nm":"Path 8","mn":"ADBE Vector Shape - Group","hd":false},{"ind":8,"ty":"sh","ix":9,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[35.103,57.504]],"c":false},"ix":2},"nm":"Path 9","mn":"ADBE Vector Shape - Group","hd":false},{"ind":9,"ty":"sh","ix":10,"ks":{"a":0,"k":{"i":[[0,-0.36],[0.191,-0.313],[0.313,-0.191],[0.36,0],[0.311,0.168],[0.191,0.288],[0,0.359],[-0.169,0.288],[-0.288,0.167],[-0.361,0],[-0.288,-0.193],[-0.168,-0.311]],"o":[[0,0.359],[-0.168,0.288],[-0.288,0.168],[-0.361,0],[-0.288,-0.191],[-0.169,-0.313],[0,-0.36],[0.191,-0.311],[0.311,-0.193],[0.36,0],[0.313,0.167],[0.191,0.288]],"v":[[38.522,33.492],[38.236,34.5],[37.514,35.219],[36.543,35.471],[35.535,35.219],[34.815,34.5],[34.562,33.492],[34.815,32.519],[35.535,31.8],[36.543,31.511],[37.514,31.8],[38.236,32.519]],"c":true},"ix":2},"nm":"Path 10","mn":"ADBE Vector Shape - Group","hd":false},{"ind":10,"ty":"sh","ix":11,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[15.013,47.46],[24.553,47.46],[19.801,35.292]],"c":true},"ix":2},"nm":"Path 11","mn":"ADBE Vector Shape - Group","hd":false},{"ind":11,"ty":"sh","ix":12,"ks":{"a":0,"k":{"i":[[0,0],[0,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":[[7.958,57.504],[18.254,31.944],[21.458,31.944],[31.754,57.504],[28.513,57.504],[25.671,50.231],[13.934,50.231],[11.09,57.504]],"c":true},"ix":2},"nm":"Path 12","mn":"ADBE Vector Shape - Group","hd":false},{"ind":12,"ty":"sh","ix":13,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.033,0.624],[-1.367,0],[-1.055,-0.672],[-0.551,-1.248],[0,-1.68],[0,0],[0,0],[0,0],[0.816,1.008],[1.489,0],[0.817,-0.48],[0.456,-0.839],[0,-1.057],[0,0]],"o":[[0,0],[0,0],[0,0],[0.551,-1.056],[1.056,-0.648],[1.416,0],[1.057,0.673],[0.577,1.224],[0,0],[0,0],[0,0],[0,-1.847],[-0.792,-1.009],[-1.031,0],[-0.792,0.455],[-0.456,0.817],[0,0],[0,0]],"v":[[-18.863,57.504],[-18.863,38.927],[-16.27,38.927],[-16.126,41.88],[-13.749,39.36],[-10.115,38.387],[-6.407,39.395],[-3.995,42.276],[-3.129,46.632],[-3.129,57.504],[-6.011,57.504],[-6.011,46.811],[-7.233,42.528],[-10.655,41.015],[-13.426,41.736],[-15.298,43.679],[-15.982,46.488],[-15.982,57.504]],"c":true},"ix":2},"nm":"Path 13","mn":"ADBE Vector Shape - Group","hd":false},{"ind":13,"ty":"sh","ix":14,"ks":{"a":0,"k":{"i":[[-0.912,0],[-0.745,0.36],[-0.552,0.623],[-0.312,0.864],[0,1.055],[0.312,0.864],[0.576,0.623],[0.768,0.361],[0.912,0],[0.768,-0.359],[0.576,-0.648],[0.312,-0.888],[0,-1.056],[-0.312,-0.888],[-0.553,-0.648],[-0.744,-0.361]],"o":[[0.912,0],[0.768,-0.361],[0.576,-0.648],[0.312,-0.888],[0,-1.056],[-0.312,-0.888],[-0.552,-0.648],[-0.745,-0.359],[-0.912,0],[-0.744,0.361],[-0.553,0.623],[-0.312,0.864],[0,1.055],[0.312,0.864],[0.576,0.623],[0.768,0.36]],"v":[[-32.168,55.416],[-29.684,54.876],[-27.704,53.4],[-26.371,51.132],[-25.905,48.216],[-26.371,45.336],[-27.704,43.068],[-29.684,41.555],[-32.168,41.015],[-34.688,41.555],[-36.668,43.068],[-37.964,45.336],[-38.431,48.216],[-37.964,51.132],[-36.668,53.4],[-34.688,54.876]],"c":true},"ix":2},"nm":"Path 14","mn":"ADBE Vector Shape - Group","hd":false},{"ind":14,"ty":"sh","ix":15,"ks":{"a":0,"k":{"i":[[1.319,0],[1.128,0.479],[0.839,0.864],[0.457,1.201],[0,1.416],[-0.456,1.2],[-0.817,0.863],[-1.127,0.481],[-1.321,0],[-1.104,-0.504],[-0.816,-0.889],[-0.455,-1.201],[0,-1.417],[0.48,-1.2],[0.841,-0.888],[1.128,-0.504]],"o":[[-1.32,0],[-1.104,-0.504],[-0.816,-0.888],[-0.456,-1.2],[0,-1.417],[0.48,-1.201],[0.84,-0.889],[1.128,-0.504],[1.32,0],[1.127,0.481],[0.839,0.863],[0.456,1.2],[0,1.416],[-0.456,1.201],[-0.815,0.864],[-1.128,0.479]],"v":[[-32.204,58.044],[-35.876,57.324],[-38.792,55.271],[-40.701,52.139],[-41.384,48.216],[-40.701,44.292],[-38.756,41.196],[-35.805,39.143],[-32.132,38.387],[-28.496,39.143],[-25.579,41.196],[-23.637,44.292],[-22.952,48.216],[-23.672,52.139],[-25.616,55.271],[-28.533,57.324]],"c":true},"ix":2},"nm":"Path 15","mn":"ADBE Vector Shape - Group","hd":false},{"ind":15,"ty":"sh","ix":16,"ks":{"a":0,"k":{"i":[[1.319,0],[0.431,0.119],[0.455,0.24],[0,0],[-0.287,-0.073],[-0.336,0],[-0.551,0.481],[-0.407,1.008],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.959,-0.767]],"o":[[-0.504,0],[-0.432,-0.097],[0,0],[0.241,0.145],[0.312,0.072],[0.744,0],[0.577,-0.456],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.625,1.631],[-0.96,0.792]],"v":[[-65.582,65.208],[-66.986,65.028],[-68.318,64.523],[-67.491,62.219],[-66.699,62.544],[-65.725,62.652],[-63.783,61.931],[-62.306,59.736],[-61.334,57.324],[-69.038,38.927],[-65.87,38.927],[-59.931,54.191],[-54.566,38.927],[-51.506,38.927],[-59.785,60.42],[-62.162,64.019]],"c":true},"ix":2},"nm":"Path 16","mn":"ADBE Vector Shape - Group","hd":false},{"ind":16,"ty":"sh","ix":17,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-75.077,30.792],[-72.197,30.792],[-72.197,57.504],[-75.077,57.504]],"c":true},"ix":2},"nm":"Path 17","mn":"ADBE Vector Shape - Group","hd":false},{"ind":17,"ty":"sh","ix":18,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[-75.077,57.504]],"c":false},"ix":2},"nm":"Path 18","mn":"ADBE Vector Shape - Group","hd":false},{"ind":18,"ty":"sh","ix":19,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.032,0.624],[-1.368,0],[-1.056,-0.672],[-0.551,-1.248],[0,-1.68],[0,0],[0,0],[0,0],[0.816,1.008],[1.488,0],[0.816,-0.48],[0.456,-0.839],[0,-1.057],[0,0]],"o":[[0,0],[0,0],[0,0],[0.552,-1.056],[1.056,-0.648],[1.416,0],[1.055,0.673],[0.577,1.224],[0,0],[0,0],[0,0],[0,-1.847],[-0.792,-1.009],[-1.032,0],[-0.792,0.455],[-0.456,0.817],[0,0],[0,0]],"v":[[-95.712,57.504],[-95.712,38.927],[-93.121,38.927],[-92.977,41.88],[-90.6,39.36],[-86.965,38.387],[-83.257,39.395],[-80.845,42.276],[-79.98,46.632],[-79.98,57.504],[-82.861,57.504],[-82.861,46.811],[-84.085,42.528],[-87.504,41.015],[-90.277,41.736],[-92.149,43.679],[-92.832,46.488],[-92.832,57.504]],"c":true},"ix":2},"nm":"Path 19","mn":"ADBE Vector Shape - Group","hd":false},{"ind":19,"ty":"sh","ix":20,"ks":{"a":0,"k":{"i":[[0,-1.559],[-0.456,-1.321],[-0.839,-0.96],[-1.128,-0.528],[-1.368,0],[-1.127,0.527],[-0.841,0.96],[-0.456,1.32],[0,1.561],[0.48,1.297],[0.84,0.96],[1.152,0.528],[1.368,0],[1.151,-0.529],[0.841,-0.96],[0.48,-1.319]],"o":[[0,1.561],[0.48,1.32],[0.841,0.96],[1.151,0.527],[1.368,0],[1.152,-0.528],[0.84,-0.96],[0.48,-1.321],[0,-1.559],[-0.456,-1.319],[-0.841,-0.96],[-1.127,-0.529],[-1.368,0],[-1.128,0.528],[-0.839,0.96],[-0.456,1.297]],"v":[[-121.988,44.723],[-121.305,49.044],[-119.324,52.464],[-116.371,54.696],[-112.592,55.488],[-108.849,54.696],[-105.86,52.464],[-103.915,49.044],[-103.197,44.723],[-103.915,40.439],[-105.86,37.019],[-108.849,34.788],[-112.592,33.996],[-116.371,34.788],[-119.324,37.019],[-121.305,40.439]],"c":true},"ix":2},"nm":"Path 20","mn":"ADBE Vector Shape - Group","hd":false},{"ind":20,"ty":"sh","ix":21,"ks":{"a":0,"k":{"i":[[0,1.968],[-0.407,1.368],[-0.745,1.128],[-1.033,0.792],[-1.272,0.431],[-1.464,0],[-1.511,-0.672],[-1.104,-1.224],[-0.601,-1.656],[0,-1.967],[0.407,-1.368],[0.743,-1.129],[1.031,-0.816],[1.272,-0.433],[1.463,0],[1.512,0.647],[1.128,1.2],[0.624,1.632]],"o":[[0,-1.559],[0.409,-1.368],[0.744,-1.128],[1.032,-0.817],[1.272,-0.433],[1.799,0],[1.513,0.649],[1.128,1.2],[0.624,1.632],[0,1.561],[-0.408,1.368],[-0.744,1.128],[-1.033,0.792],[-1.272,0.432],[-1.8,0],[-1.512,-0.672],[-1.105,-1.223],[-0.601,-1.656]],"v":[[-125.084,44.759],[-124.473,40.368],[-122.743,36.624],[-120.079,33.744],[-116.624,31.872],[-112.52,31.223],[-107.553,32.231],[-103.628,35.04],[-101.035,39.324],[-100.1,44.723],[-100.712,49.116],[-102.439,52.86],[-105.103,55.776],[-108.56,57.612],[-112.663,58.259],[-117.632,57.288],[-121.592,54.479],[-124.184,50.196]],"c":true},"ix":2},"nm":"Path 21","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.999998922909,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":[424.668,293.746],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":23,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":267,"op":1235,"st":22,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Layer 1 Outlines 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":288,"s":[0]},{"t":316.02734375,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":270,"s":[421.005,253.352,0],"to":[0,-12.333,0],"ti":[0,12.333,0]},{"t":350,"s":[421.005,179.352,0]}],"ix":2},"a":{"a":0,"k":[421.342,179.602,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.385,0],[0.336,0.191],[0.193,0.312],[0,0.408],[-0.191,0.311],[-0.311,0.191],[-0.384,0],[-0.311,-0.193],[-0.191,-0.336],[0,-0.408],[0.217,-0.337],[0.337,-0.192]],"o":[[-0.384,0],[-0.311,-0.192],[-0.191,-0.337],[0,-0.408],[0.193,-0.336],[0.336,-0.193],[0.385,0],[0.337,0.191],[0.217,0.311],[0,0.408],[-0.191,0.312],[-0.311,0.191]],"v":[[230.1,9.612],[229.02,9.324],[228.264,8.568],[227.976,7.452],[228.264,6.372],[229.02,5.58],[230.1,5.292],[231.145,5.58],[231.936,6.372],[232.26,7.452],[231.936,8.568],[231.145,9.324]],"c":true},"ix":2},"nm":"Path 22","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0.985,0],[0.817,-0.479],[0.551,-0.863],[0.168,-1.128],[0,0],[0.504,0.841],[0.792,0.481]],"o":[[-0.983,0],[-0.792,0.481],[-0.529,0.841],[0,0],[-0.095,-1.128],[-0.504,-0.863],[-0.792,-0.479]],"v":[[215.798,-7.128],[213.098,-6.409],[211.083,-4.393],[210.039,-1.441],[221.306,-1.441],[220.408,-4.393],[218.463,-6.409]],"c":true},"ix":2},"nm":"Path 23","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[1.128,0],[1.151,0.479],[0.84,0.865],[0.457,1.175],[0,1.439],[-0.431,1.176],[-0.792,0.889],[-1.08,0.481],[-1.271,0],[-1.031,-0.455],[-0.768,-0.815],[-0.407,-1.128],[0,-1.319],[0,0],[0,0],[-0.529,-1.009],[-0.912,-0.553],[-1.2,0],[-0.865,0.481],[-0.623,0.96],[0,0],[0.769,-0.648],[1.009,-0.336]],"o":[[-1.367,0],[-1.128,-0.481],[-0.84,-0.887],[-0.456,-1.201],[0,-1.416],[0.456,-1.2],[0.817,-0.888],[1.08,-0.504],[1.224,0],[1.057,0.456],[0.767,0.817],[0.433,1.128],[0,0],[0,0],[0.097,1.343],[0.551,1.008],[0.911,0.552],[1.176,0],[0.887,-0.504],[0,0],[-0.479,0.912],[-0.767,0.647],[-0.983,0.36]],"v":[[216.267,10.044],[212.487,9.324],[209.535,7.307],[207.59,4.212],[206.908,0.252],[207.554,-3.636],[209.426,-6.769],[212.27,-8.821],[215.798,-9.576],[219.182,-8.893],[221.919,-6.985],[223.682,-4.069],[224.332,-0.397],[224.332,0.792],[209.895,0.792],[210.832,4.32],[213.027,6.66],[216.195,7.488],[219.255,6.767],[221.522,4.572],[223.97,5.687],[222.098,8.028],[219.434,9.504]],"c":true},"ix":2},"nm":"Path 24","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0.984,0],[0.815,-0.479],[0.553,-0.863],[0.168,-1.128],[0,0],[0.503,0.841],[0.792,0.481]],"o":[[-0.984,0],[-0.792,0.481],[-0.527,0.841],[0,0],[-0.097,-1.128],[-0.504,-0.863],[-0.792,-0.479]],"v":[[195.022,-7.128],[192.322,-6.409],[190.306,-4.393],[189.262,-1.441],[200.53,-1.441],[199.63,-4.393],[197.685,-6.409]],"c":true},"ix":2},"nm":"Path 25","mn":"ADBE Vector Shape - Group","hd":false},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[1.128,0],[1.152,0.479],[0.84,0.865],[0.456,1.175],[0,1.439],[-0.433,1.176],[-0.792,0.889],[-1.08,0.481],[-1.272,0],[-1.032,-0.455],[-0.767,-0.815],[-0.408,-1.128],[0,-1.319],[0,0],[0,0],[-0.527,-1.009],[-0.912,-0.553],[-1.201,0],[-0.863,0.481],[-0.624,0.96],[0,0],[0.767,-0.648],[1.008,-0.336]],"o":[[-1.368,0],[-1.128,-0.481],[-0.839,-0.887],[-0.455,-1.201],[0,-1.416],[0.456,-1.2],[0.815,-0.888],[1.08,-0.504],[1.224,0],[1.056,0.456],[0.769,0.817],[0.432,1.128],[0,0],[0,0],[0.096,1.343],[0.553,1.008],[0.912,0.552],[1.175,0],[0.889,-0.504],[0,0],[-0.48,0.912],[-0.769,0.647],[-0.985,0.36]],"v":[[195.491,10.044],[191.71,9.324],[188.757,7.307],[186.814,4.212],[186.13,0.252],[186.778,-3.636],[188.65,-6.769],[191.494,-8.821],[195.022,-9.576],[198.406,-8.893],[201.142,-6.985],[202.906,-4.069],[203.553,-0.397],[203.553,0.792],[189.118,0.792],[190.053,4.32],[192.25,6.66],[195.418,7.488],[198.478,6.767],[200.746,4.572],[203.194,5.687],[201.322,8.028],[198.658,9.504]],"c":true},"ix":2},"nm":"Path 26","mn":"ADBE Vector Shape - Group","hd":false},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.912,0.649],[-1.223,0],[-0.311,-0.072],[-0.241,-0.096],[0,0],[0.288,0.025],[0.288,0],[0.767,-0.504],[0.433,-0.936],[0,-1.248],[0,0]],"o":[[0,0],[0,0],[0,0],[0.456,-1.152],[0.912,-0.672],[0.409,0],[0.336,0.048],[0,0],[-0.263,-0.097],[-0.288,-0.047],[-1.009,0],[-0.744,0.504],[-0.407,0.911],[0,0],[0,0]],"v":[[174.234,9.504],[174.234,-9.073],[176.827,-9.073],[177.007,-5.617],[179.057,-8.317],[182.262,-9.325],[183.341,-9.216],[184.207,-9],[183.845,-6.264],[183.017,-6.445],[182.155,-6.516],[179.491,-5.76],[177.725,-3.6],[177.114,-0.361],[177.114,9.504]],"c":true},"ix":2},"nm":"Path 27","mn":"ADBE Vector Shape - Group","hd":false},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.504,1.008],[-0.912,0.552],[-1.223,0],[-1.032,-0.624],[0,0],[0.431,0.12],[0.432,0],[0.576,-0.744],[0,-1.391],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,-1.368],[0.504,-1.032],[0.936,-0.551],[1.296,0],[0,0],[-0.359,-0.191],[-0.433,-0.121],[-1.128,0],[-0.575,0.743],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[162.103,9.504],[162.103,-6.624],[158.684,-6.624],[158.684,-9.073],[162.103,-9.073],[162.103,-10.8],[162.861,-14.365],[164.984,-16.741],[168.223,-17.569],[171.715,-16.632],[170.887,-14.401],[169.7,-14.868],[168.405,-15.048],[165.848,-13.932],[164.984,-10.729],[164.984,-9.073],[170.851,-9.073],[170.851,-6.624],[164.984,-6.624],[164.984,9.504]],"c":true},"ix":2},"nm":"Path 28","mn":"ADBE Vector Shape - Group","hd":false},{"ind":7,"ty":"sh","ix":8,"ks":{"a":0,"k":{"i":[[1.008,0],[0.96,0.36],[0.695,0.672],[0.359,0.912],[0,0],[-0.769,-0.504],[-0.985,0],[-0.6,0.263],[-0.336,0.456],[0,0.576],[2.257,0.456],[0,0],[0.937,0.863],[0,1.345],[-0.552,0.84],[-0.984,0.456],[-1.273,0],[-0.889,-0.359],[-0.624,-0.672],[-0.336,-0.912],[0,0],[0.72,0.479],[0.935,0],[0.552,-0.239],[0.311,-0.408],[0,-0.552],[-0.575,-0.456],[-1.32,-0.263],[0,0],[-0.937,-0.913],[0,-1.391],[0.359,-0.719],[0.624,-0.527],[0.865,-0.288]],"o":[[-1.08,0],[-0.935,-0.361],[-0.696,-0.672],[0,0],[0.479,0.912],[0.767,0.504],[0.792,0],[0.599,-0.264],[0.336,-0.48],[0,-1.56],[0,0],[-1.968,-0.385],[-0.935,-0.889],[0,-1.08],[0.553,-0.839],[1.008,-0.479],[1.055,0],[0.888,0.336],[0.649,0.673],[0,0],[-0.384,-0.887],[-0.696,-0.504],[-0.72,0],[-0.528,0.24],[-0.313,0.408],[0,0.769],[0.601,0.456],[0,0],[1.777,0.361],[0.935,0.887],[0,0.865],[-0.336,0.697],[-0.6,0.529],[-0.84,0.288]],"v":[[141.993,10.044],[138.932,9.504],[136.486,7.956],[134.901,5.58],[137.493,4.643],[139.366,6.767],[141.993,7.523],[144.082,7.128],[145.486,6.048],[145.989,4.464],[142.604,1.439],[141.202,1.152],[136.844,-0.72],[135.44,-4.069],[136.268,-6.949],[138.573,-8.893],[141.993,-9.613],[144.909,-9.073],[147.176,-7.561],[148.653,-5.184],[146.06,-4.321],[144.405,-6.372],[141.957,-7.128],[140.048,-6.769],[138.789,-5.796],[138.322,-4.357],[139.184,-2.521],[142.065,-1.441],[143.468,-1.153],[147.538,0.756],[148.94,4.175],[148.401,6.551],[146.961,8.387],[144.764,9.612]],"c":true},"ix":2},"nm":"Path 29","mn":"ADBE Vector Shape - Group","hd":false},{"ind":8,"ty":"sh","ix":9,"ks":{"a":0,"k":{"i":[[1.319,0],[0.431,0.119],[0.456,0.24],[0,0],[-0.288,-0.073],[-0.336,0],[-0.552,0.481],[-0.407,1.008],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.96,-0.767]],"o":[[-0.504,0],[-0.432,-0.097],[0,0],[0.24,0.145],[0.311,0.072],[0.744,0],[0.576,-0.456],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.624,1.631],[-0.96,0.792]],"v":[[118.866,17.208],[117.461,17.028],[116.129,16.523],[116.957,14.219],[117.749,14.544],[118.72,14.652],[120.665,13.931],[122.14,11.736],[123.113,9.324],[115.409,-9.073],[118.577,-9.073],[124.517,6.191],[129.88,-9.073],[132.94,-9.073],[124.661,12.42],[122.285,16.019]],"c":true},"ix":2},"nm":"Path 30","mn":"ADBE Vector Shape - Group","hd":false},{"ind":9,"ty":"sh","ix":10,"ks":{"a":0,"k":{"i":[[0,-1.103],[-0.361,-0.527],[-0.647,-0.288],[-0.84,0],[-0.815,0.456],[-0.481,0.792],[0,1.032],[0,0],[0.817,0.168],[0.72,0],[0.912,-0.648]],"o":[[0,0.697],[0.36,0.504],[0.649,0.288],[1.032,0],[0.84,-0.481],[0.479,-0.817],[0,0],[-0.792,-0.313],[-0.792,-0.192],[-1.584,0],[-0.888,0.648]],"v":[[100.418,4.175],[100.958,6.011],[102.469,7.2],[104.702,7.632],[107.473,6.948],[109.454,5.04],[110.173,2.267],[110.173,1.584],[107.762,0.864],[105.494,0.576],[101.75,1.548]],"c":true},"ix":2},"nm":"Path 31","mn":"ADBE Vector Shape - Group","hd":false},{"ind":10,"ty":"sh","ix":11,"ks":{"a":0,"k":{"i":[[1.391,0],[1.008,0.479],[0.576,0.864],[0,1.128],[-0.624,0.888],[-1.151,0.481],[-1.537,0],[-0.887,-0.191],[-0.696,-0.311],[0,0],[0.408,0.744],[0.695,0.409],[0.935,0],[0.839,-0.528],[0.408,-0.959],[0,0],[-0.696,0.696],[-0.985,0.383],[-1.152,0],[-1.105,-0.647],[-0.599,-1.151],[0,-1.536],[0,0],[0,0],[0,0],[1.08,-0.623]],"o":[[-1.296,0],[-1.008,-0.504],[-0.552,-0.863],[0,-1.225],[0.649,-0.889],[1.153,-0.504],[0.864,0],[0.888,0.193],[0,0],[0,-1.009],[-0.384,-0.767],[-0.696,-0.431],[-1.128,0],[-0.817,0.527],[0,0],[0.337,-0.96],[0.72,-0.696],[1.007,-0.384],[1.487,0],[1.128,0.624],[0.624,1.128],[0,0],[0,0],[0,0],[-0.529,1.032],[-1.056,0.624]],"v":[[104.163,10.044],[100.707,9.324],[98.33,7.271],[97.502,4.284],[98.437,1.116],[101.137,-0.937],[105.171,-1.693],[107.797,-1.405],[110.173,-0.649],[110.173,-2.016],[109.561,-4.645],[107.942,-6.409],[105.494,-7.056],[102.543,-6.264],[100.707,-4.033],[98.185,-4.897],[99.734,-7.38],[102.29,-9],[105.53,-9.576],[109.418,-8.605],[112.009,-5.941],[112.947,-1.945],[112.947,9.504],[110.426,9.504],[110.246,6.624],[107.835,9.107]],"c":true},"ix":2},"nm":"Path 32","mn":"ADBE Vector Shape - Group","hd":false},{"ind":11,"ty":"sh","ix":12,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[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],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[74.528,9.504],[68.263,-9.073],[71.288,-9.073],[75.931,5.975],[80.72,-9.073],[83.311,-9.073],[88.064,5.975],[92.708,-9.073],[95.66,-9.073],[89.395,9.504],[86.624,9.504],[81.979,-5.365],[77.299,9.504]],"c":true},"ix":2},"nm":"Path 33","mn":"ADBE Vector Shape - Group","hd":false},{"ind":12,"ty":"sh","ix":13,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[62.225,-17.208],[65.106,-17.208],[65.106,9.504],[62.225,9.504]],"c":true},"ix":2},"nm":"Path 34","mn":"ADBE Vector Shape - Group","hd":false},{"ind":13,"ty":"sh","ix":14,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[62.225,9.504]],"c":false},"ix":2},"nm":"Path 35","mn":"ADBE Vector Shape - Group","hd":false},{"ind":14,"ty":"sh","ix":15,"ks":{"a":0,"k":{"i":[[0,-1.103],[-0.359,-0.527],[-0.647,-0.288],[-0.84,0],[-0.815,0.456],[-0.481,0.792],[0,1.032],[0,0],[0.817,0.168],[0.719,0],[0.913,-0.648]],"o":[[0,0.697],[0.361,0.504],[0.649,0.288],[1.032,0],[0.841,-0.481],[0.48,-0.817],[0,0],[-0.792,-0.313],[-0.792,-0.192],[-1.584,0],[-0.887,0.648]],"v":[[44.801,4.175],[45.34,6.011],[46.853,7.2],[49.085,7.632],[51.856,6.948],[53.837,5.04],[54.556,2.267],[54.556,1.584],[52.145,0.864],[49.877,0.576],[46.132,1.548]],"c":true},"ix":2},"nm":"Path 36","mn":"ADBE Vector Shape - Group","hd":false},{"ind":15,"ty":"sh","ix":16,"ks":{"a":0,"k":{"i":[[1.391,0],[1.007,0.479],[0.576,0.864],[0,1.128],[-0.624,0.888],[-1.151,0.481],[-1.536,0],[-0.887,-0.191],[-0.695,-0.311],[0,0],[0.407,0.744],[0.695,0.409],[0.935,0],[0.84,-0.528],[0.408,-0.959],[0,0],[-0.696,0.696],[-0.984,0.383],[-1.153,0],[-1.103,-0.647],[-0.599,-1.151],[0,-1.536],[0,0],[0,0],[0,0],[1.081,-0.623]],"o":[[-1.296,0],[-1.008,-0.504],[-0.552,-0.863],[0,-1.225],[0.647,-0.889],[1.152,-0.504],[0.865,0],[0.889,0.193],[0,0],[0,-1.009],[-0.385,-0.767],[-0.696,-0.431],[-1.128,0],[-0.815,0.527],[0,0],[0.336,-0.96],[0.72,-0.696],[1.008,-0.384],[1.488,0],[1.128,0.624],[0.624,1.128],[0,0],[0,0],[0,0],[-0.529,1.032],[-1.055,0.624]],"v":[[48.546,10.044],[45.09,9.324],[42.713,7.271],[41.884,4.284],[42.822,1.116],[45.52,-0.937],[49.552,-1.693],[52.181,-1.405],[54.556,-0.649],[54.556,-2.016],[53.945,-4.645],[52.325,-6.409],[49.877,-7.056],[46.924,-6.264],[45.09,-4.033],[42.569,-4.897],[44.117,-7.38],[46.672,-9],[49.913,-9.576],[53.801,-8.605],[56.392,-5.941],[57.329,-1.945],[57.329,9.504],[54.809,9.504],[54.629,6.624],[52.216,9.107]],"c":true},"ix":2},"nm":"Path 37","mn":"ADBE Vector Shape - Group","hd":false},{"ind":16,"ty":"sh","ix":17,"ks":{"a":0,"k":{"i":[[0.936,-0.385],[0,0],[-0.552,0.744],[0,0.889],[0.191,0.407],[0.431,0],[0.359,0.36],[0,0.504],[-0.191,0.288],[-0.311,0.168],[-0.385,0],[-0.479,-0.408],[-0.289,-0.672],[0,-0.815],[0.36,-0.792],[0.696,-0.647]],"o":[[0,0],[0.96,-0.456],[0.576,-0.745],[0,-0.527],[-0.265,0.287],[-0.481,0],[-0.337,-0.361],[0,-0.336],[0.193,-0.288],[0.313,-0.168],[0.6,0],[0.481,0.384],[0.288,0.647],[0,0.912],[-0.359,0.815],[-0.672,0.649]],"v":[[26.651,15.984],[25.859,14.219],[28.127,12.42],[28.991,9.971],[28.703,8.568],[27.66,9],[26.4,8.46],[25.895,7.164],[26.182,6.227],[26.939,5.544],[27.983,5.292],[29.603,5.904],[30.755,7.488],[31.186,9.683],[30.647,12.24],[29.062,14.435]],"c":true},"ix":2},"nm":"Path 38","mn":"ADBE Vector Shape - Group","hd":false},{"ind":17,"ty":"sh","ix":18,"ks":{"a":0,"k":{"i":[[-0.911,0],[-0.745,0.36],[-0.552,0.623],[-0.311,0.864],[0,1.055],[0.313,0.864],[0.576,0.623],[0.767,0.361],[0.912,0],[0.767,-0.359],[0.576,-0.648],[0.313,-0.888],[0,-1.056],[-0.311,-0.888],[-0.552,-0.648],[-0.744,-0.361]],"o":[[0.912,0],[0.767,-0.361],[0.576,-0.648],[0.313,-0.888],[0,-1.056],[-0.311,-0.888],[-0.552,-0.648],[-0.745,-0.359],[-0.911,0],[-0.744,0.361],[-0.552,0.623],[-0.311,0.864],[0,1.055],[0.313,0.864],[0.576,0.623],[0.767,0.36]],"v":[[12.392,7.416],[14.877,6.876],[16.856,5.4],[18.189,3.132],[18.658,0.216],[18.189,-2.664],[16.856,-4.932],[14.877,-6.445],[12.392,-6.985],[9.874,-6.445],[7.892,-4.932],[6.596,-2.664],[6.129,0.216],[6.596,3.132],[7.892,5.4],[9.874,6.876]],"c":true},"ix":2},"nm":"Path 39","mn":"ADBE Vector Shape - Group","hd":false},{"ind":18,"ty":"sh","ix":19,"ks":{"a":0,"k":{"i":[[1.513,0],[1.057,0.479],[0.792,0.888],[0.456,1.177],[0,1.391],[-0.433,1.199],[-0.792,0.889],[-1.08,0.504],[-1.248,0],[-1.128,-0.648],[-0.672,-1.175],[0,0],[0,0],[0,0],[0,0],[0,0],[1.2,-0.72]],"o":[[-1.223,0],[-1.055,-0.504],[-0.792,-0.889],[-0.433,-1.2],[0,-1.392],[0.456,-1.2],[0.815,-0.888],[1.08,-0.504],[1.416,0],[1.153,0.648],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.672,1.273],[-1.176,0.719]],"v":[[11.888,10.044],[8.468,9.324],[5.697,7.236],[3.825,4.139],[3.176,0.252],[3.825,-3.636],[5.697,-6.769],[8.541,-8.857],[12.033,-9.613],[15.848,-8.64],[18.585,-5.905],[18.585,-17.208],[21.465,-17.208],[21.465,9.504],[18.874,9.504],[18.728,5.975],[15.921,8.964]],"c":true},"ix":2},"nm":"Path 40","mn":"ADBE Vector Shape - Group","hd":false},{"ind":19,"ty":"sh","ix":20,"ks":{"a":0,"k":{"i":[[0.984,0],[0.816,-0.479],[0.552,-0.863],[0.168,-1.128],[0,0],[0.503,0.841],[0.792,0.481]],"o":[[-0.984,0],[-0.792,0.481],[-0.528,0.841],[0,0],[-0.095,-1.128],[-0.504,-0.863],[-0.792,-0.479]],"v":[[-8.709,-7.128],[-11.41,-6.409],[-13.425,-4.393],[-14.47,-1.441],[-3.202,-1.441],[-4.1,-4.393],[-6.045,-6.409]],"c":true},"ix":2},"nm":"Path 41","mn":"ADBE Vector Shape - Group","hd":false},{"ind":20,"ty":"sh","ix":21,"ks":{"a":0,"k":{"i":[[1.128,0],[1.152,0.479],[0.841,0.865],[0.456,1.175],[0,1.439],[-0.433,1.176],[-0.792,0.889],[-1.079,0.481],[-1.272,0],[-1.031,-0.455],[-0.768,-0.815],[-0.407,-1.128],[0,-1.319],[0,0],[0,0],[-0.527,-1.009],[-0.912,-0.553],[-1.201,0],[-0.865,0.481],[-0.624,0.96],[0,0],[0.769,-0.648],[1.009,-0.336]],"o":[[-1.367,0],[-1.128,-0.481],[-0.839,-0.887],[-0.456,-1.201],[0,-1.416],[0.456,-1.2],[0.816,-0.888],[1.08,-0.504],[1.224,0],[1.057,0.456],[0.767,0.817],[0.433,1.128],[0,0],[0,0],[0.097,1.343],[0.553,1.008],[0.912,0.552],[1.175,0],[0.887,-0.504],[0,0],[-0.48,0.912],[-0.768,0.647],[-0.983,0.36]],"v":[[-8.241,10.044],[-12.021,9.324],[-14.974,7.307],[-16.917,4.212],[-17.6,0.252],[-16.952,-3.636],[-15.081,-6.769],[-12.238,-8.821],[-8.709,-9.576],[-5.326,-8.893],[-2.589,-6.985],[-0.826,-4.069],[-0.178,-0.397],[-0.178,0.792],[-14.613,0.792],[-13.678,4.32],[-11.48,6.66],[-8.313,7.488],[-5.253,6.767],[-2.985,4.572],[-0.537,5.687],[-2.41,8.028],[-5.074,9.504]],"c":true},"ix":2},"nm":"Path 42","mn":"ADBE Vector Shape - Group","hd":false},{"ind":21,"ty":"sh","ix":22,"ks":{"a":0,"k":{"i":[[-0.911,0],[-0.744,0.36],[-0.553,0.623],[-0.312,0.864],[0,1.055],[0.312,0.864],[0.575,0.623],[0.768,0.361],[0.912,0],[0.767,-0.359],[0.577,-0.648],[0.312,-0.888],[0,-1.056],[-0.312,-0.888],[-0.551,-0.648],[-0.744,-0.361]],"o":[[0.912,0],[0.768,-0.361],[0.575,-0.648],[0.312,-0.888],[0,-1.056],[-0.312,-0.888],[-0.553,-0.648],[-0.744,-0.359],[-0.911,0],[-0.744,0.361],[-0.551,0.623],[-0.312,0.864],[0,1.055],[0.312,0.864],[0.577,0.623],[0.767,0.36]],"v":[[-30.78,7.416],[-28.295,6.876],[-26.314,5.4],[-24.983,3.132],[-24.514,0.216],[-24.983,-2.664],[-26.314,-4.932],[-28.295,-6.445],[-30.78,-6.985],[-33.298,-6.445],[-35.28,-4.932],[-36.576,-2.664],[-37.043,0.216],[-36.576,3.132],[-35.28,5.4],[-33.298,6.876]],"c":true},"ix":2},"nm":"Path 43","mn":"ADBE Vector Shape - Group","hd":false},{"ind":22,"ty":"sh","ix":23,"ks":{"a":0,"k":{"i":[[1.513,0],[1.056,0.479],[0.792,0.888],[0.457,1.177],[0,1.391],[-0.432,1.199],[-0.792,0.889],[-1.08,0.504],[-1.248,0],[-1.128,-0.648],[-0.673,-1.175],[0,0],[0,0],[0,0],[0,0],[0,0],[1.199,-0.72]],"o":[[-1.223,0],[-1.057,-0.504],[-0.792,-0.889],[-0.432,-1.2],[0,-1.392],[0.457,-1.2],[0.815,-0.888],[1.079,-0.504],[1.416,0],[1.153,0.648],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.673,1.273],[-1.177,0.719]],"v":[[-31.284,10.044],[-34.702,9.324],[-37.475,7.236],[-39.348,4.139],[-39.995,0.252],[-39.348,-3.636],[-37.475,-6.769],[-34.631,-8.857],[-31.139,-9.613],[-27.324,-8.64],[-24.587,-5.905],[-24.587,-17.208],[-21.707,-17.208],[-21.707,9.504],[-24.298,9.504],[-24.443,5.975],[-27.251,8.964]],"c":true},"ix":2},"nm":"Path 44","mn":"ADBE Vector Shape - Group","hd":false},{"ind":23,"ty":"sh","ix":24,"ks":{"a":0,"k":{"i":[[1.584,0],[1.152,0.696],[0.624,1.272],[0,1.777],[0,0],[0,0],[0,0],[-0.385,-0.887],[-0.721,-0.48],[-1.008,0],[-0.719,0.479],[-0.385,0.889],[0,1.225],[0,0],[0,0],[0,0],[0.648,-1.296],[1.177,-0.72]],"o":[[-1.584,0],[-1.153,-0.697],[-0.624,-1.296],[0,0],[0,0],[0,0],[0,1.225],[0.407,0.889],[0.744,0.479],[1.007,0],[0.745,-0.48],[0.407,-0.887],[0,0],[0,0],[0,0],[0,1.729],[-0.648,1.296],[-1.175,0.696]],"v":[[-51.819,10.044],[-55.923,9],[-58.587,6.048],[-59.522,1.439],[-59.522,-9.073],[-56.642,-9.073],[-56.642,1.475],[-56.066,4.643],[-54.374,6.696],[-51.746,7.416],[-49.155,6.696],[-47.462,4.643],[-46.85,1.475],[-46.85,-9.073],[-43.972,-9.073],[-43.972,1.439],[-44.943,5.975],[-47.68,9]],"c":true},"ix":2},"nm":"Path 45","mn":"ADBE Vector Shape - Group","hd":false},{"ind":24,"ty":"sh","ix":25,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-67.29,-17.208],[-64.41,-17.208],[-64.41,9.504],[-67.29,9.504]],"c":true},"ix":2},"nm":"Path 46","mn":"ADBE Vector Shape - Group","hd":false},{"ind":25,"ty":"sh","ix":26,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[-67.29,9.504]],"c":false},"ix":2},"nm":"Path 47","mn":"ADBE Vector Shape - Group","hd":false},{"ind":26,"ty":"sh","ix":27,"ks":{"a":0,"k":{"i":[[1.153,0],[1.08,0.479],[0.817,0.865],[0.456,1.175],[0,1.392],[-0.456,1.201],[-0.816,0.912],[-1.104,0.504],[-1.295,0],[-0.96,-0.433],[-0.697,-0.744],[-0.384,-0.96],[0,0],[0.841,0.576],[1.056,0],[0.719,-0.383],[0.553,-0.647],[0.312,-0.912],[0,-1.032],[-0.289,-0.865],[-0.529,-0.647],[-0.719,-0.361],[-0.863,0],[-0.911,0.551],[-0.48,1.007],[0,0],[0.792,-0.744],[1.055,-0.408]],"o":[[-1.272,0],[-1.08,-0.481],[-0.816,-0.887],[-0.432,-1.176],[0,-1.393],[0.455,-1.223],[0.815,-0.912],[1.104,-0.504],[1.201,0],[0.984,0.431],[0.719,0.745],[0,0],[-0.528,-1.008],[-0.84,-0.577],[-0.864,0],[-0.721,0.361],[-0.551,0.649],[-0.289,0.888],[0,1.031],[0.312,0.864],[0.528,0.624],[0.744,0.336],[1.104,0],[0.936,-0.577],[0,0],[-0.384,1.008],[-0.768,0.72],[-1.032,0.409]],"v":[[-78.951,10.044],[-82.478,9.324],[-85.323,7.307],[-87.23,4.212],[-87.878,0.36],[-87.194,-3.529],[-85.285,-6.733],[-82.407,-8.857],[-78.806,-9.613],[-75.566,-8.964],[-73.046,-7.201],[-71.389,-4.645],[-74.017,-3.744],[-76.071,-6.12],[-78.913,-6.985],[-81.29,-6.409],[-83.199,-4.897],[-84.493,-2.556],[-84.926,0.324],[-84.493,3.168],[-83.233,5.435],[-81.363,6.912],[-78.951,7.416],[-75.926,6.588],[-73.803,4.212],[-71.173,5.112],[-72.938,7.74],[-75.673,9.431]],"c":true},"ix":2},"nm":"Path 48","mn":"ADBE Vector Shape - Group","hd":false},{"ind":27,"ty":"sh","ix":28,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.032,0.624],[-1.369,0],[-1.057,-0.672],[-0.553,-1.248],[0,-1.68],[0,0],[0,0],[0,0],[0.816,1.008],[1.488,0],[0.815,-0.48],[0.456,-0.839],[0,-1.057],[0,0]],"o":[[0,0],[0,0],[0,0],[0.553,-1.056],[1.056,-0.648],[1.416,0],[1.056,0.673],[0.575,1.224],[0,0],[0,0],[0,0],[0,-1.847],[-0.792,-1.009],[-1.032,0],[-0.792,0.455],[-0.457,0.817],[0,0],[0,0]],"v":[[-107.579,9.504],[-107.579,-9.073],[-104.988,-9.073],[-104.844,-6.12],[-102.467,-8.64],[-98.831,-9.613],[-95.123,-8.605],[-92.711,-5.724],[-91.848,-1.368],[-91.848,9.504],[-94.727,9.504],[-94.727,-1.189],[-95.952,-5.472],[-99.371,-6.985],[-102.142,-6.264],[-104.014,-4.321],[-104.699,-1.512],[-104.699,9.504]],"c":true},"ix":2},"nm":"Path 49","mn":"ADBE Vector Shape - Group","hd":false},{"ind":28,"ty":"sh","ix":29,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-115.49,-9.073],[-112.61,-9.073],[-112.61,9.503],[-115.49,9.503]],"c":true},"ix":2},"nm":"Path 50","mn":"ADBE Vector Shape - Group","hd":false},{"ind":29,"ty":"sh","ix":30,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[-115.49,9.504]],"c":false},"ix":2},"nm":"Path 51","mn":"ADBE Vector Shape - Group","hd":false},{"ind":30,"ty":"sh","ix":31,"ks":{"a":0,"k":{"i":[[0,-0.36],[0.192,-0.313],[0.313,-0.191],[0.36,0],[0.312,0.168],[0.192,0.288],[0,0.359],[-0.169,0.288],[-0.289,0.168],[-0.361,0],[-0.288,-0.192],[-0.168,-0.311]],"o":[[0,0.359],[-0.168,0.288],[-0.288,0.168],[-0.361,0],[-0.289,-0.191],[-0.169,-0.313],[0,-0.36],[0.192,-0.311],[0.312,-0.192],[0.36,0],[0.313,0.168],[0.192,0.288]],"v":[[-112.069,-14.508],[-112.357,-13.5],[-113.077,-12.781],[-114.048,-12.529],[-115.056,-12.781],[-115.777,-13.5],[-116.03,-14.508],[-115.777,-15.481],[-115.056,-16.201],[-114.048,-16.489],[-113.077,-16.201],[-112.357,-15.481]],"c":true},"ix":2},"nm":"Path 52","mn":"ADBE Vector Shape - Group","hd":false},{"ind":31,"ty":"sh","ix":32,"ks":{"a":0,"k":{"i":[[1.007,0],[0.96,0.36],[0.696,0.672],[0.36,0.912],[0,0],[-0.768,-0.504],[-0.984,0],[-0.601,0.263],[-0.337,0.456],[0,0.576],[2.257,0.456],[0,0],[0.936,0.863],[0,1.345],[-0.552,0.84],[-0.985,0.456],[-1.272,0],[-0.889,-0.359],[-0.624,-0.672],[-0.337,-0.912],[0,0],[0.719,0.479],[0.936,0],[0.552,-0.239],[0.312,-0.408],[0,-0.552],[-0.577,-0.456],[-1.319,-0.263],[0,0],[-0.936,-0.913],[0,-1.391],[0.36,-0.719],[0.624,-0.527],[0.863,-0.288]],"o":[[-1.08,0],[-0.936,-0.361],[-0.696,-0.672],[0,0],[0.48,0.912],[0.768,0.504],[0.792,0],[0.6,-0.264],[0.336,-0.48],[0,-1.56],[0,0],[-1.969,-0.385],[-0.936,-0.889],[0,-1.08],[0.552,-0.839],[1.008,-0.479],[1.056,0],[0.887,0.336],[0.648,0.673],[0,0],[-0.384,-0.887],[-0.697,-0.504],[-0.72,0],[-0.529,0.24],[-0.312,0.408],[0,0.769],[0.6,0.456],[0,0],[1.776,0.361],[0.936,0.887],[0,0.865],[-0.337,0.697],[-0.599,0.529],[-0.84,0.288]],"v":[[-134.124,10.044],[-137.184,9.504],[-139.632,7.956],[-141.217,5.58],[-138.624,4.643],[-136.753,6.767],[-134.124,7.523],[-132.037,7.128],[-130.633,6.048],[-130.129,4.464],[-133.514,1.439],[-134.916,1.152],[-139.272,-0.72],[-140.678,-4.069],[-139.848,-6.949],[-137.545,-8.893],[-134.124,-9.613],[-131.209,-9.073],[-128.941,-7.561],[-127.465,-5.184],[-130.056,-4.321],[-131.712,-6.372],[-134.16,-7.128],[-136.069,-6.769],[-137.329,-5.796],[-137.796,-4.357],[-136.933,-2.521],[-134.053,-1.441],[-132.649,-1.153],[-128.581,0.756],[-127.178,4.175],[-127.717,6.551],[-129.158,8.387],[-131.353,9.612]],"c":true},"ix":2},"nm":"Path 53","mn":"ADBE Vector Shape - Group","hd":false},{"ind":32,"ty":"sh","ix":33,"ks":{"a":0,"k":{"i":[[1.32,0],[0.433,0.119],[0.456,0.24],[0,0],[-0.288,-0.073],[-0.336,0],[-0.551,0.481],[-0.409,1.008],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.96,-0.767]],"o":[[-0.504,0],[-0.431,-0.097],[0,0],[0.241,0.145],[0.312,0.072],[0.744,0],[0.577,-0.456],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.624,1.631],[-0.96,0.792]],"v":[[-157.251,17.208],[-158.657,17.028],[-159.988,16.523],[-159.16,14.219],[-158.368,14.544],[-157.395,14.652],[-155.452,13.931],[-153.975,11.736],[-153.004,9.324],[-160.707,-9.073],[-157.54,-9.073],[-151.6,6.191],[-146.236,-9.073],[-143.176,-9.073],[-151.455,12.42],[-153.832,16.019]],"c":true},"ix":2},"nm":"Path 54","mn":"ADBE Vector Shape - Group","hd":false},{"ind":33,"ty":"sh","ix":34,"ks":{"a":0,"k":{"i":[[0,-1.103],[-0.359,-0.527],[-0.648,-0.288],[-0.84,0],[-0.816,0.456],[-0.48,0.792],[0,1.032],[0,0],[0.816,0.168],[0.72,0],[0.913,-0.648]],"o":[[0,0.697],[0.361,0.504],[0.648,0.288],[1.032,0],[0.839,-0.481],[0.48,-0.817],[0,0],[-0.792,-0.313],[-0.792,-0.192],[-1.584,0],[-0.887,0.648]],"v":[[-175.7,4.175],[-175.16,6.011],[-173.646,7.2],[-171.415,7.632],[-168.642,6.948],[-166.663,5.04],[-165.942,2.267],[-165.942,1.584],[-168.355,0.864],[-170.623,0.576],[-174.368,1.548]],"c":true},"ix":2},"nm":"Path 55","mn":"ADBE Vector Shape - Group","hd":false},{"ind":34,"ty":"sh","ix":35,"ks":{"a":0,"k":{"i":[[1.392,0],[1.008,0.479],[0.576,0.864],[0,1.128],[-0.624,0.888],[-1.152,0.481],[-1.535,0],[-0.888,-0.191],[-0.697,-0.311],[0,0],[0.409,0.744],[0.696,0.409],[0.936,0],[0.841,-0.528],[0.408,-0.959],[0,0],[-0.696,0.696],[-0.983,0.383],[-1.153,0],[-1.104,-0.647],[-0.6,-1.151],[0,-1.536],[0,0],[0,0],[0,0],[1.081,-0.623]],"o":[[-1.296,0],[-1.008,-0.504],[-0.552,-0.863],[0,-1.225],[0.648,-0.889],[1.151,-0.504],[0.865,0],[0.887,0.193],[0,0],[0,-1.009],[-0.383,-0.767],[-0.696,-0.431],[-1.128,0],[-0.815,0.527],[0,0],[0.336,-0.96],[0.72,-0.696],[1.009,-0.384],[1.488,0],[1.128,0.624],[0.624,1.128],[0,0],[0,0],[0,0],[-0.528,1.032],[-1.055,0.624]],"v":[[-171.955,10.044],[-175.411,9.324],[-177.787,7.271],[-178.615,4.284],[-177.679,1.116],[-174.979,-0.937],[-170.947,-1.693],[-168.319,-1.405],[-165.942,-0.649],[-165.942,-2.016],[-166.556,-4.645],[-168.175,-6.409],[-170.623,-7.056],[-173.576,-6.264],[-175.411,-4.033],[-177.932,-4.897],[-176.382,-7.38],[-173.827,-9],[-170.587,-9.576],[-166.699,-8.605],[-164.106,-5.941],[-163.171,-1.945],[-163.171,9.504],[-165.691,9.504],[-165.871,6.624],[-168.283,9.107]],"c":true},"ix":2},"nm":"Path 56","mn":"ADBE Vector Shape - Group","hd":false},{"ind":35,"ty":"sh","ix":36,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[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],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-201.589,9.504],[-207.852,-9.073],[-204.829,-9.073],[-200.184,5.975],[-195.396,-9.073],[-192.805,-9.073],[-188.054,5.975],[-183.41,-9.073],[-180.456,-9.073],[-186.722,9.504],[-189.494,9.504],[-194.137,-5.365],[-198.817,9.504]],"c":true},"ix":2},"nm":"Path 57","mn":"ADBE Vector Shape - Group","hd":false},{"ind":36,"ty":"sh","ix":37,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-213.891,-17.208],[-211.011,-17.208],[-211.011,9.504],[-213.891,9.504]],"c":true},"ix":2},"nm":"Path 58","mn":"ADBE Vector Shape - Group","hd":false},{"ind":37,"ty":"sh","ix":38,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[-213.891,9.504]],"c":false},"ix":2},"nm":"Path 59","mn":"ADBE Vector Shape - Group","hd":false},{"ind":38,"ty":"sh","ix":39,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-233.98,-0.54],[-224.439,-0.54],[-229.192,-12.708]],"c":true},"ix":2},"nm":"Path 60","mn":"ADBE Vector Shape - Group","hd":false},{"ind":39,"ty":"sh","ix":40,"ks":{"a":0,"k":{"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":[[-241.036,9.504],[-230.74,-16.056],[-227.536,-16.056],[-217.24,9.504],[-220.48,9.504],[-223.325,2.231],[-235.059,2.231],[-237.904,9.504]],"c":true},"ix":2},"nm":"Path 61","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.999998922909,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":[424.668,293.746],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":42,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":258,"op":1226,"st":13,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Layer 1 Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":272,"s":[0]},{"t":300.02734375,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":254,"s":[421.005,253.352,0],"to":[0,-12.333,0],"ti":[0,12.333,0]},{"t":334,"s":[421.005,179.352,0]}],"ix":2},"a":{"a":0,"k":[421.342,179.602,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.384,0],[0.336,0.191],[0.191,0.312],[0,0.408],[-0.193,0.311],[-0.313,0.191],[-0.384,0],[-0.313,-0.193],[-0.193,-0.336],[0,-0.408],[0.216,-0.337],[0.336,-0.192]],"o":[[-0.384,0],[-0.313,-0.192],[-0.193,-0.337],[0,-0.408],[0.191,-0.336],[0.336,-0.193],[0.384,0],[0.336,0.191],[0.216,0.311],[0,0.408],[-0.193,0.312],[-0.313,0.191]],"v":[[370.621,-38.388],[369.54,-38.676],[368.785,-39.432],[368.496,-40.548],[368.785,-41.628],[369.54,-42.42],[370.621,-42.708],[371.664,-42.42],[372.457,-41.628],[372.78,-40.548],[372.457,-39.432],[371.664,-38.676]],"c":true},"ix":2},"nm":"Path 62","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[361.053,-65.208],[363.934,-65.208],[363.934,-38.496],[361.053,-38.496]],"c":true},"ix":2},"nm":"Path 63","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[361.053,-38.496]],"c":false},"ix":2},"nm":"Path 64","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0.983,0],[0.816,-0.479],[0.552,-0.863],[0.168,-1.128],[0,0],[0.504,0.841],[0.792,0.481]],"o":[[-0.985,0],[-0.792,0.481],[-0.528,0.841],[0,0],[-0.096,-1.128],[-0.504,-0.863],[-0.792,-0.479]],"v":[[348.41,-55.128],[345.71,-54.409],[343.694,-52.393],[342.65,-49.441],[353.918,-49.441],[353.017,-52.393],[351.074,-54.409]],"c":true},"ix":2},"nm":"Path 65","mn":"ADBE Vector Shape - Group","hd":false},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[1.128,0],[1.153,0.479],[0.841,0.865],[0.456,1.175],[0,1.44],[-0.432,1.176],[-0.792,0.889],[-1.08,0.481],[-1.273,0],[-1.033,-0.455],[-0.769,-0.815],[-0.409,-1.128],[0,-1.319],[0,0],[0,0],[-0.527,-1.009],[-0.912,-0.553],[-1.2,0],[-0.864,0.481],[-0.624,0.96],[0,0],[0.767,-0.648],[1.007,-0.336]],"o":[[-1.369,0],[-1.128,-0.481],[-0.84,-0.887],[-0.456,-1.201],[0,-1.416],[0.456,-1.2],[0.815,-0.888],[1.081,-0.504],[1.223,0],[1.055,0.456],[0.768,0.817],[0.431,1.128],[0,0],[0,0],[0.095,1.343],[0.553,1.008],[0.912,0.552],[1.177,0],[0.888,-0.504],[0,0],[-0.481,0.912],[-0.769,0.647],[-0.985,0.36]],"v":[[348.877,-37.956],[345.096,-38.676],[342.145,-40.693],[340.202,-43.788],[339.517,-47.748],[340.165,-51.636],[342.038,-54.769],[344.88,-56.821],[348.41,-57.576],[351.793,-56.893],[354.53,-54.985],[356.293,-52.069],[356.94,-48.397],[356.94,-47.208],[342.505,-47.208],[343.44,-43.68],[345.637,-41.34],[348.804,-40.512],[351.866,-41.233],[354.132,-43.428],[356.582,-42.313],[354.71,-39.972],[352.046,-38.496]],"c":true},"ix":2},"nm":"Path 66","mn":"ADBE Vector Shape - Group","hd":false},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[327.431,-38.496],[320.16,-57.073],[323.327,-57.073],[328.978,-41.592],[334.63,-57.073],[337.69,-57.073],[330.419,-38.496]],"c":true},"ix":2},"nm":"Path 67","mn":"ADBE Vector Shape - Group","hd":false},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[0,-1.103],[-0.361,-0.527],[-0.647,-0.288],[-0.84,0],[-0.815,0.456],[-0.481,0.792],[0,1.032],[0,0],[0.817,0.168],[0.72,0],[0.912,-0.648]],"o":[[0,0.697],[0.36,0.504],[0.649,0.288],[1.032,0],[0.84,-0.481],[0.479,-0.817],[0,0],[-0.792,-0.313],[-0.792,-0.192],[-1.584,0],[-0.888,0.648]],"v":[[305.168,-43.825],[305.708,-41.989],[307.22,-40.8],[309.452,-40.368],[312.223,-41.052],[314.204,-42.96],[314.923,-45.733],[314.923,-46.416],[312.512,-47.136],[310.244,-47.424],[306.501,-46.452]],"c":true},"ix":2},"nm":"Path 68","mn":"ADBE Vector Shape - Group","hd":false},{"ind":7,"ty":"sh","ix":8,"ks":{"a":0,"k":{"i":[[1.391,0],[1.008,0.479],[0.576,0.864],[0,1.128],[-0.624,0.888],[-1.151,0.481],[-1.537,0],[-0.887,-0.191],[-0.696,-0.311],[0,0],[0.408,0.744],[0.695,0.409],[0.935,0],[0.839,-0.528],[0.408,-0.959],[0,0],[-0.696,0.695],[-0.985,0.383],[-1.152,0],[-1.105,-0.647],[-0.599,-1.151],[0,-1.536],[0,0],[0,0],[0,0],[1.08,-0.623]],"o":[[-1.296,0],[-1.008,-0.504],[-0.552,-0.863],[0,-1.225],[0.649,-0.889],[1.153,-0.504],[0.864,0],[0.888,0.193],[0,0],[0,-1.009],[-0.384,-0.767],[-0.696,-0.431],[-1.128,0],[-0.817,0.527],[0,0],[0.337,-0.96],[0.72,-0.696],[1.007,-0.384],[1.487,0],[1.128,0.624],[0.624,1.128],[0,0],[0,0],[0,0],[-0.529,1.032],[-1.056,0.624]],"v":[[308.913,-37.956],[305.457,-38.676],[303.08,-40.729],[302.252,-43.716],[303.187,-46.884],[305.887,-48.937],[309.921,-49.693],[312.548,-49.405],[314.923,-48.649],[314.923,-50.016],[314.311,-52.645],[312.692,-54.409],[310.244,-55.056],[307.293,-54.264],[305.457,-52.033],[302.936,-52.897],[304.484,-55.38],[307.04,-57],[310.28,-57.576],[314.168,-56.605],[316.759,-53.941],[317.697,-49.945],[317.697,-38.496],[315.176,-38.496],[314.996,-41.376],[312.585,-38.893]],"c":true},"ix":2},"nm":"Path 69","mn":"ADBE Vector Shape - Group","hd":false},{"ind":8,"ty":"sh","ix":9,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.912,0.649],[-1.224,0],[-0.312,-0.072],[-0.24,-0.096],[0,0],[0.288,0.025],[0.288,0],[0.768,-0.504],[0.433,-0.936],[0,-1.248],[0,0]],"o":[[0,0],[0,0],[0,0],[0.456,-1.152],[0.913,-0.672],[0.408,0],[0.336,0.048],[0,0],[-0.263,-0.097],[-0.288,-0.047],[-1.008,0],[-0.744,0.504],[-0.408,0.911],[0,0],[0,0]],"v":[[290.143,-38.496],[290.143,-57.073],[292.736,-57.073],[292.916,-53.617],[294.967,-56.317],[298.173,-57.325],[299.252,-57.216],[300.116,-57],[299.755,-54.264],[298.927,-54.445],[298.064,-54.516],[295.4,-53.76],[293.635,-51.6],[293.025,-48.361],[293.025,-38.496]],"c":true},"ix":2},"nm":"Path 70","mn":"ADBE Vector Shape - Group","hd":false},{"ind":9,"ty":"sh","ix":10,"ks":{"a":0,"k":{"i":[[0.84,0],[0.816,0.455],[0.456,0.888],[0,1.273],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.456,-0.624],[-0.961,0],[-0.504,0.144],[-0.408,0.263],[0,0],[0.672,-0.216]],"o":[[-1.129,0],[-0.816,-0.456],[-0.433,-0.887],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.103],[0.479,0.601],[0.504,0],[0.527,-0.168],[0,0],[-0.504,0.359],[-0.672,0.241]],"v":[[282.397,-37.956],[279.481,-38.64],[277.574,-40.657],[276.924,-43.897],[276.924,-54.624],[273.505,-54.624],[273.505,-57.073],[276.924,-57.073],[276.924,-63.3],[279.804,-63.3],[279.804,-57.073],[285.637,-57.073],[285.637,-54.624],[279.804,-54.624],[279.804,-44.04],[280.489,-41.449],[282.65,-40.548],[284.161,-40.764],[285.565,-41.412],[286.428,-39.18],[284.665,-38.317]],"c":true},"ix":2},"nm":"Path 71","mn":"ADBE Vector Shape - Group","hd":false},{"ind":10,"ty":"sh","ix":11,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.032,0.624],[-1.367,0],[-1.055,-0.672],[-0.551,-1.248],[0,-1.68],[0,0],[0,0],[0,0],[0.815,1.008],[1.488,0],[0.815,-0.48],[0.456,-0.839],[0,-1.057],[0,0]],"o":[[0,0],[0,0],[0,0],[0.552,-1.056],[1.056,-0.648],[1.416,0],[1.057,0.673],[0.576,1.224],[0,0],[0,0],[0,0],[0,-1.847],[-0.793,-1.009],[-1.031,0],[-0.792,0.456],[-0.456,0.817],[0,0],[0,0]],"v":[[246.936,-38.496],[246.936,-57.073],[249.53,-57.073],[249.672,-54.12],[252.048,-56.64],[255.684,-57.613],[259.392,-56.605],[261.804,-53.724],[262.669,-49.368],[262.669,-38.496],[259.789,-38.496],[259.789,-49.189],[258.565,-53.472],[255.145,-54.985],[252.374,-54.264],[250.501,-52.321],[249.817,-49.512],[249.817,-38.496]],"c":true},"ix":2},"nm":"Path 72","mn":"ADBE Vector Shape - Group","hd":false},{"ind":11,"ty":"sh","ix":12,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[239.027,-57.073],[241.908,-57.073],[241.908,-38.497],[239.027,-38.497]],"c":true},"ix":2},"nm":"Path 73","mn":"ADBE Vector Shape - Group","hd":false},{"ind":12,"ty":"sh","ix":13,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[239.027,-38.496]],"c":false},"ix":2},"nm":"Path 74","mn":"ADBE Vector Shape - Group","hd":false},{"ind":13,"ty":"sh","ix":14,"ks":{"a":0,"k":{"i":[[0,-0.36],[0.191,-0.313],[0.313,-0.191],[0.361,0],[0.311,0.168],[0.191,0.288],[0,0.359],[-0.168,0.288],[-0.288,0.168],[-0.36,0],[-0.287,-0.192],[-0.168,-0.311]],"o":[[0,0.359],[-0.168,0.288],[-0.287,0.168],[-0.36,0],[-0.288,-0.191],[-0.168,-0.313],[0,-0.36],[0.191,-0.311],[0.311,-0.192],[0.361,0],[0.313,0.168],[0.191,0.288]],"v":[[242.447,-62.508],[242.16,-61.5],[241.439,-60.781],[240.466,-60.529],[239.46,-60.781],[238.739,-61.5],[238.487,-62.508],[238.739,-63.481],[239.46,-64.201],[240.466,-64.489],[241.439,-64.201],[242.16,-63.481]],"c":true},"ix":2},"nm":"Path 75","mn":"ADBE Vector Shape - Group","hd":false},{"ind":14,"ty":"sh","ix":15,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.033,0.624],[-1.368,0],[-1.055,-0.672],[-0.551,-1.248],[0,-1.68],[0,0],[0,0],[0,0],[0.817,1.008],[1.489,0],[0.815,-0.48],[0.456,-0.839],[0,-1.057],[0,0]],"o":[[0,0],[0,0],[0,0],[0.551,-1.056],[1.055,-0.648],[1.416,0],[1.057,0.673],[0.577,1.224],[0,0],[0,0],[0,0],[0,-1.847],[-0.792,-1.009],[-1.032,0],[-0.792,0.456],[-0.456,0.817],[0,0],[0,0]],"v":[[210.514,-38.496],[210.514,-57.073],[213.106,-57.073],[213.251,-54.12],[215.627,-56.64],[219.262,-57.613],[222.97,-56.605],[225.382,-53.724],[226.247,-49.368],[226.247,-38.496],[223.367,-38.496],[223.367,-49.189],[222.142,-53.472],[218.723,-54.985],[215.952,-54.264],[214.079,-52.321],[213.395,-49.512],[213.395,-38.496]],"c":true},"ix":2},"nm":"Path 76","mn":"ADBE Vector Shape - Group","hd":false},{"ind":15,"ty":"sh","ix":16,"ks":{"a":0,"k":{"i":[[-0.912,0],[-0.744,0.36],[-0.551,0.623],[-0.312,0.864],[0,1.055],[0.312,0.864],[0.577,0.624],[0.768,0.361],[0.912,0],[0.769,-0.359],[0.576,-0.648],[0.311,-0.888],[0,-1.056],[-0.313,-0.888],[-0.552,-0.648],[-0.743,-0.361]],"o":[[0.912,0],[0.768,-0.361],[0.577,-0.648],[0.312,-0.888],[0,-1.056],[-0.312,-0.888],[-0.551,-0.648],[-0.744,-0.359],[-0.912,0],[-0.743,0.361],[-0.552,0.624],[-0.313,0.864],[0,1.055],[0.311,0.864],[0.576,0.623],[0.769,0.36]],"v":[[197.21,-40.584],[199.694,-41.124],[201.672,-42.6],[203.005,-44.868],[203.473,-47.784],[203.005,-50.664],[201.672,-52.932],[199.694,-54.445],[197.21,-54.985],[194.689,-54.445],[192.71,-52.932],[191.413,-50.664],[190.945,-47.784],[191.413,-44.868],[192.71,-42.6],[194.689,-41.124]],"c":true},"ix":2},"nm":"Path 77","mn":"ADBE Vector Shape - Group","hd":false},{"ind":16,"ty":"sh","ix":17,"ks":{"a":0,"k":{"i":[[1.321,0],[1.128,0.479],[0.839,0.864],[0.456,1.201],[0,1.416],[-0.456,1.2],[-0.817,0.863],[-1.128,0.481],[-1.321,0],[-1.104,-0.504],[-0.816,-0.889],[-0.456,-1.201],[0,-1.417],[0.479,-1.2],[0.84,-0.888],[1.128,-0.504]],"o":[[-1.32,0],[-1.104,-0.504],[-0.817,-0.888],[-0.456,-1.2],[0,-1.417],[0.481,-1.201],[0.84,-0.889],[1.128,-0.504],[1.32,0],[1.127,0.481],[0.839,0.863],[0.456,1.2],[0,1.416],[-0.456,1.201],[-0.815,0.864],[-1.128,0.479]],"v":[[197.172,-37.956],[193.501,-38.676],[190.585,-40.729],[188.676,-43.861],[187.993,-47.784],[188.676,-51.708],[190.621,-54.804],[193.573,-56.857],[197.246,-57.613],[200.882,-56.857],[203.797,-54.804],[205.741,-51.708],[206.424,-47.784],[205.705,-43.861],[203.76,-40.729],[200.845,-38.676]],"c":true},"ix":2},"nm":"Path 78","mn":"ADBE Vector Shape - Group","hd":false},{"ind":17,"ty":"sh","ix":18,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[181.018,-57.073],[183.9,-57.073],[183.9,-38.497],[181.018,-38.497]],"c":true},"ix":2},"nm":"Path 79","mn":"ADBE Vector Shape - Group","hd":false},{"ind":18,"ty":"sh","ix":19,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[181.018,-38.496]],"c":false},"ix":2},"nm":"Path 80","mn":"ADBE Vector Shape - Group","hd":false},{"ind":19,"ty":"sh","ix":20,"ks":{"a":0,"k":{"i":[[0,-0.36],[0.191,-0.313],[0.313,-0.191],[0.36,0],[0.311,0.168],[0.191,0.288],[0,0.359],[-0.169,0.288],[-0.288,0.168],[-0.361,0],[-0.288,-0.192],[-0.168,-0.311]],"o":[[0,0.359],[-0.168,0.288],[-0.288,0.168],[-0.361,0],[-0.288,-0.191],[-0.169,-0.313],[0,-0.36],[0.191,-0.311],[0.311,-0.192],[0.36,0],[0.313,0.168],[0.191,0.288]],"v":[[184.439,-62.508],[184.151,-61.5],[183.431,-60.781],[182.46,-60.529],[181.452,-60.781],[180.731,-61.5],[180.478,-62.508],[180.731,-63.481],[181.452,-64.201],[182.46,-64.489],[183.431,-64.201],[184.151,-63.481]],"c":true},"ix":2},"nm":"Path 81","mn":"ADBE Vector Shape - Group","hd":false},{"ind":20,"ty":"sh","ix":21,"ks":{"a":0,"k":{"i":[[0.84,0],[0.816,0.455],[0.456,0.888],[0,1.273],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.456,-0.624],[-0.961,0],[-0.504,0.144],[-0.408,0.263],[0,0],[0.672,-0.216]],"o":[[-1.129,0],[-0.816,-0.456],[-0.433,-0.887],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.103],[0.479,0.601],[0.504,0],[0.527,-0.168],[0,0],[-0.504,0.359],[-0.672,0.241]],"v":[[173.272,-37.956],[170.356,-38.64],[168.448,-40.657],[167.799,-43.897],[167.799,-54.624],[164.38,-54.624],[164.38,-57.073],[167.799,-57.073],[167.799,-63.3],[170.679,-63.3],[170.679,-57.073],[176.512,-57.073],[176.512,-54.624],[170.679,-54.624],[170.679,-44.04],[171.364,-41.449],[173.525,-40.548],[175.036,-40.764],[176.44,-41.412],[177.303,-39.18],[175.54,-38.317]],"c":true},"ix":2},"nm":"Path 82","mn":"ADBE Vector Shape - Group","hd":false},{"ind":21,"ty":"sh","ix":22,"ks":{"a":0,"k":{"i":[[1.151,0],[1.08,0.479],[0.815,0.865],[0.456,1.175],[0,1.392],[-0.456,1.201],[-0.815,0.912],[-1.105,0.504],[-1.296,0],[-0.96,-0.433],[-0.695,-0.744],[-0.384,-0.96],[0,0],[0.84,0.576],[1.057,0],[0.721,-0.383],[0.552,-0.647],[0.312,-0.912],[0,-1.032],[-0.288,-0.865],[-0.528,-0.647],[-0.721,-0.361],[-0.864,0],[-0.912,0.551],[-0.479,1.007],[0,0],[0.792,-0.744],[1.056,-0.408]],"o":[[-1.272,0],[-1.08,-0.481],[-0.816,-0.887],[-0.432,-1.176],[0,-1.393],[0.456,-1.223],[0.817,-0.912],[1.103,-0.504],[1.2,0],[0.983,0.431],[0.721,0.745],[0,0],[-0.529,-1.008],[-0.84,-0.577],[-0.863,0],[-0.72,0.361],[-0.553,0.649],[-0.288,0.888],[0,1.031],[0.312,0.864],[0.527,0.624],[0.743,0.336],[1.104,0],[0.937,-0.577],[0,0],[-0.383,1.008],[-0.769,0.72],[-1.032,0.409]],"v":[[154.734,-37.956],[151.207,-38.676],[148.362,-40.693],[146.454,-43.788],[145.806,-47.64],[146.491,-51.529],[148.397,-54.733],[151.278,-56.857],[154.879,-57.613],[158.118,-56.964],[160.637,-55.201],[162.294,-52.645],[159.666,-51.744],[157.614,-54.12],[154.77,-54.985],[152.393,-54.409],[150.486,-52.897],[149.19,-50.556],[148.757,-47.676],[149.19,-44.832],[150.45,-42.565],[152.322,-41.088],[154.734,-40.584],[157.757,-41.412],[159.882,-43.788],[162.509,-42.888],[160.746,-40.26],[158.009,-38.569]],"c":true},"ix":2},"nm":"Path 83","mn":"ADBE Vector Shape - Group","hd":false},{"ind":22,"ty":"sh","ix":23,"ks":{"a":0,"k":{"i":[[0.984,0],[0.817,-0.479],[0.551,-0.863],[0.168,-1.128],[0,0],[0.504,0.841],[0.792,0.481]],"o":[[-0.985,0],[-0.792,0.481],[-0.529,0.841],[0,0],[-0.095,-1.128],[-0.504,-0.863],[-0.792,-0.479]],"v":[[133.921,-55.128],[131.219,-54.409],[129.204,-52.393],[128.16,-49.441],[139.427,-49.441],[138.528,-52.393],[136.585,-54.409]],"c":true},"ix":2},"nm":"Path 84","mn":"ADBE Vector Shape - Group","hd":false},{"ind":23,"ty":"sh","ix":24,"ks":{"a":0,"k":{"i":[[1.128,0],[1.151,0.479],[0.84,0.865],[0.456,1.175],[0,1.44],[-0.431,1.176],[-0.791,0.889],[-1.08,0.481],[-1.273,0],[-1.031,-0.455],[-0.768,-0.815],[-0.408,-1.128],[0,-1.319],[0,0],[0,0],[-0.529,-1.009],[-0.911,-0.553],[-1.199,0],[-0.865,0.481],[-0.624,0.96],[0,0],[0.769,-0.648],[1.008,-0.336]],"o":[[-1.368,0],[-1.129,-0.481],[-0.841,-0.887],[-0.456,-1.201],[0,-1.416],[0.456,-1.2],[0.817,-0.888],[1.08,-0.504],[1.223,0],[1.057,0.456],[0.767,0.817],[0.433,1.128],[0,0],[0,0],[0.097,1.343],[0.552,1.008],[0.912,0.552],[1.177,0],[0.887,-0.504],[0,0],[-0.479,0.912],[-0.767,0.647],[-0.983,0.36]],"v":[[134.387,-37.956],[130.608,-38.676],[127.656,-40.693],[125.712,-43.788],[125.028,-47.748],[125.676,-51.636],[127.547,-54.769],[130.392,-56.821],[133.921,-57.576],[137.303,-56.893],[140.04,-54.985],[141.803,-52.069],[142.452,-48.397],[142.452,-47.208],[128.015,-47.208],[128.952,-43.68],[131.147,-41.34],[134.315,-40.512],[137.376,-41.233],[139.643,-43.428],[142.091,-42.313],[140.219,-39.972],[137.556,-38.496]],"c":true},"ix":2},"nm":"Path 85","mn":"ADBE Vector Shape - Group","hd":false},{"ind":24,"ty":"sh","ix":25,"ks":{"a":0,"k":{"i":[[0.84,0],[0.815,0.455],[0.456,0.888],[0,1.273],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.456,-0.624],[-0.96,0],[-0.504,0.144],[-0.408,0.263],[0,0],[0.671,-0.216]],"o":[[-1.129,0],[-0.816,-0.456],[-0.433,-0.887],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.103],[0.479,0.601],[0.504,0],[0.528,-0.168],[0,0],[-0.504,0.359],[-0.672,0.241]],"v":[[118.569,-37.956],[115.653,-38.64],[113.745,-40.657],[113.096,-43.897],[113.096,-54.624],[109.676,-54.624],[109.676,-57.073],[113.096,-57.073],[113.096,-63.3],[115.976,-63.3],[115.976,-57.073],[121.809,-57.073],[121.809,-54.624],[115.976,-54.624],[115.976,-44.04],[116.661,-41.449],[118.822,-40.548],[120.333,-40.764],[121.737,-41.412],[122.6,-39.18],[120.837,-38.317]],"c":true},"ix":2},"nm":"Path 86","mn":"ADBE Vector Shape - Group","hd":false},{"ind":25,"ty":"sh","ix":26,"ks":{"a":0,"k":{"i":[[-0.912,0],[-0.744,0.36],[-0.552,0.623],[-0.313,0.864],[0,1.055],[0.311,0.864],[0.576,0.624],[0.769,0.361],[0.912,0],[0.769,-0.359],[0.575,-0.648],[0.313,-0.888],[0,-1.056],[-0.311,-0.888],[-0.553,-0.648],[-0.744,-0.361]],"o":[[0.912,0],[0.769,-0.361],[0.576,-0.648],[0.311,-0.888],[0,-1.056],[-0.313,-0.888],[-0.552,-0.648],[-0.744,-0.359],[-0.912,0],[-0.744,0.361],[-0.553,0.624],[-0.311,0.864],[0,1.055],[0.313,0.864],[0.575,0.623],[0.769,0.36]],"v":[[98.737,-40.584],[101.22,-41.124],[103.202,-42.6],[104.533,-44.868],[105.001,-47.784],[104.533,-50.664],[103.202,-52.932],[101.22,-54.445],[98.737,-54.985],[96.216,-54.445],[94.237,-52.932],[92.94,-50.664],[92.473,-47.784],[92.94,-44.868],[94.237,-42.6],[96.216,-41.124]],"c":true},"ix":2},"nm":"Path 87","mn":"ADBE Vector Shape - Group","hd":false},{"ind":26,"ty":"sh","ix":27,"ks":{"a":0,"k":{"i":[[1.319,0],[1.128,0.479],[0.84,0.864],[0.456,1.201],[0,1.416],[-0.456,1.2],[-0.816,0.863],[-1.128,0.481],[-1.319,0],[-1.105,-0.504],[-0.817,-0.889],[-0.456,-1.201],[0,-1.417],[0.48,-1.2],[0.84,-0.888],[1.128,-0.504]],"o":[[-1.32,0],[-1.105,-0.504],[-0.816,-0.888],[-0.456,-1.2],[0,-1.417],[0.479,-1.201],[0.84,-0.889],[1.128,-0.504],[1.32,0],[1.128,0.481],[0.84,0.863],[0.456,1.2],[0,1.416],[-0.456,1.201],[-0.817,0.864],[-1.128,0.479]],"v":[[98.702,-37.956],[95.03,-38.676],[92.113,-40.729],[90.205,-43.861],[89.52,-47.784],[90.205,-51.708],[92.15,-54.804],[95.1,-56.857],[98.772,-57.613],[102.409,-56.857],[105.325,-54.804],[107.268,-51.708],[107.953,-47.784],[107.233,-43.861],[105.289,-40.729],[102.374,-38.676]],"c":true},"ix":2},"nm":"Path 88","mn":"ADBE Vector Shape - Group","hd":false},{"ind":27,"ty":"sh","ix":28,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.912,0.649],[-1.225,0],[-0.312,-0.072],[-0.24,-0.096],[0,0],[0.288,0.025],[0.288,0],[0.769,-0.504],[0.431,-0.936],[0,-1.248],[0,0]],"o":[[0,0],[0,0],[0,0],[0.456,-1.152],[0.912,-0.672],[0.407,0],[0.336,0.048],[0,0],[-0.265,-0.097],[-0.288,-0.047],[-1.008,0],[-0.744,0.504],[-0.408,0.911],[0,0],[0,0]],"v":[[77.625,-38.496],[77.625,-57.073],[80.216,-57.073],[80.396,-53.617],[82.449,-56.317],[85.653,-57.325],[86.733,-57.216],[87.596,-57],[87.237,-54.264],[86.409,-54.445],[85.546,-54.516],[82.88,-53.76],[81.117,-51.6],[80.505,-48.361],[80.505,-38.496]],"c":true},"ix":2},"nm":"Path 89","mn":"ADBE Vector Shape - Group","hd":false},{"ind":28,"ty":"sh","ix":29,"ks":{"a":0,"k":{"i":[[-0.912,0],[-0.744,0.36],[-0.551,0.623],[-0.311,0.864],[0,1.055],[0.313,0.864],[0.576,0.624],[0.767,0.361],[0.913,0],[0.767,-0.359],[0.577,-0.648],[0.313,-0.888],[0,-1.056],[-0.311,-0.888],[-0.551,-0.648],[-0.744,-0.361]],"o":[[0.913,0],[0.767,-0.361],[0.576,-0.648],[0.313,-0.888],[0,-1.056],[-0.311,-0.888],[-0.551,-0.648],[-0.744,-0.359],[-0.912,0],[-0.744,0.361],[-0.551,0.624],[-0.311,0.864],[0,1.055],[0.313,0.864],[0.577,0.623],[0.767,0.36]],"v":[[64.301,-40.584],[66.786,-41.124],[68.765,-42.6],[70.098,-44.868],[70.566,-47.784],[70.098,-50.664],[68.765,-52.932],[66.786,-54.445],[64.301,-54.985],[61.783,-54.445],[59.801,-52.932],[58.505,-50.664],[58.038,-47.784],[58.505,-44.868],[59.801,-42.6],[61.783,-41.124]],"c":true},"ix":2},"nm":"Path 90","mn":"ADBE Vector Shape - Group","hd":false},{"ind":29,"ty":"sh","ix":30,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.177,0.72],[-1.511,0],[-1.055,-0.504],[-0.792,-0.889],[-0.432,-1.2],[0,-1.391],[0.456,-1.2],[0.816,-0.889],[1.08,-0.504],[1.248,0],[1.153,0.647],[0.672,1.175],[0,0]],"o":[[0,0],[0,0],[0,0],[0.672,-1.273],[1.199,-0.719],[1.225,0],[1.057,0.481],[0.792,0.888],[0.456,1.176],[0,1.393],[-0.432,1.199],[-0.792,0.888],[-1.08,0.504],[-1.416,0],[-1.128,-0.648],[0,0],[0,0]],"v":[[55.229,-31.153],[55.229,-57.073],[57.822,-57.073],[57.965,-53.544],[60.738,-56.533],[64.806,-57.613],[68.225,-56.857],[70.999,-54.804],[72.835,-51.672],[73.517,-47.821],[72.835,-43.932],[70.962,-40.8],[68.155,-38.712],[64.663,-37.956],[60.809,-38.928],[58.111,-41.664],[58.111,-31.153]],"c":true},"ix":2},"nm":"Path 91","mn":"ADBE Vector Shape - Group","hd":false},{"ind":30,"ty":"sh","ix":31,"ks":{"a":0,"k":{"i":[[0.984,0],[0.817,-0.479],[0.552,-0.863],[0.168,-1.128],[0,0],[0.504,0.841],[0.792,0.481]],"o":[[-0.985,0],[-0.792,0.481],[-0.529,0.841],[0,0],[-0.095,-1.128],[-0.505,-0.863],[-0.792,-0.479]],"v":[[34.71,-55.128],[32.009,-54.409],[29.993,-52.393],[28.949,-49.441],[40.216,-49.441],[39.317,-52.393],[37.374,-54.409]],"c":true},"ix":2},"nm":"Path 92","mn":"ADBE Vector Shape - Group","hd":false},{"ind":31,"ty":"sh","ix":32,"ks":{"a":0,"k":{"i":[[1.128,0],[1.152,0.479],[0.84,0.865],[0.456,1.175],[0,1.44],[-0.431,1.176],[-0.792,0.889],[-1.08,0.481],[-1.273,0],[-1.032,-0.455],[-0.769,-0.815],[-0.408,-1.128],[0,-1.319],[0,0],[0,0],[-0.528,-1.009],[-0.911,-0.553],[-1.199,0],[-0.865,0.481],[-0.624,0.96],[0,0],[0.769,-0.648],[1.008,-0.336]],"o":[[-1.368,0],[-1.128,-0.481],[-0.841,-0.887],[-0.456,-1.201],[0,-1.416],[0.457,-1.2],[0.816,-0.888],[1.08,-0.504],[1.223,0],[1.057,0.456],[0.767,0.817],[0.433,1.128],[0,0],[0,0],[0.097,1.343],[0.552,1.008],[0.912,0.552],[1.177,0],[0.887,-0.504],[0,0],[-0.479,0.912],[-0.767,0.647],[-0.983,0.36]],"v":[[35.176,-37.956],[31.397,-38.676],[28.445,-40.693],[26.501,-43.788],[25.817,-47.748],[26.465,-51.636],[28.337,-54.769],[31.181,-56.821],[34.71,-57.576],[38.092,-56.893],[40.829,-54.985],[42.592,-52.069],[43.241,-48.397],[43.241,-47.208],[28.804,-47.208],[29.741,-43.68],[31.936,-41.34],[35.104,-40.512],[38.165,-41.233],[40.432,-43.428],[42.88,-42.313],[41.009,-39.972],[38.345,-38.496]],"c":true},"ix":2},"nm":"Path 93","mn":"ADBE Vector Shape - Group","hd":false},{"ind":32,"ty":"sh","ix":33,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[13.731,-38.496],[6.46,-57.073],[9.629,-57.073],[15.28,-41.592],[20.931,-57.073],[23.992,-57.073],[16.72,-38.496]],"c":true},"ix":2},"nm":"Path 94","mn":"ADBE Vector Shape - Group","hd":false},{"ind":33,"ty":"sh","ix":34,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.421,-57.073],[3.301,-57.073],[3.301,-38.497],[0.421,-38.497]],"c":true},"ix":2},"nm":"Path 95","mn":"ADBE Vector Shape - Group","hd":false},{"ind":34,"ty":"sh","ix":35,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[0.421,-38.496]],"c":false},"ix":2},"nm":"Path 96","mn":"ADBE Vector Shape - Group","hd":false},{"ind":35,"ty":"sh","ix":36,"ks":{"a":0,"k":{"i":[[0,-0.36],[0.193,-0.313],[0.311,-0.191],[0.359,0],[0.313,0.168],[0.193,0.288],[0,0.359],[-0.168,0.288],[-0.287,0.168],[-0.36,0],[-0.288,-0.192],[-0.168,-0.311]],"o":[[0,0.359],[-0.168,0.288],[-0.288,0.168],[-0.36,0],[-0.287,-0.191],[-0.168,-0.313],[0,-0.36],[0.193,-0.311],[0.313,-0.192],[0.359,0],[0.311,0.168],[0.193,0.288]],"v":[[3.84,-62.508],[3.552,-61.5],[2.833,-60.781],[1.861,-60.529],[0.853,-60.781],[0.132,-61.5],[-0.12,-62.508],[0.132,-63.481],[0.853,-64.201],[1.861,-64.489],[2.833,-64.201],[3.552,-63.481]],"c":true},"ix":2},"nm":"Path 97","mn":"ADBE Vector Shape - Group","hd":false},{"ind":36,"ty":"sh","ix":37,"ks":{"a":0,"k":{"i":[[1.008,0],[0.96,0.36],[0.697,0.672],[0.36,0.912],[0,0],[-0.768,-0.504],[-0.985,0],[-0.6,0.263],[-0.335,0.456],[0,0.576],[2.255,0.456],[0,0],[0.936,0.863],[0,1.345],[-0.553,0.84],[-0.984,0.456],[-1.272,0],[-0.888,-0.359],[-0.624,-0.672],[-0.335,-0.911],[0,0],[0.721,0.479],[0.936,0],[0.553,-0.239],[0.312,-0.408],[0,-0.552],[-0.577,-0.456],[-1.32,-0.263],[0,0],[-0.936,-0.913],[0,-1.391],[0.36,-0.719],[0.624,-0.527],[0.864,-0.288]],"o":[[-1.08,0],[-0.936,-0.361],[-0.695,-0.672],[0,0],[0.48,0.912],[0.767,0.504],[0.792,0],[0.6,-0.264],[0.336,-0.48],[0,-1.56],[0,0],[-1.968,-0.385],[-0.935,-0.889],[0,-1.08],[0.551,-0.839],[1.009,-0.479],[1.055,0],[0.887,0.336],[0.649,0.673],[0,0],[-0.385,-0.887],[-0.695,-0.504],[-0.721,0],[-0.527,0.24],[-0.312,0.408],[0,0.769],[0.6,0.456],[0,0],[1.777,0.361],[0.936,0.887],[0,0.865],[-0.335,0.697],[-0.601,0.529],[-0.841,0.288]],"v":[[-10.339,-37.956],[-13.399,-38.496],[-15.848,-40.044],[-17.431,-42.42],[-14.839,-43.357],[-12.967,-41.233],[-10.339,-40.477],[-8.251,-40.872],[-6.848,-41.952],[-6.344,-43.536],[-9.727,-46.561],[-11.131,-46.848],[-15.488,-48.72],[-16.891,-52.069],[-16.063,-54.949],[-13.759,-56.893],[-10.339,-57.613],[-7.423,-57.073],[-5.155,-55.561],[-3.68,-53.185],[-6.271,-52.321],[-7.928,-54.372],[-10.374,-55.128],[-12.284,-54.769],[-13.543,-53.796],[-14.012,-52.357],[-13.147,-50.521],[-10.267,-49.441],[-8.863,-49.153],[-4.795,-47.244],[-3.391,-43.825],[-3.931,-41.449],[-5.371,-39.613],[-7.566,-38.388]],"c":true},"ix":2},"nm":"Path 98","mn":"ADBE Vector Shape - Group","hd":false},{"ind":37,"ty":"sh","ix":38,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.033,0.624],[-1.367,0],[-1.055,-0.672],[-0.552,-1.248],[0,-1.68],[0,0],[0,0],[0,0],[0.816,1.008],[1.489,0],[0.817,-0.48],[0.456,-0.839],[0,-1.057],[0,0]],"o":[[0,0],[0,0],[0,0],[0.551,-1.056],[1.055,-0.648],[1.416,0],[1.057,0.673],[0.576,1.224],[0,0],[0,0],[0,0],[0,-1.847],[-0.792,-1.009],[-1.031,0],[-0.792,0.456],[-0.455,0.817],[0,0],[0,0]],"v":[[-36.845,-38.496],[-36.845,-57.073],[-34.251,-57.073],[-34.108,-54.12],[-31.732,-56.64],[-28.097,-57.613],[-24.389,-56.605],[-21.975,-53.724],[-21.113,-49.368],[-21.113,-38.496],[-23.993,-38.496],[-23.993,-49.189],[-25.215,-53.472],[-28.637,-54.985],[-31.409,-54.264],[-33.28,-52.321],[-33.964,-49.512],[-33.964,-38.496]],"c":true},"ix":2},"nm":"Path 99","mn":"ADBE Vector Shape - Group","hd":false},{"ind":38,"ty":"sh","ix":39,"ks":{"a":0,"k":{"i":[[0.985,0],[0.816,-0.479],[0.551,-0.863],[0.168,-1.128],[0,0],[0.504,0.841],[0.792,0.481]],"o":[[-0.983,0],[-0.792,0.481],[-0.528,0.841],[0,0],[-0.096,-1.128],[-0.505,-0.863],[-0.792,-0.479]],"v":[[-49.491,-55.128],[-52.189,-54.409],[-54.206,-52.393],[-55.249,-49.441],[-43.982,-49.441],[-44.882,-52.393],[-46.827,-54.409]],"c":true},"ix":2},"nm":"Path 100","mn":"ADBE Vector Shape - Group","hd":false},{"ind":39,"ty":"sh","ix":40,"ks":{"a":0,"k":{"i":[[1.128,0],[1.153,0.479],[0.84,0.865],[0.456,1.175],[0,1.44],[-0.432,1.176],[-0.792,0.889],[-1.081,0.481],[-1.272,0],[-1.033,-0.455],[-0.769,-0.815],[-0.409,-1.128],[0,-1.319],[0,0],[0,0],[-0.528,-1.009],[-0.911,-0.553],[-1.199,0],[-0.863,0.481],[-0.624,0.96],[0,0],[0.768,-0.648],[1.007,-0.336]],"o":[[-1.368,0],[-1.128,-0.481],[-0.841,-0.887],[-0.456,-1.201],[0,-1.416],[0.456,-1.2],[0.817,-0.888],[1.08,-0.504],[1.225,0],[1.056,0.456],[0.768,0.817],[0.432,1.128],[0,0],[0,0],[0.096,1.343],[0.551,1.008],[0.913,0.552],[1.177,0],[0.889,-0.504],[0,0],[-0.48,0.912],[-0.768,0.647],[-0.984,0.36]],"v":[[-49.022,-37.956],[-52.803,-38.676],[-55.754,-40.693],[-57.699,-43.788],[-58.382,-47.748],[-57.733,-51.636],[-55.863,-54.769],[-53.017,-56.821],[-49.491,-57.576],[-46.105,-56.893],[-43.37,-54.985],[-41.605,-52.069],[-40.957,-48.397],[-40.957,-47.208],[-55.394,-47.208],[-54.457,-43.68],[-52.262,-41.34],[-49.095,-40.512],[-46.035,-41.233],[-43.766,-43.428],[-41.318,-42.313],[-43.189,-39.972],[-45.853,-38.496]],"c":true},"ix":2},"nm":"Path 101","mn":"ADBE Vector Shape - Group","hd":false},{"ind":40,"ty":"sh","ix":41,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.031,0.576],[-1.296,0],[-1.056,-0.672],[-0.552,-1.248],[0,-1.68],[0,0],[0,0],[0,0],[0.815,1.008],[1.487,0],[0.816,-0.48],[0.456,-0.839],[0,-1.057],[0,0]],"o":[[0,0],[0,0],[0,0],[0.553,-0.985],[1.033,-0.601],[1.416,0],[1.055,0.673],[0.575,1.224],[0,0],[0,0],[0,0],[0,-1.847],[-0.792,-1.009],[-1.033,0],[-0.792,0.456],[-0.456,0.817],[0,0],[0,0]],"v":[[-78.082,-38.496],[-78.082,-65.208],[-75.202,-65.208],[-75.202,-54.372],[-72.827,-56.712],[-69.334,-57.613],[-65.626,-56.605],[-63.214,-53.724],[-62.35,-49.368],[-62.35,-38.496],[-65.23,-38.496],[-65.23,-49.189],[-66.454,-53.472],[-69.874,-54.985],[-72.646,-54.264],[-74.517,-52.321],[-75.202,-49.512],[-75.202,-38.496]],"c":true},"ix":2},"nm":"Path 102","mn":"ADBE Vector Shape - Group","hd":false},{"ind":41,"ty":"sh","ix":42,"ks":{"a":0,"k":{"i":[[0.984,0],[0.816,-0.479],[0.552,-0.863],[0.168,-1.128],[0,0],[0.503,0.841],[0.792,0.481]],"o":[[-0.984,0],[-0.792,0.481],[-0.529,0.841],[0,0],[-0.095,-1.128],[-0.504,-0.863],[-0.792,-0.479]],"v":[[-90.728,-55.128],[-93.428,-54.409],[-95.444,-52.393],[-96.488,-49.441],[-85.22,-49.441],[-86.12,-52.393],[-88.064,-54.409]],"c":true},"ix":2},"nm":"Path 103","mn":"ADBE Vector Shape - Group","hd":false},{"ind":42,"ty":"sh","ix":43,"ks":{"a":0,"k":{"i":[[1.129,0],[1.151,0.479],[0.841,0.865],[0.456,1.175],[0,1.44],[-0.432,1.176],[-0.792,0.889],[-1.08,0.481],[-1.272,0],[-1.031,-0.455],[-0.768,-0.815],[-0.407,-1.128],[0,-1.319],[0,0],[0,0],[-0.527,-1.009],[-0.912,-0.553],[-1.201,0],[-0.865,0.481],[-0.624,0.96],[0,0],[0.768,-0.648],[1.008,-0.336]],"o":[[-1.367,0],[-1.128,-0.481],[-0.839,-0.887],[-0.456,-1.201],[0,-1.416],[0.457,-1.2],[0.815,-0.888],[1.079,-0.504],[1.224,0],[1.057,0.456],[0.768,0.817],[0.433,1.128],[0,0],[0,0],[0.096,1.343],[0.553,1.008],[0.912,0.552],[1.175,0],[0.887,-0.504],[0,0],[-0.479,0.912],[-0.768,0.647],[-0.985,0.36]],"v":[[-90.261,-37.956],[-94.04,-38.676],[-96.993,-40.693],[-98.936,-43.788],[-99.62,-47.748],[-98.973,-51.636],[-97.1,-54.769],[-94.256,-56.821],[-90.728,-57.576],[-87.345,-56.893],[-84.608,-54.985],[-82.845,-52.069],[-82.197,-48.397],[-82.197,-47.208],[-96.632,-47.208],[-95.697,-43.68],[-93.499,-41.34],[-90.332,-40.512],[-87.272,-41.233],[-85.004,-43.428],[-82.556,-42.313],[-84.428,-39.972],[-87.092,-38.496]],"c":true},"ix":2},"nm":"Path 104","mn":"ADBE Vector Shape - Group","hd":false},{"ind":43,"ty":"sh","ix":44,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.912,0.649],[-1.223,0],[-0.312,-0.072],[-0.241,-0.096],[0,0],[0.288,0.025],[0.289,0],[0.768,-0.504],[0.432,-0.936],[0,-1.248],[0,0]],"o":[[0,0],[0,0],[0,0],[0.456,-1.152],[0.911,-0.672],[0.409,0],[0.336,0.048],[0,0],[-0.263,-0.097],[-0.288,-0.047],[-1.007,0],[-0.743,0.504],[-0.408,0.911],[0,0],[0,0]],"v":[[-111.516,-38.496],[-111.516,-57.073],[-108.923,-57.073],[-108.743,-53.617],[-106.691,-56.317],[-103.488,-57.325],[-102.409,-57.216],[-101.543,-57],[-101.905,-54.264],[-102.732,-54.445],[-103.597,-54.516],[-106.261,-53.76],[-108.024,-51.6],[-108.637,-48.361],[-108.637,-38.496]],"c":true},"ix":2},"nm":"Path 105","mn":"ADBE Vector Shape - Group","hd":false},{"ind":44,"ty":"sh","ix":45,"ks":{"a":0,"k":{"i":[[-0.912,0],[-0.744,0.36],[-0.553,0.623],[-0.312,0.864],[0,1.055],[0.312,0.864],[0.576,0.624],[0.768,0.361],[0.911,0],[0.768,-0.359],[0.575,-0.648],[0.312,-0.888],[0,-1.056],[-0.312,-0.888],[-0.552,-0.648],[-0.744,-0.361]],"o":[[0.911,0],[0.768,-0.361],[0.576,-0.648],[0.312,-0.888],[0,-1.056],[-0.312,-0.888],[-0.553,-0.648],[-0.744,-0.359],[-0.912,0],[-0.744,0.361],[-0.552,0.624],[-0.312,0.864],[0,1.055],[0.312,0.864],[0.575,0.623],[0.768,0.36]],"v":[[-124.839,-40.584],[-122.355,-41.124],[-120.374,-42.6],[-119.043,-44.868],[-118.576,-47.784],[-119.043,-50.664],[-120.374,-52.932],[-122.355,-54.445],[-124.839,-54.985],[-127.358,-54.445],[-129.339,-52.932],[-130.636,-50.664],[-131.103,-47.784],[-130.636,-44.868],[-129.339,-42.6],[-127.358,-41.124]],"c":true},"ix":2},"nm":"Path 106","mn":"ADBE Vector Shape - Group","hd":false},{"ind":45,"ty":"sh","ix":46,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.176,0.72],[-1.513,0],[-1.057,-0.504],[-0.792,-0.889],[-0.433,-1.2],[0,-1.391],[0.456,-1.2],[0.816,-0.889],[1.08,-0.504],[1.248,0],[1.151,0.647],[0.673,1.175],[0,0]],"o":[[0,0],[0,0],[0,0],[0.672,-1.273],[1.2,-0.719],[1.224,0],[1.056,0.481],[0.792,0.888],[0.456,1.176],[0,1.393],[-0.433,1.199],[-0.792,0.888],[-1.079,0.504],[-1.416,0],[-1.128,-0.648],[0,0],[0,0]],"v":[[-133.91,-31.153],[-133.91,-57.073],[-131.319,-57.073],[-131.175,-53.544],[-128.402,-56.533],[-124.335,-57.613],[-120.915,-56.857],[-118.142,-54.804],[-116.306,-51.672],[-115.623,-47.821],[-116.306,-43.932],[-118.18,-40.8],[-120.988,-38.712],[-124.478,-37.956],[-128.331,-38.928],[-131.032,-41.664],[-131.032,-31.153]],"c":true},"ix":2},"nm":"Path 107","mn":"ADBE Vector Shape - Group","hd":false},{"ind":46,"ty":"sh","ix":47,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.009,0.6],[-1.297,0],[-1.031,-0.719],[-0.504,-1.296],[-0.624,0.599],[-0.841,0.336],[-0.985,0],[-1.007,-0.672],[-0.528,-1.201],[0,-1.681],[0,0],[0,0],[0,0],[0.743,0.96],[1.416,0],[0.768,-0.48],[0.456,-0.815],[0,-1.007],[0,0],[0,0],[0,0],[0.768,0.96],[1.416,0],[0.768,-0.48],[0.433,-0.815],[0,-1.007],[0,0]],"o":[[0,0],[0,0],[0,0],[0.529,-1.031],[1.007,-0.624],[1.392,0],[1.033,0.72],[0.312,-0.817],[0.624,-0.624],[0.864,-0.359],[1.391,0],[1.033,0.649],[0.551,1.2],[0,0],[0,0],[0,0],[0,-1.825],[-0.744,-0.984],[-0.983,0],[-0.769,0.456],[-0.433,0.792],[0,0],[0,0],[0,0],[0,-1.825],[-0.767,-0.984],[-0.96,0],[-0.768,0.456],[-0.431,0.792],[0,0],[0,0]],"v":[[-166.395,-38.496],[-166.395,-57.073],[-163.803,-57.073],[-163.66,-54.229],[-161.355,-56.676],[-157.899,-57.613],[-154.264,-56.533],[-151.959,-53.508],[-150.556,-55.632],[-148.358,-57.073],[-145.587,-57.613],[-141.988,-56.605],[-139.647,-53.832],[-138.819,-49.512],[-138.819,-38.496],[-141.699,-38.496],[-141.699,-49.332],[-142.814,-53.508],[-146.056,-54.985],[-148.683,-54.264],[-150.519,-52.357],[-151.166,-49.657],[-151.166,-38.496],[-154.046,-38.496],[-154.046,-49.332],[-155.199,-53.508],[-158.475,-54.985],[-161.066,-54.264],[-162.868,-52.357],[-163.514,-49.657],[-163.514,-38.496]],"c":true},"ix":2},"nm":"Path 108","mn":"ADBE Vector Shape - Group","hd":false},{"ind":47,"ty":"sh","ix":48,"ks":{"a":0,"k":{"i":[[-0.912,0],[-0.743,0.36],[-0.551,0.623],[-0.312,0.864],[0,1.055],[0.312,0.864],[0.577,0.624],[0.768,0.361],[0.913,0],[0.769,-0.359],[0.577,-0.648],[0.312,-0.888],[0,-1.056],[-0.312,-0.888],[-0.551,-0.648],[-0.743,-0.361]],"o":[[0.913,0],[0.768,-0.361],[0.577,-0.648],[0.312,-0.888],[0,-1.056],[-0.312,-0.888],[-0.551,-0.648],[-0.743,-0.359],[-0.912,0],[-0.743,0.361],[-0.551,0.624],[-0.312,0.864],[0,1.055],[0.312,0.864],[0.577,0.623],[0.769,0.36]],"v":[[-179.701,-40.584],[-177.218,-41.124],[-175.238,-42.6],[-173.906,-44.868],[-173.437,-47.784],[-173.906,-50.664],[-175.238,-52.932],[-177.218,-54.445],[-179.701,-54.985],[-182.222,-54.445],[-184.201,-52.932],[-185.497,-50.664],[-185.964,-47.784],[-185.497,-44.868],[-184.201,-42.6],[-182.222,-41.124]],"c":true},"ix":2},"nm":"Path 109","mn":"ADBE Vector Shape - Group","hd":false},{"ind":48,"ty":"sh","ix":49,"ks":{"a":0,"k":{"i":[[1.321,0],[1.128,0.479],[0.841,0.864],[0.456,1.201],[0,1.416],[-0.456,1.2],[-0.816,0.863],[-1.128,0.481],[-1.32,0],[-1.103,-0.504],[-0.816,-0.889],[-0.456,-1.201],[0,-1.417],[0.48,-1.2],[0.84,-0.888],[1.128,-0.504]],"o":[[-1.319,0],[-1.104,-0.504],[-0.815,-0.888],[-0.456,-1.2],[0,-1.417],[0.48,-1.201],[0.839,-0.889],[1.128,-0.504],[1.319,0],[1.129,0.481],[0.841,0.863],[0.456,1.2],[0,1.416],[-0.456,1.201],[-0.816,0.864],[-1.128,0.479]],"v":[[-179.738,-37.956],[-183.41,-38.676],[-186.326,-40.729],[-188.232,-43.861],[-188.916,-47.784],[-188.232,-51.708],[-186.288,-54.804],[-183.337,-56.857],[-179.665,-57.613],[-176.029,-56.857],[-173.114,-54.804],[-171.169,-51.708],[-170.485,-47.784],[-171.205,-43.861],[-173.149,-40.729],[-176.064,-38.676]],"c":true},"ix":2},"nm":"Path 110","mn":"ADBE Vector Shape - Group","hd":false},{"ind":49,"ty":"sh","ix":50,"ks":{"a":0,"k":{"i":[[1.153,0],[1.08,0.479],[0.816,0.865],[0.456,1.175],[0,1.392],[-0.456,1.201],[-0.816,0.912],[-1.104,0.504],[-1.296,0],[-0.96,-0.433],[-0.697,-0.744],[-0.383,-0.96],[0,0],[0.84,0.576],[1.057,0],[0.72,-0.383],[0.552,-0.647],[0.312,-0.912],[0,-1.032],[-0.287,-0.865],[-0.528,-0.647],[-0.72,-0.361],[-0.863,0],[-0.912,0.551],[-0.48,1.007],[0,0],[0.792,-0.744],[1.055,-0.408]],"o":[[-1.272,0],[-1.081,-0.481],[-0.817,-0.887],[-0.433,-1.176],[0,-1.393],[0.456,-1.223],[0.817,-0.912],[1.104,-0.504],[1.201,0],[0.984,0.431],[0.719,0.745],[0,0],[-0.527,-1.008],[-0.841,-0.577],[-0.863,0],[-0.72,0.361],[-0.552,0.649],[-0.287,0.888],[0,1.031],[0.312,0.864],[0.527,0.624],[0.743,0.336],[1.104,0],[0.936,-0.577],[0,0],[-0.385,1.008],[-0.769,0.72],[-1.033,0.409]],"v":[[-199.572,-37.956],[-203.098,-38.676],[-205.942,-40.693],[-207.851,-43.788],[-208.498,-47.64],[-207.814,-51.529],[-205.908,-54.733],[-203.027,-56.857],[-199.428,-57.613],[-196.187,-56.964],[-193.666,-55.201],[-192.011,-52.645],[-194.64,-51.744],[-196.691,-54.12],[-199.536,-54.985],[-201.911,-54.409],[-203.818,-52.897],[-205.115,-50.556],[-205.546,-47.676],[-205.115,-44.832],[-203.855,-42.565],[-201.982,-41.088],[-199.572,-40.584],[-196.546,-41.412],[-194.423,-43.788],[-191.795,-42.888],[-193.559,-40.26],[-196.295,-38.569]],"c":true},"ix":2},"nm":"Path 111","mn":"ADBE Vector Shape - Group","hd":false},{"ind":50,"ty":"sh","ix":51,"ks":{"a":0,"k":{"i":[[0.839,0],[0.815,0.455],[0.456,0.888],[0,1.273],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.455,-0.624],[-0.96,0],[-0.504,0.144],[-0.408,0.263],[0,0],[0.672,-0.216]],"o":[[-1.128,0],[-0.816,-0.456],[-0.431,-0.887],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1.103],[0.48,0.601],[0.503,0],[0.528,-0.168],[0,0],[-0.505,0.359],[-0.672,0.241]],"v":[[-223.184,-37.956],[-226.101,-38.64],[-228.01,-40.657],[-228.658,-43.897],[-228.658,-54.624],[-232.077,-54.624],[-232.077,-57.073],[-228.658,-57.073],[-228.658,-63.3],[-225.777,-63.3],[-225.777,-57.073],[-219.945,-57.073],[-219.945,-54.624],[-225.777,-54.624],[-225.777,-44.04],[-225.093,-41.449],[-222.933,-40.548],[-221.421,-40.764],[-220.016,-41.412],[-219.153,-39.18],[-220.916,-38.317]],"c":true},"ix":2},"nm":"Path 112","mn":"ADBE Vector Shape - Group","hd":false},{"ind":51,"ty":"sh","ix":52,"ks":{"a":0,"k":{"i":[[1.009,0],[0.961,0.36],[0.695,0.672],[0.359,0.912],[0,0],[-0.768,-0.504],[-0.983,0],[-0.6,0.263],[-0.336,0.456],[0,0.576],[2.256,0.456],[0,0],[0.937,0.863],[0,1.345],[-0.552,0.84],[-0.984,0.456],[-1.272,0],[-0.887,-0.359],[-0.625,-0.672],[-0.336,-0.911],[0,0],[0.72,0.479],[0.936,0],[0.552,-0.239],[0.312,-0.408],[0,-0.552],[-0.576,-0.456],[-1.321,-0.263],[0,0],[-0.935,-0.913],[0,-1.391],[0.359,-0.719],[0.624,-0.527],[0.865,-0.288]],"o":[[-1.08,0],[-0.935,-0.361],[-0.696,-0.672],[0,0],[0.48,0.912],[0.769,0.504],[0.792,0],[0.599,-0.264],[0.336,-0.48],[0,-1.56],[0,0],[-1.967,-0.385],[-0.936,-0.889],[0,-1.08],[0.552,-0.839],[1.008,-0.479],[1.057,0],[0.889,0.336],[0.647,0.673],[0,0],[-0.384,-0.887],[-0.696,-0.504],[-0.72,0],[-0.528,0.24],[-0.312,0.408],[0,0.769],[0.599,0.456],[0,0],[1.776,0.361],[0.936,0.887],[0,0.865],[-0.336,0.697],[-0.6,0.529],[-0.839,0.288]],"v":[[-240.825,-37.956],[-243.885,-38.496],[-246.331,-40.044],[-247.916,-42.42],[-245.325,-43.357],[-243.452,-41.233],[-240.825,-40.477],[-238.735,-40.872],[-237.331,-41.952],[-236.827,-43.536],[-240.212,-46.561],[-241.617,-46.848],[-245.972,-48.72],[-247.376,-52.069],[-246.548,-54.949],[-244.244,-56.893],[-240.825,-57.613],[-237.908,-57.073],[-235.64,-55.561],[-234.163,-53.185],[-236.756,-52.321],[-238.412,-54.372],[-240.86,-55.128],[-242.768,-54.769],[-244.028,-53.796],[-244.495,-52.357],[-243.632,-50.521],[-240.752,-49.441],[-239.348,-49.153],[-235.281,-47.244],[-233.876,-43.825],[-234.416,-41.449],[-235.856,-39.613],[-238.053,-38.388]],"c":true},"ix":2},"nm":"Path 113","mn":"ADBE Vector Shape - Group","hd":false},{"ind":52,"ty":"sh","ix":53,"ks":{"a":0,"k":{"i":[[-0.913,0],[-0.743,0.36],[-0.551,0.623],[-0.312,0.864],[0,1.055],[0.313,0.864],[0.577,0.624],[0.769,0.361],[0.912,0],[0.768,-0.359],[0.576,-0.648],[0.312,-0.888],[0,-1.056],[-0.312,-0.888],[-0.552,-0.648],[-0.745,-0.361]],"o":[[0.912,0],[0.769,-0.361],[0.577,-0.648],[0.313,-0.888],[0,-1.056],[-0.312,-0.888],[-0.551,-0.648],[-0.743,-0.359],[-0.913,0],[-0.745,0.361],[-0.552,0.624],[-0.312,0.864],[0,1.055],[0.312,0.864],[0.576,0.623],[0.768,0.36]],"v":[[-259.997,-40.584],[-257.515,-41.124],[-255.535,-42.6],[-254.202,-44.868],[-253.734,-47.784],[-254.202,-50.664],[-255.535,-52.932],[-257.515,-54.445],[-259.997,-54.985],[-262.518,-54.445],[-264.497,-52.932],[-265.794,-50.664],[-266.263,-47.784],[-265.794,-44.868],[-264.497,-42.6],[-262.518,-41.124]],"c":true},"ix":2},"nm":"Path 114","mn":"ADBE Vector Shape - Group","hd":false},{"ind":53,"ty":"sh","ix":54,"ks":{"a":0,"k":{"i":[[1.321,0],[1.128,0.479],[0.839,0.864],[0.456,1.201],[0,1.416],[-0.455,1.2],[-0.816,0.863],[-1.128,0.481],[-1.321,0],[-1.104,-0.504],[-0.815,-0.889],[-0.456,-1.201],[0,-1.417],[0.48,-1.2],[0.841,-0.888],[1.129,-0.504]],"o":[[-1.319,0],[-1.104,-0.504],[-0.816,-0.888],[-0.455,-1.2],[0,-1.417],[0.481,-1.201],[0.84,-0.889],[1.129,-0.504],[1.32,0],[1.128,0.481],[0.841,0.863],[0.455,1.2],[0,1.416],[-0.456,1.201],[-0.816,0.864],[-1.128,0.479]],"v":[[-260.034,-37.956],[-263.706,-38.676],[-266.622,-40.729],[-268.531,-43.861],[-269.214,-47.784],[-268.531,-51.708],[-266.586,-54.804],[-263.635,-56.857],[-259.961,-57.613],[-256.326,-56.857],[-253.411,-54.804],[-251.465,-51.708],[-250.783,-47.784],[-251.502,-43.861],[-253.447,-40.729],[-256.362,-38.676]],"c":true},"ix":2},"nm":"Path 115","mn":"ADBE Vector Shape - Group","hd":false},{"ind":54,"ty":"sh","ix":55,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.007,0.6],[-1.296,0],[-1.032,-0.719],[-0.503,-1.296],[-0.624,0.599],[-0.84,0.336],[-0.984,0],[-1.009,-0.672],[-0.527,-1.201],[0,-1.681],[0,0],[0,0],[0,0],[0.744,0.96],[1.416,0],[0.767,-0.48],[0.456,-0.815],[0,-1.007],[0,0],[0,0],[0,0],[0.768,0.96],[1.416,0],[0.768,-0.48],[0.431,-0.815],[0,-1.007],[0,0]],"o":[[0,0],[0,0],[0,0],[0.528,-1.031],[1.009,-0.624],[1.392,0],[1.031,0.72],[0.312,-0.817],[0.624,-0.624],[0.863,-0.359],[1.392,0],[1.031,0.649],[0.553,1.2],[0,0],[0,0],[0,0],[0,-1.825],[-0.745,-0.984],[-0.985,0],[-0.768,0.456],[-0.431,0.792],[0,0],[0,0],[0,0],[0,-1.825],[-0.768,-0.984],[-0.96,0],[-0.769,0.456],[-0.432,0.792],[0,0],[0,0]],"v":[[-300.763,-38.496],[-300.763,-57.073],[-298.169,-57.073],[-298.026,-54.229],[-295.722,-56.676],[-292.266,-57.613],[-288.63,-56.533],[-286.326,-53.508],[-284.922,-55.632],[-282.726,-57.073],[-279.953,-57.613],[-276.354,-56.605],[-274.015,-53.832],[-273.185,-49.512],[-273.185,-38.496],[-276.065,-38.496],[-276.065,-49.332],[-277.182,-53.508],[-280.422,-54.985],[-283.049,-54.264],[-284.886,-52.357],[-285.534,-49.657],[-285.534,-38.496],[-288.414,-38.496],[-288.414,-49.332],[-289.565,-53.508],[-292.843,-54.985],[-295.434,-54.264],[-297.234,-52.357],[-297.882,-49.657],[-297.882,-38.496]],"c":true},"ix":2},"nm":"Path 116","mn":"ADBE Vector Shape - Group","hd":false},{"ind":55,"ty":"sh","ix":56,"ks":{"a":0,"k":{"i":[[0.985,0],[0.816,-0.479],[0.552,-0.863],[0.168,-1.128],[0,0],[0.505,0.841],[0.791,0.481]],"o":[[-0.983,0],[-0.792,0.481],[-0.528,0.841],[0,0],[-0.096,-1.128],[-0.504,-0.863],[-0.792,-0.479]],"v":[[-321.284,-55.128],[-323.982,-54.409],[-325.998,-52.393],[-327.042,-49.441],[-315.774,-49.441],[-316.675,-52.393],[-318.619,-54.409]],"c":true},"ix":2},"nm":"Path 117","mn":"ADBE Vector Shape - Group","hd":false},{"ind":56,"ty":"sh","ix":57,"ks":{"a":0,"k":{"i":[[1.128,0],[1.152,0.479],[0.84,0.865],[0.456,1.175],[0,1.44],[-0.432,1.176],[-0.792,0.889],[-1.08,0.481],[-1.272,0],[-1.033,-0.455],[-0.769,-0.815],[-0.408,-1.128],[0,-1.319],[0,0],[0,0],[-0.528,-1.009],[-0.911,-0.553],[-1.199,0],[-0.863,0.481],[-0.624,0.96],[0,0],[0.768,-0.648],[1.007,-0.336]],"o":[[-1.368,0],[-1.128,-0.481],[-0.84,-0.887],[-0.456,-1.201],[0,-1.416],[0.456,-1.2],[0.816,-0.888],[1.08,-0.504],[1.225,0],[1.055,0.456],[0.768,0.817],[0.431,1.128],[0,0],[0,0],[0.096,1.343],[0.552,1.008],[0.913,0.552],[1.177,0],[0.889,-0.504],[0,0],[-0.48,0.912],[-0.768,0.647],[-0.984,0.36]],"v":[[-320.815,-37.956],[-324.594,-38.676],[-327.547,-40.693],[-329.49,-43.788],[-330.174,-47.748],[-329.526,-51.636],[-327.654,-54.769],[-324.81,-56.821],[-321.284,-57.576],[-317.898,-56.893],[-315.162,-54.985],[-313.398,-52.069],[-312.75,-48.397],[-312.75,-47.208],[-327.187,-47.208],[-326.25,-43.68],[-324.055,-41.34],[-320.888,-40.512],[-317.828,-41.233],[-315.559,-43.428],[-313.11,-42.313],[-314.982,-39.972],[-317.646,-38.496]],"c":true},"ix":2},"nm":"Path 118","mn":"ADBE Vector Shape - Group","hd":false},{"ind":57,"ty":"sh","ix":58,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-1.032,0.576],[-1.296,0],[-1.056,-0.672],[-0.552,-1.248],[0,-1.68],[0,0],[0,0],[0,0],[0.816,1.008],[1.488,0],[0.816,-0.48],[0.456,-0.839],[0,-1.057],[0,0]],"o":[[0,0],[0,0],[0,0],[0.552,-0.985],[1.032,-0.601],[1.416,0],[1.056,0.673],[0.576,1.224],[0,0],[0,0],[0,0],[0,-1.847],[-0.792,-1.009],[-1.032,0],[-0.792,0.456],[-0.456,0.817],[0,0],[0,0]],"v":[[-349.875,-38.496],[-349.875,-65.208],[-346.995,-65.208],[-346.995,-54.372],[-344.62,-56.712],[-341.128,-57.613],[-337.419,-56.605],[-335.008,-53.724],[-334.143,-49.368],[-334.143,-38.496],[-337.023,-38.496],[-337.023,-49.189],[-338.247,-53.472],[-341.667,-54.985],[-344.44,-54.264],[-346.312,-52.321],[-346.995,-49.512],[-346.995,-38.496]],"c":true},"ix":2},"nm":"Path 119","mn":"ADBE Vector Shape - Group","hd":false},{"ind":58,"ty":"sh","ix":59,"ks":{"a":0,"k":{"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":[[-364.969,-38.496],[-364.969,-61.284],[-372.781,-61.284],[-372.781,-64.056],[-354.133,-64.056],[-354.133,-61.284],[-361.945,-61.284],[-361.945,-38.496]],"c":true},"ix":2},"nm":"Path 120","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.999998922909,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":[424.668,293.746],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":61,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":242,"op":1210,"st":-3,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"gives_you","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[301.5,161.5,0],"ix":2},"a":{"a":0,"k":[314.5,87,0],"ix":1},"s":{"a":0,"k":[76,76,100],"ix":6}},"ao":0,"w":629,"h":174,"ip":0,"op":1213,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":3,"nm":"Null 22","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[229.5,128.5,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[97,97,100],"ix":6}},"ao":0,"ip":202,"op":1415,"st":202,"bm":0}]},{"id":"comp_2","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Layer 1 Outlines 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":113,"s":[0]},{"t":175,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.098,"y":0.899},"o":{"x":0.42,"y":0},"t":99,"s":[318.5,183,0],"to":[0,-15.219,0],"ti":[0,20.644,0]},{"i":{"x":0.61,"y":1},"o":{"x":0.209,"y":1},"t":138,"s":[318.5,89.155,0],"to":[0,-1.398,0],"ti":[0,1.031,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":203,"s":[318.5,85.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":248,"s":[318.5,85.5,0],"to":[0,-26.75,0],"ti":[0,26.75,0]},{"t":300,"s":[318.5,-75,0]}],"ix":2},"a":{"a":0,"k":[226.5,51.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.762,0],[3.463,2.092],[1.876,3.823],[0,5.338],[0,0],[0,0],[0,0],[-1.154,-2.67],[-2.164,-1.443],[-3.03,0],[-2.164,1.442],[-1.155,2.669],[0,3.679],[0,0],[0,0],[0,0],[1.948,-3.895],[3.535,-2.164]],"o":[[-4.761,0],[-3.463,-2.091],[-1.876,-3.896],[0,0],[0,0],[0,0],[0,3.679],[1.226,2.669],[2.236,1.442],[3.03,0],[2.235,-1.443],[1.226,-2.67],[0,0],[0,0],[0,0],[0,5.194],[-1.948,3.896],[-3.535,2.092]],"v":[[201.916,28.838],[189.579,25.7],[181.572,16.827],[178.759,2.976],[178.759,-28.622],[187.416,-28.622],[187.416,3.084],[189.147,12.607],[194.233,18.775],[202.133,20.939],[209.924,18.775],[215.01,12.607],[216.849,3.084],[216.849,-28.622],[225.507,-28.622],[225.507,2.976],[222.585,16.61],[214.36,25.7]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-2.741,0],[-2.235,1.082],[-1.659,1.875],[-0.937,2.597],[0,3.174],[0.939,2.597],[1.732,1.875],[2.31,1.082],[2.742,0],[2.31,-1.082],[1.731,-1.947],[0.939,-2.67],[0,-3.173],[-0.936,-2.67],[-1.658,-1.948],[-2.235,-1.082]],"o":[[2.742,0],[2.31,-1.082],[1.732,-1.948],[0.939,-2.67],[0,-3.173],[-0.937,-2.67],[-1.659,-1.947],[-2.235,-1.082],[-2.741,0],[-2.235,1.082],[-1.658,1.875],[-0.936,2.597],[0,3.174],[0.939,2.597],[1.731,1.875],[2.31,1.082]],"v":[[139.195,20.939],[146.66,19.316],[152.613,14.879],[156.616,8.062],[158.023,-0.704],[156.616,-9.36],[152.613,-16.178],[146.66,-20.723],[139.195,-22.346],[131.619,-20.723],[125.668,-16.178],[121.772,-9.36],[120.365,-0.704],[121.772,8.062],[125.668,14.879],[131.619,19.316]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[3.968,0],[3.391,1.442],[2.526,2.598],[1.371,3.606],[0,4.256],[-1.37,3.606],[-2.453,2.598],[-3.391,1.442],[-3.967,0],[-3.317,-1.515],[-2.452,-2.67],[-1.369,-3.607],[0,-4.255],[1.445,-3.607],[2.525,-2.67],[3.392,-1.515]],"o":[[-3.967,0],[-3.318,-1.515],[-2.452,-2.67],[-1.37,-3.607],[0,-4.255],[1.443,-3.607],[2.525,-2.67],[3.391,-1.515],[3.968,0],[3.392,1.442],[2.525,2.598],[1.371,3.606],[0,4.256],[-1.369,3.606],[-2.453,2.598],[-3.39,1.442]],"v":[[139.087,28.838],[128.049,26.674],[119.283,20.506],[113.549,11.092],[111.491,-0.704],[113.549,-12.498],[119.392,-21.805],[128.265,-27.973],[139.302,-30.245],[150.232,-27.973],[158.997,-21.805],[164.841,-12.498],[166.897,-0.704],[164.732,11.092],[158.889,20.506],[150.123,26.674]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[3.967,0],[1.298,0.361],[1.369,0.721],[0,0],[-0.866,-0.216],[-1.011,0],[-1.66,1.442],[-1.228,3.03],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[2.884,-2.309]],"o":[[-1.514,0],[-1.298,-0.289],[0,0],[0.721,0.433],[0.936,0.216],[2.235,0],[1.732,-1.372],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.876,4.905],[-2.887,2.381]],"v":[[63.694,50.372],[59.473,49.831],[55.47,48.317],[57.959,41.391],[60.34,42.365],[63.261,42.69],[69.104,40.526],[73.542,33.924],[76.463,26.674],[53.305,-28.622],[62.828,-28.622],[80.683,17.26],[96.807,-28.622],[106.005,-28.622],[81.115,35.981],[73.974,46.802]],"c":true},"ix":2},"nm":"Path 4","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","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":[225.599,38.331],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":6,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1213,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Layer 1 Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":103,"s":[0]},{"t":165,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.098,"y":0.899},"o":{"x":0.42,"y":0},"t":89,"s":[318.5,183,0],"to":[0,-15.219,0],"ti":[0,20.644,0]},{"i":{"x":0.61,"y":1},"o":{"x":0.209,"y":1},"t":128,"s":[318.5,89.155,0],"to":[0,-1.398,0],"ti":[0,1.031,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":193,"s":[318.5,85.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":248,"s":[318.5,85.5,0],"to":[0,-26.75,0],"ti":[0,26.75,0]},{"t":300,"s":[318.5,-75,0]}],"ix":2},"a":{"a":0,"k":[226.5,51.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.029,0],[2.886,1.082],[2.094,2.019],[1.082,2.741],[0,0],[-2.308,-1.514],[-2.957,0],[-1.802,0.793],[-1.009,1.371],[0,1.731],[6.781,1.371],[0,0],[2.814,2.597],[0,4.039],[-1.659,2.525],[-2.958,1.371],[-3.823,0],[-2.668,-1.082],[-1.875,-2.021],[-1.01,-2.741],[0,0],[2.164,1.442],[2.813,0],[1.66,-0.721],[0.938,-1.226],[0,-1.659],[-1.731,-1.371],[-3.966,-0.793],[0,0],[-2.813,-2.741],[0,-4.185],[1.082,-2.164],[1.877,-1.586],[2.598,-0.866]],"o":[[-3.247,0],[-2.814,-1.082],[-2.091,-2.021],[0,0],[1.444,2.741],[2.309,1.515],[2.381,0],[1.804,-0.793],[1.012,-1.442],[0,-4.689],[0,0],[-5.914,-1.155],[-2.813,-2.669],[0,-3.247],[1.661,-2.524],[3.03,-1.442],[3.175,0],[2.67,1.009],[1.948,2.02],[0,0],[-1.154,-2.67],[-2.092,-1.515],[-2.164,0],[-1.586,0.722],[-0.937,1.226],[0,2.308],[1.804,1.371],[0,0],[5.339,1.082],[2.814,2.669],[0,2.597],[-1.01,2.092],[-1.802,1.588],[-2.524,0.865]],"v":[[2.914,28.838],[-6.283,27.215],[-13.642,22.563],[-18.404,15.42],[-10.613,12.607],[-4.985,18.991],[2.914,21.264],[9.191,20.073],[13.41,16.827],[14.927,12.066],[4.755,2.976],[0.533,2.11],[-12.56,-3.517],[-16.781,-13.58],[-14.291,-22.238],[-7.365,-28.081],[2.914,-30.245],[11.679,-28.622],[18.496,-24.077],[22.934,-16.935],[15.142,-14.338],[10.164,-20.506],[2.806,-22.779],[-2.929,-21.697],[-6.717,-18.775],[-8.123,-14.446],[-5.527,-8.928],[3.131,-5.681],[7.351,-4.815],[19.578,0.92],[23.8,11.2],[22.177,18.342],[17.847,23.86],[11.246,27.54]],"c":true},"ix":2},"nm":"Path 5","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[2.957,0],[2.452,-1.443],[1.659,-2.597],[0.504,-3.39],[0,0],[1.515,2.525],[2.381,1.442]],"o":[[-2.959,0],[-2.381,1.442],[-1.588,2.525],[0,0],[-0.289,-3.39],[-1.515,-2.597],[-2.38,-1.443]],"v":[[-52.946,-22.779],[-61.061,-20.614],[-67.121,-14.555],[-70.26,-5.681],[-36.389,-5.681],[-39.094,-14.555],[-44.938,-20.614]],"c":true},"ix":2},"nm":"Path 6","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[3.391,0],[3.463,1.442],[2.524,2.597],[1.37,3.535],[0,4.329],[-1.298,3.536],[-2.381,2.67],[-3.246,1.443],[-3.825,0],[-3.103,-1.371],[-2.309,-2.453],[-1.227,-3.391],[0,-3.968],[0,0],[0,0],[-1.588,-3.03],[-2.743,-1.658],[-3.608,0],[-2.597,1.443],[-1.876,2.886],[0,0],[2.308,-1.947],[3.03,-1.009]],"o":[[-4.111,0],[-3.391,-1.442],[-2.526,-2.67],[-1.371,-3.606],[0,-4.256],[1.37,-3.607],[2.452,-2.669],[3.246,-1.515],[3.679,0],[3.173,1.371],[2.308,2.454],[1.299,3.39],[0,0],[0,0],[0.288,4.039],[1.658,3.03],[2.74,1.659],[3.534,0],[2.668,-1.514],[0,0],[-1.444,2.74],[-2.309,1.949],[-2.959,1.082]],"v":[[-51.539,28.838],[-62.902,26.674],[-71.775,20.614],[-77.618,11.308],[-79.674,-0.595],[-77.726,-12.282],[-72.099,-21.697],[-63.551,-27.865],[-52.946,-30.137],[-42.774,-28.081],[-34.55,-22.346],[-29.247,-13.58],[-27.3,-2.543],[-27.3,1.028],[-70.693,1.028],[-67.879,11.633],[-61.278,18.666],[-51.756,21.155],[-42.557,18.991],[-35.74,12.39],[-28.382,15.745],[-34.009,22.778],[-42.016,27.215]],"c":true},"ix":2},"nm":"Path 7","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-116.004,27.215],[-137.862,-28.622],[-128.34,-28.622],[-111.35,17.909],[-94.361,-28.622],[-85.163,-28.622],[-107.021,27.215]],"c":true},"ix":2},"nm":"Path 8","mn":"ADBE Vector Shape - Group","hd":false},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-156.011,-28.622],[-147.354,-28.622],[-147.354,27.215],[-156.011,27.215]],"c":true},"ix":2},"nm":"Path 9","mn":"ADBE Vector Shape - Group","hd":false},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[-156.011,27.215]],"c":false},"ix":2},"nm":"Path 10","mn":"ADBE Vector Shape - Group","hd":false},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[0,-1.082],[0.577,-0.938],[0.938,-0.577],[1.082,0],[0.939,0.505],[0.577,0.866],[0,1.082],[-0.505,0.866],[-0.866,0.506],[-1.082,0],[-0.866,-0.577],[-0.505,-0.938]],"o":[[0,1.082],[-0.505,0.866],[-0.866,0.505],[-1.082,0],[-0.866,-0.577],[-0.505,-0.938],[0,-1.082],[0.577,-0.938],[0.939,-0.577],[1.082,0],[0.938,0.506],[0.577,0.866]],"v":[[-145.732,-44.962],[-146.597,-41.932],[-148.761,-39.768],[-151.683,-39.01],[-154.714,-39.768],[-156.878,-41.932],[-157.635,-44.962],[-156.878,-47.884],[-154.714,-50.048],[-151.683,-50.913],[-148.761,-50.048],[-146.597,-47.884]],"c":true},"ix":2},"nm":"Path 11","mn":"ADBE Vector Shape - Group","hd":false},{"ind":7,"ty":"sh","ix":8,"ks":{"a":0,"k":{"i":[[-2.67,0],[-2.237,1.01],[-1.661,1.803],[-0.865,2.524],[0,2.958],[0.937,2.525],[1.658,1.804],[2.308,1.01],[2.668,0],[2.308,-1.009],[1.658,-1.875],[0.937,-2.524],[0,-2.957],[-0.866,-2.525],[-1.661,-1.876],[-2.237,-1.01]],"o":[[2.668,0],[2.308,-1.01],[1.658,-1.876],[0.937,-2.525],[0,-2.957],[-0.865,-2.524],[-1.661,-1.875],[-2.237,-1.009],[-2.67,0],[-2.237,1.01],[-1.661,1.804],[-0.866,2.525],[0,2.958],[0.937,2.524],[1.658,1.803],[2.308,1.01]],"v":[[-198.129,18.775],[-190.77,17.26],[-184.819,13.04],[-181.031,6.439],[-179.624,-1.786],[-181.031,-10.01],[-184.819,-16.502],[-190.77,-20.831],[-198.129,-22.346],[-205.595,-20.831],[-211.438,-16.502],[-215.334,-10.01],[-216.634,-1.786],[-215.334,6.439],[-211.438,13.04],[-205.595,17.26]],"c":true},"ix":2},"nm":"Path 12","mn":"ADBE Vector Shape - Group","hd":false},{"ind":8,"ty":"sh","ix":9,"ks":{"a":0,"k":{"i":[[4.256,0],[3.173,1.442],[2.38,2.524],[1.298,3.463],[0,3.968],[-1.299,3.463],[-2.381,2.597],[-3.175,1.442],[-3.68,0],[-3.463,-2.021],[-1.947,-3.535],[0,0],[0,0],[0,0],[1.298,-3.463],[2.38,-2.524],[3.318,-1.299],[4.04,0],[3.101,1.082],[2.451,2.021],[1.586,2.74],[0,0],[-2.813,-1.588],[-3.535,0],[-2.742,1.731],[-1.444,3.103],[0,4.185],[0,0],[3.463,-1.947]],"o":[[-3.679,0],[-3.103,-1.443],[-2.31,-2.598],[-1.299,-3.462],[0,-4.04],[1.37,-3.462],[2.38,-2.597],[3.246,-1.442],[4.255,0],[3.534,2.02],[0,0],[0,0],[0,0],[0,4.256],[-1.299,3.535],[-2.381,2.525],[-3.319,1.371],[-3.535,0],[-3.103,-1.009],[-2.381,-1.947],[0,0],[2.092,3.031],[2.885,1.659],[3.751,0],[2.814,-1.658],[1.515,-3.102],[0,0],[-2.02,3.463],[-3.462,1.948]],"v":[[-199.644,26.674],[-209.924,24.51],[-218.147,18.559],[-223.558,9.468],[-225.507,-1.677],[-223.558,-12.932],[-217.931,-22.021],[-209.599,-28.081],[-199.211,-30.245],[-187.633,-27.215],[-179.408,-18.883],[-178.975,-28.622],[-171.184,-28.622],[-171.184,22.454],[-173.132,34.032],[-178.651,43.122],[-187.199,48.858],[-198.238,50.913],[-208.193,49.29],[-216.525,44.745],[-222.476,37.712],[-215.226,34.032],[-207.868,40.958],[-198.238,43.447],[-188.498,40.85],[-182.114,33.708],[-179.842,22.778],[-179.842,15.637],[-188.066,23.752]],"c":true},"ix":2},"nm":"Path 13","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","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":[225.599,38.331],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":11,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1213,"st":0,"bm":0}]},{"id":"comp_3","layers":[{"ddd":0,"ind":1,"ty":3,"nm":"Null 21","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,143.5,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ip":0,"op":1213,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Layer 1 Outlines 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.657,"y":0},"t":241,"s":[957.5,327.5,0],"to":[0,-32.333,0],"ti":[0,32.333,0]},{"t":307,"s":[957.5,133.5,0]}],"ix":2},"a":{"a":0,"k":[752.5,160,0],"ix":1},"s":{"a":0,"k":[75,75,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[1.467,0.232],[3.933,0],[9.452,-6.137],[5.577,-11.579],[0,0],[0,0],[0,0],[0,0],[0,0],[-8.63,9.785],[-16.2,0],[-3.17,-0.405],[-3.052,-1.099],[0,0]],"o":[[-1.351,-0.29],[-3.935,-0.694],[-12.856,0],[-9.509,6.194],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-17.89],[8.629,-9.784],[3.347,0],[3.17,0.406],[0,0],[0,0]],"v":[[64.046,-108.526],[59.878,-109.395],[48.136,-110.437],[14.676,-101.173],[-7.926,-74.541],[-10.039,-107.542],[-64.046,-107.542],[-64.046,110.437],[-5.459,110.437],[-5.459,3.503],[7.515,-38.009],[44.789,-52.656],[54.594,-52.02],[63.987,-49.762],[63.987,-108.526]],"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":[1440.19,201.305],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[5.568,-2.127],[4.31,-4.075],[2.793,-14.315],[0,0],[8.508,8.258],[5.463,2.13],[5.872,-0.163]],"o":[[-5.971,-0.149],[-5.569,2.126],[-8.806,8.258],[0,0],[-2.234,-14.315],[-4.169,-4.078],[-5.464,-2.129],[0,0]],"v":[[1.178,-70.593],[-16.302,-67.597],[-31.269,-58.205],[-48.667,-24.346],[48.929,-24.346],[32.816,-58.205],[18.217,-67.613],[1.038,-70.593]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[14.56,0.079],[14.44,5.743],[10.114,10.362],[5.26,13.666],[-0.169,15.868],[-5.668,14.485],[-10.091,10.567],[-13.195,5.637],[-14.983,-0.136],[-14.024,-5.647],[-9.509,-10.191],[-4.815,-13.432],[0.214,-16.015],[0,0],[0,0],[-9.493,-9.176],[-6.191,-2.366],[-6.636,0.22],[-8.354,4.705],[-4.869,8.369],[0,0],[9.974,-8.695],[12.941,-4.551]],"o":[[-15.57,0.166],[-13.507,-5.43],[-10.223,-10.587],[-5.706,-14.84],[-0.134,-15.526],[5.266,-13.553],[9.871,-10.309],[13.757,-5.855],[15.148,-0.197],[12.97,5.315],[9.708,10.553],[5.331,15.129],[0,0],[0,0],[2.512,16.332],[4.753,4.57],[6.192,2.366],[9.62,0.11],[8.435,-4.892],[0,0],[-4.897,12.204],[-10.302,8.959],[-13.704,4.851]],"v":[[3.971,115.219],[-41.491,106.769],[-77.316,82.819],[-100.773,46.071],[-109.151,-0.397],[-100.773,-45.818],[-77.512,-82.347],[-42.551,-106.516],[1.038,-115.188],[45.243,-106.929],[79.366,-83.393],[101.37,-47.056],[109.106,0.017],[109.106,14.468],[-49.643,14.468],[-31.634,52.732],[-15.05,63.245],[4.39,66.495],[31.84,59.476],[52.14,39.242],[104.499,55.76],[81.879,87.554],[46.695,108.007]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","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":[1245.552,203.385],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-29.872,109.076],[-112.592,-109.076],[-48.672,-109.076],[0.626,47.927],[50.761,-109.076],[112.592,-109.076],[29.843,109.076]],"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":[1032.096,202.719],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-10.166,0.138],[-8.471,5.517],[-4.541,9.097],[0.214,11.221],[5.04,10.072],[8.56,5.656],[10.145,0],[8.531,-5.392],[4.533,-9.093],[-0.2,-11.22],[-5.049,-10.07],[-8.549,-5.661]],"o":[[10.164,0.138],[8.56,-5.657],[5.042,-10.072],[0.211,-11.219],[-4.541,-9.096],[-8.531,-5.392],[-10.146,0],[-8.549,5.66],[-5.048,10.07],[-0.203,11.223],[4.533,9.093],[8.472,5.517]],"v":[[0.023,63.168],[28.628,54.91],[48.624,32.392],[55.971,-0.009],[48.624,-32.408],[28.628,-54.926],[0.023,-63.185],[-28.585,-54.926],[-48.553,-32.408],[-55.928,-0.009],[-48.553,32.392],[-28.585,54.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[15.899,0.186],[14.539,5.879],[10.444,10.407],[5.451,13.593],[-0.189,15.724],[-6.004,14.477],[-10.526,10.507],[-13.882,5.596],[-15.923,-0.17],[-14.511,-5.869],[-10.442,-10.401],[-5.499,-13.57],[0.175,-15.617],[5.992,-14.557],[10.573,-10.549],[13.884,-5.594]],"o":[[-15.721,0.157],[-13.764,-5.555],[-10.443,-10.407],[-5.857,-14.637],[-0.173,-15.629],[5.697,-13.634],[10.547,-10.48],[14.749,-5.893],[15.693,-0.146],[13.744,5.596],[10.444,10.402],[5.86,14.521],[0.16,15.7],[-5.664,13.715],[-10.548,10.481],[-14.738,5.855]],"v":[[-0.82,115.196],[-46.674,106.525],[-83.361,82.335],[-107.449,45.963],[-116.03,-0.009],[-107.195,-45.622],[-82.628,-82.179],[-45.608,-106.541],[0.863,-115.212],[46.633,-106.541],[83.278,-82.301],[107.435,-45.979],[116.044,-0.339],[107.21,45.495],[82.616,82.245],[45.594,106.607]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","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":[811.743,203.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 7","np":4,"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":[[15.467,0.192],[13.95,5.722],[9.893,10.214],[5.247,13.419],[-0.147,15.465],[-5.78,14.663],[-10.239,10.767],[-13.737,5.793],[-14.928,-0.138],[-13.773,-6.015],[-9.292,-10.726],[-3.398,-13.87],[0,0],[7.726,5.644],[9.102,-0.062],[7.687,-5.52],[3.855,-9.075],[-0.171,-11.284],[-4.462,-10.149],[-7.95,-5.573],[-9.478,0.098],[-8.052,5.177],[-3.464,9.109],[0,0],[9.877,-10.759],[13.56,-5.558]],"o":[[-15.096,0.145],[-13.182,-5.456],[-10.009,-10.427],[-5.649,-14.416],[-0.149,-15.741],[5.441,-13.779],[10.254,-10.757],[13.737,-5.794],[15.051,-0.155],[13.046,5.71],[9.377,10.83],[0,0],[-3.723,-8.769],[-7.343,-5.335],[-9.49,-0.16],[-7.915,5.948],[-4.56,10.34],[-0.218,11.07],[3.913,8.838],[7.77,5.378],[9.596,0.153],[8.179,-5.389],[0,0],[-3.385,14.156],[-9.88,10.755],[-14.309,5.825]],"v":[[4.823,115.186],[-39.189,106.736],[-74.174,82.979],[-97.278,46.863],[-105.607,1.633],[-97.083,-44.394],[-73.343,-81.556],[-36.972,-106.65],[6.487,-115.223],[50.222,-106.331],[84.153,-81.365],[103.589,-43.788],[48.055,-33.052],[30.562,-55.074],[5.238,-63.196],[-21.225,-54.937],[-39.189,-32.007],[-45.853,0.806],[-39.412,33.013],[-21.279,55.038],[5.238,63.158],[32.312,55.45],[50.222,33.154],[105.756,43.888],[85.54,81.877],[49.943,106.652]],"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":[581.653,203.416],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":5,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1213,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Layer 1 Outlines 2","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"t":60,"s":[770.5,274.667,0],"to":[0,-62.222,0],"ti":[0,62.222,0]},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"t":170,"s":[770.5,-98.667,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0},"t":269,"s":[770.5,-98.667,0],"to":[0,-17.333,0],"ti":[0,17.333,0]},{"t":340,"s":[770.5,-202.667,0]}],"ix":2},"a":{"a":0,"k":[627,167,0],"ix":1},"s":{"a":0,"k":[93.333,93.333,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.005,0],[-8.68,5.791],[-5.066,9.988],[0,12.735],[5.059,9.985],[8.686,5.79],[10.993,0],[8.681,-5.791],[5.06,-9.989],[0,-12.729],[-5.065,-9.982],[-8.679,-5.791]],"o":[[10.993,0],[8.686,-5.791],[5.059,-9.982],[0,-12.729],[-5.066,-9.989],[-8.68,-5.791],[-11.005,0],[-8.679,5.79],[-5.065,9.985],[0,12.735],[5.06,9.988],[8.681,5.791]],"v":[[-1.085,110.474],[28.427,101.794],[49.046,78.132],[56.643,44.059],[49.046,9.984],[28.427,-13.672],[-1.085,-22.359],[-30.604,-13.672],[-51.222,9.984],[-58.82,44.059],[-51.222,78.132],[-30.604,101.794]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-12.3,6.368],[-14.756,0],[-12.734,-6.076],[-9.549,-10.85],[-5.357,-14.471],[0,-17.069],[5.494,-14.756],[9.833,-11.135],[13.306,-6.218],[15.333,0],[12.152,6.361],[7.811,11.582],[0,0]],"o":[[0,0],[0,0],[0,0],[8.097,-10.993],[12.301,-6.361],[15.042,0],[12.729,6.076],[9.548,10.856],[5.351,14.47],[0,17.361],[-5.505,14.763],[-9.84,11.142],[-13.311,6.225],[-15.048,0],[-12.152,-6.363],[0,0],[0,0]],"v":[[-118.719,158.656],[-118.719,-165.165],[-57.951,-165.165],[-57.951,-41.455],[-27.351,-67.502],[13.237,-77.049],[54.907,-67.935],[88.333,-42.543],[110.687,-4.558],[118.719,42.757],[110.472,90.938],[87.465,129.79],[52.738,155.831],[9.765,165.165],[-31.037,155.618],[-60.99,128.703],[-62.726,158.656]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.219607843137,0.360784313725,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1134.648,168.577],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-11.718,6.51],[-15.052,0],[-12.593,-7.955],[-6.945,-14.757],[0,-19.968],[0,0],[0,0],[0,0],[7.229,9.114],[12.735,0],[6.944,-4.192],[4.049,-7.521],[0,-9.555],[0,0]],"o":[[0,0],[0,0],[0,0],[6.653,-10.992],[11.725,-6.51],[16.779,0],[12.586,7.961],[6.944,14.756],[0,0],[0,0],[0,0],[0,-15.918],[-7.236,-9.114],[-9.263,0],[-6.944,4.197],[-4.055,7.527],[0,0],[0,0]],"v":[[-104.61,117.852],[-104.61,-111.343],[-48.618,-111.343],[-46.882,-81.824],[-19.32,-108.084],[20.834,-117.852],[64.896,-105.914],[94.194,-71.842],[104.61,-19.752],[104.61,117.852],[43.837,117.852],[43.837,-11.934],[32.987,-49.488],[3.036,-63.161],[-21.27,-56.865],[-37.768,-39.285],[-43.844,-13.67],[-43.844,117.852]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.219607843137,0.360784313725,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[881.573,209.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},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.005,0],[-8.68,5.791],[-5.066,9.988],[0,12.735],[5.059,9.985],[8.686,5.79],[10.993,0],[8.68,-5.791],[5.059,-9.989],[0,-12.729],[-5.066,-9.982],[-8.68,-5.791]],"o":[[10.993,0],[8.686,-5.791],[5.059,-9.982],[0,-12.729],[-5.066,-9.989],[-8.68,-5.791],[-11.005,0],[-8.68,5.79],[-5.066,9.985],[0,12.735],[5.059,9.988],[8.68,5.791]],"v":[[-1.086,110.474],[28.427,101.794],[49.045,78.132],[56.643,44.059],[49.045,9.984],[28.427,-13.672],[-1.086,-22.359],[-30.604,-13.672],[-51.222,9.984],[-58.82,44.059],[-51.222,78.132],[-30.604,101.794]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-12.301,6.368],[-14.756,0],[-12.734,-6.076],[-9.549,-10.85],[-5.357,-14.471],[0,-17.069],[5.493,-14.756],[9.834,-11.135],[13.306,-6.218],[15.333,0],[12.152,6.361],[7.813,11.582],[0,0]],"o":[[0,0],[0,0],[0,0],[8.098,-10.993],[12.301,-6.361],[15.042,0],[12.729,6.076],[9.548,10.856],[5.351,14.47],[0,17.361],[-5.506,14.763],[-9.84,11.142],[-13.311,6.225],[-15.048,0],[-12.152,-6.363],[0,0],[0,0]],"v":[[-118.719,158.656],[-118.719,-165.165],[-57.953,-165.165],[-57.953,-41.455],[-27.352,-67.502],[13.236,-77.049],[54.907,-67.935],[88.332,-42.543],[110.686,-4.558],[118.719,42.757],[110.473,90.938],[87.464,129.79],[52.737,155.831],[9.765,165.165],[-31.038,155.618],[-60.991,128.703],[-62.727,158.656]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.219607843137,0.360784313725,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[633.881,168.577],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1213,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Layer 1 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,"y":1},"o":{"x":0.333,"y":0},"t":60,"s":[971,413.5,0],"to":[0,-46.667,0],"ti":[0,46.667,0]},{"i":{"x":0,"y":0},"o":{"x":0.333,"y":0.333},"t":170,"s":[971,133.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.56,"y":0},"t":240,"s":[971,133.5,0],"to":[-21.5,0,0],"ti":[21.5,0,0]},{"t":307,"s":[842,133.5,0]}],"ix":2},"a":{"a":0,"k":[627,167,0],"ix":1},"s":{"a":0,"k":[70,70,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[1.522,0.272],[4.049,0],[9.834,-6.511],[5.785,-12.152],[0,0],[0,0],[0,0],[0,0],[0,0],[-8.978,10.279],[-16.79,0],[-3.33,-0.435],[-3.181,-1.15]],"o":[[-1.4,-0.333],[-4.055,-0.72],[-13.317,0],[-9.845,6.509],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-18.805],[8.965,-10.268],[3.471,0],[3.317,0.433],[0,0]],"v":[[66.403,-114.091],[62.081,-115.029],[49.928,-116.116],[15.202,-106.348],[-8.24,-78.352],[-10.41,-113.079],[-66.403,-113.079],[-66.403,116.116],[-5.636,116.116],[-5.636,3.69],[7.824,-39.939],[46.457,-55.344],[56.653,-54.696],[66.403,-52.311]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.219607843137,0.360784313725,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[424.395,211.116],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-30.384,-66.2],[30.384,-66.2],[30.384,162.995],[-30.384,162.995]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0]],"o":[[0,0]],"v":[[-30.384,162.995]],"c":false},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,-6.652],[3.038,-5.208],[5.351,-3.038],[6.361,0],[5.357,3.038],[3.038,5.208],[0,6.665],[-3.038,5.208],[-5.356,3.038],[-6.368,0],[-5.357,-3.038],[-3.038,-5.208]],"o":[[0,6.665],[-3.038,5.208],[-5.357,3.038],[-6.368,0],[-5.356,-3.038],[-3.038,-5.208],[0,-6.652],[3.038,-5.208],[5.357,-3.038],[6.361,0],[5.351,3.038],[3.038,5.208]],"v":[[34.723,-128.275],[30.17,-110.474],[17.577,-98.102],[-0.003,-93.548],[-17.583,-98.102],[-30.17,-110.474],[-34.723,-128.275],[-30.17,-146.069],[-17.583,-158.441],[-0.003,-162.995],[17.577,-158.441],[30.17,-146.069]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.219607843137,0.360784313725,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[297.928,164.237],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":5,"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":[[-11.002,0],[-8.684,5.791],[-5.069,9.988],[0,12.735],[5.059,9.985],[8.68,5.79],[10.993,0],[8.684,-5.791],[5.06,-9.989],[0,-12.729],[-5.065,-9.982],[-8.68,-5.791]],"o":[[10.993,0],[8.68,-5.791],[5.059,-9.982],[0,-12.729],[-5.069,-9.989],[-8.684,-5.791],[-11.002,0],[-8.68,5.79],[-5.065,9.985],[0,12.735],[5.06,9.988],[8.684,5.791]],"v":[[1.085,66.416],[30.604,57.736],[51.222,34.074],[58.817,0.001],[51.222,-34.074],[30.604,-57.73],[1.085,-66.417],[-28.434,-57.73],[-49.052,-34.074],[-56.647,0.001],[-49.052,34.074],[-28.434,57.736]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[15.627,0],[12.732,6.076],[9.551,10.85],[5.351,14.477],[0,17.081],[-5.499,14.756],[-9.84,11.148],[-13.315,6.224],[-15.342,0],[-12.156,-6.361],[-7.812,-11.569],[0,0],[0,0],[0,0],[0,0],[0,0],[13.023,-7.086]],"o":[[-15.051,0],[-12.738,-6.076],[-9.549,-10.857],[-5.356,-14.465],[0,-17.36],[5.494,-14.763],[9.836,-11.136],[13.309,-6.219],[15.044,0],[12.151,6.368],[0,0],[0,0],[0,0],[0,0],[0,0],[-7.812,12.449],[-13.02,7.092]],"v":[[-13.24,121.107],[-54.911,111.993],[-88.335,86.601],[-110.69,48.616],[-118.719,1.303],[-110.473,-46.88],[-87.467,-85.733],[-52.741,-111.773],[-9.768,-121.107],[31.038,-111.56],[60.987,-84.645],[62.723,-114.598],[118.719,-114.598],[118.719,114.598],[62.723,114.598],[60.987,81.173],[29.732,110.471]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.219607843137,0.360784313725,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[119.144,212.635],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1213,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"ENG_XL_Anim","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[424.5,217,0],"ix":2},"a":{"a":0,"k":[424.5,217,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":849,"h":434,"ip":0,"op":1153,"st":-60,"bm":0}],"markers":[]}
@@ -0,0 +1 @@
1
+ {"assets":[],"layers":[{"ddd":0,"ind":0,"ty":4,"nm":"Belo 2","ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[960.853,511.103,0]},"a":{"k":[686.853,600.853,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":[{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.167},"n":"0p833_0p834_0p167_0p167","t":26,"s":[{"i":[[1.986,-2.9],[0.017,3.843],[-1.628,10.562],[-1.654,9.824],[-1.409,0],[0,0],[-1.654,-9.824],[-2.026,-13.144],[0.267,-7.745],[2.482,3.845],[0,0],[3.979,16.829],[-1.086,0],[0,0],[3.293,-13.441],[0,0]],"o":[[-2.307,3.369],[-0.038,-8.728],[2.026,-13.144],[1.654,-9.824],[0,0],[1.409,0],[1.654,9.824],[1.628,10.562],[-0.263,7.613],[-2.098,-3.251],[0,0],[-3.184,-13.468],[0,0],[1.086,0],[-3.225,13.162],[0,0]],"v":[[-228.935,209.898],[-231.954,206.844],[-226.537,176.221],[-214.863,105.146],[-209.419,94.223],[-209.373,94.224],[-203.891,105.146],[-192.099,176.221],[-187.737,206.47],[-191.61,208.192],[-196.453,194.936],[-205.645,158.588],[-209.377,139.986],[-209.372,139.987],[-214.108,158.921],[-223.961,194.936]],"c":true}],"e":[{"i":[[3.406,-2.9],[1.703,6.28],[-2.793,10.562],[-2.837,9.824],[-2.416,0],[0,0],[-2.837,-9.824],[-3.475,-13.144],[5.467,-7.063],[4.256,3.845],[0,0],[0,15.014],[-1.862,0],[0,0],[0,-13.839],[0,0]],"o":[[-3.957,3.369],[-2.338,-8.621],[3.475,-13.144],[2.837,-9.824],[0,0],[2.416,0],[2.837,9.824],[2.793,10.562],[-5.914,7.64],[-3.599,-3.251],[0,0],[0,-13.839],[0,0],[1.862,0],[0,15.014],[0,0]],"v":[[-230.284,209.884],[-240.036,206.857],[-239.321,176.221],[-219.299,105.146],[-209.962,94.223],[-209.883,94.224],[-200.482,105.146],[-180.459,176.221],[-180.411,206.777],[-191.054,208.277],[-201.075,195.01],[-213.781,158.502],[-209.891,139.986],[-209.882,139.987],[-206,158.502],[-220.039,195.01]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.37,"y":0.371},"n":"0p833_1_0p37_0p371","t":29,"s":[{"i":[[3.406,-2.9],[1.703,6.28],[-2.793,10.562],[-2.837,9.824],[-2.416,0],[0,0],[-2.837,-9.824],[-3.475,-13.144],[5.467,-7.063],[4.256,3.845],[0,0],[0,15.014],[-1.862,0],[0,0],[0,-13.839],[0,0]],"o":[[-3.957,3.369],[-2.338,-8.621],[3.475,-13.144],[2.837,-9.824],[0,0],[2.416,0],[2.837,9.824],[2.793,10.562],[-5.914,7.64],[-3.599,-3.251],[0,0],[0,-13.839],[0,0],[1.862,0],[0,15.014],[0,0]],"v":[[-230.284,209.884],[-240.036,206.857],[-239.321,176.221],[-219.299,105.146],[-209.962,94.223],[-209.883,94.224],[-200.482,105.146],[-180.459,176.221],[-180.411,206.777],[-191.054,208.277],[-201.075,195.01],[-213.781,158.502],[-209.891,139.986],[-209.882,139.987],[-206,158.502],[-220.039,195.01]],"c":true}],"e":[{"i":[[5.902,-2.9],[8.751,6.525],[-4.839,10.562],[-4.915,9.824],[-4.186,0],[0,0],[-4.915,-9.824],[-6.021,-13.144],[9.473,-7.063],[7.375,3.845],[0,0],[0,15.014],[-8.282,0],[0,0],[0,-13.839],[0,0]],"o":[[-6.855,3.369],[-9.473,-7.064],[6.022,-13.144],[4.915,-9.824],[0,0],[4.186,0],[4.915,9.824],[4.839,10.562],[-10.246,7.64],[-6.235,-3.251],[0,0],[0,-13.839],[0,0],[8.282,0],[0,15.014],[0,0]],"v":[[-230.402,209.817],[-255.96,206.777],[-260.883,176.221],[-226.191,105.146],[-210.014,94.223],[-209.878,94.224],[-193.589,105.146],[-158.898,176.221],[-163.819,206.777],[-192.656,207.944],[-207.323,195.046],[-227.194,158.502],[-209.893,139.986],[-209.853,139.987],[-192.587,158.502],[-212.458,195.046]],"c":true}]},{"t":38.0003792855355}]},"nm":"Path 2","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"k":[1,0.35,0.37,1]},"o":{"k":100},"w":{"k":8},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":2,"mn":"ADBE Vector Group"}],"ip":26,"op":40,"st":-426.464464464464,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"Belo","ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[960.853,511.103,0]},"a":{"k":[686.853,600.853,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.37,"y":0},"n":"0p833_0p833_0p37_0","t":0,"s":[{"i":[[5.902,-2.9],[8.751,6.525],[-4.839,10.562],[-4.915,9.824],[-4.186,0],[0,0],[-4.915,-9.824],[-6.021,-13.144],[9.473,-7.063],[7.375,3.845],[0,0],[0,15.014],[-8.282,0],[0,0],[0,-13.839],[0,0]],"o":[[-6.855,3.369],[-9.473,-7.064],[6.022,-13.144],[4.915,-9.824],[0,0],[4.186,0],[4.915,9.824],[4.839,10.562],[-10.246,7.64],[-6.235,-3.251],[0,0],[0,-13.839],[0,0],[8.282,0],[0,15.014],[0,0]],"v":[[-230.402,209.817],[-255.96,206.777],[-260.883,176.221],[-226.191,105.146],[-210.014,94.223],[-209.878,94.224],[-193.589,105.146],[-158.898,176.221],[-163.819,206.777],[-192.656,207.944],[-207.323,195.046],[-227.194,158.502],[-209.893,139.986],[-209.853,139.987],[-192.587,158.502],[-212.458,195.046]],"c":true}],"e":[{"i":[[8.041,-2.271],[8.029,6.525],[-4.439,10.562],[-4.509,9.824],[-3.841,0],[0,0],[-4.509,-9.824],[-5.524,-13.144],[8.691,-7.063],[6.766,3.845],[0,0],[0,15.014],[-10.158,0],[0,0],[0,-13.839],[0,0]],"o":[[-8.594,2.427],[-8.692,-7.064],[5.525,-13.144],[4.509,-9.824],[0,0],[3.841,0],[4.509,9.824],[4.439,10.562],[-9.4,7.64],[-5.721,-3.251],[0,0],[0,-13.839],[0,0],[10.158,0],[0,15.014],[0,0]],"v":[[-229.208,209.965],[-252.159,206.221],[-256.675,176.221],[-224.846,105.146],[-209.898,94.221],[-209.757,94.224],[-194.934,105.146],[-163.106,176.221],[-167.621,206.221],[-194.411,208.722],[-208.741,199.602],[-231.114,158.502],[-209.991,139.988],[-209.846,139.987],[-188.667,158.502],[-208.706,198.935]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":14,"s":[{"i":[[8.041,-2.271],[8.029,6.525],[-4.439,10.562],[-4.509,9.824],[-3.841,0],[0,0],[-4.509,-9.824],[-5.524,-13.144],[8.691,-7.063],[6.766,3.845],[0,0],[0,15.014],[-10.158,0],[0,0],[0,-13.839],[0,0]],"o":[[-8.594,2.427],[-8.692,-7.064],[5.525,-13.144],[4.509,-9.824],[0,0],[3.841,0],[4.509,9.824],[4.439,10.562],[-9.4,7.64],[-5.721,-3.251],[0,0],[0,-13.839],[0,0],[10.158,0],[0,15.014],[0,0]],"v":[[-229.208,209.965],[-252.159,206.221],[-256.675,176.221],[-224.846,105.146],[-209.898,94.221],[-209.757,94.224],[-194.934,105.146],[-163.106,176.221],[-167.621,206.221],[-194.411,208.722],[-208.741,199.602],[-231.114,158.502],[-209.991,139.988],[-209.846,139.987],[-188.667,158.502],[-208.706,198.935]],"c":true}],"e":[{"i":[[6.742,-4.113],[4.356,3.963],[-2.706,10.562],[-2.749,9.824],[-2.341,0],[0,0],[-2.749,-9.824],[-3.367,-13.144],[6.119,-6.365],[4.335,4.598],[3.205,5.704],[0,15.014],[-4.632,0],[0,0],[0,-13.839],[4.703,-11.785]],"o":[[-8.937,5.452],[-6.531,-5.942],[3.368,-13.144],[2.749,-9.824],[0,0],[2.341,0],[2.749,9.824],[2.706,10.562],[-7.986,8.307],[-3.271,-3.469],[-6.172,-10.985],[0,-13.839],[0,0],[4.632,0],[0,15.014],[-3.174,7.954]],"v":[[-212.742,209.613],[-230.1,206.11],[-238.408,176.221],[-219.007,105.146],[-209.996,94.224],[-209.835,94.224],[-200.774,105.146],[-181.373,176.221],[-189.681,206.11],[-208.71,208.277],[-218.205,194.046],[-228.114,158.588],[-209.982,139.988],[-209.848,139.987],[-193.333,158.588],[-200.326,193.796]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20,"s":[{"i":[[6.742,-4.113],[4.356,3.963],[-2.706,10.562],[-2.749,9.824],[-2.341,0],[0,0],[-2.749,-9.824],[-3.367,-13.144],[6.119,-6.365],[4.335,4.598],[3.205,5.704],[0,15.014],[-4.632,0],[0,0],[0,-13.839],[4.703,-11.785]],"o":[[-8.937,5.452],[-6.531,-5.942],[3.368,-13.144],[2.749,-9.824],[0,0],[2.341,0],[2.749,9.824],[2.706,10.562],[-7.986,8.307],[-3.271,-3.469],[-6.172,-10.985],[0,-13.839],[0,0],[4.632,0],[0,15.014],[-3.174,7.954]],"v":[[-212.742,209.613],[-230.1,206.11],[-238.408,176.221],[-219.007,105.146],[-209.996,94.224],[-209.835,94.224],[-200.774,105.146],[-181.373,176.221],[-189.681,206.11],[-208.71,208.277],[-218.205,194.046],[-228.114,158.588],[-209.982,139.988],[-209.848,139.987],[-193.333,158.588],[-200.326,193.796]],"c":true}],"e":[{"i":[[3.076,-3.427],[2.106,3.42],[-0.565,10.562],[-0.574,9.824],[-0.489,0],[0,0],[-0.574,-9.824],[-0.704,-13.144],[3.697,-8.617],[1.394,4.022],[0.561,4.329],[-2.379,14.98],[-3.633,2.771],[-0.279,-0.364],[-1.356,-8.751],[0.789,-11.735]],"o":[[-4.459,5.2],[-3.623,-7.831],[0.704,-13.144],[0.574,-9.824],[0,0],[0.489,0],[0.574,9.824],[0.565,10.562],[-4.437,7.94],[-1.171,-4.134],[-1.284,-5.885],[1.5,-10.538],[0.288,-0.322],[4.201,3.971],[2.185,12.275],[-0.611,6.148]],"v":[[-200.826,209.489],[-210.343,205.831],[-215.849,176.221],[-211.795,105.146],[-209.959,94.224],[-209.907,94.223],[-207.986,105.146],[-203.932,176.221],[-210.188,207.018],[-219.699,207.232],[-221.999,193.296],[-221.428,158.588],[-210.485,140.039],[-209.159,140.145],[-199.144,157.879],[-196.94,194.715]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":23,"s":[{"i":[[3.076,-3.427],[2.106,3.42],[-0.565,10.562],[-0.574,9.824],[-0.489,0],[0,0],[-0.574,-9.824],[-0.704,-13.144],[3.697,-8.617],[1.394,4.022],[0.561,4.329],[-2.379,14.98],[-3.633,2.771],[-0.279,-0.364],[-1.356,-8.751],[0.789,-11.735]],"o":[[-4.459,5.2],[-3.623,-7.831],[0.704,-13.144],[0.574,-9.824],[0,0],[0.489,0],[0.574,9.824],[0.565,10.562],[-4.437,7.94],[-1.171,-4.134],[-1.284,-5.885],[1.5,-10.538],[0.288,-0.322],[4.201,3.971],[2.185,12.275],[-0.611,6.148]],"v":[[-200.826,209.489],[-210.343,205.831],[-215.849,176.221],[-211.795,105.146],[-209.959,94.224],[-209.907,94.223],[-207.986,105.146],[-203.932,176.221],[-210.188,207.018],[-219.699,207.232],[-221.999,193.296],[-221.428,158.588],[-210.485,140.039],[-209.159,140.145],[-199.144,157.879],[-196.94,194.715]],"c":true}],"e":[{"i":[[1.854,-3.198],[1.356,3.239],[0.148,10.562],[0.15,9.824],[0.128,0],[0,0],[0.151,-9.824],[0.184,-13.144],[2.89,-9.368],[0.414,3.83],[-0.32,3.87],[-3.171,14.969],[-3.3,3.694],[-0.372,-0.485],[-1.808,-7.054],[-0.515,-11.718]],"o":[[-2.966,5.117],[-2.654,-8.46],[-0.184,-13.144],[-0.15,-9.824],[0,0],[-0.128,0],[-0.15,9.824],[-0.148,10.562],[-3.254,7.818],[-0.471,-4.355],[0.346,-4.186],[2,-9.438],[0.384,-0.43],[4.057,5.294],[2.913,11.362],[0.244,5.547]],"v":[[-196.854,209.448],[-203.757,205.738],[-208.329,176.221],[-209.391,105.146],[-209.89,94.221],[-209.931,94.222],[-210.39,105.146],[-211.452,176.221],[-217.023,207.321],[-223.363,206.883],[-223.264,193.046],[-219.2,158.588],[-210.652,140.056],[-208.93,140.198],[-201.081,157.642],[-195.812,195.022]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":24,"s":[{"i":[[1.854,-3.198],[1.356,3.239],[0.148,10.562],[0.15,9.824],[0.128,0],[0,0],[0.151,-9.824],[0.184,-13.144],[2.89,-9.368],[0.414,3.83],[-0.32,3.87],[-3.171,14.969],[-3.3,3.694],[-0.372,-0.485],[-1.808,-7.054],[-0.515,-11.718]],"o":[[-2.966,5.117],[-2.654,-8.46],[-0.184,-13.144],[-0.15,-9.824],[0,0],[-0.128,0],[-0.15,9.824],[-0.148,10.562],[-3.254,7.818],[-0.471,-4.355],[0.346,-4.186],[2,-9.438],[0.384,-0.43],[4.057,5.294],[2.913,11.362],[0.244,5.547]],"v":[[-196.854,209.448],[-203.757,205.738],[-208.329,176.221],[-209.391,105.146],[-209.89,94.221],[-209.931,94.222],[-210.39,105.146],[-211.452,176.221],[-217.023,207.321],[-223.363,206.883],[-223.264,193.046],[-219.2,158.588],[-210.652,140.056],[-208.93,140.198],[-201.081,157.642],[-195.812,195.022]],"c":true}],"e":[{"i":[[-2.917,-4.925],[0.287,3.906],[2.623,12.029],[1.6,9.824],[1.363,0],[0,0],[1.6,-9.824],[1.96,-13.144],[1.429,-10.851],[-2.401,3.845],[0,0],[-3.591,15.162],[-1.933,8.087],[-0.109,-0.547],[-2.961,-13.086],[0,0]],"o":[[2.307,3.896],[-0.715,-9.719],[-2.831,-12.984],[-1.6,-9.824],[0,0],[-1.363,0],[-1.6,9.824],[-1.575,10.562],[-0.805,6.115],[2.03,-3.251],[0,0],[3.189,-13.466],[0.128,-0.678],[1.506,6.949],[3.615,15.972],[0,0]],"v":[[-190.057,209.604],[-186.461,205.802],[-192.123,174.221],[-204.584,105.146],[-209.888,94.221],[-209.956,94.218],[-215.197,105.146],[-227.491,175.887],[-232.445,208.51],[-228.001,207.769],[-222.293,192.213],[-215.242,164.755],[-210.223,140.32],[-209.391,140.27],[-204.872,161.169],[-196.721,194.51]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":26,"s":[{"i":[[-2.917,-4.925],[0.287,3.906],[2.623,12.029],[1.6,9.824],[1.363,0],[0,0],[1.6,-9.824],[1.96,-13.144],[1.429,-10.851],[-2.401,3.845],[0,0],[-3.591,15.162],[-1.933,8.087],[-0.109,-0.547],[-2.961,-13.086],[0,0]],"o":[[2.307,3.896],[-0.715,-9.719],[-2.831,-12.984],[-1.6,-9.824],[0,0],[-1.363,0],[-1.6,9.824],[-1.575,10.562],[-0.805,6.115],[2.03,-3.251],[0,0],[3.189,-13.466],[0.128,-0.678],[1.506,6.949],[3.615,15.972],[0,0]],"v":[[-190.057,209.604],[-186.461,205.802],[-192.123,174.221],[-204.584,105.146],[-209.888,94.221],[-209.956,94.218],[-215.197,105.146],[-227.491,175.887],[-232.445,208.51],[-228.001,207.769],[-222.293,192.213],[-215.242,164.755],[-210.223,140.32],[-209.391,140.27],[-204.872,161.169],[-196.721,194.51]],"c":true}],"e":[{"i":[[-5.167,-4.874],[-2.697,4.775],[3.35,11.543],[2.692,9.824],[2.293,0],[0,0],[2.692,-9.824],[3.298,-13.144],[-2.173,-9.594],[-4.039,3.845],[0,0],[-2.4,15.113],[1.126,2.208],[0.158,-0.362],[-1.979,-13.336],[0,0]],"o":[[3.825,3.726],[2.65,-8.838],[-3.88,-13.037],[-2.692,-9.824],[0,0],[-2.293,0],[-2.692,9.824],[-2.65,10.562],[2.845,6.621],[3.415,-3.251],[0,0],[2.131,-13.59],[-0.225,-0.44],[-1.067,2.444],[2.415,15.654],[0,0]],"v":[[-189.806,209.576],[-179.024,206.125],[-181.182,174.884],[-200.962,105.146],[-209.878,94.222],[-209.954,94.222],[-218.819,105.146],[-238.488,175.998],[-240.172,207.935],[-228.056,208.159],[-219.025,193.153],[-207.753,162.68],[-209.751,140.208],[-210.474,140.181],[-212.25,160.284],[-200.243,194.688]],"c":true}]},{"i":{"x":0.63,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p63_1_0p167_0p167","t":29,"s":[{"i":[[-5.167,-4.874],[-2.697,4.775],[3.35,11.543],[2.692,9.824],[2.293,0],[0,0],[2.692,-9.824],[3.298,-13.144],[-2.173,-9.594],[-4.039,3.845],[0,0],[-2.4,15.113],[1.126,2.208],[0.158,-0.362],[-1.979,-13.336],[0,0]],"o":[[3.825,3.726],[2.65,-8.838],[-3.88,-13.037],[-2.692,-9.824],[0,0],[-2.293,0],[-2.692,9.824],[-2.65,10.562],[2.845,6.621],[3.415,-3.251],[0,0],[2.131,-13.59],[-0.225,-0.44],[-1.067,2.444],[2.415,15.654],[0,0]],"v":[[-189.806,209.576],[-179.024,206.125],[-181.182,174.884],[-200.962,105.146],[-209.878,94.222],[-209.954,94.222],[-218.819,105.146],[-238.488,175.998],[-240.172,207.935],[-228.056,208.159],[-219.025,193.153],[-207.753,162.68],[-209.751,140.208],[-210.474,140.181],[-212.25,160.284],[-200.243,194.688]],"c":true}],"e":[{"i":[[-9.699,-4.771],[-8.708,6.525],[4.815,10.562],[4.891,9.824],[4.165,0],[0,0],[4.891,-9.824],[5.992,-13.144],[-9.426,-7.063],[-7.338,3.845],[0,0],[0,15.014],[8.241,0],[0,0],[0,-13.839],[0,0]],"o":[[6.882,3.385],[9.427,-7.064],[-5.992,-13.144],[-4.891,-9.824],[0,0],[-4.166,0],[-4.891,9.824],[-4.815,10.562],[10.196,7.64],[6.205,-3.251],[0,0],[0,-13.839],[0,0],[-8.241,0],[0,15.014],[0,0]],"v":[[-189.301,209.521],[-164.046,206.777],[-159.148,176.221],[-193.669,105.146],[-209.849,94.222],[-210.008,94.219],[-226.112,105.146],[-260.633,176.221],[-255.735,206.777],[-228.332,208.611],[-212.612,194.796],[-192.672,158.502],[-209.888,139.986],[-210.137,140.005],[-227.109,158.502],[-207.336,195.046]],"c":true}]},{"t":38.0003792855355}]},"nm":"Path 2","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"k":[1,0.35,0.37,1]},"o":{"k":100},"w":{"k":8},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":2,"mn":"ADBE Vector Group"}],"ip":0,"op":27,"st":-464.464464464464,"bm":0,"sr":1}],"v":"4.5.4","ddd":0,"ip":0,"op":40,"fr":60,"w":128,"h":128}