@momo-kits/native-kits 0.156.6-tooltip.3 → 0.156.6-tooltip.4-debug

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 (119) hide show
  1. package/build.gradle.kts +11 -0
  2. package/compose/build.gradle.kts +180 -0
  3. package/compose/build.gradle.kts.backup +180 -0
  4. package/compose/compose.podspec +54 -0
  5. package/compose/src/androidMain/kotlin/vn/momo/kits/platform/Platform.android.kt +113 -0
  6. package/compose/src/commonMain/composeResources/files/anim_processing_transaction.json +1 -0
  7. package/compose/src/commonMain/composeResources/files/dot_loading.json +558 -0
  8. package/compose/src/commonMain/composeResources/files/face_loading.json +1 -0
  9. package/compose/src/commonMain/composeResources/files/lottie_circle_loader.json +1 -0
  10. package/compose/src/commonMain/composeResources/font/momosignature.otf +0 -0
  11. package/compose/src/commonMain/composeResources/font/momotrustdisplay.otf +0 -0
  12. package/compose/src/commonMain/composeResources/font/sfprotext_black.otf +0 -0
  13. package/compose/src/commonMain/composeResources/font/sfprotext_black.ttf +0 -0
  14. package/compose/src/commonMain/composeResources/font/sfprotext_bold.ttf +0 -0
  15. package/compose/src/commonMain/composeResources/font/sfprotext_heavy.ttf +0 -0
  16. package/compose/src/commonMain/composeResources/font/sfprotext_light.ttf +0 -0
  17. package/compose/src/commonMain/composeResources/font/sfprotext_medium.ttf +0 -0
  18. package/compose/src/commonMain/composeResources/font/sfprotext_regular.ttf +0 -0
  19. package/compose/src/commonMain/composeResources/font/sfprotext_semibold.ttf +0 -0
  20. package/compose/src/commonMain/composeResources/font/sfprotext_thin.otf +0 -0
  21. package/compose/src/commonMain/composeResources/font/sfprotext_thin.ttf +0 -0
  22. package/compose/src/commonMain/composeResources/font/sfprotext_ultralight.otf +0 -0
  23. package/compose/src/commonMain/composeResources/font/sfprotext_ultralight.ttf +0 -0
  24. package/compose/src/commonMain/kotlin/vn/momo/kits/application/AnimationSearchInput.kt +57 -0
  25. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Context.kt +95 -0
  26. package/compose/src/commonMain/kotlin/vn/momo/kits/application/FloatingButton.kt +201 -0
  27. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Header.kt +222 -0
  28. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderAnimated.kt +48 -0
  29. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderBackground.kt +86 -0
  30. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderDefault.kt +76 -0
  31. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderExtended.kt +76 -0
  32. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderRight.kt +305 -0
  33. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderTitle.kt +33 -0
  34. package/compose/src/commonMain/kotlin/vn/momo/kits/application/LiteScreen.kt +715 -0
  35. package/compose/src/commonMain/kotlin/vn/momo/kits/application/NavigationContainer.kt +121 -0
  36. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Screen.kt +405 -0
  37. package/compose/src/commonMain/kotlin/vn/momo/kits/application/useHeaderSearchAnimation.kt +69 -0
  38. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Badge.kt +83 -0
  39. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeDot.kt +32 -0
  40. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeRibbon.kt +340 -0
  41. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Button.kt +348 -0
  42. package/compose/src/commonMain/kotlin/vn/momo/kits/components/CheckBox.kt +94 -0
  43. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Chip.kt +136 -0
  44. package/compose/src/commonMain/kotlin/vn/momo/kits/components/CupertinoOverscroll.kt +543 -0
  45. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Divider.kt +23 -0
  46. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Icon.kt +76 -0
  47. package/compose/src/commonMain/kotlin/vn/momo/kits/components/IconButton.kt +148 -0
  48. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Image.kt +188 -0
  49. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Information.kt +116 -0
  50. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Input.kt +447 -0
  51. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputDropDown.kt +172 -0
  52. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputMoney.kt +255 -0
  53. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputOTP.kt +231 -0
  54. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputPhoneNumber.kt +234 -0
  55. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputSearch.kt +254 -0
  56. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputTextArea.kt +241 -0
  57. package/compose/src/commonMain/kotlin/vn/momo/kits/components/LazyColumnWithBouncing.kt +364 -0
  58. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationDot.kt +56 -0
  59. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationNumber.kt +41 -0
  60. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationScroll.kt +92 -0
  61. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationWhiteDot.kt +40 -0
  62. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupNotify.kt +352 -0
  63. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupPromotion.kt +103 -0
  64. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Radio.kt +70 -0
  65. package/compose/src/commonMain/kotlin/vn/momo/kits/components/ScaleSizeScope.kt +17 -0
  66. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Skeleton.kt +96 -0
  67. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Switch.kt +96 -0
  68. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tag.kt +92 -0
  69. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Text.kt +130 -0
  70. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Title.kt +214 -0
  71. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tooltip.kt +576 -0
  72. package/compose/src/commonMain/kotlin/vn/momo/kits/components/TrustBanner.kt +177 -0
  73. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePicker.kt +205 -0
  74. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerTypes.kt +29 -0
  75. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerUtils.kt +239 -0
  76. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/WheelPicker.kt +191 -0
  77. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Colors.kt +306 -0
  78. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Radius.kt +12 -0
  79. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Spacing.kt +13 -0
  80. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Theme.kt +189 -0
  81. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Typography.kt +285 -0
  82. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Card.kt +2 -0
  83. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Item.kt +35 -0
  84. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Section.kt +2 -0
  85. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/AutomationId.kt +59 -0
  86. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Clickable.kt +68 -0
  87. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Conditional.kt +11 -0
  88. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/DeprecatedModifier.kt +14 -0
  89. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Shadow.kt +50 -0
  90. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Size.kt +51 -0
  91. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/BottomSheet.kt +239 -0
  92. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ModalScreen.kt +119 -0
  93. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigation.kt +98 -0
  94. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/NavigationContainer.kt +163 -0
  95. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigator.kt +331 -0
  96. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/StackScreen.kt +497 -0
  97. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTab.kt +162 -0
  98. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTabBar.kt +226 -0
  99. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/CurvedContainer.kt +86 -0
  100. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/FloatingButton.kt +187 -0
  101. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/Header.kt +277 -0
  102. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderBackground.kt +80 -0
  103. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderRight.kt +306 -0
  104. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderTitle.kt +31 -0
  105. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderUser.kt +370 -0
  106. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/SnackBar.kt +132 -0
  107. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/Platform.kt +42 -0
  108. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Icons.kt +1329 -0
  109. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Resources.kt +62 -0
  110. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Utils.kt +88 -0
  111. package/compose/src/iosMain/kotlin/vn/momo/kits/platform/Platform.ios.kt +152 -0
  112. package/gradle/libs.versions.toml +57 -0
  113. package/gradle/wrapper/gradle-wrapper.jar +0 -0
  114. package/gradle/wrapper/gradle-wrapper.properties +8 -0
  115. package/gradle.properties +26 -0
  116. package/gradlew +252 -0
  117. package/gradlew.bat +94 -0
  118. package/package.json +1 -1
  119. package/settings.gradle.kts +52 -0
