@123usmanhaider321/ui 0.1.6 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (545) hide show
  1. package/README.md +416 -31
  2. package/dist/images/icon/1LINK.svg +50 -0
  3. package/dist/images/icon/CreditCard.svg +83 -0
  4. package/dist/images/icon/Easypaisa.png +0 -0
  5. package/dist/images/icon/MobileWallet.png +0 -0
  6. package/dist/images/icon/Raast-Logo.png +0 -0
  7. package/dist/images/icon/VISA.png +0 -0
  8. package/dist/images/icon/add-circle-1.svg +5 -0
  9. package/dist/images/icon/check-circle-broken.svg +3 -0
  10. package/dist/images/icon/close-circle.svg +5 -0
  11. package/dist/images/icon/jazzcash.png +0 -0
  12. package/dist/images/icon/loading_icon.json +3347 -0
  13. package/dist/images/icon/mastercard-logo.webp +0 -0
  14. package/dist/images/icon/paymo.jpeg +0 -0
  15. package/dist/images/icon/preview-svgrepo-com.svg +36 -0
  16. package/dist/images/icon/trash.svg +7 -0
  17. package/dist/images/icon/unionpay-logo.svg +9 -0
  18. package/dist/index-87FQZHOs.js +11119 -0
  19. package/dist/index-87FQZHOs.js.map +1 -0
  20. package/dist/index-Tl9g213f.js +60475 -0
  21. package/dist/index-Tl9g213f.js.map +1 -0
  22. package/dist/index.d.ts +1 -10
  23. package/dist/index.es-CpgTaa1Y.js +16734 -0
  24. package/dist/index.es-CpgTaa1Y.js.map +1 -0
  25. package/dist/index.js +40 -12
  26. package/dist/index.js.map +1 -1
  27. package/dist/loading_icon-n5H5dQBl.js +3375 -0
  28. package/dist/loading_icon-n5H5dQBl.js.map +1 -0
  29. package/dist/src/components/Alert/ErrorAlert.d.ts +6 -0
  30. package/dist/src/components/Alert/SuccessAlert.d.ts +6 -0
  31. package/dist/{components → src/components}/FormBuilder/DiscountInput.d.ts +3 -6
  32. package/dist/{components → src/components}/FormBuilder/FormBuilder.d.ts +2 -11
  33. package/dist/{components → src/components}/FormBuilder/QuestionCard.d.ts +0 -5
  34. package/dist/{components → src/components}/FormBuilder/QuestionEditor.d.ts +0 -5
  35. package/dist/{components → src/components}/FormBuilder/SortableQuestionList.d.ts +0 -5
  36. package/dist/src/components/FormBuilder/questionIcons.d.ts +5 -0
  37. package/dist/{components/EventAddForm → src/components/NewAddEvent}/AddEventLayout.d.ts +2 -1
  38. package/dist/{components/EventAddForm → src/components/NewAddEvent}/AddEventStepper.d.ts +2 -2
  39. package/dist/{components/EventAddForm → src/components/NewAddEvent}/common/ConfirmationModal.d.ts +1 -1
  40. package/dist/src/components/NewAddEvent/components/EventSubmissionConfirmationModal.d.ts +14 -0
  41. package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/StepTwo/TicketTierSection.d.ts +1 -1
  42. package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/TicketTierForm.d.ts +1 -1
  43. package/dist/{components/EventAddForm → src/components/NewAddEvent}/hooks/useStepperForm.d.ts +22 -22
  44. package/dist/{components/EventAddForm → src/components/NewAddEvent}/hooks/useTicketTierForm.d.ts +63 -15
  45. package/dist/src/components/NewAddEvent/schemas/step1.d.ts +211 -0
  46. package/dist/src/components/NewAddEvent/schemas/step2.d.ts +411 -0
  47. package/dist/{components/EventAddForm → src/components/NewAddEvent}/schemas/utils.d.ts +8 -2
  48. package/dist/{components/EventAddForm → src/components/NewAddEvent}/steps/IndividualFormStep.d.ts +1 -1
  49. package/dist/{components/EventAddForm → src/components/NewAddEvent}/steps/SocialProfilesStep.d.ts +1 -1
  50. package/dist/{components/EventAddForm → src/components/NewAddEvent}/steps/TeamFormStep.d.ts +1 -1
  51. package/dist/src/components/Spinner/spinner.d.ts +4 -0
  52. package/dist/src/components/TicketlyUIProvider.d.ts +35 -0
  53. package/dist/src/components/common/Loader/index.d.ts +8 -0
  54. package/dist/src/components/common/Modals/ConfirmationModal.d.ts +7 -0
  55. package/dist/{components/FormInput → src/components/ui}/FormInput.d.ts +1 -1
  56. package/dist/src/components/ui/Loader.d.ts +4 -0
  57. package/dist/{components/Button/Button.d.ts → src/components/ui/button.d.ts} +1 -1
  58. package/dist/src/index.d.ts +10 -0
  59. package/dist/{lib → src/lib}/actions.d.ts +0 -126
  60. package/dist/src/lib/dom-utils.d.ts +2 -0
  61. package/dist/src/lib/storage-utils.d.ts +5 -0
  62. package/dist/src/lib/types.d.ts +258 -0
  63. package/dist/src/redux/baseQuery.d.ts +16 -0
  64. package/dist/{services → src/redux/features}/eventApi.d.ts +1053 -1745
  65. package/dist/src/redux/features/globalSlice.d.ts +17 -0
  66. package/dist/{services → src/redux/features/single-event}/single-event-api.d.ts +856 -1190
  67. package/dist/src/redux/types.d.ts +2 -0
  68. package/dist/src/services/library-services.d.ts +15 -0
  69. package/dist/src/services/remote-config.d.ts +27 -0
  70. package/dist/{services → src/services}/utils.d.ts +1 -1
  71. package/dist/src/theme/colors.d.ts +127 -0
  72. package/dist/src/theme/typography.d.ts +13 -0
  73. package/dist/src/types/api.d.ts +18 -0
  74. package/dist/style.css +2984 -0
  75. package/dist/styles.css +3758 -3636
  76. package/package.json +78 -68
  77. package/dist/_virtual/_commonjsHelpers.js +0 -9
  78. package/dist/_virtual/_commonjsHelpers.js.map +0 -1
  79. package/dist/_virtual/customParseFormat.js +0 -5
  80. package/dist/_virtual/customParseFormat.js.map +0 -1
  81. package/dist/_virtual/dayjs.min.js +0 -5
  82. package/dist/_virtual/dayjs.min.js.map +0 -1
  83. package/dist/_virtual/duration.js +0 -5
  84. package/dist/_virtual/duration.js.map +0 -1
  85. package/dist/_virtual/index.js +0 -5
  86. package/dist/_virtual/index.js.map +0 -1
  87. package/dist/_virtual/isBetween.js +0 -5
  88. package/dist/_virtual/isBetween.js.map +0 -1
  89. package/dist/_virtual/relativeTime.js +0 -5
  90. package/dist/_virtual/relativeTime.js.map +0 -1
  91. package/dist/_virtual/use-sync-external-store-shim.development.js +0 -5
  92. package/dist/_virtual/use-sync-external-store-shim.development.js.map +0 -1
  93. package/dist/_virtual/use-sync-external-store-shim.production.js +0 -5
  94. package/dist/_virtual/use-sync-external-store-shim.production.js.map +0 -1
  95. package/dist/_virtual/with-selector.development.js +0 -5
  96. package/dist/_virtual/with-selector.development.js.map +0 -1
  97. package/dist/_virtual/with-selector.js +0 -5
  98. package/dist/_virtual/with-selector.js.map +0 -1
  99. package/dist/_virtual/with-selector.production.js +0 -5
  100. package/dist/_virtual/with-selector.production.js.map +0 -1
  101. package/dist/components/Alert/Alert.js +0 -51
  102. package/dist/components/Alert/Alert.js.map +0 -1
  103. package/dist/components/Button/Button.js +0 -52
  104. package/dist/components/Button/Button.js.map +0 -1
  105. package/dist/components/Button/Button.test.d.ts +0 -1
  106. package/dist/components/Button/index.d.ts +0 -1
  107. package/dist/components/Checkbox/Checkbox.js +0 -50
  108. package/dist/components/Checkbox/Checkbox.js.map +0 -1
  109. package/dist/components/Checkbox/Checkbox.test.d.ts +0 -1
  110. package/dist/components/Checkbox/index.d.ts +0 -1
  111. package/dist/components/CheckboxGroup/CheckboxGroup.d.ts +0 -25
  112. package/dist/components/CheckboxGroup/CheckboxGroup.js +0 -99
  113. package/dist/components/CheckboxGroup/CheckboxGroup.js.map +0 -1
  114. package/dist/components/ConfirmationModal/ConfirmationModal.d.ts +0 -15
  115. package/dist/components/ConfirmationModal/ConfirmationModal.js +0 -136
  116. package/dist/components/ConfirmationModal/ConfirmationModal.js.map +0 -1
  117. package/dist/components/ConfirmationModal/index.d.ts +0 -2
  118. package/dist/components/CustomSelect/CustomSelect.js +0 -259
  119. package/dist/components/CustomSelect/CustomSelect.js.map +0 -1
  120. package/dist/components/EventAddForm/AddEventLayout.js +0 -227
  121. package/dist/components/EventAddForm/AddEventLayout.js.map +0 -1
  122. package/dist/components/EventAddForm/AddEventStepper.js +0 -719
  123. package/dist/components/EventAddForm/AddEventStepper.js.map +0 -1
  124. package/dist/components/EventAddForm/common/ConfirmationModal.js +0 -136
  125. package/dist/components/EventAddForm/common/ConfirmationModal.js.map +0 -1
  126. package/dist/components/EventAddForm/common/DescriptionModal.js +0 -70
  127. package/dist/components/EventAddForm/common/DescriptionModal.js.map +0 -1
  128. package/dist/components/EventAddForm/components/AnimatedBackground.d.ts +0 -8
  129. package/dist/components/EventAddForm/components/ApprovalConfirmationModal.d.ts +0 -7
  130. package/dist/components/EventAddForm/components/CheckboxGroup.js +0 -92
  131. package/dist/components/EventAddForm/components/CheckboxGroup.js.map +0 -1
  132. package/dist/components/EventAddForm/components/CustomMeetingForm.js +0 -237
  133. package/dist/components/EventAddForm/components/CustomMeetingForm.js.map +0 -1
  134. package/dist/components/EventAddForm/components/DateTimeField.js +0 -173
  135. package/dist/components/EventAddForm/components/DateTimeField.js.map +0 -1
  136. package/dist/components/EventAddForm/components/EventSubmissionConfirmationModal.d.ts +0 -33
  137. package/dist/components/EventAddForm/components/EventSubmissionConfirmationModal.js +0 -366
  138. package/dist/components/EventAddForm/components/EventSubmissionConfirmationModal.js.map +0 -1
  139. package/dist/components/EventAddForm/components/FileUpload.js +0 -412
  140. package/dist/components/EventAddForm/components/FileUpload.js.map +0 -1
  141. package/dist/components/EventAddForm/components/FormBuilderProceedModal.js +0 -197
  142. package/dist/components/EventAddForm/components/FormBuilderProceedModal.js.map +0 -1
  143. package/dist/components/EventAddForm/components/GoogleMapsAutocompleteInput.js +0 -1179
  144. package/dist/components/EventAddForm/components/GoogleMapsAutocompleteInput.js.map +0 -1
  145. package/dist/components/EventAddForm/components/InputField.d.ts +0 -15
  146. package/dist/components/EventAddForm/components/RadioGroupButton.d.ts +0 -14
  147. package/dist/components/EventAddForm/components/SelectField.d.ts +0 -19
  148. package/dist/components/EventAddForm/components/SingleDateTimeInput.js +0 -102
  149. package/dist/components/EventAddForm/components/SingleDateTimeInput.js.map +0 -1
  150. package/dist/components/EventAddForm/components/StepTwo/CustomFormSection.js +0 -277
  151. package/dist/components/EventAddForm/components/StepTwo/CustomFormSection.js.map +0 -1
  152. package/dist/components/EventAddForm/components/StepTwo/TicketTierSection.js +0 -148
  153. package/dist/components/EventAddForm/components/StepTwo/TicketTierSection.js.map +0 -1
  154. package/dist/components/EventAddForm/components/TicketTierForm.js +0 -418
  155. package/dist/components/EventAddForm/components/TicketTierForm.js.map +0 -1
  156. package/dist/components/EventAddForm/components/TicketTypeSelection.js +0 -93
  157. package/dist/components/EventAddForm/components/TicketTypeSelection.js.map +0 -1
  158. package/dist/components/EventAddForm/hooks/useStepperForm.js +0 -371
  159. package/dist/components/EventAddForm/hooks/useStepperForm.js.map +0 -1
  160. package/dist/components/EventAddForm/hooks/useTicketTierForm.js +0 -237
  161. package/dist/components/EventAddForm/hooks/useTicketTierForm.js.map +0 -1
  162. package/dist/components/EventAddForm/index.d.ts +0 -3
  163. package/dist/components/EventAddForm/index.js +0 -41
  164. package/dist/components/EventAddForm/index.js.map +0 -1
  165. package/dist/components/EventAddForm/schemas/index.d.ts +0 -2
  166. package/dist/components/EventAddForm/schemas/step1.d.ts +0 -47
  167. package/dist/components/EventAddForm/schemas/step1.js +0 -135
  168. package/dist/components/EventAddForm/schemas/step1.js.map +0 -1
  169. package/dist/components/EventAddForm/schemas/step2.d.ts +0 -138
  170. package/dist/components/EventAddForm/schemas/step2.js +0 -94
  171. package/dist/components/EventAddForm/schemas/step2.js.map +0 -1
  172. package/dist/components/EventAddForm/schemas/utils.js +0 -28
  173. package/dist/components/EventAddForm/schemas/utils.js.map +0 -1
  174. package/dist/components/EventAddForm/steps/IndividualFormStep.js +0 -85
  175. package/dist/components/EventAddForm/steps/IndividualFormStep.js.map +0 -1
  176. package/dist/components/EventAddForm/steps/SocialProfilesStep.js +0 -123
  177. package/dist/components/EventAddForm/steps/SocialProfilesStep.js.map +0 -1
  178. package/dist/components/EventAddForm/steps/StepOne.js +0 -462
  179. package/dist/components/EventAddForm/steps/StepOne.js.map +0 -1
  180. package/dist/components/EventAddForm/steps/StepTwo.js +0 -173
  181. package/dist/components/EventAddForm/steps/StepTwo.js.map +0 -1
  182. package/dist/components/EventAddForm/steps/TeamFormStep.js +0 -13
  183. package/dist/components/EventAddForm/steps/TeamFormStep.js.map +0 -1
  184. package/dist/components/FormBuilder/CategoryList.js +0 -242
  185. package/dist/components/FormBuilder/CategoryList.js.map +0 -1
  186. package/dist/components/FormBuilder/DiscountInput.js +0 -366
  187. package/dist/components/FormBuilder/DiscountInput.js.map +0 -1
  188. package/dist/components/FormBuilder/FormBuilder.js +0 -918
  189. package/dist/components/FormBuilder/FormBuilder.js.map +0 -1
  190. package/dist/components/FormBuilder/OptionList.js +0 -120
  191. package/dist/components/FormBuilder/OptionList.js.map +0 -1
  192. package/dist/components/FormBuilder/PaymentPreview.d.ts +0 -12
  193. package/dist/components/FormBuilder/PaymentPreview.js +0 -70
  194. package/dist/components/FormBuilder/PaymentPreview.js.map +0 -1
  195. package/dist/components/FormBuilder/PreviewInput.d.ts +0 -10
  196. package/dist/components/FormBuilder/PreviewInput.js +0 -143
  197. package/dist/components/FormBuilder/PreviewInput.js.map +0 -1
  198. package/dist/components/FormBuilder/QuestionCard.js +0 -252
  199. package/dist/components/FormBuilder/QuestionCard.js.map +0 -1
  200. package/dist/components/FormBuilder/QuestionEditor.js +0 -166
  201. package/dist/components/FormBuilder/QuestionEditor.js.map +0 -1
  202. package/dist/components/FormBuilder/RequiredToggle.js +0 -43
  203. package/dist/components/FormBuilder/RequiredToggle.js.map +0 -1
  204. package/dist/components/FormBuilder/SortableQuestionList.js +0 -137
  205. package/dist/components/FormBuilder/SortableQuestionList.js.map +0 -1
  206. package/dist/components/FormBuilder/index.d.ts +0 -4
  207. package/dist/components/FormBuilder/utils.js +0 -229
  208. package/dist/components/FormBuilder/utils.js.map +0 -1
  209. package/dist/components/FormInput/FormInput.js +0 -126
  210. package/dist/components/FormInput/FormInput.js.map +0 -1
  211. package/dist/components/FormInput/FormInput.test.d.ts +0 -1
  212. package/dist/components/FormInput/index.d.ts +0 -2
  213. package/dist/components/ImageCropModal/index.js +0 -464
  214. package/dist/components/ImageCropModal/index.js.map +0 -1
  215. package/dist/components/InformationPopover/InformationPopover.d.ts +0 -7
  216. package/dist/components/InformationPopover/InformationPopover.js +0 -19
  217. package/dist/components/InformationPopover/InformationPopover.js.map +0 -1
  218. package/dist/components/InformationPopover.js +0 -19
  219. package/dist/components/InformationPopover.js.map +0 -1
  220. package/dist/components/InputErrorMessage/InputErrorMessage.js +0 -21
  221. package/dist/components/InputErrorMessage/InputErrorMessage.js.map +0 -1
  222. package/dist/components/Modal/Modal.d.ts +0 -15
  223. package/dist/components/Modal/Modal.js +0 -73
  224. package/dist/components/Modal/Modal.js.map +0 -1
  225. package/dist/components/Radio/Radio.js +0 -35
  226. package/dist/components/Radio/Radio.js.map +0 -1
  227. package/dist/components/Spinner/spinner.d.ts +0 -2
  228. package/dist/components/Spinner/spinner.js +0 -22
  229. package/dist/components/Spinner/spinner.js.map +0 -1
  230. package/dist/components/Toggle/Toggle.d.ts +0 -16
  231. package/dist/components/Toggle/index.d.ts +0 -2
  232. package/dist/components/Tooltip/Tooltip.d.ts +0 -12
  233. package/dist/components/Tooltip/Tooltip.js +0 -134
  234. package/dist/components/Tooltip/Tooltip.js.map +0 -1
  235. package/dist/components/common/FallbackImage.js +0 -47
  236. package/dist/components/common/FallbackImage.js.map +0 -1
  237. package/dist/components/ui/Calendar/calendar-utils.js +0 -51
  238. package/dist/components/ui/Calendar/calendar-utils.js.map +0 -1
  239. package/dist/components/ui/Calendar/index.js +0 -142
  240. package/dist/components/ui/Calendar/index.js.map +0 -1
  241. package/dist/components/ui/Checkbox.d.ts +0 -9
  242. package/dist/components/ui/Checkbox.js +0 -50
  243. package/dist/components/ui/Checkbox.js.map +0 -1
  244. package/dist/components/ui/DatePicker/index.js +0 -188
  245. package/dist/components/ui/DatePicker/index.js.map +0 -1
  246. package/dist/components/ui/FormInput.js +0 -129
  247. package/dist/components/ui/FormInput.js.map +0 -1
  248. package/dist/components/ui/InputErrorMessage.d.ts +0 -7
  249. package/dist/components/ui/InputErrorMessage.js +0 -21
  250. package/dist/components/ui/InputErrorMessage.js.map +0 -1
  251. package/dist/components/ui/Modal/index.js +0 -73
  252. package/dist/components/ui/Modal/index.js.map +0 -1
  253. package/dist/components/ui/Radio.d.ts +0 -6
  254. package/dist/components/ui/Radio.js +0 -35
  255. package/dist/components/ui/Radio.js.map +0 -1
  256. package/dist/components/ui/RichTextEditor.js +0 -242
  257. package/dist/components/ui/RichTextEditor.js.map +0 -1
  258. package/dist/components/ui/TimePicker/index.js +0 -215
  259. package/dist/components/ui/TimePicker/index.js.map +0 -1
  260. package/dist/components/ui/TimeSelector/index.js +0 -138
  261. package/dist/components/ui/TimeSelector/index.js.map +0 -1
  262. package/dist/components/ui/Tooltip.d.ts +0 -12
  263. package/dist/components/ui/Tooltip.js +0 -136
  264. package/dist/components/ui/Tooltip.js.map +0 -1
  265. package/dist/hooks/useDropdownPosition.d.ts +0 -11
  266. package/dist/hooks/useFirebaseAuthState.d.ts +0 -6
  267. package/dist/hooks/useFirebaseAuthState.js +0 -23
  268. package/dist/hooks/useFirebaseAuthState.js.map +0 -1
  269. package/dist/hooks/useTicketTierForm.d.ts +0 -61
  270. package/dist/lib/actions.js +0 -32
  271. package/dist/lib/actions.js.map +0 -1
  272. package/dist/lib/cropImage.js +0 -113
  273. package/dist/lib/cropImage.js.map +0 -1
  274. package/dist/lib/imageAnalysis.js +0 -58
  275. package/dist/lib/imageAnalysis.js.map +0 -1
  276. package/dist/lib/utils.js +0 -9
  277. package/dist/lib/utils.js.map +0 -1
  278. package/dist/node_modules/@dnd-kit/accessibility/dist/accessibility.esm.js +0 -60
  279. package/dist/node_modules/@dnd-kit/accessibility/dist/accessibility.esm.js.map +0 -1
  280. package/dist/node_modules/@dnd-kit/core/dist/core.esm.js +0 -3458
  281. package/dist/node_modules/@dnd-kit/core/dist/core.esm.js.map +0 -1
  282. package/dist/node_modules/@dnd-kit/sortable/dist/sortable.esm.js +0 -593
  283. package/dist/node_modules/@dnd-kit/sortable/dist/sortable.esm.js.map +0 -1
  284. package/dist/node_modules/@dnd-kit/utilities/dist/utilities.esm.js +0 -302
  285. package/dist/node_modules/@dnd-kit/utilities/dist/utilities.esm.js.map +0 -1
  286. package/dist/node_modules/@firebase/app/dist/esm/index.esm.js +0 -768
  287. package/dist/node_modules/@firebase/app/dist/esm/index.esm.js.map +0 -1
  288. package/dist/node_modules/@firebase/component/dist/esm/index.esm.js +0 -340
  289. package/dist/node_modules/@firebase/component/dist/esm/index.esm.js.map +0 -1
  290. package/dist/node_modules/@firebase/logger/dist/esm/index.esm.js +0 -123
  291. package/dist/node_modules/@firebase/logger/dist/esm/index.esm.js.map +0 -1
  292. package/dist/node_modules/@firebase/storage/dist/index.esm.js +0 -2623
  293. package/dist/node_modules/@firebase/storage/dist/index.esm.js.map +0 -1
  294. package/dist/node_modules/@firebase/util/dist/index.esm.js +0 -658
  295. package/dist/node_modules/@firebase/util/dist/index.esm.js.map +0 -1
  296. package/dist/node_modules/@firebase/util/dist/postinstall.js +0 -5
  297. package/dist/node_modules/@firebase/util/dist/postinstall.js.map +0 -1
  298. package/dist/node_modules/@fortawesome/fontawesome-svg-core/index.js +0 -3179
  299. package/dist/node_modules/@fortawesome/fontawesome-svg-core/index.js.map +0 -1
  300. package/dist/node_modules/@fortawesome/free-solid-svg-icons/index.js +0 -60
  301. package/dist/node_modules/@fortawesome/free-solid-svg-icons/index.js.map +0 -1
  302. package/dist/node_modules/@fortawesome/react-fontawesome/dist/index.js +0 -400
  303. package/dist/node_modules/@fortawesome/react-fontawesome/dist/index.js.map +0 -1
  304. package/dist/node_modules/@heroicons/react/20/solid/esm/CheckIcon.js +0 -27
  305. package/dist/node_modules/@heroicons/react/20/solid/esm/CheckIcon.js.map +0 -1
  306. package/dist/node_modules/@heroicons/react/20/solid/esm/ChevronDownIcon.js +0 -27
  307. package/dist/node_modules/@heroicons/react/20/solid/esm/ChevronDownIcon.js.map +0 -1
  308. package/dist/node_modules/@heroicons/react/24/outline/esm/ArrowRightIcon.js +0 -29
  309. package/dist/node_modules/@heroicons/react/24/outline/esm/ArrowRightIcon.js.map +0 -1
  310. package/dist/node_modules/@heroicons/react/24/outline/esm/ClockIcon.js +0 -29
  311. package/dist/node_modules/@heroicons/react/24/outline/esm/ClockIcon.js.map +0 -1
  312. package/dist/node_modules/@heroicons/react/24/outline/esm/DocumentDuplicateIcon.js +0 -29
  313. package/dist/node_modules/@heroicons/react/24/outline/esm/DocumentDuplicateIcon.js.map +0 -1
  314. package/dist/node_modules/@heroicons/react/24/outline/esm/InformationCircleIcon.js +0 -29
  315. package/dist/node_modules/@heroicons/react/24/outline/esm/InformationCircleIcon.js.map +0 -1
  316. package/dist/node_modules/@heroicons/react/24/outline/esm/LinkIcon.js +0 -29
  317. package/dist/node_modules/@heroicons/react/24/outline/esm/LinkIcon.js.map +0 -1
  318. package/dist/node_modules/@heroicons/react/24/outline/esm/MagnifyingGlassIcon.js +0 -29
  319. package/dist/node_modules/@heroicons/react/24/outline/esm/MagnifyingGlassIcon.js.map +0 -1
  320. package/dist/node_modules/@heroicons/react/24/outline/esm/MapPinIcon.js +0 -33
  321. package/dist/node_modules/@heroicons/react/24/outline/esm/MapPinIcon.js.map +0 -1
  322. package/dist/node_modules/@heroicons/react/24/outline/esm/VideoCameraIcon.js +0 -29
  323. package/dist/node_modules/@heroicons/react/24/outline/esm/VideoCameraIcon.js.map +0 -1
  324. package/dist/node_modules/@heroicons/react/24/outline/esm/XMarkIcon.js +0 -29
  325. package/dist/node_modules/@heroicons/react/24/outline/esm/XMarkIcon.js.map +0 -1
  326. package/dist/node_modules/@tiptap/core/dist/index.js +0 -5446
  327. package/dist/node_modules/@tiptap/core/dist/index.js.map +0 -1
  328. package/dist/node_modules/@tiptap/core/dist/jsx-runtime/jsx-runtime.js +0 -21
  329. package/dist/node_modules/@tiptap/core/dist/jsx-runtime/jsx-runtime.js.map +0 -1
  330. package/dist/node_modules/@tiptap/extension-blockquote/dist/index.js +0 -78
  331. package/dist/node_modules/@tiptap/extension-blockquote/dist/index.js.map +0 -1
  332. package/dist/node_modules/@tiptap/extension-bold/dist/index.js +0 -100
  333. package/dist/node_modules/@tiptap/extension-bold/dist/index.js.map +0 -1
  334. package/dist/node_modules/@tiptap/extension-code/dist/index.js +0 -70
  335. package/dist/node_modules/@tiptap/extension-code/dist/index.js.map +0 -1
  336. package/dist/node_modules/@tiptap/extension-code-block/dist/index.js +0 -317
  337. package/dist/node_modules/@tiptap/extension-code-block/dist/index.js.map +0 -1
  338. package/dist/node_modules/@tiptap/extension-document/dist/index.js +0 -16
  339. package/dist/node_modules/@tiptap/extension-document/dist/index.js.map +0 -1
  340. package/dist/node_modules/@tiptap/extension-hard-break/dist/index.js +0 -66
  341. package/dist/node_modules/@tiptap/extension-hard-break/dist/index.js.map +0 -1
  342. package/dist/node_modules/@tiptap/extension-heading/dist/index.js +0 -86
  343. package/dist/node_modules/@tiptap/extension-heading/dist/index.js.map +0 -1
  344. package/dist/node_modules/@tiptap/extension-horizontal-rule/dist/index.js +0 -80
  345. package/dist/node_modules/@tiptap/extension-horizontal-rule/dist/index.js.map +0 -1
  346. package/dist/node_modules/@tiptap/extension-italic/dist/index.js +0 -98
  347. package/dist/node_modules/@tiptap/extension-italic/dist/index.js.map +0 -1
  348. package/dist/node_modules/@tiptap/extension-link/dist/index.js +0 -423
  349. package/dist/node_modules/@tiptap/extension-link/dist/index.js.map +0 -1
  350. package/dist/node_modules/@tiptap/extension-list/dist/index.js +0 -1039
  351. package/dist/node_modules/@tiptap/extension-list/dist/index.js.map +0 -1
  352. package/dist/node_modules/@tiptap/extension-paragraph/dist/index.js +0 -61
  353. package/dist/node_modules/@tiptap/extension-paragraph/dist/index.js.map +0 -1
  354. package/dist/node_modules/@tiptap/extension-placeholder/dist/index.js +0 -7
  355. package/dist/node_modules/@tiptap/extension-placeholder/dist/index.js.map +0 -1
  356. package/dist/node_modules/@tiptap/extension-strike/dist/index.js +0 -79
  357. package/dist/node_modules/@tiptap/extension-strike/dist/index.js.map +0 -1
  358. package/dist/node_modules/@tiptap/extension-text/dist/index.js +0 -16
  359. package/dist/node_modules/@tiptap/extension-text/dist/index.js.map +0 -1
  360. package/dist/node_modules/@tiptap/extension-underline/dist/index.js +0 -76
  361. package/dist/node_modules/@tiptap/extension-underline/dist/index.js.map +0 -1
  362. package/dist/node_modules/@tiptap/extensions/dist/index.js +0 -376
  363. package/dist/node_modules/@tiptap/extensions/dist/index.js.map +0 -1
  364. package/dist/node_modules/@tiptap/react/dist/index.js +0 -650
  365. package/dist/node_modules/@tiptap/react/dist/index.js.map +0 -1
  366. package/dist/node_modules/@tiptap/starter-kit/dist/index.js +0 -97
  367. package/dist/node_modules/@tiptap/starter-kit/dist/index.js.map +0 -1
  368. package/dist/node_modules/dayjs/dayjs.min.js +0 -283
  369. package/dist/node_modules/dayjs/dayjs.min.js.map +0 -1
  370. package/dist/node_modules/dayjs/plugin/customParseFormat.js +0 -130
  371. package/dist/node_modules/dayjs/plugin/customParseFormat.js.map +0 -1
  372. package/dist/node_modules/dayjs/plugin/duration.js +0 -137
  373. package/dist/node_modules/dayjs/plugin/duration.js.map +0 -1
  374. package/dist/node_modules/dayjs/plugin/isBetween.js +0 -20
  375. package/dist/node_modules/dayjs/plugin/isBetween.js.map +0 -1
  376. package/dist/node_modules/dayjs/plugin/relativeTime.js +0 -49
  377. package/dist/node_modules/dayjs/plugin/relativeTime.js.map +0 -1
  378. package/dist/node_modules/fast-equals/dist/es/index.js +0 -442
  379. package/dist/node_modules/fast-equals/dist/es/index.js.map +0 -1
  380. package/dist/node_modules/idb/build/index.js +0 -70
  381. package/dist/node_modules/idb/build/index.js.map +0 -1
  382. package/dist/node_modules/idb/build/wrap-idb-value.js +0 -149
  383. package/dist/node_modules/idb/build/wrap-idb-value.js.map +0 -1
  384. package/dist/node_modules/linkifyjs/dist/linkify.js +0 -1159
  385. package/dist/node_modules/linkifyjs/dist/linkify.js.map +0 -1
  386. package/dist/node_modules/orderedmap/dist/index.js +0 -120
  387. package/dist/node_modules/orderedmap/dist/index.js.map +0 -1
  388. package/dist/node_modules/prosemirror-commands/dist/index.js +0 -527
  389. package/dist/node_modules/prosemirror-commands/dist/index.js.map +0 -1
  390. package/dist/node_modules/prosemirror-dropcursor/dist/index.js +0 -137
  391. package/dist/node_modules/prosemirror-dropcursor/dist/index.js.map +0 -1
  392. package/dist/node_modules/prosemirror-gapcursor/dist/index.js +0 -221
  393. package/dist/node_modules/prosemirror-gapcursor/dist/index.js.map +0 -1
  394. package/dist/node_modules/prosemirror-history/dist/index.js +0 -357
  395. package/dist/node_modules/prosemirror-history/dist/index.js.map +0 -1
  396. package/dist/node_modules/prosemirror-keymap/dist/index.js +0 -84
  397. package/dist/node_modules/prosemirror-keymap/dist/index.js.map +0 -1
  398. package/dist/node_modules/prosemirror-model/dist/index.js +0 -3209
  399. package/dist/node_modules/prosemirror-model/dist/index.js.map +0 -1
  400. package/dist/node_modules/prosemirror-schema-list/dist/index.js +0 -131
  401. package/dist/node_modules/prosemirror-schema-list/dist/index.js.map +0 -1
  402. package/dist/node_modules/prosemirror-state/dist/index.js +0 -936
  403. package/dist/node_modules/prosemirror-state/dist/index.js.map +0 -1
  404. package/dist/node_modules/prosemirror-transform/dist/index.js +0 -1881
  405. package/dist/node_modules/prosemirror-transform/dist/index.js.map +0 -1
  406. package/dist/node_modules/prosemirror-view/dist/index.js +0 -5232
  407. package/dist/node_modules/prosemirror-view/dist/index.js.map +0 -1
  408. package/dist/node_modules/rope-sequence/dist/index.js +0 -184
  409. package/dist/node_modules/rope-sequence/dist/index.js.map +0 -1
  410. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js +0 -82
  411. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js.map +0 -1
  412. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.js +0 -78
  413. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.js.map +0 -1
  414. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js +0 -78
  415. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js.map +0 -1
  416. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js +0 -63
  417. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js.map +0 -1
  418. package/dist/node_modules/use-sync-external-store/shim/index.js +0 -13
  419. package/dist/node_modules/use-sync-external-store/shim/index.js.map +0 -1
  420. package/dist/node_modules/use-sync-external-store/shim/with-selector.js +0 -13
  421. package/dist/node_modules/use-sync-external-store/shim/with-selector.js.map +0 -1
  422. package/dist/node_modules/w3c-keyname/index.js +0 -106
  423. package/dist/node_modules/w3c-keyname/index.js.map +0 -1
  424. package/dist/node_modules/zod/v4/classic/coerce.js +0 -10
  425. package/dist/node_modules/zod/v4/classic/coerce.js.map +0 -1
  426. package/dist/node_modules/zod/v4/classic/compat.js +0 -8
  427. package/dist/node_modules/zod/v4/classic/compat.js.map +0 -1
  428. package/dist/node_modules/zod/v4/classic/errors.js +0 -45
  429. package/dist/node_modules/zod/v4/classic/errors.js.map +0 -1
  430. package/dist/node_modules/zod/v4/classic/iso.js +0 -44
  431. package/dist/node_modules/zod/v4/classic/iso.js.map +0 -1
  432. package/dist/node_modules/zod/v4/classic/parse.js +0 -30
  433. package/dist/node_modules/zod/v4/classic/parse.js.map +0 -1
  434. package/dist/node_modules/zod/v4/classic/schemas.js +0 -711
  435. package/dist/node_modules/zod/v4/classic/schemas.js.map +0 -1
  436. package/dist/node_modules/zod/v4/core/api.js +0 -588
  437. package/dist/node_modules/zod/v4/core/api.js.map +0 -1
  438. package/dist/node_modules/zod/v4/core/checks.js +0 -411
  439. package/dist/node_modules/zod/v4/core/checks.js.map +0 -1
  440. package/dist/node_modules/zod/v4/core/core.js +0 -75
  441. package/dist/node_modules/zod/v4/core/core.js.map +0 -1
  442. package/dist/node_modules/zod/v4/core/doc.js +0 -38
  443. package/dist/node_modules/zod/v4/core/doc.js.map +0 -1
  444. package/dist/node_modules/zod/v4/core/errors.js +0 -73
  445. package/dist/node_modules/zod/v4/core/errors.js.map +0 -1
  446. package/dist/node_modules/zod/v4/core/json-schema-processors.js +0 -359
  447. package/dist/node_modules/zod/v4/core/json-schema-processors.js.map +0 -1
  448. package/dist/node_modules/zod/v4/core/parse.js +0 -96
  449. package/dist/node_modules/zod/v4/core/parse.js.map +0 -1
  450. package/dist/node_modules/zod/v4/core/regexes.js +0 -84
  451. package/dist/node_modules/zod/v4/core/regexes.js.map +0 -1
  452. package/dist/node_modules/zod/v4/core/registries.js +0 -52
  453. package/dist/node_modules/zod/v4/core/registries.js.map +0 -1
  454. package/dist/node_modules/zod/v4/core/schemas.js +0 -1391
  455. package/dist/node_modules/zod/v4/core/schemas.js.map +0 -1
  456. package/dist/node_modules/zod/v4/core/to-json-schema.js +0 -363
  457. package/dist/node_modules/zod/v4/core/to-json-schema.js.map +0 -1
  458. package/dist/node_modules/zod/v4/core/util.js +0 -431
  459. package/dist/node_modules/zod/v4/core/util.js.map +0 -1
  460. package/dist/node_modules/zod/v4/core/versions.js +0 -9
  461. package/dist/node_modules/zod/v4/core/versions.js.map +0 -1
  462. package/dist/redux/baseQuery.d.ts +0 -1
  463. package/dist/redux/baseQuery.js +0 -24
  464. package/dist/redux/baseQuery.js.map +0 -1
  465. package/dist/services/eventApi.js +0 -411
  466. package/dist/services/eventApi.js.map +0 -1
  467. package/dist/services/helpers.js +0 -115
  468. package/dist/services/helpers.js.map +0 -1
  469. package/dist/services/initialize-firebase.d.ts +0 -2
  470. package/dist/services/initialize-firebase.js +0 -20
  471. package/dist/services/initialize-firebase.js.map +0 -1
  472. package/dist/services/process-image-on-server.js +0 -30
  473. package/dist/services/process-image-on-server.js.map +0 -1
  474. package/dist/services/remote-config.d.ts +0 -5
  475. package/dist/services/remote-config.js +0 -9
  476. package/dist/services/remote-config.js.map +0 -1
  477. package/dist/services/single-event-api.js +0 -301
  478. package/dist/services/single-event-api.js.map +0 -1
  479. package/dist/services/utils.js +0 -107
  480. package/dist/services/utils.js.map +0 -1
  481. package/dist/setupTests.d.ts +0 -1
  482. package/dist/stories/Alert.stories.d.ts +0 -10
  483. package/dist/stories/Button.stories.d.ts +0 -13
  484. package/dist/types/redux-types.d.ts +0 -15
  485. package/dist/types/types.d.ts +0 -60
  486. package/dist/types/types.js +0 -10
  487. package/dist/types/types.js.map +0 -1
  488. package/dist/utils/cn.d.ts +0 -6
  489. package/dist/utils/cn.js +0 -9
  490. package/dist/utils/cn.js.map +0 -1
  491. package/dist/utils/date-range.d.ts +0 -4
  492. package/dist/utils/date-range.js +0 -13
  493. package/dist/utils/date-range.js.map +0 -1
  494. package/dist/utils/single-event-helpers.d.ts +0 -50
  495. package/dist/utils/single-event-helpers.js +0 -18
  496. package/dist/utils/single-event-helpers.js.map +0 -1
  497. package/dist/utils/social-validation.js +0 -42
  498. package/dist/utils/social-validation.js.map +0 -1
  499. package/dist/utils/utils.js +0 -20
  500. package/dist/utils/utils.js.map +0 -1
  501. /package/dist/{components/Alert/Alert.d.ts → src/components/Alert/index.d.ts} +0 -0
  502. /package/dist/{components → src/components}/FormBuilder/CategoryList.d.ts +0 -0
  503. /package/dist/{components → src/components}/FormBuilder/OptionList.d.ts +0 -0
  504. /package/dist/{components → src/components}/FormBuilder/RequiredToggle.d.ts +0 -0
  505. /package/dist/{components → src/components}/FormBuilder/types.d.ts +0 -0
  506. /package/dist/{components → src/components}/FormBuilder/utils.d.ts +0 -0
  507. /package/dist/{components → src/components}/ImageCropModal/index.d.ts +0 -0
  508. /package/dist/{components → src/components}/InformationPopover.d.ts +0 -0
  509. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/common/DescriptionModal.d.ts +0 -0
  510. /package/dist/{components/ui/FormInput.d.ts → src/components/NewAddEvent/components/AddEventFormInput.d.ts} +0 -0
  511. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/CheckboxGroup.d.ts +0 -0
  512. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/CustomMeetingForm.d.ts +0 -0
  513. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/DateTimeField.d.ts +0 -0
  514. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/FileUpload.d.ts +0 -0
  515. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/FormBuilderProceedModal.d.ts +0 -0
  516. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/GoogleMapsAutocompleteInput.d.ts +0 -0
  517. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/SingleDateTimeInput.d.ts +0 -0
  518. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/StepTwo/CustomFormSection.d.ts +0 -0
  519. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/TicketTypeSelection.d.ts +0 -0
  520. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/steps/StepOne.d.ts +0 -0
  521. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/steps/StepTwo.d.ts +0 -0
  522. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/types.d.ts +0 -0
  523. /package/dist/{components → src/components}/common/FallbackImage.d.ts +0 -0
  524. /package/dist/{components → src/components}/ui/Calendar/calendar-utils.d.ts +0 -0
  525. /package/dist/{components → src/components}/ui/Calendar/index.d.ts +0 -0
  526. /package/dist/{components/Checkbox → src/components/ui}/Checkbox.d.ts +0 -0
  527. /package/dist/{components/CustomSelect → src/components/ui}/CustomSelect.d.ts +0 -0
  528. /package/dist/{components → src/components}/ui/DatePicker/index.d.ts +0 -0
  529. /package/dist/{components/InputErrorMessage → src/components/ui}/InputErrorMessage.d.ts +0 -0
  530. /package/dist/{components → src/components}/ui/Modal/index.d.ts +0 -0
  531. /package/dist/{components/Radio → src/components/ui}/Radio.d.ts +0 -0
  532. /package/dist/{components → src/components}/ui/RichTextEditor.d.ts +0 -0
  533. /package/dist/{components → src/components}/ui/TimePicker/index.d.ts +0 -0
  534. /package/dist/{components → src/components}/ui/TimeSelector/index.d.ts +0 -0
  535. /package/dist/{components → src/components}/ui/Tooltip/index.d.ts +0 -0
  536. /package/dist/{lib → src/lib}/constants.d.ts +0 -0
  537. /package/dist/{lib → src/lib}/cropImage.d.ts +0 -0
  538. /package/dist/{lib → src/lib}/imageAnalysis.d.ts +0 -0
  539. /package/dist/{utils → src/lib}/social-validation.d.ts +0 -0
  540. /package/dist/{lib/utils.d.ts → src/lib/tailwind-merge.d.ts} +0 -0
  541. /package/dist/{utils → src/lib}/utils.d.ts +0 -0
  542. /package/dist/{services → src/redux/features/single-event}/helpers.d.ts +0 -0
  543. /package/dist/{services → src/services}/process-image-on-server.d.ts +0 -0
  544. /package/dist/{types → src/types}/events.d.ts +0 -0
  545. /package/dist/{types → src/types}/question.d.ts +0 -0
