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