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":"5.6.6","ip":0,"op":1,"fr":60,"w":208,"h":226,"layers":[{"ind":19265,"nm":"surface74460","ao":0,"ip":0,"op":60,"st":0,"ty":4,"ks":{"ty":"tr","o":{"k":100},"r":{"k":0},"p":{"k":[0,0]},"a":{"k":[0,0]},"s":{"k":[133,133]},"sk":{"k":0},"sa":{"k":0}},"shapes":[{"ty":"gr","hd":false,"it":[{"ty":"sh","ks":{"k":{"i":[[0,0],[18,-34],[19,37],[-37,0]],"o":[[37,0],[-18,35],[-19,-37],[0,0]],"v":[[78,0],[152,141],[4,141],[78,0]],"c":true}}},{"ty":"gf","s":{"k":[77.7,42.31]},"e":{"k":[78,192]},"t":1,"h":{"k":0},"a":{"k":0},"g":{"p":3,"k":{"k":[0,0.65,0.39,0.39,0.4,0.81,0.64,0.29,1,0.4,0.12,0.62,0,1,0.4,1,1,1]}},"hd":false,"o":{"k":100}},{"ty":"tr","o":{"k":100},"r":{"k":0},"p":{"k":[0,0]},"a":{"k":[0,0]},"s":{"k":[100,100]},"sk":{"k":0},"sa":{"k":0},"hd":false}]}]}],"meta":{"g":"LF SVG to Lottie"}}
@@ -0,0 +1 @@
1
+ {"v":"5.7.4","fr":25,"ip":0,"op":125,"w":360,"h":100,"nm":"DashboardAnimation","ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Signal_1 Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":65,"s":[0]},{"i":{"x":[0.65],"y":[16.079]},"o":{"x":[0.3],"y":[0]},"t":71,"s":[100]},{"i":{"x":[0.823],"y":[1]},"o":{"x":[0.412],"y":[0.296]},"t":74,"s":[100]},{"t":79,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[41.048,15.777,0],"ix":2,"l":2},"a":{"a":0,"k":[14.144,6.679,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.02,0],[0.02,0],[2.89,4.15],[-1.586,1.104],[-1.105,-1.588],[-2.791,-0.066],[-1.595,2.344],[-1.596,-1.086],[1.088,-1.598],[5.125,-0.088]],"o":[[-0.02,0],[-5.055,-0.085],[-1.104,-1.587],[1.585,-1.105],[1.596,2.293],[2.832,-0.068],[1.087,-1.599],[1.599,1.088],[-2.884,4.238],[-0.02,0]],"v":[[-0.044,6.428],[-0.103,6.428],[-12.79,-0.335],[-11.917,-5.206],[-7.044,-4.333],[-0.044,-0.572],[7.019,-4.417],[11.881,-5.342],[12.806,-0.48],[0.016,6.428]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.482352971096,0.556862745098,0.882353001015,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[14.144,6.679],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":65,"op":92,"st":65,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Signal_2 Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":71,"s":[0]},{"i":{"x":[0.65],"y":[16.079]},"o":{"x":[0.3],"y":[0]},"t":77,"s":[100]},{"i":{"x":[0.823],"y":[1]},"o":{"x":[0.412],"y":[0.296]},"t":80,"s":[100]},{"t":85,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[40.682,41.028,0],"ix":2,"l":2},"a":{"a":0,"k":[22.769,8.422,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.261,-0.104],[5.259,6.313],[-1.485,1.237],[-1.237,-1.485],[-6.165,-0.075],[-3.95,4.782],[-1.489,-1.231],[1.231,-1.49]],"o":[[-8.301,-0.101],[-1.237,-1.485],[1.486,-1.236],[3.947,4.736],[6.113,-0.077],[1.232,-1.489],[1.49,1.231],[-5.264,6.371]],"v":[[0.006,8.172],[-21.282,-1.919],[-20.833,-6.848],[-15.904,-6.399],[0.006,1.172],[15.891,-6.473],[20.819,-6.941],[21.288,-2.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.482352971096,0.556862745098,0.882353001015,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[22.769,8.422],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":71,"op":92,"st":71,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Signal_3 Outlines","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":77,"s":[0]},{"i":{"x":[0.65],"y":[16.079]},"o":{"x":[0.3],"y":[0]},"t":83,"s":[100]},{"i":{"x":[0.823],"y":[1]},"o":{"x":[0.412],"y":[0.296]},"t":86,"s":[100]},{"t":91,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[40.683,64.421,0],"ix":2,"l":2},"a":{"a":0,"k":[34.09,11.134,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.407,0],[8.624,9.946],[-1.461,1.266],[-1.267,-1.46],[-10.282,0],[-7.29,8.471],[-1.467,-1.262],[1.261,-1.466]],"o":[[-12.343,0],[-1.266,-1.461],[1.461,-1.267],[7.274,8.391],[10.336,0],[1.26,-1.463],[1.465,1.262],[-8.64,10.04]],"v":[[-0.06,10.884],[-32.574,-4.541],[-32.222,-9.478],[-27.285,-9.127],[-0.06,3.884],[27.273,-9.252],[32.209,-9.622],[32.579,-4.685]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.482352971096,0.556862745098,0.882353001015,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[34.09,11.134],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":77,"op":92,"st":77,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Signal_1 Outlines 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":92,"s":[0]},{"t":98,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[41.048,15.777,0],"ix":2,"l":2},"a":{"a":0,"k":[14.144,6.679,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.02,0],[0.02,0],[2.89,4.15],[-1.586,1.104],[-1.105,-1.588],[-2.791,-0.066],[-1.595,2.344],[-1.596,-1.086],[1.088,-1.598],[5.125,-0.088]],"o":[[-0.02,0],[-5.055,-0.085],[-1.104,-1.587],[1.585,-1.105],[1.596,2.293],[2.832,-0.068],[1.087,-1.599],[1.599,1.088],[-2.884,4.238],[-0.02,0]],"v":[[-0.044,6.428],[-0.103,6.428],[-12.79,-0.335],[-11.917,-5.206],[-7.044,-4.333],[-0.044,-0.572],[7.019,-4.417],[11.881,-5.342],[12.806,-0.48],[0.016,6.428]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.482352971096,0.556862745098,0.882353001015,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[14.144,6.679],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":92,"op":149,"st":92,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Signal_2 Outlines 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":98,"s":[0]},{"t":104,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[40.682,41.028,0],"ix":2,"l":2},"a":{"a":0,"k":[22.769,8.422,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.261,-0.104],[5.259,6.313],[-1.485,1.237],[-1.237,-1.485],[-6.165,-0.075],[-3.95,4.782],[-1.489,-1.231],[1.231,-1.49]],"o":[[-8.301,-0.101],[-1.237,-1.485],[1.486,-1.236],[3.947,4.736],[6.113,-0.077],[1.232,-1.489],[1.49,1.231],[-5.264,6.371]],"v":[[0.006,8.172],[-21.282,-1.919],[-20.833,-6.848],[-15.904,-6.399],[0.006,1.172],[15.891,-6.473],[20.819,-6.941],[21.288,-2.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.482352971096,0.556862745098,0.882353001015,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[22.769,8.422],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":98,"op":149,"st":98,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Signal_3 Outlines 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":104,"s":[0]},{"t":110,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[40.683,64.421,0],"ix":2,"l":2},"a":{"a":0,"k":[34.09,11.134,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.407,0],[8.624,9.946],[-1.461,1.266],[-1.267,-1.46],[-10.282,0],[-7.29,8.471],[-1.467,-1.262],[1.261,-1.466]],"o":[[-12.343,0],[-1.266,-1.461],[1.461,-1.267],[7.274,8.391],[10.336,0],[1.26,-1.463],[1.465,1.262],[-8.64,10.04]],"v":[[-0.06,10.884],[-32.574,-4.541],[-32.222,-9.478],[-27.285,-9.127],[-0.06,3.884],[27.273,-9.252],[32.209,-9.622],[32.579,-4.685]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.482352971096,0.556862745098,0.882353001015,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[34.09,11.134],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":104,"op":149,"st":104,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Signal_1 Outlines 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[41.048,15.777,0],"ix":2,"l":2},"a":{"a":0,"k":[14.144,6.679,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.02,0],[0.02,0],[2.89,4.15],[-1.586,1.104],[-1.105,-1.588],[-2.791,-0.066],[-1.595,2.344],[-1.596,-1.086],[1.088,-1.598],[5.125,-0.088]],"o":[[-0.02,0],[-5.055,-0.085],[-1.104,-1.587],[1.585,-1.105],[1.596,2.293],[2.832,-0.068],[1.087,-1.599],[1.599,1.088],[-2.884,4.238],[-0.02,0]],"v":[[-0.044,6.428],[-0.103,6.428],[-12.79,-0.335],[-11.917,-5.206],[-7.044,-4.333],[-0.044,-0.572],[7.019,-4.417],[11.881,-5.342],[12.806,-0.48],[0.016,6.428]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.782613597197,0.806062406652,0.908496751972,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[14.144,6.679],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":149,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Signal_2 Outlines 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[40.682,41.028,0],"ix":2,"l":2},"a":{"a":0,"k":[22.769,8.422,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.261,-0.104],[5.259,6.313],[-1.485,1.237],[-1.237,-1.485],[-6.165,-0.075],[-3.95,4.782],[-1.489,-1.231],[1.231,-1.49]],"o":[[-8.301,-0.101],[-1.237,-1.485],[1.486,-1.236],[3.947,4.736],[6.113,-0.077],[1.232,-1.489],[1.49,1.231],[-5.264,6.371]],"v":[[0.006,8.172],[-21.282,-1.919],[-20.833,-6.848],[-15.904,-6.399],[0.006,1.172],[15.891,-6.473],[20.819,-6.941],[21.288,-2.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.782613597197,0.806062406652,0.908496751972,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[22.769,8.422],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":149,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Signal_3 Outlines 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[40.683,64.421,0],"ix":2,"l":2},"a":{"a":0,"k":[34.09,11.134,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.407,0],[8.624,9.946],[-1.461,1.266],[-1.267,-1.46],[-10.282,0],[-7.29,8.471],[-1.467,-1.262],[1.261,-1.466]],"o":[[-12.343,0],[-1.266,-1.461],[1.461,-1.267],[7.274,8.391],[10.336,0],[1.26,-1.463],[1.465,1.262],[-8.64,10.04]],"v":[[-0.06,10.884],[-32.574,-4.541],[-32.222,-9.478],[-27.285,-9.127],[-0.06,3.884],[27.273,-9.252],[32.209,-9.622],[32.579,-4.685]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.782613597197,0.806062406652,0.908496751972,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[34.09,11.134],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":149,"st":0,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"CheckMark","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[35.24,15.579,0],"ix":2,"l":2},"a":{"a":0,"k":[10.157,10.157,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":52,"s":[0,0,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":57,"s":[120,120,100]},{"t":60,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.559,-0.393],[0.348,-0.558],[0,0],[0,0],[0.554,0.4],[0.044,0.043],[0,0],[0,0],[-0.497,0.47],[-0.471,-0.497],[0,0],[0,0]],"o":[[0.393,-0.56],[0.539,0.377],[0,0],[0,0],[-0.4,0.555],[-0.05,-0.036],[0,0],[0,0],[-0.471,-0.497],[0.498,-0.471],[0,0],[0,0],[0,0]],"v":[[2.402,-3.814],[4.126,-4.115],[4.466,-2.447],[4.41,-2.363],[-0.062,3.829],[-1.79,4.109],[-1.932,3.99],[-2,3.917],[-4.343,1.234],[-4.296,-0.518],[-2.543,-0.471],[-2.469,-0.393],[-1.157,1.115]],"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":[10.424,10.149],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.471,0],[0,0],[0,-5.471],[0,0],[5.471,0],[0,0],[0,5.471],[0,0]],"o":[[0,0],[5.471,0],[0,0],[0,5.471],[0,0],[-5.471,0],[0,0],[0,-5.471]],"v":[[-0.001,-9.906],[0.001,-9.906],[9.906,-0.001],[9.906,0.001],[0.001,9.906],[-0.001,9.906],[-9.906,0.001],[-9.906,-0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.196078446332,0.588235294118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[10.156,10.157],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":52,"op":148,"st":36,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Line 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[35,15.912,0],"ix":2,"l":2},"a":{"a":0,"k":[-64,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-84.917,-0.347],[-43.583,-0.365]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.482352971096,0.556862745098,0.882353001015,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.385],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":37,"s":[0]},{"t":48,"s":[100]}],"ix":1},"e":{"a":0,"k":0,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":2,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":37,"op":148,"st":37,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Line 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[35,15.912,0],"ix":2,"l":2},"a":{"a":0,"k":[-64,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-85.5,-0.347],[-43.417,-0.347]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.482352971096,0.556862745098,0.882353001015,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.364],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":10,"s":[0]},{"t":25.888671875,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.335],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":20.111,"s":[0]},{"t":36,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":2,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":10,"op":37,"st":10,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Line","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[35,15.912,0],"ix":2,"l":2},"a":{"a":0,"k":[-64,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-85.25,-0.347],[-43.5,-0.338]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.741248396331,0.76899360208,0.890196078431,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":148,"st":0,"bm":0}]}],"fonts":{"list":[{"fName":"Arial-BoldMT","fFamily":"Arial","fStyle":"Bold","ascent":71.5988159179688}]},"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Wifi","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-90,"ix":10},"p":{"a":0,"k":[242,50,0],"ix":2,"l":2},"a":{"a":0,"k":[41,41,0],"ix":1,"l":2},"s":{"a":0,"k":[47.967,47.967,100],"ix":6,"l":2}},"ao":0,"w":82,"h":82,"ip":0,"op":128,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Mobile/Assets Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[320.767,55,0],"ix":2,"l":2},"a":{"a":0,"k":[8,12,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0.585],[0.586,0],[0,-0.585],[-0.585,0]],"o":[[0,-0.585],[-0.585,0],[0,0.585],[0.586,0]],"v":[[1.06,0],[0,-1.06],[-1.06,0],[0,1.06]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.285],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[0.741176486015,0.768627464771,0.890196084976,1]},{"t":118,"s":[0.313725490196,0.196078446332,0.588235294118,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[7.787,18.213],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.538,8.564],[-4.538,8.564],[-4.538,-8.564],[4.538,-8.564]],"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.828,0],[0,0],[0,-0.829],[0,0],[-0.829,0],[0,0],[0,0.828],[0,0]],"o":[[0,0],[-0.829,0],[0,0],[0,0.828],[0,0],[0.828,0],[0,0],[0,-0.829]],"v":[[6.038,-11.564],[-6.038,-11.564],[-7.538,-10.064],[-7.538,10.064],[-6.038,11.564],[6.038,11.564],[7.538,10.064],[7.538,-10.064]],"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":1,"k":[{"i":{"x":[0.285],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[0.741176486015,0.768627464771,0.890196084976,1]},{"t":118,"s":[0.313725490196,0.196078446332,0.588235294118,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[7.788,11.814],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"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":[[4.538,-8.564],[-4.538,-8.564],[-4.538,8.564],[4.538,8.564]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.945098099054,0.952941236309,0.984313785329,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[7.788,11.814],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":130,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Computer ","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[41.969,39.476,0],"ix":2,"l":2},"a":{"a":0,"k":[18.976,11.763,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-11.974,8.044],[11.974,8.044],[11.974,-8.044],[-11.974,-8.044]],"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.828,0],[0,0],[0,0.828],[0,0],[-0.829,0],[0,0],[0,-0.829],[0,0]],"o":[[0,0],[-0.829,0],[0,0],[0,-0.829],[0,0],[0.828,0],[0,0],[0,0.828]],"v":[[13.474,11.044],[-13.474,11.044],[-14.974,9.544],[-14.974,-9.544],[-13.474,-11.044],[13.474,-11.044],[14.974,-9.544],[14.974,9.544]],"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":1,"k":[{"i":{"x":[0.285],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[0.741176486015,0.768627464771,0.890196084976,1]},{"t":118,"s":[0.313725490196,0.196078446332,0.588235294118,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[18.757,11.294],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 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":[[1.203,0],[0,0],[0,1.203],[0,0],[0,0],[0,0]],"o":[[0,0],[-1.203,0],[0,0],[0,0],[0,0],[0,1.203]],"v":[[16.548,1.835],[-16.548,1.835],[-18.726,-0.344],[-18.726,-1.835],[18.726,-1.835],[18.726,-0.344]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.285],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":110,"s":[0.741176486015,0.768627464771,0.890196084976,1]},{"t":118,"s":[0.313725490196,0.196078446332,0.588235294118,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[18.976,21.441],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-13.415,-9.236],[13.415,-9.236],[13.415,9.236],[-13.415,9.236]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.945098099054,0.952941236309,0.984313785329,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[18.785,11.136],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":127,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":5,"nm":"25","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":111,"s":[0]},{"t":118,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[309,78.25,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"t":{"d":{"k":[{"s":{"sz":[37.75,13.5],"ps":[-18.75,-7.25],"s":16,"f":"Arial-BoldMT","t":"25","j":2,"tr":0,"lh":19.2,"ls":0,"fc":[0.314,0.196,0.588]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0],"ix":2}},"a":[]},"ip":0,"op":128,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Circle 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[308.333,49.912,0],"ix":2,"l":2},"a":{"a":0,"k":[41.25,41.25,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-22.644,0],[0,-22.644],[22.644,0],[0,22.644]],"o":[[22.644,0],[0,22.644],[-22.644,0],[0,-22.644]],"v":[[0,-41],[41,0],[0,41],[-41,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.945098099054,0.952941236309,0.984313785329,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[41.25,41.25],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":127,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"Check Loader Short","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[116.5,53,0],"ix":2,"l":2},"a":{"a":0,"k":[35,15,0],"ix":1,"l":2},"s":{"a":0,"k":[80,80,100],"ix":6,"l":2}},"ao":0,"w":70,"h":30,"ip":0,"op":127,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Home","parent":8,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[40.338,39.853,0],"ix":2,"l":2},"a":{"a":0,"k":[14.25,15.066,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[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]],"v":[[-10.857,-3.586],[0.001,-11.186],[10.857,-3.586],[10.857,11.675],[5.715,11.675],[5.715,1.316],[-5.714,1.316],[-5.714,11.675],[-10.857,11.675]],"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":[[-1.073,0],[0,0],[0,1.073],[0,0],[0,0],[0,0],[-1.073,0],[0,0],[0,1.073],[0,0],[0.51,0.364],[0,0],[0.675,-0.483],[0,0],[0,-0.628],[0,0]],"o":[[0,0],[1.073,0],[0,0],[0,0],[0,0],[0,1.073],[0,0],[1.073,0],[0,0],[0,-0.628],[0,0],[-0.675,-0.483],[0,0],[-0.511,0.364],[0,0],[0,1.073]],"v":[[-12.057,14.816],[-4.514,14.816],[-2.57,12.873],[-2.57,4.459],[2.572,4.459],[2.572,12.873],[4.516,14.816],[12.057,14.816],[13.999,12.873],[13.999,-4.14],[13.187,-5.721],[1.13,-14.333],[-1.129,-14.333],[-13.186,-5.721],[-13.999,-4.14],[-13.999,12.873]],"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":1,"k":[{"i":{"x":[0.285],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":57,"s":[0.741176486015,0.768627464771,0.890196084976,1]},{"t":65,"s":[0.313725490196,0.196078446332,0.588235294118,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[14.25,15.066],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":0,"op":128,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Circle 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[182.333,49.912,0],"ix":2,"l":2},"a":{"a":0,"k":[41.25,41.25,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-22.644,0],[0,-22.644],[22.644,0],[0,22.644]],"o":[[22.644,0],[0,22.644],[-22.644,0],[0,-22.644]],"v":[[0,-41],[41,0],[0,41],[-41,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.945098099054,0.952941236309,0.984313785329,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[41.25,41.25],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":126,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Cloud","parent":10,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[40.71,42.326,0],"ix":2,"l":2},"a":{"a":0,"k":[18.608,12.326,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.392,0.004],[1.944,-3.744],[-0.534,-4.966],[-4.624,0.006],[0,0],[-0.021,4.152],[3.969,0.259]],"o":[[-4.219,-0.001],[-4.966,0.535],[0.496,4.598],[0,0],[4.152,0.022],[0.021,-3.977],[-1.046,-5.29]],"v":[[0.232,-12.074],[-9.8,-5.982],[-17.824,3.978],[-8.82,12.053],[10.78,12.053],[18.337,4.575],[11.308,-2.966]],"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":[[-3.095,-0.004],[-0.77,-3.879],[0,0],[0,0],[0.181,-2.478],[2.359,0.002],[0,0],[-0.002,3.329],[-3.051,0.34],[0,0],[0,0]],"o":[[3.954,0.008],[0,0],[0,0],[2.479,0.181],[-0.173,2.353],[0,0],[-3.329,-0.002],[0.001,-3.07],[0,0],[0,0],[1.414,-2.753]],"v":[[0.232,-9.059],[8.356,-2.374],[8.808,-0.113],[11.115,0.053],[15.275,4.87],[10.783,9.042],[-8.82,9.042],[-14.845,3.01],[-9.484,-2.977],[-7.868,-3.147],[-7.114,-4.58]],"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":[0.313725490196,0.196078446332,0.588235294118,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[18.608,12.325],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":0,"op":126,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"Circle 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[52,49.912,0],"ix":2,"l":2},"a":{"a":0,"k":[41.25,41.25,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-22.644,0],[0,-22.644],[22.644,0],[0,22.644]],"o":[[22.644,0],[0,22.644],[-22.644,0],[0,-22.644]],"v":[[0,-41],[41,0],[0,41],[-41,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.945098099054,0.952941236309,0.984313785329,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[41.25,41.25],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":127,"st":0,"bm":0}],"markers":[],"chars":[{"ch":"2","size":16,"style":"Bold","w":55.62,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.156,1.302],[-4.33,3.972],[-1.66,2.116],[-1.156,2.914],[0,3.223],[4.036,3.809],[7.063,0],[4.297,-3.288],[0.813,-7.552],[0,0],[-1.693,1.726],[-2.865,0],[-1.644,-1.643],[0,-3.059],[1.888,-2.832],[6.184,-5.762],[2.604,-4.313],[0.52,-4.817],[0,0],[0,0]],"o":[[0.716,-1.237],[1.155,-1.302],[4.329,-3.971],[2.506,-3.19],[1.155,-2.913],[0,-5.664],[-4.037,-3.809],[-6.445,0],[-4.297,3.288],[0,0],[0.26,-4.004],[1.692,-1.725],[2.897,0],[1.643,1.644],[0,2.767],[-1.4,2.051],[-7.683,7.129],[-2.605,4.314],[0,0],[0,0],[0,0]],"v":[[23.34,-12.744],[26.147,-16.553],[34.375,-24.463],[43.359,-33.594],[48.853,-42.749],[50.586,-51.953],[44.531,-66.162],[27.881,-71.875],[11.768,-66.943],[4.102,-50.684],[17.773,-49.316],[20.703,-57.91],[27.539,-60.498],[34.351,-58.032],[36.816,-50.977],[33.984,-42.578],[22.607,-30.859],[7.178,-13.696],[2.49,0],[50.586,0],[50.586,-12.744]],"c":true},"ix":2},"nm":"2","mn":"ADBE Vector Shape - Group","hd":false}],"nm":"2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}]},"fFamily":"Arial"},{"ch":"5","size":16,"style":"Bold","w":55.62,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.167,-3.548],[-6.609,0],[-4.655,6.316],[0,5.892],[4.231,4.427],[6.087,0],[3.059,-1.53],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-3.939,0],[-1.97,-2.197],[0,-4.395],[1.985,-2.327],[2.864,0],[1.92,1.807],[0.391,3.093],[0,0]],"o":[[4.166,3.548],[8.268,0],[3.418,-4.622],[0,-7.063],[-4.232,-4.427],[-3.191,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[3.125,-3.483],[3.157,0],[1.969,2.197],[0,4.688],[-1.986,2.328],[-2.507,0],[-1.921,-1.807],[0,0],[0.813,5.99]],"v":[[11.914,-4.102],[28.076,1.221],[47.461,-8.252],[52.588,-24.023],[46.24,-41.26],[30.762,-47.9],[21.387,-45.605],[23.535,-57.764],[49.414,-57.764],[49.414,-70.605],[13.135,-70.605],[6.104,-33.35],[17.236,-31.738],[27.832,-36.963],[35.522,-33.667],[38.477,-23.779],[35.498,-13.257],[28.223,-9.766],[21.582,-12.476],[18.115,-19.824],[4.443,-18.408]],"c":true},"ix":2},"nm":"5","mn":"ADBE Vector Shape - Group","hd":false}],"nm":"5","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}]},"fFamily":"Arial"}]}
@@ -0,0 +1 @@
1
+ {"v":"5.7.8","fr":60,"ip":0,"op":176,"w":236,"h":430,"nm":"JUNIOR - TEST 2.0","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":3,"ty":4,"nm":"R hand thumbs up","parent":6,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.28],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[24.436]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[-48.564]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.74],"y":[0]},"t":150,"s":[-48.564]},{"t":156,"s":[15.436]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.28,"y":1},"o":{"x":0.167,"y":0.192},"t":100,"s":[6.786,75.288,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[6.655,70.47,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[6.655,70.47,0],"to":[0,0,0],"ti":[0,0,0]},{"t":156,"s":[6.203,76.07,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-15.093,126.75,0],"ix":1,"l":2},"s":{"a":0,"k":[100.103,105.374,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-11.781,114.25],[-15.093,126.75]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.776470648074,0.717647058824,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":12,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":100,"op":156,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"matte_new arm R front hand 2","td":1,"sr":1,"ks":{"o":{"a":1,"k":[{"t":155,"s":[100],"h":1},{"t":161,"s":[0],"h":1}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.28],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":95,"s":[3.602]},{"i":{"x":[0.28],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":97,"s":[57.602]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":120,"s":[3.602]},{"i":{"x":[0.833],"y":[0.771]},"o":{"x":[0.74],"y":[0]},"t":150,"s":[3.602]},{"t":161,"s":[118.602]}],"ix":10},"p":{"a":0,"k":[55.1,296.538,0],"ix":2,"l":2},"a":{"a":0,"k":[-61.341,78.734,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-8.122,122.88],[-39.369,112.219],[-82.489,130.705],[-71.538,167.333]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-8.122,122.88],[-44.853,103.251],[-80.679,133.529],[-34.922,152.356]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.972,78.965],[-39.646,80.33],[-43.968,125.859],[-4.088,122.398]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5.054,51.18],[-31.53,73.649],[-11.735,108.472],[28.961,81.606]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":95,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[5.054,51.18],[-30.575,72.605],[-11.735,108.472],[28.961,81.606]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":96,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-24.68,75.596],[-39.115,122.762],[-13.001,141.867],[7.763,110.101]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":97,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-11.182,99.474],[-61.13,126.818],[-61.756,153.113],[-13.436,138.597]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":98,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-19.209,62.094],[-13.951,117.214],[14.745,127.669],[53.15,58.217]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":100,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-17.486,58.704],[19.088,95.333],[38.95,76.918],[19.713,28.638]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":150,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-11.8,64.332],[19.088,95.333],[38.95,76.918],[25.399,34.266]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":158,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-11.8,64.332],[6.649,102.581],[38.95,76.918],[25.399,34.266]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":159,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-11.775,61.17],[6.649,102.581],[38.95,76.918],[25.399,34.266]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-12.608,53.717],[-5.663,104.961],[38.95,76.918],[25.399,34.266]],"c":true}]},{"t":161,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-12.608,53.717],[-30.331,116.04],[22.451,112.482],[25.399,34.266]],"c":true}]}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"}],"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[148,157],"ix":2},"p":{"a":0,"k":[7,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-28.251,91.568],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle Fix","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":8,"op":161,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"new arm R front hand","tt":1,"sr":1,"ks":{"o":{"a":1,"k":[{"t":155,"s":[100],"h":1},{"t":161,"s":[0],"h":1}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.28],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":95,"s":[3.602]},{"i":{"x":[0.28],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":97,"s":[57.602]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":120,"s":[3.602]},{"i":{"x":[0.833],"y":[0.771]},"o":{"x":[0.74],"y":[0]},"t":150,"s":[3.602]},{"t":161,"s":[118.602]}],"ix":10},"p":{"a":0,"k":[55.1,296.538,0],"ix":2,"l":2},"a":{"a":0,"k":[-61.341,78.734,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.24,"y":1},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[11.982,-37.347],[0,0]],"o":[[-10.411,32.45],[0,0]],"v":[[-63.502,82.314],[-58.933,131.471]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[-16.907,-33.52],[0,0]],"o":[[16.907,33.52],[0,0]],"v":[[-60.69,75.91],[-9.07,82.509]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":95,"s":[{"i":[[-16.907,-33.52],[0,0]],"o":[[16.907,33.52],[0,0]],"v":[[-60.69,75.91],[-9.07,82.509]],"c":false}]},{"i":{"x":0.28,"y":1},"o":{"x":0.167,"y":0.167},"t":97,"s":[{"i":[[-10.144,-20.112],[0,0]],"o":[[10.144,20.112],[0,0]],"v":[[-61.839,77.339],[-37.023,127.254]],"c":false}]},{"i":{"x":0.28,"y":1},"o":{"x":0.167,"y":0.167},"t":100,"s":[{"i":[[-45.851,-12.008],[0,0]],"o":[[45.851,12.008],[0,0]],"v":[[-50.211,91.615],[12.918,70.024]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":120,"s":[{"i":[[-45.851,-12.008],[0,0]],"o":[[45.851,12.008],[0,0]],"v":[[-50.211,91.615],[12.918,70.024]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[-45.851,-12.008],[0,0]],"o":[[45.851,12.008],[0,0]],"v":[[-50.211,91.615],[12.918,70.024]],"c":false}]},{"t":161,"s":[{"i":[[-47.34,2.342],[0,0]],"o":[[36.52,-1.807],[0,0]],"v":[[-62.517,78.661],[0.997,74.073]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.776470648074,0.717647058824,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":28,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[148,157],"ix":2},"p":{"a":0,"k":[7,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":0,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-28.251,91.568],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle Fix","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":8,"op":161,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"new arm R front sleeve","sr":1,"ks":{"o":{"a":1,"k":[{"t":155,"s":[100],"h":1},{"t":161,"s":[0],"h":1}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.28],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":95,"s":[3.602]},{"i":{"x":[0.28],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":97,"s":[57.602]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":120,"s":[3.602]},{"i":{"x":[0.833],"y":[0.771]},"o":{"x":[0.74],"y":[0]},"t":150,"s":[3.602]},{"t":161,"s":[118.602]}],"ix":10},"p":{"a":0,"k":[55.1,296.538,0],"ix":2,"l":2},"a":{"a":0,"k":[-61.341,78.734,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.24,"y":1},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[11.982,-37.347],[0,0]],"o":[[-10.411,32.45],[0,0]],"v":[[-63.502,82.314],[-58.933,131.471]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[-16.907,-33.52],[0,0]],"o":[[16.907,33.52],[0,0]],"v":[[-60.69,75.91],[-9.07,82.509]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":95,"s":[{"i":[[-16.907,-33.52],[0,0]],"o":[[16.907,33.52],[0,0]],"v":[[-60.69,75.91],[-9.07,82.509]],"c":false}]},{"i":{"x":0.28,"y":1},"o":{"x":0.167,"y":0.167},"t":97,"s":[{"i":[[-10.144,-20.112],[0,0]],"o":[[10.144,20.112],[0,0]],"v":[[-61.839,77.339],[-37.023,127.254]],"c":false}]},{"i":{"x":0.28,"y":1},"o":{"x":0.167,"y":0.167},"t":100,"s":[{"i":[[-45.851,-12.008],[0,0]],"o":[[45.851,12.008],[0,0]],"v":[[-50.211,91.615],[12.918,70.024]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":120,"s":[{"i":[[-45.851,-12.008],[0,0]],"o":[[45.851,12.008],[0,0]],"v":[[-50.211,91.615],[12.918,70.024]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[-45.851,-12.008],[0,0]],"o":[[45.851,12.008],[0,0]],"v":[[-50.211,91.615],[12.918,70.024]],"c":false}]},{"t":161,"s":[{"i":[[-47.34,2.342],[0,0]],"o":[[36.52,-1.807],[0,0]],"v":[[-62.517,78.661],[0.997,74.073]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.18431372549,0.89019613827,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":28,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":8,"op":176,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"new arm R front hand shadow","sr":1,"ks":{"o":{"a":1,"k":[{"t":155,"s":[100],"h":1},{"t":161,"s":[0],"h":1}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.28],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":95,"s":[3.602]},{"i":{"x":[0.28],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":97,"s":[57.602]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":120,"s":[3.602]},{"i":{"x":[0.833],"y":[0.771]},"o":{"x":[0.74],"y":[0]},"t":150,"s":[3.602]},{"t":161,"s":[118.602]}],"ix":10},"p":{"a":0,"k":[55.1,296.538,0],"ix":2,"l":2},"a":{"a":0,"k":[-61.341,78.734,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":109,"s":[{"i":[[0,0],[0,0],[-12.268,3.495]],"o":[[0,0],[0,0],[12.745,-3.631]],"v":[[7.942,44.838],[-14.65,59.326],[30.036,48.152]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":111,"s":[{"i":[[0,0],[0,0],[-12.268,3.495]],"o":[[0,0],[0,0],[12.745,-3.631]],"v":[[7.942,44.838],[-13.279,62.312],[31.403,53.292]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":115,"s":[{"i":[[0,0],[0,0],[-12.505,3.151]],"o":[[0,0],[0,0],[12.835,-3.245]],"v":[[7.942,44.838],[-13.209,65.073],[33.149,59.729]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":120,"s":[{"i":[[0,0],[0,0],[-12.801,2.721]],"o":[[0,0],[0,0],[12.948,-2.763]],"v":[[7.942,44.838],[-12.348,65.596],[34.159,62.379]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[{"i":[[0,0],[0,0],[-13.037,2.377]],"o":[[0,0],[0,0],[13.037,-2.377]],"v":[[7.942,44.838],[-11.659,66.015],[34.592,62.281]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":144,"s":[{"i":[[0,0],[0,0],[-13.037,2.377]],"o":[[0,0],[0,0],[13.037,-2.377]],"v":[[7.942,44.838],[-11.659,66.015],[34.592,62.281]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":149,"s":[{"i":[[0,0],[0,0],[-13.037,2.377]],"o":[[0,0],[0,0],[13.037,-2.377]],"v":[[7.942,44.838],[-11.427,62.73],[33.775,60.707]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":151,"s":[{"i":[[0,0],[0,0],[-13.037,2.377]],"o":[[0,0],[0,0],[13.037,-2.377]],"v":[[7.942,44.838],[-11.334,61.416],[32.297,57.063]],"c":true}]},{"t":152,"s":[{"i":[[0,0],[0,0],[-13.037,2.377]],"o":[[0,0],[0,0],[13.037,-2.377]],"v":[[7.942,44.838],[-11.762,57.431],[31.208,52.176]],"c":true}]}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.24,"y":1},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[11.982,-37.347],[0,0]],"o":[[-10.411,32.45],[0,0]],"v":[[-63.502,82.314],[-58.933,131.471]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[-16.907,-33.52],[0,0]],"o":[[16.907,33.52],[0,0]],"v":[[-60.69,75.91],[-9.07,82.509]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":95,"s":[{"i":[[-16.907,-33.52],[0,0]],"o":[[16.907,33.52],[0,0]],"v":[[-60.69,75.91],[-9.07,82.509]],"c":false}]},{"i":{"x":0.28,"y":1},"o":{"x":0.167,"y":0.167},"t":97,"s":[{"i":[[-10.144,-20.112],[0,0]],"o":[[10.144,20.112],[0,0]],"v":[[-61.839,77.339],[-37.023,127.254]],"c":false}]},{"i":{"x":0.28,"y":1},"o":{"x":0.167,"y":0.167},"t":100,"s":[{"i":[[-45.851,-12.008],[0,0]],"o":[[45.851,12.008],[0,0]],"v":[[-50.211,91.615],[12.918,70.024]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":120,"s":[{"i":[[-45.851,-12.008],[0,0]],"o":[[45.851,12.008],[0,0]],"v":[[-50.211,91.615],[12.918,70.024]],"c":false}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[{"i":[[-45.851,-12.008],[0,0]],"o":[[45.851,12.008],[0,0]],"v":[[-50.211,91.615],[12.918,70.024]],"c":false}]},{"t":161,"s":[{"i":[[-47.34,2.342],[0,0]],"o":[[36.52,-1.807],[0,0]],"v":[[-62.517,78.661],[0.997,74.073]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.951485906863,0.666971244064,0.592098879347,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":34,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","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":[[-20.778,49.167],[-18.541,68.205],[45.001,63.425],[39.071,37.337]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.776470661163,0.717647075653,1],"ix":4},"o":{"a":0,"k":0,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[12.112,52.771],"ix":2},"a":{"a":0,"k":[12.112,52.771],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"RECT Correction Box","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":109,"op":153,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"R hand thumbs up shadow","parent":6,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.28],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[24.436]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[-48.564]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.74],"y":[0]},"t":150,"s":[-48.564]},{"t":156,"s":[15.436]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.28,"y":1},"o":{"x":0.167,"y":0.192},"t":100,"s":[6.786,75.288,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[6.655,70.47,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.74,"y":0},"t":150,"s":[6.655,70.47,0],"to":[0,0,0],"ti":[0,0,0]},{"t":156,"s":[6.203,76.07,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-15.093,126.75,0],"ix":1,"l":2},"s":{"a":0,"k":[100.103,105.374,100],"ix":6,"l":2}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":108,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-14.08,100.079],[-18.702,104.771],[-0.807,115.07],[3.112,111.561]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-14.08,100.079],[-20.321,106.455],[-4.003,119.506],[3.112,111.561]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":112,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-14.08,100.079],[-20.977,109.403],[-6.691,121.054],[3.112,111.561]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":118,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-14.08,100.079],[-22.981,111.845],[-7.926,126.26],[3.112,111.561]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":144,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-14.08,100.079],[-22.981,111.845],[-7.926,126.26],[3.112,111.561]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":148,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-14.08,100.079],[-23.129,111.27],[-7.716,126.023],[3.112,111.561]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":150,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-14.08,100.079],[-21.217,109.47],[-6.07,123.417],[3.112,111.561]],"c":true}]},{"t":152,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-14.08,100.079],[-18.393,105.916],[-2.543,117.972],[3.112,111.561]],"c":true}]}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-11.781,114.25],[-15.093,126.75]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.952941236309,0.666666666667,0.592156862745,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":17,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","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":[[-15.772,95.182],[-27.812,111.097],[-6.123,130.325],[8.737,110.563]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.776470661163,0.717647075653,1],"ix":4},"o":{"a":0,"k":0,"ix":5},"r":1,"bm":0,"nm":"Fill 2","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-9.538,112.753],"ix":2},"a":{"a":0,"k":[-9.538,112.753],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"RECT Correction Box","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":108,"op":153,"st":0,"bm":0}],"markers":[]}
@@ -0,0 +1 @@
1
+ {"v":"4.8.0","meta":{"g":"LottieFiles AE 1.0.0","a":"","k":"","d":"","tc":""},"fr":60,"ip":0,"op":353,"w":413,"h":379,"nm":"Background 2","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":16,"ty":4,"nm":"Algorithm Graph Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[206.5,189.5,0],"ix":2},"a":{"a":0,"k":[206.5,189.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":135,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-407.5,38.797],[-407.5,325],[-12.133,325],[-12.133,38.797]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":139,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-397.5,38.797],[-397.5,325],[-2.133,325],[-2.133,38.797]],"c":true}]},{"t":170,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-5.677,31.822],[-5.5,325],[399.749,325.134],[399.571,31.956]],"c":true}]}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-3.314],[3.314,0],[0,3.314],[-3.314,0]],"o":[[0,3.314],[-3.314,0],[0,-3.314],[3.314,0]],"v":[[6,0],[0,6],[-6,0],[0,-6]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":246,"s":[0.494117676978,0.349019607843,0.678431372549,1]},{"t":270,"s":[0.29411765933,0.694117665291,0.380392163992,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.667,"y":0.347},"o":{"x":0.333,"y":0},"t":141,"s":[0.5,319],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.617},"o":{"x":0.333,"y":0.282},"t":142.799,"s":[4.004,312.936],"to":[1.119,-1.936],"ti":[-1.937,-1.117]},{"i":{"x":0.667,"y":0.645},"o":{"x":0.333,"y":0.312},"t":143.504,"s":[9.535,311.454],"to":[1.252,0.722],"ti":[-1.252,0.722]},{"i":{"x":0.667,"y":0.654},"o":{"x":0.333,"y":0.322},"t":143.887,"s":[13.583,311.454],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.659},"o":{"x":0.333,"y":0.326},"t":144.127,"s":[16.121,309.991],"to":[0.643,-0.371],"ti":[-0.534,0.515]},{"i":{"x":0.667,"y":0.652},"o":{"x":0.333,"y":0.321},"t":144.299,"s":[17.893,308.657],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.656},"o":{"x":0.333,"y":0.323},"t":144.621,"s":[21.091,305.577],"to":[0.995,-0.959],"ti":[-1.361,0.237]},{"i":{"x":0.667,"y":0.653},"o":{"x":0.333,"y":0.319},"t":144.898,"s":[24.707,303.743],"to":[2.164,-0.376],"ti":[-0.983,1.964]},{"i":{"x":0.667,"y":0.656},"o":{"x":0.333,"y":0.324},"t":145.303,"s":[29.71,300.022],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.657},"o":{"x":0.333,"y":0.324},"t":145.639,"s":[32.285,294.877],"to":[0.899,-1.797],"ti":[-1.843,0.801]},{"i":{"x":0.667,"y":0.664},"o":{"x":0.333,"y":0.335},"t":145.967,"s":[36.53,290.856],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.659},"o":{"x":0.333,"y":0.328},"t":145.984,"s":[36.83,290.725],"to":[1.541,-0.669],"ti":[-0.811,1.471]},{"i":{"x":0.667,"y":0.661},"o":{"x":0.333,"y":0.327},"t":146.246,"s":[40.457,287.424],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.661},"o":{"x":0.333,"y":0.326},"t":146.496,"s":[42.86,283.069],"to":[0.987,-1.789],"ti":[-1.618,-1.247]},{"i":{"x":0.667,"y":0.66},"o":{"x":0.333,"y":0.329},"t":146.773,"s":[47.813,282.038],"to":[1.383,1.065],"ti":[-1.165,1.3]},{"i":{"x":0.667,"y":0.662},"o":{"x":0.333,"y":0.333},"t":147.008,"s":[52.331,281.622],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.663},"o":{"x":0.333,"y":0.328},"t":147.123,"s":[53.999,279.759],"to":[1.143,-1.276],"ti":[-1.713,0]},{"i":{"x":0.667,"y":0.659},"o":{"x":0.333,"y":0.34},"t":147.35,"s":[58.487,277.754],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.662},"o":{"x":0.333,"y":0.331},"t":147.375,"s":[59.049,277.754],"to":[1.481,0],"ti":[-1.218,0.843]},{"i":{"x":0.667,"y":0.665},"o":{"x":0.333,"y":0.331},"t":147.568,"s":[63.195,276.459],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.666},"o":{"x":0.333,"y":0.33},"t":147.699,"s":[65.706,274.721],"to":[0.763,-0.528],"ti":[-0.637,0.674]},{"i":{"x":0.667,"y":0.662},"o":{"x":0.333,"y":0.331},"t":147.816,"s":[67.812,272.912],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.663},"o":{"x":0.333,"y":0.332},"t":148.02,"s":[71.151,269.377],"to":[0.818,-0.866],"ti":[-0.56,1.051]},{"i":{"x":0.667,"y":0.661},"o":{"x":0.333,"y":0.329},"t":148.166,"s":[73.227,266.489],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.666},"o":{"x":0.333,"y":0.33},"t":148.496,"s":[77.096,259.226],"to":[0.542,-1.017],"ti":[-0.784,0.845]},{"i":{"x":0.667,"y":0.666},"o":{"x":0.333,"y":0.329},"t":148.631,"s":[79.094,256.421],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.664},"o":{"x":0.333,"y":0.331},"t":148.787,"s":[81.859,253.443],"to":[1.047,-1.128],"ti":[-0.604,1.416]},{"i":{"x":0.667,"y":0.663},"o":{"x":0.333,"y":0.328},"t":148.963,"s":[84.354,249.598],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.665},"o":{"x":0.333,"y":0.33},"t":149.279,"s":[87.679,241.798],"to":[0.784,-1.839],"ti":[-1.999,0]},{"i":{"x":0.667,"y":0.664},"o":{"x":0.333,"y":0.332},"t":149.492,"s":[92.267,238.766],"to":[1.421,0],"ti":[-0.946,1.06]},{"i":{"x":0.667,"y":0.665},"o":{"x":0.333,"y":0.333},"t":149.645,"s":[95.988,237.099],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.663},"o":{"x":0.333,"y":0.333},"t":149.766,"s":[98.233,234.584],"to":[1.184,-1.327],"ti":[-1.626,0.721]},{"i":{"x":0.667,"y":0.675},"o":{"x":0.333,"y":0.325},"t":149.955,"s":[102.497,231.476],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.665},"o":{"x":0.333,"y":0.331},"t":149.967,"s":[102.809,231.338],"to":[1.811,-0.803],"ti":[-1.291,1.503]},{"i":{"x":0.667,"y":0.664},"o":{"x":0.333,"y":0.333},"t":150.174,"s":[107.52,227.835],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.665},"o":{"x":0.333,"y":0.333},"t":150.301,"s":[109.9,225.065],"to":[0.789,-0.919],"ti":[-0.513,1.097]},{"i":{"x":0.667,"y":0.663},"o":{"x":0.333,"y":0.331},"t":150.426,"s":[111.863,222.026],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.666},"o":{"x":0.333,"y":0.331},"t":150.705,"s":[115.337,214.601],"to":[0.844,-1.804],"ti":[-1.54,1.263]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.332},"t":150.904,"s":[118.958,209.942],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.664},"o":{"x":0.333,"y":0.332},"t":150.967,"s":[120.412,208.749],"to":[1.737,-1.425],"ti":[-0.836,2.086]},{"i":{"x":0.667,"y":0.664},"o":{"x":0.333,"y":0.332},"t":151.189,"s":[124.334,203.396],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.669},"o":{"x":0.333,"y":0.33},"t":151.439,"s":[127.168,196.318],"to":[0.338,-0.845],"ti":[-0.548,0.726]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.331},"t":151.527,"s":[128.504,193.951],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.331},"t":151.693,"s":[131.615,189.829],"to":[0.941,-1.246],"ti":[-1.452,-0.574]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.331},"t":151.838,"s":[135.665,188.692],"to":[1.721,0.68],"ti":[-0.766,1.684]},{"i":{"x":0.667,"y":0.664},"o":{"x":0.333,"y":0.332},"t":152.006,"s":[140.104,186.9],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.664},"o":{"x":0.333,"y":0.331},"t":152.324,"s":[144.266,177.75],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.666},"o":{"x":0.333,"y":0.333},"t":152.84,"s":[149.38,162.029],"to":[0.275,-0.845],"ti":[-0.573,0.678]},{"i":{"x":0.667,"y":0.67},"o":{"x":0.333,"y":0.33},"t":152.922,"s":[150.664,159.722],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.665},"o":{"x":0.333,"y":0.332},"t":152.957,"s":[151.407,158.843],"to":[2.131,-2.521],"ti":[-2.409,-2.257]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.332},"t":153.244,"s":[159.754,158.358],"to":[0.722,0.676],"ti":[-0.96,-0.236]},{"i":{"x":0.667,"y":0.688},"o":{"x":0.333,"y":0.312},"t":153.334,"s":[162.319,159.749],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.665},"o":{"x":0.333,"y":0.334},"t":153.346,"s":[162.717,159.847],"to":[2.301,0.566],"ti":[-0.876,-2.202]},{"i":{"x":0.667,"y":0.665},"o":{"x":0.333,"y":0.334},"t":153.559,"s":[167.78,164.258],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.666},"o":{"x":0.333,"y":0.333},"t":153.812,"s":[170.871,172.028],"to":[0.651,1.637],"ti":[-1.723,-0.368]},{"i":{"x":0.667,"y":0.666},"o":{"x":0.333,"y":0.333},"t":153.969,"s":[174.671,175.236],"to":[1.731,0.369],"ti":[-0.647,-1.647]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.332},"t":154.125,"s":[178.479,178.466],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.668},"o":{"x":0.333,"y":0.331},"t":154.408,"s":[181.944,187.287],"to":[0.621,1.58],"ti":[-1.697,0]},{"i":{"x":0.667,"y":0.668},"o":{"x":0.333,"y":0.332},"t":154.555,"s":[185.786,189.906],"to":[1.648,0],"ti":[-0.652,-1.514]},{"i":{"x":0.667,"y":0.666},"o":{"x":0.333,"y":0.332},"t":154.697,"s":[189.577,192.4],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.666},"o":{"x":0.333,"y":0.333},"t":155.031,"s":[194.031,202.733],"to":[2.153,3.917],"ti":[-1.523,4.202]},{"i":{"x":0.667,"y":0.664},"o":{"x":0.333,"y":0.336},"t":155.385,"s":[203.472,202],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.665},"o":{"x":0.333,"y":0.335},"t":155.451,"s":[204.23,199.909],"to":[0.516,-1.424],"ti":[-1.515,0]},{"i":{"x":0.667,"y":0.666},"o":{"x":0.333,"y":0.334},"t":155.582,"s":[207.614,197.536],"to":[1.74,0],"ti":[-0.31,1.712]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":155.73,"s":[211.156,194.578],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.668},"o":{"x":0.333,"y":0.332},"t":156.457,"s":[215.543,170.363],"to":[0.384,-2.122],"ti":[-1.866,1.08]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":156.645,"s":[219.091,165.315],"to":[1.659,-0.961],"ti":[-0.517,1.846]},{"i":{"x":0.667,"y":0.668},"o":{"x":0.333,"y":0.334},"t":156.812,"s":[222.485,160.937],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.666},"o":{"x":0.333,"y":0.335},"t":157.229,"s":[226.266,147.428],"to":[0.583,-2.082],"ti":[-2.097,0.525]},{"i":{"x":0.667,"y":0.664},"o":{"x":0.333,"y":0.336},"t":157.418,"s":[230.6,143.212],"to":[1.38,-0.345],"ti":[-0.831,1.155]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.334},"t":157.545,"s":[234.024,140.888],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.669},"o":{"x":0.333,"y":0.331},"t":157.734,"s":[237.727,135.741],"to":[0.358,-0.498],"ti":[-0.225,0.571]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.334},"t":157.789,"s":[238.606,134.13],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.666},"o":{"x":0.333,"y":0.335},"t":157.988,"s":[241.038,127.962],"to":[1.166,-2.958],"ti":[-1.769,-2.642]},{"i":{"x":0.667,"y":0.668},"o":{"x":0.333,"y":0.333},"t":158.248,"s":[247.981,127.215],"to":[0.825,1.233],"ti":[-1.473,0.177]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.334},"t":158.379,"s":[251.727,128.936],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.334},"t":158.41,"s":[252.75,128.813],"to":[1.357,-0.163],"ti":[-1.127,-0.774]},{"i":{"x":0.667,"y":0.668},"o":{"x":0.333,"y":0.333},"t":158.533,"s":[256.604,129.761],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.669},"o":{"x":0.333,"y":0.332},"t":158.637,"s":[259.411,131.689],"to":[0.64,0.44],"ti":[-0.367,-0.685]},{"i":{"x":0.667,"y":0.668},"o":{"x":0.333,"y":0.335},"t":158.707,"s":[260.943,133.4],"to":[1.958,3.654],"ti":[-1.512,3.86]},{"i":{"x":0.667,"y":0.665},"o":{"x":0.333,"y":0.336},"t":159.047,"s":[269.753,132.877],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.669},"o":{"x":0.333,"y":0.332},"t":159.131,"s":[270.739,130.36],"to":[0.459,-1.171],"ti":[-1.049,0.694]},{"i":{"x":0.667,"y":0.671},"o":{"x":0.333,"y":0.329},"t":159.246,"s":[273.056,127.494],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.666},"o":{"x":0.333,"y":0.336},"t":159.281,"s":[274.013,126.86],"to":[1.912,-1.265],"ti":[-0.649,2.199]},{"i":{"x":0.667,"y":0.669},"o":{"x":0.333,"y":0.336},"t":159.494,"s":[277.978,121.496],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.669},"o":{"x":0.333,"y":0.333},"t":159.922,"s":[281.824,108.464],"to":[0.449,-1.521],"ti":[-0.951,1.27]},{"i":{"x":0.667,"y":0.668},"o":{"x":0.333,"y":0.334},"t":160.072,"s":[283.941,104.244],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.665},"o":{"x":0.333,"y":0.337},"t":160.232,"s":[286.943,100.235],"to":[0.723,-0.965],"ti":[-0.438,1.124]},{"i":{"x":0.667,"y":0.669},"o":{"x":0.333,"y":0.337},"t":160.35,"s":[288.693,97.087],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.671},"o":{"x":0.333,"y":0.33},"t":160.754,"s":[293.2,85.533],"to":[0.241,-0.617],"ti":[-0.376,0.545]},{"i":{"x":0.667,"y":0.666},"o":{"x":0.333,"y":0.337},"t":160.818,"s":[294.128,83.785],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.668},"o":{"x":0.333,"y":0.336},"t":160.98,"s":[296.897,79.773],"to":[1.204,-1.743],"ti":[-1.716,-1.243]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.336},"t":161.182,"s":[302.219,78.86],"to":[1.41,1.021],"ti":[-1.326,1.128]},{"i":{"x":0.667,"y":0.712},"o":{"x":0.333,"y":0.288},"t":161.352,"s":[306.88,78.678],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.337},"t":161.357,"s":[307.032,78.548],"to":[1.714,-1.458],"ti":[-1.432,-1.736]},{"i":{"x":0.667,"y":0.665},"o":{"x":0.333,"y":0.337},"t":161.576,"s":[312.754,79.054],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.335},"t":161.686,"s":[314.762,81.489],"to":[0.601,0.729],"ti":[-0.888,-0.322]},{"i":{"x":0.667,"y":0.67},"o":{"x":0.333,"y":0.336},"t":161.783,"s":[317.036,83.094],"to":[2.412,0.874],"ti":[-1.273,2.227]},{"i":{"x":0.667,"y":0.668},"o":{"x":0.333,"y":0.336},"t":162.041,"s":[323.412,80.752],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.335},"t":162.232,"s":[326.088,76.072],"to":[0.432,-0.756],"ti":[-0.254,0.833]},{"i":{"x":0.667,"y":0.674},"o":{"x":0.333,"y":0.34},"t":162.326,"s":[327.121,73.681],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.669},"o":{"x":0.333,"y":0.335},"t":162.9,"s":[331.696,58.679],"to":[0.38,-1.245],"ti":[-0.722,1.083]},{"i":{"x":0.667,"y":0.67},"o":{"x":0.333,"y":0.337},"t":163.047,"s":[333.357,55.17],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.664},"o":{"x":0.333,"y":0.338},"t":163.314,"s":[337.227,49.366],"to":[0.378,-0.567],"ti":[-0.186,0.655]},{"i":{"x":0.667,"y":0.668},"o":{"x":0.333,"y":0.337},"t":163.395,"s":[338.078,47.521],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.675},"o":{"x":0.333,"y":0.341},"t":163.586,"s":[339.401,42.854],"to":[1.274,-4.495],"ti":[-1.727,-4.341]},{"i":{"x":0.667,"y":0.665},"o":{"x":0.333,"y":0.337},"t":164.08,"s":[348.649,42.38],"to":[0.138,0.346],"ti":[-0.212,-0.306]},{"i":{"x":0.667,"y":0.673},"o":{"x":0.333,"y":0.337},"t":164.127,"s":[349.176,43.362],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.669},"o":{"x":0.333,"y":0.338},"t":164.418,"s":[353.1,49.014],"to":[0.851,1.226],"ti":[-0.401,-1.438]},{"i":{"x":0.667,"y":0.685},"o":{"x":0.333,"y":0.351},"t":164.613,"s":[354.992,53.039],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.674},"o":{"x":0.333,"y":0.341},"t":165.463,"s":[359.915,70.704],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.682},"o":{"x":0.333,"y":0.347},"t":165.779,"s":[362.244,76.559],"to":[1.368,3.439],"ti":[-2.103,3.046]},{"i":{"x":0.667,"y":0.671},"o":{"x":0.333,"y":0.336},"t":166.314,"s":[370.364,77.479],"to":[0.401,-0.581],"ti":[-0.616,0.346]},{"i":{"x":0.667,"y":0.672},"o":{"x":0.333,"y":0.332},"t":166.434,"s":[371.911,76.07],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.682},"o":{"x":0.333,"y":0.349},"t":166.498,"s":[372.897,75.517],"to":[2.3,-1.29],"ti":[-0.626,2.562]},{"i":{"x":0.667,"y":0.722},"o":{"x":0.333,"y":0.387},"t":166.971,"s":[377.486,69.476],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":0.687},"o":{"x":0.333,"y":0.354},"t":168.242,"s":[381.584,52.707],"to":[0.298,-1.221],"ti":[-0.626,1.089]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0.647},"t":168.596,"s":[382.978,49.224],"to":[0,0],"ti":[-0.076,-3.692]},{"t":171,"s":[388.5,39.62]}],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.166,0.417],[1.013,-3.576],[0,0],[0.436,-0.653],[0,0],[0.351,-1.151],[0,0],[0.469,-0.821],[0,0],[2.869,1.039],[0.715,0.867],[0,0],[1.289,-1.096],[0,0],[1.783,1.292],[0.885,-1.282],[0,0],[0.212,-0.545],[0,0],[0.777,-1.038],[0,0],[0.415,-1.407],[0,0],[2.108,-1.395],[0,0],[0.384,-0.979],[0,0],[2.361,4.406],[0.509,0.349],[0,0],[1.116,-0.134],[0,0],[1.035,1.546],[0.87,-2.208],[0,0],[0.407,-0.566],[0,0],[1.61,-0.403],[0.486,-1.736],[0,0],[1.885,-1.091],[0.332,-1.833],[0,0],[2.224,0],[0.373,-1.029],[0,0],[2.567,4.671],[0,0],[0,0],[1.249,0],[0.771,1.963],[0,0],[1.403,0.299],[0.775,1.947],[0,0],[1.987,0.489],[0,0],[0.847,0.793],[1.761,-2.084],[0,0],[0.235,-0.722],[0,0],[0,0],[2.216,0.876],[0.67,-0.888],[0,0],[0.305,-0.762],[0,0],[1.868,-1.532],[0,0],[0.781,-1.669],[0,0],[0.848,-0.988],[0,0],[1.947,-0.863],[0,0],[1.09,-1.221],[0,0],[1.706,0],[0.627,-1.47],[0,0],[1.126,-1.213],[0,0],[0.501,-0.941],[0,0],[0.879,-0.931],[0,0],[0.82,-0.568],[0,0],[1.685,0],[0,0],[0.953,-1.064],[0,0],[1.797,1.385],[0.691,-1.252],[0,0],[1.743,-0.757],[0,0],[0.794,-1.587],[0,0],[2.476,-0.43],[0.851,-0.82],[0,0],[0.713,-0.411],[0,0],[1.562,0.901],[0.843,-1.458],[0,0],[0,0],[0,0],[-2.415,-1.393],[-0.943,0.544],[0,0],[-0.476,0.458],[0,0],[-1.558,0.271],[-0.841,1.68],[0,0],[-2.058,0.894],[0,0],[-0.704,1.277],[0,0],[-2.104,-1.621],[-0.815,0.91],[0,0],[-1.998,0],[0,0],[-1.051,0.727],[0,0],[-0.589,0.624],[0,0],[-0.518,0.972],[0,0],[-0.843,0.908],[0,0],[-0.558,1.31],[0,0],[-2.399,0],[-0.757,0.848],[0,0],[-1.756,0.779],[0,0],[-1.194,1.39],[0,0],[-0.475,1.015],[0,0],[-1.655,1.358],[0,0],[-0.773,1.93],[0,0],[-0.602,0.797],[0,0],[-1.87,-0.74],[-0.546,1.2],[0,0],[0,0],[-0.657,0.777],[0,0],[-2.826,-2.648],[-0.794,-0.195],[0,0],[-0.995,-2.502],[0,0],[-1.396,-0.298],[-0.77,-1.96],[0,0],[-1.286,0],[-0.811,-1.88],[0,0],[-1.225,3.379],[0,0],[-1.936,0],[-0.224,1.237],[0,0],[-2.12,1.228],[-0.446,1.595],[0,0],[-2.446,0.612],[-0.693,0.963],[0,0],[-0.195,0.494],[0,0],[-2.217,-3.312],[-1.099,0.132],[0,0],[-1.327,-0.911],[0,0],[-0.442,-0.825],[-1.201,3.066],[0,0],[-1.221,0.808],[0,0],[-0.582,1.973],[0,0],[-1.022,1.365],[0,0],[-0.405,1.039],[0,0],[-0.42,0.609],[0,0],[-2.17,-1.572],[-0.975,0.829],[0,0],[-1.787,-2.167],[0,0],[-0.72,-0.261],[-1.032,1.805],[0,0],[-0.232,0.762],[0,0],[-0.776,1.164],[0,0],[-0.157,0.555],[0,0],[-2.08,-5.229],[-0.169,-0.243],[0,0],[-0.431,-1.546],[0,0],[0,0],[-1.649,2.389],[-0.749,0.42],[0,0],[-0.56,2.293],[0,0],[-0.673,1.171],[0,0],[0,0],[0,0],[0.276,-1.129],[0,0],[2.542,-1.426],[0,0],[0.315,-0.456],[1.663,4.181],[0,0],[0,0],[0.788,1.134],[0,0]],"o":[[-1.374,-3.453],[0,0],[-0.214,0.756],[0,0],[-0.668,1.001],[0,0],[-0.276,0.904],[0,0],[-1.515,2.649],[-1.056,-0.383],[0,0],[-1.076,-1.306],[0,0],[-1.677,1.427],[-1.261,-0.914],[0,0],[-0.332,0.481],[0,0],[-0.471,1.208],[0,0],[-0.88,1.175],[0,0],[-0.716,2.425],[0,0],[-0.877,0.581],[0,0],[-1.823,4.654],[-0.291,-0.544],[0,0],[-0.926,-0.636],[0,0],[-1.847,0.222],[-1.32,-1.972],[0,0],[-0.256,0.648],[0,0],[-0.969,1.347],[-1.749,0.438],[0,0],[-0.587,2.097],[-1.612,0.933],[0,0],[-0.396,2.188],[-1.094,0],[0,0],[-1.816,5.011],[0,0],[0,0],[-0.494,-1.147],[-2.109,0],[0,0],[-0.524,-1.335],[-2.05,-0.437],[0,0],[-0.757,-1.902],[0,0],[-1.127,-0.277],[-1.991,-1.865],[0,0],[-0.49,0.58],[0,0],[0,0],[-0.987,2.169],[-1.034,-0.409],[0,0],[-0.495,0.656],[0,0],[-0.898,2.243],[0,0],[-1.424,1.169],[0,0],[-0.552,1.18],[0,0],[-1.388,1.616],[0,0],[-1.496,0.663],[0,0],[-1.136,1.273],[-1.598,0],[0,0],[-0.649,1.522],[0,0],[-0.725,0.781],[0,0],[-0.602,1.13],[0,0],[-0.685,0.725],[0,0],[-1.385,0.959],[0,0],[-1.429,0],[0,0],[-1.514,1.69],[-1.133,-0.873],[0,0],[-0.918,1.664],[0,0],[-1.628,0.707],[0,0],[-1.125,2.248],[-1.165,0.202],[0,0],[-0.593,0.571],[0,0],[-1.562,0.901],[-1.459,-0.841],[0,0],[0,0],[0,0],[1.395,-2.414],[0.943,0.544],[0,0],[0.572,-0.33],[0,0],[1.139,-1.097],[1.851,-0.322],[0,0],[1.004,-2.007],[0,0],[1.338,-0.581],[0,0],[1.282,-2.325],[0.968,0.746],[0,0],[1.333,-1.488],[0,0],[1.278,0],[0,0],[0.706,-0.488],[0,0],[0.756,-0.801],[0,0],[0.582,-1.093],[0,0],[0.969,-1.044],[0,0],[0.941,-2.207],[1.136,0],[0,0],[1.279,-1.433],[0,0],[1.675,-0.743],[0,0],[0.73,-0.85],[0,0],[0.907,-1.939],[0,0],[1.607,-1.319],[0,0],[0.371,-0.927],[0,0],[1.212,-1.605],[1.225,0.485],[0,0],[0,0],[0.315,-0.968],[0,0],[2.5,-2.958],[0.596,0.559],[0,0],[2.615,0.643],[0,0],[0.528,1.327],[2.059,0.439],[0,0],[0.47,1.197],[2.047,0],[0,0],[1.756,3.121],[0,0],[0.66,-1.82],[1.257,0],[0,0],[0.437,-2.411],[1.433,-0.83],[0,0],[0.68,-2.428],[1.151,-0.288],[0,0],[0.31,-0.431],[0,0],[1.462,-3.708],[0.616,0.92],[0,0],[1.598,-0.192],[0,0],[0.772,0.53],[1.555,2.902],[0,0],[0.534,-1.363],[0,0],[1.716,-1.135],[0,0],[0.483,-1.636],[0,0],[0.669,-0.893],[0,0],[0.269,-0.689],[0,0],[1.522,-2.205],[1.036,0.751],[0,0],[2.139,-1.82],[0,0],[0.487,0.591],[1.955,0.708],[0,0],[0.395,-0.691],[0,0],[0.408,-1.338],[0,0],[0.32,-0.48],[0,0],[1.534,-5.414],[0.109,0.275],[0,0],[0.915,1.318],[0,0],[0,0],[1.073,2.697],[0.488,-0.707],[0,0],[2.059,-1.155],[0,0],[0.321,-1.312],[0,0],[0,0],[0,0],[-0.579,1.008],[0,0],[-0.692,2.832],[0,0],[-0.483,0.271],[-2.557,3.703],[0,0],[0,0],[-0.371,-1.33],[0,0],[-0.256,-0.368]],"v":[[153.22,-135.391],[145.862,-135.014],[144.539,-130.347],[143.559,-128.221],[139.688,-122.417],[138.152,-119.17],[133.577,-104.168],[132.456,-101.572],[129.78,-96.893],[122.195,-94.107],[119.49,-96.016],[117.482,-98.451],[113.18,-98.831],[113.027,-98.701],[107.132,-98.471],[103.22,-97.8],[100.45,-93.788],[99.631,-92.244],[95.124,-80.691],[93.243,-77.307],[90.241,-73.298],[88.283,-69.394],[84.437,-56.362],[80.064,-50.447],[79.107,-49.814],[77.17,-47.417],[76.184,-44.9],[65.561,-44.269],[64.344,-45.628],[61.537,-47.556],[58.369,-48.335],[57.346,-48.212],[52.649,-50.37],[47.468,-49.812],[45.036,-43.644],[44.039,-41.817],[40.336,-36.669],[36.342,-33.959],[32.728,-30.444],[28.947,-16.935],[25.092,-11.961],[22.027,-7.6],[17.639,16.615],[13.114,20.394],[10.67,22.108],[9.912,24.2],[-1.346,25.073],[-1.369,25.031],[-5.842,14.655],[-8.714,12.765],[-13.488,9.512],[-16.952,0.69],[-20.038,-1.927],[-24.559,-5.744],[-27.65,-13.513],[-32.022,-17.323],[-32.421,-17.421],[-35.43,-19.054],[-42.33,-18.653],[-43.073,-17.774],[-44.17,-15.803],[-49.301,-0.029],[-53.486,9.172],[-59.203,11.48],[-62.087,12.29],[-65.199,16.412],[-66.404,18.549],[-69.239,25.627],[-73.455,31.381],[-74.908,32.574],[-78.258,36.884],[-81.732,44.309],[-83.842,47.575],[-86.221,50.346],[-91.286,54.111],[-91.598,54.249],[-95.521,57.108],[-97.766,59.624],[-102.233,61.625],[-105.901,64.049],[-109.226,71.848],[-111.909,75.982],[-114.674,78.96],[-116.522,81.554],[-120.391,88.818],[-122.623,91.923],[-125.962,95.458],[-128.225,97.402],[-130.737,99.14],[-135.451,100.612],[-136.014,100.612],[-139.757,102.285],[-141.425,104.147],[-147.298,104.689],[-150.765,105.41],[-153.167,109.766],[-157.272,113.501],[-157.572,113.632],[-161.321,117.183],[-163.896,122.328],[-169.623,126.587],[-172.716,128.156],[-175.914,131.236],[-177.88,132.716],[-180.418,134.179],[-185.465,134.179],[-189.63,135.296],[-193.135,141.359],[-194.866,140.358],[-191.362,134.295],[-184.466,132.447],[-181.417,132.447],[-178.88,130.983],[-177.301,129.796],[-174.103,126.716],[-169.965,124.617],[-165.685,121.433],[-163.11,116.288],[-158.369,111.797],[-158.069,111.667],[-154.919,108.8],[-152.517,104.445],[-146.077,103.105],[-142.915,102.813],[-141.247,100.951],[-136.014,98.612],[-135.451,98.612],[-131.875,97.495],[-129.363,95.757],[-127.416,94.084],[-124.077,90.549],[-122.156,87.878],[-118.287,80.614],[-116.14,77.6],[-113.374,74.621],[-111.066,71.064],[-107.741,63.264],[-102.233,59.625],[-99.258,58.292],[-97.013,55.777],[-92.408,52.421],[-92.097,52.282],[-87.739,49.042],[-85.359,46.272],[-83.543,43.461],[-80.07,36.036],[-76.177,31.028],[-74.723,29.835],[-71.095,24.883],[-68.261,17.805],[-66.795,15.208],[-63.684,11.086],[-58.468,9.62],[-55.306,8.344],[-51.168,-0.755],[-46.072,-16.422],[-44.6,-19.065],[-43.857,-19.944],[-34.063,-20.513],[-31.943,-19.363],[-31.544,-19.265],[-25.791,-14.253],[-22.7,-6.483],[-19.621,-3.883],[-15.091,-0.041],[-11.626,8.781],[-8.714,10.765],[-4.005,13.863],[0.429,24.15],[8.032,23.518],[8.79,21.427],[13.114,18.394],[15.671,16.259],[20.059,-7.956],[24.089,-13.692],[27.021,-17.474],[30.802,-30.983],[35.857,-35.899],[38.712,-37.837],[42.415,-42.985],[43.175,-44.378],[45.607,-50.546],[54.311,-51.482],[57.107,-50.198],[58.13,-50.321],[62.669,-49.205],[65.476,-47.277],[67.324,-45.214],[74.322,-45.629],[75.307,-48.146],[78.003,-51.482],[78.961,-52.115],[82.519,-56.928],[86.364,-69.96],[88.64,-74.497],[91.642,-78.506],[93.261,-81.418],[97.768,-92.971],[98.804,-94.924],[101.574,-98.936],[108.305,-100.091],[111.731,-100.225],[111.884,-100.355],[119.025,-99.723],[121.033,-97.288],[122.876,-95.988],[128.044,-97.885],[130.719,-102.565],[131.664,-104.752],[136.239,-119.754],[138.024,-123.526],[141.895,-129.33],[142.615,-130.893],[143.938,-135.56],[155.078,-136.13],[155.497,-135.35],[159.421,-129.698],[161.454,-125.371],[166.364,-107.757],[168.673,-101.952],[175.041,-101.23],[176.921,-102.944],[177.908,-103.497],[182.014,-108.902],[186.112,-125.672],[187.61,-129.416],[193.133,-139.02],[194.866,-138.023],[189.344,-128.419],[188.054,-125.197],[183.956,-108.427],[178.886,-101.753],[177.9,-101.199],[176.687,-100.094],[166.815,-101.213],[164.466,-107.117],[159.528,-124.834],[157.778,-128.557],[153.854,-134.209]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":246,"s":[0.494117676978,0.349019607843,0.678431372549,1]},{"t":270,"s":[0.29411765933,0.694117665291,0.380392163992,1]}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[195.001,178.641],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.119,-1.936],[0,0],[0,0],[0,0],[0,0],[0.298,-1.221],[0,0],[2.3,-1.29],[0,0],[0.401,-0.581],[1.368,3.439],[0,0],[0,0],[0.851,1.226],[0,0],[0.138,0.346],[1.274,-4.495],[0,0],[0.378,-0.567],[0,0],[0.38,-1.245],[0,0],[0.432,-0.756],[0,0],[2.412,0.874],[0.601,0.729],[0,0],[1.714,-1.458],[0,0],[1.41,1.021],[1.204,-1.743],[0,0],[0.241,-0.617],[0,0],[0.723,-0.965],[0,0],[0.449,-1.521],[0,0],[1.912,-1.265],[0,0],[0.459,-1.171],[0,0],[1.958,3.654],[0.64,0.44],[0,0],[1.357,-0.163],[0,0],[0.825,1.233],[1.166,-2.958],[0,0],[0.359,-0.498],[0,0],[1.38,-0.345],[0.583,-2.082],[0,0],[1.659,-0.961],[0.384,-2.122],[0,0],[1.74,0],[0.516,-1.424],[0,0],[2.153,3.917],[0,0],[1.648,0],[0.621,1.58],[0,0],[1.731,0.369],[0.651,1.637],[0,0],[2.301,0.566],[0,0],[0.722,0.676],[2.131,-2.521],[0,0],[0.275,-0.845],[0,0],[0,0],[1.721,0.68],[0.941,-1.246],[0,0],[0.338,-0.845],[0,0],[1.737,-1.425],[0,0],[0.844,-1.804],[0,0],[0.789,-0.919],[0,0],[1.811,-0.803],[0,0],[1.184,-1.327],[0,0],[1.421,0],[0.784,-1.839],[0,0],[1.047,-1.128],[0,0],[0.542,-1.017],[0,0],[0.818,-0.866],[0,0],[0.763,-0.528],[0,0],[1.481,0],[0,0],[1.143,-1.276],[0,0],[1.383,1.065],[0.987,-1.789],[0,0],[1.541,-0.669],[0,0],[0.899,-1.797],[0,0],[2.164,-0.376],[0.995,-0.959],[0,0],[0.643,-0.371],[0,0],[1.252,0.722]],"o":[[0,0],[0,0],[0,0],[0,0],[-0.626,1.089],[0,0],[-0.626,2.562],[0,0],[-0.616,0.346],[-2.103,3.046],[0,0],[0,0],[-0.401,-1.438],[0,0],[-0.212,-0.306],[-1.727,-4.341],[0,0],[-0.186,0.655],[0,0],[-0.722,1.083],[0,0],[-0.254,0.833],[0,0],[-1.273,2.227],[-0.888,-0.322],[0,0],[-1.432,-1.736],[0,0],[-1.326,1.128],[-1.716,-1.243],[0,0],[-0.376,0.545],[0,0],[-0.438,1.124],[0,0],[-0.951,1.27],[0,0],[-0.649,2.199],[0,0],[-1.049,0.694],[0,0],[-1.512,3.86],[-0.367,-0.685],[0,0],[-1.127,-0.774],[0,0],[-1.473,0.177],[-1.769,-2.642],[0,0],[-0.225,0.571],[0,0],[-0.831,1.155],[-2.097,0.525],[0,0],[-0.517,1.846],[-1.866,1.08],[0,0],[-0.31,1.712],[-1.515,0],[0,0],[-1.523,4.202],[0,0],[-0.652,-1.514],[-1.697,0],[0,0],[-0.647,-1.647],[-1.723,-0.368],[0,0],[-0.876,-2.202],[0,0],[-0.96,-0.236],[-2.409,-2.257],[0,0],[-0.573,0.678],[0,0],[0,0],[-0.766,1.685],[-1.452,-0.574],[0,0],[-0.548,0.726],[0,0],[-0.835,2.086],[0,0],[-1.54,1.263],[0,0],[-0.513,1.097],[0,0],[-1.291,1.503],[0,0],[-1.626,0.721],[0,0],[-0.946,1.06],[-1.999,0],[0,0],[-0.604,1.416],[0,0],[-0.784,0.845],[0,0],[-0.56,1.051],[0,0],[-0.637,0.674],[0,0],[-1.218,0.843],[0,0],[-1.713,0],[0,0],[-1.165,1.3],[-1.618,-1.247],[0,0],[-0.811,1.471],[0,0],[-1.843,0.801],[0,0],[-0.983,1.964],[-1.361,0.237],[0,0],[-0.534,0.515],[0,0],[-1.252,0.722],[-1.937,-1.117]],"v":[[-190.496,134.417],[-194,140.48],[194,140.48],[194,-138.899],[188.478,-129.296],[187.084,-125.813],[182.986,-109.043],[178.397,-103.003],[177.411,-102.45],[175.864,-101.041],[167.744,-101.961],[165.415,-107.816],[160.492,-125.481],[158.6,-129.506],[154.676,-135.158],[154.149,-136.139],[144.901,-135.665],[143.578,-130.998],[142.727,-129.154],[138.857,-123.35],[137.196,-119.84],[132.621,-104.839],[131.588,-102.447],[128.912,-97.767],[122.536,-95.426],[120.262,-97.03],[118.254,-99.466],[112.532,-99.971],[112.38,-99.841],[107.719,-99.659],[102.397,-98.747],[99.628,-94.735],[98.7,-92.986],[94.193,-81.433],[92.443,-78.285],[89.441,-74.276],[87.324,-70.056],[83.478,-57.024],[79.513,-51.66],[78.556,-51.026],[76.239,-48.16],[75.253,-45.643],[66.443,-45.12],[64.911,-46.831],[62.104,-48.759],[58.25,-49.706],[57.227,-49.583],[53.481,-51.304],[46.538,-50.557],[44.106,-44.39],[43.227,-42.779],[39.524,-37.631],[36.1,-35.308],[31.766,-31.092],[27.985,-17.582],[24.591,-13.205],[21.043,-8.157],[16.656,16.059],[13.114,19.016],[9.73,21.389],[8.972,23.481],[-0.469,24.213],[-4.923,13.88],[-8.714,11.387],[-12.556,8.768],[-16.021,-0.054],[-19.829,-3.284],[-23.629,-6.492],[-26.72,-14.261],[-31.783,-18.672],[-32.181,-18.77],[-34.746,-20.162],[-43.093,-19.677],[-43.836,-18.797],[-45.12,-16.491],[-50.234,-0.77],[-54.396,8.38],[-58.835,10.172],[-62.885,11.31],[-65.996,15.432],[-67.332,17.799],[-70.166,24.876],[-74.088,30.229],[-75.542,31.422],[-79.163,36.082],[-82.637,43.507],[-84.6,46.545],[-86.98,49.316],[-91.691,52.818],[-92.003,52.956],[-96.267,56.064],[-98.512,58.58],[-102.233,60.246],[-106.821,63.278],[-110.146,71.078],[-112.641,74.923],[-115.406,77.902],[-117.404,80.706],[-121.273,87.97],[-123.349,90.858],[-126.688,94.393],[-128.794,96.201],[-131.305,97.939],[-135.451,99.234],[-136.013,99.234],[-140.501,101.239],[-142.169,103.102],[-146.687,103.518],[-151.64,104.549],[-154.043,108.905],[-157.67,112.205],[-157.97,112.336],[-162.215,116.357],[-164.79,121.503],[-169.793,125.223],[-173.409,127.057],[-176.607,130.138],[-178.379,131.471],[-180.917,132.935],[-184.965,132.935]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":246,"s":[0,0.494,0.349,0.678,0.5,0.494,0.349,0.678,1,0.494,0.349,0.678,0,0.2,0.5,0.1,1,0]},{"t":270,"s":[0,0.294,0.694,0.38,0.5,0.294,0.694,0.38,1,0.294,0.694,0.38,0,0.2,0.5,0.1,1,0]}],"ix":9}},"s":{"a":0,"k":[0,-137.79],"ix":5},"e":{"a":0,"k":[0,142.279],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[195,179.02],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1800,"st":0,"bm":0}],"markers":[{"tm":0,"cm":"trends","dr":90},{"tm":120,"cm":"algorithm","dr":90},{"tm":235,"cm":"returns","dr":96},{"tm":353,"cm":"end","dr":0}]}
@@ -0,0 +1 @@
1
+ {"v":"5.9","ddd":0,"ip":0,"op":300,"fr":60,"w":500,"h":500,"layers":[{"nm":"Shape layer","ind":1,"ty":4,"ddd":0,"ip":0,"op":300,"st":0,"ks":{"a":{"k":[0,0,0]},"p":{"k":[0,0,0]},"s":{"k":[100,100,100]},"r":{"k":0},"o":{"k":100}},"bm":0,"hasMask":false,"sr":1,"tt":0,"hd":false,"shapes":[{"ty":"sr","nm":"Star","hd":false,"d":1,"p":{"k":[245.665346,220.021378,0]},"or":{"k":50},"os":{"k":77.002817},"r":{"k":0},"pt":{"k":5},"sy":2},{"ty":"fl","nm":"Fill","hd":false,"o":{"k":100},"c":{"k":[0.800971,0.91038,0.709053,1]},"r":2},{"ty":"st","nm":"Stroke","hd":false,"o":{"k":100},"c":{"k":[0,0,0,1]},"w":{"k":2},"lc":2,"lj":2,"ml":0}]}]}