lottie-ios 3.4.0 → 3.4.3

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 (394) hide show
  1. package/.github/workflows/main.yml +10 -7
  2. package/.github/workflows/stale_issues.yml +17 -0
  3. package/.swiftpm/xcode/package.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  4. package/Lottie.xcodeproj/project.pbxproj +33 -21
  5. package/Lottie.xcodeproj/xcshareddata/xcschemes/Lottie (macOS).xcscheme +2 -2
  6. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  7. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +5 -6
  8. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Expressions.xcexplist +114 -1
  9. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +30 -0
  10. package/Package.swift +1 -1
  11. package/README.md +5 -6
  12. package/Rakefile +52 -17
  13. package/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift +7 -2
  14. package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +192 -67
  15. package/Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift +28 -0
  16. package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +31 -4
  17. package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +98 -43
  18. package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +19 -19
  19. package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +34 -7
  20. package/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift +25 -14
  21. package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +61 -32
  22. package/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift +6 -2
  23. package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +29 -11
  24. package/Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift +2 -2
  25. package/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift +116 -23
  26. package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +9 -0
  27. package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +2 -1
  28. package/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift +48 -12
  29. package/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift +10 -3
  30. package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +5 -0
  31. package/Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift +1 -1
  32. package/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift +2 -2
  33. package/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift +85 -0
  34. package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +94 -38
  35. package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +131 -46
  36. package/Sources/Private/CoreAnimation/Layers/TextLayer.swift +16 -2
  37. package/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.swift +1 -1
  38. package/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift +0 -2
  39. package/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift +2 -2
  40. package/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift +1 -2
  41. package/Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift +30 -1
  42. package/Sources/Private/MainThread/LayerContainers/Utility/InvertedMatteLayer.swift +1 -0
  43. package/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift +0 -1
  44. package/Sources/Private/MainThread/NodeRenderSystem/Extensions/ItemsExtension.swift +5 -2
  45. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +4 -7
  46. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +5 -0
  47. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift +1 -2
  48. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift +1 -1
  49. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift +1 -1
  50. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/RectNode.swift +1 -1
  51. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/StarNode.swift +3 -3
  52. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +3 -0
  53. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +1 -1
  54. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +28 -1
  55. package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +1 -1
  56. package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift +0 -1
  57. package/Sources/Private/Model/Animation.swift +4 -4
  58. package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +25 -0
  59. package/Sources/Private/Model/ShapeItems/Ellipse.swift +0 -1
  60. package/Sources/Private/Model/ShapeItems/Fill.swift +1 -1
  61. package/Sources/Private/Model/ShapeItems/GradientFill.swift +14 -1
  62. package/Sources/Private/Model/ShapeItems/GradientStroke.swift +0 -1
  63. package/Sources/Private/Model/ShapeItems/Group.swift +6 -1
  64. package/Sources/Private/Model/ShapeItems/Merge.swift +0 -1
  65. package/Sources/Private/Model/ShapeItems/Rectangle.swift +0 -1
  66. package/Sources/Private/Model/ShapeItems/Repeater.swift +0 -1
  67. package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +0 -1
  68. package/Sources/Private/Model/ShapeItems/Star.swift +0 -1
  69. package/Sources/Private/Model/ShapeItems/Stroke.swift +0 -1
  70. package/Sources/Private/Model/ShapeItems/Trim.swift +0 -1
  71. package/Sources/Private/Model/Text/TextAnimator.swift +0 -1
  72. package/Sources/Private/Utility/Debugging/LayerDebugging.swift +1 -2
  73. package/Sources/Private/Utility/Extensions/MathKit.swift +1 -2
  74. package/Sources/Private/Utility/Extensions/StringExtensions.swift +0 -1
  75. package/Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift +0 -1
  76. package/Sources/Private/{MainThread/NodeRenderSystem/NodeProperties/ValueProviders → Utility/Interpolatable}/KeyframeInterpolator.swift +1 -4
  77. package/Sources/Private/Utility/Primitives/BezierPath.swift +1 -2
  78. package/Sources/Private/Utility/Primitives/CurveVertex.swift +2 -4
  79. package/Sources/Public/Animation/AnimationPublic.swift +2 -4
  80. package/Sources/Public/Animation/AnimationView.swift +29 -7
  81. package/Sources/Public/Animation/AnimationViewInitializers.swift +13 -11
  82. package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +0 -2
  83. package/Sources/Public/FontProvider/AnimationFontProvider.swift +1 -1
  84. package/Sources/Public/Logging/LottieLogger.swift +15 -2
  85. package/Sources/Public/TextProvider/AnimationTextProvider.swift +1 -1
  86. package/Sources/Public/iOS/AnimatedButton.swift +10 -4
  87. package/Sources/Public/iOS/AnimatedControl.swift +3 -5
  88. package/Sources/Public/iOS/AnimatedSwitch.swift +9 -6
  89. package/Sources/Public/iOS/BundleImageProvider.swift +2 -3
  90. package/Sources/Public/iOS/FilepathImageProvider.swift +1 -2
  91. package/Sources/Public/macOS/BundleImageProvider.macOS.swift +1 -2
  92. package/Sources/Public/macOS/FilepathImageProvider.macOS.swift +1 -3
  93. package/Tests/AnimationKeypathTests.swift +10 -1
  94. package/Tests/AutomaticEngineTests.swift +1 -0
  95. package/Tests/ParsingTests.swift +2 -1
  96. package/Tests/PerformanceTests.swift +28 -29
  97. package/Tests/SnapshotConfiguration.swift +19 -0
  98. package/Tests/SnapshotTests.swift +4 -0
  99. package/Tests/Utils/HardcodedTextProvider.swift +27 -0
  100. package/lottie-ios.podspec +2 -2
  101. package/package.json +1 -1
  102. package/script/test-carthage/CarthageTest/AppDelegate.swift +6 -7
  103. package/script/test-carthage/CarthageTest/ViewController.swift +1 -1
  104. package/script/test-carthage/CarthageTest-macOS/AppDelegate.swift +7 -0
  105. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  106. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
  107. package/script/test-carthage/CarthageTest-macOS/Assets.xcassets/Contents.json +6 -0
  108. package/script/test-carthage/CarthageTest-macOS/Base.lproj/Main.storyboard +717 -0
  109. package/script/test-carthage/CarthageTest-macOS/CarthageTest_macOS.entitlements +10 -0
  110. package/script/test-carthage/CarthageTest-macOS/ViewController.swift +15 -0
  111. package/script/test-carthage/CarthageTest.xcodeproj/project.pbxproj +159 -5
  112. package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  113. package/script/test-carthage/CarthageTest.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +19 -0
  114. package/Lottie.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +0 -23
  115. package/Mintfile +0 -3
  116. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-7Vi1RszY1XYnR2CCkEwIpKG8NwwA9zsZEz_WD7Dv6kKh4RC7N7ob8NIRVHGUJKp7eXxlpeI_gzD87Pcs_2u0g== +0 -0
  117. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-SKV2drO-SFlrlh-wrzECDMkUSr-aF1lV9h-5onOy94zSTsD-oI45s0-KpOK45L-kq3hRY7v9vm-xmh00_eheg== +0 -0
  118. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-_CU_vuaiFfObSeDFfmp7GuB20ThMSAL-P_RUMowiQLbdu-y0bU9upIm3q8g6XmXUG5hP6J1az0Ma5Hi_rhhRg== +0 -0
  119. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~03aPYP6VHJjZj5DlphGarj0xdw43qu09Onx5SReZoPvg9zh5uL212E-KWfGct9jf6JG0JFV2tdbBi7X_8bH9aw== +0 -0
  120. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~1Z82GPBBPc1VLvn4O7V5glb6lgyXteNlDREUzV_TPymM4ra4UkBMklzV90lEqoYRCDuRVzaQHaDYbmYp3-8CFw== +0 -0
  121. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~1mFDCboXpUu9pSHAiVGr1O_QgqEEtvJp_LUhickxLZo0Z5pj3fvadn1l2MzEOd4bFsVBZifUvcyPa7dzlMWF-A== +0 -0
  122. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~2_L9PUjv2JDKu1n8bDLb4XLB-yex6ZVjDDMwfuKAr7teDw-SKgLgkW6H-m_gjWChIVdB4vW6yvHP7XJxvXtRNA== +0 -0
  123. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +0 -1
  124. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~4krT4ZMzDOu34msFUq0Xod142kw4pAeSWX4JSxlsjOI0Wanu3343qeespgFi61MTWq1DdH9XXspVKqGlGm_fyw== +0 -0
  125. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~5_aJsdP-e3dRTAUnH-y1U2plaCuUi1vyHriaZuNK0xFe8wGl9Qft6uLCX2Qt6CRBKJQluEe9o0uRWw1eb42FHQ== +0 -0
  126. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~8b0bSqV7eND54zvHvu1v2Htpm7yn-BOEFw5d3mITJrXWNykJ5BTR9WbrD80JEctNcT-rDqO2xfrQk1tFWeY6Sw== +0 -0
  127. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~9u8KAGpgtSm-mQ12Py8RZUbYbDlBhM3w1I2MQO53K2CSn6IePp7g65DBcdXTYMfG1bgoJ-6x30fjnGe-2UYsDQ== +0 -0
  128. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Bw7uMs4wqB9ahfEqGii2FkQ9pvZmG6HGe2hmbAT2wyM5hpn8Xh5dELysMcEz6hEsqmn6HdRdLOLZhC_fNaXzgA== +0 -0
  129. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~BwUq2xXQYuE8ya6HT6lfNsdtEjz5AKGf8GvLY6VBxQyIY1vgj_Gov-3NeM69OS66BQRDK0PG9H4Oyg0R48E4vg== +0 -0
  130. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~EkDVUR6dcnzxV_lYjkrJ5QGMVTCvb_upAoBF6DBu61sQkGvZN3fSRTsJ1XfJIZO-JUzdNoVA3D_CcvokL0gnQg== +0 -0
  131. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~FUkcLSJ8RAuPenM4HFG1R-sN5-cDBGcTxgR2jaVCna7xV0ZTyBHriB1Nn59mariNlJDiCoBtMUQEmauGxWtfBA== +0 -0
  132. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~FqsuZe4RVLOOVUYLTL-GTIohZ8TdSfxx7m2KJtLYFPGOdE4XorTX7Oc7kXbhghPRppXT3jW-slI37M34YNEvLQ== +0 -0
  133. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~G4F_NtyTj3i46fmKm0NorHAeq8tYWWYf6uv5yC1DwzdpWVoYbOPufmFNvdEbxZt4AMdV0gKx3HI46EAXNOQVFg== +0 -0
  134. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~GxetzGUNDgaBBXcTmLK6p9JBDX3I3QPshshbui1IaEWvJbQko-E36tCKwaJYHbleAWz9FqkAM_Tqx3YOmSVkVg== +0 -0
  135. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~H1Wjd5kKWDW4t3SDodxiHV72V8WT0xwPubw5cJTNLkPRLgaILFPh-dpy8EOUNgy1KzrDujFsm9EcTsbuqtMPLA== +0 -0
  136. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~JpI5MH4zCgebUHFpXVn4zjtsGtMNnO7BQZWfNARAB5UWa9gqz6YXHR3uLCJ_AvJ3lh53BUVkavsx9TY2FMmxbA== +0 -0
  137. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~JujNYkJtcux0Ni4QnR64zu4Wz_zYjyKvYaYZm5ypxTLPSzF3_jNE_NO4sdbDamF8wEqWoky1uf4ZE0JT3L607A== +0 -0
  138. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~KJSEA6DKnb2_FRPSqKZGh41eo-C8x448J9kEBrH012bUrZfOSDvrgmIrU0Vz7Ri3gaS9aKKmSaVMvXsHSlTJVA== +0 -0
  139. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~MStOwu3jBlJtcRnxrseVOuhI4kCj--ggFPG7sqrq5w1hjrI3bVyD-bm1Jwyx0noY3wT1rHDEvaGWnV2qsGjGwg== +0 -0
  140. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~McsJ8kFVf3IjhgXIRdw8Xx-EXgbV071bmlj2BBnk52xrWl3sEeiIyxwUsF7mIWvMRWfcFfu4VGHYyqfk2BeHXw== +0 -0
  141. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~NHt9fVe4kDdbxnglKcEwXaRK-WsYEOaD23Kbl8SJPRMYHr_Z6SJd_HmG3BROHHR_M6TgSmucONpDJdTj5tjuFw== +0 -0
  142. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Nfo2iwCPcfAcOBIVyoUAK0-PIfr5qYxIKZt-uaSaTBdrTNxAuJ1ItmeDPZ3VdJJmxD_c22No7x482bdd3_yYtw== +0 -0
  143. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~S2Qlu11xBhEd5aGSzWsnw1TR8u8PiOF93GO0j5bfNoAFCVzxKOwhRFoIXba2EpQnLQqFdIKyhWN3l70A4GPHmg== +0 -0
  144. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~W7a7M37RO9jgck2zeR0471Pm7e8K0Kqj5tXEouDjvqKZXSrWxMaWD28oqkKKYAiU4608R4S9mM11KyphljdMSw== +0 -0
  145. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~XUo1oyPCrlL7CA74wG-OzQ06VOWJYWvHGFHU7keZN1SKaIXjHX5qi_kBzjG_rBCi89-S8GVmCy7S3PHSjG8SbQ== +0 -0
  146. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Xh0VmDvFNMELHu08-vrs54pegVyUwwDRxx_nXkwyD0NjnYozyqcGAKAr_QWHmw6F8XyuWg51M9KGpJJIFzzGuw== +0 -0
  147. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Xve-wMBp_lxVUgD9qH5GwieGP9cAWtm0xULZvdGjBRUMvaevmpCB5gnbMBuIXAO6a1c9v6WUq0jNVX7ut5HvOw== +0 -0
  148. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~ZU1XkZFgnEE22CXEF-pOlcj5f10x-KM1Vw9d4IOLu-NiTZcz7koYPixhdrB1PJr8J-h9NpJmfqEastfxamA1jQ== +0 -0
  149. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~_YkNYEHTsbbtFILJpzH3HenH0t4ShI25dIMdve541CF5bl-jPF3X3F7tq-t5dvP0TEkATsOJdLQdBp1xv4Q-ag== +0 -0
  150. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~boy6mpn2jkwm60jjgQ0TG25UqRdN46LzmgTVCrpy6nBOgkLCGkGHcbceiwjU1itS_vj3-iQX0ZnrWOQrPyfHNA== +0 -0
  151. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~bwzpVZ9hAqGDHhXs2FRA82dfGfLmc7-m0uQhZDDfHHO7hQ17M_Np341BZX4WDLhYYS4cdUgaDodlNpdfpG3nXw== +0 -0
  152. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~cBxe-9PpAGFdAsYkmdN3lJVqEliLcRYlyoAov0aPZfJGwUr_cOm3XpjO7nmf_2eLf8UAx-rycjnJzw07xLrNCA== +0 -1
  153. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~dirWk6W4Pav1oyciuflfJlRu0iuxbYOmrpQapOJ0mV9C1SQ-jvDRv_7h753Cy18-SwULARUdWsyUy3yNNvxF7w== +0 -0
  154. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~ebwZVjSEHroc9jtIm4jd_h_YAqEBcOkAZ4HPNJT8pLCldjRcTq-obQLakxXOhfuoOBlYBoZLuO-Y0lskeZRYKw== +0 -0
  155. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~gfcRcmRIr0h09d0jiZsA7nUeQv2XtapxuYEXZy1Z9um0tTJQvz-O5ef5f7zhLenLvjnDtDtlY_aY4Hvpce6e1Q== +0 -0
  156. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~hgOgiVCyv2R0W-f0qKw5xYPeUwj8_ccCM9vKH_7vAQcCO9t8BwR1APGRBv20AONmp-PYMXmtgsBlQkNBRBpdQA== +0 -0
  157. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~hrhCl-YRAAr8ByNB_LCgEBsVNHMp92gTIUknetpUHMjcXl4Hpn_uY-h6C45oga0ZALnfGCo6iKTmiPLa4Qvnpg== +0 -0
  158. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~n2yoR7JsyL4DSUwmjnpE4Iq9Qi_eeZrmpPU8cdehDFKfESK7nwxXxfrSMQbk0BQ2lgGPadoRcd1-qr1xVz97jA== +0 -0
  159. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~nMCcZm8WvPogyO_nuJ926Q3Q2dqVMN2LdjEL1Kq2wJ_RG-rH-e_6v41l1xZbCsQTa3XykQdEiXNc0HtAvT6IRA== +0 -0
  160. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~oc3C7xkUt-OWDL6rrsxs-seS4Fu1bqBWAAXCHalgShaGg9MUrOiRbHT2DcAnhyQFKx6x5FRbvjmYoQWrQiXJZA== +0 -0
  161. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~p-ihj7SEgkDXpMu9hvKE_wiX9cvtwyXrdIn964BfedXHKGpC6o7mMPxEyC0kRPVi_EZs_MRV5bAPEpl5h5we0g== +0 -0
  162. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~qlhO_D9oE8uSKH-mZqyRF9pp4Zv1Tv0dIYcqrH4hb1VWlIxcdxmg2j0M8496cQeFXC5bn_JMXdBlD-d6cnFF8w== +0 -0
  163. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~tjpiyIxJR_boTdUNrtFDuKIZoY84fI4lA1oMJbq9e2ZmYKIK5FeRN2O8cV_yMOYJGr4lbv03kTmT70mCjUc2_Q== +0 -0
  164. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~wULeoj18eEKJWAKx1uFQVwS48cUGFcYPRJQj1Ro5XNJsWCwppGSCdIPhwifD6Z2f_j3zfI2SmC2Gg81sBXXW7g== +0 -0
  165. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~zrEihMys4NVV5rx6FmuzEGO2TjloI3OiC7yzIhvqYoRo43ibb2F-Km6Jf4NX-ac62pOLBYZRcjQTvYMpn75_oA== +0 -0
  166. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-7Vi1RszY1XYnR2CCkEwIpKG8NwwA9zsZEz_WD7Dv6kKh4RC7N7ob8NIRVHGUJKp7eXxlpeI_gzD87Pcs_2u0g== +0 -0
  167. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-SKV2drO-SFlrlh-wrzECDMkUSr-aF1lV9h-5onOy94zSTsD-oI45s0-KpOK45L-kq3hRY7v9vm-xmh00_eheg== +0 -0
  168. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-_CU_vuaiFfObSeDFfmp7GuB20ThMSAL-P_RUMowiQLbdu-y0bU9upIm3q8g6XmXUG5hP6J1az0Ma5Hi_rhhRg== +0 -0
  169. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~03aPYP6VHJjZj5DlphGarj0xdw43qu09Onx5SReZoPvg9zh5uL212E-KWfGct9jf6JG0JFV2tdbBi7X_8bH9aw== +0 -0
  170. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~1Z82GPBBPc1VLvn4O7V5glb6lgyXteNlDREUzV_TPymM4ra4UkBMklzV90lEqoYRCDuRVzaQHaDYbmYp3-8CFw== +0 -0
  171. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~1mFDCboXpUu9pSHAiVGr1O_QgqEEtvJp_LUhickxLZo0Z5pj3fvadn1l2MzEOd4bFsVBZifUvcyPa7dzlMWF-A== +0 -0
  172. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~2_L9PUjv2JDKu1n8bDLb4XLB-yex6ZVjDDMwfuKAr7teDw-SKgLgkW6H-m_gjWChIVdB4vW6yvHP7XJxvXtRNA== +0 -0
  173. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +0 -0
  174. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~4krT4ZMzDOu34msFUq0Xod142kw4pAeSWX4JSxlsjOI0Wanu3343qeespgFi61MTWq1DdH9XXspVKqGlGm_fyw== +0 -0
  175. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~5_aJsdP-e3dRTAUnH-y1U2plaCuUi1vyHriaZuNK0xFe8wGl9Qft6uLCX2Qt6CRBKJQluEe9o0uRWw1eb42FHQ== +0 -0
  176. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~8b0bSqV7eND54zvHvu1v2Htpm7yn-BOEFw5d3mITJrXWNykJ5BTR9WbrD80JEctNcT-rDqO2xfrQk1tFWeY6Sw== +0 -0
  177. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~9u8KAGpgtSm-mQ12Py8RZUbYbDlBhM3w1I2MQO53K2CSn6IePp7g65DBcdXTYMfG1bgoJ-6x30fjnGe-2UYsDQ== +0 -0
  178. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Bw7uMs4wqB9ahfEqGii2FkQ9pvZmG6HGe2hmbAT2wyM5hpn8Xh5dELysMcEz6hEsqmn6HdRdLOLZhC_fNaXzgA== +0 -0
  179. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~BwUq2xXQYuE8ya6HT6lfNsdtEjz5AKGf8GvLY6VBxQyIY1vgj_Gov-3NeM69OS66BQRDK0PG9H4Oyg0R48E4vg== +0 -0
  180. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~EkDVUR6dcnzxV_lYjkrJ5QGMVTCvb_upAoBF6DBu61sQkGvZN3fSRTsJ1XfJIZO-JUzdNoVA3D_CcvokL0gnQg== +0 -0
  181. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~FUkcLSJ8RAuPenM4HFG1R-sN5-cDBGcTxgR2jaVCna7xV0ZTyBHriB1Nn59mariNlJDiCoBtMUQEmauGxWtfBA== +0 -0
  182. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~FqsuZe4RVLOOVUYLTL-GTIohZ8TdSfxx7m2KJtLYFPGOdE4XorTX7Oc7kXbhghPRppXT3jW-slI37M34YNEvLQ== +0 -0
  183. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~G4F_NtyTj3i46fmKm0NorHAeq8tYWWYf6uv5yC1DwzdpWVoYbOPufmFNvdEbxZt4AMdV0gKx3HI46EAXNOQVFg== +0 -0
  184. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~GxetzGUNDgaBBXcTmLK6p9JBDX3I3QPshshbui1IaEWvJbQko-E36tCKwaJYHbleAWz9FqkAM_Tqx3YOmSVkVg== +0 -0
  185. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~H1Wjd5kKWDW4t3SDodxiHV72V8WT0xwPubw5cJTNLkPRLgaILFPh-dpy8EOUNgy1KzrDujFsm9EcTsbuqtMPLA== +0 -0
  186. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~JpI5MH4zCgebUHFpXVn4zjtsGtMNnO7BQZWfNARAB5UWa9gqz6YXHR3uLCJ_AvJ3lh53BUVkavsx9TY2FMmxbA== +0 -0
  187. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~JujNYkJtcux0Ni4QnR64zu4Wz_zYjyKvYaYZm5ypxTLPSzF3_jNE_NO4sdbDamF8wEqWoky1uf4ZE0JT3L607A== +0 -0
  188. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~KJSEA6DKnb2_FRPSqKZGh41eo-C8x448J9kEBrH012bUrZfOSDvrgmIrU0Vz7Ri3gaS9aKKmSaVMvXsHSlTJVA== +0 -0
  189. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~MStOwu3jBlJtcRnxrseVOuhI4kCj--ggFPG7sqrq5w1hjrI3bVyD-bm1Jwyx0noY3wT1rHDEvaGWnV2qsGjGwg== +0 -0
  190. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~McsJ8kFVf3IjhgXIRdw8Xx-EXgbV071bmlj2BBnk52xrWl3sEeiIyxwUsF7mIWvMRWfcFfu4VGHYyqfk2BeHXw== +0 -0
  191. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~NHt9fVe4kDdbxnglKcEwXaRK-WsYEOaD23Kbl8SJPRMYHr_Z6SJd_HmG3BROHHR_M6TgSmucONpDJdTj5tjuFw== +0 -0
  192. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Nfo2iwCPcfAcOBIVyoUAK0-PIfr5qYxIKZt-uaSaTBdrTNxAuJ1ItmeDPZ3VdJJmxD_c22No7x482bdd3_yYtw== +0 -0
  193. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~S2Qlu11xBhEd5aGSzWsnw1TR8u8PiOF93GO0j5bfNoAFCVzxKOwhRFoIXba2EpQnLQqFdIKyhWN3l70A4GPHmg== +0 -0
  194. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~W7a7M37RO9jgck2zeR0471Pm7e8K0Kqj5tXEouDjvqKZXSrWxMaWD28oqkKKYAiU4608R4S9mM11KyphljdMSw== +0 -0
  195. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~XUo1oyPCrlL7CA74wG-OzQ06VOWJYWvHGFHU7keZN1SKaIXjHX5qi_kBzjG_rBCi89-S8GVmCy7S3PHSjG8SbQ== +0 -0
  196. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Xh0VmDvFNMELHu08-vrs54pegVyUwwDRxx_nXkwyD0NjnYozyqcGAKAr_QWHmw6F8XyuWg51M9KGpJJIFzzGuw== +0 -0
  197. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Xve-wMBp_lxVUgD9qH5GwieGP9cAWtm0xULZvdGjBRUMvaevmpCB5gnbMBuIXAO6a1c9v6WUq0jNVX7ut5HvOw== +0 -0
  198. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~ZU1XkZFgnEE22CXEF-pOlcj5f10x-KM1Vw9d4IOLu-NiTZcz7koYPixhdrB1PJr8J-h9NpJmfqEastfxamA1jQ== +0 -0
  199. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~_YkNYEHTsbbtFILJpzH3HenH0t4ShI25dIMdve541CF5bl-jPF3X3F7tq-t5dvP0TEkATsOJdLQdBp1xv4Q-ag== +0 -0
  200. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~boy6mpn2jkwm60jjgQ0TG25UqRdN46LzmgTVCrpy6nBOgkLCGkGHcbceiwjU1itS_vj3-iQX0ZnrWOQrPyfHNA== +0 -0
  201. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~bwzpVZ9hAqGDHhXs2FRA82dfGfLmc7-m0uQhZDDfHHO7hQ17M_Np341BZX4WDLhYYS4cdUgaDodlNpdfpG3nXw== +0 -0
  202. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~cBxe-9PpAGFdAsYkmdN3lJVqEliLcRYlyoAov0aPZfJGwUr_cOm3XpjO7nmf_2eLf8UAx-rycjnJzw07xLrNCA== +0 -0
  203. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~dirWk6W4Pav1oyciuflfJlRu0iuxbYOmrpQapOJ0mV9C1SQ-jvDRv_7h753Cy18-SwULARUdWsyUy3yNNvxF7w== +0 -0
  204. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~ebwZVjSEHroc9jtIm4jd_h_YAqEBcOkAZ4HPNJT8pLCldjRcTq-obQLakxXOhfuoOBlYBoZLuO-Y0lskeZRYKw== +0 -0
  205. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~gfcRcmRIr0h09d0jiZsA7nUeQv2XtapxuYEXZy1Z9um0tTJQvz-O5ef5f7zhLenLvjnDtDtlY_aY4Hvpce6e1Q== +0 -0
  206. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~hgOgiVCyv2R0W-f0qKw5xYPeUwj8_ccCM9vKH_7vAQcCO9t8BwR1APGRBv20AONmp-PYMXmtgsBlQkNBRBpdQA== +0 -0
  207. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~hrhCl-YRAAr8ByNB_LCgEBsVNHMp92gTIUknetpUHMjcXl4Hpn_uY-h6C45oga0ZALnfGCo6iKTmiPLa4Qvnpg== +0 -0
  208. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~n2yoR7JsyL4DSUwmjnpE4Iq9Qi_eeZrmpPU8cdehDFKfESK7nwxXxfrSMQbk0BQ2lgGPadoRcd1-qr1xVz97jA== +0 -0
  209. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~nMCcZm8WvPogyO_nuJ926Q3Q2dqVMN2LdjEL1Kq2wJ_RG-rH-e_6v41l1xZbCsQTa3XykQdEiXNc0HtAvT6IRA== +0 -0
  210. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~oc3C7xkUt-OWDL6rrsxs-seS4Fu1bqBWAAXCHalgShaGg9MUrOiRbHT2DcAnhyQFKx6x5FRbvjmYoQWrQiXJZA== +0 -0
  211. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~p-ihj7SEgkDXpMu9hvKE_wiX9cvtwyXrdIn964BfedXHKGpC6o7mMPxEyC0kRPVi_EZs_MRV5bAPEpl5h5we0g== +0 -0
  212. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~qlhO_D9oE8uSKH-mZqyRF9pp4Zv1Tv0dIYcqrH4hb1VWlIxcdxmg2j0M8496cQeFXC5bn_JMXdBlD-d6cnFF8w== +0 -0
  213. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~tjpiyIxJR_boTdUNrtFDuKIZoY84fI4lA1oMJbq9e2ZmYKIK5FeRN2O8cV_yMOYJGr4lbv03kTmT70mCjUc2_Q== +0 -0
  214. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~wULeoj18eEKJWAKx1uFQVwS48cUGFcYPRJQj1Ro5XNJsWCwppGSCdIPhwifD6Z2f_j3zfI2SmC2Gg81sBXXW7g== +0 -0
  215. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~zrEihMys4NVV5rx6FmuzEGO2TjloI3OiC7yzIhvqYoRo43ibb2F-Km6Jf4NX-ac62pOLBYZRcjQTvYMpn75_oA== +0 -0
  216. package/Tests/Artifacts/LottieTests.xcresult/Info.plist +0 -29
  217. package/Tests/Samples/9squares_AlBoardman.json +0 -1
  218. package/Tests/Samples/Boat_Loader.json +0 -1
  219. package/Tests/Samples/HamburgerArrow.json +0 -1
  220. package/Tests/Samples/IconTransitions.json +0 -1
  221. package/Tests/Samples/Images/dog.png +0 -0
  222. package/Tests/Samples/Issues/issue_1403.json +0 -1
  223. package/Tests/Samples/Issues/issue_1407.json +0 -1
  224. package/Tests/Samples/Issues/issue_1488.json +0 -1
  225. package/Tests/Samples/Issues/issue_1505.json +0 -1
  226. package/Tests/Samples/Issues/issue_1628.json +0 -1
  227. package/Tests/Samples/Issues/pr_1536.json +0 -1
  228. package/Tests/Samples/Issues/pr_1563.json +0 -8439
  229. package/Tests/Samples/Issues/pr_1592.json +0 -5527
  230. package/Tests/Samples/Issues/pr_1599.json +0 -738
  231. package/Tests/Samples/Issues/pr_1604_1.json +0 -1
  232. package/Tests/Samples/Issues/pr_1604_2.json +0 -1
  233. package/Tests/Samples/LottieFiles/LICENSE.md +0 -14
  234. package/Tests/Samples/LottieFiles/bounce_strokes.json +0 -1
  235. package/Tests/Samples/LottieFiles/cactus.json +0 -1
  236. package/Tests/Samples/LottieFiles/dog_car_ride.json +0 -1
  237. package/Tests/Samples/LottieFiles/draft_icon.json +0 -1
  238. package/Tests/Samples/LottieFiles/gradient_1.json +0 -1
  239. package/Tests/Samples/LottieFiles/gradient_2.json +0 -1
  240. package/Tests/Samples/LottieFiles/gradient_pill.json +0 -1
  241. package/Tests/Samples/LottieFiles/gradient_shapes.json +0 -1
  242. package/Tests/Samples/LottieFiles/gradient_square.json +0 -1
  243. package/Tests/Samples/LottieFiles/growth.json +0 -1
  244. package/Tests/Samples/LottieFiles/infinity_loader.json +0 -1
  245. package/Tests/Samples/LottieFiles/loading_dots_1.json +0 -1
  246. package/Tests/Samples/LottieFiles/loading_dots_2.json +0 -1
  247. package/Tests/Samples/LottieFiles/loading_dots_3.json +0 -1
  248. package/Tests/Samples/LottieFiles/loading_gradient_strokes.json +0 -1
  249. package/Tests/Samples/LottieFiles/settings_slider.json +0 -1
  250. package/Tests/Samples/LottieFiles/shop.json +0 -1
  251. package/Tests/Samples/LottieFiles/step_loader.json +0 -1
  252. package/Tests/Samples/LottieLogo1.json +0 -1
  253. package/Tests/Samples/LottieLogo1_masked.json +0 -1
  254. package/Tests/Samples/LottieLogo2.json +0 -1
  255. package/Tests/Samples/MotionCorpse_Jrcanest.json +0 -1
  256. package/Tests/Samples/Nonanimating/BasicLayers.json +0 -1
  257. package/Tests/Samples/Nonanimating/DisableNodesTest.json +0 -1
  258. package/Tests/Samples/Nonanimating/FirstText.json +0 -1
  259. package/Tests/Samples/Nonanimating/GeometryTransformTest.json +0 -1
  260. package/Tests/Samples/Nonanimating/Text_AnimatedProperties.json +0 -1
  261. package/Tests/Samples/Nonanimating/Text_Glyph.json +0 -1
  262. package/Tests/Samples/Nonanimating/Text_NoAnimation.json +0 -1
  263. package/Tests/Samples/Nonanimating/Text_NoGlyph.json +0 -1
  264. package/Tests/Samples/Nonanimating/Zoom.json +0 -1
  265. package/Tests/Samples/Nonanimating/_dog.json +0 -1
  266. package/Tests/Samples/Nonanimating/base64Test.json +0 -1
  267. package/Tests/Samples/Nonanimating/blend_mode_test.json +0 -1
  268. package/Tests/Samples/Nonanimating/keypathTest.json +0 -1
  269. package/Tests/Samples/Nonanimating/verifyLineHeight.json +0 -1
  270. package/Tests/Samples/PinJump.json +0 -1
  271. package/Tests/Samples/Private/BrokenLottieFiles/growth_man.json +0 -874
  272. package/Tests/Samples/Private/BrokenLottieFiles/rocket.json +0 -1
  273. package/Tests/Samples/Private/China_EmptyState_Itinerary.json +0 -1
  274. package/Tests/Samples/Private/LoaderHourglass.json +0 -12070
  275. package/Tests/Samples/Private/README.md +0 -7
  276. package/Tests/Samples/Private/Urgency/alarm_animated.json +0 -1
  277. package/Tests/Samples/Private/Urgency/diamond_animated.json +0 -1
  278. package/Tests/Samples/Private/Urgency/eye_animated.json +0 -1
  279. package/Tests/Samples/Private/Urgency/light_bulb_animated.json +0 -1
  280. package/Tests/Samples/Private/Urgency/light_bulb_static.json +0 -1
  281. package/Tests/Samples/Private/Urgency/piggy_bank_static.json +0 -1
  282. package/Tests/Samples/Private/Urgency/price_tag_legacy.json +0 -1
  283. package/Tests/Samples/Private/Urgency/rausch_alarm.json +0 -1
  284. package/Tests/Samples/Private/Urgency/rausch_alert.json +0 -1
  285. package/Tests/Samples/Private/Urgency/rausch_clock.json +0 -1
  286. package/Tests/Samples/Private/Urgency/rausch_diamond.json +0 -1
  287. package/Tests/Samples/Private/Urgency/rausch_money.json +0 -1
  288. package/Tests/Samples/Private/Urgency/rausch_piggy_bank.json +0 -1
  289. package/Tests/Samples/Private/Urgency/rausch_tag.json +0 -1
  290. package/Tests/Samples/Private/Urgency/red_envelope_animated.json +0 -1
  291. package/Tests/Samples/Private/Urgency/tag_animated.json +0 -1
  292. package/Tests/Samples/Private/Urgency/trophy_animated.json +0 -1
  293. package/Tests/Samples/Private/Urgency/wings_key_animated.json +0 -1
  294. package/Tests/Samples/Private/_flexible.json +0 -1
  295. package/Tests/Samples/Private/aircover.json +0 -1
  296. package/Tests/Samples/Private/belo_spin_rausch.json +0 -1
  297. package/Tests/Samples/Private/celebration.json +0 -2821
  298. package/Tests/Samples/Private/checkbox.json +0 -1
  299. package/Tests/Samples/Private/checkbox_small.json +0 -1
  300. package/Tests/Samples/Private/getting_your_trip_ready.json +0 -3540
  301. package/Tests/Samples/Private/gradient_afternoon.json +0 -1
  302. package/Tests/Samples/Private/gradient_brand.json +0 -1
  303. package/Tests/Samples/Private/gradient_evening.json +0 -1
  304. package/Tests/Samples/Private/gradient_morning.json +0 -1
  305. package/Tests/Samples/Private/issue_1467.json +0 -1
  306. package/Tests/Samples/Private/loading_dots.json +0 -1
  307. package/Tests/Samples/Private/loading_dots_small.json +0 -1
  308. package/Tests/Samples/Private/payment_loader.json +0 -1
  309. package/Tests/Samples/Private/radio_button.json +0 -1
  310. package/Tests/Samples/Private/selfie_intro.json +0 -1
  311. package/Tests/Samples/Private/stepper_add.json +0 -1
  312. package/Tests/Samples/Private/stepper_subtract.json +0 -1
  313. package/Tests/Samples/Private/switch.json +0 -1
  314. package/Tests/Samples/Private/thumb.json +0 -1
  315. package/Tests/Samples/Private/toggle_no.json +0 -1
  316. package/Tests/Samples/Private/toggle_yes.json +0 -1
  317. package/Tests/Samples/Private/user_error_black_and_white.json +0 -1
  318. package/Tests/Samples/Private/user_error_cut_off.json +0 -1
  319. package/Tests/Samples/Switch.json +0 -1
  320. package/Tests/Samples/Switch_States.json +0 -1
  321. package/Tests/Samples/TwitterHeart.json +0 -1
  322. package/Tests/Samples/TwitterHeartButton.json +0 -1
  323. package/Tests/Samples/TypeFace/A.json +0 -1
  324. package/Tests/Samples/TypeFace/Apostrophe.json +0 -1
  325. package/Tests/Samples/TypeFace/B.json +0 -1
  326. package/Tests/Samples/TypeFace/BlinkingCursor.json +0 -1
  327. package/Tests/Samples/TypeFace/C.json +0 -1
  328. package/Tests/Samples/TypeFace/Colon.json +0 -1
  329. package/Tests/Samples/TypeFace/Comma.json +0 -1
  330. package/Tests/Samples/TypeFace/D.json +0 -1
  331. package/Tests/Samples/TypeFace/E.json +0 -1
  332. package/Tests/Samples/TypeFace/F.json +0 -1
  333. package/Tests/Samples/TypeFace/G.json +0 -1
  334. package/Tests/Samples/TypeFace/H.json +0 -1
  335. package/Tests/Samples/TypeFace/I.json +0 -1
  336. package/Tests/Samples/TypeFace/J.json +0 -1
  337. package/Tests/Samples/TypeFace/K.json +0 -1
  338. package/Tests/Samples/TypeFace/L.json +0 -1
  339. package/Tests/Samples/TypeFace/M.json +0 -1
  340. package/Tests/Samples/TypeFace/N.json +0 -1
  341. package/Tests/Samples/TypeFace/O.json +0 -1
  342. package/Tests/Samples/TypeFace/P.json +0 -1
  343. package/Tests/Samples/TypeFace/Q.json +0 -1
  344. package/Tests/Samples/TypeFace/R.json +0 -1
  345. package/Tests/Samples/TypeFace/S.json +0 -1
  346. package/Tests/Samples/TypeFace/T.json +0 -1
  347. package/Tests/Samples/TypeFace/U.json +0 -1
  348. package/Tests/Samples/TypeFace/V.json +0 -1
  349. package/Tests/Samples/TypeFace/W.json +0 -1
  350. package/Tests/Samples/TypeFace/X.json +0 -1
  351. package/Tests/Samples/TypeFace/Y.json +0 -1
  352. package/Tests/Samples/TypeFace/Z.json +0 -1
  353. package/Tests/Samples/Watermelon.json +0 -1
  354. package/Tests/Samples/setValueTest.json +0 -1
  355. package/Tests/Samples/timeremap.json +0 -1
  356. package/Tests/Samples/vcTransition1.json +0 -1
  357. package/Tests/Samples/vcTransition2.json +0 -1
  358. package/script/lint/airbnb.swiftformat +0 -68
  359. package/script/lint/swiftlint.yml +0 -38
  360. package/script/test-carthage/Carthage/Build/.lottie-ios.version +0 -19
  361. package/script/test-carthage/Carthage/Build/Lottie.xcframework/Info.plist +0 -46
  362. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/BCSymbolMaps/BF971162-BE99-3507-B5B3-11947DC6B176.bcsymbolmap +0 -14778
  363. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Headers/Lottie-Swift.h +0 -673
  364. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Info.plist +0 -0
  365. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Lottie +0 -0
  366. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  367. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios.swiftmodule +0 -0
  368. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftdoc +0 -0
  369. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftmodule +0 -0
  370. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/module.modulemap +0 -4
  371. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/dSYMs/Lottie.framework.dSYM/Contents/Info.plist +0 -20
  372. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/dSYMs/Lottie.framework.dSYM/Contents/Resources/DWARF/Lottie +0 -0
  373. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Headers/Lottie-Swift.h +0 -1352
  374. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Info.plist +0 -0
  375. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Lottie +0 -0
  376. 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
  377. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/arm64.swiftsourceinfo +0 -0
  378. 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
  379. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/x86_64.swiftsourceinfo +0 -0
  380. 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
  381. 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
  382. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftdoc +0 -0
  383. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftmodule +0 -0
  384. 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
  385. 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
  386. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64.swiftdoc +0 -0
  387. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64.swiftmodule +0 -0
  388. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/module.modulemap +0 -4
  389. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/_CodeSignature/CodeResources +0 -256
  390. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/dSYMs/Lottie.framework.dSYM/Contents/Info.plist +0 -20
  391. package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/dSYMs/Lottie.framework.dSYM/Contents/Resources/DWARF/Lottie +0 -0
  392. package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  393. package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +0 -37
  394. package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
