Keith Yu commited on
Commit
dbc23dd
Β·
0 Parent(s):

clean repo w/o node_modules

Browse files
.github/workflows/deploy-to-hf.yml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Deploy to Hugging Face Space
2
+
3
+ on:
4
+ push:
5
+ branches: [ main ]
6
+
7
+ jobs:
8
+ deploy:
9
+ runs-on: ubuntu-latest
10
+
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v4
14
+ with:
15
+ lfs: true
16
+ fetch-depth: 0
17
+
18
+ - name: Debug repo contents
19
+ run: |
20
+ pwd
21
+ ls -la
22
+ echo "----- README.md -----"
23
+ sed -n '1,20p' README.md
24
+
25
+ - name: Push to Hugging Face
26
+ env:
27
+ HF_TOKEN: ${{ secrets.HF_TOKEN }}
28
+ run: |
29
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
30
+ git config --global user.name "github-actions[bot]"
31
+ git remote add space https://oauth2:${HF_TOKEN}@huggingface.co/spaces/spark-ds549/ClaimsWordmap
32
+ git push space HEAD:main --force
.gitignore ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Logs
2
+ logs
3
+ *.log
4
+ npm-debug.log*
5
+ yarn-debug.log*
6
+ yarn-error.log*
7
+ pnpm-debug.log*
8
+ lerna-debug.log*
9
+
10
+ node_modules
11
+ dist
12
+ dist-ssr
13
+ *.local
14
+
15
+ # Editor directories and files
16
+ .vscode/*
17
+ !.vscode/extensions.json
18
+ .idea
19
+ .DS_Store
20
+ *.suo
21
+ *.ntvs*
22
+ *.njsproj
23
+ *.sln
24
+ *.sw?
25
+
26
+ node_modules/
27
+ dist/
28
+ build/
29
+ .env
30
+ .env.*
31
+ *.log
32
+ *.log
LICENSE ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
README.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # React + Vite
2
+
3
+ This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
+
5
+ Currently, two official plugins are available:
6
+
7
+ - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Oxc](https://oxc.rs)
8
+ - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/)
9
+
10
+ ## React Compiler
11
+
12
+ The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
13
+
14
+ ## Expanding the ESLint configuration
15
+
16
+ If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) for information on how to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project.
eslint.config.js ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import js from '@eslint/js'
2
+ import globals from 'globals'
3
+ import reactHooks from 'eslint-plugin-react-hooks'
4
+ import reactRefresh from 'eslint-plugin-react-refresh'
5
+ import { defineConfig, globalIgnores } from 'eslint/config'
6
+
7
+ export default defineConfig([
8
+ globalIgnores(['dist']),
9
+ {
10
+ files: ['**/*.{js,jsx}'],
11
+ extends: [
12
+ js.configs.recommended,
13
+ reactHooks.configs.flat.recommended,
14
+ reactRefresh.configs.vite,
15
+ ],
16
+ languageOptions: {
17
+ globals: globals.browser,
18
+ parserOptions: { ecmaFeatures: { jsx: true } },
19
+ },
20
+ },
21
+ ])
index.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>wordmap</title>
8
+ </head>
9
+ <body>
10
+ <div id="root"></div>
11
+ <script type="module" src="/src/main.jsx"></script>
12
+ </body>
13
+ </html>
package-lock.json ADDED
@@ -0,0 +1,1914 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "wordmap",
3
+ "version": "0.0.0",
4
+ "lockfileVersion": 1,
5
+ "requires": true,
6
+ "dependencies": {
7
+ "@babel/code-frame": {
8
+ "version": "7.29.0",
9
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
10
+ "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
11
+ "dev": true,
12
+ "requires": {
13
+ "@babel/helper-validator-identifier": "^7.28.5",
14
+ "js-tokens": "^4.0.0",
15
+ "picocolors": "^1.1.1"
16
+ }
17
+ },
18
+ "@babel/compat-data": {
19
+ "version": "7.29.0",
20
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
21
+ "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
22
+ "dev": true
23
+ },
24
+ "@babel/core": {
25
+ "version": "7.29.0",
26
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
27
+ "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
28
+ "dev": true,
29
+ "requires": {
30
+ "@babel/code-frame": "^7.29.0",
31
+ "@babel/generator": "^7.29.0",
32
+ "@babel/helper-compilation-targets": "^7.28.6",
33
+ "@babel/helper-module-transforms": "^7.28.6",
34
+ "@babel/helpers": "^7.28.6",
35
+ "@babel/parser": "^7.29.0",
36
+ "@babel/template": "^7.28.6",
37
+ "@babel/traverse": "^7.29.0",
38
+ "@babel/types": "^7.29.0",
39
+ "@jridgewell/remapping": "^2.3.5",
40
+ "convert-source-map": "^2.0.0",
41
+ "debug": "^4.1.0",
42
+ "gensync": "^1.0.0-beta.2",
43
+ "json5": "^2.2.3",
44
+ "semver": "^6.3.1"
45
+ }
46
+ },
47
+ "@babel/generator": {
48
+ "version": "7.29.1",
49
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
50
+ "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
51
+ "dev": true,
52
+ "requires": {
53
+ "@babel/parser": "^7.29.0",
54
+ "@babel/types": "^7.29.0",
55
+ "@jridgewell/gen-mapping": "^0.3.12",
56
+ "@jridgewell/trace-mapping": "^0.3.28",
57
+ "jsesc": "^3.0.2"
58
+ }
59
+ },
60
+ "@babel/helper-compilation-targets": {
61
+ "version": "7.28.6",
62
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
63
+ "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
64
+ "dev": true,
65
+ "requires": {
66
+ "@babel/compat-data": "^7.28.6",
67
+ "@babel/helper-validator-option": "^7.27.1",
68
+ "browserslist": "^4.24.0",
69
+ "lru-cache": "^5.1.1",
70
+ "semver": "^6.3.1"
71
+ }
72
+ },
73
+ "@babel/helper-globals": {
74
+ "version": "7.28.0",
75
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
76
+ "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
77
+ "dev": true
78
+ },
79
+ "@babel/helper-module-imports": {
80
+ "version": "7.28.6",
81
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
82
+ "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
83
+ "dev": true,
84
+ "requires": {
85
+ "@babel/traverse": "^7.28.6",
86
+ "@babel/types": "^7.28.6"
87
+ }
88
+ },
89
+ "@babel/helper-module-transforms": {
90
+ "version": "7.28.6",
91
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
92
+ "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
93
+ "dev": true,
94
+ "requires": {
95
+ "@babel/helper-module-imports": "^7.28.6",
96
+ "@babel/helper-validator-identifier": "^7.28.5",
97
+ "@babel/traverse": "^7.28.6"
98
+ }
99
+ },
100
+ "@babel/helper-string-parser": {
101
+ "version": "7.27.1",
102
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
103
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
104
+ "dev": true
105
+ },
106
+ "@babel/helper-validator-identifier": {
107
+ "version": "7.28.5",
108
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
109
+ "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
110
+ "dev": true
111
+ },
112
+ "@babel/helper-validator-option": {
113
+ "version": "7.27.1",
114
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
115
+ "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
116
+ "dev": true
117
+ },
118
+ "@babel/helpers": {
119
+ "version": "7.29.2",
120
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz",
121
+ "integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==",
122
+ "dev": true,
123
+ "requires": {
124
+ "@babel/template": "^7.28.6",
125
+ "@babel/types": "^7.29.0"
126
+ }
127
+ },
128
+ "@babel/parser": {
129
+ "version": "7.29.2",
130
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz",
131
+ "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
132
+ "dev": true,
133
+ "requires": {
134
+ "@babel/types": "^7.29.0"
135
+ }
136
+ },
137
+ "@babel/template": {
138
+ "version": "7.28.6",
139
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
140
+ "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
141
+ "dev": true,
142
+ "requires": {
143
+ "@babel/code-frame": "^7.28.6",
144
+ "@babel/parser": "^7.28.6",
145
+ "@babel/types": "^7.28.6"
146
+ }
147
+ },
148
+ "@babel/traverse": {
149
+ "version": "7.29.0",
150
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
151
+ "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
152
+ "dev": true,
153
+ "requires": {
154
+ "@babel/code-frame": "^7.29.0",
155
+ "@babel/generator": "^7.29.0",
156
+ "@babel/helper-globals": "^7.28.0",
157
+ "@babel/parser": "^7.29.0",
158
+ "@babel/template": "^7.28.6",
159
+ "@babel/types": "^7.29.0",
160
+ "debug": "^4.3.1"
161
+ }
162
+ },
163
+ "@babel/types": {
164
+ "version": "7.29.0",
165
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
166
+ "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
167
+ "dev": true,
168
+ "requires": {
169
+ "@babel/helper-string-parser": "^7.27.1",
170
+ "@babel/helper-validator-identifier": "^7.28.5"
171
+ }
172
+ },
173
+ "@emnapi/core": {
174
+ "version": "1.10.0",
175
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
176
+ "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
177
+ "dev": true,
178
+ "optional": true,
179
+ "requires": {
180
+ "@emnapi/wasi-threads": "1.2.1",
181
+ "tslib": "^2.4.0"
182
+ }
183
+ },
184
+ "@emnapi/runtime": {
185
+ "version": "1.10.0",
186
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
187
+ "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
188
+ "dev": true,
189
+ "optional": true,
190
+ "requires": {
191
+ "tslib": "^2.4.0"
192
+ }
193
+ },
194
+ "@emnapi/wasi-threads": {
195
+ "version": "1.2.1",
196
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
197
+ "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
198
+ "dev": true,
199
+ "optional": true,
200
+ "requires": {
201
+ "tslib": "^2.4.0"
202
+ }
203
+ },
204
+ "@eslint-community/eslint-utils": {
205
+ "version": "4.9.1",
206
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz",
207
+ "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
208
+ "dev": true,
209
+ "requires": {
210
+ "eslint-visitor-keys": "^3.4.3"
211
+ },
212
+ "dependencies": {
213
+ "eslint-visitor-keys": {
214
+ "version": "3.4.3",
215
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
216
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
217
+ "dev": true
218
+ }
219
+ }
220
+ },
221
+ "@eslint-community/regexpp": {
222
+ "version": "4.12.2",
223
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
224
+ "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
225
+ "dev": true
226
+ },
227
+ "@eslint/config-array": {
228
+ "version": "0.23.5",
229
+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.23.5.tgz",
230
+ "integrity": "sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==",
231
+ "dev": true,
232
+ "requires": {
233
+ "@eslint/object-schema": "^3.0.5",
234
+ "debug": "^4.3.1",
235
+ "minimatch": "^10.2.4"
236
+ }
237
+ },
238
+ "@eslint/config-helpers": {
239
+ "version": "0.5.5",
240
+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.5.5.tgz",
241
+ "integrity": "sha512-eIJYKTCECbP/nsKaaruF6LW967mtbQbsw4JTtSVkUQc9MneSkbrgPJAbKl9nWr0ZeowV8BfsarBmPpBzGelA2w==",
242
+ "dev": true,
243
+ "requires": {
244
+ "@eslint/core": "^1.2.1"
245
+ }
246
+ },
247
+ "@eslint/core": {
248
+ "version": "1.2.1",
249
+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-1.2.1.tgz",
250
+ "integrity": "sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==",
251
+ "dev": true,
252
+ "requires": {
253
+ "@types/json-schema": "^7.0.15"
254
+ }
255
+ },
256
+ "@eslint/js": {
257
+ "version": "10.0.1",
258
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-10.0.1.tgz",
259
+ "integrity": "sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==",
260
+ "dev": true
261
+ },
262
+ "@eslint/object-schema": {
263
+ "version": "3.0.5",
264
+ "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-3.0.5.tgz",
265
+ "integrity": "sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==",
266
+ "dev": true
267
+ },
268
+ "@eslint/plugin-kit": {
269
+ "version": "0.7.1",
270
+ "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.7.1.tgz",
271
+ "integrity": "sha512-rZAP3aVgB9ds9KOeUSL+zZ21hPmo8dh6fnIFwRQj5EAZl9gzR7wxYbYXYysAM8CTqGmUGyp2S4kUdV17MnGuWQ==",
272
+ "dev": true,
273
+ "requires": {
274
+ "@eslint/core": "^1.2.1",
275
+ "levn": "^0.4.1"
276
+ }
277
+ },
278
+ "@humanfs/core": {
279
+ "version": "0.19.2",
280
+ "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz",
281
+ "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==",
282
+ "dev": true,
283
+ "requires": {
284
+ "@humanfs/types": "^0.15.0"
285
+ }
286
+ },
287
+ "@humanfs/node": {
288
+ "version": "0.16.8",
289
+ "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz",
290
+ "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==",
291
+ "dev": true,
292
+ "requires": {
293
+ "@humanfs/core": "^0.19.2",
294
+ "@humanfs/types": "^0.15.0",
295
+ "@humanwhocodes/retry": "^0.4.0"
296
+ }
297
+ },
298
+ "@humanfs/types": {
299
+ "version": "0.15.0",
300
+ "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz",
301
+ "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==",
302
+ "dev": true
303
+ },
304
+ "@humanwhocodes/module-importer": {
305
+ "version": "1.0.1",
306
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
307
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
308
+ "dev": true
309
+ },
310
+ "@humanwhocodes/retry": {
311
+ "version": "0.4.3",
312
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
313
+ "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
314
+ "dev": true
315
+ },
316
+ "@jridgewell/gen-mapping": {
317
+ "version": "0.3.13",
318
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
319
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
320
+ "dev": true,
321
+ "requires": {
322
+ "@jridgewell/sourcemap-codec": "^1.5.0",
323
+ "@jridgewell/trace-mapping": "^0.3.24"
324
+ }
325
+ },
326
+ "@jridgewell/remapping": {
327
+ "version": "2.3.5",
328
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
329
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
330
+ "dev": true,
331
+ "requires": {
332
+ "@jridgewell/gen-mapping": "^0.3.5",
333
+ "@jridgewell/trace-mapping": "^0.3.24"
334
+ }
335
+ },
336
+ "@jridgewell/resolve-uri": {
337
+ "version": "3.1.2",
338
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
339
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
340
+ "dev": true
341
+ },
342
+ "@jridgewell/sourcemap-codec": {
343
+ "version": "1.5.5",
344
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
345
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
346
+ "dev": true
347
+ },
348
+ "@jridgewell/trace-mapping": {
349
+ "version": "0.3.31",
350
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
351
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
352
+ "dev": true,
353
+ "requires": {
354
+ "@jridgewell/resolve-uri": "^3.1.0",
355
+ "@jridgewell/sourcemap-codec": "^1.4.14"
356
+ }
357
+ },
358
+ "@napi-rs/wasm-runtime": {
359
+ "version": "1.1.4",
360
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
361
+ "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
362
+ "dev": true,
363
+ "optional": true,
364
+ "requires": {
365
+ "@tybys/wasm-util": "^0.10.1"
366
+ }
367
+ },
368
+ "@oxc-project/types": {
369
+ "version": "0.127.0",
370
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.127.0.tgz",
371
+ "integrity": "sha512-aIYXQBo4lCbO4z0R3FHeucQHpF46l2LbMdxRvqvuRuW2OxdnSkcng5B8+K12spgLDj93rtN3+J2Vac/TIO+ciQ==",
372
+ "dev": true
373
+ },
374
+ "@reduxjs/toolkit": {
375
+ "version": "2.11.2",
376
+ "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.11.2.tgz",
377
+ "integrity": "sha512-Kd6kAHTA6/nUpp8mySPqj3en3dm0tdMIgbttnQ1xFMVpufoj+ADi8pXLBsd4xzTRHQa7t/Jv8W5UnCuW4kuWMQ==",
378
+ "requires": {
379
+ "@standard-schema/spec": "^1.0.0",
380
+ "@standard-schema/utils": "^0.3.0",
381
+ "immer": "^11.0.0",
382
+ "redux": "^5.0.1",
383
+ "redux-thunk": "^3.1.0",
384
+ "reselect": "^5.1.0"
385
+ },
386
+ "dependencies": {
387
+ "immer": {
388
+ "version": "11.1.4",
389
+ "resolved": "https://registry.npmjs.org/immer/-/immer-11.1.4.tgz",
390
+ "integrity": "sha512-XREFCPo6ksxVzP4E0ekD5aMdf8WMwmdNaz6vuvxgI40UaEiu6q3p8X52aU6GdyvLY3XXX/8R7JOTXStz/nBbRw=="
391
+ }
392
+ }
393
+ },
394
+ "@rolldown/binding-android-arm64": {
395
+ "version": "1.0.0-rc.17",
396
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.17.tgz",
397
+ "integrity": "sha512-s70pVGhw4zqGeFnXWvAzJDlvxhlRollagdCCKRgOsgUOH3N1l0LIxf83AtGzmb5SiVM4Hjl5HyarMRfdfj3DaQ==",
398
+ "dev": true,
399
+ "optional": true
400
+ },
401
+ "@rolldown/binding-darwin-arm64": {
402
+ "version": "1.0.0-rc.17",
403
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.17.tgz",
404
+ "integrity": "sha512-4ksWc9n0mhlZpZ9PMZgTGjeOPRu8MB1Z3Tz0Mo02eWfWCHMW1zN82Qz/pL/rC+yQa+8ZnutMF0JjJe7PjwasYw==",
405
+ "dev": true,
406
+ "optional": true
407
+ },
408
+ "@rolldown/binding-darwin-x64": {
409
+ "version": "1.0.0-rc.17",
410
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.17.tgz",
411
+ "integrity": "sha512-SUSDOI6WwUVNcWxd02QEBjLdY1VPHvlEkw6T/8nYG322iYWCTxRb1vzk4E+mWWYehTp7ERibq54LSJGjmouOsw==",
412
+ "dev": true,
413
+ "optional": true
414
+ },
415
+ "@rolldown/binding-freebsd-x64": {
416
+ "version": "1.0.0-rc.17",
417
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.17.tgz",
418
+ "integrity": "sha512-hwnz3nw9dbJ05EDO/PvcjaaewqqDy7Y1rn1UO81l8iIK1GjenME75dl16ajbvSSMfv66WXSRCYKIqfgq2KCfxw==",
419
+ "dev": true,
420
+ "optional": true
421
+ },
422
+ "@rolldown/binding-linux-arm-gnueabihf": {
423
+ "version": "1.0.0-rc.17",
424
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.17.tgz",
425
+ "integrity": "sha512-IS+W7epTcwANmFSQFrS1SivEXHtl1JtuQA9wlxrZTcNi6mx+FDOYrakGevvvTwgj2JvWiK8B29/qD9BELZPyXQ==",
426
+ "dev": true,
427
+ "optional": true
428
+ },
429
+ "@rolldown/binding-linux-arm64-gnu": {
430
+ "version": "1.0.0-rc.17",
431
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.17.tgz",
432
+ "integrity": "sha512-e6usGaHKW5BMNZOymS1UcEYGowQMWcgZ71Z17Sl/h2+ZziNJ1a9n3Zvcz6LdRyIW5572wBCTH/Z+bKuZouGk9Q==",
433
+ "dev": true,
434
+ "optional": true
435
+ },
436
+ "@rolldown/binding-linux-arm64-musl": {
437
+ "version": "1.0.0-rc.17",
438
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.17.tgz",
439
+ "integrity": "sha512-b/CgbwAJpmrRLp02RPfhbudf5tZnN9nsPWK82znefso832etkem8H7FSZwxrOI9djcdTP7U6YfNhbRnh7djErg==",
440
+ "dev": true,
441
+ "optional": true
442
+ },
443
+ "@rolldown/binding-linux-ppc64-gnu": {
444
+ "version": "1.0.0-rc.17",
445
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.17.tgz",
446
+ "integrity": "sha512-4EII1iNGRUN5WwGbF/kOh/EIkoDN9HsupgLQoXfY+D1oyJm7/F4t5PYU5n8SWZgG0FEwakyM8pGgwcBYruGTlA==",
447
+ "dev": true,
448
+ "optional": true
449
+ },
450
+ "@rolldown/binding-linux-s390x-gnu": {
451
+ "version": "1.0.0-rc.17",
452
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.17.tgz",
453
+ "integrity": "sha512-AH8oq3XqQo4IibpVXvPeLDI5pzkpYn0WiZAfT05kFzoJ6tQNzwRdDYQ45M8I/gslbodRZwW8uxLhbSBbkv96rA==",
454
+ "dev": true,
455
+ "optional": true
456
+ },
457
+ "@rolldown/binding-linux-x64-gnu": {
458
+ "version": "1.0.0-rc.17",
459
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.17.tgz",
460
+ "integrity": "sha512-cLnjV3xfo7KslbU41Z7z8BH/E1y5mzUYzAqih1d1MDaIGZRCMqTijqLv76/P7fyHuvUcfGsIpqCdddbxLLK9rA==",
461
+ "dev": true,
462
+ "optional": true
463
+ },
464
+ "@rolldown/binding-linux-x64-musl": {
465
+ "version": "1.0.0-rc.17",
466
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.17.tgz",
467
+ "integrity": "sha512-0phclDw1spsL7dUB37sIARuis2tAgomCJXAHZlpt8PXZ4Ba0dRP1e+66lsRqrfhISeN9bEGNjQs+T/Fbd7oYGw==",
468
+ "dev": true,
469
+ "optional": true
470
+ },
471
+ "@rolldown/binding-openharmony-arm64": {
472
+ "version": "1.0.0-rc.17",
473
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.17.tgz",
474
+ "integrity": "sha512-0ag/hEgXOwgw4t8QyQvUCxvEg+V0KBcA6YuOx9g0r02MprutRF5dyljgm3EmR02O292UX7UeS6HzWHAl6KgyhA==",
475
+ "dev": true,
476
+ "optional": true
477
+ },
478
+ "@rolldown/binding-wasm32-wasi": {
479
+ "version": "1.0.0-rc.17",
480
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.17.tgz",
481
+ "integrity": "sha512-LEXei6vo0E5wTGwpkJ4KoT3OZJRnglwldt5ziLzOlc6qqb55z4tWNq2A+PFqCJuvWWdP53CVhG1Z9NtToDPJrA==",
482
+ "dev": true,
483
+ "optional": true,
484
+ "requires": {
485
+ "@emnapi/core": "1.10.0",
486
+ "@emnapi/runtime": "1.10.0",
487
+ "@napi-rs/wasm-runtime": "^1.1.4"
488
+ }
489
+ },
490
+ "@rolldown/binding-win32-arm64-msvc": {
491
+ "version": "1.0.0-rc.17",
492
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.17.tgz",
493
+ "integrity": "sha512-gUmyzBl3SPMa6hrqFUth9sVfcLBlYsbMzBx5PlexMroZStgzGqlZ26pYG89rBb45Mnia+oil6YAIFeEWGWhoZA==",
494
+ "dev": true,
495
+ "optional": true
496
+ },
497
+ "@rolldown/binding-win32-x64-msvc": {
498
+ "version": "1.0.0-rc.17",
499
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.17.tgz",
500
+ "integrity": "sha512-3hkiolcUAvPB9FLb3UZdfjVVNWherN1f/skkGWJP/fgSQhYUZpSIRr0/I8ZK9TkF3F7kxvJAk0+IcKvPHk9qQg==",
501
+ "dev": true,
502
+ "optional": true
503
+ },
504
+ "@rolldown/pluginutils": {
505
+ "version": "1.0.0-rc.7",
506
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.7.tgz",
507
+ "integrity": "sha512-qujRfC8sFVInYSPPMLQByRh7zhwkGFS4+tyMQ83srV1qrxL4g8E2tyxVVyxd0+8QeBM1mIk9KbWxkegRr76XzA==",
508
+ "dev": true
509
+ },
510
+ "@standard-schema/spec": {
511
+ "version": "1.1.0",
512
+ "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
513
+ "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w=="
514
+ },
515
+ "@standard-schema/utils": {
516
+ "version": "0.3.0",
517
+ "resolved": "https://registry.npmjs.org/@standard-schema/utils/-/utils-0.3.0.tgz",
518
+ "integrity": "sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g=="
519
+ },
520
+ "@tailwindcss/node": {
521
+ "version": "4.2.4",
522
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.4.tgz",
523
+ "integrity": "sha512-Ai7+yQPxz3ddrDQzFfBKdHEVBg0w3Zl83jnjuwxnZOsnH9pGn93QHQtpU0p/8rYWxvbFZHneni6p1BSLK4DkGA==",
524
+ "dev": true,
525
+ "requires": {
526
+ "@jridgewell/remapping": "^2.3.5",
527
+ "enhanced-resolve": "^5.19.0",
528
+ "jiti": "^2.6.1",
529
+ "lightningcss": "1.32.0",
530
+ "magic-string": "^0.30.21",
531
+ "source-map-js": "^1.2.1",
532
+ "tailwindcss": "4.2.4"
533
+ }
534
+ },
535
+ "@tailwindcss/oxide": {
536
+ "version": "4.2.4",
537
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.4.tgz",
538
+ "integrity": "sha512-9El/iI069DKDSXwTvB9J4BwdO5JhRrOweGaK25taBAvBXyXqJAX+Jqdvs8r8gKpsI/1m0LeJLyQYTf/WLrBT1Q==",
539
+ "dev": true,
540
+ "requires": {
541
+ "@tailwindcss/oxide-android-arm64": "4.2.4",
542
+ "@tailwindcss/oxide-darwin-arm64": "4.2.4",
543
+ "@tailwindcss/oxide-darwin-x64": "4.2.4",
544
+ "@tailwindcss/oxide-freebsd-x64": "4.2.4",
545
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.4",
546
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.2.4",
547
+ "@tailwindcss/oxide-linux-arm64-musl": "4.2.4",
548
+ "@tailwindcss/oxide-linux-x64-gnu": "4.2.4",
549
+ "@tailwindcss/oxide-linux-x64-musl": "4.2.4",
550
+ "@tailwindcss/oxide-wasm32-wasi": "4.2.4",
551
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.2.4",
552
+ "@tailwindcss/oxide-win32-x64-msvc": "4.2.4"
553
+ }
554
+ },
555
+ "@tailwindcss/oxide-android-arm64": {
556
+ "version": "4.2.4",
557
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.4.tgz",
558
+ "integrity": "sha512-e7MOr1SAn9U8KlZzPi1ZXGZHeC5anY36qjNwmZv9pOJ8E4Q6jmD1vyEHkQFmNOIN7twGPEMXRHmitN4zCMN03g==",
559
+ "dev": true,
560
+ "optional": true
561
+ },
562
+ "@tailwindcss/oxide-darwin-arm64": {
563
+ "version": "4.2.4",
564
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.4.tgz",
565
+ "integrity": "sha512-tSC/Kbqpz/5/o/C2sG7QvOxAKqyd10bq+ypZNf+9Fi2TvbVbv1zNpcEptcsU7DPROaSbVgUXmrzKhurFvo5eDg==",
566
+ "dev": true,
567
+ "optional": true
568
+ },
569
+ "@tailwindcss/oxide-darwin-x64": {
570
+ "version": "4.2.4",
571
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.4.tgz",
572
+ "integrity": "sha512-yPyUXn3yO/ufR6+Kzv0t4fCg2qNr90jxXc5QqBpjlPNd0NqyDXcmQb/6weunH/MEDXW5dhyEi+agTDiqa3WsGg==",
573
+ "dev": true,
574
+ "optional": true
575
+ },
576
+ "@tailwindcss/oxide-freebsd-x64": {
577
+ "version": "4.2.4",
578
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.4.tgz",
579
+ "integrity": "sha512-BoMIB4vMQtZsXdGLVc2z+P9DbETkiopogfWZKbWwM8b/1Vinbs4YcUwo+kM/KeLkX3Ygrf4/PsRndKaYhS8Eiw==",
580
+ "dev": true,
581
+ "optional": true
582
+ },
583
+ "@tailwindcss/oxide-linux-arm-gnueabihf": {
584
+ "version": "4.2.4",
585
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.4.tgz",
586
+ "integrity": "sha512-7pIHBLTHYRAlS7V22JNuTh33yLH4VElwKtB3bwchK/UaKUPpQ0lPQiOWcbm4V3WP2I6fNIJ23vABIvoy2izdwA==",
587
+ "dev": true,
588
+ "optional": true
589
+ },
590
+ "@tailwindcss/oxide-linux-arm64-gnu": {
591
+ "version": "4.2.4",
592
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.4.tgz",
593
+ "integrity": "sha512-+E4wxJ0ZGOzSH325reXTWB48l42i93kQqMvDyz5gqfRzRZ7faNhnmvlV4EPGJU3QJM/3Ab5jhJ5pCRUsKn6OQw==",
594
+ "dev": true,
595
+ "optional": true
596
+ },
597
+ "@tailwindcss/oxide-linux-arm64-musl": {
598
+ "version": "4.2.4",
599
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.4.tgz",
600
+ "integrity": "sha512-bBADEGAbo4ASnppIziaQJelekCxdMaxisrk+fB7Thit72IBnALp9K6ffA2G4ruj90G9XRS2VQ6q2bCKbfFV82g==",
601
+ "dev": true,
602
+ "optional": true
603
+ },
604
+ "@tailwindcss/oxide-linux-x64-gnu": {
605
+ "version": "4.2.4",
606
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.4.tgz",
607
+ "integrity": "sha512-7Mx25E4WTfnht0TVRTyC00j3i0M+EeFe7wguMDTlX4mRxafznw0CA8WJkFjWYH5BlgELd1kSjuU2JiPnNZbJDA==",
608
+ "dev": true,
609
+ "optional": true
610
+ },
611
+ "@tailwindcss/oxide-linux-x64-musl": {
612
+ "version": "4.2.4",
613
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.4.tgz",
614
+ "integrity": "sha512-2wwJRF7nyhOR0hhHoChc04xngV3iS+akccHTGtz965FwF0up4b2lOdo6kI1EbDaEXKgvcrFBYcYQQ/rrnWFVfA==",
615
+ "dev": true,
616
+ "optional": true
617
+ },
618
+ "@tailwindcss/oxide-wasm32-wasi": {
619
+ "version": "4.2.4",
620
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.4.tgz",
621
+ "integrity": "sha512-FQsqApeor8Fo6gUEklzmaa9994orJZZDBAlQpK2Mq+DslRKFJeD6AjHpBQ0kZFQohVr8o85PPh8eOy86VlSCmw==",
622
+ "dev": true,
623
+ "optional": true,
624
+ "requires": {
625
+ "@emnapi/core": "^1.8.1",
626
+ "@emnapi/runtime": "^1.8.1",
627
+ "@emnapi/wasi-threads": "^1.1.0",
628
+ "@napi-rs/wasm-runtime": "^1.1.1",
629
+ "@tybys/wasm-util": "^0.10.1",
630
+ "tslib": "^2.8.1"
631
+ },
632
+ "dependencies": {
633
+ "@emnapi/core": {
634
+ "version": "1.8.1",
635
+ "bundled": true,
636
+ "dev": true,
637
+ "optional": true,
638
+ "requires": {
639
+ "@emnapi/wasi-threads": "1.1.0",
640
+ "tslib": "^2.4.0"
641
+ }
642
+ },
643
+ "@emnapi/runtime": {
644
+ "version": "1.8.1",
645
+ "bundled": true,
646
+ "dev": true,
647
+ "optional": true,
648
+ "requires": {
649
+ "tslib": "^2.4.0"
650
+ }
651
+ },
652
+ "@emnapi/wasi-threads": {
653
+ "version": "1.1.0",
654
+ "bundled": true,
655
+ "dev": true,
656
+ "optional": true,
657
+ "requires": {
658
+ "tslib": "^2.4.0"
659
+ }
660
+ },
661
+ "@napi-rs/wasm-runtime": {
662
+ "version": "1.1.1",
663
+ "bundled": true,
664
+ "dev": true,
665
+ "optional": true,
666
+ "requires": {
667
+ "@emnapi/core": "^1.7.1",
668
+ "@emnapi/runtime": "^1.7.1",
669
+ "@tybys/wasm-util": "^0.10.1"
670
+ }
671
+ },
672
+ "@tybys/wasm-util": {
673
+ "version": "0.10.1",
674
+ "bundled": true,
675
+ "dev": true,
676
+ "optional": true,
677
+ "requires": {
678
+ "tslib": "^2.4.0"
679
+ }
680
+ },
681
+ "tslib": {
682
+ "version": "2.8.1",
683
+ "bundled": true,
684
+ "dev": true,
685
+ "optional": true
686
+ }
687
+ }
688
+ },
689
+ "@tailwindcss/oxide-win32-arm64-msvc": {
690
+ "version": "4.2.4",
691
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.4.tgz",
692
+ "integrity": "sha512-L9BXqxC4ToVgwMFqj3pmZRqyHEztulpUJzCxUtLjobMCzTPsGt1Fa9enKbOpY2iIyVtaHNeNvAK8ERP/64sqGQ==",
693
+ "dev": true,
694
+ "optional": true
695
+ },
696
+ "@tailwindcss/oxide-win32-x64-msvc": {
697
+ "version": "4.2.4",
698
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.4.tgz",
699
+ "integrity": "sha512-ESlKG0EpVJQwRjXDDa9rLvhEAh0mhP1sF7sap9dNZT0yyl9SAG6T7gdP09EH0vIv0UNTlo6jPWyujD6559fZvw==",
700
+ "dev": true,
701
+ "optional": true
702
+ },
703
+ "@tailwindcss/vite": {
704
+ "version": "4.2.4",
705
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.2.4.tgz",
706
+ "integrity": "sha512-pCvohwOCspk3ZFn6eJzrrX3g4n2JY73H6MmYC87XfGPyTty4YsCjYTMArRZm/zOI8dIt3+EcrLHAFPe5A4bgtw==",
707
+ "dev": true,
708
+ "requires": {
709
+ "@tailwindcss/node": "4.2.4",
710
+ "@tailwindcss/oxide": "4.2.4",
711
+ "tailwindcss": "4.2.4"
712
+ }
713
+ },
714
+ "@tybys/wasm-util": {
715
+ "version": "0.10.1",
716
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
717
+ "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
718
+ "dev": true,
719
+ "optional": true,
720
+ "requires": {
721
+ "tslib": "^2.4.0"
722
+ }
723
+ },
724
+ "@types/d3-array": {
725
+ "version": "3.2.2",
726
+ "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.2.tgz",
727
+ "integrity": "sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw=="
728
+ },
729
+ "@types/d3-color": {
730
+ "version": "3.1.3",
731
+ "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz",
732
+ "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A=="
733
+ },
734
+ "@types/d3-ease": {
735
+ "version": "3.0.2",
736
+ "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz",
737
+ "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA=="
738
+ },
739
+ "@types/d3-interpolate": {
740
+ "version": "3.0.4",
741
+ "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz",
742
+ "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==",
743
+ "requires": {
744
+ "@types/d3-color": "*"
745
+ }
746
+ },
747
+ "@types/d3-path": {
748
+ "version": "3.1.1",
749
+ "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz",
750
+ "integrity": "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg=="
751
+ },
752
+ "@types/d3-scale": {
753
+ "version": "4.0.9",
754
+ "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz",
755
+ "integrity": "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==",
756
+ "requires": {
757
+ "@types/d3-time": "*"
758
+ }
759
+ },
760
+ "@types/d3-shape": {
761
+ "version": "3.1.8",
762
+ "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.8.tgz",
763
+ "integrity": "sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==",
764
+ "requires": {
765
+ "@types/d3-path": "*"
766
+ }
767
+ },
768
+ "@types/d3-time": {
769
+ "version": "3.0.4",
770
+ "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz",
771
+ "integrity": "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g=="
772
+ },
773
+ "@types/d3-timer": {
774
+ "version": "3.0.2",
775
+ "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz",
776
+ "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw=="
777
+ },
778
+ "@types/esrecurse": {
779
+ "version": "4.3.1",
780
+ "resolved": "https://registry.npmjs.org/@types/esrecurse/-/esrecurse-4.3.1.tgz",
781
+ "integrity": "sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==",
782
+ "dev": true
783
+ },
784
+ "@types/estree": {
785
+ "version": "1.0.8",
786
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
787
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
788
+ "dev": true
789
+ },
790
+ "@types/json-schema": {
791
+ "version": "7.0.15",
792
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
793
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
794
+ "dev": true
795
+ },
796
+ "@types/react": {
797
+ "version": "19.2.14",
798
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
799
+ "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
800
+ "dev": true,
801
+ "requires": {
802
+ "csstype": "^3.2.2"
803
+ }
804
+ },
805
+ "@types/react-dom": {
806
+ "version": "19.2.3",
807
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
808
+ "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
809
+ "dev": true
810
+ },
811
+ "@types/use-sync-external-store": {
812
+ "version": "0.0.6",
813
+ "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz",
814
+ "integrity": "sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg=="
815
+ },
816
+ "@vitejs/plugin-react": {
817
+ "version": "6.0.1",
818
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.1.tgz",
819
+ "integrity": "sha512-l9X/E3cDb+xY3SWzlG1MOGt2usfEHGMNIaegaUGFsLkb3RCn/k8/TOXBcab+OndDI4TBtktT8/9BwwW8Vi9KUQ==",
820
+ "dev": true,
821
+ "requires": {
822
+ "@rolldown/pluginutils": "1.0.0-rc.7"
823
+ }
824
+ },
825
+ "acorn": {
826
+ "version": "8.16.0",
827
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
828
+ "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
829
+ "dev": true
830
+ },
831
+ "acorn-jsx": {
832
+ "version": "5.3.2",
833
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
834
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
835
+ "dev": true
836
+ },
837
+ "ajv": {
838
+ "version": "6.15.0",
839
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz",
840
+ "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==",
841
+ "dev": true,
842
+ "requires": {
843
+ "fast-deep-equal": "^3.1.1",
844
+ "fast-json-stable-stringify": "^2.0.0",
845
+ "json-schema-traverse": "^0.4.1",
846
+ "uri-js": "^4.2.2"
847
+ }
848
+ },
849
+ "autoprefixer": {
850
+ "version": "10.5.0",
851
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.5.0.tgz",
852
+ "integrity": "sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==",
853
+ "dev": true,
854
+ "requires": {
855
+ "browserslist": "^4.28.2",
856
+ "caniuse-lite": "^1.0.30001787",
857
+ "fraction.js": "^5.3.4",
858
+ "picocolors": "^1.1.1",
859
+ "postcss-value-parser": "^4.2.0"
860
+ }
861
+ },
862
+ "balanced-match": {
863
+ "version": "4.0.4",
864
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
865
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
866
+ "dev": true
867
+ },
868
+ "baseline-browser-mapping": {
869
+ "version": "2.10.23",
870
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.23.tgz",
871
+ "integrity": "sha512-xwVXGqevyKPsiuQdLj+dZMVjidjJV508TBqexND5HrF89cGdCYCJFB3qhcxRHSeMctdCfbR1jrxBajhDy7o29g==",
872
+ "dev": true
873
+ },
874
+ "brace-expansion": {
875
+ "version": "5.0.5",
876
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz",
877
+ "integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==",
878
+ "dev": true,
879
+ "requires": {
880
+ "balanced-match": "^4.0.2"
881
+ }
882
+ },
883
+ "browserslist": {
884
+ "version": "4.28.2",
885
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz",
886
+ "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==",
887
+ "dev": true,
888
+ "requires": {
889
+ "baseline-browser-mapping": "^2.10.12",
890
+ "caniuse-lite": "^1.0.30001782",
891
+ "electron-to-chromium": "^1.5.328",
892
+ "node-releases": "^2.0.36",
893
+ "update-browserslist-db": "^1.2.3"
894
+ }
895
+ },
896
+ "caniuse-lite": {
897
+ "version": "1.0.30001791",
898
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001791.tgz",
899
+ "integrity": "sha512-yk0l/YSrOnFZk3UROpDLQD9+kC1l4meK/wed583AXrzoarMGJcbRi2Q4RaUYbKxYAsZ8sWmaSa/DsLmdBeI1vQ==",
900
+ "dev": true
901
+ },
902
+ "clsx": {
903
+ "version": "2.1.1",
904
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
905
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA=="
906
+ },
907
+ "convert-source-map": {
908
+ "version": "2.0.0",
909
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
910
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
911
+ "dev": true
912
+ },
913
+ "cross-spawn": {
914
+ "version": "7.0.6",
915
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
916
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
917
+ "dev": true,
918
+ "requires": {
919
+ "path-key": "^3.1.0",
920
+ "shebang-command": "^2.0.0",
921
+ "which": "^2.0.1"
922
+ }
923
+ },
924
+ "csstype": {
925
+ "version": "3.2.3",
926
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
927
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
928
+ "dev": true
929
+ },
930
+ "d3-array": {
931
+ "version": "3.2.4",
932
+ "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz",
933
+ "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==",
934
+ "requires": {
935
+ "internmap": "1 - 2"
936
+ }
937
+ },
938
+ "d3-color": {
939
+ "version": "3.1.0",
940
+ "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
941
+ "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA=="
942
+ },
943
+ "d3-ease": {
944
+ "version": "3.0.1",
945
+ "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz",
946
+ "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w=="
947
+ },
948
+ "d3-format": {
949
+ "version": "3.1.2",
950
+ "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.2.tgz",
951
+ "integrity": "sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg=="
952
+ },
953
+ "d3-interpolate": {
954
+ "version": "3.0.1",
955
+ "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
956
+ "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
957
+ "requires": {
958
+ "d3-color": "1 - 3"
959
+ }
960
+ },
961
+ "d3-path": {
962
+ "version": "3.1.0",
963
+ "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz",
964
+ "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ=="
965
+ },
966
+ "d3-scale": {
967
+ "version": "4.0.2",
968
+ "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
969
+ "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
970
+ "requires": {
971
+ "d3-array": "2.10.0 - 3",
972
+ "d3-format": "1 - 3",
973
+ "d3-interpolate": "1.2.0 - 3",
974
+ "d3-time": "2.1.1 - 3",
975
+ "d3-time-format": "2 - 4"
976
+ }
977
+ },
978
+ "d3-shape": {
979
+ "version": "3.2.0",
980
+ "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz",
981
+ "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
982
+ "requires": {
983
+ "d3-path": "^3.1.0"
984
+ }
985
+ },
986
+ "d3-time": {
987
+ "version": "3.1.0",
988
+ "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
989
+ "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
990
+ "requires": {
991
+ "d3-array": "2 - 3"
992
+ }
993
+ },
994
+ "d3-time-format": {
995
+ "version": "4.1.0",
996
+ "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz",
997
+ "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
998
+ "requires": {
999
+ "d3-time": "1 - 3"
1000
+ }
1001
+ },
1002
+ "d3-timer": {
1003
+ "version": "3.0.1",
1004
+ "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
1005
+ "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA=="
1006
+ },
1007
+ "debug": {
1008
+ "version": "4.4.3",
1009
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1010
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1011
+ "dev": true,
1012
+ "requires": {
1013
+ "ms": "^2.1.3"
1014
+ }
1015
+ },
1016
+ "decimal.js-light": {
1017
+ "version": "2.5.1",
1018
+ "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz",
1019
+ "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg=="
1020
+ },
1021
+ "deep-is": {
1022
+ "version": "0.1.4",
1023
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
1024
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
1025
+ "dev": true
1026
+ },
1027
+ "detect-libc": {
1028
+ "version": "2.1.2",
1029
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1030
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1031
+ "dev": true
1032
+ },
1033
+ "electron-to-chromium": {
1034
+ "version": "1.5.344",
1035
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.344.tgz",
1036
+ "integrity": "sha512-4MxfbmNDm+KPh066EZy+eUnkcDPcZ35wNmOWzFuh/ijvHsve6kbLTLURy88uCNK5FbpN+yk2nQY6BYh1GEt+wg==",
1037
+ "dev": true
1038
+ },
1039
+ "enhanced-resolve": {
1040
+ "version": "5.21.0",
1041
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.0.tgz",
1042
+ "integrity": "sha512-otxSQPw4lkOZWkHpB3zaEQs6gWYEsmX4xQF68ElXC/TWvGxGMSGOvoNbaLXm6/cS/fSfHtsEdw90y20PCd+sCA==",
1043
+ "dev": true,
1044
+ "requires": {
1045
+ "graceful-fs": "^4.2.4",
1046
+ "tapable": "^2.3.3"
1047
+ }
1048
+ },
1049
+ "es-toolkit": {
1050
+ "version": "1.46.0",
1051
+ "resolved": "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.46.0.tgz",
1052
+ "integrity": "sha512-IToJ6ct9OLl5zz6WsC/1vZEwfSZ7Myil+ygl5Tf30Xjn9AEkzNB4kqp2G7VUJKF1DtTx/ra5M5KLlXvzOg51BA=="
1053
+ },
1054
+ "escalade": {
1055
+ "version": "3.2.0",
1056
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
1057
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
1058
+ "dev": true
1059
+ },
1060
+ "escape-string-regexp": {
1061
+ "version": "4.0.0",
1062
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1063
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1064
+ "dev": true
1065
+ },
1066
+ "eslint": {
1067
+ "version": "10.2.1",
1068
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.2.1.tgz",
1069
+ "integrity": "sha512-wiyGaKsDgqXvF40P8mDwiUp/KQjE1FdrIEJsM8PZ3XCiniTMXS3OHWWUe5FI5agoCnr8x4xPrTDZuxsBlNHl+Q==",
1070
+ "dev": true,
1071
+ "requires": {
1072
+ "@eslint-community/eslint-utils": "^4.8.0",
1073
+ "@eslint-community/regexpp": "^4.12.2",
1074
+ "@eslint/config-array": "^0.23.5",
1075
+ "@eslint/config-helpers": "^0.5.5",
1076
+ "@eslint/core": "^1.2.1",
1077
+ "@eslint/plugin-kit": "^0.7.1",
1078
+ "@humanfs/node": "^0.16.6",
1079
+ "@humanwhocodes/module-importer": "^1.0.1",
1080
+ "@humanwhocodes/retry": "^0.4.2",
1081
+ "@types/estree": "^1.0.6",
1082
+ "ajv": "^6.14.0",
1083
+ "cross-spawn": "^7.0.6",
1084
+ "debug": "^4.3.2",
1085
+ "escape-string-regexp": "^4.0.0",
1086
+ "eslint-scope": "^9.1.2",
1087
+ "eslint-visitor-keys": "^5.0.1",
1088
+ "espree": "^11.2.0",
1089
+ "esquery": "^1.7.0",
1090
+ "esutils": "^2.0.2",
1091
+ "fast-deep-equal": "^3.1.3",
1092
+ "file-entry-cache": "^8.0.0",
1093
+ "find-up": "^5.0.0",
1094
+ "glob-parent": "^6.0.2",
1095
+ "ignore": "^5.2.0",
1096
+ "imurmurhash": "^0.1.4",
1097
+ "is-glob": "^4.0.0",
1098
+ "json-stable-stringify-without-jsonify": "^1.0.1",
1099
+ "minimatch": "^10.2.4",
1100
+ "natural-compare": "^1.4.0",
1101
+ "optionator": "^0.9.3"
1102
+ }
1103
+ },
1104
+ "eslint-plugin-react-hooks": {
1105
+ "version": "7.1.1",
1106
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.1.1.tgz",
1107
+ "integrity": "sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==",
1108
+ "dev": true,
1109
+ "requires": {
1110
+ "@babel/core": "^7.24.4",
1111
+ "@babel/parser": "^7.24.4",
1112
+ "hermes-parser": "^0.25.1",
1113
+ "zod": "^3.25.0 || ^4.0.0",
1114
+ "zod-validation-error": "^3.5.0 || ^4.0.0"
1115
+ }
1116
+ },
1117
+ "eslint-plugin-react-refresh": {
1118
+ "version": "0.5.2",
1119
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.2.tgz",
1120
+ "integrity": "sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==",
1121
+ "dev": true
1122
+ },
1123
+ "eslint-scope": {
1124
+ "version": "9.1.2",
1125
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-9.1.2.tgz",
1126
+ "integrity": "sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==",
1127
+ "dev": true,
1128
+ "requires": {
1129
+ "@types/esrecurse": "^4.3.1",
1130
+ "@types/estree": "^1.0.8",
1131
+ "esrecurse": "^4.3.0",
1132
+ "estraverse": "^5.2.0"
1133
+ }
1134
+ },
1135
+ "eslint-visitor-keys": {
1136
+ "version": "5.0.1",
1137
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
1138
+ "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
1139
+ "dev": true
1140
+ },
1141
+ "espree": {
1142
+ "version": "11.2.0",
1143
+ "resolved": "https://registry.npmjs.org/espree/-/espree-11.2.0.tgz",
1144
+ "integrity": "sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==",
1145
+ "dev": true,
1146
+ "requires": {
1147
+ "acorn": "^8.16.0",
1148
+ "acorn-jsx": "^5.3.2",
1149
+ "eslint-visitor-keys": "^5.0.1"
1150
+ }
1151
+ },
1152
+ "esquery": {
1153
+ "version": "1.7.0",
1154
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz",
1155
+ "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
1156
+ "dev": true,
1157
+ "requires": {
1158
+ "estraverse": "^5.1.0"
1159
+ }
1160
+ },
1161
+ "esrecurse": {
1162
+ "version": "4.3.0",
1163
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
1164
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
1165
+ "dev": true,
1166
+ "requires": {
1167
+ "estraverse": "^5.2.0"
1168
+ }
1169
+ },
1170
+ "estraverse": {
1171
+ "version": "5.3.0",
1172
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
1173
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
1174
+ "dev": true
1175
+ },
1176
+ "esutils": {
1177
+ "version": "2.0.3",
1178
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
1179
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
1180
+ "dev": true
1181
+ },
1182
+ "eventemitter3": {
1183
+ "version": "5.0.4",
1184
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz",
1185
+ "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw=="
1186
+ },
1187
+ "fast-deep-equal": {
1188
+ "version": "3.1.3",
1189
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1190
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
1191
+ "dev": true
1192
+ },
1193
+ "fast-json-stable-stringify": {
1194
+ "version": "2.1.0",
1195
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1196
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
1197
+ "dev": true
1198
+ },
1199
+ "fast-levenshtein": {
1200
+ "version": "2.0.6",
1201
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1202
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
1203
+ "dev": true
1204
+ },
1205
+ "fdir": {
1206
+ "version": "6.5.0",
1207
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
1208
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
1209
+ "dev": true
1210
+ },
1211
+ "file-entry-cache": {
1212
+ "version": "8.0.0",
1213
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
1214
+ "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
1215
+ "dev": true,
1216
+ "requires": {
1217
+ "flat-cache": "^4.0.0"
1218
+ }
1219
+ },
1220
+ "find-up": {
1221
+ "version": "5.0.0",
1222
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
1223
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
1224
+ "dev": true,
1225
+ "requires": {
1226
+ "locate-path": "^6.0.0",
1227
+ "path-exists": "^4.0.0"
1228
+ }
1229
+ },
1230
+ "flat-cache": {
1231
+ "version": "4.0.1",
1232
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
1233
+ "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
1234
+ "dev": true,
1235
+ "requires": {
1236
+ "flatted": "^3.2.9",
1237
+ "keyv": "^4.5.4"
1238
+ }
1239
+ },
1240
+ "flatted": {
1241
+ "version": "3.4.2",
1242
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
1243
+ "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
1244
+ "dev": true
1245
+ },
1246
+ "fraction.js": {
1247
+ "version": "5.3.4",
1248
+ "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz",
1249
+ "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==",
1250
+ "dev": true
1251
+ },
1252
+ "fsevents": {
1253
+ "version": "2.3.3",
1254
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1255
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1256
+ "dev": true,
1257
+ "optional": true
1258
+ },
1259
+ "gensync": {
1260
+ "version": "1.0.0-beta.2",
1261
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
1262
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
1263
+ "dev": true
1264
+ },
1265
+ "glob-parent": {
1266
+ "version": "6.0.2",
1267
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
1268
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
1269
+ "dev": true,
1270
+ "requires": {
1271
+ "is-glob": "^4.0.3"
1272
+ }
1273
+ },
1274
+ "globals": {
1275
+ "version": "17.5.0",
1276
+ "resolved": "https://registry.npmjs.org/globals/-/globals-17.5.0.tgz",
1277
+ "integrity": "sha512-qoV+HK2yFl/366t2/Cb3+xxPUo5BuMynomoDmiaZBIdbs+0pYbjfZU+twLhGKp4uCZ/+NbtpVepH5bGCxRyy2g==",
1278
+ "dev": true
1279
+ },
1280
+ "graceful-fs": {
1281
+ "version": "4.2.11",
1282
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1283
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1284
+ "dev": true
1285
+ },
1286
+ "hermes-estree": {
1287
+ "version": "0.25.1",
1288
+ "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz",
1289
+ "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==",
1290
+ "dev": true
1291
+ },
1292
+ "hermes-parser": {
1293
+ "version": "0.25.1",
1294
+ "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz",
1295
+ "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==",
1296
+ "dev": true,
1297
+ "requires": {
1298
+ "hermes-estree": "0.25.1"
1299
+ }
1300
+ },
1301
+ "ignore": {
1302
+ "version": "5.3.2",
1303
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
1304
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
1305
+ "dev": true
1306
+ },
1307
+ "immer": {
1308
+ "version": "10.2.0",
1309
+ "resolved": "https://registry.npmjs.org/immer/-/immer-10.2.0.tgz",
1310
+ "integrity": "sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw=="
1311
+ },
1312
+ "imurmurhash": {
1313
+ "version": "0.1.4",
1314
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
1315
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
1316
+ "dev": true
1317
+ },
1318
+ "internmap": {
1319
+ "version": "2.0.3",
1320
+ "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz",
1321
+ "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg=="
1322
+ },
1323
+ "is-extglob": {
1324
+ "version": "2.1.1",
1325
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1326
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
1327
+ "dev": true
1328
+ },
1329
+ "is-glob": {
1330
+ "version": "4.0.3",
1331
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
1332
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1333
+ "dev": true,
1334
+ "requires": {
1335
+ "is-extglob": "^2.1.1"
1336
+ }
1337
+ },
1338
+ "isexe": {
1339
+ "version": "2.0.0",
1340
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1341
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
1342
+ "dev": true
1343
+ },
1344
+ "jiti": {
1345
+ "version": "2.6.1",
1346
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
1347
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
1348
+ "dev": true
1349
+ },
1350
+ "js-tokens": {
1351
+ "version": "4.0.0",
1352
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
1353
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
1354
+ "dev": true
1355
+ },
1356
+ "jsesc": {
1357
+ "version": "3.1.0",
1358
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
1359
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
1360
+ "dev": true
1361
+ },
1362
+ "json-buffer": {
1363
+ "version": "3.0.1",
1364
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
1365
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
1366
+ "dev": true
1367
+ },
1368
+ "json-schema-traverse": {
1369
+ "version": "0.4.1",
1370
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
1371
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
1372
+ "dev": true
1373
+ },
1374
+ "json-stable-stringify-without-jsonify": {
1375
+ "version": "1.0.1",
1376
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
1377
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
1378
+ "dev": true
1379
+ },
1380
+ "json5": {
1381
+ "version": "2.2.3",
1382
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
1383
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
1384
+ "dev": true
1385
+ },
1386
+ "keyv": {
1387
+ "version": "4.5.4",
1388
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
1389
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
1390
+ "dev": true,
1391
+ "requires": {
1392
+ "json-buffer": "3.0.1"
1393
+ }
1394
+ },
1395
+ "levn": {
1396
+ "version": "0.4.1",
1397
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
1398
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
1399
+ "dev": true,
1400
+ "requires": {
1401
+ "prelude-ls": "^1.2.1",
1402
+ "type-check": "~0.4.0"
1403
+ }
1404
+ },
1405
+ "lightningcss": {
1406
+ "version": "1.32.0",
1407
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
1408
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
1409
+ "dev": true,
1410
+ "requires": {
1411
+ "detect-libc": "^2.0.3",
1412
+ "lightningcss-android-arm64": "1.32.0",
1413
+ "lightningcss-darwin-arm64": "1.32.0",
1414
+ "lightningcss-darwin-x64": "1.32.0",
1415
+ "lightningcss-freebsd-x64": "1.32.0",
1416
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
1417
+ "lightningcss-linux-arm64-gnu": "1.32.0",
1418
+ "lightningcss-linux-arm64-musl": "1.32.0",
1419
+ "lightningcss-linux-x64-gnu": "1.32.0",
1420
+ "lightningcss-linux-x64-musl": "1.32.0",
1421
+ "lightningcss-win32-arm64-msvc": "1.32.0",
1422
+ "lightningcss-win32-x64-msvc": "1.32.0"
1423
+ }
1424
+ },
1425
+ "lightningcss-android-arm64": {
1426
+ "version": "1.32.0",
1427
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
1428
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
1429
+ "dev": true,
1430
+ "optional": true
1431
+ },
1432
+ "lightningcss-darwin-arm64": {
1433
+ "version": "1.32.0",
1434
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
1435
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
1436
+ "dev": true,
1437
+ "optional": true
1438
+ },
1439
+ "lightningcss-darwin-x64": {
1440
+ "version": "1.32.0",
1441
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
1442
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
1443
+ "dev": true,
1444
+ "optional": true
1445
+ },
1446
+ "lightningcss-freebsd-x64": {
1447
+ "version": "1.32.0",
1448
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
1449
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
1450
+ "dev": true,
1451
+ "optional": true
1452
+ },
1453
+ "lightningcss-linux-arm-gnueabihf": {
1454
+ "version": "1.32.0",
1455
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
1456
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
1457
+ "dev": true,
1458
+ "optional": true
1459
+ },
1460
+ "lightningcss-linux-arm64-gnu": {
1461
+ "version": "1.32.0",
1462
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
1463
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
1464
+ "dev": true,
1465
+ "optional": true
1466
+ },
1467
+ "lightningcss-linux-arm64-musl": {
1468
+ "version": "1.32.0",
1469
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
1470
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
1471
+ "dev": true,
1472
+ "optional": true
1473
+ },
1474
+ "lightningcss-linux-x64-gnu": {
1475
+ "version": "1.32.0",
1476
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
1477
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
1478
+ "dev": true,
1479
+ "optional": true
1480
+ },
1481
+ "lightningcss-linux-x64-musl": {
1482
+ "version": "1.32.0",
1483
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
1484
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
1485
+ "dev": true,
1486
+ "optional": true
1487
+ },
1488
+ "lightningcss-win32-arm64-msvc": {
1489
+ "version": "1.32.0",
1490
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
1491
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
1492
+ "dev": true,
1493
+ "optional": true
1494
+ },
1495
+ "lightningcss-win32-x64-msvc": {
1496
+ "version": "1.32.0",
1497
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
1498
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
1499
+ "dev": true,
1500
+ "optional": true
1501
+ },
1502
+ "locate-path": {
1503
+ "version": "6.0.0",
1504
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
1505
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
1506
+ "dev": true,
1507
+ "requires": {
1508
+ "p-locate": "^5.0.0"
1509
+ }
1510
+ },
1511
+ "lru-cache": {
1512
+ "version": "5.1.1",
1513
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
1514
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
1515
+ "dev": true,
1516
+ "requires": {
1517
+ "yallist": "^3.0.2"
1518
+ }
1519
+ },
1520
+ "magic-string": {
1521
+ "version": "0.30.21",
1522
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
1523
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
1524
+ "dev": true,
1525
+ "requires": {
1526
+ "@jridgewell/sourcemap-codec": "^1.5.5"
1527
+ }
1528
+ },
1529
+ "minimatch": {
1530
+ "version": "10.2.5",
1531
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
1532
+ "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
1533
+ "dev": true,
1534
+ "requires": {
1535
+ "brace-expansion": "^5.0.5"
1536
+ }
1537
+ },
1538
+ "ms": {
1539
+ "version": "2.1.3",
1540
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1541
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1542
+ "dev": true
1543
+ },
1544
+ "nanoid": {
1545
+ "version": "3.3.11",
1546
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
1547
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
1548
+ "dev": true
1549
+ },
1550
+ "natural-compare": {
1551
+ "version": "1.4.0",
1552
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
1553
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
1554
+ "dev": true
1555
+ },
1556
+ "node-releases": {
1557
+ "version": "2.0.38",
1558
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.38.tgz",
1559
+ "integrity": "sha512-3qT/88Y3FbH/Kx4szpQQ4HzUbVrHPKTLVpVocKiLfoYvw9XSGOX2FmD2d6DrXbVYyAQTF2HeF6My8jmzx7/CRw==",
1560
+ "dev": true
1561
+ },
1562
+ "optionator": {
1563
+ "version": "0.9.4",
1564
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
1565
+ "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
1566
+ "dev": true,
1567
+ "requires": {
1568
+ "deep-is": "^0.1.3",
1569
+ "fast-levenshtein": "^2.0.6",
1570
+ "levn": "^0.4.1",
1571
+ "prelude-ls": "^1.2.1",
1572
+ "type-check": "^0.4.0",
1573
+ "word-wrap": "^1.2.5"
1574
+ }
1575
+ },
1576
+ "p-limit": {
1577
+ "version": "3.1.0",
1578
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
1579
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
1580
+ "dev": true,
1581
+ "requires": {
1582
+ "yocto-queue": "^0.1.0"
1583
+ }
1584
+ },
1585
+ "p-locate": {
1586
+ "version": "5.0.0",
1587
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
1588
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
1589
+ "dev": true,
1590
+ "requires": {
1591
+ "p-limit": "^3.0.2"
1592
+ }
1593
+ },
1594
+ "path-exists": {
1595
+ "version": "4.0.0",
1596
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
1597
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
1598
+ "dev": true
1599
+ },
1600
+ "path-key": {
1601
+ "version": "3.1.1",
1602
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
1603
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
1604
+ "dev": true
1605
+ },
1606
+ "picocolors": {
1607
+ "version": "1.1.1",
1608
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
1609
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
1610
+ "dev": true
1611
+ },
1612
+ "picomatch": {
1613
+ "version": "4.0.4",
1614
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
1615
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
1616
+ "dev": true
1617
+ },
1618
+ "postcss": {
1619
+ "version": "8.5.12",
1620
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.12.tgz",
1621
+ "integrity": "sha512-W62t/Se6rA0Az3DfCL0AqJwXuKwBeYg6nOaIgzP+xZ7N5BFCI7DYi1qs6ygUYT6rvfi6t9k65UMLJC+PHZpDAA==",
1622
+ "dev": true,
1623
+ "requires": {
1624
+ "nanoid": "^3.3.11",
1625
+ "picocolors": "^1.1.1",
1626
+ "source-map-js": "^1.2.1"
1627
+ }
1628
+ },
1629
+ "postcss-value-parser": {
1630
+ "version": "4.2.0",
1631
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
1632
+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
1633
+ "dev": true
1634
+ },
1635
+ "prelude-ls": {
1636
+ "version": "1.2.1",
1637
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
1638
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
1639
+ "dev": true
1640
+ },
1641
+ "punycode": {
1642
+ "version": "2.3.1",
1643
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
1644
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
1645
+ "dev": true
1646
+ },
1647
+ "react": {
1648
+ "version": "19.2.5",
1649
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.5.tgz",
1650
+ "integrity": "sha512-llUJLzz1zTUBrskt2pwZgLq59AemifIftw4aB7JxOqf1HY2FDaGDxgwpAPVzHU1kdWabH7FauP4i1oEeer2WCA=="
1651
+ },
1652
+ "react-dom": {
1653
+ "version": "19.2.5",
1654
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.5.tgz",
1655
+ "integrity": "sha512-J5bAZz+DXMMwW/wV3xzKke59Af6CHY7G4uYLN1OvBcKEsWOs4pQExj86BBKamxl/Ik5bx9whOrvBlSDfWzgSag==",
1656
+ "requires": {
1657
+ "scheduler": "^0.27.0"
1658
+ }
1659
+ },
1660
+ "react-is": {
1661
+ "version": "18.2.0",
1662
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
1663
+ "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="
1664
+ },
1665
+ "react-redux": {
1666
+ "version": "9.2.0",
1667
+ "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-9.2.0.tgz",
1668
+ "integrity": "sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==",
1669
+ "requires": {
1670
+ "@types/use-sync-external-store": "^0.0.6",
1671
+ "use-sync-external-store": "^1.4.0"
1672
+ }
1673
+ },
1674
+ "recharts": {
1675
+ "version": "3.8.1",
1676
+ "resolved": "https://registry.npmjs.org/recharts/-/recharts-3.8.1.tgz",
1677
+ "integrity": "sha512-mwzmO1s9sFL0TduUpwndxCUNoXsBw3u3E/0+A+cLcrSfQitSG62L32N69GhqUrrT5qKcAE3pCGVINC6pqkBBQg==",
1678
+ "requires": {
1679
+ "@reduxjs/toolkit": "^1.9.0 || 2.x.x",
1680
+ "clsx": "^2.1.1",
1681
+ "decimal.js-light": "^2.5.1",
1682
+ "es-toolkit": "^1.39.3",
1683
+ "eventemitter3": "^5.0.1",
1684
+ "immer": "^10.1.1",
1685
+ "react-redux": "8.x.x || 9.x.x",
1686
+ "reselect": "5.1.1",
1687
+ "tiny-invariant": "^1.3.3",
1688
+ "use-sync-external-store": "^1.2.2",
1689
+ "victory-vendor": "^37.0.2"
1690
+ }
1691
+ },
1692
+ "redux": {
1693
+ "version": "5.0.1",
1694
+ "resolved": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz",
1695
+ "integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w=="
1696
+ },
1697
+ "redux-thunk": {
1698
+ "version": "3.1.0",
1699
+ "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-3.1.0.tgz",
1700
+ "integrity": "sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw=="
1701
+ },
1702
+ "reselect": {
1703
+ "version": "5.1.1",
1704
+ "resolved": "https://registry.npmjs.org/reselect/-/reselect-5.1.1.tgz",
1705
+ "integrity": "sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w=="
1706
+ },
1707
+ "rolldown": {
1708
+ "version": "1.0.0-rc.17",
1709
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.17.tgz",
1710
+ "integrity": "sha512-ZrT53oAKrtA4+YtBWPQbtPOxIbVDbxT0orcYERKd63VJTF13zPcgXTvD4843L8pcsI7M6MErt8QtON6lrB9tyA==",
1711
+ "dev": true,
1712
+ "requires": {
1713
+ "@oxc-project/types": "=0.127.0",
1714
+ "@rolldown/binding-android-arm64": "1.0.0-rc.17",
1715
+ "@rolldown/binding-darwin-arm64": "1.0.0-rc.17",
1716
+ "@rolldown/binding-darwin-x64": "1.0.0-rc.17",
1717
+ "@rolldown/binding-freebsd-x64": "1.0.0-rc.17",
1718
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.17",
1719
+ "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.17",
1720
+ "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.17",
1721
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.17",
1722
+ "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.17",
1723
+ "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.17",
1724
+ "@rolldown/binding-linux-x64-musl": "1.0.0-rc.17",
1725
+ "@rolldown/binding-openharmony-arm64": "1.0.0-rc.17",
1726
+ "@rolldown/binding-wasm32-wasi": "1.0.0-rc.17",
1727
+ "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.17",
1728
+ "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.17",
1729
+ "@rolldown/pluginutils": "1.0.0-rc.17"
1730
+ },
1731
+ "dependencies": {
1732
+ "@rolldown/pluginutils": {
1733
+ "version": "1.0.0-rc.17",
1734
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.17.tgz",
1735
+ "integrity": "sha512-n8iosDOt6Ig1UhJ2AYqoIhHWh/isz0xpicHTzpKBeotdVsTEcxsSA/i3EVM7gQAj0rU27OLAxCjzlj15IWY7bg==",
1736
+ "dev": true
1737
+ }
1738
+ }
1739
+ },
1740
+ "scheduler": {
1741
+ "version": "0.27.0",
1742
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
1743
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q=="
1744
+ },
1745
+ "semver": {
1746
+ "version": "6.3.1",
1747
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
1748
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
1749
+ "dev": true
1750
+ },
1751
+ "shebang-command": {
1752
+ "version": "2.0.0",
1753
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
1754
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
1755
+ "dev": true,
1756
+ "requires": {
1757
+ "shebang-regex": "^3.0.0"
1758
+ }
1759
+ },
1760
+ "shebang-regex": {
1761
+ "version": "3.0.0",
1762
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
1763
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
1764
+ "dev": true
1765
+ },
1766
+ "source-map-js": {
1767
+ "version": "1.2.1",
1768
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
1769
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
1770
+ "dev": true
1771
+ },
1772
+ "tailwindcss": {
1773
+ "version": "4.2.4",
1774
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.4.tgz",
1775
+ "integrity": "sha512-HhKppgO81FQof5m6TEnuBWCZGgfRAWbaeOaGT00KOy/Pf/j6oUihdvBpA7ltCeAvZpFhW3j0PTclkxsd4IXYDA==",
1776
+ "dev": true
1777
+ },
1778
+ "tapable": {
1779
+ "version": "2.3.3",
1780
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz",
1781
+ "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==",
1782
+ "dev": true
1783
+ },
1784
+ "tiny-invariant": {
1785
+ "version": "1.3.3",
1786
+ "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
1787
+ "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg=="
1788
+ },
1789
+ "tinyglobby": {
1790
+ "version": "0.2.16",
1791
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
1792
+ "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
1793
+ "dev": true,
1794
+ "requires": {
1795
+ "fdir": "^6.5.0",
1796
+ "picomatch": "^4.0.4"
1797
+ }
1798
+ },
1799
+ "tslib": {
1800
+ "version": "2.8.1",
1801
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
1802
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
1803
+ "dev": true,
1804
+ "optional": true
1805
+ },
1806
+ "type-check": {
1807
+ "version": "0.4.0",
1808
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
1809
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
1810
+ "dev": true,
1811
+ "requires": {
1812
+ "prelude-ls": "^1.2.1"
1813
+ }
1814
+ },
1815
+ "update-browserslist-db": {
1816
+ "version": "1.2.3",
1817
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
1818
+ "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
1819
+ "dev": true,
1820
+ "requires": {
1821
+ "escalade": "^3.2.0",
1822
+ "picocolors": "^1.1.1"
1823
+ }
1824
+ },
1825
+ "uri-js": {
1826
+ "version": "4.4.1",
1827
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
1828
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
1829
+ "dev": true,
1830
+ "requires": {
1831
+ "punycode": "^2.1.0"
1832
+ }
1833
+ },
1834
+ "use-sync-external-store": {
1835
+ "version": "1.6.0",
1836
+ "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz",
1837
+ "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w=="
1838
+ },
1839
+ "victory-vendor": {
1840
+ "version": "37.3.6",
1841
+ "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-37.3.6.tgz",
1842
+ "integrity": "sha512-SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ==",
1843
+ "requires": {
1844
+ "@types/d3-array": "^3.0.3",
1845
+ "@types/d3-ease": "^3.0.0",
1846
+ "@types/d3-interpolate": "^3.0.1",
1847
+ "@types/d3-scale": "^4.0.2",
1848
+ "@types/d3-shape": "^3.1.0",
1849
+ "@types/d3-time": "^3.0.0",
1850
+ "@types/d3-timer": "^3.0.0",
1851
+ "d3-array": "^3.1.6",
1852
+ "d3-ease": "^3.0.1",
1853
+ "d3-interpolate": "^3.0.1",
1854
+ "d3-scale": "^4.0.2",
1855
+ "d3-shape": "^3.1.0",
1856
+ "d3-time": "^3.0.0",
1857
+ "d3-timer": "^3.0.1"
1858
+ }
1859
+ },
1860
+ "vite": {
1861
+ "version": "8.0.10",
1862
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.10.tgz",
1863
+ "integrity": "sha512-rZuUu9j6J5uotLDs+cAA4O5H4K1SfPliUlQwqa6YEwSrWDZzP4rhm00oJR5snMewjxF5V/K3D4kctsUTsIU9Mw==",
1864
+ "dev": true,
1865
+ "requires": {
1866
+ "fsevents": "~2.3.3",
1867
+ "lightningcss": "^1.32.0",
1868
+ "picomatch": "^4.0.4",
1869
+ "postcss": "^8.5.10",
1870
+ "rolldown": "1.0.0-rc.17",
1871
+ "tinyglobby": "^0.2.16"
1872
+ }
1873
+ },
1874
+ "which": {
1875
+ "version": "2.0.2",
1876
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
1877
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
1878
+ "dev": true,
1879
+ "requires": {
1880
+ "isexe": "^2.0.0"
1881
+ }
1882
+ },
1883
+ "word-wrap": {
1884
+ "version": "1.2.5",
1885
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
1886
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
1887
+ "dev": true
1888
+ },
1889
+ "yallist": {
1890
+ "version": "3.1.1",
1891
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
1892
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
1893
+ "dev": true
1894
+ },
1895
+ "yocto-queue": {
1896
+ "version": "0.1.0",
1897
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
1898
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
1899
+ "dev": true
1900
+ },
1901
+ "zod": {
1902
+ "version": "4.3.6",
1903
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz",
1904
+ "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==",
1905
+ "dev": true
1906
+ },
1907
+ "zod-validation-error": {
1908
+ "version": "4.0.2",
1909
+ "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz",
1910
+ "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==",
1911
+ "dev": true
1912
+ }
1913
+ }
1914
+ }
package.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "wordmap",
3
+ "private": true,
4
+ "version": "0.0.0",
5
+ "type": "module",
6
+ "scripts": {
7
+ "dev": "vite",
8
+ "build": "vite build",
9
+ "lint": "eslint .",
10
+ "preview": "vite preview"
11
+ },
12
+ "dependencies": {
13
+ "react": "^19.2.5",
14
+ "react-dom": "^19.2.5",
15
+ "react-is": "^18.2.0",
16
+ "recharts": "^3.8.1"
17
+ },
18
+ "devDependencies": {
19
+ "@eslint/js": "^10.0.1",
20
+ "@tailwindcss/vite": "^4.2.4",
21
+ "@types/react": "^19.2.14",
22
+ "@types/react-dom": "^19.2.3",
23
+ "@vitejs/plugin-react": "^6.0.1",
24
+ "autoprefixer": "^10.5.0",
25
+ "eslint": "^10.2.1",
26
+ "eslint-plugin-react-hooks": "^7.1.1",
27
+ "eslint-plugin-react-refresh": "^0.5.2",
28
+ "globals": "^17.5.0",
29
+ "postcss": "^8.5.12",
30
+ "tailwindcss": "^4.2.4",
31
+ "vite": "^8.0.10"
32
+ }
33
+ }
public/favicon.svg ADDED
public/icons.svg ADDED
src/App.css ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .counter {
2
+ font-size: 16px;
3
+ padding: 5px 10px;
4
+ border-radius: 5px;
5
+ color: var(--accent);
6
+ background: var(--accent-bg);
7
+ border: 2px solid transparent;
8
+ transition: border-color 0.3s;
9
+ margin-bottom: 24px;
10
+
11
+ &:hover {
12
+ border-color: var(--accent-border);
13
+ }
14
+ &:focus-visible {
15
+ outline: 2px solid var(--accent);
16
+ outline-offset: 2px;
17
+ }
18
+ }
19
+
20
+ .hero {
21
+ position: relative;
22
+
23
+ .base,
24
+ .framework,
25
+ .vite {
26
+ inset-inline: 0;
27
+ margin: 0 auto;
28
+ }
29
+
30
+ .base {
31
+ width: 170px;
32
+ position: relative;
33
+ z-index: 0;
34
+ }
35
+
36
+ .framework,
37
+ .vite {
38
+ position: absolute;
39
+ }
40
+
41
+ .framework {
42
+ z-index: 1;
43
+ top: 34px;
44
+ height: 28px;
45
+ transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
46
+ scale(1.4);
47
+ }
48
+
49
+ .vite {
50
+ z-index: 0;
51
+ top: 107px;
52
+ height: 26px;
53
+ width: auto;
54
+ transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
55
+ scale(0.8);
56
+ }
57
+ }
58
+
59
+ #center {
60
+ display: flex;
61
+ flex-direction: column;
62
+ gap: 25px;
63
+ place-content: center;
64
+ place-items: center;
65
+ flex-grow: 1;
66
+
67
+ @media (max-width: 1024px) {
68
+ padding: 32px 20px 24px;
69
+ gap: 18px;
70
+ }
71
+ }
72
+
73
+ #next-steps {
74
+ display: flex;
75
+ border-top: 1px solid var(--border);
76
+ text-align: left;
77
+
78
+ & > div {
79
+ flex: 1 1 0;
80
+ padding: 32px;
81
+ @media (max-width: 1024px) {
82
+ padding: 24px 20px;
83
+ }
84
+ }
85
+
86
+ .icon {
87
+ margin-bottom: 16px;
88
+ width: 22px;
89
+ height: 22px;
90
+ }
91
+
92
+ @media (max-width: 1024px) {
93
+ flex-direction: column;
94
+ text-align: center;
95
+ }
96
+ }
97
+
98
+ #docs {
99
+ border-right: 1px solid var(--border);
100
+
101
+ @media (max-width: 1024px) {
102
+ border-right: none;
103
+ border-bottom: 1px solid var(--border);
104
+ }
105
+ }
106
+
107
+ #next-steps ul {
108
+ list-style: none;
109
+ padding: 0;
110
+ display: flex;
111
+ gap: 8px;
112
+ margin: 32px 0 0;
113
+
114
+ .logo {
115
+ height: 18px;
116
+ }
117
+
118
+ a {
119
+ color: var(--text-h);
120
+ font-size: 16px;
121
+ border-radius: 6px;
122
+ background: var(--social-bg);
123
+ display: flex;
124
+ padding: 6px 12px;
125
+ align-items: center;
126
+ gap: 8px;
127
+ text-decoration: none;
128
+ transition: box-shadow 0.3s;
129
+
130
+ &:hover {
131
+ box-shadow: var(--shadow);
132
+ }
133
+ .button-icon {
134
+ height: 18px;
135
+ width: 18px;
136
+ }
137
+ }
138
+
139
+ @media (max-width: 1024px) {
140
+ margin-top: 20px;
141
+ flex-wrap: wrap;
142
+ justify-content: center;
143
+
144
+ li {
145
+ flex: 1 1 calc(50% - 8px);
146
+ }
147
+
148
+ a {
149
+ width: 100%;
150
+ justify-content: center;
151
+ box-sizing: border-box;
152
+ }
153
+ }
154
+ }
155
+
156
+ #spacer {
157
+ height: 88px;
158
+ border-top: 1px solid var(--border);
159
+ @media (max-width: 1024px) {
160
+ height: 48px;
161
+ }
162
+ }
163
+
164
+ .ticks {
165
+ position: relative;
166
+ width: 100%;
167
+
168
+ &::before,
169
+ &::after {
170
+ content: '';
171
+ position: absolute;
172
+ top: -4.5px;
173
+ border: 5px solid transparent;
174
+ }
175
+
176
+ &::before {
177
+ left: 0;
178
+ border-left-color: var(--border);
179
+ }
180
+ &::after {
181
+ right: 0;
182
+ border-right-color: var(--border);
183
+ }
184
+ }
src/App.jsx ADDED
@@ -0,0 +1,352 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { useState } from "react";
2
+ import { BarChart, Bar, XAxis, YAxis, Tooltip, ResponsiveContainer, CartesianGrid, Legend } from "recharts";
3
+
4
+ const keywords = [
5
+ { word: "renewable", runs: [88, 85, 78], cat: "persist" },
6
+ { word: "emissions", runs: [62, 95, 72], cat: "persist" },
7
+ { word: "energy", runs: [78, 70, 82], cat: "persist" },
8
+ { word: "technology", runs: [30, 50, 95], cat: "grow" },
9
+ { word: "greenhouse", runs: [40, 35, 55], cat: "persist" },
10
+ { word: "biofuels", runs: [95, 15, 5], cat: "shrink" },
11
+ { word: "algae", runs: [55, 5, 0], cat: "shrink" },
12
+ { word: "ethanol", runs: [50, 5, 0], cat: "shrink" },
13
+ { word: "cellulosic", runs: [38, 0, 0], cat: "shrink" },
14
+ { word: "biodiesel", runs: [42, 0, 0], cat: "shrink" },
15
+ { word: "carbon capture", runs: [65, 45, 20], cat: "shrink" },
16
+ { word: "digital", runs: [0, 55, 25], cat: "emerge15" },
17
+ { word: "AI", runs: [0, 58, 20], cat: "emerge15" },
18
+ { word: "economic", runs: [10, 52, 35], cat: "emerge15" },
19
+ { word: "natural gas", runs: [25, 55, 30], cat: "emerge15" },
20
+ { word: "plastics", runs: [0, 38, 15], cat: "emerge15" },
21
+ { word: "sustainability", runs: [20, 65, 50], cat: "emerge15" },
22
+ { word: "infrastructure", runs: [15, 42, 30], cat: "emerge15" },
23
+ { word: "offshore", runs: [0, 0, 62], cat: "emerge50" },
24
+ { word: "monitoring", runs: [0, 0, 70], cat: "emerge50" },
25
+ { word: "marine fuels", runs: [0, 0, 48], cat: "emerge50" },
26
+ { word: "exploration", runs: [0, 0, 55], cat: "emerge50" },
27
+ { word: "CO2", runs: [15, 20, 58], cat: "emerge50" },
28
+ { word: "storage", runs: [5, 10, 52], cat: "emerge50" },
29
+ { word: "exports", runs: [0, 0, 45], cat: "emerge50" },
30
+ { word: "power gen", runs: [0, 5, 50], cat: "emerge50" },
31
+ { word: "facility", runs: [0, 0, 42], cat: "emerge50" },
32
+ { word: "electronics", runs: [0, 0, 48], cat: "emerge50" },
33
+ ];
34
+
35
+ const runLabels = ["5-Article", "15-Article", "50-Article"];
36
+ const runColors = ["#0D9488", "#3B82F6", "#7C3AED"];
37
+ const catColors = { persist: "#16A34A", grow: "#0D9488", shrink: "#DC2626", emerge15: "#3B82F6", emerge50: "#7C3AED" };
38
+ const catLabels = { persist: "Persistent across all runs", grow: "Grows with scale", shrink: "Fades at scale", emerge15: "Emerges at 15 articles", emerge50: "Emerges at 50 articles" };
39
+
40
+ // ── Full SC descriptions ──────────────────────────────────────────────────────
41
+ const scFullText = {
42
+ "SC_1": "Natural gas as a climate transition fuel β€” claims positioning natural gas as a bridge or essential part of the transition to clean energy",
43
+ "SC_2": "Oil operations and sustainability β€” claims that oil extraction and production are managed sustainably or responsibly",
44
+ "SC_3": "Carbon capture and storage (CCUS) viability β€” claims that CCS technology is safe, available, scalable, and essential for decarbonisation",
45
+ "SC_4": "Investment in renewable energy β€” claims that fossil fuel companies are actively investing in and enabling renewable energy",
46
+ "SC_5": "Addressing climate change β€” claims that the company is taking meaningful action to address climate change and environmental impacts",
47
+ "SC_6": "Digital technology and AI for climate β€” claims that digital innovation and AI are being deployed to solve climate and energy challenges",
48
+ "SC_7": "Economic development and growth β€” claims that fossil fuel activity drives jobs, economic growth, and energy security",
49
+ };
50
+
51
+ const scParagraphData = [
52
+ { sc: "SC_1 Nat gas", r5: 0, r15: 44, r50: 100, scKey: "SC_1" },
53
+ { sc: "SC_2 Oil", r5: 2, r15: 17, r50: 66, scKey: "SC_2" },
54
+ { sc: "SC_3 CCUS", r5: 26, r15: 14, r50: 53, scKey: "SC_3" },
55
+ { sc: "SC_4 Renewable", r5: 36, r15: 8, r50: 130, scKey: "SC_4" },
56
+ { sc: "SC_5 Climate", r5: 18, r15: 93, r50: 321, scKey: "SC_5" },
57
+ { sc: "SC_6 Digital/AI", r5: 2, r15: 24, r50: 20, scKey: "SC_6" },
58
+ { sc: "SC_7 Economic", r5: 9, r15: 13, r50: 49, scKey: "SC_7" },
59
+ ];
60
+
61
+ // ── Top NCs per run with full text from claim_history JSONs ───────────────────
62
+ const topNCs = [
63
+ // 5-article
64
+ [
65
+ { nc: "NC_22", label: "Algae/bacteria grow in diverse environments", fullText: "Single-cell organisms like algae and bacteria can grow in diverse environments without competing with food production", count: 4, sc: "SC_4" },
66
+ { nc: "NC_18", label: "Algae biofuels power diesel engines", fullText: "Algae biofuels can power existing diesel engines, enabling cleaner fossil fuel alternatives", count: 3, sc: "SC_4" },
67
+ { nc: "NC_19", label: "Next-gen biofuels as sustainable energy", fullText: "Next generation biofuels as sustainable and environmentally friendly energy sources", count: 3, sc: "SC_4" },
68
+ { nc: "NC_23", label: "Saltwater algae can produce oil directly", fullText: "Saltwater algae can produce oil directly", count: 3, sc: "SC_4" },
69
+ { nc: "NC_24", label: "Bacteria unlock energy from plant waste", fullText: "Bacteria can unlock energy from plant waste materials like cornhusks and sawdust without competing with food production", count: 3, sc: "SC_5" },
70
+ { nc: "NC_46", label: "Building world-scale blue hydrogen facility", fullText: "We are building a world-scale blue hydrogen facility", count: 3, sc: "SC_3" },
71
+ { nc: "NC_6", label: "Carbon capture is safe", fullText: "Carbon capture is safe", count: 2, sc: "SC_3" },
72
+ { nc: "NC_7", label: "Carbon capture needed to fight climate", fullText: "Carbon capture is needed to fight climate change", count: 2, sc: "SC_3" },
73
+ { nc: "NC_10", label: "Carbon capture is widely available", fullText: "Carbon capture is widely available", count: 2, sc: "SC_3" },
74
+ { nc: "NC_17", label: "Algae biofuels: lower-carbon diesel alt.", fullText: "Biofuels from algae are lower-carbon alternatives to diesel", count: 2, sc: "SC_4" },
75
+ ],
76
+ // 15-article
77
+ [
78
+ { nc: "NC_6", label: "Carbon capture is safe", fullText: "Carbon capture is safe", count: 6, sc: "SC_3" },
79
+ { nc: "NC_153", label: "Reusing produced water reduces env. impact", fullText: "Reusing produced water reduces environmental impact by minimizing freshwater use and wastewater discharge", count: 4, sc: "SC_5" },
80
+ { nc: "NC_23", label: "CCS permanently stores CO2 underground", fullText: "CCS permanently stores CO2 underground to prevent atmospheric emissions", count: 3, sc: "SC_3" },
81
+ { nc: "NC_36", label: "LNG supply will rapidly expand", fullText: "Claim that LNG supply will rapidly expand in coming years", count: 3, sc: "SC_1" },
82
+ { nc: "NC_38", label: "Policies encourage switching coal to gas", fullText: "Environmental policies encourage switching from coal to gas-fired power generation", count: 3, sc: "SC_1" },
83
+ { nc: "NC_154", label: "Water use in oil ops contributes to sustain.", fullText: "Claim that water use in oil field operations contributes to sustainability management", count: 3, sc: "SC_2" },
84
+ { nc: "NC_159", label: "Oil development must avoid stressing water", fullText: "Claim that oil development and production must avoid stressing water supply", count: 3, sc: "SC_2" },
85
+ { nc: "NC_7", label: "Carbon capture needed to fight climate", fullText: "Carbon capture is needed to fight climate change", count: 2, sc: "SC_3" },
86
+ { nc: "NC_30", label: "Mobility-as-a-service challenges vehicle use", fullText: "Claim that mobility as a service challenges personal vehicle ownership primarily in urban centers", count: 2, sc: "SC_5" },
87
+ { nc: "NC_35", label: "LNG industry growth in global gas market", fullText: "LNG industry growth as a key part of global natural gas consumption", count: 2, sc: "SC_1" },
88
+ ],
89
+ // 50-article
90
+ [
91
+ { nc: "NC_87", label: "CCS is key tech to unlock low-carbon future", fullText: "The claim that carbon capture and storage (CCS) is a key technology to unlock a lower-emission future", count: 12, sc: "SC_3" },
92
+ { nc: "NC_1", label: "Natural gas reduces emissions", fullText: "Natural gas reduces emissions", count: 11, sc: "SC_1" },
93
+ { nc: "NC_56", label: "LNG bunker as essential transition solution", fullText: "Immediate availability of LNG bunker as an essential transition solution", count: 10, sc: "SC_1" },
94
+ { nc: "NC_57", label: "LNG propulsion reduces environmental harm", fullText: "LNG propulsion reduces emissions or environmental harm", count: 9, sc: "SC_5" },
95
+ { nc: "NC_7", label: "Carbon capture needed to fight climate", fullText: "Carbon capture is needed to fight climate change", count: 8, sc: "SC_3" },
96
+ { nc: "NC_2", label: "Natural gas integral to climate transition", fullText: "Natural gas is integral to the climate transition", count: 7, sc: "SC_1" },
97
+ { nc: "NC_6", label: "Carbon capture is safe", fullText: "Carbon capture is safe", count: 7, sc: "SC_3" },
98
+ { nc: "NC_120", label: "Commitment to limit env. impacts on water", fullText: "Claim of commitment to limit environmental impacts on water resources including reinjection of produced water into reservoirs", count: 7, sc: "SC_5" },
99
+ { nc: "NC_277", label: "Nat. gas essential across multiple sectors", fullText: "Natural gas is essential across multiple sectors including jobs, electricity, heating, and manufacturing", count: 7, sc: "SC_1" },
100
+ { nc: "NC_3", label: "Oil spills are part of the everyday", fullText: "Oil spills are part of the every day", count: 6, sc: "SC_2" },
101
+ ],
102
+ ];
103
+
104
+ const scColorMap = {
105
+ "SC_1": "#0D9488", "SC_2": "#6B7280", "SC_3": "#D97706",
106
+ "SC_4": "#16A34A", "SC_5": "#3B82F6", "SC_6": "#7C3AED", "SC_7": "#EC4899",
107
+ };
108
+ const scLabelMap = {
109
+ "SC_1": "Nat gas", "SC_2": "Oil", "SC_3": "CCUS",
110
+ "SC_4": "Renewable", "SC_5": "Climate", "SC_6": "Digital/AI", "SC_7": "Economic",
111
+ };
112
+
113
+ const ttStyle = { background: "#1e293b", border: "1px solid #334155", borderRadius: 8, color: "white", fontSize: 12 };
114
+ const panelStyle = { background: "rgba(255,255,255,0.03)", border: "1px solid rgba(255,255,255,0.06)" };
115
+
116
+ // SC tooltip β€” shows full description on bar hover
117
+ const SCTooltip = ({ active, payload, label }) => {
118
+ if (!active || !payload || !payload.length) return null;
119
+ const scKey = scParagraphData.find(d => d.sc === label)?.scKey;
120
+ return (
121
+ <div style={{ ...ttStyle, padding: "12px 14px", minWidth: 280, maxWidth: 340 }}>
122
+ <div className="font-bold text-white text-sm mb-1">{label}</div>
123
+ {scKey && (
124
+ <div className="text-xs mb-3 leading-relaxed" style={{ color: scColorMap[scKey] }}>
125
+ {scFullText[scKey]}
126
+ </div>
127
+ )}
128
+ <div style={{ borderTop: "1px solid rgba(255,255,255,0.08)", paddingTop: 8 }}>
129
+ {payload.map((p, i) => (
130
+ <div key={i} className="flex justify-between gap-4 text-xs mb-1">
131
+ <span style={{ color: p.color }}>{p.name}</span>
132
+ <span className="font-bold text-white">{p.value} paragraphs</span>
133
+ </div>
134
+ ))}
135
+ </div>
136
+ </div>
137
+ );
138
+ };
139
+
140
+ // Floating tooltip for NC rows
141
+ const NCHoverTooltip = ({ item, color }) => (
142
+ <div
143
+ className="absolute z-50 pointer-events-none rounded-lg shadow-xl"
144
+ style={{
145
+ ...ttStyle,
146
+ padding: "10px 14px",
147
+ minWidth: 260,
148
+ maxWidth: 360,
149
+ bottom: "calc(100% + 8px)",
150
+ left: 0,
151
+ }}
152
+ >
153
+ <div className="font-bold text-sm mb-1" style={{ color }}>{item.nc}</div>
154
+ <div className="text-slate-300 text-xs leading-relaxed mb-2">{item.fullText}</div>
155
+ <div className="flex items-center gap-2 text-xs">
156
+ <span className="inline-block w-2 h-2 rounded-full" style={{ background: color }} />
157
+ <span style={{ color }}>{item.sc} β€” {scLabelMap[item.sc]}</span>
158
+ </div>
159
+ </div>
160
+ );
161
+
162
+ export default function Dashboard() {
163
+ const [activeRun, setActiveRun] = useState(0);
164
+ const [hoveredNC, setHoveredNC] = useState(null);
165
+
166
+ const visible = keywords.filter((k) => k.runs[activeRun] > 0);
167
+ const sorted = [...visible].sort((a, b) => b.runs[activeRun] - a.runs[activeRun]);
168
+ const cloudWords = sorted.map((k, i) => {
169
+ const weight = k.runs[activeRun];
170
+ const angle = i * 1.3 + 0.7;
171
+ const radius = 12 + i * 5.5;
172
+ return { ...k, weight, x: Math.max(8, Math.min(92, 50 + Math.cos(angle) * radius * 0.75)), y: Math.max(8, Math.min(92, 50 + Math.sin(angle) * radius * 0.5)) };
173
+ });
174
+
175
+ const ncBarData = topNCs[activeRun];
176
+ const maxNcCount = Math.max(...ncBarData.map(d => d.count));
177
+
178
+ return (
179
+ <div className="min-h-screen p-6" style={{ fontFamily: "'DM Sans', system-ui, sans-serif", background: "linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%)" }}>
180
+ <div className="max-w-6xl mx-auto">
181
+ <div className="mb-5">
182
+ <h1 className="text-3xl font-black text-white tracking-tight">BERTopic Analysis Dashboard</h1>
183
+ <p className="text-sm text-slate-500 mt-1">Topic word maps, seed superclaim usage, and taxonomy growth across 5, 15, and 50 article runs</p>
184
+ </div>
185
+
186
+ {/* Run selector */}
187
+ <div className="flex gap-1 p-1 rounded-xl mb-5 w-fit" style={{ background: "rgba(255,255,255,0.05)" }}>
188
+ {runLabels.map((label, i) => (
189
+ <button key={i} onClick={() => setActiveRun(i)} className="px-6 py-3 rounded-lg text-sm font-bold transition-all" style={{ background: activeRun === i ? runColors[i] : "transparent", color: activeRun === i ? "white" : "#94a3b8", boxShadow: activeRun === i ? `0 4px 20px ${runColors[i]}40` : "none" }}>{label}</button>
190
+ ))}
191
+ </div>
192
+
193
+ {/* Word cloud */}
194
+ <div className="relative rounded-2xl overflow-hidden mb-6" style={{ height: 440, background: "radial-gradient(ellipse at center, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.8) 100%)", border: "1px solid rgba(255,255,255,0.06)" }}>
195
+ <div className="absolute inset-0 opacity-5" style={{ backgroundImage: "linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px)", backgroundSize: "40px 40px" }} />
196
+ {cloudWords.map((w, i) => {
197
+ const fontSize = Math.max(12, 12 + (w.weight / 100) * 34);
198
+ const opacity = 0.35 + (w.weight / 100) * 0.65;
199
+ const color = catColors[w.cat];
200
+ return (
201
+ <div key={i} className="absolute group" style={{ left: `${w.x}%`, top: `${w.y}%`, transform: "translate(-50%, -50%)", zIndex: Math.round(w.weight) }}>
202
+ <span className="font-black whitespace-nowrap cursor-default transition-all duration-500" style={{ fontSize: `${fontSize}px`, color, opacity, textShadow: w.weight > 60 ? `0 0 30px ${color}30` : "none" }}>{w.word}</span>
203
+ <div className="absolute left-1/2 -translate-x-1/2 bottom-full mb-2 hidden group-hover:block z-50 pointer-events-none">
204
+ <div className="rounded-lg px-3 py-2.5 text-xs shadow-xl" style={{ ...ttStyle, minWidth: 200 }}>
205
+ <div className="font-bold text-white text-sm mb-1">{w.word}</div>
206
+ <div className="mb-2" style={{ color }}>{catLabels[w.cat]}</div>
207
+ <div className="space-y-1.5">{runLabels.map((l, ri) => (
208
+ <div key={ri} className="flex items-center gap-2">
209
+ <span className="text-slate-500 w-16 text-xs">{l}</span>
210
+ <div className="flex-1 h-3 rounded-full overflow-hidden" style={{ background: "#0f172a" }}><div className="h-full rounded-full" style={{ width: `${w.runs[ri]}%`, background: ri === activeRun ? runColors[ri] : "#475569" }} /></div>
211
+ <span className="text-slate-400 w-6 text-right text-xs">{w.runs[ri]}</span>
212
+ </div>
213
+ ))}</div>
214
+ </div>
215
+ </div>
216
+ </div>
217
+ );
218
+ })}
219
+ </div>
220
+
221
+ {/* Keyword rankings + narrative shifts */}
222
+ <div className="grid grid-cols-1 md:grid-cols-2 gap-5">
223
+ <div className="rounded-xl p-5" style={panelStyle}>
224
+ <h3 className="text-sm font-bold text-white mb-4">Top Keywords β€” <span style={{ color: runColors[activeRun] }}>{runLabels[activeRun]} Run</span></h3>
225
+ {sorted.slice(0, 10).map((k, i) => (
226
+ <div key={i} className="flex items-center gap-2 mb-2.5">
227
+ <span className="text-xs text-slate-600 w-4 text-right font-mono">{i + 1}</span>
228
+ <span className="text-sm font-semibold text-white w-28 truncate">{k.word}</span>
229
+ <div className="flex-1 flex items-center gap-1">{[0, 1, 2].map((ri) => (
230
+ <div key={ri} className="flex-1 h-4 rounded overflow-hidden" style={{ background: "#0f172a" }}><div className="h-full rounded transition-all duration-500" style={{ width: `${k.runs[ri]}%`, background: ri === activeRun ? runColors[ri] : "rgba(255,255,255,0.06)", opacity: ri === activeRun ? 1 : 0.4 }} /></div>
231
+ ))}</div>
232
+ <div className="w-3 h-3 rounded-full shrink-0" style={{ background: catColors[k.cat] }} />
233
+ </div>
234
+ ))}
235
+ <div className="flex gap-1 mt-3 pl-8">{runLabels.map((l, i) => (<div key={i} className="flex-1 text-center text-xs" style={{ color: runColors[i], opacity: i === activeRun ? 1 : 0.4 }}>{l.split("-")[0]}</div>))}</div>
236
+ </div>
237
+ <div className="rounded-xl p-5" style={panelStyle}>
238
+ <h3 className="text-sm font-bold text-white mb-4">Biggest Narrative Shifts</h3>
239
+ {[
240
+ { word: "biofuels", dir: "down", note: "95 β†’ 15 β†’ 5 Dominant in small sample, irrelevant at scale" },
241
+ { word: "technology", dir: "up", note: "30 β†’ 50 β†’ 95 Becomes the dominant narrative at scale" },
242
+ { word: "monitoring", dir: "up", note: "0 β†’ 0 β†’ 70 Only visible with 50 articles" },
243
+ { word: "offshore", dir: "up", note: "0 β†’ 0 β†’ 62 Oil infrastructure framing emerges at scale" },
244
+ { word: "AI", dir: "up", note: "0 β†’ 58 β†’ 20 Peaked at 15 articles, prompted SC_6" },
245
+ { word: "emissions", dir: "stable", note: "62 β†’ 95 β†’ 72 Always present, peaks at 15 articles" },
246
+ { word: "algae", dir: "down", note: "55 β†’ 5 β†’ 0 Specific to the 5-article sample only" },
247
+ { word: "sustainability", dir: "up", note: "20 β†’ 65 β†’ 50 Corporate green signalling grows" },
248
+ ].map((item, i) => (
249
+ <div key={i} className="flex items-center gap-3 mb-2.5 py-1" style={{ borderBottom: "1px solid rgba(255,255,255,0.04)" }}>
250
+ <span className="text-lg w-5 text-center" style={{ color: item.dir === "up" ? "#4ade80" : item.dir === "down" ? "#f87171" : "#94a3b8" }}>{item.dir === "up" ? "↑" : item.dir === "down" ? "↓" : "β†’"}</span>
251
+ <span className="text-sm font-bold text-white w-28">{item.word}</span>
252
+ <span className="text-xs text-slate-500 flex-1">{item.note}</span>
253
+ </div>
254
+ ))}
255
+ </div>
256
+ </div>
257
+
258
+ {/* SC paragraph counts + Top NC subclaims */}
259
+ <div className="grid grid-cols-1 md:grid-cols-2 gap-5 mt-5">
260
+
261
+ {/* SC paragraph bar chart β€” tooltip shows full SC description */}
262
+ <div className="rounded-xl p-5" style={panelStyle}>
263
+ <h3 className="text-sm font-bold text-white mb-1">Superclaim Paragraph Counts</h3>
264
+ <p className="text-xs text-slate-500 mb-1">Paragraphs mapped per superclaim category across runs</p>
265
+ <p className="text-xs mb-4" style={{ color: "rgba(148,163,184,0.5)" }}>Hover a bar to see the full superclaim</p>
266
+ <ResponsiveContainer width="100%" height={260}>
267
+ <BarChart data={scParagraphData} barCategoryGap="18%" margin={{ top: 4, right: 4, left: -10, bottom: 0 }}>
268
+ <CartesianGrid strokeDasharray="3 3" stroke="rgba(255,255,255,0.05)" />
269
+ <XAxis dataKey="sc" tick={{ fill: "#94a3b8", fontSize: 9 }} axisLine={{ stroke: "rgba(255,255,255,0.1)" }} interval={0} />
270
+ <YAxis tick={{ fill: "#64748b", fontSize: 10 }} axisLine={{ stroke: "rgba(255,255,255,0.1)" }} />
271
+ <Tooltip content={<SCTooltip />} />
272
+ <Legend wrapperStyle={{ color: "#94a3b8", fontSize: 11 }} />
273
+ <Bar dataKey="r5" name="5-Article" fill={runColors[0]} radius={[3,3,0,0]} opacity={activeRun === 0 ? 1 : 0.35} />
274
+ <Bar dataKey="r15" name="15-Article" fill={runColors[1]} radius={[3,3,0,0]} opacity={activeRun === 1 ? 1 : 0.35} />
275
+ <Bar dataKey="r50" name="50-Article" fill={runColors[2]} radius={[3,3,0,0]} opacity={activeRun === 2 ? 1 : 0.35} />
276
+ </BarChart>
277
+ </ResponsiveContainer>
278
+ <div className="flex flex-wrap gap-2 mt-3">
279
+ {Object.entries(scLabelMap).map(([sc, label]) => (
280
+ <div key={sc} className="flex items-center gap-1.5">
281
+ <div className="w-2 h-2 rounded-full" style={{ background: scColorMap[sc] }} />
282
+ <span className="text-xs text-slate-500">{sc}: {label}</span>
283
+ </div>
284
+ ))}
285
+ </div>
286
+ </div>
287
+
288
+ {/* Top 10 NCs β€” hover NC name to see full claim text */}
289
+ <div className="rounded-xl p-5" style={panelStyle}>
290
+ <h3 className="text-sm font-bold text-white mb-1">
291
+ Top 10 Subclaims β€” <span style={{ color: runColors[activeRun] }}>{runLabels[activeRun]} Run</span>
292
+ </h3>
293
+ <p className="text-xs text-slate-500 mb-1">Paragraph hits per subclaim (matched + created events)</p>
294
+ <p className="text-xs mb-4" style={{ color: "rgba(148,163,184,0.5)" }}>Hover an NC label to see the full subclaim</p>
295
+ <div className="space-y-2">
296
+ {ncBarData.map((item, i) => {
297
+ const pct = (item.count / maxNcCount) * 100;
298
+ const barColor = scColorMap[item.sc];
299
+ const isHovered = hoveredNC === `${activeRun}-${i}`;
300
+ return (
301
+ <div key={i} className="flex items-center gap-2">
302
+ <span className="text-xs text-slate-600 w-4 text-right font-mono">{i + 1}</span>
303
+
304
+ {/* NC label with hover tooltip */}
305
+ <div className="relative w-12 shrink-0">
306
+ <span
307
+ className="text-xs font-bold cursor-default"
308
+ style={{ color: isHovered ? "white" : barColor, transition: "color 0.15s" }}
309
+ onMouseEnter={() => setHoveredNC(`${activeRun}-${i}`)}
310
+ onMouseLeave={() => setHoveredNC(null)}
311
+ >
312
+ {item.nc}
313
+ </span>
314
+ {isHovered && <NCHoverTooltip item={item} color={barColor} />}
315
+ </div>
316
+
317
+ <div className="flex-1">
318
+ <div className="h-5 rounded overflow-hidden relative" style={{ background: "#0f172a" }}>
319
+ <div
320
+ className="h-full rounded flex items-center px-2 transition-all duration-500"
321
+ style={{ width: `${pct}%`, background: barColor, minWidth: 28 }}
322
+ >
323
+ <span className="text-xs font-bold text-white">{item.count}</span>
324
+ </div>
325
+ </div>
326
+ </div>
327
+ <span className="text-xs text-slate-500 w-36 truncate text-right">{item.label}</span>
328
+ </div>
329
+ );
330
+ })}
331
+ </div>
332
+ <div className="flex flex-wrap gap-x-3 gap-y-1 mt-3 text-xs text-slate-500">
333
+ {Object.entries(scLabelMap).map(([sc]) => (
334
+ <span key={sc} className="flex items-center gap-1">
335
+ <span className="inline-block w-2 h-2 rounded-full" style={{ background: scColorMap[sc] }} />
336
+ {sc}
337
+ </span>
338
+ ))}
339
+ </div>
340
+ </div>
341
+ </div>
342
+
343
+ {/* Word map legend */}
344
+ <div className="flex flex-wrap gap-4 mt-5 pt-4" style={{ borderTop: "1px solid rgba(255,255,255,0.06)" }}>
345
+ {Object.entries(catLabels).map(([key, label]) => (
346
+ <div key={key} className="flex items-center gap-2"><div className="w-2.5 h-2.5 rounded-full" style={{ background: catColors[key] }} /><span className="text-xs text-slate-500">{label}</span></div>
347
+ ))}
348
+ </div>
349
+ </div>
350
+ </div>
351
+ );
352
+ }
src/assets/hero.png ADDED
src/assets/react.svg ADDED
src/assets/vite.svg ADDED
src/index.css ADDED
@@ -0,0 +1 @@
 
 
1
+ @import "tailwindcss";
src/main.jsx ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import { StrictMode } from 'react'
2
+ import { createRoot } from 'react-dom/client'
3
+ import './index.css'
4
+ import App from './App.jsx'
5
+
6
+ createRoot(document.getElementById('root')).render(
7
+ <StrictMode>
8
+ <App />
9
+ </StrictMode>,
10
+ )
vite.config.js ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import { defineConfig } from 'vite'
2
+ import react from '@vitejs/plugin-react'
3
+ import tailwindcss from '@tailwindcss/vite'
4
+
5
+ export default defineConfig({
6
+ plugins: [react(), tailwindcss()],
7
+ })