@semiont/frontend 0.2.39 → 0.2.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +49 -0
- package/package.json +1 -1
- package/standalone/apps/frontend/.next/BUILD_ID +1 -1
- package/standalone/apps/frontend/.next/app-build-manifest.json +26 -26
- package/standalone/apps/frontend/.next/app-path-routes-manifest.json +5 -5
- package/standalone/apps/frontend/.next/build-manifest.json +2 -2
- package/standalone/apps/frontend/.next/prerender-manifest.json +3 -3
- package/standalone/apps/frontend/.next/server/app/[locale]/about/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/admin/devops/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/admin/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/admin/security/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/admin/users/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/auth/error/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/auth/mcp-setup/route_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/auth/signin/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/auth/signup/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/auth/welcome/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/know/compose/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/know/discover/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/know/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/know/resource/[id]/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/moderate/entity-tags/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/moderate/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/moderate/recent/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/moderate/tag-schemas/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/privacy/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/terms/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/_not-found.html +1 -1
- package/standalone/apps/frontend/.next/server/app/_not-found.rsc +1 -1
- package/standalone/apps/frontend/.next/server/app/api/auth/[...nextauth]/route_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/api/cookies/consent/route_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/api/cookies/export/route_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/api/resources/[id]/route_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app-paths-manifest.json +5 -5
- package/standalone/apps/frontend/.next/server/middleware-manifest.json +5 -5
- package/standalone/apps/frontend/.next/server/pages/404.html +1 -1
- package/standalone/apps/frontend/.next/server/pages/500.html +1 -1
- package/standalone/apps/frontend/.next/server/server-reference-manifest.json +1 -1
- package/standalone/apps/frontend/package.json +3 -3
- package/standalone/package.json +1 -1
- package/standalone/packages/core/package.json +1 -1
- /package/standalone/apps/frontend/.next/static/{guJTVgKDvrNJVGaUPYdEy → nv2BjLjOu4VY1Ohm5ayO8}/_buildManifest.js +0 -0
- /package/standalone/apps/frontend/.next/static/{guJTVgKDvrNJVGaUPYdEy → nv2BjLjOu4VY1Ohm5ayO8}/_ssgManifest.js +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# @semiont/frontend
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@semiont/frontend)
|
|
4
|
+
[](https://www.npmjs.com/package/@semiont/frontend)
|
|
5
|
+
[](https://github.com/The-AI-Alliance/semiont/blob/main/LICENSE)
|
|
6
|
+
|
|
7
|
+
Pre-built Semiont frontend server as a Next.js standalone output. This package contains the compiled frontend application ready to run with Node.js.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install -g @semiont/frontend
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
This package is typically installed automatically by `semiont provision` when using the [Semiont CLI](https://www.npmjs.com/package/@semiont/cli).
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
The recommended way to run Semiont is through the CLI:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install -g @semiont/cli
|
|
23
|
+
semiont init my-project
|
|
24
|
+
cd my-project
|
|
25
|
+
semiont provision
|
|
26
|
+
semiont start
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
The CLI handles configuration, environment setup, and process management.
|
|
30
|
+
|
|
31
|
+
## Direct Usage
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
semiont-frontend
|
|
35
|
+
# or
|
|
36
|
+
node node_modules/@semiont/frontend/standalone/apps/frontend/server.js
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Requires environment variables (`NEXTAUTH_URL`, `NEXTAUTH_SECRET`, `SERVER_API_URL`, etc.) to be configured.
|
|
40
|
+
|
|
41
|
+
## What's Included
|
|
42
|
+
|
|
43
|
+
- `standalone/` - Next.js standalone output with all dependencies bundled
|
|
44
|
+
|
|
45
|
+
## Links
|
|
46
|
+
|
|
47
|
+
- [Semiont GitHub](https://github.com/The-AI-Alliance/semiont)
|
|
48
|
+
- [Semiont CLI](https://www.npmjs.com/package/@semiont/cli)
|
|
49
|
+
- [Documentation](https://github.com/The-AI-Alliance/semiont#readme)
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
nv2BjLjOu4VY1Ohm5ayO8
|
|
@@ -72,23 +72,23 @@
|
|
|
72
72
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
73
73
|
"static/chunks/app/api/auth/[...nextauth]/route-24502971e8577474.js"
|
|
74
74
|
],
|
|
75
|
-
"/api/cookies/
|
|
75
|
+
"/api/cookies/export/route": [
|
|
76
76
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
77
77
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
78
78
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
79
79
|
"static/css/9ed9607bad31b45e.css",
|
|
80
80
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
81
81
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
82
|
-
"static/chunks/app/api/cookies/
|
|
82
|
+
"static/chunks/app/api/cookies/export/route-5c5bd56c39187fd1.js"
|
|
83
83
|
],
|
|
84
|
-
"/api/cookies/
|
|
84
|
+
"/api/cookies/consent/route": [
|
|
85
85
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
86
86
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
87
87
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
88
88
|
"static/css/9ed9607bad31b45e.css",
|
|
89
89
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
90
90
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
91
|
-
"static/chunks/app/api/cookies/
|
|
91
|
+
"static/chunks/app/api/cookies/consent/route-680f8e085df19751.js"
|
|
92
92
|
],
|
|
93
93
|
"/[locale]/layout": [
|
|
94
94
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
@@ -123,23 +123,23 @@
|
|
|
123
123
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
124
124
|
"static/chunks/app/[locale]/about/page-28023b5ae5e22ad9.js"
|
|
125
125
|
],
|
|
126
|
-
"/[locale]/auth/
|
|
126
|
+
"/[locale]/auth/error/page": [
|
|
127
127
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
128
128
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
129
129
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
130
130
|
"static/css/9ed9607bad31b45e.css",
|
|
131
131
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
132
132
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
133
|
-
"static/chunks/app/[locale]/auth/
|
|
133
|
+
"static/chunks/app/[locale]/auth/error/page-4e5ee1553c6d8ebe.js"
|
|
134
134
|
],
|
|
135
|
-
"/[locale]/auth/
|
|
135
|
+
"/[locale]/auth/signin/page": [
|
|
136
136
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
137
137
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
138
138
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
139
139
|
"static/css/9ed9607bad31b45e.css",
|
|
140
140
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
141
141
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
142
|
-
"static/chunks/app/[locale]/auth/
|
|
142
|
+
"static/chunks/app/[locale]/auth/signin/page-c878d25b0ae5069c.js"
|
|
143
143
|
],
|
|
144
144
|
"/[locale]/auth/signup/page": [
|
|
145
145
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
@@ -159,23 +159,23 @@
|
|
|
159
159
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
160
160
|
"static/chunks/app/[locale]/auth/welcome/page-7e79cf1f705618db.js"
|
|
161
161
|
],
|
|
162
|
-
"/[locale]/
|
|
162
|
+
"/[locale]/page": [
|
|
163
163
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
164
164
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
165
165
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
166
166
|
"static/css/9ed9607bad31b45e.css",
|
|
167
167
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
168
168
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
169
|
-
"static/chunks/app/[locale]/
|
|
169
|
+
"static/chunks/app/[locale]/page-46fad01f54cffcaf.js"
|
|
170
170
|
],
|
|
171
|
-
"/[locale]/page": [
|
|
171
|
+
"/[locale]/privacy/page": [
|
|
172
172
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
173
173
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
174
174
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
175
175
|
"static/css/9ed9607bad31b45e.css",
|
|
176
176
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
177
177
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
178
|
-
"static/chunks/app/[locale]/page-
|
|
178
|
+
"static/chunks/app/[locale]/privacy/page-7034c8af05b702cd.js"
|
|
179
179
|
],
|
|
180
180
|
"/[locale]/terms/page": [
|
|
181
181
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
@@ -195,68 +195,68 @@
|
|
|
195
195
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
196
196
|
"static/chunks/app/[locale]/admin/layout-62ef934e6bcc18b1.js"
|
|
197
197
|
],
|
|
198
|
-
"/[locale]/admin/page": [
|
|
198
|
+
"/[locale]/admin/devops/page": [
|
|
199
199
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
200
200
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
201
201
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
202
202
|
"static/css/9ed9607bad31b45e.css",
|
|
203
203
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
204
204
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
205
|
-
"static/chunks/app/[locale]/admin/page-
|
|
205
|
+
"static/chunks/app/[locale]/admin/devops/page-da9614b9f1606d7b.js"
|
|
206
206
|
],
|
|
207
|
-
"/[locale]/admin/
|
|
207
|
+
"/[locale]/admin/page": [
|
|
208
208
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
209
209
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
210
210
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
211
211
|
"static/css/9ed9607bad31b45e.css",
|
|
212
212
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
213
213
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
214
|
-
"static/chunks/app/[locale]/admin/
|
|
214
|
+
"static/chunks/app/[locale]/admin/page-fc5e1da86912c64f.js"
|
|
215
215
|
],
|
|
216
|
-
"/[locale]/admin/
|
|
216
|
+
"/[locale]/admin/security/page": [
|
|
217
217
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
218
218
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
219
219
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
220
220
|
"static/css/9ed9607bad31b45e.css",
|
|
221
221
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
222
222
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
223
|
-
"static/chunks/app/[locale]/admin/
|
|
223
|
+
"static/chunks/app/[locale]/admin/security/page-8031d11e8dccef6c.js"
|
|
224
224
|
],
|
|
225
|
-
"/[locale]/
|
|
225
|
+
"/[locale]/know/layout": [
|
|
226
226
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
227
227
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
228
228
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
229
229
|
"static/css/9ed9607bad31b45e.css",
|
|
230
230
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
231
231
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
232
|
-
"static/chunks/app/[locale]/
|
|
232
|
+
"static/chunks/app/[locale]/know/layout-83fe577a1460d915.js"
|
|
233
233
|
],
|
|
234
|
-
"/[locale]/know/
|
|
234
|
+
"/[locale]/know/compose/page": [
|
|
235
235
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
236
236
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
237
237
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
238
238
|
"static/css/9ed9607bad31b45e.css",
|
|
239
239
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
240
240
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
241
|
-
"static/chunks/app/[locale]/know/
|
|
241
|
+
"static/chunks/app/[locale]/know/compose/page-7c16ece328eb4a91.js"
|
|
242
242
|
],
|
|
243
|
-
"/[locale]/know/
|
|
243
|
+
"/[locale]/know/discover/page": [
|
|
244
244
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
245
245
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
246
246
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
247
247
|
"static/css/9ed9607bad31b45e.css",
|
|
248
248
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
249
249
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
250
|
-
"static/chunks/app/[locale]/know/
|
|
250
|
+
"static/chunks/app/[locale]/know/discover/page-f9d0032f45241437.js"
|
|
251
251
|
],
|
|
252
|
-
"/[locale]/
|
|
252
|
+
"/[locale]/admin/users/page": [
|
|
253
253
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
254
254
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
255
255
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
256
256
|
"static/css/9ed9607bad31b45e.css",
|
|
257
257
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
258
258
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
259
|
-
"static/chunks/app/[locale]/
|
|
259
|
+
"static/chunks/app/[locale]/admin/users/page-a978206777229291.js"
|
|
260
260
|
],
|
|
261
261
|
"/[locale]/know/page": [
|
|
262
262
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
@@ -3,22 +3,22 @@
|
|
|
3
3
|
"/api/resources/[id]/route": "/api/resources/[id]",
|
|
4
4
|
"/[locale]/auth/mcp-setup/route": "/[locale]/auth/mcp-setup",
|
|
5
5
|
"/api/auth/[...nextauth]/route": "/api/auth/[...nextauth]",
|
|
6
|
-
"/api/cookies/consent/route": "/api/cookies/consent",
|
|
7
6
|
"/api/cookies/export/route": "/api/cookies/export",
|
|
7
|
+
"/api/cookies/consent/route": "/api/cookies/consent",
|
|
8
8
|
"/[locale]/about/page": "/[locale]/about",
|
|
9
|
-
"/[locale]/auth/signin/page": "/[locale]/auth/signin",
|
|
10
9
|
"/[locale]/auth/error/page": "/[locale]/auth/error",
|
|
10
|
+
"/[locale]/auth/signin/page": "/[locale]/auth/signin",
|
|
11
11
|
"/[locale]/auth/signup/page": "/[locale]/auth/signup",
|
|
12
12
|
"/[locale]/auth/welcome/page": "/[locale]/auth/welcome",
|
|
13
|
-
"/[locale]/privacy/page": "/[locale]/privacy",
|
|
14
13
|
"/[locale]/page": "/[locale]",
|
|
14
|
+
"/[locale]/privacy/page": "/[locale]/privacy",
|
|
15
15
|
"/[locale]/terms/page": "/[locale]/terms",
|
|
16
|
+
"/[locale]/admin/devops/page": "/[locale]/admin/devops",
|
|
16
17
|
"/[locale]/admin/page": "/[locale]/admin",
|
|
17
18
|
"/[locale]/admin/security/page": "/[locale]/admin/security",
|
|
18
|
-
"/[locale]/admin/users/page": "/[locale]/admin/users",
|
|
19
|
-
"/[locale]/admin/devops/page": "/[locale]/admin/devops",
|
|
20
19
|
"/[locale]/know/compose/page": "/[locale]/know/compose",
|
|
21
20
|
"/[locale]/know/discover/page": "/[locale]/know/discover",
|
|
21
|
+
"/[locale]/admin/users/page": "/[locale]/admin/users",
|
|
22
22
|
"/[locale]/know/page": "/[locale]/know",
|
|
23
23
|
"/[locale]/moderate/entity-tags/page": "/[locale]/moderate/entity-tags",
|
|
24
24
|
"/[locale]/know/resource/[id]/page": "/[locale]/know/resource/[id]",
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"ampDevFiles": [],
|
|
7
7
|
"lowPriorityFiles": [
|
|
8
|
-
"static/
|
|
9
|
-
"static/
|
|
8
|
+
"static/nv2BjLjOu4VY1Ohm5ayO8/_buildManifest.js",
|
|
9
|
+
"static/nv2BjLjOu4VY1Ohm5ayO8/_ssgManifest.js"
|
|
10
10
|
],
|
|
11
11
|
"rootMainFiles": [
|
|
12
12
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"dynamicRoutes": {},
|
|
31
31
|
"notFoundRoutes": [],
|
|
32
32
|
"preview": {
|
|
33
|
-
"previewModeId": "
|
|
34
|
-
"previewModeSigningKey": "
|
|
35
|
-
"previewModeEncryptionKey": "
|
|
33
|
+
"previewModeId": "ca1a5ea45719f85a46b714caf0df909a",
|
|
34
|
+
"previewModeSigningKey": "0a88d0987224c259c8be4464659880db508aff1e27a539bb1a9b868a59968327",
|
|
35
|
+
"previewModeEncryptionKey": "909df8828145b69c3179b4f01fe82909c159ada3b45e7ca66060f1dfb505439d"
|
|
36
36
|
}
|
|
37
37
|
}
|
package/standalone/apps/frontend/.next/server/app/[locale]/about/page_client-reference-manifest.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/[locale]/about/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"2510":{"*":{"id":"26926","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"29684","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"51735","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"33886","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"17680","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70807","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"43650","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"71230","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"81760","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"84935","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"34692","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"48350","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"42682","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"10291","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"79805","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"39396","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"71642","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"22850","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"93543","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"90589","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"52846","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"73279","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"23492","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"7841","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"25619","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"62459","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"56962","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"33441","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error.tsx":{"id":66636,"name":"*","chunks":["4219","static/chunks/app/global-error-c894441824fc03d1.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/error.tsx":{"id":2510,"name":"*","chunks":["8039","static/chunks/app/error-4ec2f52abc66bc6c.js"],"async":false},"/home/runner/work/semiont/semiont/packages/react-ui/dist/index.mjs":{"id":47001,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/globals.css":{"id":8761,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/providers.tsx":{"id":7394,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/ClientModals.tsx":{"id":74687,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/CookieBanner.tsx":{"id":13395,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/styles/animations.css":{"id":51885,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/navigation/shared/BaseLink.js":{"id":30634,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/shared/NextIntlClientProvider.js":{"id":60174,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"]}],\"variableName\":\"inter\"}":{"id":91790,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Orbitron\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-orbitron\"}],\"variableName\":\"orbitron\"}":{"id":29719,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found.tsx":{"id":98235,"name":"*","chunks":["3224","static/chunks/app/%5Blocale%5D/not-found-9338290efe925a85.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/about/page.tsx":{"id":43739,"name":"*","chunks":["8111","static/chunks/app/%5Blocale%5D/about/page-28023b5ae5e22ad9.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signin/page.tsx":{"id":76122,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/error/page.tsx":{"id":32033,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signup/page.tsx":{"id":98173,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/welcome/page.tsx":{"id":57182,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/privacy/page.tsx":{"id":90663,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page.tsx":{"id":90357,"name":"*","chunks":["465","static/chunks/app/%5Blocale%5D/page-46fad01f54cffcaf.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/terms/page.tsx":{"id":25984,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/layout.tsx":{"id":26349,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/security/client.tsx":{"id":33747,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/users/client.tsx":{"id":89992,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/devops/page.tsx":{"id":20108,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/layout.tsx":{"id":14922,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/compose/page.tsx":{"id":85931,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/discover/page.tsx":{"id":15317,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/page.tsx":{"id":27246,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/layout.tsx":{"id":64357,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/entity-tags/page.tsx":{"id":74902,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/resource/[id]/page.tsx":{"id":94244,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/page.tsx":{"id":23772,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/recent/page.tsx":{"id":41424,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/tag-schemas/page.tsx":{"id":14833,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/semiont/semiont/apps/frontend/src/":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/layout":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/layout":[{"inlined":false,"path":"static/css/3f5226338fdd5e06.css"},{"inlined":false,"path":"static/css/081bb8fb6df14532.css"},{"inlined":false,"path":"static/css/35f4d55fe336a086.css"},{"inlined":false,"path":"static/css/23b8537fef38b0e6.css"},{"inlined":false,"path":"static/css/f7f0ede9090e5e99.css"},{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"},{"inlined":false,"path":"static/css/657e03e50dc00ae1.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/about/page":[]},"rscModuleMapping":{"2510":{"*":{"id":"26412","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"49743","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"34664","name":"*","chunks":[],"async":false}},"8761":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"88248","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"44861","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"78474","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"91305","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"95094","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70830","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"67736","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"67256","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"31374","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"31805","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"69150","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5314","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"70262","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"67211","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"67487","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"56542","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"71144","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"6900","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"61345","name":"*","chunks":[],"async":false}},"51885":{"*":{"id":"50112","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"77792","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"69980","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"75555","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"90488","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"57474","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"19948","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"13536","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"96231","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"76453","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"82365","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"72041","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"8650","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"98541","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"37103","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"10959","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"96270","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"71743","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}}}}
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/[locale]/about/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"2510":{"*":{"id":"26926","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"29684","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"51735","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"33886","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"17680","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70807","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"43650","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"71230","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"81760","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"84935","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"34692","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"48350","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"42682","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"10291","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"79805","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"39396","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"71642","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"22850","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"93543","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"90589","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"52846","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"73279","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"23492","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"7841","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"25619","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"62459","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"56962","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"33441","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error.tsx":{"id":66636,"name":"*","chunks":["4219","static/chunks/app/global-error-c894441824fc03d1.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/error.tsx":{"id":2510,"name":"*","chunks":["8039","static/chunks/app/error-4ec2f52abc66bc6c.js"],"async":false},"/home/runner/work/semiont/semiont/packages/react-ui/dist/index.mjs":{"id":47001,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/globals.css":{"id":8761,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/providers.tsx":{"id":7394,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/ClientModals.tsx":{"id":74687,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/CookieBanner.tsx":{"id":13395,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/styles/animations.css":{"id":51885,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/navigation/shared/BaseLink.js":{"id":30634,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/shared/NextIntlClientProvider.js":{"id":60174,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"]}],\"variableName\":\"inter\"}":{"id":91790,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Orbitron\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-orbitron\"}],\"variableName\":\"orbitron\"}":{"id":29719,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found.tsx":{"id":98235,"name":"*","chunks":["3224","static/chunks/app/%5Blocale%5D/not-found-9338290efe925a85.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/about/page.tsx":{"id":43739,"name":"*","chunks":["8111","static/chunks/app/%5Blocale%5D/about/page-28023b5ae5e22ad9.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/error/page.tsx":{"id":32033,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signin/page.tsx":{"id":76122,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signup/page.tsx":{"id":98173,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/welcome/page.tsx":{"id":57182,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page.tsx":{"id":90357,"name":"*","chunks":["465","static/chunks/app/%5Blocale%5D/page-46fad01f54cffcaf.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/privacy/page.tsx":{"id":90663,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/terms/page.tsx":{"id":25984,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/layout.tsx":{"id":26349,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/devops/page.tsx":{"id":20108,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/security/client.tsx":{"id":33747,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/layout.tsx":{"id":14922,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/compose/page.tsx":{"id":85931,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/discover/page.tsx":{"id":15317,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/users/client.tsx":{"id":89992,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/page.tsx":{"id":27246,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/layout.tsx":{"id":64357,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/entity-tags/page.tsx":{"id":74902,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/resource/[id]/page.tsx":{"id":94244,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/page.tsx":{"id":23772,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/recent/page.tsx":{"id":41424,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/tag-schemas/page.tsx":{"id":14833,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/semiont/semiont/apps/frontend/src/":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/layout":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/layout":[{"inlined":false,"path":"static/css/3f5226338fdd5e06.css"},{"inlined":false,"path":"static/css/081bb8fb6df14532.css"},{"inlined":false,"path":"static/css/35f4d55fe336a086.css"},{"inlined":false,"path":"static/css/23b8537fef38b0e6.css"},{"inlined":false,"path":"static/css/f7f0ede9090e5e99.css"},{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"},{"inlined":false,"path":"static/css/657e03e50dc00ae1.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/about/page":[]},"rscModuleMapping":{"2510":{"*":{"id":"26412","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"49743","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"34664","name":"*","chunks":[],"async":false}},"8761":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"88248","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"44861","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"78474","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"91305","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"95094","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70830","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"67736","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"67256","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"31374","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"31805","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"69150","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5314","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"70262","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"67211","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"67487","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"56542","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"71144","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"6900","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"61345","name":"*","chunks":[],"async":false}},"51885":{"*":{"id":"50112","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"77792","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"69980","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"75555","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"90488","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"57474","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"19948","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"13536","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"96231","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"76453","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"82365","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"72041","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"8650","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"98541","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"37103","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"10959","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"96270","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"71743","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}}}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/[locale]/admin/devops/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"2510":{"*":{"id":"26926","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"29684","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"51735","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"33886","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"17680","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70807","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"43650","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"71230","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"81760","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"84935","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"34692","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"48350","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"42682","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"10291","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"79805","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"39396","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"71642","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"22850","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"93543","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"90589","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"52846","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"73279","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"23492","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"7841","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"25619","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"62459","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"56962","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"33441","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error.tsx":{"id":66636,"name":"*","chunks":["4219","static/chunks/app/global-error-c894441824fc03d1.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/error.tsx":{"id":2510,"name":"*","chunks":["8039","static/chunks/app/error-4ec2f52abc66bc6c.js"],"async":false},"/home/runner/work/semiont/semiont/packages/react-ui/dist/index.mjs":{"id":47001,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/globals.css":{"id":8761,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/providers.tsx":{"id":7394,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/ClientModals.tsx":{"id":74687,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/CookieBanner.tsx":{"id":13395,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/styles/animations.css":{"id":51885,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/navigation/shared/BaseLink.js":{"id":30634,"name":"*","chunks":["6089","static/chunks/app/%5Blocale%5D/admin/page-fc5e1da86912c64f.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/shared/NextIntlClientProvider.js":{"id":60174,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"]}],\"variableName\":\"inter\"}":{"id":91790,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Orbitron\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-orbitron\"}],\"variableName\":\"orbitron\"}":{"id":29719,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found.tsx":{"id":98235,"name":"*","chunks":["3224","static/chunks/app/%5Blocale%5D/not-found-9338290efe925a85.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/about/page.tsx":{"id":43739,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signin/page.tsx":{"id":76122,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/error/page.tsx":{"id":32033,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signup/page.tsx":{"id":98173,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/welcome/page.tsx":{"id":57182,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/privacy/page.tsx":{"id":90663,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page.tsx":{"id":90357,"name":"*","chunks":["465","static/chunks/app/%5Blocale%5D/page-46fad01f54cffcaf.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/terms/page.tsx":{"id":25984,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/layout.tsx":{"id":26349,"name":"*","chunks":["4490","static/chunks/app/%5Blocale%5D/admin/layout-62ef934e6bcc18b1.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/security/client.tsx":{"id":33747,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/users/client.tsx":{"id":89992,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/devops/page.tsx":{"id":20108,"name":"*","chunks":["6043","static/chunks/app/%5Blocale%5D/admin/devops/page-da9614b9f1606d7b.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/layout.tsx":{"id":14922,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/compose/page.tsx":{"id":85931,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/discover/page.tsx":{"id":15317,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/page.tsx":{"id":27246,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/layout.tsx":{"id":64357,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/entity-tags/page.tsx":{"id":74902,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/resource/[id]/page.tsx":{"id":94244,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/page.tsx":{"id":23772,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/recent/page.tsx":{"id":41424,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/tag-schemas/page.tsx":{"id":14833,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/semiont/semiont/apps/frontend/src/":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/layout":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/layout":[{"inlined":false,"path":"static/css/3f5226338fdd5e06.css"},{"inlined":false,"path":"static/css/081bb8fb6df14532.css"},{"inlined":false,"path":"static/css/35f4d55fe336a086.css"},{"inlined":false,"path":"static/css/23b8537fef38b0e6.css"},{"inlined":false,"path":"static/css/f7f0ede9090e5e99.css"},{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"},{"inlined":false,"path":"static/css/657e03e50dc00ae1.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/layout":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/page":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/devops/page":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}]},"rscModuleMapping":{"2510":{"*":{"id":"26412","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"49743","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"34664","name":"*","chunks":[],"async":false}},"8761":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"88248","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"44861","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"78474","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"91305","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"95094","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70830","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"67736","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"67256","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"31374","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"31805","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"69150","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5314","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"70262","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"67211","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"67487","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"56542","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"71144","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"6900","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"61345","name":"*","chunks":[],"async":false}},"51885":{"*":{"id":"50112","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"77792","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"69980","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"75555","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"90488","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"57474","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"19948","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"13536","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"96231","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"76453","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"82365","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"72041","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"8650","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"98541","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"37103","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"10959","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"96270","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"71743","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}}}}
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/[locale]/admin/devops/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"2510":{"*":{"id":"26926","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"29684","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"51735","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"33886","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"17680","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70807","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"43650","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"71230","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"81760","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"84935","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"34692","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"48350","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"42682","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"10291","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"79805","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"39396","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"71642","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"22850","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"93543","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"90589","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"52846","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"73279","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"23492","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"7841","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"25619","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"62459","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"56962","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"33441","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error.tsx":{"id":66636,"name":"*","chunks":["4219","static/chunks/app/global-error-c894441824fc03d1.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/error.tsx":{"id":2510,"name":"*","chunks":["8039","static/chunks/app/error-4ec2f52abc66bc6c.js"],"async":false},"/home/runner/work/semiont/semiont/packages/react-ui/dist/index.mjs":{"id":47001,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/globals.css":{"id":8761,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/providers.tsx":{"id":7394,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/ClientModals.tsx":{"id":74687,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/CookieBanner.tsx":{"id":13395,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/styles/animations.css":{"id":51885,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/navigation/shared/BaseLink.js":{"id":30634,"name":"*","chunks":["6089","static/chunks/app/%5Blocale%5D/admin/page-fc5e1da86912c64f.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/shared/NextIntlClientProvider.js":{"id":60174,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"]}],\"variableName\":\"inter\"}":{"id":91790,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Orbitron\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-orbitron\"}],\"variableName\":\"orbitron\"}":{"id":29719,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found.tsx":{"id":98235,"name":"*","chunks":["3224","static/chunks/app/%5Blocale%5D/not-found-9338290efe925a85.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/about/page.tsx":{"id":43739,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/error/page.tsx":{"id":32033,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signin/page.tsx":{"id":76122,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signup/page.tsx":{"id":98173,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/welcome/page.tsx":{"id":57182,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page.tsx":{"id":90357,"name":"*","chunks":["465","static/chunks/app/%5Blocale%5D/page-46fad01f54cffcaf.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/privacy/page.tsx":{"id":90663,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/terms/page.tsx":{"id":25984,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/layout.tsx":{"id":26349,"name":"*","chunks":["4490","static/chunks/app/%5Blocale%5D/admin/layout-62ef934e6bcc18b1.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/devops/page.tsx":{"id":20108,"name":"*","chunks":["6043","static/chunks/app/%5Blocale%5D/admin/devops/page-da9614b9f1606d7b.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/security/client.tsx":{"id":33747,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/layout.tsx":{"id":14922,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/compose/page.tsx":{"id":85931,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/discover/page.tsx":{"id":15317,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/users/client.tsx":{"id":89992,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/page.tsx":{"id":27246,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/layout.tsx":{"id":64357,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/entity-tags/page.tsx":{"id":74902,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/resource/[id]/page.tsx":{"id":94244,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/page.tsx":{"id":23772,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/recent/page.tsx":{"id":41424,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/tag-schemas/page.tsx":{"id":14833,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/semiont/semiont/apps/frontend/src/":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/layout":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/layout":[{"inlined":false,"path":"static/css/3f5226338fdd5e06.css"},{"inlined":false,"path":"static/css/081bb8fb6df14532.css"},{"inlined":false,"path":"static/css/35f4d55fe336a086.css"},{"inlined":false,"path":"static/css/23b8537fef38b0e6.css"},{"inlined":false,"path":"static/css/f7f0ede9090e5e99.css"},{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"},{"inlined":false,"path":"static/css/657e03e50dc00ae1.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/layout":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/page":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/devops/page":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}]},"rscModuleMapping":{"2510":{"*":{"id":"26412","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"49743","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"34664","name":"*","chunks":[],"async":false}},"8761":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"88248","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"44861","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"78474","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"91305","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"95094","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70830","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"67736","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"67256","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"31374","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"31805","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"69150","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5314","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"70262","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"67211","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"67487","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"56542","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"71144","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"6900","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"61345","name":"*","chunks":[],"async":false}},"51885":{"*":{"id":"50112","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"77792","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"69980","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"75555","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"90488","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"57474","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"19948","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"13536","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"96231","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"76453","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"82365","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"72041","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"8650","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"98541","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"37103","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"10959","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"96270","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"71743","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}}}}
|