@dust-tt/sparkle 0.2.210 → 0.2.211

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 (147) hide show
  1. package/dist/cjs/_index.d.ts +4 -4
  2. package/dist/cjs/components/Checkbox.d.ts +3 -3
  3. package/dist/cjs/components/Item.d.ts +1 -1
  4. package/dist/cjs/components/Tree.d.ts +11 -6
  5. package/dist/cjs/icons/solid/ArrowDownS.d.ts +4 -0
  6. package/dist/cjs/icons/solid/ArrowLeftS.d.ts +4 -0
  7. package/dist/cjs/icons/solid/ArrowRightS.d.ts +4 -0
  8. package/dist/cjs/icons/solid/ArrowUpS.d.ts +4 -0
  9. package/dist/cjs/icons/solid/ChevronDoubleLeft.d.ts +4 -0
  10. package/dist/cjs/icons/solid/ChevronDoubleRight.d.ts +4 -0
  11. package/dist/cjs/icons/solid/Company.d.ts +4 -0
  12. package/dist/cjs/icons/solid/Filter.d.ts +4 -0
  13. package/dist/cjs/icons/solid/Heart.d.ts +4 -0
  14. package/dist/cjs/icons/solid/History.d.ts +4 -0
  15. package/dist/cjs/icons/solid/Home.d.ts +4 -0
  16. package/dist/cjs/icons/solid/MarkPen.d.ts +4 -0
  17. package/dist/cjs/icons/solid/Translate.d.ts +4 -0
  18. package/dist/cjs/icons/solid/index.d.ts +13 -0
  19. package/dist/cjs/icons/stroke/ArrowDownS.d.ts +4 -0
  20. package/dist/cjs/icons/stroke/ArrowLeftS.d.ts +4 -0
  21. package/dist/cjs/icons/stroke/ArrowRightS.d.ts +4 -0
  22. package/dist/cjs/icons/stroke/ArrowUpS.d.ts +4 -0
  23. package/dist/cjs/icons/stroke/ChevronDoubleLeft.d.ts +4 -0
  24. package/dist/cjs/icons/stroke/ChevronDoubleRight.d.ts +4 -0
  25. package/dist/cjs/icons/stroke/Company.d.ts +4 -0
  26. package/dist/cjs/icons/stroke/Filter.d.ts +4 -0
  27. package/dist/cjs/icons/stroke/Heart.d.ts +4 -0
  28. package/dist/cjs/icons/stroke/History.d.ts +4 -0
  29. package/dist/cjs/icons/stroke/Home.d.ts +4 -0
  30. package/dist/cjs/icons/stroke/MarkPen.d.ts +4 -0
  31. package/dist/cjs/icons/stroke/Translate.d.ts +4 -0
  32. package/dist/cjs/icons/stroke/index.d.ts +13 -0
  33. package/dist/cjs/index.js +4414 -4256
  34. package/dist/cjs/index.js.map +1 -1
  35. package/dist/cjs/stories/Checkbox.stories.d.ts +2 -0
  36. package/dist/cjs/stories/Tree.stories.d.ts +0 -1
  37. package/dist/esm/_index.d.ts +4 -4
  38. package/dist/esm/components/Checkbox.d.ts +3 -3
  39. package/dist/esm/components/Item.d.ts +1 -1
  40. package/dist/esm/components/Tree.d.ts +11 -6
  41. package/dist/esm/icons/solid/ArrowDownS.d.ts +4 -0
  42. package/dist/esm/icons/solid/ArrowLeftS.d.ts +4 -0
  43. package/dist/esm/icons/solid/ArrowRightS.d.ts +4 -0
  44. package/dist/esm/icons/solid/ArrowUpS.d.ts +4 -0
  45. package/dist/esm/icons/solid/ChevronDoubleLeft.d.ts +4 -0
  46. package/dist/esm/icons/solid/ChevronDoubleRight.d.ts +4 -0
  47. package/dist/esm/icons/solid/Company.d.ts +4 -0
  48. package/dist/esm/icons/solid/Filter.d.ts +4 -0
  49. package/dist/esm/icons/solid/Heart.d.ts +4 -0
  50. package/dist/esm/icons/solid/History.d.ts +4 -0
  51. package/dist/esm/icons/solid/Home.d.ts +4 -0
  52. package/dist/esm/icons/solid/MarkPen.d.ts +4 -0
  53. package/dist/esm/icons/solid/Translate.d.ts +4 -0
  54. package/dist/esm/icons/solid/index.d.ts +13 -0
  55. package/dist/esm/icons/stroke/ArrowDownS.d.ts +4 -0
  56. package/dist/esm/icons/stroke/ArrowLeftS.d.ts +4 -0
  57. package/dist/esm/icons/stroke/ArrowRightS.d.ts +4 -0
  58. package/dist/esm/icons/stroke/ArrowUpS.d.ts +4 -0
  59. package/dist/esm/icons/stroke/ChevronDoubleLeft.d.ts +4 -0
  60. package/dist/esm/icons/stroke/ChevronDoubleRight.d.ts +4 -0
  61. package/dist/esm/icons/stroke/Company.d.ts +4 -0
  62. package/dist/esm/icons/stroke/Filter.d.ts +4 -0
  63. package/dist/esm/icons/stroke/Heart.d.ts +4 -0
  64. package/dist/esm/icons/stroke/History.d.ts +4 -0
  65. package/dist/esm/icons/stroke/Home.d.ts +4 -0
  66. package/dist/esm/icons/stroke/MarkPen.d.ts +4 -0
  67. package/dist/esm/icons/stroke/Translate.d.ts +4 -0
  68. package/dist/esm/icons/stroke/index.d.ts +13 -0
  69. package/dist/esm/index.js +4391 -4259
  70. package/dist/esm/index.js.map +1 -1
  71. package/dist/esm/stories/Checkbox.stories.d.ts +2 -0
  72. package/dist/esm/stories/Tree.stories.d.ts +0 -1
  73. package/dist/tsconfig.tsbuildinfo +1 -1
  74. package/package.json +1 -1
  75. package/src/_index.ts +52 -0
  76. package/src/components/Checkbox.tsx +42 -12
  77. package/src/components/Item.tsx +1 -1
  78. package/src/components/Tree.tsx +89 -67
  79. package/src/components/WindowUtility.tsx +1 -2
  80. package/src/icons/solid/ArrowDownS.tsx +15 -0
  81. package/src/icons/solid/ArrowLeftS.tsx +15 -0
  82. package/src/icons/solid/ArrowRightS.tsx +15 -0
  83. package/src/icons/solid/ArrowUpS.tsx +15 -0
  84. package/src/icons/solid/ChevronDoubleLeft.tsx +22 -0
  85. package/src/icons/solid/ChevronDoubleRight.tsx +22 -0
  86. package/src/icons/solid/Company.tsx +20 -0
  87. package/src/icons/solid/Filter.tsx +18 -0
  88. package/src/icons/solid/Heart.tsx +18 -0
  89. package/src/icons/solid/History.tsx +18 -0
  90. package/src/icons/solid/Home.tsx +20 -0
  91. package/src/icons/solid/MarkPen.tsx +18 -0
  92. package/src/icons/solid/Translate.tsx +18 -0
  93. package/src/icons/solid/index.ts +13 -0
  94. package/src/icons/src/solid/arrow-down-s.svg +3 -0
  95. package/src/icons/src/solid/arrow-left-s.svg +3 -0
  96. package/src/icons/src/solid/arrow-right-s.svg +3 -0
  97. package/src/icons/src/solid/arrow-up-s.svg +3 -0
  98. package/src/icons/src/solid/chevron-double-left.svg +4 -0
  99. package/src/icons/src/solid/chevron-double-right.svg +4 -0
  100. package/src/icons/src/solid/company.svg +3 -0
  101. package/src/icons/src/solid/filter.svg +3 -0
  102. package/src/icons/src/solid/heart.svg +3 -0
  103. package/src/icons/src/solid/history.svg +3 -0
  104. package/src/icons/src/solid/home.svg +3 -0
  105. package/src/icons/src/solid/mark-pen.svg +3 -0
  106. package/src/icons/src/solid/translate.svg +3 -0
  107. package/src/icons/src/stroke/arrow-down-s.svg +3 -0
  108. package/src/icons/src/stroke/arrow-left-s.svg +3 -0
  109. package/src/icons/src/stroke/arrow-right-s.svg +3 -0
  110. package/src/icons/src/stroke/arrow-up-s.svg +3 -0
  111. package/src/icons/src/stroke/chevron-double-left.svg +4 -0
  112. package/src/icons/src/stroke/chevron-double-right.svg +4 -0
  113. package/src/icons/src/stroke/company.svg +9 -0
  114. package/src/icons/src/stroke/filter.svg +3 -0
  115. package/src/icons/src/stroke/heart.svg +3 -0
  116. package/src/icons/src/stroke/history.svg +3 -0
  117. package/src/icons/src/stroke/home.svg +3 -0
  118. package/src/icons/src/stroke/mark-pen.svg +3 -0
  119. package/src/icons/src/stroke/translate.svg +3 -0
  120. package/src/icons/stroke/ArrowDownS.tsx +15 -0
  121. package/src/icons/stroke/ArrowLeftS.tsx +15 -0
  122. package/src/icons/stroke/ArrowRightS.tsx +15 -0
  123. package/src/icons/stroke/ArrowUpS.tsx +15 -0
  124. package/src/icons/stroke/ChevronDoubleLeft.tsx +16 -0
  125. package/src/icons/stroke/ChevronDoubleRight.tsx +16 -0
  126. package/src/icons/stroke/Company.tsx +24 -0
  127. package/src/icons/stroke/Filter.tsx +15 -0
  128. package/src/icons/stroke/Heart.tsx +20 -0
  129. package/src/icons/stroke/History.tsx +18 -0
  130. package/src/icons/stroke/Home.tsx +20 -0
  131. package/src/icons/stroke/MarkPen.tsx +18 -0
  132. package/src/icons/stroke/Translate.tsx +18 -0
  133. package/src/icons/stroke/index.ts +13 -0
  134. package/src/logo/src/platforms/Zendesk.svg +6 -0
  135. package/src/lottie/collapseBar.ts +124 -124
  136. package/src/lottie/spinnerColor.ts +337 -337
  137. package/src/lottie/spinnerColorLG.ts +824 -824
  138. package/src/lottie/spinnerColorXS.ts +187 -187
  139. package/src/lottie/spinnerDark.ts +353 -353
  140. package/src/lottie/spinnerDarkLG.ts +824 -824
  141. package/src/lottie/spinnerDarkXS.ts +218 -218
  142. package/src/lottie/spinnerLight.ts +342 -342
  143. package/src/lottie/spinnerLightLG.ts +797 -797
  144. package/src/lottie/spinnerLightXS.ts +215 -215
  145. package/src/stories/Checkbox.stories.tsx +75 -6
  146. package/src/stories/Tree.stories.tsx +197 -226
  147. package/src/styles/tailwind.css +7 -9
