react-native-wagmi-charts 2.1.0 → 2.3.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 (890) hide show
  1. package/README.md +26 -4
  2. package/lib/commonjs/charts/candle/Crosshair.js +3 -3
  3. package/lib/commonjs/charts/candle/Crosshair.js.map +1 -1
  4. package/lib/commonjs/charts/candle/CrosshairTooltip.js +4 -4
  5. package/lib/commonjs/charts/candle/CrosshairTooltip.js.map +1 -1
  6. package/lib/commonjs/charts/candle/useCandleData.js +1 -1
  7. package/lib/commonjs/charts/candle/useCandleData.js.map +1 -1
  8. package/lib/commonjs/charts/candle/useDatetime.js +2 -2
  9. package/lib/commonjs/charts/candle/useDatetime.js.map +1 -1
  10. package/lib/commonjs/charts/candle/usePrice.js +2 -2
  11. package/lib/commonjs/charts/candle/usePrice.js.map +1 -1
  12. package/lib/commonjs/charts/line/Chart.js +15 -4
  13. package/lib/commonjs/charts/line/Chart.js.map +1 -1
  14. package/lib/commonjs/charts/line/ChartPath.js +6 -11
  15. package/lib/commonjs/charts/line/ChartPath.js.map +1 -1
  16. package/lib/commonjs/charts/line/Context.js +6 -3
  17. package/lib/commonjs/charts/line/Context.js.map +1 -1
  18. package/lib/commonjs/charts/line/Cursor.js +58 -9
  19. package/lib/commonjs/charts/line/Cursor.js.map +1 -1
  20. package/lib/commonjs/charts/line/CursorCrosshair.js +1 -1
  21. package/lib/commonjs/charts/line/CursorCrosshair.js.map +1 -1
  22. package/lib/commonjs/charts/line/CursorLine.js +5 -4
  23. package/lib/commonjs/charts/line/CursorLine.js.map +1 -1
  24. package/lib/commonjs/charts/line/Dot.js +8 -13
  25. package/lib/commonjs/charts/line/Dot.js.map +1 -1
  26. package/lib/commonjs/charts/line/Gradient.js +2 -2
  27. package/lib/commonjs/charts/line/Gradient.js.map +1 -1
  28. package/lib/commonjs/charts/line/Highlight.js +2 -2
  29. package/lib/commonjs/charts/line/Highlight.js.map +1 -1
  30. package/lib/commonjs/charts/line/HorizontalLine.js +4 -9
  31. package/lib/commonjs/charts/line/HorizontalLine.js.map +1 -1
  32. package/lib/commonjs/charts/line/HoverTrap/index.web.js +1 -4
  33. package/lib/commonjs/charts/line/HoverTrap/index.web.js.map +1 -1
  34. package/lib/commonjs/charts/line/LineChartPathContext.js +19 -0
  35. package/lib/commonjs/charts/line/LineChartPathContext.js.map +1 -0
  36. package/lib/commonjs/charts/line/Path.js +2 -2
  37. package/lib/commonjs/charts/line/Path.js.map +1 -1
  38. package/lib/commonjs/charts/line/PriceText.js +4 -2
  39. package/lib/commonjs/charts/line/PriceText.js.map +1 -1
  40. package/lib/commonjs/charts/line/Tooltip.js +57 -16
  41. package/lib/commonjs/charts/line/Tooltip.js.map +1 -1
  42. package/lib/commonjs/charts/line/useCurrentY.js +1 -1
  43. package/lib/commonjs/charts/line/useCurrentY.js.map +1 -1
  44. package/lib/commonjs/charts/line/useDatetime.js +3 -3
  45. package/lib/commonjs/charts/line/useDatetime.js.map +1 -1
  46. package/lib/commonjs/charts/line/usePrice.js +6 -5
  47. package/lib/commonjs/charts/line/usePrice.js.map +1 -1
  48. package/lib/commonjs/charts/line/utils/getArea.js.map +1 -1
  49. package/lib/commonjs/charts/line/utils/getPath.js +7 -4
  50. package/lib/commonjs/charts/line/utils/getPath.js.map +1 -1
  51. package/lib/commonjs/components/AnimatedText.js +1 -1
  52. package/lib/commonjs/components/AnimatedText.js.map +1 -1
  53. package/lib/module/charts/candle/Crosshair.js +3 -3
  54. package/lib/module/charts/candle/Crosshair.js.map +1 -1
  55. package/lib/module/charts/candle/CrosshairTooltip.js +4 -4
  56. package/lib/module/charts/candle/CrosshairTooltip.js.map +1 -1
  57. package/lib/module/charts/candle/useCandleData.js +1 -1
  58. package/lib/module/charts/candle/useCandleData.js.map +1 -1
  59. package/lib/module/charts/candle/useDatetime.js +2 -2
  60. package/lib/module/charts/candle/useDatetime.js.map +1 -1
  61. package/lib/module/charts/candle/usePrice.js +2 -2
  62. package/lib/module/charts/candle/usePrice.js.map +1 -1
  63. package/lib/module/charts/line/Chart.js +14 -4
  64. package/lib/module/charts/line/Chart.js.map +1 -1
  65. package/lib/module/charts/line/ChartPath.js +3 -7
  66. package/lib/module/charts/line/ChartPath.js.map +1 -1
  67. package/lib/module/charts/line/Context.js +6 -3
  68. package/lib/module/charts/line/Context.js.map +1 -1
  69. package/lib/module/charts/line/Cursor.js +58 -9
  70. package/lib/module/charts/line/Cursor.js.map +1 -1
  71. package/lib/module/charts/line/CursorCrosshair.js +1 -1
  72. package/lib/module/charts/line/CursorCrosshair.js.map +1 -1
  73. package/lib/module/charts/line/CursorLine.js +5 -4
  74. package/lib/module/charts/line/CursorLine.js.map +1 -1
  75. package/lib/module/charts/line/Dot.js +8 -13
  76. package/lib/module/charts/line/Dot.js.map +1 -1
  77. package/lib/module/charts/line/Gradient.js +1 -1
  78. package/lib/module/charts/line/Gradient.js.map +1 -1
  79. package/lib/module/charts/line/Highlight.js +1 -1
  80. package/lib/module/charts/line/Highlight.js.map +1 -1
  81. package/lib/module/charts/line/HorizontalLine.js +5 -7
  82. package/lib/module/charts/line/HorizontalLine.js.map +1 -1
  83. package/lib/module/charts/line/HoverTrap/index.web.js +1 -3
  84. package/lib/module/charts/line/HoverTrap/index.web.js.map +1 -1
  85. package/lib/module/charts/line/LineChartPathContext.js +7 -0
  86. package/lib/module/charts/line/LineChartPathContext.js.map +1 -0
  87. package/lib/module/charts/line/Path.js +1 -1
  88. package/lib/module/charts/line/Path.js.map +1 -1
  89. package/lib/module/charts/line/PriceText.js +4 -2
  90. package/lib/module/charts/line/PriceText.js.map +1 -1
  91. package/lib/module/charts/line/Tooltip.js +58 -17
  92. package/lib/module/charts/line/Tooltip.js.map +1 -1
  93. package/lib/module/charts/line/useCurrentY.js +1 -1
  94. package/lib/module/charts/line/useCurrentY.js.map +1 -1
  95. package/lib/module/charts/line/useDatetime.js +3 -3
  96. package/lib/module/charts/line/useDatetime.js.map +1 -1
  97. package/lib/module/charts/line/usePrice.js +6 -5
  98. package/lib/module/charts/line/usePrice.js.map +1 -1
  99. package/lib/module/charts/line/utils/getArea.js.map +1 -1
  100. package/lib/module/charts/line/utils/getPath.js +7 -4
  101. package/lib/module/charts/line/utils/getPath.js.map +1 -1
  102. package/lib/module/components/AnimatedText.js +1 -1
  103. package/lib/module/components/AnimatedText.js.map +1 -1
  104. package/lib/typescript/src/charts/line/Chart.d.ts +3 -0
  105. package/lib/typescript/src/charts/line/ChartPath.d.ts +0 -5
  106. package/lib/typescript/src/charts/line/Context.d.ts +2 -1
  107. package/lib/typescript/src/charts/line/Cursor.d.ts +2 -1
  108. package/lib/typescript/src/charts/line/CursorLine.d.ts +3 -2
  109. package/lib/typescript/src/charts/line/LineChartPathContext.d.ts +6 -0
  110. package/lib/typescript/src/charts/line/PriceText.d.ts +6 -1
  111. package/lib/typescript/src/charts/line/Tooltip.d.ts +10 -3
  112. package/lib/typescript/src/charts/line/types.d.ts +1 -0
  113. package/lib/typescript/src/charts/line/useLineChart.d.ts +1 -0
  114. package/lib/typescript/src/charts/line/usePrice.d.ts +2 -1
  115. package/lib/typescript/src/charts/line/utils/getPath.d.ts +2 -1
  116. package/package.json +15 -5
  117. package/src/charts/candle/Crosshair.tsx +16 -9
  118. package/src/charts/candle/CrosshairTooltip.tsx +26 -17
  119. package/src/charts/candle/useCandleData.ts +1 -1
  120. package/src/charts/candle/useDatetime.ts +2 -2
  121. package/src/charts/candle/usePrice.ts +2 -2
  122. package/src/charts/line/Chart.tsx +26 -3
  123. package/src/charts/line/ChartPath.tsx +15 -7
  124. package/src/charts/line/Context.tsx +7 -1
  125. package/src/charts/line/Cursor.tsx +75 -12
  126. package/src/charts/line/CursorCrosshair.tsx +16 -13
  127. package/src/charts/line/CursorLine.tsx +13 -9
  128. package/src/charts/line/Dot.tsx +18 -22
  129. package/src/charts/line/Gradient.tsx +1 -1
  130. package/src/charts/line/Highlight.tsx +1 -1
  131. package/src/charts/line/HorizontalLine.tsx +22 -16
  132. package/src/charts/line/HoverTrap/index.web.tsx +1 -7
  133. package/src/charts/line/LineChartPathContext.ts +7 -0
  134. package/src/charts/line/Path.tsx +1 -1
  135. package/src/charts/line/PriceText.tsx +7 -1
  136. package/src/charts/line/Tooltip.tsx +81 -25
  137. package/src/charts/line/types.ts +1 -0
  138. package/src/charts/line/useCurrentY.ts +1 -1
  139. package/src/charts/line/useDatetime.ts +3 -3
  140. package/src/charts/line/usePrice.ts +10 -5
  141. package/src/charts/line/utils/getArea.ts +1 -1
  142. package/src/charts/line/utils/getPath.ts +5 -3
  143. package/src/components/AnimatedText.tsx +2 -1
  144. package/.DS_Store +0 -0
  145. package/.editorconfig +0 -15
  146. package/.gitattributes +0 -3
  147. package/.gitignore +0 -60
  148. package/.husky/_/.gitignore +0 -1
  149. package/.husky/_/husky.sh +0 -29
  150. package/.husky/pre-commit +0 -4
  151. package/.prettierrc.js +0 -5
  152. package/.yarnrc +0 -3
  153. package/babel.config.js +0 -3
  154. package/example/.DS_Store +0 -0
  155. package/example/.expo/README.md +0 -17
  156. package/example/.expo/packager-info.json +0 -10
  157. package/example/.expo/settings.json +0 -10
  158. package/example/.expo/web/cache/development/babel-loader/0048eab7a1937596c83f7a0a8669a057.json +0 -1
  159. package/example/.expo/web/cache/development/babel-loader/00e78539c92f01b2990b35cc56404077.json +0 -1
  160. package/example/.expo/web/cache/development/babel-loader/00fb31a59f8059a371925c6563cc997b.json +0 -1
  161. package/example/.expo/web/cache/development/babel-loader/01548be34380766518c44d302f0da833.json +0 -1
  162. package/example/.expo/web/cache/development/babel-loader/01dc8e11259412b46f72a16b6f6f989a.json +0 -1
  163. package/example/.expo/web/cache/development/babel-loader/022bc27c62f111b60de1d9cf31798db5.json +0 -1
  164. package/example/.expo/web/cache/development/babel-loader/02341c3581c9b4661b5deec14d244183.json +0 -1
  165. package/example/.expo/web/cache/development/babel-loader/02864927117d03b881e7a8edfefbce1f.json +0 -1
  166. package/example/.expo/web/cache/development/babel-loader/029e21747cfcaf8be0db65a531a13e45.json +0 -1
  167. package/example/.expo/web/cache/development/babel-loader/02cacb7980022332144135d930ecea11.json +0 -1
  168. package/example/.expo/web/cache/development/babel-loader/030b07a0a05e98460988fcc5b21543fd.json +0 -1
  169. package/example/.expo/web/cache/development/babel-loader/03baac388b3f9a631dca74f8f5355871.json +0 -1
  170. package/example/.expo/web/cache/development/babel-loader/03bc10b4a5ee3eedb5e5f050d616c7ca.json +0 -1
  171. package/example/.expo/web/cache/development/babel-loader/03e0f78352a5cc290e9a694dfa0457b2.json +0 -1
  172. package/example/.expo/web/cache/development/babel-loader/03f273e96dda522f2f1ffb0c11d9cb41.json +0 -1
  173. package/example/.expo/web/cache/development/babel-loader/040ef89e9083432c9c572aecfb055253.json +0 -1
  174. package/example/.expo/web/cache/development/babel-loader/053109a5af2f50846dbff99c9ddaa08b.json +0 -1
  175. package/example/.expo/web/cache/development/babel-loader/05c8ee51599e49b8df4c2aea1c61f9bd.json +0 -1
  176. package/example/.expo/web/cache/development/babel-loader/061e5f7ad7d0922480d8aa5ec61bb646.json +0 -1
  177. package/example/.expo/web/cache/development/babel-loader/062a149ffbda2b47d4a754da17f0ed89.json +0 -1
  178. package/example/.expo/web/cache/development/babel-loader/06c9aabc7c8dc32a774403b9acd1d9e3.json +0 -1
  179. package/example/.expo/web/cache/development/babel-loader/06de2f6698410c68adcc5a227728a923.json +0 -1
  180. package/example/.expo/web/cache/development/babel-loader/078514ef0b378ba9f78589e2d9ed00f0.json +0 -1
  181. package/example/.expo/web/cache/development/babel-loader/078d39387ece388cb409a9de98417dd7.json +0 -1
  182. package/example/.expo/web/cache/development/babel-loader/07b3a89a9e74b685cf404ebf38b09cf3.json +0 -1
  183. package/example/.expo/web/cache/development/babel-loader/080f366125f90a9e8eadd83a478fd0a4.json +0 -1
  184. package/example/.expo/web/cache/development/babel-loader/0870d39da57bb2851188686e42cd8929.json +0 -1
  185. package/example/.expo/web/cache/development/babel-loader/089ef8767f5d45067bcc9b748c2e2ca6.json +0 -1
  186. package/example/.expo/web/cache/development/babel-loader/08ae8c107c10803a4fd1dcd9bb77631b.json +0 -1
  187. package/example/.expo/web/cache/development/babel-loader/099f90b9def7e410f3bba04d6226387e.json +0 -1
  188. package/example/.expo/web/cache/development/babel-loader/0a242186b7618fda93384aeb3173eaaf.json +0 -1
  189. package/example/.expo/web/cache/development/babel-loader/0a579bb4b1dc23ec08a88f1bdee88608.json +0 -1
  190. package/example/.expo/web/cache/development/babel-loader/0b71299ddceefa8034f07d7bd25f7132.json +0 -1
  191. package/example/.expo/web/cache/development/babel-loader/0ba484ac7ba0d1abe8d566757740b901.json +0 -1
  192. package/example/.expo/web/cache/development/babel-loader/0ba90d135dbde2f2ed800d6988b78450.json +0 -1
  193. package/example/.expo/web/cache/development/babel-loader/0bb2866e03fb170ecb2af745142093ba.json +0 -1
  194. package/example/.expo/web/cache/development/babel-loader/0bb36a2fb4073700b144f62a027bd1de.json +0 -1
  195. package/example/.expo/web/cache/development/babel-loader/0bdbd4da7c535a6cfa3d301a2e03cdb3.json +0 -1
  196. package/example/.expo/web/cache/development/babel-loader/0be51050d78340dc2f89663ad0af3632.json +0 -1
  197. package/example/.expo/web/cache/development/babel-loader/0c07be62e43d474eb25c09f670fb08b5.json +0 -1
  198. package/example/.expo/web/cache/development/babel-loader/0c837f034f4f17e8b4762c3d2df80d5c.json +0 -1
  199. package/example/.expo/web/cache/development/babel-loader/0ca19fcabd7879d8a09389c265186c73.json +0 -1
  200. package/example/.expo/web/cache/development/babel-loader/0cdf4f458fd0cf908dfede501bdba0fc.json +0 -1
  201. package/example/.expo/web/cache/development/babel-loader/0d31f492a7a9c529dbcbd75b848d6d0e.json +0 -1
  202. package/example/.expo/web/cache/development/babel-loader/0d9788739cbfbd79ea593eeaa1887870.json +0 -1
  203. package/example/.expo/web/cache/development/babel-loader/0da5caa9849b893e893d2f84251d2b0c.json +0 -1
  204. package/example/.expo/web/cache/development/babel-loader/0dba3b74d1f9e83e7e1be547f59f9b0d.json +0 -1
  205. package/example/.expo/web/cache/development/babel-loader/0dda8bfcef9ddb34113838e01d884c94.json +0 -1
  206. package/example/.expo/web/cache/development/babel-loader/0f7beaa387100bbf52b0795fff708e9b.json +0 -1
  207. package/example/.expo/web/cache/development/babel-loader/0fa2c2dc537c942ad8aa7e16f3e3ee7f.json +0 -1
  208. package/example/.expo/web/cache/development/babel-loader/0fbfb2dea0d4ca9896ab83137f7a443c.json +0 -1
  209. package/example/.expo/web/cache/development/babel-loader/0fed877538eec4c0fe6fc59a7fba1884.json +0 -1
  210. package/example/.expo/web/cache/development/babel-loader/10c42328cedbca0b7c02e292cbf7e819.json +0 -1
  211. package/example/.expo/web/cache/development/babel-loader/119aa1b9951b02dd534f8968d8d3bdcc.json +0 -1
  212. package/example/.expo/web/cache/development/babel-loader/11e5e2a288b722ed1a72951da903668f.json +0 -1
  213. package/example/.expo/web/cache/development/babel-loader/122d66f7c19d923eda33d5be469f98df.json +0 -1
  214. package/example/.expo/web/cache/development/babel-loader/124b86bda7fafdb400a04e42fb06d241.json +0 -1
  215. package/example/.expo/web/cache/development/babel-loader/12ddb38f86b223c6168a22c3c441d23c.json +0 -1
  216. package/example/.expo/web/cache/development/babel-loader/12f67411dabf1aba4c19bc21578a1eb6.json +0 -1
  217. package/example/.expo/web/cache/development/babel-loader/12f8b90d6b32fd8d434f74ec0a1cc5de.json +0 -1
  218. package/example/.expo/web/cache/development/babel-loader/1373cfa1a25ef0d52cb4356053bd50a6.json +0 -1
  219. package/example/.expo/web/cache/development/babel-loader/13f991ac86a7338392f35706b6f3ff13.json +0 -1
  220. package/example/.expo/web/cache/development/babel-loader/14896ac3a706173aa66f99f5ac81de25.json +0 -1
  221. package/example/.expo/web/cache/development/babel-loader/155b2897eaa205c153dc174759391596.json +0 -1
  222. package/example/.expo/web/cache/development/babel-loader/156441416de4a576dc90c34dbbb005f4.json +0 -1
  223. package/example/.expo/web/cache/development/babel-loader/159bcfbc06914dc0fa53d932ecdeb3a8.json +0 -1
  224. package/example/.expo/web/cache/development/babel-loader/15adfc2176211fd1b1f1e26ffac54860.json +0 -1
  225. package/example/.expo/web/cache/development/babel-loader/16431afdd306659127e684ef2c528a5e.json +0 -1
  226. package/example/.expo/web/cache/development/babel-loader/16bf97aa1df29d051e75cdcfe30258ca.json +0 -1
  227. package/example/.expo/web/cache/development/babel-loader/16d0b8dbc4e2615d53d7a99d3c399b1c.json +0 -1
  228. package/example/.expo/web/cache/development/babel-loader/16d1bc10d8e4f05640c709260fe4cff7.json +0 -1
  229. package/example/.expo/web/cache/development/babel-loader/173757cc1e741e39f50c821a347ca6a7.json +0 -1
  230. package/example/.expo/web/cache/development/babel-loader/17539008e1af521bbd4be8772219d502.json +0 -1
  231. package/example/.expo/web/cache/development/babel-loader/176b3020eb65c46ea40baf76391fdeca.json +0 -1
  232. package/example/.expo/web/cache/development/babel-loader/178a06574c91fc5f7d66bb5c1087d694.json +0 -1
  233. package/example/.expo/web/cache/development/babel-loader/17c2c08b53b428a4549da5c8dfe32283.json +0 -1
  234. package/example/.expo/web/cache/development/babel-loader/17f33cd1288f2d81431bd2cc3594a889.json +0 -1
  235. package/example/.expo/web/cache/development/babel-loader/183decf56ac00edb29d05a83cb230ed1.json +0 -1
  236. package/example/.expo/web/cache/development/babel-loader/18b98ff69a443c8d8c34b1e908c8c8c5.json +0 -1
  237. package/example/.expo/web/cache/development/babel-loader/19b862353f8639c724c77fef48f745b9.json +0 -1
  238. package/example/.expo/web/cache/development/babel-loader/1ae06e69db0965f0680818d1a4bae914.json +0 -1
  239. package/example/.expo/web/cache/development/babel-loader/1ae598529609953300b8831809806773.json +0 -1
  240. package/example/.expo/web/cache/development/babel-loader/1b60e83cd9326cd1bedb362ca3695db7.json +0 -1
  241. package/example/.expo/web/cache/development/babel-loader/1bf72c5e82adfae4cd9fb7d062f43c7b.json +0 -1
  242. package/example/.expo/web/cache/development/babel-loader/1d75e19efb03e53ecf3ac88a9bc660f6.json +0 -1
  243. package/example/.expo/web/cache/development/babel-loader/1da1472f2e94b667c4f3d73d437b78d2.json +0 -1
  244. package/example/.expo/web/cache/development/babel-loader/1db83c8bbf361b4e9c9d637ffd3fda9f.json +0 -1
  245. package/example/.expo/web/cache/development/babel-loader/1e954e44cae79871d604d778ed2b019b.json +0 -1
  246. package/example/.expo/web/cache/development/babel-loader/1f3db19af6a4daad8ac653aef9a17b3e.json +0 -1
  247. package/example/.expo/web/cache/development/babel-loader/1fa8d4f7956d15e5d2301b5bc0ea5cda.json +0 -1
  248. package/example/.expo/web/cache/development/babel-loader/20143c2ba144a977d78c7b106120350d.json +0 -1
  249. package/example/.expo/web/cache/development/babel-loader/201eb696584a8e8ed6ccc7f1c94bea83.json +0 -1
  250. package/example/.expo/web/cache/development/babel-loader/208778a4ee646ee0555ed1e67b562757.json +0 -1
  251. package/example/.expo/web/cache/development/babel-loader/20b5cfe5b4fae8cc46f24e1ad10f084b.json +0 -1
  252. package/example/.expo/web/cache/development/babel-loader/20e5a97e718e32b1e4793147d6f69e45.json +0 -1
  253. package/example/.expo/web/cache/development/babel-loader/219c2137c40f30853f1c0da86e6195ae.json +0 -1
  254. package/example/.expo/web/cache/development/babel-loader/2205972b2a20db62efa79ce469cfe964.json +0 -1
  255. package/example/.expo/web/cache/development/babel-loader/2213676b835b1649f016c0bff6b0d893.json +0 -1
  256. package/example/.expo/web/cache/development/babel-loader/224ade2bbe8e0b2388eb1c55bff3f264.json +0 -1
  257. package/example/.expo/web/cache/development/babel-loader/22e45563d6234e853ec8e4a4267750d8.json +0 -1
  258. package/example/.expo/web/cache/development/babel-loader/22eb55b287473e3a78908381441cfcb4.json +0 -1
  259. package/example/.expo/web/cache/development/babel-loader/235079d51d6d83ca54da405649b91110.json +0 -1
  260. package/example/.expo/web/cache/development/babel-loader/23be422a323e77a515117c42beac5044.json +0 -1
  261. package/example/.expo/web/cache/development/babel-loader/240cb3678995c4254ed6e5c7582952ba.json +0 -1
  262. package/example/.expo/web/cache/development/babel-loader/2530791779144ffab597cad5be52c226.json +0 -1
  263. package/example/.expo/web/cache/development/babel-loader/2572f610636111e63226d070b6df704a.json +0 -1
  264. package/example/.expo/web/cache/development/babel-loader/2596af2ade89538878b6d544100f3399.json +0 -1
  265. package/example/.expo/web/cache/development/babel-loader/25ba14deb6adaac77b56e2c781b4f065.json +0 -1
  266. package/example/.expo/web/cache/development/babel-loader/2662f01bd2d995efd4c68fb1dde0751c.json +0 -1
  267. package/example/.expo/web/cache/development/babel-loader/26cb1b1abe574d9b890ef696f2871346.json +0 -1
  268. package/example/.expo/web/cache/development/babel-loader/26d2d37f205cec86abab8af6ff0ebc64.json +0 -1
  269. package/example/.expo/web/cache/development/babel-loader/26e511c3ed7ffeb19f2a5d51e2cac69b.json +0 -1
  270. package/example/.expo/web/cache/development/babel-loader/26e6a4ea55e0d322127634128523cad1.json +0 -1
  271. package/example/.expo/web/cache/development/babel-loader/283e292d5ceb581a50e9755ac42601a2.json +0 -1
  272. package/example/.expo/web/cache/development/babel-loader/288357d67d14eb8a67ea7431f3c8416d.json +0 -1
  273. package/example/.expo/web/cache/development/babel-loader/28d1872152a5070e160a78864dac71c9.json +0 -1
  274. package/example/.expo/web/cache/development/babel-loader/28de677a319035c81b48e51b8c8801ab.json +0 -1
  275. package/example/.expo/web/cache/development/babel-loader/29518ab58c8aacdb2e5e164fc13d872b.json +0 -1
  276. package/example/.expo/web/cache/development/babel-loader/29d79f626f6ad6bfe79bbbf010acedf3.json +0 -1
  277. package/example/.expo/web/cache/development/babel-loader/2a3adcb3c1ad03050e8262f913537bb8.json +0 -1
  278. package/example/.expo/web/cache/development/babel-loader/2aa749a94f4df8b760e8acfdb25028ff.json +0 -1
  279. package/example/.expo/web/cache/development/babel-loader/2aaeb9279315ba2ad10a4c0f551e8645.json +0 -1
  280. package/example/.expo/web/cache/development/babel-loader/2acf873c8a41c7ea75a5cc3ae31878f7.json +0 -1
  281. package/example/.expo/web/cache/development/babel-loader/2b64d55ee11f0015681db4ce68a395d2.json +0 -1
  282. package/example/.expo/web/cache/development/babel-loader/2b68997a650089f484e2aa3b04e19c17.json +0 -1
  283. package/example/.expo/web/cache/development/babel-loader/2b701f7ecf1146a2266cfc4b1f85883b.json +0 -1
  284. package/example/.expo/web/cache/development/babel-loader/2c02bff6f2785c6f9c97e54794c5cb1e.json +0 -1
  285. package/example/.expo/web/cache/development/babel-loader/2cccd0ecb5914d7b91a0e2a0fbd995c9.json +0 -1
  286. package/example/.expo/web/cache/development/babel-loader/2dbbd507ae02c5249d7088f625312a95.json +0 -1
  287. package/example/.expo/web/cache/development/babel-loader/2dce9894a2affe7bfe287cd3e27b4efd.json +0 -1
  288. package/example/.expo/web/cache/development/babel-loader/2e27f8a130af009b492bc9f13a3bb578.json +0 -1
  289. package/example/.expo/web/cache/development/babel-loader/2f24be2c7134f588272fcf9f397008bf.json +0 -1
  290. package/example/.expo/web/cache/development/babel-loader/2f57f3c72b3b460c5d299bcf081b429b.json +0 -1
  291. package/example/.expo/web/cache/development/babel-loader/2f63db06dec4ae0f934cbe269ca78b7c.json +0 -1
  292. package/example/.expo/web/cache/development/babel-loader/3030b35c886f71dc0c5445ba8f6f987a.json +0 -1
  293. package/example/.expo/web/cache/development/babel-loader/3053d7b372b5a38a9ffddbf16715f2ce.json +0 -1
  294. package/example/.expo/web/cache/development/babel-loader/3067d2c72bfaf66f5f19c7909af1133e.json +0 -1
  295. package/example/.expo/web/cache/development/babel-loader/3146ea18d415deb6177ac03e1355688e.json +0 -1
  296. package/example/.expo/web/cache/development/babel-loader/319feb766afa0b6ef1fd0f61a79d8306.json +0 -1
  297. package/example/.expo/web/cache/development/babel-loader/341a6c60339e92183d4dc4beb411f72d.json +0 -1
  298. package/example/.expo/web/cache/development/babel-loader/34603acbdde5dfab35a94ddba2a32d46.json +0 -1
  299. package/example/.expo/web/cache/development/babel-loader/349cd67f61ed6f6ef9bafc83ab8d8fe6.json +0 -1
  300. package/example/.expo/web/cache/development/babel-loader/349f0c8c11b69e43a478d773b131d4d2.json +0 -1
  301. package/example/.expo/web/cache/development/babel-loader/35011e104b58754e49c4d3d702a2f61f.json +0 -1
  302. package/example/.expo/web/cache/development/babel-loader/3575ff3ca012124bf251e6cfeca7b7d7.json +0 -1
  303. package/example/.expo/web/cache/development/babel-loader/359f8f7aff4ad2f996000b550df5b917.json +0 -1
  304. package/example/.expo/web/cache/development/babel-loader/35c0fe0f3af5e5bb30c862ab2f0352fe.json +0 -1
  305. package/example/.expo/web/cache/development/babel-loader/35e42e8dca6b3242a869b68dd19c9320.json +0 -1
  306. package/example/.expo/web/cache/development/babel-loader/3683ce1bd7ea848ec955de2738873cfb.json +0 -1
  307. package/example/.expo/web/cache/development/babel-loader/36865faf642c5676bc5f905a17d39810.json +0 -1
  308. package/example/.expo/web/cache/development/babel-loader/368688165f40c4cfc59238bacf69d131.json +0 -1
  309. package/example/.expo/web/cache/development/babel-loader/3690ca8f7494abb6bbf399a72dd529d0.json +0 -1
  310. package/example/.expo/web/cache/development/babel-loader/36e75d47020ead36881558873b7ed051.json +0 -1
  311. package/example/.expo/web/cache/development/babel-loader/376ebb0e2cf53138b2add663f358ad8e.json +0 -1
  312. package/example/.expo/web/cache/development/babel-loader/381426842d8a1ddb31808178e52a5679.json +0 -1
  313. package/example/.expo/web/cache/development/babel-loader/38146d6afeec03b463523c4710274e9a.json +0 -1
  314. package/example/.expo/web/cache/development/babel-loader/39185d78dfe042f97cbae91dc8de3fd1.json +0 -1
  315. package/example/.expo/web/cache/development/babel-loader/394f45d48a9648d70c4b5b64076be031.json +0 -1
  316. package/example/.expo/web/cache/development/babel-loader/3972208eae9b5b632b17b21baa8bf208.json +0 -1
  317. package/example/.expo/web/cache/development/babel-loader/39f743b81b60417ab847556a7179e22a.json +0 -1
  318. package/example/.expo/web/cache/development/babel-loader/3a049e796da05d6ab052670916a53c33.json +0 -1
  319. package/example/.expo/web/cache/development/babel-loader/3a36810cc4f07e4758f321a000de6959.json +0 -1
  320. package/example/.expo/web/cache/development/babel-loader/3a98fa6154cd5cd009147a5327c55155.json +0 -1
  321. package/example/.expo/web/cache/development/babel-loader/3b7135501e404451314cdcc9fe0600b8.json +0 -1
  322. package/example/.expo/web/cache/development/babel-loader/3ba2512296e39bb9a10f1558a665e9ec.json +0 -1
  323. package/example/.expo/web/cache/development/babel-loader/3c20b6d457837e0ac87f3e648e6eca00.json +0 -1
  324. package/example/.expo/web/cache/development/babel-loader/3c5f38af9e2ec3a91de4f1b4fec17b0a.json +0 -1
  325. package/example/.expo/web/cache/development/babel-loader/3d6248624c376f339e299d33a5441fc5.json +0 -1
  326. package/example/.expo/web/cache/development/babel-loader/3e1698f99f9fc08d49f7b34982fa5ff9.json +0 -1
  327. package/example/.expo/web/cache/development/babel-loader/3e175af3a1473dcb8ab69a8eadb3b64b.json +0 -1
  328. package/example/.expo/web/cache/development/babel-loader/3e294ec36b218fbf02cfaec95a0cd10c.json +0 -1
  329. package/example/.expo/web/cache/development/babel-loader/3e2d35c9bbfe5423a7d98376bcd56e6b.json +0 -1
  330. package/example/.expo/web/cache/development/babel-loader/3e403b91e02d584934276eacc544c816.json +0 -1
  331. package/example/.expo/web/cache/development/babel-loader/3e7a2e7fe4f726704b568371689534ae.json +0 -1
  332. package/example/.expo/web/cache/development/babel-loader/3f86d59727c3e03e54652149a8f8d3b6.json +0 -1
  333. package/example/.expo/web/cache/development/babel-loader/4023fb22b941ed6ef095d0dcc7cf4add.json +0 -1
  334. package/example/.expo/web/cache/development/babel-loader/40402ff33d7840c2ef429fb4b123038d.json +0 -1
  335. package/example/.expo/web/cache/development/babel-loader/40797a455c2817f0f1c32be3272d45b7.json +0 -1
  336. package/example/.expo/web/cache/development/babel-loader/4088615ef9d57b3f7fe4190660ba6ddc.json +0 -1
  337. package/example/.expo/web/cache/development/babel-loader/40b253188172501badb387adbb4975a7.json +0 -1
  338. package/example/.expo/web/cache/development/babel-loader/40c4fde14ef2e0ea53a7432cd848ff2b.json +0 -1
  339. package/example/.expo/web/cache/development/babel-loader/41cb1c00dc7af067825210998d145a55.json +0 -1
  340. package/example/.expo/web/cache/development/babel-loader/42369b0fb17c85ff071461984d05a57c.json +0 -1
  341. package/example/.expo/web/cache/development/babel-loader/42c2f18b8307bc0d3ea5d84373a5d67f.json +0 -1
  342. package/example/.expo/web/cache/development/babel-loader/434f2b53fb7aea8fa46feed34373ebf1.json +0 -1
  343. package/example/.expo/web/cache/development/babel-loader/437dd685561b93a81742ac2ecbeb7d41.json +0 -1
  344. package/example/.expo/web/cache/development/babel-loader/4435d6138199309e3af3ad15f2f33548.json +0 -1
  345. package/example/.expo/web/cache/development/babel-loader/44dc1996d592f2e6f37bad3a90765f47.json +0 -1
  346. package/example/.expo/web/cache/development/babel-loader/458008074e08e5345adedd3d000e8470.json +0 -1
  347. package/example/.expo/web/cache/development/babel-loader/45873f55ae22e035954bc06cc50b2173.json +0 -1
  348. package/example/.expo/web/cache/development/babel-loader/4645ddff7b2c0d3eb6856ae4db108dfe.json +0 -1
  349. package/example/.expo/web/cache/development/babel-loader/46679e2a6fceee1389fc81e63b21348f.json +0 -1
  350. package/example/.expo/web/cache/development/babel-loader/46ede8b645ca9607cad48c73ac585da8.json +0 -1
  351. package/example/.expo/web/cache/development/babel-loader/47848e59a8af06715aaa2c06bbdddf86.json +0 -1
  352. package/example/.expo/web/cache/development/babel-loader/4819dcb040e5d4a96a7b84bbb0b1ec20.json +0 -1
  353. package/example/.expo/web/cache/development/babel-loader/4861470a02020675a1ee3db81cf82013.json +0 -1
  354. package/example/.expo/web/cache/development/babel-loader/4864be71b0d3193e0c759b91a9548cce.json +0 -1
  355. package/example/.expo/web/cache/development/babel-loader/486a97ffd715ec487414761e753727b5.json +0 -1
  356. package/example/.expo/web/cache/development/babel-loader/487488e8e5ae8ef9217e3c56a43ad05a.json +0 -1
  357. package/example/.expo/web/cache/development/babel-loader/49f4c364b909987eb06dde9e5e191155.json +0 -1
  358. package/example/.expo/web/cache/development/babel-loader/4b13fec968ca831c12164f8849618499.json +0 -1
  359. package/example/.expo/web/cache/development/babel-loader/4b2dc2a918984d9c2064864531f0a25e.json +0 -1
  360. package/example/.expo/web/cache/development/babel-loader/4b81b318c8d202092e5f11c893ba60ca.json +0 -1
  361. package/example/.expo/web/cache/development/babel-loader/4b929b061248038485fe18a4000f0dc7.json +0 -1
  362. package/example/.expo/web/cache/development/babel-loader/4bb899e66458fe70451b960feb748cca.json +0 -1
  363. package/example/.expo/web/cache/development/babel-loader/4bf2841cd4d191e4fcd069fc2defa95d.json +0 -1
  364. package/example/.expo/web/cache/development/babel-loader/4bfdf05b16115a8f6be82091518c35be.json +0 -1
  365. package/example/.expo/web/cache/development/babel-loader/4c14d7bff7de294fd991c68522f97ee4.json +0 -1
  366. package/example/.expo/web/cache/development/babel-loader/4c3b315099cd265649454fd2a0c799a2.json +0 -1
  367. package/example/.expo/web/cache/development/babel-loader/4c723644cc0a1300f119db91b3a4e1d8.json +0 -1
  368. package/example/.expo/web/cache/development/babel-loader/4c912e44b450dfff1f0d609c6fcf770c.json +0 -1
  369. package/example/.expo/web/cache/development/babel-loader/4c91a10b38720099ce4af9a3b12902e3.json +0 -1
  370. package/example/.expo/web/cache/development/babel-loader/4d0a771d1b608f16b9ddadee2a97ce66.json +0 -1
  371. package/example/.expo/web/cache/development/babel-loader/4d466fa65871bcbc64956934ceb7b82f.json +0 -1
  372. package/example/.expo/web/cache/development/babel-loader/4def34cd255ca058831e577a22a37fe8.json +0 -1
  373. package/example/.expo/web/cache/development/babel-loader/4e225e240a0c5e5724f9d92ab2c2a5c7.json +0 -1
  374. package/example/.expo/web/cache/development/babel-loader/4e34feea50a4a09a97c575ab605527bb.json +0 -1
  375. package/example/.expo/web/cache/development/babel-loader/4e741f92fbbd92b96334530f6ad10846.json +0 -1
  376. package/example/.expo/web/cache/development/babel-loader/4e7e3d084acb39114c24da2f4db0f14e.json +0 -1
  377. package/example/.expo/web/cache/development/babel-loader/4edc3be79a77498f1a49e373457124de.json +0 -1
  378. package/example/.expo/web/cache/development/babel-loader/4f17a38ef723d2f2f88ab36229447848.json +0 -1
  379. package/example/.expo/web/cache/development/babel-loader/5126e93c01ee93124a5e74d11303b9c8.json +0 -1
  380. package/example/.expo/web/cache/development/babel-loader/519238552f7ca486b938192b9cbcceae.json +0 -1
  381. package/example/.expo/web/cache/development/babel-loader/51e20d90ac5c3b788724e38bc5e13ee7.json +0 -1
  382. package/example/.expo/web/cache/development/babel-loader/51ffa5d7f07c4e3b52983176341b22b3.json +0 -1
  383. package/example/.expo/web/cache/development/babel-loader/5201a3d9e11e2395d17ce85a968b6df9.json +0 -1
  384. package/example/.expo/web/cache/development/babel-loader/520bb792f23fb5a5b75ba6b1671f10ec.json +0 -1
  385. package/example/.expo/web/cache/development/babel-loader/523038c6dc8ac0e76ef7a23d3eed51ec.json +0 -1
  386. package/example/.expo/web/cache/development/babel-loader/532fa6c08d38d3c6de9df3cbc1e6a903.json +0 -1
  387. package/example/.expo/web/cache/development/babel-loader/5352894e73c9b0713f12df8da1c6b65c.json +0 -1
  388. package/example/.expo/web/cache/development/babel-loader/53bf8f177165c6b0e75a631aa4519d41.json +0 -1
  389. package/example/.expo/web/cache/development/babel-loader/53ea8a26aeb6e2759a7f1f5f4f56b6fb.json +0 -1
  390. package/example/.expo/web/cache/development/babel-loader/53eb0e5ade26fcf21aa38d9b826d4cda.json +0 -1
  391. package/example/.expo/web/cache/development/babel-loader/542e618262a94895f81236112129bd3e.json +0 -1
  392. package/example/.expo/web/cache/development/babel-loader/543d869d3c2430af923c1d46108f9dae.json +0 -1
  393. package/example/.expo/web/cache/development/babel-loader/546891698aff03b72ed2f6ceb6e7fa89.json +0 -1
  394. package/example/.expo/web/cache/development/babel-loader/5471a749a6e8af27964d87af251c688a.json +0 -1
  395. package/example/.expo/web/cache/development/babel-loader/547a11a6bdd8bda252dfd4614f815fbb.json +0 -1
  396. package/example/.expo/web/cache/development/babel-loader/5483ab9ca7310d6774314885fee2a973.json +0 -1
  397. package/example/.expo/web/cache/development/babel-loader/549d7a1c3d15fdb39d9bffcf267e3f56.json +0 -1
  398. package/example/.expo/web/cache/development/babel-loader/559811ff6c4183bb0704807cf5b76bab.json +0 -1
  399. package/example/.expo/web/cache/development/babel-loader/55add2461e97c93eb8aac04bb6999d6f.json +0 -1
  400. package/example/.expo/web/cache/development/babel-loader/55b3b5973e6de9b423b3ec627176a7f9.json +0 -1
  401. package/example/.expo/web/cache/development/babel-loader/566edd7dfdc185ef467beb97fcd9e08c.json +0 -1
  402. package/example/.expo/web/cache/development/babel-loader/567acdadac00f4c65b037849683131b6.json +0 -1
  403. package/example/.expo/web/cache/development/babel-loader/57892340c5b232df0a75f1339c9e68ce.json +0 -1
  404. package/example/.expo/web/cache/development/babel-loader/57cd82470f76c034961fe1236302abfe.json +0 -1
  405. package/example/.expo/web/cache/development/babel-loader/586d05cc2c149bd7435298a982b57d60.json +0 -1
  406. package/example/.expo/web/cache/development/babel-loader/591c326572f80891b2f6d7132b21a0d9.json +0 -1
  407. package/example/.expo/web/cache/development/babel-loader/5954d33f838e7e341ebe043096ac7fe5.json +0 -1
  408. package/example/.expo/web/cache/development/babel-loader/5a07d6d40bd575c25f45538b187acd8a.json +0 -1
  409. package/example/.expo/web/cache/development/babel-loader/5a27a1760bd4f6407b1fea26715a87bc.json +0 -1
  410. package/example/.expo/web/cache/development/babel-loader/5a3c1683e7539c1e4776da78585fd8e6.json +0 -1
  411. package/example/.expo/web/cache/development/babel-loader/5b1b8b74a9c8d3d83bc0cb2749d3caa5.json +0 -1
  412. package/example/.expo/web/cache/development/babel-loader/5b2be6beae3ed7b57f46641414303cf3.json +0 -1
  413. package/example/.expo/web/cache/development/babel-loader/5b36330631e46bbf63f870970b2122f7.json +0 -1
  414. package/example/.expo/web/cache/development/babel-loader/5b9bc4b234aa59e34135748fd93507b6.json +0 -1
  415. package/example/.expo/web/cache/development/babel-loader/5c0087a9595888025264a9904d1b8eef.json +0 -1
  416. package/example/.expo/web/cache/development/babel-loader/5d16233202c82021ddec174b9bb58863.json +0 -1
  417. package/example/.expo/web/cache/development/babel-loader/5d569557de3b7d5fa8afc576ac512a04.json +0 -1
  418. package/example/.expo/web/cache/development/babel-loader/5d646ca9aa7f759e829259ce504269e2.json +0 -1
  419. package/example/.expo/web/cache/development/babel-loader/5e0932b9d9679774ae121857f94d9922.json +0 -1
  420. package/example/.expo/web/cache/development/babel-loader/5e4f424ae34ce824d1a402729f6a057e.json +0 -1
  421. package/example/.expo/web/cache/development/babel-loader/5e51328fa08bebd0d74b50fb0e6c8097.json +0 -1
  422. package/example/.expo/web/cache/development/babel-loader/5eef44eed8ccb290fe3456e2fe6bf8ed.json +0 -1
  423. package/example/.expo/web/cache/development/babel-loader/5f8621a10c1e567488ff251972a23c6d.json +0 -1
  424. package/example/.expo/web/cache/development/babel-loader/5fd990c9fafaaa91d54e872f7ce7051d.json +0 -1
  425. package/example/.expo/web/cache/development/babel-loader/6024b3f768564aaeb1361263b0202a14.json +0 -1
  426. package/example/.expo/web/cache/development/babel-loader/60303fed71faeaa68ab30e8692335712.json +0 -1
  427. package/example/.expo/web/cache/development/babel-loader/6132085808aa3dcaf4042b13715c74cd.json +0 -1
  428. package/example/.expo/web/cache/development/babel-loader/616140663303400e490ae1f8789bf33f.json +0 -1
  429. package/example/.expo/web/cache/development/babel-loader/61cfc5a0e7335e0b9a219b1cbe277614.json +0 -1
  430. package/example/.expo/web/cache/development/babel-loader/620f55f17382101002e5e9426ce3e366.json +0 -1
  431. package/example/.expo/web/cache/development/babel-loader/62676c7e580c2e05b3597d53b1cec852.json +0 -1
  432. package/example/.expo/web/cache/development/babel-loader/62f012bfa58863dc3ea69f00f9b90a77.json +0 -1
  433. package/example/.expo/web/cache/development/babel-loader/63167719609db00ff2d6a4eb74823f20.json +0 -1
  434. package/example/.expo/web/cache/development/babel-loader/6320f4e69400d39312489472d7f26d50.json +0 -1
  435. package/example/.expo/web/cache/development/babel-loader/63a9473d63154c31603b1ec1c728c8ab.json +0 -1
  436. package/example/.expo/web/cache/development/babel-loader/63bae7aa325e3c82ba555ac19c0912fa.json +0 -1
  437. package/example/.expo/web/cache/development/babel-loader/63c7331c32b247560f7318cb076a7c40.json +0 -1
  438. package/example/.expo/web/cache/development/babel-loader/645eaa3c12cea785d12fed54225c1bad.json +0 -1
  439. package/example/.expo/web/cache/development/babel-loader/64ed04fe3e08408b9268fec4dd1df52a.json +0 -1
  440. package/example/.expo/web/cache/development/babel-loader/64f7c8f31e295eee69738bfe05c5bff5.json +0 -1
  441. package/example/.expo/web/cache/development/babel-loader/6526a4a40bd385a0266a45ad7f92898c.json +0 -1
  442. package/example/.expo/web/cache/development/babel-loader/652ab844f358ceb6b4625544fa5d2f99.json +0 -1
  443. package/example/.expo/web/cache/development/babel-loader/662cbc71202b18650b3fa438c128b6fd.json +0 -1
  444. package/example/.expo/web/cache/development/babel-loader/6633c8b78925e32b5c2ea2fb14d284c9.json +0 -1
  445. package/example/.expo/web/cache/development/babel-loader/66ff90fd72218dd01d86a97baa645867.json +0 -1
  446. package/example/.expo/web/cache/development/babel-loader/6775a5f5c0d419a5bcd1bc6b853bf2b6.json +0 -1
  447. package/example/.expo/web/cache/development/babel-loader/679e5028f6e8af7b6b756a4a21a23a37.json +0 -1
  448. package/example/.expo/web/cache/development/babel-loader/67c83f864d1331ff4472cd80a74b426b.json +0 -1
  449. package/example/.expo/web/cache/development/babel-loader/68189da0029a30976a2484255a17ce79.json +0 -1
  450. package/example/.expo/web/cache/development/babel-loader/68c4370b36da2b4d2f9e997b0b317baa.json +0 -1
  451. package/example/.expo/web/cache/development/babel-loader/696a6f2f23efafc28fc3c6d5b5ffaeac.json +0 -1
  452. package/example/.expo/web/cache/development/babel-loader/6991b1cd9f19326a94f92ef5b1b842a8.json +0 -1
  453. package/example/.expo/web/cache/development/babel-loader/6a68c0f3ae60b8004305422c65b03939.json +0 -1
  454. package/example/.expo/web/cache/development/babel-loader/6af277fa3a99d89d3b8476cc530dea86.json +0 -1
  455. package/example/.expo/web/cache/development/babel-loader/6b97a59c5465397dba921f389acaafdd.json +0 -1
  456. package/example/.expo/web/cache/development/babel-loader/6c27188040ae357512ee2f1ab094c885.json +0 -1
  457. package/example/.expo/web/cache/development/babel-loader/6c2f82c0db7403ccd4f19071f91173e4.json +0 -1
  458. package/example/.expo/web/cache/development/babel-loader/6c8a2848fe0f787148c2fb6de4264155.json +0 -1
  459. package/example/.expo/web/cache/development/babel-loader/6d10befa9b8f5fe2e6b3b97898fbf356.json +0 -1
  460. package/example/.expo/web/cache/development/babel-loader/6d187f42d86d8e0b9234c93f769710f3.json +0 -1
  461. package/example/.expo/web/cache/development/babel-loader/6d42eddc1aad6d2a82c7091e9ccce61b.json +0 -1
  462. package/example/.expo/web/cache/development/babel-loader/6d6f8b41da6a4ba792c39f671105e620.json +0 -1
  463. package/example/.expo/web/cache/development/babel-loader/6db157842077271e6cfe46d85f569c54.json +0 -1
  464. package/example/.expo/web/cache/development/babel-loader/6df029ffc4cb41be03ffeafb769bd625.json +0 -1
  465. package/example/.expo/web/cache/development/babel-loader/6e1b109f621c0d54775303f058483115.json +0 -1
  466. package/example/.expo/web/cache/development/babel-loader/6f12c17d739331ecffc1403342ba41da.json +0 -1
  467. package/example/.expo/web/cache/development/babel-loader/6f1e7f9957d00a46ac253b64011db52e.json +0 -1
  468. package/example/.expo/web/cache/development/babel-loader/6f81cab4add782ed35fd68ba00bb1d53.json +0 -1
  469. package/example/.expo/web/cache/development/babel-loader/6fd1661af13dedb5e44522d491a1caf6.json +0 -1
  470. package/example/.expo/web/cache/development/babel-loader/70011f5e5361437bcf72ec2b53fad9f0.json +0 -1
  471. package/example/.expo/web/cache/development/babel-loader/718db76d78154a4ae20c1822ca1b59ab.json +0 -1
  472. package/example/.expo/web/cache/development/babel-loader/71c89114f87eec2560a35accc6fb21d7.json +0 -1
  473. package/example/.expo/web/cache/development/babel-loader/71d0f6054d983d91726a1e45d65058af.json +0 -1
  474. package/example/.expo/web/cache/development/babel-loader/71f17bedd745f584f7abc4f4d51c7ad4.json +0 -1
  475. package/example/.expo/web/cache/development/babel-loader/72b944856e68e4a8a0ed8e4c2413070a.json +0 -1
  476. package/example/.expo/web/cache/development/babel-loader/740b2f1ab937b3d8fae7d547e9118390.json +0 -1
  477. package/example/.expo/web/cache/development/babel-loader/748a994e95eb1d1311d08dae70ff213a.json +0 -1
  478. package/example/.expo/web/cache/development/babel-loader/74b3b0d02f286a48fe045bb68c2a4650.json +0 -1
  479. package/example/.expo/web/cache/development/babel-loader/74d8aca04393d958004db6c2ef850b15.json +0 -1
  480. package/example/.expo/web/cache/development/babel-loader/74edf8cf133b616b8cc485e452e6d907.json +0 -1
  481. package/example/.expo/web/cache/development/babel-loader/750b4ff6e08ebbe4351e612b44e54b38.json +0 -1
  482. package/example/.expo/web/cache/development/babel-loader/75e5a5a17124546e2082576bf7d8a6d8.json +0 -1
  483. package/example/.expo/web/cache/development/babel-loader/75fd06c8f0f32fdf100a4b7359ad5f22.json +0 -1
  484. package/example/.expo/web/cache/development/babel-loader/760fa2ad4684296a4d8910efee774532.json +0 -1
  485. package/example/.expo/web/cache/development/babel-loader/765c63eb89770f11615c740460d8a605.json +0 -1
  486. package/example/.expo/web/cache/development/babel-loader/7695443a011b53044155a45950f64551.json +0 -1
  487. package/example/.expo/web/cache/development/babel-loader/76e3dcd07e85aecb3b5fe577d0486e26.json +0 -1
  488. package/example/.expo/web/cache/development/babel-loader/77348d41c4a630ac871ec1662d753572.json +0 -1
  489. package/example/.expo/web/cache/development/babel-loader/77a4283c1f4aa52a3ec7489dfcb4fd3c.json +0 -1
  490. package/example/.expo/web/cache/development/babel-loader/77c1d4c9c2134086a760c84c8dbb0767.json +0 -1
  491. package/example/.expo/web/cache/development/babel-loader/7856391ec0a27839d3fa6acbeb9aadda.json +0 -1
  492. package/example/.expo/web/cache/development/babel-loader/78d3d5bbf14c6f41859897e37d770fcf.json +0 -1
  493. package/example/.expo/web/cache/development/babel-loader/7937bbe97984684549fccfdfc1a73280.json +0 -1
  494. package/example/.expo/web/cache/development/babel-loader/79bb96062935d1e253162731ca79dbb6.json +0 -1
  495. package/example/.expo/web/cache/development/babel-loader/79c9840acdf1d5058d1dd9a3ee4c26a1.json +0 -1
  496. package/example/.expo/web/cache/development/babel-loader/79d14c794bf695a8710614f2650caadc.json +0 -1
  497. package/example/.expo/web/cache/development/babel-loader/79d484d4cd279cefd19f3ae34fbabc47.json +0 -1
  498. package/example/.expo/web/cache/development/babel-loader/7ac59aadbbeb87bbaa689455f49462e7.json +0 -1
  499. package/example/.expo/web/cache/development/babel-loader/7addb7eb6bdec7308191a341bbe4f418.json +0 -1
  500. package/example/.expo/web/cache/development/babel-loader/7bb5cc0a83aa7f2ec1bc4921f36d6701.json +0 -1
  501. package/example/.expo/web/cache/development/babel-loader/7c6b46cf1a8d27fbf10098fc7b3147d4.json +0 -1
  502. package/example/.expo/web/cache/development/babel-loader/7d920132c8d7c20e90bd5bfd33c0be91.json +0 -1
  503. package/example/.expo/web/cache/development/babel-loader/7dce022fc3dde6e47317238296fa51c3.json +0 -1
  504. package/example/.expo/web/cache/development/babel-loader/7e073695c8dd0edfff43941d69ed768f.json +0 -1
  505. package/example/.expo/web/cache/development/babel-loader/7ea547e52608eb3d07287f91483f92d0.json +0 -1
  506. package/example/.expo/web/cache/development/babel-loader/7edc461562b8366cb17cbd9a035662b5.json +0 -1
  507. package/example/.expo/web/cache/development/babel-loader/7ee8dc05c46a7508762c883a95e7b7f1.json +0 -1
  508. package/example/.expo/web/cache/development/babel-loader/7ef54a1c471f1e3e0f47cd0e29e7a015.json +0 -1
  509. package/example/.expo/web/cache/development/babel-loader/7ef704bca1ae363b883e828a3792675a.json +0 -1
  510. package/example/.expo/web/cache/development/babel-loader/7f523ccd852d399db517ddf7b3116aca.json +0 -1
  511. package/example/.expo/web/cache/development/babel-loader/7fc7e86041eed94f4e8d6d5dafa84ad9.json +0 -1
  512. package/example/.expo/web/cache/development/babel-loader/809f3bbbf8df916db606ac7c6aad7679.json +0 -1
  513. package/example/.expo/web/cache/development/babel-loader/80b2a7b63d2968f55ad413f37a77625e.json +0 -1
  514. package/example/.expo/web/cache/development/babel-loader/80bf3fd8e842cdb42492a17c8e1bed27.json +0 -1
  515. package/example/.expo/web/cache/development/babel-loader/80c8813cbd81ff6bbad4196d310f709c.json +0 -1
  516. package/example/.expo/web/cache/development/babel-loader/80e857d5e29a2374c9308de8cdbcf421.json +0 -1
  517. package/example/.expo/web/cache/development/babel-loader/81010ad113a890d5fd8280953e708d5e.json +0 -1
  518. package/example/.expo/web/cache/development/babel-loader/817c660469ce59fcb822c4858ad94b5d.json +0 -1
  519. package/example/.expo/web/cache/development/babel-loader/818e78aae9f71eaaa831b03d937efe68.json +0 -1
  520. package/example/.expo/web/cache/development/babel-loader/819d6861eddf73de1d685137ffd3b3d5.json +0 -1
  521. package/example/.expo/web/cache/development/babel-loader/81da8afb512f1fe3dc5283eed7693dc3.json +0 -1
  522. package/example/.expo/web/cache/development/babel-loader/83675b83ee348c8306591395e5bfd9e8.json +0 -1
  523. package/example/.expo/web/cache/development/babel-loader/83ce5beb699584197b95c23e16070359.json +0 -1
  524. package/example/.expo/web/cache/development/babel-loader/848d32a1afa411eb58fbde9a4e8be7a7.json +0 -1
  525. package/example/.expo/web/cache/development/babel-loader/84947f8673db23ad699799dd21bbdd50.json +0 -1
  526. package/example/.expo/web/cache/development/babel-loader/84cbca54aad0ba7ad9155efbe50994e6.json +0 -1
  527. package/example/.expo/web/cache/development/babel-loader/8687b87c118edd0ea36f77148c0a0ae6.json +0 -1
  528. package/example/.expo/web/cache/development/babel-loader/86aa7c8020aadae1b6047e779a070006.json +0 -1
  529. package/example/.expo/web/cache/development/babel-loader/86e1e81a50d45527c06815f7b22d3cfb.json +0 -1
  530. package/example/.expo/web/cache/development/babel-loader/873f17ead5c8a3a89f8c307d3fc3d749.json +0 -1
  531. package/example/.expo/web/cache/development/babel-loader/8768cca418ed67067f18960d229888f1.json +0 -1
  532. package/example/.expo/web/cache/development/babel-loader/889da18092544dc720e42ab160a8ca77.json +0 -1
  533. package/example/.expo/web/cache/development/babel-loader/88fd90442a3cd6528e4248e448007e21.json +0 -1
  534. package/example/.expo/web/cache/development/babel-loader/8947ed6ed81ae1ed2f0d1a5f7a21d4bd.json +0 -1
  535. package/example/.expo/web/cache/development/babel-loader/8a1fbcc937fc9672938d71108f51bfd3.json +0 -1
  536. package/example/.expo/web/cache/development/babel-loader/8a809e18963b1a79d7db704eb9e814b3.json +0 -1
  537. package/example/.expo/web/cache/development/babel-loader/8b0fa6466bfbb43efbc8a796bb0a058f.json +0 -1
  538. package/example/.expo/web/cache/development/babel-loader/8b4cf44a2020fd3061929214e66d69ce.json +0 -1
  539. package/example/.expo/web/cache/development/babel-loader/8bcdd0d74f6bf06c96dc636553f1ada8.json +0 -1
  540. package/example/.expo/web/cache/development/babel-loader/8bf958e697bf3ce69193447f5797f8ad.json +0 -1
  541. package/example/.expo/web/cache/development/babel-loader/8bfd7063b443cb17646e674300dd862b.json +0 -1
  542. package/example/.expo/web/cache/development/babel-loader/8c61c708fafabf1296dd0daf5e7910eb.json +0 -1
  543. package/example/.expo/web/cache/development/babel-loader/8d06501d3b127619583bc480630ad389.json +0 -1
  544. package/example/.expo/web/cache/development/babel-loader/8d60a937161579013d137028e30e0922.json +0 -1
  545. package/example/.expo/web/cache/development/babel-loader/8d9e770602734e0d230feafb37171ca8.json +0 -1
  546. package/example/.expo/web/cache/development/babel-loader/8dbfb280c88ee5948b0a3cc84074bd43.json +0 -1
  547. package/example/.expo/web/cache/development/babel-loader/8df99953a7fe26875c55c9bc1e71ca29.json +0 -1
  548. package/example/.expo/web/cache/development/babel-loader/8e29eb23e29046c8b921236d322c844d.json +0 -1
  549. package/example/.expo/web/cache/development/babel-loader/8e7ea386f4f497f8c5e0a4a9b80b093a.json +0 -1
  550. package/example/.expo/web/cache/development/babel-loader/8edadce2f5d679a4a225dc8a0ed0599e.json +0 -1
  551. package/example/.expo/web/cache/development/babel-loader/8eddce3de502ba26239bdaa0931abf8a.json +0 -1
  552. package/example/.expo/web/cache/development/babel-loader/8efad0218d4db05da11e8e21002ac55e.json +0 -1
  553. package/example/.expo/web/cache/development/babel-loader/8f6e1de5d12755c13e6c50a07e2d0778.json +0 -1
  554. package/example/.expo/web/cache/development/babel-loader/8faa2e1b05e23388f0f3f9b70ed4132f.json +0 -1
  555. package/example/.expo/web/cache/development/babel-loader/9076afdc7c80bd4772da54abf2e574c8.json +0 -1
  556. package/example/.expo/web/cache/development/babel-loader/90b795975488ffe15936e61c096fa274.json +0 -1
  557. package/example/.expo/web/cache/development/babel-loader/91ed31500f942f97aec1be73e89a7af8.json +0 -1
  558. package/example/.expo/web/cache/development/babel-loader/9252abf85af8c03f427a2e2117a1ad62.json +0 -1
  559. package/example/.expo/web/cache/development/babel-loader/92b72e3964caccd73a132a988edcfae7.json +0 -1
  560. package/example/.expo/web/cache/development/babel-loader/935c5281811e7023b78c26038f5c44a3.json +0 -1
  561. package/example/.expo/web/cache/development/babel-loader/93945109a64716fc3d15a12d81598ef8.json +0 -1
  562. package/example/.expo/web/cache/development/babel-loader/93ee4950a9326c046f9fa65c13dac411.json +0 -1
  563. package/example/.expo/web/cache/development/babel-loader/93fe9632bb5db4ded992478e2af27d5f.json +0 -1
  564. package/example/.expo/web/cache/development/babel-loader/942ff966d1b2f375164a20370f75739c.json +0 -1
  565. package/example/.expo/web/cache/development/babel-loader/94ec82e971c8bd617ccb1f371516f99e.json +0 -1
  566. package/example/.expo/web/cache/development/babel-loader/952e79673cf0149b0385a4867bf28431.json +0 -1
  567. package/example/.expo/web/cache/development/babel-loader/952e86a021d3f8c00af76e77a3a2b421.json +0 -1
  568. package/example/.expo/web/cache/development/babel-loader/954ad5b7f72730fad3a93e8333b0da09.json +0 -1
  569. package/example/.expo/web/cache/development/babel-loader/957a301738f627a164ba1d2ab1bd927b.json +0 -1
  570. package/example/.expo/web/cache/development/babel-loader/957bea32dcc83e0fc7f2fd8795a8f818.json +0 -1
  571. package/example/.expo/web/cache/development/babel-loader/95894f21da81a853a458c13777d475ab.json +0 -1
  572. package/example/.expo/web/cache/development/babel-loader/96026b04efb214a46b3cb671312b9b6e.json +0 -1
  573. package/example/.expo/web/cache/development/babel-loader/960a64fc351e2a3b4224ffa3e526620b.json +0 -1
  574. package/example/.expo/web/cache/development/babel-loader/964cb097c867a1ded7eb7446f5548c22.json +0 -1
  575. package/example/.expo/web/cache/development/babel-loader/96cc9216a7d44bd92538b1a20e558b4a.json +0 -1
  576. package/example/.expo/web/cache/development/babel-loader/9768f896dd4e5f489c2d032e95b359a8.json +0 -1
  577. package/example/.expo/web/cache/development/babel-loader/9897d6fc1bbe153c542e6c7b35d22d2c.json +0 -1
  578. package/example/.expo/web/cache/development/babel-loader/98e4f7e158718137c26f2fe60b84369d.json +0 -1
  579. package/example/.expo/web/cache/development/babel-loader/9968019b9a7a89353b231c231c18a66f.json +0 -1
  580. package/example/.expo/web/cache/development/babel-loader/9a79db1b3eebf8a5a21a547ae71b6eee.json +0 -1
  581. package/example/.expo/web/cache/development/babel-loader/9ae989e87da92329c1f285a30c2be6f5.json +0 -1
  582. package/example/.expo/web/cache/development/babel-loader/9b3faa43b9b4d167e300792bd71300eb.json +0 -1
  583. package/example/.expo/web/cache/development/babel-loader/9ba4ab6ad62c186c10cc4440ed5f54a7.json +0 -1
  584. package/example/.expo/web/cache/development/babel-loader/9c3e01d3c2e1b6b20754bce294a85963.json +0 -1
  585. package/example/.expo/web/cache/development/babel-loader/9c9dd82e74356025c246d4ef7138a9a9.json +0 -1
  586. package/example/.expo/web/cache/development/babel-loader/9cb7fabe07406a89bdd8ec845495d384.json +0 -1
  587. package/example/.expo/web/cache/development/babel-loader/9ce0ea8540198d071a57d36dae227cbc.json +0 -1
  588. package/example/.expo/web/cache/development/babel-loader/9ce1f17dbfd3a985336dbf39e4903aa3.json +0 -1
  589. package/example/.expo/web/cache/development/babel-loader/9d2bab4aa3187dee265f1d9c8ce6f0f6.json +0 -1
  590. package/example/.expo/web/cache/development/babel-loader/9de726a6e25216c1ce763780ccfd2b77.json +0 -1
  591. package/example/.expo/web/cache/development/babel-loader/9e653ee142610f0516609ca3fb386739.json +0 -1
  592. package/example/.expo/web/cache/development/babel-loader/9e75ea79fea0209053c68ef4989b4a3a.json +0 -1
  593. package/example/.expo/web/cache/development/babel-loader/9f2f6a11de269026061831c947435758.json +0 -1
  594. package/example/.expo/web/cache/development/babel-loader/9f3fd9ca3231e3002df99db9d9616aa0.json +0 -1
  595. package/example/.expo/web/cache/development/babel-loader/9f84af378326a4f43f51f4afca0a4738.json +0 -1
  596. package/example/.expo/web/cache/development/babel-loader/9f904b29589b10b747085de3c6cfd4be.json +0 -1
  597. package/example/.expo/web/cache/development/babel-loader/a012778b5e674c9eb2944f5e6f50089d.json +0 -1
  598. package/example/.expo/web/cache/development/babel-loader/a076afeae19d4e15321e5d81cf41364a.json +0 -1
  599. package/example/.expo/web/cache/development/babel-loader/a174e09c0cfac080977d6f4995806b79.json +0 -1
  600. package/example/.expo/web/cache/development/babel-loader/a1a9e264a5d28df52eea40ebbe178511.json +0 -1
  601. package/example/.expo/web/cache/development/babel-loader/a261d7c057c570a5d74c5c84cc08e7f9.json +0 -1
  602. package/example/.expo/web/cache/development/babel-loader/a32a4d0daa4eb62756e1bb71d418598b.json +0 -1
  603. package/example/.expo/web/cache/development/babel-loader/a3611e076e067e7397bd47a9ebe95cf1.json +0 -1
  604. package/example/.expo/web/cache/development/babel-loader/a375a3eadad6ab2ce64ed38759b31415.json +0 -1
  605. package/example/.expo/web/cache/development/babel-loader/a375f7f9388cd549b5342455f032cb24.json +0 -1
  606. package/example/.expo/web/cache/development/babel-loader/a3b99e0ec7f17e098c6b02a04282d805.json +0 -1
  607. package/example/.expo/web/cache/development/babel-loader/a3bde08c6c572203f93bcfa1170d4790.json +0 -1
  608. package/example/.expo/web/cache/development/babel-loader/a3bf51a1af912c42396b784cf9851941.json +0 -1
  609. package/example/.expo/web/cache/development/babel-loader/a48b6217b860aab3e81b366a7306ee03.json +0 -1
  610. package/example/.expo/web/cache/development/babel-loader/a4d591b829ddddd57e666af1737b9d34.json +0 -1
  611. package/example/.expo/web/cache/development/babel-loader/a5439975918b87c11694b33af83dab36.json +0 -1
  612. package/example/.expo/web/cache/development/babel-loader/a5813eb247e0c87dcc99934f4b49ae48.json +0 -1
  613. package/example/.expo/web/cache/development/babel-loader/a584b9a0fe744b07e9054b7aa6e79f77.json +0 -1
  614. package/example/.expo/web/cache/development/babel-loader/a5aef7be4e09d6c659add5a82eb53b1e.json +0 -1
  615. package/example/.expo/web/cache/development/babel-loader/a630d58e39a9a6af1ce5a8e06315ce60.json +0 -1
  616. package/example/.expo/web/cache/development/babel-loader/a657ac811bb44819902726e55617b187.json +0 -1
  617. package/example/.expo/web/cache/development/babel-loader/a689718c369fcd0f651d9089f15f507e.json +0 -1
  618. package/example/.expo/web/cache/development/babel-loader/a6ba6a443c1adacdf7d7744a2af54267.json +0 -1
  619. package/example/.expo/web/cache/development/babel-loader/a78dc48e202b1f3be61ef3bc64699d14.json +0 -1
  620. package/example/.expo/web/cache/development/babel-loader/a79a096843947a83012402bb34b93567.json +0 -1
  621. package/example/.expo/web/cache/development/babel-loader/a85c03e40f8477a0a5885f01166a8aa7.json +0 -1
  622. package/example/.expo/web/cache/development/babel-loader/a92b432753e23bcc2919242ff345817f.json +0 -1
  623. package/example/.expo/web/cache/development/babel-loader/aa060898cdab84d74c3084628c331eeb.json +0 -1
  624. package/example/.expo/web/cache/development/babel-loader/aa0e6e0aa152ebcb49584ecc82533c72.json +0 -1
  625. package/example/.expo/web/cache/development/babel-loader/aa2c33a01bdef3dd64263863d5e1e71f.json +0 -1
  626. package/example/.expo/web/cache/development/babel-loader/aa62c823f7515beb060c751cde5365f2.json +0 -1
  627. package/example/.expo/web/cache/development/babel-loader/aad65600986e893d97dd5efbbc82bc19.json +0 -1
  628. package/example/.expo/web/cache/development/babel-loader/aad865b4c9160b648a082ba72163d00c.json +0 -1
  629. package/example/.expo/web/cache/development/babel-loader/ab8d4e4e90a2ad47b37f4e4d73fb69cf.json +0 -1
  630. package/example/.expo/web/cache/development/babel-loader/abfc16406c69f7727d3e40be1f492f11.json +0 -1
  631. package/example/.expo/web/cache/development/babel-loader/ac5ac27f40cd535964ff8a0f4a7ee169.json +0 -1
  632. package/example/.expo/web/cache/development/babel-loader/ac5c7f32acb8bbc71777904317929782.json +0 -1
  633. package/example/.expo/web/cache/development/babel-loader/acb7d1ebf630de004fdbf4297073c72b.json +0 -1
  634. package/example/.expo/web/cache/development/babel-loader/acc343298b9d93f37fea5d0160a6e4ba.json +0 -1
  635. package/example/.expo/web/cache/development/babel-loader/accfde63bc7861836c7d96f0edf99e15.json +0 -1
  636. package/example/.expo/web/cache/development/babel-loader/adb3227b48b17f020618b5e6ae28e5a1.json +0 -1
  637. package/example/.expo/web/cache/development/babel-loader/ae62b71356d25980c16ffb81fe2d38be.json +0 -1
  638. package/example/.expo/web/cache/development/babel-loader/aebf66a0b170878a4c0f484faab92c87.json +0 -1
  639. package/example/.expo/web/cache/development/babel-loader/aeda03d4168ed94c7b1e5436bf2e55d2.json +0 -1
  640. package/example/.expo/web/cache/development/babel-loader/af3dd17c6ef8154cf4971c88c6eb677e.json +0 -1
  641. package/example/.expo/web/cache/development/babel-loader/affcd570f78182f4e48f1e0339274e7d.json +0 -1
  642. package/example/.expo/web/cache/development/babel-loader/b07b004dd4b5be9c751c59934a92f7b1.json +0 -1
  643. package/example/.expo/web/cache/development/babel-loader/b07cfabfb81a762e3e63a2af6bada32a.json +0 -1
  644. package/example/.expo/web/cache/development/babel-loader/b0a4e8cf7a76d3009a62200ed32812d9.json +0 -1
  645. package/example/.expo/web/cache/development/babel-loader/b1661b3c840f0f1de996ba1d52a39764.json +0 -1
  646. package/example/.expo/web/cache/development/babel-loader/b18b69c1c5e4f8cf7c4ded4ea78be1b5.json +0 -1
  647. package/example/.expo/web/cache/development/babel-loader/b265f89f5ab4c2ac5fe0a4efeb01770f.json +0 -1
  648. package/example/.expo/web/cache/development/babel-loader/b32b03cd1b812594924db2f0dadb2f56.json +0 -1
  649. package/example/.expo/web/cache/development/babel-loader/b36ad3720ed8bc69cd40bacd30394013.json +0 -1
  650. package/example/.expo/web/cache/development/babel-loader/b39994cdb5251061c12396c51a2a4df5.json +0 -1
  651. package/example/.expo/web/cache/development/babel-loader/b3bd282bfd66e7c6728dc9e033e2e5b7.json +0 -1
  652. package/example/.expo/web/cache/development/babel-loader/b4914db154b01908445f8961813335bb.json +0 -1
  653. package/example/.expo/web/cache/development/babel-loader/b5d4cbb6bcdc394e0d5535f5bbf695e3.json +0 -1
  654. package/example/.expo/web/cache/development/babel-loader/b5e102a7b193d671228f7ddc03e9762f.json +0 -1
  655. package/example/.expo/web/cache/development/babel-loader/b64b0b9559bbba155f24caa6cf08f433.json +0 -1
  656. package/example/.expo/web/cache/development/babel-loader/b64d7ed6cc2651e474b668ca64580004.json +0 -1
  657. package/example/.expo/web/cache/development/babel-loader/b6e50485f89d6d18b20ec92af1d7d77a.json +0 -1
  658. package/example/.expo/web/cache/development/babel-loader/b7cd5dd20bda33ddccdb5231ae48ab94.json +0 -1
  659. package/example/.expo/web/cache/development/babel-loader/b8dfa5de3c421f70e9db524804d13b84.json +0 -1
  660. package/example/.expo/web/cache/development/babel-loader/b919a51bbe877fb67940240410ab8e17.json +0 -1
  661. package/example/.expo/web/cache/development/babel-loader/b946671feb92e88b439dd8ef2a6c5986.json +0 -1
  662. package/example/.expo/web/cache/development/babel-loader/b94c620fffaf0aee6db1c4d1956ad196.json +0 -1
  663. package/example/.expo/web/cache/development/babel-loader/b9f7f88c506aab3dbc0a17a697f9d1cb.json +0 -1
  664. package/example/.expo/web/cache/development/babel-loader/ba8d26034676cafb0e6da5d28881d723.json +0 -1
  665. package/example/.expo/web/cache/development/babel-loader/bb3f7c789c7832591535d92e860b66ed.json +0 -1
  666. package/example/.expo/web/cache/development/babel-loader/bb8a76115e7279a8f704a1eba275902b.json +0 -1
  667. package/example/.expo/web/cache/development/babel-loader/bbfb771df3000d27f236c2f6538e6d31.json +0 -1
  668. package/example/.expo/web/cache/development/babel-loader/bc341b30ec186150a32a98e338033719.json +0 -1
  669. package/example/.expo/web/cache/development/babel-loader/bc3aae58b847f110df0eb389edd4b86b.json +0 -1
  670. package/example/.expo/web/cache/development/babel-loader/bca25eae1165828580cc055637bfac27.json +0 -1
  671. package/example/.expo/web/cache/development/babel-loader/bcd08666cb6eeb4d7141e38e753e5e5c.json +0 -1
  672. package/example/.expo/web/cache/development/babel-loader/bcf66f748963f3ac26d26df58fe29f77.json +0 -1
  673. package/example/.expo/web/cache/development/babel-loader/bd0b7e29ca8c871961c647db1d07050e.json +0 -1
  674. package/example/.expo/web/cache/development/babel-loader/be9a424fb2eb94b49c7c3b6ce0c07d19.json +0 -1
  675. package/example/.expo/web/cache/development/babel-loader/bea462878f1e660514793ed06a1be72e.json +0 -1
  676. package/example/.expo/web/cache/development/babel-loader/beef69cc65e73363978524809c84094f.json +0 -1
  677. package/example/.expo/web/cache/development/babel-loader/bf018174df7cdbed5ae77cf03c266fee.json +0 -1
  678. package/example/.expo/web/cache/development/babel-loader/bf53ba81ac3956a07f41a09fa6c4fa7e.json +0 -1
  679. package/example/.expo/web/cache/development/babel-loader/c13c2416aaeb1b85aa8681b0f41fa17e.json +0 -1
  680. package/example/.expo/web/cache/development/babel-loader/c15cb7604e78e9a4f0cc5e4b79a227c2.json +0 -1
  681. package/example/.expo/web/cache/development/babel-loader/c20807f969171763f83e5286ffb7183c.json +0 -1
  682. package/example/.expo/web/cache/development/babel-loader/c2b339b8db3daa5a91ca22f4fe923857.json +0 -1
  683. package/example/.expo/web/cache/development/babel-loader/c2f4ad9f921da12100f998440b20370a.json +0 -1
  684. package/example/.expo/web/cache/development/babel-loader/c303af92e5dd411ca77f22bca1971ccb.json +0 -1
  685. package/example/.expo/web/cache/development/babel-loader/c309e4999a3ca5404709ed911ec9fdda.json +0 -1
  686. package/example/.expo/web/cache/development/babel-loader/c37b2427c54ed0b731d9413ea475f338.json +0 -1
  687. package/example/.expo/web/cache/development/babel-loader/c390729cb76084d27a499d8b5e574ad0.json +0 -1
  688. package/example/.expo/web/cache/development/babel-loader/c3ad64ca938631bdcd3142591dcd02d7.json +0 -1
  689. package/example/.expo/web/cache/development/babel-loader/c43017273abd7760afa188cb903bfa5d.json +0 -1
  690. package/example/.expo/web/cache/development/babel-loader/c466e35c5dbd7ca225f190ac4fe983aa.json +0 -1
  691. package/example/.expo/web/cache/development/babel-loader/c4d9f3709efea05dfe51b5b3ae5d4ad1.json +0 -1
  692. package/example/.expo/web/cache/development/babel-loader/c4e1eebafffb0724425df5b45f08c358.json +0 -1
  693. package/example/.expo/web/cache/development/babel-loader/c5134c3fb7b800b1c9b34655b8e97e4f.json +0 -1
  694. package/example/.expo/web/cache/development/babel-loader/c558bd553a6d00a518a39a9a60004a64.json +0 -1
  695. package/example/.expo/web/cache/development/babel-loader/c5964edc803e4bb08165c72d27ca0e53.json +0 -1
  696. package/example/.expo/web/cache/development/babel-loader/c5d4c8ee363ae3a19cd02a3f9817b3b1.json +0 -1
  697. package/example/.expo/web/cache/development/babel-loader/c5dfb4580aa26cba8a25198c3894b453.json +0 -1
  698. package/example/.expo/web/cache/development/babel-loader/c62552ef04c76cdb7a94ba2f041360ac.json +0 -1
  699. package/example/.expo/web/cache/development/babel-loader/c69144c50f8f0d981b66c62204aaae74.json +0 -1
  700. package/example/.expo/web/cache/development/babel-loader/c733b561ef63b80564242d9b6f4954ec.json +0 -1
  701. package/example/.expo/web/cache/development/babel-loader/c78a01224ddb57513f9dc1603e721184.json +0 -1
  702. package/example/.expo/web/cache/development/babel-loader/c800cb1a4eccf4cc18e1408cf178b86d.json +0 -1
  703. package/example/.expo/web/cache/development/babel-loader/c8c61768113386918420fa8baaa34704.json +0 -1
  704. package/example/.expo/web/cache/development/babel-loader/c94104801dfb90a18288b87decb3c7b3.json +0 -1
  705. package/example/.expo/web/cache/development/babel-loader/c965c4dd6cfbe1acc5984c0f27e69884.json +0 -1
  706. package/example/.expo/web/cache/development/babel-loader/c98f4ddefa349e6a50f455783f82f960.json +0 -1
  707. package/example/.expo/web/cache/development/babel-loader/ca0c207f9e3ba434db8f3775513736e6.json +0 -1
  708. package/example/.expo/web/cache/development/babel-loader/ca4498d52ea6fed7e01c9ed5c26fcf95.json +0 -1
  709. package/example/.expo/web/cache/development/babel-loader/ca73168f6c95cb078c01776ef4bd512d.json +0 -1
  710. package/example/.expo/web/cache/development/babel-loader/cb195f5c63902492b91ca4c2f455b400.json +0 -1
  711. package/example/.expo/web/cache/development/babel-loader/cba71c3eea31dc8ca85b9ced8f7b1720.json +0 -1
  712. package/example/.expo/web/cache/development/babel-loader/cc2ae312a6441a2fedd76ee22ac87d51.json +0 -1
  713. package/example/.expo/web/cache/development/babel-loader/cc37b4c4f23da7c9d04d8693a5bbaaab.json +0 -1
  714. package/example/.expo/web/cache/development/babel-loader/cced66a0b48653e5bfa98910a88f9fba.json +0 -1
  715. package/example/.expo/web/cache/development/babel-loader/cd081f2f623635b6965d7656912be1f6.json +0 -1
  716. package/example/.expo/web/cache/development/babel-loader/cd0e23910d814598adda82d05396be53.json +0 -1
  717. package/example/.expo/web/cache/development/babel-loader/cd55e478acd924f5c082f02840ed8bbb.json +0 -1
  718. package/example/.expo/web/cache/development/babel-loader/cd6e9b147db4f5e3265bf18542f6201b.json +0 -1
  719. package/example/.expo/web/cache/development/babel-loader/cd8b6c6cd6a24fa61739c4d22dda95f8.json +0 -1
  720. package/example/.expo/web/cache/development/babel-loader/cdf6fa5dcab6f3a13fa07e89fe985423.json +0 -1
  721. package/example/.expo/web/cache/development/babel-loader/ce580f3605e11ce41ca71abf9fb32fc7.json +0 -1
  722. package/example/.expo/web/cache/development/babel-loader/cec065a6035ae98d73359c588d92c8c8.json +0 -1
  723. package/example/.expo/web/cache/development/babel-loader/ceccb76ea280ae97ededa88718ed0c3b.json +0 -1
  724. package/example/.expo/web/cache/development/babel-loader/cfc467109de81a77ce3d683966f4b354.json +0 -1
  725. package/example/.expo/web/cache/development/babel-loader/d046df5680cd4056bdf827f416d3c8b2.json +0 -1
  726. package/example/.expo/web/cache/development/babel-loader/d0c3cb818782b9a81bfc30385f72b89b.json +0 -1
  727. package/example/.expo/web/cache/development/babel-loader/d0fcdc8e889d972bbb4337e548164f40.json +0 -1
  728. package/example/.expo/web/cache/development/babel-loader/d15a3ca0ba45f6a6cbb1b63b7810e35e.json +0 -1
  729. package/example/.expo/web/cache/development/babel-loader/d168cd3939b990979e911bb032f8577b.json +0 -1
  730. package/example/.expo/web/cache/development/babel-loader/d1836b27a3272be99da18e96bc42dab6.json +0 -1
  731. package/example/.expo/web/cache/development/babel-loader/d282ac03fe3d6ac05de4538ce1e9c00e.json +0 -1
  732. package/example/.expo/web/cache/development/babel-loader/d2eb6efe4ffa76b3cab0af535e1e52fe.json +0 -1
  733. package/example/.expo/web/cache/development/babel-loader/d2fc7ecda4f6641f8d52e406be776196.json +0 -1
  734. package/example/.expo/web/cache/development/babel-loader/d358f00c23a45360cbb79dabdb721cd1.json +0 -1
  735. package/example/.expo/web/cache/development/babel-loader/d3d5e2781dd751c30bcaeef2108a4bbd.json +0 -1
  736. package/example/.expo/web/cache/development/babel-loader/d45d41c244dad2c3ea03ba49a46a0423.json +0 -1
  737. package/example/.expo/web/cache/development/babel-loader/d4f6275737ee0b15864d1784084ec4e9.json +0 -1
  738. package/example/.expo/web/cache/development/babel-loader/d5420905583aa27006ceaa13da6b662a.json +0 -1
  739. package/example/.expo/web/cache/development/babel-loader/d5552d7ee552fec6e21e0b398feb3ddb.json +0 -1
  740. package/example/.expo/web/cache/development/babel-loader/d5cec4c149045421487b8541b94a68b3.json +0 -1
  741. package/example/.expo/web/cache/development/babel-loader/d5e957af6e309a776341859d38205ccc.json +0 -1
  742. package/example/.expo/web/cache/development/babel-loader/d6374eec0b6eb2d7538d7ec9d51fe7dd.json +0 -1
  743. package/example/.expo/web/cache/development/babel-loader/d6c8e8d8e2fa01556286c656b2fd470b.json +0 -1
  744. package/example/.expo/web/cache/development/babel-loader/d72ee3cf688a67b27f18b05bef74d879.json +0 -1
  745. package/example/.expo/web/cache/development/babel-loader/d7573bf1b493a896066b6f45d9c7aa77.json +0 -1
  746. package/example/.expo/web/cache/development/babel-loader/d797775538f909e9de0d644bcf0389e4.json +0 -1
  747. package/example/.expo/web/cache/development/babel-loader/d7a4ea460412fb0fca3860f1e0126113.json +0 -1
  748. package/example/.expo/web/cache/development/babel-loader/d7cfda25d1654f23b9938352b3e5f0fd.json +0 -1
  749. package/example/.expo/web/cache/development/babel-loader/d7f22047db03832a0314db9bb7c9e4e8.json +0 -1
  750. package/example/.expo/web/cache/development/babel-loader/d835d39f7f1e78947f024fd3e7baac91.json +0 -1
  751. package/example/.expo/web/cache/development/babel-loader/d92da9ccd71edac1d6d7f1b72554205f.json +0 -1
  752. package/example/.expo/web/cache/development/babel-loader/d96d3b81896e9bd36159e740a504fa01.json +0 -1
  753. package/example/.expo/web/cache/development/babel-loader/d9b91562265c9867aac3075b134f6718.json +0 -1
  754. package/example/.expo/web/cache/development/babel-loader/dae925659703faa3496df0985e30eb46.json +0 -1
  755. package/example/.expo/web/cache/development/babel-loader/db2362a80925087fd6dfea2ecf5d1527.json +0 -1
  756. package/example/.expo/web/cache/development/babel-loader/db44721b3956bd3b7617e773f566987b.json +0 -1
  757. package/example/.expo/web/cache/development/babel-loader/dbe08ee59a725c77de92c2ccf9c1f722.json +0 -1
  758. package/example/.expo/web/cache/development/babel-loader/dcc70c8d830be9dfd880c5298c0e5869.json +0 -1
  759. package/example/.expo/web/cache/development/babel-loader/dcd99ce86a9a99d6c582dd618bb0da9a.json +0 -1
  760. package/example/.expo/web/cache/development/babel-loader/dd2e7e9f0700b6295764b0357f97fbd1.json +0 -1
  761. package/example/.expo/web/cache/development/babel-loader/ddba687cec3fe45cc19f7c824b08d2f4.json +0 -1
  762. package/example/.expo/web/cache/development/babel-loader/dee3d7eeaa9d088adee455787ecfdbba.json +0 -1
  763. package/example/.expo/web/cache/development/babel-loader/dee6d26381b0eee37db16f38d32dca5f.json +0 -1
  764. package/example/.expo/web/cache/development/babel-loader/df177e28e870b3f9ed04286275590e05.json +0 -1
  765. package/example/.expo/web/cache/development/babel-loader/df2a97c39760a6b128a2bccf500f09b0.json +0 -1
  766. package/example/.expo/web/cache/development/babel-loader/df8cca84735630b31c89ab8c4525d586.json +0 -1
  767. package/example/.expo/web/cache/development/babel-loader/dffc3d3b5387634869406f7b262b0334.json +0 -1
  768. package/example/.expo/web/cache/development/babel-loader/e00a687de4af483a065036c6b80fa9f9.json +0 -1
  769. package/example/.expo/web/cache/development/babel-loader/e057ccea7890265eb568f4ea843b9c10.json +0 -1
  770. package/example/.expo/web/cache/development/babel-loader/e0bc2b67f28f7d20625141635fb72278.json +0 -1
  771. package/example/.expo/web/cache/development/babel-loader/e0c343c3fc39409be8007009745f0f06.json +0 -1
  772. package/example/.expo/web/cache/development/babel-loader/e0cb85d97765140dc5b5d5208c9ba0fa.json +0 -1
  773. package/example/.expo/web/cache/development/babel-loader/e12513c015e82fb05ce94ecc8be7102a.json +0 -1
  774. package/example/.expo/web/cache/development/babel-loader/e13d64c5b0cbfdf147e8b47baa112969.json +0 -1
  775. package/example/.expo/web/cache/development/babel-loader/e15a3fbd8440519153d5282a30f1f37b.json +0 -1
  776. package/example/.expo/web/cache/development/babel-loader/e1630fcfbaff568bf2f669a3e388c026.json +0 -1
  777. package/example/.expo/web/cache/development/babel-loader/e18e89bfc53249e5ebeb448812643401.json +0 -1
  778. package/example/.expo/web/cache/development/babel-loader/e1962858e3fc18c71d271c6eaa3a943d.json +0 -1
  779. package/example/.expo/web/cache/development/babel-loader/e1a0963978b2cb66dec1b5d8a5a2c753.json +0 -1
  780. package/example/.expo/web/cache/development/babel-loader/e21dcee29960dda3812a8e73f9b0fcbc.json +0 -1
  781. package/example/.expo/web/cache/development/babel-loader/e2673fb3c85a185e6ab75eca05a80f64.json +0 -1
  782. package/example/.expo/web/cache/development/babel-loader/e267b8128c475d71c47f9914b3578229.json +0 -1
  783. package/example/.expo/web/cache/development/babel-loader/e2faafd77df6c4f281c0c99a9e458e54.json +0 -1
  784. package/example/.expo/web/cache/development/babel-loader/e30c76c9a2d4f8d448441c1cb652eb01.json +0 -1
  785. package/example/.expo/web/cache/development/babel-loader/e3b541bfa3824b550bb4753328ea57b4.json +0 -1
  786. package/example/.expo/web/cache/development/babel-loader/e3e41ecd377f12917599e490df17750a.json +0 -1
  787. package/example/.expo/web/cache/development/babel-loader/e3e477529ed5548f8e901ee83d7395ef.json +0 -1
  788. package/example/.expo/web/cache/development/babel-loader/e40e88a5ee7080ae8c27b8b8b14fbe3b.json +0 -1
  789. package/example/.expo/web/cache/development/babel-loader/e4815f1b8edf5002fdece1b55fbc36bb.json +0 -1
  790. package/example/.expo/web/cache/development/babel-loader/e5305c23d1c285b3c16d5bbf31831aea.json +0 -1
  791. package/example/.expo/web/cache/development/babel-loader/e54991dfa34b4e617bf4ceac778d28ec.json +0 -1
  792. package/example/.expo/web/cache/development/babel-loader/e656bc77be79a05f8054e227f7f79d12.json +0 -1
  793. package/example/.expo/web/cache/development/babel-loader/e6dda54eeb97664ecf647c4e0d49e089.json +0 -1
  794. package/example/.expo/web/cache/development/babel-loader/e6f55b8bb2f55bff9c7239707407e38b.json +0 -1
  795. package/example/.expo/web/cache/development/babel-loader/e71b020cacbbe302bb14d7910742ec2d.json +0 -1
  796. package/example/.expo/web/cache/development/babel-loader/e7472dd2c104082f95c6920e14b1ebf1.json +0 -1
  797. package/example/.expo/web/cache/development/babel-loader/e7b42d4997a3a0970f307de97b93e04a.json +0 -1
  798. package/example/.expo/web/cache/development/babel-loader/e8ecfe4f495e40da9c691725a170eb28.json +0 -1
  799. package/example/.expo/web/cache/development/babel-loader/e915493077bb73d313288ad45d1c2409.json +0 -1
  800. package/example/.expo/web/cache/development/babel-loader/e958dca390e4e96d3ffd3fd3e668de5a.json +0 -1
  801. package/example/.expo/web/cache/development/babel-loader/e9ee1fc9a9a662fdf210526a05895585.json +0 -1
  802. package/example/.expo/web/cache/development/babel-loader/e9f34adb6cf176473ebe8a287ff9cea0.json +0 -1
  803. package/example/.expo/web/cache/development/babel-loader/ea69e12059df73da64e057bade5f4ba1.json +0 -1
  804. package/example/.expo/web/cache/development/babel-loader/eadf3cd31f335914fa5f8ada3a1adbbf.json +0 -1
  805. package/example/.expo/web/cache/development/babel-loader/eae09ceb3f4483977f405539fff299a4.json +0 -1
  806. package/example/.expo/web/cache/development/babel-loader/eaffd3d95bf68dd8a7419e53498b4640.json +0 -1
  807. package/example/.expo/web/cache/development/babel-loader/ebbb70e9a4382be368d07b5d046c1462.json +0 -1
  808. package/example/.expo/web/cache/development/babel-loader/ebe11e572ee539ae5369153fcc1b6f74.json +0 -1
  809. package/example/.expo/web/cache/development/babel-loader/ec21f5360e4897cb685f84b6fbf18181.json +0 -1
  810. package/example/.expo/web/cache/development/babel-loader/ec22a1721004d1dffd715720d5c2bda5.json +0 -1
  811. package/example/.expo/web/cache/development/babel-loader/ec63eb9ceeb4c06850ea87251e7799bf.json +0 -1
  812. package/example/.expo/web/cache/development/babel-loader/ece398d7adaeb2d15814944cdc4f38f5.json +0 -1
  813. package/example/.expo/web/cache/development/babel-loader/ee15d7496b6f14edc02d2cd58a7353f9.json +0 -1
  814. package/example/.expo/web/cache/development/babel-loader/ee8e3abcff9f49ec89705c0e083bc14e.json +0 -1
  815. package/example/.expo/web/cache/development/babel-loader/ef79cc0b13fea249ac3b074f0a0de8eb.json +0 -1
  816. package/example/.expo/web/cache/development/babel-loader/efadf533037054fccfefb405d34aab26.json +0 -1
  817. package/example/.expo/web/cache/development/babel-loader/efdf5fb16bfb6755d38d6afaec705dcc.json +0 -1
  818. package/example/.expo/web/cache/development/babel-loader/f114b6650124f4aa114c8641a8fb2e95.json +0 -1
  819. package/example/.expo/web/cache/development/babel-loader/f1659a943838ef6080b4c230d68487d6.json +0 -1
  820. package/example/.expo/web/cache/development/babel-loader/f205f5a93654153e1b41acf6d6152d7f.json +0 -1
  821. package/example/.expo/web/cache/development/babel-loader/f265e7091af5aee6391a1dc72195fc0b.json +0 -1
  822. package/example/.expo/web/cache/development/babel-loader/f266b6619650205d99c01705391967fb.json +0 -1
  823. package/example/.expo/web/cache/development/babel-loader/f26a2ea3fe78d43644601e71fefe7a1e.json +0 -1
  824. package/example/.expo/web/cache/development/babel-loader/f2df4e0da01cdba6223f5bbe6b36ff68.json +0 -1
  825. package/example/.expo/web/cache/development/babel-loader/f3060f14259d3179812abd59791780a5.json +0 -1
  826. package/example/.expo/web/cache/development/babel-loader/f384324970a1d59b46669955648ac6de.json +0 -1
  827. package/example/.expo/web/cache/development/babel-loader/f3ae3ddc97a343c3835b961d6e18934b.json +0 -1
  828. package/example/.expo/web/cache/development/babel-loader/f3b600b1c28c90f40371d1f2d941da2f.json +0 -1
  829. package/example/.expo/web/cache/development/babel-loader/f3beb518b54ed38f03ac6db8f54e60ff.json +0 -1
  830. package/example/.expo/web/cache/development/babel-loader/f3c616fbd126299d1e806d6ecc1ec318.json +0 -1
  831. package/example/.expo/web/cache/development/babel-loader/f42e9bcb2c70b941d26c869beae57ebd.json +0 -1
  832. package/example/.expo/web/cache/development/babel-loader/f443534deab89b5e0a500eca24b470b0.json +0 -1
  833. package/example/.expo/web/cache/development/babel-loader/f4a9921d6e837efff4d9a9df358e594f.json +0 -1
  834. package/example/.expo/web/cache/development/babel-loader/f4c95c91f375005a143433586f729253.json +0 -1
  835. package/example/.expo/web/cache/development/babel-loader/f4f125417024aaa0f10afb51bedbf3f6.json +0 -1
  836. package/example/.expo/web/cache/development/babel-loader/f557735276807fa1f2857d869fcf3f24.json +0 -1
  837. package/example/.expo/web/cache/development/babel-loader/f697d6e3e8832c91f0e644a9cbbaf125.json +0 -1
  838. package/example/.expo/web/cache/development/babel-loader/f7551af34198eaeae403b7c9f14ed77f.json +0 -1
  839. package/example/.expo/web/cache/development/babel-loader/f7747a8774208f97feee323659c8fd9c.json +0 -1
  840. package/example/.expo/web/cache/development/babel-loader/f78eccb875790b4d905e542a961bf15d.json +0 -1
  841. package/example/.expo/web/cache/development/babel-loader/f79a20eb5fe07a41699a4082250176ee.json +0 -1
  842. package/example/.expo/web/cache/development/babel-loader/f7b6a546f5059f1510208c9c5587c755.json +0 -1
  843. package/example/.expo/web/cache/development/babel-loader/f8161007e70676aff950dd230d92b913.json +0 -1
  844. package/example/.expo/web/cache/development/babel-loader/f89bed9b99073eb34bdcfe509a9eef7b.json +0 -1
  845. package/example/.expo/web/cache/development/babel-loader/f8da7cfcc868c4561939eb69b187852b.json +0 -1
  846. package/example/.expo/web/cache/development/babel-loader/f981fff461509e432e764337b548614f.json +0 -1
  847. package/example/.expo/web/cache/development/babel-loader/f9a453849a2adca3c8d16c288ee63674.json +0 -1
  848. package/example/.expo/web/cache/development/babel-loader/f9c8751528f50853c93bccaef3665cb2.json +0 -1
  849. package/example/.expo/web/cache/development/babel-loader/fa1cac776862e25b801ccd74fe04dedb.json +0 -1
  850. package/example/.expo/web/cache/development/babel-loader/fa7135f62c5758217dd521fe11e4f3be.json +0 -1
  851. package/example/.expo/web/cache/development/babel-loader/fa87a67383617d9e7ac4d10603dc82ff.json +0 -1
  852. package/example/.expo/web/cache/development/babel-loader/fb1afe2167ecb0e405e51371bc59a75e.json +0 -1
  853. package/example/.expo/web/cache/development/babel-loader/fc02f1af2a9db4facfa4f4fc290432fe.json +0 -1
  854. package/example/.expo/web/cache/development/babel-loader/fc62eb1057700a3ed46569b3ca6ae7b8.json +0 -1
  855. package/example/.expo/web/cache/development/babel-loader/fc941b53721fd7910cde57ec192fe407.json +0 -1
  856. package/example/.expo/web/cache/development/babel-loader/fcce772003585ea1a1ac51d619ba94c6.json +0 -1
  857. package/example/.expo/web/cache/development/babel-loader/fd143c0566e976f3b69413de3ca79ebf.json +0 -1
  858. package/example/.expo/web/cache/development/babel-loader/fd655c3e164d6c50e7affcee01046566.json +0 -1
  859. package/example/.expo/web/cache/development/babel-loader/fdada169c1988ef70eea3e2b77f7b727.json +0 -1
  860. package/example/.expo/web/cache/development/babel-loader/fe0a5f0e6f28f358efb1ed12c10b3240.json +0 -1
  861. package/example/.expo/web/cache/development/babel-loader/fe26f1ecddd584420e8646ef68e8eec7.json +0 -1
  862. package/example/.expo/web/cache/development/babel-loader/fef7a9f8cae2e08dcc89bd0403704cb9.json +0 -1
  863. package/example/.expo/web/cache/development/babel-loader/ff9a6e20e331b715609602c9bca399e9.json +0 -1
  864. package/example/README.md +0 -32
  865. package/example/app.json +0 -22
  866. package/example/babel.config.js +0 -23
  867. package/example/index.js +0 -8
  868. package/example/metro.config.js +0 -40
  869. package/example/package.json +0 -37
  870. package/example/src/App.tsx +0 -60
  871. package/example/src/CandlestickChart.tsx +0 -155
  872. package/example/src/LineChart.tsx +0 -217
  873. package/example/src/data/candlestick-data.json +0 -142
  874. package/example/src/data/candlestick-data2.json +0 -142
  875. package/example/src/data/line-data.json +0 -82
  876. package/example/src/data/line-data2.json +0 -82
  877. package/example/src/line-data-gh.json +0 -18
  878. package/example/tsconfig.json +0 -6
  879. package/example/webpack.config.js +0 -25
  880. package/example/yarn-error.log +0 -0
  881. package/example/yarn.lock +0 -6831
  882. package/lib/.DS_Store +0 -0
  883. package/lib/typescript/example/src/App.d.ts +0 -3
  884. package/lib/typescript/example/src/CandlestickChart.d.ts +0 -2
  885. package/lib/typescript/example/src/LineChart.d.ts +0 -2
  886. package/scripts/bootstrap.js +0 -24
  887. package/src/.DS_Store +0 -0
  888. package/tsconfig.build.json +0 -5
  889. package/tsconfig.json +0 -27
  890. package/yarn.lock +0 -8676
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import ReactNativePropRegistry from \"./ReactNativePropRegistry\";\nimport invariant from 'fbjs/lib/invariant';\n\nfunction getStyle(style) {\n if (typeof style === 'number') {\n return ReactNativePropRegistry.getByID(style);\n }\n\n return style;\n}\n\nfunction flattenStyle(style) {\n if (!style) {\n return undefined;\n }\n\n if (process.env.NODE_ENV !== 'production') {\n invariant(style !== true, 'style may be false but not true');\n }\n\n if (!Array.isArray(style)) {\n return getStyle(style);\n }\n\n var result = {};\n\n for (var i = 0, styleLength = style.length; i < styleLength; ++i) {\n var computedStyle = flattenStyle(style[i]);\n\n if (computedStyle) {\n for (var key in computedStyle) {\n var value = computedStyle[key];\n result[key] = value;\n }\n }\n }\n\n return result;\n}\n\nexport default flattenStyle;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/exports/StyleSheet/flattenStyle.js"],"names":["ReactNativePropRegistry","invariant","getStyle","style","getByID","flattenStyle","undefined","process","env","NODE_ENV","Array","isArray","result","i","styleLength","length","computedStyle","key","value"],"mappings":"AASA,OAAOA,uBAAP;AACA,OAAOC,SAAP,MAAsB,oBAAtB;;AAEA,SAASC,QAAT,CAAkBC,KAAlB,EAAyB;AACvB,MAAI,OAAOA,KAAP,KAAiB,QAArB,EAA+B;AAC7B,WAAOH,uBAAuB,CAACI,OAAxB,CAAgCD,KAAhC,CAAP;AACD;;AAED,SAAOA,KAAP;AACD;;AAED,SAASE,YAAT,CAAsBF,KAAtB,EAA6B;AAC3B,MAAI,CAACA,KAAL,EAAY;AACV,WAAOG,SAAP;AACD;;AAED,MAAIC,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAA7B,EAA2C;AACzCR,IAAAA,SAAS,CAACE,KAAK,KAAK,IAAX,EAAiB,iCAAjB,CAAT;AACD;;AAED,MAAI,CAACO,KAAK,CAACC,OAAN,CAAcR,KAAd,CAAL,EAA2B;AACzB,WAAOD,QAAQ,CAACC,KAAD,CAAf;AACD;;AAED,MAAIS,MAAM,GAAG,EAAb;;AAEA,OAAK,IAAIC,CAAC,GAAG,CAAR,EAAWC,WAAW,GAAGX,KAAK,CAACY,MAApC,EAA4CF,CAAC,GAAGC,WAAhD,EAA6D,EAAED,CAA/D,EAAkE;AAChE,QAAIG,aAAa,GAAGX,YAAY,CAACF,KAAK,CAACU,CAAD,CAAN,CAAhC;;AAEA,QAAIG,aAAJ,EAAmB;AACjB,WAAK,IAAIC,GAAT,IAAgBD,aAAhB,EAA+B;AAC7B,YAAIE,KAAK,GAAGF,aAAa,CAACC,GAAD,CAAzB;AACAL,QAAAA,MAAM,CAACK,GAAD,CAAN,GAAcC,KAAd;AACD;AACF;AACF;;AAED,SAAON,MAAP;AACD;;AAED,eAAeP,YAAf","sourcesContent":["/**\n * Copyright (c) Nicolas Gallagher.\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\nimport ReactNativePropRegistry from './ReactNativePropRegistry';\nimport invariant from 'fbjs/lib/invariant';\n\nfunction getStyle(style) {\n if (typeof style === 'number') {\n return ReactNativePropRegistry.getByID(style);\n }\n\n return style;\n}\n\nfunction flattenStyle(style) {\n if (!style) {\n return undefined;\n }\n\n if (process.env.NODE_ENV !== 'production') {\n invariant(style !== true, 'style may be false but not true');\n }\n\n if (!Array.isArray(style)) {\n return getStyle(style);\n }\n\n var result = {};\n\n for (var i = 0, styleLength = style.length; i < styleLength; ++i) {\n var computedStyle = flattenStyle(style[i]);\n\n if (computedStyle) {\n for (var key in computedStyle) {\n var value = computedStyle[key];\n result[key] = value;\n }\n }\n }\n\n return result;\n}\n\nexport default flattenStyle;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import { createAnimatedPropAdapter } from \"./core\";\nexport var SVGAdapter = createAnimatedPropAdapter(function () {\n var _f = function _f(props) {\n var _a, _b;\n\n var keys = Object.keys(props);\n\n if (keys.includes('transform')) {\n if (Array.isArray(props.transform)) {\n if (props.transform.length !== 6) {\n throw new Error(\"invalid transform length of \" + props.transform.length + \", should be 6\");\n }\n\n var transform = props.transform;\n var x = (_a = props.x) !== null && _a !== void 0 ? _a : 0;\n var y = (_b = props.y) !== null && _b !== void 0 ? _b : 0;\n props.transform = [{\n translateX: transform[0] * x + transform[2] * y + transform[4]\n }, {\n translateY: transform[1] * x + transform[3] * y + transform[5]\n }];\n } else if (typeof props.transform === 'string') {\n var arr = props.transform.replace('translate(', '').replace(')', '').split(' ');\n props.transform = [{\n translateX: parseFloat(arr[0])\n }, {\n translateY: parseFloat(arr[1])\n }];\n }\n }\n };\n\n _f._closure = {};\n _f.asString = \"function _f(props){var _a,_b;var keys=Object.keys(props);if(keys.includes('transform')){if(Array.isArray(props.transform)){if(props.transform.length!==6){throw new Error(\\\"invalid transform length of \\\"+props.transform.length+\\\", should be 6\\\");}var transform=props.transform;var x=(_a=props.x)!==null&&_a!==void 0?_a:0;var y=(_b=props.y)!==null&&_b!==void 0?_b:0;props.transform=[{translateX:transform[0]*x+transform[2]*y+transform[4]},{translateY:transform[1]*x+transform[3]*y+transform[5]}];}else if(typeof props.transform==='string'){var arr=props.transform.replace('translate(','').replace(')','').split(' ');props.transform=[{translateX:parseFloat(arr[0])},{translateY:parseFloat(arr[1])}];}}}\";\n _f.__workletHash = 10994344277855;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/PropAdapters.js (4:52)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}());\nexport var TextInputAdapter = createAnimatedPropAdapter(function () {\n var _f = function _f(props) {\n var keys = Object.keys(props);\n\n if (keys.includes('value')) {\n props.text = props.value;\n delete props.value;\n }\n };\n\n _f._closure = {};\n _f.asString = \"function _f(props){var keys=Object.keys(props);if(keys.includes('value')){props.text=props.value;delete props.value;}}\";\n _f.__workletHash = 16281321885564;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/PropAdapters.js (38:58)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}(), ['text']);","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/PropAdapters.js"],"names":["createAnimatedPropAdapter","SVGAdapter","props","_a","_b","keys","Object","includes","Array","isArray","transform","length","Error","x","y","translateX","translateY","arr","replace","split","parseFloat","TextInputAdapter","text","value"],"mappings":"AAEA,SAASA,yBAAT;AACA,OAAO,IAAMC,UAAU,GAAGD,yBAAyB;AAAA,uBAAEE,KAAF,EAAY;AAE3D,QAAIC,EAAJ,EAAQC,EAAR;;AACA,QAAMC,IAAI,GAAGC,MAAM,CAACD,IAAP,CAAYH,KAAZ,CAAb;;AAEA,QAAIG,IAAI,CAACE,QAAL,CAAc,WAAd,CAAJ,EAAgC;AAC5B,UAAIC,KAAK,CAACC,OAAN,CAAcP,KAAK,CAACQ,SAApB,CAAJ,EAAoC;AAEhC,YAAIR,KAAK,CAACQ,SAAN,CAAgBC,MAAhB,KAA2B,CAA/B,EAAkC;AAC9B,gBAAM,IAAIC,KAAJ,kCAAyCV,KAAK,CAACQ,SAAN,CAAgBC,MAAzD,mBAAN;AACH;;AACD,YAAMD,SAAS,GAAGR,KAAK,CAACQ,SAAxB;AACA,YAAMG,CAAC,GAAG,CAACV,EAAE,GAAGD,KAAK,CAACW,CAAZ,MAAmB,IAAnB,IAA2BV,EAAE,KAAK,KAAK,CAAvC,GAA2CA,EAA3C,GAAgD,CAA1D;AACA,YAAMW,CAAC,GAAG,CAACV,EAAE,GAAGF,KAAK,CAACY,CAAZ,MAAmB,IAAnB,IAA2BV,EAAE,KAAK,KAAK,CAAvC,GAA2CA,EAA3C,GAAgD,CAA1D;AACAF,QAAAA,KAAK,CAACQ,SAAN,GAAkB,CACd;AAAEK,UAAAA,UAAU,EAAEL,SAAS,CAAC,CAAD,CAAT,GAAeG,CAAf,GAAmBH,SAAS,CAAC,CAAD,CAAT,GAAeI,CAAlC,GAAsCJ,SAAS,CAAC,CAAD;AAA7D,SADc,EAEd;AAAEM,UAAAA,UAAU,EAAEN,SAAS,CAAC,CAAD,CAAT,GAAeG,CAAf,GAAmBH,SAAS,CAAC,CAAD,CAAT,GAAeI,CAAlC,GAAsCJ,SAAS,CAAC,CAAD;AAA7D,SAFc,CAAlB;AAIH,OAZD,MAaK,IAAI,OAAOR,KAAK,CAACQ,SAAb,KAA2B,QAA/B,EAAyC;AAG1C,YAAMO,GAAG,GAAGf,KAAK,CAACQ,SAAN,CACPQ,OADO,CACC,YADD,EACe,EADf,EAEPA,OAFO,CAEC,GAFD,EAEM,EAFN,EAGPC,KAHO,CAGD,GAHC,CAAZ;AAIAjB,QAAAA,KAAK,CAACQ,SAAN,GAAkB,CACd;AAAEK,UAAAA,UAAU,EAAEK,UAAU,CAACH,GAAG,CAAC,CAAD,CAAJ;AAAxB,SADc,EAEd;AAAED,UAAAA,UAAU,EAAEI,UAAU,CAACH,GAAG,CAAC,CAAD,CAAJ;AAAxB,SAFc,CAAlB;AAIH;AACJ;AAEJ,GAjCkD;;AAAA;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA,IAA5C;AAkCP,OAAO,IAAMI,gBAAgB,GAAGrB,yBAAyB;AAAA,uBAAEE,KAAF,EAAY;AAEjE,QAAMG,IAAI,GAAGC,MAAM,CAACD,IAAP,CAAYH,KAAZ,CAAb;;AAEA,QAAIG,IAAI,CAACE,QAAL,CAAc,OAAd,CAAJ,EAA4B;AACxBL,MAAAA,KAAK,CAACoB,IAAN,GAAapB,KAAK,CAACqB,KAAnB;AACA,aAAOrB,KAAK,CAACqB,KAAb;AACH;AACJ,GARwD;;AAAA;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA,KAQtD,CAAC,MAAD,CARsD,CAAlD","sourcesContent":["// eslint-disable-next-line @typescript-eslint/ban-ts-comment\n// @ts-nocheck\nimport { createAnimatedPropAdapter } from './core';\nexport const SVGAdapter = createAnimatedPropAdapter((props) => {\n 'worklet';\n var _a, _b;\n const keys = Object.keys(props);\n // transform\n if (keys.includes('transform')) {\n if (Array.isArray(props.transform)) {\n // case of array with 6 values => https://github.com/react-native-svg/react-native-svg/blob/b2e2c355204ff4b10973d3afce1495f7e4167ff7/src/elements/Shape.tsx#L200\n if (props.transform.length !== 6) {\n throw new Error(`invalid transform length of ${props.transform.length}, should be 6`);\n }\n const transform = props.transform;\n const x = (_a = props.x) !== null && _a !== void 0 ? _a : 0;\n const y = (_b = props.y) !== null && _b !== void 0 ? _b : 0;\n props.transform = [\n { translateX: transform[0] * x + transform[2] * y + transform[4] },\n { translateY: transform[1] * x + transform[3] * y + transform[5] },\n ];\n }\n else if (typeof props.transform === 'string') {\n // case of string 'translate(translateX translateY)'\n // todo: handle other cases of transform string like here https://github.com/react-native-svg/react-native-svg/blob/b2e2c355204ff4b10973d3afce1495f7e4167ff7/src/lib/extract/extractTransform.ts#L184\n const arr = props.transform\n .replace('translate(', '')\n .replace(')', '')\n .split(' ');\n props.transform = [\n { translateX: parseFloat(arr[0]) },\n { translateY: parseFloat(arr[1]) },\n ];\n }\n }\n // todo: other props\n});\nexport const TextInputAdapter = createAnimatedPropAdapter((props) => {\n 'worklet';\n const keys = Object.keys(props);\n // convert text to value like RN does here: https://github.com/facebook/react-native/blob/f2c6279ca497b34d5a2bfbb6f2d33dc7a7bea02a/Libraries/Components/TextInput/TextInput.js#L878\n if (keys.includes('value')) {\n props.text = props.value;\n delete props.value;\n }\n}, ['text']);\n"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"export { createAnimatedCond as cond } from \"./core/AnimatedCond\";\nexport { createAnimatedSet as set } from \"./core/AnimatedSet\";\nexport { createAnimatedStartClock as startClock } from \"./core/AnimatedStartClock\";\nexport { createAnimatedStopClock as stopClock } from \"./core/AnimatedStopClock\";\nexport { createAnimatedClockTest as clockRunning } from \"./core/AnimatedClockTest\";\nexport { createAnimatedDebug as debug } from \"./core/AnimatedDebug\";\nexport { createAnimatedCall as call } from \"./core/AnimatedCall\";\nexport { createAnimatedEvent as event } from \"./core/AnimatedEvent\";\nexport { createAnimatedAlways as always } from \"./core/AnimatedAlways\";\nexport { createAnimatedConcat as concat } from \"./core/AnimatedConcat\";\nexport { createAnimatedBlock as block, adapt } from \"./core/AnimatedBlock\";\nexport { createAnimatedFunction as proc } from \"./core/AnimatedFunction\";\nexport * from \"./operators\";","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated1/base.js"],"names":["createAnimatedCond","cond","createAnimatedSet","set","createAnimatedStartClock","startClock","createAnimatedStopClock","stopClock","createAnimatedClockTest","clockRunning","createAnimatedDebug","debug","createAnimatedCall","call","createAnimatedEvent","event","createAnimatedAlways","always","createAnimatedConcat","concat","createAnimatedBlock","block","adapt","createAnimatedFunction","proc"],"mappings":"AAAA,SAASA,kBAAkB,IAAIC,IAA/B;AACA,SAASC,iBAAiB,IAAIC,GAA9B;AACA,SAASC,wBAAwB,IAAIC,UAArC;AACA,SAASC,uBAAuB,IAAIC,SAApC;AACA,SAASC,uBAAuB,IAAIC,YAApC;AACA,SAASC,mBAAmB,IAAIC,KAAhC;AACA,SAASC,kBAAkB,IAAIC,IAA/B;AACA,SAASC,mBAAmB,IAAIC,KAAhC;AACA,SAASC,oBAAoB,IAAIC,MAAjC;AACA,SAASC,oBAAoB,IAAIC,MAAjC;AACA,SAASC,mBAAmB,IAAIC,KAAhC,EAAuCC,KAAvC;AACA,SAASC,sBAAsB,IAAIC,IAAnC;AACA","sourcesContent":["export { createAnimatedCond as cond } from './core/AnimatedCond';\nexport { createAnimatedSet as set } from './core/AnimatedSet';\nexport { createAnimatedStartClock as startClock } from './core/AnimatedStartClock';\nexport { createAnimatedStopClock as stopClock } from './core/AnimatedStopClock';\nexport { createAnimatedClockTest as clockRunning } from './core/AnimatedClockTest';\nexport { createAnimatedDebug as debug } from './core/AnimatedDebug';\nexport { createAnimatedCall as call } from './core/AnimatedCall';\nexport { createAnimatedEvent as event } from './core/AnimatedEvent';\nexport { createAnimatedAlways as always } from './core/AnimatedAlways';\nexport { createAnimatedConcat as concat } from './core/AnimatedConcat';\nexport { createAnimatedBlock as block, adapt } from './core/AnimatedBlock';\nexport { createAnimatedFunction as proc } from './core/AnimatedFunction';\nexport * from './operators';\n"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import reanimatedJS from \"./js-reanimated\";\nexport default reanimatedJS;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/NativeReanimated.js"],"names":["reanimatedJS"],"mappings":"AAEA,OAAOA,YAAP;AACA,eAAeA,YAAf","sourcesContent":["// eslint-disable-next-line @typescript-eslint/ban-ts-comment\n// @ts-nocheck\nimport reanimatedJS from './js-reanimated';\nexport default reanimatedJS;\n"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"'use strict';\n\nfunction _extends() {\n _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n };\n\n return _extends.apply(this, arguments);\n}\n\nfunction _inheritsLoose(subClass, superClass) {\n subClass.prototype = Object.create(superClass.prototype);\n subClass.prototype.constructor = subClass;\n subClass.__proto__ = superClass;\n}\n\nimport { AnimatedEvent } from \"./AnimatedEvent\";\nimport AnimatedProps from \"./nodes/AnimatedProps\";\nimport React from 'react';\nimport invariant from 'fbjs/lib/invariant';\nimport mergeRefs from \"../../../modules/mergeRefs\";\n\nfunction createAnimatedComponent(Component, defaultProps) {\n invariant(typeof Component !== 'function' || Component.prototype && Component.prototype.isReactComponent, '`createAnimatedComponent` does not support stateless functional components; ' + 'use a class component instead.');\n\n var AnimatedComponent = function (_React$Component) {\n _inheritsLoose(AnimatedComponent, _React$Component);\n\n function AnimatedComponent(props) {\n var _this;\n\n _this = _React$Component.call(this, props) || this;\n _this._invokeAnimatedPropsCallbackOnMount = false;\n _this._eventDetachers = [];\n\n _this._animatedPropsCallback = function () {\n if (_this._component == null) {\n _this._invokeAnimatedPropsCallbackOnMount = true;\n } else if (AnimatedComponent.__skipSetNativeProps_FOR_TESTS_ONLY || typeof _this._component.setNativeProps !== 'function') {\n _this.forceUpdate();\n } else if (!_this._propsAnimated.__isNative) {\n _this._component.setNativeProps(_this._propsAnimated.__getAnimatedValue());\n } else {\n throw new Error('Attempting to run JS driven animation on animated ' + 'node that has been moved to \"native\" earlier by starting an ' + 'animation with `useNativeDriver: true`');\n }\n };\n\n _this._setComponentRef = mergeRefs(_this.props.forwardedRef, function (ref) {\n _this._prevComponent = _this._component;\n _this._component = ref;\n\n if (ref != null && ref.getNode == null) {\n ref.getNode = function () {\n var _ref$constructor$name;\n\n console.warn('%s: Calling `getNode()` on the ref of an Animated component ' + 'is no longer necessary. You can now directly use the ref ' + 'instead. This method will be removed in a future release.', (_ref$constructor$name = ref.constructor.name) !== null && _ref$constructor$name !== void 0 ? _ref$constructor$name : '<<anonymous>>');\n return ref;\n };\n }\n });\n return _this;\n }\n\n var _proto = AnimatedComponent.prototype;\n\n _proto.componentWillUnmount = function componentWillUnmount() {\n this._propsAnimated && this._propsAnimated.__detach();\n\n this._detachNativeEvents();\n };\n\n _proto.UNSAFE_componentWillMount = function UNSAFE_componentWillMount() {\n this._attachProps(this.props);\n };\n\n _proto.componentDidMount = function componentDidMount() {\n if (this._invokeAnimatedPropsCallbackOnMount) {\n this._invokeAnimatedPropsCallbackOnMount = false;\n\n this._animatedPropsCallback();\n }\n\n this._propsAnimated.setNativeView(this._component);\n\n this._attachNativeEvents();\n };\n\n _proto._attachNativeEvents = function _attachNativeEvents() {\n var _this2 = this;\n\n var scrollableNode = this._component && this._component.getScrollableNode ? this._component.getScrollableNode() : this._component;\n\n var _loop = function _loop(key) {\n var prop = _this2.props[key];\n\n if (prop instanceof AnimatedEvent && prop.__isNative) {\n prop.__attach(scrollableNode, key);\n\n _this2._eventDetachers.push(function () {\n return prop.__detach(scrollableNode, key);\n });\n }\n };\n\n for (var key in this.props) {\n _loop(key);\n }\n };\n\n _proto._detachNativeEvents = function _detachNativeEvents() {\n this._eventDetachers.forEach(function (remove) {\n return remove();\n });\n\n this._eventDetachers = [];\n };\n\n _proto._attachProps = function _attachProps(nextProps) {\n var oldPropsAnimated = this._propsAnimated;\n this._propsAnimated = new AnimatedProps(nextProps, this._animatedPropsCallback);\n oldPropsAnimated && oldPropsAnimated.__detach();\n };\n\n _proto.UNSAFE_componentWillReceiveProps = function UNSAFE_componentWillReceiveProps(newProps) {\n this._attachProps(newProps);\n };\n\n _proto.componentDidUpdate = function componentDidUpdate(prevProps) {\n if (this._component !== this._prevComponent) {\n this._propsAnimated.setNativeView(this._component);\n }\n\n if (this._component !== this._prevComponent || prevProps !== this.props) {\n this._detachNativeEvents();\n\n this._attachNativeEvents();\n }\n };\n\n _proto.render = function render() {\n var props = this._propsAnimated.__getValue();\n\n return React.createElement(Component, _extends({}, defaultProps, props, {\n ref: this._setComponentRef,\n collapsable: false\n }));\n };\n\n return AnimatedComponent;\n }(React.Component);\n\n AnimatedComponent.__skipSetNativeProps_FOR_TESTS_ONLY = false;\n var propTypes = Component.propTypes;\n return React.forwardRef(function AnimatedComponentWrapper(props, ref) {\n return React.createElement(AnimatedComponent, _extends({}, props, ref == null ? null : {\n forwardedRef: ref\n }));\n });\n}\n\nexport default createAnimatedComponent;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/vendor/react-native/Animated/createAnimatedComponent.js"],"names":["_extends","Object","assign","target","i","arguments","length","source","key","prototype","hasOwnProperty","call","apply","_inheritsLoose","subClass","superClass","create","constructor","__proto__","AnimatedEvent","AnimatedProps","React","invariant","mergeRefs","createAnimatedComponent","Component","defaultProps","isReactComponent","AnimatedComponent","_React$Component","props","_this","_invokeAnimatedPropsCallbackOnMount","_eventDetachers","_animatedPropsCallback","_component","__skipSetNativeProps_FOR_TESTS_ONLY","setNativeProps","forceUpdate","_propsAnimated","__isNative","__getAnimatedValue","Error","_setComponentRef","forwardedRef","ref","_prevComponent","getNode","_ref$constructor$name","console","warn","name","_proto","componentWillUnmount","__detach","_detachNativeEvents","UNSAFE_componentWillMount","_attachProps","componentDidMount","setNativeView","_attachNativeEvents","_this2","scrollableNode","getScrollableNode","_loop","prop","__attach","push","forEach","remove","nextProps","oldPropsAnimated","UNSAFE_componentWillReceiveProps","newProps","componentDidUpdate","prevProps","render","__getValue","createElement","collapsable","propTypes","forwardRef","AnimatedComponentWrapper"],"mappings":"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","sourcesContent":["/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n * @format\n */\n'use strict';\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }\n\nimport { AnimatedEvent } from './AnimatedEvent';\nimport AnimatedProps from './nodes/AnimatedProps';\nimport React from 'react';\nimport invariant from 'fbjs/lib/invariant';\nimport mergeRefs from '../../../modules/mergeRefs';\n\nfunction createAnimatedComponent(Component, defaultProps) {\n invariant(typeof Component !== 'function' || Component.prototype && Component.prototype.isReactComponent, '`createAnimatedComponent` does not support stateless functional components; ' + 'use a class component instead.');\n\n var AnimatedComponent =\n /*#__PURE__*/\n function (_React$Component) {\n _inheritsLoose(AnimatedComponent, _React$Component);\n\n function AnimatedComponent(props) {\n var _this;\n\n _this = _React$Component.call(this, props) || this;\n _this._invokeAnimatedPropsCallbackOnMount = false;\n _this._eventDetachers = [];\n\n _this._animatedPropsCallback = function () {\n if (_this._component == null) {\n // AnimatedProps is created in will-mount because it's used in render.\n // But this callback may be invoked before mount in async mode,\n // In which case we should defer the setNativeProps() call.\n // React may throw away uncommitted work in async mode,\n // So a deferred call won't always be invoked.\n _this._invokeAnimatedPropsCallbackOnMount = true;\n } else if (AnimatedComponent.__skipSetNativeProps_FOR_TESTS_ONLY || typeof _this._component.setNativeProps !== 'function') {\n _this.forceUpdate();\n } else if (!_this._propsAnimated.__isNative) {\n _this._component.setNativeProps(_this._propsAnimated.__getAnimatedValue());\n } else {\n throw new Error('Attempting to run JS driven animation on animated ' + 'node that has been moved to \"native\" earlier by starting an ' + 'animation with `useNativeDriver: true`');\n }\n };\n\n _this._setComponentRef = mergeRefs(_this.props.forwardedRef, function (ref) {\n _this._prevComponent = _this._component;\n _this._component = ref; // TODO: Delete this in a future release.\n\n if (ref != null && ref.getNode == null) {\n ref.getNode = function () {\n var _ref$constructor$name;\n\n console.warn('%s: Calling `getNode()` on the ref of an Animated component ' + 'is no longer necessary. You can now directly use the ref ' + 'instead. This method will be removed in a future release.', (_ref$constructor$name = ref.constructor.name) !== null && _ref$constructor$name !== void 0 ? _ref$constructor$name : '<<anonymous>>');\n return ref;\n };\n }\n });\n return _this;\n }\n\n var _proto = AnimatedComponent.prototype;\n\n _proto.componentWillUnmount = function componentWillUnmount() {\n this._propsAnimated && this._propsAnimated.__detach();\n\n this._detachNativeEvents();\n };\n\n _proto.UNSAFE_componentWillMount = function UNSAFE_componentWillMount() {\n this._attachProps(this.props);\n };\n\n _proto.componentDidMount = function componentDidMount() {\n if (this._invokeAnimatedPropsCallbackOnMount) {\n this._invokeAnimatedPropsCallbackOnMount = false;\n\n this._animatedPropsCallback();\n }\n\n this._propsAnimated.setNativeView(this._component);\n\n this._attachNativeEvents();\n };\n\n _proto._attachNativeEvents = function _attachNativeEvents() {\n var _this2 = this;\n\n // Make sure to get the scrollable node for components that implement\n // `ScrollResponder.Mixin`.\n var scrollableNode = this._component && this._component.getScrollableNode ? this._component.getScrollableNode() : this._component;\n\n var _loop = function _loop(key) {\n var prop = _this2.props[key];\n\n if (prop instanceof AnimatedEvent && prop.__isNative) {\n prop.__attach(scrollableNode, key);\n\n _this2._eventDetachers.push(function () {\n return prop.__detach(scrollableNode, key);\n });\n }\n };\n\n for (var key in this.props) {\n _loop(key);\n }\n };\n\n _proto._detachNativeEvents = function _detachNativeEvents() {\n this._eventDetachers.forEach(function (remove) {\n return remove();\n });\n\n this._eventDetachers = [];\n } // The system is best designed when setNativeProps is implemented. It is\n // able to avoid re-rendering and directly set the attributes that changed.\n // However, setNativeProps can only be implemented on leaf native\n // components. If you want to animate a composite component, you need to\n // re-render it. In this case, we have a fallback that uses forceUpdate.\n ;\n\n _proto._attachProps = function _attachProps(nextProps) {\n var oldPropsAnimated = this._propsAnimated;\n this._propsAnimated = new AnimatedProps(nextProps, this._animatedPropsCallback); // When you call detach, it removes the element from the parent list\n // of children. If it goes to 0, then the parent also detaches itself\n // and so on.\n // An optimization is to attach the new elements and THEN detach the old\n // ones instead of detaching and THEN attaching.\n // This way the intermediate state isn't to go to 0 and trigger\n // this expensive recursive detaching to then re-attach everything on\n // the very next operation.\n\n oldPropsAnimated && oldPropsAnimated.__detach();\n };\n\n _proto.UNSAFE_componentWillReceiveProps = function UNSAFE_componentWillReceiveProps(newProps) {\n this._attachProps(newProps);\n };\n\n _proto.componentDidUpdate = function componentDidUpdate(prevProps) {\n if (this._component !== this._prevComponent) {\n this._propsAnimated.setNativeView(this._component);\n }\n\n if (this._component !== this._prevComponent || prevProps !== this.props) {\n this._detachNativeEvents();\n\n this._attachNativeEvents();\n }\n };\n\n _proto.render = function render() {\n var props = this._propsAnimated.__getValue();\n\n return React.createElement(Component, _extends({}, defaultProps, props, {\n ref: this._setComponentRef // The native driver updates views directly through the UI thread so we\n // have to make sure the view doesn't get optimized away because it cannot\n // go through the NativeViewHierarchyManager since it operates on the shadow\n // thread.\n ,\n collapsable: false\n }));\n };\n\n return AnimatedComponent;\n }(React.Component);\n\n AnimatedComponent.__skipSetNativeProps_FOR_TESTS_ONLY = false;\n var propTypes = Component.propTypes;\n return React.forwardRef(function AnimatedComponentWrapper(props, ref) {\n return React.createElement(AnimatedComponent, _extends({}, props, ref == null ? null : {\n forwardedRef: ref\n }));\n });\n}\n\nexport default createAnimatedComponent;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import _classCallCheck from \"@babel/runtime/helpers/classCallCheck\";\nimport _createClass from \"@babel/runtime/helpers/createClass\";\nimport _inherits from \"@babel/runtime/helpers/inherits\";\nimport _possibleConstructorReturn from \"@babel/runtime/helpers/possibleConstructorReturn\";\nimport _getPrototypeOf from \"@babel/runtime/helpers/getPrototypeOf\";\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nimport AnimatedNode from \"./AnimatedNode\";\nimport invariant from 'fbjs/lib/invariant';\nimport { val } from \"../val\";\n\nvar AnimatedAlways = function (_AnimatedNode) {\n _inherits(AnimatedAlways, _AnimatedNode);\n\n var _super = _createSuper(AnimatedAlways);\n\n function AnimatedAlways(what) {\n var _this;\n\n _classCallCheck(this, AnimatedAlways);\n\n invariant(what instanceof AnimatedNode, \"Reanimated: Animated.always node argument should be of type AnimatedNode but got \" + what);\n _this = _super.call(this, {\n type: 'always',\n what: what\n }, [what]);\n _this._what = what;\n return _this;\n }\n\n _createClass(AnimatedAlways, [{\n key: \"toString\",\n value: function toString() {\n return \"AnimatedAlways, id: \" + this.__nodeID;\n }\n }, {\n key: \"update\",\n value: function update() {\n this.__getValue();\n }\n }, {\n key: \"__onEvaluate\",\n value: function __onEvaluate() {\n val(this._what);\n return 0;\n }\n }]);\n\n return AnimatedAlways;\n}(AnimatedNode);\n\nexport function createAnimatedAlways(item) {\n return new AnimatedAlways(item);\n}","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated1/core/AnimatedAlways.js"],"names":["AnimatedNode","invariant","val","AnimatedAlways","what","type","_what","__nodeID","__getValue","createAnimatedAlways","item"],"mappings":";;;;;;;;;;AAAA,OAAOA,YAAP;AACA,OAAOC,SAAP,MAAsB,oBAAtB;AACA,SAASC,GAAT;;IAEMC,c;;;;;AAGJ,0BAAYC,IAAZ,EAAkB;AAAA;;AAAA;;AAChBH,IAAAA,SAAS,CACPG,IAAI,YAAYJ,YADT,wFAE6EI,IAF7E,CAAT;AAIA,8BAAM;AAAEC,MAAAA,IAAI,EAAE,QAAR;AAAkBD,MAAAA,IAAI,EAAJA;AAAlB,KAAN,EAAgC,CAACA,IAAD,CAAhC;AACA,UAAKE,KAAL,GAAaF,IAAb;AANgB;AAOjB;;;;WAED,oBAAW;AACT,sCAA8B,KAAKG,QAAnC;AACD;;;WAED,kBAAS;AACP,WAAKC,UAAL;AACD;;;WAED,wBAAe;AACbN,MAAAA,GAAG,CAAC,KAAKI,KAAN,CAAH;AACA,aAAO,CAAP;AACD;;;;EAvB0BN,Y;;AA0B7B,OAAO,SAASS,oBAAT,CAA8BC,IAA9B,EAAoC;AACzC,SAAO,IAAIP,cAAJ,CAAmBO,IAAnB,CAAP;AACD","sourcesContent":["import AnimatedNode from './AnimatedNode';\nimport invariant from 'fbjs/lib/invariant';\nimport { val } from '../val';\n\nclass AnimatedAlways extends AnimatedNode {\n _what;\n\n constructor(what) {\n invariant(\n what instanceof AnimatedNode,\n `Reanimated: Animated.always node argument should be of type AnimatedNode but got ${what}`\n );\n super({ type: 'always', what }, [what]);\n this._what = what;\n }\n\n toString() {\n return `AnimatedAlways, id: ${this.__nodeID}`;\n }\n\n update() {\n this.__getValue();\n }\n\n __onEvaluate() {\n val(this._what);\n return 0;\n }\n}\n\nexport function createAnimatedAlways(item) {\n return new AnimatedAlways(item);\n}\n"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import View from \"react-native-web/dist/exports/View\";\nexport default View;","map":{"version":3,"sources":["GestureHandlerRootView.tsx"],"names":[],"mappings":";AAEA,eAAA,IAAA","sourcesContent":["import { View } from 'react-native';\n\nexport default View;\n"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"'use strict';\n\nfunction _inheritsLoose(subClass, superClass) {\n subClass.prototype = Object.create(superClass.prototype);\n subClass.prototype.constructor = subClass;\n subClass.__proto__ = superClass;\n}\n\nimport AnimatedInterpolation from \"./AnimatedInterpolation\";\nimport AnimatedNode from \"./AnimatedNode\";\nimport AnimatedValue from \"./AnimatedValue\";\nimport AnimatedWithChildren from \"./AnimatedWithChildren\";\n\nvar AnimatedSubtraction = function (_AnimatedWithChildren) {\n _inheritsLoose(AnimatedSubtraction, _AnimatedWithChildren);\n\n function AnimatedSubtraction(a, b) {\n var _this;\n\n _this = _AnimatedWithChildren.call(this) || this;\n _this._a = typeof a === 'number' ? new AnimatedValue(a) : a;\n _this._b = typeof b === 'number' ? new AnimatedValue(b) : b;\n return _this;\n }\n\n var _proto = AnimatedSubtraction.prototype;\n\n _proto.__makeNative = function __makeNative() {\n this._a.__makeNative();\n\n this._b.__makeNative();\n\n _AnimatedWithChildren.prototype.__makeNative.call(this);\n };\n\n _proto.__getValue = function __getValue() {\n return this._a.__getValue() - this._b.__getValue();\n };\n\n _proto.interpolate = function interpolate(config) {\n return new AnimatedInterpolation(this, config);\n };\n\n _proto.__attach = function __attach() {\n this._a.__addChild(this);\n\n this._b.__addChild(this);\n };\n\n _proto.__detach = function __detach() {\n this._a.__removeChild(this);\n\n this._b.__removeChild(this);\n\n _AnimatedWithChildren.prototype.__detach.call(this);\n };\n\n _proto.__getNativeConfig = function __getNativeConfig() {\n return {\n type: 'subtraction',\n input: [this._a.__getNativeTag(), this._b.__getNativeTag()]\n };\n };\n\n return AnimatedSubtraction;\n}(AnimatedWithChildren);\n\nexport default AnimatedSubtraction;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/vendor/react-native/Animated/nodes/AnimatedSubtraction.js"],"names":["_inheritsLoose","subClass","superClass","prototype","Object","create","constructor","__proto__","AnimatedInterpolation","AnimatedNode","AnimatedValue","AnimatedWithChildren","AnimatedSubtraction","_AnimatedWithChildren","a","b","_this","call","_a","_b","_proto","__makeNative","__getValue","interpolate","config","__attach","__addChild","__detach","__removeChild","__getNativeConfig","type","input","__getNativeTag"],"mappings":"AASA;;AAEA,SAASA,cAAT,CAAwBC,QAAxB,EAAkCC,UAAlC,EAA8C;AAAED,EAAAA,QAAQ,CAACE,SAAT,GAAqBC,MAAM,CAACC,MAAP,CAAcH,UAAU,CAACC,SAAzB,CAArB;AAA0DF,EAAAA,QAAQ,CAACE,SAAT,CAAmBG,WAAnB,GAAiCL,QAAjC;AAA2CA,EAAAA,QAAQ,CAACM,SAAT,GAAqBL,UAArB;AAAkC;;AAEvL,OAAOM,qBAAP;AACA,OAAOC,YAAP;AACA,OAAOC,aAAP;AACA,OAAOC,oBAAP;;AAEA,IAAIC,mBAAmB,GAEvB,UAAUC,qBAAV,EAAiC;AAC/Bb,EAAAA,cAAc,CAACY,mBAAD,EAAsBC,qBAAtB,CAAd;;AAEA,WAASD,mBAAT,CAA6BE,CAA7B,EAAgCC,CAAhC,EAAmC;AACjC,QAAIC,KAAJ;;AAEAA,IAAAA,KAAK,GAAGH,qBAAqB,CAACI,IAAtB,CAA2B,IAA3B,KAAoC,IAA5C;AACAD,IAAAA,KAAK,CAACE,EAAN,GAAW,OAAOJ,CAAP,KAAa,QAAb,GAAwB,IAAIJ,aAAJ,CAAkBI,CAAlB,CAAxB,GAA+CA,CAA1D;AACAE,IAAAA,KAAK,CAACG,EAAN,GAAW,OAAOJ,CAAP,KAAa,QAAb,GAAwB,IAAIL,aAAJ,CAAkBK,CAAlB,CAAxB,GAA+CA,CAA1D;AACA,WAAOC,KAAP;AACD;;AAED,MAAII,MAAM,GAAGR,mBAAmB,CAACT,SAAjC;;AAEAiB,EAAAA,MAAM,CAACC,YAAP,GAAsB,SAASA,YAAT,GAAwB;AAC5C,SAAKH,EAAL,CAAQG,YAAR;;AAEA,SAAKF,EAAL,CAAQE,YAAR;;AAEAR,IAAAA,qBAAqB,CAACV,SAAtB,CAAgCkB,YAAhC,CAA6CJ,IAA7C,CAAkD,IAAlD;AACD,GAND;;AAQAG,EAAAA,MAAM,CAACE,UAAP,GAAoB,SAASA,UAAT,GAAsB;AACxC,WAAO,KAAKJ,EAAL,CAAQI,UAAR,KAAuB,KAAKH,EAAL,CAAQG,UAAR,EAA9B;AACD,GAFD;;AAIAF,EAAAA,MAAM,CAACG,WAAP,GAAqB,SAASA,WAAT,CAAqBC,MAArB,EAA6B;AAChD,WAAO,IAAIhB,qBAAJ,CAA0B,IAA1B,EAAgCgB,MAAhC,CAAP;AACD,GAFD;;AAIAJ,EAAAA,MAAM,CAACK,QAAP,GAAkB,SAASA,QAAT,GAAoB;AACpC,SAAKP,EAAL,CAAQQ,UAAR,CAAmB,IAAnB;;AAEA,SAAKP,EAAL,CAAQO,UAAR,CAAmB,IAAnB;AACD,GAJD;;AAMAN,EAAAA,MAAM,CAACO,QAAP,GAAkB,SAASA,QAAT,GAAoB;AACpC,SAAKT,EAAL,CAAQU,aAAR,CAAsB,IAAtB;;AAEA,SAAKT,EAAL,CAAQS,aAAR,CAAsB,IAAtB;;AAEAf,IAAAA,qBAAqB,CAACV,SAAtB,CAAgCwB,QAAhC,CAAyCV,IAAzC,CAA8C,IAA9C;AACD,GAND;;AAQAG,EAAAA,MAAM,CAACS,iBAAP,GAA2B,SAASA,iBAAT,GAA6B;AACtD,WAAO;AACLC,MAAAA,IAAI,EAAE,aADD;AAELC,MAAAA,KAAK,EAAE,CAAC,KAAKb,EAAL,CAAQc,cAAR,EAAD,EAA2B,KAAKb,EAAL,CAAQa,cAAR,EAA3B;AAFF,KAAP;AAID,GALD;;AAOA,SAAOpB,mBAAP;AACD,CApDD,CAoDED,oBApDF,CAFA;;AAwDA,eAAeC,mBAAf","sourcesContent":["/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n * @format\n */\n'use strict';\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }\n\nimport AnimatedInterpolation from './AnimatedInterpolation';\nimport AnimatedNode from './AnimatedNode';\nimport AnimatedValue from './AnimatedValue';\nimport AnimatedWithChildren from './AnimatedWithChildren';\n\nvar AnimatedSubtraction =\n/*#__PURE__*/\nfunction (_AnimatedWithChildren) {\n _inheritsLoose(AnimatedSubtraction, _AnimatedWithChildren);\n\n function AnimatedSubtraction(a, b) {\n var _this;\n\n _this = _AnimatedWithChildren.call(this) || this;\n _this._a = typeof a === 'number' ? new AnimatedValue(a) : a;\n _this._b = typeof b === 'number' ? new AnimatedValue(b) : b;\n return _this;\n }\n\n var _proto = AnimatedSubtraction.prototype;\n\n _proto.__makeNative = function __makeNative() {\n this._a.__makeNative();\n\n this._b.__makeNative();\n\n _AnimatedWithChildren.prototype.__makeNative.call(this);\n };\n\n _proto.__getValue = function __getValue() {\n return this._a.__getValue() - this._b.__getValue();\n };\n\n _proto.interpolate = function interpolate(config) {\n return new AnimatedInterpolation(this, config);\n };\n\n _proto.__attach = function __attach() {\n this._a.__addChild(this);\n\n this._b.__addChild(this);\n };\n\n _proto.__detach = function __detach() {\n this._a.__removeChild(this);\n\n this._b.__removeChild(this);\n\n _AnimatedWithChildren.prototype.__detach.call(this);\n };\n\n _proto.__getNativeConfig = function __getNativeConfig() {\n return {\n type: 'subtraction',\n input: [this._a.__getNativeTag(), this._b.__getNativeTag()]\n };\n };\n\n return AnimatedSubtraction;\n}(AnimatedWithChildren);\n\nexport default AnimatedSubtraction;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"function _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nimport invariant from 'fbjs/lib/invariant';\n\nvar Share = function () {\n function Share() {}\n\n Share.share = function share(content, options) {\n if (options === void 0) {\n options = {};\n }\n\n invariant(typeof content === 'object' && content !== null, 'Content to share must be a valid object');\n invariant(typeof content.url === 'string' || typeof content.message === 'string', 'At least one of URL and message is required');\n invariant(typeof options === 'object' && options !== null, 'Options must be a valid object');\n invariant(!content.title || typeof content.title === 'string', 'Invalid title: title should be a string.');\n\n if (window.navigator.share !== undefined) {\n return window.navigator.share({\n title: content.title,\n text: content.message,\n url: content.url\n });\n } else {\n return Promise.reject(new Error('Share is not supported in this browser'));\n }\n };\n\n _createClass(Share, null, [{\n key: \"sharedAction\",\n get: function get() {\n return 'sharedAction';\n }\n }, {\n key: \"dismissedAction\",\n get: function get() {\n return 'dismissedAction';\n }\n }]);\n\n return Share;\n}();\n\nexport default Share;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/exports/Share/index.js"],"names":["_defineProperties","target","props","i","length","descriptor","enumerable","configurable","writable","Object","defineProperty","key","_createClass","Constructor","protoProps","staticProps","prototype","invariant","Share","share","content","options","url","message","title","window","navigator","undefined","text","Promise","reject","Error","get"],"mappings":"AAAA,SAASA,iBAAT,CAA2BC,MAA3B,EAAmCC,KAAnC,EAA0C;AAAE,OAAK,IAAIC,CAAC,GAAG,CAAb,EAAgBA,CAAC,GAAGD,KAAK,CAACE,MAA1B,EAAkCD,CAAC,EAAnC,EAAuC;AAAE,QAAIE,UAAU,GAAGH,KAAK,CAACC,CAAD,CAAtB;AAA2BE,IAAAA,UAAU,CAACC,UAAX,GAAwBD,UAAU,CAACC,UAAX,IAAyB,KAAjD;AAAwDD,IAAAA,UAAU,CAACE,YAAX,GAA0B,IAA1B;AAAgC,QAAI,WAAWF,UAAf,EAA2BA,UAAU,CAACG,QAAX,GAAsB,IAAtB;AAA4BC,IAAAA,MAAM,CAACC,cAAP,CAAsBT,MAAtB,EAA8BI,UAAU,CAACM,GAAzC,EAA8CN,UAA9C;AAA4D;AAAE;;AAE7T,SAASO,YAAT,CAAsBC,WAAtB,EAAmCC,UAAnC,EAA+CC,WAA/C,EAA4D;AAAE,MAAID,UAAJ,EAAgBd,iBAAiB,CAACa,WAAW,CAACG,SAAb,EAAwBF,UAAxB,CAAjB;AAAsD,MAAIC,WAAJ,EAAiBf,iBAAiB,CAACa,WAAD,EAAcE,WAAd,CAAjB;AAA6C,SAAOF,WAAP;AAAqB;;AAWvN,OAAOI,SAAP,MAAsB,oBAAtB;;AAEA,IAAIC,KAAK,GAET,YAAY;AACV,WAASA,KAAT,GAAiB,CAAE;;AAEnBA,EAAAA,KAAK,CAACC,KAAN,GAAc,SAASA,KAAT,CAAeC,OAAf,EAAwBC,OAAxB,EAAiC;AAC7C,QAAIA,OAAO,KAAK,KAAK,CAArB,EAAwB;AACtBA,MAAAA,OAAO,GAAG,EAAV;AACD;;AAEDJ,IAAAA,SAAS,CAAC,OAAOG,OAAP,KAAmB,QAAnB,IAA+BA,OAAO,KAAK,IAA5C,EAAkD,yCAAlD,CAAT;AACAH,IAAAA,SAAS,CAAC,OAAOG,OAAO,CAACE,GAAf,KAAuB,QAAvB,IAAmC,OAAOF,OAAO,CAACG,OAAf,KAA2B,QAA/D,EAAyE,6CAAzE,CAAT;AACAN,IAAAA,SAAS,CAAC,OAAOI,OAAP,KAAmB,QAAnB,IAA+BA,OAAO,KAAK,IAA5C,EAAkD,gCAAlD,CAAT;AACAJ,IAAAA,SAAS,CAAC,CAACG,OAAO,CAACI,KAAT,IAAkB,OAAOJ,OAAO,CAACI,KAAf,KAAyB,QAA5C,EAAsD,0CAAtD,CAAT;;AAEA,QAAIC,MAAM,CAACC,SAAP,CAAiBP,KAAjB,KAA2BQ,SAA/B,EAA0C;AACxC,aAAOF,MAAM,CAACC,SAAP,CAAiBP,KAAjB,CAAuB;AAC5BK,QAAAA,KAAK,EAAEJ,OAAO,CAACI,KADa;AAE5BI,QAAAA,IAAI,EAAER,OAAO,CAACG,OAFc;AAG5BD,QAAAA,GAAG,EAAEF,OAAO,CAACE;AAHe,OAAvB,CAAP;AAKD,KAND,MAMO;AACL,aAAOO,OAAO,CAACC,MAAR,CAAe,IAAIC,KAAJ,CAAU,wCAAV,CAAf,CAAP;AACD;AACF,GAnBD;;AAyBAnB,EAAAA,YAAY,CAACM,KAAD,EAAQ,IAAR,EAAc,CAAC;AACzBP,IAAAA,GAAG,EAAE,cADoB;AAEzBqB,IAAAA,GAAG,EAAE,SAASA,GAAT,GAAe;AAClB,aAAO,cAAP;AACD;AAJwB,GAAD,EAUvB;AACDrB,IAAAA,GAAG,EAAE,iBADJ;AAEDqB,IAAAA,GAAG,EAAE,SAASA,GAAT,GAAe;AAClB,aAAO,iBAAP;AACD;AAJA,GAVuB,CAAd,CAAZ;;AAiBA,SAAOd,KAAP;AACD,CA9CD,EAFA;;AAkDA,eAAeA,KAAf","sourcesContent":["function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\n/**\n * Copyright (c) Nicolas Gallagher.\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\nimport invariant from 'fbjs/lib/invariant';\n\nvar Share =\n/*#__PURE__*/\nfunction () {\n function Share() {}\n\n Share.share = function share(content, options) {\n if (options === void 0) {\n options = {};\n }\n\n invariant(typeof content === 'object' && content !== null, 'Content to share must be a valid object');\n invariant(typeof content.url === 'string' || typeof content.message === 'string', 'At least one of URL and message is required');\n invariant(typeof options === 'object' && options !== null, 'Options must be a valid object');\n invariant(!content.title || typeof content.title === 'string', 'Invalid title: title should be a string.');\n\n if (window.navigator.share !== undefined) {\n return window.navigator.share({\n title: content.title,\n text: content.message,\n url: content.url\n });\n } else {\n return Promise.reject(new Error('Share is not supported in this browser'));\n }\n }\n /**\n * The content was successfully shared.\n */\n ;\n\n _createClass(Share, null, [{\n key: \"sharedAction\",\n get: function get() {\n return 'sharedAction';\n }\n /**\n * The dialog has been dismissed.\n * @platform ios\n */\n\n }, {\n key: \"dismissedAction\",\n get: function get() {\n return 'dismissedAction';\n }\n }]);\n\n return Share;\n}();\n\nexport default Share;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"'use strict';\n\nfunction _inheritsLoose(subClass, superClass) {\n subClass.prototype = Object.create(superClass.prototype);\n subClass.prototype.constructor = subClass;\n subClass.__proto__ = superClass;\n}\n\nimport EventEmitter from \"../emitter/EventEmitter\";\nimport EventSubscriptionVendor from \"../emitter/EventSubscriptionVendor\";\n\nvar __DEV__ = process.env.NODE_ENV !== 'production';\n\nfunction checkNativeEventModule(eventType) {\n if (eventType) {\n if (eventType.lastIndexOf('statusBar', 0) === 0) {\n throw new Error('`' + eventType + '` event should be registered via the StatusBarIOS module');\n }\n\n if (eventType.lastIndexOf('keyboard', 0) === 0) {\n throw new Error('`' + eventType + '` event should be registered via the Keyboard module');\n }\n\n if (eventType === 'appStateDidChange' || eventType === 'memoryWarning') {\n throw new Error('`' + eventType + '` event should be registered via the AppState module');\n }\n }\n}\n\nvar RCTDeviceEventEmitter = function (_EventEmitter) {\n _inheritsLoose(RCTDeviceEventEmitter, _EventEmitter);\n\n function RCTDeviceEventEmitter() {\n var _this;\n\n var sharedSubscriber = new EventSubscriptionVendor();\n _this = _EventEmitter.call(this, sharedSubscriber) || this;\n _this.sharedSubscriber = sharedSubscriber;\n return _this;\n }\n\n var _proto = RCTDeviceEventEmitter.prototype;\n\n _proto.addListener = function addListener(eventType, listener, context) {\n if (__DEV__) {\n checkNativeEventModule(eventType);\n }\n\n return _EventEmitter.prototype.addListener.call(this, eventType, listener, context);\n };\n\n _proto.removeAllListeners = function removeAllListeners(eventType) {\n if (__DEV__) {\n checkNativeEventModule(eventType);\n }\n\n _EventEmitter.prototype.removeAllListeners.call(this, eventType);\n };\n\n _proto.removeSubscription = function removeSubscription(subscription) {\n if (subscription.emitter !== this) {\n subscription.emitter.removeSubscription(subscription);\n } else {\n _EventEmitter.prototype.removeSubscription.call(this, subscription);\n }\n };\n\n return RCTDeviceEventEmitter;\n}(EventEmitter);\n\nexport default new RCTDeviceEventEmitter();","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/vendor/react-native/NativeEventEmitter/RCTDeviceEventEmitter.js"],"names":["_inheritsLoose","subClass","superClass","prototype","Object","create","constructor","__proto__","EventEmitter","EventSubscriptionVendor","__DEV__","process","env","NODE_ENV","checkNativeEventModule","eventType","lastIndexOf","Error","RCTDeviceEventEmitter","_EventEmitter","_this","sharedSubscriber","call","_proto","addListener","listener","context","removeAllListeners","removeSubscription","subscription","emitter"],"mappings":"AASA;;AAEA,SAASA,cAAT,CAAwBC,QAAxB,EAAkCC,UAAlC,EAA8C;AAAED,EAAAA,QAAQ,CAACE,SAAT,GAAqBC,MAAM,CAACC,MAAP,CAAcH,UAAU,CAACC,SAAzB,CAArB;AAA0DF,EAAAA,QAAQ,CAACE,SAAT,CAAmBG,WAAnB,GAAiCL,QAAjC;AAA2CA,EAAAA,QAAQ,CAACM,SAAT,GAAqBL,UAArB;AAAkC;;AAEvL,OAAOM,YAAP;AACA,OAAOC,uBAAP;;AAEA,IAAIC,OAAO,GAAGC,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAAvC;;AAEA,SAASC,sBAAT,CAAgCC,SAAhC,EAA2C;AACzC,MAAIA,SAAJ,EAAe;AACb,QAAIA,SAAS,CAACC,WAAV,CAAsB,WAAtB,EAAmC,CAAnC,MAA0C,CAA9C,EAAiD;AAC/C,YAAM,IAAIC,KAAJ,CAAU,MAAMF,SAAN,GAAkB,0DAA5B,CAAN;AACD;;AAED,QAAIA,SAAS,CAACC,WAAV,CAAsB,UAAtB,EAAkC,CAAlC,MAAyC,CAA7C,EAAgD;AAC9C,YAAM,IAAIC,KAAJ,CAAU,MAAMF,SAAN,GAAkB,sDAA5B,CAAN;AACD;;AAED,QAAIA,SAAS,KAAK,mBAAd,IAAqCA,SAAS,KAAK,eAAvD,EAAwE;AACtE,YAAM,IAAIE,KAAJ,CAAU,MAAMF,SAAN,GAAkB,sDAA5B,CAAN;AACD;AACF;AACF;;AAOD,IAAIG,qBAAqB,GAEzB,UAAUC,aAAV,EAAyB;AACvBnB,EAAAA,cAAc,CAACkB,qBAAD,EAAwBC,aAAxB,CAAd;;AAEA,WAASD,qBAAT,GAAiC;AAC/B,QAAIE,KAAJ;;AAEA,QAAIC,gBAAgB,GAAG,IAAIZ,uBAAJ,EAAvB;AACAW,IAAAA,KAAK,GAAGD,aAAa,CAACG,IAAd,CAAmB,IAAnB,EAAyBD,gBAAzB,KAA8C,IAAtD;AACAD,IAAAA,KAAK,CAACC,gBAAN,GAAyBA,gBAAzB;AACA,WAAOD,KAAP;AACD;;AAED,MAAIG,MAAM,GAAGL,qBAAqB,CAACf,SAAnC;;AAEAoB,EAAAA,MAAM,CAACC,WAAP,GAAqB,SAASA,WAAT,CAAqBT,SAArB,EAAgCU,QAAhC,EAA0CC,OAA1C,EAAmD;AACtE,QAAIhB,OAAJ,EAAa;AACXI,MAAAA,sBAAsB,CAACC,SAAD,CAAtB;AACD;;AAED,WAAOI,aAAa,CAAChB,SAAd,CAAwBqB,WAAxB,CAAoCF,IAApC,CAAyC,IAAzC,EAA+CP,SAA/C,EAA0DU,QAA1D,EAAoEC,OAApE,CAAP;AACD,GAND;;AAQAH,EAAAA,MAAM,CAACI,kBAAP,GAA4B,SAASA,kBAAT,CAA4BZ,SAA5B,EAAuC;AACjE,QAAIL,OAAJ,EAAa;AACXI,MAAAA,sBAAsB,CAACC,SAAD,CAAtB;AACD;;AAEDI,IAAAA,aAAa,CAAChB,SAAd,CAAwBwB,kBAAxB,CAA2CL,IAA3C,CAAgD,IAAhD,EAAsDP,SAAtD;AACD,GAND;;AAQAQ,EAAAA,MAAM,CAACK,kBAAP,GAA4B,SAASA,kBAAT,CAA4BC,YAA5B,EAA0C;AACpE,QAAIA,YAAY,CAACC,OAAb,KAAyB,IAA7B,EAAmC;AACjCD,MAAAA,YAAY,CAACC,OAAb,CAAqBF,kBAArB,CAAwCC,YAAxC;AACD,KAFD,MAEO;AACLV,MAAAA,aAAa,CAAChB,SAAd,CAAwByB,kBAAxB,CAA2CN,IAA3C,CAAgD,IAAhD,EAAsDO,YAAtD;AACD;AACF,GAND;;AAQA,SAAOX,qBAAP;AACD,CAvCD,CAuCEV,YAvCF,CAFA;;AA2CA,eAAe,IAAIU,qBAAJ,EAAf","sourcesContent":["/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @format\n * \n */\n'use strict';\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }\n\nimport EventEmitter from '../emitter/EventEmitter';\nimport EventSubscriptionVendor from '../emitter/EventSubscriptionVendor';\n\nvar __DEV__ = process.env.NODE_ENV !== 'production';\n\nfunction checkNativeEventModule(eventType) {\n if (eventType) {\n if (eventType.lastIndexOf('statusBar', 0) === 0) {\n throw new Error('`' + eventType + '` event should be registered via the StatusBarIOS module');\n }\n\n if (eventType.lastIndexOf('keyboard', 0) === 0) {\n throw new Error('`' + eventType + '` event should be registered via the Keyboard module');\n }\n\n if (eventType === 'appStateDidChange' || eventType === 'memoryWarning') {\n throw new Error('`' + eventType + '` event should be registered via the AppState module');\n }\n }\n}\n/**\n * Deprecated - subclass NativeEventEmitter to create granular event modules instead of\n * adding all event listeners directly to RCTDeviceEventEmitter.\n */\n\n\nvar RCTDeviceEventEmitter =\n/*#__PURE__*/\nfunction (_EventEmitter) {\n _inheritsLoose(RCTDeviceEventEmitter, _EventEmitter);\n\n function RCTDeviceEventEmitter() {\n var _this;\n\n var sharedSubscriber = new EventSubscriptionVendor();\n _this = _EventEmitter.call(this, sharedSubscriber) || this;\n _this.sharedSubscriber = sharedSubscriber;\n return _this;\n }\n\n var _proto = RCTDeviceEventEmitter.prototype;\n\n _proto.addListener = function addListener(eventType, listener, context) {\n if (__DEV__) {\n checkNativeEventModule(eventType);\n }\n\n return _EventEmitter.prototype.addListener.call(this, eventType, listener, context);\n };\n\n _proto.removeAllListeners = function removeAllListeners(eventType) {\n if (__DEV__) {\n checkNativeEventModule(eventType);\n }\n\n _EventEmitter.prototype.removeAllListeners.call(this, eventType);\n };\n\n _proto.removeSubscription = function removeSubscription(subscription) {\n if (subscription.emitter !== this) {\n subscription.emitter.removeSubscription(subscription);\n } else {\n _EventEmitter.prototype.removeSubscription.call(this, subscription);\n }\n };\n\n return RCTDeviceEventEmitter;\n}(EventEmitter);\n\nexport default new RCTDeviceEventEmitter();"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"'use strict';\n\nimport EmitterSubscription from \"./EmitterSubscription\";\nimport EventSubscriptionVendor from \"./EventSubscriptionVendor\";\nimport invariant from 'fbjs/lib/invariant';\n\nvar sparseFilterPredicate = function sparseFilterPredicate() {\n return true;\n};\n\nvar EventEmitter = function () {\n function EventEmitter(subscriber) {\n this._subscriber = subscriber || new EventSubscriptionVendor();\n }\n\n var _proto = EventEmitter.prototype;\n\n _proto.addListener = function addListener(eventType, listener, context) {\n return this._subscriber.addSubscription(eventType, new EmitterSubscription(this, this._subscriber, listener, context));\n };\n\n _proto.once = function once(eventType, listener, context) {\n var _this = this;\n\n return this.addListener(eventType, function () {\n _this.removeCurrentListener();\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n listener.apply(context, args);\n });\n };\n\n _proto.removeAllListeners = function removeAllListeners(eventType) {\n this._subscriber.removeAllSubscriptions(eventType);\n };\n\n _proto.removeCurrentListener = function removeCurrentListener() {\n invariant(!!this._currentSubscription, 'Not in an emitting cycle; there is no current subscription');\n this.removeSubscription(this._currentSubscription);\n };\n\n _proto.removeSubscription = function removeSubscription(subscription) {\n invariant(subscription.emitter === this, 'Subscription does not belong to this emitter.');\n\n this._subscriber.removeSubscription(subscription);\n };\n\n _proto.listeners = function listeners(eventType) {\n var subscriptions = this._subscriber.getSubscriptionsForType(eventType);\n\n return subscriptions ? subscriptions.filter(sparseFilterPredicate).map(function (subscription) {\n return subscription.listener;\n }) : [];\n };\n\n _proto.emit = function emit(eventType) {\n var subscriptions = this._subscriber.getSubscriptionsForType(eventType);\n\n if (subscriptions) {\n for (var i = 0, l = subscriptions.length; i < l; i++) {\n var subscription = subscriptions[i];\n\n if (subscription && subscription.listener) {\n this._currentSubscription = subscription;\n subscription.listener.apply(subscription.context, Array.prototype.slice.call(arguments, 1));\n }\n }\n\n this._currentSubscription = null;\n }\n };\n\n _proto.removeListener = function removeListener(eventType, listener) {\n var subscriptions = this._subscriber.getSubscriptionsForType(eventType);\n\n if (subscriptions) {\n for (var i = 0, l = subscriptions.length; i < l; i++) {\n var subscription = subscriptions[i];\n\n if (subscription && subscription.listener === listener) {\n subscription.remove();\n }\n }\n }\n };\n\n return EventEmitter;\n}();\n\nexport default EventEmitter;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/vendor/react-native/emitter/EventEmitter.js"],"names":["EmitterSubscription","EventSubscriptionVendor","invariant","sparseFilterPredicate","EventEmitter","subscriber","_subscriber","_proto","prototype","addListener","eventType","listener","context","addSubscription","once","_this","removeCurrentListener","_len","arguments","length","args","Array","_key","apply","removeAllListeners","removeAllSubscriptions","_currentSubscription","removeSubscription","subscription","emitter","listeners","subscriptions","getSubscriptionsForType","filter","map","emit","i","l","slice","call","removeListener","remove"],"mappings":"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","sourcesContent":["/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @format\n * \n * @typecheck\n */\n'use strict';\n\nimport EmitterSubscription from './EmitterSubscription';\nimport EventSubscriptionVendor from './EventSubscriptionVendor';\nimport invariant from 'fbjs/lib/invariant';\n\nvar sparseFilterPredicate = function sparseFilterPredicate() {\n return true;\n};\n/**\n * @class EventEmitter\n * @description\n * An EventEmitter is responsible for managing a set of listeners and publishing\n * events to them when it is told that such events happened. In addition to the\n * data for the given event it also sends a event control object which allows\n * the listeners/handlers to prevent the default behavior of the given event.\n *\n * The emitter is designed to be generic enough to support all the different\n * contexts in which one might want to emit events. It is a simple multicast\n * mechanism on top of which extra functionality can be composed. For example, a\n * more advanced emitter may use an EventHolder and EventFactory.\n */\n\n\nvar EventEmitter =\n/*#__PURE__*/\nfunction () {\n /**\n * @constructor\n *\n * @param {EventSubscriptionVendor} subscriber - Optional subscriber instance\n * to use. If omitted, a new subscriber will be created for the emitter.\n */\n function EventEmitter(subscriber) {\n this._subscriber = subscriber || new EventSubscriptionVendor();\n }\n /**\n * Adds a listener to be invoked when events of the specified type are\n * emitted. An optional calling context may be provided. The data arguments\n * emitted will be passed to the listener function.\n *\n * TODO: Annotate the listener arg's type. This is tricky because listeners\n * can be invoked with varargs.\n *\n * @param {string} eventType - Name of the event to listen to\n * @param {function} listener - Function to invoke when the specified event is\n * emitted\n * @param {*} context - Optional context object to use when invoking the\n * listener\n */\n\n\n var _proto = EventEmitter.prototype;\n\n _proto.addListener = function addListener(eventType, listener, context) {\n return this._subscriber.addSubscription(eventType, new EmitterSubscription(this, this._subscriber, listener, context));\n }\n /**\n * Similar to addListener, except that the listener is removed after it is\n * invoked once.\n *\n * @param {string} eventType - Name of the event to listen to\n * @param {function} listener - Function to invoke only once when the\n * specified event is emitted\n * @param {*} context - Optional context object to use when invoking the\n * listener\n */\n ;\n\n _proto.once = function once(eventType, listener, context) {\n var _this = this;\n\n return this.addListener(eventType, function () {\n _this.removeCurrentListener();\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n listener.apply(context, args);\n });\n }\n /**\n * Removes all of the registered listeners, including those registered as\n * listener maps.\n *\n * @param {?string} eventType - Optional name of the event whose registered\n * listeners to remove\n */\n ;\n\n _proto.removeAllListeners = function removeAllListeners(eventType) {\n this._subscriber.removeAllSubscriptions(eventType);\n }\n /**\n * Provides an API that can be called during an eventing cycle to remove the\n * last listener that was invoked. This allows a developer to provide an event\n * object that can remove the listener (or listener map) during the\n * invocation.\n *\n * If it is called when not inside of an emitting cycle it will throw.\n *\n * @throws {Error} When called not during an eventing cycle\n *\n * @example\n * var subscription = emitter.addListenerMap({\n * someEvent: function(data, event) {\n * console.log(data);\n * emitter.removeCurrentListener();\n * }\n * });\n *\n * emitter.emit('someEvent', 'abc'); // logs 'abc'\n * emitter.emit('someEvent', 'def'); // does not log anything\n */\n ;\n\n _proto.removeCurrentListener = function removeCurrentListener() {\n invariant(!!this._currentSubscription, 'Not in an emitting cycle; there is no current subscription');\n this.removeSubscription(this._currentSubscription);\n }\n /**\n * Removes a specific subscription. Called by the `remove()` method of the\n * subscription itself to ensure any necessary cleanup is performed.\n */\n ;\n\n _proto.removeSubscription = function removeSubscription(subscription) {\n invariant(subscription.emitter === this, 'Subscription does not belong to this emitter.');\n\n this._subscriber.removeSubscription(subscription);\n }\n /**\n * Returns an array of listeners that are currently registered for the given\n * event.\n *\n * @param {string} eventType - Name of the event to query\n * @returns {array}\n */\n ;\n\n _proto.listeners = function listeners(eventType) {\n var subscriptions = this._subscriber.getSubscriptionsForType(eventType);\n\n return subscriptions ? subscriptions // We filter out missing entries because the array is sparse.\n // \"callbackfn is called only for elements of the array which actually\n // exist; it is not called for missing elements of the array.\"\n // https://www.ecma-international.org/ecma-262/9.0/index.html#sec-array.prototype.filter\n .filter(sparseFilterPredicate).map(function (subscription) {\n return subscription.listener;\n }) : [];\n }\n /**\n * Emits an event of the given type with the given data. All handlers of that\n * particular type will be notified.\n *\n * @param {string} eventType - Name of the event to emit\n * @param {...*} Arbitrary arguments to be passed to each registered listener\n *\n * @example\n * emitter.addListener('someEvent', function(message) {\n * console.log(message);\n * });\n *\n * emitter.emit('someEvent', 'abc'); // logs 'abc'\n */\n ;\n\n _proto.emit = function emit(eventType) {\n var subscriptions = this._subscriber.getSubscriptionsForType(eventType);\n\n if (subscriptions) {\n for (var i = 0, l = subscriptions.length; i < l; i++) {\n var subscription = subscriptions[i]; // The subscription may have been removed during this event loop.\n\n if (subscription && subscription.listener) {\n this._currentSubscription = subscription;\n subscription.listener.apply(subscription.context, Array.prototype.slice.call(arguments, 1));\n }\n }\n\n this._currentSubscription = null;\n }\n }\n /**\n * Removes the given listener for event of specific type.\n *\n * @param {string} eventType - Name of the event to emit\n * @param {function} listener - Function to invoke when the specified event is\n * emitted\n *\n * @example\n * emitter.removeListener('someEvent', function(message) {\n * console.log(message);\n * }); // removes the listener if already registered\n *\n */\n ;\n\n _proto.removeListener = function removeListener(eventType, listener) {\n var subscriptions = this._subscriber.getSubscriptionsForType(eventType);\n\n if (subscriptions) {\n for (var i = 0, l = subscriptions.length; i < l; i++) {\n var subscription = subscriptions[i]; // The subscription may have been removed during this event loop.\n // its listener matches the listener in method parameters\n\n if (subscription && subscription.listener === listener) {\n subscription.remove();\n }\n }\n }\n };\n\n return EventEmitter;\n}();\n\nexport default EventEmitter;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import { registerRootComponent } from 'expo';\nimport App from \"./src/App\";\nregisterRootComponent(App);","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/index.js"],"names":["registerRootComponent","App"],"mappings":"AAAA,SAASA,qBAAT,QAAsC,MAAtC;AAEA,OAAOC,GAAP;AAKAD,qBAAqB,CAACC,GAAD,CAArB","sourcesContent":["import { registerRootComponent } from 'expo';\n\nimport App from './src/App';\n\n// registerRootComponent calls AppRegistry.registerComponent('main', () => App);\n// It also ensures that whether you load the app in the Expo client or in a native build,\n// the environment is set up appropriately\nregisterRootComponent(App);\n"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"'use strict';\n\nfunction _inheritsLoose(subClass, superClass) {\n subClass.prototype = Object.create(superClass.prototype);\n subClass.prototype.constructor = subClass;\n subClass.__proto__ = superClass;\n}\n\nimport AnimatedValue from \"../nodes/AnimatedValue\";\nimport AnimatedValueXY from \"../nodes/AnimatedValueXY\";\nimport Animation from \"./Animation\";\nimport SpringConfig from \"../SpringConfig\";\nimport invariant from 'fbjs/lib/invariant';\nimport { shouldUseNativeDriver } from \"../NativeAnimatedHelper\";\n\nvar SpringAnimation = function (_Animation) {\n _inheritsLoose(SpringAnimation, _Animation);\n\n function SpringAnimation(config) {\n var _config$overshootClam, _config$restDisplacem, _config$restSpeedThre, _config$velocity, _config$velocity2, _config$delay, _config$isInteraction, _config$iterations;\n\n var _this;\n\n _this = _Animation.call(this) || this;\n _this._overshootClamping = (_config$overshootClam = config.overshootClamping) !== null && _config$overshootClam !== void 0 ? _config$overshootClam : false;\n _this._restDisplacementThreshold = (_config$restDisplacem = config.restDisplacementThreshold) !== null && _config$restDisplacem !== void 0 ? _config$restDisplacem : 0.001;\n _this._restSpeedThreshold = (_config$restSpeedThre = config.restSpeedThreshold) !== null && _config$restSpeedThre !== void 0 ? _config$restSpeedThre : 0.001;\n _this._initialVelocity = (_config$velocity = config.velocity) !== null && _config$velocity !== void 0 ? _config$velocity : 0;\n _this._lastVelocity = (_config$velocity2 = config.velocity) !== null && _config$velocity2 !== void 0 ? _config$velocity2 : 0;\n _this._toValue = config.toValue;\n _this._delay = (_config$delay = config.delay) !== null && _config$delay !== void 0 ? _config$delay : 0;\n _this._useNativeDriver = shouldUseNativeDriver(config);\n _this.__isInteraction = (_config$isInteraction = config.isInteraction) !== null && _config$isInteraction !== void 0 ? _config$isInteraction : !_this._useNativeDriver;\n _this.__iterations = (_config$iterations = config.iterations) !== null && _config$iterations !== void 0 ? _config$iterations : 1;\n\n if (config.stiffness !== undefined || config.damping !== undefined || config.mass !== undefined) {\n var _config$stiffness, _config$damping, _config$mass;\n\n invariant(config.bounciness === undefined && config.speed === undefined && config.tension === undefined && config.friction === undefined, 'You can define one of bounciness/speed, tension/friction, or stiffness/damping/mass, but not more than one');\n _this._stiffness = (_config$stiffness = config.stiffness) !== null && _config$stiffness !== void 0 ? _config$stiffness : 100;\n _this._damping = (_config$damping = config.damping) !== null && _config$damping !== void 0 ? _config$damping : 10;\n _this._mass = (_config$mass = config.mass) !== null && _config$mass !== void 0 ? _config$mass : 1;\n } else if (config.bounciness !== undefined || config.speed !== undefined) {\n var _config$bounciness, _config$speed;\n\n invariant(config.tension === undefined && config.friction === undefined && config.stiffness === undefined && config.damping === undefined && config.mass === undefined, 'You can define one of bounciness/speed, tension/friction, or stiffness/damping/mass, but not more than one');\n var springConfig = SpringConfig.fromBouncinessAndSpeed((_config$bounciness = config.bounciness) !== null && _config$bounciness !== void 0 ? _config$bounciness : 8, (_config$speed = config.speed) !== null && _config$speed !== void 0 ? _config$speed : 12);\n _this._stiffness = springConfig.stiffness;\n _this._damping = springConfig.damping;\n _this._mass = 1;\n } else {\n var _config$tension, _config$friction;\n\n var _springConfig = SpringConfig.fromOrigamiTensionAndFriction((_config$tension = config.tension) !== null && _config$tension !== void 0 ? _config$tension : 40, (_config$friction = config.friction) !== null && _config$friction !== void 0 ? _config$friction : 7);\n\n _this._stiffness = _springConfig.stiffness;\n _this._damping = _springConfig.damping;\n _this._mass = 1;\n }\n\n invariant(_this._stiffness > 0, 'Stiffness value must be greater than 0');\n invariant(_this._damping > 0, 'Damping value must be greater than 0');\n invariant(_this._mass > 0, 'Mass value must be greater than 0');\n return _this;\n }\n\n var _proto = SpringAnimation.prototype;\n\n _proto.__getNativeAnimationConfig = function __getNativeAnimationConfig() {\n var _this$_initialVelocit;\n\n return {\n type: 'spring',\n overshootClamping: this._overshootClamping,\n restDisplacementThreshold: this._restDisplacementThreshold,\n restSpeedThreshold: this._restSpeedThreshold,\n stiffness: this._stiffness,\n damping: this._damping,\n mass: this._mass,\n initialVelocity: (_this$_initialVelocit = this._initialVelocity) !== null && _this$_initialVelocit !== void 0 ? _this$_initialVelocit : this._lastVelocity,\n toValue: this._toValue,\n iterations: this.__iterations\n };\n };\n\n _proto.start = function start(fromValue, onUpdate, onEnd, previousAnimation, animatedValue) {\n var _this2 = this;\n\n this.__active = true;\n this._startPosition = fromValue;\n this._lastPosition = this._startPosition;\n this._onUpdate = onUpdate;\n this.__onEnd = onEnd;\n this._lastTime = Date.now();\n this._frameTime = 0.0;\n\n if (previousAnimation instanceof SpringAnimation) {\n var internalState = previousAnimation.getInternalState();\n this._lastPosition = internalState.lastPosition;\n this._lastVelocity = internalState.lastVelocity;\n this._initialVelocity = this._lastVelocity;\n this._lastTime = internalState.lastTime;\n }\n\n var start = function start() {\n if (_this2._useNativeDriver) {\n _this2.__startNativeAnimation(animatedValue);\n } else {\n _this2.onUpdate();\n }\n };\n\n if (this._delay) {\n this._timeout = setTimeout(start, this._delay);\n } else {\n start();\n }\n };\n\n _proto.getInternalState = function getInternalState() {\n return {\n lastPosition: this._lastPosition,\n lastVelocity: this._lastVelocity,\n lastTime: this._lastTime\n };\n };\n\n _proto.onUpdate = function onUpdate() {\n var MAX_STEPS = 64;\n var now = Date.now();\n\n if (now > this._lastTime + MAX_STEPS) {\n now = this._lastTime + MAX_STEPS;\n }\n\n var deltaTime = (now - this._lastTime) / 1000;\n this._frameTime += deltaTime;\n var c = this._damping;\n var m = this._mass;\n var k = this._stiffness;\n var v0 = -this._initialVelocity;\n var zeta = c / (2 * Math.sqrt(k * m));\n var omega0 = Math.sqrt(k / m);\n var omega1 = omega0 * Math.sqrt(1.0 - zeta * zeta);\n var x0 = this._toValue - this._startPosition;\n var position = 0.0;\n var velocity = 0.0;\n var t = this._frameTime;\n\n if (zeta < 1) {\n var envelope = Math.exp(-zeta * omega0 * t);\n position = this._toValue - envelope * ((v0 + zeta * omega0 * x0) / omega1 * Math.sin(omega1 * t) + x0 * Math.cos(omega1 * t));\n velocity = zeta * omega0 * envelope * (Math.sin(omega1 * t) * (v0 + zeta * omega0 * x0) / omega1 + x0 * Math.cos(omega1 * t)) - envelope * (Math.cos(omega1 * t) * (v0 + zeta * omega0 * x0) - omega1 * x0 * Math.sin(omega1 * t));\n } else {\n var _envelope = Math.exp(-omega0 * t);\n\n position = this._toValue - _envelope * (x0 + (v0 + omega0 * x0) * t);\n velocity = _envelope * (v0 * (t * omega0 - 1) + t * x0 * (omega0 * omega0));\n }\n\n this._lastTime = now;\n this._lastPosition = position;\n this._lastVelocity = velocity;\n\n this._onUpdate(position);\n\n if (!this.__active) {\n return;\n }\n\n var isOvershooting = false;\n\n if (this._overshootClamping && this._stiffness !== 0) {\n if (this._startPosition < this._toValue) {\n isOvershooting = position > this._toValue;\n } else {\n isOvershooting = position < this._toValue;\n }\n }\n\n var isVelocity = Math.abs(velocity) <= this._restSpeedThreshold;\n\n var isDisplacement = true;\n\n if (this._stiffness !== 0) {\n isDisplacement = Math.abs(this._toValue - position) <= this._restDisplacementThreshold;\n }\n\n if (isOvershooting || isVelocity && isDisplacement) {\n if (this._stiffness !== 0) {\n this._lastPosition = this._toValue;\n this._lastVelocity = 0;\n\n this._onUpdate(this._toValue);\n }\n\n this.__debouncedOnEnd({\n finished: true\n });\n\n return;\n }\n\n this._animationFrame = requestAnimationFrame(this.onUpdate.bind(this));\n };\n\n _proto.stop = function stop() {\n _Animation.prototype.stop.call(this);\n\n this.__active = false;\n clearTimeout(this._timeout);\n global.cancelAnimationFrame(this._animationFrame);\n\n this.__debouncedOnEnd({\n finished: false\n });\n };\n\n return SpringAnimation;\n}(Animation);\n\nexport default SpringAnimation;","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/vendor/react-native/Animated/animations/SpringAnimation.js"],"names":["_inheritsLoose","subClass","superClass","prototype","Object","create","constructor","__proto__","AnimatedValue","AnimatedValueXY","Animation","SpringConfig","invariant","shouldUseNativeDriver","SpringAnimation","_Animation","config","_config$overshootClam","_config$restDisplacem","_config$restSpeedThre","_config$velocity","_config$velocity2","_config$delay","_config$isInteraction","_config$iterations","_this","call","_overshootClamping","overshootClamping","_restDisplacementThreshold","restDisplacementThreshold","_restSpeedThreshold","restSpeedThreshold","_initialVelocity","velocity","_lastVelocity","_toValue","toValue","_delay","delay","_useNativeDriver","__isInteraction","isInteraction","__iterations","iterations","stiffness","undefined","damping","mass","_config$stiffness","_config$damping","_config$mass","bounciness","speed","tension","friction","_stiffness","_damping","_mass","_config$bounciness","_config$speed","springConfig","fromBouncinessAndSpeed","_config$tension","_config$friction","_springConfig","fromOrigamiTensionAndFriction","_proto","__getNativeAnimationConfig","_this$_initialVelocit","type","initialVelocity","start","fromValue","onUpdate","onEnd","previousAnimation","animatedValue","_this2","__active","_startPosition","_lastPosition","_onUpdate","__onEnd","_lastTime","Date","now","_frameTime","internalState","getInternalState","lastPosition","lastVelocity","lastTime","__startNativeAnimation","_timeout","setTimeout","MAX_STEPS","deltaTime","c","m","k","v0","zeta","Math","sqrt","omega0","omega1","x0","position","t","envelope","exp","sin","cos","_envelope","isOvershooting","isVelocity","abs","isDisplacement","__debouncedOnEnd","finished","_animationFrame","requestAnimationFrame","bind","stop","clearTimeout","global","cancelAnimationFrame"],"mappings":"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","sourcesContent":["/**\n * Copyright (c) 2015-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n * @format\n */\n'use strict';\n\nfunction _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }\n\nimport AnimatedValue from '../nodes/AnimatedValue';\nimport AnimatedValueXY from '../nodes/AnimatedValueXY';\nimport Animation from './Animation';\nimport SpringConfig from '../SpringConfig';\nimport invariant from 'fbjs/lib/invariant';\nimport { shouldUseNativeDriver } from '../NativeAnimatedHelper';\n\nvar SpringAnimation =\n/*#__PURE__*/\nfunction (_Animation) {\n _inheritsLoose(SpringAnimation, _Animation);\n\n function SpringAnimation(config) {\n var _config$overshootClam, _config$restDisplacem, _config$restSpeedThre, _config$velocity, _config$velocity2, _config$delay, _config$isInteraction, _config$iterations;\n\n var _this;\n\n _this = _Animation.call(this) || this;\n _this._overshootClamping = (_config$overshootClam = config.overshootClamping) !== null && _config$overshootClam !== void 0 ? _config$overshootClam : false;\n _this._restDisplacementThreshold = (_config$restDisplacem = config.restDisplacementThreshold) !== null && _config$restDisplacem !== void 0 ? _config$restDisplacem : 0.001;\n _this._restSpeedThreshold = (_config$restSpeedThre = config.restSpeedThreshold) !== null && _config$restSpeedThre !== void 0 ? _config$restSpeedThre : 0.001;\n _this._initialVelocity = (_config$velocity = config.velocity) !== null && _config$velocity !== void 0 ? _config$velocity : 0;\n _this._lastVelocity = (_config$velocity2 = config.velocity) !== null && _config$velocity2 !== void 0 ? _config$velocity2 : 0;\n _this._toValue = config.toValue;\n _this._delay = (_config$delay = config.delay) !== null && _config$delay !== void 0 ? _config$delay : 0;\n _this._useNativeDriver = shouldUseNativeDriver(config);\n _this.__isInteraction = (_config$isInteraction = config.isInteraction) !== null && _config$isInteraction !== void 0 ? _config$isInteraction : !_this._useNativeDriver;\n _this.__iterations = (_config$iterations = config.iterations) !== null && _config$iterations !== void 0 ? _config$iterations : 1;\n\n if (config.stiffness !== undefined || config.damping !== undefined || config.mass !== undefined) {\n var _config$stiffness, _config$damping, _config$mass;\n\n invariant(config.bounciness === undefined && config.speed === undefined && config.tension === undefined && config.friction === undefined, 'You can define one of bounciness/speed, tension/friction, or stiffness/damping/mass, but not more than one');\n _this._stiffness = (_config$stiffness = config.stiffness) !== null && _config$stiffness !== void 0 ? _config$stiffness : 100;\n _this._damping = (_config$damping = config.damping) !== null && _config$damping !== void 0 ? _config$damping : 10;\n _this._mass = (_config$mass = config.mass) !== null && _config$mass !== void 0 ? _config$mass : 1;\n } else if (config.bounciness !== undefined || config.speed !== undefined) {\n var _config$bounciness, _config$speed;\n\n // Convert the origami bounciness/speed values to stiffness/damping\n // We assume mass is 1.\n invariant(config.tension === undefined && config.friction === undefined && config.stiffness === undefined && config.damping === undefined && config.mass === undefined, 'You can define one of bounciness/speed, tension/friction, or stiffness/damping/mass, but not more than one');\n var springConfig = SpringConfig.fromBouncinessAndSpeed((_config$bounciness = config.bounciness) !== null && _config$bounciness !== void 0 ? _config$bounciness : 8, (_config$speed = config.speed) !== null && _config$speed !== void 0 ? _config$speed : 12);\n _this._stiffness = springConfig.stiffness;\n _this._damping = springConfig.damping;\n _this._mass = 1;\n } else {\n var _config$tension, _config$friction;\n\n // Convert the origami tension/friction values to stiffness/damping\n // We assume mass is 1.\n var _springConfig = SpringConfig.fromOrigamiTensionAndFriction((_config$tension = config.tension) !== null && _config$tension !== void 0 ? _config$tension : 40, (_config$friction = config.friction) !== null && _config$friction !== void 0 ? _config$friction : 7);\n\n _this._stiffness = _springConfig.stiffness;\n _this._damping = _springConfig.damping;\n _this._mass = 1;\n }\n\n invariant(_this._stiffness > 0, 'Stiffness value must be greater than 0');\n invariant(_this._damping > 0, 'Damping value must be greater than 0');\n invariant(_this._mass > 0, 'Mass value must be greater than 0');\n return _this;\n }\n\n var _proto = SpringAnimation.prototype;\n\n _proto.__getNativeAnimationConfig = function __getNativeAnimationConfig() {\n var _this$_initialVelocit;\n\n return {\n type: 'spring',\n overshootClamping: this._overshootClamping,\n restDisplacementThreshold: this._restDisplacementThreshold,\n restSpeedThreshold: this._restSpeedThreshold,\n stiffness: this._stiffness,\n damping: this._damping,\n mass: this._mass,\n initialVelocity: (_this$_initialVelocit = this._initialVelocity) !== null && _this$_initialVelocit !== void 0 ? _this$_initialVelocit : this._lastVelocity,\n toValue: this._toValue,\n iterations: this.__iterations\n };\n };\n\n _proto.start = function start(fromValue, onUpdate, onEnd, previousAnimation, animatedValue) {\n var _this2 = this;\n\n this.__active = true;\n this._startPosition = fromValue;\n this._lastPosition = this._startPosition;\n this._onUpdate = onUpdate;\n this.__onEnd = onEnd;\n this._lastTime = Date.now();\n this._frameTime = 0.0;\n\n if (previousAnimation instanceof SpringAnimation) {\n var internalState = previousAnimation.getInternalState();\n this._lastPosition = internalState.lastPosition;\n this._lastVelocity = internalState.lastVelocity; // Set the initial velocity to the last velocity\n\n this._initialVelocity = this._lastVelocity;\n this._lastTime = internalState.lastTime;\n }\n\n var start = function start() {\n if (_this2._useNativeDriver) {\n _this2.__startNativeAnimation(animatedValue);\n } else {\n _this2.onUpdate();\n }\n }; // If this._delay is more than 0, we start after the timeout.\n\n\n if (this._delay) {\n this._timeout = setTimeout(start, this._delay);\n } else {\n start();\n }\n };\n\n _proto.getInternalState = function getInternalState() {\n return {\n lastPosition: this._lastPosition,\n lastVelocity: this._lastVelocity,\n lastTime: this._lastTime\n };\n }\n /**\n * This spring model is based off of a damped harmonic oscillator\n * (https://en.wikipedia.org/wiki/Harmonic_oscillator#Damped_harmonic_oscillator).\n *\n * We use the closed form of the second order differential equation:\n *\n * x'' + (2ζ⍵_0)x' + ⍵^2x = 0\n *\n * where\n * ⍵_0 = √(k / m) (undamped angular frequency of the oscillator),\n * ζ = c / 2√mk (damping ratio),\n * c = damping constant\n * k = stiffness\n * m = mass\n *\n * The derivation of the closed form is described in detail here:\n * http://planetmath.org/sites/default/files/texpdf/39745.pdf\n *\n * This algorithm happens to match the algorithm used by CASpringAnimation,\n * a QuartzCore (iOS) API that creates spring animations.\n */\n ;\n\n _proto.onUpdate = function onUpdate() {\n // If for some reason we lost a lot of frames (e.g. process large payload or\n // stopped in the debugger), we only advance by 4 frames worth of\n // computation and will continue on the next frame. It's better to have it\n // running at faster speed than jumping to the end.\n var MAX_STEPS = 64;\n var now = Date.now();\n\n if (now > this._lastTime + MAX_STEPS) {\n now = this._lastTime + MAX_STEPS;\n }\n\n var deltaTime = (now - this._lastTime) / 1000;\n this._frameTime += deltaTime;\n var c = this._damping;\n var m = this._mass;\n var k = this._stiffness;\n var v0 = -this._initialVelocity;\n var zeta = c / (2 * Math.sqrt(k * m)); // damping ratio\n\n var omega0 = Math.sqrt(k / m); // undamped angular frequency of the oscillator (rad/ms)\n\n var omega1 = omega0 * Math.sqrt(1.0 - zeta * zeta); // exponential decay\n\n var x0 = this._toValue - this._startPosition; // calculate the oscillation from x0 = 1 to x = 0\n\n var position = 0.0;\n var velocity = 0.0;\n var t = this._frameTime;\n\n if (zeta < 1) {\n // Under damped\n var envelope = Math.exp(-zeta * omega0 * t);\n position = this._toValue - envelope * ((v0 + zeta * omega0 * x0) / omega1 * Math.sin(omega1 * t) + x0 * Math.cos(omega1 * t)); // This looks crazy -- it's actually just the derivative of the\n // oscillation function\n\n velocity = zeta * omega0 * envelope * (Math.sin(omega1 * t) * (v0 + zeta * omega0 * x0) / omega1 + x0 * Math.cos(omega1 * t)) - envelope * (Math.cos(omega1 * t) * (v0 + zeta * omega0 * x0) - omega1 * x0 * Math.sin(omega1 * t));\n } else {\n // Critically damped\n var _envelope = Math.exp(-omega0 * t);\n\n position = this._toValue - _envelope * (x0 + (v0 + omega0 * x0) * t);\n velocity = _envelope * (v0 * (t * omega0 - 1) + t * x0 * (omega0 * omega0));\n }\n\n this._lastTime = now;\n this._lastPosition = position;\n this._lastVelocity = velocity;\n\n this._onUpdate(position);\n\n if (!this.__active) {\n // a listener might have stopped us in _onUpdate\n return;\n } // Conditions for stopping the spring animation\n\n\n var isOvershooting = false;\n\n if (this._overshootClamping && this._stiffness !== 0) {\n if (this._startPosition < this._toValue) {\n isOvershooting = position > this._toValue;\n } else {\n isOvershooting = position < this._toValue;\n }\n }\n\n var isVelocity = Math.abs(velocity) <= this._restSpeedThreshold;\n\n var isDisplacement = true;\n\n if (this._stiffness !== 0) {\n isDisplacement = Math.abs(this._toValue - position) <= this._restDisplacementThreshold;\n }\n\n if (isOvershooting || isVelocity && isDisplacement) {\n if (this._stiffness !== 0) {\n // Ensure that we end up with a round value\n this._lastPosition = this._toValue;\n this._lastVelocity = 0;\n\n this._onUpdate(this._toValue);\n }\n\n this.__debouncedOnEnd({\n finished: true\n });\n\n return;\n }\n\n this._animationFrame = requestAnimationFrame(this.onUpdate.bind(this));\n };\n\n _proto.stop = function stop() {\n _Animation.prototype.stop.call(this);\n\n this.__active = false;\n clearTimeout(this._timeout);\n global.cancelAnimationFrame(this._animationFrame);\n\n this.__debouncedOnEnd({\n finished: false\n });\n };\n\n return SpringAnimation;\n}(Animation);\n\nexport default SpringAnimation;"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"export { default as Hoverable } from \"./Hoverable\";\nexport { default as Resizable } from \"./Resizable\";\nexport { default as getNode } from \"./getNode\";\nexport * from \"./hooks\";","map":{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"AAAA,SAAS,OAAO,IAAI,SAApB;AACA,SAAS,OAAO,IAAI,SAApB;AAEA,SAAS,OAAO,IAAI,OAApB;AAEA","sourcesContent":["export { default as Hoverable } from './Hoverable';\nexport { default as Resizable } from './Resizable';\n\nexport { default as getNode } from './getNode';\n\nexport * from './hooks';\n"],"sourceRoot":""},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import _defineProperty from \"@babel/runtime/helpers/defineProperty\";\nimport _slicedToArray from \"@babel/runtime/helpers/slicedToArray\";\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nimport { useState, useCallback } from 'react';\nexport default function useLayout() {\n var _useState = useState({\n x: 0,\n y: 0,\n width: 0,\n height: 0\n }),\n _useState2 = _slicedToArray(_useState, 2),\n layout = _useState2[0],\n setLayout = _useState2[1];\n\n var onLayout = useCallback(function (e) {\n return setLayout(e.nativeEvent.layout);\n }, []);\n return _objectSpread({\n onLayout: onLayout\n }, layout);\n}","map":{"version":3,"sources":["../../src/hooks/useLayout.ts"],"names":[],"mappings":";;;;;;;AAAA,SAAS,QAAT,EAAmB,WAAnB,QAAsC,OAAtC;AAIA,eAAc,SAAU,SAAV,GAAmB;AAC/B,kBAA4B,QAAQ,CAAS;AAC3C,IAAA,CAAC,EAAE,CADwC;AAE3C,IAAA,CAAC,EAAE,CAFwC;AAG3C,IAAA,KAAK,EAAE,CAHoC;AAI3C,IAAA,MAAM,EAAE;AAJmC,GAAT,CAApC;AAAA;AAAA,MAAO,MAAP;AAAA,MAAe,SAAf;;AAOA,MAAM,QAAQ,GAAG,WAAW,CAAC,UAAA,CAAC;AAAA,WAAI,SAAS,CAAC,CAAC,CAAC,WAAF,CAAc,MAAf,CAAb;AAAA,GAAF,EAAuC,EAAvC,CAA5B;AAEA;AACE,IAAA,QAAQ,EAAR;AADF,KAEK,MAFL;AAID","sourcesContent":["import { useState, useCallback } from 'react';\n\ntype Layout = { width: number; height: number; x: number; y: number };\n\nexport default function useLayout(): Layout & { onLayout: Function } {\n const [layout, setLayout] = useState<Layout>({\n x: 0,\n y: 0,\n width: 0,\n height: 0,\n });\n\n const onLayout = useCallback(e => setLayout(e.nativeEvent.layout), []);\n\n return {\n onLayout,\n ...layout,\n };\n}\n"],"sourceRoot":""},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import Platform from \"react-native-web/dist/exports/Platform\";\nimport { makeRemote, makeShareable, isConfigured } from \"./core\";\nimport { interpolate } from \"./interpolation\";\nimport { Extrapolate } from \"../reanimated1/derived\";\nvar NUMBER = '[-+]?\\\\d*\\\\.?\\\\d+';\nvar PERCENTAGE = NUMBER + '%';\n\nvar call = function () {\n var _f = function _f() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n return '\\\\(\\\\s*(' + args.join(')\\\\s*,\\\\s*(') + ')\\\\s*\\\\)';\n };\n\n _f._closure = {};\n _f.asString = \"function call(){for(var _len=arguments.length,args=new Array(_len),_key=0;_key<_len;_key++){args[_key]=arguments[_key];}return'\\\\\\\\(\\\\\\\\s*('+args.join(')\\\\\\\\s*,\\\\\\\\s*(')+')\\\\\\\\s*\\\\\\\\)';}\";\n _f.__workletHash = 15828801940126;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (17:0)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nvar jsCachedMatchers = {};\nvar uiCachedMatchers = !isConfigured() ? null : makeRemote({});\n\nvar getMatchers = function () {\n var _f = function _f() {\n var cachedMatchers = _WORKLET ? uiCachedMatchers : jsCachedMatchers;\n\n if (cachedMatchers.rgb === undefined) {\n cachedMatchers.rgb = new RegExp('rgb' + call(NUMBER, NUMBER, NUMBER));\n cachedMatchers.rgba = new RegExp('rgba' + call(NUMBER, NUMBER, NUMBER, NUMBER));\n cachedMatchers.hsl = new RegExp('hsl' + call(NUMBER, PERCENTAGE, PERCENTAGE));\n cachedMatchers.hsla = new RegExp('hsla' + call(NUMBER, PERCENTAGE, PERCENTAGE, NUMBER));\n cachedMatchers.hex3 = /^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/;\n cachedMatchers.hex4 = /^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/;\n cachedMatchers.hex6 = /^#([0-9a-fA-F]{6})$/;\n cachedMatchers.hex8 = /^#([0-9a-fA-F]{8})$/;\n }\n\n return cachedMatchers;\n };\n\n _f._closure = {\n uiCachedMatchers: uiCachedMatchers,\n jsCachedMatchers: jsCachedMatchers,\n call: call,\n NUMBER: NUMBER,\n PERCENTAGE: PERCENTAGE\n };\n _f.asString = \"function getMatchers(){const{uiCachedMatchers,jsCachedMatchers,call,NUMBER,PERCENTAGE}=jsThis._closure;{var cachedMatchers=_WORKLET?uiCachedMatchers:jsCachedMatchers;if(cachedMatchers.rgb===undefined){cachedMatchers.rgb=new RegExp('rgb'+call(NUMBER,NUMBER,NUMBER));cachedMatchers.rgba=new RegExp('rgba'+call(NUMBER,NUMBER,NUMBER,NUMBER));cachedMatchers.hsl=new RegExp('hsl'+call(NUMBER,PERCENTAGE,PERCENTAGE));cachedMatchers.hsla=new RegExp('hsla'+call(NUMBER,PERCENTAGE,PERCENTAGE,NUMBER));cachedMatchers.hex3=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/;cachedMatchers.hex4=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/;cachedMatchers.hex6=/^#([0-9a-fA-F]{6})$/;cachedMatchers.hex8=/^#([0-9a-fA-F]{8})$/;}return cachedMatchers;}}\";\n _f.__workletHash = 7716380072712;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (26:0)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\ngetMatchers();\n\nvar hue2rgb = function () {\n var _f = function _f(p, q, t) {\n if (t < 0) {\n t += 1;\n }\n\n if (t > 1) {\n t -= 1;\n }\n\n if (t < 1 / 6) {\n return p + (q - p) * 6 * t;\n }\n\n if (t < 1 / 2) {\n return q;\n }\n\n if (t < 2 / 3) {\n return p + (q - p) * (2 / 3 - t) * 6;\n }\n\n return p;\n };\n\n _f._closure = {};\n _f.asString = \"function hue2rgb(p,q,t){if(t<0){t+=1;}if(t>1){t-=1;}if(t<1/6){return p+(q-p)*6*t;}if(t<1/2){return q;}if(t<2/3){return p+(q-p)*(2/3-t)*6;}return p;}\";\n _f.__workletHash = 3618366985414;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (47:0)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nvar hslToRgb = function () {\n var _f = function _f(h, s, l) {\n var q = l < 0.5 ? l * (1 + s) : l + s - l * s;\n var p = 2 * l - q;\n var r = hue2rgb(p, q, h + 1 / 3);\n var g = hue2rgb(p, q, h);\n var b = hue2rgb(p, q, h - 1 / 3);\n return Math.round(r * 255) << 24 | Math.round(g * 255) << 16 | Math.round(b * 255) << 8;\n };\n\n _f._closure = {\n hue2rgb: hue2rgb\n };\n _f.asString = \"function hslToRgb(h,s,l){const{hue2rgb}=jsThis._closure;{var q=l<0.5?l*(1+s):l+s-l*s;var p=2*l-q;var r=hue2rgb(p,q,h+1/3);var g=hue2rgb(p,q,h);var b=hue2rgb(p,q,h-1/3);return Math.round(r*255)<<24|Math.round(g*255)<<16|Math.round(b*255)<<8;}}\";\n _f.__workletHash = 2134669154055;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (66:0)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nvar parse255 = function () {\n var _f = function _f(str) {\n var int = Number.parseInt(str, 10);\n\n if (int < 0) {\n return 0;\n }\n\n if (int > 255) {\n return 255;\n }\n\n return int;\n };\n\n _f._closure = {};\n _f.asString = \"function parse255(str){var int=Number.parseInt(str,10);if(int<0){return 0;}if(int>255){return 255;}return int;}\";\n _f.__workletHash = 11793634778162;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (77:0)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nvar parse360 = function () {\n var _f = function _f(str) {\n var int = Number.parseFloat(str);\n return (int % 360 + 360) % 360 / 360;\n };\n\n _f._closure = {};\n _f.asString = \"function parse360(str){var int=Number.parseFloat(str);return(int%360+360)%360/360;}\";\n _f.__workletHash = 16816192231836;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (88:0)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nvar parse1 = function () {\n var _f = function _f(str) {\n var num = Number.parseFloat(str);\n\n if (num < 0) {\n return 0;\n }\n\n if (num > 1) {\n return 255;\n }\n\n return Math.round(num * 255);\n };\n\n _f._closure = {};\n _f.asString = \"function parse1(str){var num=Number.parseFloat(str);if(num<0){return 0;}if(num>1){return 255;}return Math.round(num*255);}\";\n _f.__workletHash = 12235184089721;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (93:0)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nvar parsePercentage = function () {\n var _f = function _f(str) {\n var int = Number.parseFloat(str);\n\n if (int < 0) {\n return 0;\n }\n\n if (int > 100) {\n return 1;\n }\n\n return int / 100;\n };\n\n _f._closure = {};\n _f.asString = \"function parsePercentage(str){var int=Number.parseFloat(str);if(int<0){return 0;}if(int>100){return 1;}return int/100;}\";\n _f.__workletHash = 11936566645320;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (104:0)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nvar names = !isConfigured() ? null : makeShareable({\n transparent: 0x00000000,\n aliceblue: 0xf0f8ffff,\n antiquewhite: 0xfaebd7ff,\n aqua: 0x00ffffff,\n aquamarine: 0x7fffd4ff,\n azure: 0xf0ffffff,\n beige: 0xf5f5dcff,\n bisque: 0xffe4c4ff,\n black: 0x000000ff,\n blanchedalmond: 0xffebcdff,\n blue: 0x0000ffff,\n blueviolet: 0x8a2be2ff,\n brown: 0xa52a2aff,\n burlywood: 0xdeb887ff,\n burntsienna: 0xea7e5dff,\n cadetblue: 0x5f9ea0ff,\n chartreuse: 0x7fff00ff,\n chocolate: 0xd2691eff,\n coral: 0xff7f50ff,\n cornflowerblue: 0x6495edff,\n cornsilk: 0xfff8dcff,\n crimson: 0xdc143cff,\n cyan: 0x00ffffff,\n darkblue: 0x00008bff,\n darkcyan: 0x008b8bff,\n darkgoldenrod: 0xb8860bff,\n darkgray: 0xa9a9a9ff,\n darkgreen: 0x006400ff,\n darkgrey: 0xa9a9a9ff,\n darkkhaki: 0xbdb76bff,\n darkmagenta: 0x8b008bff,\n darkolivegreen: 0x556b2fff,\n darkorange: 0xff8c00ff,\n darkorchid: 0x9932ccff,\n darkred: 0x8b0000ff,\n darksalmon: 0xe9967aff,\n darkseagreen: 0x8fbc8fff,\n darkslateblue: 0x483d8bff,\n darkslategray: 0x2f4f4fff,\n darkslategrey: 0x2f4f4fff,\n darkturquoise: 0x00ced1ff,\n darkviolet: 0x9400d3ff,\n deeppink: 0xff1493ff,\n deepskyblue: 0x00bfffff,\n dimgray: 0x696969ff,\n dimgrey: 0x696969ff,\n dodgerblue: 0x1e90ffff,\n firebrick: 0xb22222ff,\n floralwhite: 0xfffaf0ff,\n forestgreen: 0x228b22ff,\n fuchsia: 0xff00ffff,\n gainsboro: 0xdcdcdcff,\n ghostwhite: 0xf8f8ffff,\n gold: 0xffd700ff,\n goldenrod: 0xdaa520ff,\n gray: 0x808080ff,\n green: 0x008000ff,\n greenyellow: 0xadff2fff,\n grey: 0x808080ff,\n honeydew: 0xf0fff0ff,\n hotpink: 0xff69b4ff,\n indianred: 0xcd5c5cff,\n indigo: 0x4b0082ff,\n ivory: 0xfffff0ff,\n khaki: 0xf0e68cff,\n lavender: 0xe6e6faff,\n lavenderblush: 0xfff0f5ff,\n lawngreen: 0x7cfc00ff,\n lemonchiffon: 0xfffacdff,\n lightblue: 0xadd8e6ff,\n lightcoral: 0xf08080ff,\n lightcyan: 0xe0ffffff,\n lightgoldenrodyellow: 0xfafad2ff,\n lightgray: 0xd3d3d3ff,\n lightgreen: 0x90ee90ff,\n lightgrey: 0xd3d3d3ff,\n lightpink: 0xffb6c1ff,\n lightsalmon: 0xffa07aff,\n lightseagreen: 0x20b2aaff,\n lightskyblue: 0x87cefaff,\n lightslategray: 0x778899ff,\n lightslategrey: 0x778899ff,\n lightsteelblue: 0xb0c4deff,\n lightyellow: 0xffffe0ff,\n lime: 0x00ff00ff,\n limegreen: 0x32cd32ff,\n linen: 0xfaf0e6ff,\n magenta: 0xff00ffff,\n maroon: 0x800000ff,\n mediumaquamarine: 0x66cdaaff,\n mediumblue: 0x0000cdff,\n mediumorchid: 0xba55d3ff,\n mediumpurple: 0x9370dbff,\n mediumseagreen: 0x3cb371ff,\n mediumslateblue: 0x7b68eeff,\n mediumspringgreen: 0x00fa9aff,\n mediumturquoise: 0x48d1ccff,\n mediumvioletred: 0xc71585ff,\n midnightblue: 0x191970ff,\n mintcream: 0xf5fffaff,\n mistyrose: 0xffe4e1ff,\n moccasin: 0xffe4b5ff,\n navajowhite: 0xffdeadff,\n navy: 0x000080ff,\n oldlace: 0xfdf5e6ff,\n olive: 0x808000ff,\n olivedrab: 0x6b8e23ff,\n orange: 0xffa500ff,\n orangered: 0xff4500ff,\n orchid: 0xda70d6ff,\n palegoldenrod: 0xeee8aaff,\n palegreen: 0x98fb98ff,\n paleturquoise: 0xafeeeeff,\n palevioletred: 0xdb7093ff,\n papayawhip: 0xffefd5ff,\n peachpuff: 0xffdab9ff,\n peru: 0xcd853fff,\n pink: 0xffc0cbff,\n plum: 0xdda0ddff,\n powderblue: 0xb0e0e6ff,\n purple: 0x800080ff,\n rebeccapurple: 0x663399ff,\n red: 0xff0000ff,\n rosybrown: 0xbc8f8fff,\n royalblue: 0x4169e1ff,\n saddlebrown: 0x8b4513ff,\n salmon: 0xfa8072ff,\n sandybrown: 0xf4a460ff,\n seagreen: 0x2e8b57ff,\n seashell: 0xfff5eeff,\n sienna: 0xa0522dff,\n silver: 0xc0c0c0ff,\n skyblue: 0x87ceebff,\n slateblue: 0x6a5acdff,\n slategray: 0x708090ff,\n slategrey: 0x708090ff,\n snow: 0xfffafaff,\n springgreen: 0x00ff7fff,\n steelblue: 0x4682b4ff,\n tan: 0xd2b48cff,\n teal: 0x008080ff,\n thistle: 0xd8bfd8ff,\n tomato: 0xff6347ff,\n turquoise: 0x40e0d0ff,\n violet: 0xee82eeff,\n wheat: 0xf5deb3ff,\n white: 0xffffffff,\n whitesmoke: 0xf5f5f5ff,\n yellow: 0xffff00ff,\n yellowgreen: 0x9acd32ff\n});\n\nvar normalizeColor = function () {\n var _f = function _f(color) {\n if (typeof color === 'number') {\n if (color >>> 0 === color && color >= 0 && color <= 0xffffffff) {\n return color;\n }\n\n return null;\n }\n\n if (typeof color !== 'string') {\n return null;\n }\n\n var matchers = getMatchers();\n var match;\n\n if (match = matchers.hex6.exec(color)) {\n return Number.parseInt(match[1] + 'ff', 16) >>> 0;\n }\n\n if (names[color] !== undefined) {\n return names[color];\n }\n\n if (match = matchers.rgb.exec(color)) {\n return (parse255(match[1]) << 24 | parse255(match[2]) << 16 | parse255(match[3]) << 8 | 0x000000ff) >>> 0;\n }\n\n if (match = matchers.rgba.exec(color)) {\n return (parse255(match[1]) << 24 | parse255(match[2]) << 16 | parse255(match[3]) << 8 | parse1(match[4])) >>> 0;\n }\n\n if (match = matchers.hex3.exec(color)) {\n return Number.parseInt(match[1] + match[1] + match[2] + match[2] + match[3] + match[3] + 'ff', 16) >>> 0;\n }\n\n if (match = matchers.hex8.exec(color)) {\n return Number.parseInt(match[1], 16) >>> 0;\n }\n\n if (match = matchers.hex4.exec(color)) {\n return Number.parseInt(match[1] + match[1] + match[2] + match[2] + match[3] + match[3] + match[4] + match[4], 16) >>> 0;\n }\n\n if (match = matchers.hsl.exec(color)) {\n return (hslToRgb(parse360(match[1]), parsePercentage(match[2]), parsePercentage(match[3])) | 0x000000ff) >>> 0;\n }\n\n if (match = matchers.hsla.exec(color)) {\n return (hslToRgb(parse360(match[1]), parsePercentage(match[2]), parsePercentage(match[3])) | parse1(match[4])) >>> 0;\n }\n\n return null;\n };\n\n _f._closure = {\n getMatchers: getMatchers,\n names: names,\n parse255: parse255,\n parse1: parse1,\n hslToRgb: hslToRgb,\n parse360: parse360,\n parsePercentage: parsePercentage\n };\n _f.asString = \"function normalizeColor(color){const{getMatchers,names,parse255,parse1,hslToRgb,parse360,parsePercentage}=jsThis._closure;{if(typeof color==='number'){if(color>>>0===color&&color>=0&&color<=0xffffffff){return color;}return null;}if(typeof color!=='string'){return null;}var matchers=getMatchers();var match;if(match=matchers.hex6.exec(color)){return Number.parseInt(match[1]+'ff',16)>>>0;}if(names[color]!==undefined){return names[color];}if(match=matchers.rgb.exec(color)){return(parse255(match[1])<<24|parse255(match[2])<<16|parse255(match[3])<<8|0x000000ff)>>>0;}if(match=matchers.rgba.exec(color)){return(parse255(match[1])<<24|parse255(match[2])<<16|parse255(match[3])<<8|parse1(match[4]))>>>0;}if(match=matchers.hex3.exec(color)){return Number.parseInt(match[1]+match[1]+match[2]+match[2]+match[3]+match[3]+'ff',16)>>>0;}if(match=matchers.hex8.exec(color)){return Number.parseInt(match[1],16)>>>0;}if(match=matchers.hex4.exec(color)){return Number.parseInt(match[1]+match[1]+match[2]+match[2]+match[3]+match[3]+match[4]+match[4],16)>>>0;}if(match=matchers.hsl.exec(color)){return(hslToRgb(parse360(match[1]),parsePercentage(match[2]),parsePercentage(match[3]))|0x000000ff)>>>0;}if(match=matchers.hsla.exec(color)){return(hslToRgb(parse360(match[1]),parsePercentage(match[2]),parsePercentage(match[3]))|parse1(match[4]))>>>0;}return null;}}\";\n _f.__workletHash = 3604990110820;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (271:0)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nexport var opacity = function () {\n var _f = function _f(c) {\n return (c >> 24 & 255) / 255;\n };\n\n _f._closure = {};\n _f.asString = \"function _f(c){return(c>>24&255)/255;}\";\n _f.__workletHash = 14708696455524;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (352:23)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\nexport var red = function () {\n var _f = function _f(c) {\n return c >> 16 & 255;\n };\n\n _f._closure = {};\n _f.asString = \"function _f(c){return c>>16&255;}\";\n _f.__workletHash = 12808130152281;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (356:19)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\nexport var green = function () {\n var _f = function _f(c) {\n return c >> 8 & 255;\n };\n\n _f._closure = {};\n _f.asString = \"function _f(c){return c>>8&255;}\";\n _f.__workletHash = 3499836539046;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (360:21)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\nexport var blue = function () {\n var _f = function _f(c) {\n return c & 255;\n };\n\n _f._closure = {};\n _f.asString = \"function _f(c){return c&255;}\";\n _f.__workletHash = 14770248723134;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (364:20)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\nexport var rgbaColor = function () {\n var _f = function _f(r, g, b) {\n var alpha = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 1;\n\n if (Platform.OS === 'web' || !_WORKLET) {\n return \"rgba(\" + r + \", \" + g + \", \" + b + \", \" + alpha + \")\";\n }\n\n var a = Math.round(alpha * 255);\n var c = a * (1 << 24) + Math.round(r) * (1 << 16) + Math.round(g) * (1 << 8) + Math.round(b);\n\n if (Platform.OS === 'android') {\n return c < 1 << 31 >>> 0 ? c : c - Math.pow(2, 32);\n }\n\n return c;\n };\n\n _f._closure = {\n Platform: {\n OS: Platform.OS\n }\n };\n _f.asString = \"function _f(r,g,b){const{Platform}=jsThis._closure;{var alpha=arguments.length>3&&arguments[3]!==undefined?arguments[3]:1;if(Platform.OS==='web'||!_WORKLET){return\\\"rgba(\\\"+r+\\\", \\\"+g+\\\", \\\"+b+\\\", \\\"+alpha+\\\")\\\";}var a=Math.round(alpha*255);var c=a*(1<<24)+Math.round(r)*(1<<16)+Math.round(g)*(1<<8)+Math.round(b);if(Platform.OS==='android'){return c<1<<31>>>0?c:c-Math.pow(2,32);}return c;}}\";\n _f.__workletHash = 2659557358393;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (368:25)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nvar RGBtoHSV = function () {\n var _f = function _f(r, g, b) {\n if (arguments.length === 1) {\n g = r.g;\n b = r.b;\n r = r.r;\n }\n\n var max = Math.max(r, g, b);\n var min = Math.min(r, g, b);\n var d = max - min;\n var s = max === 0 ? 0 : d / max;\n var v = max / 255;\n var h;\n\n switch (max) {\n default:\n case min:\n h = 0;\n break;\n\n case r:\n h = g - b + d * (g < b ? 6 : 0);\n h /= 6 * d;\n break;\n\n case g:\n h = b - r + d * 2;\n h /= 6 * d;\n break;\n\n case b:\n h = r - g + d * 4;\n h /= 6 * d;\n break;\n }\n\n return {\n h: h,\n s: s,\n v: v\n };\n };\n\n _f._closure = {};\n _f.asString = \"function RGBtoHSV(r,g,b){if(arguments.length===1){g=r.g;b=r.b;r=r.r;}var max=Math.max(r,g,b);var min=Math.min(r,g,b);var d=max-min;var s=max===0?0:d/max;var v=max/255;var h;switch(max){default:case min:h=0;break;case r:h=g-b+d*(g<b?6:0);h/=6*d;break;case g:h=b-r+d*2;h/=6*d;break;case b:h=r-g+d*4;h/=6*d;break;}return{h:h,s:s,v:v};}\";\n _f.__workletHash = 7477294065049;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (384:0)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nvar HSVtoRGB = function () {\n var _f = function _f(h, s, v) {\n var r, g, b, i, f, p, q, t;\n\n if (arguments.length === 1) {\n s = h.s;\n v = h.v;\n h = h.h;\n }\n\n i = Math.floor(h * 6);\n f = h * 6 - i;\n p = v * (1 - s);\n q = v * (1 - f * s);\n t = v * (1 - (1 - f) * s);\n\n switch (i % 6) {\n case 0:\n r = v, g = t, b = p;\n break;\n\n case 1:\n r = q, g = v, b = p;\n break;\n\n case 2:\n r = p, g = v, b = t;\n break;\n\n case 3:\n r = p, g = q, b = v;\n break;\n\n case 4:\n r = t, g = p, b = v;\n break;\n\n case 5:\n r = v, g = p, b = q;\n break;\n }\n\n return {\n r: Math.round(r * 255),\n g: Math.round(g * 255),\n b: Math.round(b * 255)\n };\n };\n\n _f._closure = {};\n _f.asString = \"function HSVtoRGB(h,s,v){var r,g,b,i,f,p,q,t;if(arguments.length===1){s=h.s;v=h.v;h=h.h;}i=Math.floor(h*6);f=h*6-i;p=v*(1-s);q=v*(1-f*s);t=v*(1-(1-f)*s);switch(i%6){case 0:r=v,g=t,b=p;break;case 1:r=q,g=v,b=p;break;case 2:r=p,g=v,b=t;break;case 3:r=p,g=q,b=v;break;case 4:r=t,g=p,b=v;break;case 5:r=v,g=p,b=q;break;}return{r:Math.round(r*255),g:Math.round(g*255),b:Math.round(b*255)};}\";\n _f.__workletHash = 8891027662548;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (424:0)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nexport var hsvToColor = function () {\n var _f = function _f(h, s, v) {\n var _HSVtoRGB = HSVtoRGB(h, s, v),\n r = _HSVtoRGB.r,\n g = _HSVtoRGB.g,\n b = _HSVtoRGB.b;\n\n return rgbaColor(r, g, b);\n };\n\n _f._closure = {\n HSVtoRGB: HSVtoRGB,\n rgbaColor: rgbaColor\n };\n _f.asString = \"function _f(h,s,v){const{HSVtoRGB,rgbaColor}=jsThis._closure;{var _HSVtoRGB=HSVtoRGB(h,s,v),r=_HSVtoRGB.r,g=_HSVtoRGB.g,b=_HSVtoRGB.b;return rgbaColor(r,g,b);}}\";\n _f.__workletHash = 8892596351665;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (465:26)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\nexport var processColorInitially = function () {\n var _f = function _f(color) {\n if (color === null || color === undefined || typeof color === 'number') {\n return color;\n }\n\n var normalizedColor = normalizeColor(color);\n\n if (normalizedColor === null || normalizedColor === undefined) {\n return undefined;\n }\n\n if (typeof normalizedColor !== 'number') {\n return null;\n }\n\n normalizedColor = (normalizedColor << 24 | normalizedColor >>> 8) >>> 0;\n return normalizedColor;\n };\n\n _f._closure = {\n normalizeColor: normalizeColor\n };\n _f.asString = \"function processColorInitially(color){const{normalizeColor}=jsThis._closure;{if(color===null||color===undefined||typeof color==='number'){return color;}var normalizedColor=normalizeColor(color);if(normalizedColor===null||normalizedColor===undefined){return undefined;}if(typeof normalizedColor!=='number'){return null;}normalizedColor=(normalizedColor<<24|normalizedColor>>>8)>>>0;return normalizedColor;}}\";\n _f.__workletHash = 2610780956833;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (470:7)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\nexport var isColor = function () {\n var _f = function _f(value) {\n if (typeof value !== 'string') {\n return false;\n }\n\n return processColorInitially(value) != null;\n };\n\n _f._closure = {\n processColorInitially: processColorInitially\n };\n _f.asString = \"function isColor(value){const{processColorInitially}=jsThis._closure;{if(typeof value!=='string'){return false;}return processColorInitially(value)!=null;}}\";\n _f.__workletHash = 1808885354308;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (485:7)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\nexport var processColor = function () {\n var _f = function _f(color) {\n var normalizedColor = processColorInitially(color);\n\n if (normalizedColor === null || normalizedColor === undefined) {\n return undefined;\n }\n\n if (typeof normalizedColor !== 'number') {\n return null;\n }\n\n if (Platform.OS === 'android') {\n normalizedColor = normalizedColor | 0x0;\n }\n\n return normalizedColor;\n };\n\n _f._closure = {\n processColorInitially: processColorInitially,\n Platform: {\n OS: Platform.OS\n }\n };\n _f.asString = \"function processColor(color){const{processColorInitially,Platform}=jsThis._closure;{var normalizedColor=processColorInitially(color);if(normalizedColor===null||normalizedColor===undefined){return undefined;}if(typeof normalizedColor!=='number'){return null;}if(Platform.OS==='android'){normalizedColor=normalizedColor|0x0;}return normalizedColor;}}\";\n _f.__workletHash = 5222930667238;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (492:7)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\nexport var convertToHSVA = function () {\n var _f = function _f(color) {\n var processedColor = processColorInitially(color);\n var a = (processedColor >>> 24) / 255;\n var r = processedColor << 8 >>> 24;\n var g = processedColor << 16 >>> 24;\n var b = processedColor << 24 >>> 24;\n\n var _RGBtoHSV = RGBtoHSV(r, g, b),\n h = _RGBtoHSV.h,\n s = _RGBtoHSV.s,\n v = _RGBtoHSV.v;\n\n return [h, s, v, a];\n };\n\n _f._closure = {\n processColorInitially: processColorInitially,\n RGBtoHSV: RGBtoHSV\n };\n _f.asString = \"function convertToHSVA(color){const{processColorInitially,RGBtoHSV}=jsThis._closure;{var processedColor=processColorInitially(color);var a=(processedColor>>>24)/255;var r=processedColor<<8>>>24;var g=processedColor<<16>>>24;var b=processedColor<<24>>>24;var _RGBtoHSV=RGBtoHSV(r,g,b),h=_RGBtoHSV.h,s=_RGBtoHSV.s,v=_RGBtoHSV.v;return[h,s,v,a];}}\";\n _f.__workletHash = 2100046948777;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (510:7)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\nexport var toRGBA = function () {\n var _f = function _f(HSVA) {\n var _HSVtoRGB2 = HSVtoRGB(HSVA[0], HSVA[1], HSVA[2]),\n r = _HSVtoRGB2.r,\n g = _HSVtoRGB2.g,\n b = _HSVtoRGB2.b;\n\n return \"rgba(\" + r + \", \" + g + \", \" + b + \", \" + HSVA[3] + \")\";\n };\n\n _f._closure = {\n HSVtoRGB: HSVtoRGB\n };\n _f.asString = \"function toRGBA(HSVA){const{HSVtoRGB}=jsThis._closure;{var _HSVtoRGB2=HSVtoRGB(HSVA[0],HSVA[1],HSVA[2]),r=_HSVtoRGB2.r,g=_HSVtoRGB2.g,b=_HSVtoRGB2.b;return\\\"rgba(\\\"+r+\\\", \\\"+g+\\\", \\\"+b+\\\", \\\"+HSVA[3]+\\\")\\\";}}\";\n _f.__workletHash = 6083709272735;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (520:7)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nvar interpolateColorsHSV = function () {\n var _f = function _f(value, inputRange, colors) {\n var colorsAsHSV = colors.map(function (c) {\n return RGBtoHSV(c);\n });\n var h = interpolate(value, inputRange, colorsAsHSV.map(function (c) {\n return c.h;\n }), Extrapolate.CLAMP);\n var s = interpolate(value, inputRange, colorsAsHSV.map(function (c) {\n return c.s;\n }), Extrapolate.CLAMP);\n var v = interpolate(value, inputRange, colorsAsHSV.map(function (c) {\n return c.v;\n }), Extrapolate.CLAMP);\n return hsvToColor(h, s, v);\n };\n\n _f._closure = {\n RGBtoHSV: RGBtoHSV,\n interpolate: interpolate,\n Extrapolate: {\n CLAMP: Extrapolate.CLAMP\n },\n hsvToColor: hsvToColor\n };\n _f.asString = \"function _f(value,inputRange,colors){const{RGBtoHSV,interpolate,Extrapolate,hsvToColor}=jsThis._closure;{var colorsAsHSV=colors.map(function(c){return RGBtoHSV(c);});var h=interpolate(value,inputRange,colorsAsHSV.map(function(c){return c.h;}),Extrapolate.CLAMP);var s=interpolate(value,inputRange,colorsAsHSV.map(function(c){return c.s;}),Extrapolate.CLAMP);var v=interpolate(value,inputRange,colorsAsHSV.map(function(c){return c.v;}),Extrapolate.CLAMP);return hsvToColor(h,s,v);}}\";\n _f.__workletHash = 11351363682825;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (525:29)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nvar interpolateColorsRGB = function () {\n var _f = function _f(value, inputRange, colors) {\n var r = Math.round(interpolate(value, inputRange, colors.map(function (c) {\n return red(c);\n }), Extrapolate.CLAMP));\n var g = Math.round(interpolate(value, inputRange, colors.map(function (c) {\n return green(c);\n }), Extrapolate.CLAMP));\n var b = Math.round(interpolate(value, inputRange, colors.map(function (c) {\n return blue(c);\n }), Extrapolate.CLAMP));\n var a = interpolate(value, inputRange, colors.map(function (c) {\n return opacity(c);\n }), Extrapolate.CLAMP);\n return rgbaColor(r, g, b, a);\n };\n\n _f._closure = {\n interpolate: interpolate,\n red: red,\n Extrapolate: {\n CLAMP: Extrapolate.CLAMP\n },\n green: green,\n blue: blue,\n opacity: opacity,\n rgbaColor: rgbaColor\n };\n _f.asString = \"function _f(value,inputRange,colors){const{interpolate,red,Extrapolate,green,blue,opacity,rgbaColor}=jsThis._closure;{var r=Math.round(interpolate(value,inputRange,colors.map(function(c){return red(c);}),Extrapolate.CLAMP));var g=Math.round(interpolate(value,inputRange,colors.map(function(c){return green(c);}),Extrapolate.CLAMP));var b=Math.round(interpolate(value,inputRange,colors.map(function(c){return blue(c);}),Extrapolate.CLAMP));var a=interpolate(value,inputRange,colors.map(function(c){return opacity(c);}),Extrapolate.CLAMP);return rgbaColor(r,g,b,a);}}\";\n _f.__workletHash = 9429974868;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (533:29)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nexport var interpolateColor = function () {\n var _f = function _f(value, inputRange, outputRange) {\n var colorSpace = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 'RGB';\n var processedOutputRange = outputRange.map(function (c) {\n return processColor(c);\n });\n\n if (colorSpace === 'HSV') {\n return interpolateColorsHSV(value, inputRange, processedOutputRange);\n }\n\n if (colorSpace === 'RGB') {\n return interpolateColorsRGB(value, inputRange, processedOutputRange);\n }\n\n throw new Error(\"invalid color space provided: \" + colorSpace + \". Supported values are: ['RGB', 'HSV']\");\n };\n\n _f._closure = {\n processColor: processColor,\n interpolateColorsHSV: interpolateColorsHSV,\n interpolateColorsRGB: interpolateColorsRGB\n };\n _f.asString = \"function _f(value,inputRange,outputRange){const{processColor,interpolateColorsHSV,interpolateColorsRGB}=jsThis._closure;{var colorSpace=arguments.length>3&&arguments[3]!==undefined?arguments[3]:'RGB';var processedOutputRange=outputRange.map(function(c){return processColor(c);});if(colorSpace==='HSV'){return interpolateColorsHSV(value,inputRange,processedOutputRange);}if(colorSpace==='RGB'){return interpolateColorsRGB(value,inputRange,processedOutputRange);}throw new Error(\\\"invalid color space provided: \\\"+colorSpace+\\\". Supported values are: ['RGB', 'HSV']\\\");}}\";\n _f.__workletHash = 2185440428588;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js (541:32)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-reanimated/lib/reanimated2/Colors.js"],"names":["makeRemote","makeShareable","isConfigured","interpolate","Extrapolate","NUMBER","PERCENTAGE","call","args","join","jsCachedMatchers","uiCachedMatchers","getMatchers","cachedMatchers","_WORKLET","rgb","undefined","RegExp","rgba","hsl","hsla","hex3","hex4","hex6","hex8","hue2rgb","p","q","t","hslToRgb","h","s","l","r","g","b","Math","round","parse255","str","int","Number","parseInt","parse360","parseFloat","parse1","num","parsePercentage","names","transparent","aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","burntsienna","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","green","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen","normalizeColor","color","matchers","match","exec","opacity","c","rgbaColor","alpha","Platform","OS","a","pow","RGBtoHSV","arguments","length","max","min","d","v","HSVtoRGB","i","f","floor","hsvToColor","processColorInitially","normalizedColor","isColor","value","processColor","convertToHSVA","processedColor","toRGBA","HSVA","interpolateColorsHSV","inputRange","colors","colorsAsHSV","map","CLAMP","interpolateColorsRGB","interpolateColor","outputRange","colorSpace","processedOutputRange","Error"],"mappings":";AASA,SAASA,UAAT,EAAqBC,aAArB,EAAoCC,YAApC;AACA,SAASC,WAAT;AAEA,SAASC,WAAT;AAEA,IAAMC,MAAM,GAAG,mBAAf;AACA,IAAMC,UAAU,GAAGD,MAAM,GAAG,GAA5B;;IACSE,I;yBAAc;AAAA,sCAANC,IAAM;AAANA,MAAAA,IAAM;AAAA;;AAEnB,WAAO,aAAaA,IAAI,CAACC,IAAL,CAAU,aAAV,CAAb,GAAwC,UAA/C;AACH,G;;;;;;;;;;;;AAID,IAAMC,gBAAgB,GAAG,EAAzB;AACA,IAAMC,gBAAgB,GAAG,CAACT,YAAY,EAAb,GAAkB,IAAlB,GAAyBF,UAAU,CAAC,EAAD,CAA5D;;IACSY,W;yBAAc;AAEnB,QAAMC,cAAc,GAAGC,QAAQ,GACzBH,gBADyB,GAEzBD,gBAFN;;AAGA,QAAIG,cAAc,CAACE,GAAf,KAAuBC,SAA3B,EAAsC;AAClCH,MAAAA,cAAc,CAACE,GAAf,GAAqB,IAAIE,MAAJ,CAAW,QAAQV,IAAI,CAACF,MAAD,EAASA,MAAT,EAAiBA,MAAjB,CAAvB,CAArB;AACAQ,MAAAA,cAAc,CAACK,IAAf,GAAsB,IAAID,MAAJ,CAAW,SAASV,IAAI,CAACF,MAAD,EAASA,MAAT,EAAiBA,MAAjB,EAAyBA,MAAzB,CAAxB,CAAtB;AACAQ,MAAAA,cAAc,CAACM,GAAf,GAAqB,IAAIF,MAAJ,CAAW,QAAQV,IAAI,CAACF,MAAD,EAASC,UAAT,EAAqBA,UAArB,CAAvB,CAArB;AACAO,MAAAA,cAAc,CAACO,IAAf,GAAsB,IAAIH,MAAJ,CAAW,SAASV,IAAI,CAACF,MAAD,EAASC,UAAT,EAAqBA,UAArB,EAAiCD,MAAjC,CAAxB,CAAtB;AACAQ,MAAAA,cAAc,CAACQ,IAAf,GAAsB,qDAAtB;AACAR,MAAAA,cAAc,CAACS,IAAf,GAAsB,qEAAtB;AACAT,MAAAA,cAAc,CAACU,IAAf,GAAsB,qBAAtB;AACAV,MAAAA,cAAc,CAACW,IAAf,GAAsB,qBAAtB;AACH;;AACD,WAAOX,cAAP;AACH,G;;;sBArCiCF,gB;sBAAmBD,gB;UAMPH,I;YAAqCF,M;gBAAZC;;;;;;;;;;;AAmCvEM,WAAW;;IACFa,O;uBAAQC,C,EAAGC,C,EAAGC,C,EAAG;AAEtB,QAAIA,CAAC,GAAG,CAAR,EAAW;AACPA,MAAAA,CAAC,IAAI,CAAL;AACH;;AACD,QAAIA,CAAC,GAAG,CAAR,EAAW;AACPA,MAAAA,CAAC,IAAI,CAAL;AACH;;AACD,QAAIA,CAAC,GAAG,IAAI,CAAZ,EAAe;AACX,aAAOF,CAAC,GAAG,CAACC,CAAC,GAAGD,CAAL,IAAU,CAAV,GAAcE,CAAzB;AACH;;AACD,QAAIA,CAAC,GAAG,IAAI,CAAZ,EAAe;AACX,aAAOD,CAAP;AACH;;AACD,QAAIC,CAAC,GAAG,IAAI,CAAZ,EAAe;AACX,aAAOF,CAAC,GAAG,CAACC,CAAC,GAAGD,CAAL,KAAW,IAAI,CAAJ,GAAQE,CAAnB,IAAwB,CAAnC;AACH;;AACD,WAAOF,CAAP;AACH,G;;;;;;;;;;;;IACQG,Q;uBAASC,C,EAAGC,C,EAAGC,C,EAAG;AAEvB,QAAML,CAAC,GAAGK,CAAC,GAAG,GAAJ,GAAUA,CAAC,IAAI,IAAID,CAAR,CAAX,GAAwBC,CAAC,GAAGD,CAAJ,GAAQC,CAAC,GAAGD,CAA9C;AACA,QAAML,CAAC,GAAG,IAAIM,CAAJ,GAAQL,CAAlB;AACA,QAAMM,CAAC,GAAGR,OAAO,CAACC,CAAD,EAAIC,CAAJ,EAAOG,CAAC,GAAG,IAAI,CAAf,CAAjB;AACA,QAAMI,CAAC,GAAGT,OAAO,CAACC,CAAD,EAAIC,CAAJ,EAAOG,CAAP,CAAjB;AACA,QAAMK,CAAC,GAAGV,OAAO,CAACC,CAAD,EAAIC,CAAJ,EAAOG,CAAC,GAAG,IAAI,CAAf,CAAjB;AACA,WAASM,IAAI,CAACC,KAAL,CAAWJ,CAAC,GAAG,GAAf,KAAuB,EAAxB,GACHG,IAAI,CAACC,KAAL,CAAWH,CAAC,GAAG,GAAf,KAAuB,EADpB,GAEHE,IAAI,CAACC,KAAL,CAAWF,CAAC,GAAG,GAAf,KAAuB,CAF5B;AAGH,G;;;aAnESV;;;;;;;;;;;IAoEDa,Q;uBAASC,G,EAAK;AAEnB,QAAMC,GAAG,GAAGC,MAAM,CAACC,QAAP,CAAgBH,GAAhB,EAAqB,EAArB,CAAZ;;AACA,QAAIC,GAAG,GAAG,CAAV,EAAa;AACT,aAAO,CAAP;AACH;;AACD,QAAIA,GAAG,GAAG,GAAV,EAAe;AACX,aAAO,GAAP;AACH;;AACD,WAAOA,GAAP;AACH,G;;;;;;;;;;;;IACQG,Q;uBAASJ,G,EAAK;AAEnB,QAAMC,GAAG,GAAGC,MAAM,CAACG,UAAP,CAAkBL,GAAlB,CAAZ;AACA,WAAQ,CAAEC,GAAG,GAAG,GAAP,GAAc,GAAf,IAAsB,GAAvB,GAA8B,GAArC;AACH,G;;;;;;;;;;;;IACQK,M;uBAAON,G,EAAK;AAEjB,QAAMO,GAAG,GAAGL,MAAM,CAACG,UAAP,CAAkBL,GAAlB,CAAZ;;AACA,QAAIO,GAAG,GAAG,CAAV,EAAa;AACT,aAAO,CAAP;AACH;;AACD,QAAIA,GAAG,GAAG,CAAV,EAAa;AACT,aAAO,GAAP;AACH;;AACD,WAAOV,IAAI,CAACC,KAAL,CAAWS,GAAG,GAAG,GAAjB,CAAP;AACH,G;;;;;;;;;;;;IACQC,e;uBAAgBR,G,EAAK;AAG1B,QAAMC,GAAG,GAAGC,MAAM,CAACG,UAAP,CAAkBL,GAAlB,CAAZ;;AACA,QAAIC,GAAG,GAAG,CAAV,EAAa;AACT,aAAO,CAAP;AACH;;AACD,QAAIA,GAAG,GAAG,GAAV,EAAe;AACX,aAAO,CAAP;AACH;;AACD,WAAOA,GAAG,GAAG,GAAb;AACH,G;;;;;;;;;;;;AACD,IAAMQ,KAAK,GAAG,CAAC9C,YAAY,EAAb,GACR,IADQ,GAERD,aAAa,CAAC;AACZgD,EAAAA,WAAW,EAAE,UADD;AAGZC,EAAAA,SAAS,EAAE,UAHC;AAIZC,EAAAA,YAAY,EAAE,UAJF;AAKZC,EAAAA,IAAI,EAAE,UALM;AAMZC,EAAAA,UAAU,EAAE,UANA;AAOZC,EAAAA,KAAK,EAAE,UAPK;AAQZC,EAAAA,KAAK,EAAE,UARK;AASZC,EAAAA,MAAM,EAAE,UATI;AAUZC,EAAAA,KAAK,EAAE,UAVK;AAWZC,EAAAA,cAAc,EAAE,UAXJ;AAYZC,EAAAA,IAAI,EAAE,UAZM;AAaZC,EAAAA,UAAU,EAAE,UAbA;AAcZC,EAAAA,KAAK,EAAE,UAdK;AAeZC,EAAAA,SAAS,EAAE,UAfC;AAgBZC,EAAAA,WAAW,EAAE,UAhBD;AAiBZC,EAAAA,SAAS,EAAE,UAjBC;AAkBZC,EAAAA,UAAU,EAAE,UAlBA;AAmBZC,EAAAA,SAAS,EAAE,UAnBC;AAoBZC,EAAAA,KAAK,EAAE,UApBK;AAqBZC,EAAAA,cAAc,EAAE,UArBJ;AAsBZC,EAAAA,QAAQ,EAAE,UAtBE;AAuBZC,EAAAA,OAAO,EAAE,UAvBG;AAwBZC,EAAAA,IAAI,EAAE,UAxBM;AAyBZC,EAAAA,QAAQ,EAAE,UAzBE;AA0BZC,EAAAA,QAAQ,EAAE,UA1BE;AA2BZC,EAAAA,aAAa,EAAE,UA3BH;AA4BZC,EAAAA,QAAQ,EAAE,UA5BE;AA6BZC,EAAAA,SAAS,EAAE,UA7BC;AA8BZC,EAAAA,QAAQ,EAAE,UA9BE;AA+BZC,EAAAA,SAAS,EAAE,UA/BC;AAgCZC,EAAAA,WAAW,EAAE,UAhCD;AAiCZC,EAAAA,cAAc,EAAE,UAjCJ;AAkCZC,EAAAA,UAAU,EAAE,UAlCA;AAmCZC,EAAAA,UAAU,EAAE,UAnCA;AAoCZC,EAAAA,OAAO,EAAE,UApCG;AAqCZC,EAAAA,UAAU,EAAE,UArCA;AAsCZC,EAAAA,YAAY,EAAE,UAtCF;AAuCZC,EAAAA,aAAa,EAAE,UAvCH;AAwCZC,EAAAA,aAAa,EAAE,UAxCH;AAyCZC,EAAAA,aAAa,EAAE,UAzCH;AA0CZC,EAAAA,aAAa,EAAE,UA1CH;AA2CZC,EAAAA,UAAU,EAAE,UA3CA;AA4CZC,EAAAA,QAAQ,EAAE,UA5CE;AA6CZC,EAAAA,WAAW,EAAE,UA7CD;AA8CZC,EAAAA,OAAO,EAAE,UA9CG;AA+CZC,EAAAA,OAAO,EAAE,UA/CG;AAgDZC,EAAAA,UAAU,EAAE,UAhDA;AAiDZC,EAAAA,SAAS,EAAE,UAjDC;AAkDZC,EAAAA,WAAW,EAAE,UAlDD;AAmDZC,EAAAA,WAAW,EAAE,UAnDD;AAoDZC,EAAAA,OAAO,EAAE,UApDG;AAqDZC,EAAAA,SAAS,EAAE,UArDC;AAsDZC,EAAAA,UAAU,EAAE,UAtDA;AAuDZC,EAAAA,IAAI,EAAE,UAvDM;AAwDZC,EAAAA,SAAS,EAAE,UAxDC;AAyDZC,EAAAA,IAAI,EAAE,UAzDM;AA0DZC,EAAAA,KAAK,EAAE,UA1DK;AA2DZC,EAAAA,WAAW,EAAE,UA3DD;AA4DZC,EAAAA,IAAI,EAAE,UA5DM;AA6DZC,EAAAA,QAAQ,EAAE,UA7DE;AA8DZC,EAAAA,OAAO,EAAE,UA9DG;AA+DZC,EAAAA,SAAS,EAAE,UA/DC;AAgEZC,EAAAA,MAAM,EAAE,UAhEI;AAiEZC,EAAAA,KAAK,EAAE,UAjEK;AAkEZC,EAAAA,KAAK,EAAE,UAlEK;AAmEZC,EAAAA,QAAQ,EAAE,UAnEE;AAoEZC,EAAAA,aAAa,EAAE,UApEH;AAqEZC,EAAAA,SAAS,EAAE,UArEC;AAsEZC,EAAAA,YAAY,EAAE,UAtEF;AAuEZC,EAAAA,SAAS,EAAE,UAvEC;AAwEZC,EAAAA,UAAU,EAAE,UAxEA;AAyEZC,EAAAA,SAAS,EAAE,UAzEC;AA0EZC,EAAAA,oBAAoB,EAAE,UA1EV;AA2EZC,EAAAA,SAAS,EAAE,UA3EC;AA4EZC,EAAAA,UAAU,EAAE,UA5EA;AA6EZC,EAAAA,SAAS,EAAE,UA7EC;AA8EZC,EAAAA,SAAS,EAAE,UA9EC;AA+EZC,EAAAA,WAAW,EAAE,UA/ED;AAgFZC,EAAAA,aAAa,EAAE,UAhFH;AAiFZC,EAAAA,YAAY,EAAE,UAjFF;AAkFZC,EAAAA,cAAc,EAAE,UAlFJ;AAmFZC,EAAAA,cAAc,EAAE,UAnFJ;AAoFZC,EAAAA,cAAc,EAAE,UApFJ;AAqFZC,EAAAA,WAAW,EAAE,UArFD;AAsFZC,EAAAA,IAAI,EAAE,UAtFM;AAuFZC,EAAAA,SAAS,EAAE,UAvFC;AAwFZC,EAAAA,KAAK,EAAE,UAxFK;AAyFZC,EAAAA,OAAO,EAAE,UAzFG;AA0FZC,EAAAA,MAAM,EAAE,UA1FI;AA2FZC,EAAAA,gBAAgB,EAAE,UA3FN;AA4FZC,EAAAA,UAAU,EAAE,UA5FA;AA6FZC,EAAAA,YAAY,EAAE,UA7FF;AA8FZC,EAAAA,YAAY,EAAE,UA9FF;AA+FZC,EAAAA,cAAc,EAAE,UA/FJ;AAgGZC,EAAAA,eAAe,EAAE,UAhGL;AAiGZC,EAAAA,iBAAiB,EAAE,UAjGP;AAkGZC,EAAAA,eAAe,EAAE,UAlGL;AAmGZC,EAAAA,eAAe,EAAE,UAnGL;AAoGZC,EAAAA,YAAY,EAAE,UApGF;AAqGZC,EAAAA,SAAS,EAAE,UArGC;AAsGZC,EAAAA,SAAS,EAAE,UAtGC;AAuGZC,EAAAA,QAAQ,EAAE,UAvGE;AAwGZC,EAAAA,WAAW,EAAE,UAxGD;AAyGZC,EAAAA,IAAI,EAAE,UAzGM;AA0GZC,EAAAA,OAAO,EAAE,UA1GG;AA2GZC,EAAAA,KAAK,EAAE,UA3GK;AA4GZC,EAAAA,SAAS,EAAE,UA5GC;AA6GZC,EAAAA,MAAM,EAAE,UA7GI;AA8GZC,EAAAA,SAAS,EAAE,UA9GC;AA+GZC,EAAAA,MAAM,EAAE,UA/GI;AAgHZC,EAAAA,aAAa,EAAE,UAhHH;AAiHZC,EAAAA,SAAS,EAAE,UAjHC;AAkHZC,EAAAA,aAAa,EAAE,UAlHH;AAmHZC,EAAAA,aAAa,EAAE,UAnHH;AAoHZC,EAAAA,UAAU,EAAE,UApHA;AAqHZC,EAAAA,SAAS,EAAE,UArHC;AAsHZC,EAAAA,IAAI,EAAE,UAtHM;AAuHZC,EAAAA,IAAI,EAAE,UAvHM;AAwHZC,EAAAA,IAAI,EAAE,UAxHM;AAyHZC,EAAAA,UAAU,EAAE,UAzHA;AA0HZC,EAAAA,MAAM,EAAE,UA1HI;AA2HZC,EAAAA,aAAa,EAAE,UA3HH;AA4HZC,EAAAA,GAAG,EAAE,UA5HO;AA6HZC,EAAAA,SAAS,EAAE,UA7HC;AA8HZC,EAAAA,SAAS,EAAE,UA9HC;AA+HZC,EAAAA,WAAW,EAAE,UA/HD;AAgIZC,EAAAA,MAAM,EAAE,UAhII;AAiIZC,EAAAA,UAAU,EAAE,UAjIA;AAkIZC,EAAAA,QAAQ,EAAE,UAlIE;AAmIZC,EAAAA,QAAQ,EAAE,UAnIE;AAoIZC,EAAAA,MAAM,EAAE,UApII;AAqIZC,EAAAA,MAAM,EAAE,UArII;AAsIZC,EAAAA,OAAO,EAAE,UAtIG;AAuIZC,EAAAA,SAAS,EAAE,UAvIC;AAwIZC,EAAAA,SAAS,EAAE,UAxIC;AAyIZC,EAAAA,SAAS,EAAE,UAzIC;AA0IZC,EAAAA,IAAI,EAAE,UA1IM;AA2IZC,EAAAA,WAAW,EAAE,UA3ID;AA4IZC,EAAAA,SAAS,EAAE,UA5IC;AA6IZC,EAAAA,GAAG,EAAE,UA7IO;AA8IZC,EAAAA,IAAI,EAAE,UA9IM;AA+IZC,EAAAA,OAAO,EAAE,UA/IG;AAgJZC,EAAAA,MAAM,EAAE,UAhJI;AAiJZC,EAAAA,SAAS,EAAE,UAjJC;AAkJZC,EAAAA,MAAM,EAAE,UAlJI;AAmJZC,EAAAA,KAAK,EAAE,UAnJK;AAoJZC,EAAAA,KAAK,EAAE,UApJK;AAqJZC,EAAAA,UAAU,EAAE,UArJA;AAsJZC,EAAAA,MAAM,EAAE,UAtJI;AAuJZC,EAAAA,WAAW,EAAE;AAvJD,CAAD,CAFnB;;IA2JSC,c;uBAAeC,K,EAAO;AAE3B,QAAI,OAAOA,KAAP,KAAiB,QAArB,EAA+B;AAC3B,UAAIA,KAAK,KAAK,CAAV,KAAgBA,KAAhB,IAAyBA,KAAK,IAAI,CAAlC,IAAuCA,KAAK,IAAI,UAApD,EAAgE;AAC5D,eAAOA,KAAP;AACH;;AACD,aAAO,IAAP;AACH;;AACD,QAAI,OAAOA,KAAP,KAAiB,QAArB,EAA+B;AAC3B,aAAO,IAAP;AACH;;AACD,QAAMC,QAAQ,GAAG7L,WAAW,EAA5B;AACA,QAAI8L,KAAJ;;AAEA,QAAKA,KAAK,GAAGD,QAAQ,CAAClL,IAAT,CAAcoL,IAAd,CAAmBH,KAAnB,CAAb,EAAyC;AACrC,aAAO/J,MAAM,CAACC,QAAP,CAAgBgK,KAAK,CAAC,CAAD,CAAL,GAAW,IAA3B,EAAiC,EAAjC,MAAyC,CAAhD;AACH;;AACD,QAAI1J,KAAK,CAACwJ,KAAD,CAAL,KAAiBxL,SAArB,EAAgC;AAC5B,aAAOgC,KAAK,CAACwJ,KAAD,CAAZ;AACH;;AACD,QAAKE,KAAK,GAAGD,QAAQ,CAAC1L,GAAT,CAAa4L,IAAb,CAAkBH,KAAlB,CAAb,EAAwC;AACpC,aAEA,CAAElK,QAAQ,CAACoK,KAAK,CAAC,CAAD,CAAN,CAAR,IAAsB,EAAvB,GACIpK,QAAQ,CAACoK,KAAK,CAAC,CAAD,CAAN,CAAR,IAAsB,EAD1B,GAEIpK,QAAQ,CAACoK,KAAK,CAAC,CAAD,CAAN,CAAR,IAAsB,CAF1B,GAGG,UAHJ,MAII,CANJ;AAOH;;AACD,QAAKA,KAAK,GAAGD,QAAQ,CAACvL,IAAT,CAAcyL,IAAd,CAAmBH,KAAnB,CAAb,EAAyC;AACrC,aAEA,CAAElK,QAAQ,CAACoK,KAAK,CAAC,CAAD,CAAN,CAAR,IAAsB,EAAvB,GACIpK,QAAQ,CAACoK,KAAK,CAAC,CAAD,CAAN,CAAR,IAAsB,EAD1B,GAEIpK,QAAQ,CAACoK,KAAK,CAAC,CAAD,CAAN,CAAR,IAAsB,CAF1B,GAGG7J,MAAM,CAAC6J,KAAK,CAAC,CAAD,CAAN,CAHV,MAII,CANJ;AAOH;;AACD,QAAKA,KAAK,GAAGD,QAAQ,CAACpL,IAAT,CAAcsL,IAAd,CAAmBH,KAAnB,CAAb,EAAyC;AACrC,aAAQ/J,MAAM,CAACC,QAAP,CAAgBgK,KAAK,CAAC,CAAD,CAAL,GACpBA,KAAK,CAAC,CAAD,CADe,GAEpBA,KAAK,CAAC,CAAD,CAFe,GAGpBA,KAAK,CAAC,CAAD,CAHe,GAIpBA,KAAK,CAAC,CAAD,CAJe,GAKpBA,KAAK,CAAC,CAAD,CALe,GAMpB,IANI,EAOR,EAPQ,MAOA,CAPR;AAQH;;AAED,QAAKA,KAAK,GAAGD,QAAQ,CAACjL,IAAT,CAAcmL,IAAd,CAAmBH,KAAnB,CAAb,EAAyC;AACrC,aAAO/J,MAAM,CAACC,QAAP,CAAgBgK,KAAK,CAAC,CAAD,CAArB,EAA0B,EAA1B,MAAkC,CAAzC;AACH;;AACD,QAAKA,KAAK,GAAGD,QAAQ,CAACnL,IAAT,CAAcqL,IAAd,CAAmBH,KAAnB,CAAb,EAAyC;AACrC,aAAQ/J,MAAM,CAACC,QAAP,CAAgBgK,KAAK,CAAC,CAAD,CAAL,GACpBA,KAAK,CAAC,CAAD,CADe,GAEpBA,KAAK,CAAC,CAAD,CAFe,GAGpBA,KAAK,CAAC,CAAD,CAHe,GAIpBA,KAAK,CAAC,CAAD,CAJe,GAKpBA,KAAK,CAAC,CAAD,CALe,GAMpBA,KAAK,CAAC,CAAD,CANe,GAOpBA,KAAK,CAAC,CAAD,CAPD,EAQR,EARQ,MAQA,CARR;AASH;;AACD,QAAKA,KAAK,GAAGD,QAAQ,CAACtL,GAAT,CAAawL,IAAb,CAAkBH,KAAlB,CAAb,EAAwC;AACpC,aAAQ,CAAC3K,QAAQ,CAACc,QAAQ,CAAC+J,KAAK,CAAC,CAAD,CAAN,CAAT,EACjB3J,eAAe,CAAC2J,KAAK,CAAC,CAAD,CAAN,CADE,EAEjB3J,eAAe,CAAC2J,KAAK,CAAC,CAAD,CAAN,CAFE,CAAR,GAIL,UAJI,MAKJ,CALJ;AAMH;;AACD,QAAKA,KAAK,GAAGD,QAAQ,CAACrL,IAAT,CAAcuL,IAAd,CAAmBH,KAAnB,CAAb,EAAyC;AACrC,aAAQ,CAAC3K,QAAQ,CAACc,QAAQ,CAAC+J,KAAK,CAAC,CAAD,CAAN,CAAT,EACjB3J,eAAe,CAAC2J,KAAK,CAAC,CAAD,CAAN,CADE,EAEjB3J,eAAe,CAAC2J,KAAK,CAAC,CAAD,CAAN,CAFE,CAAR,GAIL7J,MAAM,CAAC6J,KAAK,CAAC,CAAD,CAAN,CAJF,MAKJ,CALJ;AAMH;;AACD,WAAO,IAAP;AACH,G;;;iBA9UgB9L,W;WAQNoC,K;cAgBLV,Q;YAsCEO,M;cAHIhB,Q;cAASc,Q;qBAEjBI;;;;;;;;;;;AAkRJ,OAAO,IAAM6J,OAAO;AAAA,uBAAIC,CAAJ,EAAU;AAE1B,WAAO,CAAEA,CAAC,IAAI,EAAN,GAAY,GAAb,IAAoB,GAA3B;AACH,GAHmB;;AAAA;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA,GAAb;AAIP,OAAO,IAAMlC,GAAG;AAAA,uBAAIkC,CAAJ,EAAU;AAEtB,WAAQA,CAAC,IAAI,EAAN,GAAY,GAAnB;AACH,GAHe;;AAAA;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA,GAAT;AAIP,OAAO,IAAMpG,KAAK;AAAA,uBAAIoG,CAAJ,EAAU;AAExB,WAAQA,CAAC,IAAI,CAAN,GAAW,GAAlB;AACH,GAHiB;;AAAA;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA,GAAX;AAIP,OAAO,IAAMlJ,IAAI;AAAA,uBAAIkJ,CAAJ,EAAU;AAEvB,WAAOA,CAAC,GAAG,GAAX;AACH,GAHgB;;AAAA;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA,GAAV;AAIP,OAAO,IAAMC,SAAS;AAAA,uBAAI7K,CAAJ,EAAOC,CAAP,EAAUC,CAAV,EAA2B;AAAA,QAAd4K,KAAc,uEAAN,CAAM;;AAE7C,QAAIC,QAAQ,CAACC,EAAT,KAAgB,KAAhB,IAAyB,CAACnM,QAA9B,EAAwC;AACpC,uBAAemB,CAAf,UAAqBC,CAArB,UAA2BC,CAA3B,UAAiC4K,KAAjC;AACH;;AACD,QAAMG,CAAC,GAAG9K,IAAI,CAACC,KAAL,CAAW0K,KAAK,GAAG,GAAnB,CAAV;AACA,QAAMF,CAAC,GAAGK,CAAC,IAAI,KAAK,EAAT,CAAD,GACN9K,IAAI,CAACC,KAAL,CAAWJ,CAAX,KAAiB,KAAK,EAAtB,CADM,GAENG,IAAI,CAACC,KAAL,CAAWH,CAAX,KAAiB,KAAK,CAAtB,CAFM,GAGNE,IAAI,CAACC,KAAL,CAAWF,CAAX,CAHJ;;AAIA,QAAI6K,QAAQ,CAACC,EAAT,KAAgB,SAApB,EAA+B;AAE3B,aAAOJ,CAAC,GAAI,KAAK,EAAN,KAAc,CAAlB,GAAsBA,CAAtB,GAA0BA,CAAC,GAAGzK,IAAI,CAAC+K,GAAL,CAAS,CAAT,EAAY,EAAZ,CAArC;AACH;;AACD,WAAON,CAAP;AACH,GAfqB;;AAAA;AAAA;AAAA,UAlWhBG,QAAQ,CAACC;AAkWO;AAAA;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA,GAAf;;IAgBEG,Q;uBAASnL,C,EAAGC,C,EAAGC,C,EAAG;AAGvB,QAAIkL,SAAS,CAACC,MAAV,KAAqB,CAAzB,EAA4B;AACxBpL,MAAAA,CAAC,GAAGD,CAAC,CAACC,CAAN;AACAC,MAAAA,CAAC,GAAGF,CAAC,CAACE,CAAN;AACAF,MAAAA,CAAC,GAAGA,CAAC,CAACA,CAAN;AACH;;AACD,QAAMsL,GAAG,GAAGnL,IAAI,CAACmL,GAAL,CAAStL,CAAT,EAAYC,CAAZ,EAAeC,CAAf,CAAZ;AACA,QAAMqL,GAAG,GAAGpL,IAAI,CAACoL,GAAL,CAASvL,CAAT,EAAYC,CAAZ,EAAeC,CAAf,CAAZ;AACA,QAAMsL,CAAC,GAAGF,GAAG,GAAGC,GAAhB;AACA,QAAMzL,CAAC,GAAGwL,GAAG,KAAK,CAAR,GAAY,CAAZ,GAAgBE,CAAC,GAAGF,GAA9B;AACA,QAAMG,CAAC,GAAGH,GAAG,GAAG,GAAhB;AACA,QAAIzL,CAAJ;;AACA,YAAQyL,GAAR;AACI;AAEA,WAAKC,GAAL;AACI1L,QAAAA,CAAC,GAAG,CAAJ;AACA;;AACJ,WAAKG,CAAL;AACIH,QAAAA,CAAC,GAAGI,CAAC,GAAGC,CAAJ,GAAQsL,CAAC,IAAIvL,CAAC,GAAGC,CAAJ,GAAQ,CAAR,GAAY,CAAhB,CAAb;AACAL,QAAAA,CAAC,IAAI,IAAI2L,CAAT;AACA;;AACJ,WAAKvL,CAAL;AACIJ,QAAAA,CAAC,GAAGK,CAAC,GAAGF,CAAJ,GAAQwL,CAAC,GAAG,CAAhB;AACA3L,QAAAA,CAAC,IAAI,IAAI2L,CAAT;AACA;;AACJ,WAAKtL,CAAL;AACIL,QAAAA,CAAC,GAAGG,CAAC,GAAGC,CAAJ,GAAQuL,CAAC,GAAG,CAAhB;AACA3L,QAAAA,CAAC,IAAI,IAAI2L,CAAT;AACA;AAjBR;;AAmBA,WAAO;AACH3L,MAAAA,CAAC,EAAEA,CADA;AAEHC,MAAAA,CAAC,EAAEA,CAFA;AAGH2L,MAAAA,CAAC,EAAEA;AAHA,KAAP;AAMH,G;;;;;;;;;;;;IACQC,Q;uBAAS7L,C,EAAGC,C,EAAG2L,C,EAAG;AAGvB,QAAIzL,CAAJ,EAAOC,CAAP,EAAUC,CAAV,EAAayL,CAAb,EAAgBC,CAAhB,EAAmBnM,CAAnB,EAAsBC,CAAtB,EAAyBC,CAAzB;;AACA,QAAIyL,SAAS,CAACC,MAAV,KAAqB,CAAzB,EAA4B;AACxBvL,MAAAA,CAAC,GAAGD,CAAC,CAACC,CAAN;AACA2L,MAAAA,CAAC,GAAG5L,CAAC,CAAC4L,CAAN;AACA5L,MAAAA,CAAC,GAAGA,CAAC,CAACA,CAAN;AACH;;AACD8L,IAAAA,CAAC,GAAGxL,IAAI,CAAC0L,KAAL,CAAWhM,CAAC,GAAG,CAAf,CAAJ;AACA+L,IAAAA,CAAC,GAAG/L,CAAC,GAAG,CAAJ,GAAQ8L,CAAZ;AACAlM,IAAAA,CAAC,GAAGgM,CAAC,IAAI,IAAI3L,CAAR,CAAL;AACAJ,IAAAA,CAAC,GAAG+L,CAAC,IAAI,IAAIG,CAAC,GAAG9L,CAAZ,CAAL;AACAH,IAAAA,CAAC,GAAG8L,CAAC,IAAI,IAAI,CAAC,IAAIG,CAAL,IAAU9L,CAAlB,CAAL;;AACA,YAAQ6L,CAAC,GAAG,CAAZ;AACI,WAAK,CAAL;AACK3L,QAAAA,CAAC,GAAGyL,CAAL,EAAUxL,CAAC,GAAGN,CAAd,EAAmBO,CAAC,GAAGT,CAAvB;AACA;;AACJ,WAAK,CAAL;AACKO,QAAAA,CAAC,GAAGN,CAAL,EAAUO,CAAC,GAAGwL,CAAd,EAAmBvL,CAAC,GAAGT,CAAvB;AACA;;AACJ,WAAK,CAAL;AACKO,QAAAA,CAAC,GAAGP,CAAL,EAAUQ,CAAC,GAAGwL,CAAd,EAAmBvL,CAAC,GAAGP,CAAvB;AACA;;AACJ,WAAK,CAAL;AACKK,QAAAA,CAAC,GAAGP,CAAL,EAAUQ,CAAC,GAAGP,CAAd,EAAmBQ,CAAC,GAAGuL,CAAvB;AACA;;AACJ,WAAK,CAAL;AACKzL,QAAAA,CAAC,GAAGL,CAAL,EAAUM,CAAC,GAAGR,CAAd,EAAmBS,CAAC,GAAGuL,CAAvB;AACA;;AACJ,WAAK,CAAL;AACKzL,QAAAA,CAAC,GAAGyL,CAAL,EAAUxL,CAAC,GAAGR,CAAd,EAAmBS,CAAC,GAAGR,CAAvB;AACA;AAlBR;;AAoBA,WAAO;AACHM,MAAAA,CAAC,EAAEG,IAAI,CAACC,KAAL,CAAWJ,CAAC,GAAG,GAAf,CADA;AAEHC,MAAAA,CAAC,EAAEE,IAAI,CAACC,KAAL,CAAWH,CAAC,GAAG,GAAf,CAFA;AAGHC,MAAAA,CAAC,EAAEC,IAAI,CAACC,KAAL,CAAWF,CAAC,GAAG,GAAf;AAHA,KAAP;AAMH,G;;;;;;;;;;;;AACD,OAAO,IAAM4L,UAAU;AAAA,uBAAIjM,CAAJ,EAAOC,CAAP,EAAU2L,CAAV,EAAgB;AAEnC,oBAAoBC,QAAQ,CAAC7L,CAAD,EAAIC,CAAJ,EAAO2L,CAAP,CAA5B;AAAA,QAAQzL,CAAR,aAAQA,CAAR;AAAA,QAAWC,CAAX,aAAWA,CAAX;AAAA,QAAcC,CAAd,aAAcA,CAAd;;AACA,WAAO2K,SAAS,CAAC7K,CAAD,EAAIC,CAAJ,EAAOC,CAAP,CAAhB;AACH,GAJsB;;AAAA;AAAA,cA5cLwL,QA4cK;AAAA,eAvcdb;AAucc;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA,GAAhB;AAKP,WAAgBkB,qBAAhB;AAAA,uBAAsCxB,KAAtC,EAA6C;AAEzC,QAAIA,KAAK,KAAK,IAAV,IAAkBA,KAAK,KAAKxL,SAA5B,IAAyC,OAAOwL,KAAP,KAAiB,QAA9D,EAAwE;AACpE,aAAOA,KAAP;AACH;;AACD,QAAIyB,eAAe,GAAG1B,cAAc,CAACC,KAAD,CAApC;;AACA,QAAIyB,eAAe,KAAK,IAApB,IAA4BA,eAAe,KAAKjN,SAApD,EAA+D;AAC3D,aAAOA,SAAP;AACH;;AACD,QAAI,OAAOiN,eAAP,KAA2B,QAA/B,EAAyC;AACrC,aAAO,IAAP;AACH;;AACDA,IAAAA,eAAe,GAAG,CAAEA,eAAe,IAAI,EAApB,GAA2BA,eAAe,KAAK,CAAhD,MAAwD,CAA1E;AACA,WAAOA,eAAP;AACH,GAdD;;AAAA;AAAA,oBA7cwB1B;AA6cxB;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA;AAeA,WAAgB2B,OAAhB;AAAA,uBAAwBC,KAAxB,EAA+B;AAE3B,QAAI,OAAOA,KAAP,KAAiB,QAArB,EAA+B;AAC3B,aAAO,KAAP;AACH;;AACD,WAAOH,qBAAqB,CAACG,KAAD,CAArB,IAAgC,IAAvC;AACH,GAND;;AAAA;AAAA,2BA5dSH;AA4dT;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA;AAOA,WAAgBI,YAAhB;AAAA,uBAA6B5B,KAA7B,EAAoC;AAEhC,QAAIyB,eAAe,GAAGD,qBAAqB,CAACxB,KAAD,CAA3C;;AACA,QAAIyB,eAAe,KAAK,IAApB,IAA4BA,eAAe,KAAKjN,SAApD,EAA+D;AAC3D,aAAOA,SAAP;AACH;;AACD,QAAI,OAAOiN,eAAP,KAA2B,QAA/B,EAAyC;AACrC,aAAO,IAAP;AACH;;AACD,QAAIjB,QAAQ,CAACC,EAAT,KAAgB,SAApB,EAA+B;AAK3BgB,MAAAA,eAAe,GAAGA,eAAe,GAAG,GAApC;AACH;;AACD,WAAOA,eAAP;AACH,GAjBD;;AAAA;AAAA,2BAvewBD,qBAuexB;AAAA;AAAA,UA7dMhB,QAAQ,CAACC;AA6df;AAAA;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA;AAkBA,WAAgBoB,aAAhB;AAAA,uBAA8B7B,KAA9B,EAAqC;AAEjC,QAAM8B,cAAc,GAAGN,qBAAqB,CAACxB,KAAD,CAA5C;AACA,QAAMU,CAAC,GAAG,CAACoB,cAAc,KAAK,EAApB,IAA0B,GAApC;AACA,QAAMrM,CAAC,GAAIqM,cAAc,IAAI,CAAnB,KAA0B,EAApC;AACA,QAAMpM,CAAC,GAAIoM,cAAc,IAAI,EAAnB,KAA2B,EAArC;AACA,QAAMnM,CAAC,GAAImM,cAAc,IAAI,EAAnB,KAA2B,EAArC;;AACA,oBAAoBlB,QAAQ,CAACnL,CAAD,EAAIC,CAAJ,EAAOC,CAAP,CAA5B;AAAA,QAAQL,CAAR,aAAQA,CAAR;AAAA,QAAWC,CAAX,aAAWA,CAAX;AAAA,QAAc2L,CAAd,aAAcA,CAAd;;AACA,WAAO,CAAC5L,CAAD,EAAIC,CAAJ,EAAO2L,CAAP,EAAUR,CAAV,CAAP;AACH,GATD;;AAAA;AAAA,2BAzfuBc,qBAyfvB;AAAA,cAlfkBZ;AAkflB;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA;AAUA,WAAgBmB,MAAhB;AAAA,uBAAuBC,IAAvB,EAA6B;AAEzB,qBAAoBb,QAAQ,CAACa,IAAI,CAAC,CAAD,CAAL,EAAUA,IAAI,CAAC,CAAD,CAAd,EAAmBA,IAAI,CAAC,CAAD,CAAvB,CAA5B;AAAA,QAAQvM,CAAR,cAAQA,CAAR;AAAA,QAAWC,CAAX,cAAWA,CAAX;AAAA,QAAcC,CAAd,cAAcA,CAAd;;AACA,qBAAeF,CAAf,UAAqBC,CAArB,UAA2BC,CAA3B,UAAiCqM,IAAI,CAAC,CAAD,CAArC;AACH,GAJD;;AAAA;AAAA,cAngBmBb;AAmgBnB;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA;;AAKA,IAAMc,oBAAoB;AAAA,uBAAIN,KAAJ,EAAWO,UAAX,EAAuBC,MAAvB,EAAkC;AAExD,QAAMC,WAAW,GAAGD,MAAM,CAACE,GAAP,CAAW,UAAChC,CAAD;AAAA,aAAOO,QAAQ,CAACP,CAAD,CAAf;AAAA,KAAX,CAApB;AACA,QAAM/K,CAAC,GAAG3B,WAAW,CAACgO,KAAD,EAAQO,UAAR,EAAoBE,WAAW,CAACC,GAAZ,CAAgB,UAAChC,CAAD;AAAA,aAAOA,CAAC,CAAC/K,CAAT;AAAA,KAAhB,CAApB,EAAiD1B,WAAW,CAAC0O,KAA7D,CAArB;AACA,QAAM/M,CAAC,GAAG5B,WAAW,CAACgO,KAAD,EAAQO,UAAR,EAAoBE,WAAW,CAACC,GAAZ,CAAgB,UAAChC,CAAD;AAAA,aAAOA,CAAC,CAAC9K,CAAT;AAAA,KAAhB,CAApB,EAAiD3B,WAAW,CAAC0O,KAA7D,CAArB;AACA,QAAMpB,CAAC,GAAGvN,WAAW,CAACgO,KAAD,EAAQO,UAAR,EAAoBE,WAAW,CAACC,GAAZ,CAAgB,UAAChC,CAAD;AAAA,aAAOA,CAAC,CAACa,CAAT;AAAA,KAAhB,CAApB,EAAiDtN,WAAW,CAAC0O,KAA7D,CAArB;AACA,WAAOf,UAAU,CAACjM,CAAD,EAAIC,CAAJ,EAAO2L,CAAP,CAAjB;AACH,GAPyB;;AAAA;AAAA,cAvgBfN,QAugBe;AAAA,iBA/fhBjN,WA+fgB;AAAA;AAAA,aA7fpBC,WAAW,CAAC0O;AA6fQ;AAAA,gBA5fjBf;AA4fiB;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA,GAA1B;;AAQA,IAAMgB,oBAAoB;AAAA,uBAAIZ,KAAJ,EAAWO,UAAX,EAAuBC,MAAvB,EAAkC;AAExD,QAAM1M,CAAC,GAAGG,IAAI,CAACC,KAAL,CAAWlC,WAAW,CAACgO,KAAD,EAAQO,UAAR,EAAoBC,MAAM,CAACE,GAAP,CAAW,UAAChC,CAAD;AAAA,aAAOlC,GAAG,CAACkC,CAAD,CAAV;AAAA,KAAX,CAApB,EAA+CzM,WAAW,CAAC0O,KAA3D,CAAtB,CAAV;AACA,QAAM5M,CAAC,GAAGE,IAAI,CAACC,KAAL,CAAWlC,WAAW,CAACgO,KAAD,EAAQO,UAAR,EAAoBC,MAAM,CAACE,GAAP,CAAW,UAAChC,CAAD;AAAA,aAAOpG,KAAK,CAACoG,CAAD,CAAZ;AAAA,KAAX,CAApB,EAAiDzM,WAAW,CAAC0O,KAA7D,CAAtB,CAAV;AACA,QAAM3M,CAAC,GAAGC,IAAI,CAACC,KAAL,CAAWlC,WAAW,CAACgO,KAAD,EAAQO,UAAR,EAAoBC,MAAM,CAACE,GAAP,CAAW,UAAChC,CAAD;AAAA,aAAOlJ,IAAI,CAACkJ,CAAD,CAAX;AAAA,KAAX,CAApB,EAAgDzM,WAAW,CAAC0O,KAA5D,CAAtB,CAAV;AACA,QAAM5B,CAAC,GAAG/M,WAAW,CAACgO,KAAD,EAAQO,UAAR,EAAoBC,MAAM,CAACE,GAAP,CAAW,UAAChC,CAAD;AAAA,aAAOD,OAAO,CAACC,CAAD,CAAd;AAAA,KAAX,CAApB,EAAmDzM,WAAW,CAAC0O,KAA/D,CAArB;AACA,WAAOhC,SAAS,CAAC7K,CAAD,EAAIC,CAAJ,EAAOC,CAAP,EAAU+K,CAAV,CAAhB;AACH,GAPyB;;AAAA;AAAA,iBAvgBhB/M,WAugBgB;AAAA,SA/gBfwK,GA+gBe;AAAA;AAAA,aArgBpBvK,WAAW,CAAC0O;AAqgBQ;AAAA,WA5gBfrI,KA4gBe;AAAA,UAzgBf9C,IAygBe;AAAA,aAtgBfiJ,OAsgBe;AAAA,eApgBjBE;AAogBiB;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA,GAA1B;;AAQA,OAAO,IAAMkC,gBAAgB;AAAA,uBAAIb,KAAJ,EAAWO,UAAX,EAAuBO,WAAvB,EAA2D;AAAA,QAAvBC,UAAuB,uEAAV,KAAU;AAEpF,QAAMC,oBAAoB,GAAGF,WAAW,CAACJ,GAAZ,CAAgB,UAAChC,CAAD;AAAA,aAAOuB,YAAY,CAACvB,CAAD,CAAnB;AAAA,KAAhB,CAA7B;;AACA,QAAIqC,UAAU,KAAK,KAAnB,EAA0B;AACtB,aAAOT,oBAAoB,CAACN,KAAD,EAAQO,UAAR,EAAoBS,oBAApB,CAA3B;AACH;;AACD,QAAID,UAAU,KAAK,KAAnB,EAA0B;AACtB,aAAOH,oBAAoB,CAACZ,KAAD,EAAQO,UAAR,EAAoBS,oBAApB,CAA3B;AACH;;AACD,UAAM,IAAIC,KAAJ,oCAA2CF,UAA3C,4CAAN;AACH,GAV4B;;AAAA;AAAA,kBAthBlBd,YAshBkB;AAAA,0BAlhBlBK,oBAkhBkB;AAAA,0BA9gBlBM;AA8gBkB;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA,GAAtB","sourcesContent":["/* global _WORKLET */\n/**\n * Copied from:\n * react-native/Libraries/StyleSheet/normalizeColor.js\n * react-native/Libraries/StyleSheet/processColor.js\n * https://github.com/wcandillon/react-native-redash/blob/master/src/Colors.ts\n */\n/* eslint no-bitwise: 0 */\nimport { Platform } from 'react-native';\nimport { makeRemote, makeShareable, isConfigured } from './core';\nimport { interpolate } from './interpolation';\n// @ts-ignore JS file\nimport { Extrapolate } from '../reanimated1/derived';\n// var INTEGER = '[-+]?\\\\d+';\nconst NUMBER = '[-+]?\\\\d*\\\\.?\\\\d+';\nconst PERCENTAGE = NUMBER + '%';\nfunction call(...args) {\n 'worklet';\n return '\\\\(\\\\s*(' + args.join(')\\\\s*,\\\\s*(') + ')\\\\s*\\\\)';\n}\n// matchers use RegExp objects which needs to be created separately on JS and on\n// the UI thread. We keep separate cache of Regexes for UI and JS using the below\n// objects, then pick the right cache in getMatchers() method.\nconst jsCachedMatchers = {};\nconst uiCachedMatchers = !isConfigured() ? null : makeRemote({});\nfunction getMatchers() {\n 'worklet';\n const cachedMatchers = _WORKLET\n ? uiCachedMatchers\n : jsCachedMatchers;\n if (cachedMatchers.rgb === undefined) {\n cachedMatchers.rgb = new RegExp('rgb' + call(NUMBER, NUMBER, NUMBER));\n cachedMatchers.rgba = new RegExp('rgba' + call(NUMBER, NUMBER, NUMBER, NUMBER));\n cachedMatchers.hsl = new RegExp('hsl' + call(NUMBER, PERCENTAGE, PERCENTAGE));\n cachedMatchers.hsla = new RegExp('hsla' + call(NUMBER, PERCENTAGE, PERCENTAGE, NUMBER));\n cachedMatchers.hex3 = /^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/;\n cachedMatchers.hex4 = /^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/;\n cachedMatchers.hex6 = /^#([0-9a-fA-F]{6})$/;\n cachedMatchers.hex8 = /^#([0-9a-fA-F]{8})$/;\n }\n return cachedMatchers;\n}\n// cachedMatchers is lazy loaded and it is frozen when worklet is being created,\n// it is possible to call getMatchers() when the object is frozen, then cachedMatchers\n// has no assigned regexes\ngetMatchers();\nfunction hue2rgb(p, q, t) {\n 'worklet';\n if (t < 0) {\n t += 1;\n }\n if (t > 1) {\n t -= 1;\n }\n if (t < 1 / 6) {\n return p + (q - p) * 6 * t;\n }\n if (t < 1 / 2) {\n return q;\n }\n if (t < 2 / 3) {\n return p + (q - p) * (2 / 3 - t) * 6;\n }\n return p;\n}\nfunction hslToRgb(h, s, l) {\n 'worklet';\n const q = l < 0.5 ? l * (1 + s) : l + s - l * s;\n const p = 2 * l - q;\n const r = hue2rgb(p, q, h + 1 / 3);\n const g = hue2rgb(p, q, h);\n const b = hue2rgb(p, q, h - 1 / 3);\n return ((Math.round(r * 255) << 24) |\n (Math.round(g * 255) << 16) |\n (Math.round(b * 255) << 8));\n}\nfunction parse255(str) {\n 'worklet';\n const int = Number.parseInt(str, 10);\n if (int < 0) {\n return 0;\n }\n if (int > 255) {\n return 255;\n }\n return int;\n}\nfunction parse360(str) {\n 'worklet';\n const int = Number.parseFloat(str);\n return (((int % 360) + 360) % 360) / 360;\n}\nfunction parse1(str) {\n 'worklet';\n const num = Number.parseFloat(str);\n if (num < 0) {\n return 0;\n }\n if (num > 1) {\n return 255;\n }\n return Math.round(num * 255);\n}\nfunction parsePercentage(str) {\n 'worklet';\n // parseFloat conveniently ignores the final %\n const int = Number.parseFloat(str);\n if (int < 0) {\n return 0;\n }\n if (int > 100) {\n return 1;\n }\n return int / 100;\n}\nconst names = !isConfigured()\n ? null\n : makeShareable({\n transparent: 0x00000000,\n // http://www.w3.org/TR/css3-color/#svg-color\n aliceblue: 0xf0f8ffff,\n antiquewhite: 0xfaebd7ff,\n aqua: 0x00ffffff,\n aquamarine: 0x7fffd4ff,\n azure: 0xf0ffffff,\n beige: 0xf5f5dcff,\n bisque: 0xffe4c4ff,\n black: 0x000000ff,\n blanchedalmond: 0xffebcdff,\n blue: 0x0000ffff,\n blueviolet: 0x8a2be2ff,\n brown: 0xa52a2aff,\n burlywood: 0xdeb887ff,\n burntsienna: 0xea7e5dff,\n cadetblue: 0x5f9ea0ff,\n chartreuse: 0x7fff00ff,\n chocolate: 0xd2691eff,\n coral: 0xff7f50ff,\n cornflowerblue: 0x6495edff,\n cornsilk: 0xfff8dcff,\n crimson: 0xdc143cff,\n cyan: 0x00ffffff,\n darkblue: 0x00008bff,\n darkcyan: 0x008b8bff,\n darkgoldenrod: 0xb8860bff,\n darkgray: 0xa9a9a9ff,\n darkgreen: 0x006400ff,\n darkgrey: 0xa9a9a9ff,\n darkkhaki: 0xbdb76bff,\n darkmagenta: 0x8b008bff,\n darkolivegreen: 0x556b2fff,\n darkorange: 0xff8c00ff,\n darkorchid: 0x9932ccff,\n darkred: 0x8b0000ff,\n darksalmon: 0xe9967aff,\n darkseagreen: 0x8fbc8fff,\n darkslateblue: 0x483d8bff,\n darkslategray: 0x2f4f4fff,\n darkslategrey: 0x2f4f4fff,\n darkturquoise: 0x00ced1ff,\n darkviolet: 0x9400d3ff,\n deeppink: 0xff1493ff,\n deepskyblue: 0x00bfffff,\n dimgray: 0x696969ff,\n dimgrey: 0x696969ff,\n dodgerblue: 0x1e90ffff,\n firebrick: 0xb22222ff,\n floralwhite: 0xfffaf0ff,\n forestgreen: 0x228b22ff,\n fuchsia: 0xff00ffff,\n gainsboro: 0xdcdcdcff,\n ghostwhite: 0xf8f8ffff,\n gold: 0xffd700ff,\n goldenrod: 0xdaa520ff,\n gray: 0x808080ff,\n green: 0x008000ff,\n greenyellow: 0xadff2fff,\n grey: 0x808080ff,\n honeydew: 0xf0fff0ff,\n hotpink: 0xff69b4ff,\n indianred: 0xcd5c5cff,\n indigo: 0x4b0082ff,\n ivory: 0xfffff0ff,\n khaki: 0xf0e68cff,\n lavender: 0xe6e6faff,\n lavenderblush: 0xfff0f5ff,\n lawngreen: 0x7cfc00ff,\n lemonchiffon: 0xfffacdff,\n lightblue: 0xadd8e6ff,\n lightcoral: 0xf08080ff,\n lightcyan: 0xe0ffffff,\n lightgoldenrodyellow: 0xfafad2ff,\n lightgray: 0xd3d3d3ff,\n lightgreen: 0x90ee90ff,\n lightgrey: 0xd3d3d3ff,\n lightpink: 0xffb6c1ff,\n lightsalmon: 0xffa07aff,\n lightseagreen: 0x20b2aaff,\n lightskyblue: 0x87cefaff,\n lightslategray: 0x778899ff,\n lightslategrey: 0x778899ff,\n lightsteelblue: 0xb0c4deff,\n lightyellow: 0xffffe0ff,\n lime: 0x00ff00ff,\n limegreen: 0x32cd32ff,\n linen: 0xfaf0e6ff,\n magenta: 0xff00ffff,\n maroon: 0x800000ff,\n mediumaquamarine: 0x66cdaaff,\n mediumblue: 0x0000cdff,\n mediumorchid: 0xba55d3ff,\n mediumpurple: 0x9370dbff,\n mediumseagreen: 0x3cb371ff,\n mediumslateblue: 0x7b68eeff,\n mediumspringgreen: 0x00fa9aff,\n mediumturquoise: 0x48d1ccff,\n mediumvioletred: 0xc71585ff,\n midnightblue: 0x191970ff,\n mintcream: 0xf5fffaff,\n mistyrose: 0xffe4e1ff,\n moccasin: 0xffe4b5ff,\n navajowhite: 0xffdeadff,\n navy: 0x000080ff,\n oldlace: 0xfdf5e6ff,\n olive: 0x808000ff,\n olivedrab: 0x6b8e23ff,\n orange: 0xffa500ff,\n orangered: 0xff4500ff,\n orchid: 0xda70d6ff,\n palegoldenrod: 0xeee8aaff,\n palegreen: 0x98fb98ff,\n paleturquoise: 0xafeeeeff,\n palevioletred: 0xdb7093ff,\n papayawhip: 0xffefd5ff,\n peachpuff: 0xffdab9ff,\n peru: 0xcd853fff,\n pink: 0xffc0cbff,\n plum: 0xdda0ddff,\n powderblue: 0xb0e0e6ff,\n purple: 0x800080ff,\n rebeccapurple: 0x663399ff,\n red: 0xff0000ff,\n rosybrown: 0xbc8f8fff,\n royalblue: 0x4169e1ff,\n saddlebrown: 0x8b4513ff,\n salmon: 0xfa8072ff,\n sandybrown: 0xf4a460ff,\n seagreen: 0x2e8b57ff,\n seashell: 0xfff5eeff,\n sienna: 0xa0522dff,\n silver: 0xc0c0c0ff,\n skyblue: 0x87ceebff,\n slateblue: 0x6a5acdff,\n slategray: 0x708090ff,\n slategrey: 0x708090ff,\n snow: 0xfffafaff,\n springgreen: 0x00ff7fff,\n steelblue: 0x4682b4ff,\n tan: 0xd2b48cff,\n teal: 0x008080ff,\n thistle: 0xd8bfd8ff,\n tomato: 0xff6347ff,\n turquoise: 0x40e0d0ff,\n violet: 0xee82eeff,\n wheat: 0xf5deb3ff,\n white: 0xffffffff,\n whitesmoke: 0xf5f5f5ff,\n yellow: 0xffff00ff,\n yellowgreen: 0x9acd32ff,\n });\nfunction normalizeColor(color) {\n 'worklet';\n if (typeof color === 'number') {\n if (color >>> 0 === color && color >= 0 && color <= 0xffffffff) {\n return color;\n }\n return null;\n }\n if (typeof color !== 'string') {\n return null;\n }\n const matchers = getMatchers();\n let match;\n // Ordered based on occurrences on Facebook codebase\n if ((match = matchers.hex6.exec(color))) {\n return Number.parseInt(match[1] + 'ff', 16) >>> 0;\n }\n if (names[color] !== undefined) {\n return names[color];\n }\n if ((match = matchers.rgb.exec(color))) {\n return (\n // b\n ((parse255(match[1]) << 24) | // r\n (parse255(match[2]) << 16) | // g\n (parse255(match[3]) << 8) |\n 0x000000ff) >>> // a\n 0);\n }\n if ((match = matchers.rgba.exec(color))) {\n return (\n // b\n ((parse255(match[1]) << 24) | // r\n (parse255(match[2]) << 16) | // g\n (parse255(match[3]) << 8) |\n parse1(match[4])) >>> // a\n 0);\n }\n if ((match = matchers.hex3.exec(color))) {\n return (Number.parseInt(match[1] +\n match[1] + // r\n match[2] +\n match[2] + // g\n match[3] +\n match[3] + // b\n 'ff', // a\n 16) >>> 0);\n }\n // https://drafts.csswg.org/css-color-4/#hex-notation\n if ((match = matchers.hex8.exec(color))) {\n return Number.parseInt(match[1], 16) >>> 0;\n }\n if ((match = matchers.hex4.exec(color))) {\n return (Number.parseInt(match[1] +\n match[1] + // r\n match[2] +\n match[2] + // g\n match[3] +\n match[3] + // b\n match[4] +\n match[4], // a\n 16) >>> 0);\n }\n if ((match = matchers.hsl.exec(color))) {\n return ((hslToRgb(parse360(match[1]), // h\n parsePercentage(match[2]), // s\n parsePercentage(match[3]) // l\n ) |\n 0x000000ff) >>> // a\n 0);\n }\n if ((match = matchers.hsla.exec(color))) {\n return ((hslToRgb(parse360(match[1]), // h\n parsePercentage(match[2]), // s\n parsePercentage(match[3]) // l\n ) |\n parse1(match[4])) >>> // a\n 0);\n }\n return null;\n}\nexport const opacity = (c) => {\n 'worklet';\n return ((c >> 24) & 255) / 255;\n};\nexport const red = (c) => {\n 'worklet';\n return (c >> 16) & 255;\n};\nexport const green = (c) => {\n 'worklet';\n return (c >> 8) & 255;\n};\nexport const blue = (c) => {\n 'worklet';\n return c & 255;\n};\nexport const rgbaColor = (r, g, b, alpha = 1) => {\n 'worklet';\n if (Platform.OS === 'web' || !_WORKLET) {\n return `rgba(${r}, ${g}, ${b}, ${alpha})`;\n }\n const a = Math.round(alpha * 255);\n const c = a * (1 << 24) +\n Math.round(r) * (1 << 16) +\n Math.round(g) * (1 << 8) +\n Math.round(b);\n if (Platform.OS === 'android') {\n // on Android color is represented as signed 32 bit int\n return c < (1 << 31) >>> 0 ? c : c - Math.pow(2, 32);\n }\n return c;\n};\nfunction RGBtoHSV(r, g, b) {\n 'worklet';\n /* eslint-disable */\n if (arguments.length === 1) {\n g = r.g;\n b = r.b;\n r = r.r;\n }\n const max = Math.max(r, g, b);\n const min = Math.min(r, g, b);\n const d = max - min;\n const s = max === 0 ? 0 : d / max;\n const v = max / 255;\n let h;\n switch (max) {\n default:\n /* fallthrough */\n case min:\n h = 0;\n break;\n case r:\n h = g - b + d * (g < b ? 6 : 0);\n h /= 6 * d;\n break;\n case g:\n h = b - r + d * 2;\n h /= 6 * d;\n break;\n case b:\n h = r - g + d * 4;\n h /= 6 * d;\n break;\n }\n return {\n h: h,\n s: s,\n v: v,\n };\n /* eslint-enable */\n}\nfunction HSVtoRGB(h, s, v) {\n 'worklet';\n /* eslint-disable */\n var r, g, b, i, f, p, q, t;\n if (arguments.length === 1) {\n s = h.s;\n v = h.v;\n h = h.h;\n }\n i = Math.floor(h * 6);\n f = h * 6 - i;\n p = v * (1 - s);\n q = v * (1 - f * s);\n t = v * (1 - (1 - f) * s);\n switch (i % 6) {\n case 0:\n (r = v), (g = t), (b = p);\n break;\n case 1:\n (r = q), (g = v), (b = p);\n break;\n case 2:\n (r = p), (g = v), (b = t);\n break;\n case 3:\n (r = p), (g = q), (b = v);\n break;\n case 4:\n (r = t), (g = p), (b = v);\n break;\n case 5:\n (r = v), (g = p), (b = q);\n break;\n }\n return {\n r: Math.round(r * 255),\n g: Math.round(g * 255),\n b: Math.round(b * 255),\n };\n /* eslint-enable */\n}\nexport const hsvToColor = (h, s, v) => {\n 'worklet';\n const { r, g, b } = HSVtoRGB(h, s, v);\n return rgbaColor(r, g, b);\n};\nexport function processColorInitially(color) {\n 'worklet';\n if (color === null || color === undefined || typeof color === 'number') {\n return color;\n }\n let normalizedColor = normalizeColor(color);\n if (normalizedColor === null || normalizedColor === undefined) {\n return undefined;\n }\n if (typeof normalizedColor !== 'number') {\n return null;\n }\n normalizedColor = ((normalizedColor << 24) | (normalizedColor >>> 8)) >>> 0; // argb\n return normalizedColor;\n}\nexport function isColor(value) {\n 'worklet';\n if (typeof value !== 'string') {\n return false;\n }\n return processColorInitially(value) != null;\n}\nexport function processColor(color) {\n 'worklet';\n let normalizedColor = processColorInitially(color);\n if (normalizedColor === null || normalizedColor === undefined) {\n return undefined;\n }\n if (typeof normalizedColor !== 'number') {\n return null;\n }\n if (Platform.OS === 'android') {\n // Android use 32 bit *signed* integer to represent the color\n // We utilize the fact that bitwise operations in JS also operates on\n // signed 32 bit integers, so that we can use those to convert from\n // *unsigned* to *signed* 32bit int that way.\n normalizedColor = normalizedColor | 0x0;\n }\n return normalizedColor;\n}\nexport function convertToHSVA(color) {\n 'worklet';\n const processedColor = processColorInitially(color); // argb;\n const a = (processedColor >>> 24) / 255;\n const r = (processedColor << 8) >>> 24;\n const g = (processedColor << 16) >>> 24;\n const b = (processedColor << 24) >>> 24;\n const { h, s, v } = RGBtoHSV(r, g, b);\n return [h, s, v, a];\n}\nexport function toRGBA(HSVA) {\n 'worklet';\n const { r, g, b } = HSVtoRGB(HSVA[0], HSVA[1], HSVA[2]);\n return `rgba(${r}, ${g}, ${b}, ${HSVA[3]})`;\n}\nconst interpolateColorsHSV = (value, inputRange, colors) => {\n 'worklet';\n const colorsAsHSV = colors.map((c) => RGBtoHSV(c));\n const h = interpolate(value, inputRange, colorsAsHSV.map((c) => c.h), Extrapolate.CLAMP);\n const s = interpolate(value, inputRange, colorsAsHSV.map((c) => c.s), Extrapolate.CLAMP);\n const v = interpolate(value, inputRange, colorsAsHSV.map((c) => c.v), Extrapolate.CLAMP);\n return hsvToColor(h, s, v);\n};\nconst interpolateColorsRGB = (value, inputRange, colors) => {\n 'worklet';\n const r = Math.round(interpolate(value, inputRange, colors.map((c) => red(c)), Extrapolate.CLAMP));\n const g = Math.round(interpolate(value, inputRange, colors.map((c) => green(c)), Extrapolate.CLAMP));\n const b = Math.round(interpolate(value, inputRange, colors.map((c) => blue(c)), Extrapolate.CLAMP));\n const a = interpolate(value, inputRange, colors.map((c) => opacity(c)), Extrapolate.CLAMP);\n return rgbaColor(r, g, b, a);\n};\nexport const interpolateColor = (value, inputRange, outputRange, colorSpace = 'RGB') => {\n 'worklet';\n const processedOutputRange = outputRange.map((c) => processColor(c));\n if (colorSpace === 'HSV') {\n return interpolateColorsHSV(value, inputRange, processedOutputRange);\n }\n if (colorSpace === 'RGB') {\n return interpolateColorsRGB(value, inputRange, processedOutputRange);\n }\n throw new Error(`invalid color space provided: ${colorSpace}. Supported values are: ['RGB', 'HSV']`);\n};\n"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"import { useSharedValue } from \"react-native-reanimated\";\nexport var useVector = function useVector() {\n var x1 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;\n var y1 = arguments.length > 1 ? arguments[1] : undefined;\n var x = useSharedValue(x1);\n var y = useSharedValue(y1 != null ? y1 : x1);\n return {\n x: x,\n y: y\n };\n};\n\nvar create = function () {\n var _f = function _f(x, y) {\n var _ref;\n\n return {\n x: x != null ? x : 0,\n y: (_ref = y != null ? y : x) != null ? _ref : 0\n };\n };\n\n _f._closure = {};\n _f.asString = \"function create(x,y){var _ref;return{x:x!=null?x:0,y:(_ref=y!=null?y:x)!=null?_ref:0};}\";\n _f.__workletHash = 10087565403559;\n _f.__location = \"/Users/jake/git/react-native-candlestick-chart/node_modules/react-native-redash/lib/module/Vectors.js (1:301)\";\n\n global.__reanimatedWorkletInit(_f);\n\n return _f;\n}();\n\nexport var vec = {\n create: create\n};","map":{"version":3,"sources":["Vectors.ts"],"names":["useVector","x1","y1","x","useSharedValue","y","create","vec"],"mappings":"AAAA,SAAA,cAAA,QAAA,yBAAA;AAkBA,OAAO,IAAMA,SAAS,GAATA,SAAAA,SAAAA,GAG8B;AAFzCC,MAAAA,EAEyC,GAAA,SAAA,CAAA,MAAA,GAAA,CAAA,IAAA,SAAA,CAAA,CAAA,CAAA,KAAA,SAAA,GAAA,SAAA,CAAA,CAAA,CAAA,GAFpC,CAALA;AACAC,MAAAA,EACyC,GAAA,SAAA,CAAA,MAAA,GAAA,CAAA,GAAA,SAAA,CAAA,CAAA,CAAA,GAAA,SADzCA;AAEA,MAAMC,CAAC,GAAGC,cAAc,CAAxB,EAAwB,CAAxB;AACA,MAAMC,CAAC,GAAGD,cAAc,CAACF,EAAD,IAAA,IAACA,GAAD,EAACA,GAAzB,EAAwB,CAAxB;AACA,SAAO;AAAEC,IAAAA,CAAC,EAAH,CAAA;AAAKE,IAAAA,CAAC,EAAb;AAAO,GAAP;AANK,CAAA;;AAoBP,IAAMC,MAAAA;AAAAA,uBAAiB,CAAjBA,EAAiB,CAAjBA,EAAyE;AAAA,QAAA,IAAA;;AAE7E,WAAO;AACLH,MAAAA,CAAC,EAAEA,CAAF,IAAA,IAAEA,GAAF,CAAEA,GADE,CAAA;AAELE,MAAAA,CAAC,EAAA,CAAA,IAAA,GAAEA,CAAF,IAAA,IAAEA,GAAF,CAAEA,GAAF,CAAA,KAAA,IAAA,GAAA,IAAA,GAFH;AAAO,KAAP;AAFF,GAAMC;;AAAAA;AAAAA;AAAAA;AAAAA;;AAAAA;;AAAAA;AAAAA,GAAN;;AAQA,OAAO,IAAMC,GAAG,GAAG;AACjBD,EAAAA,MAAM,EADD;AAAY,CAAZ","sourcesContent":["import Animated, { useSharedValue } from \"react-native-reanimated\";\n\n/**\n * @summary Type representing a vector\n * @example\n export interface Vector<T = number> {\n x: T;\n y: T;\n }\n */\nexport interface Vector<T = number> {\n x: T;\n y: T;\n}\n\n/**\n * @summary Returns a vector of shared values\n */\nexport const useVector = (\n x1 = 0,\n y1?: number\n): Vector<Animated.SharedValue<number>> => {\n const x = useSharedValue(x1);\n const y = useSharedValue(y1 ?? x1);\n return { x, y };\n};\n\ntype Create = {\n (): Vector<0>;\n <T extends Animated.Adaptable<number>>(x: T, y?: T): Vector<T>;\n};\n\n/**\n *\n * @param x\n * @param y\n * @worklet\n */\nconst create: Create = <T extends Animated.Adaptable<number>>(x?: T, y?: T) => {\n \"worklet\";\n return {\n x: x ?? 0,\n y: y ?? x ?? 0,\n };\n};\n\nexport const vec = {\n create,\n};\n"]},"metadata":{},"sourceType":"module"}
@@ -1 +0,0 @@
1
- {"ast":null,"code":"'use strict';\n\nvar NEWTON_ITERATIONS = 4;\nvar NEWTON_MIN_SLOPE = 0.001;\nvar SUBDIVISION_PRECISION = 0.0000001;\nvar SUBDIVISION_MAX_ITERATIONS = 10;\nvar kSplineTableSize = 11;\nvar kSampleStepSize = 1.0 / (kSplineTableSize - 1.0);\nvar float32ArraySupported = typeof Float32Array === 'function';\n\nfunction A(aA1, aA2) {\n return 1.0 - 3.0 * aA2 + 3.0 * aA1;\n}\n\nfunction B(aA1, aA2) {\n return 3.0 * aA2 - 6.0 * aA1;\n}\n\nfunction C(aA1) {\n return 3.0 * aA1;\n}\n\nfunction calcBezier(aT, aA1, aA2) {\n return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT;\n}\n\nfunction getSlope(aT, aA1, aA2) {\n return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1);\n}\n\nfunction binarySubdivide(aX, _aA, _aB, mX1, mX2) {\n var currentX,\n currentT,\n i = 0,\n aA = _aA,\n aB = _aB;\n\n do {\n currentT = aA + (aB - aA) / 2.0;\n currentX = calcBezier(currentT, mX1, mX2) - aX;\n\n if (currentX > 0.0) {\n aB = currentT;\n } else {\n aA = currentT;\n }\n } while (Math.abs(currentX) > SUBDIVISION_PRECISION && ++i < SUBDIVISION_MAX_ITERATIONS);\n\n return currentT;\n}\n\nfunction newtonRaphsonIterate(aX, _aGuessT, mX1, mX2) {\n var aGuessT = _aGuessT;\n\n for (var i = 0; i < NEWTON_ITERATIONS; ++i) {\n var currentSlope = getSlope(aGuessT, mX1, mX2);\n\n if (currentSlope === 0.0) {\n return aGuessT;\n }\n\n var currentX = calcBezier(aGuessT, mX1, mX2) - aX;\n aGuessT -= currentX / currentSlope;\n }\n\n return aGuessT;\n}\n\nmodule.exports = function bezier(mX1, mY1, mX2, mY2) {\n if (!(mX1 >= 0 && mX1 <= 1 && mX2 >= 0 && mX2 <= 1)) {\n throw new Error('bezier x values must be in [0, 1] range');\n }\n\n var sampleValues = float32ArraySupported ? new Float32Array(kSplineTableSize) : new Array(kSplineTableSize);\n\n if (mX1 !== mY1 || mX2 !== mY2) {\n for (var i = 0; i < kSplineTableSize; ++i) {\n sampleValues[i] = calcBezier(i * kSampleStepSize, mX1, mX2);\n }\n }\n\n function getTForX(aX) {\n var intervalStart = 0.0;\n var currentSample = 1;\n var lastSample = kSplineTableSize - 1;\n\n for (; currentSample !== lastSample && sampleValues[currentSample] <= aX; ++currentSample) {\n intervalStart += kSampleStepSize;\n }\n\n --currentSample;\n var dist = (aX - sampleValues[currentSample]) / (sampleValues[currentSample + 1] - sampleValues[currentSample]);\n var guessForT = intervalStart + dist * kSampleStepSize;\n var initialSlope = getSlope(guessForT, mX1, mX2);\n\n if (initialSlope >= NEWTON_MIN_SLOPE) {\n return newtonRaphsonIterate(aX, guessForT, mX1, mX2);\n } else if (initialSlope === 0.0) {\n return guessForT;\n } else {\n return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize, mX1, mX2);\n }\n }\n\n return function BezierEasing(x) {\n if (mX1 === mY1 && mX2 === mY2) {\n return x;\n }\n\n if (x === 0) {\n return 0;\n }\n\n if (x === 1) {\n return 1;\n }\n\n return calcBezier(getTForX(x), mY1, mY2);\n };\n};","map":{"version":3,"sources":["/Users/jake/git/react-native-candlestick-chart/example/node_modules/react-native-web/dist/vendor/react-native/Animated/bezier.js"],"names":["NEWTON_ITERATIONS","NEWTON_MIN_SLOPE","SUBDIVISION_PRECISION","SUBDIVISION_MAX_ITERATIONS","kSplineTableSize","kSampleStepSize","float32ArraySupported","Float32Array","A","aA1","aA2","B","C","calcBezier","aT","getSlope","binarySubdivide","aX","_aA","_aB","mX1","mX2","currentX","currentT","i","aA","aB","Math","abs","newtonRaphsonIterate","_aGuessT","aGuessT","currentSlope","module","exports","bezier","mY1","mY2","Error","sampleValues","Array","getTForX","intervalStart","currentSample","lastSample","dist","guessForT","initialSlope","BezierEasing","x"],"mappings":"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","sourcesContent":["/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * BezierEasing - use bezier curve for transition easing function\n * https://github.com/gre/bezier-easing\n *\n * \n * @format\n * @copyright 2014-2015 Gaëtan Renaudeau. MIT License.\n */\n'use strict'; // These values are established by empiricism with tests (tradeoff: performance VS precision)\n\nvar NEWTON_ITERATIONS = 4;\nvar NEWTON_MIN_SLOPE = 0.001;\nvar SUBDIVISION_PRECISION = 0.0000001;\nvar SUBDIVISION_MAX_ITERATIONS = 10;\nvar kSplineTableSize = 11;\nvar kSampleStepSize = 1.0 / (kSplineTableSize - 1.0);\nvar float32ArraySupported = typeof Float32Array === 'function';\n\nfunction A(aA1, aA2) {\n return 1.0 - 3.0 * aA2 + 3.0 * aA1;\n}\n\nfunction B(aA1, aA2) {\n return 3.0 * aA2 - 6.0 * aA1;\n}\n\nfunction C(aA1) {\n return 3.0 * aA1;\n} // Returns x(t) given t, x1, and x2, or y(t) given t, y1, and y2.\n\n\nfunction calcBezier(aT, aA1, aA2) {\n return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT;\n} // Returns dx/dt given t, x1, and x2, or dy/dt given t, y1, and y2.\n\n\nfunction getSlope(aT, aA1, aA2) {\n return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1);\n}\n\nfunction binarySubdivide(aX, _aA, _aB, mX1, mX2) {\n var currentX,\n currentT,\n i = 0,\n aA = _aA,\n aB = _aB;\n\n do {\n currentT = aA + (aB - aA) / 2.0;\n currentX = calcBezier(currentT, mX1, mX2) - aX;\n\n if (currentX > 0.0) {\n aB = currentT;\n } else {\n aA = currentT;\n }\n } while (Math.abs(currentX) > SUBDIVISION_PRECISION && ++i < SUBDIVISION_MAX_ITERATIONS);\n\n return currentT;\n}\n\nfunction newtonRaphsonIterate(aX, _aGuessT, mX1, mX2) {\n var aGuessT = _aGuessT;\n\n for (var i = 0; i < NEWTON_ITERATIONS; ++i) {\n var currentSlope = getSlope(aGuessT, mX1, mX2);\n\n if (currentSlope === 0.0) {\n return aGuessT;\n }\n\n var currentX = calcBezier(aGuessT, mX1, mX2) - aX;\n aGuessT -= currentX / currentSlope;\n }\n\n return aGuessT;\n}\n\nmodule.exports = function bezier(mX1, mY1, mX2, mY2) {\n if (!(mX1 >= 0 && mX1 <= 1 && mX2 >= 0 && mX2 <= 1)) {\n throw new Error('bezier x values must be in [0, 1] range');\n } // Precompute samples table\n\n\n var sampleValues = float32ArraySupported ? new Float32Array(kSplineTableSize) : new Array(kSplineTableSize);\n\n if (mX1 !== mY1 || mX2 !== mY2) {\n for (var i = 0; i < kSplineTableSize; ++i) {\n sampleValues[i] = calcBezier(i * kSampleStepSize, mX1, mX2);\n }\n }\n\n function getTForX(aX) {\n var intervalStart = 0.0;\n var currentSample = 1;\n var lastSample = kSplineTableSize - 1;\n\n for (; currentSample !== lastSample && sampleValues[currentSample] <= aX; ++currentSample) {\n intervalStart += kSampleStepSize;\n }\n\n --currentSample; // Interpolate to provide an initial guess for t\n\n var dist = (aX - sampleValues[currentSample]) / (sampleValues[currentSample + 1] - sampleValues[currentSample]);\n var guessForT = intervalStart + dist * kSampleStepSize;\n var initialSlope = getSlope(guessForT, mX1, mX2);\n\n if (initialSlope >= NEWTON_MIN_SLOPE) {\n return newtonRaphsonIterate(aX, guessForT, mX1, mX2);\n } else if (initialSlope === 0.0) {\n return guessForT;\n } else {\n return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize, mX1, mX2);\n }\n }\n\n return function BezierEasing(x) {\n if (mX1 === mY1 && mX2 === mY2) {\n return x; // linear\n } // Because JavaScript number are imprecise, we should guarantee the extremes are right.\n\n\n if (x === 0) {\n return 0;\n }\n\n if (x === 1) {\n return 1;\n }\n\n return calcBezier(getTForX(x), mY1, mY2);\n };\n};"]},"metadata":{},"sourceType":"script"}