pnpm-lock.yaml 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. alova:
  9. specifier: ^3.3.4
  10. version: 3.3.4
  11. antd-mobile:
  12. specifier: ^5.41.1
  13. version: 5.41.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  14. react:
  15. specifier: ^19.2.0
  16. version: 19.2.0
  17. react-dom:
  18. specifier: ^19.2.0
  19. version: 19.2.0(react@19.2.0)
  20. react-router-dom:
  21. specifier: '6'
  22. version: 6.30.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  23. recharts:
  24. specifier: 2.12.7
  25. version: 2.12.7(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  26. devDependencies:
  27. '@types/node':
  28. specifier: ^22.14.0
  29. version: 22.19.0
  30. '@types/react':
  31. specifier: ^19.2.2
  32. version: 19.2.2
  33. '@vitejs/plugin-react':
  34. specifier: ^5.0.0
  35. version: 5.1.0(vite@6.4.1(@types/node@22.19.0)(sass@1.93.3))
  36. sass:
  37. specifier: ^1.93.3
  38. version: 1.93.3
  39. typescript:
  40. specifier: ~5.8.2
  41. version: 5.8.3
  42. vite:
  43. specifier: ^6.2.0
  44. version: 6.4.1(@types/node@22.19.0)(sass@1.93.3)
  45. packages:
  46. '@alova/shared@1.3.1':
  47. resolution: {integrity: sha512-ijSOaFLUFcVzMKSY3avoEE5C03/p9atjMDPBwvNkwnzaCrhv6/m4A121NdadF8YlHCRuifyYfz90IyEdMXTsJg==}
  48. '@babel/code-frame@7.27.1':
  49. resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
  50. engines: {node: '>=6.9.0'}
  51. '@babel/compat-data@7.28.5':
  52. resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
  53. engines: {node: '>=6.9.0'}
  54. '@babel/core@7.28.5':
  55. resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==}
  56. engines: {node: '>=6.9.0'}
  57. '@babel/generator@7.28.5':
  58. resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
  59. engines: {node: '>=6.9.0'}
  60. '@babel/helper-compilation-targets@7.27.2':
  61. resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
  62. engines: {node: '>=6.9.0'}
  63. '@babel/helper-globals@7.28.0':
  64. resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
  65. engines: {node: '>=6.9.0'}
  66. '@babel/helper-module-imports@7.27.1':
  67. resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
  68. engines: {node: '>=6.9.0'}
  69. '@babel/helper-module-transforms@7.28.3':
  70. resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
  71. engines: {node: '>=6.9.0'}
  72. peerDependencies:
  73. '@babel/core': ^7.0.0
  74. '@babel/helper-plugin-utils@7.27.1':
  75. resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
  76. engines: {node: '>=6.9.0'}
  77. '@babel/helper-string-parser@7.27.1':
  78. resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  79. engines: {node: '>=6.9.0'}
  80. '@babel/helper-validator-identifier@7.28.5':
  81. resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
  82. engines: {node: '>=6.9.0'}
  83. '@babel/helper-validator-option@7.27.1':
  84. resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
  85. engines: {node: '>=6.9.0'}
  86. '@babel/helpers@7.28.4':
  87. resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
  88. engines: {node: '>=6.9.0'}
  89. '@babel/parser@7.28.5':
  90. resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
  91. engines: {node: '>=6.0.0'}
  92. hasBin: true
  93. '@babel/plugin-transform-react-jsx-self@7.27.1':
  94. resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
  95. engines: {node: '>=6.9.0'}
  96. peerDependencies:
  97. '@babel/core': ^7.0.0-0
  98. '@babel/plugin-transform-react-jsx-source@7.27.1':
  99. resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
  100. engines: {node: '>=6.9.0'}
  101. peerDependencies:
  102. '@babel/core': ^7.0.0-0
  103. '@babel/runtime@7.28.4':
  104. resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
  105. engines: {node: '>=6.9.0'}
  106. '@babel/template@7.27.2':
  107. resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
  108. engines: {node: '>=6.9.0'}
  109. '@babel/traverse@7.28.5':
  110. resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
  111. engines: {node: '>=6.9.0'}
  112. '@babel/types@7.28.5':
  113. resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
  114. engines: {node: '>=6.9.0'}
  115. '@esbuild/aix-ppc64@0.25.12':
  116. resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
  117. engines: {node: '>=18'}
  118. cpu: [ppc64]
  119. os: [aix]
  120. '@esbuild/android-arm64@0.25.12':
  121. resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
  122. engines: {node: '>=18'}
  123. cpu: [arm64]
  124. os: [android]
  125. '@esbuild/android-arm@0.25.12':
  126. resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
  127. engines: {node: '>=18'}
  128. cpu: [arm]
  129. os: [android]
  130. '@esbuild/android-x64@0.25.12':
  131. resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
  132. engines: {node: '>=18'}
  133. cpu: [x64]
  134. os: [android]
  135. '@esbuild/darwin-arm64@0.25.12':
  136. resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
  137. engines: {node: '>=18'}
  138. cpu: [arm64]
  139. os: [darwin]
  140. '@esbuild/darwin-x64@0.25.12':
  141. resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
  142. engines: {node: '>=18'}
  143. cpu: [x64]
  144. os: [darwin]
  145. '@esbuild/freebsd-arm64@0.25.12':
  146. resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
  147. engines: {node: '>=18'}
  148. cpu: [arm64]
  149. os: [freebsd]
  150. '@esbuild/freebsd-x64@0.25.12':
  151. resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
  152. engines: {node: '>=18'}
  153. cpu: [x64]
  154. os: [freebsd]
  155. '@esbuild/linux-arm64@0.25.12':
  156. resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
  157. engines: {node: '>=18'}
  158. cpu: [arm64]
  159. os: [linux]
  160. '@esbuild/linux-arm@0.25.12':
  161. resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
  162. engines: {node: '>=18'}
  163. cpu: [arm]
  164. os: [linux]
  165. '@esbuild/linux-ia32@0.25.12':
  166. resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
  167. engines: {node: '>=18'}
  168. cpu: [ia32]
  169. os: [linux]
  170. '@esbuild/linux-loong64@0.25.12':
  171. resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
  172. engines: {node: '>=18'}
  173. cpu: [loong64]
  174. os: [linux]
  175. '@esbuild/linux-mips64el@0.25.12':
  176. resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
  177. engines: {node: '>=18'}
  178. cpu: [mips64el]
  179. os: [linux]
  180. '@esbuild/linux-ppc64@0.25.12':
  181. resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
  182. engines: {node: '>=18'}
  183. cpu: [ppc64]
  184. os: [linux]
  185. '@esbuild/linux-riscv64@0.25.12':
  186. resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
  187. engines: {node: '>=18'}
  188. cpu: [riscv64]
  189. os: [linux]
  190. '@esbuild/linux-s390x@0.25.12':
  191. resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
  192. engines: {node: '>=18'}
  193. cpu: [s390x]
  194. os: [linux]
  195. '@esbuild/linux-x64@0.25.12':
  196. resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
  197. engines: {node: '>=18'}
  198. cpu: [x64]
  199. os: [linux]
  200. '@esbuild/netbsd-arm64@0.25.12':
  201. resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
  202. engines: {node: '>=18'}
  203. cpu: [arm64]
  204. os: [netbsd]
  205. '@esbuild/netbsd-x64@0.25.12':
  206. resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
  207. engines: {node: '>=18'}
  208. cpu: [x64]
  209. os: [netbsd]
  210. '@esbuild/openbsd-arm64@0.25.12':
  211. resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
  212. engines: {node: '>=18'}
  213. cpu: [arm64]
  214. os: [openbsd]
  215. '@esbuild/openbsd-x64@0.25.12':
  216. resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
  217. engines: {node: '>=18'}
  218. cpu: [x64]
  219. os: [openbsd]
  220. '@esbuild/openharmony-arm64@0.25.12':
  221. resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
  222. engines: {node: '>=18'}
  223. cpu: [arm64]
  224. os: [openharmony]
  225. '@esbuild/sunos-x64@0.25.12':
  226. resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
  227. engines: {node: '>=18'}
  228. cpu: [x64]
  229. os: [sunos]
  230. '@esbuild/win32-arm64@0.25.12':
  231. resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
  232. engines: {node: '>=18'}
  233. cpu: [arm64]
  234. os: [win32]
  235. '@esbuild/win32-ia32@0.25.12':
  236. resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
  237. engines: {node: '>=18'}
  238. cpu: [ia32]
  239. os: [win32]
  240. '@esbuild/win32-x64@0.25.12':
  241. resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
  242. engines: {node: '>=18'}
  243. cpu: [x64]
  244. os: [win32]
  245. '@floating-ui/core@1.7.3':
  246. resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
  247. '@floating-ui/dom@1.7.4':
  248. resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
  249. '@floating-ui/utils@0.2.10':
  250. resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
  251. '@jridgewell/gen-mapping@0.3.13':
  252. resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
  253. '@jridgewell/remapping@2.3.5':
  254. resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
  255. '@jridgewell/resolve-uri@3.1.2':
  256. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  257. engines: {node: '>=6.0.0'}
  258. '@jridgewell/sourcemap-codec@1.5.5':
  259. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  260. '@jridgewell/trace-mapping@0.3.31':
  261. resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
  262. '@parcel/watcher-android-arm64@2.5.1':
  263. resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
  264. engines: {node: '>= 10.0.0'}
  265. cpu: [arm64]
  266. os: [android]
  267. '@parcel/watcher-darwin-arm64@2.5.1':
  268. resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
  269. engines: {node: '>= 10.0.0'}
  270. cpu: [arm64]
  271. os: [darwin]
  272. '@parcel/watcher-darwin-x64@2.5.1':
  273. resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
  274. engines: {node: '>= 10.0.0'}
  275. cpu: [x64]
  276. os: [darwin]
  277. '@parcel/watcher-freebsd-x64@2.5.1':
  278. resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
  279. engines: {node: '>= 10.0.0'}
  280. cpu: [x64]
  281. os: [freebsd]
  282. '@parcel/watcher-linux-arm-glibc@2.5.1':
  283. resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
  284. engines: {node: '>= 10.0.0'}
  285. cpu: [arm]
  286. os: [linux]
  287. libc: [glibc]
  288. '@parcel/watcher-linux-arm-musl@2.5.1':
  289. resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
  290. engines: {node: '>= 10.0.0'}
  291. cpu: [arm]
  292. os: [linux]
  293. libc: [musl]
  294. '@parcel/watcher-linux-arm64-glibc@2.5.1':
  295. resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
  296. engines: {node: '>= 10.0.0'}
  297. cpu: [arm64]
  298. os: [linux]
  299. libc: [glibc]
  300. '@parcel/watcher-linux-arm64-musl@2.5.1':
  301. resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
  302. engines: {node: '>= 10.0.0'}
  303. cpu: [arm64]
  304. os: [linux]
  305. libc: [musl]
  306. '@parcel/watcher-linux-x64-glibc@2.5.1':
  307. resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
  308. engines: {node: '>= 10.0.0'}
  309. cpu: [x64]
  310. os: [linux]
  311. libc: [glibc]
  312. '@parcel/watcher-linux-x64-musl@2.5.1':
  313. resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
  314. engines: {node: '>= 10.0.0'}
  315. cpu: [x64]
  316. os: [linux]
  317. libc: [musl]
  318. '@parcel/watcher-win32-arm64@2.5.1':
  319. resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
  320. engines: {node: '>= 10.0.0'}
  321. cpu: [arm64]
  322. os: [win32]
  323. '@parcel/watcher-win32-ia32@2.5.1':
  324. resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
  325. engines: {node: '>= 10.0.0'}
  326. cpu: [ia32]
  327. os: [win32]
  328. '@parcel/watcher-win32-x64@2.5.1':
  329. resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
  330. engines: {node: '>= 10.0.0'}
  331. cpu: [x64]
  332. os: [win32]
  333. '@parcel/watcher@2.5.1':
  334. resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
  335. engines: {node: '>= 10.0.0'}
  336. '@rc-component/mini-decimal@1.1.0':
  337. resolution: {integrity: sha512-jS4E7T9Li2GuYwI6PyiVXmxTiM6b07rlD9Ge8uGZSCz3WlzcG5ZK7g5bbuKNeZ9pgUuPK/5guV781ujdVpm4HQ==}
  338. engines: {node: '>=8.x'}
  339. '@react-spring/animated@9.6.1':
  340. resolution: {integrity: sha512-ls/rJBrAqiAYozjLo5EPPLLOb1LM0lNVQcXODTC1SMtS6DbuBCPaKco5svFUQFMP2dso3O+qcC4k9FsKc0KxMQ==}
  341. peerDependencies:
  342. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  343. '@react-spring/core@9.6.1':
  344. resolution: {integrity: sha512-3HAAinAyCPessyQNNXe5W0OHzRfa8Yo5P748paPcmMowZ/4sMfaZ2ZB6e5x5khQI8NusOHj8nquoutd6FRY5WQ==}
  345. peerDependencies:
  346. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  347. '@react-spring/rafz@9.6.1':
  348. resolution: {integrity: sha512-v6qbgNRpztJFFfSE3e2W1Uz+g8KnIBs6SmzCzcVVF61GdGfGOuBrbjIcp+nUz301awVmREKi4eMQb2Ab2gGgyQ==}
  349. '@react-spring/shared@9.6.1':
  350. resolution: {integrity: sha512-PBFBXabxFEuF8enNLkVqMC9h5uLRBo6GQhRMQT/nRTnemVENimgRd+0ZT4yFnAQ0AxWNiJfX3qux+bW2LbG6Bw==}
  351. peerDependencies:
  352. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  353. '@react-spring/types@9.6.1':
  354. resolution: {integrity: sha512-POu8Mk0hIU3lRXB3bGIGe4VHIwwDsQyoD1F394OK7STTiX9w4dG3cTLljjYswkQN+hDSHRrj4O36kuVa7KPU8Q==}
  355. '@react-spring/web@9.6.1':
  356. resolution: {integrity: sha512-X2zR6q2Z+FjsWfGAmAXlQaoUHbPmfuCaXpuM6TcwXPpLE1ZD4A1eys/wpXboFQmDkjnrlTmKvpVna1MjWpZ5Hw==}
  357. peerDependencies:
  358. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  359. react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
  360. '@remix-run/router@1.23.0':
  361. resolution: {integrity: sha512-O3rHJzAQKamUz1fvE0Qaw0xSFqsA/yafi2iqeE0pvdFtCO1viYx8QL6f3Ln/aCCTLxs68SLf0KPM9eSeM8yBnA==}
  362. engines: {node: '>=14.0.0'}
  363. '@rolldown/pluginutils@1.0.0-beta.43':
  364. resolution: {integrity: sha512-5Uxg7fQUCmfhax7FJke2+8B6cqgeUJUD9o2uXIKXhD+mG0mL6NObmVoi9wXEU1tY89mZKgAYA6fTbftx3q2ZPQ==}
  365. '@rollup/rollup-android-arm-eabi@4.52.5':
  366. resolution: {integrity: sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ==}
  367. cpu: [arm]
  368. os: [android]
  369. '@rollup/rollup-android-arm64@4.52.5':
  370. resolution: {integrity: sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==}
  371. cpu: [arm64]
  372. os: [android]
  373. '@rollup/rollup-darwin-arm64@4.52.5':
  374. resolution: {integrity: sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==}
  375. cpu: [arm64]
  376. os: [darwin]
  377. '@rollup/rollup-darwin-x64@4.52.5':
  378. resolution: {integrity: sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==}
  379. cpu: [x64]
  380. os: [darwin]
  381. '@rollup/rollup-freebsd-arm64@4.52.5':
  382. resolution: {integrity: sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==}
  383. cpu: [arm64]
  384. os: [freebsd]
  385. '@rollup/rollup-freebsd-x64@4.52.5':
  386. resolution: {integrity: sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==}
  387. cpu: [x64]
  388. os: [freebsd]
  389. '@rollup/rollup-linux-arm-gnueabihf@4.52.5':
  390. resolution: {integrity: sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==}
  391. cpu: [arm]
  392. os: [linux]
  393. libc: [glibc]
  394. '@rollup/rollup-linux-arm-musleabihf@4.52.5':
  395. resolution: {integrity: sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==}
  396. cpu: [arm]
  397. os: [linux]
  398. libc: [musl]
  399. '@rollup/rollup-linux-arm64-gnu@4.52.5':
  400. resolution: {integrity: sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==}
  401. cpu: [arm64]
  402. os: [linux]
  403. libc: [glibc]
  404. '@rollup/rollup-linux-arm64-musl@4.52.5':
  405. resolution: {integrity: sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==}
  406. cpu: [arm64]
  407. os: [linux]
  408. libc: [musl]
  409. '@rollup/rollup-linux-loong64-gnu@4.52.5':
  410. resolution: {integrity: sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==}
  411. cpu: [loong64]
  412. os: [linux]
  413. libc: [glibc]
  414. '@rollup/rollup-linux-ppc64-gnu@4.52.5':
  415. resolution: {integrity: sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==}
  416. cpu: [ppc64]
  417. os: [linux]
  418. libc: [glibc]
  419. '@rollup/rollup-linux-riscv64-gnu@4.52.5':
  420. resolution: {integrity: sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==}
  421. cpu: [riscv64]
  422. os: [linux]
  423. libc: [glibc]
  424. '@rollup/rollup-linux-riscv64-musl@4.52.5':
  425. resolution: {integrity: sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==}
  426. cpu: [riscv64]
  427. os: [linux]
  428. libc: [musl]
  429. '@rollup/rollup-linux-s390x-gnu@4.52.5':
  430. resolution: {integrity: sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==}
  431. cpu: [s390x]
  432. os: [linux]
  433. libc: [glibc]
  434. '@rollup/rollup-linux-x64-gnu@4.52.5':
  435. resolution: {integrity: sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==}
  436. cpu: [x64]
  437. os: [linux]
  438. libc: [glibc]
  439. '@rollup/rollup-linux-x64-musl@4.52.5':
  440. resolution: {integrity: sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==}
  441. cpu: [x64]
  442. os: [linux]
  443. libc: [musl]
  444. '@rollup/rollup-openharmony-arm64@4.52.5':
  445. resolution: {integrity: sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==}
  446. cpu: [arm64]
  447. os: [openharmony]
  448. '@rollup/rollup-win32-arm64-msvc@4.52.5':
  449. resolution: {integrity: sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==}
  450. cpu: [arm64]
  451. os: [win32]
  452. '@rollup/rollup-win32-ia32-msvc@4.52.5':
  453. resolution: {integrity: sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==}
  454. cpu: [ia32]
  455. os: [win32]
  456. '@rollup/rollup-win32-x64-gnu@4.52.5':
  457. resolution: {integrity: sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==}
  458. cpu: [x64]
  459. os: [win32]
  460. '@rollup/rollup-win32-x64-msvc@4.52.5':
  461. resolution: {integrity: sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg==}
  462. cpu: [x64]
  463. os: [win32]
  464. '@types/babel__core@7.20.5':
  465. resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
  466. '@types/babel__generator@7.27.0':
  467. resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
  468. '@types/babel__template@7.4.4':
  469. resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
  470. '@types/babel__traverse@7.28.0':
  471. resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
  472. '@types/d3-array@3.2.2':
  473. resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==}
  474. '@types/d3-color@3.1.3':
  475. resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
  476. '@types/d3-ease@3.0.2':
  477. resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
  478. '@types/d3-interpolate@3.0.4':
  479. resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
  480. '@types/d3-path@3.1.1':
  481. resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
  482. '@types/d3-scale@4.0.9':
  483. resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
  484. '@types/d3-shape@3.1.7':
  485. resolution: {integrity: sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==}
  486. '@types/d3-time@3.0.4':
  487. resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
  488. '@types/d3-timer@3.0.2':
  489. resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
  490. '@types/estree@1.0.8':
  491. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  492. '@types/js-cookie@3.0.6':
  493. resolution: {integrity: sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==}
  494. '@types/node@22.19.0':
  495. resolution: {integrity: sha512-xpr/lmLPQEj+TUnHmR+Ab91/glhJvsqcjB+yY0Ix9GO70H6Lb4FHH5GeqdOE5btAx7eIMwuHkp4H2MSkLcqWbA==}
  496. '@types/react@19.2.2':
  497. resolution: {integrity: sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA==}
  498. '@use-gesture/core@10.3.0':
  499. resolution: {integrity: sha512-rh+6MND31zfHcy9VU3dOZCqGY511lvGcfyJenN4cWZe0u1BH6brBpBddLVXhF2r4BMqWbvxfsbL7D287thJU2A==}
  500. '@use-gesture/react@10.3.0':
  501. resolution: {integrity: sha512-3zc+Ve99z4usVP6l9knYVbVnZgfqhKah7sIG+PS2w+vpig2v2OLct05vs+ZXMzwxdNCMka8B+8WlOo0z6Pn6DA==}
  502. peerDependencies:
  503. react: '>= 16.8.0'
  504. '@vitejs/plugin-react@5.1.0':
  505. resolution: {integrity: sha512-4LuWrg7EKWgQaMJfnN+wcmbAW+VSsCmqGohftWjuct47bv8uE4n/nPpq4XjJPsxgq00GGG5J8dvBczp8uxScew==}
  506. engines: {node: ^20.19.0 || >=22.12.0}
  507. peerDependencies:
  508. vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
  509. ahooks@3.9.6:
  510. resolution: {integrity: sha512-Mr7f05swd5SmKlR9SZo5U6M0LsL4ErweLzpdgXjA1JPmnZ78Vr6wzx0jUtvoxrcqGKYnX0Yjc02iEASVxHFPjQ==}
  511. peerDependencies:
  512. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  513. react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  514. alova@3.3.4:
  515. resolution: {integrity: sha512-UKKqXdvf8aQ4C7m3brO77YWe5CDz8N59PdAUz7M8gowKUUXTutbk0Vk5DRBrCe0hMUyyNMUhdCZ38llGxCViyQ==}
  516. engines: {node: '>= 18.0.0'}
  517. antd-mobile-icons@0.3.0:
  518. resolution: {integrity: sha512-rqINQpJWZWrva9moCd1Ye695MZYWmqLPE+bY8d2xLRy7iSQwPsinCdZYjpUPp2zL/LnKYSyXxP2ut2A+DC+whQ==}
  519. antd-mobile-v5-count@1.0.1:
  520. resolution: {integrity: sha512-YGsiEDCPUDz3SzfXi6gLZn/HpeSMW+jgPc4qiYUr1fSopg3hkUie2TnooJdExgfiETHefH3Ggs58He0OVfegLA==}
  521. antd-mobile@5.41.1:
  522. resolution: {integrity: sha512-fS5sTRLKHca5qryEYLGiPDLANK0rbhx8f8xk0Olu6ef00tLe0P9iqHQm0U3UtEBd8S454cilw5uv2J3I79Tbgg==}
  523. peerDependencies:
  524. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  525. react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  526. async-validator@4.2.5:
  527. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  528. baseline-browser-mapping@2.8.23:
  529. resolution: {integrity: sha512-616V5YX4bepJFzNyOfce5Fa8fDJMfoxzOIzDCZwaGL8MKVpFrXqfNUoIpRn9YMI5pXf/VKgzjB4htFMsFKKdiQ==}
  530. hasBin: true
  531. braces@3.0.3:
  532. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  533. engines: {node: '>=8'}
  534. browserslist@4.27.0:
  535. resolution: {integrity: sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==}
  536. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  537. hasBin: true
  538. caniuse-lite@1.0.30001753:
  539. resolution: {integrity: sha512-Bj5H35MD/ebaOV4iDLqPEtiliTN29qkGtEHCwawWn4cYm+bPJM2NsaP30vtZcnERClMzp52J4+aw2UNbK4o+zw==}
  540. chokidar@4.0.3:
  541. resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
  542. engines: {node: '>= 14.16.0'}
  543. classnames@2.5.1:
  544. resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
  545. clsx@2.1.1:
  546. resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
  547. engines: {node: '>=6'}
  548. convert-source-map@2.0.0:
  549. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  550. csstype@3.1.3:
  551. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  552. d3-array@3.2.4:
  553. resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
  554. engines: {node: '>=12'}
  555. d3-color@3.1.0:
  556. resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
  557. engines: {node: '>=12'}
  558. d3-ease@3.0.1:
  559. resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
  560. engines: {node: '>=12'}
  561. d3-format@3.1.0:
  562. resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==}
  563. engines: {node: '>=12'}
  564. d3-interpolate@3.0.1:
  565. resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
  566. engines: {node: '>=12'}
  567. d3-path@3.1.0:
  568. resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
  569. engines: {node: '>=12'}
  570. d3-scale@4.0.2:
  571. resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
  572. engines: {node: '>=12'}
  573. d3-shape@3.2.0:
  574. resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
  575. engines: {node: '>=12'}
  576. d3-time-format@4.1.0:
  577. resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
  578. engines: {node: '>=12'}
  579. d3-time@3.1.0:
  580. resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
  581. engines: {node: '>=12'}
  582. d3-timer@3.0.1:
  583. resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
  584. engines: {node: '>=12'}
  585. dayjs@1.11.19:
  586. resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==}
  587. debug@4.4.3:
  588. resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  589. engines: {node: '>=6.0'}
  590. peerDependencies:
  591. supports-color: '*'
  592. peerDependenciesMeta:
  593. supports-color:
  594. optional: true
  595. decimal.js-light@2.5.1:
  596. resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
  597. deepmerge@4.3.1:
  598. resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
  599. engines: {node: '>=0.10.0'}
  600. detect-libc@1.0.3:
  601. resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
  602. engines: {node: '>=0.10'}
  603. hasBin: true
  604. dom-helpers@5.2.1:
  605. resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
  606. electron-to-chromium@1.5.244:
  607. resolution: {integrity: sha512-OszpBN7xZX4vWMPJwB9illkN/znA8M36GQqQxi6MNy9axWxhOfJyZZJtSLQCpEFLHP2xK33BiWx9aIuIEXVCcw==}
  608. esbuild@0.25.12:
  609. resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
  610. engines: {node: '>=18'}
  611. hasBin: true
  612. escalade@3.2.0:
  613. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  614. engines: {node: '>=6'}
  615. eventemitter3@4.0.7:
  616. resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
  617. fast-equals@5.3.2:
  618. resolution: {integrity: sha512-6rxyATwPCkaFIL3JLqw8qXqMpIZ942pTX/tbQFkRsDGblS8tNGtlUauA/+mt6RUfqn/4MoEr+WDkYoIQbibWuQ==}
  619. engines: {node: '>=6.0.0'}
  620. fdir@6.5.0:
  621. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  622. engines: {node: '>=12.0.0'}
  623. peerDependencies:
  624. picomatch: ^3 || ^4
  625. peerDependenciesMeta:
  626. picomatch:
  627. optional: true
  628. fill-range@7.1.1:
  629. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  630. engines: {node: '>=8'}
  631. fsevents@2.3.3:
  632. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  633. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  634. os: [darwin]
  635. gensync@1.0.0-beta.2:
  636. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  637. engines: {node: '>=6.9.0'}
  638. immutable@5.1.4:
  639. resolution: {integrity: sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==}
  640. internmap@2.0.3:
  641. resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
  642. engines: {node: '>=12'}
  643. intersection-observer@0.12.2:
  644. resolution: {integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==}
  645. is-extglob@2.1.1:
  646. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  647. engines: {node: '>=0.10.0'}
  648. is-glob@4.0.3:
  649. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  650. engines: {node: '>=0.10.0'}
  651. is-number@7.0.0:
  652. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  653. engines: {node: '>=0.12.0'}
  654. js-cookie@3.0.5:
  655. resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
  656. engines: {node: '>=14'}
  657. js-tokens@4.0.0:
  658. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  659. jsesc@3.1.0:
  660. resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
  661. engines: {node: '>=6'}
  662. hasBin: true
  663. json5@2.2.3:
  664. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  665. engines: {node: '>=6'}
  666. hasBin: true
  667. lodash@4.17.21:
  668. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  669. loose-envify@1.4.0:
  670. resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
  671. hasBin: true
  672. lru-cache@5.1.1:
  673. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  674. micromatch@4.0.8:
  675. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  676. engines: {node: '>=8.6'}
  677. ms@2.1.3:
  678. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  679. nano-memoize@3.0.16:
  680. resolution: {integrity: sha512-JyK96AKVGAwVeMj3MoMhaSXaUNqgMbCRSQB3trUV8tYZfWEzqUBKdK1qJpfuNXgKeHOx1jv/IEYTM659ly7zUA==}
  681. nanoid@3.3.11:
  682. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  683. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  684. hasBin: true
  685. node-addon-api@7.1.1:
  686. resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
  687. node-releases@2.0.27:
  688. resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
  689. object-assign@4.1.1:
  690. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  691. engines: {node: '>=0.10.0'}
  692. picocolors@1.1.1:
  693. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  694. picomatch@2.3.1:
  695. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  696. engines: {node: '>=8.6'}
  697. picomatch@4.0.3:
  698. resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
  699. engines: {node: '>=12'}
  700. postcss@8.5.6:
  701. resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
  702. engines: {node: ^10 || ^12 || >=14}
  703. prop-types@15.8.1:
  704. resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
  705. rate-limiter-flexible@5.0.5:
  706. resolution: {integrity: sha512-+/dSQfo+3FYwYygUs/V2BBdwGa9nFtakDwKt4l0bnvNB53TNT++QSFewwHX9qXrZJuMe9j+TUaU21lm5ARgqdQ==}
  707. rc-field-form@1.44.0:
  708. resolution: {integrity: sha512-el7w87fyDUsca63Y/s8qJcq9kNkf/J5h+iTdqG5WsSHLH0e6Usl7QuYSmSVzJMgtp40mOVZIY/W/QP9zwrp1FA==}
  709. engines: {node: '>=8.x'}
  710. peerDependencies:
  711. react: '>=16.9.0'
  712. react-dom: '>=16.9.0'
  713. rc-motion@2.9.5:
  714. resolution: {integrity: sha512-w+XTUrfh7ArbYEd2582uDrEhmBHwK1ZENJiSJVb7uRxdE7qJSYjbO2eksRXmndqyKqKoYPc9ClpPh5242mV1vA==}
  715. peerDependencies:
  716. react: '>=16.9.0'
  717. react-dom: '>=16.9.0'
  718. rc-segmented@2.4.1:
  719. resolution: {integrity: sha512-KUi+JJFdKnumV9iXlm+BJ00O4NdVBp2TEexLCk6bK1x/RH83TvYKQMzIz/7m3UTRPD08RM/8VG/JNjWgWbd4cw==}
  720. peerDependencies:
  721. react: '>=16.0.0'
  722. react-dom: '>=16.0.0'
  723. rc-util@5.44.4:
  724. resolution: {integrity: sha512-resueRJzmHG9Q6rI/DfK6Kdv9/Lfls05vzMs1Sk3M2P+3cJa+MakaZyWY8IPfehVuhPJFKrIY1IK4GqbiaiY5w==}
  725. peerDependencies:
  726. react: '>=16.9.0'
  727. react-dom: '>=16.9.0'
  728. react-dom@19.2.0:
  729. resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==}
  730. peerDependencies:
  731. react: ^19.2.0
  732. react-fast-compare@3.2.2:
  733. resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
  734. react-is@16.13.1:
  735. resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
  736. react-is@18.3.1:
  737. resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
  738. react-refresh@0.18.0:
  739. resolution: {integrity: sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==}
  740. engines: {node: '>=0.10.0'}
  741. react-router-dom@6.30.1:
  742. resolution: {integrity: sha512-llKsgOkZdbPU1Eg3zK8lCn+sjD9wMRZZPuzmdWWX5SUs8OFkN5HnFVC0u5KMeMaC9aoancFI/KoLuKPqN+hxHw==}
  743. engines: {node: '>=14.0.0'}
  744. peerDependencies:
  745. react: '>=16.8'
  746. react-dom: '>=16.8'
  747. react-router@6.30.1:
  748. resolution: {integrity: sha512-X1m21aEmxGXqENEPG3T6u0Th7g0aS4ZmoNynhbs+Cn+q+QGTLt+d5IQ2bHAXKzKcxGJjxACpVbnYQSCRcfxHlQ==}
  749. engines: {node: '>=14.0.0'}
  750. peerDependencies:
  751. react: '>=16.8'
  752. react-smooth@4.0.4:
  753. resolution: {integrity: sha512-gnGKTpYwqL0Iii09gHobNolvX4Kiq4PKx6eWBCYYix+8cdw+cGo3do906l1NBPKkSWx1DghC1dlWG9L2uGd61Q==}
  754. peerDependencies:
  755. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  756. react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  757. react-transition-group@4.4.5:
  758. resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
  759. peerDependencies:
  760. react: '>=16.6.0'
  761. react-dom: '>=16.6.0'
  762. react@19.2.0:
  763. resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==}
  764. engines: {node: '>=0.10.0'}
  765. readdirp@4.1.2:
  766. resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
  767. engines: {node: '>= 14.18.0'}
  768. recharts-scale@0.4.5:
  769. resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
  770. recharts@2.12.7:
  771. resolution: {integrity: sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==}
  772. engines: {node: '>=14'}
  773. peerDependencies:
  774. react: ^16.0.0 || ^17.0.0 || ^18.0.0
  775. react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
  776. resize-observer-polyfill@1.5.1:
  777. resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
  778. rollup@4.52.5:
  779. resolution: {integrity: sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw==}
  780. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  781. hasBin: true
  782. runes2@1.1.4:
  783. resolution: {integrity: sha512-LNPnEDPOOU4ehF71m5JoQyzT2yxwD6ZreFJ7MxZUAoMKNMY1XrAo60H1CUoX5ncSm0rIuKlqn9JZNRrRkNou2g==}
  784. sass@1.93.3:
  785. resolution: {integrity: sha512-elOcIZRTM76dvxNAjqYrucTSI0teAF/L2Lv0s6f6b7FOwcwIuA357bIE871580AjHJuSvLIRUosgV+lIWx6Rgg==}
  786. engines: {node: '>=14.0.0'}
  787. hasBin: true
  788. scheduler@0.27.0:
  789. resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
  790. screenfull@5.2.0:
  791. resolution: {integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==}
  792. engines: {node: '>=0.10.0'}
  793. semver@6.3.1:
  794. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  795. hasBin: true
  796. source-map-js@1.2.1:
  797. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  798. engines: {node: '>=0.10.0'}
  799. staged-components@1.1.3:
  800. resolution: {integrity: sha512-9EIswzDqjwlEu+ymkV09TTlJfzSbKgEnNteUnZSTxkpMgr5Wx2CzzA9WcMFWBNCldqVPsHVnRGGrApduq2Se5A==}
  801. peerDependencies:
  802. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  803. tiny-invariant@1.3.3:
  804. resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
  805. tinyglobby@0.2.15:
  806. resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
  807. engines: {node: '>=12.0.0'}
  808. to-regex-range@5.0.1:
  809. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  810. engines: {node: '>=8.0'}
  811. tslib@2.8.1:
  812. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  813. typescript@5.8.3:
  814. resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
  815. engines: {node: '>=14.17'}
  816. hasBin: true
  817. undici-types@6.21.0:
  818. resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
  819. update-browserslist-db@1.1.4:
  820. resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==}
  821. hasBin: true
  822. peerDependencies:
  823. browserslist: '>= 4.21.0'
  824. use-sync-external-store@1.6.0:
  825. resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
  826. peerDependencies:
  827. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  828. victory-vendor@36.9.2:
  829. resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==}
  830. vite@6.4.1:
  831. resolution: {integrity: sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==}
  832. engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
  833. hasBin: true
  834. peerDependencies:
  835. '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
  836. jiti: '>=1.21.0'
  837. less: '*'
  838. lightningcss: ^1.21.0
  839. sass: '*'
  840. sass-embedded: '*'
  841. stylus: '*'
  842. sugarss: '*'
  843. terser: ^5.16.0
  844. tsx: ^4.8.1
  845. yaml: ^2.4.2
  846. peerDependenciesMeta:
  847. '@types/node':
  848. optional: true
  849. jiti:
  850. optional: true
  851. less:
  852. optional: true
  853. lightningcss:
  854. optional: true
  855. sass:
  856. optional: true
  857. sass-embedded:
  858. optional: true
  859. stylus:
  860. optional: true
  861. sugarss:
  862. optional: true
  863. terser:
  864. optional: true
  865. tsx:
  866. optional: true
  867. yaml:
  868. optional: true
  869. yallist@3.1.1:
  870. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  871. snapshots:
  872. '@alova/shared@1.3.1': {}
  873. '@babel/code-frame@7.27.1':
  874. dependencies:
  875. '@babel/helper-validator-identifier': 7.28.5
  876. js-tokens: 4.0.0
  877. picocolors: 1.1.1
  878. '@babel/compat-data@7.28.5': {}
  879. '@babel/core@7.28.5':
  880. dependencies:
  881. '@babel/code-frame': 7.27.1
  882. '@babel/generator': 7.28.5
  883. '@babel/helper-compilation-targets': 7.27.2
  884. '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5)
  885. '@babel/helpers': 7.28.4
  886. '@babel/parser': 7.28.5
  887. '@babel/template': 7.27.2
  888. '@babel/traverse': 7.28.5
  889. '@babel/types': 7.28.5
  890. '@jridgewell/remapping': 2.3.5
  891. convert-source-map: 2.0.0
  892. debug: 4.4.3
  893. gensync: 1.0.0-beta.2
  894. json5: 2.2.3
  895. semver: 6.3.1
  896. transitivePeerDependencies:
  897. - supports-color
  898. '@babel/generator@7.28.5':
  899. dependencies:
  900. '@babel/parser': 7.28.5
  901. '@babel/types': 7.28.5
  902. '@jridgewell/gen-mapping': 0.3.13
  903. '@jridgewell/trace-mapping': 0.3.31
  904. jsesc: 3.1.0
  905. '@babel/helper-compilation-targets@7.27.2':
  906. dependencies:
  907. '@babel/compat-data': 7.28.5
  908. '@babel/helper-validator-option': 7.27.1
  909. browserslist: 4.27.0
  910. lru-cache: 5.1.1
  911. semver: 6.3.1
  912. '@babel/helper-globals@7.28.0': {}
  913. '@babel/helper-module-imports@7.27.1':
  914. dependencies:
  915. '@babel/traverse': 7.28.5
  916. '@babel/types': 7.28.5
  917. transitivePeerDependencies:
  918. - supports-color
  919. '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)':
  920. dependencies:
  921. '@babel/core': 7.28.5
  922. '@babel/helper-module-imports': 7.27.1
  923. '@babel/helper-validator-identifier': 7.28.5
  924. '@babel/traverse': 7.28.5
  925. transitivePeerDependencies:
  926. - supports-color
  927. '@babel/helper-plugin-utils@7.27.1': {}
  928. '@babel/helper-string-parser@7.27.1': {}
  929. '@babel/helper-validator-identifier@7.28.5': {}
  930. '@babel/helper-validator-option@7.27.1': {}
  931. '@babel/helpers@7.28.4':
  932. dependencies:
  933. '@babel/template': 7.27.2
  934. '@babel/types': 7.28.5
  935. '@babel/parser@7.28.5':
  936. dependencies:
  937. '@babel/types': 7.28.5
  938. '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.5)':
  939. dependencies:
  940. '@babel/core': 7.28.5
  941. '@babel/helper-plugin-utils': 7.27.1
  942. '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.5)':
  943. dependencies:
  944. '@babel/core': 7.28.5
  945. '@babel/helper-plugin-utils': 7.27.1
  946. '@babel/runtime@7.28.4': {}
  947. '@babel/template@7.27.2':
  948. dependencies:
  949. '@babel/code-frame': 7.27.1
  950. '@babel/parser': 7.28.5
  951. '@babel/types': 7.28.5
  952. '@babel/traverse@7.28.5':
  953. dependencies:
  954. '@babel/code-frame': 7.27.1
  955. '@babel/generator': 7.28.5
  956. '@babel/helper-globals': 7.28.0
  957. '@babel/parser': 7.28.5
  958. '@babel/template': 7.27.2
  959. '@babel/types': 7.28.5
  960. debug: 4.4.3
  961. transitivePeerDependencies:
  962. - supports-color
  963. '@babel/types@7.28.5':
  964. dependencies:
  965. '@babel/helper-string-parser': 7.27.1
  966. '@babel/helper-validator-identifier': 7.28.5
  967. '@esbuild/aix-ppc64@0.25.12':
  968. optional: true
  969. '@esbuild/android-arm64@0.25.12':
  970. optional: true
  971. '@esbuild/android-arm@0.25.12':
  972. optional: true
  973. '@esbuild/android-x64@0.25.12':
  974. optional: true
  975. '@esbuild/darwin-arm64@0.25.12':
  976. optional: true
  977. '@esbuild/darwin-x64@0.25.12':
  978. optional: true
  979. '@esbuild/freebsd-arm64@0.25.12':
  980. optional: true
  981. '@esbuild/freebsd-x64@0.25.12':
  982. optional: true
  983. '@esbuild/linux-arm64@0.25.12':
  984. optional: true
  985. '@esbuild/linux-arm@0.25.12':
  986. optional: true
  987. '@esbuild/linux-ia32@0.25.12':
  988. optional: true
  989. '@esbuild/linux-loong64@0.25.12':
  990. optional: true
  991. '@esbuild/linux-mips64el@0.25.12':
  992. optional: true
  993. '@esbuild/linux-ppc64@0.25.12':
  994. optional: true
  995. '@esbuild/linux-riscv64@0.25.12':
  996. optional: true
  997. '@esbuild/linux-s390x@0.25.12':
  998. optional: true
  999. '@esbuild/linux-x64@0.25.12':
  1000. optional: true
  1001. '@esbuild/netbsd-arm64@0.25.12':
  1002. optional: true
  1003. '@esbuild/netbsd-x64@0.25.12':
  1004. optional: true
  1005. '@esbuild/openbsd-arm64@0.25.12':
  1006. optional: true
  1007. '@esbuild/openbsd-x64@0.25.12':
  1008. optional: true
  1009. '@esbuild/openharmony-arm64@0.25.12':
  1010. optional: true
  1011. '@esbuild/sunos-x64@0.25.12':
  1012. optional: true
  1013. '@esbuild/win32-arm64@0.25.12':
  1014. optional: true
  1015. '@esbuild/win32-ia32@0.25.12':
  1016. optional: true
  1017. '@esbuild/win32-x64@0.25.12':
  1018. optional: true
  1019. '@floating-ui/core@1.7.3':
  1020. dependencies:
  1021. '@floating-ui/utils': 0.2.10
  1022. '@floating-ui/dom@1.7.4':
  1023. dependencies:
  1024. '@floating-ui/core': 1.7.3
  1025. '@floating-ui/utils': 0.2.10
  1026. '@floating-ui/utils@0.2.10': {}
  1027. '@jridgewell/gen-mapping@0.3.13':
  1028. dependencies:
  1029. '@jridgewell/sourcemap-codec': 1.5.5
  1030. '@jridgewell/trace-mapping': 0.3.31
  1031. '@jridgewell/remapping@2.3.5':
  1032. dependencies:
  1033. '@jridgewell/gen-mapping': 0.3.13
  1034. '@jridgewell/trace-mapping': 0.3.31
  1035. '@jridgewell/resolve-uri@3.1.2': {}
  1036. '@jridgewell/sourcemap-codec@1.5.5': {}
  1037. '@jridgewell/trace-mapping@0.3.31':
  1038. dependencies:
  1039. '@jridgewell/resolve-uri': 3.1.2
  1040. '@jridgewell/sourcemap-codec': 1.5.5
  1041. '@parcel/watcher-android-arm64@2.5.1':
  1042. optional: true
  1043. '@parcel/watcher-darwin-arm64@2.5.1':
  1044. optional: true
  1045. '@parcel/watcher-darwin-x64@2.5.1':
  1046. optional: true
  1047. '@parcel/watcher-freebsd-x64@2.5.1':
  1048. optional: true
  1049. '@parcel/watcher-linux-arm-glibc@2.5.1':
  1050. optional: true
  1051. '@parcel/watcher-linux-arm-musl@2.5.1':
  1052. optional: true
  1053. '@parcel/watcher-linux-arm64-glibc@2.5.1':
  1054. optional: true
  1055. '@parcel/watcher-linux-arm64-musl@2.5.1':
  1056. optional: true
  1057. '@parcel/watcher-linux-x64-glibc@2.5.1':
  1058. optional: true
  1059. '@parcel/watcher-linux-x64-musl@2.5.1':
  1060. optional: true
  1061. '@parcel/watcher-win32-arm64@2.5.1':
  1062. optional: true
  1063. '@parcel/watcher-win32-ia32@2.5.1':
  1064. optional: true
  1065. '@parcel/watcher-win32-x64@2.5.1':
  1066. optional: true
  1067. '@parcel/watcher@2.5.1':
  1068. dependencies:
  1069. detect-libc: 1.0.3
  1070. is-glob: 4.0.3
  1071. micromatch: 4.0.8
  1072. node-addon-api: 7.1.1
  1073. optionalDependencies:
  1074. '@parcel/watcher-android-arm64': 2.5.1
  1075. '@parcel/watcher-darwin-arm64': 2.5.1
  1076. '@parcel/watcher-darwin-x64': 2.5.1
  1077. '@parcel/watcher-freebsd-x64': 2.5.1
  1078. '@parcel/watcher-linux-arm-glibc': 2.5.1
  1079. '@parcel/watcher-linux-arm-musl': 2.5.1
  1080. '@parcel/watcher-linux-arm64-glibc': 2.5.1
  1081. '@parcel/watcher-linux-arm64-musl': 2.5.1
  1082. '@parcel/watcher-linux-x64-glibc': 2.5.1
  1083. '@parcel/watcher-linux-x64-musl': 2.5.1
  1084. '@parcel/watcher-win32-arm64': 2.5.1
  1085. '@parcel/watcher-win32-ia32': 2.5.1
  1086. '@parcel/watcher-win32-x64': 2.5.1
  1087. optional: true
  1088. '@rc-component/mini-decimal@1.1.0':
  1089. dependencies:
  1090. '@babel/runtime': 7.28.4
  1091. '@react-spring/animated@9.6.1(react@19.2.0)':
  1092. dependencies:
  1093. '@react-spring/shared': 9.6.1(react@19.2.0)
  1094. '@react-spring/types': 9.6.1
  1095. react: 19.2.0
  1096. '@react-spring/core@9.6.1(react@19.2.0)':
  1097. dependencies:
  1098. '@react-spring/animated': 9.6.1(react@19.2.0)
  1099. '@react-spring/rafz': 9.6.1
  1100. '@react-spring/shared': 9.6.1(react@19.2.0)
  1101. '@react-spring/types': 9.6.1
  1102. react: 19.2.0
  1103. '@react-spring/rafz@9.6.1': {}
  1104. '@react-spring/shared@9.6.1(react@19.2.0)':
  1105. dependencies:
  1106. '@react-spring/rafz': 9.6.1
  1107. '@react-spring/types': 9.6.1
  1108. react: 19.2.0
  1109. '@react-spring/types@9.6.1': {}
  1110. '@react-spring/web@9.6.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
  1111. dependencies:
  1112. '@react-spring/animated': 9.6.1(react@19.2.0)
  1113. '@react-spring/core': 9.6.1(react@19.2.0)
  1114. '@react-spring/shared': 9.6.1(react@19.2.0)
  1115. '@react-spring/types': 9.6.1
  1116. react: 19.2.0
  1117. react-dom: 19.2.0(react@19.2.0)
  1118. '@remix-run/router@1.23.0': {}
  1119. '@rolldown/pluginutils@1.0.0-beta.43': {}
  1120. '@rollup/rollup-android-arm-eabi@4.52.5':
  1121. optional: true
  1122. '@rollup/rollup-android-arm64@4.52.5':
  1123. optional: true
  1124. '@rollup/rollup-darwin-arm64@4.52.5':
  1125. optional: true
  1126. '@rollup/rollup-darwin-x64@4.52.5':
  1127. optional: true
  1128. '@rollup/rollup-freebsd-arm64@4.52.5':
  1129. optional: true
  1130. '@rollup/rollup-freebsd-x64@4.52.5':
  1131. optional: true
  1132. '@rollup/rollup-linux-arm-gnueabihf@4.52.5':
  1133. optional: true
  1134. '@rollup/rollup-linux-arm-musleabihf@4.52.5':
  1135. optional: true
  1136. '@rollup/rollup-linux-arm64-gnu@4.52.5':
  1137. optional: true
  1138. '@rollup/rollup-linux-arm64-musl@4.52.5':
  1139. optional: true
  1140. '@rollup/rollup-linux-loong64-gnu@4.52.5':
  1141. optional: true
  1142. '@rollup/rollup-linux-ppc64-gnu@4.52.5':
  1143. optional: true
  1144. '@rollup/rollup-linux-riscv64-gnu@4.52.5':
  1145. optional: true
  1146. '@rollup/rollup-linux-riscv64-musl@4.52.5':
  1147. optional: true
  1148. '@rollup/rollup-linux-s390x-gnu@4.52.5':
  1149. optional: true
  1150. '@rollup/rollup-linux-x64-gnu@4.52.5':
  1151. optional: true
  1152. '@rollup/rollup-linux-x64-musl@4.52.5':
  1153. optional: true
  1154. '@rollup/rollup-openharmony-arm64@4.52.5':
  1155. optional: true
  1156. '@rollup/rollup-win32-arm64-msvc@4.52.5':
  1157. optional: true
  1158. '@rollup/rollup-win32-ia32-msvc@4.52.5':
  1159. optional: true
  1160. '@rollup/rollup-win32-x64-gnu@4.52.5':
  1161. optional: true
  1162. '@rollup/rollup-win32-x64-msvc@4.52.5':
  1163. optional: true
  1164. '@types/babel__core@7.20.5':
  1165. dependencies:
  1166. '@babel/parser': 7.28.5
  1167. '@babel/types': 7.28.5
  1168. '@types/babel__generator': 7.27.0
  1169. '@types/babel__template': 7.4.4
  1170. '@types/babel__traverse': 7.28.0
  1171. '@types/babel__generator@7.27.0':
  1172. dependencies:
  1173. '@babel/types': 7.28.5
  1174. '@types/babel__template@7.4.4':
  1175. dependencies:
  1176. '@babel/parser': 7.28.5
  1177. '@babel/types': 7.28.5
  1178. '@types/babel__traverse@7.28.0':
  1179. dependencies:
  1180. '@babel/types': 7.28.5
  1181. '@types/d3-array@3.2.2': {}
  1182. '@types/d3-color@3.1.3': {}
  1183. '@types/d3-ease@3.0.2': {}
  1184. '@types/d3-interpolate@3.0.4':
  1185. dependencies:
  1186. '@types/d3-color': 3.1.3
  1187. '@types/d3-path@3.1.1': {}
  1188. '@types/d3-scale@4.0.9':
  1189. dependencies:
  1190. '@types/d3-time': 3.0.4
  1191. '@types/d3-shape@3.1.7':
  1192. dependencies:
  1193. '@types/d3-path': 3.1.1
  1194. '@types/d3-time@3.0.4': {}
  1195. '@types/d3-timer@3.0.2': {}
  1196. '@types/estree@1.0.8': {}
  1197. '@types/js-cookie@3.0.6': {}
  1198. '@types/node@22.19.0':
  1199. dependencies:
  1200. undici-types: 6.21.0
  1201. '@types/react@19.2.2':
  1202. dependencies:
  1203. csstype: 3.1.3
  1204. '@use-gesture/core@10.3.0': {}
  1205. '@use-gesture/react@10.3.0(react@19.2.0)':
  1206. dependencies:
  1207. '@use-gesture/core': 10.3.0
  1208. react: 19.2.0
  1209. '@vitejs/plugin-react@5.1.0(vite@6.4.1(@types/node@22.19.0)(sass@1.93.3))':
  1210. dependencies:
  1211. '@babel/core': 7.28.5
  1212. '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5)
  1213. '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.5)
  1214. '@rolldown/pluginutils': 1.0.0-beta.43
  1215. '@types/babel__core': 7.20.5
  1216. react-refresh: 0.18.0
  1217. vite: 6.4.1(@types/node@22.19.0)(sass@1.93.3)
  1218. transitivePeerDependencies:
  1219. - supports-color
  1220. ahooks@3.9.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1221. dependencies:
  1222. '@babel/runtime': 7.28.4
  1223. '@types/js-cookie': 3.0.6
  1224. dayjs: 1.11.19
  1225. intersection-observer: 0.12.2
  1226. js-cookie: 3.0.5
  1227. lodash: 4.17.21
  1228. react: 19.2.0
  1229. react-dom: 19.2.0(react@19.2.0)
  1230. react-fast-compare: 3.2.2
  1231. resize-observer-polyfill: 1.5.1
  1232. screenfull: 5.2.0
  1233. tslib: 2.8.1
  1234. alova@3.3.4:
  1235. dependencies:
  1236. '@alova/shared': 1.3.1
  1237. rate-limiter-flexible: 5.0.5
  1238. antd-mobile-icons@0.3.0: {}
  1239. antd-mobile-v5-count@1.0.1: {}
  1240. antd-mobile@5.41.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1241. dependencies:
  1242. '@floating-ui/dom': 1.7.4
  1243. '@rc-component/mini-decimal': 1.1.0
  1244. '@react-spring/web': 9.6.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1245. '@use-gesture/react': 10.3.0(react@19.2.0)
  1246. ahooks: 3.9.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1247. antd-mobile-icons: 0.3.0
  1248. antd-mobile-v5-count: 1.0.1
  1249. classnames: 2.5.1
  1250. dayjs: 1.11.19
  1251. deepmerge: 4.3.1
  1252. nano-memoize: 3.0.16
  1253. rc-field-form: 1.44.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1254. rc-segmented: 2.4.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1255. rc-util: 5.44.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1256. react: 19.2.0
  1257. react-dom: 19.2.0(react@19.2.0)
  1258. react-fast-compare: 3.2.2
  1259. react-is: 18.3.1
  1260. runes2: 1.1.4
  1261. staged-components: 1.1.3(react@19.2.0)
  1262. tslib: 2.8.1
  1263. use-sync-external-store: 1.6.0(react@19.2.0)
  1264. async-validator@4.2.5: {}
  1265. baseline-browser-mapping@2.8.23: {}
  1266. braces@3.0.3:
  1267. dependencies:
  1268. fill-range: 7.1.1
  1269. optional: true
  1270. browserslist@4.27.0:
  1271. dependencies:
  1272. baseline-browser-mapping: 2.8.23
  1273. caniuse-lite: 1.0.30001753
  1274. electron-to-chromium: 1.5.244
  1275. node-releases: 2.0.27
  1276. update-browserslist-db: 1.1.4(browserslist@4.27.0)
  1277. caniuse-lite@1.0.30001753: {}
  1278. chokidar@4.0.3:
  1279. dependencies:
  1280. readdirp: 4.1.2
  1281. classnames@2.5.1: {}
  1282. clsx@2.1.1: {}
  1283. convert-source-map@2.0.0: {}
  1284. csstype@3.1.3: {}
  1285. d3-array@3.2.4:
  1286. dependencies:
  1287. internmap: 2.0.3
  1288. d3-color@3.1.0: {}
  1289. d3-ease@3.0.1: {}
  1290. d3-format@3.1.0: {}
  1291. d3-interpolate@3.0.1:
  1292. dependencies:
  1293. d3-color: 3.1.0
  1294. d3-path@3.1.0: {}
  1295. d3-scale@4.0.2:
  1296. dependencies:
  1297. d3-array: 3.2.4
  1298. d3-format: 3.1.0
  1299. d3-interpolate: 3.0.1
  1300. d3-time: 3.1.0
  1301. d3-time-format: 4.1.0
  1302. d3-shape@3.2.0:
  1303. dependencies:
  1304. d3-path: 3.1.0
  1305. d3-time-format@4.1.0:
  1306. dependencies:
  1307. d3-time: 3.1.0
  1308. d3-time@3.1.0:
  1309. dependencies:
  1310. d3-array: 3.2.4
  1311. d3-timer@3.0.1: {}
  1312. dayjs@1.11.19: {}
  1313. debug@4.4.3:
  1314. dependencies:
  1315. ms: 2.1.3
  1316. decimal.js-light@2.5.1: {}
  1317. deepmerge@4.3.1: {}
  1318. detect-libc@1.0.3:
  1319. optional: true
  1320. dom-helpers@5.2.1:
  1321. dependencies:
  1322. '@babel/runtime': 7.28.4
  1323. csstype: 3.1.3
  1324. electron-to-chromium@1.5.244: {}
  1325. esbuild@0.25.12:
  1326. optionalDependencies:
  1327. '@esbuild/aix-ppc64': 0.25.12
  1328. '@esbuild/android-arm': 0.25.12
  1329. '@esbuild/android-arm64': 0.25.12
  1330. '@esbuild/android-x64': 0.25.12
  1331. '@esbuild/darwin-arm64': 0.25.12
  1332. '@esbuild/darwin-x64': 0.25.12
  1333. '@esbuild/freebsd-arm64': 0.25.12
  1334. '@esbuild/freebsd-x64': 0.25.12
  1335. '@esbuild/linux-arm': 0.25.12
  1336. '@esbuild/linux-arm64': 0.25.12
  1337. '@esbuild/linux-ia32': 0.25.12
  1338. '@esbuild/linux-loong64': 0.25.12
  1339. '@esbuild/linux-mips64el': 0.25.12
  1340. '@esbuild/linux-ppc64': 0.25.12
  1341. '@esbuild/linux-riscv64': 0.25.12
  1342. '@esbuild/linux-s390x': 0.25.12
  1343. '@esbuild/linux-x64': 0.25.12
  1344. '@esbuild/netbsd-arm64': 0.25.12
  1345. '@esbuild/netbsd-x64': 0.25.12
  1346. '@esbuild/openbsd-arm64': 0.25.12
  1347. '@esbuild/openbsd-x64': 0.25.12
  1348. '@esbuild/openharmony-arm64': 0.25.12
  1349. '@esbuild/sunos-x64': 0.25.12
  1350. '@esbuild/win32-arm64': 0.25.12
  1351. '@esbuild/win32-ia32': 0.25.12
  1352. '@esbuild/win32-x64': 0.25.12
  1353. escalade@3.2.0: {}
  1354. eventemitter3@4.0.7: {}
  1355. fast-equals@5.3.2: {}
  1356. fdir@6.5.0(picomatch@4.0.3):
  1357. optionalDependencies:
  1358. picomatch: 4.0.3
  1359. fill-range@7.1.1:
  1360. dependencies:
  1361. to-regex-range: 5.0.1
  1362. optional: true
  1363. fsevents@2.3.3:
  1364. optional: true
  1365. gensync@1.0.0-beta.2: {}
  1366. immutable@5.1.4: {}
  1367. internmap@2.0.3: {}
  1368. intersection-observer@0.12.2: {}
  1369. is-extglob@2.1.1:
  1370. optional: true
  1371. is-glob@4.0.3:
  1372. dependencies:
  1373. is-extglob: 2.1.1
  1374. optional: true
  1375. is-number@7.0.0:
  1376. optional: true
  1377. js-cookie@3.0.5: {}
  1378. js-tokens@4.0.0: {}
  1379. jsesc@3.1.0: {}
  1380. json5@2.2.3: {}
  1381. lodash@4.17.21: {}
  1382. loose-envify@1.4.0:
  1383. dependencies:
  1384. js-tokens: 4.0.0
  1385. lru-cache@5.1.1:
  1386. dependencies:
  1387. yallist: 3.1.1
  1388. micromatch@4.0.8:
  1389. dependencies:
  1390. braces: 3.0.3
  1391. picomatch: 2.3.1
  1392. optional: true
  1393. ms@2.1.3: {}
  1394. nano-memoize@3.0.16: {}
  1395. nanoid@3.3.11: {}
  1396. node-addon-api@7.1.1:
  1397. optional: true
  1398. node-releases@2.0.27: {}
  1399. object-assign@4.1.1: {}
  1400. picocolors@1.1.1: {}
  1401. picomatch@2.3.1:
  1402. optional: true
  1403. picomatch@4.0.3: {}
  1404. postcss@8.5.6:
  1405. dependencies:
  1406. nanoid: 3.3.11
  1407. picocolors: 1.1.1
  1408. source-map-js: 1.2.1
  1409. prop-types@15.8.1:
  1410. dependencies:
  1411. loose-envify: 1.4.0
  1412. object-assign: 4.1.1
  1413. react-is: 16.13.1
  1414. rate-limiter-flexible@5.0.5: {}
  1415. rc-field-form@1.44.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1416. dependencies:
  1417. '@babel/runtime': 7.28.4
  1418. async-validator: 4.2.5
  1419. rc-util: 5.44.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1420. react: 19.2.0
  1421. react-dom: 19.2.0(react@19.2.0)
  1422. rc-motion@2.9.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1423. dependencies:
  1424. '@babel/runtime': 7.28.4
  1425. classnames: 2.5.1
  1426. rc-util: 5.44.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1427. react: 19.2.0
  1428. react-dom: 19.2.0(react@19.2.0)
  1429. rc-segmented@2.4.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1430. dependencies:
  1431. '@babel/runtime': 7.28.4
  1432. classnames: 2.5.1
  1433. rc-motion: 2.9.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1434. rc-util: 5.44.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1435. react: 19.2.0
  1436. react-dom: 19.2.0(react@19.2.0)
  1437. rc-util@5.44.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1438. dependencies:
  1439. '@babel/runtime': 7.28.4
  1440. react: 19.2.0
  1441. react-dom: 19.2.0(react@19.2.0)
  1442. react-is: 18.3.1
  1443. react-dom@19.2.0(react@19.2.0):
  1444. dependencies:
  1445. react: 19.2.0
  1446. scheduler: 0.27.0
  1447. react-fast-compare@3.2.2: {}
  1448. react-is@16.13.1: {}
  1449. react-is@18.3.1: {}
  1450. react-refresh@0.18.0: {}
  1451. react-router-dom@6.30.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1452. dependencies:
  1453. '@remix-run/router': 1.23.0
  1454. react: 19.2.0
  1455. react-dom: 19.2.0(react@19.2.0)
  1456. react-router: 6.30.1(react@19.2.0)
  1457. react-router@6.30.1(react@19.2.0):
  1458. dependencies:
  1459. '@remix-run/router': 1.23.0
  1460. react: 19.2.0
  1461. react-smooth@4.0.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1462. dependencies:
  1463. fast-equals: 5.3.2
  1464. prop-types: 15.8.1
  1465. react: 19.2.0
  1466. react-dom: 19.2.0(react@19.2.0)
  1467. react-transition-group: 4.4.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1468. react-transition-group@4.4.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1469. dependencies:
  1470. '@babel/runtime': 7.28.4
  1471. dom-helpers: 5.2.1
  1472. loose-envify: 1.4.0
  1473. prop-types: 15.8.1
  1474. react: 19.2.0
  1475. react-dom: 19.2.0(react@19.2.0)
  1476. react@19.2.0: {}
  1477. readdirp@4.1.2: {}
  1478. recharts-scale@0.4.5:
  1479. dependencies:
  1480. decimal.js-light: 2.5.1
  1481. recharts@2.12.7(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1482. dependencies:
  1483. clsx: 2.1.1
  1484. eventemitter3: 4.0.7
  1485. lodash: 4.17.21
  1486. react: 19.2.0
  1487. react-dom: 19.2.0(react@19.2.0)
  1488. react-is: 16.13.1
  1489. react-smooth: 4.0.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1490. recharts-scale: 0.4.5
  1491. tiny-invariant: 1.3.3
  1492. victory-vendor: 36.9.2
  1493. resize-observer-polyfill@1.5.1: {}
  1494. rollup@4.52.5:
  1495. dependencies:
  1496. '@types/estree': 1.0.8
  1497. optionalDependencies:
  1498. '@rollup/rollup-android-arm-eabi': 4.52.5
  1499. '@rollup/rollup-android-arm64': 4.52.5
  1500. '@rollup/rollup-darwin-arm64': 4.52.5
  1501. '@rollup/rollup-darwin-x64': 4.52.5
  1502. '@rollup/rollup-freebsd-arm64': 4.52.5
  1503. '@rollup/rollup-freebsd-x64': 4.52.5
  1504. '@rollup/rollup-linux-arm-gnueabihf': 4.52.5
  1505. '@rollup/rollup-linux-arm-musleabihf': 4.52.5
  1506. '@rollup/rollup-linux-arm64-gnu': 4.52.5
  1507. '@rollup/rollup-linux-arm64-musl': 4.52.5
  1508. '@rollup/rollup-linux-loong64-gnu': 4.52.5
  1509. '@rollup/rollup-linux-ppc64-gnu': 4.52.5
  1510. '@rollup/rollup-linux-riscv64-gnu': 4.52.5
  1511. '@rollup/rollup-linux-riscv64-musl': 4.52.5
  1512. '@rollup/rollup-linux-s390x-gnu': 4.52.5
  1513. '@rollup/rollup-linux-x64-gnu': 4.52.5
  1514. '@rollup/rollup-linux-x64-musl': 4.52.5
  1515. '@rollup/rollup-openharmony-arm64': 4.52.5
  1516. '@rollup/rollup-win32-arm64-msvc': 4.52.5
  1517. '@rollup/rollup-win32-ia32-msvc': 4.52.5
  1518. '@rollup/rollup-win32-x64-gnu': 4.52.5
  1519. '@rollup/rollup-win32-x64-msvc': 4.52.5
  1520. fsevents: 2.3.3
  1521. runes2@1.1.4: {}
  1522. sass@1.93.3:
  1523. dependencies:
  1524. chokidar: 4.0.3
  1525. immutable: 5.1.4
  1526. source-map-js: 1.2.1
  1527. optionalDependencies:
  1528. '@parcel/watcher': 2.5.1
  1529. scheduler@0.27.0: {}
  1530. screenfull@5.2.0: {}
  1531. semver@6.3.1: {}
  1532. source-map-js@1.2.1: {}
  1533. staged-components@1.1.3(react@19.2.0):
  1534. dependencies:
  1535. react: 19.2.0
  1536. tiny-invariant@1.3.3: {}
  1537. tinyglobby@0.2.15:
  1538. dependencies:
  1539. fdir: 6.5.0(picomatch@4.0.3)
  1540. picomatch: 4.0.3
  1541. to-regex-range@5.0.1:
  1542. dependencies:
  1543. is-number: 7.0.0
  1544. optional: true
  1545. tslib@2.8.1: {}
  1546. typescript@5.8.3: {}
  1547. undici-types@6.21.0: {}
  1548. update-browserslist-db@1.1.4(browserslist@4.27.0):
  1549. dependencies:
  1550. browserslist: 4.27.0
  1551. escalade: 3.2.0
  1552. picocolors: 1.1.1
  1553. use-sync-external-store@1.6.0(react@19.2.0):
  1554. dependencies:
  1555. react: 19.2.0
  1556. victory-vendor@36.9.2:
  1557. dependencies:
  1558. '@types/d3-array': 3.2.2
  1559. '@types/d3-ease': 3.0.2
  1560. '@types/d3-interpolate': 3.0.4
  1561. '@types/d3-scale': 4.0.9
  1562. '@types/d3-shape': 3.1.7
  1563. '@types/d3-time': 3.0.4
  1564. '@types/d3-timer': 3.0.2
  1565. d3-array: 3.2.4
  1566. d3-ease: 3.0.1
  1567. d3-interpolate: 3.0.1
  1568. d3-scale: 4.0.2
  1569. d3-shape: 3.2.0
  1570. d3-time: 3.1.0
  1571. d3-timer: 3.0.1
  1572. vite@6.4.1(@types/node@22.19.0)(sass@1.93.3):
  1573. dependencies:
  1574. esbuild: 0.25.12
  1575. fdir: 6.5.0(picomatch@4.0.3)
  1576. picomatch: 4.0.3
  1577. postcss: 8.5.6
  1578. rollup: 4.52.5
  1579. tinyglobby: 0.2.15
  1580. optionalDependencies:
  1581. '@types/node': 22.19.0
  1582. fsevents: 2.3.3
  1583. sass: 1.93.3
  1584. yallist@3.1.1: {}