@@ -0,0 +1,558 @@
1
+ {
2
+ "v": "5.5.9",
3
+ "fr": 29.9700012207031,
4
+ "ip": 0,
5
+ "op": 50.0000020365418,
6
+ "w": 72,
7
+ "h": 72,
8
+ "nm": "Comp 1",
9
+ "ddd": 0,
10
+ "assets": [],
11
+ "layers": [
12
+ {
13
+ "ddd": 0,
14
+ "ind": 1,
15
+ "ty": 4,
16
+ "nm": "Shape Layer 3",
17
+ "sr": 1,
18
+ "ks": {
19
+ "o": {
20
+ "a": 1,
21
+ "k": [
22
+ {
23
+ "i": { "x": [0.667], "y": [1] },
24
+ "o": { "x": [0.333], "y": [0] },
25
+ "t": 0,
26
+ "s": [20],
27
+ "e": [0]
28
+ },
29
+ {
30
+ "i": { "x": [0.667], "y": [1] },
31
+ "o": { "x": [0.333], "y": [0] },
32
+ "t": 21,
33
+ "s": [0],
34
+ "e": [20]
35
+ },
36
+ {
37
+ "i": { "x": [0.667], "y": [1] },
38
+ "o": { "x": [0.333], "y": [0] },
39
+ "t": 35,
40
+ "s": [20],
41
+ "e": [20]
42
+ },
43
+ { "t": 42.0000017106951 }
44
+ ],
45
+ "ix": 11
46
+ },
47
+ "r": { "a": 0, "k": 0, "ix": 10 },
48
+ "p": {
49
+ "a": 1,
50
+ "k": [
51
+ {
52
+ "i": { "x": 0.667, "y": 0.667 },
53
+ "o": { "x": 0.333, "y": 0.333 },
54
+ "t": 0,
55
+ "s": [56.25, 36.75, 0],
56
+ "e": [56.25, 36.75, 0],
57
+ "to": [0, 0, 0],
58
+ "ti": [0, 0, 0]
59
+ },
60
+ {
61
+ "i": { "x": 0.667, "y": 1 },
62
+ "o": { "x": 0.333, "y": 0 },
63
+ "t": 7,
64
+ "s": [56.25, 36.75, 0],
65
+ "e": [56.25, 30, 0],
66
+ "to": [0, -1.125, 0],
67
+ "ti": [0, 2.708, 0]
68
+ },
69
+ {
70
+ "i": { "x": 0.667, "y": 1 },
71
+ "o": { "x": 0.333, "y": 0 },
72
+ "t": 14,
73
+ "s": [56.25, 30, 0],
74
+ "e": [56.25, 20.5, 0],
75
+ "to": [0, -2.708, 0],
76
+ "ti": [0, -1.708, 0]
77
+ },
78
+ {
79
+ "i": { "x": 0.667, "y": 1 },
80
+ "o": { "x": 0.333, "y": 0 },
81
+ "t": 21,
82
+ "s": [56.25, 20.5, 0],
83
+ "e": [56.25, 40.25, 0],
84
+ "to": [0, 1.708, 0],
85
+ "ti": [0, 0, 0]
86
+ },
87
+ {
88
+ "i": { "x": 0.667, "y": 1 },
89
+ "o": { "x": 0.333, "y": 0 },
90
+ "t": 35,
91
+ "s": [56.25, 40.25, 0],
92
+ "e": [56.25, 36.75, 0],
93
+ "to": [0, 0, 0],
94
+ "ti": [0, 0.583, 0]
95
+ },
96
+ { "t": 42.0000017106951 }
97
+ ],
98
+ "ix": 2
99
+ },
100
+ "a": { "a": 0, "k": [-10, -1.5, 0], "ix": 1 },
101
+ "s": {
102
+ "a": 1,
103
+ "k": [
104
+ {
105
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
106
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, -6.114] },
107
+ "t": 0,
108
+ "s": [126.347, 126.347, 100],
109
+ "e": [80, 80, 100]
110
+ },
111
+ {
112
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
113
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
114
+ "t": 21,
115
+ "s": [80, 80, 100],
116
+ "e": [110, 110, 100]
117
+ },
118
+ {
119
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
120
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
121
+ "t": 35,
122
+ "s": [110, 110, 100],
123
+ "e": [126.347, 126.347, 100]
124
+ },
125
+ { "t": 42.0000017106951 }
126
+ ],
127
+ "ix": 6
128
+ }
129
+ },
130
+ "ao": 0,
131
+ "shapes": [
132
+ {
133
+ "ty": "gr",
134
+ "it": [
135
+ {
136
+ "d": 1,
137
+ "ty": "el",
138
+ "s": { "a": 0, "k": [11.443, 11.443], "ix": 2 },
139
+ "p": { "a": 0, "k": [0, 0], "ix": 3 },
140
+ "nm": "Ellipse Path 1",
141
+ "mn": "ADBE Vector Shape - Ellipse",
142
+ "hd": false
143
+ },
144
+ {
145
+ "ty": "st",
146
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 3 },
147
+ "o": { "a": 0, "k": 100, "ix": 4 },
148
+ "w": { "a": 0, "k": 0, "ix": 5 },
149
+ "lc": 1,
150
+ "lj": 1,
151
+ "ml": 4,
152
+ "bm": 0,
153
+ "nm": "Stroke 1",
154
+ "mn": "ADBE Vector Graphic - Stroke",
155
+ "hd": false
156
+ },
157
+ {
158
+ "ty": "fl",
159
+ "c": {
160
+ "a": 0,
161
+ "k": [0.847058823529, 0.176470588235, 0.545098039216, 1],
162
+ "ix": 4
163
+ },
164
+ "o": { "a": 0, "k": 100, "ix": 5 },
165
+ "r": 1,
166
+ "bm": 0,
167
+ "nm": "Fill 1",
168
+ "mn": "ADBE Vector Graphic - Fill",
169
+ "hd": false
170
+ },
171
+ {
172
+ "ty": "tr",
173
+ "p": { "a": 0, "k": [-10.028, -1.528], "ix": 2 },
174
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
175
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
176
+ "r": { "a": 0, "k": 0, "ix": 6 },
177
+ "o": { "a": 0, "k": 100, "ix": 7 },
178
+ "sk": { "a": 0, "k": 0, "ix": 4 },
179
+ "sa": { "a": 0, "k": 0, "ix": 5 },
180
+ "nm": "Transform"
181
+ }
182
+ ],
183
+ "nm": "Ellipse 1",
184
+ "np": 3,
185
+ "cix": 2,
186
+ "bm": 0,
187
+ "ix": 1,
188
+ "mn": "ADBE Vector Group",
189
+ "hd": false
190
+ }
191
+ ],
192
+ "ip": 0,
193
+ "op": 900.000036657751,
194
+ "st": 0,
195
+ "bm": 0
196
+ },
197
+ {
198
+ "ddd": 0,
199
+ "ind": 2,
200
+ "ty": 4,
201
+ "nm": "Shape Layer 2",
202
+ "sr": 1,
203
+ "ks": {
204
+ "o": {
205
+ "a": 1,
206
+ "k": [
207
+ {
208
+ "i": { "x": [0.667], "y": [1] },
209
+ "o": { "x": [0.333], "y": [0] },
210
+ "t": 7,
211
+ "s": [50],
212
+ "e": [0]
213
+ },
214
+ {
215
+ "i": { "x": [0.667], "y": [1] },
216
+ "o": { "x": [0.333], "y": [0] },
217
+ "t": 14,
218
+ "s": [0],
219
+ "e": [50]
220
+ },
221
+ {
222
+ "i": { "x": [0.667], "y": [1] },
223
+ "o": { "x": [0.333], "y": [0] },
224
+ "t": 21,
225
+ "s": [50],
226
+ "e": [50]
227
+ },
228
+ {
229
+ "i": { "x": [0.667], "y": [1] },
230
+ "o": { "x": [0.333], "y": [0] },
231
+ "t": 28,
232
+ "s": [50],
233
+ "e": [50]
234
+ },
235
+ { "t": 35.0000014255792 }
236
+ ],
237
+ "ix": 11
238
+ },
239
+ "r": { "a": 0, "k": 0, "ix": 10 },
240
+ "p": {
241
+ "a": 1,
242
+ "k": [
243
+ {
244
+ "i": { "x": 0.667, "y": 1 },
245
+ "o": { "x": 0.333, "y": 0 },
246
+ "t": 0,
247
+ "s": [36.125, 36.75, 0],
248
+ "e": [36.125, 32.5, 0],
249
+ "to": [0, -0.708, 0],
250
+ "ti": [0, 1.5, 0]
251
+ },
252
+ {
253
+ "i": { "x": 0.667, "y": 1 },
254
+ "o": { "x": 0.333, "y": 0 },
255
+ "t": 7,
256
+ "s": [36.125, 32.5, 0],
257
+ "e": [36.125, 27.75, 0],
258
+ "to": [0, -1.5, 0],
259
+ "ti": [0, -0.708, 0]
260
+ },
261
+ {
262
+ "i": { "x": 0.667, "y": 1 },
263
+ "o": { "x": 0.333, "y": 0 },
264
+ "t": 14,
265
+ "s": [36.125, 27.75, 0],
266
+ "e": [36.125, 28.232, 0],
267
+ "to": [0, 0.446, 0],
268
+ "ti": [0, -2.43, 0]
269
+ },
270
+ {
271
+ "i": { "x": 0.667, "y": 1 },
272
+ "o": { "x": 0.333, "y": 0 },
273
+ "t": 21,
274
+ "s": [36.125, 28.232, 0],
275
+ "e": [36.125, 41.25, 0],
276
+ "to": [0, 1.43, 0],
277
+ "ti": [0, -0.556, 0]
278
+ },
279
+ {
280
+ "i": { "x": 0.667, "y": 1 },
281
+ "o": { "x": 0.333, "y": 0 },
282
+ "t": 28,
283
+ "s": [36.125, 41.25, 0],
284
+ "e": [36.125, 36.75, 0],
285
+ "to": [0, 1.5, 0],
286
+ "ti": [0, -0.556, 0]
287
+ },
288
+ { "t": 35.0000014255792 }
289
+ ],
290
+ "ix": 2
291
+ },
292
+ "a": { "a": 0, "k": [-10, -1.5, 0], "ix": 1 },
293
+ "s": {
294
+ "a": 1,
295
+ "k": [
296
+ {
297
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
298
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, -10.505] },
299
+ "t": 0,
300
+ "s": [126.347, 126.347, 100],
301
+ "e": [80, 80, 100]
302
+ },
303
+ {
304
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
305
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
306
+ "t": 14,
307
+ "s": [80, 80, 100],
308
+ "e": [110, 110, 100]
309
+ },
310
+ {
311
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
312
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
313
+ "t": 28,
314
+ "s": [110, 110, 100],
315
+ "e": [126.347, 126.347, 100]
316
+ },
317
+ { "t": 35.0000014255792 }
318
+ ],
319
+ "ix": 6
320
+ }
321
+ },
322
+ "ao": 0,
323
+ "shapes": [
324
+ {
325
+ "ty": "gr",
326
+ "it": [
327
+ {
328
+ "d": 1,
329
+ "ty": "el",
330
+ "s": { "a": 0, "k": [11.443, 11.443], "ix": 2 },
331
+ "p": { "a": 0, "k": [0, 0], "ix": 3 },
332
+ "nm": "Ellipse Path 1",
333
+ "mn": "ADBE Vector Shape - Ellipse",
334
+ "hd": false
335
+ },
336
+ {
337
+ "ty": "st",
338
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 3 },
339
+ "o": { "a": 0, "k": 100, "ix": 4 },
340
+ "w": { "a": 0, "k": 0, "ix": 5 },
341
+ "lc": 1,
342
+ "lj": 1,
343
+ "ml": 4,
344
+ "bm": 0,
345
+ "nm": "Stroke 1",
346
+ "mn": "ADBE Vector Graphic - Stroke",
347
+ "hd": false
348
+ },
349
+ {
350
+ "ty": "fl",
351
+ "c": {
352
+ "a": 0,
353
+ "k": [0.847058823529, 0.176470588235, 0.545098039216, 1],
354
+ "ix": 4
355
+ },
356
+ "o": { "a": 0, "k": 100, "ix": 5 },
357
+ "r": 1,
358
+ "bm": 0,
359
+ "nm": "Fill 1",
360
+ "mn": "ADBE Vector Graphic - Fill",
361
+ "hd": false
362
+ },
363
+ {
364
+ "ty": "tr",
365
+ "p": { "a": 0, "k": [-10.028, -1.528], "ix": 2 },
366
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
367
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
368
+ "r": { "a": 0, "k": 0, "ix": 6 },
369
+ "o": { "a": 0, "k": 100, "ix": 7 },
370
+ "sk": { "a": 0, "k": 0, "ix": 4 },
371
+ "sa": { "a": 0, "k": 0, "ix": 5 },
372
+ "nm": "Transform"
373
+ }
374
+ ],
375
+ "nm": "Ellipse 1",
376
+ "np": 3,
377
+ "cix": 2,
378
+ "bm": 0,
379
+ "ix": 1,
380
+ "mn": "ADBE Vector Group",
381
+ "hd": false
382
+ }
383
+ ],
384
+ "ip": 0,
385
+ "op": 900.000036657751,
386
+ "st": 0,
387
+ "bm": 0
388
+ },
389
+ {
390
+ "ddd": 0,
391
+ "ind": 3,
392
+ "ty": 4,
393
+ "nm": "Shape Layer 1",
394
+ "sr": 1,
395
+ "ks": {
396
+ "o": {
397
+ "a": 1,
398
+ "k": [
399
+ {
400
+ "i": { "x": [0.667], "y": [1] },
401
+ "o": { "x": [0.167], "y": [0.167] },
402
+ "t": 0,
403
+ "s": [100],
404
+ "e": [0]
405
+ },
406
+ {
407
+ "i": { "x": [0.667], "y": [1] },
408
+ "o": { "x": [0.333], "y": [0] },
409
+ "t": 7,
410
+ "s": [0],
411
+ "e": [100]
412
+ },
413
+ {
414
+ "i": { "x": [0.667], "y": [1] },
415
+ "o": { "x": [0.333], "y": [0] },
416
+ "t": 21,
417
+ "s": [100],
418
+ "e": [100]
419
+ },
420
+ { "t": 28.0000011404634 }
421
+ ],
422
+ "ix": 11
423
+ },
424
+ "r": { "a": 0, "k": 0, "ix": 10 },
425
+ "p": {
426
+ "a": 1,
427
+ "k": [
428
+ {
429
+ "i": { "x": 0.667, "y": 1 },
430
+ "o": { "x": 0.333, "y": 0 },
431
+ "t": 0,
432
+ "s": [16, 36.75, 0],
433
+ "e": [16, 26.75, 0],
434
+ "to": [0, -1.667, 0],
435
+ "ti": [0, -0.625, 0]
436
+ },
437
+ {
438
+ "i": { "x": 0.667, "y": 1 },
439
+ "o": { "x": 0.333, "y": 0 },
440
+ "t": 7,
441
+ "s": [16, 26.75, 0],
442
+ "e": [16, 40.5, 0],
443
+ "to": [0, 0.625, 0],
444
+ "ti": [0, -1.667, 0]
445
+ },
446
+ {
447
+ "i": { "x": 0.667, "y": 1 },
448
+ "o": { "x": 0.333, "y": 0 },
449
+ "t": 21,
450
+ "s": [16, 40.5, 0],
451
+ "e": [16, 36.75, 0],
452
+ "to": [0, 1.667, 0],
453
+ "ti": [0, 0.625, 0]
454
+ },
455
+ { "t": 28.0000011404634 }
456
+ ],
457
+ "ix": 2
458
+ },
459
+ "a": { "a": 0, "k": [-10, -1.5, 0], "ix": 1 },
460
+ "s": {
461
+ "a": 1,
462
+ "k": [
463
+ {
464
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
465
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, -1.575] },
466
+ "t": 0,
467
+ "s": [126.347, 126.347, 100],
468
+ "e": [80, 80, 100]
469
+ },
470
+ {
471
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
472
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
473
+ "t": 7,
474
+ "s": [80, 80, 100],
475
+ "e": [110, 110, 100]
476
+ },
477
+ {
478
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
479
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
480
+ "t": 21,
481
+ "s": [110, 110, 100],
482
+ "e": [126.347, 126.347, 100]
483
+ },
484
+ { "t": 28.0000011404634 }
485
+ ],
486
+ "ix": 6
487
+ }
488
+ },
489
+ "ao": 0,
490
+ "shapes": [
491
+ {
492
+ "ty": "gr",
493
+ "it": [
494
+ {
495
+ "d": 1,
496
+ "ty": "el",
497
+ "s": { "a": 0, "k": [11.443, 11.443], "ix": 2 },
498
+ "p": { "a": 0, "k": [0, 0], "ix": 3 },
499
+ "nm": "Ellipse Path 1",
500
+ "mn": "ADBE Vector Shape - Ellipse",
501
+ "hd": false
502
+ },
503
+ {
504
+ "ty": "st",
505
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 3 },
506
+ "o": { "a": 0, "k": 100, "ix": 4 },
507
+ "w": { "a": 0, "k": 0, "ix": 5 },
508
+ "lc": 1,
509
+ "lj": 1,
510
+ "ml": 4,
511
+ "bm": 0,
512
+ "nm": "Stroke 1",
513
+ "mn": "ADBE Vector Graphic - Stroke",
514
+ "hd": false
515
+ },
516
+ {
517
+ "ty": "fl",
518
+ "c": {
519
+ "a": 0,
520
+ "k": [0.847058823529, 0.176470588235, 0.545098039216, 1],
521
+ "ix": 4
522
+ },
523
+ "o": { "a": 0, "k": 100, "ix": 5 },
524
+ "r": 1,
525
+ "bm": 0,
526
+ "nm": "Fill 1",
527
+ "mn": "ADBE Vector Graphic - Fill",
528
+ "hd": false
529
+ },
530
+ {
531
+ "ty": "tr",
532
+ "p": { "a": 0, "k": [-10.028, -1.528], "ix": 2 },
533
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
534
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
535
+ "r": { "a": 0, "k": 0, "ix": 6 },
536
+ "o": { "a": 0, "k": 100, "ix": 7 },
537
+ "sk": { "a": 0, "k": 0, "ix": 4 },
538
+ "sa": { "a": 0, "k": 0, "ix": 5 },
539
+ "nm": "Transform"
540
+ }
541
+ ],
542
+ "nm": "Ellipse 1",
543
+ "np": 3,
544
+ "cix": 2,
545
+ "bm": 0,
546
+ "ix": 1,
547
+ "mn": "ADBE Vector Group",
548
+ "hd": false
549
+ }
550
+ ],
551
+ "ip": 0,
552
+ "op": 900.000036657751,
553
+ "st": 0,
554
+ "bm": 0
555
+ }
556
+ ],
557
+ "markers": []
558
+ }