@@ -0,0 +1,3347 @@
1
+ {
2
+ "v": "4.8.0",
3
+ "meta": {
4
+ "g": "LottieFiles AE 3.4.5",
5
+ "a": "",
6
+ "k": "",
7
+ "d": "",
8
+ "tc": ""
9
+ },
10
+ "fr": 60,
11
+ "ip": 0,
12
+ "op": 152,
13
+ "w": 1024,
14
+ "h": 1024,
15
+ "nm": "loader1",
16
+ "ddd": 0,
17
+ "assets": [],
18
+ "layers": [
19
+ {
20
+ "ddd": 0,
21
+ "ind": 1,
22
+ "ty": 4,
23
+ "nm": "Shape Layer 2",
24
+ "sr": 1,
25
+ "ks": {
26
+ "o": {
27
+ "a": 0,
28
+ "k": 100,
29
+ "ix": 11
30
+ },
31
+ "r": {
32
+ "a": 0,
33
+ "k": 0,
34
+ "ix": 10,
35
+ "x": "var $bm_rt;\n$bm_rt = thisComp.layer('Null 1').transform.rotation;"
36
+ },
37
+ "p": {
38
+ "a": 0,
39
+ "k": [
40
+ 512,
41
+ 512,
42
+ 0
43
+ ],
44
+ "ix": 2,
45
+ "x": "var $bm_rt;\n$bm_rt = thisComp.layer('Null 1').transform.position;"
46
+ },
47
+ "a": {
48
+ "a": 0,
49
+ "k": [
50
+ 83.27,
51
+ 6,
52
+ 0
53
+ ],
54
+ "ix": 1
55
+ },
56
+ "s": {
57
+ "a": 0,
58
+ "k": [
59
+ 100,
60
+ 100,
61
+ 100
62
+ ],
63
+ "ix": 6
64
+ }
65
+ },
66
+ "ao": 0,
67
+ "shapes": [
68
+ {
69
+ "ty": "gr",
70
+ "it": [
71
+ {
72
+ "ind": 0,
73
+ "ty": "sh",
74
+ "ix": 1,
75
+ "ks": {
76
+ "a": 1,
77
+ "k": [
78
+ {
79
+ "i": {
80
+ "x": 0.398,
81
+ "y": 1
82
+ },
83
+ "o": {
84
+ "x": 0.573,
85
+ "y": 0
86
+ },
87
+ "t": 14,
88
+ "s": [
89
+ {
90
+ "i": [
91
+ [
92
+ -116.537,
93
+ 0
94
+ ],
95
+ [
96
+ -66.195,
97
+ -94.389
98
+ ],
99
+ [
100
+ 48,
101
+ -160
102
+ ],
103
+ [
104
+ 65.067,
105
+ -66.069
106
+ ],
107
+ [
108
+ 102.081,
109
+ 0
110
+ ],
111
+ [
112
+ 66.068,
113
+ 65.058
114
+ ],
115
+ [
116
+ -85.127,
117
+ 157.906
118
+ ],
119
+ [
120
+ -49.234,
121
+ 62.335
122
+ ]
123
+ ],
124
+ "o": [
125
+ [
126
+ 124.041,
127
+ 0
128
+ ],
129
+ [
130
+ 41.676,
131
+ 59.427
132
+ ],
133
+ [
134
+ -61.503,
135
+ 205.011
136
+ ],
137
+ [
138
+ -66.384,
139
+ 67.406
140
+ ],
141
+ [
142
+ -100.048,
143
+ 0
144
+ ],
145
+ [
146
+ -67.415,
147
+ -66.385
148
+ ],
149
+ [
150
+ 80.223,
151
+ -148.809
152
+ ],
153
+ [
154
+ 67.028,
155
+ -84.864
156
+ ]
157
+ ],
158
+ "v": [
159
+ [
160
+ 0,
161
+ -366
162
+ ],
163
+ [
164
+ 299.865,
165
+ -209.905
166
+ ],
167
+ [
168
+ 50,
169
+ 38
170
+ ],
171
+ [
172
+ 260.784,
173
+ 256.803
174
+ ],
175
+ [
176
+ 0,
177
+ 366
178
+ ],
179
+ [
180
+ -256.787,
181
+ 260.799
182
+ ],
183
+ [
184
+ -104.847,
185
+ -79.448
186
+ ],
187
+ [
188
+ -287.381,
189
+ -226.67
190
+ ]
191
+ ],
192
+ "c": true
193
+ }
194
+ ]
195
+ },
196
+ {
197
+ "i": {
198
+ "x": 0.667,
199
+ "y": 1
200
+ },
201
+ "o": {
202
+ "x": 0.836,
203
+ "y": 0
204
+ },
205
+ "t": 41,
206
+ "s": [
207
+ {
208
+ "i": [
209
+ [
210
+ -116.537,
211
+ 0
212
+ ],
213
+ [
214
+ -66.195,
215
+ -94.389
216
+ ],
217
+ [
218
+ 48,
219
+ -160
220
+ ],
221
+ [
222
+ 65.067,
223
+ -66.069
224
+ ],
225
+ [
226
+ 102.081,
227
+ 0
228
+ ],
229
+ [
230
+ 66.068,
231
+ 65.058
232
+ ],
233
+ [
234
+ -119.289,
235
+ 133.982
236
+ ],
237
+ [
238
+ -49.234,
239
+ 62.335
240
+ ]
241
+ ],
242
+ "o": [
243
+ [
244
+ 124.041,
245
+ 0
246
+ ],
247
+ [
248
+ 41.676,
249
+ 59.427
250
+ ],
251
+ [
252
+ -61.503,
253
+ 205.011
254
+ ],
255
+ [
256
+ -66.384,
257
+ 67.406
258
+ ],
259
+ [
260
+ -100.048,
261
+ 0
262
+ ],
263
+ [
264
+ -67.415,
265
+ -66.385
266
+ ],
267
+ [
268
+ 122.787,
269
+ -137.911
270
+ ],
271
+ [
272
+ 67.028,
273
+ -84.864
274
+ ]
275
+ ],
276
+ "v": [
277
+ [
278
+ 0,
279
+ -366
280
+ ],
281
+ [
282
+ 299.865,
283
+ -209.905
284
+ ],
285
+ [
286
+ -24.884,
287
+ 23.246
288
+ ],
289
+ [
290
+ 260.784,
291
+ 256.803
292
+ ],
293
+ [
294
+ 0,
295
+ 366
296
+ ],
297
+ [
298
+ -256.787,
299
+ 260.799
300
+ ],
301
+ [
302
+ -196.288,
303
+ -48.478
304
+ ],
305
+ [
306
+ -287.381,
307
+ -226.67
308
+ ]
309
+ ],
310
+ "c": true
311
+ }
312
+ ]
313
+ },
314
+ {
315
+ "i": {
316
+ "x": 0.667,
317
+ "y": 1
318
+ },
319
+ "o": {
320
+ "x": 0.333,
321
+ "y": 0
322
+ },
323
+ "t": 54,
324
+ "s": [
325
+ {
326
+ "i": [
327
+ [
328
+ -116.537,
329
+ 0
330
+ ],
331
+ [
332
+ -66.195,
333
+ -94.389
334
+ ],
335
+ [
336
+ 85.13,
337
+ -251.636
338
+ ],
339
+ [
340
+ 65.067,
341
+ -66.069
342
+ ],
343
+ [
344
+ 102.081,
345
+ 0
346
+ ],
347
+ [
348
+ 66.068,
349
+ 65.058
350
+ ],
351
+ [
352
+ -122.897,
353
+ 111.938
354
+ ],
355
+ [
356
+ -49.234,
357
+ 62.335
358
+ ]
359
+ ],
360
+ "o": [
361
+ [
362
+ 124.041,
363
+ 0
364
+ ],
365
+ [
366
+ 41.676,
367
+ 59.427
368
+ ],
369
+ [
370
+ -39.693,
371
+ 119.128
372
+ ],
373
+ [
374
+ -66.383,
375
+ 67.406
376
+ ],
377
+ [
378
+ -100.048,
379
+ 0
380
+ ],
381
+ [
382
+ -67.415,
383
+ -66.385
384
+ ],
385
+ [
386
+ 309.312,
387
+ -266.065
388
+ ],
389
+ [
390
+ 67.028,
391
+ -84.864
392
+ ]
393
+ ],
394
+ "v": [
395
+ [
396
+ 0,
397
+ -366
398
+ ],
399
+ [
400
+ 275.144,
401
+ -227.127
402
+ ],
403
+ [
404
+ 159.077,
405
+ -38.579
406
+ ],
407
+ [
408
+ 215.016,
409
+ 276.104
410
+ ],
411
+ [
412
+ 0,
413
+ 366
414
+ ],
415
+ [
416
+ -256.787,
417
+ 260.799
418
+ ],
419
+ [
420
+ -150.256,
421
+ -23.325
422
+ ],
423
+ [
424
+ -287.381,
425
+ -226.67
426
+ ]
427
+ ],
428
+ "c": true
429
+ }
430
+ ]
431
+ },
432
+ {
433
+ "i": {
434
+ "x": 0.667,
435
+ "y": 1
436
+ },
437
+ "o": {
438
+ "x": 0.333,
439
+ "y": 0
440
+ },
441
+ "t": 60,
442
+ "s": [
443
+ {
444
+ "i": [
445
+ [
446
+ -116.537,
447
+ 0
448
+ ],
449
+ [
450
+ -66.195,
451
+ -94.389
452
+ ],
453
+ [
454
+ 82.924,
455
+ -246.192
456
+ ],
457
+ [
458
+ 65.067,
459
+ -66.069
460
+ ],
461
+ [
462
+ 102.081,
463
+ 0
464
+ ],
465
+ [
466
+ 66.068,
467
+ 65.058
468
+ ],
469
+ [
470
+ -55.859,
471
+ 176.202
472
+ ],
473
+ [
474
+ -49.234,
475
+ 62.335
476
+ ]
477
+ ],
478
+ "o": [
479
+ [
480
+ 124.041,
481
+ 0
482
+ ],
483
+ [
484
+ 41.676,
485
+ 59.427
486
+ ],
487
+ [
488
+ -40.989,
489
+ 124.23
490
+ ],
491
+ [
492
+ -66.384,
493
+ 67.406
494
+ ],
495
+ [
496
+ -100.048,
497
+ 0
498
+ ],
499
+ [
500
+ -67.415,
501
+ -66.385
502
+ ],
503
+ [
504
+ 24.59,
505
+ -160.109
506
+ ],
507
+ [
508
+ 67.028,
509
+ -84.864
510
+ ]
511
+ ],
512
+ "v": [
513
+ [
514
+ 0,
515
+ -366
516
+ ],
517
+ [
518
+ 276.613,
519
+ -226.103
520
+ ],
521
+ [
522
+ -75.017,
523
+ -73.301
524
+ ],
525
+ [
526
+ 217.735,
527
+ 274.957
528
+ ],
529
+ [
530
+ 0,
531
+ 366
532
+ ],
533
+ [
534
+ -256.787,
535
+ 260.799
536
+ ],
537
+ [
538
+ -299.117,
539
+ -9.604
540
+ ],
541
+ [
542
+ -287.381,
543
+ -226.67
544
+ ]
545
+ ],
546
+ "c": true
547
+ }
548
+ ]
549
+ },
550
+ {
551
+ "i": {
552
+ "x": 0.667,
553
+ "y": 1
554
+ },
555
+ "o": {
556
+ "x": 0.333,
557
+ "y": 0
558
+ },
559
+ "t": 65,
560
+ "s": [
561
+ {
562
+ "i": [
563
+ [
564
+ -116.537,
565
+ 0
566
+ ],
567
+ [
568
+ -66.195,
569
+ -94.389
570
+ ],
571
+ [
572
+ 81.086,
573
+ -241.656
574
+ ],
575
+ [
576
+ 65.067,
577
+ -66.069
578
+ ],
579
+ [
580
+ 102.081,
581
+ 0
582
+ ],
583
+ [
584
+ 66.068,
585
+ 65.058
586
+ ],
587
+ [
588
+ 94.229,
589
+ 285.418
590
+ ],
591
+ [
592
+ -49.234,
593
+ 62.335
594
+ ]
595
+ ],
596
+ "o": [
597
+ [
598
+ 124.041,
599
+ 0
600
+ ],
601
+ [
602
+ 41.676,
603
+ 59.427
604
+ ],
605
+ [
606
+ -42.068,
607
+ 128.482
608
+ ],
609
+ [
610
+ -66.384,
611
+ 67.406
612
+ ],
613
+ [
614
+ -100.048,
615
+ 0
616
+ ],
617
+ [
618
+ -67.415,
619
+ -66.385
620
+ ],
621
+ [
622
+ -111.15,
623
+ -238.582
624
+ ],
625
+ [
626
+ 67.028,
627
+ -84.864
628
+ ]
629
+ ],
630
+ "v": [
631
+ [
632
+ 0,
633
+ -366
634
+ ],
635
+ [
636
+ 277.836,
637
+ -225.251
638
+ ],
639
+ [
640
+ 294.19,
641
+ 46.954
642
+ ],
643
+ [
644
+ 220.001,
645
+ 274.001
646
+ ],
647
+ [
648
+ 0,
649
+ 366
650
+ ],
651
+ [
652
+ -256.787,
653
+ 260.799
654
+ ],
655
+ [
656
+ 123.521,
657
+ -40.948
658
+ ],
659
+ [
660
+ -287.381,
661
+ -226.67
662
+ ]
663
+ ],
664
+ "c": true
665
+ }
666
+ ]
667
+ },
668
+ {
669
+ "i": {
670
+ "x": 0.667,
671
+ "y": 1
672
+ },
673
+ "o": {
674
+ "x": 0.333,
675
+ "y": 0
676
+ },
677
+ "t": 71,
678
+ "s": [
679
+ {
680
+ "i": [
681
+ [
682
+ -116.537,
683
+ 0
684
+ ],
685
+ [
686
+ -66.195,
687
+ -94.389
688
+ ],
689
+ [
690
+ 78.88,
691
+ -236.212
692
+ ],
693
+ [
694
+ 65.067,
695
+ -66.069
696
+ ],
697
+ [
698
+ 102.081,
699
+ 0
700
+ ],
701
+ [
702
+ 66.068,
703
+ 65.058
704
+ ],
705
+ [
706
+ 82.272,
707
+ 276.917
708
+ ],
709
+ [
710
+ -49.234,
711
+ 62.335
712
+ ]
713
+ ],
714
+ "o": [
715
+ [
716
+ 124.041,
717
+ 0
718
+ ],
719
+ [
720
+ 41.676,
721
+ 59.427
722
+ ],
723
+ [
724
+ -112.252,
725
+ 217.097
726
+ ],
727
+ [
728
+ -66.384,
729
+ 67.406
730
+ ],
731
+ [
732
+ -100.048,
733
+ 0
734
+ ],
735
+ [
736
+ -67.415,
737
+ -66.385
738
+ ],
739
+ [
740
+ -98.391,
741
+ -232.597
742
+ ],
743
+ [
744
+ 67.028,
745
+ -84.864
746
+ ]
747
+ ],
748
+ "v": [
749
+ [
750
+ 0,
751
+ -366
752
+ ],
753
+ [
754
+ 279.305,
755
+ -224.228
756
+ ],
757
+ [
758
+ 2.74,
759
+ -72.763
760
+ ],
761
+ [
762
+ 222.719,
763
+ 272.855
764
+ ],
765
+ [
766
+ 0,
767
+ 366
768
+ ],
769
+ [
770
+ -256.787,
771
+ 260.799
772
+ ],
773
+ [
774
+ -234.073,
775
+ 12.428
776
+ ],
777
+ [
778
+ -287.381,
779
+ -226.67
780
+ ]
781
+ ],
782
+ "c": true
783
+ }
784
+ ]
785
+ },
786
+ {
787
+ "i": {
788
+ "x": 0.439,
789
+ "y": 1
790
+ },
791
+ "o": {
792
+ "x": 0.333,
793
+ "y": 0
794
+ },
795
+ "t": 81,
796
+ "s": [
797
+ {
798
+ "i": [
799
+ [
800
+ -116.537,
801
+ 0
802
+ ],
803
+ [
804
+ -66.195,
805
+ -94.389
806
+ ],
807
+ [
808
+ 73.366,
809
+ -222.603
810
+ ],
811
+ [
812
+ 65.067,
813
+ -66.069
814
+ ],
815
+ [
816
+ 102.081,
817
+ 0
818
+ ],
819
+ [
820
+ 66.068,
821
+ 65.058
822
+ ],
823
+ [
824
+ 52.379,
825
+ 255.665
826
+ ],
827
+ [
828
+ -49.234,
829
+ 62.335
830
+ ]
831
+ ],
832
+ "o": [
833
+ [
834
+ 124.041,
835
+ 0
836
+ ],
837
+ [
838
+ 41.676,
839
+ 59.427
840
+ ],
841
+ [
842
+ -103.19,
843
+ 214.939
844
+ ],
845
+ [
846
+ -66.384,
847
+ 67.406
848
+ ],
849
+ [
850
+ -100.048,
851
+ 0
852
+ ],
853
+ [
854
+ -67.415,
855
+ -66.385
856
+ ],
857
+ [
858
+ -66.496,
859
+ -217.635
860
+ ],
861
+ [
862
+ 67.028,
863
+ -84.864
864
+ ]
865
+ ],
866
+ "v": [
867
+ [
868
+ 0,
869
+ -366
870
+ ],
871
+ [
872
+ 282.976,
873
+ -221.67
874
+ ],
875
+ [
876
+ 230.193,
877
+ 16.947
878
+ ],
879
+ [
880
+ 229.517,
881
+ 269.988
882
+ ],
883
+ [
884
+ 0,
885
+ 366
886
+ ],
887
+ [
888
+ -256.787,
889
+ 260.799
890
+ ],
891
+ [
892
+ -76.962,
893
+ -15.009
894
+ ],
895
+ [
896
+ -287.381,
897
+ -226.67
898
+ ]
899
+ ],
900
+ "c": true
901
+ }
902
+ ]
903
+ },
904
+ {
905
+ "i": {
906
+ "x": 0.667,
907
+ "y": 1
908
+ },
909
+ "o": {
910
+ "x": 0.333,
911
+ "y": 0
912
+ },
913
+ "t": 94,
914
+ "s": [
915
+ {
916
+ "i": [
917
+ [
918
+ -116.537,
919
+ 0
920
+ ],
921
+ [
922
+ -66.195,
923
+ -94.389
924
+ ],
925
+ [
926
+ 70.093,
927
+ -170.914
928
+ ],
929
+ [
930
+ 65.067,
931
+ -66.069
932
+ ],
933
+ [
934
+ 102.081,
935
+ 0
936
+ ],
937
+ [
938
+ 66.068,
939
+ 65.058
940
+ ],
941
+ [
942
+ -157.227,
943
+ 316.209
944
+ ],
945
+ [
946
+ -49.234,
947
+ 62.335
948
+ ]
949
+ ],
950
+ "o": [
951
+ [
952
+ 124.041,
953
+ 0
954
+ ],
955
+ [
956
+ 41.676,
957
+ 59.427
958
+ ],
959
+ [
960
+ -52.439,
961
+ 127.868
962
+ ],
963
+ [
964
+ -66.384,
965
+ 67.406
966
+ ],
967
+ [
968
+ -100.048,
969
+ 0
970
+ ],
971
+ [
972
+ -67.415,
973
+ -66.385
974
+ ],
975
+ [
976
+ 75.268,
977
+ -151.376
978
+ ],
979
+ [
980
+ 67.028,
981
+ -84.864
982
+ ]
983
+ ],
984
+ "v": [
985
+ [
986
+ 0,
987
+ -366
988
+ ],
989
+ [
990
+ 299.865,
991
+ -209.905
992
+ ],
993
+ [
994
+ 250.126,
995
+ 62.099
996
+ ],
997
+ [
998
+ 260.784,
999
+ 256.803
1000
+ ],
1001
+ [
1002
+ 0,
1003
+ 366
1004
+ ],
1005
+ [
1006
+ -256.787,
1007
+ 260.799
1008
+ ],
1009
+ [
1010
+ 14.671,
1011
+ -55.458
1012
+ ],
1013
+ [
1014
+ -287.381,
1015
+ -226.67
1016
+ ]
1017
+ ],
1018
+ "c": true
1019
+ }
1020
+ ]
1021
+ },
1022
+ {
1023
+ "i": {
1024
+ "x": 0.368,
1025
+ "y": 1
1026
+ },
1027
+ "o": {
1028
+ "x": 0.333,
1029
+ "y": 0
1030
+ },
1031
+ "t": 114,
1032
+ "s": [
1033
+ {
1034
+ "i": [
1035
+ [
1036
+ -116.537,
1037
+ 0
1038
+ ],
1039
+ [
1040
+ -66.195,
1041
+ -94.389
1042
+ ],
1043
+ [
1044
+ 48,
1045
+ -160.001
1046
+ ],
1047
+ [
1048
+ 65.067,
1049
+ -66.069
1050
+ ],
1051
+ [
1052
+ 102.081,
1053
+ 0
1054
+ ],
1055
+ [
1056
+ 66.068,
1057
+ 65.058
1058
+ ],
1059
+ [
1060
+ -114.582,
1061
+ 138.029
1062
+ ],
1063
+ [
1064
+ -49.234,
1065
+ 62.335
1066
+ ]
1067
+ ],
1068
+ "o": [
1069
+ [
1070
+ 124.041,
1071
+ 0
1072
+ ],
1073
+ [
1074
+ 41.676,
1075
+ 59.427
1076
+ ],
1077
+ [
1078
+ -61.503,
1079
+ 205.009
1080
+ ],
1081
+ [
1082
+ -66.384,
1083
+ 67.406
1084
+ ],
1085
+ [
1086
+ -100.048,
1087
+ 0
1088
+ ],
1089
+ [
1090
+ -67.415,
1091
+ -66.385
1092
+ ],
1093
+ [
1094
+ 230.987,
1095
+ -278.253
1096
+ ],
1097
+ [
1098
+ 67.028,
1099
+ -84.864
1100
+ ]
1101
+ ],
1102
+ "v": [
1103
+ [
1104
+ 0,
1105
+ -366
1106
+ ],
1107
+ [
1108
+ 299.865,
1109
+ -209.905
1110
+ ],
1111
+ [
1112
+ 338.14,
1113
+ 64.524
1114
+ ],
1115
+ [
1116
+ 260.784,
1117
+ 256.803
1118
+ ],
1119
+ [
1120
+ 0,
1121
+ 366
1122
+ ],
1123
+ [
1124
+ -256.787,
1125
+ 260.799
1126
+ ],
1127
+ [
1128
+ -29.052,
1129
+ 9.798
1130
+ ],
1131
+ [
1132
+ -287.381,
1133
+ -226.67
1134
+ ]
1135
+ ],
1136
+ "c": true
1137
+ }
1138
+ ]
1139
+ },
1140
+ {
1141
+ "i": {
1142
+ "x": 0.439,
1143
+ "y": 1
1144
+ },
1145
+ "o": {
1146
+ "x": 0.671,
1147
+ "y": 0
1148
+ },
1149
+ "t": 130,
1150
+ "s": [
1151
+ {
1152
+ "i": [
1153
+ [
1154
+ -116.537,
1155
+ 0
1156
+ ],
1157
+ [
1158
+ -66.195,
1159
+ -94.389
1160
+ ],
1161
+ [
1162
+ 48,
1163
+ -160
1164
+ ],
1165
+ [
1166
+ 65.067,
1167
+ -66.069
1168
+ ],
1169
+ [
1170
+ 102.081,
1171
+ 0
1172
+ ],
1173
+ [
1174
+ 66.068,
1175
+ 65.058
1176
+ ],
1177
+ [
1178
+ -103.088,
1179
+ 145.785
1180
+ ],
1181
+ [
1182
+ -49.234,
1183
+ 62.335
1184
+ ]
1185
+ ],
1186
+ "o": [
1187
+ [
1188
+ 124.041,
1189
+ 0
1190
+ ],
1191
+ [
1192
+ 41.676,
1193
+ 59.427
1194
+ ],
1195
+ [
1196
+ -61.503,
1197
+ 205.01
1198
+ ],
1199
+ [
1200
+ -66.384,
1201
+ 67.406
1202
+ ],
1203
+ [
1204
+ -100.048,
1205
+ 0
1206
+ ],
1207
+ [
1208
+ -67.415,
1209
+ -66.385
1210
+ ],
1211
+ [
1212
+ 172.152,
1213
+ -227.738
1214
+ ],
1215
+ [
1216
+ 67.028,
1217
+ -84.864
1218
+ ]
1219
+ ],
1220
+ "v": [
1221
+ [
1222
+ 0,
1223
+ -366
1224
+ ],
1225
+ [
1226
+ 299.865,
1227
+ -209.905
1228
+ ],
1229
+ [
1230
+ 26.401,
1231
+ -124.412
1232
+ ],
1233
+ [
1234
+ 260.784,
1235
+ 256.803
1236
+ ],
1237
+ [
1238
+ 0,
1239
+ 366
1240
+ ],
1241
+ [
1242
+ -256.787,
1243
+ 260.799
1244
+ ],
1245
+ [
1246
+ -231.181,
1247
+ 72.709
1248
+ ],
1249
+ [
1250
+ -287.381,
1251
+ -226.67
1252
+ ]
1253
+ ],
1254
+ "c": true
1255
+ }
1256
+ ]
1257
+ },
1258
+ {
1259
+ "t": 155,
1260
+ "s": [
1261
+ {
1262
+ "i": [
1263
+ [
1264
+ -116.537,
1265
+ 0
1266
+ ],
1267
+ [
1268
+ -66.195,
1269
+ -94.389
1270
+ ],
1271
+ [
1272
+ 48,
1273
+ -160
1274
+ ],
1275
+ [
1276
+ 65.067,
1277
+ -66.069
1278
+ ],
1279
+ [
1280
+ 102.081,
1281
+ 0
1282
+ ],
1283
+ [
1284
+ 66.068,
1285
+ 65.058
1286
+ ],
1287
+ [
1288
+ -85.127,
1289
+ 157.906
1290
+ ],
1291
+ [
1292
+ -49.234,
1293
+ 62.335
1294
+ ]
1295
+ ],
1296
+ "o": [
1297
+ [
1298
+ 124.041,
1299
+ 0
1300
+ ],
1301
+ [
1302
+ 41.676,
1303
+ 59.427
1304
+ ],
1305
+ [
1306
+ -61.503,
1307
+ 205.011
1308
+ ],
1309
+ [
1310
+ -66.384,
1311
+ 67.406
1312
+ ],
1313
+ [
1314
+ -100.048,
1315
+ 0
1316
+ ],
1317
+ [
1318
+ -67.415,
1319
+ -66.385
1320
+ ],
1321
+ [
1322
+ 80.223,
1323
+ -148.809
1324
+ ],
1325
+ [
1326
+ 67.028,
1327
+ -84.864
1328
+ ]
1329
+ ],
1330
+ "v": [
1331
+ [
1332
+ 0,
1333
+ -366
1334
+ ],
1335
+ [
1336
+ 299.865,
1337
+ -209.905
1338
+ ],
1339
+ [
1340
+ 50,
1341
+ 38
1342
+ ],
1343
+ [
1344
+ 260.784,
1345
+ 256.803
1346
+ ],
1347
+ [
1348
+ 0,
1349
+ 366
1350
+ ],
1351
+ [
1352
+ -256.787,
1353
+ 260.799
1354
+ ],
1355
+ [
1356
+ -104.847,
1357
+ -79.448
1358
+ ],
1359
+ [
1360
+ -287.381,
1361
+ -226.67
1362
+ ]
1363
+ ],
1364
+ "c": true
1365
+ }
1366
+ ]
1367
+ }
1368
+ ],
1369
+ "ix": 2
1370
+ },
1371
+ "nm": "Path 1",
1372
+ "mn": "ADBE Vector Shape - Group",
1373
+ "hd": false
1374
+ },
1375
+ {
1376
+ "ty": "st",
1377
+ "c": {
1378
+ "a": 0,
1379
+ "k": [
1380
+ 1,
1381
+ 1,
1382
+ 1,
1383
+ 1
1384
+ ],
1385
+ "ix": 3
1386
+ },
1387
+ "o": {
1388
+ "a": 0,
1389
+ "k": 100,
1390
+ "ix": 4
1391
+ },
1392
+ "w": {
1393
+ "a": 0,
1394
+ "k": 0,
1395
+ "ix": 5
1396
+ },
1397
+ "lc": 1,
1398
+ "lj": 1,
1399
+ "ml": 4,
1400
+ "bm": 0,
1401
+ "nm": "Stroke 1",
1402
+ "mn": "ADBE Vector Graphic - Stroke",
1403
+ "hd": false
1404
+ },
1405
+ {
1406
+ "ty": "fl",
1407
+ "c": {
1408
+ "a": 0,
1409
+ "k": [
1410
+ 0.6274509803921569,
1411
+ 0.03529411764705882,
1412
+ 0.9647058823529412,
1413
+ 1
1414
+ ],
1415
+ "ix": 4
1416
+ },
1417
+ "o": {
1418
+ "a": 0,
1419
+ "k": 100,
1420
+ "ix": 5
1421
+ },
1422
+ "r": 1,
1423
+ "bm": 0,
1424
+ "nm": "Fill 1",
1425
+ "mn": "ADBE Vector Graphic - Fill",
1426
+ "hd": false
1427
+ },
1428
+ {
1429
+ "ty": "tr",
1430
+ "p": {
1431
+ "a": 0,
1432
+ "k": [
1433
+ 78,
1434
+ 6
1435
+ ],
1436
+ "ix": 2
1437
+ },
1438
+ "a": {
1439
+ "a": 0,
1440
+ "k": [
1441
+ 0,
1442
+ 0
1443
+ ],
1444
+ "ix": 1
1445
+ },
1446
+ "s": {
1447
+ "a": 0,
1448
+ "k": [
1449
+ 100,
1450
+ 100
1451
+ ],
1452
+ "ix": 3
1453
+ },
1454
+ "r": {
1455
+ "a": 0,
1456
+ "k": 0,
1457
+ "ix": 6
1458
+ },
1459
+ "o": {
1460
+ "a": 0,
1461
+ "k": 100,
1462
+ "ix": 7
1463
+ },
1464
+ "sk": {
1465
+ "a": 0,
1466
+ "k": 0,
1467
+ "ix": 4
1468
+ },
1469
+ "sa": {
1470
+ "a": 0,
1471
+ "k": 0,
1472
+ "ix": 5
1473
+ },
1474
+ "nm": "Transform"
1475
+ }
1476
+ ],
1477
+ "nm": "Ellipse 1",
1478
+ "np": 3,
1479
+ "cix": 2,
1480
+ "bm": 0,
1481
+ "ix": 1,
1482
+ "mn": "ADBE Vector Group",
1483
+ "hd": false
1484
+ }
1485
+ ],
1486
+ "ip": 0,
1487
+ "op": 152,
1488
+ "st": 0,
1489
+ "bm": 0
1490
+ },
1491
+ {
1492
+ "ddd": 0,
1493
+ "ind": 2,
1494
+ "ty": 4,
1495
+ "nm": "Shape Layer 4",
1496
+ "sr": 1,
1497
+ "ks": {
1498
+ "o": {
1499
+ "a": 0,
1500
+ "k": 100,
1501
+ "ix": 11
1502
+ },
1503
+ "r": {
1504
+ "a": 0,
1505
+ "k": 0,
1506
+ "ix": 10,
1507
+ "x": "var $bm_rt;\n$bm_rt = thisComp.layer('Null 1').transform.rotation;"
1508
+ },
1509
+ "p": {
1510
+ "a": 0,
1511
+ "k": [
1512
+ 512,
1513
+ 512,
1514
+ 0
1515
+ ],
1516
+ "ix": 2,
1517
+ "x": "var $bm_rt;\n$bm_rt = thisComp.layer('Null 1').transform.position;"
1518
+ },
1519
+ "a": {
1520
+ "a": 0,
1521
+ "k": [
1522
+ 83.27,
1523
+ 6,
1524
+ 0
1525
+ ],
1526
+ "ix": 1
1527
+ },
1528
+ "s": {
1529
+ "a": 0,
1530
+ "k": [
1531
+ 100,
1532
+ 100,
1533
+ 100
1534
+ ],
1535
+ "ix": 6
1536
+ }
1537
+ },
1538
+ "ao": 0,
1539
+ "shapes": [
1540
+ {
1541
+ "ty": "gr",
1542
+ "it": [
1543
+ {
1544
+ "ind": 0,
1545
+ "ty": "sh",
1546
+ "ix": 1,
1547
+ "ks": {
1548
+ "a": 1,
1549
+ "k": [
1550
+ {
1551
+ "i": {
1552
+ "x": 0.833,
1553
+ "y": 1
1554
+ },
1555
+ "o": {
1556
+ "x": 0.167,
1557
+ "y": 0.167
1558
+ },
1559
+ "t": 0,
1560
+ "s": [
1561
+ {
1562
+ "i": [
1563
+ [
1564
+ -116.537,
1565
+ 0
1566
+ ],
1567
+ [
1568
+ -66.195,
1569
+ -94.389
1570
+ ],
1571
+ [
1572
+ 48,
1573
+ -160
1574
+ ],
1575
+ [
1576
+ 65.067,
1577
+ -66.069
1578
+ ],
1579
+ [
1580
+ 102.081,
1581
+ 0
1582
+ ],
1583
+ [
1584
+ 66.068,
1585
+ 65.058
1586
+ ],
1587
+ [
1588
+ -93.22,
1589
+ 152.445
1590
+ ],
1591
+ [
1592
+ -49.234,
1593
+ 62.335
1594
+ ]
1595
+ ],
1596
+ "o": [
1597
+ [
1598
+ 124.041,
1599
+ 0
1600
+ ],
1601
+ [
1602
+ 41.676,
1603
+ 59.427
1604
+ ],
1605
+ [
1606
+ -61.503,
1607
+ 205.011
1608
+ ],
1609
+ [
1610
+ -66.384,
1611
+ 67.406
1612
+ ],
1613
+ [
1614
+ -100.048,
1615
+ 0
1616
+ ],
1617
+ [
1618
+ -67.415,
1619
+ -66.385
1620
+ ],
1621
+ [
1622
+ 121.644,
1623
+ -184.373
1624
+ ],
1625
+ [
1626
+ 67.028,
1627
+ -84.864
1628
+ ]
1629
+ ],
1630
+ "v": [
1631
+ [
1632
+ 0,
1633
+ -366
1634
+ ],
1635
+ [
1636
+ 299.865,
1637
+ -209.905
1638
+ ],
1639
+ [
1640
+ 39.367,
1641
+ -35.179
1642
+ ],
1643
+ [
1644
+ 260.784,
1645
+ 256.803
1646
+ ],
1647
+ [
1648
+ 0,
1649
+ 366
1650
+ ],
1651
+ [
1652
+ -256.787,
1653
+ 260.799
1654
+ ],
1655
+ [
1656
+ -161.77,
1657
+ -10.89
1658
+ ],
1659
+ [
1660
+ -287.381,
1661
+ -226.67
1662
+ ]
1663
+ ],
1664
+ "c": true
1665
+ }
1666
+ ]
1667
+ },
1668
+ {
1669
+ "i": {
1670
+ "x": 0.398,
1671
+ "y": 1
1672
+ },
1673
+ "o": {
1674
+ "x": 0.573,
1675
+ "y": 0
1676
+ },
1677
+ "t": 21,
1678
+ "s": [
1679
+ {
1680
+ "i": [
1681
+ [
1682
+ -116.537,
1683
+ 0
1684
+ ],
1685
+ [
1686
+ -66.195,
1687
+ -94.389
1688
+ ],
1689
+ [
1690
+ 48,
1691
+ -160
1692
+ ],
1693
+ [
1694
+ 65.067,
1695
+ -66.069
1696
+ ],
1697
+ [
1698
+ 102.081,
1699
+ 0
1700
+ ],
1701
+ [
1702
+ 66.068,
1703
+ 65.058
1704
+ ],
1705
+ [
1706
+ -85.127,
1707
+ 157.906
1708
+ ],
1709
+ [
1710
+ -49.234,
1711
+ 62.335
1712
+ ]
1713
+ ],
1714
+ "o": [
1715
+ [
1716
+ 124.041,
1717
+ 0
1718
+ ],
1719
+ [
1720
+ 41.676,
1721
+ 59.427
1722
+ ],
1723
+ [
1724
+ -61.503,
1725
+ 205.011
1726
+ ],
1727
+ [
1728
+ -66.384,
1729
+ 67.406
1730
+ ],
1731
+ [
1732
+ -100.048,
1733
+ 0
1734
+ ],
1735
+ [
1736
+ -67.415,
1737
+ -66.385
1738
+ ],
1739
+ [
1740
+ 80.223,
1741
+ -148.809
1742
+ ],
1743
+ [
1744
+ 67.028,
1745
+ -84.864
1746
+ ]
1747
+ ],
1748
+ "v": [
1749
+ [
1750
+ 0,
1751
+ -366
1752
+ ],
1753
+ [
1754
+ 299.865,
1755
+ -209.905
1756
+ ],
1757
+ [
1758
+ 50,
1759
+ 38
1760
+ ],
1761
+ [
1762
+ 260.784,
1763
+ 256.803
1764
+ ],
1765
+ [
1766
+ 0,
1767
+ 366
1768
+ ],
1769
+ [
1770
+ -256.787,
1771
+ 260.799
1772
+ ],
1773
+ [
1774
+ -104.847,
1775
+ -79.448
1776
+ ],
1777
+ [
1778
+ -287.381,
1779
+ -226.67
1780
+ ]
1781
+ ],
1782
+ "c": true
1783
+ }
1784
+ ]
1785
+ },
1786
+ {
1787
+ "i": {
1788
+ "x": 0.667,
1789
+ "y": 1
1790
+ },
1791
+ "o": {
1792
+ "x": 0.836,
1793
+ "y": 0
1794
+ },
1795
+ "t": 48,
1796
+ "s": [
1797
+ {
1798
+ "i": [
1799
+ [
1800
+ -116.537,
1801
+ 0
1802
+ ],
1803
+ [
1804
+ -66.195,
1805
+ -94.389
1806
+ ],
1807
+ [
1808
+ 48,
1809
+ -160
1810
+ ],
1811
+ [
1812
+ 65.067,
1813
+ -66.069
1814
+ ],
1815
+ [
1816
+ 102.081,
1817
+ 0
1818
+ ],
1819
+ [
1820
+ 66.068,
1821
+ 65.058
1822
+ ],
1823
+ [
1824
+ -119.289,
1825
+ 133.982
1826
+ ],
1827
+ [
1828
+ -49.234,
1829
+ 62.335
1830
+ ]
1831
+ ],
1832
+ "o": [
1833
+ [
1834
+ 124.041,
1835
+ 0
1836
+ ],
1837
+ [
1838
+ 41.676,
1839
+ 59.427
1840
+ ],
1841
+ [
1842
+ -61.503,
1843
+ 205.011
1844
+ ],
1845
+ [
1846
+ -66.384,
1847
+ 67.406
1848
+ ],
1849
+ [
1850
+ -100.048,
1851
+ 0
1852
+ ],
1853
+ [
1854
+ -67.415,
1855
+ -66.385
1856
+ ],
1857
+ [
1858
+ 122.787,
1859
+ -137.911
1860
+ ],
1861
+ [
1862
+ 67.028,
1863
+ -84.864
1864
+ ]
1865
+ ],
1866
+ "v": [
1867
+ [
1868
+ 0,
1869
+ -366
1870
+ ],
1871
+ [
1872
+ 299.865,
1873
+ -209.905
1874
+ ],
1875
+ [
1876
+ -24.884,
1877
+ 23.246
1878
+ ],
1879
+ [
1880
+ 260.784,
1881
+ 256.803
1882
+ ],
1883
+ [
1884
+ 0,
1885
+ 366
1886
+ ],
1887
+ [
1888
+ -256.787,
1889
+ 260.799
1890
+ ],
1891
+ [
1892
+ -196.288,
1893
+ -48.478
1894
+ ],
1895
+ [
1896
+ -287.381,
1897
+ -226.67
1898
+ ]
1899
+ ],
1900
+ "c": true
1901
+ }
1902
+ ]
1903
+ },
1904
+ {
1905
+ "i": {
1906
+ "x": 0.667,
1907
+ "y": 1
1908
+ },
1909
+ "o": {
1910
+ "x": 0.333,
1911
+ "y": 0
1912
+ },
1913
+ "t": 61,
1914
+ "s": [
1915
+ {
1916
+ "i": [
1917
+ [
1918
+ -116.537,
1919
+ 0
1920
+ ],
1921
+ [
1922
+ -66.195,
1923
+ -94.389
1924
+ ],
1925
+ [
1926
+ 85.13,
1927
+ -251.636
1928
+ ],
1929
+ [
1930
+ 65.067,
1931
+ -66.069
1932
+ ],
1933
+ [
1934
+ 102.081,
1935
+ 0
1936
+ ],
1937
+ [
1938
+ 66.068,
1939
+ 65.058
1940
+ ],
1941
+ [
1942
+ -122.897,
1943
+ 111.938
1944
+ ],
1945
+ [
1946
+ -49.234,
1947
+ 62.335
1948
+ ]
1949
+ ],
1950
+ "o": [
1951
+ [
1952
+ 124.041,
1953
+ 0
1954
+ ],
1955
+ [
1956
+ 41.676,
1957
+ 59.427
1958
+ ],
1959
+ [
1960
+ -39.693,
1961
+ 119.128
1962
+ ],
1963
+ [
1964
+ -66.383,
1965
+ 67.406
1966
+ ],
1967
+ [
1968
+ -100.048,
1969
+ 0
1970
+ ],
1971
+ [
1972
+ -67.415,
1973
+ -66.385
1974
+ ],
1975
+ [
1976
+ 309.312,
1977
+ -266.065
1978
+ ],
1979
+ [
1980
+ 67.028,
1981
+ -84.864
1982
+ ]
1983
+ ],
1984
+ "v": [
1985
+ [
1986
+ 0,
1987
+ -366
1988
+ ],
1989
+ [
1990
+ 275.144,
1991
+ -227.127
1992
+ ],
1993
+ [
1994
+ 159.077,
1995
+ -38.579
1996
+ ],
1997
+ [
1998
+ 215.016,
1999
+ 276.104
2000
+ ],
2001
+ [
2002
+ 0,
2003
+ 366
2004
+ ],
2005
+ [
2006
+ -256.787,
2007
+ 260.799
2008
+ ],
2009
+ [
2010
+ -150.256,
2011
+ -23.325
2012
+ ],
2013
+ [
2014
+ -287.381,
2015
+ -226.67
2016
+ ]
2017
+ ],
2018
+ "c": true
2019
+ }
2020
+ ]
2021
+ },
2022
+ {
2023
+ "i": {
2024
+ "x": 0.667,
2025
+ "y": 1
2026
+ },
2027
+ "o": {
2028
+ "x": 0.333,
2029
+ "y": 0
2030
+ },
2031
+ "t": 67,
2032
+ "s": [
2033
+ {
2034
+ "i": [
2035
+ [
2036
+ -116.537,
2037
+ 0
2038
+ ],
2039
+ [
2040
+ -66.195,
2041
+ -94.389
2042
+ ],
2043
+ [
2044
+ 82.924,
2045
+ -246.192
2046
+ ],
2047
+ [
2048
+ 65.067,
2049
+ -66.069
2050
+ ],
2051
+ [
2052
+ 102.081,
2053
+ 0
2054
+ ],
2055
+ [
2056
+ 66.068,
2057
+ 65.058
2058
+ ],
2059
+ [
2060
+ -55.859,
2061
+ 176.202
2062
+ ],
2063
+ [
2064
+ -49.234,
2065
+ 62.335
2066
+ ]
2067
+ ],
2068
+ "o": [
2069
+ [
2070
+ 124.041,
2071
+ 0
2072
+ ],
2073
+ [
2074
+ 41.676,
2075
+ 59.427
2076
+ ],
2077
+ [
2078
+ -40.989,
2079
+ 124.23
2080
+ ],
2081
+ [
2082
+ -66.384,
2083
+ 67.406
2084
+ ],
2085
+ [
2086
+ -100.048,
2087
+ 0
2088
+ ],
2089
+ [
2090
+ -67.415,
2091
+ -66.385
2092
+ ],
2093
+ [
2094
+ 24.59,
2095
+ -160.109
2096
+ ],
2097
+ [
2098
+ 67.028,
2099
+ -84.864
2100
+ ]
2101
+ ],
2102
+ "v": [
2103
+ [
2104
+ 0,
2105
+ -366
2106
+ ],
2107
+ [
2108
+ 276.613,
2109
+ -226.103
2110
+ ],
2111
+ [
2112
+ -75.017,
2113
+ -73.301
2114
+ ],
2115
+ [
2116
+ 217.735,
2117
+ 274.957
2118
+ ],
2119
+ [
2120
+ 0,
2121
+ 366
2122
+ ],
2123
+ [
2124
+ -256.787,
2125
+ 260.799
2126
+ ],
2127
+ [
2128
+ -299.117,
2129
+ -9.604
2130
+ ],
2131
+ [
2132
+ -287.381,
2133
+ -226.67
2134
+ ]
2135
+ ],
2136
+ "c": true
2137
+ }
2138
+ ]
2139
+ },
2140
+ {
2141
+ "i": {
2142
+ "x": 0.667,
2143
+ "y": 1
2144
+ },
2145
+ "o": {
2146
+ "x": 0.333,
2147
+ "y": 0
2148
+ },
2149
+ "t": 72,
2150
+ "s": [
2151
+ {
2152
+ "i": [
2153
+ [
2154
+ -116.537,
2155
+ 0
2156
+ ],
2157
+ [
2158
+ -66.195,
2159
+ -94.389
2160
+ ],
2161
+ [
2162
+ 81.086,
2163
+ -241.656
2164
+ ],
2165
+ [
2166
+ 65.067,
2167
+ -66.069
2168
+ ],
2169
+ [
2170
+ 102.081,
2171
+ 0
2172
+ ],
2173
+ [
2174
+ 66.068,
2175
+ 65.058
2176
+ ],
2177
+ [
2178
+ 94.229,
2179
+ 285.418
2180
+ ],
2181
+ [
2182
+ -49.234,
2183
+ 62.335
2184
+ ]
2185
+ ],
2186
+ "o": [
2187
+ [
2188
+ 124.041,
2189
+ 0
2190
+ ],
2191
+ [
2192
+ 41.676,
2193
+ 59.427
2194
+ ],
2195
+ [
2196
+ -42.068,
2197
+ 128.482
2198
+ ],
2199
+ [
2200
+ -66.384,
2201
+ 67.406
2202
+ ],
2203
+ [
2204
+ -100.048,
2205
+ 0
2206
+ ],
2207
+ [
2208
+ -67.415,
2209
+ -66.385
2210
+ ],
2211
+ [
2212
+ -111.15,
2213
+ -238.582
2214
+ ],
2215
+ [
2216
+ 67.028,
2217
+ -84.864
2218
+ ]
2219
+ ],
2220
+ "v": [
2221
+ [
2222
+ 0,
2223
+ -366
2224
+ ],
2225
+ [
2226
+ 277.836,
2227
+ -225.251
2228
+ ],
2229
+ [
2230
+ 294.19,
2231
+ 46.954
2232
+ ],
2233
+ [
2234
+ 220.001,
2235
+ 274.001
2236
+ ],
2237
+ [
2238
+ 0,
2239
+ 366
2240
+ ],
2241
+ [
2242
+ -256.787,
2243
+ 260.799
2244
+ ],
2245
+ [
2246
+ 123.521,
2247
+ -40.948
2248
+ ],
2249
+ [
2250
+ -287.381,
2251
+ -226.67
2252
+ ]
2253
+ ],
2254
+ "c": true
2255
+ }
2256
+ ]
2257
+ },
2258
+ {
2259
+ "i": {
2260
+ "x": 0.667,
2261
+ "y": 1
2262
+ },
2263
+ "o": {
2264
+ "x": 0.333,
2265
+ "y": 0
2266
+ },
2267
+ "t": 78,
2268
+ "s": [
2269
+ {
2270
+ "i": [
2271
+ [
2272
+ -116.537,
2273
+ 0
2274
+ ],
2275
+ [
2276
+ -66.195,
2277
+ -94.389
2278
+ ],
2279
+ [
2280
+ 78.88,
2281
+ -236.212
2282
+ ],
2283
+ [
2284
+ 65.067,
2285
+ -66.069
2286
+ ],
2287
+ [
2288
+ 102.081,
2289
+ 0
2290
+ ],
2291
+ [
2292
+ 66.068,
2293
+ 65.058
2294
+ ],
2295
+ [
2296
+ 82.272,
2297
+ 276.917
2298
+ ],
2299
+ [
2300
+ -49.234,
2301
+ 62.335
2302
+ ]
2303
+ ],
2304
+ "o": [
2305
+ [
2306
+ 124.041,
2307
+ 0
2308
+ ],
2309
+ [
2310
+ 41.676,
2311
+ 59.427
2312
+ ],
2313
+ [
2314
+ -112.252,
2315
+ 217.097
2316
+ ],
2317
+ [
2318
+ -66.384,
2319
+ 67.406
2320
+ ],
2321
+ [
2322
+ -100.048,
2323
+ 0
2324
+ ],
2325
+ [
2326
+ -67.415,
2327
+ -66.385
2328
+ ],
2329
+ [
2330
+ -98.391,
2331
+ -232.597
2332
+ ],
2333
+ [
2334
+ 67.028,
2335
+ -84.864
2336
+ ]
2337
+ ],
2338
+ "v": [
2339
+ [
2340
+ 0,
2341
+ -366
2342
+ ],
2343
+ [
2344
+ 279.305,
2345
+ -224.228
2346
+ ],
2347
+ [
2348
+ 2.74,
2349
+ -72.763
2350
+ ],
2351
+ [
2352
+ 222.719,
2353
+ 272.855
2354
+ ],
2355
+ [
2356
+ 0,
2357
+ 366
2358
+ ],
2359
+ [
2360
+ -256.787,
2361
+ 260.799
2362
+ ],
2363
+ [
2364
+ -234.073,
2365
+ 12.428
2366
+ ],
2367
+ [
2368
+ -287.381,
2369
+ -226.67
2370
+ ]
2371
+ ],
2372
+ "c": true
2373
+ }
2374
+ ]
2375
+ },
2376
+ {
2377
+ "i": {
2378
+ "x": 0.439,
2379
+ "y": 1
2380
+ },
2381
+ "o": {
2382
+ "x": 0.333,
2383
+ "y": 0
2384
+ },
2385
+ "t": 88,
2386
+ "s": [
2387
+ {
2388
+ "i": [
2389
+ [
2390
+ -116.537,
2391
+ 0
2392
+ ],
2393
+ [
2394
+ -66.195,
2395
+ -94.389
2396
+ ],
2397
+ [
2398
+ 73.366,
2399
+ -222.603
2400
+ ],
2401
+ [
2402
+ 65.067,
2403
+ -66.069
2404
+ ],
2405
+ [
2406
+ 102.081,
2407
+ 0
2408
+ ],
2409
+ [
2410
+ 66.068,
2411
+ 65.058
2412
+ ],
2413
+ [
2414
+ 52.379,
2415
+ 255.665
2416
+ ],
2417
+ [
2418
+ -49.234,
2419
+ 62.335
2420
+ ]
2421
+ ],
2422
+ "o": [
2423
+ [
2424
+ 124.041,
2425
+ 0
2426
+ ],
2427
+ [
2428
+ 41.676,
2429
+ 59.427
2430
+ ],
2431
+ [
2432
+ -103.19,
2433
+ 214.939
2434
+ ],
2435
+ [
2436
+ -66.384,
2437
+ 67.406
2438
+ ],
2439
+ [
2440
+ -100.048,
2441
+ 0
2442
+ ],
2443
+ [
2444
+ -67.415,
2445
+ -66.385
2446
+ ],
2447
+ [
2448
+ -66.496,
2449
+ -217.635
2450
+ ],
2451
+ [
2452
+ 67.028,
2453
+ -84.864
2454
+ ]
2455
+ ],
2456
+ "v": [
2457
+ [
2458
+ 0,
2459
+ -366
2460
+ ],
2461
+ [
2462
+ 282.976,
2463
+ -221.67
2464
+ ],
2465
+ [
2466
+ 230.193,
2467
+ 16.947
2468
+ ],
2469
+ [
2470
+ 229.517,
2471
+ 269.988
2472
+ ],
2473
+ [
2474
+ 0,
2475
+ 366
2476
+ ],
2477
+ [
2478
+ -256.787,
2479
+ 260.799
2480
+ ],
2481
+ [
2482
+ -76.962,
2483
+ -15.009
2484
+ ],
2485
+ [
2486
+ -287.381,
2487
+ -226.67
2488
+ ]
2489
+ ],
2490
+ "c": true
2491
+ }
2492
+ ]
2493
+ },
2494
+ {
2495
+ "i": {
2496
+ "x": 0.667,
2497
+ "y": 1
2498
+ },
2499
+ "o": {
2500
+ "x": 0.333,
2501
+ "y": 0
2502
+ },
2503
+ "t": 101,
2504
+ "s": [
2505
+ {
2506
+ "i": [
2507
+ [
2508
+ -116.537,
2509
+ 0
2510
+ ],
2511
+ [
2512
+ -66.195,
2513
+ -94.389
2514
+ ],
2515
+ [
2516
+ 70.093,
2517
+ -170.914
2518
+ ],
2519
+ [
2520
+ 65.067,
2521
+ -66.069
2522
+ ],
2523
+ [
2524
+ 102.081,
2525
+ 0
2526
+ ],
2527
+ [
2528
+ 66.068,
2529
+ 65.058
2530
+ ],
2531
+ [
2532
+ -157.227,
2533
+ 316.209
2534
+ ],
2535
+ [
2536
+ -49.234,
2537
+ 62.335
2538
+ ]
2539
+ ],
2540
+ "o": [
2541
+ [
2542
+ 124.041,
2543
+ 0
2544
+ ],
2545
+ [
2546
+ 41.676,
2547
+ 59.427
2548
+ ],
2549
+ [
2550
+ -52.439,
2551
+ 127.868
2552
+ ],
2553
+ [
2554
+ -66.384,
2555
+ 67.406
2556
+ ],
2557
+ [
2558
+ -100.048,
2559
+ 0
2560
+ ],
2561
+ [
2562
+ -67.415,
2563
+ -66.385
2564
+ ],
2565
+ [
2566
+ 75.268,
2567
+ -151.376
2568
+ ],
2569
+ [
2570
+ 67.028,
2571
+ -84.864
2572
+ ]
2573
+ ],
2574
+ "v": [
2575
+ [
2576
+ 0,
2577
+ -366
2578
+ ],
2579
+ [
2580
+ 299.865,
2581
+ -209.905
2582
+ ],
2583
+ [
2584
+ 250.126,
2585
+ 62.099
2586
+ ],
2587
+ [
2588
+ 260.784,
2589
+ 256.803
2590
+ ],
2591
+ [
2592
+ 0,
2593
+ 366
2594
+ ],
2595
+ [
2596
+ -256.787,
2597
+ 260.799
2598
+ ],
2599
+ [
2600
+ 14.671,
2601
+ -55.458
2602
+ ],
2603
+ [
2604
+ -287.381,
2605
+ -226.67
2606
+ ]
2607
+ ],
2608
+ "c": true
2609
+ }
2610
+ ]
2611
+ },
2612
+ {
2613
+ "i": {
2614
+ "x": 0.368,
2615
+ "y": 1
2616
+ },
2617
+ "o": {
2618
+ "x": 0.333,
2619
+ "y": 0
2620
+ },
2621
+ "t": 121,
2622
+ "s": [
2623
+ {
2624
+ "i": [
2625
+ [
2626
+ -116.537,
2627
+ 0
2628
+ ],
2629
+ [
2630
+ -66.195,
2631
+ -94.389
2632
+ ],
2633
+ [
2634
+ 48,
2635
+ -160.001
2636
+ ],
2637
+ [
2638
+ 65.067,
2639
+ -66.069
2640
+ ],
2641
+ [
2642
+ 102.081,
2643
+ 0
2644
+ ],
2645
+ [
2646
+ 66.068,
2647
+ 65.058
2648
+ ],
2649
+ [
2650
+ -114.582,
2651
+ 138.029
2652
+ ],
2653
+ [
2654
+ -49.234,
2655
+ 62.335
2656
+ ]
2657
+ ],
2658
+ "o": [
2659
+ [
2660
+ 124.041,
2661
+ 0
2662
+ ],
2663
+ [
2664
+ 41.676,
2665
+ 59.427
2666
+ ],
2667
+ [
2668
+ -61.503,
2669
+ 205.009
2670
+ ],
2671
+ [
2672
+ -66.384,
2673
+ 67.406
2674
+ ],
2675
+ [
2676
+ -100.048,
2677
+ 0
2678
+ ],
2679
+ [
2680
+ -67.415,
2681
+ -66.385
2682
+ ],
2683
+ [
2684
+ 230.987,
2685
+ -278.253
2686
+ ],
2687
+ [
2688
+ 67.028,
2689
+ -84.864
2690
+ ]
2691
+ ],
2692
+ "v": [
2693
+ [
2694
+ 0,
2695
+ -366
2696
+ ],
2697
+ [
2698
+ 299.865,
2699
+ -209.905
2700
+ ],
2701
+ [
2702
+ 338.14,
2703
+ 64.524
2704
+ ],
2705
+ [
2706
+ 260.784,
2707
+ 256.803
2708
+ ],
2709
+ [
2710
+ 0,
2711
+ 366
2712
+ ],
2713
+ [
2714
+ -256.787,
2715
+ 260.799
2716
+ ],
2717
+ [
2718
+ -29.052,
2719
+ 9.798
2720
+ ],
2721
+ [
2722
+ -287.381,
2723
+ -226.67
2724
+ ]
2725
+ ],
2726
+ "c": true
2727
+ }
2728
+ ]
2729
+ },
2730
+ {
2731
+ "i": {
2732
+ "x": 0.833,
2733
+ "y": 0.833
2734
+ },
2735
+ "o": {
2736
+ "x": 0.671,
2737
+ "y": 0
2738
+ },
2739
+ "t": 137,
2740
+ "s": [
2741
+ {
2742
+ "i": [
2743
+ [
2744
+ -116.537,
2745
+ 0
2746
+ ],
2747
+ [
2748
+ -66.195,
2749
+ -94.389
2750
+ ],
2751
+ [
2752
+ 48,
2753
+ -160
2754
+ ],
2755
+ [
2756
+ 65.067,
2757
+ -66.069
2758
+ ],
2759
+ [
2760
+ 102.081,
2761
+ 0
2762
+ ],
2763
+ [
2764
+ 66.068,
2765
+ 65.058
2766
+ ],
2767
+ [
2768
+ -103.088,
2769
+ 145.785
2770
+ ],
2771
+ [
2772
+ -49.234,
2773
+ 62.335
2774
+ ]
2775
+ ],
2776
+ "o": [
2777
+ [
2778
+ 124.041,
2779
+ 0
2780
+ ],
2781
+ [
2782
+ 41.676,
2783
+ 59.427
2784
+ ],
2785
+ [
2786
+ -61.503,
2787
+ 205.01
2788
+ ],
2789
+ [
2790
+ -66.384,
2791
+ 67.406
2792
+ ],
2793
+ [
2794
+ -100.048,
2795
+ 0
2796
+ ],
2797
+ [
2798
+ -67.415,
2799
+ -66.385
2800
+ ],
2801
+ [
2802
+ 172.152,
2803
+ -227.738
2804
+ ],
2805
+ [
2806
+ 67.028,
2807
+ -84.864
2808
+ ]
2809
+ ],
2810
+ "v": [
2811
+ [
2812
+ 0,
2813
+ -366
2814
+ ],
2815
+ [
2816
+ 299.865,
2817
+ -209.905
2818
+ ],
2819
+ [
2820
+ 26.401,
2821
+ -124.412
2822
+ ],
2823
+ [
2824
+ 260.784,
2825
+ 256.803
2826
+ ],
2827
+ [
2828
+ 0,
2829
+ 366
2830
+ ],
2831
+ [
2832
+ -256.787,
2833
+ 260.799
2834
+ ],
2835
+ [
2836
+ -231.181,
2837
+ 72.709
2838
+ ],
2839
+ [
2840
+ -287.381,
2841
+ -226.67
2842
+ ]
2843
+ ],
2844
+ "c": true
2845
+ }
2846
+ ]
2847
+ },
2848
+ {
2849
+ "i": {
2850
+ "x": 0.439,
2851
+ "y": 1
2852
+ },
2853
+ "o": {
2854
+ "x": 0.167,
2855
+ "y": 0.167
2856
+ },
2857
+ "t": 151,
2858
+ "s": [
2859
+ {
2860
+ "i": [
2861
+ [
2862
+ -116.537,
2863
+ 0
2864
+ ],
2865
+ [
2866
+ -66.195,
2867
+ -94.389
2868
+ ],
2869
+ [
2870
+ 48,
2871
+ -160
2872
+ ],
2873
+ [
2874
+ 65.067,
2875
+ -66.069
2876
+ ],
2877
+ [
2878
+ 102.081,
2879
+ 0
2880
+ ],
2881
+ [
2882
+ 66.068,
2883
+ 65.058
2884
+ ],
2885
+ [
2886
+ -93.22,
2887
+ 152.445
2888
+ ],
2889
+ [
2890
+ -49.234,
2891
+ 62.335
2892
+ ]
2893
+ ],
2894
+ "o": [
2895
+ [
2896
+ 124.041,
2897
+ 0
2898
+ ],
2899
+ [
2900
+ 41.676,
2901
+ 59.427
2902
+ ],
2903
+ [
2904
+ -61.503,
2905
+ 205.011
2906
+ ],
2907
+ [
2908
+ -66.384,
2909
+ 67.406
2910
+ ],
2911
+ [
2912
+ -100.048,
2913
+ 0
2914
+ ],
2915
+ [
2916
+ -67.415,
2917
+ -66.385
2918
+ ],
2919
+ [
2920
+ 121.644,
2921
+ -184.373
2922
+ ],
2923
+ [
2924
+ 67.028,
2925
+ -84.864
2926
+ ]
2927
+ ],
2928
+ "v": [
2929
+ [
2930
+ 0,
2931
+ -366
2932
+ ],
2933
+ [
2934
+ 299.865,
2935
+ -209.905
2936
+ ],
2937
+ [
2938
+ 39.367,
2939
+ -35.179
2940
+ ],
2941
+ [
2942
+ 260.784,
2943
+ 256.803
2944
+ ],
2945
+ [
2946
+ 0,
2947
+ 366
2948
+ ],
2949
+ [
2950
+ -256.787,
2951
+ 260.799
2952
+ ],
2953
+ [
2954
+ -161.77,
2955
+ -10.89
2956
+ ],
2957
+ [
2958
+ -287.381,
2959
+ -226.67
2960
+ ]
2961
+ ],
2962
+ "c": true
2963
+ }
2964
+ ]
2965
+ },
2966
+ {
2967
+ "t": 162,
2968
+ "s": [
2969
+ {
2970
+ "i": [
2971
+ [
2972
+ -116.537,
2973
+ 0
2974
+ ],
2975
+ [
2976
+ -66.195,
2977
+ -94.389
2978
+ ],
2979
+ [
2980
+ 48,
2981
+ -160
2982
+ ],
2983
+ [
2984
+ 65.067,
2985
+ -66.069
2986
+ ],
2987
+ [
2988
+ 102.081,
2989
+ 0
2990
+ ],
2991
+ [
2992
+ 66.068,
2993
+ 65.058
2994
+ ],
2995
+ [
2996
+ -85.127,
2997
+ 157.906
2998
+ ],
2999
+ [
3000
+ -49.234,
3001
+ 62.335
3002
+ ]
3003
+ ],
3004
+ "o": [
3005
+ [
3006
+ 124.041,
3007
+ 0
3008
+ ],
3009
+ [
3010
+ 41.676,
3011
+ 59.427
3012
+ ],
3013
+ [
3014
+ -61.503,
3015
+ 205.011
3016
+ ],
3017
+ [
3018
+ -66.384,
3019
+ 67.406
3020
+ ],
3021
+ [
3022
+ -100.048,
3023
+ 0
3024
+ ],
3025
+ [
3026
+ -67.415,
3027
+ -66.385
3028
+ ],
3029
+ [
3030
+ 80.223,
3031
+ -148.809
3032
+ ],
3033
+ [
3034
+ 67.028,
3035
+ -84.864
3036
+ ]
3037
+ ],
3038
+ "v": [
3039
+ [
3040
+ 0,
3041
+ -366
3042
+ ],
3043
+ [
3044
+ 299.865,
3045
+ -209.905
3046
+ ],
3047
+ [
3048
+ 50,
3049
+ 38
3050
+ ],
3051
+ [
3052
+ 260.784,
3053
+ 256.803
3054
+ ],
3055
+ [
3056
+ 0,
3057
+ 366
3058
+ ],
3059
+ [
3060
+ -256.787,
3061
+ 260.799
3062
+ ],
3063
+ [
3064
+ -104.847,
3065
+ -79.448
3066
+ ],
3067
+ [
3068
+ -287.381,
3069
+ -226.67
3070
+ ]
3071
+ ],
3072
+ "c": true
3073
+ }
3074
+ ]
3075
+ }
3076
+ ],
3077
+ "ix": 2
3078
+ },
3079
+ "nm": "Path 1",
3080
+ "mn": "ADBE Vector Shape - Group",
3081
+ "hd": false
3082
+ },
3083
+ {
3084
+ "ty": "st",
3085
+ "c": {
3086
+ "a": 0,
3087
+ "k": [
3088
+ 1,
3089
+ 1,
3090
+ 1,
3091
+ 1
3092
+ ],
3093
+ "ix": 3
3094
+ },
3095
+ "o": {
3096
+ "a": 0,
3097
+ "k": 100,
3098
+ "ix": 4
3099
+ },
3100
+ "w": {
3101
+ "a": 0,
3102
+ "k": 0,
3103
+ "ix": 5
3104
+ },
3105
+ "lc": 1,
3106
+ "lj": 1,
3107
+ "ml": 4,
3108
+ "bm": 0,
3109
+ "nm": "Stroke 1",
3110
+ "mn": "ADBE Vector Graphic - Stroke",
3111
+ "hd": false
3112
+ },
3113
+ {
3114
+ "ty": "fl",
3115
+ "c": {
3116
+ "a": 0,
3117
+ "k": [
3118
+ 0.9921568627450981,
3119
+ 0.3137254901960784,
3120
+ 0.00784313725490196,
3121
+ 1
3122
+ ],
3123
+ "ix": 4
3124
+ },
3125
+ "o": {
3126
+ "a": 0,
3127
+ "k": 100,
3128
+ "ix": 5
3129
+ },
3130
+ "r": 1,
3131
+ "bm": 0,
3132
+ "nm": "Fill 1",
3133
+ "mn": "ADBE Vector Graphic - Fill",
3134
+ "hd": false
3135
+ },
3136
+ {
3137
+ "ty": "tr",
3138
+ "p": {
3139
+ "a": 0,
3140
+ "k": [
3141
+ 78,
3142
+ 6
3143
+ ],
3144
+ "ix": 2
3145
+ },
3146
+ "a": {
3147
+ "a": 0,
3148
+ "k": [
3149
+ 0,
3150
+ 0
3151
+ ],
3152
+ "ix": 1
3153
+ },
3154
+ "s": {
3155
+ "a": 0,
3156
+ "k": [
3157
+ 100,
3158
+ 100
3159
+ ],
3160
+ "ix": 3
3161
+ },
3162
+ "r": {
3163
+ "a": 0,
3164
+ "k": 0,
3165
+ "ix": 6
3166
+ },
3167
+ "o": {
3168
+ "a": 0,
3169
+ "k": 100,
3170
+ "ix": 7
3171
+ },
3172
+ "sk": {
3173
+ "a": 0,
3174
+ "k": 0,
3175
+ "ix": 4
3176
+ },
3177
+ "sa": {
3178
+ "a": 0,
3179
+ "k": 0,
3180
+ "ix": 5
3181
+ },
3182
+ "nm": "Transform"
3183
+ }
3184
+ ],
3185
+ "nm": "Ellipse 1",
3186
+ "np": 3,
3187
+ "cix": 2,
3188
+ "bm": 0,
3189
+ "ix": 1,
3190
+ "mn": "ADBE Vector Group",
3191
+ "hd": false
3192
+ }
3193
+ ],
3194
+ "ip": -19,
3195
+ "op": 167,
3196
+ "st": 7,
3197
+ "bm": 0
3198
+ },
3199
+ {
3200
+ "ddd": 0,
3201
+ "ind": 3,
3202
+ "ty": 3,
3203
+ "nm": "Null 1",
3204
+ "sr": 1,
3205
+ "ks": {
3206
+ "o": {
3207
+ "a": 0,
3208
+ "k": 0,
3209
+ "ix": 11
3210
+ },
3211
+ "r": {
3212
+ "a": 1,
3213
+ "k": [
3214
+ {
3215
+ "i": {
3216
+ "x": [
3217
+ 0.39
3218
+ ],
3219
+ "y": [
3220
+ 1
3221
+ ]
3222
+ },
3223
+ "o": {
3224
+ "x": [
3225
+ 0.695
3226
+ ],
3227
+ "y": [
3228
+ 0
3229
+ ]
3230
+ },
3231
+ "t": 0,
3232
+ "s": [
3233
+ 0
3234
+ ]
3235
+ },
3236
+ {
3237
+ "i": {
3238
+ "x": [
3239
+ 0.259
3240
+ ],
3241
+ "y": [
3242
+ 1
3243
+ ]
3244
+ },
3245
+ "o": {
3246
+ "x": [
3247
+ 0.557
3248
+ ],
3249
+ "y": [
3250
+ 0
3251
+ ]
3252
+ },
3253
+ "t": 38,
3254
+ "s": [
3255
+ -32
3256
+ ]
3257
+ },
3258
+ {
3259
+ "i": {
3260
+ "x": [
3261
+ 0.496
3262
+ ],
3263
+ "y": [
3264
+ 1
3265
+ ]
3266
+ },
3267
+ "o": {
3268
+ "x": [
3269
+ 0.769
3270
+ ],
3271
+ "y": [
3272
+ 0
3273
+ ]
3274
+ },
3275
+ "t": 90,
3276
+ "s": [
3277
+ 780
3278
+ ]
3279
+ },
3280
+ {
3281
+ "i": {
3282
+ "x": [
3283
+ 0.417
3284
+ ],
3285
+ "y": [
3286
+ 1
3287
+ ]
3288
+ },
3289
+ "o": {
3290
+ "x": [
3291
+ 0.6
3292
+ ],
3293
+ "y": [
3294
+ 0
3295
+ ]
3296
+ },
3297
+ "t": 125,
3298
+ "s": [
3299
+ 702
3300
+ ]
3301
+ },
3302
+ {
3303
+ "t": 152,
3304
+ "s": [
3305
+ 720
3306
+ ]
3307
+ }
3308
+ ],
3309
+ "ix": 10
3310
+ },
3311
+ "p": {
3312
+ "a": 0,
3313
+ "k": [
3314
+ 512,
3315
+ 512,
3316
+ 0
3317
+ ],
3318
+ "ix": 2
3319
+ },
3320
+ "a": {
3321
+ "a": 0,
3322
+ "k": [
3323
+ 0,
3324
+ 0,
3325
+ 0
3326
+ ],
3327
+ "ix": 1
3328
+ },
3329
+ "s": {
3330
+ "a": 0,
3331
+ "k": [
3332
+ 100,
3333
+ 100,
3334
+ 100
3335
+ ],
3336
+ "ix": 6
3337
+ }
3338
+ },
3339
+ "ao": 0,
3340
+ "ip": 0,
3341
+ "op": 152,
3342
+ "st": 0,
3343
+ "bm": 0
3344
+ }
3345
+ ],
3346
+ "markers": []
3347
+ }