@@ -1,1066 +1,1066 @@
1
1
  const animation = {
2
- "v": "5.9.0",
3
- "fr": 60,
4
- "ip": 0,
5
- "op": 360,
6
- "w": 320,
7
- "h": 320,
8
- "nm": "spinnerLightLG",
9
- "ddd": 0,
10
- "assets": [],
11
- "layers": [
2
+ v: "5.9.0",
3
+ fr: 60,
4
+ ip: 0,
5
+ op: 360,
6
+ w: 320,
7
+ h: 320,
8
+ nm: "spinnerLightLG",
9
+ ddd: 0,
10
+ assets: [],
11
+ layers: [
12
12
  {
13
- "ddd": 0,
14
- "ind": 1,
15
- "ty": 4,
16
- "nm": "Rectangle 2",
17
- "sr": 1,
18
- "ks": {
19
- "o": { "a": 0, "k": 100, "ix": 11 },
20
- "r": {
21
- "a": 1,
22
- "k": [
13
+ ddd: 0,
14
+ ind: 1,
15
+ ty: 4,
16
+ nm: "Rectangle 2",
17
+ sr: 1,
18
+ ks: {
19
+ o: { a: 0, k: 100, ix: 11 },
20
+ r: {
21
+ a: 1,
22
+ k: [
23
23
  {
24
- "i": { "x": [0.842], "y": [0.557] },
25
- "o": { "x": [0.151], "y": [0.321] },
26
- "t": 195,
27
- "s": [0]
24
+ i: { x: [0.842], y: [0.557] },
25
+ o: { x: [0.151], y: [0.321] },
26
+ t: 195,
27
+ s: [0],
28
28
  },
29
- { "t": 290, "s": [-360] }
29
+ { t: 290, s: [-360] },
30
30
  ],
31
- "ix": 10
31
+ ix: 10,
32
32
  },
33
- "p": { "a": 0, "k": [107, 109, 0], "ix": 2, "l": 2 },
34
- "a": { "a": 0, "k": [0, 0, 0], "ix": 1, "l": 2 },
35
- "s": { "a": 0, "k": [100, 50, 100], "ix": 6, "l": 2 }
33
+ p: { a: 0, k: [107, 109, 0], ix: 2, l: 2 },
34
+ a: { a: 0, k: [0, 0, 0], ix: 1, l: 2 },
35
+ s: { a: 0, k: [100, 50, 100], ix: 6, l: 2 },
36
36
  },
37
- "ao": 0,
38
- "shapes": [
37
+ ao: 0,
38
+ shapes: [
39
39
  {
40
- "ty": "gr",
41
- "it": [
40
+ ty: "gr",
41
+ it: [
42
42
  {
43
- "ty": "rc",
44
- "d": 1,
45
- "s": { "a": 0, "k": [50, 50], "ix": 2 },
46
- "p": { "a": 0, "k": [0, 0], "ix": 3 },
47
- "r": { "a": 0, "k": 0, "ix": 4 },
48
- "nm": "Rectangle Path 1",
49
- "mn": "ADBE Vector Shape - Rect",
50
- "hd": false
43
+ ty: "rc",
44
+ d: 1,
45
+ s: { a: 0, k: [50, 50], ix: 2 },
46
+ p: { a: 0, k: [0, 0], ix: 3 },
47
+ r: { a: 0, k: 0, ix: 4 },
48
+ nm: "Rectangle Path 1",
49
+ mn: "ADBE Vector Shape - Rect",
50
+ hd: false,
51
51
  },
52
52
  {
53
- "ty": "fl",
54
- "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
55
- "o": { "a": 0, "k": 100, "ix": 5 },
56
- "r": 1,
57
- "bm": 0,
58
- "nm": "Fill 1",
59
- "mn": "ADBE Vector Graphic - Fill",
60
- "hd": false
53
+ ty: "fl",
54
+ c: { a: 0, k: [1, 1, 1, 1], ix: 4 },
55
+ o: { a: 0, k: 100, ix: 5 },
56
+ r: 1,
57
+ bm: 0,
58
+ nm: "Fill 1",
59
+ mn: "ADBE Vector Graphic - Fill",
60
+ hd: false,
61
61
  },
62
62
  {
63
- "ty": "tr",
64
- "p": { "a": 0, "k": [46, 90], "ix": 2 },
65
- "a": { "a": 0, "k": [0, 0], "ix": 1 },
66
- "s": {
67
- "a": 1,
68
- "k": [
63
+ ty: "tr",
64
+ p: { a: 0, k: [46, 90], ix: 2 },
65
+ a: { a: 0, k: [0, 0], ix: 1 },
66
+ s: {
67
+ a: 1,
68
+ k: [
69
69
  {
70
- "i": { "x": [0.479, 0.479], "y": [0.879, 0.879] },
71
- "o": { "x": [0.033, 0.033], "y": [0.178, 0.178] },
72
- "t": 195,
73
- "s": [0, 0]
70
+ i: { x: [0.479, 0.479], y: [0.879, 0.879] },
71
+ o: { x: [0.033, 0.033], y: [0.178, 0.178] },
72
+ t: 195,
73
+ s: [0, 0],
74
74
  },
75
75
  {
76
- "i": { "x": [0.837, 0.837], "y": [12.278, 12.278] },
77
- "o": { "x": [0.277, 0.277], "y": [22.912, 22.912] },
78
- "t": 213,
79
- "s": [116.694, 116.694]
76
+ i: { x: [0.837, 0.837], y: [12.278, 12.278] },
77
+ o: { x: [0.277, 0.277], y: [22.912, 22.912] },
78
+ t: 213,
79
+ s: [116.694, 116.694],
80
80
  },
81
81
  {
82
- "i": { "x": [0.913, 0.913], "y": [0.759, 0.759] },
83
- "o": { "x": [0.542, 0.542], "y": [0.128, 0.128] },
84
- "t": 268,
85
- "s": [116.694, 116.694]
82
+ i: { x: [0.913, 0.913], y: [0.759, 0.759] },
83
+ o: { x: [0.542, 0.542], y: [0.128, 0.128] },
84
+ t: 268,
85
+ s: [116.694, 116.694],
86
86
  },
87
- { "t": 290, "s": [0, 0] }
87
+ { t: 290, s: [0, 0] },
88
88
  ],
89
- "ix": 3
89
+ ix: 3,
90
90
  },
91
- "r": { "a": 0, "k": 0, "ix": 6 },
92
- "o": { "a": 0, "k": 100, "ix": 7 },
93
- "sk": { "a": 0, "k": 0, "ix": 4 },
94
- "sa": { "a": 0, "k": 0, "ix": 5 },
95
- "nm": "Transformer "
96
- }
91
+ r: { a: 0, k: 0, ix: 6 },
92
+ o: { a: 0, k: 100, ix: 7 },
93
+ sk: { a: 0, k: 0, ix: 4 },
94
+ sa: { a: 0, k: 0, ix: 5 },
95
+ nm: "Transformer ",
96
+ },
97
97
  ],
98
- "nm": "Rectangle 1",
99
- "np": 3,
100
- "cix": 2,
101
- "bm": 0,
102
- "ix": 1,
103
- "mn": "ADBE Vector Group",
104
- "hd": false
105
- }
98
+ nm: "Rectangle 1",
99
+ np: 3,
100
+ cix: 2,
101
+ bm: 0,
102
+ ix: 1,
103
+ mn: "ADBE Vector Group",
104
+ hd: false,
105
+ },
106
106
  ],
107
- "ip": 180,
108
- "op": 300,
109
- "st": 180,
110
- "bm": 0
107
+ ip: 180,
108
+ op: 300,
109
+ st: 180,
110
+ bm: 0,
111
111
  },
112
112
  {
113
- "ddd": 0,
114
- "ind": 2,
115
- "ty": 4,
116
- "nm": "Triangle 2",
117
- "sr": 1,
118
- "ks": {
119
- "o": { "a": 0, "k": 100, "ix": 11 },
120
- "r": {
121
- "a": 1,
122
- "k": [
113
+ ddd: 0,
114
+ ind: 2,
115
+ ty: 4,
116
+ nm: "Triangle 2",
117
+ sr: 1,
118
+ ks: {
119
+ o: { a: 0, k: 100, ix: 11 },
120
+ r: {
121
+ a: 1,
122
+ k: [
123
123
  {
124
- "i": { "x": [0.527], "y": [1] },
125
- "o": { "x": [0.494], "y": [0] },
126
- "t": 189,
127
- "s": [0]
124
+ i: { x: [0.527], y: [1] },
125
+ o: { x: [0.494], y: [0] },
126
+ t: 189,
127
+ s: [0],
128
128
  },
129
- { "t": 300, "s": [360] }
129
+ { t: 300, s: [360] },
130
130
  ],
131
- "ix": 10
131
+ ix: 10,
132
132
  },
133
- "p": { "a": 0, "k": [105, 217, 0], "ix": 2, "l": 2 },
134
- "a": { "a": 0, "k": [-131, 107, 0], "ix": 1, "l": 2 },
135
- "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
133
+ p: { a: 0, k: [105, 217, 0], ix: 2, l: 2 },
134
+ a: { a: 0, k: [-131, 107, 0], ix: 1, l: 2 },
135
+ s: { a: 0, k: [100, 100, 100], ix: 6, l: 2 },
136
136
  },
137
- "ao": 0,
138
- "shapes": [
137
+ ao: 0,
138
+ shapes: [
139
139
  {
140
- "ty": "gr",
141
- "it": [
140
+ ty: "gr",
141
+ it: [
142
142
  {
143
- "ty": "sr",
144
- "sy": 2,
145
- "d": 1,
146
- "pt": { "a": 0, "k": 3, "ix": 3 },
147
- "p": { "a": 0, "k": [0, 0], "ix": 4 },
148
- "r": { "a": 0, "k": 90, "ix": 5 },
149
- "or": { "a": 0, "k": 28, "ix": 7 },
150
- "os": { "a": 0, "k": 0, "ix": 9 },
151
- "ix": 1,
152
- "nm": "Polystar Path 1",
153
- "mn": "ADBE Vector Shape - Star",
154
- "hd": false
143
+ ty: "sr",
144
+ sy: 2,
145
+ d: 1,
146
+ pt: { a: 0, k: 3, ix: 3 },
147
+ p: { a: 0, k: [0, 0], ix: 4 },
148
+ r: { a: 0, k: 90, ix: 5 },
149
+ or: { a: 0, k: 28, ix: 7 },
150
+ os: { a: 0, k: 0, ix: 9 },
151
+ ix: 1,
152
+ nm: "Polystar Path 1",
153
+ mn: "ADBE Vector Shape - Star",
154
+ hd: false,
155
155
  },
156
156
  {
157
- "ty": "fl",
158
- "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
159
- "o": { "a": 0, "k": 100, "ix": 5 },
160
- "r": 1,
161
- "bm": 0,
162
- "nm": "Fill 1",
163
- "mn": "ADBE Vector Graphic - Fill",
164
- "hd": false
157
+ ty: "fl",
158
+ c: { a: 0, k: [1, 1, 1, 1], ix: 4 },
159
+ o: { a: 0, k: 100, ix: 5 },
160
+ r: 1,
161
+ bm: 0,
162
+ nm: "Fill 1",
163
+ mn: "ADBE Vector Graphic - Fill",
164
+ hd: false,
165
165
  },
166
166
  {
167
- "ty": "tr",
168
- "p": { "a": 0, "k": [-75.3, 72.9], "ix": 2 },
169
- "a": { "a": 0, "k": [0, 0], "ix": 1 },
170
- "s": {
171
- "a": 1,
172
- "k": [
167
+ ty: "tr",
168
+ p: { a: 0, k: [-75.3, 72.9], ix: 2 },
169
+ a: { a: 0, k: [0, 0], ix: 1 },
170
+ s: {
171
+ a: 1,
172
+ k: [
173
173
  {
174
- "i": { "x": [0.815, 0.815], "y": [0.96, 0.96] },
175
- "o": { "x": [0.102, 0.102], "y": [0.243, 0.243] },
176
- "t": 197,
177
- "s": [0, 0]
174
+ i: { x: [0.815, 0.815], y: [0.96, 0.96] },
175
+ o: { x: [0.102, 0.102], y: [0.243, 0.243] },
176
+ t: 197,
177
+ s: [0, 0],
178
178
  },
179
179
  {
180
- "i": { "x": [0.847, 0.847], "y": [0.448, 0.448] },
181
- "o": { "x": [0.307, 0.307], "y": [-0.738, -0.738] },
182
- "t": 221,
183
- "s": [130, 130]
180
+ i: { x: [0.847, 0.847], y: [0.448, 0.448] },
181
+ o: { x: [0.307, 0.307], y: [-0.738, -0.738] },
182
+ t: 221,
183
+ s: [130, 130],
184
184
  },
185
185
  {
186
- "i": { "x": [0.855, 0.855], "y": [0.814, 0.814] },
187
- "o": { "x": [0.546, 0.546], "y": [0.219, 0.219] },
188
- "t": 262,
189
- "s": [110, 110]
186
+ i: { x: [0.855, 0.855], y: [0.814, 0.814] },
187
+ o: { x: [0.546, 0.546], y: [0.219, 0.219] },
188
+ t: 262,
189
+ s: [110, 110],
190
190
  },
191
- { "t": 287, "s": [0, 0] }
191
+ { t: 287, s: [0, 0] },
192
192
  ],
193
- "ix": 3
193
+ ix: 3,
194
194
  },
195
- "r": {
196
- "a": 1,
197
- "k": [
195
+ r: {
196
+ a: 1,
197
+ k: [
198
198
  {
199
- "i": { "x": [0.667], "y": [1] },
200
- "o": { "x": [0.227], "y": [0.129] },
201
- "t": 193,
202
- "s": [0]
199
+ i: { x: [0.667], y: [1] },
200
+ o: { x: [0.227], y: [0.129] },
201
+ t: 193,
202
+ s: [0],
203
203
  },
204
- { "t": 267, "s": [360] }
204
+ { t: 267, s: [360] },
205
205
  ],
206
- "ix": 6
206
+ ix: 6,
207
207
  },
208
- "o": { "a": 0, "k": 100, "ix": 7 },
209
- "sk": { "a": 0, "k": 0, "ix": 4 },
210
- "sa": { "a": 0, "k": 0, "ix": 5 },
211
- "nm": "Transformer "
212
- }
208
+ o: { a: 0, k: 100, ix: 7 },
209
+ sk: { a: 0, k: 0, ix: 4 },
210
+ sa: { a: 0, k: 0, ix: 5 },
211
+ nm: "Transformer ",
212
+ },
213
213
  ],
214
- "nm": "Polystar 1",
215
- "np": 3,
216
- "cix": 2,
217
- "bm": 0,
218
- "ix": 1,
219
- "mn": "ADBE Vector Group",
220
- "hd": false
221
- }
214
+ nm: "Polystar 1",
215
+ np: 3,
216
+ cix: 2,
217
+ bm: 0,
218
+ ix: 1,
219
+ mn: "ADBE Vector Group",
220
+ hd: false,
221
+ },
222
222
  ],
223
- "ip": 180,
224
- "op": 300,
225
- "st": 180,
226
- "bm": 0
223
+ ip: 180,
224
+ op: 300,
225
+ st: 180,
226
+ bm: 0,
227
227
  },
228
228
  {
229
- "ddd": 0,
230
- "ind": 3,
231
- "ty": 4,
232
- "nm": "HalfCircle 2",
233
- "sr": 1,
234
- "ks": {
235
- "o": { "a": 0, "k": 100, "ix": 11 },
236
- "r": {
237
- "a": 1,
238
- "k": [
229
+ ddd: 0,
230
+ ind: 3,
231
+ ty: 4,
232
+ nm: "HalfCircle 2",
233
+ sr: 1,
234
+ ks: {
235
+ o: { a: 0, k: 100, ix: 11 },
236
+ r: {
237
+ a: 1,
238
+ k: [
239
239
  {
240
- "i": { "x": [0.854], "y": [0.478] },
241
- "o": { "x": [0.251], "y": [0.459] },
242
- "t": 190,
243
- "s": [0]
240
+ i: { x: [0.854], y: [0.478] },
241
+ o: { x: [0.251], y: [0.459] },
242
+ t: 190,
243
+ s: [0],
244
244
  },
245
- { "t": 291, "s": [-360] }
245
+ { t: 291, s: [-360] },
246
246
  ],
247
- "ix": 10
247
+ ix: 10,
248
248
  },
249
- "p": { "a": 0, "k": [208, 122, 0], "ix": 2, "l": 2 },
250
- "a": { "a": 0, "k": [0, 0, 0], "ix": 1, "l": 2 },
251
- "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
249
+ p: { a: 0, k: [208, 122, 0], ix: 2, l: 2 },
250
+ a: { a: 0, k: [0, 0, 0], ix: 1, l: 2 },
251
+ s: { a: 0, k: [100, 100, 100], ix: 6, l: 2 },
252
252
  },
253
- "ao": 0,
254
- "shapes": [
253
+ ao: 0,
254
+ shapes: [
255
255
  {
256
- "ty": "gr",
257
- "it": [
256
+ ty: "gr",
257
+ it: [
258
258
  {
259
- "ind": 0,
260
- "ty": "sh",
261
- "ix": 1,
262
- "ks": {
263
- "a": 0,
264
- "k": {
265
- "i": [
259
+ ind: 0,
260
+ ty: "sh",
261
+ ix: 1,
262
+ ks: {
263
+ a: 0,
264
+ k: {
265
+ i: [
266
266
  [0.166, -0.033],
267
267
  [0, -9.389],
268
268
  [9.389, 0],
269
- [-0.001, 8.75]
269
+ [-0.001, 8.75],
270
270
  ],
271
- "o": [
271
+ o: [
272
272
  [9.389, 0],
273
273
  [0, 9.389],
274
274
  [0.236, 0.059],
275
- [0.001, -8.75]
275
+ [0.001, -8.75],
276
276
  ],
277
- "v": [
277
+ v: [
278
278
  [0, -17.167],
279
279
  [17, -0.167],
280
280
  [0, 16.833],
281
- [-0.005, -0.229]
281
+ [-0.005, -0.229],
282
282
  ],
283
- "c": true
283
+ c: true,
284
284
  },
285
- "ix": 2
285
+ ix: 2,
286
286
  },
287
- "nm": "Tracé 1",
288
- "mn": "ADBE Vector Shape - Group",
289
- "hd": false
287
+ nm: "Tracé 1",
288
+ mn: "ADBE Vector Shape - Group",
289
+ hd: false,
290
290
  },
291
291
  {
292
- "ty": "fl",
293
- "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
294
- "o": { "a": 0, "k": 100, "ix": 5 },
295
- "r": 1,
296
- "bm": 0,
297
- "nm": "Fond 1",
298
- "mn": "ADBE Vector Graphic - Fill",
299
- "hd": false
292
+ ty: "fl",
293
+ c: { a: 0, k: [1, 1, 1, 1], ix: 4 },
294
+ o: { a: 0, k: 100, ix: 5 },
295
+ r: 1,
296
+ bm: 0,
297
+ nm: "Fond 1",
298
+ mn: "ADBE Vector Graphic - Fill",
299
+ hd: false,
300
300
  },
301
301
  {
302
- "ty": "tr",
303
- "p": { "a": 0, "k": [-48, 38], "ix": 2 },
304
- "a": { "a": 0, "k": [6, 0], "ix": 1 },
305
- "s": {
306
- "a": 1,
307
- "k": [
302
+ ty: "tr",
303
+ p: { a: 0, k: [-48, 38], ix: 2 },
304
+ a: { a: 0, k: [6, 0], ix: 1 },
305
+ s: {
306
+ a: 1,
307
+ k: [
308
308
  {
309
- "i": { "x": [0.25, 0.25], "y": [0.619, 0.619] },
310
- "o": { "x": [0.809, 0.809], "y": [0.003, 0.003] },
311
- "t": 191,
312
- "s": [0, 0]
309
+ i: { x: [0.25, 0.25], y: [0.619, 0.619] },
310
+ o: { x: [0.809, 0.809], y: [0.003, 0.003] },
311
+ t: 191,
312
+ s: [0, 0],
313
313
  },
314
314
  {
315
- "i": { "x": [0.739, 0.739], "y": [-0.788, -0.788] },
316
- "o": { "x": [0.172, 0.172], "y": [-2.281, -2.281] },
317
- "t": 210,
318
- "s": [199.475, 199.475]
315
+ i: { x: [0.739, 0.739], y: [-0.788, -0.788] },
316
+ o: { x: [0.172, 0.172], y: [-2.281, -2.281] },
317
+ t: 210,
318
+ s: [199.475, 199.475],
319
319
  },
320
320
  {
321
- "i": { "x": [0.712, 0.712], "y": [0.661, 0.661] },
322
- "o": { "x": [0.344, 0.344], "y": [0.145, 0.145] },
323
- "t": 267,
324
- "s": [176.515, 176.515]
321
+ i: { x: [0.712, 0.712], y: [0.661, 0.661] },
322
+ o: { x: [0.344, 0.344], y: [0.145, 0.145] },
323
+ t: 267,
324
+ s: [176.515, 176.515],
325
325
  },
326
- { "t": 294, "s": [0, 0] }
326
+ { t: 294, s: [0, 0] },
327
327
  ],
328
- "ix": 3
328
+ ix: 3,
329
329
  },
330
- "r": {
331
- "a": 1,
332
- "k": [
330
+ r: {
331
+ a: 1,
332
+ k: [
333
333
  {
334
- "i": { "x": [0.833], "y": [0.833] },
335
- "o": { "x": [0.167], "y": [0.167] },
336
- "t": 194,
337
- "s": [0]
334
+ i: { x: [0.833], y: [0.833] },
335
+ o: { x: [0.167], y: [0.167] },
336
+ t: 194,
337
+ s: [0],
338
338
  },
339
- { "t": 290, "s": [-360] }
339
+ { t: 290, s: [-360] },
340
340
  ],
341
- "ix": 6
341
+ ix: 6,
342
342
  },
343
- "o": { "a": 0, "k": 100, "ix": 7 },
344
- "sk": { "a": 0, "k": 0, "ix": 4 },
345
- "sa": { "a": 0, "k": 0, "ix": 5 },
346
- "nm": "Transformer "
347
- }
343
+ o: { a: 0, k: 100, ix: 7 },
344
+ sk: { a: 0, k: 0, ix: 4 },
345
+ sa: { a: 0, k: 0, ix: 5 },
346
+ nm: "Transformer ",
347
+ },
348
348
  ],
349
- "nm": "Ellipse 1",
350
- "np": 3,
351
- "cix": 2,
352
- "bm": 0,
353
- "ix": 1,
354
- "mn": "ADBE Vector Group",
355
- "hd": false
356
- }
349
+ nm: "Ellipse 1",
350
+ np: 3,
351
+ cix: 2,
352
+ bm: 0,
353
+ ix: 1,
354
+ mn: "ADBE Vector Group",
355
+ hd: false,
356
+ },
357
357
  ],
358
- "ip": 180,
359
- "op": 300,
360
- "st": 180,
361
- "bm": 0
358
+ ip: 180,
359
+ op: 300,
360
+ st: 180,
361
+ bm: 0,
362
362
  },
363
363
  {
364
- "ddd": 0,
365
- "ind": 4,
366
- "ty": 4,
367
- "nm": "Square 2",
368
- "sr": 1,
369
- "ks": {
370
- "o": { "a": 0, "k": 100, "ix": 11 },
371
- "r": {
372
- "a": 1,
373
- "k": [
364
+ ddd: 0,
365
+ ind: 4,
366
+ ty: 4,
367
+ nm: "Square 2",
368
+ sr: 1,
369
+ ks: {
370
+ o: { a: 0, k: 100, ix: 11 },
371
+ r: {
372
+ a: 1,
373
+ k: [
374
374
  {
375
- "i": { "x": [0.868], "y": [0.711] },
376
- "o": { "x": [0.161], "y": [0.342] },
377
- "t": 199,
378
- "s": [0]
375
+ i: { x: [0.868], y: [0.711] },
376
+ o: { x: [0.161], y: [0.342] },
377
+ t: 199,
378
+ s: [0],
379
379
  },
380
- { "t": 286, "s": [-360] }
380
+ { t: 286, s: [-360] },
381
381
  ],
382
- "ix": 10
382
+ ix: 10,
383
383
  },
384
- "p": { "a": 0, "k": [207, 207, 0], "ix": 2, "l": 2 },
385
- "a": { "a": 0, "k": [0, 0, 0], "ix": 1, "l": 2 },
386
- "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
384
+ p: { a: 0, k: [207, 207, 0], ix: 2, l: 2 },
385
+ a: { a: 0, k: [0, 0, 0], ix: 1, l: 2 },
386
+ s: { a: 0, k: [100, 100, 100], ix: 6, l: 2 },
387
387
  },
388
- "ao": 0,
389
- "shapes": [
388
+ ao: 0,
389
+ shapes: [
390
390
  {
391
- "ty": "gr",
392
- "it": [
391
+ ty: "gr",
392
+ it: [
393
393
  {
394
- "ty": "rc",
395
- "d": 1,
396
- "s": { "a": 0, "k": [56, 56], "ix": 2 },
397
- "p": { "a": 0, "k": [0, 0], "ix": 3 },
398
- "r": { "a": 0, "k": 0, "ix": 4 },
399
- "nm": "Rectangle Path 1",
400
- "mn": "ADBE Vector Shape - Rect",
401
- "hd": false
394
+ ty: "rc",
395
+ d: 1,
396
+ s: { a: 0, k: [56, 56], ix: 2 },
397
+ p: { a: 0, k: [0, 0], ix: 3 },
398
+ r: { a: 0, k: 0, ix: 4 },
399
+ nm: "Rectangle Path 1",
400
+ mn: "ADBE Vector Shape - Rect",
401
+ hd: false,
402
402
  },
403
403
  {
404
- "ty": "fl",
405
- "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
406
- "o": { "a": 0, "k": 100, "ix": 5 },
407
- "r": 1,
408
- "bm": 0,
409
- "nm": "Fill 1",
410
- "mn": "ADBE Vector Graphic - Fill",
411
- "hd": false
404
+ ty: "fl",
405
+ c: { a: 0, k: [1, 1, 1, 1], ix: 4 },
406
+ o: { a: 0, k: 100, ix: 5 },
407
+ r: 1,
408
+ bm: 0,
409
+ nm: "Fill 1",
410
+ mn: "ADBE Vector Graphic - Fill",
411
+ hd: false,
412
412
  },
413
413
  {
414
- "ty": "tr",
415
- "p": { "a": 0, "k": [-38, -42], "ix": 2 },
416
- "a": { "a": 0, "k": [0, 0], "ix": 1 },
417
- "s": {
418
- "a": 1,
419
- "k": [
414
+ ty: "tr",
415
+ p: { a: 0, k: [-38, -42], ix: 2 },
416
+ a: { a: 0, k: [0, 0], ix: 1 },
417
+ s: {
418
+ a: 1,
419
+ k: [
420
420
  {
421
- "i": { "x": [0.373, 0.373], "y": [0.837, 0.837] },
422
- "o": { "x": [0.671, 0.671], "y": [0, 0] },
423
- "t": 191,
424
- "s": [0, 0]
421
+ i: { x: [0.373, 0.373], y: [0.837, 0.837] },
422
+ o: { x: [0.671, 0.671], y: [0, 0] },
423
+ t: 191,
424
+ s: [0, 0],
425
425
  },
426
426
  {
427
- "i": { "x": [0.841, 0.841], "y": [0.513, 0.513] },
428
- "o": { "x": [0.354, 0.354], "y": [-0.821, -0.821] },
429
- "t": 220,
430
- "s": [100, 100]
427
+ i: { x: [0.841, 0.841], y: [0.513, 0.513] },
428
+ o: { x: [0.354, 0.354], y: [-0.821, -0.821] },
429
+ t: 220,
430
+ s: [100, 100],
431
431
  },
432
432
  {
433
- "i": { "x": [0.932, 0.932], "y": [0.791, 0.791] },
434
- "o": { "x": [0.366, 0.366], "y": [0.139, 0.139] },
435
- "t": 263.424,
436
- "s": [83.194, 83.194]
433
+ i: { x: [0.932, 0.932], y: [0.791, 0.791] },
434
+ o: { x: [0.366, 0.366], y: [0.139, 0.139] },
435
+ t: 263.424,
436
+ s: [83.194, 83.194],
437
437
  },
438
- { "t": 290, "s": [0, 0] }
438
+ { t: 290, s: [0, 0] },
439
439
  ],
440
- "ix": 3
440
+ ix: 3,
441
441
  },
442
- "r": {
443
- "a": 1,
444
- "k": [
442
+ r: {
443
+ a: 1,
444
+ k: [
445
445
  {
446
- "i": { "x": [0.445], "y": [0.773] },
447
- "o": { "x": [0.333], "y": [0] },
448
- "t": 196,
449
- "s": [0]
446
+ i: { x: [0.445], y: [0.773] },
447
+ o: { x: [0.333], y: [0] },
448
+ t: 196,
449
+ s: [0],
450
450
  },
451
- { "t": 294, "s": [720] }
451
+ { t: 294, s: [720] },
452
452
  ],
453
- "ix": 6
453
+ ix: 6,
454
454
  },
455
- "o": { "a": 0, "k": 100, "ix": 7 },
456
- "sk": { "a": 0, "k": 0, "ix": 4 },
457
- "sa": { "a": 0, "k": 0, "ix": 5 },
458
- "nm": "Transformer "
459
- }
455
+ o: { a: 0, k: 100, ix: 7 },
456
+ sk: { a: 0, k: 0, ix: 4 },
457
+ sa: { a: 0, k: 0, ix: 5 },
458
+ nm: "Transformer ",
459
+ },
460
460
  ],
461
- "nm": "Rectangle 1",
462
- "np": 3,
463
- "cix": 2,
464
- "bm": 0,
465
- "ix": 1,
466
- "mn": "ADBE Vector Group",
467
- "hd": false
468
- }
461
+ nm: "Rectangle 1",
462
+ np: 3,
463
+ cix: 2,
464
+ bm: 0,
465
+ ix: 1,
466
+ mn: "ADBE Vector Group",
467
+ hd: false,
468
+ },
469
469
  ],
470
- "ip": 180,
471
- "op": 300,
472
- "st": 180,
473
- "bm": 0
470
+ ip: 180,
471
+ op: 300,
472
+ st: 180,
473
+ bm: 0,
474
474
  },
475
475
  {
476
- "ddd": 0,
477
- "ind": 5,
478
- "ty": 4,
479
- "nm": "HalfCircle",
480
- "sr": 1,
481
- "ks": {
482
- "o": { "a": 0, "k": 100, "ix": 11 },
483
- "r": {
484
- "a": 1,
485
- "k": [
476
+ ddd: 0,
477
+ ind: 5,
478
+ ty: 4,
479
+ nm: "HalfCircle",
480
+ sr: 1,
481
+ ks: {
482
+ o: { a: 0, k: 100, ix: 11 },
483
+ r: {
484
+ a: 1,
485
+ k: [
486
486
  {
487
- "i": { "x": [0.79], "y": [0.661] },
488
- "o": { "x": [0.279], "y": [0.661] },
489
- "t": 15,
490
- "s": [0]
487
+ i: { x: [0.79], y: [0.661] },
488
+ o: { x: [0.279], y: [0.661] },
489
+ t: 15,
490
+ s: [0],
491
491
  },
492
- { "t": 111, "s": [360] }
492
+ { t: 111, s: [360] },
493
493
  ],
494
- "ix": 10
494
+ ix: 10,
495
495
  },
496
- "p": { "a": 0, "k": [128, 192, 0], "ix": 2, "l": 2 },
497
- "a": { "a": 0, "k": [0, 0, 0], "ix": 1, "l": 2 },
498
- "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
496
+ p: { a: 0, k: [128, 192, 0], ix: 2, l: 2 },
497
+ a: { a: 0, k: [0, 0, 0], ix: 1, l: 2 },
498
+ s: { a: 0, k: [100, 100, 100], ix: 6, l: 2 },
499
499
  },
500
- "ao": 0,
501
- "shapes": [
500
+ ao: 0,
501
+ shapes: [
502
502
  {
503
- "ty": "gr",
504
- "it": [
503
+ ty: "gr",
504
+ it: [
505
505
  {
506
- "ind": 0,
507
- "ty": "sh",
508
- "ix": 1,
509
- "ks": {
510
- "a": 0,
511
- "k": {
512
- "i": [
506
+ ind: 0,
507
+ ty: "sh",
508
+ ix: 1,
509
+ ks: {
510
+ a: 0,
511
+ k: {
512
+ i: [
513
513
  [0.166, -0.033],
514
514
  [0, -9.389],
515
515
  [9.389, 0],
516
- [-0.001, 8.75]
516
+ [-0.001, 8.75],
517
517
  ],
518
- "o": [
518
+ o: [
519
519
  [9.389, 0],
520
520
  [0, 9.389],
521
521
  [0.236, 0.059],
522
- [0.001, -8.75]
522
+ [0.001, -8.75],
523
523
  ],
524
- "v": [
524
+ v: [
525
525
  [0, -17.167],
526
526
  [17, -0.167],
527
527
  [0, 16.833],
528
- [-0.005, -0.229]
528
+ [-0.005, -0.229],
529
529
  ],
530
- "c": true
530
+ c: true,
531
531
  },
532
- "ix": 2
532
+ ix: 2,
533
533
  },
534
- "nm": "Tracé 1",
535
- "mn": "ADBE Vector Shape - Group",
536
- "hd": false
534
+ nm: "Tracé 1",
535
+ mn: "ADBE Vector Shape - Group",
536
+ hd: false,
537
537
  },
538
538
  {
539
- "ty": "fl",
540
- "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
541
- "o": { "a": 0, "k": 100, "ix": 5 },
542
- "r": 1,
543
- "bm": 0,
544
- "nm": "Fond 1",
545
- "mn": "ADBE Vector Graphic - Fill",
546
- "hd": false
539
+ ty: "fl",
540
+ c: { a: 0, k: [1, 1, 1, 1], ix: 4 },
541
+ o: { a: 0, k: 100, ix: 5 },
542
+ r: 1,
543
+ bm: 0,
544
+ nm: "Fond 1",
545
+ mn: "ADBE Vector Graphic - Fill",
546
+ hd: false,
547
547
  },
548
548
  {
549
- "ty": "tr",
550
- "p": { "a": 0, "k": [32, -32], "ix": 2 },
551
- "a": { "a": 0, "k": [6, 0], "ix": 1 },
552
- "s": {
553
- "a": 1,
554
- "k": [
549
+ ty: "tr",
550
+ p: { a: 0, k: [32, -32], ix: 2 },
551
+ a: { a: 0, k: [6, 0], ix: 1 },
552
+ s: {
553
+ a: 1,
554
+ k: [
555
555
  {
556
- "i": { "x": [0.25, 0.25], "y": [0.539, 0.539] },
557
- "o": { "x": [0.809, 0.809], "y": [0.004, 0.004] },
558
- "t": 7,
559
- "s": [0, 0]
556
+ i: { x: [0.25, 0.25], y: [0.539, 0.539] },
557
+ o: { x: [0.809, 0.809], y: [0.004, 0.004] },
558
+ t: 7,
559
+ s: [0, 0],
560
560
  },
561
561
  {
562
- "i": { "x": [0.739, 0.739], "y": [-0.788, -0.788] },
563
- "o": { "x": [0.172, 0.172], "y": [-2.281, -2.281] },
564
- "t": 30,
565
- "s": [199.475, 199.475]
562
+ i: { x: [0.739, 0.739], y: [-0.788, -0.788] },
563
+ o: { x: [0.172, 0.172], y: [-2.281, -2.281] },
564
+ t: 30,
565
+ s: [199.475, 199.475],
566
566
  },
567
567
  {
568
- "i": { "x": [0.712, 0.712], "y": [0.661, 0.661] },
569
- "o": { "x": [0.344, 0.344], "y": [0.145, 0.145] },
570
- "t": 87,
571
- "s": [176.515, 176.515]
568
+ i: { x: [0.712, 0.712], y: [0.661, 0.661] },
569
+ o: { x: [0.344, 0.344], y: [0.145, 0.145] },
570
+ t: 87,
571
+ s: [176.515, 176.515],
572
572
  },
573
- { "t": 114, "s": [0, 0] }
573
+ { t: 114, s: [0, 0] },
574
574
  ],
575
- "ix": 3
575
+ ix: 3,
576
576
  },
577
- "r": { "a": 0, "k": 0, "ix": 6 },
578
- "o": { "a": 0, "k": 100, "ix": 7 },
579
- "sk": { "a": 0, "k": 0, "ix": 4 },
580
- "sa": { "a": 0, "k": 0, "ix": 5 },
581
- "nm": "Transformer "
582
- }
577
+ r: { a: 0, k: 0, ix: 6 },
578
+ o: { a: 0, k: 100, ix: 7 },
579
+ sk: { a: 0, k: 0, ix: 4 },
580
+ sa: { a: 0, k: 0, ix: 5 },
581
+ nm: "Transformer ",
582
+ },
583
583
  ],
584
- "nm": "Ellipse 1",
585
- "np": 3,
586
- "cix": 2,
587
- "bm": 0,
588
- "ix": 1,
589
- "mn": "ADBE Vector Group",
590
- "hd": false
591
- }
584
+ nm: "Ellipse 1",
585
+ np: 3,
586
+ cix: 2,
587
+ bm: 0,
588
+ ix: 1,
589
+ mn: "ADBE Vector Group",
590
+ hd: false,
591
+ },
592
592
  ],
593
- "ip": 0,
594
- "op": 120,
595
- "st": 0,
596
- "bm": 0
593
+ ip: 0,
594
+ op: 120,
595
+ st: 0,
596
+ bm: 0,
597
597
  },
598
598
  {
599
- "ddd": 0,
600
- "ind": 6,
601
- "ty": 4,
602
- "nm": "Rectangle",
603
- "sr": 1,
604
- "ks": {
605
- "o": { "a": 0, "k": 100, "ix": 11 },
606
- "r": {
607
- "a": 1,
608
- "k": [
599
+ ddd: 0,
600
+ ind: 6,
601
+ ty: 4,
602
+ nm: "Rectangle",
603
+ sr: 1,
604
+ ks: {
605
+ o: { a: 0, k: 100, ix: 11 },
606
+ r: {
607
+ a: 1,
608
+ k: [
609
609
  {
610
- "i": { "x": [0.917], "y": [0.724] },
611
- "o": { "x": [0.207], "y": [0.597] },
612
- "t": 15,
613
- "s": [0]
610
+ i: { x: [0.917], y: [0.724] },
611
+ o: { x: [0.207], y: [0.597] },
612
+ t: 15,
613
+ s: [0],
614
614
  },
615
- { "t": 110, "s": [360] }
615
+ { t: 110, s: [360] },
616
616
  ],
617
- "ix": 10
617
+ ix: 10,
618
618
  },
619
- "p": { "a": 0, "k": [200, 146, 0], "ix": 2, "l": 2 },
620
- "a": { "a": 0, "k": [0, 0, 0], "ix": 1, "l": 2 },
621
- "s": { "a": 0, "k": [100, 50, 100], "ix": 6, "l": 2 }
619
+ p: { a: 0, k: [200, 146, 0], ix: 2, l: 2 },
620
+ a: { a: 0, k: [0, 0, 0], ix: 1, l: 2 },
621
+ s: { a: 0, k: [100, 50, 100], ix: 6, l: 2 },
622
622
  },
623
- "ao": 0,
624
- "shapes": [
623
+ ao: 0,
624
+ shapes: [
625
625
  {
626
- "ty": "gr",
627
- "it": [
626
+ ty: "gr",
627
+ it: [
628
628
  {
629
- "ty": "rc",
630
- "d": 1,
631
- "s": { "a": 0, "k": [50, 50], "ix": 2 },
632
- "p": { "a": 0, "k": [0, 0], "ix": 3 },
633
- "r": { "a": 0, "k": 0, "ix": 4 },
634
- "nm": "Rectangle Path 1",
635
- "mn": "ADBE Vector Shape - Rect",
636
- "hd": false
629
+ ty: "rc",
630
+ d: 1,
631
+ s: { a: 0, k: [50, 50], ix: 2 },
632
+ p: { a: 0, k: [0, 0], ix: 3 },
633
+ r: { a: 0, k: 0, ix: 4 },
634
+ nm: "Rectangle Path 1",
635
+ mn: "ADBE Vector Shape - Rect",
636
+ hd: false,
637
637
  },
638
638
  {
639
- "ty": "fl",
640
- "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
641
- "o": { "a": 0, "k": 100, "ix": 5 },
642
- "r": 1,
643
- "bm": 0,
644
- "nm": "Fill 1",
645
- "mn": "ADBE Vector Graphic - Fill",
646
- "hd": false
639
+ ty: "fl",
640
+ c: { a: 0, k: [1, 1, 1, 1], ix: 4 },
641
+ o: { a: 0, k: 100, ix: 5 },
642
+ r: 1,
643
+ bm: 0,
644
+ nm: "Fill 1",
645
+ mn: "ADBE Vector Graphic - Fill",
646
+ hd: false,
647
647
  },
648
648
  {
649
- "ty": "tr",
650
- "p": { "a": 0, "k": [-44, 30], "ix": 2 },
651
- "a": { "a": 0, "k": [0, 0], "ix": 1 },
652
- "s": {
653
- "a": 1,
654
- "k": [
649
+ ty: "tr",
650
+ p: { a: 0, k: [-44, 30], ix: 2 },
651
+ a: { a: 0, k: [0, 0], ix: 1 },
652
+ s: {
653
+ a: 1,
654
+ k: [
655
655
  {
656
- "i": { "x": [0.479, 0.479], "y": [0.879, 0.879] },
657
- "o": { "x": [0.033, 0.033], "y": [0.178, 0.178] },
658
- "t": 15,
659
- "s": [0, 0]
656
+ i: { x: [0.479, 0.479], y: [0.879, 0.879] },
657
+ o: { x: [0.033, 0.033], y: [0.178, 0.178] },
658
+ t: 15,
659
+ s: [0, 0],
660
660
  },
661
661
  {
662
- "i": { "x": [0.837, 0.837], "y": [12.278, 12.278] },
663
- "o": { "x": [0.277, 0.277], "y": [22.912, 22.912] },
664
- "t": 33,
665
- "s": [116.694, 116.694]
662
+ i: { x: [0.837, 0.837], y: [12.278, 12.278] },
663
+ o: { x: [0.277, 0.277], y: [22.912, 22.912] },
664
+ t: 33,
665
+ s: [116.694, 116.694],
666
666
  },
667
667
  {
668
- "i": { "x": [0.913, 0.913], "y": [0.759, 0.759] },
669
- "o": { "x": [0.542, 0.542], "y": [0.128, 0.128] },
670
- "t": 88,
671
- "s": [116.694, 116.694]
668
+ i: { x: [0.913, 0.913], y: [0.759, 0.759] },
669
+ o: { x: [0.542, 0.542], y: [0.128, 0.128] },
670
+ t: 88,
671
+ s: [116.694, 116.694],
672
672
  },
673
- { "t": 110, "s": [0, 0] }
673
+ { t: 110, s: [0, 0] },
674
674
  ],
675
- "ix": 3
675
+ ix: 3,
676
676
  },
677
- "r": { "a": 0, "k": 0, "ix": 6 },
678
- "o": { "a": 0, "k": 100, "ix": 7 },
679
- "sk": { "a": 0, "k": 0, "ix": 4 },
680
- "sa": { "a": 0, "k": 0, "ix": 5 },
681
- "nm": "Transformer "
682
- }
677
+ r: { a: 0, k: 0, ix: 6 },
678
+ o: { a: 0, k: 100, ix: 7 },
679
+ sk: { a: 0, k: 0, ix: 4 },
680
+ sa: { a: 0, k: 0, ix: 5 },
681
+ nm: "Transformer ",
682
+ },
683
683
  ],
684
- "nm": "Rectangle 1",
685
- "np": 3,
686
- "cix": 2,
687
- "bm": 0,
688
- "ix": 1,
689
- "mn": "ADBE Vector Group",
690
- "hd": false
691
- }
684
+ nm: "Rectangle 1",
685
+ np: 3,
686
+ cix: 2,
687
+ bm: 0,
688
+ ix: 1,
689
+ mn: "ADBE Vector Group",
690
+ hd: false,
691
+ },
692
692
  ],
693
- "ip": 0,
694
- "op": 120,
695
- "st": 0,
696
- "bm": 0
693
+ ip: 0,
694
+ op: 120,
695
+ st: 0,
696
+ bm: 0,
697
697
  },
698
698
  {
699
- "ddd": 0,
700
- "ind": 7,
701
- "ty": 4,
702
- "nm": "Square",
703
- "sr": 1,
704
- "ks": {
705
- "o": { "a": 0, "k": 100, "ix": 11 },
706
- "r": {
707
- "a": 1,
708
- "k": [
699
+ ddd: 0,
700
+ ind: 7,
701
+ ty: 4,
702
+ nm: "Square",
703
+ sr: 1,
704
+ ks: {
705
+ o: { a: 0, k: 100, ix: 11 },
706
+ r: {
707
+ a: 1,
708
+ k: [
709
709
  {
710
- "i": { "x": [0.868], "y": [0.685] },
711
- "o": { "x": [0.161], "y": [0.373] },
712
- "t": 19,
713
- "s": [0]
710
+ i: { x: [0.868], y: [0.685] },
711
+ o: { x: [0.161], y: [0.373] },
712
+ t: 19,
713
+ s: [0],
714
714
  },
715
- { "t": 114, "s": [-360] }
715
+ { t: 114, s: [-360] },
716
716
  ],
717
- "ix": 10
717
+ ix: 10,
718
718
  },
719
- "p": { "a": 0, "k": [120, 110, 0], "ix": 2, "l": 2 },
720
- "a": { "a": 0, "k": [0, 0, 0], "ix": 1, "l": 2 },
721
- "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
719
+ p: { a: 0, k: [120, 110, 0], ix: 2, l: 2 },
720
+ a: { a: 0, k: [0, 0, 0], ix: 1, l: 2 },
721
+ s: { a: 0, k: [100, 100, 100], ix: 6, l: 2 },
722
722
  },
723
- "ao": 0,
724
- "shapes": [
723
+ ao: 0,
724
+ shapes: [
725
725
  {
726
- "ty": "gr",
727
- "it": [
726
+ ty: "gr",
727
+ it: [
728
728
  {
729
- "ty": "rc",
730
- "d": 1,
731
- "s": { "a": 0, "k": [56, 56], "ix": 2 },
732
- "p": { "a": 0, "k": [0, 0], "ix": 3 },
733
- "r": { "a": 0, "k": 0, "ix": 4 },
734
- "nm": "Rectangle Path 1",
735
- "mn": "ADBE Vector Shape - Rect",
736
- "hd": false
729
+ ty: "rc",
730
+ d: 1,
731
+ s: { a: 0, k: [56, 56], ix: 2 },
732
+ p: { a: 0, k: [0, 0], ix: 3 },
733
+ r: { a: 0, k: 0, ix: 4 },
734
+ nm: "Rectangle Path 1",
735
+ mn: "ADBE Vector Shape - Rect",
736
+ hd: false,
737
737
  },
738
738
  {
739
- "ty": "fl",
740
- "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
741
- "o": { "a": 0, "k": 100, "ix": 5 },
742
- "r": 1,
743
- "bm": 0,
744
- "nm": "Fill 1",
745
- "mn": "ADBE Vector Graphic - Fill",
746
- "hd": false
739
+ ty: "fl",
740
+ c: { a: 0, k: [1, 1, 1, 1], ix: 4 },
741
+ o: { a: 0, k: 100, ix: 5 },
742
+ r: 1,
743
+ bm: 0,
744
+ nm: "Fill 1",
745
+ mn: "ADBE Vector Graphic - Fill",
746
+ hd: false,
747
747
  },
748
748
  {
749
- "ty": "tr",
750
- "p": { "a": 0, "k": [32, 48], "ix": 2 },
751
- "a": { "a": 0, "k": [0, 0], "ix": 1 },
752
- "s": {
753
- "a": 1,
754
- "k": [
749
+ ty: "tr",
750
+ p: { a: 0, k: [32, 48], ix: 2 },
751
+ a: { a: 0, k: [0, 0], ix: 1 },
752
+ s: {
753
+ a: 1,
754
+ k: [
755
755
  {
756
- "i": { "x": [0.373, 0.373], "y": [0.837, 0.837] },
757
- "o": { "x": [0.671, 0.671], "y": [0, 0] },
758
- "t": 11,
759
- "s": [0, 0]
756
+ i: { x: [0.373, 0.373], y: [0.837, 0.837] },
757
+ o: { x: [0.671, 0.671], y: [0, 0] },
758
+ t: 11,
759
+ s: [0, 0],
760
760
  },
761
761
  {
762
- "i": { "x": [0.841, 0.841], "y": [0.513, 0.513] },
763
- "o": { "x": [0.354, 0.354], "y": [-0.821, -0.821] },
764
- "t": 40,
765
- "s": [100, 100]
762
+ i: { x: [0.841, 0.841], y: [0.513, 0.513] },
763
+ o: { x: [0.354, 0.354], y: [-0.821, -0.821] },
764
+ t: 40,
765
+ s: [100, 100],
766
766
  },
767
767
  {
768
- "i": { "x": [0.932, 0.932], "y": [0.76, 0.76] },
769
- "o": { "x": [0.366, 0.366], "y": [0.16, 0.16] },
770
- "t": 83.424,
771
- "s": [83.194, 83.194]
768
+ i: { x: [0.932, 0.932], y: [0.76, 0.76] },
769
+ o: { x: [0.366, 0.366], y: [0.16, 0.16] },
770
+ t: 83.424,
771
+ s: [83.194, 83.194],
772
772
  },
773
- { "t": 114, "s": [0, 0] }
773
+ { t: 114, s: [0, 0] },
774
774
  ],
775
- "ix": 3
775
+ ix: 3,
776
776
  },
777
- "r": {
778
- "a": 1,
779
- "k": [
777
+ r: {
778
+ a: 1,
779
+ k: [
780
780
  {
781
- "i": { "x": [0.445], "y": [0.773] },
782
- "o": { "x": [0.333], "y": [0] },
783
- "t": 16,
784
- "s": [0]
781
+ i: { x: [0.445], y: [0.773] },
782
+ o: { x: [0.333], y: [0] },
783
+ t: 16,
784
+ s: [0],
785
785
  },
786
- { "t": 114, "s": [720] }
786
+ { t: 114, s: [720] },
787
787
  ],
788
- "ix": 6
788
+ ix: 6,
789
789
  },
790
- "o": { "a": 0, "k": 100, "ix": 7 },
791
- "sk": { "a": 0, "k": 0, "ix": 4 },
792
- "sa": { "a": 0, "k": 0, "ix": 5 },
793
- "nm": "Transformer "
794
- }
790
+ o: { a: 0, k: 100, ix: 7 },
791
+ sk: { a: 0, k: 0, ix: 4 },
792
+ sa: { a: 0, k: 0, ix: 5 },
793
+ nm: "Transformer ",
794
+ },
795
795
  ],
796
- "nm": "Rectangle 1",
797
- "np": 3,
798
- "cix": 2,
799
- "bm": 0,
800
- "ix": 1,
801
- "mn": "ADBE Vector Group",
802
- "hd": false
803
- }
796
+ nm: "Rectangle 1",
797
+ np: 3,
798
+ cix: 2,
799
+ bm: 0,
800
+ ix: 1,
801
+ mn: "ADBE Vector Group",
802
+ hd: false,
803
+ },
804
804
  ],
805
- "ip": 0,
806
- "op": 120,
807
- "st": 0,
808
- "bm": 0
805
+ ip: 0,
806
+ op: 120,
807
+ st: 0,
808
+ bm: 0,
809
809
  },
810
810
  {
811
- "ddd": 0,
812
- "ind": 8,
813
- "ty": 4,
814
- "nm": "Triangle",
815
- "sr": 1,
816
- "ks": {
817
- "o": { "a": 0, "k": 100, "ix": 11 },
818
- "r": {
819
- "a": 1,
820
- "k": [
811
+ ddd: 0,
812
+ ind: 8,
813
+ ty: 4,
814
+ nm: "Triangle",
815
+ sr: 1,
816
+ ks: {
817
+ o: { a: 0, k: 100, ix: 11 },
818
+ r: {
819
+ a: 1,
820
+ k: [
821
821
  {
822
- "i": { "x": [0.667], "y": [1] },
823
- "o": { "x": [0.769], "y": [0] },
824
- "t": 9,
825
- "s": [0]
822
+ i: { x: [0.667], y: [1] },
823
+ o: { x: [0.769], y: [0] },
824
+ t: 9,
825
+ s: [0],
826
826
  },
827
- { "t": 120, "s": [360] }
827
+ { t: 120, s: [360] },
828
828
  ],
829
- "ix": 10
829
+ ix: 10,
830
830
  },
831
- "p": { "a": 0, "k": [202, 217, 0], "ix": 2, "l": 2 },
832
- "a": { "a": 0, "k": [-131, 107, 0], "ix": 1, "l": 2 },
833
- "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
831
+ p: { a: 0, k: [202, 217, 0], ix: 2, l: 2 },
832
+ a: { a: 0, k: [-131, 107, 0], ix: 1, l: 2 },
833
+ s: { a: 0, k: [100, 100, 100], ix: 6, l: 2 },
834
834
  },
835
- "ao": 0,
836
- "shapes": [
835
+ ao: 0,
836
+ shapes: [
837
837
  {
838
- "ty": "gr",
839
- "it": [
838
+ ty: "gr",
839
+ it: [
840
840
  {
841
- "ty": "sr",
842
- "sy": 2,
843
- "d": 1,
844
- "pt": { "a": 0, "k": 3, "ix": 3 },
845
- "p": { "a": 0, "k": [0, 0], "ix": 4 },
846
- "r": { "a": 0, "k": 90, "ix": 5 },
847
- "or": { "a": 0, "k": 28, "ix": 7 },
848
- "os": { "a": 0, "k": 0, "ix": 9 },
849
- "ix": 1,
850
- "nm": "Polystar Path 1",
851
- "mn": "ADBE Vector Shape - Star",
852
- "hd": false
841
+ ty: "sr",
842
+ sy: 2,
843
+ d: 1,
844
+ pt: { a: 0, k: 3, ix: 3 },
845
+ p: { a: 0, k: [0, 0], ix: 4 },
846
+ r: { a: 0, k: 90, ix: 5 },
847
+ or: { a: 0, k: 28, ix: 7 },
848
+ os: { a: 0, k: 0, ix: 9 },
849
+ ix: 1,
850
+ nm: "Polystar Path 1",
851
+ mn: "ADBE Vector Shape - Star",
852
+ hd: false,
853
853
  },
854
854
  {
855
- "ty": "fl",
856
- "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
857
- "o": { "a": 0, "k": 100, "ix": 5 },
858
- "r": 1,
859
- "bm": 0,
860
- "nm": "Fill 1",
861
- "mn": "ADBE Vector Graphic - Fill",
862
- "hd": false
855
+ ty: "fl",
856
+ c: { a: 0, k: [1, 1, 1, 1], ix: 4 },
857
+ o: { a: 0, k: 100, ix: 5 },
858
+ r: 1,
859
+ bm: 0,
860
+ nm: "Fill 1",
861
+ mn: "ADBE Vector Graphic - Fill",
862
+ hd: false,
863
863
  },
864
864
  {
865
- "ty": "tr",
866
- "p": { "a": 0, "k": [-165.273, 52.906], "ix": 2 },
867
- "a": { "a": 0, "k": [0, 0], "ix": 1 },
868
- "s": {
869
- "a": 1,
870
- "k": [
865
+ ty: "tr",
866
+ p: { a: 0, k: [-165.273, 52.906], ix: 2 },
867
+ a: { a: 0, k: [0, 0], ix: 1 },
868
+ s: {
869
+ a: 1,
870
+ k: [
871
871
  {
872
- "i": { "x": [0.815, 0.815], "y": [0.948, 0.948] },
873
- "o": { "x": [0.102, 0.102], "y": [0.316, 0.316] },
874
- "t": 17,
875
- "s": [0, 0]
872
+ i: { x: [0.815, 0.815], y: [0.948, 0.948] },
873
+ o: { x: [0.102, 0.102], y: [0.316, 0.316] },
874
+ t: 17,
875
+ s: [0, 0],
876
876
  },
877
877
  {
878
- "i": { "x": [0.847, 0.847], "y": [-1.026, -1.026] },
879
- "o": { "x": [0.307, 0.307], "y": [-2.711, -2.711] },
880
- "t": 41,
881
- "s": [100, 100]
878
+ i: { x: [0.847, 0.847], y: [-1.026, -1.026] },
879
+ o: { x: [0.307, 0.307], y: [-2.711, -2.711] },
880
+ t: 41,
881
+ s: [100, 100],
882
882
  },
883
883
  {
884
- "i": { "x": [0.855, 0.855], "y": [0.783, 0.783] },
885
- "o": { "x": [0.546, 0.546], "y": [0.255, 0.255] },
886
- "t": 82,
887
- "s": [94.553, 94.553]
884
+ i: { x: [0.855, 0.855], y: [0.783, 0.783] },
885
+ o: { x: [0.546, 0.546], y: [0.255, 0.255] },
886
+ t: 82,
887
+ s: [94.553, 94.553],
888
888
  },
889
- { "t": 107, "s": [0, 0] }
889
+ { t: 107, s: [0, 0] },
890
890
  ],
891
- "ix": 3
891
+ ix: 3,
892
892
  },
893
- "r": {
894
- "a": 1,
895
- "k": [
893
+ r: {
894
+ a: 1,
895
+ k: [
896
896
  {
897
- "i": { "x": [0.667], "y": [1] },
898
- "o": { "x": [0.227], "y": [0.129] },
899
- "t": 13,
900
- "s": [0]
897
+ i: { x: [0.667], y: [1] },
898
+ o: { x: [0.227], y: [0.129] },
899
+ t: 13,
900
+ s: [0],
901
901
  },
902
- { "t": 87, "s": [360] }
902
+ { t: 87, s: [360] },
903
903
  ],
904
- "ix": 6
904
+ ix: 6,
905
905
  },
906
- "o": { "a": 0, "k": 100, "ix": 7 },
907
- "sk": { "a": 0, "k": 0, "ix": 4 },
908
- "sa": { "a": 0, "k": 0, "ix": 5 },
909
- "nm": "Transformer "
910
- }
906
+ o: { a: 0, k: 100, ix: 7 },
907
+ sk: { a: 0, k: 0, ix: 4 },
908
+ sa: { a: 0, k: 0, ix: 5 },
909
+ nm: "Transformer ",
910
+ },
911
911
  ],
912
- "nm": "Polystar 1",
913
- "np": 3,
914
- "cix": 2,
915
- "bm": 0,
916
- "ix": 1,
917
- "mn": "ADBE Vector Group",
918
- "hd": false
919
- }
912
+ nm: "Polystar 1",
913
+ np: 3,
914
+ cix: 2,
915
+ bm: 0,
916
+ ix: 1,
917
+ mn: "ADBE Vector Group",
918
+ hd: false,
919
+ },
920
920
  ],
921
- "ip": 0,
922
- "op": 120,
923
- "st": 0,
924
- "bm": 0
921
+ ip: 0,
922
+ op: 120,
923
+ st: 0,
924
+ bm: 0,
925
925
  },
926
926
  {
927
- "ddd": 0,
928
- "ind": 9,
929
- "ty": 4,
930
- "nm": "Background",
931
- "sr": 1,
932
- "ks": {
933
- "o": { "a": 0, "k": 100, "ix": 11 },
934
- "r": { "a": 0, "k": 0, "ix": 10 },
935
- "p": { "a": 0, "k": [160, 160, 0], "ix": 2, "l": 2 },
936
- "a": { "a": 0, "k": [0, 0, 0], "ix": 1, "l": 2 },
937
- "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
927
+ ddd: 0,
928
+ ind: 9,
929
+ ty: 4,
930
+ nm: "Background",
931
+ sr: 1,
932
+ ks: {
933
+ o: { a: 0, k: 100, ix: 11 },
934
+ r: { a: 0, k: 0, ix: 10 },
935
+ p: { a: 0, k: [160, 160, 0], ix: 2, l: 2 },
936
+ a: { a: 0, k: [0, 0, 0], ix: 1, l: 2 },
937
+ s: { a: 0, k: [100, 100, 100], ix: 6, l: 2 },
938
938
  },
939
- "ao": 0,
940
- "shapes": [
939
+ ao: 0,
940
+ shapes: [
941
941
  {
942
- "ty": "gr",
943
- "it": [
942
+ ty: "gr",
943
+ it: [
944
944
  {
945
- "d": 1,
946
- "ty": "el",
947
- "s": {
948
- "a": 1,
949
- "k": [
945
+ d: 1,
946
+ ty: "el",
947
+ s: {
948
+ a: 1,
949
+ k: [
950
950
  {
951
- "i": { "x": [0.986, 0.986], "y": [0.953, 0.953] },
952
- "o": { "x": [0.565, 0.565], "y": [-0.002, -0.002] },
953
- "t": 8,
954
- "s": [1, 1]
951
+ i: { x: [0.986, 0.986], y: [0.953, 0.953] },
952
+ o: { x: [0.565, 0.565], y: [-0.002, -0.002] },
953
+ t: 8,
954
+ s: [1, 1],
955
955
  },
956
956
  {
957
- "i": { "x": [0.678, 0.678], "y": [2.443, 2.443] },
958
- "o": { "x": [0.16, 0.16], "y": [6.42, 6.42] },
959
- "t": 18,
960
- "s": [96, 96]
957
+ i: { x: [0.678, 0.678], y: [2.443, 2.443] },
958
+ o: { x: [0.16, 0.16], y: [6.42, 6.42] },
959
+ t: 18,
960
+ s: [96, 96],
961
961
  },
962
962
  {
963
- "i": { "x": [0.667, 0.667], "y": [0.638, 0.638] },
964
- "o": { "x": [0.234, 0.234], "y": [0.823, 0.823] },
965
- "t": 47,
966
- "s": [118.686, 118.686]
963
+ i: { x: [0.667, 0.667], y: [0.638, 0.638] },
964
+ o: { x: [0.234, 0.234], y: [0.823, 0.823] },
965
+ t: 47,
966
+ s: [118.686, 118.686],
967
967
  },
968
968
  {
969
- "i": { "x": [0.886, 0.886], "y": [0.64, 0.64] },
970
- "o": { "x": [0.558, 0.558], "y": [0.203, 0.203] },
971
- "t": 97,
972
- "s": [68.984, 68.984]
969
+ i: { x: [0.886, 0.886], y: [0.64, 0.64] },
970
+ o: { x: [0.558, 0.558], y: [0.203, 0.203] },
971
+ t: 97,
972
+ s: [68.984, 68.984],
973
973
  },
974
974
  {
975
- "i": { "x": [0.833, 0.833], "y": [0.833, 0.833] },
976
- "o": { "x": [0.167, 0.167], "y": [0.167, 0.167] },
977
- "t": 120,
978
- "s": [1, 1]
975
+ i: { x: [0.833, 0.833], y: [0.833, 0.833] },
976
+ o: { x: [0.167, 0.167], y: [0.167, 0.167] },
977
+ t: 120,
978
+ s: [1, 1],
979
979
  },
980
980
  {
981
- "i": { "x": [0.986, 0.986], "y": [0.953, 0.953] },
982
- "o": { "x": [0.565, 0.565], "y": [-0.002, -0.002] },
983
- "t": 180,
984
- "s": [1, 1]
981
+ i: { x: [0.986, 0.986], y: [0.953, 0.953] },
982
+ o: { x: [0.565, 0.565], y: [-0.002, -0.002] },
983
+ t: 180,
984
+ s: [1, 1],
985
985
  },
986
986
  {
987
- "i": { "x": [0.678, 0.678], "y": [2.443, 2.443] },
988
- "o": { "x": [0.16, 0.16], "y": [6.42, 6.42] },
989
- "t": 190,
990
- "s": [96, 96]
987
+ i: { x: [0.678, 0.678], y: [2.443, 2.443] },
988
+ o: { x: [0.16, 0.16], y: [6.42, 6.42] },
989
+ t: 190,
990
+ s: [96, 96],
991
991
  },
992
992
  {
993
- "i": { "x": [0.667, 0.667], "y": [0.638, 0.638] },
994
- "o": { "x": [0.234, 0.234], "y": [0.823, 0.823] },
995
- "t": 219,
996
- "s": [118.686, 118.686]
993
+ i: { x: [0.667, 0.667], y: [0.638, 0.638] },
994
+ o: { x: [0.234, 0.234], y: [0.823, 0.823] },
995
+ t: 219,
996
+ s: [118.686, 118.686],
997
997
  },
998
998
  {
999
- "i": { "x": [0.886, 0.886], "y": [0.64, 0.64] },
1000
- "o": { "x": [0.558, 0.558], "y": [0.203, 0.203] },
1001
- "t": 269,
1002
- "s": [68.984, 68.984]
999
+ i: { x: [0.886, 0.886], y: [0.64, 0.64] },
1000
+ o: { x: [0.558, 0.558], y: [0.203, 0.203] },
1001
+ t: 269,
1002
+ s: [68.984, 68.984],
1003
1003
  },
1004
- { "t": 292, "s": [1, 1] }
1004
+ { t: 292, s: [1, 1] },
1005
1005
  ],
1006
- "ix": 2
1006
+ ix: 2,
1007
1007
  },
1008
- "p": { "a": 0, "k": [0, 0], "ix": 3 },
1009
- "nm": "Tracé d'ellipse 1",
1010
- "mn": "ADBE Vector Shape - Ellipse",
1011
- "hd": false
1008
+ p: { a: 0, k: [0, 0], ix: 3 },
1009
+ nm: "Tracé d'ellipse 1",
1010
+ mn: "ADBE Vector Shape - Ellipse",
1011
+ hd: false,
1012
1012
  },
1013
1013
  {
1014
- "ty": "st",
1015
- "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 3 },
1016
- "o": { "a": 0, "k": 100, "ix": 4 },
1017
- "w": { "a": 0, "k": 0, "ix": 5 },
1018
- "lc": 1,
1019
- "lj": 1,
1020
- "ml": 4,
1021
- "bm": 0,
1022
- "nm": "Contour 1",
1023
- "mn": "ADBE Vector Graphic - Stroke",
1024
- "hd": false
1014
+ ty: "st",
1015
+ c: { a: 0, k: [1, 1, 1, 1], ix: 3 },
1016
+ o: { a: 0, k: 100, ix: 4 },
1017
+ w: { a: 0, k: 0, ix: 5 },
1018
+ lc: 1,
1019
+ lj: 1,
1020
+ ml: 4,
1021
+ bm: 0,
1022
+ nm: "Contour 1",
1023
+ mn: "ADBE Vector Graphic - Stroke",
1024
+ hd: false,
1025
1025
  },
1026
1026
  {
1027
- "ty": "fl",
1028
- "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
1029
- "o": { "a": 0, "k": 100, "ix": 5 },
1030
- "r": 1,
1031
- "bm": 0,
1032
- "nm": "Fond 1",
1033
- "mn": "ADBE Vector Graphic - Fill",
1034
- "hd": false
1027
+ ty: "fl",
1028
+ c: { a: 0, k: [1, 1, 1, 1], ix: 4 },
1029
+ o: { a: 0, k: 100, ix: 5 },
1030
+ r: 1,
1031
+ bm: 0,
1032
+ nm: "Fond 1",
1033
+ mn: "ADBE Vector Graphic - Fill",
1034
+ hd: false,
1035
1035
  },
1036
1036
  {
1037
- "ty": "tr",
1038
- "p": { "a": 0, "k": [0, 0], "ix": 2 },
1039
- "a": { "a": 0, "k": [0, 0], "ix": 1 },
1040
- "s": { "a": 0, "k": [100, 100], "ix": 3 },
1041
- "r": { "a": 0, "k": 0, "ix": 6 },
1042
- "o": { "a": 0, "k": 50, "ix": 7 },
1043
- "sk": { "a": 0, "k": 0, "ix": 4 },
1044
- "sa": { "a": 0, "k": 0, "ix": 5 },
1045
- "nm": "Transformer "
1046
- }
1037
+ ty: "tr",
1038
+ p: { a: 0, k: [0, 0], ix: 2 },
1039
+ a: { a: 0, k: [0, 0], ix: 1 },
1040
+ s: { a: 0, k: [100, 100], ix: 3 },
1041
+ r: { a: 0, k: 0, ix: 6 },
1042
+ o: { a: 0, k: 50, ix: 7 },
1043
+ sk: { a: 0, k: 0, ix: 4 },
1044
+ sa: { a: 0, k: 0, ix: 5 },
1045
+ nm: "Transformer ",
1046
+ },
1047
1047
  ],
1048
- "nm": "Ellipse 1",
1049
- "np": 3,
1050
- "cix": 2,
1051
- "bm": 0,
1052
- "ix": 1,
1053
- "mn": "ADBE Vector Group",
1054
- "hd": false
1055
- }
1048
+ nm: "Ellipse 1",
1049
+ np: 3,
1050
+ cix: 2,
1051
+ bm: 0,
1052
+ ix: 1,
1053
+ mn: "ADBE Vector Group",
1054
+ hd: false,
1055
+ },
1056
1056
  ],
1057
- "ip": 0,
1058
- "op": 375,
1059
- "st": 0,
1060
- "bm": 0
1061
- }
1057
+ ip: 0,
1058
+ op: 375,
1059
+ st: 0,
1060
+ bm: 0,
1061
+ },
1062
1062
  ],
1063
- "markers": []
1063
+ markers: [],
1064
1064
  };
1065
1065
 
1066
1066
  export default animation;