@@ -1,3540 +0,0 @@
1
- {
2
- "v" : "5.7.3",
3
- "fr" : 60,
4
- "ip" : 0,
5
- "op" : 90,
6
- "w" : 830,
7
- "h" : 1704,
8
- "nm" : "JS Complete Check Faster Gary Fast",
9
- "ddd" : 0,
10
- "assets" : [
11
- {
12
- "id" : "comp_0",
13
- "layers" : [
14
- {
15
- "ddd" : 0,
16
- "ind" : 1,
17
- "ty" : 0,
18
- "nm" : "JS Complete Check - Start Later 2",
19
- "refId" : "comp_1",
20
- "sr" : 1,
21
- "ks" : {
22
- "o" : {
23
- "a" : 0,
24
- "k" : 100,
25
- "ix" : 11
26
- },
27
- "r" : {
28
- "a" : 0,
29
- "k" : 0,
30
- "ix" : 10
31
- },
32
- "p" : {
33
- "a" : 0,
34
- "k" : [
35
- 415,
36
- 852,
37
- 0
38
- ],
39
- "ix" : 2
40
- },
41
- "a" : {
42
- "a" : 0,
43
- "k" : [
44
- 415,
45
- 852,
46
- 0
47
- ],
48
- "ix" : 1
49
- },
50
- "s" : {
51
- "a" : 0,
52
- "k" : [
53
- 100,
54
- 100,
55
- 100
56
- ],
57
- "ix" : 6
58
- }
59
- },
60
- "ao" : 0,
61
- "tm" : {
62
- "a" : 1,
63
- "k" : [
64
- {
65
- "i" : {
66
- "x" : [
67
- 0.833
68
- ],
69
- "y" : [
70
- 0.833
71
- ]
72
- },
73
- "o" : {
74
- "x" : [
75
- 0.167
76
- ],
77
- "y" : [
78
- 0.167
79
- ]
80
- },
81
- "t" : -103,
82
- "s" : [
83
- 0
84
- ]
85
- },
86
- {
87
- "i" : {
88
- "x" : [
89
- 0.833
90
- ],
91
- "y" : [
92
- 0.833
93
- ]
94
- },
95
- "o" : {
96
- "x" : [
97
- 0.167
98
- ],
99
- "y" : [
100
- 0.167
101
- ]
102
- },
103
- "t" : 25,
104
- "s" : [
105
- 2.133
106
- ]
107
- },
108
- {
109
- "i" : {
110
- "x" : [
111
- 0.833
112
- ],
113
- "y" : [
114
- 0.833
115
- ]
116
- },
117
- "o" : {
118
- "x" : [
119
- 0.167
120
- ],
121
- "y" : [
122
- 0.167
123
- ]
124
- },
125
- "t" : 69.609,
126
- "s" : [
127
- 3.033
128
- ]
129
- },
130
- {
131
- "i" : {
132
- "x" : [
133
- 0.833
134
- ],
135
- "y" : [
136
- 0.833
137
- ]
138
- },
139
- "o" : {
140
- "x" : [
141
- 0.167
142
- ],
143
- "y" : [
144
- 0.167
145
- ]
146
- },
147
- "t" : 82,
148
- "s" : [
149
- 3.283
150
- ]
151
- },
152
- {
153
- "t" : 173,
154
- "s" : [
155
- 4.6
156
- ]
157
- }
158
- ],
159
- "ix" : 2
160
- },
161
- "w" : 830,
162
- "h" : 1704,
163
- "ip" : 25,
164
- "op" : 120,
165
- "st" : -103,
166
- "bm" : 0
167
- },
168
- {
169
- "ddd" : 0,
170
- "ind" : 2,
171
- "ty" : 0,
172
- "nm" : "JS Complete Check - Start Later 3",
173
- "refId" : "comp_2",
174
- "sr" : 1,
175
- "ks" : {
176
- "o" : {
177
- "a" : 0,
178
- "k" : 100,
179
- "ix" : 11
180
- },
181
- "r" : {
182
- "a" : 0,
183
- "k" : 0,
184
- "ix" : 10
185
- },
186
- "p" : {
187
- "a" : 0,
188
- "k" : [
189
- 415,
190
- 852,
191
- 0
192
- ],
193
- "ix" : 2
194
- },
195
- "a" : {
196
- "a" : 0,
197
- "k" : [
198
- 415,
199
- 852,
200
- 0
201
- ],
202
- "ix" : 1
203
- },
204
- "s" : {
205
- "a" : 0,
206
- "k" : [
207
- 100,
208
- 100,
209
- 100
210
- ],
211
- "ix" : 6
212
- }
213
- },
214
- "ao" : 0,
215
- "tm" : {
216
- "a" : 1,
217
- "k" : [
218
- {
219
- "i" : {
220
- "x" : [
221
- 0.833
222
- ],
223
- "y" : [
224
- 0.833
225
- ]
226
- },
227
- "o" : {
228
- "x" : [
229
- 0.167
230
- ],
231
- "y" : [
232
- 0.167
233
- ]
234
- },
235
- "t" : -65,
236
- "s" : [
237
- 0
238
- ]
239
- },
240
- {
241
- "i" : {
242
- "x" : [
243
- 0.773
244
- ],
245
- "y" : [
246
- 0.693
247
- ]
248
- },
249
- "o" : {
250
- "x" : [
251
- 0.374
252
- ],
253
- "y" : [
254
- 0.28
255
- ]
256
- },
257
- "t" : 0,
258
- "s" : [
259
- 1.083
260
- ]
261
- },
262
- {
263
- "i" : {
264
- "x" : [
265
- 0.833
266
- ],
267
- "y" : [
268
- 0.833
269
- ]
270
- },
271
- "o" : {
272
- "x" : [
273
- 0.247
274
- ],
275
- "y" : [
276
- 0.218
277
- ]
278
- },
279
- "t" : 42,
280
- "s" : [
281
- 2.05
282
- ]
283
- },
284
- {
285
- "i" : {
286
- "x" : [
287
- 0.833
288
- ],
289
- "y" : [
290
- 0.833
291
- ]
292
- },
293
- "o" : {
294
- "x" : [
295
- 0.167
296
- ],
297
- "y" : [
298
- 0.167
299
- ]
300
- },
301
- "t" : 76,
302
- "s" : [
303
- 3.25
304
- ]
305
- },
306
- {
307
- "i" : {
308
- "x" : [
309
- 0.833
310
- ],
311
- "y" : [
312
- 0.833
313
- ]
314
- },
315
- "o" : {
316
- "x" : [
317
- 0.167
318
- ],
319
- "y" : [
320
- 0.167
321
- ]
322
- },
323
- "t" : 104,
324
- "s" : [
325
- 3.717
326
- ]
327
- },
328
- {
329
- "t" : 120,
330
- "s" : [
331
- 4.133
332
- ]
333
- }
334
- ],
335
- "ix" : 2
336
- },
337
- "w" : 830,
338
- "h" : 1704,
339
- "ip" : 0,
340
- "op" : 120,
341
- "st" : -65,
342
- "bm" : 0
343
- }
344
- ]
345
- },
346
- {
347
- "id" : "comp_1",
348
- "layers" : [
349
- {
350
- "ddd" : 0,
351
- "ind" : 1,
352
- "ty" : 3,
353
- "nm" : "Move Down",
354
- "sr" : 1,
355
- "ks" : {
356
- "o" : {
357
- "a" : 0,
358
- "k" : 0,
359
- "ix" : 11
360
- },
361
- "r" : {
362
- "a" : 0,
363
- "k" : 0,
364
- "ix" : 10
365
- },
366
- "p" : {
367
- "s" : true,
368
- "x" : {
369
- "a" : 0,
370
- "k" : 415,
371
- "ix" : 3
372
- },
373
- "y" : {
374
- "a" : 1,
375
- "k" : [
376
- {
377
- "i" : {
378
- "x" : [
379
- 0.12
380
- ],
381
- "y" : [
382
- 1
383
- ]
384
- },
385
- "o" : {
386
- "x" : [
387
- 0.66
388
- ],
389
- "y" : [
390
- 0
391
- ]
392
- },
393
- "t" : 37,
394
- "s" : [
395
- 723
396
- ]
397
- },
398
- {
399
- "t" : 177,
400
- "s" : [
401
- 852
402
- ]
403
- }
404
- ],
405
- "ix" : 4
406
- }
407
- },
408
- "a" : {
409
- "a" : 0,
410
- "k" : [
411
- 0,
412
- 0,
413
- 0
414
- ],
415
- "ix" : 1
416
- },
417
- "s" : {
418
- "a" : 0,
419
- "k" : [
420
- 100,
421
- 100,
422
- 100
423
- ],
424
- "ix" : 6
425
- }
426
- },
427
- "ao" : 0,
428
- "ip" : 60,
429
- "op" : 419,
430
- "st" : -1382,
431
- "bm" : 0
432
- },
433
- {
434
- "ddd" : 0,
435
- "ind" : 2,
436
- "ty" : 3,
437
- "nm" : "Null 92",
438
- "parent" : 1,
439
- "sr" : 1,
440
- "ks" : {
441
- "o" : {
442
- "a" : 0,
443
- "k" : 0,
444
- "ix" : 11
445
- },
446
- "r" : {
447
- "a" : 0,
448
- "k" : 0,
449
- "ix" : 10
450
- },
451
- "p" : {
452
- "a" : 0,
453
- "k" : [
454
- 0,
455
- 129,
456
- 0
457
- ],
458
- "ix" : 2
459
- },
460
- "a" : {
461
- "a" : 0,
462
- "k" : [
463
- 0,
464
- 0,
465
- 0
466
- ],
467
- "ix" : 1
468
- },
469
- "s" : {
470
- "a" : 0,
471
- "k" : [
472
- 100,
473
- 100,
474
- 100
475
- ],
476
- "ix" : 6
477
- }
478
- },
479
- "ao" : 0,
480
- "ip" : 60,
481
- "op" : 272,
482
- "st" : -4,
483
- "bm" : 0
484
- },
485
- {
486
- "ddd" : 0,
487
- "ind" : 3,
488
- "ty" : 3,
489
- "nm" : "Center",
490
- "parent" : 2,
491
- "sr" : 1,
492
- "ks" : {
493
- "o" : {
494
- "a" : 0,
495
- "k" : 0,
496
- "ix" : 11
497
- },
498
- "r" : {
499
- "a" : 0,
500
- "k" : 0,
501
- "ix" : 10
502
- },
503
- "p" : {
504
- "a" : 0,
505
- "k" : [
506
- 0,
507
- 0,
508
- 0
509
- ],
510
- "ix" : 2
511
- },
512
- "a" : {
513
- "a" : 0,
514
- "k" : [
515
- 0,
516
- 0,
517
- 0
518
- ],
519
- "ix" : 1
520
- },
521
- "s" : {
522
- "a" : 0,
523
- "k" : [
524
- 100,
525
- 100,
526
- 100
527
- ],
528
- "ix" : 6
529
- }
530
- },
531
- "ao" : 0,
532
- "ip" : 60,
533
- "op" : 272,
534
- "st" : -4,
535
- "bm" : 0
536
- },
537
- {
538
- "ddd" : 0,
539
- "ind" : 4,
540
- "ty" : 3,
541
- "nm" : "Check - Rotation",
542
- "parent" : 3,
543
- "sr" : 1,
544
- "ks" : {
545
- "o" : {
546
- "a" : 0,
547
- "k" : 0,
548
- "ix" : 11
549
- },
550
- "r" : {
551
- "a" : 1,
552
- "k" : [
553
- {
554
- "i" : {
555
- "x" : [
556
- 0.882
557
- ],
558
- "y" : [
559
- 0.499
560
- ]
561
- },
562
- "o" : {
563
- "x" : [
564
- 0.615
565
- ],
566
- "y" : [
567
- 0.248
568
- ]
569
- },
570
- "t" : -20,
571
- "s" : [
572
- 52.88
573
- ]
574
- },
575
- {
576
- "i" : {
577
- "x" : [
578
- 0.266
579
- ],
580
- "y" : [
581
- 1
582
- ]
583
- },
584
- "o" : {
585
- "x" : [
586
- 0.116
587
- ],
588
- "y" : [
589
- 0.342
590
- ]
591
- },
592
- "t" : 126,
593
- "s" : [
594
- 103.768
595
- ]
596
- },
597
- {
598
- "t" : 190,
599
- "s" : [
600
- 135.767
601
- ]
602
- }
603
- ],
604
- "ix" : 10
605
- },
606
- "p" : {
607
- "a" : 0,
608
- "k" : [
609
- 0,
610
- 0,
611
- 0
612
- ],
613
- "ix" : 2
614
- },
615
- "a" : {
616
- "a" : 0,
617
- "k" : [
618
- 0,
619
- 0,
620
- 0
621
- ],
622
- "ix" : 1
623
- },
624
- "s" : {
625
- "a" : 0,
626
- "k" : [
627
- 100,
628
- 100,
629
- 100
630
- ],
631
- "ix" : 6
632
- }
633
- },
634
- "ao" : 0,
635
- "ip" : 60,
636
- "op" : 272,
637
- "st" : -184,
638
- "bm" : 0
639
- },
640
- {
641
- "ddd" : 0,
642
- "ind" : 5,
643
- "ty" : 4,
644
- "nm" : "Check - Shape",
645
- "parent" : 2,
646
- "sr" : 1,
647
- "ks" : {
648
- "o" : {
649
- "a" : 1,
650
- "k" : [
651
- {
652
- "i" : {
653
- "x" : [
654
- 0.667
655
- ],
656
- "y" : [
657
- 1
658
- ]
659
- },
660
- "o" : {
661
- "x" : [
662
- 0.167
663
- ],
664
- "y" : [
665
- 0.167
666
- ]
667
- },
668
- "t" : 173,
669
- "s" : [
670
- 0
671
- ]
672
- },
673
- {
674
- "i" : {
675
- "x" : [
676
- 0.833
677
- ],
678
- "y" : [
679
- 1
680
- ]
681
- },
682
- "o" : {
683
- "x" : [
684
- 0.333
685
- ],
686
- "y" : [
687
- 0
688
- ]
689
- },
690
- "t" : 179,
691
- "s" : [
692
- 100
693
- ]
694
- },
695
- {
696
- "i" : {
697
- "x" : [
698
- 0.12
699
- ],
700
- "y" : [
701
- 1
702
- ]
703
- },
704
- "o" : {
705
- "x" : [
706
- 0.66
707
- ],
708
- "y" : [
709
- 0
710
- ]
711
- },
712
- "t" : 211,
713
- "s" : [
714
- 100
715
- ]
716
- },
717
- {
718
- "t" : 240,
719
- "s" : [
720
- 0
721
- ]
722
- }
723
- ],
724
- "ix" : 11
725
- },
726
- "r" : {
727
- "a" : 0,
728
- "k" : 0,
729
- "ix" : 10
730
- },
731
- "p" : {
732
- "a" : 0,
733
- "k" : [
734
- 0,
735
- 0,
736
- 0
737
- ],
738
- "ix" : 2
739
- },
740
- "a" : {
741
- "a" : 0,
742
- "k" : [
743
- 0,
744
- 0,
745
- 0
746
- ],
747
- "ix" : 1
748
- },
749
- "s" : {
750
- "a" : 0,
751
- "k" : [
752
- 7.8,
753
- 7.8,
754
- 100
755
- ],
756
- "ix" : 6
757
- }
758
- },
759
- "ao" : 0,
760
- "hasMask" : true,
761
- "masksProperties" : [
762
- {
763
- "inv" : false,
764
- "mode" : "a",
765
- "pt" : {
766
- "a" : 1,
767
- "k" : [
768
- {
769
- "i" : {
770
- "x" : 0.833,
771
- "y" : 0.833
772
- },
773
- "o" : {
774
- "x" : 0.167,
775
- "y" : 0.167
776
- },
777
- "t" : 177,
778
- "s" : [
779
- {
780
- "i" : [
781
- [
782
- 0,
783
- 0
784
- ],
785
- [
786
- 0,
787
- 0
788
- ],
789
- [
790
- 0,
791
- 0
792
- ],
793
- [
794
- 0,
795
- 0
796
- ]
797
- ],
798
- "o" : [
799
- [
800
- 0,
801
- 0
802
- ],
803
- [
804
- 0,
805
- 0
806
- ],
807
- [
808
- 0,
809
- 0
810
- ],
811
- [
812
- 0,
813
- 0
814
- ]
815
- ],
816
- "v" : [
817
- [
818
- -771.237,
819
- -335.882
820
- ],
821
- [
822
- -1035.729,
823
- -67.924
824
- ],
825
- [
826
- -674.086,
827
- 289.847
828
- ],
829
- [
830
- -409.593,
831
- 21.889
832
- ]
833
- ],
834
- "c" : true
835
- }
836
- ]
837
- },
838
- {
839
- "i" : {
840
- "x" : 0,
841
- "y" : 1
842
- },
843
- "o" : {
844
- "x" : 0.167,
845
- "y" : 0.167
846
- },
847
- "t" : 182,
848
- "s" : [
849
- {
850
- "i" : [
851
- [
852
- 0,
853
- 0
854
- ],
855
- [
856
- 0,
857
- 0
858
- ],
859
- [
860
- 0,
861
- 0
862
- ],
863
- [
864
- 0,
865
- 0
866
- ]
867
- ],
868
- "o" : [
869
- [
870
- 0,
871
- 0
872
- ],
873
- [
874
- 0,
875
- 0
876
- ],
877
- [
878
- 0,
879
- 0
880
- ],
881
- [
882
- 0,
883
- 0
884
- ]
885
- ],
886
- "v" : [
887
- [
888
- -509.57,
889
- -80.882
890
- ],
891
- [
892
- -774.063,
893
- 187.076
894
- ],
895
- [
896
- -359.086,
897
- 601.514
898
- ],
899
- [
900
- -94.593,
901
- 333.556
902
- ]
903
- ],
904
- "c" : true
905
- }
906
- ]
907
- },
908
- {
909
- "i" : {
910
- "x" : 0.833,
911
- "y" : 1
912
- },
913
- "o" : {
914
- "x" : 0.167,
915
- "y" : 0
916
- },
917
- "t" : 198,
918
- "s" : [
919
- {
920
- "i" : [
921
- [
922
- 0,
923
- 0
924
- ],
925
- [
926
- 0,
927
- 0
928
- ],
929
- [
930
- 0,
931
- 0
932
- ],
933
- [
934
- 0,
935
- 0
936
- ]
937
- ],
938
- "o" : [
939
- [
940
- 0,
941
- 0
942
- ],
943
- [
944
- 0,
945
- 0
946
- ],
947
- [
948
- 0,
949
- 0
950
- ],
951
- [
952
- 0,
953
- 0
954
- ]
955
- ],
956
- "v" : [
957
- [
958
- 146.43,
959
- -712.882
960
- ],
961
- [
962
- -774.063,
963
- 187.077
964
- ],
965
- [
966
- -359.086,
967
- 601.514
968
- ],
969
- [
970
- 561.407,
971
- -298.444
972
- ]
973
- ],
974
- "c" : true
975
- }
976
- ]
977
- },
978
- {
979
- "t" : 219,
980
- "s" : [
981
- {
982
- "i" : [
983
- [
984
- 0,
985
- 0
986
- ],
987
- [
988
- 0,
989
- 0
990
- ],
991
- [
992
- 0,
993
- 0
994
- ],
995
- [
996
- 0,
997
- 0
998
- ]
999
- ],
1000
- "o" : [
1001
- [
1002
- 0,
1003
- 0
1004
- ],
1005
- [
1006
- 0,
1007
- 0
1008
- ],
1009
- [
1010
- 0,
1011
- 0
1012
- ],
1013
- [
1014
- 0,
1015
- 0
1016
- ]
1017
- ],
1018
- "v" : [
1019
- [
1020
- 146.43,
1021
- -712.882
1022
- ],
1023
- [
1024
- -774.063,
1025
- 187.077
1026
- ],
1027
- [
1028
- -359.086,
1029
- 601.514
1030
- ],
1031
- [
1032
- 561.407,
1033
- -298.444
1034
- ]
1035
- ],
1036
- "c" : true
1037
- }
1038
- ]
1039
- }
1040
- ],
1041
- "ix" : 1
1042
- },
1043
- "o" : {
1044
- "a" : 0,
1045
- "k" : 100,
1046
- "ix" : 3
1047
- },
1048
- "x" : {
1049
- "a" : 0,
1050
- "k" : 0,
1051
- "ix" : 4
1052
- },
1053
- "nm" : "Mask 1"
1054
- }
1055
- ],
1056
- "shapes" : [
1057
- {
1058
- "ty" : "gr",
1059
- "it" : [
1060
- {
1061
- "ind" : 0,
1062
- "ty" : "sh",
1063
- "ix" : 1,
1064
- "ks" : {
1065
- "a" : 0,
1066
- "k" : {
1067
- "i" : [
1068
- [
1069
- 0,
1070
- 0
1071
- ],
1072
- [
1073
- 0,
1074
- 0
1075
- ],
1076
- [
1077
- 0,
1078
- 0
1079
- ]
1080
- ],
1081
- "o" : [
1082
- [
1083
- 0,
1084
- 0
1085
- ],
1086
- [
1087
- 0,
1088
- 0
1089
- ],
1090
- [
1091
- 0,
1092
- 0
1093
- ]
1094
- ],
1095
- "v" : [
1096
- [
1097
- -506,
1098
- -8
1099
- ],
1100
- [
1101
- -168,
1102
- 326
1103
- ],
1104
- [
1105
- 502,
1106
- -346
1107
- ]
1108
- ],
1109
- "c" : false
1110
- },
1111
- "ix" : 2
1112
- },
1113
- "nm" : "Path 1",
1114
- "mn" : "ADBE Vector Shape - Group",
1115
- "hd" : false
1116
- },
1117
- {
1118
- "ty" : "st",
1119
- "c" : {
1120
- "a" : 1,
1121
- "k" : [
1122
- {
1123
- "i" : {
1124
- "x" : [
1125
- 0.833
1126
- ],
1127
- "y" : [
1128
- 0.833
1129
- ]
1130
- },
1131
- "o" : {
1132
- "x" : [
1133
- 0.167
1134
- ],
1135
- "y" : [
1136
- 0.167
1137
- ]
1138
- },
1139
- "t" : 166,
1140
- "s" : [
1141
- 0.678431391716,
1142
- 0,
1143
- 0.537254929543,
1144
- 1
1145
- ]
1146
- },
1147
- {
1148
- "t" : 205,
1149
- "s" : [
1150
- 0.890196084976,
1151
- 0.109803922474,
1152
- 0.372549027205,
1153
- 1
1154
- ]
1155
- }
1156
- ],
1157
- "ix" : 3
1158
- },
1159
- "o" : {
1160
- "a" : 0,
1161
- "k" : 100,
1162
- "ix" : 4
1163
- },
1164
- "w" : {
1165
- "a" : 0,
1166
- "k" : 90,
1167
- "ix" : 5
1168
- },
1169
- "lc" : 1,
1170
- "lj" : 1,
1171
- "ml" : 4,
1172
- "bm" : 0,
1173
- "nm" : "Stroke 1",
1174
- "mn" : "ADBE Vector Graphic - Stroke",
1175
- "hd" : false
1176
- },
1177
- {
1178
- "ty" : "tr",
1179
- "p" : {
1180
- "a" : 0,
1181
- "k" : [
1182
- 0,
1183
- 0
1184
- ],
1185
- "ix" : 2
1186
- },
1187
- "a" : {
1188
- "a" : 0,
1189
- "k" : [
1190
- 0,
1191
- 0
1192
- ],
1193
- "ix" : 1
1194
- },
1195
- "s" : {
1196
- "a" : 0,
1197
- "k" : [
1198
- 100,
1199
- 100
1200
- ],
1201
- "ix" : 3
1202
- },
1203
- "r" : {
1204
- "a" : 0,
1205
- "k" : 0,
1206
- "ix" : 6
1207
- },
1208
- "o" : {
1209
- "a" : 0,
1210
- "k" : 100,
1211
- "ix" : 7
1212
- },
1213
- "sk" : {
1214
- "a" : 0,
1215
- "k" : 0,
1216
- "ix" : 4
1217
- },
1218
- "sa" : {
1219
- "a" : 0,
1220
- "k" : 0,
1221
- "ix" : 5
1222
- },
1223
- "nm" : "Transform"
1224
- }
1225
- ],
1226
- "nm" : "Shape 1",
1227
- "np" : 2,
1228
- "cix" : 2,
1229
- "bm" : 0,
1230
- "ix" : 1,
1231
- "mn" : "ADBE Vector Group",
1232
- "hd" : false
1233
- }
1234
- ],
1235
- "ip" : 177,
1236
- "op" : 272,
1237
- "st" : 141,
1238
- "bm" : 0
1239
- },
1240
- {
1241
- "ddd" : 0,
1242
- "ind" : 6,
1243
- "ty" : 4,
1244
- "nm" : "Check - Dot",
1245
- "parent" : 4,
1246
- "sr" : 1,
1247
- "ks" : {
1248
- "o" : {
1249
- "a" : 1,
1250
- "k" : [
1251
- {
1252
- "i" : {
1253
- "x" : [
1254
- 0.667
1255
- ],
1256
- "y" : [
1257
- 1
1258
- ]
1259
- },
1260
- "o" : {
1261
- "x" : [
1262
- 0.333
1263
- ],
1264
- "y" : [
1265
- 0
1266
- ]
1267
- },
1268
- "t" : 124,
1269
- "s" : [
1270
- 0
1271
- ]
1272
- },
1273
- {
1274
- "t" : 164,
1275
- "s" : [
1276
- 100
1277
- ]
1278
- }
1279
- ],
1280
- "ix" : 11
1281
- },
1282
- "r" : {
1283
- "a" : 0,
1284
- "k" : 0,
1285
- "ix" : 10
1286
- },
1287
- "p" : {
1288
- "s" : true,
1289
- "x" : {
1290
- "a" : 0,
1291
- "k" : 27.3,
1292
- "ix" : 3
1293
- },
1294
- "y" : {
1295
- "a" : 1,
1296
- "k" : [
1297
- {
1298
- "i" : {
1299
- "x" : [
1300
- 0.906
1301
- ],
1302
- "y" : [
1303
- 0.673
1304
- ]
1305
- },
1306
- "o" : {
1307
- "x" : [
1308
- 0.754
1309
- ],
1310
- "y" : [
1311
- 0
1312
- ]
1313
- },
1314
- "t" : 108,
1315
- "s" : [
1316
- 443.293
1317
- ]
1318
- },
1319
- {
1320
- "t" : 177,
1321
- "s" : [
1322
- 31.545
1323
- ]
1324
- }
1325
- ],
1326
- "ix" : 4
1327
- }
1328
- },
1329
- "a" : {
1330
- "a" : 0,
1331
- "k" : [
1332
- 0,
1333
- 0,
1334
- 0
1335
- ],
1336
- "ix" : 1
1337
- },
1338
- "s" : {
1339
- "a" : 1,
1340
- "k" : [
1341
- {
1342
- "i" : {
1343
- "x" : [
1344
- 0.45,
1345
- 0.45,
1346
- 0.45
1347
- ],
1348
- "y" : [
1349
- 1,
1350
- 1,
1351
- 1
1352
- ]
1353
- },
1354
- "o" : {
1355
- "x" : [
1356
- 0.55,
1357
- 0.55,
1358
- 0.55
1359
- ],
1360
- "y" : [
1361
- 0,
1362
- 0,
1363
- 0
1364
- ]
1365
- },
1366
- "t" : -90,
1367
- "s" : [
1368
- 0,
1369
- 0,
1370
- 100
1371
- ]
1372
- },
1373
- {
1374
- "t" : -56,
1375
- "s" : [
1376
- 100,
1377
- 100,
1378
- 100
1379
- ]
1380
- }
1381
- ],
1382
- "ix" : 6
1383
- }
1384
- },
1385
- "ao" : 0,
1386
- "shapes" : [
1387
- {
1388
- "ty" : "gr",
1389
- "it" : [
1390
- {
1391
- "d" : 1,
1392
- "ty" : "el",
1393
- "s" : {
1394
- "a" : 1,
1395
- "k" : [
1396
- {
1397
- "i" : {
1398
- "x" : [
1399
- 0.667,
1400
- 0.667
1401
- ],
1402
- "y" : [
1403
- 1,
1404
- 1
1405
- ]
1406
- },
1407
- "o" : {
1408
- "x" : [
1409
- 0.603,
1410
- 0.603
1411
- ],
1412
- "y" : [
1413
- 0,
1414
- 0
1415
- ]
1416
- },
1417
- "t" : -20,
1418
- "s" : [
1419
- 0,
1420
- 0
1421
- ]
1422
- },
1423
- {
1424
- "i" : {
1425
- "x" : [
1426
- 0.115,
1427
- 0.115
1428
- ],
1429
- "y" : [
1430
- 1,
1431
- 1
1432
- ]
1433
- },
1434
- "o" : {
1435
- "x" : [
1436
- 1,
1437
- 1
1438
- ],
1439
- "y" : [
1440
- 0,
1441
- 0
1442
- ]
1443
- },
1444
- "t" : 154,
1445
- "s" : [
1446
- 16.305,
1447
- 16.305
1448
- ]
1449
- },
1450
- {
1451
- "t" : 188,
1452
- "s" : [
1453
- 7.6,
1454
- 7.6
1455
- ]
1456
- }
1457
- ],
1458
- "ix" : 2
1459
- },
1460
- "p" : {
1461
- "a" : 0,
1462
- "k" : [
1463
- 0,
1464
- 0
1465
- ],
1466
- "ix" : 3
1467
- },
1468
- "nm" : "Ellipse Path 1",
1469
- "mn" : "ADBE Vector Shape - Ellipse",
1470
- "hd" : false
1471
- },
1472
- {
1473
- "ty" : "fl",
1474
- "c" : {
1475
- "a" : 1,
1476
- "k" : [
1477
- {
1478
- "i" : {
1479
- "x" : [
1480
- 0.667
1481
- ],
1482
- "y" : [
1483
- 1
1484
- ]
1485
- },
1486
- "o" : {
1487
- "x" : [
1488
- 0.333
1489
- ],
1490
- "y" : [
1491
- 0
1492
- ]
1493
- },
1494
- "t" : 44,
1495
- "s" : [
1496
- 0.890196084976,
1497
- 0.109803922474,
1498
- 0.372549027205,
1499
- 1
1500
- ]
1501
- },
1502
- {
1503
- "t" : 186,
1504
- "s" : [
1505
- 0.674509803922,
1506
- 0.003921568627,
1507
- 0.529411764706,
1508
- 1
1509
- ]
1510
- }
1511
- ],
1512
- "ix" : 4
1513
- },
1514
- "o" : {
1515
- "a" : 0,
1516
- "k" : 100,
1517
- "ix" : 5
1518
- },
1519
- "r" : 1,
1520
- "bm" : 0,
1521
- "nm" : "Fill 1",
1522
- "mn" : "ADBE Vector Graphic - Fill",
1523
- "hd" : false
1524
- },
1525
- {
1526
- "ty" : "tr",
1527
- "p" : {
1528
- "a" : 0,
1529
- "k" : [
1530
- 0,
1531
- 0
1532
- ],
1533
- "ix" : 2
1534
- },
1535
- "a" : {
1536
- "a" : 0,
1537
- "k" : [
1538
- 0,
1539
- 0
1540
- ],
1541
- "ix" : 1
1542
- },
1543
- "s" : {
1544
- "a" : 0,
1545
- "k" : [
1546
- 100,
1547
- 100
1548
- ],
1549
- "ix" : 3
1550
- },
1551
- "r" : {
1552
- "a" : 0,
1553
- "k" : 0,
1554
- "ix" : 6
1555
- },
1556
- "o" : {
1557
- "a" : 0,
1558
- "k" : 100,
1559
- "ix" : 7
1560
- },
1561
- "sk" : {
1562
- "a" : 0,
1563
- "k" : 0,
1564
- "ix" : 4
1565
- },
1566
- "sa" : {
1567
- "a" : 0,
1568
- "k" : 0,
1569
- "ix" : 5
1570
- },
1571
- "nm" : "Transform"
1572
- }
1573
- ],
1574
- "nm" : "Ellipse 1",
1575
- "np" : 3,
1576
- "cix" : 2,
1577
- "bm" : 0,
1578
- "ix" : 1,
1579
- "mn" : "ADBE Vector Group",
1580
- "hd" : false
1581
- }
1582
- ],
1583
- "ip" : -4,
1584
- "op" : 177,
1585
- "st" : -198,
1586
- "bm" : 0
1587
- }
1588
- ]
1589
- },
1590
- {
1591
- "id" : "comp_2",
1592
- "layers" : [
1593
- {
1594
- "ddd" : 0,
1595
- "ind" : 1,
1596
- "ty" : 3,
1597
- "nm" : "Move Down",
1598
- "sr" : 1,
1599
- "ks" : {
1600
- "o" : {
1601
- "a" : 0,
1602
- "k" : 0,
1603
- "ix" : 11
1604
- },
1605
- "r" : {
1606
- "a" : 0,
1607
- "k" : 0,
1608
- "ix" : 10
1609
- },
1610
- "p" : {
1611
- "s" : true,
1612
- "x" : {
1613
- "a" : 0,
1614
- "k" : 415,
1615
- "ix" : 3
1616
- },
1617
- "y" : {
1618
- "a" : 1,
1619
- "k" : [
1620
- {
1621
- "i" : {
1622
- "x" : [
1623
- 0.12
1624
- ],
1625
- "y" : [
1626
- 1
1627
- ]
1628
- },
1629
- "o" : {
1630
- "x" : [
1631
- 0.66
1632
- ],
1633
- "y" : [
1634
- 0
1635
- ]
1636
- },
1637
- "t" : 37,
1638
- "s" : [
1639
- 723
1640
- ]
1641
- },
1642
- {
1643
- "t" : 177,
1644
- "s" : [
1645
- 852
1646
- ]
1647
- }
1648
- ],
1649
- "ix" : 4
1650
- }
1651
- },
1652
- "a" : {
1653
- "a" : 0,
1654
- "k" : [
1655
- 0,
1656
- 0,
1657
- 0
1658
- ],
1659
- "ix" : 1
1660
- },
1661
- "s" : {
1662
- "a" : 0,
1663
- "k" : [
1664
- 100,
1665
- 100,
1666
- 100
1667
- ],
1668
- "ix" : 6
1669
- }
1670
- },
1671
- "ao" : 0,
1672
- "ip" : 60,
1673
- "op" : 419,
1674
- "st" : -1382,
1675
- "bm" : 0
1676
- },
1677
- {
1678
- "ddd" : 0,
1679
- "ind" : 2,
1680
- "ty" : 3,
1681
- "nm" : "Null 92",
1682
- "parent" : 1,
1683
- "sr" : 1,
1684
- "ks" : {
1685
- "o" : {
1686
- "a" : 0,
1687
- "k" : 0,
1688
- "ix" : 11
1689
- },
1690
- "r" : {
1691
- "a" : 0,
1692
- "k" : 0,
1693
- "ix" : 10
1694
- },
1695
- "p" : {
1696
- "a" : 0,
1697
- "k" : [
1698
- 0,
1699
- 129,
1700
- 0
1701
- ],
1702
- "ix" : 2
1703
- },
1704
- "a" : {
1705
- "a" : 0,
1706
- "k" : [
1707
- 0,
1708
- 0,
1709
- 0
1710
- ],
1711
- "ix" : 1
1712
- },
1713
- "s" : {
1714
- "a" : 0,
1715
- "k" : [
1716
- 100,
1717
- 100,
1718
- 100
1719
- ],
1720
- "ix" : 6
1721
- }
1722
- },
1723
- "ao" : 0,
1724
- "ip" : 60,
1725
- "op" : 272,
1726
- "st" : -4,
1727
- "bm" : 0
1728
- },
1729
- {
1730
- "ddd" : 0,
1731
- "ind" : 3,
1732
- "ty" : 3,
1733
- "nm" : "Center",
1734
- "parent" : 2,
1735
- "sr" : 1,
1736
- "ks" : {
1737
- "o" : {
1738
- "a" : 0,
1739
- "k" : 0,
1740
- "ix" : 11
1741
- },
1742
- "r" : {
1743
- "a" : 0,
1744
- "k" : 0,
1745
- "ix" : 10
1746
- },
1747
- "p" : {
1748
- "a" : 0,
1749
- "k" : [
1750
- 0,
1751
- 0,
1752
- 0
1753
- ],
1754
- "ix" : 2
1755
- },
1756
- "a" : {
1757
- "a" : 0,
1758
- "k" : [
1759
- 0,
1760
- 0,
1761
- 0
1762
- ],
1763
- "ix" : 1
1764
- },
1765
- "s" : {
1766
- "a" : 0,
1767
- "k" : [
1768
- 100,
1769
- 100,
1770
- 100
1771
- ],
1772
- "ix" : 6
1773
- }
1774
- },
1775
- "ao" : 0,
1776
- "ip" : 60,
1777
- "op" : 272,
1778
- "st" : -4,
1779
- "bm" : 0
1780
- },
1781
- {
1782
- "ddd" : 0,
1783
- "ind" : 4,
1784
- "ty" : 3,
1785
- "nm" : "Check - Rotation",
1786
- "parent" : 3,
1787
- "sr" : 1,
1788
- "ks" : {
1789
- "o" : {
1790
- "a" : 0,
1791
- "k" : 0,
1792
- "ix" : 11
1793
- },
1794
- "r" : {
1795
- "a" : 1,
1796
- "k" : [
1797
- {
1798
- "i" : {
1799
- "x" : [
1800
- 0.882
1801
- ],
1802
- "y" : [
1803
- 0.499
1804
- ]
1805
- },
1806
- "o" : {
1807
- "x" : [
1808
- 0.615
1809
- ],
1810
- "y" : [
1811
- 0.248
1812
- ]
1813
- },
1814
- "t" : -20,
1815
- "s" : [
1816
- 52.88
1817
- ]
1818
- },
1819
- {
1820
- "i" : {
1821
- "x" : [
1822
- 0.266
1823
- ],
1824
- "y" : [
1825
- 1
1826
- ]
1827
- },
1828
- "o" : {
1829
- "x" : [
1830
- 0.116
1831
- ],
1832
- "y" : [
1833
- 0.342
1834
- ]
1835
- },
1836
- "t" : 126,
1837
- "s" : [
1838
- 103.768
1839
- ]
1840
- },
1841
- {
1842
- "t" : 190,
1843
- "s" : [
1844
- 135.767
1845
- ]
1846
- }
1847
- ],
1848
- "ix" : 10
1849
- },
1850
- "p" : {
1851
- "a" : 0,
1852
- "k" : [
1853
- 0,
1854
- 0,
1855
- 0
1856
- ],
1857
- "ix" : 2
1858
- },
1859
- "a" : {
1860
- "a" : 0,
1861
- "k" : [
1862
- 0,
1863
- 0,
1864
- 0
1865
- ],
1866
- "ix" : 1
1867
- },
1868
- "s" : {
1869
- "a" : 0,
1870
- "k" : [
1871
- 100,
1872
- 100,
1873
- 100
1874
- ],
1875
- "ix" : 6
1876
- }
1877
- },
1878
- "ao" : 0,
1879
- "ip" : 60,
1880
- "op" : 272,
1881
- "st" : -184,
1882
- "bm" : 0
1883
- },
1884
- {
1885
- "ddd" : 0,
1886
- "ind" : 5,
1887
- "ty" : 3,
1888
- "nm" : "Ring - Rotation",
1889
- "parent" : 3,
1890
- "sr" : 1,
1891
- "ks" : {
1892
- "o" : {
1893
- "a" : 0,
1894
- "k" : 0,
1895
- "ix" : 11
1896
- },
1897
- "r" : {
1898
- "a" : 1,
1899
- "k" : [
1900
- {
1901
- "i" : {
1902
- "x" : [
1903
- 0.762
1904
- ],
1905
- "y" : [
1906
- 0.588
1907
- ]
1908
- },
1909
- "o" : {
1910
- "x" : [
1911
- 0.446
1912
- ],
1913
- "y" : [
1914
- 0.233
1915
- ]
1916
- },
1917
- "t" : -5.965,
1918
- "s" : [
1919
- 0
1920
- ]
1921
- },
1922
- {
1923
- "i" : {
1924
- "x" : [
1925
- 0.444
1926
- ],
1927
- "y" : [
1928
- 0.755
1929
- ]
1930
- },
1931
- "o" : {
1932
- "x" : [
1933
- 0.374
1934
- ],
1935
- "y" : [
1936
- 0
1937
- ]
1938
- },
1939
- "t" : 64,
1940
- "s" : [
1941
- 107.384
1942
- ]
1943
- },
1944
- {
1945
- "i" : {
1946
- "x" : [
1947
- 0.798
1948
- ],
1949
- "y" : [
1950
- 0.661
1951
- ]
1952
- },
1953
- "o" : {
1954
- "x" : [
1955
- 0.152
1956
- ],
1957
- "y" : [
1958
- 0.905
1959
- ]
1960
- },
1961
- "t" : 148.715,
1962
- "s" : [
1963
- 452.843
1964
- ]
1965
- },
1966
- {
1967
- "t" : 1230,
1968
- "s" : [
1969
- 778.401
1970
- ]
1971
- }
1972
- ],
1973
- "ix" : 10
1974
- },
1975
- "p" : {
1976
- "a" : 0,
1977
- "k" : [
1978
- 0,
1979
- 0,
1980
- 0
1981
- ],
1982
- "ix" : 2
1983
- },
1984
- "a" : {
1985
- "a" : 0,
1986
- "k" : [
1987
- 0,
1988
- 0,
1989
- 0
1990
- ],
1991
- "ix" : 1
1992
- },
1993
- "s" : {
1994
- "a" : 0,
1995
- "k" : [
1996
- 100,
1997
- 100,
1998
- 100
1999
- ],
2000
- "ix" : 6
2001
- }
2002
- },
2003
- "ao" : 0,
2004
- "ip" : -4,
2005
- "op" : 272,
2006
- "st" : -232,
2007
- "bm" : 0
2008
- },
2009
- {
2010
- "ddd" : 0,
2011
- "ind" : 6,
2012
- "ty" : 4,
2013
- "nm" : "Ring - Dot",
2014
- "parent" : 5,
2015
- "sr" : 1,
2016
- "ks" : {
2017
- "o" : {
2018
- "a" : 0,
2019
- "k" : 100,
2020
- "ix" : 11
2021
- },
2022
- "r" : {
2023
- "a" : 0,
2024
- "k" : 0,
2025
- "ix" : 10
2026
- },
2027
- "p" : {
2028
- "s" : true,
2029
- "x" : {
2030
- "a" : 0,
2031
- "k" : 0,
2032
- "ix" : 3
2033
- },
2034
- "y" : {
2035
- "a" : 1,
2036
- "k" : [
2037
- {
2038
- "i" : {
2039
- "x" : [
2040
- 0.431
2041
- ],
2042
- "y" : [
2043
- 0.859
2044
- ]
2045
- },
2046
- "o" : {
2047
- "x" : [
2048
- 0.88
2049
- ],
2050
- "y" : [
2051
- 0
2052
- ]
2053
- },
2054
- "t" : 60,
2055
- "s" : [
2056
- 393.575
2057
- ]
2058
- },
2059
- {
2060
- "t" : 120,
2061
- "s" : [
2062
- 76.349
2063
- ]
2064
- }
2065
- ],
2066
- "ix" : 4
2067
- }
2068
- },
2069
- "a" : {
2070
- "a" : 0,
2071
- "k" : [
2072
- 0,
2073
- 0,
2074
- 0
2075
- ],
2076
- "ix" : 1
2077
- },
2078
- "s" : {
2079
- "a" : 1,
2080
- "k" : [
2081
- {
2082
- "i" : {
2083
- "x" : [
2084
- 0.45,
2085
- 0.45,
2086
- 0.45
2087
- ],
2088
- "y" : [
2089
- 1,
2090
- 1,
2091
- 1
2092
- ]
2093
- },
2094
- "o" : {
2095
- "x" : [
2096
- 0.55,
2097
- 0.55,
2098
- 0.55
2099
- ],
2100
- "y" : [
2101
- 0,
2102
- 0,
2103
- 0
2104
- ]
2105
- },
2106
- "t" : -124,
2107
- "s" : [
2108
- 0,
2109
- 0,
2110
- 100
2111
- ]
2112
- },
2113
- {
2114
- "t" : -90,
2115
- "s" : [
2116
- 100,
2117
- 100,
2118
- 100
2119
- ]
2120
- }
2121
- ],
2122
- "ix" : 6
2123
- }
2124
- },
2125
- "ao" : 0,
2126
- "shapes" : [
2127
- {
2128
- "ty" : "gr",
2129
- "it" : [
2130
- {
2131
- "d" : 1,
2132
- "ty" : "el",
2133
- "s" : {
2134
- "a" : 1,
2135
- "k" : [
2136
- {
2137
- "i" : {
2138
- "x" : [
2139
- 0.348,
2140
- 0.348
2141
- ],
2142
- "y" : [
2143
- 1,
2144
- 1
2145
- ]
2146
- },
2147
- "o" : {
2148
- "x" : [
2149
- 0.333,
2150
- 0.333
2151
- ],
2152
- "y" : [
2153
- 0,
2154
- 0
2155
- ]
2156
- },
2157
- "t" : 60,
2158
- "s" : [
2159
- 0,
2160
- 0
2161
- ]
2162
- },
2163
- {
2164
- "i" : {
2165
- "x" : [
2166
- 0.348,
2167
- 0.348
2168
- ],
2169
- "y" : [
2170
- 1,
2171
- 1
2172
- ]
2173
- },
2174
- "o" : {
2175
- "x" : [
2176
- 0.628,
2177
- 0.628
2178
- ],
2179
- "y" : [
2180
- 0,
2181
- 0
2182
- ]
2183
- },
2184
- "t" : 81.957,
2185
- "s" : [
2186
- 28.007,
2187
- 28.007
2188
- ]
2189
- },
2190
- {
2191
- "i" : {
2192
- "x" : [
2193
- 0.45,
2194
- 0.45
2195
- ],
2196
- "y" : [
2197
- 1,
2198
- 1
2199
- ]
2200
- },
2201
- "o" : {
2202
- "x" : [
2203
- 0.628,
2204
- 0.628
2205
- ],
2206
- "y" : [
2207
- 0,
2208
- 0
2209
- ]
2210
- },
2211
- "t" : 85.871,
2212
- "s" : [
2213
- 28.007,
2214
- 28.007
2215
- ]
2216
- },
2217
- {
2218
- "t" : 123.158203125,
2219
- "s" : [
2220
- 7.4,
2221
- 7.4
2222
- ]
2223
- }
2224
- ],
2225
- "ix" : 2
2226
- },
2227
- "p" : {
2228
- "a" : 0,
2229
- "k" : [
2230
- 0,
2231
- 0
2232
- ],
2233
- "ix" : 3
2234
- },
2235
- "nm" : "Ellipse Path 1",
2236
- "mn" : "ADBE Vector Shape - Ellipse",
2237
- "hd" : false
2238
- },
2239
- {
2240
- "ty" : "fl",
2241
- "c" : {
2242
- "a" : 1,
2243
- "k" : [
2244
- {
2245
- "i" : {
2246
- "x" : [
2247
- 0.667
2248
- ],
2249
- "y" : [
2250
- 1
2251
- ]
2252
- },
2253
- "o" : {
2254
- "x" : [
2255
- 0.333
2256
- ],
2257
- "y" : [
2258
- 0
2259
- ]
2260
- },
2261
- "t" : 12.428,
2262
- "s" : [
2263
- 0.674509803922,
2264
- 0.003921568627,
2265
- 0.529411764706,
2266
- 1
2267
- ]
2268
- },
2269
- {
2270
- "t" : 124,
2271
- "s" : [
2272
- 0.890196084976,
2273
- 0.109803922474,
2274
- 0.372549027205,
2275
- 1
2276
- ]
2277
- }
2278
- ],
2279
- "ix" : 4
2280
- },
2281
- "o" : {
2282
- "a" : 0,
2283
- "k" : 100,
2284
- "ix" : 5
2285
- },
2286
- "r" : 1,
2287
- "bm" : 0,
2288
- "nm" : "Fill 1",
2289
- "mn" : "ADBE Vector Graphic - Fill",
2290
- "hd" : false
2291
- },
2292
- {
2293
- "ty" : "tr",
2294
- "p" : {
2295
- "a" : 0,
2296
- "k" : [
2297
- 0,
2298
- 0
2299
- ],
2300
- "ix" : 2
2301
- },
2302
- "a" : {
2303
- "a" : 0,
2304
- "k" : [
2305
- 0,
2306
- 0
2307
- ],
2308
- "ix" : 1
2309
- },
2310
- "s" : {
2311
- "a" : 0,
2312
- "k" : [
2313
- 100,
2314
- 100
2315
- ],
2316
- "ix" : 3
2317
- },
2318
- "r" : {
2319
- "a" : 0,
2320
- "k" : 0,
2321
- "ix" : 6
2322
- },
2323
- "o" : {
2324
- "a" : 0,
2325
- "k" : 100,
2326
- "ix" : 7
2327
- },
2328
- "sk" : {
2329
- "a" : 0,
2330
- "k" : 0,
2331
- "ix" : 4
2332
- },
2333
- "sa" : {
2334
- "a" : 0,
2335
- "k" : 0,
2336
- "ix" : 5
2337
- },
2338
- "nm" : "Transform"
2339
- }
2340
- ],
2341
- "nm" : "Ellipse 1",
2342
- "np" : 3,
2343
- "cix" : 2,
2344
- "bm" : 0,
2345
- "ix" : 1,
2346
- "mn" : "ADBE Vector Group",
2347
- "hd" : false
2348
- }
2349
- ],
2350
- "ip" : -4,
2351
- "op" : 118,
2352
- "st" : -232,
2353
- "bm" : 0
2354
- },
2355
- {
2356
- "ddd" : 0,
2357
- "ind" : 7,
2358
- "ty" : 4,
2359
- "nm" : "Ring",
2360
- "parent" : 3,
2361
- "sr" : 1,
2362
- "ks" : {
2363
- "o" : {
2364
- "a" : 1,
2365
- "k" : [
2366
- {
2367
- "i" : {
2368
- "x" : [
2369
- 0.12
2370
- ],
2371
- "y" : [
2372
- 1
2373
- ]
2374
- },
2375
- "o" : {
2376
- "x" : [
2377
- 0.66
2378
- ],
2379
- "y" : [
2380
- 0
2381
- ]
2382
- },
2383
- "t" : 220,
2384
- "s" : [
2385
- 100
2386
- ]
2387
- },
2388
- {
2389
- "t" : 249,
2390
- "s" : [
2391
- 0
2392
- ]
2393
- }
2394
- ],
2395
- "ix" : 11
2396
- },
2397
- "r" : {
2398
- "a" : 1,
2399
- "k" : [
2400
- {
2401
- "i" : {
2402
- "x" : [
2403
- 0.12
2404
- ],
2405
- "y" : [
2406
- 1
2407
- ]
2408
- },
2409
- "o" : {
2410
- "x" : [
2411
- 0.167
2412
- ],
2413
- "y" : [
2414
- 0.167
2415
- ]
2416
- },
2417
- "t" : 114.143,
2418
- "s" : [
2419
- 0
2420
- ]
2421
- },
2422
- {
2423
- "t" : 180,
2424
- "s" : [
2425
- 161.831
2426
- ]
2427
- }
2428
- ],
2429
- "ix" : 10
2430
- },
2431
- "p" : {
2432
- "s" : true,
2433
- "x" : {
2434
- "a" : 0,
2435
- "k" : -0.125,
2436
- "ix" : 3
2437
- },
2438
- "y" : {
2439
- "a" : 0,
2440
- "k" : 0,
2441
- "ix" : 4
2442
- }
2443
- },
2444
- "a" : {
2445
- "a" : 0,
2446
- "k" : [
2447
- 0,
2448
- 0,
2449
- 0
2450
- ],
2451
- "ix" : 1
2452
- },
2453
- "s" : {
2454
- "a" : 1,
2455
- "k" : [
2456
- {
2457
- "i" : {
2458
- "x" : [
2459
- 0.155,
2460
- 0.155,
2461
- 0.155
2462
- ],
2463
- "y" : [
2464
- 0.973,
2465
- 0.973,
2466
- -1.726
2467
- ]
2468
- },
2469
- "o" : {
2470
- "x" : [
2471
- 0.147,
2472
- 0.147,
2473
- 0.189
2474
- ],
2475
- "y" : [
2476
- 0.166,
2477
- 0.166,
2478
- 12.598
2479
- ]
2480
- },
2481
- "t" : 85.072,
2482
- "s" : [
2483
- 0,
2484
- 0,
2485
- 100
2486
- ]
2487
- },
2488
- {
2489
- "i" : {
2490
- "x" : [
2491
- 0.638,
2492
- 0.638,
2493
- 0.638
2494
- ],
2495
- "y" : [
2496
- 1,
2497
- 1,
2498
- 1
2499
- ]
2500
- },
2501
- "o" : {
2502
- "x" : [
2503
- 0.306,
2504
- 0.306,
2505
- 0.306
2506
- ],
2507
- "y" : [
2508
- 0.651,
2509
- 0.651,
2510
- 0.496
2511
- ]
2512
- },
2513
- "t" : 110.17,
2514
- "s" : [
2515
- 7.741,
2516
- 7.741,
2517
- 100
2518
- ]
2519
- },
2520
- {
2521
- "t" : 122.787109375,
2522
- "s" : [
2523
- 7.8,
2524
- 7.8,
2525
- 100
2526
- ]
2527
- }
2528
- ],
2529
- "ix" : 6
2530
- }
2531
- },
2532
- "ao" : 0,
2533
- "shapes" : [
2534
- {
2535
- "ty" : "gr",
2536
- "it" : [
2537
- {
2538
- "d" : 1,
2539
- "ty" : "el",
2540
- "s" : {
2541
- "a" : 0,
2542
- "k" : [
2543
- 2016,
2544
- 2016
2545
- ],
2546
- "ix" : 2
2547
- },
2548
- "p" : {
2549
- "a" : 0,
2550
- "k" : [
2551
- 0,
2552
- 0
2553
- ],
2554
- "ix" : 3
2555
- },
2556
- "nm" : "Ellipse Path 1",
2557
- "mn" : "ADBE Vector Shape - Ellipse",
2558
- "hd" : false
2559
- },
2560
- {
2561
- "ty" : "gs",
2562
- "o" : {
2563
- "a" : 0,
2564
- "k" : 100,
2565
- "ix" : 9
2566
- },
2567
- "w" : {
2568
- "a" : 0,
2569
- "k" : 75,
2570
- "ix" : 10
2571
- },
2572
- "g" : {
2573
- "p" : 7,
2574
- "k" : {
2575
- "a" : 1,
2576
- "k" : [
2577
- {
2578
- "i" : {
2579
- "x" : 0.833,
2580
- "y" : 0.833
2581
- },
2582
- "o" : {
2583
- "x" : 0.167,
2584
- "y" : 0.167
2585
- },
2586
- "t" : 100,
2587
- "s" : [
2588
- 0,
2589
- 0.251,
2590
- 0.016,
2591
- 0.647,
2592
- 0.282,
2593
- 0.437,
2594
- 0.008,
2595
- 0.606,
2596
- 0.565,
2597
- 0.624,
2598
- 0,
2599
- 0.565,
2600
- 0.782,
2601
- 0.72,
2602
- 0,
2603
- 0.518,
2604
- 0.998,
2605
- 0.816,
2606
- 0,
2607
- 0.471,
2608
- 0.999,
2609
- 0.816,
2610
- 0,
2611
- 0.471,
2612
- 1,
2613
- 0.816,
2614
- 0,
2615
- 0.471
2616
- ]
2617
- },
2618
- {
2619
- "t" : 114.142578125,
2620
- "s" : [
2621
- 0,
2622
- 0.89,
2623
- 0.11,
2624
- 0.373,
2625
- 0,
2626
- 0.89,
2627
- 0.11,
2628
- 0.373,
2629
- 0,
2630
- 0.89,
2631
- 0.11,
2632
- 0.373,
2633
- 0.282,
2634
- 0.89,
2635
- 0.11,
2636
- 0.373,
2637
- 0.565,
2638
- 0.89,
2639
- 0.11,
2640
- 0.373,
2641
- 0.782,
2642
- 0.89,
2643
- 0.11,
2644
- 0.373,
2645
- 1,
2646
- 0.89,
2647
- 0.11,
2648
- 0.373
2649
- ]
2650
- }
2651
- ],
2652
- "ix" : 8
2653
- }
2654
- },
2655
- "s" : {
2656
- "a" : 0,
2657
- "k" : [
2658
- 35.669,
2659
- 993.415
2660
- ],
2661
- "ix" : 4
2662
- },
2663
- "e" : {
2664
- "a" : 0,
2665
- "k" : [
2666
- -17.803,
2667
- -1034.77
2668
- ],
2669
- "ix" : 5
2670
- },
2671
- "t" : 2,
2672
- "h" : {
2673
- "a" : 0,
2674
- "k" : 0,
2675
- "ix" : 6
2676
- },
2677
- "a" : {
2678
- "a" : 0,
2679
- "k" : 0,
2680
- "ix" : 7
2681
- },
2682
- "lc" : 2,
2683
- "lj" : 1,
2684
- "ml" : 4,
2685
- "ml2" : {
2686
- "a" : 0,
2687
- "k" : 4,
2688
- "ix" : 13
2689
- },
2690
- "bm" : 0,
2691
- "nm" : "Gradient Stroke 1",
2692
- "mn" : "ADBE Vector Graphic - G-Stroke",
2693
- "hd" : false
2694
- },
2695
- {
2696
- "ty" : "tr",
2697
- "p" : {
2698
- "a" : 0,
2699
- "k" : [
2700
- 0,
2701
- 0
2702
- ],
2703
- "ix" : 2
2704
- },
2705
- "a" : {
2706
- "a" : 0,
2707
- "k" : [
2708
- 0,
2709
- 0
2710
- ],
2711
- "ix" : 1
2712
- },
2713
- "s" : {
2714
- "a" : 0,
2715
- "k" : [
2716
- 100,
2717
- 100
2718
- ],
2719
- "ix" : 3
2720
- },
2721
- "r" : {
2722
- "a" : 0,
2723
- "k" : 145,
2724
- "ix" : 6
2725
- },
2726
- "o" : {
2727
- "a" : 0,
2728
- "k" : 100,
2729
- "ix" : 7
2730
- },
2731
- "sk" : {
2732
- "a" : 0,
2733
- "k" : 0,
2734
- "ix" : 4
2735
- },
2736
- "sa" : {
2737
- "a" : 0,
2738
- "k" : 0,
2739
- "ix" : 5
2740
- },
2741
- "nm" : "Transform"
2742
- }
2743
- ],
2744
- "nm" : "Group 1",
2745
- "np" : 3,
2746
- "cix" : 2,
2747
- "bm" : 0,
2748
- "ix" : 1,
2749
- "mn" : "ADBE Vector Group",
2750
- "hd" : false
2751
- },
2752
- {
2753
- "ty" : "tm",
2754
- "s" : {
2755
- "a" : 0,
2756
- "k" : 0,
2757
- "ix" : 1
2758
- },
2759
- "e" : {
2760
- "a" : 1,
2761
- "k" : [
2762
- {
2763
- "i" : {
2764
- "x" : [
2765
- 0.574
2766
- ],
2767
- "y" : [
2768
- 0.83
2769
- ]
2770
- },
2771
- "o" : {
2772
- "x" : [
2773
- 0.171
2774
- ],
2775
- "y" : [
2776
- 0.131
2777
- ]
2778
- },
2779
- "t" : 114.143,
2780
- "s" : [
2781
- 0
2782
- ]
2783
- },
2784
- {
2785
- "i" : {
2786
- "x" : [
2787
- 0.672
2788
- ],
2789
- "y" : [
2790
- 0.849
2791
- ]
2792
- },
2793
- "o" : {
2794
- "x" : [
2795
- 0.403
2796
- ],
2797
- "y" : [
2798
- 0.64
2799
- ]
2800
- },
2801
- "t" : 150,
2802
- "s" : [
2803
- 84.086
2804
- ]
2805
- },
2806
- {
2807
- "t" : 162,
2808
- "s" : [
2809
- 100
2810
- ]
2811
- }
2812
- ],
2813
- "ix" : 2
2814
- },
2815
- "o" : {
2816
- "a" : 0,
2817
- "k" : 0,
2818
- "ix" : 3
2819
- },
2820
- "m" : 1,
2821
- "ix" : 2,
2822
- "nm" : "Trim Paths 1",
2823
- "mn" : "ADBE Vector Filter - Trim",
2824
- "hd" : false
2825
- }
2826
- ],
2827
- "ip" : 116,
2828
- "op" : 272,
2829
- "st" : 96,
2830
- "bm" : 0
2831
- },
2832
- {
2833
- "ddd" : 0,
2834
- "ind" : 8,
2835
- "ty" : 3,
2836
- "nm" : "Fill - Rotation",
2837
- "parent" : 3,
2838
- "sr" : 1,
2839
- "ks" : {
2840
- "o" : {
2841
- "a" : 0,
2842
- "k" : 0,
2843
- "ix" : 11
2844
- },
2845
- "r" : {
2846
- "a" : 1,
2847
- "k" : [
2848
- {
2849
- "i" : {
2850
- "x" : [
2851
- 0.829
2852
- ],
2853
- "y" : [
2854
- 0.721
2855
- ]
2856
- },
2857
- "o" : {
2858
- "x" : [
2859
- 0.626
2860
- ],
2861
- "y" : [
2862
- 0.43
2863
- ]
2864
- },
2865
- "t" : -4,
2866
- "s" : [
2867
- 172.831
2868
- ]
2869
- },
2870
- {
2871
- "i" : {
2872
- "x" : [
2873
- 0.453
2874
- ],
2875
- "y" : [
2876
- 0.843
2877
- ]
2878
- },
2879
- "o" : {
2880
- "x" : [
2881
- 0.274
2882
- ],
2883
- "y" : [
2884
- 0.404
2885
- ]
2886
- },
2887
- "t" : 90,
2888
- "s" : [
2889
- 365.073
2890
- ]
2891
- },
2892
- {
2893
- "i" : {
2894
- "x" : [
2895
- 0.779
2896
- ],
2897
- "y" : [
2898
- 0.699
2899
- ]
2900
- },
2901
- "o" : {
2902
- "x" : [
2903
- 0.242
2904
- ],
2905
- "y" : [
2906
- 0.208
2907
- ]
2908
- },
2909
- "t" : 142,
2910
- "s" : [
2911
- 483.134
2912
- ]
2913
- },
2914
- {
2915
- "t" : 1292,
2916
- "s" : [
2917
- 1358.251
2918
- ]
2919
- }
2920
- ],
2921
- "ix" : 10
2922
- },
2923
- "p" : {
2924
- "a" : 0,
2925
- "k" : [
2926
- 0,
2927
- 0,
2928
- 0
2929
- ],
2930
- "ix" : 2
2931
- },
2932
- "a" : {
2933
- "a" : 0,
2934
- "k" : [
2935
- 0,
2936
- 0,
2937
- 0
2938
- ],
2939
- "ix" : 1
2940
- },
2941
- "s" : {
2942
- "a" : 0,
2943
- "k" : [
2944
- 100,
2945
- 100,
2946
- 100
2947
- ],
2948
- "ix" : 6
2949
- }
2950
- },
2951
- "ao" : 0,
2952
- "ip" : -4,
2953
- "op" : 272,
2954
- "st" : -224,
2955
- "bm" : 0
2956
- },
2957
- {
2958
- "ddd" : 0,
2959
- "ind" : 9,
2960
- "ty" : 4,
2961
- "nm" : "Fill - Dot",
2962
- "parent" : 8,
2963
- "sr" : 1,
2964
- "ks" : {
2965
- "o" : {
2966
- "a" : 1,
2967
- "k" : [
2968
- {
2969
- "i" : {
2970
- "x" : [
2971
- 0.12
2972
- ],
2973
- "y" : [
2974
- 1
2975
- ]
2976
- },
2977
- "o" : {
2978
- "x" : [
2979
- 0.66
2980
- ],
2981
- "y" : [
2982
- 0
2983
- ]
2984
- },
2985
- "t" : 220,
2986
- "s" : [
2987
- 100
2988
- ]
2989
- },
2990
- {
2991
- "t" : 249,
2992
- "s" : [
2993
- 0
2994
- ]
2995
- }
2996
- ],
2997
- "ix" : 11
2998
- },
2999
- "r" : {
3000
- "a" : 0,
3001
- "k" : 0,
3002
- "ix" : 10
3003
- },
3004
- "p" : {
3005
- "s" : true,
3006
- "x" : {
3007
- "a" : 1,
3008
- "k" : [
3009
- {
3010
- "i" : {
3011
- "x" : [
3012
- 0.34
3013
- ],
3014
- "y" : [
3015
- 1
3016
- ]
3017
- },
3018
- "o" : {
3019
- "x" : [
3020
- 0.66
3021
- ],
3022
- "y" : [
3023
- 0
3024
- ]
3025
- },
3026
- "t" : 62,
3027
- "s" : [
3028
- -20
3029
- ]
3030
- },
3031
- {
3032
- "t" : 144,
3033
- "s" : [
3034
- 0
3035
- ]
3036
- }
3037
- ],
3038
- "ix" : 3
3039
- },
3040
- "y" : {
3041
- "a" : 1,
3042
- "k" : [
3043
- {
3044
- "i" : {
3045
- "x" : [
3046
- 0.34
3047
- ],
3048
- "y" : [
3049
- 1
3050
- ]
3051
- },
3052
- "o" : {
3053
- "x" : [
3054
- 0.66
3055
- ],
3056
- "y" : [
3057
- 0
3058
- ]
3059
- },
3060
- "t" : 62,
3061
- "s" : [
3062
- 443.349
3063
- ]
3064
- },
3065
- {
3066
- "t" : 144,
3067
- "s" : [
3068
- 0
3069
- ]
3070
- }
3071
- ],
3072
- "ix" : 4
3073
- }
3074
- },
3075
- "a" : {
3076
- "a" : 0,
3077
- "k" : [
3078
- 0,
3079
- 0,
3080
- 0
3081
- ],
3082
- "ix" : 1
3083
- },
3084
- "s" : {
3085
- "a" : 1,
3086
- "k" : [
3087
- {
3088
- "i" : {
3089
- "x" : [
3090
- 0.45,
3091
- 0.45,
3092
- 0.45
3093
- ],
3094
- "y" : [
3095
- 1,
3096
- 1,
3097
- 1
3098
- ]
3099
- },
3100
- "o" : {
3101
- "x" : [
3102
- 0.55,
3103
- 0.55,
3104
- 0.55
3105
- ],
3106
- "y" : [
3107
- 0,
3108
- 0,
3109
- 0
3110
- ]
3111
- },
3112
- "t" : -116,
3113
- "s" : [
3114
- 0,
3115
- 0,
3116
- 100
3117
- ]
3118
- },
3119
- {
3120
- "t" : -82,
3121
- "s" : [
3122
- 100,
3123
- 100,
3124
- 100
3125
- ]
3126
- }
3127
- ],
3128
- "ix" : 6
3129
- }
3130
- },
3131
- "ao" : 0,
3132
- "shapes" : [
3133
- {
3134
- "ty" : "gr",
3135
- "it" : [
3136
- {
3137
- "d" : 1,
3138
- "ty" : "el",
3139
- "s" : {
3140
- "a" : 1,
3141
- "k" : [
3142
- {
3143
- "i" : {
3144
- "x" : [
3145
- 0.667,
3146
- 0.667
3147
- ],
3148
- "y" : [
3149
- 1.553,
3150
- 1.553
3151
- ]
3152
- },
3153
- "o" : {
3154
- "x" : [
3155
- 0.333,
3156
- 0.333
3157
- ],
3158
- "y" : [
3159
- 0,
3160
- 0
3161
- ]
3162
- },
3163
- "t" : -28,
3164
- "s" : [
3165
- 10,
3166
- 10
3167
- ]
3168
- },
3169
- {
3170
- "i" : {
3171
- "x" : [
3172
- 0.667,
3173
- 0.667
3174
- ],
3175
- "y" : [
3176
- 0.933,
3177
- 0.933
3178
- ]
3179
- },
3180
- "o" : {
3181
- "x" : [
3182
- 0.333,
3183
- 0.333
3184
- ],
3185
- "y" : [
3186
- 0.085,
3187
- 0.085
3188
- ]
3189
- },
3190
- "t" : 60,
3191
- "s" : [
3192
- 0,
3193
- 0
3194
- ]
3195
- },
3196
- {
3197
- "i" : {
3198
- "x" : [
3199
- 0.667,
3200
- 0.667
3201
- ],
3202
- "y" : [
3203
- 1,
3204
- 1
3205
- ]
3206
- },
3207
- "o" : {
3208
- "x" : [
3209
- 0.333,
3210
- 0.333
3211
- ],
3212
- "y" : [
3213
- 0.391,
3214
- 0.391
3215
- ]
3216
- },
3217
- "t" : 81.533,
3218
- "s" : [
3219
- 15.926,
3220
- 15.926
3221
- ]
3222
- },
3223
- {
3224
- "i" : {
3225
- "x" : [
3226
- 0.34,
3227
- 0.34
3228
- ],
3229
- "y" : [
3230
- 1,
3231
- 1
3232
- ]
3233
- },
3234
- "o" : {
3235
- "x" : [
3236
- 0.88,
3237
- 0.88
3238
- ],
3239
- "y" : [
3240
- 0,
3241
- 0
3242
- ]
3243
- },
3244
- "t" : 98,
3245
- "s" : [
3246
- 18,
3247
- 18
3248
- ]
3249
- },
3250
- {
3251
- "t" : 164,
3252
- "s" : [
3253
- 134,
3254
- 134
3255
- ]
3256
- }
3257
- ],
3258
- "ix" : 2
3259
- },
3260
- "p" : {
3261
- "a" : 0,
3262
- "k" : [
3263
- 0,
3264
- 0
3265
- ],
3266
- "ix" : 3
3267
- },
3268
- "nm" : "Ellipse Path 1",
3269
- "mn" : "ADBE Vector Shape - Ellipse",
3270
- "hd" : false
3271
- },
3272
- {
3273
- "ty" : "fl",
3274
- "c" : {
3275
- "a" : 1,
3276
- "k" : [
3277
- {
3278
- "i" : {
3279
- "x" : [
3280
- 0.667
3281
- ],
3282
- "y" : [
3283
- 1
3284
- ]
3285
- },
3286
- "o" : {
3287
- "x" : [
3288
- 0.333
3289
- ],
3290
- "y" : [
3291
- 0
3292
- ]
3293
- },
3294
- "t" : -28,
3295
- "s" : [
3296
- 0.890196084976,
3297
- 0.109803922474,
3298
- 0.372549027205,
3299
- 1
3300
- ]
3301
- },
3302
- {
3303
- "i" : {
3304
- "x" : [
3305
- 0.34
3306
- ],
3307
- "y" : [
3308
- 1
3309
- ]
3310
- },
3311
- "o" : {
3312
- "x" : [
3313
- 0.88
3314
- ],
3315
- "y" : [
3316
- 0
3317
- ]
3318
- },
3319
- "t" : 86,
3320
- "s" : [
3321
- 0.674509803922,
3322
- 0.003921568627,
3323
- 0.529411764706,
3324
- 1
3325
- ]
3326
- },
3327
- {
3328
- "t" : 164,
3329
- "s" : [
3330
- 0.976470589638,
3331
- 0.823529422283,
3332
- 0.874509811401,
3333
- 1
3334
- ]
3335
- }
3336
- ],
3337
- "ix" : 4
3338
- },
3339
- "o" : {
3340
- "a" : 0,
3341
- "k" : 100,
3342
- "ix" : 5
3343
- },
3344
- "r" : 1,
3345
- "bm" : 0,
3346
- "nm" : "Fill 1",
3347
- "mn" : "ADBE Vector Graphic - Fill",
3348
- "hd" : false
3349
- },
3350
- {
3351
- "ty" : "tr",
3352
- "p" : {
3353
- "a" : 0,
3354
- "k" : [
3355
- 0,
3356
- 0
3357
- ],
3358
- "ix" : 2
3359
- },
3360
- "a" : {
3361
- "a" : 0,
3362
- "k" : [
3363
- 0,
3364
- 0
3365
- ],
3366
- "ix" : 1
3367
- },
3368
- "s" : {
3369
- "a" : 0,
3370
- "k" : [
3371
- 100,
3372
- 100
3373
- ],
3374
- "ix" : 3
3375
- },
3376
- "r" : {
3377
- "a" : 0,
3378
- "k" : 0,
3379
- "ix" : 6
3380
- },
3381
- "o" : {
3382
- "a" : 0,
3383
- "k" : 100,
3384
- "ix" : 7
3385
- },
3386
- "sk" : {
3387
- "a" : 0,
3388
- "k" : 0,
3389
- "ix" : 4
3390
- },
3391
- "sa" : {
3392
- "a" : 0,
3393
- "k" : 0,
3394
- "ix" : 5
3395
- },
3396
- "nm" : "Transform"
3397
- }
3398
- ],
3399
- "nm" : "Ellipse 1",
3400
- "np" : 3,
3401
- "cix" : 2,
3402
- "bm" : 0,
3403
- "ix" : 1,
3404
- "mn" : "ADBE Vector Group",
3405
- "hd" : false
3406
- }
3407
- ],
3408
- "ip" : -4,
3409
- "op" : 272,
3410
- "st" : -224,
3411
- "bm" : 0
3412
- }
3413
- ]
3414
- }
3415
- ],
3416
- "layers" : [
3417
- {
3418
- "ddd" : 0,
3419
- "ind" : 1,
3420
- "ty" : 0,
3421
- "nm" : "Gary Speed 1",
3422
- "refId" : "comp_0",
3423
- "sr" : 1,
3424
- "ks" : {
3425
- "o" : {
3426
- "a" : 0,
3427
- "k" : 100,
3428
- "ix" : 11
3429
- },
3430
- "r" : {
3431
- "a" : 0,
3432
- "k" : 0,
3433
- "ix" : 10
3434
- },
3435
- "p" : {
3436
- "a" : 0,
3437
- "k" : [
3438
- 415,
3439
- 852,
3440
- 0
3441
- ],
3442
- "ix" : 2
3443
- },
3444
- "a" : {
3445
- "a" : 0,
3446
- "k" : [
3447
- 415,
3448
- 852,
3449
- 0
3450
- ],
3451
- "ix" : 1
3452
- },
3453
- "s" : {
3454
- "a" : 0,
3455
- "k" : [
3456
- 100,
3457
- 100,
3458
- 100
3459
- ],
3460
- "ix" : 6
3461
- }
3462
- },
3463
- "ao" : 0,
3464
- "tm" : {
3465
- "a" : 1,
3466
- "k" : [
3467
- {
3468
- "i" : {
3469
- "x" : [
3470
- 0.833
3471
- ],
3472
- "y" : [
3473
- 0.833
3474
- ]
3475
- },
3476
- "o" : {
3477
- "x" : [
3478
- 0.02
3479
- ],
3480
- "y" : [
3481
- 0
3482
- ]
3483
- },
3484
- "t" : 0,
3485
- "s" : [
3486
- 0
3487
- ]
3488
- },
3489
- {
3490
- "i" : {
3491
- "x" : [
3492
- 0.662
3493
- ],
3494
- "y" : [
3495
- 0.691
3496
- ]
3497
- },
3498
- "o" : {
3499
- "x" : [
3500
- 0.167
3501
- ],
3502
- "y" : [
3503
- 0.167
3504
- ]
3505
- },
3506
- "t" : 30,
3507
- "s" : [
3508
- 0.667
3509
- ]
3510
- },
3511
- {
3512
- "t" : 90,
3513
- "s" : [
3514
- 2
3515
- ]
3516
- }
3517
- ],
3518
- "ix" : 2
3519
- },
3520
- "w" : 830,
3521
- "h" : 1704,
3522
- "ip" : -10,
3523
- "op" : 110,
3524
- "st" : -10,
3525
- "bm" : 0
3526
- }
3527
- ],
3528
- "markers" : [
3529
- {
3530
- "tm" : 225,
3531
- "cm" : "Y Move Up Start",
3532
- "dr" : 0
3533
- },
3534
- {
3535
- "tm" : 275,
3536
- "cm" : "Y Move Up End\r",
3537
- "dr" : 0
3538
- }
3539
- ]
3540
- }