pw-js-api 0.2.1 → 0.2.2-dev.8bac497

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/browser/pw.dev.js +162 -472
  2. package/browser/pw.prod.js +1 -1
  3. package/esm/api/PWApiClient.d.ts +182 -0
  4. package/esm/api/PWApiClient.js +247 -0
  5. package/esm/game/PWGameClient.d.ts +115 -0
  6. package/esm/game/PWGameClient.js +345 -0
  7. package/esm/gen/world_pb.d.ts +1301 -0
  8. package/esm/gen/world_pb.js +286 -0
  9. package/esm/index.d.ts +7 -0
  10. package/esm/index.js +10 -0
  11. package/esm/util/Bucket.d.ts +32 -0
  12. package/esm/util/Bucket.js +68 -0
  13. package/esm/util/Constants.d.ts +5 -0
  14. package/esm/util/Constants.js +6 -0
  15. package/esm/util/Errors.d.ts +4 -0
  16. package/esm/util/Errors.js +7 -0
  17. package/esm/util/Misc.d.ts +2 -0
  18. package/esm/util/Misc.js +51 -0
  19. package/esm/util/block.d.ts +1333 -0
  20. package/esm/util/block.js +1335 -0
  21. package/package.json +5 -6
  22. package/tsconfig-cm.json +8 -0
  23. package/tsconfig-esm.json +8 -0
  24. package/.npm-deprecaterc.json +0 -10
  25. package/buf.gen.yaml +0 -12
  26. package/esm.mjs +0 -18
  27. /package/{dist → cm}/api/PWApiClient.d.ts +0 -0
  28. /package/{dist → cm}/api/PWApiClient.js +0 -0
  29. /package/{dist → cm}/game/PWGameClient.d.ts +0 -0
  30. /package/{dist → cm}/game/PWGameClient.js +0 -0
  31. /package/{dist → cm}/gen/world_pb.d.ts +0 -0
  32. /package/{dist → cm}/gen/world_pb.js +0 -0
  33. /package/{dist → cm}/index.d.ts +0 -0
  34. /package/{dist → cm}/index.js +0 -0
  35. /package/{dist → cm}/util/Bucket.d.ts +0 -0
  36. /package/{dist → cm}/util/Bucket.js +0 -0
  37. /package/{dist → cm}/util/Constants.d.ts +0 -0
  38. /package/{dist → cm}/util/Constants.js +0 -0
  39. /package/{dist → cm}/util/Errors.d.ts +0 -0
  40. /package/{dist → cm}/util/Errors.js +0 -0
  41. /package/{dist → cm}/util/Misc.d.ts +0 -0
  42. /package/{dist → cm}/util/Misc.js +0 -0
  43. /package/{dist → cm}/util/block.d.ts +0 -0
  44. /package/{dist → cm}/util/block.js +0 -0
  45. /package/{dist → esm}/types/api.d.ts +0 -0
  46. /package/{dist → esm}/types/events.d.ts +0 -0
  47. /package/{dist → esm}/types/game.d.ts +0 -0
  48. /package/{dist → esm}/types/index.d.ts +0 -0
  49. /package/{dist → esm}/types/misc.d.ts +0 -0
package/browser/pw.dev.js CHANGED
@@ -20,673 +20,363 @@ return /******/ (() => { // webpackBootstrap
20
20
  /******/ "use strict";
21
21
  /******/ var __webpack_modules__ = ({
22
22
 
23
- /***/ "./dist/api/PWApiClient.js":
24
- /*!*********************************!*\
25
- !*** ./dist/api/PWApiClient.js ***!
26
- \*********************************/
27
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
28
-
29
- eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nconst tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.es6.mjs\");\nconst PWGameClient_js_1 = tslib_1.__importDefault(__webpack_require__(/*! ../game/PWGameClient.js */ \"./dist/game/PWGameClient.js\"));\nconst Constants_js_1 = __webpack_require__(/*! ../util/Constants.js */ \"./dist/util/Constants.js\");\nconst Misc_js_1 = __webpack_require__(/*! ../util/Misc.js */ \"./dist/util/Misc.js\");\n/**\n * Note if you want to join a world, use new PWGameClient() then run .init()\n */\nclass PWApiClient {\n constructor(email, password) {\n /**\n * Account details with email and password, if applicable.\n */\n this.account = {\n email: \"\",\n password: \"\"\n };\n this.loggedIn = false;\n if (password === undefined) {\n this.token = email;\n this.loggedIn = true;\n return;\n }\n this.account.email = email;\n this.account.password = password;\n // this.token = token;\n }\n authenticate(email, password) {\n if (email === undefined) {\n if (this.account.email.length === 0 || this.account.password.length === 0)\n throw Error(\"No email/password given.\");\n email = this.account.email;\n password = this.account.password;\n }\n return this.request(`${Constants_js_1.Endpoint.Api}/api/collections/users/auth-with-password`, { identity: email, password }).then(res => {\n if (\"token\" in res) {\n this.token = res.token;\n this.loggedIn = true;\n }\n return res;\n }); //.then(console.log);\n }\n /**\n * Internal.\n */\n getJoinKey(roomType, roomId) {\n return this.request(`${Constants_js_1.Endpoint.Api}/api/joinkey/${roomType}/${roomId}`, undefined, true);\n }\n /**\n * This route is available to take if you chose to create an API client to then join a world, in which case this returns the Game Client instance.\n *\n * Make sure the API client is already authenticated before calling this.\n *\n * The 3rd parameter is for if you wish to customise the reconnectability of the game client.\n */\n joinWorld(roomId, obj) {\n const game = new PWGameClient_js_1.default(this, obj === null || obj === void 0 ? void 0 : obj.gameSettings);\n return game.joinWorld(roomId, obj === null || obj === void 0 ? void 0 : obj.joinData);\n }\n // I feel like this is cursed.\n /**\n * This will be an empty array if getRoomTypes has never been used successfully at least once.\n */\n get roomTypes() {\n return PWApiClient.roomTypes;\n }\n /**\n * Non-authenticated. This will refresh the room types each time, so make sure to check if roomTypes is available.\n */\n getRoomTypes() {\n return PWApiClient.getRoomTypes();\n }\n /**\n * Non-authenticated. This will refresh the room types each time, so make sure to check if roomTypes is available.\n */\n static getRoomTypes() {\n return this.request(`${Constants_js_1.Endpoint.GameHTTP}/listroomtypes`)\n .then(res => {\n PWApiClient.roomTypes = res;\n return res;\n });\n }\n /**\n * Non-authenticated. Returns the mappings from the game API.\n *\n * Note: This library also exports \"BlockNames\" which is an enum containing the block names along with their respective id.\n */\n getMappings() {\n return PWApiClient.getMappings();\n }\n /**\n * Non-authenticated. Returns the mappings from the game API.\n *\n * Note: This library also exports \"BlockNames\" which is an enum containing the block names along with their respective id.\n */\n static getMappings() {\n return this.request(`${Constants_js_1.Endpoint.GameHTTP}/mappings`);\n }\n getOwnedWorlds(page = 1, perPage = 10, query) {\n if (typeof page === \"object\") {\n query = page;\n page = 1;\n }\n return this.request(`${Constants_js_1.Endpoint.Api}/api/collections/worlds/records?page=${page}&perPage=${perPage}${(0, Misc_js_1.queryToString)(query)}`, undefined, true);\n }\n getPlayers(page = 1, perPage = 10, query) {\n if (typeof page === \"object\") {\n query = page;\n page = 1;\n }\n return PWApiClient.getPlayers(page, perPage, query);\n }\n static getPlayers(page = 1, perPage = 10, query) {\n if (typeof page === \"object\") {\n query = page;\n page = 1;\n }\n return this.request(`${Constants_js_1.Endpoint.Api}/api/collections/public_profiles/records?page=${page}&perPage=${perPage}${(0, Misc_js_1.queryToString)(query)}`);\n }\n getPublicWorlds(page = 1, perPage = 10, query) {\n if (typeof page === \"object\") {\n query = page;\n page = 1;\n }\n return PWApiClient.getPublicWorlds(page, perPage, query);\n }\n static getPublicWorlds(page = 1, perPage = 10, query) {\n if (typeof page === \"object\") {\n query = page;\n page = 1;\n }\n return this.request(`${Constants_js_1.Endpoint.Api}/api/collections/public_worlds/records?page=${page}&perPage=${perPage}${(0, Misc_js_1.queryToString)(query)}`);\n }\n /**\n * Returns the lobby result.\n */\n getVisibleWorlds() {\n return PWApiClient.getVisibleWorlds();\n }\n /**\n * Returns the lobby result.\n */\n static getVisibleWorlds() {\n if (this.roomTypes.length === 0)\n throw Error(\"roomTypes is empty - use getRoomTypes first!\");\n return this.request(`${Constants_js_1.Endpoint.GameHTTP}/room/list/${this.roomTypes[0]}`);\n }\n /**\n * Returns the world, if it exists and is public.\n */\n getPublicWorld(id) {\n return PWApiClient.getPublicWorld(id);\n }\n /**\n * Returns the world, if it exists and is public.\n */\n static getPublicWorld(id) {\n return this.getPublicWorlds(1, 1, { filter: { id } })\n .then(res => res.items[0]);\n }\n getMinimap(world, toURL = false) {\n if (toURL)\n return `${Constants_js_1.Endpoint.Api}/api/files/rhrbt6wqhc4s0cp/${world.id}/${world.minimap}`;\n return PWApiClient.getMinimap(world, toURL);\n }\n static getMinimap(world, toURL = false) {\n if (toURL)\n return `${Constants_js_1.Endpoint.Api}/api/files/rhrbt6wqhc4s0cp/${world.id}/${world.minimap}`;\n return this.request(this.getMinimap(world, true))\n .then(res => {\n if (\"message\" in res)\n throw Error(\"Minimap doesn't exist, the world may be unlisted.\");\n return res;\n });\n }\n /**\n * Note that username is cap sensitive, and may require you to use toUppercase\n */\n getPlayerByName(username) {\n return PWApiClient.getPlayerByName(username);\n }\n /**\n * Note that username is cap sensitive, and may require you to use toUppercase\n */\n static getPlayerByName(username) {\n return this.getPlayers(1, 1, { filter: { username } });\n }\n // This doesn't seem to work so I commented it out, not removing it as there might be an oversight idk\n // getMessageTypes() {\n // return this.request<string[]>(`${Endpoint.GameHTTP}/message_types`)\n // .then(res => res instanceof Uint8Array ? [] : res ?? []);\n // }\n /**\n * IMPORTANT: This will return JSON for any responses that have the content-type of json, anything else will be sent back as Uint8array.\n * If you're expecting raw bytes, make sure the endpoint is guaranteed to give you that otherwise there isn't a reason.\n *\n * This requires the manager to be authenticated, it will error if otherwise.\n * @param url Requires to be a full URL with endpoint unfortunately. It will throw error if it doesn't match any of the 2 HTTP endpoint URLs.\n * @param body If this is passed, the request will become a POST. (If you need to send a POST but has no data, just send an empty object).\n * @param token The API token (not join key), this is if you wish to use authenticated API calls without having to instantise an api client yourself.\n */\n static request(url, body, token) {\n if (!(url.startsWith(Constants_js_1.Endpoint.Api) || url.startsWith(Constants_js_1.Endpoint.GameHTTP)))\n throw Error(\"URL given does not have the correct endpoint URL, this is for safety.\");\n const headers = {\n // \"user-agent\": \"PW-TS-API/0.0.1\"\n };\n if (typeof token === \"string\")\n headers[\"authorization\"] = token;\n if (typeof body === \"object\")\n body = JSON.stringify(body);\n let method = \"GET\";\n if (typeof body !== \"undefined\") {\n headers[\"content-type\"] = \"application/json\";\n method = \"POST\";\n }\n return fetch(url, {\n headers, method,\n body: body\n }).then(res => {\n var _a;\n if (res.status === 403)\n throw Error(\"Forbidden access - token invalid or unauthorised.\");\n // else if (res.status !== 200) throw Error(\"\")\n if ((_a = res.headers.get(\"content-type\")) === null || _a === void 0 ? void 0 : _a.startsWith(\"application/json\"))\n return res.json();\n else\n return res.arrayBuffer();\n });\n }\n /**\n * IMPORTANT: This will return JSON for any responses that have the content-type of json, anything else will be sent back as Uint8array.\n * If you're expecting raw bytes, make sure the endpoint is guaranteed to give you that otherwise there isn't a reason.\n *\n * This requires the manager to be authenticated, it will error if otherwise.\n * @param url Requires to be a full URL with endpoint unfortunately. It will throw error if it doesn't match any of the 2 HTTP endpoint URLs.\n * @param body If this is passed, the request will become a POST. (If you need to send a POST but has no data, just send an empty object).\n * @param isAuthenticated If true, this will send the token as the header.\n */\n request(url, body, isAuthenticated = false) {\n return PWApiClient.request(url, body, isAuthenticated ? this.token : undefined);\n }\n}\n/**\n * This will be an empty array if getRoomTypes has never been used successfully at least once.\n */\nPWApiClient.roomTypes = [];\nexports[\"default\"] = PWApiClient;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUFdBcGlDbGllbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9saWIvYXBpL1BXQXBpQ2xpZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLHNGQUFtRDtBQUduRCx1REFBZ0Q7QUFDaEQsNkNBQWdEO0FBRWhEOztHQUVHO0FBQ0gsTUFBcUIsV0FBVztJQTBCNUIsWUFBWSxLQUFhLEVBQUUsUUFBaUI7UUFwQjVDOztXQUVHO1FBQ0ssWUFBTyxHQUFHO1lBQ2QsS0FBSyxFQUFFLEVBQUU7WUFDVCxRQUFRLEVBQUUsRUFBRTtTQUNmLENBQUE7UUFFRCxhQUFRLEdBQUcsS0FBSyxDQUFDO1FBYWIsSUFBSSxRQUFRLEtBQUssU0FBUyxFQUFFLENBQUM7WUFDekIsSUFBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7WUFDbkIsSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUM7WUFDckIsT0FBTztRQUNYLENBQUM7UUFFRCxJQUFJLENBQUMsT0FBTyxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7UUFDM0IsSUFBSSxDQUFDLE9BQU8sQ0FBQyxRQUFRLEdBQUcsUUFBUSxDQUFDO1FBRWpDLHNCQUFzQjtJQUMxQixDQUFDO0lBWUQsWUFBWSxDQUFDLEtBQWMsRUFBRSxRQUFpQjtRQUMxQyxJQUFJLEtBQUssS0FBSyxTQUFTLEVBQUUsQ0FBQztZQUN0QixJQUFJLElBQUksQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLE1BQU0sS0FBSyxDQUFDLElBQUksSUFBSSxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsTUFBTSxLQUFLLENBQUM7Z0JBQUUsTUFBTSxLQUFLLENBQUMsMEJBQTBCLENBQUMsQ0FBQztZQUVuSCxLQUFLLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUM7WUFDM0IsUUFBUSxHQUFHLElBQUksQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDO1FBQ3JDLENBQUM7UUFFRCxPQUFPLElBQUksQ0FBQyxPQUFP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\n\n//# sourceURL=webpack://PW/./dist/api/PWApiClient.js?");
30
-
31
- /***/ }),
32
-
33
- /***/ "./dist/game/PWGameClient.js":
34
- /*!***********************************!*\
35
- !*** ./dist/game/PWGameClient.js ***!
36
- \***********************************/
37
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
38
-
39
- eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nconst tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.es6.mjs\");\nconst world_pb_js_1 = __webpack_require__(/*! ../gen/world_pb.js */ \"./dist/gen/world_pb.js\");\nconst Constants_js_1 = __webpack_require__(/*! ../util/Constants.js */ \"./dist/util/Constants.js\");\nconst Errors_js_1 = __webpack_require__(/*! ../util/Errors.js */ \"./dist/util/Errors.js\");\nconst isows_1 = __webpack_require__(/*! isows */ \"./node_modules/.pnpm/isows@1.0.6_ws@8.18.0/node_modules/isows/_esm/native.js\");\nconst protobuf_1 = __webpack_require__(/*! @bufbuild/protobuf */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/index.js\");\nconst Bucket_js_1 = tslib_1.__importDefault(__webpack_require__(/*! ../util/Bucket.js */ \"./dist/util/Bucket.js\"));\nclass PWGameClient {\n constructor(api, settings) {\n var _a, _b, _c, _d, _e;\n this.totalBucket = new Bucket_js_1.default(100, 1000);\n this.chatBucket = new Bucket_js_1.default(10, 1000);\n this.connectAttempts = {\n time: -1,\n count: 0,\n };\n // listen<Event extends keyof WorldEvents>(type: Event) {\n // type === \"\"\n // }\n /**\n * For faster performance (even if it seems insignificant),\n * direct functions are used instead of events which are also inconsistent with browsers/nodejs etc.\n *\n * NOTE: the \"this\" won't be the client itself. You will need to bind yourself if you want to keep this.\n */\n this.callbacks = {};\n // private hooks = {\n // } as Partial<{ [K in keyof P]: Array<(statey: P[K]) => Promisable<K>> }>\n /**\n * Poorly documented because I cba\n */\n this.hooks = [];\n // I can't use instanceof cos of circular reference kms.\n if (api && \"getJoinKey\" in api)\n this.api = api;\n else if (api) {\n settings = api;\n api = undefined;\n }\n this.settings = {\n reconnectable: (_a = settings === null || settings === void 0 ? void 0 : settings.reconnectable) !== null && _a !== void 0 ? _a : true,\n reconnectCount: (_b = settings === null || settings === void 0 ? void 0 : settings.reconnectCount) !== null && _b !== void 0 ? _b : 5,\n reconnectInterval: (_c = settings === null || settings === void 0 ? void 0 : settings.reconnectInterval) !== null && _c !== void 0 ? _c : 4000,\n reconnectTimeGap: (_d = settings === null || settings === void 0 ? void 0 : settings.reconnectTimeGap) !== null && _d !== void 0 ? _d : 10000,\n handlePackets: (_e = settings === null || settings === void 0 ? void 0 : settings.handlePackets) !== null && _e !== void 0 ? _e : [\"PING\"],\n };\n }\n get connected() {\n var _a;\n return ((_a = this.socket) === null || _a === void 0 ? void 0 : _a.readyState) === isows_1.WebSocket.OPEN;\n }\n /**\n * This will connect to the world.\n *\n * (This returns itself for chaining)\n */\n joinWorld(roomId, joinData) {\n return tslib_1.__awaiter(this, void 0, void 0, function* () {\n var _a, _b, _c;\n if (!this.api)\n throw Error(\"This can only work if you've used APIClient to join the world in the first place.\");\n if (((_a = this.socket) === null || _a === void 0 ? void 0 : _a.readyState) === isows_1.WebSocket.CONNECTING)\n throw Error(\"Already trying to connect.\");\n // if (!this.api.loggedIn) throw Error(\"API isn't logged in, you must use authenticate first.\");\n const roomType = (_c = (_b = this.api.roomTypes) === null || _b === void 0 ? void 0 : _b[0]) !== null && _c !== void 0 ? _c : yield this.api.getRoomTypes().then(rTypes => rTypes[0]);\n const joinReq = yield this.api.getJoinKey(roomType, roomId);\n if (!(\"token\" in joinReq) || joinReq.token.length === 0)\n throw Error(\"Unable to secure a join key - is account details valid?\");\n const connectUrl = `${Constants_js_1.Endpoint.GameWS}/room/${joinReq.token}`\n + (joinData === undefined ? \"\" : \"?joinData=\" + btoa(JSON.stringify(joinData)));\n this.prevWorldId = roomId;\n if ((this.connectAttempts.time + this.settings.reconnectTimeGap) < Date.now()) {\n this.connectAttempts = {\n time: Date.now(), count: 0\n };\n }\n return new Promise((res, rej) => {\n var _a;\n if (this.connectAttempts.count++ > this.settings.reconnectCount)\n return rej(new Error(\"Unable to connect due to many attempts.\"));\n const timer = setInterval(() => {\n if (this.connectAttempts.count++ > this.settings.reconnectCount)\n return rej(new Error(\"Unable to (re)connect.\"));\n this.invoke(\"debug\", \"Failed to reconnect, retrying.\");\n this.socket = this.createSocket(connectUrl, timer, res, rej);\n }, (_a = this.settings.reconnectInterval) !== null && _a !== void 0 ? _a : 4000);\n this.socket = this.createSocket(connectUrl, timer, res, rej);\n });\n });\n }\n /**\n * INTERNAL\n */\n createSocket(url, timer, res, rej) {\n const socket = new isows_1.WebSocket(url);\n socket.binaryType = \"arraybuffer\";\n // For res/rej.\n let init = false;\n socket.onmessage = (evt) => {\n var _a;\n const rawPacket = (0, protobuf_1.fromBinary)(world_pb_js_1.WorldPacketSchema, evt.data instanceof ArrayBuffer ? new Uint8Array(evt.data) : evt.data);\n const { packet } = rawPacket;\n this.invoke(\"debug\", \"Received \" + packet.case);\n this.invoke(\"raw\", rawPacket);\n if (packet.case === undefined) {\n return this.invoke(\"unknown\", packet.value);\n } //this.callbacks.raw?.(packet);;\n let states = {}; // | undefined;\n if (this.hooks.length) {\n try {\n states = {};\n for (let i = 0, len = this.hooks.length; i < len; i++) {\n const res = this.hooks[i](rawPacket);\n if (typeof res === \"object\") {\n const entries = Object.entries(res);\n for (let j = 0, jen = entries.length; j < jen; j++) {\n states[entries[j][0]] = entries[j][1];\n }\n }\n }\n }\n catch (err) {\n this.invoke(\"debug\", \"Unable to execute all hooks safely\");\n // TODO: separate event for error\n console.error(err);\n states = {};\n }\n }\n switch (packet.case) {\n case \"playerInitPacket\":\n if (this.settings.handlePackets.findIndex(v => v === \"INIT\") !== -1)\n this.send(\"playerInitReceived\");\n if ((_a = packet.value.playerProperties) === null || _a === void 0 ? void 0 : _a.isWorldOwner)\n this.totalBucket.interval = 250;\n else\n this.totalBucket.interval = 100;\n if (!init) {\n clearInterval(timer);\n init = true;\n res(this);\n // Give the client the init again as they might could have missed it even by a few milliseconds.\n return setTimeout(() => {\n // TODO: deduplicate this part.\n if (this.hooks.length) {\n try {\n states = {};\n for (let i = 0, len = this.hooks.length; i < len; i++) {\n const res = this.hooks[i](rawPacket);\n if (typeof res === \"object\") {\n const entries = Object.entries(res);\n for (let j = 0, jen = entries.length; j < jen; j++) {\n states[entries[j][0]] = entries[j][1];\n }\n }\n }\n }\n catch (err) {\n this.invoke(\"debug\", \"Unable to execute all hooks safely\");\n // TODO: separate event for error\n console.error(err);\n states = {};\n }\n }\n this.invoke(packet.case, packet.value, states);\n }, 1500);\n }\n break;\n case \"ping\":\n if (this.settings.handlePackets.findIndex(v => v === \"PING\") !== -1)\n this.send(\"ping\", undefined, true);\n break;\n }\n this.invoke(packet.case, packet.value, states);\n };\n socket.onopen = (evt) => {\n this.invoke(\"debug\", \"Connected successfully, waiting for init packet.\");\n };\n socket.onclose = (evt) => {\n this.invoke(\"debug\", `Server closed connection due to code ${evt.code}, reason: \"${evt.reason}\".`);\n if (!init) {\n clearInterval(timer);\n rej(new Errors_js_1.AuthError(evt.reason, (evt.code)));\n }\n if (this.settings.reconnectable) {\n if (this.api === undefined)\n return this.invoke(\"debug\", \"Not attempting to reconnect as this game client was created with a join token.\");\n // if (evt.reason === \"Failed to preload the world.\") {\n // return this.invoke(\"debug\", \"Not attempting to reconnect as the world don't exist.\");\n // }\n if (this.prevWorldId) {\n this.invoke(\"debug\", \"Attempting to reconnect.\");\n return this.joinWorld(this.prevWorldId).catch(err => {\n this.invoke(\"debug\", err);\n });\n }\n else\n this.invoke(\"debug\", \"Warning: Socket closed, attempt to reconnect was made but no previous world id was kept.\");\n }\n };\n return socket;\n }\n /**\n * This is a more direct route if you already have a join key acquired via Pixelwalker's API.\n *\n * Useful for those wary of security.\n */\n static joinWorld(joinKey, obj) {\n const connectUrl = `${Constants_js_1.Endpoint.GameWS}/room/${joinKey}`\n + ((obj === null || obj === void 0 ? void 0 : obj.joinData) === undefined ? \"\" : \"?joinData=\" + btoa(JSON.stringify(obj.joinData)));\n const cli = new PWGameClient(obj === null || obj === void 0 ? void 0 : obj.gameSettings);\n if ((cli.connectAttempts.time + cli.settings.reconnectTimeGap) < Date.now()) {\n cli.connectAttempts = {\n time: Date.now(), count: 0\n };\n }\n return new Promise((res, rej) => {\n var _a;\n if (cli.connectAttempts.count++ > cli.settings.reconnectCount)\n return rej(new Error(\"Unable to connect due to many attempts.\"));\n const timer = setInterval(() => {\n var _a;\n (_a = cli.socket) === null || _a === void 0 ? void 0 : _a.close();\n if (cli.connectAttempts.count++ > cli.settings.reconnectCount)\n return rej(new Error(\"Unable to (re)connect.\"));\n cli.invoke(\"debug\", \"Failed to reconnect, retrying.\");\n cli.socket = cli.createSocket(connectUrl, timer, res, rej);\n }, (_a = cli.settings.reconnectInterval) !== null && _a !== void 0 ? _a : 4000);\n cli.socket = cli.createSocket(connectUrl, timer, res, rej);\n });\n }\n /**\n * This is different to addCallback as all hooks (regardless of the type) will execute first before the callbacks, each hook may modify something or do something in the background\n * and may pass it to callbacks (via the second parameter in callbacks). If an error occurs while executing one of the hooks,\n * the execution of hooks will halt for that packet and callbacks will run without the states.\n *\n * NOTE: This is permanent, if a hook is added, it can't be removed.\n */\n addHook(hook) {\n // if (this.callbacks[\"raw\"] === undefined) this.callbacks[\"raw\"] = [];\n // this.hooks.oldChatMessagesPacket\n this.hooks.push(hook);\n // this.callbacks[\"raw\"].unshift(hook);\n return this;\n }\n addCallback(type, ...cbs) {\n // this.callbacks[type] = cb;\n if (this.callbacks[type] === undefined)\n this.callbacks[type] = [];\n if (cbs.length === 0)\n return this;\n this.callbacks[type].push(...cbs);\n return this;\n }\n prependCallback(type, ...cbs) {\n // this.callbacks[type] = cb;\n if (this.callbacks[type] === undefined)\n this.callbacks[type] = [];\n if (cbs.length === 0)\n return this;\n this.callbacks[type].unshift(...cbs);\n return this;\n }\n /**\n * @param type The type of the event\n * @param cb It can be the function itself (to remove that specific function). If undefined, it will remove ALL functions from that list, it will return undefined.\n */\n removeCallback(type, cb) {\n const callbacks = this.callbacks[type];\n if (callbacks === undefined || cb === undefined) {\n callbacks === null || callbacks === void 0 ? void 0 : callbacks.splice(0);\n return;\n }\n else {\n for (let i = 0, len = callbacks.length; i < len; i++) {\n if (callbacks[i] === cb) {\n return callbacks.splice(i, 1)[0];\n }\n }\n }\n return;\n }\n invoke(type, data, states) {\n return tslib_1.__awaiter(this, void 0, void 0, function* () {\n const cbs = this.callbacks[type];\n let result = {\n count: 0, stopped: false\n };\n if (cbs === undefined)\n return result;\n for (let i = 0, len = cbs.length; i < len; i++) {\n const res = yield cbs[i](data, states);\n result.count++;\n if (typeof res === \"object\") {\n const keys = Object.keys(res);\n for (let j = 0, jen = keys.length; j < jen; j++) {\n data[keys[j]] = res[keys[j]];\n }\n }\n if (res === \"STOP\") {\n result.stopped = true;\n return result;\n }\n }\n return result;\n });\n }\n /**\n * This assumes that the connection\n *\n * @param type Type of the packet.\n * @param value Value of the packet to send along with, note that some properties are optional.\n * @param direct If it should skip queue.\n */\n send(type, value, direct = false) {\n this.invoke(\"debug\", \"Sent \" + type + \" with \" + (value === undefined ? \"0\" : Object.keys(value).length) + \" parameters.\");\n const send = () => {\n var _a;\n return (_a = this.socket) === null || _a === void 0 ? void 0 : _a.send((0, protobuf_1.toBinary)(world_pb_js_1.WorldPacketSchema, (0, protobuf_1.create)(world_pb_js_1.WorldPacketSchema, { packet: { case: type, value } })));\n };\n if (direct)\n return send();\n this.totalBucket.queue(() => {\n if (type !== \"playerChatPacket\")\n send();\n else\n this.chatBucket.queue(() => { send(); });\n }, type === \"playerChatPacket\");\n }\n /**\n * By default this will set the game client settings reconnectable to false.\n *\n * If reconnect is true, an additionl parameter can be passed which is the amount of time to wait before it attempts to reconnect (DEFAULT: none)\n */\n disconnect(reconnect = false) {\n var _a, _b;\n // Accept the possibility that people may try to \n if (reconnect === true)\n this.settings.reconnectable = true;\n else\n this.settings.reconnectable = false;\n (_a = this.socket) === null || _a === void 0 ? void 0 : _a.close();\n return ((_b = this.socket) === null || _b === void 0 ? void 0 : _b.readyState) === isows_1.WebSocket.CLOSED;\n }\n}\nexports[\"default\"] = PWGameClient;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUFdHYW1lQ2xpZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vbGliL2dhbWUvUFdHYW1lQ2xpZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUNBLG9EQUFnSztBQUVoSyx1REFBZ0Q7QUFDaEQsaURBQThDO0FBRTlDLGlDQUFrQztBQUNsQyxpREFBa0U7QUFFbEUsMEVBQXVDO0FBS3ZDLE1BQXFCLFlBQVk7SUF3QjdCLFlBQVksR0FBK0MsRUFBRSxRQUFzQzs7UUFiekYsZ0JBQVcsR0FBRyxJQUFJLG1CQUFNLENBQUMsR0FBRyxFQUFFLElBQUksQ0FBQyxDQUFDO1FBQ3BDLGVBQVUsR0FBRyxJQUFJLG1CQUFNLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxDQUFDO1FBRWxDLG9CQUFlLEdBQUc7WUFDeEIsSUFBSSxFQUFFLENBQUMsQ0FBQztZQUNSLEtBQUssRUFBRSxDQUFDO1NBQ1gsQ0FBQTtRQXdPRCx5REFBeUQ7UUFDekQsa0JBQWtCO1FBQ2xCLElBQUk7UUFFSjs7Ozs7V0FLRztRQUNPLGNBQVMsR0FBRyxFQUVpSCxDQUFDO1FBRXhJLG9CQUFvQjtRQUVwQiwyRUFBMkU7UUFFM0U7O1dBRUc7UUFDSyxVQUFLLEdBQWtDLEVBQUUsQ0FBQztRQXJQOUMsd0RBQXdEO1FBQ3hELElBQUksR0FBRyxJQUFJLFlBQVksSUFBSSxHQUFHO1lBQUUsSUFBSSxDQUFDLEdBQUcsR0FBRyxHQUFHLENBQUM7YUFDMUMsSUFBSSxHQUFHLEVBQUUsQ0FBQztZQUNYLFFBQVEsR0FBRyxHQUFHLENBQUM7WUFDZixHQUFHLEdBQUcsU0FBUyxDQUFDO1FBQ3BCLENBQUM7UUFFRCxJQUFJLENBQUMsUUFBUSxHQUFHO1lBQ1osYUFBYSxFQUFFLE1BQUEsUUFBUSxhQUFSLFFBQVEsdUJBQVIsUUFBUSxDQUFFLGFBQWEsbUNBQUksSUFBSTtZQUM5QyxjQUFjLEVBQUUsTUFBQSxRQUFRLGFBQVIsUUFBUSx1QkFBUixRQUFRLENBQUUsY0FBYyxt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\n\n//# sourceURL=webpack://PW/./dist/game/PWGameClient.js?");
40
-
41
- /***/ }),
42
-
43
- /***/ "./dist/gen/world_pb.js":
44
- /*!******************************!*\
45
- !*** ./dist/gen/world_pb.js ***!
46
- \******************************/
47
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
23
+ /***/ "./esm/api/PWApiClient.js":
24
+ /*!********************************!*\
25
+ !*** ./esm/api/PWApiClient.js ***!
26
+ \********************************/
27
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
48
28
 
49
- eval("\n// @generated by protoc-gen-es v2.2.3 with parameter \"target=ts\"\n// @generated from file world.proto (package WorldPackets, syntax proto3)\n/* eslint-disable */\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.PointDoubleSchema = exports.PointIntegerSchema = exports.OldChatMessageSchema = exports.WorldMeta_WorldTypeSchema = exports.WorldMeta_WorldType = exports.WorldMetaSchema = exports.PlayerRightsSchema = exports.PlayerPropertiesSchema = exports.PlayerWorldStateSchema = exports.PlayerDirectMessagePacketSchema = exports.PlayerLocalSwitchResetPacketSchema = exports.PlayerLocalSwitchChangedPacketSchema = exports.PlayerCountersUpdatePacketSchema = exports.PlayerTeamUpdatePacketSchema = exports.PlayerResetEffectsPacketSchema = exports.PlayerRemoveEffectPacketSchema = exports.PlayerAddEffectPacketSchema = exports.PlayerTouchPlayerPacket_TouchTypeSchema = exports.PlayerTouchPlayerPacket_TouchType = exports.PlayerTouchPlayerPacketSchema = exports.PlayerTouchBlockPacketSchema = exports.PlayerResetPacketSchema = exports.PlayerRespawnPacketSchema = exports.PlayerModModePacketSchema = exports.PlayerGodModePacketSchema = exports.PlayerSpectatePacketSchema = exports.PlayerFacePacketSchema = exports.PlayerTeleportedPacketSchema = exports.PlayerMovedPacketSchema = exports.PlayerUpdateRightsPacketSchema = exports.PlayerChatPacketSchema = exports.PlayerLeftPacketSchema = exports.PlayerJoinedPacketSchema = exports.PlayerInitReceivedPacketSchema = exports.PlayerInitPacketSchema = exports.WorldMetaUpdatePacketSchema = exports.WorldBlockFilledPacketSchema = exports.WorldBlockPlacedPacketSchema = exports.WorldClearedPacketSchema = exports.WorldReloadedPacketSchema = exports.PerformWorldActionPacket_ActionSchema = exports.PerformWorldActionPacket_Action = exports.PerformWorldActionPacketSchema = exports.OldChatMessagesPacketSchema = exports.SystemMessagePacketSchema = exports.GlobalSwitchResetPacketSchema = exports.GlobalSwitchChangedPacketSchema = exports.PingSchema = exports.WorldPacketSchema = exports.file_world = void 0;\nconst codegenv1_1 = __webpack_require__(/*! @bufbuild/protobuf/codegenv1 */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/index.js\");\n/**\n * Describes the file world.proto.\n */\nexports.file_world = (0, codegenv1_1.fileDesc)(\"Cgt3b3JsZC5wcm90bxIMV29ybGRQYWNrZXRzIusTCgtXb3JsZFBhY2tldBIiCgRwaW5nGAEgASgLMhIuV29ybGRQYWNrZXRzLlBpbmdIABI8ChJwbGF5ZXJfaW5pdF9wYWNrZXQYAiABKAsyHi5Xb3JsZFBhY2tldHMuUGxheWVySW5pdFBhY2tldEgAEkYKFHBsYXllcl9pbml0X3JlY2VpdmVkGAMgASgLMiYuV29ybGRQYWNrZXRzLlBsYXllckluaXRSZWNlaXZlZFBhY2tldEgAEkAKFHBsYXllcl9qb2luZWRfcGFja2V0GAQgASgLMiAuV29ybGRQYWNrZXRzLlBsYXllckpvaW5lZFBhY2tldEgAEjwKEnBsYXllcl9sZWZ0X3BhY2tldBgFIAEoCzIeLldvcmxkUGFja2V0cy5QbGF5ZXJMZWZ0UGFja2V0SAASPAoScGxheWVyX2NoYXRfcGFja2V0GAYgASgLMh4uV29ybGRQYWNrZXRzLlBsYXllckNoYXRQYWNrZXRIABJNChtwbGF5ZXJfdXBkYXRlX3JpZ2h0c19wYWNrZXQYByABKAsyJi5Xb3JsZFBhY2tldHMuUGxheWVyVXBkYXRlUmlnaHRzUGFja2V0SAASPgoTcGxheWVyX21vdmVkX3BhY2tldBgIIAEoCzIfLldvcmxkUGFja2V0cy5QbGF5ZXJNb3ZlZFBhY2tldEgAEjwKEnBsYXllcl9mYWNlX3BhY2tldBgJIAEoCzIeLldvcmxkUGFja2V0cy5QbGF5ZXJGYWNlUGFja2V0SAASQwoWcGxheWVyX2dvZF9tb2RlX3BhY2tldBgKIAEoCzIhLldvcmxkUGFja2V0cy5QbGF5ZXJHb2RNb2RlUGFja2V0SAASQwoWcGxheWVyX21vZF9tb2RlX3BhY2tldBgLIAEoCzIhLldvcmxkUGFja2V0cy5QbGF5ZXJNb2RNb2RlUGFja2V0SAASQgoVcGxheWVyX3Jlc3Bhd25fcGFja2V0GAwgASgLMiEuV29ybGRQYWNrZXRzLlBsYXllclJlc3Bhd25QYWNrZXRIABI+ChNwbGF5ZXJfcmVzZXRfcGFja2V0GA0gASgLMh8uV29ybGRQYWNrZXRzLlBsYXllclJlc2V0UGFja2V0SAASSQoZcGxheWVyX3RvdWNoX2Jsb2NrX3BhY2tldBgOIAEoCzIkLldvcmxkUGFja2V0cy5QbGF5ZXJUb3VjaEJsb2NrUGFja2V0SAASRwoYcGxheWVyX2FkZF9lZmZlY3RfcGFja2V0GA8gASgLMiMuV29ybGRQYWNrZXRzLlBsYXllckFkZEVmZmVjdFBhY2tldEgAEk0KG3BsYXllcl9yZW1vdmVfZWZmZWN0X3BhY2tldBgQIAEoCzImLldvcmxkUGFja2V0cy5QbGF5ZXJSZW1vdmVFZmZlY3RQYWNrZXRIABJNChtwbGF5ZXJfcmVzZXRfZWZmZWN0c19wYWNrZXQYESABKAsyJi5Xb3JsZFBhY2tldHMuUGxheWVyUmVzZXRFZmZlY3RzUGFja2V0SAASSQoZcGxheWVyX3RlYW1fdXBkYXRlX3BhY2tldBgSIAEoCzIkLldvcmxkUGFja2V0cy5QbGF5ZXJUZWFtVXBkYXRlUGFja2V0SAASUQodcGxheWVyX2NvdW50ZXJzX3VwZGF0ZV9wYWNrZXQYEyABKAsyKC5Xb3JsZFBhY2tldHMuUGxheWVyQ291bnRlcnNVcGRhdGVQYWNrZXRIABJaCiJwbGF5ZXJfbG9jYWxfc3dpdGNoX2NoYW5nZWRfcGFja2V0GBQgASgLMiwuV29ybGRQYWNrZXRzLlBsYXllckxvY2FsU3dpdGNoQ2hhbmdlZFBhY2tldEgAElYKIHBsYXllcl9sb2NhbF9zd2l0Y2hfcmVzZXRfcGFja2V0GBUgASgLMiouV29ybGRQYWNrZXRzLlBsYXllckxvY2FsU3dpdGNoUmVzZXRQYWNrZXRIABJPChxwbGF5ZXJfZGlyZWN0X21lc3NhZ2VfcGFja2V0GBYgASgLMicuV29ybGRQYWNrZXRzLlBsYXllckRpcmVjdE1lc3NhZ2VQYWNrZXRIABJLChpwbGF5ZXJfdG91Y2hfcGxheWVyX3BhY2tldBgXIAEoCzIlLldvcmxkUGFja2V0cy5QbGF5ZXJUb3VjaFBsYXllclBhY2tldEgAEkgKGHBsYXllcl90ZWxlcG9ydGVkX3BhY2tldBgYIAEoCzIkLldvcmxkUGFja2V0cy5QbGF5ZXJUZWxlcG9ydGVkUGFja2V0SAASQgoVd29ybGRfcmVsb2FkZWRfcGFja2V0GBkgASgLMiEuV29ybGRQYWNrZXRzLldvcmxkUmVsb2FkZWRQYWNrZXRIABJAChR3b3JsZF9jbGVhcmVkX3BhY2tldBgaIAEoCzIgLldvcmxkUGFja2V0cy5Xb3JsZENsZWFyZWRQYWNrZXRIABJHChh3b3JsZF9tZXRhX3VwZGF0ZV9wYWNrZXQYGyABKAsyIy5Xb3JsZFBhY2tldHMuV29ybGRNZXRhVXBkYXRlUGFja2V0SAASSQoZd29ybGRfYmxvY2tfcGxhY2VkX3BhY2tldBgcIAEoCzIkLldvcmxkUGFja2V0cy5Xb3JsZEJsb2NrUGxhY2VkUGFja2V0SAASSQoZd29ybGRfYmxvY2tfZmlsbGVkX3BhY2tldBgdIAEoCzIkLldvcmxkUGFja2V0cy5Xb3JsZEJsb2NrRmlsbGVkUGFja2V0SAASRwoYb2xkX2NoYXRfbWVzc2FnZXNfcGFja2V0GB4gASgLMiMuV29ybGRQYWNrZXRzLk9sZENoYXRNZXNzYWdlc1BhY2tldEgAEkIKFXN5c3RlbV9tZXNzYWdlX3BhY2tldBgfIAEoCzIhLldvcmxkUGFja2V0cy5TeXN0ZW1NZXNzYWdlUGFja2V0SAASTwocZ2xvYmFsX3N3aXRjaF9jaGFuZ2VkX3BhY2tldBggIAEoCzInLldvcmxkUGFja2V0cy5HbG9iYWxTd2l0Y2hDaGFuZ2VkUGFja2V0SAASSwoaZ2xvYmFsX3N3aXRjaF9yZXNldF9wYWNrZXQYISABKAsyJS5Xb3JsZFBhY2tldHMuR2xvYmFsU3dpdGNoUmVzZXRQYWNrZXRIABJNChtwZXJmb3JtX3dvcmxkX2FjdGlvbl9wYWNrZXQYIiABKAsyJi5Xb3JsZFBhY2tldHMuUGVyZm9ybVdvcmxkQWN0aW9uUGFja2V0SAASRAoWcGxheWVyX3NwZWN0YXRlX3BhY2tldBgjIAEoCzIiLldvcmxkUGFja2V0cy5QbGF5ZXJTcGVjdGF0ZVBhY2tldEgAQggKBnBhY2tldCIGCgRQaW5nIlIKGUdsb2JhbFN3aXRjaENoYW5nZWRQYWNrZXQSEQoJcGxheWVyX2lkGAEgASgFEhEKCXN3aXRjaF9pZBgCIAEoBRIPCgdlbmFibGVkGAMgASgIIj0KF0dsb2JhbFN3aXRjaFJlc2V0UGFja2V0EhEKCXBsYXllcl9pZBgBIAEoBRIPCgdlbmFibGVkGAIgASgIIkgKE1N5c3RlbU1lc3NhZ2VQYWNrZXQSDQoFdGl0bGUYASABKAkSDwoHbWVzc2FnZRgCIAEoCRIRCglpc19kaWFsb2cYAyABKAgiUAoVT2xkQ2hhdE1lc3NhZ2VzUGFja2V0EjcKEW9sZF9jaGF0X21lc3NhZ2VzGAEgAygLMhwuV29ybGRQYWNrZXRzLk9sZENoYXRNZXNzYWdlIpYBChhQZXJmb3JtV29ybGRBY3Rpb25QYWNrZXQSPQoGYWN0aW9uGAEgASgOMi0uV29ybGRQYWNrZXRzLlBlcmZvcm1Xb3JsZEFjdGlvblBhY2tldC5BY3Rpb24iOwoGQWN0aW9uEg4KClNBVkVfV09STEQQABIQCgxSRUxPQURfV09STEQQARIPCgtDTEVBUl9XT1JMRBADIikKE1dvcmxkUmVsb2FkZWRQYWNrZXQSEgoKd29ybGRfZGF0YRgBIAEoDCIUChJXb3JsZENsZWFyZWRQYWNrZXQivwEKFldvcmxkQmxvY2tQbGFjZWRQYWNrZXQSFgoJcGxheWVyX2lkGAEgASgFSACIAQESGQoRaXNfZmlsbF9vcGVyYXRpb24YAyABKAgSLQoJcG9zaXRpb25zGAQgAygLMhouV29ybGRQYWNrZXRzLlBvaW50SW50ZWdlchINCgVsYXllchgFIAEoBRIQCghibG9ja19pZBgGIAEoBRIUCgxleHRyYV9maWVsZHMYByABKAxCDAoKX3BsYXllcl9pZCKTAQoWV29ybGRCbG9ja0ZpbGxlZFBhY2tldBIsCghwb3NpdGlvbhgBIAEoCzIaLldvcmxkUGFja2V0cy5Qb2ludEludGVnZXISFAoMaWdub3JlTGF5ZXJzGAIgASgIEg0KBWxheWVyGAMgASgFEhAKCGJsb2NrX2lkGAQgASgFEhQKDGV4dHJhX2ZpZWxkcxgFIAEoDCI+ChVXb3JsZE1ldGFVcGRhdGVQYWNrZXQSJQoEbWV0YRgBIAEoCzIXLldvcmxkUGFja2V0cy5Xb3JsZE1ldGEi1gEKEFBsYXllckluaXRQYWNrZXQSOQoRcGxheWVyX3Byb3BlcnRpZXMYASABKAsyHi5Xb3JsZFBhY2tldHMuUGxheWVyUHJvcGVydGllcxIrCgp3b3JsZF9tZXRhGAIgASgLMhcuV29ybGRQYWNrZXRzLldvcmxkTWV0YRITCgt3b3JsZF93aWR0aBgDIAEoBRIUCgx3b3JsZF9oZWlnaHQYBCABKAUSGwoTZ2xvYmFsX3N3aXRjaF9zdGF0ZRgGIAEoDBISCgp3b3JsZF9kYXRhGAcgASgMIhoKGFBsYXllckluaXRSZWNlaXZlZFBhY2tldCJ9ChJQbGF5ZXJKb2luZWRQYWNrZXQSMgoKcHJvcGVydGllcxgBIAEoCzIeLldvcmxkUGFja2V0cy5QbGF5ZXJQcm9wZXJ0aWVzEjMKC3dvcmxkX3N0YXRlGAIgASgLMh4uV29ybGRQYWNrZXRzLlBsYXllcldvcmxkU3RhdGUiJQoQUGxheWVyTGVmdFBhY2tldBIRCglwbGF5ZXJfaWQYASABKAUiNgoQUGxheWVyQ2hhdFBhY2tldBIRCglwbGF5ZXJfaWQYASABKAUSDwoHbWVzc2FnZRgCIAEoCSJsChhQbGF5ZXJVcGRhdGVSaWdodHNQYWNrZXQSFgoJcGxheWVyX2lkGAEgASgFSACIAQESKgoGcmlnaHRzGAIgASgLMhouV29ybGRQYWNrZXRzLlBsYXllclJpZ2h0c0IMCgpfcGxheWVyX2lkIrMCChFQbGF5ZXJNb3ZlZFBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIrCghwb3NpdGlvbhgCIAEoCzIZLldvcmxkUGFja2V0cy5Qb2ludERvdWJsZRISCgp2ZWxvY2l0eV94GAMgASgBEhIKCnZlbG9jaXR5X3kYBCABKAESEgoKbW9kaWZpZXJfeBgFIAEoARISCgptb2RpZmllcl95GAYgASgBEhIKCmhvcml6b250YWwYByABKAUSEAoIdmVydGljYWwYCCABKAUSEgoKc3BhY2VfZG93bhgJIAEoCBIXCg9zcGFjZV9qdXN0X2Rvd24YCiABKAgSFwoPanVzdF90ZWxlcG9ydGVkGAsgASgIEg8KB3RpY2tfaWQYDCABKAVCDAoKX3BsYXllcl9pZCJrChZQbGF5ZXJUZWxlcG9ydGVkUGFja2V0EhYKCXBsYXllcl9pZBgBIAEoBUgAiAEBEisKCHBvc2l0aW9uGAIgASgLMhkuV29ybGRQYWNrZXRzLlBvaW50RG91YmxlQgwKCl9wbGF5ZXJfaWQiSQoQUGxheWVyRmFjZVBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIPCgdmYWNlX2lkGAIgASgFQgwKCl9wbGF5ZXJfaWQiVQoUUGxheWVyU3BlY3RhdGVQYWNrZXQSFgoJcGxheWVyX2lkGAEgASgFSACIAQESFwoPc3BlY3RhdGVfcGxheWVyGAIgASgFQgwKCl9wbGF5ZXJfaWQiTAoTUGxheWVyR29kTW9kZVBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIPCgdlbmFibGVkGAIgASgIQgwKCl9wbGF5ZXJfaWQiTAoTUGxheWVyTW9kTW9kZVBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIPCgdlbmFibGVkGAMgASgIQgwKCl9wbGF5ZXJfaWQiaQoTUGxheWVyUmVzcGF3blBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIsCghwb3NpdGlvbhgCIAEoCzIaLldvcmxkUGFja2V0cy5Qb2ludEludGVnZXJCDAoKX3BsYXllcl9pZCJ5ChFQbGF5ZXJSZXNldFBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIxCghwb3NpdGlvbhgCIAEoCzIaLldvcmxkUGFja2V0cy5Qb2ludEludGVnZXJIAYgBAUIMCgpfcGxheWVyX2lkQgsKCV9wb3NpdGlvbiKQAQoWUGxheWVyVG91Y2hCbG9ja1BhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIxCghwb3NpdGlvbhgCIAEoCzIaLldvcmxkUGFja2V0cy5Qb2ludEludGVnZXJIAYgBARIQCghibG9ja19pZBgDIAEoBUIMCgpfcGxheWVyX2lkQgsKCV9wb3NpdGlvbiK9AQoXUGxheWVyVG91Y2hQbGF5ZXJQYWNrZXQSFgoJcGxheWVyX2lkGAEgASgFSACIAQESFgoOdG91Y2hlZF9wbGF5ZXIYAiABKAUSQwoKdG91Y2hfdHlwZRgDIAEoDjIvLldvcmxkUGFja2V0cy5QbGF5ZXJUb3VjaFBsYXllclBhY2tldC5Ub3VjaFR5cGUiHwoJVG91Y2hUeXBlEgkKBVNUQVJUEAASBwoDRU5EEAFCDAoKX3BsYXllcl9pZCKtAQoVUGxheWVyQWRkRWZmZWN0UGFja2V0EhYKCXBsYXllcl9pZBgBIAEoBUgAiAEBEhMKC2Zyb21fc2VydmVyGAIgASgIEhEKCWVmZmVjdF9pZBgDIAEoBRIVCghkdXJhdGlvbhgEIAEoBUgBiAEBEhUKCHN0cmVuZ3RoGAUgASgFSAKIAQFCDAoKX3BsYXllcl9pZEILCglfZHVyYXRpb25CCwoJX3N0cmVuZ3RoIlMKGFBsYXllclJlbW92ZUVmZmVjdFBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIRCgllZmZlY3RfaWQYBCABKAVCDAoKX3BsYXllcl9pZCJVChhQbGF5ZXJSZXNldEVmZmVjdHNQYWNrZXQSFgoJcGxheWVyX2lkGAEgASgFSACIAQESEwoLZnJvbV9zZXJ2ZXIYAiABKAhCDAoKX3BsYXllcl9pZCJPChZQbGF5ZXJUZWFtVXBkYXRlUGFja2V0EhYKCXBsYXllcl9pZBgBIAEoBUgAiAEBEg8KB3RlYW1faWQYAiABKAVCDAoKX3BsYXllcl9pZCJ1ChpQbGF5ZXJDb3VudGVyc1VwZGF0ZVBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARINCgVjb2lucxgCIAEoBRISCgpibHVlX2NvaW5zGAMgASgFEg4KBmRlYXRocxgEIAEoBUIMCgpfcGxheWVyX2lkInEKHlBsYXllckxvY2FsU3dpdGNoQ2hhbmdlZFBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIRCglzd2l0Y2hfaWQYAiABKAUSFgoOc3dpdGNoX2VuYWJsZWQYAyABKAhCDAoKX3BsYXllcl9pZCJvChxQbGF5ZXJMb2NhbFN3aXRjaFJlc2V0UGFja2V0EhYKCXBsYXllcl9pZBgBIAEoBUgAiAEBEhEKCXN3aXRjaF9pZBgCIAEoBRIWCg5zd2l0Y2hfZW5hYmxlZBgDIAEoCEIMCgpfcGxheWVyX2lkIl4KGVBsYXllckRpcmVjdE1lc3NhZ2VQYWNrZXQSFgoOZnJvbV9wbGF5ZXJfaWQYASABKAUSGAoQdGFyZ2V0X3BsYXllcl9pZBgCIAEoBRIPCgdtZXNzYWdlGAMgASgJIvYBChBQbGF5ZXJXb3JsZFN0YXRlEhIKCmNvaW5zX2dvbGQYASABKAUSEgoKY29pbnNfYmx1ZRgCIAEoBRIOCgZkZWF0aHMYAyABKAUSMwoPY29sbGVjdGVkX2l0ZW1zGAQgAygLMhouV29ybGRQYWNrZXRzLlBvaW50SW50ZWdlchIWCg5oYXNfZ29sZF9jcm93bhgFIAEoCBIYChBoYXNfc2lsdmVyX2Nyb3duGAYgASgIEhAKCHN3aXRjaGVzGAcgASgMEg8KB2dvZG1vZGUYCCABKAgSDwoHbW9kbW9kZRgJIAEoCBIPCgd0ZWFtX2lkGAogASgFIusBChBQbGF5ZXJQcm9wZXJ0aWVzEhEKCXBsYXllcl9pZBgBIAEoBRISCgphY2NvdW50X2lkGAIgASgJEhAKCHVzZXJuYW1lGAMgASgJEgwKBGZhY2UYBCABKAUSDAoEcm9sZRgFIAEoCRIRCglpc19mcmllbmQYBiABKAgSKwoIcG9zaXRpb24YByABKAsyGS5Xb3JsZFBhY2tldHMuUG9pbnREb3VibGUSFgoOaXNfd29ybGRfb3duZXIYCCABKAgSKgoGcmlnaHRzGAkgASgLMhouV29ybGRQYWNrZXRzLlBsYXllclJpZ2h0cyKMAQoMUGxheWVyUmlnaHRzEhAKCGNhbl9lZGl0GAEgASgIEg8KB2Nhbl9nb2QYAiABKAgSGgoSY2FuX3RvZ2dsZV9taW5pbWFwGAMgASgIEiEKGWNhbl9jaGFuZ2Vfd29ybGRfc2V0dGluZ3MYBCABKAgSGgoSYXZhaWxhYmxlX2NvbW1hbmRzGAUgAygJIqgCCglXb3JsZE1ldGESDQoFdGl0bGUYASABKAkSDQoFcGxheXMYAiABKAUSDQoFb3duZXIYAyABKAkSEwoLZGVzY3JpcHRpb24YBCABKAkSEgoKdmlzaWJpbGl0eRgFIAEoCRI1Cgp3b3JsZF9UeXBlGAYgASgOMiEuV29ybGRQYWNrZXRzLldvcmxkTWV0YS5Xb3JsZFR5cGUSGwoTaGFzX3Vuc2F2ZWRfY2hhbmdlcxgHIAEoCBITCgttYXhfcGxheWVycxgIIAEoBRISCgpvd25lcl9yb2xlGAkgASgJEhcKD21pbmltYXBfZW5hYmxlZBgKIAEoCCIvCglXb3JsZFR5cGUSCQoFU2F2ZWQQABILCgdVbnNhdmVkEAESCgoGTGVnYWN5EAIiXgoOT2xkQ2hhdE1lc3NhZ2USEwoLcGxheWVyX25hbWUYASABKAkSEwoLcGxheWVyX3JvbGUYAiABKAkSEQoJaXNfZnJpZW5kGAMgASgIEg8KB21lc3NhZ2UYBCABKAkiJAoMUG9pbnRJbnRlZ2VyEgkKAXgYASABKAUSCQoBeRgCIAEoBSIjCgtQb2ludERvdWJsZRIJCgF4GAEgASgBEgkKAXkYAiABKAFCbgoQY29tLldvcmxkUGFja2V0c0IKV29ybGRQcm90b1ABogIDV1hYqgIMV29ybGRQYWNrZXRzygIMV29ybGRQYWNrZXRz4gIYV29ybGRQYWNrZXRzXEdQQk1ldGFkYXRh6gIMV29ybGRQYWNrZXRzYgZwcm90bzM\");\n/**\n * Describes the message WorldPackets.WorldPacket.\n * Use `create(WorldPacketSchema)` to create a new message.\n */\nexports.WorldPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 0);\n/**\n * Describes the message WorldPackets.Ping.\n * Use `create(PingSchema)` to create a new message.\n */\nexports.PingSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 1);\n/**\n * Describes the message WorldPackets.GlobalSwitchChangedPacket.\n * Use `create(GlobalSwitchChangedPacketSchema)` to create a new message.\n */\nexports.GlobalSwitchChangedPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 2);\n/**\n * Describes the message WorldPackets.GlobalSwitchResetPacket.\n * Use `create(GlobalSwitchResetPacketSchema)` to create a new message.\n */\nexports.GlobalSwitchResetPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 3);\n/**\n * Describes the message WorldPackets.SystemMessagePacket.\n * Use `create(SystemMessagePacketSchema)` to create a new message.\n */\nexports.SystemMessagePacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 4);\n/**\n * Describes the message WorldPackets.OldChatMessagesPacket.\n * Use `create(OldChatMessagesPacketSchema)` to create a new message.\n */\nexports.OldChatMessagesPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 5);\n/**\n * Describes the message WorldPackets.PerformWorldActionPacket.\n * Use `create(PerformWorldActionPacketSchema)` to create a new message.\n */\nexports.PerformWorldActionPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 6);\n/**\n * @generated from enum WorldPackets.PerformWorldActionPacket.Action\n */\nvar PerformWorldActionPacket_Action;\n(function (PerformWorldActionPacket_Action) {\n /**\n * @generated from enum value: SAVE_WORLD = 0;\n */\n PerformWorldActionPacket_Action[PerformWorldActionPacket_Action[\"SAVE_WORLD\"] = 0] = \"SAVE_WORLD\";\n /**\n * @generated from enum value: RELOAD_WORLD = 1;\n */\n PerformWorldActionPacket_Action[PerformWorldActionPacket_Action[\"RELOAD_WORLD\"] = 1] = \"RELOAD_WORLD\";\n /**\n * @generated from enum value: CLEAR_WORLD = 3;\n */\n PerformWorldActionPacket_Action[PerformWorldActionPacket_Action[\"CLEAR_WORLD\"] = 3] = \"CLEAR_WORLD\";\n})(PerformWorldActionPacket_Action || (exports.PerformWorldActionPacket_Action = PerformWorldActionPacket_Action = {}));\n/**\n * Describes the enum WorldPackets.PerformWorldActionPacket.Action.\n */\nexports.PerformWorldActionPacket_ActionSchema = (0, codegenv1_1.enumDesc)(exports.file_world, 6, 0);\n/**\n * Describes the message WorldPackets.WorldReloadedPacket.\n * Use `create(WorldReloadedPacketSchema)` to create a new message.\n */\nexports.WorldReloadedPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 7);\n/**\n * Describes the message WorldPackets.WorldClearedPacket.\n * Use `create(WorldClearedPacketSchema)` to create a new message.\n */\nexports.WorldClearedPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 8);\n/**\n * Describes the message WorldPackets.WorldBlockPlacedPacket.\n * Use `create(WorldBlockPlacedPacketSchema)` to create a new message.\n */\nexports.WorldBlockPlacedPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 9);\n/**\n * Describes the message WorldPackets.WorldBlockFilledPacket.\n * Use `create(WorldBlockFilledPacketSchema)` to create a new message.\n */\nexports.WorldBlockFilledPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 10);\n/**\n * Describes the message WorldPackets.WorldMetaUpdatePacket.\n * Use `create(WorldMetaUpdatePacketSchema)` to create a new message.\n */\nexports.WorldMetaUpdatePacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 11);\n/**\n * Describes the message WorldPackets.PlayerInitPacket.\n * Use `create(PlayerInitPacketSchema)` to create a new message.\n */\nexports.PlayerInitPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 12);\n/**\n * Describes the message WorldPackets.PlayerInitReceivedPacket.\n * Use `create(PlayerInitReceivedPacketSchema)` to create a new message.\n */\nexports.PlayerInitReceivedPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 13);\n/**\n * Describes the message WorldPackets.PlayerJoinedPacket.\n * Use `create(PlayerJoinedPacketSchema)` to create a new message.\n */\nexports.PlayerJoinedPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 14);\n/**\n * Describes the message WorldPackets.PlayerLeftPacket.\n * Use `create(PlayerLeftPacketSchema)` to create a new message.\n */\nexports.PlayerLeftPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 15);\n/**\n * Describes the message WorldPackets.PlayerChatPacket.\n * Use `create(PlayerChatPacketSchema)` to create a new message.\n */\nexports.PlayerChatPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 16);\n/**\n * Describes the message WorldPackets.PlayerUpdateRightsPacket.\n * Use `create(PlayerUpdateRightsPacketSchema)` to create a new message.\n */\nexports.PlayerUpdateRightsPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 17);\n/**\n * Describes the message WorldPackets.PlayerMovedPacket.\n * Use `create(PlayerMovedPacketSchema)` to create a new message.\n */\nexports.PlayerMovedPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 18);\n/**\n * Describes the message WorldPackets.PlayerTeleportedPacket.\n * Use `create(PlayerTeleportedPacketSchema)` to create a new message.\n */\nexports.PlayerTeleportedPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 19);\n/**\n * Describes the message WorldPackets.PlayerFacePacket.\n * Use `create(PlayerFacePacketSchema)` to create a new message.\n */\nexports.PlayerFacePacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 20);\n/**\n * Describes the message WorldPackets.PlayerSpectatePacket.\n * Use `create(PlayerSpectatePacketSchema)` to create a new message.\n */\nexports.PlayerSpectatePacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 21);\n/**\n * Describes the message WorldPackets.PlayerGodModePacket.\n * Use `create(PlayerGodModePacketSchema)` to create a new message.\n */\nexports.PlayerGodModePacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 22);\n/**\n * Describes the message WorldPackets.PlayerModModePacket.\n * Use `create(PlayerModModePacketSchema)` to create a new message.\n */\nexports.PlayerModModePacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 23);\n/**\n * Describes the message WorldPackets.PlayerRespawnPacket.\n * Use `create(PlayerRespawnPacketSchema)` to create a new message.\n */\nexports.PlayerRespawnPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 24);\n/**\n * Describes the message WorldPackets.PlayerResetPacket.\n * Use `create(PlayerResetPacketSchema)` to create a new message.\n */\nexports.PlayerResetPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 25);\n/**\n * Describes the message WorldPackets.PlayerTouchBlockPacket.\n * Use `create(PlayerTouchBlockPacketSchema)` to create a new message.\n */\nexports.PlayerTouchBlockPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 26);\n/**\n * Describes the message WorldPackets.PlayerTouchPlayerPacket.\n * Use `create(PlayerTouchPlayerPacketSchema)` to create a new message.\n */\nexports.PlayerTouchPlayerPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 27);\n/**\n * @generated from enum WorldPackets.PlayerTouchPlayerPacket.TouchType\n */\nvar PlayerTouchPlayerPacket_TouchType;\n(function (PlayerTouchPlayerPacket_TouchType) {\n /**\n * @generated from enum value: START = 0;\n */\n PlayerTouchPlayerPacket_TouchType[PlayerTouchPlayerPacket_TouchType[\"START\"] = 0] = \"START\";\n /**\n * @generated from enum value: END = 1;\n */\n PlayerTouchPlayerPacket_TouchType[PlayerTouchPlayerPacket_TouchType[\"END\"] = 1] = \"END\";\n})(PlayerTouchPlayerPacket_TouchType || (exports.PlayerTouchPlayerPacket_TouchType = PlayerTouchPlayerPacket_TouchType = {}));\n/**\n * Describes the enum WorldPackets.PlayerTouchPlayerPacket.TouchType.\n */\nexports.PlayerTouchPlayerPacket_TouchTypeSchema = (0, codegenv1_1.enumDesc)(exports.file_world, 27, 0);\n/**\n * Describes the message WorldPackets.PlayerAddEffectPacket.\n * Use `create(PlayerAddEffectPacketSchema)` to create a new message.\n */\nexports.PlayerAddEffectPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 28);\n/**\n * Describes the message WorldPackets.PlayerRemoveEffectPacket.\n * Use `create(PlayerRemoveEffectPacketSchema)` to create a new message.\n */\nexports.PlayerRemoveEffectPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 29);\n/**\n * Describes the message WorldPackets.PlayerResetEffectsPacket.\n * Use `create(PlayerResetEffectsPacketSchema)` to create a new message.\n */\nexports.PlayerResetEffectsPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 30);\n/**\n * Describes the message WorldPackets.PlayerTeamUpdatePacket.\n * Use `create(PlayerTeamUpdatePacketSchema)` to create a new message.\n */\nexports.PlayerTeamUpdatePacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 31);\n/**\n * Describes the message WorldPackets.PlayerCountersUpdatePacket.\n * Use `create(PlayerCountersUpdatePacketSchema)` to create a new message.\n */\nexports.PlayerCountersUpdatePacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 32);\n/**\n * Describes the message WorldPackets.PlayerLocalSwitchChangedPacket.\n * Use `create(PlayerLocalSwitchChangedPacketSchema)` to create a new message.\n */\nexports.PlayerLocalSwitchChangedPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 33);\n/**\n * Describes the message WorldPackets.PlayerLocalSwitchResetPacket.\n * Use `create(PlayerLocalSwitchResetPacketSchema)` to create a new message.\n */\nexports.PlayerLocalSwitchResetPacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 34);\n/**\n * Describes the message WorldPackets.PlayerDirectMessagePacket.\n * Use `create(PlayerDirectMessagePacketSchema)` to create a new message.\n */\nexports.PlayerDirectMessagePacketSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 35);\n/**\n * Describes the message WorldPackets.PlayerWorldState.\n * Use `create(PlayerWorldStateSchema)` to create a new message.\n */\nexports.PlayerWorldStateSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 36);\n/**\n * Describes the message WorldPackets.PlayerProperties.\n * Use `create(PlayerPropertiesSchema)` to create a new message.\n */\nexports.PlayerPropertiesSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 37);\n/**\n * Describes the message WorldPackets.PlayerRights.\n * Use `create(PlayerRightsSchema)` to create a new message.\n */\nexports.PlayerRightsSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 38);\n/**\n * Describes the message WorldPackets.WorldMeta.\n * Use `create(WorldMetaSchema)` to create a new message.\n */\nexports.WorldMetaSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 39);\n/**\n * @generated from enum WorldPackets.WorldMeta.WorldType\n */\nvar WorldMeta_WorldType;\n(function (WorldMeta_WorldType) {\n /**\n * @generated from enum value: Saved = 0;\n */\n WorldMeta_WorldType[WorldMeta_WorldType[\"Saved\"] = 0] = \"Saved\";\n /**\n * @generated from enum value: Unsaved = 1;\n */\n WorldMeta_WorldType[WorldMeta_WorldType[\"Unsaved\"] = 1] = \"Unsaved\";\n /**\n * @generated from enum value: Legacy = 2;\n */\n WorldMeta_WorldType[WorldMeta_WorldType[\"Legacy\"] = 2] = \"Legacy\";\n})(WorldMeta_WorldType || (exports.WorldMeta_WorldType = WorldMeta_WorldType = {}));\n/**\n * Describes the enum WorldPackets.WorldMeta.WorldType.\n */\nexports.WorldMeta_WorldTypeSchema = (0, codegenv1_1.enumDesc)(exports.file_world, 39, 0);\n/**\n * Describes the message WorldPackets.OldChatMessage.\n * Use `create(OldChatMessageSchema)` to create a new message.\n */\nexports.OldChatMessageSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 40);\n/**\n * Describes the message WorldPackets.PointInteger.\n * Use `create(PointIntegerSchema)` to create a new message.\n */\nexports.PointIntegerSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 41);\n/**\n * Describes the message WorldPackets.PointDouble.\n * Use `create(PointDoubleSchema)` to create a new message.\n */\nexports.PointDoubleSchema = (0, codegenv1_1.messageDesc)(exports.file_world, 42);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid29ybGRfcGIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9saWIvZ2VuL3dvcmxkX3BiLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxnRUFBZ0U7QUFDaEUseUVBQXlFO0FBQ3pFLG9CQUFvQjs7O0FBR3BCLDREQUErRTtBQUcvRTs7R0FFRztBQUNVLFFBQUEsVUFBVSxHQUNyQixJQUFBLG9CQUFRLEVBQUMseXZUQUF5dlQsQ0FBQyxDQUFDO0FBd090d1Q7OztHQUdHO0FBQ1UsUUFBQSxpQkFBaUIsR0FDNUIsSUFBQSx1QkFBVyxFQUFDLGtCQUFVLEVBQUUsQ0FBQyxDQUFDLENBQUM7QUFVN0I7OztHQUdHO0FBQ1UsUUFBQSxVQUFVLEdBQ3JCLElBQUEsdUJBQVcsRUFBQyxrQkFBVSxFQUFFLENBQUMsQ0FBQyxDQUFDO0FBeUI3Qjs7O0dBR0c7QUFDVSxRQUFBLCtCQUErQixHQUMxQyxJQUFBLHVCQUFXLEVBQUMsa0JBQVUsRUFBRSxDQUFDLENBQUMsQ0FBQztBQWlCN0I7OztHQUdHO0FBQ1UsUUFBQSw2QkFBNkIsR0FDeEMsSUFBQSx1QkFBVyxFQUFDLGtCQUFVLEVBQUUsQ0FBQyxDQUFDLENBQUM7QUFzQjdCOzs7R0FHRztBQUNVLFFBQUEseUJBQXlCLEdBQ3BDLElBQUEsdUJBQVcsRUFBQyxrQkFBVSxFQUFFLENBQUMsQ0FBQyxDQUFDO0FBWTdCOzs7R0FHRztBQUNVLFFBQUEsMkJBQTJCLEdBQ3RDLElBQUEsdUJBQVcsRUFBQyxrQkFBVSxFQUFFLENBQUMsQ0FBQyxDQUFDO0FBWTdCOzs7R0FHRztBQUNVLFFBQUEsOEJBQThCLEdBQ3pDLElBQUEsdUJBQVcsRUFBQyxrQkFBVSxFQUFFLENBQUMsQ0FBQyxDQUFDO0FBRTdCOztHQUVHO0FBQ0gsSUFBWSwrQkFlWDtBQWZELFdBQVksK0JBQStCO0lBQ3pDOztPQUVHO0lBQ0gsaUdBQWMsQ0FBQTtJQUVkOztPQUVHO0lBQ0gscUdBQWdCLENBQUE7SUFFaEI7O09BRUc7SUFD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\n\n//# sourceURL=webpack://PW/./dist/gen/world_pb.js?");
29
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _game_PWGameClient_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../game/PWGameClient.js */ \"./esm/game/PWGameClient.js\");\n/* harmony import */ var _util_Constants_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/Constants.js */ \"./esm/util/Constants.js\");\n/* harmony import */ var _util_Misc_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/Misc.js */ \"./esm/util/Misc.js\");\n\n\n\n/**\n * Note if you want to join a world, use new PWGameClient() then run .init()\n */\nclass PWApiClient {\n constructor(email, password) {\n /**\n * Account details with email and password, if applicable.\n */\n this.account = {\n email: \"\",\n password: \"\"\n };\n this.loggedIn = false;\n if (password === undefined) {\n this.token = email;\n this.loggedIn = true;\n return;\n }\n this.account.email = email;\n this.account.password = password;\n // this.token = token;\n }\n authenticate(email, password) {\n if (email === undefined) {\n if (this.account.email.length === 0 || this.account.password.length === 0)\n throw Error(\"No email/password given.\");\n email = this.account.email;\n password = this.account.password;\n }\n return this.request(`${_util_Constants_js__WEBPACK_IMPORTED_MODULE_1__.Endpoint.Api}/api/collections/users/auth-with-password`, { identity: email, password }).then(res => {\n if (\"token\" in res) {\n this.token = res.token;\n this.loggedIn = true;\n }\n return res;\n }); //.then(console.log);\n }\n /**\n * Internal.\n */\n getJoinKey(roomType, roomId) {\n return this.request(`${_util_Constants_js__WEBPACK_IMPORTED_MODULE_1__.Endpoint.Api}/api/joinkey/${roomType}/${roomId}`, undefined, true);\n }\n /**\n * This route is available to take if you chose to create an API client to then join a world, in which case this returns the Game Client instance.\n *\n * Make sure the API client is already authenticated before calling this.\n *\n * The 3rd parameter is for if you wish to customise the reconnectability of the game client.\n */\n joinWorld(roomId, obj) {\n const game = new _game_PWGameClient_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"](this, obj === null || obj === void 0 ? void 0 : obj.gameSettings);\n return game.joinWorld(roomId, obj === null || obj === void 0 ? void 0 : obj.joinData);\n }\n // I feel like this is cursed.\n /**\n * This will be an empty array if getRoomTypes has never been used successfully at least once.\n */\n get roomTypes() {\n return PWApiClient.roomTypes;\n }\n /**\n * Non-authenticated. This will refresh the room types each time, so make sure to check if roomTypes is available.\n */\n getRoomTypes() {\n return PWApiClient.getRoomTypes();\n }\n /**\n * Non-authenticated. This will refresh the room types each time, so make sure to check if roomTypes is available.\n */\n static getRoomTypes() {\n return this.request(`${_util_Constants_js__WEBPACK_IMPORTED_MODULE_1__.Endpoint.GameHTTP}/listroomtypes`)\n .then(res => {\n PWApiClient.roomTypes = res;\n return res;\n });\n }\n /**\n * Non-authenticated. Returns the mappings from the game API.\n *\n * Note: This library also exports \"BlockNames\" which is an enum containing the block names along with their respective id.\n */\n getMappings() {\n return PWApiClient.getMappings();\n }\n /**\n * Non-authenticated. Returns the mappings from the game API.\n *\n * Note: This library also exports \"BlockNames\" which is an enum containing the block names along with their respective id.\n */\n static getMappings() {\n return this.request(`${_util_Constants_js__WEBPACK_IMPORTED_MODULE_1__.Endpoint.GameHTTP}/mappings`);\n }\n getOwnedWorlds(page = 1, perPage = 10, query) {\n if (typeof page === \"object\") {\n query = page;\n page = 1;\n }\n return this.request(`${_util_Constants_js__WEBPACK_IMPORTED_MODULE_1__.Endpoint.Api}/api/collections/worlds/records?page=${page}&perPage=${perPage}${(0,_util_Misc_js__WEBPACK_IMPORTED_MODULE_2__.queryToString)(query)}`, undefined, true);\n }\n getPlayers(page = 1, perPage = 10, query) {\n if (typeof page === \"object\") {\n query = page;\n page = 1;\n }\n return PWApiClient.getPlayers(page, perPage, query);\n }\n static getPlayers(page = 1, perPage = 10, query) {\n if (typeof page === \"object\") {\n query = page;\n page = 1;\n }\n return this.request(`${_util_Constants_js__WEBPACK_IMPORTED_MODULE_1__.Endpoint.Api}/api/collections/public_profiles/records?page=${page}&perPage=${perPage}${(0,_util_Misc_js__WEBPACK_IMPORTED_MODULE_2__.queryToString)(query)}`);\n }\n getPublicWorlds(page = 1, perPage = 10, query) {\n if (typeof page === \"object\") {\n query = page;\n page = 1;\n }\n return PWApiClient.getPublicWorlds(page, perPage, query);\n }\n static getPublicWorlds(page = 1, perPage = 10, query) {\n if (typeof page === \"object\") {\n query = page;\n page = 1;\n }\n return this.request(`${_util_Constants_js__WEBPACK_IMPORTED_MODULE_1__.Endpoint.Api}/api/collections/public_worlds/records?page=${page}&perPage=${perPage}${(0,_util_Misc_js__WEBPACK_IMPORTED_MODULE_2__.queryToString)(query)}`);\n }\n /**\n * Returns the lobby result.\n */\n getVisibleWorlds() {\n return PWApiClient.getVisibleWorlds();\n }\n /**\n * Returns the lobby result.\n */\n static getVisibleWorlds() {\n if (this.roomTypes.length === 0)\n throw Error(\"roomTypes is empty - use getRoomTypes first!\");\n return this.request(`${_util_Constants_js__WEBPACK_IMPORTED_MODULE_1__.Endpoint.GameHTTP}/room/list/${this.roomTypes[0]}`);\n }\n /**\n * Returns the world, if it exists and is public.\n */\n getPublicWorld(id) {\n return PWApiClient.getPublicWorld(id);\n }\n /**\n * Returns the world, if it exists and is public.\n */\n static getPublicWorld(id) {\n return this.getPublicWorlds(1, 1, { filter: { id } })\n .then(res => res.items[0]);\n }\n getMinimap(world, toURL = false) {\n if (toURL)\n return `${_util_Constants_js__WEBPACK_IMPORTED_MODULE_1__.Endpoint.Api}/api/files/rhrbt6wqhc4s0cp/${world.id}/${world.minimap}`;\n return PWApiClient.getMinimap(world, toURL);\n }\n static getMinimap(world, toURL = false) {\n if (toURL)\n return `${_util_Constants_js__WEBPACK_IMPORTED_MODULE_1__.Endpoint.Api}/api/files/rhrbt6wqhc4s0cp/${world.id}/${world.minimap}`;\n return this.request(this.getMinimap(world, true))\n .then(res => {\n if (\"message\" in res)\n throw Error(\"Minimap doesn't exist, the world may be unlisted.\");\n return res;\n });\n }\n /**\n * Note that username is cap sensitive, and may require you to use toUppercase\n */\n getPlayerByName(username) {\n return PWApiClient.getPlayerByName(username);\n }\n /**\n * Note that username is cap sensitive, and may require you to use toUppercase\n */\n static getPlayerByName(username) {\n return this.getPlayers(1, 1, { filter: { username } });\n }\n // This doesn't seem to work so I commented it out, not removing it as there might be an oversight idk\n // getMessageTypes() {\n // return this.request<string[]>(`${Endpoint.GameHTTP}/message_types`)\n // .then(res => res instanceof Uint8Array ? [] : res ?? []);\n // }\n /**\n * IMPORTANT: This will return JSON for any responses that have the content-type of json, anything else will be sent back as Uint8array.\n * If you're expecting raw bytes, make sure the endpoint is guaranteed to give you that otherwise there isn't a reason.\n *\n * This requires the manager to be authenticated, it will error if otherwise.\n * @param url Requires to be a full URL with endpoint unfortunately. It will throw error if it doesn't match any of the 2 HTTP endpoint URLs.\n * @param body If this is passed, the request will become a POST. (If you need to send a POST but has no data, just send an empty object).\n * @param token The API token (not join key), this is if you wish to use authenticated API calls without having to instantise an api client yourself.\n */\n static request(url, body, token) {\n if (!(url.startsWith(_util_Constants_js__WEBPACK_IMPORTED_MODULE_1__.Endpoint.Api) || url.startsWith(_util_Constants_js__WEBPACK_IMPORTED_MODULE_1__.Endpoint.GameHTTP)))\n throw Error(\"URL given does not have the correct endpoint URL, this is for safety.\");\n const headers = {\n // \"user-agent\": \"PW-TS-API/0.0.1\"\n };\n if (typeof token === \"string\")\n headers[\"authorization\"] = token;\n if (typeof body === \"object\")\n body = JSON.stringify(body);\n let method = \"GET\";\n if (typeof body !== \"undefined\") {\n headers[\"content-type\"] = \"application/json\";\n method = \"POST\";\n }\n return fetch(url, {\n headers, method,\n body: body\n }).then(res => {\n var _a;\n if (res.status === 403)\n throw Error(\"Forbidden access - token invalid or unauthorised.\");\n // else if (res.status !== 200) throw Error(\"\")\n if ((_a = res.headers.get(\"content-type\")) === null || _a === void 0 ? void 0 : _a.startsWith(\"application/json\"))\n return res.json();\n else\n return res.arrayBuffer();\n });\n }\n /**\n * IMPORTANT: This will return JSON for any responses that have the content-type of json, anything else will be sent back as Uint8array.\n * If you're expecting raw bytes, make sure the endpoint is guaranteed to give you that otherwise there isn't a reason.\n *\n * This requires the manager to be authenticated, it will error if otherwise.\n * @param url Requires to be a full URL with endpoint unfortunately. It will throw error if it doesn't match any of the 2 HTTP endpoint URLs.\n * @param body If this is passed, the request will become a POST. (If you need to send a POST but has no data, just send an empty object).\n * @param isAuthenticated If true, this will send the token as the header.\n */\n request(url, body, isAuthenticated = false) {\n return PWApiClient.request(url, body, isAuthenticated ? this.token : undefined);\n }\n}\n/**\n * This will be an empty array if getRoomTypes has never been used successfully at least once.\n */\nPWApiClient.roomTypes = [];\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (PWApiClient);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUFdBcGlDbGllbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9saWIvYXBpL1BXQXBpQ2xpZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sWUFBWSxNQUFNLHlCQUF5QixDQUFDO0FBR25ELE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUNoRCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFFaEQ7O0dBRUc7QUFDSCxNQUFxQixXQUFXO0lBMEI1QixZQUFZLEtBQWEsRUFBRSxRQUFpQjtRQXBCNUM7O1dBRUc7UUFDSyxZQUFPLEdBQUc7WUFDZCxLQUFLLEVBQUUsRUFBRTtZQUNULFFBQVEsRUFBRSxFQUFFO1NBQ2YsQ0FBQTtRQUVELGFBQVEsR0FBRyxLQUFLLENBQUM7UUFhYixJQUFJLFFBQVEsS0FBSyxTQUFTLEVBQUUsQ0FBQztZQUN6QixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztZQUNuQixJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQztZQUNyQixPQUFPO1FBQ1gsQ0FBQztRQUVELElBQUksQ0FBQyxPQUFPLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztRQUMzQixJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsR0FBRyxRQUFRLENBQUM7UUFFakMsc0JBQXNCO0lBQzFCLENBQUM7SUFZRCxZQUFZLENBQUMsS0FBYyxFQUFFLFFBQWlCO1FBQzFDLElBQUksS0FBSyxLQUFLLFNBQVMsRUFBRSxDQUFDO1lBQ3RCLElBQUksSUFBSSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsTUFBTSxLQUFLLENBQUMsSUFBSSxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxNQUFNLEtBQUssQ0FBQztnQkFBRSxNQUFNLEtBQUssQ0FBQywwQkFBMEIsQ0FBQyxDQUFDO1lBRW5ILEtBQUssR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQztZQUMz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\n\n//# sourceURL=webpack://PW/./esm/api/PWApiClient.js?");
50
30
 
51
31
  /***/ }),
52
32
 
53
- /***/ "./dist/index.js":
54
- /*!***********************!*\
55
- !*** ./dist/index.js ***!
56
- \***********************/
57
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
33
+ /***/ "./esm/game/PWGameClient.js":
34
+ /*!**********************************!*\
35
+ !*** ./esm/game/PWGameClient.js ***!
36
+ \**********************************/
37
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
58
38
 
59
- eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.ProtoGen = exports.BlockNames = exports.Errors = exports.Constants = exports.PWGameClient = exports.PWApiClient = void 0;\nconst tslib_1 = __webpack_require__(/*! tslib */ \"./node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.es6.mjs\");\nvar PWApiClient_js_1 = __webpack_require__(/*! ./api/PWApiClient.js */ \"./dist/api/PWApiClient.js\");\nObject.defineProperty(exports, \"PWApiClient\", ({ enumerable: true, get: function () { return tslib_1.__importDefault(PWApiClient_js_1).default; } }));\nvar PWGameClient_js_1 = __webpack_require__(/*! ./game/PWGameClient.js */ \"./dist/game/PWGameClient.js\");\nObject.defineProperty(exports, \"PWGameClient\", ({ enumerable: true, get: function () { return tslib_1.__importDefault(PWGameClient_js_1).default; } }));\nexports.Constants = tslib_1.__importStar(__webpack_require__(/*! ./util/Constants.js */ \"./dist/util/Constants.js\"));\nexports.Errors = tslib_1.__importStar(__webpack_require__(/*! ./util/Errors.js */ \"./dist/util/Errors.js\"));\nvar block_js_1 = __webpack_require__(/*! ./util/block.js */ \"./dist/util/block.js\");\nObject.defineProperty(exports, \"BlockNames\", ({ enumerable: true, get: function () { return block_js_1.BlockNames; } }));\nexports.ProtoGen = tslib_1.__importStar(__webpack_require__(/*! ./gen/world_pb.js */ \"./dist/gen/world_pb.js\"));\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9saWIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUNBLHVEQUE4RDtBQUFyRCxzSUFBQSxPQUFPLE9BQWU7QUFDL0IsMERBQWlFO0FBQXhELHdJQUFBLE9BQU8sT0FBZ0I7QUFDaEMseUVBQWlEO0FBQ2pELG1FQUEyQztBQUMzQyw0Q0FBNkM7QUFBcEMsc0dBQUEsVUFBVSxPQUFBO0FBQ25CLHNFQUE4QyJ9\n\n//# sourceURL=webpack://PW/./dist/index.js?");
39
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ PWGameClient)\n/* harmony export */ });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! tslib */ \"./node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.es6.mjs\");\n/* harmony import */ var _gen_world_pb_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../gen/world_pb.js */ \"./esm/gen/world_pb.js\");\n/* harmony import */ var _util_Constants_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/Constants.js */ \"./esm/util/Constants.js\");\n/* harmony import */ var _util_Errors_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/Errors.js */ \"./esm/util/Errors.js\");\n/* harmony import */ var isows__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! isows */ \"./node_modules/.pnpm/isows@1.0.6_ws@8.18.0/node_modules/isows/_esm/native.js\");\n/* harmony import */ var _bufbuild_protobuf__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @bufbuild/protobuf */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/from-binary.js\");\n/* harmony import */ var _bufbuild_protobuf__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @bufbuild/protobuf */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/to-binary.js\");\n/* harmony import */ var _bufbuild_protobuf__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @bufbuild/protobuf */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/create.js\");\n/* harmony import */ var _util_Bucket_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/Bucket.js */ \"./esm/util/Bucket.js\");\n\n\n\n\n\n\n\nclass PWGameClient {\n constructor(api, settings) {\n var _a, _b, _c, _d, _e;\n this.totalBucket = new _util_Bucket_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"](100, 1000);\n this.chatBucket = new _util_Bucket_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"](10, 1000);\n this.connectAttempts = {\n time: -1,\n count: 0,\n };\n // listen<Event extends keyof WorldEvents>(type: Event) {\n // type === \"\"\n // }\n /**\n * For faster performance (even if it seems insignificant),\n * direct functions are used instead of events which are also inconsistent with browsers/nodejs etc.\n *\n * NOTE: the \"this\" won't be the client itself. You will need to bind yourself if you want to keep this.\n */\n this.callbacks = {};\n // private hooks = {\n // } as Partial<{ [K in keyof P]: Array<(statey: P[K]) => Promisable<K>> }>\n /**\n * Poorly documented because I cba\n */\n this.hooks = [];\n // I can't use instanceof cos of circular reference kms.\n if (api && \"getJoinKey\" in api)\n this.api = api;\n else if (api) {\n settings = api;\n api = undefined;\n }\n this.settings = {\n reconnectable: (_a = settings === null || settings === void 0 ? void 0 : settings.reconnectable) !== null && _a !== void 0 ? _a : true,\n reconnectCount: (_b = settings === null || settings === void 0 ? void 0 : settings.reconnectCount) !== null && _b !== void 0 ? _b : 5,\n reconnectInterval: (_c = settings === null || settings === void 0 ? void 0 : settings.reconnectInterval) !== null && _c !== void 0 ? _c : 4000,\n reconnectTimeGap: (_d = settings === null || settings === void 0 ? void 0 : settings.reconnectTimeGap) !== null && _d !== void 0 ? _d : 10000,\n handlePackets: (_e = settings === null || settings === void 0 ? void 0 : settings.handlePackets) !== null && _e !== void 0 ? _e : [\"PING\"],\n };\n }\n get connected() {\n var _a;\n return ((_a = this.socket) === null || _a === void 0 ? void 0 : _a.readyState) === isows__WEBPACK_IMPORTED_MODULE_4__.WebSocket.OPEN;\n }\n /**\n * This will connect to the world.\n *\n * (This returns itself for chaining)\n */\n joinWorld(roomId, joinData) {\n return (0,tslib__WEBPACK_IMPORTED_MODULE_5__.__awaiter)(this, void 0, void 0, function* () {\n var _a, _b, _c;\n if (!this.api)\n throw Error(\"This can only work if you've used APIClient to join the world in the first place.\");\n if (((_a = this.socket) === null || _a === void 0 ? void 0 : _a.readyState) === isows__WEBPACK_IMPORTED_MODULE_4__.WebSocket.CONNECTING)\n throw Error(\"Already trying to connect.\");\n // if (!this.api.loggedIn) throw Error(\"API isn't logged in, you must use authenticate first.\");\n const roomType = (_c = (_b = this.api.roomTypes) === null || _b === void 0 ? void 0 : _b[0]) !== null && _c !== void 0 ? _c : yield this.api.getRoomTypes().then(rTypes => rTypes[0]);\n const joinReq = yield this.api.getJoinKey(roomType, roomId);\n if (!(\"token\" in joinReq) || joinReq.token.length === 0)\n throw Error(\"Unable to secure a join key - is account details valid?\");\n const connectUrl = `${_util_Constants_js__WEBPACK_IMPORTED_MODULE_1__.Endpoint.GameWS}/room/${joinReq.token}`\n + (joinData === undefined ? \"\" : \"?joinData=\" + btoa(JSON.stringify(joinData)));\n this.prevWorldId = roomId;\n if ((this.connectAttempts.time + this.settings.reconnectTimeGap) < Date.now()) {\n this.connectAttempts = {\n time: Date.now(), count: 0\n };\n }\n return new Promise((res, rej) => {\n var _a;\n if (this.connectAttempts.count++ > this.settings.reconnectCount)\n return rej(new Error(\"Unable to connect due to many attempts.\"));\n const timer = setInterval(() => {\n if (this.connectAttempts.count++ > this.settings.reconnectCount)\n return rej(new Error(\"Unable to (re)connect.\"));\n this.invoke(\"debug\", \"Failed to reconnect, retrying.\");\n this.socket = this.createSocket(connectUrl, timer, res, rej);\n }, (_a = this.settings.reconnectInterval) !== null && _a !== void 0 ? _a : 4000);\n this.socket = this.createSocket(connectUrl, timer, res, rej);\n });\n });\n }\n /**\n * INTERNAL\n */\n createSocket(url, timer, res, rej) {\n const socket = new isows__WEBPACK_IMPORTED_MODULE_4__.WebSocket(url);\n socket.binaryType = \"arraybuffer\";\n // For res/rej.\n let init = false;\n socket.onmessage = (evt) => {\n var _a;\n const rawPacket = (0,_bufbuild_protobuf__WEBPACK_IMPORTED_MODULE_6__.fromBinary)(_gen_world_pb_js__WEBPACK_IMPORTED_MODULE_0__.WorldPacketSchema, evt.data instanceof ArrayBuffer ? new Uint8Array(evt.data) : evt.data);\n const { packet } = rawPacket;\n this.invoke(\"debug\", \"Received \" + packet.case);\n this.invoke(\"raw\", rawPacket);\n if (packet.case === undefined) {\n return this.invoke(\"unknown\", packet.value);\n } //this.callbacks.raw?.(packet);;\n let states = {}; // | undefined;\n if (this.hooks.length) {\n try {\n states = {};\n for (let i = 0, len = this.hooks.length; i < len; i++) {\n const res = this.hooks[i](rawPacket);\n if (typeof res === \"object\") {\n const entries = Object.entries(res);\n for (let j = 0, jen = entries.length; j < jen; j++) {\n states[entries[j][0]] = entries[j][1];\n }\n }\n }\n }\n catch (err) {\n this.invoke(\"debug\", \"Unable to execute all hooks safely\");\n // TODO: separate event for error\n console.error(err);\n states = {};\n }\n }\n switch (packet.case) {\n case \"playerInitPacket\":\n if (this.settings.handlePackets.findIndex(v => v === \"INIT\") !== -1)\n this.send(\"playerInitReceived\");\n if ((_a = packet.value.playerProperties) === null || _a === void 0 ? void 0 : _a.isWorldOwner)\n this.totalBucket.interval = 250;\n else\n this.totalBucket.interval = 100;\n if (!init) {\n clearInterval(timer);\n init = true;\n res(this);\n // Give the client the init again as they might could have missed it even by a few milliseconds.\n return setTimeout(() => {\n // TODO: deduplicate this part.\n if (this.hooks.length) {\n try {\n states = {};\n for (let i = 0, len = this.hooks.length; i < len; i++) {\n const res = this.hooks[i](rawPacket);\n if (typeof res === \"object\") {\n const entries = Object.entries(res);\n for (let j = 0, jen = entries.length; j < jen; j++) {\n states[entries[j][0]] = entries[j][1];\n }\n }\n }\n }\n catch (err) {\n this.invoke(\"debug\", \"Unable to execute all hooks safely\");\n // TODO: separate event for error\n console.error(err);\n states = {};\n }\n }\n this.invoke(packet.case, packet.value, states);\n }, 1500);\n }\n break;\n case \"ping\":\n if (this.settings.handlePackets.findIndex(v => v === \"PING\") !== -1)\n this.send(\"ping\", undefined, true);\n break;\n }\n this.invoke(packet.case, packet.value, states);\n };\n socket.onopen = (evt) => {\n this.invoke(\"debug\", \"Connected successfully, waiting for init packet.\");\n };\n socket.onclose = (evt) => {\n this.invoke(\"debug\", `Server closed connection due to code ${evt.code}, reason: \"${evt.reason}\".`);\n if (!init) {\n clearInterval(timer);\n rej(new _util_Errors_js__WEBPACK_IMPORTED_MODULE_2__.AuthError(evt.reason, (evt.code)));\n }\n if (this.settings.reconnectable) {\n if (this.api === undefined)\n return this.invoke(\"debug\", \"Not attempting to reconnect as this game client was created with a join token.\");\n // if (evt.reason === \"Failed to preload the world.\") {\n // return this.invoke(\"debug\", \"Not attempting to reconnect as the world don't exist.\");\n // }\n if (this.prevWorldId) {\n this.invoke(\"debug\", \"Attempting to reconnect.\");\n return this.joinWorld(this.prevWorldId).catch(err => {\n this.invoke(\"debug\", err);\n });\n }\n else\n this.invoke(\"debug\", \"Warning: Socket closed, attempt to reconnect was made but no previous world id was kept.\");\n }\n };\n return socket;\n }\n /**\n * This is a more direct route if you already have a join key acquired via Pixelwalker's API.\n *\n * Useful for those wary of security.\n */\n static joinWorld(joinKey, obj) {\n const connectUrl = `${_util_Constants_js__WEBPACK_IMPORTED_MODULE_1__.Endpoint.GameWS}/room/${joinKey}`\n + ((obj === null || obj === void 0 ? void 0 : obj.joinData) === undefined ? \"\" : \"?joinData=\" + btoa(JSON.stringify(obj.joinData)));\n const cli = new PWGameClient(obj === null || obj === void 0 ? void 0 : obj.gameSettings);\n if ((cli.connectAttempts.time + cli.settings.reconnectTimeGap) < Date.now()) {\n cli.connectAttempts = {\n time: Date.now(), count: 0\n };\n }\n return new Promise((res, rej) => {\n var _a;\n if (cli.connectAttempts.count++ > cli.settings.reconnectCount)\n return rej(new Error(\"Unable to connect due to many attempts.\"));\n const timer = setInterval(() => {\n var _a;\n (_a = cli.socket) === null || _a === void 0 ? void 0 : _a.close();\n if (cli.connectAttempts.count++ > cli.settings.reconnectCount)\n return rej(new Error(\"Unable to (re)connect.\"));\n cli.invoke(\"debug\", \"Failed to reconnect, retrying.\");\n cli.socket = cli.createSocket(connectUrl, timer, res, rej);\n }, (_a = cli.settings.reconnectInterval) !== null && _a !== void 0 ? _a : 4000);\n cli.socket = cli.createSocket(connectUrl, timer, res, rej);\n });\n }\n /**\n * This is different to addCallback as all hooks (regardless of the type) will execute first before the callbacks, each hook may modify something or do something in the background\n * and may pass it to callbacks (via the second parameter in callbacks). If an error occurs while executing one of the hooks,\n * the execution of hooks will halt for that packet and callbacks will run without the states.\n *\n * NOTE: This is permanent, if a hook is added, it can't be removed.\n */\n addHook(hook) {\n // if (this.callbacks[\"raw\"] === undefined) this.callbacks[\"raw\"] = [];\n // this.hooks.oldChatMessagesPacket\n this.hooks.push(hook);\n // this.callbacks[\"raw\"].unshift(hook);\n return this;\n }\n addCallback(type, ...cbs) {\n // this.callbacks[type] = cb;\n if (this.callbacks[type] === undefined)\n this.callbacks[type] = [];\n if (cbs.length === 0)\n return this;\n this.callbacks[type].push(...cbs);\n return this;\n }\n prependCallback(type, ...cbs) {\n // this.callbacks[type] = cb;\n if (this.callbacks[type] === undefined)\n this.callbacks[type] = [];\n if (cbs.length === 0)\n return this;\n this.callbacks[type].unshift(...cbs);\n return this;\n }\n /**\n * @param type The type of the event\n * @param cb It can be the function itself (to remove that specific function). If undefined, it will remove ALL functions from that list, it will return undefined.\n */\n removeCallback(type, cb) {\n const callbacks = this.callbacks[type];\n if (callbacks === undefined || cb === undefined) {\n callbacks === null || callbacks === void 0 ? void 0 : callbacks.splice(0);\n return;\n }\n else {\n for (let i = 0, len = callbacks.length; i < len; i++) {\n if (callbacks[i] === cb) {\n return callbacks.splice(i, 1)[0];\n }\n }\n }\n return;\n }\n invoke(type, data, states) {\n return (0,tslib__WEBPACK_IMPORTED_MODULE_5__.__awaiter)(this, void 0, void 0, function* () {\n const cbs = this.callbacks[type];\n let result = {\n count: 0, stopped: false\n };\n if (cbs === undefined)\n return result;\n for (let i = 0, len = cbs.length; i < len; i++) {\n const res = yield cbs[i](data, states);\n result.count++;\n if (typeof res === \"object\") {\n const keys = Object.keys(res);\n for (let j = 0, jen = keys.length; j < jen; j++) {\n data[keys[j]] = res[keys[j]];\n }\n }\n if (res === \"STOP\") {\n result.stopped = true;\n return result;\n }\n }\n return result;\n });\n }\n /**\n * This assumes that the connection\n *\n * @param type Type of the packet.\n * @param value Value of the packet to send along with, note that some properties are optional.\n * @param direct If it should skip queue.\n */\n send(type, value, direct = false) {\n this.invoke(\"debug\", \"Sent \" + type + \" with \" + (value === undefined ? \"0\" : Object.keys(value).length) + \" parameters.\");\n const send = () => {\n var _a;\n return (_a = this.socket) === null || _a === void 0 ? void 0 : _a.send((0,_bufbuild_protobuf__WEBPACK_IMPORTED_MODULE_7__.toBinary)(_gen_world_pb_js__WEBPACK_IMPORTED_MODULE_0__.WorldPacketSchema, (0,_bufbuild_protobuf__WEBPACK_IMPORTED_MODULE_8__.create)(_gen_world_pb_js__WEBPACK_IMPORTED_MODULE_0__.WorldPacketSchema, { packet: { case: type, value } })));\n };\n if (direct)\n return send();\n this.totalBucket.queue(() => {\n if (type !== \"playerChatPacket\")\n send();\n else\n this.chatBucket.queue(() => { send(); });\n }, type === \"playerChatPacket\");\n }\n /**\n * By default this will set the game client settings reconnectable to false.\n *\n * If reconnect is true, an additionl parameter can be passed which is the amount of time to wait before it attempts to reconnect (DEFAULT: none)\n */\n disconnect(reconnect = false) {\n var _a, _b;\n // Accept the possibility that people may try to \n if (reconnect === true)\n this.settings.reconnectable = true;\n else\n this.settings.reconnectable = false;\n (_a = this.socket) === null || _a === void 0 ? void 0 : _a.close();\n return ((_b = this.socket) === null || _b === void 0 ? void 0 : _b.readyState) === isows__WEBPACK_IMPORTED_MODULE_4__.WebSocket.CLOSED;\n }\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiUFdHYW1lQ2xpZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vbGliL2dhbWUvUFdHYW1lQ2xpZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFDQSxPQUFPLEVBQTJHLGlCQUFpQixFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFFaEssT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQ2hELE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUU5QyxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sT0FBTyxDQUFDO0FBQ2xDLE9BQU8sRUFBRSxNQUFNLEVBQUUsVUFBVSxFQUFFLFFBQVEsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBRWxFLE9BQU8sTUFBTSxNQUFNLG1CQUFtQixDQUFDO0FBS3ZDLE1BQU0sQ0FBQyxPQUFPLE9BQU8sWUFBWTtJQXdCN0IsWUFBWSxHQUErQyxFQUFFLFFBQXNDOztRQWJ6RixnQkFBVyxHQUFHLElBQUksTUFBTSxDQUFDLEdBQUcsRUFBRSxJQUFJLENBQUMsQ0FBQztRQUNwQyxlQUFVLEdBQUcsSUFBSSxNQUFNLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxDQUFDO1FBRWxDLG9CQUFlLEdBQUc7WUFDeEIsSUFBSSxFQUFFLENBQUMsQ0FBQztZQUNSLEtBQUssRUFBRSxDQUFDO1NBQ1gsQ0FBQTtRQXdPRCx5REFBeUQ7UUFDekQsa0JBQWtCO1FBQ2xCLElBQUk7UUFFSjs7Ozs7V0FLRztRQUNPLGNBQVMsR0FBRyxFQUVpSCxDQUFDO1FBRXhJLG9CQUFvQjtRQUVwQiwyRUFBMkU7UUFFM0U7O1dBRUc7UUFDSyxVQUFLLEdBQWtDLEVBQUUsQ0FBQztRQXJQOUMsd0RBQXdEO1FBQ3hELElBQUksR0FBRyxJQUFJLFlBQVksSUFBSSxHQUFHO1lBQUUsSUFBSSxDQUFDLEdBQUcsR0FBRyxHQUFHLENBQUM7YUFDMUMsSUFBSSxHQUFHLEVBQUUsQ0FBQztZQUNYLFFBQVEs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\n\n//# sourceURL=webpack://PW/./esm/game/PWGameClient.js?");
60
40
 
61
41
  /***/ }),
62
42
 
63
- /***/ "./dist/util/Bucket.js":
43
+ /***/ "./esm/gen/world_pb.js":
64
44
  /*!*****************************!*\
65
- !*** ./dist/util/Bucket.js ***!
45
+ !*** ./esm/gen/world_pb.js ***!
66
46
  \*****************************/
67
- /***/ ((__unused_webpack_module, exports) => {
47
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
68
48
 
69
- eval("\n/** @module Bucket */\n/**\n * lovingly borrowed from oceanic.js :3\n * https://github.com/OceanicJS/Oceanic/blob/9ca907f46d45da4afa8c9be9e81e3093925c73c5/lib/rest/Bucket.ts\n */\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\n/** A bucket. */\nclass Bucket {\n constructor(tokenLimit, interval, options) {\n var _a, _b;\n this._queue = [];\n this.tokenLimit = tokenLimit;\n this.interval = interval;\n this.latencyRef = (_a = options === null || options === void 0 ? void 0 : options.latencyRef) !== null && _a !== void 0 ? _a : { latency: 0 };\n this.lastReset = this.tokens = this.lastSend = 0;\n this.reservedTokens = (_b = options === null || options === void 0 ? void 0 : options.reservedTokens) !== null && _b !== void 0 ? _b : 0;\n this.timeout = null;\n }\n check() {\n if (this.timeout || this._queue.length === 0) {\n return;\n }\n if (this.lastReset + this.interval + this.tokenLimit * this.latencyRef.latency < Date.now()) {\n this.lastReset = Date.now();\n this.tokens = Math.max(0, this.tokens - this.tokenLimit);\n }\n let val;\n let tokensAvailable = this.tokens < this.tokenLimit;\n let unreservedTokensAvailable = this.tokens < (this.tokenLimit - this.reservedTokens);\n while (this._queue.length !== 0 && (unreservedTokensAvailable || (tokensAvailable && this._queue[0].priority))) {\n this.tokens++;\n tokensAvailable = this.tokens < this.tokenLimit;\n unreservedTokensAvailable = this.tokens < (this.tokenLimit - this.reservedTokens);\n const item = this._queue.shift();\n val = this.latencyRef.latency - Date.now() + this.lastSend;\n if (this.latencyRef.latency === 0 || val <= 0) {\n item.func();\n this.lastSend = Date.now();\n }\n else {\n setTimeout(() => {\n item.func();\n }, val);\n this.lastSend = Date.now() + val;\n }\n }\n if (this._queue.length !== 0 && !this.timeout) {\n this.timeout = setTimeout(() => {\n this.timeout = null;\n this.check();\n }, this.tokens < this.tokenLimit ? this.latencyRef.latency : Math.max(0, this.lastReset + this.interval + this.tokenLimit * this.latencyRef.latency - Date.now()));\n }\n }\n /**\n * Add an item to the queue.\n * @param func The function to queue.\n * @param priority If true, the item will be added to the front of the queue.\n */\n queue(func, priority = false) {\n if (priority) {\n this._queue.unshift({ func, priority });\n }\n else {\n this._queue.push({ func, priority });\n }\n this.check();\n }\n}\nexports[\"default\"] = Bucket;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQnVja2V0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vbGliL3V0aWwvQnVja2V0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxxQkFBcUI7QUFDckI7OztHQUdHOztBQUVILGdCQUFnQjtBQUNoQixNQUFxQixNQUFNO0lBVXZCLFlBQVksVUFBa0IsRUFBRSxRQUFnQixFQUFFLE9BQXlFOztRQVRuSCxXQUFNLEdBQStDLEVBQUUsQ0FBQztRQVU1RCxJQUFJLENBQUMsVUFBVSxHQUFHLFVBQVUsQ0FBQztRQUM3QixJQUFJLENBQUMsUUFBUSxHQUFHLFFBQVEsQ0FBQztRQUN6QixJQUFJLENBQUMsVUFBVSxHQUFHLE1BQUEsT0FBTyxhQUFQLE9BQU8sdUJBQVAsT0FBTyxDQUFFLFVBQVUsbUNBQUksRUFBRSxPQUFPLEVBQUUsQ0FBQyxFQUFFLENBQUM7UUFDeEQsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxRQUFRLEdBQUcsQ0FBQyxDQUFDO1FBQ2pELElBQUksQ0FBQyxjQUFjLEdBQUcsTUFBQSxPQUFPLGFBQVAsT0FBTyx1QkFBUCxPQUFPLENBQUUsY0FBYyxtQ0FBSSxDQUFDLENBQUM7UUFDbkQsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUM7SUFDeEIsQ0FBQztJQUVPLEtBQUs7UUFDVCxJQUFJLElBQUksQ0FBQyxPQUFPLElBQUksSUFBSSxDQUFDLE1BQU0sQ0FBQyxNQUFNLEtBQUssQ0FBQyxFQUFFLENBQUM7WUFDM0MsT0FBTztRQUNYLENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUMsVUFBVSxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQyxHQUFHLEVBQUUsRUFBRSxDQUFDO1lBQzFGLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLEdBQUcsRUFBRSxDQUFD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\n\n//# sourceURL=webpack://PW/./dist/util/Bucket.js?");
49
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ GlobalSwitchChangedPacketSchema: () => (/* binding */ GlobalSwitchChangedPacketSchema),\n/* harmony export */ GlobalSwitchResetPacketSchema: () => (/* binding */ GlobalSwitchResetPacketSchema),\n/* harmony export */ OldChatMessageSchema: () => (/* binding */ OldChatMessageSchema),\n/* harmony export */ OldChatMessagesPacketSchema: () => (/* binding */ OldChatMessagesPacketSchema),\n/* harmony export */ PerformWorldActionPacketSchema: () => (/* binding */ PerformWorldActionPacketSchema),\n/* harmony export */ PerformWorldActionPacket_Action: () => (/* binding */ PerformWorldActionPacket_Action),\n/* harmony export */ PerformWorldActionPacket_ActionSchema: () => (/* binding */ PerformWorldActionPacket_ActionSchema),\n/* harmony export */ PingSchema: () => (/* binding */ PingSchema),\n/* harmony export */ PlayerAddEffectPacketSchema: () => (/* binding */ PlayerAddEffectPacketSchema),\n/* harmony export */ PlayerChatPacketSchema: () => (/* binding */ PlayerChatPacketSchema),\n/* harmony export */ PlayerCountersUpdatePacketSchema: () => (/* binding */ PlayerCountersUpdatePacketSchema),\n/* harmony export */ PlayerDirectMessagePacketSchema: () => (/* binding */ PlayerDirectMessagePacketSchema),\n/* harmony export */ PlayerFacePacketSchema: () => (/* binding */ PlayerFacePacketSchema),\n/* harmony export */ PlayerGodModePacketSchema: () => (/* binding */ PlayerGodModePacketSchema),\n/* harmony export */ PlayerInitPacketSchema: () => (/* binding */ PlayerInitPacketSchema),\n/* harmony export */ PlayerInitReceivedPacketSchema: () => (/* binding */ PlayerInitReceivedPacketSchema),\n/* harmony export */ PlayerJoinedPacketSchema: () => (/* binding */ PlayerJoinedPacketSchema),\n/* harmony export */ PlayerLeftPacketSchema: () => (/* binding */ PlayerLeftPacketSchema),\n/* harmony export */ PlayerLocalSwitchChangedPacketSchema: () => (/* binding */ PlayerLocalSwitchChangedPacketSchema),\n/* harmony export */ PlayerLocalSwitchResetPacketSchema: () => (/* binding */ PlayerLocalSwitchResetPacketSchema),\n/* harmony export */ PlayerModModePacketSchema: () => (/* binding */ PlayerModModePacketSchema),\n/* harmony export */ PlayerMovedPacketSchema: () => (/* binding */ PlayerMovedPacketSchema),\n/* harmony export */ PlayerPropertiesSchema: () => (/* binding */ PlayerPropertiesSchema),\n/* harmony export */ PlayerRemoveEffectPacketSchema: () => (/* binding */ PlayerRemoveEffectPacketSchema),\n/* harmony export */ PlayerResetEffectsPacketSchema: () => (/* binding */ PlayerResetEffectsPacketSchema),\n/* harmony export */ PlayerResetPacketSchema: () => (/* binding */ PlayerResetPacketSchema),\n/* harmony export */ PlayerRespawnPacketSchema: () => (/* binding */ PlayerRespawnPacketSchema),\n/* harmony export */ PlayerRightsSchema: () => (/* binding */ PlayerRightsSchema),\n/* harmony export */ PlayerSpectatePacketSchema: () => (/* binding */ PlayerSpectatePacketSchema),\n/* harmony export */ PlayerTeamUpdatePacketSchema: () => (/* binding */ PlayerTeamUpdatePacketSchema),\n/* harmony export */ PlayerTeleportedPacketSchema: () => (/* binding */ PlayerTeleportedPacketSchema),\n/* harmony export */ PlayerTouchBlockPacketSchema: () => (/* binding */ PlayerTouchBlockPacketSchema),\n/* harmony export */ PlayerTouchPlayerPacketSchema: () => (/* binding */ PlayerTouchPlayerPacketSchema),\n/* harmony export */ PlayerTouchPlayerPacket_TouchType: () => (/* binding */ PlayerTouchPlayerPacket_TouchType),\n/* harmony export */ PlayerTouchPlayerPacket_TouchTypeSchema: () => (/* binding */ PlayerTouchPlayerPacket_TouchTypeSchema),\n/* harmony export */ PlayerUpdateRightsPacketSchema: () => (/* binding */ PlayerUpdateRightsPacketSchema),\n/* harmony export */ PlayerWorldStateSchema: () => (/* binding */ PlayerWorldStateSchema),\n/* harmony export */ PointDoubleSchema: () => (/* binding */ PointDoubleSchema),\n/* harmony export */ PointIntegerSchema: () => (/* binding */ PointIntegerSchema),\n/* harmony export */ SystemMessagePacketSchema: () => (/* binding */ SystemMessagePacketSchema),\n/* harmony export */ WorldBlockFilledPacketSchema: () => (/* binding */ WorldBlockFilledPacketSchema),\n/* harmony export */ WorldBlockPlacedPacketSchema: () => (/* binding */ WorldBlockPlacedPacketSchema),\n/* harmony export */ WorldClearedPacketSchema: () => (/* binding */ WorldClearedPacketSchema),\n/* harmony export */ WorldMetaSchema: () => (/* binding */ WorldMetaSchema),\n/* harmony export */ WorldMetaUpdatePacketSchema: () => (/* binding */ WorldMetaUpdatePacketSchema),\n/* harmony export */ WorldMeta_WorldType: () => (/* binding */ WorldMeta_WorldType),\n/* harmony export */ WorldMeta_WorldTypeSchema: () => (/* binding */ WorldMeta_WorldTypeSchema),\n/* harmony export */ WorldPacketSchema: () => (/* binding */ WorldPacketSchema),\n/* harmony export */ WorldReloadedPacketSchema: () => (/* binding */ WorldReloadedPacketSchema),\n/* harmony export */ file_world: () => (/* binding */ file_world)\n/* harmony export */ });\n/* harmony import */ var _bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @bufbuild/protobuf/codegenv1 */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/file.js\");\n/* harmony import */ var _bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @bufbuild/protobuf/codegenv1 */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/message.js\");\n/* harmony import */ var _bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @bufbuild/protobuf/codegenv1 */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/enum.js\");\n// @generated by protoc-gen-es v2.2.3 with parameter \"target=ts\"\n// @generated from file world.proto (package WorldPackets, syntax proto3)\n/* eslint-disable */\n\n/**\n * Describes the file world.proto.\n */\nconst file_world = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_0__.fileDesc)(\"Cgt3b3JsZC5wcm90bxIMV29ybGRQYWNrZXRzIusTCgtXb3JsZFBhY2tldBIiCgRwaW5nGAEgASgLMhIuV29ybGRQYWNrZXRzLlBpbmdIABI8ChJwbGF5ZXJfaW5pdF9wYWNrZXQYAiABKAsyHi5Xb3JsZFBhY2tldHMuUGxheWVySW5pdFBhY2tldEgAEkYKFHBsYXllcl9pbml0X3JlY2VpdmVkGAMgASgLMiYuV29ybGRQYWNrZXRzLlBsYXllckluaXRSZWNlaXZlZFBhY2tldEgAEkAKFHBsYXllcl9qb2luZWRfcGFja2V0GAQgASgLMiAuV29ybGRQYWNrZXRzLlBsYXllckpvaW5lZFBhY2tldEgAEjwKEnBsYXllcl9sZWZ0X3BhY2tldBgFIAEoCzIeLldvcmxkUGFja2V0cy5QbGF5ZXJMZWZ0UGFja2V0SAASPAoScGxheWVyX2NoYXRfcGFja2V0GAYgASgLMh4uV29ybGRQYWNrZXRzLlBsYXllckNoYXRQYWNrZXRIABJNChtwbGF5ZXJfdXBkYXRlX3JpZ2h0c19wYWNrZXQYByABKAsyJi5Xb3JsZFBhY2tldHMuUGxheWVyVXBkYXRlUmlnaHRzUGFja2V0SAASPgoTcGxheWVyX21vdmVkX3BhY2tldBgIIAEoCzIfLldvcmxkUGFja2V0cy5QbGF5ZXJNb3ZlZFBhY2tldEgAEjwKEnBsYXllcl9mYWNlX3BhY2tldBgJIAEoCzIeLldvcmxkUGFja2V0cy5QbGF5ZXJGYWNlUGFja2V0SAASQwoWcGxheWVyX2dvZF9tb2RlX3BhY2tldBgKIAEoCzIhLldvcmxkUGFja2V0cy5QbGF5ZXJHb2RNb2RlUGFja2V0SAASQwoWcGxheWVyX21vZF9tb2RlX3BhY2tldBgLIAEoCzIhLldvcmxkUGFja2V0cy5QbGF5ZXJNb2RNb2RlUGFja2V0SAASQgoVcGxheWVyX3Jlc3Bhd25fcGFja2V0GAwgASgLMiEuV29ybGRQYWNrZXRzLlBsYXllclJlc3Bhd25QYWNrZXRIABI+ChNwbGF5ZXJfcmVzZXRfcGFja2V0GA0gASgLMh8uV29ybGRQYWNrZXRzLlBsYXllclJlc2V0UGFja2V0SAASSQoZcGxheWVyX3RvdWNoX2Jsb2NrX3BhY2tldBgOIAEoCzIkLldvcmxkUGFja2V0cy5QbGF5ZXJUb3VjaEJsb2NrUGFja2V0SAASRwoYcGxheWVyX2FkZF9lZmZlY3RfcGFja2V0GA8gASgLMiMuV29ybGRQYWNrZXRzLlBsYXllckFkZEVmZmVjdFBhY2tldEgAEk0KG3BsYXllcl9yZW1vdmVfZWZmZWN0X3BhY2tldBgQIAEoCzImLldvcmxkUGFja2V0cy5QbGF5ZXJSZW1vdmVFZmZlY3RQYWNrZXRIABJNChtwbGF5ZXJfcmVzZXRfZWZmZWN0c19wYWNrZXQYESABKAsyJi5Xb3JsZFBhY2tldHMuUGxheWVyUmVzZXRFZmZlY3RzUGFja2V0SAASSQoZcGxheWVyX3RlYW1fdXBkYXRlX3BhY2tldBgSIAEoCzIkLldvcmxkUGFja2V0cy5QbGF5ZXJUZWFtVXBkYXRlUGFja2V0SAASUQodcGxheWVyX2NvdW50ZXJzX3VwZGF0ZV9wYWNrZXQYEyABKAsyKC5Xb3JsZFBhY2tldHMuUGxheWVyQ291bnRlcnNVcGRhdGVQYWNrZXRIABJaCiJwbGF5ZXJfbG9jYWxfc3dpdGNoX2NoYW5nZWRfcGFja2V0GBQgASgLMiwuV29ybGRQYWNrZXRzLlBsYXllckxvY2FsU3dpdGNoQ2hhbmdlZFBhY2tldEgAElYKIHBsYXllcl9sb2NhbF9zd2l0Y2hfcmVzZXRfcGFja2V0GBUgASgLMiouV29ybGRQYWNrZXRzLlBsYXllckxvY2FsU3dpdGNoUmVzZXRQYWNrZXRIABJPChxwbGF5ZXJfZGlyZWN0X21lc3NhZ2VfcGFja2V0GBYgASgLMicuV29ybGRQYWNrZXRzLlBsYXllckRpcmVjdE1lc3NhZ2VQYWNrZXRIABJLChpwbGF5ZXJfdG91Y2hfcGxheWVyX3BhY2tldBgXIAEoCzIlLldvcmxkUGFja2V0cy5QbGF5ZXJUb3VjaFBsYXllclBhY2tldEgAEkgKGHBsYXllcl90ZWxlcG9ydGVkX3BhY2tldBgYIAEoCzIkLldvcmxkUGFja2V0cy5QbGF5ZXJUZWxlcG9ydGVkUGFja2V0SAASQgoVd29ybGRfcmVsb2FkZWRfcGFja2V0GBkgASgLMiEuV29ybGRQYWNrZXRzLldvcmxkUmVsb2FkZWRQYWNrZXRIABJAChR3b3JsZF9jbGVhcmVkX3BhY2tldBgaIAEoCzIgLldvcmxkUGFja2V0cy5Xb3JsZENsZWFyZWRQYWNrZXRIABJHChh3b3JsZF9tZXRhX3VwZGF0ZV9wYWNrZXQYGyABKAsyIy5Xb3JsZFBhY2tldHMuV29ybGRNZXRhVXBkYXRlUGFja2V0SAASSQoZd29ybGRfYmxvY2tfcGxhY2VkX3BhY2tldBgcIAEoCzIkLldvcmxkUGFja2V0cy5Xb3JsZEJsb2NrUGxhY2VkUGFja2V0SAASSQoZd29ybGRfYmxvY2tfZmlsbGVkX3BhY2tldBgdIAEoCzIkLldvcmxkUGFja2V0cy5Xb3JsZEJsb2NrRmlsbGVkUGFja2V0SAASRwoYb2xkX2NoYXRfbWVzc2FnZXNfcGFja2V0GB4gASgLMiMuV29ybGRQYWNrZXRzLk9sZENoYXRNZXNzYWdlc1BhY2tldEgAEkIKFXN5c3RlbV9tZXNzYWdlX3BhY2tldBgfIAEoCzIhLldvcmxkUGFja2V0cy5TeXN0ZW1NZXNzYWdlUGFja2V0SAASTwocZ2xvYmFsX3N3aXRjaF9jaGFuZ2VkX3BhY2tldBggIAEoCzInLldvcmxkUGFja2V0cy5HbG9iYWxTd2l0Y2hDaGFuZ2VkUGFja2V0SAASSwoaZ2xvYmFsX3N3aXRjaF9yZXNldF9wYWNrZXQYISABKAsyJS5Xb3JsZFBhY2tldHMuR2xvYmFsU3dpdGNoUmVzZXRQYWNrZXRIABJNChtwZXJmb3JtX3dvcmxkX2FjdGlvbl9wYWNrZXQYIiABKAsyJi5Xb3JsZFBhY2tldHMuUGVyZm9ybVdvcmxkQWN0aW9uUGFja2V0SAASRAoWcGxheWVyX3NwZWN0YXRlX3BhY2tldBgjIAEoCzIiLldvcmxkUGFja2V0cy5QbGF5ZXJTcGVjdGF0ZVBhY2tldEgAQggKBnBhY2tldCIGCgRQaW5nIlIKGUdsb2JhbFN3aXRjaENoYW5nZWRQYWNrZXQSEQoJcGxheWVyX2lkGAEgASgFEhEKCXN3aXRjaF9pZBgCIAEoBRIPCgdlbmFibGVkGAMgASgIIj0KF0dsb2JhbFN3aXRjaFJlc2V0UGFja2V0EhEKCXBsYXllcl9pZBgBIAEoBRIPCgdlbmFibGVkGAIgASgIIkgKE1N5c3RlbU1lc3NhZ2VQYWNrZXQSDQoFdGl0bGUYASABKAkSDwoHbWVzc2FnZRgCIAEoCRIRCglpc19kaWFsb2cYAyABKAgiUAoVT2xkQ2hhdE1lc3NhZ2VzUGFja2V0EjcKEW9sZF9jaGF0X21lc3NhZ2VzGAEgAygLMhwuV29ybGRQYWNrZXRzLk9sZENoYXRNZXNzYWdlIpYBChhQZXJmb3JtV29ybGRBY3Rpb25QYWNrZXQSPQoGYWN0aW9uGAEgASgOMi0uV29ybGRQYWNrZXRzLlBlcmZvcm1Xb3JsZEFjdGlvblBhY2tldC5BY3Rpb24iOwoGQWN0aW9uEg4KClNBVkVfV09STEQQABIQCgxSRUxPQURfV09STEQQARIPCgtDTEVBUl9XT1JMRBADIikKE1dvcmxkUmVsb2FkZWRQYWNrZXQSEgoKd29ybGRfZGF0YRgBIAEoDCIUChJXb3JsZENsZWFyZWRQYWNrZXQivwEKFldvcmxkQmxvY2tQbGFjZWRQYWNrZXQSFgoJcGxheWVyX2lkGAEgASgFSACIAQESGQoRaXNfZmlsbF9vcGVyYXRpb24YAyABKAgSLQoJcG9zaXRpb25zGAQgAygLMhouV29ybGRQYWNrZXRzLlBvaW50SW50ZWdlchINCgVsYXllchgFIAEoBRIQCghibG9ja19pZBgGIAEoBRIUCgxleHRyYV9maWVsZHMYByABKAxCDAoKX3BsYXllcl9pZCKTAQoWV29ybGRCbG9ja0ZpbGxlZFBhY2tldBIsCghwb3NpdGlvbhgBIAEoCzIaLldvcmxkUGFja2V0cy5Qb2ludEludGVnZXISFAoMaWdub3JlTGF5ZXJzGAIgASgIEg0KBWxheWVyGAMgASgFEhAKCGJsb2NrX2lkGAQgASgFEhQKDGV4dHJhX2ZpZWxkcxgFIAEoDCI+ChVXb3JsZE1ldGFVcGRhdGVQYWNrZXQSJQoEbWV0YRgBIAEoCzIXLldvcmxkUGFja2V0cy5Xb3JsZE1ldGEi1gEKEFBsYXllckluaXRQYWNrZXQSOQoRcGxheWVyX3Byb3BlcnRpZXMYASABKAsyHi5Xb3JsZFBhY2tldHMuUGxheWVyUHJvcGVydGllcxIrCgp3b3JsZF9tZXRhGAIgASgLMhcuV29ybGRQYWNrZXRzLldvcmxkTWV0YRITCgt3b3JsZF93aWR0aBgDIAEoBRIUCgx3b3JsZF9oZWlnaHQYBCABKAUSGwoTZ2xvYmFsX3N3aXRjaF9zdGF0ZRgGIAEoDBISCgp3b3JsZF9kYXRhGAcgASgMIhoKGFBsYXllckluaXRSZWNlaXZlZFBhY2tldCJ9ChJQbGF5ZXJKb2luZWRQYWNrZXQSMgoKcHJvcGVydGllcxgBIAEoCzIeLldvcmxkUGFja2V0cy5QbGF5ZXJQcm9wZXJ0aWVzEjMKC3dvcmxkX3N0YXRlGAIgASgLMh4uV29ybGRQYWNrZXRzLlBsYXllcldvcmxkU3RhdGUiJQoQUGxheWVyTGVmdFBhY2tldBIRCglwbGF5ZXJfaWQYASABKAUiNgoQUGxheWVyQ2hhdFBhY2tldBIRCglwbGF5ZXJfaWQYASABKAUSDwoHbWVzc2FnZRgCIAEoCSJsChhQbGF5ZXJVcGRhdGVSaWdodHNQYWNrZXQSFgoJcGxheWVyX2lkGAEgASgFSACIAQESKgoGcmlnaHRzGAIgASgLMhouV29ybGRQYWNrZXRzLlBsYXllclJpZ2h0c0IMCgpfcGxheWVyX2lkIrMCChFQbGF5ZXJNb3ZlZFBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIrCghwb3NpdGlvbhgCIAEoCzIZLldvcmxkUGFja2V0cy5Qb2ludERvdWJsZRISCgp2ZWxvY2l0eV94GAMgASgBEhIKCnZlbG9jaXR5X3kYBCABKAESEgoKbW9kaWZpZXJfeBgFIAEoARISCgptb2RpZmllcl95GAYgASgBEhIKCmhvcml6b250YWwYByABKAUSEAoIdmVydGljYWwYCCABKAUSEgoKc3BhY2VfZG93bhgJIAEoCBIXCg9zcGFjZV9qdXN0X2Rvd24YCiABKAgSFwoPanVzdF90ZWxlcG9ydGVkGAsgASgIEg8KB3RpY2tfaWQYDCABKAVCDAoKX3BsYXllcl9pZCJrChZQbGF5ZXJUZWxlcG9ydGVkUGFja2V0EhYKCXBsYXllcl9pZBgBIAEoBUgAiAEBEisKCHBvc2l0aW9uGAIgASgLMhkuV29ybGRQYWNrZXRzLlBvaW50RG91YmxlQgwKCl9wbGF5ZXJfaWQiSQoQUGxheWVyRmFjZVBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIPCgdmYWNlX2lkGAIgASgFQgwKCl9wbGF5ZXJfaWQiVQoUUGxheWVyU3BlY3RhdGVQYWNrZXQSFgoJcGxheWVyX2lkGAEgASgFSACIAQESFwoPc3BlY3RhdGVfcGxheWVyGAIgASgFQgwKCl9wbGF5ZXJfaWQiTAoTUGxheWVyR29kTW9kZVBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIPCgdlbmFibGVkGAIgASgIQgwKCl9wbGF5ZXJfaWQiTAoTUGxheWVyTW9kTW9kZVBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIPCgdlbmFibGVkGAMgASgIQgwKCl9wbGF5ZXJfaWQiaQoTUGxheWVyUmVzcGF3blBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIsCghwb3NpdGlvbhgCIAEoCzIaLldvcmxkUGFja2V0cy5Qb2ludEludGVnZXJCDAoKX3BsYXllcl9pZCJ5ChFQbGF5ZXJSZXNldFBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIxCghwb3NpdGlvbhgCIAEoCzIaLldvcmxkUGFja2V0cy5Qb2ludEludGVnZXJIAYgBAUIMCgpfcGxheWVyX2lkQgsKCV9wb3NpdGlvbiKQAQoWUGxheWVyVG91Y2hCbG9ja1BhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIxCghwb3NpdGlvbhgCIAEoCzIaLldvcmxkUGFja2V0cy5Qb2ludEludGVnZXJIAYgBARIQCghibG9ja19pZBgDIAEoBUIMCgpfcGxheWVyX2lkQgsKCV9wb3NpdGlvbiK9AQoXUGxheWVyVG91Y2hQbGF5ZXJQYWNrZXQSFgoJcGxheWVyX2lkGAEgASgFSACIAQESFgoOdG91Y2hlZF9wbGF5ZXIYAiABKAUSQwoKdG91Y2hfdHlwZRgDIAEoDjIvLldvcmxkUGFja2V0cy5QbGF5ZXJUb3VjaFBsYXllclBhY2tldC5Ub3VjaFR5cGUiHwoJVG91Y2hUeXBlEgkKBVNUQVJUEAASBwoDRU5EEAFCDAoKX3BsYXllcl9pZCKtAQoVUGxheWVyQWRkRWZmZWN0UGFja2V0EhYKCXBsYXllcl9pZBgBIAEoBUgAiAEBEhMKC2Zyb21fc2VydmVyGAIgASgIEhEKCWVmZmVjdF9pZBgDIAEoBRIVCghkdXJhdGlvbhgEIAEoBUgBiAEBEhUKCHN0cmVuZ3RoGAUgASgFSAKIAQFCDAoKX3BsYXllcl9pZEILCglfZHVyYXRpb25CCwoJX3N0cmVuZ3RoIlMKGFBsYXllclJlbW92ZUVmZmVjdFBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIRCgllZmZlY3RfaWQYBCABKAVCDAoKX3BsYXllcl9pZCJVChhQbGF5ZXJSZXNldEVmZmVjdHNQYWNrZXQSFgoJcGxheWVyX2lkGAEgASgFSACIAQESEwoLZnJvbV9zZXJ2ZXIYAiABKAhCDAoKX3BsYXllcl9pZCJPChZQbGF5ZXJUZWFtVXBkYXRlUGFja2V0EhYKCXBsYXllcl9pZBgBIAEoBUgAiAEBEg8KB3RlYW1faWQYAiABKAVCDAoKX3BsYXllcl9pZCJ1ChpQbGF5ZXJDb3VudGVyc1VwZGF0ZVBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARINCgVjb2lucxgCIAEoBRISCgpibHVlX2NvaW5zGAMgASgFEg4KBmRlYXRocxgEIAEoBUIMCgpfcGxheWVyX2lkInEKHlBsYXllckxvY2FsU3dpdGNoQ2hhbmdlZFBhY2tldBIWCglwbGF5ZXJfaWQYASABKAVIAIgBARIRCglzd2l0Y2hfaWQYAiABKAUSFgoOc3dpdGNoX2VuYWJsZWQYAyABKAhCDAoKX3BsYXllcl9pZCJvChxQbGF5ZXJMb2NhbFN3aXRjaFJlc2V0UGFja2V0EhYKCXBsYXllcl9pZBgBIAEoBUgAiAEBEhEKCXN3aXRjaF9pZBgCIAEoBRIWCg5zd2l0Y2hfZW5hYmxlZBgDIAEoCEIMCgpfcGxheWVyX2lkIl4KGVBsYXllckRpcmVjdE1lc3NhZ2VQYWNrZXQSFgoOZnJvbV9wbGF5ZXJfaWQYASABKAUSGAoQdGFyZ2V0X3BsYXllcl9pZBgCIAEoBRIPCgdtZXNzYWdlGAMgASgJIvYBChBQbGF5ZXJXb3JsZFN0YXRlEhIKCmNvaW5zX2dvbGQYASABKAUSEgoKY29pbnNfYmx1ZRgCIAEoBRIOCgZkZWF0aHMYAyABKAUSMwoPY29sbGVjdGVkX2l0ZW1zGAQgAygLMhouV29ybGRQYWNrZXRzLlBvaW50SW50ZWdlchIWCg5oYXNfZ29sZF9jcm93bhgFIAEoCBIYChBoYXNfc2lsdmVyX2Nyb3duGAYgASgIEhAKCHN3aXRjaGVzGAcgASgMEg8KB2dvZG1vZGUYCCABKAgSDwoHbW9kbW9kZRgJIAEoCBIPCgd0ZWFtX2lkGAogASgFIusBChBQbGF5ZXJQcm9wZXJ0aWVzEhEKCXBsYXllcl9pZBgBIAEoBRISCgphY2NvdW50X2lkGAIgASgJEhAKCHVzZXJuYW1lGAMgASgJEgwKBGZhY2UYBCABKAUSDAoEcm9sZRgFIAEoCRIRCglpc19mcmllbmQYBiABKAgSKwoIcG9zaXRpb24YByABKAsyGS5Xb3JsZFBhY2tldHMuUG9pbnREb3VibGUSFgoOaXNfd29ybGRfb3duZXIYCCABKAgSKgoGcmlnaHRzGAkgASgLMhouV29ybGRQYWNrZXRzLlBsYXllclJpZ2h0cyKMAQoMUGxheWVyUmlnaHRzEhAKCGNhbl9lZGl0GAEgASgIEg8KB2Nhbl9nb2QYAiABKAgSGgoSY2FuX3RvZ2dsZV9taW5pbWFwGAMgASgIEiEKGWNhbl9jaGFuZ2Vfd29ybGRfc2V0dGluZ3MYBCABKAgSGgoSYXZhaWxhYmxlX2NvbW1hbmRzGAUgAygJIqgCCglXb3JsZE1ldGESDQoFdGl0bGUYASABKAkSDQoFcGxheXMYAiABKAUSDQoFb3duZXIYAyABKAkSEwoLZGVzY3JpcHRpb24YBCABKAkSEgoKdmlzaWJpbGl0eRgFIAEoCRI1Cgp3b3JsZF9UeXBlGAYgASgOMiEuV29ybGRQYWNrZXRzLldvcmxkTWV0YS5Xb3JsZFR5cGUSGwoTaGFzX3Vuc2F2ZWRfY2hhbmdlcxgHIAEoCBITCgttYXhfcGxheWVycxgIIAEoBRISCgpvd25lcl9yb2xlGAkgASgJEhcKD21pbmltYXBfZW5hYmxlZBgKIAEoCCIvCglXb3JsZFR5cGUSCQoFU2F2ZWQQABILCgdVbnNhdmVkEAESCgoGTGVnYWN5EAIiXgoOT2xkQ2hhdE1lc3NhZ2USEwoLcGxheWVyX25hbWUYASABKAkSEwoLcGxheWVyX3JvbGUYAiABKAkSEQoJaXNfZnJpZW5kGAMgASgIEg8KB21lc3NhZ2UYBCABKAkiJAoMUG9pbnRJbnRlZ2VyEgkKAXgYASABKAUSCQoBeRgCIAEoBSIjCgtQb2ludERvdWJsZRIJCgF4GAEgASgBEgkKAXkYAiABKAFCbgoQY29tLldvcmxkUGFja2V0c0IKV29ybGRQcm90b1ABogIDV1hYqgIMV29ybGRQYWNrZXRzygIMV29ybGRQYWNrZXRz4gIYV29ybGRQYWNrZXRzXEdQQk1ldGFkYXRh6gIMV29ybGRQYWNrZXRzYgZwcm90bzM\");\n/**\n * Describes the message WorldPackets.WorldPacket.\n * Use `create(WorldPacketSchema)` to create a new message.\n */\nconst WorldPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 0);\n/**\n * Describes the message WorldPackets.Ping.\n * Use `create(PingSchema)` to create a new message.\n */\nconst PingSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 1);\n/**\n * Describes the message WorldPackets.GlobalSwitchChangedPacket.\n * Use `create(GlobalSwitchChangedPacketSchema)` to create a new message.\n */\nconst GlobalSwitchChangedPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 2);\n/**\n * Describes the message WorldPackets.GlobalSwitchResetPacket.\n * Use `create(GlobalSwitchResetPacketSchema)` to create a new message.\n */\nconst GlobalSwitchResetPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 3);\n/**\n * Describes the message WorldPackets.SystemMessagePacket.\n * Use `create(SystemMessagePacketSchema)` to create a new message.\n */\nconst SystemMessagePacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 4);\n/**\n * Describes the message WorldPackets.OldChatMessagesPacket.\n * Use `create(OldChatMessagesPacketSchema)` to create a new message.\n */\nconst OldChatMessagesPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 5);\n/**\n * Describes the message WorldPackets.PerformWorldActionPacket.\n * Use `create(PerformWorldActionPacketSchema)` to create a new message.\n */\nconst PerformWorldActionPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 6);\n/**\n * @generated from enum WorldPackets.PerformWorldActionPacket.Action\n */\nvar PerformWorldActionPacket_Action;\n(function (PerformWorldActionPacket_Action) {\n /**\n * @generated from enum value: SAVE_WORLD = 0;\n */\n PerformWorldActionPacket_Action[PerformWorldActionPacket_Action[\"SAVE_WORLD\"] = 0] = \"SAVE_WORLD\";\n /**\n * @generated from enum value: RELOAD_WORLD = 1;\n */\n PerformWorldActionPacket_Action[PerformWorldActionPacket_Action[\"RELOAD_WORLD\"] = 1] = \"RELOAD_WORLD\";\n /**\n * @generated from enum value: CLEAR_WORLD = 3;\n */\n PerformWorldActionPacket_Action[PerformWorldActionPacket_Action[\"CLEAR_WORLD\"] = 3] = \"CLEAR_WORLD\";\n})(PerformWorldActionPacket_Action || (PerformWorldActionPacket_Action = {}));\n/**\n * Describes the enum WorldPackets.PerformWorldActionPacket.Action.\n */\nconst PerformWorldActionPacket_ActionSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_world, 6, 0);\n/**\n * Describes the message WorldPackets.WorldReloadedPacket.\n * Use `create(WorldReloadedPacketSchema)` to create a new message.\n */\nconst WorldReloadedPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 7);\n/**\n * Describes the message WorldPackets.WorldClearedPacket.\n * Use `create(WorldClearedPacketSchema)` to create a new message.\n */\nconst WorldClearedPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 8);\n/**\n * Describes the message WorldPackets.WorldBlockPlacedPacket.\n * Use `create(WorldBlockPlacedPacketSchema)` to create a new message.\n */\nconst WorldBlockPlacedPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 9);\n/**\n * Describes the message WorldPackets.WorldBlockFilledPacket.\n * Use `create(WorldBlockFilledPacketSchema)` to create a new message.\n */\nconst WorldBlockFilledPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 10);\n/**\n * Describes the message WorldPackets.WorldMetaUpdatePacket.\n * Use `create(WorldMetaUpdatePacketSchema)` to create a new message.\n */\nconst WorldMetaUpdatePacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 11);\n/**\n * Describes the message WorldPackets.PlayerInitPacket.\n * Use `create(PlayerInitPacketSchema)` to create a new message.\n */\nconst PlayerInitPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 12);\n/**\n * Describes the message WorldPackets.PlayerInitReceivedPacket.\n * Use `create(PlayerInitReceivedPacketSchema)` to create a new message.\n */\nconst PlayerInitReceivedPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 13);\n/**\n * Describes the message WorldPackets.PlayerJoinedPacket.\n * Use `create(PlayerJoinedPacketSchema)` to create a new message.\n */\nconst PlayerJoinedPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 14);\n/**\n * Describes the message WorldPackets.PlayerLeftPacket.\n * Use `create(PlayerLeftPacketSchema)` to create a new message.\n */\nconst PlayerLeftPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 15);\n/**\n * Describes the message WorldPackets.PlayerChatPacket.\n * Use `create(PlayerChatPacketSchema)` to create a new message.\n */\nconst PlayerChatPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 16);\n/**\n * Describes the message WorldPackets.PlayerUpdateRightsPacket.\n * Use `create(PlayerUpdateRightsPacketSchema)` to create a new message.\n */\nconst PlayerUpdateRightsPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 17);\n/**\n * Describes the message WorldPackets.PlayerMovedPacket.\n * Use `create(PlayerMovedPacketSchema)` to create a new message.\n */\nconst PlayerMovedPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 18);\n/**\n * Describes the message WorldPackets.PlayerTeleportedPacket.\n * Use `create(PlayerTeleportedPacketSchema)` to create a new message.\n */\nconst PlayerTeleportedPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 19);\n/**\n * Describes the message WorldPackets.PlayerFacePacket.\n * Use `create(PlayerFacePacketSchema)` to create a new message.\n */\nconst PlayerFacePacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 20);\n/**\n * Describes the message WorldPackets.PlayerSpectatePacket.\n * Use `create(PlayerSpectatePacketSchema)` to create a new message.\n */\nconst PlayerSpectatePacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 21);\n/**\n * Describes the message WorldPackets.PlayerGodModePacket.\n * Use `create(PlayerGodModePacketSchema)` to create a new message.\n */\nconst PlayerGodModePacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 22);\n/**\n * Describes the message WorldPackets.PlayerModModePacket.\n * Use `create(PlayerModModePacketSchema)` to create a new message.\n */\nconst PlayerModModePacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 23);\n/**\n * Describes the message WorldPackets.PlayerRespawnPacket.\n * Use `create(PlayerRespawnPacketSchema)` to create a new message.\n */\nconst PlayerRespawnPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 24);\n/**\n * Describes the message WorldPackets.PlayerResetPacket.\n * Use `create(PlayerResetPacketSchema)` to create a new message.\n */\nconst PlayerResetPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 25);\n/**\n * Describes the message WorldPackets.PlayerTouchBlockPacket.\n * Use `create(PlayerTouchBlockPacketSchema)` to create a new message.\n */\nconst PlayerTouchBlockPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 26);\n/**\n * Describes the message WorldPackets.PlayerTouchPlayerPacket.\n * Use `create(PlayerTouchPlayerPacketSchema)` to create a new message.\n */\nconst PlayerTouchPlayerPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 27);\n/**\n * @generated from enum WorldPackets.PlayerTouchPlayerPacket.TouchType\n */\nvar PlayerTouchPlayerPacket_TouchType;\n(function (PlayerTouchPlayerPacket_TouchType) {\n /**\n * @generated from enum value: START = 0;\n */\n PlayerTouchPlayerPacket_TouchType[PlayerTouchPlayerPacket_TouchType[\"START\"] = 0] = \"START\";\n /**\n * @generated from enum value: END = 1;\n */\n PlayerTouchPlayerPacket_TouchType[PlayerTouchPlayerPacket_TouchType[\"END\"] = 1] = \"END\";\n})(PlayerTouchPlayerPacket_TouchType || (PlayerTouchPlayerPacket_TouchType = {}));\n/**\n * Describes the enum WorldPackets.PlayerTouchPlayerPacket.TouchType.\n */\nconst PlayerTouchPlayerPacket_TouchTypeSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_world, 27, 0);\n/**\n * Describes the message WorldPackets.PlayerAddEffectPacket.\n * Use `create(PlayerAddEffectPacketSchema)` to create a new message.\n */\nconst PlayerAddEffectPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 28);\n/**\n * Describes the message WorldPackets.PlayerRemoveEffectPacket.\n * Use `create(PlayerRemoveEffectPacketSchema)` to create a new message.\n */\nconst PlayerRemoveEffectPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 29);\n/**\n * Describes the message WorldPackets.PlayerResetEffectsPacket.\n * Use `create(PlayerResetEffectsPacketSchema)` to create a new message.\n */\nconst PlayerResetEffectsPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 30);\n/**\n * Describes the message WorldPackets.PlayerTeamUpdatePacket.\n * Use `create(PlayerTeamUpdatePacketSchema)` to create a new message.\n */\nconst PlayerTeamUpdatePacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 31);\n/**\n * Describes the message WorldPackets.PlayerCountersUpdatePacket.\n * Use `create(PlayerCountersUpdatePacketSchema)` to create a new message.\n */\nconst PlayerCountersUpdatePacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 32);\n/**\n * Describes the message WorldPackets.PlayerLocalSwitchChangedPacket.\n * Use `create(PlayerLocalSwitchChangedPacketSchema)` to create a new message.\n */\nconst PlayerLocalSwitchChangedPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 33);\n/**\n * Describes the message WorldPackets.PlayerLocalSwitchResetPacket.\n * Use `create(PlayerLocalSwitchResetPacketSchema)` to create a new message.\n */\nconst PlayerLocalSwitchResetPacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 34);\n/**\n * Describes the message WorldPackets.PlayerDirectMessagePacket.\n * Use `create(PlayerDirectMessagePacketSchema)` to create a new message.\n */\nconst PlayerDirectMessagePacketSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 35);\n/**\n * Describes the message WorldPackets.PlayerWorldState.\n * Use `create(PlayerWorldStateSchema)` to create a new message.\n */\nconst PlayerWorldStateSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 36);\n/**\n * Describes the message WorldPackets.PlayerProperties.\n * Use `create(PlayerPropertiesSchema)` to create a new message.\n */\nconst PlayerPropertiesSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 37);\n/**\n * Describes the message WorldPackets.PlayerRights.\n * Use `create(PlayerRightsSchema)` to create a new message.\n */\nconst PlayerRightsSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 38);\n/**\n * Describes the message WorldPackets.WorldMeta.\n * Use `create(WorldMetaSchema)` to create a new message.\n */\nconst WorldMetaSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 39);\n/**\n * @generated from enum WorldPackets.WorldMeta.WorldType\n */\nvar WorldMeta_WorldType;\n(function (WorldMeta_WorldType) {\n /**\n * @generated from enum value: Saved = 0;\n */\n WorldMeta_WorldType[WorldMeta_WorldType[\"Saved\"] = 0] = \"Saved\";\n /**\n * @generated from enum value: Unsaved = 1;\n */\n WorldMeta_WorldType[WorldMeta_WorldType[\"Unsaved\"] = 1] = \"Unsaved\";\n /**\n * @generated from enum value: Legacy = 2;\n */\n WorldMeta_WorldType[WorldMeta_WorldType[\"Legacy\"] = 2] = \"Legacy\";\n})(WorldMeta_WorldType || (WorldMeta_WorldType = {}));\n/**\n * Describes the enum WorldPackets.WorldMeta.WorldType.\n */\nconst WorldMeta_WorldTypeSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_world, 39, 0);\n/**\n * Describes the message WorldPackets.OldChatMessage.\n * Use `create(OldChatMessageSchema)` to create a new message.\n */\nconst OldChatMessageSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 40);\n/**\n * Describes the message WorldPackets.PointInteger.\n * Use `create(PointIntegerSchema)` to create a new message.\n */\nconst PointIntegerSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 41);\n/**\n * Describes the message WorldPackets.PointDouble.\n * Use `create(PointDoubleSchema)` to create a new message.\n */\nconst PointDoubleSchema = /*@__PURE__*/ (0,_bufbuild_protobuf_codegenv1__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_world, 42);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid29ybGRfcGIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9saWIvZ2VuL3dvcmxkX3BiLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGdFQUFnRTtBQUNoRSx5RUFBeUU7QUFDekUsb0JBQW9CO0FBR3BCLE9BQU8sRUFBRSxRQUFRLEVBQUUsUUFBUSxFQUFFLFdBQVcsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBRy9FOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFZLGFBQWEsQ0FDOUMsUUFBUSxDQUFDLHl2VEFBeXZULENBQUMsQ0FBQztBQXdPdHdUOzs7R0FHRztBQUNILE1BQU0sQ0FBQyxNQUFNLGlCQUFpQixHQUE0QixhQUFhLENBQ3JFLFdBQVcsQ0FBQyxVQUFVLEVBQUUsQ0FBQyxDQUFDLENBQUM7QUFVN0I7OztHQUdHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFxQixhQUFhLENBQ3ZELFdBQVcsQ0FBQyxVQUFVLEVBQUUsQ0FBQyxDQUFDLENBQUM7QUF5QjdCOzs7R0FHRztBQUNILE1BQU0sQ0FBQyxNQUFNLCtCQUErQixHQUEwQyxhQUFhLENBQ2pHLFdBQVcsQ0FBQyxVQUFVLEVBQUUsQ0FBQyxDQUFDLENBQUM7QUFpQjdCOzs7R0FHRztBQUNILE1BQU0sQ0FBQyxNQUFNLDZCQUE2QixHQUF3QyxhQUFhLENBQzdGLFdBQVcsQ0FBQyxVQUFVLEVBQUUsQ0FBQyxDQUFDLENBQUM7QUFzQjdCOzs7R0FHRztBQUNILE1BQU0sQ0FBQyxNQUFNLHlCQUF5QixHQUFvQyxhQUFhLENBQ3JGLFdBQVcsQ0FBQyxVQUFVLEVBQUUsQ0FBQyxDQUFDLENBQUM7QUFZN0I7OztHQUdHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sMkJBQTJCLEdBQXNDLGFBQWEsQ0FDekYsV0FBVyxDQUFDLFVBQVUsRUFBRSxDQUFDLENBQUMsQ0FBQztBQVk3Qjs7O0dBR0c7QUFDSCxNQUFNLENBQUMsTUFBTSw4QkFBOEIsR0FBeUMsYUFB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\n\n//# sourceURL=webpack://PW/./esm/gen/world_pb.js?");
70
50
 
71
51
  /***/ }),
72
52
 
73
- /***/ "./dist/util/Constants.js":
74
- /*!********************************!*\
75
- !*** ./dist/util/Constants.js ***!
76
- \********************************/
77
- /***/ ((__unused_webpack_module, exports) => {
53
+ /***/ "./esm/index.js":
54
+ /*!**********************!*\
55
+ !*** ./esm/index.js ***!
56
+ \**********************/
57
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
78
58
 
79
- eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.Endpoint = void 0;\nexports.Endpoint = {\n Api: \"https://api.pixelwalker.net\",\n GameHTTP: \"https://game.pixelwalker.net\",\n GameWS: \"wss://game.pixelwalker.net\",\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQ29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vbGliL3V0aWwvQ29uc3RhbnRzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFhLFFBQUEsUUFBUSxHQUFHO0lBQ3BCLEdBQUcsRUFBRSw2QkFBNkI7SUFDbEMsUUFBUSxFQUFFLDhCQUE4QjtJQUN4QyxNQUFNLEVBQUUsNEJBQTRCO0NBQ3ZDLENBQUEifQ==\n\n//# sourceURL=webpack://PW/./dist/util/Constants.js?");
59
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ BlockNames: () => (/* reexport safe */ _util_block_js__WEBPACK_IMPORTED_MODULE_4__.BlockNames),\n/* harmony export */ Constants: () => (/* reexport module object */ _util_Constants_js__WEBPACK_IMPORTED_MODULE_2__),\n/* harmony export */ Errors: () => (/* reexport module object */ _util_Errors_js__WEBPACK_IMPORTED_MODULE_3__),\n/* harmony export */ PWApiClient: () => (/* reexport safe */ _api_PWApiClient_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"]),\n/* harmony export */ PWGameClient: () => (/* reexport safe */ _game_PWGameClient_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"]),\n/* harmony export */ ProtoGen: () => (/* reexport module object */ _gen_world_pb_js__WEBPACK_IMPORTED_MODULE_5__)\n/* harmony export */ });\n/* harmony import */ var _api_PWApiClient_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./api/PWApiClient.js */ \"./esm/api/PWApiClient.js\");\n/* harmony import */ var _game_PWGameClient_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./game/PWGameClient.js */ \"./esm/game/PWGameClient.js\");\n/* harmony import */ var _util_Constants_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util/Constants.js */ \"./esm/util/Constants.js\");\n/* harmony import */ var _util_Errors_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./util/Errors.js */ \"./esm/util/Errors.js\");\n/* harmony import */ var _util_block_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./util/block.js */ \"./esm/util/block.js\");\n/* harmony import */ var _gen_world_pb_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./gen/world_pb.js */ \"./esm/gen/world_pb.js\");\n\n\n\n\n\n\n\n\n\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9saWIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFFLE9BQU8sSUFBSSxXQUFXLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUM5RCxPQUFPLEVBQUUsT0FBTyxJQUFJLFlBQVksRUFBRSxNQUFNLHdCQUF3QixDQUFDOzZCQUN0QyxxQkFBcUI7d0JBQXBDLFNBQVM7MEJBQ0csa0JBQWtCO3FCQUE5QixNQUFNO0FBQ2xCLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQzs0QkFDbkIsbUJBQW1CO3VCQUFqQyxRQUFRIn0=\n\n//# sourceURL=webpack://PW/./esm/index.js?");
80
60
 
81
61
  /***/ }),
82
62
 
83
- /***/ "./dist/util/Errors.js":
84
- /*!*****************************!*\
85
- !*** ./dist/util/Errors.js ***!
86
- \*****************************/
87
- /***/ ((__unused_webpack_module, exports) => {
63
+ /***/ "./esm/util/Bucket.js":
64
+ /*!****************************!*\
65
+ !*** ./esm/util/Bucket.js ***!
66
+ \****************************/
67
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
88
68
 
89
- eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.AuthError = void 0;\nclass AuthError extends Error {\n constructor(message, code) {\n super(message);\n this.code = code;\n }\n}\nexports.AuthError = AuthError;\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRXJyb3JzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vbGliL3V0aWwvRXJyb3JzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLE1BQWEsU0FBVSxTQUFRLEtBQUs7SUFDaEMsWUFBWSxPQUFlLEVBQVMsSUFBWTtRQUM1QyxLQUFLLENBQUMsT0FBTyxDQUFDLENBQUM7UUFEaUIsU0FBSSxHQUFKLElBQUksQ0FBUTtJQUVoRCxDQUFDO0NBQ0o7QUFKRCw4QkFJQyJ9\n\n//# sourceURL=webpack://PW/./dist/util/Errors.js?");
69
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ Bucket)\n/* harmony export */ });\n/** @module Bucket */\n/**\n * lovingly borrowed from oceanic.js :3\n * https://github.com/OceanicJS/Oceanic/blob/9ca907f46d45da4afa8c9be9e81e3093925c73c5/lib/rest/Bucket.ts\n */\n/** A bucket. */\nclass Bucket {\n constructor(tokenLimit, interval, options) {\n var _a, _b;\n this._queue = [];\n this.tokenLimit = tokenLimit;\n this.interval = interval;\n this.latencyRef = (_a = options === null || options === void 0 ? void 0 : options.latencyRef) !== null && _a !== void 0 ? _a : { latency: 0 };\n this.lastReset = this.tokens = this.lastSend = 0;\n this.reservedTokens = (_b = options === null || options === void 0 ? void 0 : options.reservedTokens) !== null && _b !== void 0 ? _b : 0;\n this.timeout = null;\n }\n check() {\n if (this.timeout || this._queue.length === 0) {\n return;\n }\n if (this.lastReset + this.interval + this.tokenLimit * this.latencyRef.latency < Date.now()) {\n this.lastReset = Date.now();\n this.tokens = Math.max(0, this.tokens - this.tokenLimit);\n }\n let val;\n let tokensAvailable = this.tokens < this.tokenLimit;\n let unreservedTokensAvailable = this.tokens < (this.tokenLimit - this.reservedTokens);\n while (this._queue.length !== 0 && (unreservedTokensAvailable || (tokensAvailable && this._queue[0].priority))) {\n this.tokens++;\n tokensAvailable = this.tokens < this.tokenLimit;\n unreservedTokensAvailable = this.tokens < (this.tokenLimit - this.reservedTokens);\n const item = this._queue.shift();\n val = this.latencyRef.latency - Date.now() + this.lastSend;\n if (this.latencyRef.latency === 0 || val <= 0) {\n item.func();\n this.lastSend = Date.now();\n }\n else {\n setTimeout(() => {\n item.func();\n }, val);\n this.lastSend = Date.now() + val;\n }\n }\n if (this._queue.length !== 0 && !this.timeout) {\n this.timeout = setTimeout(() => {\n this.timeout = null;\n this.check();\n }, this.tokens < this.tokenLimit ? this.latencyRef.latency : Math.max(0, this.lastReset + this.interval + this.tokenLimit * this.latencyRef.latency - Date.now()));\n }\n }\n /**\n * Add an item to the queue.\n * @param func The function to queue.\n * @param priority If true, the item will be added to the front of the queue.\n */\n queue(func, priority = false) {\n if (priority) {\n this._queue.unshift({ func, priority });\n }\n else {\n this._queue.push({ func, priority });\n }\n this.check();\n }\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQnVja2V0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vbGliL3V0aWwvQnVja2V0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLHFCQUFxQjtBQUNyQjs7O0dBR0c7QUFFSCxnQkFBZ0I7QUFDaEIsTUFBTSxDQUFDLE9BQU8sT0FBTyxNQUFNO0lBVXZCLFlBQVksVUFBa0IsRUFBRSxRQUFnQixFQUFFLE9BQXlFOztRQVRuSCxXQUFNLEdBQStDLEVBQUUsQ0FBQztRQVU1RCxJQUFJLENBQUMsVUFBVSxHQUFHLFVBQVUsQ0FBQztRQUM3QixJQUFJLENBQUMsUUFBUSxHQUFHLFFBQVEsQ0FBQztRQUN6QixJQUFJLENBQUMsVUFBVSxHQUFHLE1BQUEsT0FBTyxhQUFQLE9BQU8sdUJBQVAsT0FBTyxDQUFFLFVBQVUsbUNBQUksRUFBRSxPQUFPLEVBQUUsQ0FBQyxFQUFFLENBQUM7UUFDeEQsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxRQUFRLEdBQUcsQ0FBQyxDQUFDO1FBQ2pELElBQUksQ0FBQyxjQUFjLEdBQUcsTUFBQSxPQUFPLGFBQVAsT0FBTyx1QkFBUCxPQUFPLENBQUUsY0FBYyxtQ0FBSSxDQUFDLENBQUM7UUFDbkQsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUM7SUFDeEIsQ0FBQztJQUVPLEtBQUs7UUFDVCxJQUFJLElBQUksQ0FBQyxPQUFPLElBQUksSUFBSSxDQUFDLE1BQU0sQ0FBQyxNQUFNLEtBQUssQ0FBQyxFQUFFLENBQUM7WUFDM0MsT0FBTztRQUNYLENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUMsVUFBVSxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQyxHQUFHLEVBQUUsRUFBRSxDQUFDO1lBQzFGLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLEdB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\n\n//# sourceURL=webpack://PW/./esm/util/Bucket.js?");
90
70
 
91
71
  /***/ }),
92
72
 
93
- /***/ "./dist/util/Misc.js":
94
- /*!***************************!*\
95
- !*** ./dist/util/Misc.js ***!
96
- \***************************/
97
- /***/ ((__unused_webpack_module, exports) => {
73
+ /***/ "./esm/util/Constants.js":
74
+ /*!*******************************!*\
75
+ !*** ./esm/util/Constants.js ***!
76
+ \*******************************/
77
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
98
78
 
99
- eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.queryToString = queryToString;\nfunction queryToString(query) {\n if (typeof query === \"undefined\")\n return \"\";\n let str = \"\";\n if (query.filter) {\n if (typeof query.filter !== \"string\") {\n str += \"&filter=\";\n const filters = Object.entries(query.filter);\n for (let i = 0, len = filters.length; i < len; i++) {\n const filt = filters[i];\n if (typeof filt[1] === \"string\")\n str += `${filt[0]}=\"${filt[1]}\"`;\n // boolean gets toString() to true or false so eh\n else\n str += `${filt[0]}=${filt[1]}`;\n }\n }\n else\n str += \"&filter=\" + query.filter;\n }\n if (query.sort) {\n if (typeof query.filter !== \"string\") {\n str += \"&sort=\";\n // if (Array.isArray(query.sort)) {\n // } else {\n const sorts = Array.isArray(query.sort) ? query.sort : Object.entries(query.sort);\n for (let i = 0, len = sorts.length; i < len; i++) {\n const sort = sorts[i];\n if (typeof sort === \"string\")\n str += sort + \",\";\n else if (sort[1] === undefined)\n str += sort[0] + \",\";\n else if (sort[1] === \"ASC\")\n str += sort[0] + \",\";\n else if (sort[1] === \"DESC\")\n str += \"-\" + sort[0] + \",\";\n }\n if (sorts.length)\n str = str.slice(0, -1);\n // }\n }\n else\n str += \"&sort=\" + query.sort;\n }\n return str;\n}\n// console.log(queryToString<ColWorld>({ filter: { id: \"a\" } }));\n// console.log(queryToString<ColWorld>({ filter: { id: \"a\", created: \"nice\" } }));\n// console.log(queryToString<ColWorld>({ filter: \"a~b,ok=lol\" }));\n// console.log(queryToString<ColWorld>({ sort: [\"collectionId\", [\"id\", \"ASC\"], \"collectionName\", [\"created\", \"DESC\"], [\"description\"]] }));\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTWlzYy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL2xpYi91dGlsL01pc2MudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFFQSxzQ0E2Q0M7QUE3Q0QsU0FBZ0IsYUFBYSxDQUFvQixLQUE4QjtJQUMzRSxJQUFJLE9BQU8sS0FBSyxLQUFLLFdBQVc7UUFBRSxPQUFPLEVBQUUsQ0FBQztJQUU1QyxJQUFJLEdBQUcsR0FBRyxFQUFFLENBQUM7SUFFYixJQUFJLEtBQUssQ0FBQyxNQUFNLEVBQUUsQ0FBQztRQUNmLElBQUksT0FBTyxLQUFLLENBQUMsTUFBTSxLQUFLLFFBQVEsRUFBRSxDQUFDO1lBQ25DLEdBQUcsSUFBSSxVQUFVLENBQUM7WUFFbEIsTUFBTSxPQUFPLEdBQUcsTUFBTSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUM7WUFFN0MsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsR0FBRyxHQUFHLE9BQU8sQ0FBQyxNQUFNLEVBQUUsQ0FBQyxHQUFHLEdBQUcsRUFBRSxDQUFDLEVBQUUsRUFBRSxDQUFDO2dCQUNqRCxNQUFNLElBQUksR0FBRyxPQUFPLENBQUMsQ0FBQyxDQUFDLENBQUM7Z0JBRXhCLElBQUksT0FBTyxJQUFJLENBQUMsQ0FBQyxDQUFDLEtBQUssUUFBUTtvQkFBRSxHQUFHLElBQUksR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDLEtBQUssSUFBSSxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUM7Z0JBQ2xFLGlEQUFpRDs7b0JBQzVDLEdBQUcsSUFBSSxHQUFHLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQztZQUN4QyxDQUFDO1FBQ0wsQ0FBQzs7WUFBTSxHQUFHLElBQUksVUFBVSxHQUFHLEtBQUssQ0FBQyxNQUFNLENBQUM7SUFDNUMsQ0FBQztJQUVELElBQUksS0FBSyxDQUFDLElBQUksRUFBRSxDQUFDO1FBQ2IsSUFBSSxPQUFPLEtBQUssQ0FBQyxNQUFNLEtBQUssUUFBUSxFQUFFLENBQUM7WUFDbkMsR0FBRyxJQUFJLFFBQVEsQ0FBQztZQUVoQixtQ0FBbUM7WUFFbkMsV0FBVztZQUNQLE1BQU0sS0FBSyxHQUFHLEtBQUssQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQTZCLENBQUM7WUFFOUcsS0FBSyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsR0FBRyxHQUFHLEtBQUssQ0FBQyxNQUFNLEVBQUUsQ0FBQyxHQUFHLEdBQUcsRUFBRSxDQUFDLEVBQUUsRUFBRSxDQUFDO2dCQUMvQyxNQUFNLElBQUksR0FBRyxLQUFLLENBQUMsQ0FBQyxDQUErQyxDQUFDO2dCQUVwRSxJQUFJLE9BQU8sSUFBSSxLQUFLLFFBQVE7b0JBQUUsR0FBRyxJQUFJLElBQUksR0FBRyxHQUFHLENBQUM7cUJBQzNDLElBQUksSUFBSSxDQUFDLENBQUMsQ0FBQyxLQUFLLFNBQVM7b0JBQUUsR0FBRyxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUMsR0FBRyxHQUFHLENBQUM7cUJBQ2hELElBQUksSUFBSSxDQUFDLENBQUMsQ0FBQyxLQUFLLEtBQUs7b0JBQUUsR0FBRyxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUMsR0FBRyxHQUFHLENBQUM7cUJBQzVDLElBQUksSUFBSSxDQUFDLENBQUMsQ0FBQyxLQUFLLE1BQU07b0JBQUUsR0FBRyxJQUFJLEdBQUcsR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDLEdBQUcsR0FBRyxDQUFDO1lBQzVELENBQUM7WUFFRCxJQUFJLEtBQUssQ0FBQyxNQUFNO2dCQUFFLEdBQUcsR0FBRyxHQUFHLENBQUMsS0FBSyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQzdDLElBQUk7UUFDUixDQUFDOztZQUFNLEdBQUcsSUFBSSxRQUFRLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQztJQUN4QyxDQUFDO0lBRUQsT0FBTyxHQUFHLENBQUM7QUFDZixDQUFDO0FBRUQsaUVBQWlFO0FBQ2pFLGtGQUFrRjtBQUNsRixrRUFBa0U7QUFFbEUsMklBQTJJIn0=\n\n//# sourceURL=webpack://PW/./dist/util/Misc.js?");
79
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Endpoint: () => (/* binding */ Endpoint)\n/* harmony export */ });\nconst Endpoint = {\n Api: \"https://api.pixelwalker.net\",\n GameHTTP: \"https://game.pixelwalker.net\",\n GameWS: \"wss://game.pixelwalker.net\",\n};\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQ29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vbGliL3V0aWwvQ29uc3RhbnRzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBQyxNQUFNLFFBQVEsR0FBRztJQUNwQixHQUFHLEVBQUUsNkJBQTZCO0lBQ2xDLFFBQVEsRUFBRSw4QkFBOEI7SUFDeEMsTUFBTSxFQUFFLDRCQUE0QjtDQUN2QyxDQUFBIn0=\n\n//# sourceURL=webpack://PW/./esm/util/Constants.js?");
100
80
 
101
81
  /***/ }),
102
82
 
103
- /***/ "./dist/util/block.js":
83
+ /***/ "./esm/util/Errors.js":
104
84
  /*!****************************!*\
105
- !*** ./dist/util/block.js ***!
85
+ !*** ./esm/util/Errors.js ***!
106
86
  \****************************/
107
- /***/ ((__unused_webpack_module, exports) => {
108
-
109
- eval("\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.BlockNames = void 0;\nvar BlockNames;\n(function (BlockNames) {\n BlockNames[BlockNames[\"EMPTY\"] = 0] = \"EMPTY\";\n BlockNames[BlockNames[\"GRAVITY_LEFT\"] = 1] = \"GRAVITY_LEFT\";\n BlockNames[BlockNames[\"GRAVITY_UP\"] = 2] = \"GRAVITY_UP\";\n BlockNames[BlockNames[\"GRAVITY_RIGHT\"] = 3] = \"GRAVITY_RIGHT\";\n BlockNames[BlockNames[\"GRAVITY_DOWN\"] = 4] = \"GRAVITY_DOWN\";\n BlockNames[BlockNames[\"GRAVITY_DOT\"] = 5] = \"GRAVITY_DOT\";\n BlockNames[BlockNames[\"GRAVITY_SLOW_DOT\"] = 6] = \"GRAVITY_SLOW_DOT\";\n BlockNames[BlockNames[\"INVISIBLE_GRAVITY_LEFT\"] = 7] = \"INVISIBLE_GRAVITY_LEFT\";\n BlockNames[BlockNames[\"INVISIBLE_GRAVITY_UP\"] = 8] = \"INVISIBLE_GRAVITY_UP\";\n BlockNames[BlockNames[\"INVISIBLE_GRAVITY_RIGHT\"] = 9] = \"INVISIBLE_GRAVITY_RIGHT\";\n BlockNames[BlockNames[\"INVISIBLE_GRAVITY_DOWN\"] = 10] = \"INVISIBLE_GRAVITY_DOWN\";\n BlockNames[BlockNames[\"INVISIBLE_GRAVITY_DOT\"] = 11] = \"INVISIBLE_GRAVITY_DOT\";\n BlockNames[BlockNames[\"INVISIBLE_GRAVITY_SLOW_DOT\"] = 12] = \"INVISIBLE_GRAVITY_SLOW_DOT\";\n BlockNames[BlockNames[\"BOOST_LEFT\"] = 13] = \"BOOST_LEFT\";\n BlockNames[BlockNames[\"BOOST_UP\"] = 14] = \"BOOST_UP\";\n BlockNames[BlockNames[\"BOOST_RIGHT\"] = 15] = \"BOOST_RIGHT\";\n BlockNames[BlockNames[\"BOOST_DOWN\"] = 16] = \"BOOST_DOWN\";\n BlockNames[BlockNames[\"CLIMBABLE_VINE_VERTICAL\"] = 17] = \"CLIMBABLE_VINE_VERTICAL\";\n BlockNames[BlockNames[\"CLIMBABLE_VINE_HORIZONTAL\"] = 18] = \"CLIMBABLE_VINE_HORIZONTAL\";\n BlockNames[BlockNames[\"CLIMBABLE_CHAIN_LIGHT_VERTICAL\"] = 19] = \"CLIMBABLE_CHAIN_LIGHT_VERTICAL\";\n BlockNames[BlockNames[\"CLIMBABLE_CHAIN_LIGHT_HORIZONTAL\"] = 20] = \"CLIMBABLE_CHAIN_LIGHT_HORIZONTAL\";\n BlockNames[BlockNames[\"CLIMBABLE_CHAIN_DARK_VERTICAL\"] = 21] = \"CLIMBABLE_CHAIN_DARK_VERTICAL\";\n BlockNames[BlockNames[\"CLIMBABLE_CHAIN_DARK_HORIZONTAL\"] = 22] = \"CLIMBABLE_CHAIN_DARK_HORIZONTAL\";\n BlockNames[BlockNames[\"CLIMBABLE_LADDER_METAL\"] = 23] = \"CLIMBABLE_LADDER_METAL\";\n BlockNames[BlockNames[\"CLIMBABLE_LADDER_WOOD\"] = 24] = \"CLIMBABLE_LADDER_WOOD\";\n BlockNames[BlockNames[\"CLIMBABLE_ROPE_VERTICAL\"] = 25] = \"CLIMBABLE_ROPE_VERTICAL\";\n BlockNames[BlockNames[\"CLIMBABLE_ROPE_HORIZONTAL\"] = 26] = \"CLIMBABLE_ROPE_HORIZONTAL\";\n BlockNames[BlockNames[\"CLIMBABLE_LADDER_STALK_SMALL\"] = 27] = \"CLIMBABLE_LADDER_STALK_SMALL\";\n BlockNames[BlockNames[\"CLIMBABLE_LADDER_STALK_LARGE\"] = 28] = \"CLIMBABLE_LADDER_STALK_LARGE\";\n BlockNames[BlockNames[\"CLIMBABLE_LATTICE_VINE\"] = 29] = \"CLIMBABLE_LATTICE_VINE\";\n BlockNames[BlockNames[\"SPECIAL_HOLOGRAM\"] = 30] = \"SPECIAL_HOLOGRAM\";\n BlockNames[BlockNames[\"SPECIAL_DIAMOND\"] = 31] = \"SPECIAL_DIAMOND\";\n BlockNames[BlockNames[\"SPECIAL_CAKE\"] = 32] = \"SPECIAL_CAKE\";\n BlockNames[BlockNames[\"CROWN_GOLD\"] = 33] = \"CROWN_GOLD\";\n BlockNames[BlockNames[\"CROWN_SILVER\"] = 34] = \"CROWN_SILVER\";\n BlockNames[BlockNames[\"CROWN_GOLD_DOOR\"] = 35] = \"CROWN_GOLD_DOOR\";\n BlockNames[BlockNames[\"CROWN_GOLD_GATE\"] = 36] = \"CROWN_GOLD_GATE\";\n BlockNames[BlockNames[\"CROWN_SILVER_DOOR\"] = 37] = \"CROWN_SILVER_DOOR\";\n BlockNames[BlockNames[\"CROWN_SILVER_GATE\"] = 38] = \"CROWN_SILVER_GATE\";\n BlockNames[BlockNames[\"KEY_RED\"] = 83] = \"KEY_RED\";\n BlockNames[BlockNames[\"KEY_GREEN\"] = 84] = \"KEY_GREEN\";\n BlockNames[BlockNames[\"KEY_BLUE\"] = 85] = \"KEY_BLUE\";\n BlockNames[BlockNames[\"KEY_CYAN\"] = 86] = \"KEY_CYAN\";\n BlockNames[BlockNames[\"KEY_MAGENTA\"] = 87] = \"KEY_MAGENTA\";\n BlockNames[BlockNames[\"KEY_YELLOW\"] = 88] = \"KEY_YELLOW\";\n BlockNames[BlockNames[\"KEY_RED_DOOR\"] = 89] = \"KEY_RED_DOOR\";\n BlockNames[BlockNames[\"KEY_GREEN_DOOR\"] = 90] = \"KEY_GREEN_DOOR\";\n BlockNames[BlockNames[\"KEY_BLUE_DOOR\"] = 91] = \"KEY_BLUE_DOOR\";\n BlockNames[BlockNames[\"KEY_CYAN_DOOR\"] = 92] = \"KEY_CYAN_DOOR\";\n BlockNames[BlockNames[\"KEY_MAGENTA_DOOR\"] = 93] = \"KEY_MAGENTA_DOOR\";\n BlockNames[BlockNames[\"KEY_YELLOW_DOOR\"] = 94] = \"KEY_YELLOW_DOOR\";\n BlockNames[BlockNames[\"KEY_RED_GATE\"] = 95] = \"KEY_RED_GATE\";\n BlockNames[BlockNames[\"KEY_GREEN_GATE\"] = 96] = \"KEY_GREEN_GATE\";\n BlockNames[BlockNames[\"KEY_BLUE_GATE\"] = 97] = \"KEY_BLUE_GATE\";\n BlockNames[BlockNames[\"KEY_CYAN_GATE\"] = 98] = \"KEY_CYAN_GATE\";\n BlockNames[BlockNames[\"KEY_MAGENTA_GATE\"] = 99] = \"KEY_MAGENTA_GATE\";\n BlockNames[BlockNames[\"KEY_YELLOW_GATE\"] = 100] = \"KEY_YELLOW_GATE\";\n BlockNames[BlockNames[\"COIN_GOLD\"] = 39] = \"COIN_GOLD\";\n BlockNames[BlockNames[\"COIN_BLUE\"] = 40] = \"COIN_BLUE\";\n BlockNames[BlockNames[\"COIN_GOLD_DOOR\"] = 41] = \"COIN_GOLD_DOOR\";\n BlockNames[BlockNames[\"COIN_GOLD_GATE\"] = 42] = \"COIN_GOLD_GATE\";\n BlockNames[BlockNames[\"COIN_BLUE_DOOR\"] = 43] = \"COIN_BLUE_DOOR\";\n BlockNames[BlockNames[\"COIN_BLUE_GATE\"] = 44] = \"COIN_BLUE_GATE\";\n BlockNames[BlockNames[\"EFFECTS_JUMP_HEIGHT\"] = 45] = \"EFFECTS_JUMP_HEIGHT\";\n BlockNames[BlockNames[\"EFFECTS_FLY\"] = 46] = \"EFFECTS_FLY\";\n BlockNames[BlockNames[\"EFFECTS_SPEED\"] = 47] = \"EFFECTS_SPEED\";\n BlockNames[BlockNames[\"EFFECTS_INVULNERABILITY\"] = 48] = \"EFFECTS_INVULNERABILITY\";\n BlockNames[BlockNames[\"EFFECTS_CURSE\"] = 49] = \"EFFECTS_CURSE\";\n BlockNames[BlockNames[\"EFFECTS_ZOMBIE\"] = 50] = \"EFFECTS_ZOMBIE\";\n BlockNames[BlockNames[\"EFFECTS_GRAVITYFORCE\"] = 51] = \"EFFECTS_GRAVITYFORCE\";\n BlockNames[BlockNames[\"EFFECTS_MULTI_JUMP\"] = 52] = \"EFFECTS_MULTI_JUMP\";\n BlockNames[BlockNames[\"EFFECTS_GRAVITY_LEFT\"] = 53] = \"EFFECTS_GRAVITY_LEFT\";\n BlockNames[BlockNames[\"EFFECTS_GRAVITY_UP\"] = 54] = \"EFFECTS_GRAVITY_UP\";\n BlockNames[BlockNames[\"EFFECTS_GRAVITY_RIGHT\"] = 55] = \"EFFECTS_GRAVITY_RIGHT\";\n BlockNames[BlockNames[\"EFFECTS_GRAVITY_DOWN\"] = 56] = \"EFFECTS_GRAVITY_DOWN\";\n BlockNames[BlockNames[\"EFFECTS_GRAVITY_OFF\"] = 57] = \"EFFECTS_GRAVITY_OFF\";\n BlockNames[BlockNames[\"EFFECTS_OFF\"] = 58] = \"EFFECTS_OFF\";\n BlockNames[BlockNames[\"EFFECTS_ZOMBIE_DOOR\"] = 59] = \"EFFECTS_ZOMBIE_DOOR\";\n BlockNames[BlockNames[\"EFFECTS_ZOMBIE_GATE\"] = 60] = \"EFFECTS_ZOMBIE_GATE\";\n BlockNames[BlockNames[\"TOOL_SPAWN_LOBBY\"] = 61] = \"TOOL_SPAWN_LOBBY\";\n BlockNames[BlockNames[\"TOOL_CHECKPOINT\"] = 62] = \"TOOL_CHECKPOINT\";\n BlockNames[BlockNames[\"TOOL_RESET\"] = 63] = \"TOOL_RESET\";\n BlockNames[BlockNames[\"TOOL_GOD_MODE_ACTIVATOR\"] = 64] = \"TOOL_GOD_MODE_ACTIVATOR\";\n BlockNames[BlockNames[\"TOOL_PORTAL_WORLD_SPAWN\"] = 65] = \"TOOL_PORTAL_WORLD_SPAWN\";\n BlockNames[BlockNames[\"TOOL_ACTIVATE_MINIMAP\"] = 66] = \"TOOL_ACTIVATE_MINIMAP\";\n BlockNames[BlockNames[\"SIGN_NORMAL\"] = 67] = \"SIGN_NORMAL\";\n BlockNames[BlockNames[\"SIGN_RED\"] = 68] = \"SIGN_RED\";\n BlockNames[BlockNames[\"SIGN_GREEN\"] = 69] = \"SIGN_GREEN\";\n BlockNames[BlockNames[\"SIGN_BLUE\"] = 70] = \"SIGN_BLUE\";\n BlockNames[BlockNames[\"SIGN_GOLD\"] = 71] = \"SIGN_GOLD\";\n BlockNames[BlockNames[\"PORTAL\"] = 72] = \"PORTAL\";\n BlockNames[BlockNames[\"PORTAL_INVISIBLE\"] = 73] = \"PORTAL_INVISIBLE\";\n BlockNames[BlockNames[\"PORTAL_WORLD\"] = 74] = \"PORTAL_WORLD\";\n BlockNames[BlockNames[\"LIQUID_WATER\"] = 75] = \"LIQUID_WATER\";\n BlockNames[BlockNames[\"LIQUID_WATER_SURFACE\"] = 76] = \"LIQUID_WATER_SURFACE\";\n BlockNames[BlockNames[\"LIQUID_WASTE\"] = 77] = \"LIQUID_WASTE\";\n BlockNames[BlockNames[\"LIQUID_WASTE_SURFACE\"] = 78] = \"LIQUID_WASTE_SURFACE\";\n BlockNames[BlockNames[\"LIQUID_LAVA\"] = 79] = \"LIQUID_LAVA\";\n BlockNames[BlockNames[\"LIQUID_LAVA_SURFACE\"] = 80] = \"LIQUID_LAVA_SURFACE\";\n BlockNames[BlockNames[\"LIQUID_MUD\"] = 81] = \"LIQUID_MUD\";\n BlockNames[BlockNames[\"LIQUID_MUD_SURFACE\"] = 82] = \"LIQUID_MUD_SURFACE\";\n BlockNames[BlockNames[\"SWITCH_LOCAL_TOGGLE\"] = 101] = \"SWITCH_LOCAL_TOGGLE\";\n BlockNames[BlockNames[\"SWITCH_LOCAL_ACTIVATOR\"] = 102] = \"SWITCH_LOCAL_ACTIVATOR\";\n BlockNames[BlockNames[\"SWITCH_LOCAL_RESETTER\"] = 103] = \"SWITCH_LOCAL_RESETTER\";\n BlockNames[BlockNames[\"SWITCH_LOCAL_DOOR\"] = 104] = \"SWITCH_LOCAL_DOOR\";\n BlockNames[BlockNames[\"SWITCH_LOCAL_GATE\"] = 105] = \"SWITCH_LOCAL_GATE\";\n BlockNames[BlockNames[\"SWITCH_GLOBAL_TOGGLE\"] = 106] = \"SWITCH_GLOBAL_TOGGLE\";\n BlockNames[BlockNames[\"SWITCH_GLOBAL_ACTIVATOR\"] = 107] = \"SWITCH_GLOBAL_ACTIVATOR\";\n BlockNames[BlockNames[\"SWITCH_GLOBAL_RESETTER\"] = 108] = \"SWITCH_GLOBAL_RESETTER\";\n BlockNames[BlockNames[\"SWITCH_GLOBAL_DOOR\"] = 109] = \"SWITCH_GLOBAL_DOOR\";\n BlockNames[BlockNames[\"SWITCH_GLOBAL_GATE\"] = 110] = \"SWITCH_GLOBAL_GATE\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BROWN_UP\"] = 111] = \"HAZARD_SPIKES_BROWN_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BROWN_RIGHT\"] = 112] = \"HAZARD_SPIKES_BROWN_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BROWN_DOWN\"] = 113] = \"HAZARD_SPIKES_BROWN_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BROWN_LEFT\"] = 114] = \"HAZARD_SPIKES_BROWN_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BROWN_CENTER\"] = 115] = \"HAZARD_SPIKES_BROWN_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_WHITE_UP\"] = 116] = \"HAZARD_SPIKES_WHITE_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_WHITE_RIGHT\"] = 117] = \"HAZARD_SPIKES_WHITE_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_WHITE_DOWN\"] = 118] = \"HAZARD_SPIKES_WHITE_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_WHITE_LEFT\"] = 119] = \"HAZARD_SPIKES_WHITE_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_WHITE_CENTER\"] = 120] = \"HAZARD_SPIKES_WHITE_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GRAY_UP\"] = 121] = \"HAZARD_SPIKES_GRAY_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GRAY_RIGHT\"] = 122] = \"HAZARD_SPIKES_GRAY_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GRAY_DOWN\"] = 123] = \"HAZARD_SPIKES_GRAY_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GRAY_LEFT\"] = 124] = \"HAZARD_SPIKES_GRAY_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GRAY_CENTER\"] = 125] = \"HAZARD_SPIKES_GRAY_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_RED_UP\"] = 126] = \"HAZARD_SPIKES_RED_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_RED_RIGHT\"] = 127] = \"HAZARD_SPIKES_RED_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_RED_DOWN\"] = 128] = \"HAZARD_SPIKES_RED_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_RED_LEFT\"] = 129] = \"HAZARD_SPIKES_RED_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_RED_CENTER\"] = 130] = \"HAZARD_SPIKES_RED_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_YELLOW_UP\"] = 131] = \"HAZARD_SPIKES_YELLOW_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_YELLOW_RIGHT\"] = 132] = \"HAZARD_SPIKES_YELLOW_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_YELLOW_DOWN\"] = 133] = \"HAZARD_SPIKES_YELLOW_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_YELLOW_LEFT\"] = 134] = \"HAZARD_SPIKES_YELLOW_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_YELLOW_CENTER\"] = 135] = \"HAZARD_SPIKES_YELLOW_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GREEN_UP\"] = 136] = \"HAZARD_SPIKES_GREEN_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GREEN_RIGHT\"] = 137] = \"HAZARD_SPIKES_GREEN_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GREEN_DOWN\"] = 138] = \"HAZARD_SPIKES_GREEN_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GREEN_LEFT\"] = 139] = \"HAZARD_SPIKES_GREEN_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GREEN_CENTER\"] = 140] = \"HAZARD_SPIKES_GREEN_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BLUE_UP\"] = 141] = \"HAZARD_SPIKES_BLUE_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BLUE_RIGHT\"] = 142] = \"HAZARD_SPIKES_BLUE_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BLUE_DOWN\"] = 143] = \"HAZARD_SPIKES_BLUE_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BLUE_LEFT\"] = 144] = \"HAZARD_SPIKES_BLUE_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BLUE_CENTER\"] = 145] = \"HAZARD_SPIKES_BLUE_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_CYAN_UP\"] = 146] = \"HAZARD_SPIKES_CYAN_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_CYAN_RIGHT\"] = 147] = \"HAZARD_SPIKES_CYAN_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_CYAN_DOWN\"] = 148] = \"HAZARD_SPIKES_CYAN_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_CYAN_LEFT\"] = 149] = \"HAZARD_SPIKES_CYAN_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_CYAN_CENTER\"] = 150] = \"HAZARD_SPIKES_CYAN_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_PURPLE_UP\"] = 151] = \"HAZARD_SPIKES_PURPLE_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_PURPLE_RIGHT\"] = 152] = \"HAZARD_SPIKES_PURPLE_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_PURPLE_DOWN\"] = 153] = \"HAZARD_SPIKES_PURPLE_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_PURPLE_LEFT\"] = 154] = \"HAZARD_SPIKES_PURPLE_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_PURPLE_CENTER\"] = 155] = \"HAZARD_SPIKES_PURPLE_CENTER\";\n BlockNames[BlockNames[\"HAZARD_FIRE\"] = 156] = \"HAZARD_FIRE\";\n BlockNames[BlockNames[\"HAZARD_DEATH_DOOR\"] = 157] = \"HAZARD_DEATH_DOOR\";\n BlockNames[BlockNames[\"HAZARD_DEATH_GATE\"] = 158] = \"HAZARD_DEATH_GATE\";\n BlockNames[BlockNames[\"NOTE_DRUM\"] = 159] = \"NOTE_DRUM\";\n BlockNames[BlockNames[\"NOTE_PIANO\"] = 160] = \"NOTE_PIANO\";\n BlockNames[BlockNames[\"NOTE_GUITAR\"] = 161] = \"NOTE_GUITAR\";\n BlockNames[BlockNames[\"TEAM_EFFECT_NONE\"] = 162] = \"TEAM_EFFECT_NONE\";\n BlockNames[BlockNames[\"TEAM_EFFECT_RED\"] = 163] = \"TEAM_EFFECT_RED\";\n BlockNames[BlockNames[\"TEAM_EFFECT_GREEN\"] = 164] = \"TEAM_EFFECT_GREEN\";\n BlockNames[BlockNames[\"TEAM_EFFECT_BLUE\"] = 165] = \"TEAM_EFFECT_BLUE\";\n BlockNames[BlockNames[\"TEAM_EFFECT_CYAN\"] = 166] = \"TEAM_EFFECT_CYAN\";\n BlockNames[BlockNames[\"TEAM_EFFECT_MAGENTA\"] = 167] = \"TEAM_EFFECT_MAGENTA\";\n BlockNames[BlockNames[\"TEAM_EFFECT_YELLOW\"] = 168] = \"TEAM_EFFECT_YELLOW\";\n BlockNames[BlockNames[\"TEAM_NONE_DOOR\"] = 169] = \"TEAM_NONE_DOOR\";\n BlockNames[BlockNames[\"TEAM_RED_DOOR\"] = 170] = \"TEAM_RED_DOOR\";\n BlockNames[BlockNames[\"TEAM_GREEN_DOOR\"] = 171] = \"TEAM_GREEN_DOOR\";\n BlockNames[BlockNames[\"TEAM_BLUE_DOOR\"] = 172] = \"TEAM_BLUE_DOOR\";\n BlockNames[BlockNames[\"TEAM_CYAN_DOOR\"] = 173] = \"TEAM_CYAN_DOOR\";\n BlockNames[BlockNames[\"TEAM_MAGENTA_DOOR\"] = 174] = \"TEAM_MAGENTA_DOOR\";\n BlockNames[BlockNames[\"TEAM_YELLOW_DOOR\"] = 175] = \"TEAM_YELLOW_DOOR\";\n BlockNames[BlockNames[\"TEAM_NONE_GATE\"] = 176] = \"TEAM_NONE_GATE\";\n BlockNames[BlockNames[\"TEAM_RED_GATE\"] = 177] = \"TEAM_RED_GATE\";\n BlockNames[BlockNames[\"TEAM_GREEN_GATE\"] = 178] = \"TEAM_GREEN_GATE\";\n BlockNames[BlockNames[\"TEAM_BLUE_GATE\"] = 179] = \"TEAM_BLUE_GATE\";\n BlockNames[BlockNames[\"TEAM_CYAN_GATE\"] = 180] = \"TEAM_CYAN_GATE\";\n BlockNames[BlockNames[\"TEAM_MAGENTA_GATE\"] = 181] = \"TEAM_MAGENTA_GATE\";\n BlockNames[BlockNames[\"TEAM_YELLOW_GATE\"] = 182] = \"TEAM_YELLOW_GATE\";\n BlockNames[BlockNames[\"BASIC_WHITE\"] = 183] = \"BASIC_WHITE\";\n BlockNames[BlockNames[\"BASIC_GRAY\"] = 184] = \"BASIC_GRAY\";\n BlockNames[BlockNames[\"BASIC_BLACK\"] = 185] = \"BASIC_BLACK\";\n BlockNames[BlockNames[\"BASIC_RED\"] = 186] = \"BASIC_RED\";\n BlockNames[BlockNames[\"BASIC_ORANGE\"] = 187] = \"BASIC_ORANGE\";\n BlockNames[BlockNames[\"BASIC_YELLOW\"] = 188] = \"BASIC_YELLOW\";\n BlockNames[BlockNames[\"BASIC_GREEN\"] = 189] = \"BASIC_GREEN\";\n BlockNames[BlockNames[\"BASIC_CYAN\"] = 190] = \"BASIC_CYAN\";\n BlockNames[BlockNames[\"BASIC_BLUE\"] = 191] = \"BASIC_BLUE\";\n BlockNames[BlockNames[\"BASIC_MAGENTA\"] = 192] = \"BASIC_MAGENTA\";\n BlockNames[BlockNames[\"BASIC_WHITE_BG\"] = 193] = \"BASIC_WHITE_BG\";\n BlockNames[BlockNames[\"BASIC_GRAY_BG\"] = 194] = \"BASIC_GRAY_BG\";\n BlockNames[BlockNames[\"BASIC_BLACK_BG\"] = 195] = \"BASIC_BLACK_BG\";\n BlockNames[BlockNames[\"BASIC_RED_BG\"] = 196] = \"BASIC_RED_BG\";\n BlockNames[BlockNames[\"BASIC_ORANGE_BG\"] = 197] = \"BASIC_ORANGE_BG\";\n BlockNames[BlockNames[\"BASIC_YELLOW_BG\"] = 198] = \"BASIC_YELLOW_BG\";\n BlockNames[BlockNames[\"BASIC_GREEN_BG\"] = 199] = \"BASIC_GREEN_BG\";\n BlockNames[BlockNames[\"BASIC_CYAN_BG\"] = 200] = \"BASIC_CYAN_BG\";\n BlockNames[BlockNames[\"BASIC_BLUE_BG\"] = 201] = \"BASIC_BLUE_BG\";\n BlockNames[BlockNames[\"BASIC_MAGENTA_BG\"] = 202] = \"BASIC_MAGENTA_BG\";\n BlockNames[BlockNames[\"BEVELED_WHITE\"] = 203] = \"BEVELED_WHITE\";\n BlockNames[BlockNames[\"BEVELED_GRAY\"] = 204] = \"BEVELED_GRAY\";\n BlockNames[BlockNames[\"BEVELED_BLACK\"] = 205] = \"BEVELED_BLACK\";\n BlockNames[BlockNames[\"BEVELED_RED\"] = 206] = \"BEVELED_RED\";\n BlockNames[BlockNames[\"BEVELED_ORANGE\"] = 207] = \"BEVELED_ORANGE\";\n BlockNames[BlockNames[\"BEVELED_YELLOW\"] = 208] = \"BEVELED_YELLOW\";\n BlockNames[BlockNames[\"BEVELED_GREEN\"] = 209] = \"BEVELED_GREEN\";\n BlockNames[BlockNames[\"BEVELED_CYAN\"] = 210] = \"BEVELED_CYAN\";\n BlockNames[BlockNames[\"BEVELED_BLUE\"] = 211] = \"BEVELED_BLUE\";\n BlockNames[BlockNames[\"BEVELED_MAGENTA\"] = 212] = \"BEVELED_MAGENTA\";\n BlockNames[BlockNames[\"BEVELED_WHITE_BG\"] = 213] = \"BEVELED_WHITE_BG\";\n BlockNames[BlockNames[\"BEVELED_GRAY_BG\"] = 214] = \"BEVELED_GRAY_BG\";\n BlockNames[BlockNames[\"BEVELED_BLACK_BG\"] = 215] = \"BEVELED_BLACK_BG\";\n BlockNames[BlockNames[\"BEVELED_RED_BG\"] = 216] = \"BEVELED_RED_BG\";\n BlockNames[BlockNames[\"BEVELED_ORANGE_BG\"] = 217] = \"BEVELED_ORANGE_BG\";\n BlockNames[BlockNames[\"BEVELED_YELLOW_BG\"] = 218] = \"BEVELED_YELLOW_BG\";\n BlockNames[BlockNames[\"BEVELED_GREEN_BG\"] = 219] = \"BEVELED_GREEN_BG\";\n BlockNames[BlockNames[\"BEVELED_CYAN_BG\"] = 220] = \"BEVELED_CYAN_BG\";\n BlockNames[BlockNames[\"BEVELED_BLUE_BG\"] = 221] = \"BEVELED_BLUE_BG\";\n BlockNames[BlockNames[\"BEVELED_MAGENTA_BG\"] = 222] = \"BEVELED_MAGENTA_BG\";\n BlockNames[BlockNames[\"BRICK_WHITE\"] = 223] = \"BRICK_WHITE\";\n BlockNames[BlockNames[\"BRICK_GRAY\"] = 224] = \"BRICK_GRAY\";\n BlockNames[BlockNames[\"BRICK_BLACK\"] = 225] = \"BRICK_BLACK\";\n BlockNames[BlockNames[\"BRICK_RED\"] = 226] = \"BRICK_RED\";\n BlockNames[BlockNames[\"BRICK_BROWN\"] = 227] = \"BRICK_BROWN\";\n BlockNames[BlockNames[\"BRICK_OLIVE\"] = 228] = \"BRICK_OLIVE\";\n BlockNames[BlockNames[\"BRICK_GREEN\"] = 229] = \"BRICK_GREEN\";\n BlockNames[BlockNames[\"BRICK_TEAL\"] = 230] = \"BRICK_TEAL\";\n BlockNames[BlockNames[\"BRICK_BLUE\"] = 231] = \"BRICK_BLUE\";\n BlockNames[BlockNames[\"BRICK_PURPLE\"] = 232] = \"BRICK_PURPLE\";\n BlockNames[BlockNames[\"BRICK_WHITE_BG\"] = 233] = \"BRICK_WHITE_BG\";\n BlockNames[BlockNames[\"BRICK_GRAY_BG\"] = 234] = \"BRICK_GRAY_BG\";\n BlockNames[BlockNames[\"BRICK_BLACK_BG\"] = 235] = \"BRICK_BLACK_BG\";\n BlockNames[BlockNames[\"BRICK_RED_BG\"] = 236] = \"BRICK_RED_BG\";\n BlockNames[BlockNames[\"BRICK_BROWN_BG\"] = 237] = \"BRICK_BROWN_BG\";\n BlockNames[BlockNames[\"BRICK_OLIVE_BG\"] = 238] = \"BRICK_OLIVE_BG\";\n BlockNames[BlockNames[\"BRICK_GREEN_BG\"] = 239] = \"BRICK_GREEN_BG\";\n BlockNames[BlockNames[\"BRICK_TEAL_BG\"] = 240] = \"BRICK_TEAL_BG\";\n BlockNames[BlockNames[\"BRICK_BLUE_BG\"] = 241] = \"BRICK_BLUE_BG\";\n BlockNames[BlockNames[\"BRICK_PURPLE_BG\"] = 242] = \"BRICK_PURPLE_BG\";\n BlockNames[BlockNames[\"NORMAL_WHITE_BG\"] = 243] = \"NORMAL_WHITE_BG\";\n BlockNames[BlockNames[\"NORMAL_GRAY_BG\"] = 244] = \"NORMAL_GRAY_BG\";\n BlockNames[BlockNames[\"NORMAL_BLACK_BG\"] = 245] = \"NORMAL_BLACK_BG\";\n BlockNames[BlockNames[\"NORMAL_RED_BG\"] = 246] = \"NORMAL_RED_BG\";\n BlockNames[BlockNames[\"NORMAL_ORANGE_BG\"] = 247] = \"NORMAL_ORANGE_BG\";\n BlockNames[BlockNames[\"NORMAL_YELLOW_BG\"] = 248] = \"NORMAL_YELLOW_BG\";\n BlockNames[BlockNames[\"NORMAL_GREEN_BG\"] = 249] = \"NORMAL_GREEN_BG\";\n BlockNames[BlockNames[\"NORMAL_CYAN_BG\"] = 250] = \"NORMAL_CYAN_BG\";\n BlockNames[BlockNames[\"NORMAL_BLUE_BG\"] = 251] = \"NORMAL_BLUE_BG\";\n BlockNames[BlockNames[\"NORMAL_MAGENTA_BG\"] = 252] = \"NORMAL_MAGENTA_BG\";\n BlockNames[BlockNames[\"DARK_WHITE_BG\"] = 253] = \"DARK_WHITE_BG\";\n BlockNames[BlockNames[\"DARK_GRAY_BG\"] = 254] = \"DARK_GRAY_BG\";\n BlockNames[BlockNames[\"DARK_BLACK_BG\"] = 255] = \"DARK_BLACK_BG\";\n BlockNames[BlockNames[\"DARK_RED_BG\"] = 256] = \"DARK_RED_BG\";\n BlockNames[BlockNames[\"DARK_ORANGE_BG\"] = 257] = \"DARK_ORANGE_BG\";\n BlockNames[BlockNames[\"DARK_YELLOW_BG\"] = 258] = \"DARK_YELLOW_BG\";\n BlockNames[BlockNames[\"DARK_GREEN_BG\"] = 259] = \"DARK_GREEN_BG\";\n BlockNames[BlockNames[\"DARK_CYAN_BG\"] = 260] = \"DARK_CYAN_BG\";\n BlockNames[BlockNames[\"DARK_BLUE_BG\"] = 261] = \"DARK_BLUE_BG\";\n BlockNames[BlockNames[\"DARK_MAGENTA_BG\"] = 262] = \"DARK_MAGENTA_BG\";\n BlockNames[BlockNames[\"CHECKER_WHITE\"] = 263] = \"CHECKER_WHITE\";\n BlockNames[BlockNames[\"CHECKER_GRAY\"] = 264] = \"CHECKER_GRAY\";\n BlockNames[BlockNames[\"CHECKER_BLACK\"] = 265] = \"CHECKER_BLACK\";\n BlockNames[BlockNames[\"CHECKER_RED\"] = 266] = \"CHECKER_RED\";\n BlockNames[BlockNames[\"CHECKER_ORANGE\"] = 267] = \"CHECKER_ORANGE\";\n BlockNames[BlockNames[\"CHECKER_YELLOW\"] = 268] = \"CHECKER_YELLOW\";\n BlockNames[BlockNames[\"CHECKER_GREEN\"] = 269] = \"CHECKER_GREEN\";\n BlockNames[BlockNames[\"CHECKER_CYAN\"] = 270] = \"CHECKER_CYAN\";\n BlockNames[BlockNames[\"CHECKER_BLUE\"] = 271] = \"CHECKER_BLUE\";\n BlockNames[BlockNames[\"CHECKER_MAGENTA\"] = 272] = \"CHECKER_MAGENTA\";\n BlockNames[BlockNames[\"CHECKER_WHITE_BG\"] = 273] = \"CHECKER_WHITE_BG\";\n BlockNames[BlockNames[\"CHECKER_GRAY_BG\"] = 274] = \"CHECKER_GRAY_BG\";\n BlockNames[BlockNames[\"CHECKER_BLACK_BG\"] = 275] = \"CHECKER_BLACK_BG\";\n BlockNames[BlockNames[\"CHECKER_RED_BG\"] = 276] = \"CHECKER_RED_BG\";\n BlockNames[BlockNames[\"CHECKER_ORANGE_BG\"] = 277] = \"CHECKER_ORANGE_BG\";\n BlockNames[BlockNames[\"CHECKER_YELLOW_BG\"] = 278] = \"CHECKER_YELLOW_BG\";\n BlockNames[BlockNames[\"CHECKER_GREEN_BG\"] = 279] = \"CHECKER_GREEN_BG\";\n BlockNames[BlockNames[\"CHECKER_CYAN_BG\"] = 280] = \"CHECKER_CYAN_BG\";\n BlockNames[BlockNames[\"CHECKER_BLUE_BG\"] = 281] = \"CHECKER_BLUE_BG\";\n BlockNames[BlockNames[\"CHECKER_MAGENTA_BG\"] = 282] = \"CHECKER_MAGENTA_BG\";\n BlockNames[BlockNames[\"PASTEL_RED_BG\"] = 283] = \"PASTEL_RED_BG\";\n BlockNames[BlockNames[\"PASTEL_ORANGE_BG\"] = 284] = \"PASTEL_ORANGE_BG\";\n BlockNames[BlockNames[\"PASTEL_YELLOW_BG\"] = 285] = \"PASTEL_YELLOW_BG\";\n BlockNames[BlockNames[\"PASTEL_LIME_BG\"] = 286] = \"PASTEL_LIME_BG\";\n BlockNames[BlockNames[\"PASTEL_GREEN_BG\"] = 287] = \"PASTEL_GREEN_BG\";\n BlockNames[BlockNames[\"PASTEL_CYAN_BG\"] = 288] = \"PASTEL_CYAN_BG\";\n BlockNames[BlockNames[\"PASTEL_BLUE_BG\"] = 289] = \"PASTEL_BLUE_BG\";\n BlockNames[BlockNames[\"PASTEL_PURPLE_BG\"] = 290] = \"PASTEL_PURPLE_BG\";\n BlockNames[BlockNames[\"GRASS_BRICK_LEFT\"] = 292] = \"GRASS_BRICK_LEFT\";\n BlockNames[BlockNames[\"GRASS_BRICK_MIDDLE\"] = 291] = \"GRASS_BRICK_MIDDLE\";\n BlockNames[BlockNames[\"GRASS_BRICK_RIGHT\"] = 293] = \"GRASS_BRICK_RIGHT\";\n BlockNames[BlockNames[\"METAL_SILVER\"] = 294] = \"METAL_SILVER\";\n BlockNames[BlockNames[\"METAL_COPPER\"] = 295] = \"METAL_COPPER\";\n BlockNames[BlockNames[\"METAL_GOLD\"] = 296] = \"METAL_GOLD\";\n BlockNames[BlockNames[\"GENERIC_STRIPED_HAZARD_YELLOW\"] = 297] = \"GENERIC_STRIPED_HAZARD_YELLOW\";\n BlockNames[BlockNames[\"GENERIC_STRIPED_HAZARD_BLACK\"] = 298] = \"GENERIC_STRIPED_HAZARD_BLACK\";\n BlockNames[BlockNames[\"GENERIC_YELLOW_FACE\"] = 299] = \"GENERIC_YELLOW_FACE\";\n BlockNames[BlockNames[\"GENERIC_YELLOW_FACE_SMILE\"] = 300] = \"GENERIC_YELLOW_FACE_SMILE\";\n BlockNames[BlockNames[\"GENERIC_YELLOW_FACE_FROWN\"] = 301] = \"GENERIC_YELLOW_FACE_FROWN\";\n BlockNames[BlockNames[\"GENERIC_YELLOW\"] = 302] = \"GENERIC_YELLOW\";\n BlockNames[BlockNames[\"GENERIC_BLACK\"] = 303] = \"GENERIC_BLACK\";\n BlockNames[BlockNames[\"GENERIC_BLACK_TRANSPARENT\"] = 304] = \"GENERIC_BLACK_TRANSPARENT\";\n BlockNames[BlockNames[\"SECRET_APPEAR\"] = 305] = \"SECRET_APPEAR\";\n BlockNames[BlockNames[\"SECRET_DISAPPEAR\"] = 306] = \"SECRET_DISAPPEAR\";\n BlockNames[BlockNames[\"SECRET_INVISIBLE\"] = 307] = \"SECRET_INVISIBLE\";\n BlockNames[BlockNames[\"GLASS_RED\"] = 308] = \"GLASS_RED\";\n BlockNames[BlockNames[\"GLASS_ORANGE\"] = 309] = \"GLASS_ORANGE\";\n BlockNames[BlockNames[\"GLASS_YELLOW\"] = 310] = \"GLASS_YELLOW\";\n BlockNames[BlockNames[\"GLASS_GREEN\"] = 311] = \"GLASS_GREEN\";\n BlockNames[BlockNames[\"GLASS_CYAN\"] = 312] = \"GLASS_CYAN\";\n BlockNames[BlockNames[\"GLASS_BLUE\"] = 313] = \"GLASS_BLUE\";\n BlockNames[BlockNames[\"GLASS_PURPLE\"] = 314] = \"GLASS_PURPLE\";\n BlockNames[BlockNames[\"GLASS_MAGENTA\"] = 315] = \"GLASS_MAGENTA\";\n BlockNames[BlockNames[\"MINERALS_RED\"] = 316] = \"MINERALS_RED\";\n BlockNames[BlockNames[\"MINERALS_ORANGE\"] = 317] = \"MINERALS_ORANGE\";\n BlockNames[BlockNames[\"MINERALS_YELLOW\"] = 318] = \"MINERALS_YELLOW\";\n BlockNames[BlockNames[\"MINERALS_GREEN\"] = 319] = \"MINERALS_GREEN\";\n BlockNames[BlockNames[\"MINERALS_CYAN\"] = 320] = \"MINERALS_CYAN\";\n BlockNames[BlockNames[\"MINERALS_BLUE\"] = 321] = \"MINERALS_BLUE\";\n BlockNames[BlockNames[\"MINERALS_PURPLE\"] = 322] = \"MINERALS_PURPLE\";\n BlockNames[BlockNames[\"MINERALS_MAGENTA\"] = 323] = \"MINERALS_MAGENTA\";\n BlockNames[BlockNames[\"FACTORY_CRATE_METAL\"] = 324] = \"FACTORY_CRATE_METAL\";\n BlockNames[BlockNames[\"FACTORY_CRATE_WOOD\"] = 325] = \"FACTORY_CRATE_WOOD\";\n BlockNames[BlockNames[\"FACTORY_STONE\"] = 326] = \"FACTORY_STONE\";\n BlockNames[BlockNames[\"FACTORY_WOOD\"] = 327] = \"FACTORY_WOOD\";\n BlockNames[BlockNames[\"FACTORY_SCALES\"] = 328] = \"FACTORY_SCALES\";\n BlockNames[BlockNames[\"MEADOW_GRASS_LEFT\"] = 329] = \"MEADOW_GRASS_LEFT\";\n BlockNames[BlockNames[\"MEADOW_GRASS_MIDDLE\"] = 330] = \"MEADOW_GRASS_MIDDLE\";\n BlockNames[BlockNames[\"MEADOW_GRASS_RIGHT\"] = 331] = \"MEADOW_GRASS_RIGHT\";\n BlockNames[BlockNames[\"MEADOW_BUSH_LEFT\"] = 332] = \"MEADOW_BUSH_LEFT\";\n BlockNames[BlockNames[\"MEADOW_BUSH_MIDDLE\"] = 333] = \"MEADOW_BUSH_MIDDLE\";\n BlockNames[BlockNames[\"MEADOW_BUSH_RIGHT\"] = 334] = \"MEADOW_BUSH_RIGHT\";\n BlockNames[BlockNames[\"MEADOW_YELLOW_FLOWER\"] = 335] = \"MEADOW_YELLOW_FLOWER\";\n BlockNames[BlockNames[\"MEADOW_SMALL_BUSH\"] = 336] = \"MEADOW_SMALL_BUSH\";\n BlockNames[BlockNames[\"EASTER_EGG_BLUE\"] = 337] = \"EASTER_EGG_BLUE\";\n BlockNames[BlockNames[\"EASTER_EGG_PINK\"] = 338] = \"EASTER_EGG_PINK\";\n BlockNames[BlockNames[\"EASTER_EGG_YELLOW\"] = 339] = \"EASTER_EGG_YELLOW\";\n BlockNames[BlockNames[\"EASTER_EGG_RED\"] = 340] = \"EASTER_EGG_RED\";\n BlockNames[BlockNames[\"EASTER_EGG_GREEN\"] = 341] = \"EASTER_EGG_GREEN\";\n BlockNames[BlockNames[\"CANDY_PINK\"] = 342] = \"CANDY_PINK\";\n BlockNames[BlockNames[\"CANDY_BLUE\"] = 343] = \"CANDY_BLUE\";\n BlockNames[BlockNames[\"CANDY_ONEWAY_PINK_TOP\"] = 344] = \"CANDY_ONEWAY_PINK_TOP\";\n BlockNames[BlockNames[\"CANDY_ONEWAY_RED_TOP\"] = 345] = \"CANDY_ONEWAY_RED_TOP\";\n BlockNames[BlockNames[\"CANDY_ONEWAY_CYAN_TOP\"] = 346] = \"CANDY_ONEWAY_CYAN_TOP\";\n BlockNames[BlockNames[\"CANDY_ONEWAY_GREEN_TOP\"] = 347] = \"CANDY_ONEWAY_GREEN_TOP\";\n BlockNames[BlockNames[\"CANDY_CANE\"] = 348] = \"CANDY_CANE\";\n BlockNames[BlockNames[\"CANDY_LICORICE\"] = 349] = \"CANDY_LICORICE\";\n BlockNames[BlockNames[\"CANDY_CHOCOLATE\"] = 350] = \"CANDY_CHOCOLATE\";\n BlockNames[BlockNames[\"CANDY_CREAM_SMALL\"] = 351] = \"CANDY_CREAM_SMALL\";\n BlockNames[BlockNames[\"CANDY_CREAM_LARGE\"] = 352] = \"CANDY_CREAM_LARGE\";\n BlockNames[BlockNames[\"CANDY_GUMDROP_RED\"] = 353] = \"CANDY_GUMDROP_RED\";\n BlockNames[BlockNames[\"CANDY_GUMDROP_GREEN\"] = 354] = \"CANDY_GUMDROP_GREEN\";\n BlockNames[BlockNames[\"CANDY_GUMDROP_PINK\"] = 355] = \"CANDY_GUMDROP_PINK\";\n BlockNames[BlockNames[\"CANDY_PINK_BG\"] = 356] = \"CANDY_PINK_BG\";\n BlockNames[BlockNames[\"CANDY_BLUE_BG\"] = 357] = \"CANDY_BLUE_BG\";\n BlockNames[BlockNames[\"BEACH_SAND\"] = 358] = \"BEACH_SAND\";\n BlockNames[BlockNames[\"BEACH_PARASOL\"] = 359] = \"BEACH_PARASOL\";\n BlockNames[BlockNames[\"BEACH_SAND_DRIFT_BOTTOM_LEFT\"] = 362] = \"BEACH_SAND_DRIFT_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"BEACH_SAND_DRIFT_BOTTOM_RIGHT\"] = 363] = \"BEACH_SAND_DRIFT_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"BEACH_SAND_DRIFT_TOP_LEFT\"] = 360] = \"BEACH_SAND_DRIFT_TOP_LEFT\";\n BlockNames[BlockNames[\"BEACH_SAND_DRIFT_TOP_RIGHT\"] = 361] = \"BEACH_SAND_DRIFT_TOP_RIGHT\";\n BlockNames[BlockNames[\"BEACH_ROCK\"] = 364] = \"BEACH_ROCK\";\n BlockNames[BlockNames[\"BEACH_DRY_BUSH\"] = 365] = \"BEACH_DRY_BUSH\";\n BlockNames[BlockNames[\"SUMMER_BEACH\"] = 366] = \"SUMMER_BEACH\";\n BlockNames[BlockNames[\"SUMMER_PAIL\"] = 367] = \"SUMMER_PAIL\";\n BlockNames[BlockNames[\"SUMMER_SHOVEL\"] = 368] = \"SUMMER_SHOVEL\";\n BlockNames[BlockNames[\"SUMMER_DRINK\"] = 369] = \"SUMMER_DRINK\";\n BlockNames[BlockNames[\"BEACH_LIFE_PRESERVER_RING_RED\"] = 370] = \"BEACH_LIFE_PRESERVER_RING_RED\";\n BlockNames[BlockNames[\"BEACH_ANCHOR\"] = 371] = \"BEACH_ANCHOR\";\n BlockNames[BlockNames[\"BEACH_DOCK_ROPE_LEFT\"] = 372] = \"BEACH_DOCK_ROPE_LEFT\";\n BlockNames[BlockNames[\"BEACH_DOCK_ROPE_RIGHT\"] = 373] = \"BEACH_DOCK_ROPE_RIGHT\";\n BlockNames[BlockNames[\"BEACH_TREE_PALM\"] = 374] = \"BEACH_TREE_PALM\";\n BlockNames[BlockNames[\"JUNGLE_FACE_BLOCK\"] = 375] = \"JUNGLE_FACE_BLOCK\";\n BlockNames[BlockNames[\"JUNGLE_ONEWAY_TOP\"] = 376] = \"JUNGLE_ONEWAY_TOP\";\n BlockNames[BlockNames[\"JUNGLE_GRAY\"] = 377] = \"JUNGLE_GRAY\";\n BlockNames[BlockNames[\"JUNGLE_RED\"] = 378] = \"JUNGLE_RED\";\n BlockNames[BlockNames[\"JUNGLE_BLUE\"] = 379] = \"JUNGLE_BLUE\";\n BlockNames[BlockNames[\"JUNGLE_OLIVE\"] = 380] = \"JUNGLE_OLIVE\";\n BlockNames[BlockNames[\"JUNGLE_POT\"] = 381] = \"JUNGLE_POT\";\n BlockNames[BlockNames[\"JUNGLE_PLANT\"] = 382] = \"JUNGLE_PLANT\";\n BlockNames[BlockNames[\"JUNGLE_POT_BROKEN\"] = 383] = \"JUNGLE_POT_BROKEN\";\n BlockNames[BlockNames[\"JUNGLE_STATUE\"] = 384] = \"JUNGLE_STATUE\";\n BlockNames[BlockNames[\"JUNGLE_GRAY_BG\"] = 385] = \"JUNGLE_GRAY_BG\";\n BlockNames[BlockNames[\"JUNGLE_RED_BG\"] = 386] = \"JUNGLE_RED_BG\";\n BlockNames[BlockNames[\"JUNGLE_BLUE_BG\"] = 387] = \"JUNGLE_BLUE_BG\";\n BlockNames[BlockNames[\"JUNGLE_OLIVE_BG\"] = 388] = \"JUNGLE_OLIVE_BG\";\n BlockNames[BlockNames[\"JUNGLE_LEAVES_LIGHT_BG\"] = 389] = \"JUNGLE_LEAVES_LIGHT_BG\";\n BlockNames[BlockNames[\"JUNGLE_LEAVES_MEDIUM_BG\"] = 390] = \"JUNGLE_LEAVES_MEDIUM_BG\";\n BlockNames[BlockNames[\"JUNGLE_LEAVES_DARK_BG\"] = 391] = \"JUNGLE_LEAVES_DARK_BG\";\n BlockNames[BlockNames[\"ENVIRONMENT_LOG\"] = 392] = \"ENVIRONMENT_LOG\";\n BlockNames[BlockNames[\"ENVIRONMENT_GRASS\"] = 393] = \"ENVIRONMENT_GRASS\";\n BlockNames[BlockNames[\"ENVIRONMENT_BAMBOO\"] = 394] = \"ENVIRONMENT_BAMBOO\";\n BlockNames[BlockNames[\"ENVIRONMENT_OBSIDIAN\"] = 395] = \"ENVIRONMENT_OBSIDIAN\";\n BlockNames[BlockNames[\"ENVIRONMENT_LAVA\"] = 396] = \"ENVIRONMENT_LAVA\";\n BlockNames[BlockNames[\"ENVIRONMENT_LOG_BG\"] = 397] = \"ENVIRONMENT_LOG_BG\";\n BlockNames[BlockNames[\"ENVIRONMENT_GRASS_BG\"] = 398] = \"ENVIRONMENT_GRASS_BG\";\n BlockNames[BlockNames[\"ENVIRONMENT_BAMBOO_BG\"] = 399] = \"ENVIRONMENT_BAMBOO_BG\";\n BlockNames[BlockNames[\"ENVIRONMENT_OBSIDIAN_BG\"] = 400] = \"ENVIRONMENT_OBSIDIAN_BG\";\n BlockNames[BlockNames[\"ENVIRONMENT_LAVA_BG\"] = 401] = \"ENVIRONMENT_LAVA_BG\";\n BlockNames[BlockNames[\"WINDOW_CLEAR\"] = 402] = \"WINDOW_CLEAR\";\n BlockNames[BlockNames[\"WINDOW_RED\"] = 403] = \"WINDOW_RED\";\n BlockNames[BlockNames[\"WINDOW_ORANGE\"] = 404] = \"WINDOW_ORANGE\";\n BlockNames[BlockNames[\"WINDOW_YELLOW\"] = 405] = \"WINDOW_YELLOW\";\n BlockNames[BlockNames[\"WINDOW_GREEN\"] = 406] = \"WINDOW_GREEN\";\n BlockNames[BlockNames[\"WINDOW_TEAL\"] = 407] = \"WINDOW_TEAL\";\n BlockNames[BlockNames[\"WINDOW_BLUE\"] = 408] = \"WINDOW_BLUE\";\n BlockNames[BlockNames[\"WINDOW_PURPLE\"] = 409] = \"WINDOW_PURPLE\";\n BlockNames[BlockNames[\"WINDOW_PINK\"] = 410] = \"WINDOW_PINK\";\n BlockNames[BlockNames[\"CANVAS_RED\"] = 411] = \"CANVAS_RED\";\n BlockNames[BlockNames[\"CANVAS_BLUE\"] = 412] = \"CANVAS_BLUE\";\n BlockNames[BlockNames[\"CANVAS_GREEN\"] = 413] = \"CANVAS_GREEN\";\n BlockNames[BlockNames[\"CANVAS_GRAY_BG\"] = 414] = \"CANVAS_GRAY_BG\";\n BlockNames[BlockNames[\"CANVAS_RED_BG\"] = 415] = \"CANVAS_RED_BG\";\n BlockNames[BlockNames[\"CANVAS_ORANGE_BG\"] = 416] = \"CANVAS_ORANGE_BG\";\n BlockNames[BlockNames[\"CANVAS_TAN_BG\"] = 417] = \"CANVAS_TAN_BG\";\n BlockNames[BlockNames[\"CANVAS_YELLOW_BG\"] = 418] = \"CANVAS_YELLOW_BG\";\n BlockNames[BlockNames[\"CANVAS_GREEN_BG\"] = 419] = \"CANVAS_GREEN_BG\";\n BlockNames[BlockNames[\"CANVAS_CYAN_BG\"] = 420] = \"CANVAS_CYAN_BG\";\n BlockNames[BlockNames[\"CANVAS_BLUE_BG\"] = 421] = \"CANVAS_BLUE_BG\";\n BlockNames[BlockNames[\"CANVAS_PURPLE_BG\"] = 422] = \"CANVAS_PURPLE_BG\";\n BlockNames[BlockNames[\"STONE_GRAY\"] = 423] = \"STONE_GRAY\";\n BlockNames[BlockNames[\"STONE_GREEN\"] = 424] = \"STONE_GREEN\";\n BlockNames[BlockNames[\"STONE_BROWN\"] = 425] = \"STONE_BROWN\";\n BlockNames[BlockNames[\"STONE_BLUE\"] = 426] = \"STONE_BLUE\";\n BlockNames[BlockNames[\"STONE_GRAY_BG\"] = 427] = \"STONE_GRAY_BG\";\n BlockNames[BlockNames[\"STONE_HALF_GRAY_BG\"] = 428] = \"STONE_HALF_GRAY_BG\";\n BlockNames[BlockNames[\"STONE_GREEN_BG\"] = 429] = \"STONE_GREEN_BG\";\n BlockNames[BlockNames[\"STONE_HALF_GREEN_BG\"] = 430] = \"STONE_HALF_GREEN_BG\";\n BlockNames[BlockNames[\"STONE_BROWN_BG\"] = 431] = \"STONE_BROWN_BG\";\n BlockNames[BlockNames[\"STONE_HALF_BROWN_BG\"] = 432] = \"STONE_HALF_BROWN_BG\";\n BlockNames[BlockNames[\"STONE_BLUE_BG\"] = 433] = \"STONE_BLUE_BG\";\n BlockNames[BlockNames[\"STONE_HALF_BLUE_BG\"] = 434] = \"STONE_HALF_BLUE_BG\";\n BlockNames[BlockNames[\"GEMSTONE_GREEN\"] = 435] = \"GEMSTONE_GREEN\";\n BlockNames[BlockNames[\"GEMSTONE_PURPLE\"] = 436] = \"GEMSTONE_PURPLE\";\n BlockNames[BlockNames[\"GEMSTONE_YELLOW\"] = 437] = \"GEMSTONE_YELLOW\";\n BlockNames[BlockNames[\"GEMSTONE_BLUE\"] = 438] = \"GEMSTONE_BLUE\";\n BlockNames[BlockNames[\"GEMSTONE_RED\"] = 439] = \"GEMSTONE_RED\";\n BlockNames[BlockNames[\"GEMSTONE_CYAN\"] = 440] = \"GEMSTONE_CYAN\";\n BlockNames[BlockNames[\"GEMSTONE_WHITE\"] = 441] = \"GEMSTONE_WHITE\";\n BlockNames[BlockNames[\"GEMSTONE_BLACK\"] = 442] = \"GEMSTONE_BLACK\";\n BlockNames[BlockNames[\"SAND_WHITE\"] = 443] = \"SAND_WHITE\";\n BlockNames[BlockNames[\"SAND_WHITE_SURFACE\"] = 444] = \"SAND_WHITE_SURFACE\";\n BlockNames[BlockNames[\"SAND_GRAY\"] = 445] = \"SAND_GRAY\";\n BlockNames[BlockNames[\"SAND_GRAY_SURFACE\"] = 446] = \"SAND_GRAY_SURFACE\";\n BlockNames[BlockNames[\"SAND_YELLOW\"] = 447] = \"SAND_YELLOW\";\n BlockNames[BlockNames[\"SAND_YELLOW_SURFACE\"] = 448] = \"SAND_YELLOW_SURFACE\";\n BlockNames[BlockNames[\"SAND_ORANGE\"] = 449] = \"SAND_ORANGE\";\n BlockNames[BlockNames[\"SAND_ORANGE_SURFACE\"] = 450] = \"SAND_ORANGE_SURFACE\";\n BlockNames[BlockNames[\"SAND_BROWN_LIGHT\"] = 451] = \"SAND_BROWN_LIGHT\";\n BlockNames[BlockNames[\"SAND_BROWN_LIGHT_SURFACE\"] = 452] = \"SAND_BROWN_LIGHT_SURFACE\";\n BlockNames[BlockNames[\"SAND_BROWN_DARK\"] = 453] = \"SAND_BROWN_DARK\";\n BlockNames[BlockNames[\"SAND_BROWN_DARK_SURFACE\"] = 454] = \"SAND_BROWN_DARK_SURFACE\";\n BlockNames[BlockNames[\"SAND_YELLOW_LIGHT_BG\"] = 455] = \"SAND_YELLOW_LIGHT_BG\";\n BlockNames[BlockNames[\"SAND_GRAY_BG\"] = 456] = \"SAND_GRAY_BG\";\n BlockNames[BlockNames[\"SAND_YELLOW_DARK_BG\"] = 457] = \"SAND_YELLOW_DARK_BG\";\n BlockNames[BlockNames[\"SAND_ORANGE_BG\"] = 458] = \"SAND_ORANGE_BG\";\n BlockNames[BlockNames[\"SAND_BROWN_LIGHT_BG\"] = 459] = \"SAND_BROWN_LIGHT_BG\";\n BlockNames[BlockNames[\"SAND_BROWN_DARK_BG\"] = 460] = \"SAND_BROWN_DARK_BG\";\n BlockNames[BlockNames[\"FARM_WHEAT\"] = 461] = \"FARM_WHEAT\";\n BlockNames[BlockNames[\"FARM_CORN\"] = 462] = \"FARM_CORN\";\n BlockNames[BlockNames[\"FARM_FENCE_LEFT\"] = 463] = \"FARM_FENCE_LEFT\";\n BlockNames[BlockNames[\"FARM_FENCE_MIDDLE\"] = 464] = \"FARM_FENCE_MIDDLE\";\n BlockNames[BlockNames[\"FARM_FENCE_RIGHT\"] = 465] = \"FARM_FENCE_RIGHT\";\n BlockNames[BlockNames[\"FARM_HAY\"] = 466] = \"FARM_HAY\";\n BlockNames[BlockNames[\"CAVE_GRAY_LIGHT_BG\"] = 467] = \"CAVE_GRAY_LIGHT_BG\";\n BlockNames[BlockNames[\"CAVE_GRAY_DARK_BG\"] = 468] = \"CAVE_GRAY_DARK_BG\";\n BlockNames[BlockNames[\"CAVE_BLACK_BG\"] = 469] = \"CAVE_BLACK_BG\";\n BlockNames[BlockNames[\"CAVE_RED_BG\"] = 470] = \"CAVE_RED_BG\";\n BlockNames[BlockNames[\"CAVE_BROWN_BG\"] = 471] = \"CAVE_BROWN_BG\";\n BlockNames[BlockNames[\"CAVE_YELLOW_BG\"] = 472] = \"CAVE_YELLOW_BG\";\n BlockNames[BlockNames[\"CAVE_GREEN_BG\"] = 473] = \"CAVE_GREEN_BG\";\n BlockNames[BlockNames[\"CAVE_CYAN_BG\"] = 474] = \"CAVE_CYAN_BG\";\n BlockNames[BlockNames[\"CAVE_BLUE_BG\"] = 475] = \"CAVE_BLUE_BG\";\n BlockNames[BlockNames[\"CAVE_PURPLE_BG\"] = 476] = \"CAVE_PURPLE_BG\";\n BlockNames[BlockNames[\"CAVE_PINK_BG\"] = 477] = \"CAVE_PINK_BG\";\n BlockNames[BlockNames[\"HALLOWEEN_BLOOD\"] = 478] = \"HALLOWEEN_BLOOD\";\n BlockNames[BlockNames[\"HALLOWEEN_BRICK_GRAY\"] = 479] = \"HALLOWEEN_BRICK_GRAY\";\n BlockNames[BlockNames[\"HALLOWEEN_GRAY_BG\"] = 480] = \"HALLOWEEN_GRAY_BG\";\n BlockNames[BlockNames[\"HALLOWEEN_BRICK_GRAY_BG\"] = 481] = \"HALLOWEEN_BRICK_GRAY_BG\";\n BlockNames[BlockNames[\"HALLOWEEN_BRICK_GRAY_RIGHT_BG\"] = 482] = \"HALLOWEEN_BRICK_GRAY_RIGHT_BG\";\n BlockNames[BlockNames[\"HALLOWEEN_BRICK_GRAY_LEFT_BG\"] = 483] = \"HALLOWEEN_BRICK_GRAY_LEFT_BG\";\n BlockNames[BlockNames[\"HALLOWEEN_TREE_BG\"] = 484] = \"HALLOWEEN_TREE_BG\";\n BlockNames[BlockNames[\"HALLOWEEN_LEAVES_PURPLE_BG\"] = 485] = \"HALLOWEEN_LEAVES_PURPLE_BG\";\n BlockNames[BlockNames[\"HALLOWEEN_TOMBSTONE\"] = 486] = \"HALLOWEEN_TOMBSTONE\";\n BlockNames[BlockNames[\"HALLOWEEN_COBWEB_TOP_LEFT\"] = 487] = \"HALLOWEEN_COBWEB_TOP_LEFT\";\n BlockNames[BlockNames[\"HALLOWEEN_COBWEB_TOP_RIGHT\"] = 488] = \"HALLOWEEN_COBWEB_TOP_RIGHT\";\n BlockNames[BlockNames[\"HALLOWEEN_COBWEB_BOTTOM_LEFT\"] = 489] = \"HALLOWEEN_COBWEB_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"HALLOWEEN_COBWEB_BOTTOM_RIGHT\"] = 490] = \"HALLOWEEN_COBWEB_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"HALLOWEEN_TREE_BRANCH_TOP_LEFT\"] = 491] = \"HALLOWEEN_TREE_BRANCH_TOP_LEFT\";\n BlockNames[BlockNames[\"HALLOWEEN_TREE_BRANCH_TOP_RIGHT\"] = 492] = \"HALLOWEEN_TREE_BRANCH_TOP_RIGHT\";\n BlockNames[BlockNames[\"HALLOWEEN_TREE_BRANCH_BOTTOM_LEFT\"] = 493] = \"HALLOWEEN_TREE_BRANCH_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"HALLOWEEN_TREE_BRANCH_BOTTOM_RIGHT\"] = 494] = \"HALLOWEEN_TREE_BRANCH_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"HALLOWEEN_PUMPKIN_ON\"] = 495] = \"HALLOWEEN_PUMPKIN_ON\";\n BlockNames[BlockNames[\"HALLOWEEN_PUMPKIN_OFF\"] = 496] = \"HALLOWEEN_PUMPKIN_OFF\";\n BlockNames[BlockNames[\"HALLOWEEN_GRASS_PURPLE\"] = 497] = \"HALLOWEEN_GRASS_PURPLE\";\n BlockNames[BlockNames[\"HALLOWEEN_EYES_YELLOW\"] = 498] = \"HALLOWEEN_EYES_YELLOW\";\n BlockNames[BlockNames[\"HALLOWEEN_EYES_ORANGE\"] = 499] = \"HALLOWEEN_EYES_ORANGE\";\n BlockNames[BlockNames[\"HALLOWEEN_EYES_PURPLE\"] = 500] = \"HALLOWEEN_EYES_PURPLE\";\n BlockNames[BlockNames[\"HALLOWEEN_EYES_GREEN\"] = 501] = \"HALLOWEEN_EYES_GREEN\";\n BlockNames[BlockNames[\"MARBLE_COLUMN_TOP\"] = 502] = \"MARBLE_COLUMN_TOP\";\n BlockNames[BlockNames[\"MARBLE_COLUMN_MIDDLE\"] = 503] = \"MARBLE_COLUMN_MIDDLE\";\n BlockNames[BlockNames[\"MARBLE_COLUMN_BOTTOM\"] = 504] = \"MARBLE_COLUMN_BOTTOM\";\n BlockNames[BlockNames[\"MARBLE_GRAY\"] = 505] = \"MARBLE_GRAY\";\n BlockNames[BlockNames[\"MARBLE_GREEN\"] = 506] = \"MARBLE_GREEN\";\n BlockNames[BlockNames[\"MARBLE_RED\"] = 507] = \"MARBLE_RED\";\n BlockNames[BlockNames[\"MARBLE_ONEWAY\"] = 508] = \"MARBLE_ONEWAY\";\n BlockNames[BlockNames[\"MARBLE_GRAY_BG\"] = 509] = \"MARBLE_GRAY_BG\";\n BlockNames[BlockNames[\"MARBLE_GREEN_BG\"] = 510] = \"MARBLE_GREEN_BG\";\n BlockNames[BlockNames[\"MARBLE_RED_BG\"] = 511] = \"MARBLE_RED_BG\";\n BlockNames[BlockNames[\"WILDWEST_ONEWAY_BROWN_TOP\"] = 512] = \"WILDWEST_ONEWAY_BROWN_TOP\";\n BlockNames[BlockNames[\"WILDWEST_ONEWAY_BROWN_DARK_TOP\"] = 513] = \"WILDWEST_ONEWAY_BROWN_DARK_TOP\";\n BlockNames[BlockNames[\"WILDWEST_ONEWAY_RED_TOP\"] = 514] = \"WILDWEST_ONEWAY_RED_TOP\";\n BlockNames[BlockNames[\"WILDWEST_ONEWAY_RED_DARK_TOP\"] = 515] = \"WILDWEST_ONEWAY_RED_DARK_TOP\";\n BlockNames[BlockNames[\"WILDWEST_ONEWAY_BLUE_TOP\"] = 516] = \"WILDWEST_ONEWAY_BLUE_TOP\";\n BlockNames[BlockNames[\"WILDWEST_ONEWAY_BLUE_DARK_TOP\"] = 517] = \"WILDWEST_ONEWAY_BLUE_DARK_TOP\";\n BlockNames[BlockNames[\"WILDWEST_SIDING_BROWN_LIGHT_BG\"] = 518] = \"WILDWEST_SIDING_BROWN_LIGHT_BG\";\n BlockNames[BlockNames[\"WILDWEST_SIDING_BROWN_DARK_BG\"] = 519] = \"WILDWEST_SIDING_BROWN_DARK_BG\";\n BlockNames[BlockNames[\"WILDWEST_SIDING_RED_LIGHT_BG\"] = 520] = \"WILDWEST_SIDING_RED_LIGHT_BG\";\n BlockNames[BlockNames[\"WILDWEST_SIDING_RED_DARK_BG\"] = 521] = \"WILDWEST_SIDING_RED_DARK_BG\";\n BlockNames[BlockNames[\"WILDWEST_SIDING_BLUE_LIGHT_BG\"] = 522] = \"WILDWEST_SIDING_BLUE_LIGHT_BG\";\n BlockNames[BlockNames[\"WILDWEST_SIDING_BLUE_DARK_BG\"] = 523] = \"WILDWEST_SIDING_BLUE_DARK_BG\";\n BlockNames[BlockNames[\"WILDWEST_POLE_WHITE_HORIZONTAL\"] = 524] = \"WILDWEST_POLE_WHITE_HORIZONTAL\";\n BlockNames[BlockNames[\"WILDWEST_POLE_WHITE_VERTICAL\"] = 525] = \"WILDWEST_POLE_WHITE_VERTICAL\";\n BlockNames[BlockNames[\"WILDWEST_POLE_GRAY_HORIZONTAL\"] = 526] = \"WILDWEST_POLE_GRAY_HORIZONTAL\";\n BlockNames[BlockNames[\"WILDWEST_POLE_GRAY_VERTICAL\"] = 527] = \"WILDWEST_POLE_GRAY_VERTICAL\";\n BlockNames[BlockNames[\"WILDWEST_DOOR_LEFT_BROWN\"] = 528] = \"WILDWEST_DOOR_LEFT_BROWN\";\n BlockNames[BlockNames[\"WILDWEST_DOOR_LEFT_RED\"] = 530] = \"WILDWEST_DOOR_LEFT_RED\";\n BlockNames[BlockNames[\"WILDWEST_DOOR_LEFT_BLUE\"] = 532] = \"WILDWEST_DOOR_LEFT_BLUE\";\n BlockNames[BlockNames[\"WILDWEST_DOOR_RIGHT_BROWN\"] = 529] = \"WILDWEST_DOOR_RIGHT_BROWN\";\n BlockNames[BlockNames[\"WILDWEST_DOOR_RIGHT_RED\"] = 531] = \"WILDWEST_DOOR_RIGHT_RED\";\n BlockNames[BlockNames[\"WILDWEST_DOOR_RIGHT_BLUE\"] = 533] = \"WILDWEST_DOOR_RIGHT_BLUE\";\n BlockNames[BlockNames[\"WILDWEST_WINDOW\"] = 534] = \"WILDWEST_WINDOW\";\n BlockNames[BlockNames[\"WILDWEST_FENCE_BROWN_LIGHT\"] = 535] = \"WILDWEST_FENCE_BROWN_LIGHT\";\n BlockNames[BlockNames[\"WILDWEST_FENCE_BROWN_DARK\"] = 538] = \"WILDWEST_FENCE_BROWN_DARK\";\n BlockNames[BlockNames[\"WILDWEST_FENCE_RED_LIGHT\"] = 536] = \"WILDWEST_FENCE_RED_LIGHT\";\n BlockNames[BlockNames[\"WILDWEST_FENCE_RED_DARK\"] = 539] = \"WILDWEST_FENCE_RED_DARK\";\n BlockNames[BlockNames[\"WILDWEST_FENCE_BLUE_LIGHT\"] = 537] = \"WILDWEST_FENCE_BLUE_LIGHT\";\n BlockNames[BlockNames[\"WILDWEST_FENCE_BLUE_DARK\"] = 540] = \"WILDWEST_FENCE_BLUE_DARK\";\n BlockNames[BlockNames[\"NEON_MAGENTA_BG\"] = 541] = \"NEON_MAGENTA_BG\";\n BlockNames[BlockNames[\"NEON_ORANGE_BG\"] = 542] = \"NEON_ORANGE_BG\";\n BlockNames[BlockNames[\"NEON_YELLOW_BG\"] = 543] = \"NEON_YELLOW_BG\";\n BlockNames[BlockNames[\"NEON_GREEN_BG\"] = 544] = \"NEON_GREEN_BG\";\n BlockNames[BlockNames[\"NEON_CYAN_BG\"] = 545] = \"NEON_CYAN_BG\";\n BlockNames[BlockNames[\"NEON_BLUE_BG\"] = 546] = \"NEON_BLUE_BG\";\n BlockNames[BlockNames[\"CLOUD_WHITE_CENTER\"] = 547] = \"CLOUD_WHITE_CENTER\";\n BlockNames[BlockNames[\"CLOUD_WHITE_TOP\"] = 548] = \"CLOUD_WHITE_TOP\";\n BlockNames[BlockNames[\"CLOUD_WHITE_BOTTOM\"] = 549] = \"CLOUD_WHITE_BOTTOM\";\n BlockNames[BlockNames[\"CLOUD_WHITE_LEFT\"] = 550] = \"CLOUD_WHITE_LEFT\";\n BlockNames[BlockNames[\"CLOUD_WHITE_RIGHT\"] = 551] = \"CLOUD_WHITE_RIGHT\";\n BlockNames[BlockNames[\"CLOUD_WHITE_TOP_RIGHT\"] = 552] = \"CLOUD_WHITE_TOP_RIGHT\";\n BlockNames[BlockNames[\"CLOUD_WHITE_TOP_LEFT\"] = 553] = \"CLOUD_WHITE_TOP_LEFT\";\n BlockNames[BlockNames[\"CLOUD_WHITE_BOTTOM_LEFT\"] = 554] = \"CLOUD_WHITE_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"CLOUD_WHITE_BOTTOM_RIGHT\"] = 555] = \"CLOUD_WHITE_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"CLOUD_GRAY_CENTER\"] = 556] = \"CLOUD_GRAY_CENTER\";\n BlockNames[BlockNames[\"CLOUD_GRAY_TOP\"] = 557] = \"CLOUD_GRAY_TOP\";\n BlockNames[BlockNames[\"CLOUD_GRAY_BOTTOM\"] = 558] = \"CLOUD_GRAY_BOTTOM\";\n BlockNames[BlockNames[\"CLOUD_GRAY_LEFT\"] = 559] = \"CLOUD_GRAY_LEFT\";\n BlockNames[BlockNames[\"CLOUD_GRAY_RIGHT\"] = 560] = \"CLOUD_GRAY_RIGHT\";\n BlockNames[BlockNames[\"CLOUD_GRAY_TOP_RIGHT\"] = 561] = \"CLOUD_GRAY_TOP_RIGHT\";\n BlockNames[BlockNames[\"CLOUD_GRAY_TOP_LEFT\"] = 562] = \"CLOUD_GRAY_TOP_LEFT\";\n BlockNames[BlockNames[\"CLOUD_GRAY_BOTTOM_LEFT\"] = 563] = \"CLOUD_GRAY_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"CLOUD_GRAY_BOTTOM_RIGHT\"] = 564] = \"CLOUD_GRAY_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"INDUSTRIAL_IRON\"] = 565] = \"INDUSTRIAL_IRON\";\n BlockNames[BlockNames[\"INDUSTRIAL_WIRES\"] = 566] = \"INDUSTRIAL_WIRES\";\n BlockNames[BlockNames[\"INDUSTRIAL_PLATE_GRAY_PLAIN_BG\"] = 567] = \"INDUSTRIAL_PLATE_GRAY_PLAIN_BG\";\n BlockNames[BlockNames[\"INDUSTRIAL_PLATE_GRAY_GRAY_BG\"] = 568] = \"INDUSTRIAL_PLATE_GRAY_GRAY_BG\";\n BlockNames[BlockNames[\"INDUSTRIAL_PLATE_GRAY_BLUE_BG\"] = 569] = \"INDUSTRIAL_PLATE_GRAY_BLUE_BG\";\n BlockNames[BlockNames[\"INDUSTRIAL_PLATE_GRAY_GREEN_BG\"] = 570] = \"INDUSTRIAL_PLATE_GRAY_GREEN_BG\";\n BlockNames[BlockNames[\"INDUSTRIAL_PLATE_GRAY_YELLOW_BG\"] = 571] = \"INDUSTRIAL_PLATE_GRAY_YELLOW_BG\";\n BlockNames[BlockNames[\"INDUSTRIAL_ONEWAY_GRAY_TOP\"] = 572] = \"INDUSTRIAL_ONEWAY_GRAY_TOP\";\n BlockNames[BlockNames[\"INDUSTRIAL_SCAFFOLDING_HORIZONTAL\"] = 573] = \"INDUSTRIAL_SCAFFOLDING_HORIZONTAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_SCAFFOLDING_VERTICAL\"] = 574] = \"INDUSTRIAL_SCAFFOLDING_VERTICAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_PISTON_LEFT\"] = 575] = \"INDUSTRIAL_PISTON_LEFT\";\n BlockNames[BlockNames[\"INDUSTRIAL_PISTON_TOP\"] = 576] = \"INDUSTRIAL_PISTON_TOP\";\n BlockNames[BlockNames[\"INDUSTRIAL_PISTON_RIGHT\"] = 577] = \"INDUSTRIAL_PISTON_RIGHT\";\n BlockNames[BlockNames[\"INDUSTRIAL_PISTON_BOTTOM\"] = 578] = \"INDUSTRIAL_PISTON_BOTTOM\";\n BlockNames[BlockNames[\"INDUSTRIAL_PIPE_THICK_HORIZONTAL\"] = 579] = \"INDUSTRIAL_PIPE_THICK_HORIZONTAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_PIPE_THICK_VERTICAL\"] = 580] = \"INDUSTRIAL_PIPE_THICK_VERTICAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_PIPE_THIN_HORIZONTAL\"] = 581] = \"INDUSTRIAL_PIPE_THIN_HORIZONTAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_PIPE_THIN_VERTICAL\"] = 582] = \"INDUSTRIAL_PIPE_THIN_VERTICAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_CONVEYOR_LEFT\"] = 583] = \"INDUSTRIAL_CONVEYOR_LEFT\";\n BlockNames[BlockNames[\"INDUSTRIAL_CONVEYOR_MIDDLE_PEG\"] = 584] = \"INDUSTRIAL_CONVEYOR_MIDDLE_PEG\";\n BlockNames[BlockNames[\"INDUSTRIAL_CONVEYOR_MIDDLE\"] = 585] = \"INDUSTRIAL_CONVEYOR_MIDDLE\";\n BlockNames[BlockNames[\"INDUSTRIAL_CONVEYOR_RIGHT\"] = 586] = \"INDUSTRIAL_CONVEYOR_RIGHT\";\n BlockNames[BlockNames[\"INDUSTRIAL_CAUTION_SIGN_FIRE\"] = 587] = \"INDUSTRIAL_CAUTION_SIGN_FIRE\";\n BlockNames[BlockNames[\"INDUSTRIAL_CAUTION_SIGN_DEATH\"] = 588] = \"INDUSTRIAL_CAUTION_SIGN_DEATH\";\n BlockNames[BlockNames[\"INDUSTRIAL_CAUTION_SIGN_ELECTRICITY\"] = 589] = \"INDUSTRIAL_CAUTION_SIGN_ELECTRICITY\";\n BlockNames[BlockNames[\"INDUSTRIAL_CAUTION_SIGN_ENTRY\"] = 590] = \"INDUSTRIAL_CAUTION_SIGN_ENTRY\";\n BlockNames[BlockNames[\"INDUSTRIAL_CAUTION_TAPE_HORIZONTAL\"] = 591] = \"INDUSTRIAL_CAUTION_TAPE_HORIZONTAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_CAUTION_TAPE_VERTICAL\"] = 592] = \"INDUSTRIAL_CAUTION_TAPE_VERTICAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_PIPE_DECORATION_HORIZONTAL\"] = 593] = \"INDUSTRIAL_PIPE_DECORATION_HORIZONTAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_PIPE_DECORATION_VERTICAL\"] = 594] = \"INDUSTRIAL_PIPE_DECORATION_VERTICAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_LAMP_OVERHEAD\"] = 595] = \"INDUSTRIAL_LAMP_OVERHEAD\";\n BlockNames[BlockNames[\"INDUSTRIAL_TESLA_COIL\"] = 596] = \"INDUSTRIAL_TESLA_COIL\";\n BlockNames[BlockNames[\"INDUSTRIAL_WIRE_HORIZONTAL\"] = 597] = \"INDUSTRIAL_WIRE_HORIZONTAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_WIRE_VERTICAL\"] = 598] = \"INDUSTRIAL_WIRE_VERTICAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_ELECTRICITY\"] = 599] = \"INDUSTRIAL_ELECTRICITY\";\n BlockNames[BlockNames[\"CLAY_TILE_WHITE_BG\"] = 600] = \"CLAY_TILE_WHITE_BG\";\n BlockNames[BlockNames[\"CLAY_TILE_BRICK_BG\"] = 601] = \"CLAY_TILE_BRICK_BG\";\n BlockNames[BlockNames[\"CLAY_TILE_DIAMOND_BG\"] = 602] = \"CLAY_TILE_DIAMOND_BG\";\n BlockNames[BlockNames[\"CLAY_TILE_X_BG\"] = 603] = \"CLAY_TILE_X_BG\";\n BlockNames[BlockNames[\"CLAY_TILE_ROUGH_BG\"] = 604] = \"CLAY_TILE_ROUGH_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_ONEWAY_GRAY_TOP\"] = 605] = \"MEDIEVAL_ONEWAY_GRAY_TOP\";\n BlockNames[BlockNames[\"MEDIEVAL_BRICK\"] = 606] = \"MEDIEVAL_BRICK\";\n BlockNames[BlockNames[\"MEDIEVAL_BRICK_WINDOW\"] = 607] = \"MEDIEVAL_BRICK_WINDOW\";\n BlockNames[BlockNames[\"MEDIEVAL_ANVIL\"] = 617] = \"MEDIEVAL_ANVIL\";\n BlockNames[BlockNames[\"MEDIEVAL_BARREL\"] = 618] = \"MEDIEVAL_BARREL\";\n BlockNames[BlockNames[\"MEDIEVAL_BLINDS\"] = 619] = \"MEDIEVAL_BLINDS\";\n BlockNames[BlockNames[\"MEDIEVAL_BRICK_BG\"] = 608] = \"MEDIEVAL_BRICK_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_WOOD_BG\"] = 609] = \"MEDIEVAL_WOOD_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_STRAW_BG\"] = 610] = \"MEDIEVAL_STRAW_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_ROOF_RED_BG\"] = 611] = \"MEDIEVAL_ROOF_RED_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_ROOF_GREEN_BG\"] = 612] = \"MEDIEVAL_ROOF_GREEN_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_ROOF_BROWN_BG\"] = 613] = \"MEDIEVAL_ROOF_BROWN_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_ROOF_GRAY_BG\"] = 614] = \"MEDIEVAL_ROOF_GRAY_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_BRICK_DECORATION_TOP_MIDDLE\"] = 615] = \"MEDIEVAL_BRICK_DECORATION_TOP_MIDDLE\";\n BlockNames[BlockNames[\"MEDIEVAL_STONE\"] = 616] = \"MEDIEVAL_STONE\";\n BlockNames[BlockNames[\"MEDIEVAL_SCAFFOLDING_STRAIGHT_T\"] = 620] = \"MEDIEVAL_SCAFFOLDING_STRAIGHT_T\";\n BlockNames[BlockNames[\"MEDIEVAL_SCAFFOLDING_STRAIGHT_HORIZONTAL\"] = 621] = \"MEDIEVAL_SCAFFOLDING_STRAIGHT_HORIZONTAL\";\n BlockNames[BlockNames[\"MEDIEVAL_SCAFFOLDING_ANGLED_MIDDLE\"] = 622] = \"MEDIEVAL_SCAFFOLDING_ANGLED_MIDDLE\";\n BlockNames[BlockNames[\"MEDIEVAL_SCAFFOLDING_STRAIGHT_VERTICAL\"] = 623] = \"MEDIEVAL_SCAFFOLDING_STRAIGHT_VERTICAL\";\n BlockNames[BlockNames[\"MEDIEVAL_SCAFFOLDING_ANGLED_RIGHT\"] = 624] = \"MEDIEVAL_SCAFFOLDING_ANGLED_RIGHT\";\n BlockNames[BlockNames[\"MEDIEVAL_SCAFFOLDING_ANGLED_LEFT\"] = 625] = \"MEDIEVAL_SCAFFOLDING_ANGLED_LEFT\";\n BlockNames[BlockNames[\"MEDIEVAL_AXE_TOP_LEFT\"] = 626] = \"MEDIEVAL_AXE_TOP_LEFT\";\n BlockNames[BlockNames[\"MEDIEVAL_AXE_TOP_RIGHT\"] = 627] = \"MEDIEVAL_AXE_TOP_RIGHT\";\n BlockNames[BlockNames[\"MEDIEVAL_AXE_BOTTOM_LEFT\"] = 628] = \"MEDIEVAL_AXE_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"MEDIEVAL_AXE_BOTTOM_RIGHT\"] = 629] = \"MEDIEVAL_AXE_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"MEDIEVAL_SWORD_TOP_LEFT\"] = 630] = \"MEDIEVAL_SWORD_TOP_LEFT\";\n BlockNames[BlockNames[\"MEDIEVAL_SWORD_TOP_RIGHT\"] = 631] = \"MEDIEVAL_SWORD_TOP_RIGHT\";\n BlockNames[BlockNames[\"MEDIEVAL_SWORD_BOTTOM_LEFT\"] = 632] = \"MEDIEVAL_SWORD_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"MEDIEVAL_SWORD_BOTTOM_RIGHT\"] = 633] = \"MEDIEVAL_SWORD_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CIRCLE_BLUE\"] = 634] = \"MEDIEVAL_SHIELD_CIRCLE_BLUE\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CIRCLE_GREEN\"] = 635] = \"MEDIEVAL_SHIELD_CIRCLE_GREEN\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CIRCLE_YELLOW\"] = 636] = \"MEDIEVAL_SHIELD_CIRCLE_YELLOW\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CIRCLE_RED\"] = 637] = \"MEDIEVAL_SHIELD_CIRCLE_RED\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CURVED_BLUE\"] = 638] = \"MEDIEVAL_SHIELD_CURVED_BLUE\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CURVED_GREEN\"] = 639] = \"MEDIEVAL_SHIELD_CURVED_GREEN\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CURVED_YELLOW\"] = 640] = \"MEDIEVAL_SHIELD_CURVED_YELLOW\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CURVED_RED\"] = 641] = \"MEDIEVAL_SHIELD_CURVED_RED\";\n BlockNames[BlockNames[\"MEDIEVAL_BANNER_BLUE\"] = 642] = \"MEDIEVAL_BANNER_BLUE\";\n BlockNames[BlockNames[\"MEDIEVAL_BANNER_GREEN\"] = 643] = \"MEDIEVAL_BANNER_GREEN\";\n BlockNames[BlockNames[\"MEDIEVAL_BANNER_YELLOW\"] = 644] = \"MEDIEVAL_BANNER_YELLOW\";\n BlockNames[BlockNames[\"MEDIEVAL_BANNER_RED\"] = 645] = \"MEDIEVAL_BANNER_RED\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD\"] = 646] = \"MEDIEVAL_SHIELD\";\n BlockNames[BlockNames[\"PIPES_LEFT\"] = 647] = \"PIPES_LEFT\";\n BlockNames[BlockNames[\"PIPES_HORIZONTAL\"] = 648] = \"PIPES_HORIZONTAL\";\n BlockNames[BlockNames[\"PIPES_RIGHT\"] = 649] = \"PIPES_RIGHT\";\n BlockNames[BlockNames[\"PIPES_UP\"] = 650] = \"PIPES_UP\";\n BlockNames[BlockNames[\"PIPES_VERTICAL\"] = 651] = \"PIPES_VERTICAL\";\n BlockNames[BlockNames[\"PIPES_DOWN\"] = 652] = \"PIPES_DOWN\";\n BlockNames[BlockNames[\"OUTERSPACE_WHITE\"] = 653] = \"OUTERSPACE_WHITE\";\n BlockNames[BlockNames[\"OUTERSPACE_BLUE\"] = 654] = \"OUTERSPACE_BLUE\";\n BlockNames[BlockNames[\"OUTERSPACE_GREEN\"] = 655] = \"OUTERSPACE_GREEN\";\n BlockNames[BlockNames[\"OUTERSPACE_RED\"] = 656] = \"OUTERSPACE_RED\";\n BlockNames[BlockNames[\"OUTERSPACE_SAND\"] = 657] = \"OUTERSPACE_SAND\";\n BlockNames[BlockNames[\"OUTERSPACE_MOON\"] = 658] = \"OUTERSPACE_MOON\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_1\"] = 659] = \"OUTERSPACE_MARS_ROCK_1\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_2\"] = 660] = \"OUTERSPACE_MARS_ROCK_2\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_3\"] = 661] = \"OUTERSPACE_MARS_ROCK_3\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_4\"] = 662] = \"OUTERSPACE_MARS_ROCK_4\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_5\"] = 663] = \"OUTERSPACE_MARS_ROCK_5\";\n BlockNames[BlockNames[\"OUTERSPACE_WHITE_BG\"] = 664] = \"OUTERSPACE_WHITE_BG\";\n BlockNames[BlockNames[\"OUTERSPACE_BLUE_BG\"] = 665] = \"OUTERSPACE_BLUE_BG\";\n BlockNames[BlockNames[\"OUTERSPACE_GREEN_BG\"] = 666] = \"OUTERSPACE_GREEN_BG\";\n BlockNames[BlockNames[\"OUTERSPACE_RED_BG\"] = 667] = \"OUTERSPACE_RED_BG\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_3_BG\"] = 668] = \"OUTERSPACE_MARS_ROCK_3_BG\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_4_BG\"] = 669] = \"OUTERSPACE_MARS_ROCK_4_BG\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_5_BG\"] = 670] = \"OUTERSPACE_MARS_ROCK_5_BG\";\n BlockNames[BlockNames[\"OUTERSPACE_SIGN\"] = 671] = \"OUTERSPACE_SIGN\";\n BlockNames[BlockNames[\"OUTERSPACE_LIGHT_RED\"] = 672] = \"OUTERSPACE_LIGHT_RED\";\n BlockNames[BlockNames[\"OUTERSPACE_LIGHT_BLUE\"] = 673] = \"OUTERSPACE_LIGHT_BLUE\";\n BlockNames[BlockNames[\"OUTERSPACE_LIGHT_GREEN\"] = 674] = \"OUTERSPACE_LIGHT_GREEN\";\n BlockNames[BlockNames[\"OUTERSPACE_LIGHT_YELLOW\"] = 675] = \"OUTERSPACE_LIGHT_YELLOW\";\n BlockNames[BlockNames[\"OUTERSPACE_LIGHT_MAGENTA\"] = 676] = \"OUTERSPACE_LIGHT_MAGENTA\";\n BlockNames[BlockNames[\"OUTERSPACE_LIGHT_CYAN\"] = 677] = \"OUTERSPACE_LIGHT_CYAN\";\n BlockNames[BlockNames[\"OUTERSPACE_COMPUTER\"] = 678] = \"OUTERSPACE_COMPUTER\";\n BlockNames[BlockNames[\"OUTERSPACE_STAR_RED\"] = 679] = \"OUTERSPACE_STAR_RED\";\n BlockNames[BlockNames[\"OUTERSPACE_STAR_BLUE\"] = 680] = \"OUTERSPACE_STAR_BLUE\";\n BlockNames[BlockNames[\"OUTERSPACE_STAR_YELLOW\"] = 681] = \"OUTERSPACE_STAR_YELLOW\";\n BlockNames[BlockNames[\"OUTERSPACE_ROCK_GRAY\"] = 682] = \"OUTERSPACE_ROCK_GRAY\";\n BlockNames[BlockNames[\"GARDEN_ROCK\"] = 683] = \"GARDEN_ROCK\";\n BlockNames[BlockNames[\"GARDEN_GRASS\"] = 684] = \"GARDEN_GRASS\";\n BlockNames[BlockNames[\"GARDEN_LEAVES\"] = 685] = \"GARDEN_LEAVES\";\n BlockNames[BlockNames[\"GARDEN_GRASSPLANT\"] = 686] = \"GARDEN_GRASSPLANT\";\n BlockNames[BlockNames[\"GARDEN_FENCE\"] = 687] = \"GARDEN_FENCE\";\n BlockNames[BlockNames[\"GARDEN_LATTICE\"] = 688] = \"GARDEN_LATTICE\";\n BlockNames[BlockNames[\"GARDEN_ONEWAY_LEAF_BRANCH\"] = 689] = \"GARDEN_ONEWAY_LEAF_BRANCH\";\n BlockNames[BlockNames[\"GARDEN_ONEWAY_LEAF_LEFT\"] = 690] = \"GARDEN_ONEWAY_LEAF_LEFT\";\n BlockNames[BlockNames[\"GARDEN_ONEWAY_LEAF_RIGHT\"] = 691] = \"GARDEN_ONEWAY_LEAF_RIGHT\";\n BlockNames[BlockNames[\"GARDEN_SNAIL\"] = 692] = \"GARDEN_SNAIL\";\n BlockNames[BlockNames[\"GARDEN_BUTTERFLY\"] = 693] = \"GARDEN_BUTTERFLY\";\n BlockNames[BlockNames[\"GARDEN_ROCK_BG\"] = 694] = \"GARDEN_ROCK_BG\";\n BlockNames[BlockNames[\"GARDEN_GRASS_BG\"] = 695] = \"GARDEN_GRASS_BG\";\n BlockNames[BlockNames[\"GARDEN_LEAVES_BG\"] = 696] = \"GARDEN_LEAVES_BG\";\n BlockNames[BlockNames[\"GARDEN_FRAME\"] = 697] = \"GARDEN_FRAME\";\n BlockNames[BlockNames[\"DOMESTIC_TILE\"] = 698] = \"DOMESTIC_TILE\";\n BlockNames[BlockNames[\"DOMESTIC_WOOD\"] = 699] = \"DOMESTIC_WOOD\";\n BlockNames[BlockNames[\"DOMESTIC_WOOD_PANEL\"] = 700] = \"DOMESTIC_WOOD_PANEL\";\n BlockNames[BlockNames[\"DOMESTIC_WALLPAPER_YELLOW_BG\"] = 701] = \"DOMESTIC_WALLPAPER_YELLOW_BG\";\n BlockNames[BlockNames[\"DOMESTIC_WALLPAPER_BROWN_BG\"] = 702] = \"DOMESTIC_WALLPAPER_BROWN_BG\";\n BlockNames[BlockNames[\"DOMESTIC_WALLPAPER_RED_BG\"] = 703] = \"DOMESTIC_WALLPAPER_RED_BG\";\n BlockNames[BlockNames[\"DOMESTIC_WALLPAPER_BLUE_BG\"] = 704] = \"DOMESTIC_WALLPAPER_BLUE_BG\";\n BlockNames[BlockNames[\"DOMESTIC_WALLPAPER_GREEN_BG\"] = 705] = \"DOMESTIC_WALLPAPER_GREEN_BG\";\n BlockNames[BlockNames[\"DOMESTIC_LAMP\"] = 706] = \"DOMESTIC_LAMP\";\n BlockNames[BlockNames[\"DOMESTIC_LIGHT_BULB_TOP_ON\"] = 707] = \"DOMESTIC_LIGHT_BULB_TOP_ON\";\n BlockNames[BlockNames[\"DOMESTIC_LIGHT_BULB_TOP_OFF\"] = 708] = \"DOMESTIC_LIGHT_BULB_TOP_OFF\";\n BlockNames[BlockNames[\"DOMESTIC_LIGHT_BULB_BOTTOM_ON\"] = 709] = \"DOMESTIC_LIGHT_BULB_BOTTOM_ON\";\n BlockNames[BlockNames[\"DOMESTIC_LIGHT_BULB_BOTTOM_OFF\"] = 710] = \"DOMESTIC_LIGHT_BULB_BOTTOM_OFF\";\n BlockNames[BlockNames[\"DOMESTIC_BOTTOM_RIGHT\"] = 711] = \"DOMESTIC_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_T_BOTTOM\"] = 712] = \"DOMESTIC_PIPE_T_BOTTOM\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_BOTTOM_LEFT\"] = 713] = \"DOMESTIC_PIPE_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_STRAIGHT_HORIZONTAL\"] = 714] = \"DOMESTIC_PIPE_STRAIGHT_HORIZONTAL\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_T_RIGHT\"] = 715] = \"DOMESTIC_PIPE_T_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_CROSS\"] = 716] = \"DOMESTIC_PIPE_CROSS\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_T_LEFT\"] = 717] = \"DOMESTIC_PIPE_T_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_STRAIGHT_VERTICAL\"] = 718] = \"DOMESTIC_PIPE_STRAIGHT_VERTICAL\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_TOP_RIGHT\"] = 719] = \"DOMESTIC_PIPE_TOP_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_T_TOP\"] = 720] = \"DOMESTIC_PIPE_T_TOP\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_TOP_LEFT\"] = 721] = \"DOMESTIC_PIPE_TOP_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_PAINTING_BLUE\"] = 722] = \"DOMESTIC_PAINTING_BLUE\";\n BlockNames[BlockNames[\"DOMESTIC_PAINTING_GREEN\"] = 723] = \"DOMESTIC_PAINTING_GREEN\";\n BlockNames[BlockNames[\"DOMESTIC_PAINTING_BLUE_DARK\"] = 724] = \"DOMESTIC_PAINTING_BLUE_DARK\";\n BlockNames[BlockNames[\"DOMESTIC_PAINTING_PURPLE\"] = 725] = \"DOMESTIC_PAINTING_PURPLE\";\n BlockNames[BlockNames[\"DOMESTIC_VASE_BLUE\"] = 726] = \"DOMESTIC_VASE_BLUE\";\n BlockNames[BlockNames[\"DOMESTIC_VASE_PURPLE\"] = 727] = \"DOMESTIC_VASE_PURPLE\";\n BlockNames[BlockNames[\"DOMESTIC_VASE_ORANGE\"] = 728] = \"DOMESTIC_VASE_ORANGE\";\n BlockNames[BlockNames[\"DOMESTIC_VASE_YELLOW\"] = 729] = \"DOMESTIC_VASE_YELLOW\";\n BlockNames[BlockNames[\"DOMESTIC_TELEVISION_BLACK\"] = 730] = \"DOMESTIC_TELEVISION_BLACK\";\n BlockNames[BlockNames[\"DOMESTIC_TELEVISION_GRAY\"] = 731] = \"DOMESTIC_TELEVISION_GRAY\";\n BlockNames[BlockNames[\"DOMESTIC_TELEVISION_BLUE\"] = 732] = \"DOMESTIC_TELEVISION_BLUE\";\n BlockNames[BlockNames[\"DOMESTIC_TELEVISION_YELLOW\"] = 733] = \"DOMESTIC_TELEVISION_YELLOW\";\n BlockNames[BlockNames[\"DOMESTIC_WINDOW_BLACK\"] = 734] = \"DOMESTIC_WINDOW_BLACK\";\n BlockNames[BlockNames[\"DOMESTIC_WINDOW_BLUE\"] = 735] = \"DOMESTIC_WINDOW_BLUE\";\n BlockNames[BlockNames[\"DOMESTIC_WINDOW_ORANGE\"] = 736] = \"DOMESTIC_WINDOW_ORANGE\";\n BlockNames[BlockNames[\"DOMESTIC_WINDOW_YELLOW\"] = 737] = \"DOMESTIC_WINDOW_YELLOW\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_YELLOW_LEFT\"] = 738] = \"DOMESTIC_HALF_YELLOW_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_YELLOW_TOP\"] = 739] = \"DOMESTIC_HALF_YELLOW_TOP\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_YELLOW_RIGHT\"] = 740] = \"DOMESTIC_HALF_YELLOW_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_YELLOW_BOTTOM\"] = 741] = \"DOMESTIC_HALF_YELLOW_BOTTOM\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_BROWN_LEFT\"] = 742] = \"DOMESTIC_HALF_BROWN_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_BROWN_TOP\"] = 743] = \"DOMESTIC_HALF_BROWN_TOP\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_BROWN_RIGHT\"] = 744] = \"DOMESTIC_HALF_BROWN_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_BROWN_BOTTOM\"] = 745] = \"DOMESTIC_HALF_BROWN_BOTTOM\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_WHITE_LEFT\"] = 746] = \"DOMESTIC_HALF_WHITE_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_WHITE_TOP\"] = 747] = \"DOMESTIC_HALF_WHITE_TOP\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_WHITE_RIGHT\"] = 748] = \"DOMESTIC_HALF_WHITE_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_WHITE_BOTTOM\"] = 749] = \"DOMESTIC_HALF_WHITE_BOTTOM\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_TOP_LEFT\"] = 750] = \"DOMESTIC_FRAME_BORDER_TOP_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_TOP\"] = 751] = \"DOMESTIC_FRAME_BORDER_TOP\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_TOP_RIGHT\"] = 752] = \"DOMESTIC_FRAME_BORDER_TOP_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_TOP_BOTTOM\"] = 753] = \"DOMESTIC_FRAME_BORDER_TOP_BOTTOM\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_LEFT\"] = 754] = \"DOMESTIC_FRAME_BORDER_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_FULL\"] = 755] = \"DOMESTIC_FRAME_BORDER_FULL\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_RIGHT\"] = 756] = \"DOMESTIC_FRAME_BORDER_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_LEFT_RIGHT\"] = 757] = \"DOMESTIC_FRAME_BORDER_LEFT_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_BOTTOM_LEFT\"] = 758] = \"DOMESTIC_FRAME_BORDER_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_BOTTOM\"] = 759] = \"DOMESTIC_FRAME_BORDER_BOTTOM\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_BOTTOM_RIGHT\"] = 760] = \"DOMESTIC_FRAME_BORDER_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"DOJO_ONEWAY_WHITE_TOP\"] = 761] = \"DOJO_ONEWAY_WHITE_TOP\";\n BlockNames[BlockNames[\"DOJO_ONEWAY_GRAY_TOP\"] = 762] = \"DOJO_ONEWAY_GRAY_TOP\";\n BlockNames[BlockNames[\"DOJO_WALLPAPER_WHITE_BG\"] = 763] = \"DOJO_WALLPAPER_WHITE_BG\";\n BlockNames[BlockNames[\"DOJO_WALLPAPER_GRAY_BG\"] = 764] = \"DOJO_WALLPAPER_GRAY_BG\";\n BlockNames[BlockNames[\"DOJO_SHINGLES_BLUE_BG\"] = 765] = \"DOJO_SHINGLES_BLUE_BG\";\n BlockNames[BlockNames[\"DOJO_SHINGLES_BLUE_DARK_BG\"] = 766] = \"DOJO_SHINGLES_BLUE_DARK_BG\";\n BlockNames[BlockNames[\"DOJO_SHINGLES_RED_BG\"] = 767] = \"DOJO_SHINGLES_RED_BG\";\n BlockNames[BlockNames[\"DOJO_SHINGLES_RED_DARK_BG\"] = 768] = \"DOJO_SHINGLES_RED_DARK_BG\";\n BlockNames[BlockNames[\"DOJO_SHINGLES_GREEN_BG\"] = 769] = \"DOJO_SHINGLES_GREEN_BG\";\n BlockNames[BlockNames[\"DOJO_SHINGLES_GREEN_DARK_BG\"] = 770] = \"DOJO_SHINGLES_GREEN_DARK_BG\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_BLUE_LEFT\"] = 771] = \"DOJO_ROOFTOP_BLUE_LEFT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_BLUE_RIGHT\"] = 772] = \"DOJO_ROOFTOP_BLUE_RIGHT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_RED_LEFT\"] = 773] = \"DOJO_ROOFTOP_RED_LEFT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_RED_RIGHT\"] = 774] = \"DOJO_ROOFTOP_RED_RIGHT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_GREEN_LEFT\"] = 775] = \"DOJO_ROOFTOP_GREEN_LEFT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_GREEN_RIGHT\"] = 776] = \"DOJO_ROOFTOP_GREEN_RIGHT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_GREEN_DARK_LEFT\"] = 781] = \"DOJO_ROOFTOP_GREEN_DARK_LEFT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_GREEN_DARK_RIGHT\"] = 782] = \"DOJO_ROOFTOP_GREEN_DARK_RIGHT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_BLUE_DARK_LEFT\"] = 777] = \"DOJO_ROOFTOP_BLUE_DARK_LEFT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_BLUE_DARK_RIGHT\"] = 778] = \"DOJO_ROOFTOP_BLUE_DARK_RIGHT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_RED_DARK_LEFT\"] = 779] = \"DOJO_ROOFTOP_RED_DARK_LEFT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_RED_DARK_RIGHT\"] = 780] = \"DOJO_ROOFTOP_RED_DARK_RIGHT\";\n BlockNames[BlockNames[\"DOJO_WINDOW_BRIGHT\"] = 783] = \"DOJO_WINDOW_BRIGHT\";\n BlockNames[BlockNames[\"DOJO_WINDOW_DARK\"] = 784] = \"DOJO_WINDOW_DARK\";\n BlockNames[BlockNames[\"DOJO_CHINESE_CHARACTER_AND\"] = 785] = \"DOJO_CHINESE_CHARACTER_AND\";\n BlockNames[BlockNames[\"DOJO_CHINESE_CHARACTER_BOOK\"] = 786] = \"DOJO_CHINESE_CHARACTER_BOOK\";\n BlockNames[BlockNames[\"DOJO_CHINESE_SYMBOL_YIN_YANG\"] = 787] = \"DOJO_CHINESE_SYMBOL_YIN_YANG\";\n BlockNames[BlockNames[\"CHRISTMAS_TREE_LIGHTS\"] = 789] = \"CHRISTMAS_TREE_LIGHTS\";\n BlockNames[BlockNames[\"CHRISTMAS_TREE_PLAIN\"] = 788] = \"CHRISTMAS_TREE_PLAIN\";\n BlockNames[BlockNames[\"CHRISTMAS_FENCE_SNOW\"] = 791] = \"CHRISTMAS_FENCE_SNOW\";\n BlockNames[BlockNames[\"CHRISTMAS_FENCE_PLAIN\"] = 790] = \"CHRISTMAS_FENCE_PLAIN\";\n BlockNames[BlockNames[\"CHRISTMAS_ORNAMENT_RED\"] = 792] = \"CHRISTMAS_ORNAMENT_RED\";\n BlockNames[BlockNames[\"CHRISTMAS_ORNAMENT_GREEN\"] = 793] = \"CHRISTMAS_ORNAMENT_GREEN\";\n BlockNames[BlockNames[\"CHRISTMAS_ORNAMENT_BLUE\"] = 794] = \"CHRISTMAS_ORNAMENT_BLUE\";\n BlockNames[BlockNames[\"CHRISTMAS_WREATH\"] = 795] = \"CHRISTMAS_WREATH\";\n BlockNames[BlockNames[\"CHRISTMAS_STAR\"] = 796] = \"CHRISTMAS_STAR\";\n BlockNames[BlockNames[\"CHRISTMAS_WRAPPING_PAPER_YELLOW_BG\"] = 797] = \"CHRISTMAS_WRAPPING_PAPER_YELLOW_BG\";\n BlockNames[BlockNames[\"CHRISTMAS_WRAPPING_PAPER_GREEN_BG\"] = 798] = \"CHRISTMAS_WRAPPING_PAPER_GREEN_BG\";\n BlockNames[BlockNames[\"CHRISTMAS_WRAPPING_PAPER_BLUE_BG\"] = 799] = \"CHRISTMAS_WRAPPING_PAPER_BLUE_BG\";\n BlockNames[BlockNames[\"CHRISTMAS_RIBBON_BLUE_VERTICAL\"] = 800] = \"CHRISTMAS_RIBBON_BLUE_VERTICAL\";\n BlockNames[BlockNames[\"CHRISTMAS_RIBBON_BLUE_HORIZONTAL\"] = 801] = \"CHRISTMAS_RIBBON_BLUE_HORIZONTAL\";\n BlockNames[BlockNames[\"CHRISTMAS_RIBBON_BLUE_CROSS\"] = 802] = \"CHRISTMAS_RIBBON_BLUE_CROSS\";\n BlockNames[BlockNames[\"CHRISTMAS_RIBBON_PURPLE_VERTICAL\"] = 803] = \"CHRISTMAS_RIBBON_PURPLE_VERTICAL\";\n BlockNames[BlockNames[\"CHRISTMAS_RIBBON_PURPLE_HORIZONTAL\"] = 804] = \"CHRISTMAS_RIBBON_PURPLE_HORIZONTAL\";\n BlockNames[BlockNames[\"CHRISTMAS_RIBBON_PURPLE_CROSS\"] = 805] = \"CHRISTMAS_RIBBON_PURPLE_CROSS\";\n BlockNames[BlockNames[\"CHRISTMAS_CANDY_CANE\"] = 806] = \"CHRISTMAS_CANDY_CANE\";\n BlockNames[BlockNames[\"CHRISTMAS_MISTLETOE\"] = 807] = \"CHRISTMAS_MISTLETOE\";\n BlockNames[BlockNames[\"CHRISTMAS_STOCKING\"] = 808] = \"CHRISTMAS_STOCKING\";\n BlockNames[BlockNames[\"CHRISTMAS_RIBBON_RED_BOW\"] = 809] = \"CHRISTMAS_RIBBON_RED_BOW\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_FULL_RED\"] = 810] = \"CHRISTMAS_GIFT_FULL_RED\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_HALF_RED\"] = 811] = \"CHRISTMAS_GIFT_HALF_RED\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_FULL_GREEN\"] = 812] = \"CHRISTMAS_GIFT_FULL_GREEN\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_HALF_GREEN\"] = 813] = \"CHRISTMAS_GIFT_HALF_GREEN\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_FULL_WHITE\"] = 814] = \"CHRISTMAS_GIFT_FULL_WHITE\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_HALF_WHITE\"] = 815] = \"CHRISTMAS_GIFT_HALF_WHITE\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_FULL_BLUE\"] = 816] = \"CHRISTMAS_GIFT_FULL_BLUE\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_HALF_BLUE\"] = 817] = \"CHRISTMAS_GIFT_HALF_BLUE\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_FULL_YELLOW\"] = 818] = \"CHRISTMAS_GIFT_FULL_YELLOW\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_HALF_YELLOW\"] = 819] = \"CHRISTMAS_GIFT_HALF_YELLOW\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_TOP_RED\"] = 820] = \"CHRISTMAS_STRING_LIGHT_TOP_RED\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_BOTTOM_RED\"] = 825] = \"CHRISTMAS_STRING_LIGHT_BOTTOM_RED\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_TOP_YELLOW\"] = 821] = \"CHRISTMAS_STRING_LIGHT_TOP_YELLOW\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_BOTTOM_YELLOW\"] = 826] = \"CHRISTMAS_STRING_LIGHT_BOTTOM_YELLOW\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_TOP_GREEN\"] = 822] = \"CHRISTMAS_STRING_LIGHT_TOP_GREEN\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_BOTTOM_GREEN\"] = 827] = \"CHRISTMAS_STRING_LIGHT_BOTTOM_GREEN\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_TOP_BLUE\"] = 823] = \"CHRISTMAS_STRING_LIGHT_TOP_BLUE\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_BOTTOM_BLUE\"] = 828] = \"CHRISTMAS_STRING_LIGHT_BOTTOM_BLUE\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_TOP_PURPLE\"] = 824] = \"CHRISTMAS_STRING_LIGHT_TOP_PURPLE\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_BOTTOM_PURPLE\"] = 829] = \"CHRISTMAS_STRING_LIGHT_BOTTOM_PURPLE\";\n BlockNames[BlockNames[\"CHRISTMAS_BELL_YELLOW\"] = 830] = \"CHRISTMAS_BELL_YELLOW\";\n BlockNames[BlockNames[\"CHRISTMAS_BELL_GROUP_RED\"] = 831] = \"CHRISTMAS_BELL_GROUP_RED\";\n BlockNames[BlockNames[\"CHRISTMAS_CANDLE_RED\"] = 832] = \"CHRISTMAS_CANDLE_RED\";\n BlockNames[BlockNames[\"SCIFI_PANEL_RED\"] = 833] = \"SCIFI_PANEL_RED\";\n BlockNames[BlockNames[\"SCIFI_PANEL_BLUE\"] = 834] = \"SCIFI_PANEL_BLUE\";\n BlockNames[BlockNames[\"SCIFI_PANEL_GREEN\"] = 835] = \"SCIFI_PANEL_GREEN\";\n BlockNames[BlockNames[\"SCIFI_PANEL_YELLOW\"] = 836] = \"SCIFI_PANEL_YELLOW\";\n BlockNames[BlockNames[\"SCIFI_PANEL_MAGENTA\"] = 837] = \"SCIFI_PANEL_MAGENTA\";\n BlockNames[BlockNames[\"SCIFI_PANEL_CYAN\"] = 838] = \"SCIFI_PANEL_CYAN\";\n BlockNames[BlockNames[\"SCIFI_METAL_GRAY\"] = 839] = \"SCIFI_METAL_GRAY\";\n BlockNames[BlockNames[\"SCIFI_METAL_WHITE\"] = 840] = \"SCIFI_METAL_WHITE\";\n BlockNames[BlockNames[\"SCIFI_BROWN_LEOPARD\"] = 841] = \"SCIFI_BROWN_LEOPARD\";\n BlockNames[BlockNames[\"SCIFI_ONEWAY_RED_TOP\"] = 842] = \"SCIFI_ONEWAY_RED_TOP\";\n BlockNames[BlockNames[\"SCIFI_ONEWAY_BLUE_TOP\"] = 843] = \"SCIFI_ONEWAY_BLUE_TOP\";\n BlockNames[BlockNames[\"SCIFI_ONEWAY_GREEN_TOP\"] = 844] = \"SCIFI_ONEWAY_GREEN_TOP\";\n BlockNames[BlockNames[\"SCIFI_ONEWAY_YELLOW_TOP\"] = 845] = \"SCIFI_ONEWAY_YELLOW_TOP\";\n BlockNames[BlockNames[\"SCIFI_ONEWAY_MAGENTA_TOP\"] = 846] = \"SCIFI_ONEWAY_MAGENTA_TOP\";\n BlockNames[BlockNames[\"SCIFI_ONEWAY_CYAN_TOP\"] = 847] = \"SCIFI_ONEWAY_CYAN_TOP\";\n BlockNames[BlockNames[\"SCIFI_LASER_BLUE_CORNER_BOTTOMRIGHT\"] = 848] = \"SCIFI_LASER_BLUE_CORNER_BOTTOMRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_BLUE_CORNER_BOTTOMLEFT\"] = 849] = \"SCIFI_LASER_BLUE_CORNER_BOTTOMLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_BLUE_STRAIGHT_HORIZONTAL\"] = 850] = \"SCIFI_LASER_BLUE_STRAIGHT_HORIZONTAL\";\n BlockNames[BlockNames[\"SCIFI_LASER_BLUE_CORNER_TOPRIGHT\"] = 851] = \"SCIFI_LASER_BLUE_CORNER_TOPRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_BLUE_CORNER_TOPLEFT\"] = 852] = \"SCIFI_LASER_BLUE_CORNER_TOPLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_BLUE_STRAIGHT_VERTICAL\"] = 853] = \"SCIFI_LASER_BLUE_STRAIGHT_VERTICAL\";\n BlockNames[BlockNames[\"SCIFI_LASER_GREEN_CORNER_BOTTOMRIGHT\"] = 854] = \"SCIFI_LASER_GREEN_CORNER_BOTTOMRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_GREEN_CORNER_BOTTOMLEFT\"] = 855] = \"SCIFI_LASER_GREEN_CORNER_BOTTOMLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_GREEN_STRAIGHT_HORIZONTAL\"] = 856] = \"SCIFI_LASER_GREEN_STRAIGHT_HORIZONTAL\";\n BlockNames[BlockNames[\"SCIFI_LASER_GREEN_CORNER_TOPRIGHT\"] = 857] = \"SCIFI_LASER_GREEN_CORNER_TOPRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_GREEN_CORNER_TOPLEFT\"] = 858] = \"SCIFI_LASER_GREEN_CORNER_TOPLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_GREEN_STRAIGHT_VERTICAL\"] = 859] = \"SCIFI_LASER_GREEN_STRAIGHT_VERTICAL\";\n BlockNames[BlockNames[\"SCIFI_LASER_ORANGE_CORNER_BOTTOMRIGHT\"] = 860] = \"SCIFI_LASER_ORANGE_CORNER_BOTTOMRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_ORANGE_CORNER_BOTTOMLEFT\"] = 861] = \"SCIFI_LASER_ORANGE_CORNER_BOTTOMLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_ORANGE_STRAIGHT_HORIZONTAL\"] = 862] = \"SCIFI_LASER_ORANGE_STRAIGHT_HORIZONTAL\";\n BlockNames[BlockNames[\"SCIFI_LASER_ORANGE_CORNER_TOPRIGHT\"] = 863] = \"SCIFI_LASER_ORANGE_CORNER_TOPRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_ORANGE_CORNER_TOPLEFT\"] = 864] = \"SCIFI_LASER_ORANGE_CORNER_TOPLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_ORANGE_STRAIGHT_VERITICAL\"] = 865] = \"SCIFI_LASER_ORANGE_STRAIGHT_VERITICAL\";\n BlockNames[BlockNames[\"SCIFI_LASER_RED_CORNER_BOTTOMRIGHT\"] = 866] = \"SCIFI_LASER_RED_CORNER_BOTTOMRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_RED_CORNER_BOTTOMLEFT\"] = 867] = \"SCIFI_LASER_RED_CORNER_BOTTOMLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_RED_STRAIGHT_HORIZONTAL\"] = 868] = \"SCIFI_LASER_RED_STRAIGHT_HORIZONTAL\";\n BlockNames[BlockNames[\"SCIFI_LASER_RED_CORNER_TOPRIGHT\"] = 869] = \"SCIFI_LASER_RED_CORNER_TOPRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_RED_CORNER_TOPLEFT\"] = 870] = \"SCIFI_LASER_RED_CORNER_TOPLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_RED_STRAIGHT_VERTICAL\"] = 871] = \"SCIFI_LASER_RED_STRAIGHT_VERTICAL\";\n BlockNames[BlockNames[\"SCIFI_OUTLINE_GRAY_BG\"] = 872] = \"SCIFI_OUTLINE_GRAY_BG\";\n BlockNames[BlockNames[\"PRISON_BARS\"] = 873] = \"PRISON_BARS\";\n BlockNames[BlockNames[\"PRISON_BRICK\"] = 874] = \"PRISON_BRICK\";\n BlockNames[BlockNames[\"PRISON_BRICK_BG\"] = 875] = \"PRISON_BRICK_BG\";\n BlockNames[BlockNames[\"PRISON_WINDOW_ORANGE_BG\"] = 876] = \"PRISON_WINDOW_ORANGE_BG\";\n BlockNames[BlockNames[\"PRISON_WINDOW_BLUE_BG\"] = 877] = \"PRISON_WINDOW_BLUE_BG\";\n BlockNames[BlockNames[\"PRISON_WINDOW_BLACK_BG\"] = 878] = \"PRISON_WINDOW_BLACK_BG\";\n BlockNames[BlockNames[\"PIRATE_WOOD_PLANK_BROWN\"] = 879] = \"PIRATE_WOOD_PLANK_BROWN\";\n BlockNames[BlockNames[\"PIRATE_CHEST_BROWN\"] = 880] = \"PIRATE_CHEST_BROWN\";\n BlockNames[BlockNames[\"PIRATE_ONEWAY_BROWN_TOP\"] = 881] = \"PIRATE_ONEWAY_BROWN_TOP\";\n BlockNames[BlockNames[\"PIRATE_SHIP_BORDER_BROWN\"] = 882] = \"PIRATE_SHIP_BORDER_BROWN\";\n BlockNames[BlockNames[\"PIRATE_SKELETON_HEAD\"] = 883] = \"PIRATE_SKELETON_HEAD\";\n BlockNames[BlockNames[\"PIRATE_CANNON\"] = 884] = \"PIRATE_CANNON\";\n BlockNames[BlockNames[\"PIRATE_PORT_WINDOW\"] = 885] = \"PIRATE_PORT_WINDOW\";\n BlockNames[BlockNames[\"PIRATE_WOOD_PLANK_LIGHT_BROWN_BG\"] = 886] = \"PIRATE_WOOD_PLANK_LIGHT_BROWN_BG\";\n BlockNames[BlockNames[\"PIRATE_WOOD_PLANK_BROWN_BG\"] = 887] = \"PIRATE_WOOD_PLANK_BROWN_BG\";\n BlockNames[BlockNames[\"PIRATE_WOOD_PLANK_DARK_BROWN_BG\"] = 888] = \"PIRATE_WOOD_PLANK_DARK_BROWN_BG\";\n BlockNames[BlockNames[\"PIRATE_SKELETON_FLAG_BG\"] = 889] = \"PIRATE_SKELETON_FLAG_BG\";\n BlockNames[BlockNames[\"PLASTIC_RED\"] = 890] = \"PLASTIC_RED\";\n BlockNames[BlockNames[\"PLASTIC_ORANGE\"] = 891] = \"PLASTIC_ORANGE\";\n BlockNames[BlockNames[\"PLASTIC_YELLOW\"] = 892] = \"PLASTIC_YELLOW\";\n BlockNames[BlockNames[\"PLASTIC_LIME\"] = 893] = \"PLASTIC_LIME\";\n BlockNames[BlockNames[\"PLASTIC_GREEN\"] = 894] = \"PLASTIC_GREEN\";\n BlockNames[BlockNames[\"PLASTIC_CYAN\"] = 895] = \"PLASTIC_CYAN\";\n BlockNames[BlockNames[\"PLASTIC_BLUE\"] = 896] = \"PLASTIC_BLUE\";\n BlockNames[BlockNames[\"PLASTIC_MAGENTA\"] = 897] = \"PLASTIC_MAGENTA\";\n BlockNames[BlockNames[\"LAVA_YELLOW\"] = 898] = \"LAVA_YELLOW\";\n BlockNames[BlockNames[\"LAVA_ORANGE\"] = 899] = \"LAVA_ORANGE\";\n BlockNames[BlockNames[\"LAVA_DARK_ORANGE\"] = 900] = \"LAVA_DARK_ORANGE\";\n BlockNames[BlockNames[\"LAVA_YELLOW_BG\"] = 901] = \"LAVA_YELLOW_BG\";\n BlockNames[BlockNames[\"LAVA_ORANGE_BG\"] = 902] = \"LAVA_ORANGE_BG\";\n BlockNames[BlockNames[\"LAVA_DARK_RED_BG\"] = 903] = \"LAVA_DARK_RED_BG\";\n BlockNames[BlockNames[\"GOLD_BASIC\"] = 904] = \"GOLD_BASIC\";\n BlockNames[BlockNames[\"GOLD_BRICK\"] = 905] = \"GOLD_BRICK\";\n BlockNames[BlockNames[\"GOLD_CHISLED\"] = 906] = \"GOLD_CHISLED\";\n BlockNames[BlockNames[\"GOLD_TILE\"] = 907] = \"GOLD_TILE\";\n BlockNames[BlockNames[\"GOLD_MANTLE_ONEWAY_TOP\"] = 908] = \"GOLD_MANTLE_ONEWAY_TOP\";\n BlockNames[BlockNames[\"GOLD_BASIC_BG\"] = 909] = \"GOLD_BASIC_BG\";\n BlockNames[BlockNames[\"GOLD_BRICK_BG\"] = 910] = \"GOLD_BRICK_BG\";\n BlockNames[BlockNames[\"GOLD_CHISLED_BG\"] = 911] = \"GOLD_CHISLED_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_PLYWOOD\"] = 912] = \"CONSTRUCTION_PLYWOOD\";\n BlockNames[BlockNames[\"CONSTRUCTION_GRAVEL\"] = 913] = \"CONSTRUCTION_GRAVEL\";\n BlockNames[BlockNames[\"CONSTRUCTION_CEMENT\"] = 914] = \"CONSTRUCTION_CEMENT\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_HORIZONTAL_LEFT\"] = 915] = \"CONSTRUCTION_BEAM_RED_HORIZONTAL_LEFT\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_HORIZONTAL_MIDDLE\"] = 916] = \"CONSTRUCTION_BEAM_RED_HORIZONTAL_MIDDLE\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_HORIZONTAL_RIGHT\"] = 917] = \"CONSTRUCTION_BEAM_RED_HORIZONTAL_RIGHT\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_VERTICAL_TOP\"] = 918] = \"CONSTRUCTION_BEAM_RED_VERTICAL_TOP\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_VERTICAL_MIDDLE\"] = 919] = \"CONSTRUCTION_BEAM_RED_VERTICAL_MIDDLE\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_VERTICAL_BOTTOM\"] = 920] = \"CONSTRUCTION_BEAM_RED_VERTICAL_BOTTOM\";\n BlockNames[BlockNames[\"CONSTRUCTION_CAUTION_ORANGE\"] = 921] = \"CONSTRUCTION_CAUTION_ORANGE\";\n BlockNames[BlockNames[\"CONSTRUCTION_CONE_ORANGE\"] = 922] = \"CONSTRUCTION_CONE_ORANGE\";\n BlockNames[BlockNames[\"CONSTRUCTION_SIGN_WARNING\"] = 923] = \"CONSTRUCTION_SIGN_WARNING\";\n BlockNames[BlockNames[\"CONSTRUCTION_SIGN_STOP\"] = 924] = \"CONSTRUCTION_SIGN_STOP\";\n BlockNames[BlockNames[\"CONSTRUCTION_HYDRANT_FIRE\"] = 925] = \"CONSTRUCTION_HYDRANT_FIRE\";\n BlockNames[BlockNames[\"CONSTRUCTION_PLYWOOD_BG\"] = 926] = \"CONSTRUCTION_PLYWOOD_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_GRAVEL_BG\"] = 927] = \"CONSTRUCTION_GRAVEL_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_CEMENT_BG\"] = 928] = \"CONSTRUCTION_CEMENT_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_HORIZONTAL_LEFT_BG\"] = 929] = \"CONSTRUCTION_BEAM_RED_HORIZONTAL_LEFT_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_HORIZONTAL_MIDDLE_BG\"] = 930] = \"CONSTRUCTION_BEAM_RED_HORIZONTAL_MIDDLE_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_HORIZONTAL_RIGHT_BG\"] = 931] = \"CONSTRUCTION_BEAM_RED_HORIZONTAL_RIGHT_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_VERTICAL_TOP_BG\"] = 932] = \"CONSTRUCTION_BEAM_RED_VERTICAL_TOP_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_VERTICAL_MIDDLE_BG\"] = 933] = \"CONSTRUCTION_BEAM_RED_VERTICAL_MIDDLE_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_VERTICAL_BOTTOM_BG\"] = 934] = \"CONSTRUCTION_BEAM_RED_VERTICAL_BOTTOM_BG\";\n BlockNames[BlockNames[\"TILES_WHITE\"] = 935] = \"TILES_WHITE\";\n BlockNames[BlockNames[\"TILES_GRAY\"] = 936] = \"TILES_GRAY\";\n BlockNames[BlockNames[\"TILES_BLACK\"] = 937] = \"TILES_BLACK\";\n BlockNames[BlockNames[\"TILES_RED\"] = 938] = \"TILES_RED\";\n BlockNames[BlockNames[\"TILES_ORANGE\"] = 939] = \"TILES_ORANGE\";\n BlockNames[BlockNames[\"TILES_YELLOW\"] = 940] = \"TILES_YELLOW\";\n BlockNames[BlockNames[\"TILES_GREEN\"] = 941] = \"TILES_GREEN\";\n BlockNames[BlockNames[\"TILES_CYAN\"] = 942] = \"TILES_CYAN\";\n BlockNames[BlockNames[\"TILES_BLUE\"] = 943] = \"TILES_BLUE\";\n BlockNames[BlockNames[\"TILES_PURPLE\"] = 944] = \"TILES_PURPLE\";\n BlockNames[BlockNames[\"TILES_WHITE_BG\"] = 945] = \"TILES_WHITE_BG\";\n BlockNames[BlockNames[\"TILES_GRAY_BG\"] = 946] = \"TILES_GRAY_BG\";\n BlockNames[BlockNames[\"TILES_BLACK_BG\"] = 947] = \"TILES_BLACK_BG\";\n BlockNames[BlockNames[\"TILES_RED_BG\"] = 948] = \"TILES_RED_BG\";\n BlockNames[BlockNames[\"TILES_ORANGE_BG\"] = 949] = \"TILES_ORANGE_BG\";\n BlockNames[BlockNames[\"TILES_YELLOW_BG\"] = 950] = \"TILES_YELLOW_BG\";\n BlockNames[BlockNames[\"TILES_GREEN_BG\"] = 951] = \"TILES_GREEN_BG\";\n BlockNames[BlockNames[\"TILES_CYAN_BG\"] = 952] = \"TILES_CYAN_BG\";\n BlockNames[BlockNames[\"TILES_BLUE_BG\"] = 953] = \"TILES_BLUE_BG\";\n BlockNames[BlockNames[\"TILES_PURPLE_BG\"] = 954] = \"TILES_PURPLE_BG\";\n BlockNames[BlockNames[\"HALFBLOCKS_WHITE_LEFT\"] = 955] = \"HALFBLOCKS_WHITE_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_WHITE_TOP\"] = 956] = \"HALFBLOCKS_WHITE_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_WHITE_RIGHT\"] = 957] = \"HALFBLOCKS_WHITE_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_WHITE_BOTTOM\"] = 958] = \"HALFBLOCKS_WHITE_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_GRAY_LEFT\"] = 959] = \"HALFBLOCKS_GRAY_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_GRAY_TOP\"] = 960] = \"HALFBLOCKS_GRAY_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_GRAY_RIGHT\"] = 961] = \"HALFBLOCKS_GRAY_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_GRAY_BOTTOM\"] = 962] = \"HALFBLOCKS_GRAY_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLACK_LEFT\"] = 963] = \"HALFBLOCKS_BLACK_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLACK_TOP\"] = 964] = \"HALFBLOCKS_BLACK_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLACK_RIGHT\"] = 965] = \"HALFBLOCKS_BLACK_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLACK_BOTTOM\"] = 966] = \"HALFBLOCKS_BLACK_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_RED_LEFT\"] = 967] = \"HALFBLOCKS_RED_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_RED_TOP\"] = 968] = \"HALFBLOCKS_RED_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_RED_RIGHT\"] = 969] = \"HALFBLOCKS_RED_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_RED_BOTTOM\"] = 970] = \"HALFBLOCKS_RED_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_ORANGE_LEFT\"] = 971] = \"HALFBLOCKS_ORANGE_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_ORANGE_TOP\"] = 972] = \"HALFBLOCKS_ORANGE_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_ORANGE_RIGHT\"] = 973] = \"HALFBLOCKS_ORANGE_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_ORANGE_BOTTOM\"] = 974] = \"HALFBLOCKS_ORANGE_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_YELLOW_LEFT\"] = 975] = \"HALFBLOCKS_YELLOW_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_YELLOW_TOP\"] = 976] = \"HALFBLOCKS_YELLOW_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_YELLOW_RIGHT\"] = 977] = \"HALFBLOCKS_YELLOW_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_YELLOW_BOTTOM\"] = 978] = \"HALFBLOCKS_YELLOW_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_GREEN_LEFT\"] = 979] = \"HALFBLOCKS_GREEN_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_GREEN_TOP\"] = 980] = \"HALFBLOCKS_GREEN_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_GREEN_RIGHT\"] = 981] = \"HALFBLOCKS_GREEN_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_GREEN_BOTTOM\"] = 982] = \"HALFBLOCKS_GREEN_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_CYAN_LEFT\"] = 983] = \"HALFBLOCKS_CYAN_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_CYAN_TOP\"] = 984] = \"HALFBLOCKS_CYAN_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_CYAN_RIGHT\"] = 985] = \"HALFBLOCKS_CYAN_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_CYAN_BOTTOM\"] = 986] = \"HALFBLOCKS_CYAN_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLUE_LEFT\"] = 987] = \"HALFBLOCKS_BLUE_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLUE_TOP\"] = 988] = \"HALFBLOCKS_BLUE_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLUE_RIGHT\"] = 989] = \"HALFBLOCKS_BLUE_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLUE_BOTTOM\"] = 990] = \"HALFBLOCKS_BLUE_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_MAGENTA_LEFT\"] = 991] = \"HALFBLOCKS_MAGENTA_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_MAGENTA_TOP\"] = 992] = \"HALFBLOCKS_MAGENTA_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_MAGENTA_RIGHT\"] = 993] = \"HALFBLOCKS_MAGENTA_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_MAGENTA_BOTTOM\"] = 994] = \"HALFBLOCKS_MAGENTA_BOTTOM\";\n BlockNames[BlockNames[\"WINTER_ICE_BRICK\"] = 995] = \"WINTER_ICE_BRICK\";\n BlockNames[BlockNames[\"WINTER_SNOW\"] = 996] = \"WINTER_SNOW\";\n BlockNames[BlockNames[\"WINTER_GLACIER\"] = 997] = \"WINTER_GLACIER\";\n BlockNames[BlockNames[\"WINTER_SLATE\"] = 998] = \"WINTER_SLATE\";\n BlockNames[BlockNames[\"WINTER_ICE\"] = 999] = \"WINTER_ICE\";\n BlockNames[BlockNames[\"WINTER_ONEWAY_ICE\"] = 1000] = \"WINTER_ONEWAY_ICE\";\n BlockNames[BlockNames[\"WINTER_ICE_LIGHT\"] = 1001] = \"WINTER_ICE_LIGHT\";\n BlockNames[BlockNames[\"WINTER_ICE_DARK\"] = 1002] = \"WINTER_ICE_DARK\";\n BlockNames[BlockNames[\"WINTER_ICE_DARK_LEFT\"] = 1003] = \"WINTER_ICE_DARK_LEFT\";\n BlockNames[BlockNames[\"WINTER_ICE_DARK_MIDDLE\"] = 1004] = \"WINTER_ICE_DARK_MIDDLE\";\n BlockNames[BlockNames[\"WINTER_ICE_DARK_RIGHT\"] = 1005] = \"WINTER_ICE_DARK_RIGHT\";\n BlockNames[BlockNames[\"WINTER_HALF_SNOW_LEFT\"] = 1006] = \"WINTER_HALF_SNOW_LEFT\";\n BlockNames[BlockNames[\"WINTER_HALF_SNOW_TOP\"] = 1007] = \"WINTER_HALF_SNOW_TOP\";\n BlockNames[BlockNames[\"WINTER_HALF_SNOW_RIGHT\"] = 1008] = \"WINTER_HALF_SNOW_RIGHT\";\n BlockNames[BlockNames[\"WINTER_HALF_SNOW_BOTTOM\"] = 1009] = \"WINTER_HALF_SNOW_BOTTOM\";\n BlockNames[BlockNames[\"WINTER_HALF_ICE_LEFT\"] = 1010] = \"WINTER_HALF_ICE_LEFT\";\n BlockNames[BlockNames[\"WINTER_HALF_ICE_TOP\"] = 1011] = \"WINTER_HALF_ICE_TOP\";\n BlockNames[BlockNames[\"WINTER_HALF_ICE_RIGHT\"] = 1012] = \"WINTER_HALF_ICE_RIGHT\";\n BlockNames[BlockNames[\"WINTER_HALF_ICE_BOTTOM\"] = 1013] = \"WINTER_HALF_ICE_BOTTOM\";\n BlockNames[BlockNames[\"WINTER_ICE_SLIPPERY\"] = 1014] = \"WINTER_ICE_SLIPPERY\";\n BlockNames[BlockNames[\"WINTER_SNOW_PILE\"] = 1015] = \"WINTER_SNOW_PILE\";\n BlockNames[BlockNames[\"WINTER_ICE_DRIFT_TOP_LEFT\"] = 1016] = \"WINTER_ICE_DRIFT_TOP_LEFT\";\n BlockNames[BlockNames[\"WINTER_ICE_DRIFT_TOP_RIGHT\"] = 1017] = \"WINTER_ICE_DRIFT_TOP_RIGHT\";\n BlockNames[BlockNames[\"WINTER_ICE_DRIFT_BOTTOM_LEFT\"] = 1018] = \"WINTER_ICE_DRIFT_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"WINTER_ICE_DRIFT_BOTTOM_RIGHT\"] = 1019] = \"WINTER_ICE_DRIFT_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"WINTER_SNOW_DRIFT_TOP_LEFT\"] = 1020] = \"WINTER_SNOW_DRIFT_TOP_LEFT\";\n BlockNames[BlockNames[\"WINTER_SNOW_DRIFT_TOP_RIGHT\"] = 1021] = \"WINTER_SNOW_DRIFT_TOP_RIGHT\";\n BlockNames[BlockNames[\"WINTER_SNOW_DRIFT_BOTTOM_LEFT\"] = 1022] = \"WINTER_SNOW_DRIFT_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"WINTER_SNOW_DRIFT_BOTTOM_RIGHT\"] = 1023] = \"WINTER_SNOW_DRIFT_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"WINTER_SNOW_FLUFF_LEFT\"] = 1024] = \"WINTER_SNOW_FLUFF_LEFT\";\n BlockNames[BlockNames[\"WINTER_SNOW_FLUFF_MIDDLE\"] = 1025] = \"WINTER_SNOW_FLUFF_MIDDLE\";\n BlockNames[BlockNames[\"WINTER_SNOW_FLUFF_RIGHT\"] = 1026] = \"WINTER_SNOW_FLUFF_RIGHT\";\n BlockNames[BlockNames[\"WINTER_SNOWMAN\"] = 1027] = \"WINTER_SNOWMAN\";\n BlockNames[BlockNames[\"WINTER_TREE\"] = 1028] = \"WINTER_TREE\";\n BlockNames[BlockNames[\"WINTER_SNOWFLAKE_LARGE\"] = 1029] = \"WINTER_SNOWFLAKE_LARGE\";\n BlockNames[BlockNames[\"WINTER_SNOWFLAKE_SMALL\"] = 1030] = \"WINTER_SNOWFLAKE_SMALL\";\n BlockNames[BlockNames[\"WINTER_ICE_DARK_BG\"] = 1031] = \"WINTER_ICE_DARK_BG\";\n BlockNames[BlockNames[\"WINTER_ICE_LIGHT_BG\"] = 1032] = \"WINTER_ICE_LIGHT_BG\";\n BlockNames[BlockNames[\"WINTER_ICE_BRICK_BG\"] = 1033] = \"WINTER_ICE_BRICK_BG\";\n BlockNames[BlockNames[\"WINTER_SNOW_BG\"] = 1034] = \"WINTER_SNOW_BG\";\n BlockNames[BlockNames[\"WINTER_GLACIER_BG\"] = 1035] = \"WINTER_GLACIER_BG\";\n BlockNames[BlockNames[\"WINTER_SLATE_BG\"] = 1036] = \"WINTER_SLATE_BG\";\n BlockNames[BlockNames[\"FAIRYTALE_PEBBLES\"] = 1037] = \"FAIRYTALE_PEBBLES\";\n BlockNames[BlockNames[\"FAIRYTALE_TREE_ORANGE\"] = 1038] = \"FAIRYTALE_TREE_ORANGE\";\n BlockNames[BlockNames[\"FAIRYTALE_MOSS_GREEN\"] = 1039] = \"FAIRYTALE_MOSS_GREEN\";\n BlockNames[BlockNames[\"FAIRYTALE_CLOUD_BLUE\"] = 1040] = \"FAIRYTALE_CLOUD_BLUE\";\n BlockNames[BlockNames[\"FAIRYTALE_MUSHROOM_BLOCK_RED\"] = 1041] = \"FAIRYTALE_MUSHROOM_BLOCK_RED\";\n BlockNames[BlockNames[\"FAIRYTALE_VINE_GREEN\"] = 1042] = \"FAIRYTALE_VINE_GREEN\";\n BlockNames[BlockNames[\"FAIRYTALE_MUSHROOM_DECORATION_ORANGE\"] = 1043] = \"FAIRYTALE_MUSHROOM_DECORATION_ORANGE\";\n BlockNames[BlockNames[\"FAIRYTALE_MUSHROOM_DECORATION_RED\"] = 1044] = \"FAIRYTALE_MUSHROOM_DECORATION_RED\";\n BlockNames[BlockNames[\"FAIRYTALE_DEW_DROP\"] = 1045] = \"FAIRYTALE_DEW_DROP\";\n BlockNames[BlockNames[\"FAIRYTALE_MIST_ORANGE_BG\"] = 1046] = \"FAIRYTALE_MIST_ORANGE_BG\";\n BlockNames[BlockNames[\"FAIRYTALE_MIST_GREEN_BG\"] = 1047] = \"FAIRYTALE_MIST_GREEN_BG\";\n BlockNames[BlockNames[\"FAIRYTALE_MIST_BLUE_BG\"] = 1048] = \"FAIRYTALE_MIST_BLUE_BG\";\n BlockNames[BlockNames[\"FAIRYTALE_MIST_PINK_BG\"] = 1049] = \"FAIRYTALE_MIST_PINK_BG\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_ORANGE_LEFT\"] = 1050] = \"FAIRYTALE_HALF_ORANGE_LEFT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_ORANGE_TOP\"] = 1051] = \"FAIRYTALE_HALF_ORANGE_TOP\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_ORANGE_RIGHT\"] = 1052] = \"FAIRYTALE_HALF_ORANGE_RIGHT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_ORANGE_BOTTOM\"] = 1053] = \"FAIRYTALE_HALF_ORANGE_BOTTOM\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_GREEN_LEFT\"] = 1054] = \"FAIRYTALE_HALF_GREEN_LEFT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_GREEN_TOP\"] = 1055] = \"FAIRYTALE_HALF_GREEN_TOP\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_GREEN_RIGHT\"] = 1056] = \"FAIRYTALE_HALF_GREEN_RIGHT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_GREEN_BOTTOM\"] = 1057] = \"FAIRYTALE_HALF_GREEN_BOTTOM\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_BLUE_LEFT\"] = 1058] = \"FAIRYTALE_HALF_BLUE_LEFT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_BLUE_TOP\"] = 1059] = \"FAIRYTALE_HALF_BLUE_TOP\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_BLUE_RIGHT\"] = 1060] = \"FAIRYTALE_HALF_BLUE_RIGHT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_BLUE_BOTTOM\"] = 1061] = \"FAIRYTALE_HALF_BLUE_BOTTOM\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_PINK_LEFT\"] = 1062] = \"FAIRYTALE_HALF_PINK_LEFT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_PINK_TOP\"] = 1063] = \"FAIRYTALE_HALF_PINK_TOP\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_PINK_RIGHT\"] = 1064] = \"FAIRYTALE_HALF_PINK_RIGHT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_PINK_BOTTOM\"] = 1065] = \"FAIRYTALE_HALF_PINK_BOTTOM\";\n BlockNames[BlockNames[\"FAIRYTALE_FLOWER_BLUE\"] = 1066] = \"FAIRYTALE_FLOWER_BLUE\";\n BlockNames[BlockNames[\"FAIRYTALE_FLOWER_ORANGE\"] = 1067] = \"FAIRYTALE_FLOWER_ORANGE\";\n BlockNames[BlockNames[\"FAIRYTALE_FLOWER_PINK\"] = 1068] = \"FAIRYTALE_FLOWER_PINK\";\n BlockNames[BlockNames[\"SPRING_DIRT_BROWN\"] = 1069] = \"SPRING_DIRT_BROWN\";\n BlockNames[BlockNames[\"SPRING_HEDGE_GREEN\"] = 1070] = \"SPRING_HEDGE_GREEN\";\n BlockNames[BlockNames[\"SPRING_DIRT_DRIFT_TOP_LEFT\"] = 1071] = \"SPRING_DIRT_DRIFT_TOP_LEFT\";\n BlockNames[BlockNames[\"SPRING_DIRT_DRIFT_TOP_RIGHT\"] = 1072] = \"SPRING_DIRT_DRIFT_TOP_RIGHT\";\n BlockNames[BlockNames[\"SPRING_DIRT_DRIFT_BOTTOM_LEFT\"] = 1073] = \"SPRING_DIRT_DRIFT_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"SPRING_DIRT_DRIFT_BOTTOM_RIGHT\"] = 1074] = \"SPRING_DIRT_DRIFT_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"SPRING_DAISY_WHITE\"] = 1075] = \"SPRING_DAISY_WHITE\";\n BlockNames[BlockNames[\"SPRING_DAISY_BLUE\"] = 1076] = \"SPRING_DAISY_BLUE\";\n BlockNames[BlockNames[\"SPRING_DAISY_PINK\"] = 1077] = \"SPRING_DAISY_PINK\";\n BlockNames[BlockNames[\"SPRING_TULIP_RED\"] = 1078] = \"SPRING_TULIP_RED\";\n BlockNames[BlockNames[\"SPRING_TULIP_YELLOW\"] = 1079] = \"SPRING_TULIP_YELLOW\";\n BlockNames[BlockNames[\"SPRING_TULIP_PINK\"] = 1080] = \"SPRING_TULIP_PINK\";\n BlockNames[BlockNames[\"SPRING_DAFFODIL_WHITE\"] = 1081] = \"SPRING_DAFFODIL_WHITE\";\n BlockNames[BlockNames[\"SPRING_DAFFODIL_YELLOW\"] = 1082] = \"SPRING_DAFFODIL_YELLOW\";\n BlockNames[BlockNames[\"SPRING_DAFFODIL_ORANGE\"] = 1083] = \"SPRING_DAFFODIL_ORANGE\";\n BlockNames[BlockNames[\"ONEWAY_WHITE_LEFT\"] = 1084] = \"ONEWAY_WHITE_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_WHITE_TOP\"] = 1085] = \"ONEWAY_WHITE_TOP\";\n BlockNames[BlockNames[\"ONEWAY_WHITE_RIGHT\"] = 1086] = \"ONEWAY_WHITE_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_WHITE_BOTTOM\"] = 1087] = \"ONEWAY_WHITE_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_GRAY_LEFT\"] = 1088] = \"ONEWAY_GRAY_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_GRAY_TOP\"] = 1089] = \"ONEWAY_GRAY_TOP\";\n BlockNames[BlockNames[\"ONEWAY_GRAY_RIGHT\"] = 1090] = \"ONEWAY_GRAY_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_GRAY_BOTTOM\"] = 1091] = \"ONEWAY_GRAY_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_BLACK_LEFT\"] = 1092] = \"ONEWAY_BLACK_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_BLACK_TOP\"] = 1093] = \"ONEWAY_BLACK_TOP\";\n BlockNames[BlockNames[\"ONEWAY_BLACK_RIGHT\"] = 1094] = \"ONEWAY_BLACK_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_BLACK_BOTTOM\"] = 1095] = \"ONEWAY_BLACK_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_RED_LEFT\"] = 1096] = \"ONEWAY_RED_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_RED_TOP\"] = 1097] = \"ONEWAY_RED_TOP\";\n BlockNames[BlockNames[\"ONEWAY_RED_RIGHT\"] = 1098] = \"ONEWAY_RED_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_RED_BOTTOM\"] = 1099] = \"ONEWAY_RED_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_ORANGE_LEFT\"] = 1100] = \"ONEWAY_ORANGE_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_ORANGE_TOP\"] = 1101] = \"ONEWAY_ORANGE_TOP\";\n BlockNames[BlockNames[\"ONEWAY_ORANGE_RIGHT\"] = 1102] = \"ONEWAY_ORANGE_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_ORANGE_BOTTOM\"] = 1103] = \"ONEWAY_ORANGE_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_YELLOW_LEFT\"] = 1104] = \"ONEWAY_YELLOW_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_YELLOW_TOP\"] = 1105] = \"ONEWAY_YELLOW_TOP\";\n BlockNames[BlockNames[\"ONEWAY_YELLOW_RIGHT\"] = 1106] = \"ONEWAY_YELLOW_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_YELLOW_BOTTOM\"] = 1107] = \"ONEWAY_YELLOW_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_GREEN_LEFT\"] = 1108] = \"ONEWAY_GREEN_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_GREEN_TOP\"] = 1109] = \"ONEWAY_GREEN_TOP\";\n BlockNames[BlockNames[\"ONEWAY_GREEN_RIGHT\"] = 1110] = \"ONEWAY_GREEN_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_GREEN_BOTTOM\"] = 1111] = \"ONEWAY_GREEN_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_CYAN_LEFT\"] = 1112] = \"ONEWAY_CYAN_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_CYAN_TOP\"] = 1113] = \"ONEWAY_CYAN_TOP\";\n BlockNames[BlockNames[\"ONEWAY_CYAN_RIGHT\"] = 1114] = \"ONEWAY_CYAN_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_CYAN_BOTTOM\"] = 1115] = \"ONEWAY_CYAN_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_BLUE_LEFT\"] = 1116] = \"ONEWAY_BLUE_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_BLUE_TOP\"] = 1117] = \"ONEWAY_BLUE_TOP\";\n BlockNames[BlockNames[\"ONEWAY_BLUE_RIGHT\"] = 1118] = \"ONEWAY_BLUE_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_BLUE_BOTTOM\"] = 1119] = \"ONEWAY_BLUE_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_MAGENTA_LEFT\"] = 1120] = \"ONEWAY_MAGENTA_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_MAGENTA_TOP\"] = 1121] = \"ONEWAY_MAGENTA_TOP\";\n BlockNames[BlockNames[\"ONEWAY_MAGENTA_RIGHT\"] = 1122] = \"ONEWAY_MAGENTA_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_MAGENTA_BOTTOM\"] = 1123] = \"ONEWAY_MAGENTA_BOTTOM\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_GREY\"] = 1124] = \"DUNGEON_COBBLESTONE_GREY\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_GREEN\"] = 1125] = \"DUNGEON_COBBLESTONE_GREEN\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_BLUE\"] = 1126] = \"DUNGEON_COBBLESTONE_BLUE\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_PURPLE\"] = 1127] = \"DUNGEON_COBBLESTONE_PURPLE\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_GREY_BG\"] = 1128] = \"DUNGEON_COBBLESTONE_GREY_BG\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_GREEN_BG\"] = 1129] = \"DUNGEON_COBBLESTONE_GREEN_BG\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_BLUE_BG\"] = 1130] = \"DUNGEON_COBBLESTONE_BLUE_BG\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_PURPLE_BG\"] = 1131] = \"DUNGEON_COBBLESTONE_PURPLE_BG\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_MIDDLE_GRAY\"] = 1132] = \"DUNGEON_PILLAR_MIDDLE_GRAY\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_BOTTOM_GRAY\"] = 1136] = \"DUNGEON_PILLAR_BOTTOM_GRAY\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_MIDDLE_GREEN\"] = 1133] = \"DUNGEON_PILLAR_MIDDLE_GREEN\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_BOTTOM_GREEN\"] = 1137] = \"DUNGEON_PILLAR_BOTTOM_GREEN\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_MIDDLE_BLUE\"] = 1134] = \"DUNGEON_PILLAR_MIDDLE_BLUE\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_BOTTOM_BLUE\"] = 1138] = \"DUNGEON_PILLAR_BOTTOM_BLUE\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_MIDDLE_PURPLE\"] = 1135] = \"DUNGEON_PILLAR_MIDDLE_PURPLE\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_BOTTOM_PURPLE\"] = 1139] = \"DUNGEON_PILLAR_BOTTOM_PURPLE\";\n BlockNames[BlockNames[\"DUNGEON_ONEWAY_PILLAR_TOP_GRAY\"] = 1140] = \"DUNGEON_ONEWAY_PILLAR_TOP_GRAY\";\n BlockNames[BlockNames[\"DUNGEON_ONEWAY_PILLAR_TOP_GREEN\"] = 1141] = \"DUNGEON_ONEWAY_PILLAR_TOP_GREEN\";\n BlockNames[BlockNames[\"DUNGEON_ONEWAY_PILLAR_TOP_BLUE\"] = 1142] = \"DUNGEON_ONEWAY_PILLAR_TOP_BLUE\";\n BlockNames[BlockNames[\"DUNGEON_ONEWAY_PILLAR_TOP_PURPLE\"] = 1143] = \"DUNGEON_ONEWAY_PILLAR_TOP_PURPLE\";\n BlockNames[BlockNames[\"DUNGEON_STEEL_ARC_LEFT_GRAY\"] = 1144] = \"DUNGEON_STEEL_ARC_LEFT_GRAY\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_ARC_RIGHT_GRAY\"] = 1145] = \"DUNGEON_PILLAR_ARC_RIGHT_GRAY\";\n BlockNames[BlockNames[\"DUNGEON_STEEL_ARC_LEFT_GREEN\"] = 1146] = \"DUNGEON_STEEL_ARC_LEFT_GREEN\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_ARC_RIGHT_GREEN\"] = 1147] = \"DUNGEON_PILLAR_ARC_RIGHT_GREEN\";\n BlockNames[BlockNames[\"DUNGEON_STEEL_ARC_LEFT_BLUE\"] = 1148] = \"DUNGEON_STEEL_ARC_LEFT_BLUE\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_ARC_RIGHT_BLUE\"] = 1149] = \"DUNGEON_PILLAR_ARC_RIGHT_BLUE\";\n BlockNames[BlockNames[\"DUNGEON_STEEL_ARC_LEFT_PURPLE\"] = 1150] = \"DUNGEON_STEEL_ARC_LEFT_PURPLE\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_ARC_RIGHT_PURPLE\"] = 1151] = \"DUNGEON_PILLAR_ARC_RIGHT_PURPLE\";\n BlockNames[BlockNames[\"DUNGEON_TORCH_YELLOW\"] = 1152] = \"DUNGEON_TORCH_YELLOW\";\n BlockNames[BlockNames[\"DUNGEON_TORCH_GREEN\"] = 1153] = \"DUNGEON_TORCH_GREEN\";\n BlockNames[BlockNames[\"DUNGEON_TORCH_BLUE\"] = 1154] = \"DUNGEON_TORCH_BLUE\";\n BlockNames[BlockNames[\"DUNGEON_TORCH_PURPLE\"] = 1155] = \"DUNGEON_TORCH_PURPLE\";\n BlockNames[BlockNames[\"DUNGEON_WINDOW\"] = 1156] = \"DUNGEON_WINDOW\";\n BlockNames[BlockNames[\"DUNGEON_CHAIN_RING\"] = 1157] = \"DUNGEON_CHAIN_RING\";\n BlockNames[BlockNames[\"DUNGEON_CHAIN_HOOK\"] = 1158] = \"DUNGEON_CHAIN_HOOK\";\n BlockNames[BlockNames[\"DUNGEON_CHAIN_LOCK\"] = 1159] = \"DUNGEON_CHAIN_LOCK\";\n BlockNames[BlockNames[\"RETAIL_FLAG_RED\"] = 1160] = \"RETAIL_FLAG_RED\";\n BlockNames[BlockNames[\"RETAIL_FLAG_GREEN\"] = 1161] = \"RETAIL_FLAG_GREEN\";\n BlockNames[BlockNames[\"RETAIL_FLAG_YELLOW\"] = 1162] = \"RETAIL_FLAG_YELLOW\";\n BlockNames[BlockNames[\"RETAIL_FLAG_CYAN\"] = 1163] = \"RETAIL_FLAG_CYAN\";\n BlockNames[BlockNames[\"RETAIL_FLAG_BLUE\"] = 1164] = \"RETAIL_FLAG_BLUE\";\n BlockNames[BlockNames[\"RETAIL_FLAG_PURPLE\"] = 1165] = \"RETAIL_FLAG_PURPLE\";\n BlockNames[BlockNames[\"RETAIL_AWNING_RED\"] = 1166] = \"RETAIL_AWNING_RED\";\n BlockNames[BlockNames[\"RETAIL_AWNING_GREEN\"] = 1167] = \"RETAIL_AWNING_GREEN\";\n BlockNames[BlockNames[\"RETAIL_AWNING_YELLOW\"] = 1168] = \"RETAIL_AWNING_YELLOW\";\n BlockNames[BlockNames[\"RETAIL_AWNING_CYAN\"] = 1169] = \"RETAIL_AWNING_CYAN\";\n BlockNames[BlockNames[\"RETAIL_AWNING_BLUE\"] = 1170] = \"RETAIL_AWNING_BLUE\";\n BlockNames[BlockNames[\"RETAIL_AWNING_PURPLE\"] = 1171] = \"RETAIL_AWNING_PURPLE\";\n BlockNames[BlockNames[\"SUMMER_STRAW\"] = 1172] = \"SUMMER_STRAW\";\n BlockNames[BlockNames[\"SUMMER_PLANK_PURPLE\"] = 1173] = \"SUMMER_PLANK_PURPLE\";\n BlockNames[BlockNames[\"SUMMER_PLANK_YELLLOW\"] = 1174] = \"SUMMER_PLANK_YELLLOW\";\n BlockNames[BlockNames[\"SUMMER_PLANK_GREEN\"] = 1175] = \"SUMMER_PLANK_GREEN\";\n BlockNames[BlockNames[\"SUMMER_ONEWAY_DOCK_TOP\"] = 1176] = \"SUMMER_ONEWAY_DOCK_TOP\";\n BlockNames[BlockNames[\"SUMMER_STRAW_BG\"] = 1177] = \"SUMMER_STRAW_BG\";\n BlockNames[BlockNames[\"SUMMER_PLANK_PURPLE_BG\"] = 1178] = \"SUMMER_PLANK_PURPLE_BG\";\n BlockNames[BlockNames[\"SUMMER_PLANK_YELLOW_BG\"] = 1179] = \"SUMMER_PLANK_YELLOW_BG\";\n BlockNames[BlockNames[\"SUMMER_PLANK_GREEN_BG\"] = 1180] = \"SUMMER_PLANK_GREEN_BG\";\n BlockNames[BlockNames[\"SUMMER_ICE_CREAM_VANILLA\"] = 1181] = \"SUMMER_ICE_CREAM_VANILLA\";\n BlockNames[BlockNames[\"SUMMER_ICE_CREAM_CHOCOLATE\"] = 1182] = \"SUMMER_ICE_CREAM_CHOCOLATE\";\n BlockNames[BlockNames[\"SUMMER_ICE_CREAM_SRAWBERRY\"] = 1183] = \"SUMMER_ICE_CREAM_SRAWBERRY\";\n BlockNames[BlockNames[\"SUMMER_ICE_CREAM_MINT\"] = 1184] = \"SUMMER_ICE_CREAM_MINT\";\n BlockNames[BlockNames[\"MINE_STONE_BROWN\"] = 1185] = \"MINE_STONE_BROWN\";\n BlockNames[BlockNames[\"MINE_STONE_BROWN_BG\"] = 1186] = \"MINE_STONE_BROWN_BG\";\n BlockNames[BlockNames[\"MINE_STALAGMITE\"] = 1187] = \"MINE_STALAGMITE\";\n BlockNames[BlockNames[\"MINE_STALAGTITE\"] = 1188] = \"MINE_STALAGTITE\";\n BlockNames[BlockNames[\"MINE_CRYSTAL_RED\"] = 1189] = \"MINE_CRYSTAL_RED\";\n BlockNames[BlockNames[\"MINE_CRYSTAL_GREEN\"] = 1190] = \"MINE_CRYSTAL_GREEN\";\n BlockNames[BlockNames[\"MINE_CRYSTAL_YELLOW\"] = 1191] = \"MINE_CRYSTAL_YELLOW\";\n BlockNames[BlockNames[\"MINE_CRYSTAL_CYAN\"] = 1192] = \"MINE_CRYSTAL_CYAN\";\n BlockNames[BlockNames[\"MINE_CRYSTAL_BLUE\"] = 1193] = \"MINE_CRYSTAL_BLUE\";\n BlockNames[BlockNames[\"MINE_CRYSTAL_PURPLE\"] = 1194] = \"MINE_CRYSTAL_PURPLE\";\n BlockNames[BlockNames[\"MINE_TORCH\"] = 1195] = \"MINE_TORCH\";\n BlockNames[BlockNames[\"HAUNTED_MOSSY_BRICK_GREEN\"] = 1196] = \"HAUNTED_MOSSY_BRICK_GREEN\";\n BlockNames[BlockNames[\"HAUNTED_SIDING_GRAY\"] = 1197] = \"HAUNTED_SIDING_GRAY\";\n BlockNames[BlockNames[\"HAUNTED_MOSSY_SHINGLES_GRAY\"] = 1198] = \"HAUNTED_MOSSY_SHINGLES_GRAY\";\n BlockNames[BlockNames[\"HAUNTED_ONEWAY_STONE_GRAY_TOP\"] = 1199] = \"HAUNTED_ONEWAY_STONE_GRAY_TOP\";\n BlockNames[BlockNames[\"HAUNTED_BUSH_DEAD\"] = 1200] = \"HAUNTED_BUSH_DEAD\";\n BlockNames[BlockNames[\"HAUNTED_FENCE_IRON\"] = 1201] = \"HAUNTED_FENCE_IRON\";\n BlockNames[BlockNames[\"HAUNTED_WINDOW_CURVED_OFF\"] = 1202] = \"HAUNTED_WINDOW_CURVED_OFF\";\n BlockNames[BlockNames[\"HAUNTED_WINDOW_CURVED_ON\"] = 1203] = \"HAUNTED_WINDOW_CURVED_ON\";\n BlockNames[BlockNames[\"HAUNTED_WINDOW_CIRCLE_OFF\"] = 1204] = \"HAUNTED_WINDOW_CIRCLE_OFF\";\n BlockNames[BlockNames[\"HAUNTED_WINDOW_CIRCLE_ON\"] = 1205] = \"HAUNTED_WINDOW_CIRCLE_ON\";\n BlockNames[BlockNames[\"HAUNTED_LANTERN_OFF\"] = 1206] = \"HAUNTED_LANTERN_OFF\";\n BlockNames[BlockNames[\"HAUNTED_LANTERN_ON\"] = 1207] = \"HAUNTED_LANTERN_ON\";\n BlockNames[BlockNames[\"HAUNTED_MOSSY_BRICK_GREEN_BG\"] = 1208] = \"HAUNTED_MOSSY_BRICK_GREEN_BG\";\n BlockNames[BlockNames[\"HAUNTED_SLIDING_GRAY_BG\"] = 1209] = \"HAUNTED_SLIDING_GRAY_BG\";\n BlockNames[BlockNames[\"HAUNTED_MOSSY_SHINGLES_GRAY_BG\"] = 1210] = \"HAUNTED_MOSSY_SHINGLES_GRAY_BG\";\n BlockNames[BlockNames[\"DESERT_ROCK_ORANGE\"] = 1211] = \"DESERT_ROCK_ORANGE\";\n BlockNames[BlockNames[\"DESERT_CACTUS\"] = 1212] = \"DESERT_CACTUS\";\n BlockNames[BlockNames[\"DESERT_BUSH\"] = 1213] = \"DESERT_BUSH\";\n BlockNames[BlockNames[\"DESERT_TREE\"] = 1214] = \"DESERT_TREE\";\n BlockNames[BlockNames[\"MONSTER_SKIN_GREEN_LIGHT_BG\"] = 1215] = \"MONSTER_SKIN_GREEN_LIGHT_BG\";\n BlockNames[BlockNames[\"MONSTER_SKIN_GREEN_DARK_BG\"] = 1216] = \"MONSTER_SKIN_GREEN_DARK_BG\";\n BlockNames[BlockNames[\"MONSTER_SCALES_RED_LIGHT_BG\"] = 1217] = \"MONSTER_SCALES_RED_LIGHT_BG\";\n BlockNames[BlockNames[\"MONSTER_SCALES_RED_DARK_BG\"] = 1218] = \"MONSTER_SCALES_RED_DARK_BG\";\n BlockNames[BlockNames[\"MONSTER_SCALES_PURPLE_LIGHT_BG\"] = 1219] = \"MONSTER_SCALES_PURPLE_LIGHT_BG\";\n BlockNames[BlockNames[\"MONSTER_SCALES_PURPLE_DARK_BG\"] = 1220] = \"MONSTER_SCALES_PURPLE_DARK_BG\";\n BlockNames[BlockNames[\"MONSTER_TEETH_LARGE_TOP\"] = 1221] = \"MONSTER_TEETH_LARGE_TOP\";\n BlockNames[BlockNames[\"MONSTER_TEETH_LARGE_BOTTOM\"] = 1222] = \"MONSTER_TEETH_LARGE_BOTTOM\";\n BlockNames[BlockNames[\"MONSTER_TEETH_LARGE_LEFT\"] = 1223] = \"MONSTER_TEETH_LARGE_LEFT\";\n BlockNames[BlockNames[\"MONSTER_TEETH_LARGE_RIGHT\"] = 1224] = \"MONSTER_TEETH_LARGE_RIGHT\";\n BlockNames[BlockNames[\"MONSTER_TEETH_MEDIUM_TOP\"] = 1225] = \"MONSTER_TEETH_MEDIUM_TOP\";\n BlockNames[BlockNames[\"MONSTER_TEETH_MEDIUM_BOTTOM\"] = 1226] = \"MONSTER_TEETH_MEDIUM_BOTTOM\";\n BlockNames[BlockNames[\"MONSTER_TEETH_MEDIUM_LEFT\"] = 1227] = \"MONSTER_TEETH_MEDIUM_LEFT\";\n BlockNames[BlockNames[\"MONSTER_TEETH_MEDIUM_RIGHT\"] = 1228] = \"MONSTER_TEETH_MEDIUM_RIGHT\";\n BlockNames[BlockNames[\"MONSTER_TEETH_SMALL_TOP\"] = 1229] = \"MONSTER_TEETH_SMALL_TOP\";\n BlockNames[BlockNames[\"MONSTER_TEETH_SMALL_BOTTOM\"] = 1230] = \"MONSTER_TEETH_SMALL_BOTTOM\";\n BlockNames[BlockNames[\"MONSTER_TEETH_SMALL_LEFT\"] = 1231] = \"MONSTER_TEETH_SMALL_LEFT\";\n BlockNames[BlockNames[\"MONSTER_TEETH_SMALL_RIGHT\"] = 1232] = \"MONSTER_TEETH_SMALL_RIGHT\";\n BlockNames[BlockNames[\"MONSTER_EYE_YELLOW\"] = 1233] = \"MONSTER_EYE_YELLOW\";\n BlockNames[BlockNames[\"MONSTER_EYE_BLUE\"] = 1234] = \"MONSTER_EYE_BLUE\";\n BlockNames[BlockNames[\"MONSTER_EYE_PURPLE\"] = 1235] = \"MONSTER_EYE_PURPLE\";\n BlockNames[BlockNames[\"SWAMP_GRASS\"] = 1236] = \"SWAMP_GRASS\";\n BlockNames[BlockNames[\"SWAMP_LOG\"] = 1237] = \"SWAMP_LOG\";\n BlockNames[BlockNames[\"SWAMP_SIGN_TOXIC\"] = 1238] = \"SWAMP_SIGN_TOXIC\";\n BlockNames[BlockNames[\"SWAMP_MUD_BG\"] = 1239] = \"SWAMP_MUD_BG\";\n BlockNames[BlockNames[\"SWAMP_GRASS_BG\"] = 1240] = \"SWAMP_GRASS_BG\";\n BlockNames[BlockNames[\"FALL_LEAVES_DRIFT_TOP_LEFT\"] = 1241] = \"FALL_LEAVES_DRIFT_TOP_LEFT\";\n BlockNames[BlockNames[\"FALL_LEAVES_DRIFT_TOP_RIGHT\"] = 1242] = \"FALL_LEAVES_DRIFT_TOP_RIGHT\";\n BlockNames[BlockNames[\"FALL_LEAVES_DRIFT_BOTTOM_LEFT\"] = 1243] = \"FALL_LEAVES_DRIFT_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"FALL_LEAVES_DRIFT_BOTTOM_RIGHT\"] = 1244] = \"FALL_LEAVES_DRIFT_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"FALL_GRASS_LEFT\"] = 1245] = \"FALL_GRASS_LEFT\";\n BlockNames[BlockNames[\"FALL_GRASS_MIDDLE\"] = 1246] = \"FALL_GRASS_MIDDLE\";\n BlockNames[BlockNames[\"FALL_GRASS_RIGHT\"] = 1247] = \"FALL_GRASS_RIGHT\";\n BlockNames[BlockNames[\"FALL_ACORN\"] = 1248] = \"FALL_ACORN\";\n BlockNames[BlockNames[\"FALL_PUMPKIN\"] = 1249] = \"FALL_PUMPKIN\";\n BlockNames[BlockNames[\"FALL_LEAVES_YELLOW_BG\"] = 1250] = \"FALL_LEAVES_YELLOW_BG\";\n BlockNames[BlockNames[\"FALL_LEAVES_ORANGE_BG\"] = 1251] = \"FALL_LEAVES_ORANGE_BG\";\n BlockNames[BlockNames[\"FALL_LEAVES_RED_BG\"] = 1252] = \"FALL_LEAVES_RED_BG\";\n BlockNames[BlockNames[\"VALENTINES_HEART_RED\"] = 1253] = \"VALENTINES_HEART_RED\";\n BlockNames[BlockNames[\"VALENTINES_HEART_PURPLE\"] = 1254] = \"VALENTINES_HEART_PURPLE\";\n BlockNames[BlockNames[\"VALENTINES_HEART_PINK\"] = 1255] = \"VALENTINES_HEART_PINK\";\n BlockNames[BlockNames[\"NEWYEARS_HUNG_LIGHT_RED\"] = 1256] = \"NEWYEARS_HUNG_LIGHT_RED\";\n BlockNames[BlockNames[\"NEWYEARS_HUNG_LIGHT_YELLOW\"] = 1257] = \"NEWYEARS_HUNG_LIGHT_YELLOW\";\n BlockNames[BlockNames[\"NEWYEARS_HUNG_LIGHT_GREEN\"] = 1258] = \"NEWYEARS_HUNG_LIGHT_GREEN\";\n BlockNames[BlockNames[\"NEWYEARS_HUNG_LIGHT_BLUE\"] = 1259] = \"NEWYEARS_HUNG_LIGHT_BLUE\";\n BlockNames[BlockNames[\"NEWYEARS_HUNG_LIGHT_PINK\"] = 1260] = \"NEWYEARS_HUNG_LIGHT_PINK\";\n BlockNames[BlockNames[\"NEWYEARS_WINE\"] = 1261] = \"NEWYEARS_WINE\";\n BlockNames[BlockNames[\"NEWYEARS_CHAMPAGNE\"] = 1262] = \"NEWYEARS_CHAMPAGNE\";\n BlockNames[BlockNames[\"NEWYEARS_BALLOON_RED\"] = 1263] = \"NEWYEARS_BALLOON_RED\";\n BlockNames[BlockNames[\"NEWYEARS_BALLOON_ORANGE\"] = 1264] = \"NEWYEARS_BALLOON_ORANGE\";\n BlockNames[BlockNames[\"NEWYEARS_BALLOON_GREEN\"] = 1265] = \"NEWYEARS_BALLOON_GREEN\";\n BlockNames[BlockNames[\"NEWYEARS_BALLOON_BLUE\"] = 1266] = \"NEWYEARS_BALLOON_BLUE\";\n BlockNames[BlockNames[\"NEWYEARS_BALLOON_PURPLE\"] = 1267] = \"NEWYEARS_BALLOON_PURPLE\";\n BlockNames[BlockNames[\"NEWYEARS_STREAMER_RED\"] = 1268] = \"NEWYEARS_STREAMER_RED\";\n BlockNames[BlockNames[\"NEWYEARS_STREAMER_ORANGE\"] = 1269] = \"NEWYEARS_STREAMER_ORANGE\";\n BlockNames[BlockNames[\"NEWYEARS_STREAMER_GREEN\"] = 1270] = \"NEWYEARS_STREAMER_GREEN\";\n BlockNames[BlockNames[\"NEWYEARS_STREAMER_BLUE\"] = 1271] = \"NEWYEARS_STREAMER_BLUE\";\n BlockNames[BlockNames[\"NEWYEARS_STREAMER_PURPLE\"] = 1272] = \"NEWYEARS_STREAMER_PURPLE\";\n BlockNames[BlockNames[\"LEPRECHAUN_SHAMROCK\"] = 1273] = \"LEPRECHAUN_SHAMROCK\";\n BlockNames[BlockNames[\"LEPRECHAUN_GOLD_POT\"] = 1274] = \"LEPRECHAUN_GOLD_POT\";\n BlockNames[BlockNames[\"LEPRECHAUN_GOLD_BAG\"] = 1275] = \"LEPRECHAUN_GOLD_BAG\";\n BlockNames[BlockNames[\"LEPRECHAUN_HORSE_SHOE\"] = 1276] = \"LEPRECHAUN_HORSE_SHOE\";\n BlockNames[BlockNames[\"LEPRECHAUN_RAINBOW_LEFT\"] = 1277] = \"LEPRECHAUN_RAINBOW_LEFT\";\n BlockNames[BlockNames[\"LEPRECHAUN_RAINBOW_RIGHT\"] = 1278] = \"LEPRECHAUN_RAINBOW_RIGHT\";\n BlockNames[BlockNames[\"RESTAURANT_FOOD_BURGER\"] = 1279] = \"RESTAURANT_FOOD_BURGER\";\n BlockNames[BlockNames[\"RESTAURANT_FOOD_HOTDOG\"] = 1280] = \"RESTAURANT_FOOD_HOTDOG\";\n BlockNames[BlockNames[\"RESTAURANT_FOOD_SUB\"] = 1281] = \"RESTAURANT_FOOD_SUB\";\n BlockNames[BlockNames[\"RESTAURANT_FOOD_SODA\"] = 1282] = \"RESTAURANT_FOOD_SODA\";\n BlockNames[BlockNames[\"RESTAURANT_FOOD_FRIES\"] = 1283] = \"RESTAURANT_FOOD_FRIES\";\n BlockNames[BlockNames[\"RESTAURANT_GLASS_EMPTY\"] = 1284] = \"RESTAURANT_GLASS_EMPTY\";\n BlockNames[BlockNames[\"RESTAURANT_GLASS_WATER\"] = 1285] = \"RESTAURANT_GLASS_WATER\";\n BlockNames[BlockNames[\"RESTAURANT_GLASS_MILK\"] = 1286] = \"RESTAURANT_GLASS_MILK\";\n BlockNames[BlockNames[\"RESTAURANT_GLASS_ORANGEJUICE\"] = 1287] = \"RESTAURANT_GLASS_ORANGEJUICE\";\n BlockNames[BlockNames[\"RESTAURANT_PLATE_EMPTY\"] = 1288] = \"RESTAURANT_PLATE_EMPTY\";\n BlockNames[BlockNames[\"RESTAURANT_PLATE_CHICKEN\"] = 1289] = \"RESTAURANT_PLATE_CHICKEN\";\n BlockNames[BlockNames[\"RESTAURANT_PLATE_HAM\"] = 1290] = \"RESTAURANT_PLATE_HAM\";\n BlockNames[BlockNames[\"RESTAURANT_PLATE_FISH\"] = 1291] = \"RESTAURANT_PLATE_FISH\";\n BlockNames[BlockNames[\"RESTAURANT_PLATE_CAKE_CHOCOLATE\"] = 1292] = \"RESTAURANT_PLATE_CAKE_CHOCOLATE\";\n BlockNames[BlockNames[\"RESTAURANT_PLATE_PIE_CHERRY\"] = 1293] = \"RESTAURANT_PLATE_PIE_CHERRY\";\n BlockNames[BlockNames[\"RESTAURANT_PLATE_COOKIES\"] = 1294] = \"RESTAURANT_PLATE_COOKIES\";\n BlockNames[BlockNames[\"RESTAURANT_BOWL_EMPTY\"] = 1295] = \"RESTAURANT_BOWL_EMPTY\";\n BlockNames[BlockNames[\"RESTAURANT_BOWL_SALAD\"] = 1296] = \"RESTAURANT_BOWL_SALAD\";\n BlockNames[BlockNames[\"RESTAURANT_BOWL_SPAGHETTI\"] = 1297] = \"RESTAURANT_BOWL_SPAGHETTI\";\n BlockNames[BlockNames[\"RESTAURANT_BOWL_ICECREAM\"] = 1298] = \"RESTAURANT_BOWL_ICECREAM\";\n BlockNames[BlockNames[\"TOXIC_ONEWAY_RUSTED_LEFT\"] = 1299] = \"TOXIC_ONEWAY_RUSTED_LEFT\";\n BlockNames[BlockNames[\"TOXIC_ONEWAY_RUSTED_TOP\"] = 1300] = \"TOXIC_ONEWAY_RUSTED_TOP\";\n BlockNames[BlockNames[\"TOXIC_ONEWAY_RUSTED_RIGHT\"] = 1301] = \"TOXIC_ONEWAY_RUSTED_RIGHT\";\n BlockNames[BlockNames[\"TOXIC_ONEWAY_RUSTED_BOTTOM\"] = 1302] = \"TOXIC_ONEWAY_RUSTED_BOTTOM\";\n BlockNames[BlockNames[\"TOXIC_WASTE_BG\"] = 1303] = \"TOXIC_WASTE_BG\";\n BlockNames[BlockNames[\"TOXIC_WASTE_BARREL_OFF\"] = 1304] = \"TOXIC_WASTE_BARREL_OFF\";\n BlockNames[BlockNames[\"TOXIC_WASTE_BARREL_ON\"] = 1305] = \"TOXIC_WASTE_BARREL_ON\";\n BlockNames[BlockNames[\"TOXIC_SEWER_DRAIN_EMPTY\"] = 1306] = \"TOXIC_SEWER_DRAIN_EMPTY\";\n BlockNames[BlockNames[\"TOXIC_SEWER_DRAIN_WATER\"] = 1307] = \"TOXIC_SEWER_DRAIN_WATER\";\n BlockNames[BlockNames[\"TOXIC_SEWER_DRAIN_WASTE\"] = 1308] = \"TOXIC_SEWER_DRAIN_WASTE\";\n BlockNames[BlockNames[\"TOXIC_SEWER_DRAIN_LAVA\"] = 1309] = \"TOXIC_SEWER_DRAIN_LAVA\";\n BlockNames[BlockNames[\"TOXIC_SEWER_DRAIN_MUD\"] = 1310] = \"TOXIC_SEWER_DRAIN_MUD\";\n BlockNames[BlockNames[\"TOXIC_LADDER_VERTICAL_BROKEN\"] = 1311] = \"TOXIC_LADDER_VERTICAL_BROKEN\";\n BlockNames[BlockNames[\"TOXIC_RAIL_RUSTED\"] = 1312] = \"TOXIC_RAIL_RUSTED\";\n BlockNames[BlockNames[\"TEXTILE_CLOTH_GREEN_BG\"] = 1313] = \"TEXTILE_CLOTH_GREEN_BG\";\n BlockNames[BlockNames[\"TEXTILE_CLOTH_BLUE_BG\"] = 1314] = \"TEXTILE_CLOTH_BLUE_BG\";\n BlockNames[BlockNames[\"TEXTILE_CLOTH_PINK_BG\"] = 1315] = \"TEXTILE_CLOTH_PINK_BG\";\n BlockNames[BlockNames[\"TEXTILE_CLOTH_YELLOW_BG\"] = 1316] = \"TEXTILE_CLOTH_YELLOW_BG\";\n BlockNames[BlockNames[\"TEXTILE_CLOTH_RED_BG\"] = 1317] = \"TEXTILE_CLOTH_RED_BG\";\n BlockNames[BlockNames[\"CARNIVAL_STRIPES_RED_WHITE_BG\"] = 1318] = \"CARNIVAL_STRIPES_RED_WHITE_BG\";\n BlockNames[BlockNames[\"CARNIVAL_STRIPES_RED_YELLOW_BG\"] = 1319] = \"CARNIVAL_STRIPES_RED_YELLOW_BG\";\n BlockNames[BlockNames[\"CARNIVAL_STRIPES_PURPLE_VIOLET_BG\"] = 1320] = \"CARNIVAL_STRIPES_PURPLE_VIOLET_BG\";\n BlockNames[BlockNames[\"CARNIVAL_CHECKER_BG\"] = 1321] = \"CARNIVAL_CHECKER_BG\";\n BlockNames[BlockNames[\"CARNIVAL_PINK_BG\"] = 1322] = \"CARNIVAL_PINK_BG\";\n BlockNames[BlockNames[\"CARNIVAL_GREEN_BG\"] = 1323] = \"CARNIVAL_GREEN_BG\";\n BlockNames[BlockNames[\"CARNIVAL_YELLOW_BG\"] = 1324] = \"CARNIVAL_YELLOW_BG\";\n BlockNames[BlockNames[\"CARNIVAL_BLUE_BG\"] = 1325] = \"CARNIVAL_BLUE_BG\";\n BlockNames[BlockNames[\"UNDERWATER_BG\"] = 1326] = \"UNDERWATER_BG\";\n BlockNames[BlockNames[\"UNDERWATER_OCTOPUS_BG\"] = 1327] = \"UNDERWATER_OCTOPUS_BG\";\n BlockNames[BlockNames[\"UNDERWATER_FISH_BG\"] = 1328] = \"UNDERWATER_FISH_BG\";\n BlockNames[BlockNames[\"UNDERWATER_SEAHORSE_BG\"] = 1329] = \"UNDERWATER_SEAHORSE_BG\";\n BlockNames[BlockNames[\"UNDERWATER_SEAWEED_BG\"] = 1330] = \"UNDERWATER_SEAWEED_BG\";\n})(BlockNames || (exports.BlockNames = BlockNames = {}));\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmxvY2suanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9saWIvdXRpbC9ibG9jay50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSxJQUFZLFVBb3pDWDtBQXB6Q0QsV0FBWSxVQUFVO0lBQ25CLDZDQUFTLENBQUE7SUFDVCwyREFBZ0IsQ0FBQTtJQUNoQix1REFBYyxDQUFBO0lBQ2QsNkRBQWlCLENBQUE7SUFDakIsMkRBQWdCLENBQUE7SUFDaEIseURBQWUsQ0FBQTtJQUNmLG1FQUFvQixDQUFBO0lBQ3BCLCtFQUEwQixDQUFBO0lBQzFCLDJFQUF3QixDQUFBO0lBQ3hCLGlGQUEyQixDQUFBO0lBQzNCLGdGQUEyQixDQUFBO0lBQzNCLDhFQUEwQixDQUFBO0lBQzFCLHdGQUErQixDQUFBO0lBQy9CLHdEQUFlLENBQUE7SUFDZixvREFBYSxDQUFBO0lBQ2IsMERBQWdCLENBQUE7SUFDaEIsd0RBQWUsQ0FBQTtJQUNmLGtGQUE0QixDQUFBO0lBQzVCLHNGQUE4QixDQUFBO0lBQzlCLGdHQUFtQyxDQUFBO0lBQ25DLG9HQUFxQyxDQUFBO0lBQ3JDLDhGQUFrQyxDQUFBO0lBQ2xDLGtHQUFvQyxDQUFBO0lBQ3BDLGdGQUEyQixDQUFBO0lBQzNCLDhFQUEwQixDQUFBO0lBQzFCLGtGQUE0QixDQUFBO0lBQzVCLHNGQUE4QixDQUFBO0lBQzlCLDRGQUFpQyxDQUFBO0lBQ2pDLDRGQUFpQyxDQUFBO0lBQ2pDLGdGQUEyQixDQUFBO0lBQzNCLG9FQUFxQixDQUFBO0lBQ3JCLGtFQUFvQixDQUFBO0lBQ3BCLDREQUFpQixDQUFBO0lBQ2pCLHdEQUFlLENBQUE7SUFDZiw0REFBaUIsQ0FBQTtJQUNqQixrRUFBb0IsQ0FBQTtJQUNwQixrRUFBb0IsQ0FBQTtJQUNwQixzRUFBc0IsQ0FBQTtJQUN0QixzRUFBc0IsQ0FBQTtJQUN0QixrREFBWSxDQUFBO0lBQ1osc0RBQWMsQ0FBQTtJQUNkLG9EQUFhLENBQUE7SUFDYixvREFBYSxDQUFBO0lB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QixDQUFBO0lBQ3BCLG1FQUFxQixDQUFBO0lBQ3JCLCtEQUFtQixDQUFBO0lBQ25CLHFFQUFzQixDQUFBO0lBQ3RCLHFFQUFzQixDQUFBO0lBQ3RCLG1FQUFxQixDQUFBO0lBQ3JCLGlFQUFvQixDQUFBO0lBQ3BCLGlFQUFvQixDQUFBO0lBQ3BCLHVFQUF1QixDQUFBO0lBQ3ZCLCtEQUFtQixDQUFBO0lBQ25CLDZEQUFrQixDQUFBO0lBQ2xCLCtEQUFtQixDQUFBO0lBQ25CLDJEQUFpQixDQUFBO0lBQ2pCLGlFQUFvQixDQUFBO0lBQ3BCLGlFQUFvQixDQUFBO0lBQ3BCLCtEQUFtQixDQUFBO0lBQ25CLDZEQUFrQixDQUFBO0lBQ2xCLDZEQUFrQixDQUFBO0lBQ2xCLG1FQUFxQixDQUFBO0lBQ3JCLCtEQUFtQixDQUFBO0lBQ25CLDZEQUFrQixDQUFBO0lBQ2xCLCtEQUFtQixDQUFBO0lBQ25CLDJEQUFpQixDQUFBO0lBQ2pCLGlFQUFvQixDQUFBO0lBQ3BCLGlFQUFvQixDQUFBO0lBQ3BCLCtEQUFtQixDQUFBO0lBQ25CLDZEQUFrQixDQUFBO0lBQ2xCLDZEQUFrQixDQUFBO0lBQ2xCLG1FQUFxQixDQUFBO0lBQ3JCLHFFQUFzQixDQUFBO0lBQ3RCLG1FQUFxQixDQUFBO0lBQ3JCLHFFQUFzQixDQUFBO0lBQ3RCLGlFQUFvQixDQUFBO0lBQ3BCLHVFQUF1QixDQUFBO0lBQ3ZCLHVFQUF1QixDQUFBO0lBQ3ZCLHFFQUFzQixDQUFBO0lBQ3RCLG1FQUFxQixDQUFBO0lBQ3JCLG1FQUFxQixDQUFBO0lBQ3JCLHlFQUF3QixDQUFBO0lBQ3hCLCtEQUFtQixDQUFBO0lBQ25CLHFFQUFzQixDQUFBO0lBQ3RCLHFFQUFzQixDQUFBO0lBQ3RCLGlFQUFvQixDQUFBO0lBQ3BCLG1FQUFxQixDQUFBO0lBQ3JCLGlFQUFvQixDQUFBO0lBQ3BCLGlFQUFvQixDQUFBO0lBQ3BCLHFFQUFzQixDQUFBO0lBQ3RCLHFFQUFzQixDQUFBO0lBQ3RCLHlFQUF3QixDQUFBO0lBQ3hCLHVFQUF1QixDQUFBO0lBQ3ZCLDZEQUFrQixDQUFBO0lBQ2xCLDZEQUFrQixDQUFBO0lBQ2xCLHlEQUFnQixDQUFBO0lBQ2hCLCtGQUFtQyxDQUFBO0lBQ25DLDZGQUFrQyxDQUFBO0lBQ2xDLDJFQUF5QixDQUFBO0lBQ3pCLHVGQUErQixDQUFBO0lBQy9CLHVGQUErQixDQUFBO0lBQy9CLGlFQUFvQixDQUFBO0lBQ3BCLCtEQUFtQixDQUFBO0lBQ25CLHVGQUErQixDQUFBO0lBQy9CLCtEQUFtQixDQUFBO0lBQ25CLHFFQUFzQixDQUFBO0lBQ3RCLHFFQUFzQixDQUFBO0lBQ3RCLHVEQUFlLENBQUE7SUFDZiw2REFBa0IsQ0FBQTtJQUNsQiw2REFBa0IsQ0FBQTtJQUNsQiwyREFBaUIsQ0FBQTtJQUNqQix5REFBZ0IsQ0FBQTtJQUNoQix5REFBZ0IsQ0FBQTtJQUNoQiw2REFBa0IsQ0FBQTtJQUNsQiwrREFBbUIsQ0FBQTtJQUNuQiw2REFBa0IsQ0FBQTtJQUNsQixtRUFBcUIsQ0FBQTtJQUNyQixtRUFBcUIsQ0FBQTtJQUNyQixpRUFBb0IsQ0FBQTtJQUNwQiwrREFBbUIsQ0FBQTtJQUNuQiwrREFBbUIsQ0FBQTtJQUNuQixtRUFBcUIsQ0FBQTtJQUNyQixxRUFBc0IsQ0FBQTtJQUN0QiwyRUFBeUIsQ0FBQTtJQUN6Qix5RUFBd0IsQ0FBQTtJQUN4QiwrREFBbUIsQ0FBQTtJQUNuQiw2REFBa0IsQ0FBQTtJQUNsQixpRUFBb0IsQ0FBQTtJQUNwQix1RUFBdUIsQ0FBQTtJQUN2QiwyRUFBeUIsQ0FBQTtJQUN6Qix5RUFBd0IsQ0FBQTtJQUN4QixxRUFBc0IsQ0FBQTtJQUN0Qix5RUFBd0IsQ0FBQTtJQUN4Qix1RUFBdUIsQ0FBQTtJQUN2Qiw2RUFBMEIsQ0FBQTtJQUMxQix1RUFBdUIsQ0FBQTtJQUN2QixtRUFBcUIsQ0FBQTtJQUNyQixtRUFBcUIsQ0FBQTtJQUNyQix1RUFBdUIsQ0FBQTtJQUN2QixpRUFBb0IsQ0FBQTtJQUNwQixxRUFBc0IsQ0FBQTtJQUN0Qix5REFBZ0IsQ0FBQTtJQUNoQix5REFBZ0IsQ0FBQTtJQUNoQiwrRUFBMkIsQ0FBQTtJQUMzQiw2RUFBMEIsQ0FBQTtJQUMxQiwrRUFBMkIsQ0FBQTtJQUMzQixpRkFBNEIsQ0FBQTtJQUM1Qix5REFBZ0IsQ0FBQTtJQUNoQixpRUFBb0IsQ0FBQTtJQUNwQixtRUFBcUIsQ0FBQTtJQUNyQix1RUFBdUIsQ0FBQTtJQUN2Qix1RUFBdUIsQ0FBQTtJQUN2Qix1RUFBdUIsQ0FBQTtJQUN2QiwyRUFBeUIsQ0FBQTtJQUN6Qix5RUFBd0IsQ0FBQTtJQUN4QiwrREFBbUIsQ0FBQTtJQUNuQiwrREFBbUIsQ0FBQTtJQUNuQix5REFBZ0IsQ0FBQTtJQUNoQiwrREFBbUIsQ0FBQTtJQUNuQiw2RkFBa0MsQ0FBQTtJQUNsQywrRkFBbUMsQ0FBQTtJQUNuQyx1RkFBK0IsQ0FBQTtJQUMvQix5RkFBZ0MsQ0FBQTtJQUNoQyx5REFBZ0IsQ0FBQTtJQUNoQixpRUFBb0IsQ0FBQTtJQUNwQiw2REFBa0IsQ0FBQTtJQUNsQiwyREFBaUIsQ0FBQTtJQUNqQiwrREFBbUIsQ0FBQTtJQUNuQiw2REFBa0IsQ0FBQTtJQUNsQiwrRkFBbUMsQ0FBQTtJQUNuQyw2REFBa0IsQ0FBQTtJQUNsQiw2RUFBMEIsQ0FBQTtJQUMxQiwrRUFBMkIsQ0FBQTtJQUMzQixtRUFBcUIsQ0FBQTtJQUNyQix1RUFBdUIsQ0FBQTtJQUN2Qix1RUFBdUIsQ0FBQTtJQUN2QiwyREFBaUIsQ0FBQTtJQUNqQix5REFBZ0IsQ0FBQTtJQUNoQiwyREFBaUIsQ0FBQTtJQUNqQiw2REFBa0IsQ0FBQTtJQUNsQix5REFBZ0IsQ0FBQTtJQUNoQiw2REFBa0IsQ0FBQTtJQUNsQix1RUFBdUIsQ0FBQTtJQUN2QiwrREFBbUIsQ0FBQTtJQUNuQixpRUFBb0IsQ0FBQTtJQUNwQiwrREFBbUIsQ0FBQTtJQUNuQixpRUFBb0IsQ0FBQTtJQUNwQixtRUFBcUIsQ0FBQTtJQUNyQixpRkFBNEIsQ0FBQTtJQUM1QixtRkFBNkIsQ0FBQTtJQUM3QiwrRUFBMkIsQ0FBQTtJQUMzQixtRUFBcUIsQ0FBQTtJQUNyQix1RUFBdUIsQ0FBQTtJQUN2Qix5RUFBd0IsQ0FBQTtJQUN4Qiw2RUFBMEIsQ0FBQTtJQUMxQixxRUFBc0IsQ0FBQTtJQUN0Qix5RUFBd0IsQ0FBQTtJQUN4Qiw2RUFBMEIsQ0FBQTtJQUMxQiwrRUFBMkIsQ0FBQTtJQUMzQixtRkFBNkIsQ0FBQTtJQUM3QiwyRUFBeUIsQ0FBQTtJQUN6Qiw2REFBa0IsQ0FBQTtJQUNsQix5REFBZ0IsQ0FBQTtJQUNoQiwrREFBbUIsQ0FBQTtJQUNuQiwrREFBbUIsQ0FBQTtJQUNuQiw2REFBa0IsQ0FBQTtJQUNsQiwyREFBaUIsQ0FBQTtJQUNqQiwyREFBaUIsQ0FBQTtJQUNqQiwrREFBbUIsQ0FBQTtJQUNuQiwyREFBaUIsQ0FBQTtJQUNqQix5REFBZ0IsQ0FBQTtJQUNoQiwyREFBaUIsQ0FBQTtJQUNqQiw2REFBa0IsQ0FBQTtJQUNsQixpRUFBb0IsQ0FBQTtJQUNwQiwrREFBbUIsQ0FBQTtJQUNuQixxRUFBc0IsQ0FBQTtJQUN0QiwrREFBbUIsQ0FBQTtJQUNuQixxRUFBc0IsQ0FBQTtJQUN0QixtRUFBcUIsQ0FBQTtJQUNyQixpRUFBb0IsQ0FBQTtJQUNwQixpRUFBb0IsQ0FBQTtJQUNwQixxRUFBc0IsQ0FBQTtJQUN0Qix5REFBZ0IsQ0FBQTtJQUNoQiwyREFBaUIsQ0FBQTtJQUNqQiwyREFBaUIsQ0FBQTtJQUNqQix5REFBZ0IsQ0FBQTtJQUNoQiwrREFBbUIsQ0FBQTtJQUNuQix5RUFBd0IsQ0FBQTtJQUN4QixpRUFBb0IsQ0FBQTtJQUNwQiwyRUFBeUIsQ0FBQTtJQUN6QixpRUFBb0IsQ0FBQTtJQUNwQiwyRUFBeUIsQ0FBQTtJQUN6QiwrREFBbUIsQ0FBQTtJQUNuQix5RUFBd0IsQ0FBQTtJQUN4QixpRUFBb0IsQ0FBQTtJQUNwQixtRUFBcUIsQ0FBQTtJQUNyQixtRUFBcUIsQ0FBQTtJQUNyQiwrREFBbUIsQ0FBQTtJQUNuQiw2REFBa0IsQ0FBQTtJQUNsQiwrREFBbUIsQ0FBQTtJQUNuQixpRUFBb0IsQ0FBQTtJQUNwQixpRUFBb0IsQ0FBQTtJQUNwQix5REFBZ0IsQ0FBQTtJQUNoQix5RUFBd0IsQ0FBQTtJQUN4Qix1REFBZSxDQUFBO0lBQ2YsdUVBQXVCLENBQUE7SUFDdkIsMkRBQWlCLENBQUE7SUFDakIsMkVBQXlCLENBQUE7SUFDekIsMkRBQWlCLENBQUE7SUFDakIsMkVBQXlCLENBQUE7SUFDekIscUVBQXNCLENBQUE7SUFDdEIscUZBQThCLENBQUE7SUFDOUIsbUVBQXFCLENBQUE7SUFDckIsbUZBQTZCLENBQUE7SUFDN0IsNkVBQTBCLENBQUE7SUFDMUIsNkRBQWtCLENBQUE7SUFDbEIsMkVBQXlCLENBQUE7SUFDekIsaUVBQW9CLENBQUE7SUFDcEIsMkVBQXlCLENBQUE7SUFDekIseUVBQXdCLENBQUE7SUFDeEIseURBQWdCLENBQUE7SUFDaEIsdURBQWUsQ0FBQTtJQUNmLG1FQUFxQixDQUFBO0lBQ3JCLHVFQUF1QixDQUFBO0lBQ3ZCLHFFQUFzQixDQUFBO0lBQ3RCLHFEQUFjLENBQUE7SUFDZCx5RUFBd0IsQ0FBQTtJQUN4Qix1RUFBdUIsQ0FBQTtJQUN2QiwrREFBbUIsQ0FBQTtJQUNuQiwyREFBaUIsQ0FBQTtJQUNqQiwrREFBbUIsQ0FBQTtJQUNuQixpRUFBb0IsQ0FBQTtJQUNwQiwrREFBbUIsQ0FBQTtJQUNuQiw2REFBa0IsQ0FBQTtJQUNsQiw2REFBa0IsQ0FBQTtJQUNsQixpRUFBb0IsQ0FBQTtJQUNwQiw2REFBa0IsQ0FBQTtJQUNsQixtRUFBcUIsQ0FBQTtJQUNyQiw2RUFBMEIsQ0FBQTtJQUMxQix1RUFBdUIsQ0FBQTtJQUN2QixtRkFBNkIsQ0FBQTtJQUM3QiwrRkFBbUMsQ0FBQTtJQUNuQyw2RkFBa0MsQ0FBQTtJQUNsQyx1RUFBdUIsQ0FBQTtJQUN2Qix5RkFBZ0MsQ0FBQTtJQUNoQywyRUFBeUIsQ0FBQTtJQUN6Qix1RkFBK0IsQ0FBQTtJQUMvQix5RkFBZ0MsQ0FBQTtJQUNoQyw2RkFBa0MsQ0FBQTtJQUNsQywrRkFBbUMsQ0FBQTtJQUNuQyxpR0FBb0MsQ0FBQTtJQUNwQyxtR0FBcUMsQ0FBQTtJQUNyQyx1R0FBdUMsQ0FBQTtJQUN2Qyx5R0FBd0MsQ0FBQTtJQUN4Qyw2RUFBMEIsQ0FBQTtJQUMxQiwrRUFBMkIsQ0FBQTtJQUMzQixpRkFBNEIsQ0FBQTtJQUM1QiwrRUFBMkIsQ0FBQTtJQUMzQiwrRUFBMkIsQ0FBQTtJQUMzQiwrRUFBMkIsQ0FBQTtJQUMzQiw2RUFBMEIsQ0FBQTtJQUMxQix1RUFBdUIsQ0FBQTtJQUN2Qiw2RUFBMEIsQ0FBQTtJQUMxQiw2RUFBMEIsQ0FBQTtJQUMxQiwyREFBaUIsQ0FBQTtJQUNqQiw2REFBa0IsQ0FBQTtJQUNsQix5REFBZ0IsQ0FBQTtJQUNoQiwrREFBbUIsQ0FBQTtJQUNuQixpRUFBb0IsQ0FBQTtJQUNwQixtRUFBcUIsQ0FBQTtJQUNyQiwrREFBbUIsQ0FBQTtJQUNuQix1RkFBK0IsQ0FBQTtJQUMvQixpR0FBb0MsQ0FBQTtJQUNwQyxtRkFBNkIsQ0FBQTtJQUM3Qiw2RkFBa0MsQ0FBQTtJQUNsQyxxRkFBOEIsQ0FBQTtJQUM5QiwrRkFBbUMsQ0FBQTtJQUNuQyxpR0FBb0MsQ0FBQTtJQUNwQywrRkFBbUMsQ0FBQTtJQUNuQyw2RkFBa0MsQ0FBQTtJQUNsQywyRkFBaUMsQ0FBQTtJQUNqQywrRkFBbUMsQ0FBQTtJQUNuQyw2RkFBa0MsQ0FBQTtJQUNsQyxpR0FBb0MsQ0FBQTtJQUNwQyw2RkFBa0MsQ0FBQTtJQUNsQywrRkFBbUMsQ0FBQTtJQUNuQywyRkFBaUMsQ0FBQTtJQUNqQyxxRkFBOEIsQ0FBQTtJQUM5QixpRkFBNEIsQ0FBQTtJQUM1QixtRkFBNkIsQ0FBQTtJQUM3Qix1RkFBK0IsQ0FBQTtJQUMvQixtRkFBNkIsQ0FBQTtJQUM3QixxRkFBOEIsQ0FBQTtJQUM5QixtRUFBcUIsQ0FBQTtJQUNyQix5RkFBZ0MsQ0FBQTtJQUNoQyx1RkFBK0IsQ0FBQTtJQUMvQixxRkFBOEIsQ0FBQTtJQUM5QixtRkFBNkIsQ0FBQTtJQUM3Qix1RkFBK0IsQ0FBQTtJQUMvQixxRkFBOEIsQ0FBQTtJQUM5QixtRUFBcUIsQ0FBQTtJQUNyQixpRUFBb0IsQ0FBQTtJQUNwQixpRUFBb0IsQ0FBQTtJQUNwQiwrREFBbUIsQ0FBQTtJQUNuQiw2REFBa0IsQ0FBQTtJQUNsQiw2REFBa0IsQ0FBQTtJQUNsQix5RUFBd0IsQ0FBQTtJQUN4QixtRUFBcUIsQ0FBQTtJQUNyQix5RUFBd0IsQ0FBQTtJQUN4QixxRUFBc0IsQ0FBQTtJQUN0Qix1RUFBdUIsQ0FBQTtJQUN2QiwrRUFBMkIsQ0FBQTtJQUMzQiw2RUFBMEIsQ0FBQTtJQUMxQixtRkFBNkIsQ0FBQTtJQUM3QixxRkFBOEIsQ0FBQTtJQUM5Qix1RUFBdUIsQ0FBQTtJQUN2QixpRUFBb0IsQ0FBQTtJQUNwQix1RUFBdUIsQ0FBQTtJQUN2QixtRUFBcUIsQ0FBQTtJQUNyQixxRUFBc0IsQ0FBQTtJQUN0Qiw2RUFBMEIsQ0FBQTtJQUMxQiwyRUFBeUIsQ0FBQTtJQUN6QixpRkFBNEIsQ0FBQTtJQUM1QixtRkFBNkIsQ0FBQTtJQUM3QixtRUFBcUIsQ0FBQTtJQUNyQixxRUFBc0IsQ0FBQTtJQUN0QixpR0FBb0MsQ0FBQTtJQUNwQywrRkFBbUMsQ0FBQTtJQUNuQywrRkFBbUMsQ0FBQTtJQUNuQyxpR0FBb0MsQ0FBQTtJQUNwQyxtR0FBcUMsQ0FBQTtJQUNyQyx5RkFBZ0MsQ0FBQTtJQUNoQyx1R0FBdUMsQ0FBQTtJQUN2QyxtR0FBcUMsQ0FBQTtJQUNyQyxpRkFBNEIsQ0FBQTtJQUM1QiwrRUFBMkIsQ0FBQTtJQUMzQixtRkFBNkIsQ0FBQTtJQUM3QixxRkFBOEIsQ0FBQTtJQUM5QixxR0FBc0MsQ0FBQTtJQUN0QyxpR0FBb0MsQ0FBQTtJQUNwQyxtR0FBcUMsQ0FBQTtJQUNyQywrRkFBbUMsQ0FBQTtJQUNuQyxxRkFBOEIsQ0FBQTtJQUM5QixpR0FBb0MsQ0FBQTtJQUNwQyx5RkFBZ0MsQ0FBQTtJQUNoQyx1RkFBK0IsQ0FBQTtJQUMvQiw2RkFBa0MsQ0FBQTtJQUNsQywrRkFBbUMsQ0FBQTtJQUNuQywyR0FBeUMsQ0FBQTtJQUN6QywrRkFBbUMsQ0FBQTtJQUNuQyx5R0FBd0MsQ0FBQTtJQUN4QyxxR0FBc0MsQ0FBQTtJQUN0QywrR0FBMkMsQ0FBQTtJQUMzQywyR0FBeUMsQ0FBQTtJ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cEIsbUVBQXFCLENBQUE7SUFDckIscUVBQXNCLENBQUE7SUFDdEIsNkRBQWtCLENBQUE7SUFDbEIsK0RBQW1CLENBQUE7SUFDbkIsK0RBQW1CLENBQUE7SUFDbkIsMkVBQXlCLENBQUE7SUFDekIsNkZBQWtDLENBQUE7SUFDbEMsMkZBQWlDLENBQUE7SUFDakMsdUZBQStCLENBQUE7SUFDL0IseUZBQWdDLENBQUE7SUFDaEMsMkZBQWlDLENBQUE7SUFDakMsK0RBQW1CLENBQUE7SUFDbkIseUZBQWdDLENBQUE7SUFDaEMsMkZBQWlDLENBQUE7SUFDakMsK0ZBQW1DLENBQUE7SUFDbkMsaUdBQW9DLENBQUE7SUFDcEMsK0VBQTJCLENBQUE7SUFDM0IsaUZBQTRCLENBQUE7SUFDNUIsdUZBQStCLENBQUE7SUFDL0IsdUdBQXVDLENBQUE7SUFDdkMsK0VBQTJCLENBQUE7SUFDM0IsMkVBQXlCLENBQUE7SUFDekIsNkVBQTBCLENBQUE7SUFDMUIsbUdBQXFDLENBQUE7SUFDckMsbUZBQTZCLENBQUE7SUFDN0IsMkVBQXlCLENBQUE7SUFDekIsaUZBQTRCLENBQUE7SUFDNUIsaUZBQTRCLENBQUE7SUFDNUIsbUZBQTZCLENBQUE7SUFDN0IsMkZBQWlDLENBQUE7SUFDakMscUZBQThCLENBQUE7SUFDOUIseUVBQXdCLENBQUE7SUFDeEIsNkVBQTBCLENBQUE7SUFDMUIsNkVBQTBCLENBQUE7SUFDMUIsNkVBQTBCLENBQUE7SUFDMUIsdUZBQStCLENBQUE7SUFDL0IscUZBQThCLENBQUE7SUFDOUIscUZBQThCLENBQUE7SUFDOUIseUZBQWdDLENBQUE7SUFDaEMsK0VBQTJCLENBQUE7SUFDM0IsNkVBQTBCLENBQUE7SUFDMUIsaUZBQTRCLENBQUE7SUFDNUIsaUZBQTRCLENBQUE7SUFDNUIsdUZBQStCLENBQUE7SUFDL0IscUZBQThCLENBQUE7SUFDOUIseUZBQWdDLENBQUE7SUFDaEMsMkZBQWlDLENBQUE7SUFDakMscUZBQThCLENBQUE7SUFDOUIsbUZBQTZCLENBQUE7SUFDN0IsdUZBQStCLENBQUE7SUFDL0IseUZBQWdDLENBQUE7SUFDaEMscUZBQThCLENBQUE7SUFDOUIsbUZBQTZCLENBQUE7SUFDN0IsdUZBQStCLENBQUE7SUFDL0IseUZBQWdDLENBQUE7SUFDaEMsaUdBQW9DLENBQUE7SUFDcEMsdUZBQStCLENBQUE7SUFDL0IsbUdBQXFDLENBQUE7SUFDckMscUdBQXNDLENBQUE7SUFDdEMseUZBQWdDLENBQUE7SUFDaEMseUZBQWdDLENBQUE7SUFDaEMsMkZBQWlDLENBQUE7SUFDakMscUdBQXNDLENBQUE7SUFDdEMsdUdBQXVDLENBQUE7SUFDdkMsNkZBQWtDLENBQUE7SUFDbEMseUdBQXdDLENBQUE7SUFDeEMsK0VBQTJCLENBQUE7SUFDM0IsNkVBQTBCLENBQUE7SUFDMUIsbUZBQTZCLENBQUE7SUFDN0IsaUZBQTRCLENBQUE7SUFDNUIsK0VBQTJCLENBQUE7SUFDM0IseUZBQWdDLENBQUE7SUFDaEMsNkVBQTBCLENBQUE7SUFDMUIsdUZBQStCLENBQUE7SUFDL0IsaUZBQTRCLENBQUE7SUFDNUIsMkZBQWlDLENBQUE7SUFDakMsaUZBQTRCLENBQUE7SUFDNUIsbUZBQTZCLENBQUE7SUFDN0IsK0VBQTJCLENBQUE7SUFDM0IsaUZBQTRCLENBQUE7SUFDNUIsbUZBQTZCLENBQUE7SUFDN0IscUZBQThCLENBQUE7SUFDOUIsNkZBQWtDLENBQUE7SUFDbEMsK0ZBQW1DLENBQUE7SUFDbkMsMkZBQWlDLENBQUE7SUFDakMsNkZBQWtDLENBQUE7SUFDbEMseUZBQWdDLENBQUE7SUFDaEMsMkZBQWlDLENBQUE7SUFDakMseUVBQXdCLENBQUE7SUFDeEIscUVBQXNCLENBQUE7SUFDdEIseUZBQWdDLENBQUE7SUFDaEMsMkZBQWlDLENBQUE7SUFDakMsNkZBQWtDLENBQUE7SUFDbEMsK0VBQTJCLENBQUE7SUFDM0IsNkVBQTBCLENBQUE7SUFDMUIsNkVBQTBCLENBQUE7SUFDMUIsK0VBQTJCLENBQUE7SUFDM0IsaUZBQTRCLENBQUE7SUFDNUIscUZBQThCLENBQUE7SUFDOUIsbUZBQTZCLENBQUE7SUFDN0IscUVBQXNCLENBQUE7SUFDdEIsaUVBQW9CLENBQUE7SUFDcEIseUdBQXdDLENBQUE7SUFDeEMsdUdBQXVDLENBQUE7SUFDdkMscUdBQXNDLENBQUE7SUFDdEMsaUdBQW9DLENBQUE7SUFDcEMscUdBQXNDLENBQUE7SUFDdEMsMkZBQWlDLENBQUE7SUFDakMscUdBQXNDLENBQUE7SUFDdEMseUdBQXdDLENBQUE7SUFDeEMsK0ZBQW1DLENBQUE7SUFDbkMsNkVBQTBCLENBQUE7SUFDMUIsMkVBQXlCLENBQUE7SUFDekIseUVBQXdCLENBQUE7SUFDeEIscUZBQThCLENBQUE7SUFDOUIsbUZBQTZCLENBQUE7SUFDN0IsbUZBQTZCLENBQUE7SUFDN0IsdUZBQStCLENBQUE7SUFDL0IsdUZBQStCLENBQUE7SUFDL0IsdUZBQStCLENBQUE7SUFDL0IsdUZBQStCLENBQUE7SUFDL0IscUZBQThCLENBQUE7SUFDOUIscUZBQThCLENBQUE7SUFDOUIseUZBQWdDLENBQUE7SUFDaEMseUZBQWdDLENBQUE7SUFDaEMsaUdBQW9DLENBQUE7SUFDcEMsdUdBQXVDLENBQUE7SUFDdkMsdUdBQXVDLENBQUE7SUFDdkMsNkdBQTBDLENBQUE7SUFDMUMscUdBQXNDLENBQUE7SUFDdEMsMkdBQXlDLENBQUE7SUFDekMsbUdBQXFDLENBQUE7SUFDckMseUdBQXdDLENBQUE7SUFDeEMsdUdBQXVDLENBQUE7SUFDdkMsNkdBQTBDLENBQUE7SUFDMUMsK0VBQTJCLENBQUE7SUFDM0IscUZBQThCLENBQUE7SUFDOUIsNkVBQTBCLENBQUE7SUFDMUIsbUVBQXFCLENBQUE7SUFDckIscUVBQXNCLENBQUE7SUFDdEIsdUVBQXVCLENBQUE7SUFDdkIseUVBQXdCLENBQUE7SUFDeEIsMkVBQXlCLENBQUE7SUFDekIscUVBQXNCLENBQUE7SUFDdEIscUVBQXNCLENBQUE7SUFDdEIsdUVBQXVCLENBQUE7SUFDdkIsMkVBQXlCLENBQUE7SUFDekIsNkVBQTBCLENBQUE7SUFDMUIsK0VBQTJCLENBQUE7SUFDM0IsaUZBQTRCLENBQUE7SUFDNUIsbUZBQTZCLENBQUE7SUFDN0IscUZBQThCLENBQUE7SUFDOUIsK0VBQTJCLENBQUE7SUFDM0IsMkdBQXlDLENBQUE7SUFDekMseUdBQXdDLENBQUE7SUFDeEMsNkdBQTBDLENBQUE7SUFDMUMscUdBQXNDLENBQUE7SUFDdEMsbUdBQXFDLENBQUE7SUFDckMseUdBQXdDLENBQUE7SUFDeEMsNkdBQTBDLENBQUE7SUFDMUMsMkdBQXlDLENBQUE7SUFDekMsK0dBQTJDLENBQUE7SUFDM0MsdUdBQXVDLENBQUE7SUFDdkMscUdBQXNDLENBQUE7SUFDdEMsMkdBQXlDLENBQUE7SUFDekMsK0dBQTJDLENBQUE7SUFDM0MsNkdBQTBDLENBQUE7SUFDMUMsaUhBQTRDLENBQUE7SUFDNUMseUdBQXdDLENBQUE7SUFDeEMsdUdBQXVDLENBQUE7SUFDdkMsK0dBQTJDLENBQUE7SUFDM0MseUdBQXdDLENBQUE7SUFDeEMsdUdBQXVDLENBQUE7SUFDdkMsMkdBQXlDLENBQUE7SUFDekMsbUdBQXFDLENBQUE7SUFDckMsaUdBQW9DLENBQUE7SUFDcEMsdUdBQXVDLENBQUE7SUFDdkMsK0VBQTJCLENBQUE7SUFDM0IsMkRBQWlCLENBQUE7SUFDakIsNkRBQWtCLENBQUE7SUFDbEIsbUVBQXFCLENBQUE7SUFDckIsbUZBQTZCLENBQUE7SUFDN0IsK0VBQTJCLENBQUE7SUFDM0IsaUZBQTRCLENBQUE7SUFDNUIsbUZBQTZCLENBQUE7SUFDN0IseUVBQXdCLENBQUE7SUFDeEIsbUZBQTZCLENBQUE7SUFDN0IscUZBQThCLENBQUE7SUFDOUIsNkVBQTBCLENBQUE7SUFDMUIsK0RBQW1CLENBQUE7SUFDbkIseUVBQXdCLENBQUE7SUFDeEIscUdBQXNDLENBQUE7SUFDdEMseUZBQWdDLENBQUE7SUFDaEMsbUdBQXFDLENBQUE7SUFDckMsbUZBQTZCLENBQUE7SUFDN0IsMkRBQWlCLENBQUE7SUFDakIsaUVBQW9CLENBQUE7SUFDcEIsaUVBQW9CLENBQUE7SUFDcEIsNkRBQWtCLENBQUE7SUFDbEIsK0RBQW1CLENBQUE7SUFDbkIsNkRBQWtCLENBQUE7SUFDbEIsNkRBQWtCLENBQUE7SUFDbEIsbUVBQXFCLENBQUE7SUFDckIsMkRBQWlCLENBQUE7SUFDakIsMkRBQWlCLENBQUE7SUFDakIscUVBQXNCLENBQUE7SUFDdEIsaUVBQW9CLENBQUE7SUFDcEIsaUVBQW9CLENBQUE7SUFDcEIscUVBQXNCLENBQUE7SUFDdEIseURBQWdCLENBQUE7SUFDaEIseURBQWdCLENBQUE7SUFDaEIsNkRBQWtCLENBQUE7SUFDbEIsdURBQWUsQ0FBQTtJQUNmLGlGQUE0QixDQUFBO0lBQzVCLCtEQUFtQixDQUFBO0lBQ25CLCtEQUFtQixDQUFBO0lBQ25CLG1FQUFxQixDQUFBO0lBQ3JCLDZFQUEwQixDQUFBO0lBQzFCLDJFQUF5QixDQUFBO0lBQ3pCLDJFQUF5QixDQUFBO0lBQ3pCLCtHQUEyQyxDQUFBO0lBQzNDLG1IQUE2QyxDQUFBO0lBQzdDLGlIQUE0QyxDQUFBO0lBQzVDLHlHQUF3QyxDQUFBO0lBQ3hDLCtHQUEyQyxDQUFBO0lBQzNDLCtHQUEyQyxDQUFBO0lBQzNDLDJGQUFpQyxDQUFBO0lBQ2pDLHFGQUE4QixDQUFBO0lBQzlCLHVGQUErQixDQUFBO0lBQy9CLGlGQUE0QixDQUFBO0lBQzVCLHVGQUErQixDQUFBO0lBQy9CLG1GQUE2QixDQUFBO0lBQzdCLGlGQUE0QixDQUFBO0lBQzVCLGlGQUE0QixDQUFBO0lBQzVCLHFIQUE4QyxDQUFBO0lBQzlDLHlIQUFnRCxDQUFBO0lBQ2hELHVIQUErQyxDQUFBO0lBQy9DLCtHQUEyQyxDQUFBO0lBQzNDLHFIQUE4QyxDQUFBO0lBQzlDLHFIQUE4QyxDQUFBO0lBQzlDLDJEQUFpQixDQUFBO0lBQ2pCLHlEQUFnQixDQUFBO0lBQ2hCLDJEQUFpQixDQUFBO0lBQ2pCLHVEQUFlLENBQUE7SUFDZiw2REFBa0IsQ0FBQTtJQUNsQiw2REFBa0IsQ0FBQTtJQUNsQiwyREFBaUIsQ0FBQTtJQUNqQix5REFBZ0IsQ0FBQTtJQUNoQix5REFBZ0IsQ0FBQTtJQUNoQiw2REFBa0IsQ0FBQTtJQUNsQixpRUFBb0IsQ0FBQTtJQUNwQiwrREFBbUIsQ0FBQTtJQUNuQixpRUFBb0IsQ0FBQTtJQUNwQiw2REFBa0IsQ0FBQTtJQUNsQixtRUFBcUIsQ0FBQTtJQUNyQixtRUFBcUIsQ0FBQTtJQUNyQixpRUFBb0IsQ0FBQTtJQUNwQiwrREFBbUIsQ0FBQTtJQUNuQiwrREFBbUIsQ0FBQTtJQUNuQixtRUFBcUIsQ0FBQTtJQUNyQiwrRUFBMkIsQ0FBQTtJQUMzQiw2RUFBMEIsQ0FBQTtJQUMxQixpRkFBNEIsQ0FBQTtJQUM1QixtRkFBNkIsQ0FBQTtJQUM3Qiw2RUFBMEIsQ0FBQTtJQUMxQiwyRUFBeUIsQ0FBQTtJQUN6QiwrRUFBMkIsQ0FBQTtJQUMzQixpRkFBNEIsQ0FBQTtJQUM1QiwrRUFBMkIsQ0FBQTtJQUMzQiw2RUFBMEIsQ0FBQTtJQUMxQixpRkFBNEIsQ0FBQTtJQUM1QixtRkFBNkIsQ0FBQTtJQUM3QiwyRUFBeUIsQ0FBQTtJQUN6Qix5RUFBd0IsQ0FBQTtJQUN4Qiw2RUFBMEIsQ0FBQTtJQUMxQiwrRUFBMkIsQ0FBQTtJQUMzQixpRkFBNEIsQ0FBQTtJQUM1QiwrRUFBMkIsQ0FBQTtJQUMzQixtRkFBNkIsQ0FBQTtJQUM3QixxRkFBOEIsQ0FBQTtJQUM5QixpRkFBNEIsQ0FBQTtJQUM1QiwrRUFBMkIsQ0FBQTtJQUMzQixtRkFBNkIsQ0FBQTtJQUM3QixxRkFBOEIsQ0FBQTtJQUM5QiwrRUFBMkIsQ0FBQTtJQUMzQiw2RUFBMEIsQ0FBQTtJQUMxQixpRkFBNEIsQ0FBQTtJQUM1QixtRkFBNkIsQ0FBQTtJQUM3Qiw2RUFBMEIsQ0FBQTtJQUMxQiwyRUFBeUIsQ0FBQTtJQUN6QiwrRUFBMkIsQ0FBQTtJQUMzQixpRkFBNEIsQ0FBQTtJQUM1Qiw2RUFBMEIsQ0FBQTtJQUMxQiwyRUFBeUIsQ0FBQTtJQUN6QiwrRUFBMkIsQ0FBQTtJQUMzQixpRkFBNEIsQ0FBQTtJQUM1QixtRkFBNkIsQ0FBQTtJQUM3QixpRkFBNEIsQ0FBQTtJQUM1QixxRkFBOEIsQ0FBQTtJQUM5Qix1RkFBK0IsQ0FBQTtJQUMvQixx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RUFBMEIsQ0FBQTtJQUMxQixvRUFBc0IsQ0FBQTtJQUN0QixrRUFBcUIsQ0FBQTtJQUNyQixzRUFBdUIsQ0FBQTtJQUN2Qix3RUFBd0IsQ0FBQTtJQUN4QiwwRUFBeUIsQ0FBQTtJQUN6Qix3RUFBd0IsQ0FBQTtJQUN4Qiw0RUFBMEIsQ0FBQTtJQUMxQiw4RUFBMkIsQ0FBQTtJQUMzQiwwRUFBeUIsQ0FBQTtJQUN6Qix3RUFBd0IsQ0FBQTtJQUN4Qiw0RUFBMEIsQ0FBQTtJQUMxQiw4RUFBMkIsQ0FBQTtJQUMzQix3RUFBd0IsQ0FBQTtJQUN4QixzRUFBdUIsQ0FBQTtJQUN2QiwwRUFBeUIsQ0FBQTtJQUN6Qiw0RUFBMEIsQ0FBQTtJQUMxQixzRUFBdUIsQ0FBQTtJQUN2QixvRUFBc0IsQ0FBQTtJQUN0Qix3RUFBd0IsQ0FBQTtJQUN4QiwwRUFBeUIsQ0FBQTtJQUN6QixzRUFBdUIsQ0FBQTtJQUN2QixvRUFBc0IsQ0FBQTtJQUN0Qix3RUFBd0IsQ0FBQTtJQUN4QiwwRUFBeUIsQ0FBQTtJQUN6Qiw0RUFBMEIsQ0FBQTtJQUMxQiwwRUFBeUIsQ0FBQTtJQUN6Qiw4RUFBMkIsQ0FBQTtJQUMzQixnRkFBNEIsQ0FBQTtJQUM1QixzRkFBK0IsQ0FBQTtJQUMvQix3RkFBZ0MsQ0FBQTtJQUNoQyxzRkFBK0IsQ0FBQTtJQUMvQiwwRkFBaUMsQ0FBQTtJQUNqQyw0RkFBa0MsQ0FBQTtJQUNsQyw4RkFBbUMsQ0FBQTtJQUNuQyw0RkFBa0MsQ0FBQTtJQUNsQyxnR0FBb0MsQ0FBQTtJQUNwQywwRkFBaUMsQ0FBQTtJQUNqQywwRkFBaUMsQ0FBQTtJQUNqQyw0RkFBa0MsQ0FBQTtJQUNsQyw0RkFBa0MsQ0FBQTtJQUNsQywwRkFBaUMsQ0FBQTtJQUNqQywwRkFBaUMsQ0FBQTtJQUNqQyw4RkFBbUMsQ0FBQTtJQUNuQyw4RkFBbUMsQ0FBQTtJQUNuQyxrR0FBcUMsQ0FBQTtJQUNyQyxvR0FBc0MsQ0FBQTtJQUN0QyxrR0FBcUMsQ0FBQTtJQUNyQyxzR0FBdUMsQ0FBQTtJQUN2Qyw0RkFBa0MsQ0FBQTtJQUNsQyxnR0FBb0MsQ0FBQTtJQUNwQyw4RkFBbUMsQ0FBQTtJQUNuQyxrR0FBcUMsQ0FBQTtJQUNyQyw0RkFBa0MsQ0FBQTtJQUNsQyxnR0FBb0MsQ0FBQTtJQUNwQyxnR0FBb0MsQ0FBQTtJQUNwQyxvR0FBc0MsQ0FBQTtJQUN0Qyw4RUFBMkIsQ0FBQTtJQUMzQiw0RUFBMEIsQ0FBQTtJQUMxQiwwRUFBeUIsQ0FBQTtJQUN6Qiw4RUFBMkIsQ0FBQTtJQUMzQixrRUFBcUIsQ0FBQTtJQUNyQiwwRUFBeUIsQ0FBQTtJQUN6QiwwRUFBeUIsQ0FBQTtJQUN6QiwwRUFBeUIsQ0FBQTtJQUN6QixvRUFBc0IsQ0FBQTtJQUN0Qix3RUFBd0IsQ0FBQTtJQUN4QiwwRUFBeUIsQ0FBQTtJQUN6QixzRUFBdUIsQ0FBQTtJQUN2QixzRUFBdUIsQ0FBQTtJQUN2QiwwRUFBeUIsQ0FBQTtJQUN6Qix3RUFBd0IsQ0FBQTtJQUN4Qiw0RUFBMEIsQ0FBQTtJQUMxQiw4RUFBMkIsQ0FBQTtJQUMzQiwwRUFBeUIsQ0FBQTtJQUN6QiwwRUFBeUIsQ0FBQTtJQUN6Qiw4RUFBMkIsQ0FBQTtJQUMzQiw4REFBbUIsQ0FBQTtJQUNuQiw0RUFBMEIsQ0FBQTtJQUMxQiw4RUFBMkIsQ0FBQTtJQUMzQiwwRUFBeUIsQ0FBQTtJQUN6QixrRkFBNkIsQ0FBQTtJQUM3QixvRUFBc0IsQ0FBQTtJQUN0QixrRkFBNkIsQ0FBQTtJQUM3QixrRkFBNkIsQ0FBQTtJQUM3QixnRkFBNEIsQ0FBQTtJQUM1QixzRkFBK0IsQ0FBQTtJQUMvQiwwRkFBaUMsQ0FBQTtJQUNqQywwRkFBaUMsQ0FBQTtJQUNqQyxnRkFBNEIsQ0FBQTtJQUM1QixzRUFBdUIsQ0FBQTtJQUN2Qiw0RUFBMEIsQ0FBQTtJQUMxQixvRUFBc0IsQ0FBQTtJQUN0QixvRUFBc0IsQ0FBQTtJQUN0QixzRUFBdUIsQ0FBQTtJQUN2QiwwRUFBeUIsQ0FBQTtJQUN6Qiw0RUFBMEIsQ0FBQTtJQUMxQix3RUFBd0IsQ0FBQTtJQUN4Qix3RUFBd0IsQ0FBQTtJQUN4Qiw0RUFBMEIsQ0FBQTtJQUMxQiwwREFBaUIsQ0FBQTtJQUNqQix3RkFBZ0MsQ0FBQTtJQUNoQyw0RUFBMEIsQ0FBQTtJQUMxQiw0RkFBa0MsQ0FBQTtJQUNsQyxnR0FBb0MsQ0FBQTtJQUNwQyx3RUFBd0IsQ0FBQTtJQUN4QiwwRUFBeUIsQ0FBQTtJQUN6Qix3RkFBZ0MsQ0FBQTtJQUNoQyxzRkFBK0IsQ0FBQTtJQUMvQix3RkFBZ0MsQ0FBQTtJQUNoQyxzRkFBK0IsQ0FBQTtJQUMvQiw0RUFBMEIsQ0FBQTtJQUMxQiwwRUFBeUIsQ0FBQTtJQUN6Qiw4RkFBbUMsQ0FBQTtJQUNuQyxvRkFBOEIsQ0FBQTtJQUM5QixrR0FBcUMsQ0FBQTtJQUNyQywwRUFBeUIsQ0FBQTtJQUN6QixnRUFBb0IsQ0FBQTtJQUNwQiw0REFBa0IsQ0FBQTtJQUNsQiw0REFBa0IsQ0FBQTtJQUNsQiw0RkFBa0MsQ0FBQTtJQUNsQywwRkFBaUMsQ0FBQTtJQUNqQyw0RkFBa0MsQ0FBQTtJQUNsQywwRkFBaUMsQ0FBQTtJQUNqQyxrR0FBcUMsQ0FBQTtJQUNyQyxnR0FBb0MsQ0FBQTtJQUNwQyxvRkFBOEIsQ0FBQTtJQUM5QiwwRkFBaUMsQ0FBQTtJQUNqQyxzRkFBK0IsQ0FBQTtJQUMvQix3RkFBZ0MsQ0FBQTtJQUNoQyxzRkFBK0IsQ0FBQTtJQUMvQiw0RkFBa0MsQ0FBQTtJQUNsQyx3RkFBZ0MsQ0FBQTtJQUNoQywwRkFBaUMsQ0FBQTtJQUNqQyxvRkFBOEIsQ0FBQTtJQUM5QiwwRkFBaUMsQ0FBQTtJQUNqQyxzRkFBK0IsQ0FBQTtJQUMvQix3RkFBZ0MsQ0FBQTtJQUNoQywwRUFBeUIsQ0FBQTtJQUN6QixzRUFBdUIsQ0FBQTtJQUN2QiwwRUFBeUIsQ0FBQTtJQUN6Qiw0REFBa0IsQ0FBQTtJQUNsQix3REFBZ0IsQ0FBQTtJQUNoQixzRUFBdUIsQ0FBQTtJQUN2Qiw4REFBbUIsQ0FBQTtJQUNuQixrRUFBcUIsQ0FBQTtJQUNyQiwwRkFBaUMsQ0FBQTtJQUNqQyw0RkFBa0MsQ0FBQTtJQUNsQyxnR0FBb0MsQ0FBQTtJQUNwQyxrR0FBcUMsQ0FBQTtJQUNyQyxv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\n\n//# sourceURL=webpack://PW/./dist/util/block.js?");
87
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
110
88
 
111
- /***/ }),
112
-
113
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/clone.js":
114
- /*!*******************************************************************************************************!*\
115
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/clone.js ***!
116
- \*******************************************************************************************************/
117
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
118
-
119
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.clone = clone;\nconst descriptors_js_1 = __webpack_require__(/*! ./descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js\");\nconst reflect_js_1 = __webpack_require__(/*! ./reflect/reflect.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect.js\");\nconst guard_js_1 = __webpack_require__(/*! ./reflect/guard.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/guard.js\");\n/**\n * Create a deep copy of a message, including extensions and unknown fields.\n */\nfunction clone(schema, message) {\n return cloneReflect((0, reflect_js_1.reflect)(schema, message)).message;\n}\nfunction cloneReflect(i) {\n const o = (0, reflect_js_1.reflect)(i.desc);\n for (const f of i.fields) {\n if (!i.isSet(f)) {\n continue;\n }\n switch (f.fieldKind) {\n default: {\n o.set(f, cloneSingular(f, i.get(f)));\n break;\n }\n case \"list\":\n // eslint-disable-next-line no-case-declarations\n const list = o.get(f);\n for (const item of i.get(f)) {\n list.add(cloneSingular(f, item));\n }\n break;\n case \"map\":\n // eslint-disable-next-line no-case-declarations\n const map = o.get(f);\n for (const entry of i.get(f).entries()) {\n map.set(entry[0], cloneSingular(f, entry[1]));\n }\n break;\n }\n }\n const unknown = i.getUnknown();\n if (unknown && unknown.length > 0) {\n o.setUnknown([...unknown]);\n }\n return o;\n}\nfunction cloneSingular(field, value) {\n if (field.message !== undefined && (0, guard_js_1.isReflectMessage)(value)) {\n return cloneReflect(value);\n }\n if (field.scalar == descriptors_js_1.ScalarType.BYTES && value instanceof Uint8Array) {\n // @ts-expect-error T cannot extend Uint8Array in practice\n return value.slice();\n }\n return value;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/clone.js?");
89
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ AuthError: () => (/* binding */ AuthError)\n/* harmony export */ });\nclass AuthError extends Error {\n constructor(message, code) {\n super(message);\n this.code = code;\n }\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRXJyb3JzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vbGliL3V0aWwvRXJyb3JzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sT0FBTyxTQUFVLFNBQVEsS0FBSztJQUNoQyxZQUFZLE9BQWUsRUFBUyxJQUFZO1FBQzVDLEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQztRQURpQixTQUFJLEdBQUosSUFBSSxDQUFRO0lBRWhELENBQUM7Q0FDSiJ9\n\n//# sourceURL=webpack://PW/./esm/util/Errors.js?");
120
90
 
121
91
  /***/ }),
122
92
 
123
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/boot.js":
124
- /*!****************************************************************************************************************!*\
125
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/boot.js ***!
126
- \****************************************************************************************************************/
127
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
93
+ /***/ "./esm/util/Misc.js":
94
+ /*!**************************!*\
95
+ !*** ./esm/util/Misc.js ***!
96
+ \**************************/
97
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
128
98
 
129
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.boot = boot;\nexports.bootFileDescriptorProto = bootFileDescriptorProto;\nconst restore_json_names_js_1 = __webpack_require__(/*! ./restore-json-names.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/restore-json-names.js\");\nconst registry_js_1 = __webpack_require__(/*! ../registry.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/registry.js\");\n/**\n * Hydrate a file descriptor for google/protobuf/descriptor.proto from a plain\n * object.\n *\n * See createFileDescriptorProtoBoot() for details.\n *\n * @private\n */\nfunction boot(boot) {\n const root = bootFileDescriptorProto(boot);\n root.messageType.forEach(restore_json_names_js_1.restoreJsonNames);\n const reg = (0, registry_js_1.createFileRegistry)(root, () => undefined);\n // non-null assertion because we just created the registry from the file we look up\n return reg.getFile(root.name);\n}\n/**\n * Creates the message google.protobuf.FileDescriptorProto from an object literal.\n *\n * See createFileDescriptorProtoBoot() for details.\n *\n * @private\n */\nfunction bootFileDescriptorProto(init) {\n const proto = Object.create({\n syntax: \"\",\n edition: 0,\n });\n return Object.assign(proto, Object.assign(Object.assign({ $typeName: \"google.protobuf.FileDescriptorProto\", dependency: [], publicDependency: [], weakDependency: [], service: [], extension: [] }, init), { messageType: init.messageType.map(bootDescriptorProto), enumType: init.enumType.map(bootEnumDescriptorProto) }));\n}\nfunction bootDescriptorProto(init) {\n var _a, _b, _c, _d, _e, _f, _g, _h;\n return {\n $typeName: \"google.protobuf.DescriptorProto\",\n name: init.name,\n field: (_b = (_a = init.field) === null || _a === void 0 ? void 0 : _a.map(bootFieldDescriptorProto)) !== null && _b !== void 0 ? _b : [],\n extension: [],\n nestedType: (_d = (_c = init.nestedType) === null || _c === void 0 ? void 0 : _c.map(bootDescriptorProto)) !== null && _d !== void 0 ? _d : [],\n enumType: (_f = (_e = init.enumType) === null || _e === void 0 ? void 0 : _e.map(bootEnumDescriptorProto)) !== null && _f !== void 0 ? _f : [],\n extensionRange: (_h = (_g = init.extensionRange) === null || _g === void 0 ? void 0 : _g.map((e) => (Object.assign({ $typeName: \"google.protobuf.DescriptorProto.ExtensionRange\" }, e)))) !== null && _h !== void 0 ? _h : [],\n oneofDecl: [],\n reservedRange: [],\n reservedName: [],\n };\n}\nfunction bootFieldDescriptorProto(init) {\n const proto = Object.create({\n label: 1,\n typeName: \"\",\n extendee: \"\",\n defaultValue: \"\",\n oneofIndex: 0,\n jsonName: \"\",\n proto3Optional: false,\n });\n return Object.assign(proto, Object.assign(Object.assign({ $typeName: \"google.protobuf.FieldDescriptorProto\" }, init), { options: init.options ? bootFieldOptions(init.options) : undefined }));\n}\nfunction bootFieldOptions(init) {\n var _a, _b, _c;\n const proto = Object.create({\n ctype: 0,\n packed: false,\n jstype: 0,\n lazy: false,\n unverifiedLazy: false,\n deprecated: false,\n weak: false,\n debugRedact: false,\n retention: 0,\n });\n return Object.assign(proto, Object.assign(Object.assign({ $typeName: \"google.protobuf.FieldOptions\" }, init), { targets: (_a = init.targets) !== null && _a !== void 0 ? _a : [], editionDefaults: (_c = (_b = init.editionDefaults) === null || _b === void 0 ? void 0 : _b.map((e) => (Object.assign({ $typeName: \"google.protobuf.FieldOptions.EditionDefault\" }, e)))) !== null && _c !== void 0 ? _c : [], uninterpretedOption: [] }));\n}\nfunction bootEnumDescriptorProto(init) {\n return {\n $typeName: \"google.protobuf.EnumDescriptorProto\",\n name: init.name,\n reservedName: [],\n reservedRange: [],\n value: init.value.map((e) => (Object.assign({ $typeName: \"google.protobuf.EnumValueDescriptorProto\" }, e))),\n };\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/boot.js?");
99
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ queryToString: () => (/* binding */ queryToString)\n/* harmony export */ });\nfunction queryToString(query) {\n if (typeof query === \"undefined\")\n return \"\";\n let str = \"\";\n if (query.filter) {\n if (typeof query.filter !== \"string\") {\n str += \"&filter=\";\n const filters = Object.entries(query.filter);\n for (let i = 0, len = filters.length; i < len; i++) {\n const filt = filters[i];\n if (typeof filt[1] === \"string\")\n str += `${filt[0]}=\"${filt[1]}\"`;\n // boolean gets toString() to true or false so eh\n else\n str += `${filt[0]}=${filt[1]}`;\n }\n }\n else\n str += \"&filter=\" + query.filter;\n }\n if (query.sort) {\n if (typeof query.filter !== \"string\") {\n str += \"&sort=\";\n // if (Array.isArray(query.sort)) {\n // } else {\n const sorts = Array.isArray(query.sort) ? query.sort : Object.entries(query.sort);\n for (let i = 0, len = sorts.length; i < len; i++) {\n const sort = sorts[i];\n if (typeof sort === \"string\")\n str += sort + \",\";\n else if (sort[1] === undefined)\n str += sort[0] + \",\";\n else if (sort[1] === \"ASC\")\n str += sort[0] + \",\";\n else if (sort[1] === \"DESC\")\n str += \"-\" + sort[0] + \",\";\n }\n if (sorts.length)\n str = str.slice(0, -1);\n // }\n }\n else\n str += \"&sort=\" + query.sort;\n }\n return str;\n}\n// console.log(queryToString<ColWorld>({ filter: { id: \"a\" } }));\n// console.log(queryToString<ColWorld>({ filter: { id: \"a\", created: \"nice\" } }));\n// console.log(queryToString<ColWorld>({ filter: \"a~b,ok=lol\" }));\n// console.log(queryToString<ColWorld>({ sort: [\"collectionId\", [\"id\", \"ASC\"], \"collectionName\", [\"created\", \"DESC\"], [\"description\"]] }));\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTWlzYy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL2xpYi91dGlsL01pc2MudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxVQUFVLGFBQWEsQ0FBb0IsS0FBOEI7SUFDM0UsSUFBSSxPQUFPLEtBQUssS0FBSyxXQUFXO1FBQUUsT0FBTyxFQUFFLENBQUM7SUFFNUMsSUFBSSxHQUFHLEdBQUcsRUFBRSxDQUFDO0lBRWIsSUFBSSxLQUFLLENBQUMsTUFBTSxFQUFFLENBQUM7UUFDZixJQUFJLE9BQU8sS0FBSyxDQUFDLE1BQU0sS0FBSyxRQUFRLEVBQUUsQ0FBQztZQUNuQyxHQUFHLElBQUksVUFBVSxDQUFDO1lBRWxCLE1BQU0sT0FBTyxHQUFHLE1BQU0sQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDO1lBRTdDLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLEdBQUcsR0FBRyxPQUFPLENBQUMsTUFBTSxFQUFFLENBQUMsR0FBRyxHQUFHLEVBQUUsQ0FBQyxFQUFFLEVBQUUsQ0FBQztnQkFDakQsTUFBTSxJQUFJLEdBQUcsT0FBTyxDQUFDLENBQUMsQ0FBQyxDQUFDO2dCQUV4QixJQUFJLE9BQU8sSUFBSSxDQUFDLENBQUMsQ0FBQyxLQUFLLFFBQVE7b0JBQUUsR0FBRyxJQUFJLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxLQUFLLElBQUksQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDO2dCQUNsRSxpREFBaUQ7O29CQUM1QyxHQUFHLElBQUksR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUM7WUFDeEMsQ0FBQztRQUNMLENBQUM7O1lBQU0sR0FBRyxJQUFJLFVBQVUsR0FBRyxLQUFLLENBQUMsTUFBTSxDQUFDO0lBQzVDLENBQUM7SUFFRCxJQUFJLEtBQUssQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUNiLElBQUksT0FBTyxLQUFLLENBQUMsTUFBTSxLQUFLLFFBQVEsRUFBRSxDQUFDO1lBQ25DLEdBQUcsSUFBSSxRQUFRLENBQUM7WUFFaEIsbUNBQW1DO1lBRW5DLFdBQVc7WUFDUCxNQUFNLEtBQUssR0FBRyxLQUFLLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUE2QixDQUFDO1lBRTlHLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLEdBQUcsR0FBRyxLQUFLLENBQUMsTUFBTSxFQUFFLENBQUMsR0FBRyxHQUFHLEVBQUUsQ0FBQyxFQUFFLEVBQUUsQ0FBQztnQkFDL0MsTUFBTSxJQUFJLEdBQUcsS0FBSyxDQUFDLENBQUMsQ0FBK0MsQ0FBQztnQkFFcEUsSUFBSSxPQUFPLElBQUksS0FBSyxRQUFRO29CQUFFLEdBQUcsSUFBSSxJQUFJLEdBQUcsR0FBRyxDQUFDO3FCQUMzQyxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUMsS0FBSyxTQUFTO29CQUFFLEdBQUcsSUFBSSxJQUFJLENBQUMsQ0FBQyxDQUFDLEdBQUcsR0FBRyxDQUFDO3FCQUNoRCxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUMsS0FBSyxLQUFLO29CQUFFLEdBQUcsSUFBSSxJQUFJLENBQUMsQ0FBQyxDQUFDLEdBQUcsR0FBRyxDQUFDO3FCQUM1QyxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUMsS0FBSyxNQUFNO29CQUFFLEdBQUcsSUFBSSxHQUFHLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxHQUFHLEdBQUcsQ0FBQztZQUM1RCxDQUFDO1lBRUQsSUFBSSxLQUFLLENBQUMsTUFBTTtnQkFBRSxHQUFHLEdBQUcsR0FBRyxDQUFDLEtBQUssQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQztZQUM3QyxJQUFJO1FBQ1IsQ0FBQzs7WUFBTSxHQUFHLElBQUksUUFBUSxHQUFHLEtBQUssQ0FBQyxJQUFJLENBQUM7SUFDeEMsQ0FBQztJQUVELE9BQU8sR0FBRyxDQUFDO0FBQ2YsQ0FBQztBQUVELGlFQUFpRTtBQUNqRSxrRkFBa0Y7QUFDbEYsa0VBQWtFO0FBRWxFLDJJQUEySSJ9\n\n//# sourceURL=webpack://PW/./esm/util/Misc.js?");
130
100
 
131
101
  /***/ }),
132
102
 
133
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/embed.js":
134
- /*!*****************************************************************************************************************!*\
135
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/embed.js ***!
136
- \*****************************************************************************************************************/
137
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
103
+ /***/ "./esm/util/block.js":
104
+ /*!***************************!*\
105
+ !*** ./esm/util/block.js ***!
106
+ \***************************/
107
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
138
108
 
139
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.embedFileDesc = embedFileDesc;\nexports.pathInFileDesc = pathInFileDesc;\nexports.createFileDescriptorProtoBoot = createFileDescriptorProtoBoot;\nconst names_js_1 = __webpack_require__(/*! ../reflect/names.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/names.js\");\nconst fields_js_1 = __webpack_require__(/*! ../fields.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/fields.js\");\nconst base64_encoding_js_1 = __webpack_require__(/*! ../wire/base64-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/base64-encoding.js\");\nconst to_binary_js_1 = __webpack_require__(/*! ../to-binary.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/to-binary.js\");\nconst clone_js_1 = __webpack_require__(/*! ../clone.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/clone.js\");\nconst descriptor_pb_js_1 = __webpack_require__(/*! ../wkt/gen/google/protobuf/descriptor_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/descriptor_pb.js\");\n/**\n * Create necessary information to embed a file descriptor in\n * generated code.\n *\n * @private\n */\nfunction embedFileDesc(file) {\n const embed = {\n bootable: false,\n proto() {\n const stripped = (0, clone_js_1.clone)(descriptor_pb_js_1.FileDescriptorProtoSchema, file);\n (0, fields_js_1.clearField)(stripped, descriptor_pb_js_1.FileDescriptorProtoSchema.field.dependency);\n (0, fields_js_1.clearField)(stripped, descriptor_pb_js_1.FileDescriptorProtoSchema.field.sourceCodeInfo);\n stripped.messageType.map(stripJsonNames);\n return stripped;\n },\n base64() {\n const bytes = (0, to_binary_js_1.toBinary)(descriptor_pb_js_1.FileDescriptorProtoSchema, this.proto());\n return (0, base64_encoding_js_1.base64Encode)(bytes, \"std_raw\");\n },\n };\n return file.name == \"google/protobuf/descriptor.proto\"\n ? Object.assign(Object.assign({}, embed), { bootable: true, boot() {\n return createFileDescriptorProtoBoot(this.proto());\n } }) : embed;\n}\nfunction stripJsonNames(d) {\n for (const f of d.field) {\n if (f.jsonName === (0, names_js_1.protoCamelCase)(f.name)) {\n (0, fields_js_1.clearField)(f, descriptor_pb_js_1.FieldDescriptorProtoSchema.field.jsonName);\n }\n }\n for (const n of d.nestedType) {\n stripJsonNames(n);\n }\n}\n/**\n * Compute the path to a message, enumeration, extension, or service in a\n * file descriptor.\n *\n * @private\n */\nfunction pathInFileDesc(desc) {\n if (desc.kind == \"service\") {\n return [desc.file.services.indexOf(desc)];\n }\n const parent = desc.parent;\n if (parent == undefined) {\n switch (desc.kind) {\n case \"enum\":\n return [desc.file.enums.indexOf(desc)];\n case \"message\":\n return [desc.file.messages.indexOf(desc)];\n case \"extension\":\n return [desc.file.extensions.indexOf(desc)];\n }\n }\n function findPath(cur) {\n const nested = [];\n for (let parent = cur.parent; parent;) {\n const idx = parent.nestedMessages.indexOf(cur);\n nested.unshift(idx);\n cur = parent;\n parent = cur.parent;\n }\n nested.unshift(cur.file.messages.indexOf(cur));\n return nested;\n }\n const path = findPath(parent);\n switch (desc.kind) {\n case \"extension\":\n return [...path, parent.nestedExtensions.indexOf(desc)];\n case \"message\":\n return [...path, parent.nestedMessages.indexOf(desc)];\n case \"enum\":\n return [...path, parent.nestedEnums.indexOf(desc)];\n }\n}\n/**\n * The file descriptor for google/protobuf/descriptor.proto cannot be embedded\n * in serialized form, since it is required to parse itself.\n *\n * This function takes an instance of the message, and returns a plain object\n * that can be hydrated to the message again via bootFileDescriptorProto().\n *\n * This function only works with a message google.protobuf.FileDescriptorProto\n * for google/protobuf/descriptor.proto, and only supports features that are\n * relevant for the specific use case. For example, it discards file options,\n * reserved ranges and reserved names, and field options that are unused in\n * descriptor.proto.\n *\n * @private\n */\nfunction createFileDescriptorProtoBoot(proto) {\n var _a;\n assert(proto.name == \"google/protobuf/descriptor.proto\");\n assert(proto.package == \"google.protobuf\");\n assert(!proto.dependency.length);\n assert(!proto.publicDependency.length);\n assert(!proto.weakDependency.length);\n assert(!proto.service.length);\n assert(!proto.extension.length);\n assert(proto.sourceCodeInfo === undefined);\n assert(proto.syntax == \"\" || proto.syntax == \"proto2\");\n assert(!((_a = proto.options) === null || _a === void 0 ? void 0 : _a.features)); // we're dropping file options\n assert(proto.edition === descriptor_pb_js_1.Edition.EDITION_UNKNOWN);\n return {\n name: proto.name,\n package: proto.package,\n messageType: proto.messageType.map(createDescriptorBoot),\n enumType: proto.enumType.map(createEnumDescriptorBoot),\n };\n}\nfunction createDescriptorBoot(proto) {\n assert(proto.extension.length == 0);\n assert(!proto.oneofDecl.length);\n assert(!proto.options);\n const b = {\n name: proto.name,\n };\n if (proto.field.length) {\n b.field = proto.field.map(createFieldDescriptorBoot);\n }\n if (proto.nestedType.length) {\n b.nestedType = proto.nestedType.map(createDescriptorBoot);\n }\n if (proto.enumType.length) {\n b.enumType = proto.enumType.map(createEnumDescriptorBoot);\n }\n if (proto.extensionRange.length) {\n b.extensionRange = proto.extensionRange.map((r) => {\n assert(!r.options);\n return { start: r.start, end: r.end };\n });\n }\n return b;\n}\nfunction createFieldDescriptorBoot(proto) {\n assert((0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldDescriptorProtoSchema.field.name));\n assert((0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldDescriptorProtoSchema.field.number));\n assert((0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldDescriptorProtoSchema.field.type));\n assert(!(0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldDescriptorProtoSchema.field.oneofIndex));\n assert(!(0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldDescriptorProtoSchema.field.jsonName) ||\n proto.jsonName === (0, names_js_1.protoCamelCase)(proto.name));\n const b = {\n name: proto.name,\n number: proto.number,\n type: proto.type,\n };\n if ((0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldDescriptorProtoSchema.field.label)) {\n b.label = proto.label;\n }\n if ((0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldDescriptorProtoSchema.field.typeName)) {\n b.typeName = proto.typeName;\n }\n if ((0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldDescriptorProtoSchema.field.extendee)) {\n b.extendee = proto.extendee;\n }\n if ((0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldDescriptorProtoSchema.field.defaultValue)) {\n b.defaultValue = proto.defaultValue;\n }\n if (proto.options) {\n b.options = createFieldOptionsBoot(proto.options);\n }\n return b;\n}\nfunction createFieldOptionsBoot(proto) {\n const b = {};\n assert(!(0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldOptionsSchema.field.ctype));\n if ((0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldOptionsSchema.field.packed)) {\n b.packed = proto.packed;\n }\n assert(!(0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldOptionsSchema.field.jstype));\n assert(!(0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldOptionsSchema.field.lazy));\n assert(!(0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldOptionsSchema.field.unverifiedLazy));\n if ((0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldOptionsSchema.field.deprecated)) {\n b.deprecated = proto.deprecated;\n }\n assert(!(0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldOptionsSchema.field.weak));\n assert(!(0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldOptionsSchema.field.debugRedact));\n if ((0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldOptionsSchema.field.retention)) {\n b.retention = proto.retention;\n }\n if (proto.targets.length) {\n b.targets = proto.targets;\n }\n if (proto.editionDefaults.length) {\n b.editionDefaults = proto.editionDefaults.map((d) => ({\n value: d.value,\n edition: d.edition,\n }));\n }\n assert(!(0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldOptionsSchema.field.features));\n assert(!(0, fields_js_1.isFieldSet)(proto, descriptor_pb_js_1.FieldOptionsSchema.field.uninterpretedOption));\n return b;\n}\nfunction createEnumDescriptorBoot(proto) {\n assert(!proto.options);\n return {\n name: proto.name,\n value: proto.value.map((v) => {\n assert(!v.options);\n return {\n name: v.name,\n number: v.number,\n };\n }),\n };\n}\n/**\n * Assert that condition is truthy or throw error.\n */\nfunction assert(condition) {\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions -- we want the implicit conversion to boolean\n if (!condition) {\n throw new Error();\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/embed.js?");
109
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ BlockNames: () => (/* binding */ BlockNames)\n/* harmony export */ });\nvar BlockNames;\n(function (BlockNames) {\n BlockNames[BlockNames[\"EMPTY\"] = 0] = \"EMPTY\";\n BlockNames[BlockNames[\"GRAVITY_LEFT\"] = 1] = \"GRAVITY_LEFT\";\n BlockNames[BlockNames[\"GRAVITY_UP\"] = 2] = \"GRAVITY_UP\";\n BlockNames[BlockNames[\"GRAVITY_RIGHT\"] = 3] = \"GRAVITY_RIGHT\";\n BlockNames[BlockNames[\"GRAVITY_DOWN\"] = 4] = \"GRAVITY_DOWN\";\n BlockNames[BlockNames[\"GRAVITY_DOT\"] = 5] = \"GRAVITY_DOT\";\n BlockNames[BlockNames[\"GRAVITY_SLOW_DOT\"] = 6] = \"GRAVITY_SLOW_DOT\";\n BlockNames[BlockNames[\"INVISIBLE_GRAVITY_LEFT\"] = 7] = \"INVISIBLE_GRAVITY_LEFT\";\n BlockNames[BlockNames[\"INVISIBLE_GRAVITY_UP\"] = 8] = \"INVISIBLE_GRAVITY_UP\";\n BlockNames[BlockNames[\"INVISIBLE_GRAVITY_RIGHT\"] = 9] = \"INVISIBLE_GRAVITY_RIGHT\";\n BlockNames[BlockNames[\"INVISIBLE_GRAVITY_DOWN\"] = 10] = \"INVISIBLE_GRAVITY_DOWN\";\n BlockNames[BlockNames[\"INVISIBLE_GRAVITY_DOT\"] = 11] = \"INVISIBLE_GRAVITY_DOT\";\n BlockNames[BlockNames[\"INVISIBLE_GRAVITY_SLOW_DOT\"] = 12] = \"INVISIBLE_GRAVITY_SLOW_DOT\";\n BlockNames[BlockNames[\"BOOST_LEFT\"] = 13] = \"BOOST_LEFT\";\n BlockNames[BlockNames[\"BOOST_UP\"] = 14] = \"BOOST_UP\";\n BlockNames[BlockNames[\"BOOST_RIGHT\"] = 15] = \"BOOST_RIGHT\";\n BlockNames[BlockNames[\"BOOST_DOWN\"] = 16] = \"BOOST_DOWN\";\n BlockNames[BlockNames[\"CLIMBABLE_VINE_VERTICAL\"] = 17] = \"CLIMBABLE_VINE_VERTICAL\";\n BlockNames[BlockNames[\"CLIMBABLE_VINE_HORIZONTAL\"] = 18] = \"CLIMBABLE_VINE_HORIZONTAL\";\n BlockNames[BlockNames[\"CLIMBABLE_CHAIN_LIGHT_VERTICAL\"] = 19] = \"CLIMBABLE_CHAIN_LIGHT_VERTICAL\";\n BlockNames[BlockNames[\"CLIMBABLE_CHAIN_LIGHT_HORIZONTAL\"] = 20] = \"CLIMBABLE_CHAIN_LIGHT_HORIZONTAL\";\n BlockNames[BlockNames[\"CLIMBABLE_CHAIN_DARK_VERTICAL\"] = 21] = \"CLIMBABLE_CHAIN_DARK_VERTICAL\";\n BlockNames[BlockNames[\"CLIMBABLE_CHAIN_DARK_HORIZONTAL\"] = 22] = \"CLIMBABLE_CHAIN_DARK_HORIZONTAL\";\n BlockNames[BlockNames[\"CLIMBABLE_LADDER_METAL\"] = 23] = \"CLIMBABLE_LADDER_METAL\";\n BlockNames[BlockNames[\"CLIMBABLE_LADDER_WOOD\"] = 24] = \"CLIMBABLE_LADDER_WOOD\";\n BlockNames[BlockNames[\"CLIMBABLE_ROPE_VERTICAL\"] = 25] = \"CLIMBABLE_ROPE_VERTICAL\";\n BlockNames[BlockNames[\"CLIMBABLE_ROPE_HORIZONTAL\"] = 26] = \"CLIMBABLE_ROPE_HORIZONTAL\";\n BlockNames[BlockNames[\"CLIMBABLE_LADDER_STALK_SMALL\"] = 27] = \"CLIMBABLE_LADDER_STALK_SMALL\";\n BlockNames[BlockNames[\"CLIMBABLE_LADDER_STALK_LARGE\"] = 28] = \"CLIMBABLE_LADDER_STALK_LARGE\";\n BlockNames[BlockNames[\"CLIMBABLE_LATTICE_VINE\"] = 29] = \"CLIMBABLE_LATTICE_VINE\";\n BlockNames[BlockNames[\"SPECIAL_HOLOGRAM\"] = 30] = \"SPECIAL_HOLOGRAM\";\n BlockNames[BlockNames[\"SPECIAL_DIAMOND\"] = 31] = \"SPECIAL_DIAMOND\";\n BlockNames[BlockNames[\"SPECIAL_CAKE\"] = 32] = \"SPECIAL_CAKE\";\n BlockNames[BlockNames[\"CROWN_GOLD\"] = 33] = \"CROWN_GOLD\";\n BlockNames[BlockNames[\"CROWN_SILVER\"] = 34] = \"CROWN_SILVER\";\n BlockNames[BlockNames[\"CROWN_GOLD_DOOR\"] = 35] = \"CROWN_GOLD_DOOR\";\n BlockNames[BlockNames[\"CROWN_GOLD_GATE\"] = 36] = \"CROWN_GOLD_GATE\";\n BlockNames[BlockNames[\"CROWN_SILVER_DOOR\"] = 37] = \"CROWN_SILVER_DOOR\";\n BlockNames[BlockNames[\"CROWN_SILVER_GATE\"] = 38] = \"CROWN_SILVER_GATE\";\n BlockNames[BlockNames[\"KEY_RED\"] = 83] = \"KEY_RED\";\n BlockNames[BlockNames[\"KEY_GREEN\"] = 84] = \"KEY_GREEN\";\n BlockNames[BlockNames[\"KEY_BLUE\"] = 85] = \"KEY_BLUE\";\n BlockNames[BlockNames[\"KEY_CYAN\"] = 86] = \"KEY_CYAN\";\n BlockNames[BlockNames[\"KEY_MAGENTA\"] = 87] = \"KEY_MAGENTA\";\n BlockNames[BlockNames[\"KEY_YELLOW\"] = 88] = \"KEY_YELLOW\";\n BlockNames[BlockNames[\"KEY_RED_DOOR\"] = 89] = \"KEY_RED_DOOR\";\n BlockNames[BlockNames[\"KEY_GREEN_DOOR\"] = 90] = \"KEY_GREEN_DOOR\";\n BlockNames[BlockNames[\"KEY_BLUE_DOOR\"] = 91] = \"KEY_BLUE_DOOR\";\n BlockNames[BlockNames[\"KEY_CYAN_DOOR\"] = 92] = \"KEY_CYAN_DOOR\";\n BlockNames[BlockNames[\"KEY_MAGENTA_DOOR\"] = 93] = \"KEY_MAGENTA_DOOR\";\n BlockNames[BlockNames[\"KEY_YELLOW_DOOR\"] = 94] = \"KEY_YELLOW_DOOR\";\n BlockNames[BlockNames[\"KEY_RED_GATE\"] = 95] = \"KEY_RED_GATE\";\n BlockNames[BlockNames[\"KEY_GREEN_GATE\"] = 96] = \"KEY_GREEN_GATE\";\n BlockNames[BlockNames[\"KEY_BLUE_GATE\"] = 97] = \"KEY_BLUE_GATE\";\n BlockNames[BlockNames[\"KEY_CYAN_GATE\"] = 98] = \"KEY_CYAN_GATE\";\n BlockNames[BlockNames[\"KEY_MAGENTA_GATE\"] = 99] = \"KEY_MAGENTA_GATE\";\n BlockNames[BlockNames[\"KEY_YELLOW_GATE\"] = 100] = \"KEY_YELLOW_GATE\";\n BlockNames[BlockNames[\"COIN_GOLD\"] = 39] = \"COIN_GOLD\";\n BlockNames[BlockNames[\"COIN_BLUE\"] = 40] = \"COIN_BLUE\";\n BlockNames[BlockNames[\"COIN_GOLD_DOOR\"] = 41] = \"COIN_GOLD_DOOR\";\n BlockNames[BlockNames[\"COIN_GOLD_GATE\"] = 42] = \"COIN_GOLD_GATE\";\n BlockNames[BlockNames[\"COIN_BLUE_DOOR\"] = 43] = \"COIN_BLUE_DOOR\";\n BlockNames[BlockNames[\"COIN_BLUE_GATE\"] = 44] = \"COIN_BLUE_GATE\";\n BlockNames[BlockNames[\"EFFECTS_JUMP_HEIGHT\"] = 45] = \"EFFECTS_JUMP_HEIGHT\";\n BlockNames[BlockNames[\"EFFECTS_FLY\"] = 46] = \"EFFECTS_FLY\";\n BlockNames[BlockNames[\"EFFECTS_SPEED\"] = 47] = \"EFFECTS_SPEED\";\n BlockNames[BlockNames[\"EFFECTS_INVULNERABILITY\"] = 48] = \"EFFECTS_INVULNERABILITY\";\n BlockNames[BlockNames[\"EFFECTS_CURSE\"] = 49] = \"EFFECTS_CURSE\";\n BlockNames[BlockNames[\"EFFECTS_ZOMBIE\"] = 50] = \"EFFECTS_ZOMBIE\";\n BlockNames[BlockNames[\"EFFECTS_GRAVITYFORCE\"] = 51] = \"EFFECTS_GRAVITYFORCE\";\n BlockNames[BlockNames[\"EFFECTS_MULTI_JUMP\"] = 52] = \"EFFECTS_MULTI_JUMP\";\n BlockNames[BlockNames[\"EFFECTS_GRAVITY_LEFT\"] = 53] = \"EFFECTS_GRAVITY_LEFT\";\n BlockNames[BlockNames[\"EFFECTS_GRAVITY_UP\"] = 54] = \"EFFECTS_GRAVITY_UP\";\n BlockNames[BlockNames[\"EFFECTS_GRAVITY_RIGHT\"] = 55] = \"EFFECTS_GRAVITY_RIGHT\";\n BlockNames[BlockNames[\"EFFECTS_GRAVITY_DOWN\"] = 56] = \"EFFECTS_GRAVITY_DOWN\";\n BlockNames[BlockNames[\"EFFECTS_GRAVITY_OFF\"] = 57] = \"EFFECTS_GRAVITY_OFF\";\n BlockNames[BlockNames[\"EFFECTS_OFF\"] = 58] = \"EFFECTS_OFF\";\n BlockNames[BlockNames[\"EFFECTS_ZOMBIE_DOOR\"] = 59] = \"EFFECTS_ZOMBIE_DOOR\";\n BlockNames[BlockNames[\"EFFECTS_ZOMBIE_GATE\"] = 60] = \"EFFECTS_ZOMBIE_GATE\";\n BlockNames[BlockNames[\"TOOL_SPAWN_LOBBY\"] = 61] = \"TOOL_SPAWN_LOBBY\";\n BlockNames[BlockNames[\"TOOL_CHECKPOINT\"] = 62] = \"TOOL_CHECKPOINT\";\n BlockNames[BlockNames[\"TOOL_RESET\"] = 63] = \"TOOL_RESET\";\n BlockNames[BlockNames[\"TOOL_GOD_MODE_ACTIVATOR\"] = 64] = \"TOOL_GOD_MODE_ACTIVATOR\";\n BlockNames[BlockNames[\"TOOL_PORTAL_WORLD_SPAWN\"] = 65] = \"TOOL_PORTAL_WORLD_SPAWN\";\n BlockNames[BlockNames[\"TOOL_ACTIVATE_MINIMAP\"] = 66] = \"TOOL_ACTIVATE_MINIMAP\";\n BlockNames[BlockNames[\"SIGN_NORMAL\"] = 67] = \"SIGN_NORMAL\";\n BlockNames[BlockNames[\"SIGN_RED\"] = 68] = \"SIGN_RED\";\n BlockNames[BlockNames[\"SIGN_GREEN\"] = 69] = \"SIGN_GREEN\";\n BlockNames[BlockNames[\"SIGN_BLUE\"] = 70] = \"SIGN_BLUE\";\n BlockNames[BlockNames[\"SIGN_GOLD\"] = 71] = \"SIGN_GOLD\";\n BlockNames[BlockNames[\"PORTAL\"] = 72] = \"PORTAL\";\n BlockNames[BlockNames[\"PORTAL_INVISIBLE\"] = 73] = \"PORTAL_INVISIBLE\";\n BlockNames[BlockNames[\"PORTAL_WORLD\"] = 74] = \"PORTAL_WORLD\";\n BlockNames[BlockNames[\"LIQUID_WATER\"] = 75] = \"LIQUID_WATER\";\n BlockNames[BlockNames[\"LIQUID_WATER_SURFACE\"] = 76] = \"LIQUID_WATER_SURFACE\";\n BlockNames[BlockNames[\"LIQUID_WASTE\"] = 77] = \"LIQUID_WASTE\";\n BlockNames[BlockNames[\"LIQUID_WASTE_SURFACE\"] = 78] = \"LIQUID_WASTE_SURFACE\";\n BlockNames[BlockNames[\"LIQUID_LAVA\"] = 79] = \"LIQUID_LAVA\";\n BlockNames[BlockNames[\"LIQUID_LAVA_SURFACE\"] = 80] = \"LIQUID_LAVA_SURFACE\";\n BlockNames[BlockNames[\"LIQUID_MUD\"] = 81] = \"LIQUID_MUD\";\n BlockNames[BlockNames[\"LIQUID_MUD_SURFACE\"] = 82] = \"LIQUID_MUD_SURFACE\";\n BlockNames[BlockNames[\"SWITCH_LOCAL_TOGGLE\"] = 101] = \"SWITCH_LOCAL_TOGGLE\";\n BlockNames[BlockNames[\"SWITCH_LOCAL_ACTIVATOR\"] = 102] = \"SWITCH_LOCAL_ACTIVATOR\";\n BlockNames[BlockNames[\"SWITCH_LOCAL_RESETTER\"] = 103] = \"SWITCH_LOCAL_RESETTER\";\n BlockNames[BlockNames[\"SWITCH_LOCAL_DOOR\"] = 104] = \"SWITCH_LOCAL_DOOR\";\n BlockNames[BlockNames[\"SWITCH_LOCAL_GATE\"] = 105] = \"SWITCH_LOCAL_GATE\";\n BlockNames[BlockNames[\"SWITCH_GLOBAL_TOGGLE\"] = 106] = \"SWITCH_GLOBAL_TOGGLE\";\n BlockNames[BlockNames[\"SWITCH_GLOBAL_ACTIVATOR\"] = 107] = \"SWITCH_GLOBAL_ACTIVATOR\";\n BlockNames[BlockNames[\"SWITCH_GLOBAL_RESETTER\"] = 108] = \"SWITCH_GLOBAL_RESETTER\";\n BlockNames[BlockNames[\"SWITCH_GLOBAL_DOOR\"] = 109] = \"SWITCH_GLOBAL_DOOR\";\n BlockNames[BlockNames[\"SWITCH_GLOBAL_GATE\"] = 110] = \"SWITCH_GLOBAL_GATE\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BROWN_UP\"] = 111] = \"HAZARD_SPIKES_BROWN_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BROWN_RIGHT\"] = 112] = \"HAZARD_SPIKES_BROWN_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BROWN_DOWN\"] = 113] = \"HAZARD_SPIKES_BROWN_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BROWN_LEFT\"] = 114] = \"HAZARD_SPIKES_BROWN_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BROWN_CENTER\"] = 115] = \"HAZARD_SPIKES_BROWN_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_WHITE_UP\"] = 116] = \"HAZARD_SPIKES_WHITE_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_WHITE_RIGHT\"] = 117] = \"HAZARD_SPIKES_WHITE_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_WHITE_DOWN\"] = 118] = \"HAZARD_SPIKES_WHITE_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_WHITE_LEFT\"] = 119] = \"HAZARD_SPIKES_WHITE_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_WHITE_CENTER\"] = 120] = \"HAZARD_SPIKES_WHITE_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GRAY_UP\"] = 121] = \"HAZARD_SPIKES_GRAY_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GRAY_RIGHT\"] = 122] = \"HAZARD_SPIKES_GRAY_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GRAY_DOWN\"] = 123] = \"HAZARD_SPIKES_GRAY_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GRAY_LEFT\"] = 124] = \"HAZARD_SPIKES_GRAY_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GRAY_CENTER\"] = 125] = \"HAZARD_SPIKES_GRAY_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_RED_UP\"] = 126] = \"HAZARD_SPIKES_RED_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_RED_RIGHT\"] = 127] = \"HAZARD_SPIKES_RED_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_RED_DOWN\"] = 128] = \"HAZARD_SPIKES_RED_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_RED_LEFT\"] = 129] = \"HAZARD_SPIKES_RED_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_RED_CENTER\"] = 130] = \"HAZARD_SPIKES_RED_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_YELLOW_UP\"] = 131] = \"HAZARD_SPIKES_YELLOW_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_YELLOW_RIGHT\"] = 132] = \"HAZARD_SPIKES_YELLOW_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_YELLOW_DOWN\"] = 133] = \"HAZARD_SPIKES_YELLOW_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_YELLOW_LEFT\"] = 134] = \"HAZARD_SPIKES_YELLOW_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_YELLOW_CENTER\"] = 135] = \"HAZARD_SPIKES_YELLOW_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GREEN_UP\"] = 136] = \"HAZARD_SPIKES_GREEN_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GREEN_RIGHT\"] = 137] = \"HAZARD_SPIKES_GREEN_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GREEN_DOWN\"] = 138] = \"HAZARD_SPIKES_GREEN_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GREEN_LEFT\"] = 139] = \"HAZARD_SPIKES_GREEN_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_GREEN_CENTER\"] = 140] = \"HAZARD_SPIKES_GREEN_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BLUE_UP\"] = 141] = \"HAZARD_SPIKES_BLUE_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BLUE_RIGHT\"] = 142] = \"HAZARD_SPIKES_BLUE_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BLUE_DOWN\"] = 143] = \"HAZARD_SPIKES_BLUE_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BLUE_LEFT\"] = 144] = \"HAZARD_SPIKES_BLUE_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_BLUE_CENTER\"] = 145] = \"HAZARD_SPIKES_BLUE_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_CYAN_UP\"] = 146] = \"HAZARD_SPIKES_CYAN_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_CYAN_RIGHT\"] = 147] = \"HAZARD_SPIKES_CYAN_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_CYAN_DOWN\"] = 148] = \"HAZARD_SPIKES_CYAN_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_CYAN_LEFT\"] = 149] = \"HAZARD_SPIKES_CYAN_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_CYAN_CENTER\"] = 150] = \"HAZARD_SPIKES_CYAN_CENTER\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_PURPLE_UP\"] = 151] = \"HAZARD_SPIKES_PURPLE_UP\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_PURPLE_RIGHT\"] = 152] = \"HAZARD_SPIKES_PURPLE_RIGHT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_PURPLE_DOWN\"] = 153] = \"HAZARD_SPIKES_PURPLE_DOWN\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_PURPLE_LEFT\"] = 154] = \"HAZARD_SPIKES_PURPLE_LEFT\";\n BlockNames[BlockNames[\"HAZARD_SPIKES_PURPLE_CENTER\"] = 155] = \"HAZARD_SPIKES_PURPLE_CENTER\";\n BlockNames[BlockNames[\"HAZARD_FIRE\"] = 156] = \"HAZARD_FIRE\";\n BlockNames[BlockNames[\"HAZARD_DEATH_DOOR\"] = 157] = \"HAZARD_DEATH_DOOR\";\n BlockNames[BlockNames[\"HAZARD_DEATH_GATE\"] = 158] = \"HAZARD_DEATH_GATE\";\n BlockNames[BlockNames[\"NOTE_DRUM\"] = 159] = \"NOTE_DRUM\";\n BlockNames[BlockNames[\"NOTE_PIANO\"] = 160] = \"NOTE_PIANO\";\n BlockNames[BlockNames[\"NOTE_GUITAR\"] = 161] = \"NOTE_GUITAR\";\n BlockNames[BlockNames[\"TEAM_EFFECT_NONE\"] = 162] = \"TEAM_EFFECT_NONE\";\n BlockNames[BlockNames[\"TEAM_EFFECT_RED\"] = 163] = \"TEAM_EFFECT_RED\";\n BlockNames[BlockNames[\"TEAM_EFFECT_GREEN\"] = 164] = \"TEAM_EFFECT_GREEN\";\n BlockNames[BlockNames[\"TEAM_EFFECT_BLUE\"] = 165] = \"TEAM_EFFECT_BLUE\";\n BlockNames[BlockNames[\"TEAM_EFFECT_CYAN\"] = 166] = \"TEAM_EFFECT_CYAN\";\n BlockNames[BlockNames[\"TEAM_EFFECT_MAGENTA\"] = 167] = \"TEAM_EFFECT_MAGENTA\";\n BlockNames[BlockNames[\"TEAM_EFFECT_YELLOW\"] = 168] = \"TEAM_EFFECT_YELLOW\";\n BlockNames[BlockNames[\"TEAM_NONE_DOOR\"] = 169] = \"TEAM_NONE_DOOR\";\n BlockNames[BlockNames[\"TEAM_RED_DOOR\"] = 170] = \"TEAM_RED_DOOR\";\n BlockNames[BlockNames[\"TEAM_GREEN_DOOR\"] = 171] = \"TEAM_GREEN_DOOR\";\n BlockNames[BlockNames[\"TEAM_BLUE_DOOR\"] = 172] = \"TEAM_BLUE_DOOR\";\n BlockNames[BlockNames[\"TEAM_CYAN_DOOR\"] = 173] = \"TEAM_CYAN_DOOR\";\n BlockNames[BlockNames[\"TEAM_MAGENTA_DOOR\"] = 174] = \"TEAM_MAGENTA_DOOR\";\n BlockNames[BlockNames[\"TEAM_YELLOW_DOOR\"] = 175] = \"TEAM_YELLOW_DOOR\";\n BlockNames[BlockNames[\"TEAM_NONE_GATE\"] = 176] = \"TEAM_NONE_GATE\";\n BlockNames[BlockNames[\"TEAM_RED_GATE\"] = 177] = \"TEAM_RED_GATE\";\n BlockNames[BlockNames[\"TEAM_GREEN_GATE\"] = 178] = \"TEAM_GREEN_GATE\";\n BlockNames[BlockNames[\"TEAM_BLUE_GATE\"] = 179] = \"TEAM_BLUE_GATE\";\n BlockNames[BlockNames[\"TEAM_CYAN_GATE\"] = 180] = \"TEAM_CYAN_GATE\";\n BlockNames[BlockNames[\"TEAM_MAGENTA_GATE\"] = 181] = \"TEAM_MAGENTA_GATE\";\n BlockNames[BlockNames[\"TEAM_YELLOW_GATE\"] = 182] = \"TEAM_YELLOW_GATE\";\n BlockNames[BlockNames[\"BASIC_WHITE\"] = 183] = \"BASIC_WHITE\";\n BlockNames[BlockNames[\"BASIC_GRAY\"] = 184] = \"BASIC_GRAY\";\n BlockNames[BlockNames[\"BASIC_BLACK\"] = 185] = \"BASIC_BLACK\";\n BlockNames[BlockNames[\"BASIC_RED\"] = 186] = \"BASIC_RED\";\n BlockNames[BlockNames[\"BASIC_ORANGE\"] = 187] = \"BASIC_ORANGE\";\n BlockNames[BlockNames[\"BASIC_YELLOW\"] = 188] = \"BASIC_YELLOW\";\n BlockNames[BlockNames[\"BASIC_GREEN\"] = 189] = \"BASIC_GREEN\";\n BlockNames[BlockNames[\"BASIC_CYAN\"] = 190] = \"BASIC_CYAN\";\n BlockNames[BlockNames[\"BASIC_BLUE\"] = 191] = \"BASIC_BLUE\";\n BlockNames[BlockNames[\"BASIC_MAGENTA\"] = 192] = \"BASIC_MAGENTA\";\n BlockNames[BlockNames[\"BASIC_WHITE_BG\"] = 193] = \"BASIC_WHITE_BG\";\n BlockNames[BlockNames[\"BASIC_GRAY_BG\"] = 194] = \"BASIC_GRAY_BG\";\n BlockNames[BlockNames[\"BASIC_BLACK_BG\"] = 195] = \"BASIC_BLACK_BG\";\n BlockNames[BlockNames[\"BASIC_RED_BG\"] = 196] = \"BASIC_RED_BG\";\n BlockNames[BlockNames[\"BASIC_ORANGE_BG\"] = 197] = \"BASIC_ORANGE_BG\";\n BlockNames[BlockNames[\"BASIC_YELLOW_BG\"] = 198] = \"BASIC_YELLOW_BG\";\n BlockNames[BlockNames[\"BASIC_GREEN_BG\"] = 199] = \"BASIC_GREEN_BG\";\n BlockNames[BlockNames[\"BASIC_CYAN_BG\"] = 200] = \"BASIC_CYAN_BG\";\n BlockNames[BlockNames[\"BASIC_BLUE_BG\"] = 201] = \"BASIC_BLUE_BG\";\n BlockNames[BlockNames[\"BASIC_MAGENTA_BG\"] = 202] = \"BASIC_MAGENTA_BG\";\n BlockNames[BlockNames[\"BEVELED_WHITE\"] = 203] = \"BEVELED_WHITE\";\n BlockNames[BlockNames[\"BEVELED_GRAY\"] = 204] = \"BEVELED_GRAY\";\n BlockNames[BlockNames[\"BEVELED_BLACK\"] = 205] = \"BEVELED_BLACK\";\n BlockNames[BlockNames[\"BEVELED_RED\"] = 206] = \"BEVELED_RED\";\n BlockNames[BlockNames[\"BEVELED_ORANGE\"] = 207] = \"BEVELED_ORANGE\";\n BlockNames[BlockNames[\"BEVELED_YELLOW\"] = 208] = \"BEVELED_YELLOW\";\n BlockNames[BlockNames[\"BEVELED_GREEN\"] = 209] = \"BEVELED_GREEN\";\n BlockNames[BlockNames[\"BEVELED_CYAN\"] = 210] = \"BEVELED_CYAN\";\n BlockNames[BlockNames[\"BEVELED_BLUE\"] = 211] = \"BEVELED_BLUE\";\n BlockNames[BlockNames[\"BEVELED_MAGENTA\"] = 212] = \"BEVELED_MAGENTA\";\n BlockNames[BlockNames[\"BEVELED_WHITE_BG\"] = 213] = \"BEVELED_WHITE_BG\";\n BlockNames[BlockNames[\"BEVELED_GRAY_BG\"] = 214] = \"BEVELED_GRAY_BG\";\n BlockNames[BlockNames[\"BEVELED_BLACK_BG\"] = 215] = \"BEVELED_BLACK_BG\";\n BlockNames[BlockNames[\"BEVELED_RED_BG\"] = 216] = \"BEVELED_RED_BG\";\n BlockNames[BlockNames[\"BEVELED_ORANGE_BG\"] = 217] = \"BEVELED_ORANGE_BG\";\n BlockNames[BlockNames[\"BEVELED_YELLOW_BG\"] = 218] = \"BEVELED_YELLOW_BG\";\n BlockNames[BlockNames[\"BEVELED_GREEN_BG\"] = 219] = \"BEVELED_GREEN_BG\";\n BlockNames[BlockNames[\"BEVELED_CYAN_BG\"] = 220] = \"BEVELED_CYAN_BG\";\n BlockNames[BlockNames[\"BEVELED_BLUE_BG\"] = 221] = \"BEVELED_BLUE_BG\";\n BlockNames[BlockNames[\"BEVELED_MAGENTA_BG\"] = 222] = \"BEVELED_MAGENTA_BG\";\n BlockNames[BlockNames[\"BRICK_WHITE\"] = 223] = \"BRICK_WHITE\";\n BlockNames[BlockNames[\"BRICK_GRAY\"] = 224] = \"BRICK_GRAY\";\n BlockNames[BlockNames[\"BRICK_BLACK\"] = 225] = \"BRICK_BLACK\";\n BlockNames[BlockNames[\"BRICK_RED\"] = 226] = \"BRICK_RED\";\n BlockNames[BlockNames[\"BRICK_BROWN\"] = 227] = \"BRICK_BROWN\";\n BlockNames[BlockNames[\"BRICK_OLIVE\"] = 228] = \"BRICK_OLIVE\";\n BlockNames[BlockNames[\"BRICK_GREEN\"] = 229] = \"BRICK_GREEN\";\n BlockNames[BlockNames[\"BRICK_TEAL\"] = 230] = \"BRICK_TEAL\";\n BlockNames[BlockNames[\"BRICK_BLUE\"] = 231] = \"BRICK_BLUE\";\n BlockNames[BlockNames[\"BRICK_PURPLE\"] = 232] = \"BRICK_PURPLE\";\n BlockNames[BlockNames[\"BRICK_WHITE_BG\"] = 233] = \"BRICK_WHITE_BG\";\n BlockNames[BlockNames[\"BRICK_GRAY_BG\"] = 234] = \"BRICK_GRAY_BG\";\n BlockNames[BlockNames[\"BRICK_BLACK_BG\"] = 235] = \"BRICK_BLACK_BG\";\n BlockNames[BlockNames[\"BRICK_RED_BG\"] = 236] = \"BRICK_RED_BG\";\n BlockNames[BlockNames[\"BRICK_BROWN_BG\"] = 237] = \"BRICK_BROWN_BG\";\n BlockNames[BlockNames[\"BRICK_OLIVE_BG\"] = 238] = \"BRICK_OLIVE_BG\";\n BlockNames[BlockNames[\"BRICK_GREEN_BG\"] = 239] = \"BRICK_GREEN_BG\";\n BlockNames[BlockNames[\"BRICK_TEAL_BG\"] = 240] = \"BRICK_TEAL_BG\";\n BlockNames[BlockNames[\"BRICK_BLUE_BG\"] = 241] = \"BRICK_BLUE_BG\";\n BlockNames[BlockNames[\"BRICK_PURPLE_BG\"] = 242] = \"BRICK_PURPLE_BG\";\n BlockNames[BlockNames[\"NORMAL_WHITE_BG\"] = 243] = \"NORMAL_WHITE_BG\";\n BlockNames[BlockNames[\"NORMAL_GRAY_BG\"] = 244] = \"NORMAL_GRAY_BG\";\n BlockNames[BlockNames[\"NORMAL_BLACK_BG\"] = 245] = \"NORMAL_BLACK_BG\";\n BlockNames[BlockNames[\"NORMAL_RED_BG\"] = 246] = \"NORMAL_RED_BG\";\n BlockNames[BlockNames[\"NORMAL_ORANGE_BG\"] = 247] = \"NORMAL_ORANGE_BG\";\n BlockNames[BlockNames[\"NORMAL_YELLOW_BG\"] = 248] = \"NORMAL_YELLOW_BG\";\n BlockNames[BlockNames[\"NORMAL_GREEN_BG\"] = 249] = \"NORMAL_GREEN_BG\";\n BlockNames[BlockNames[\"NORMAL_CYAN_BG\"] = 250] = \"NORMAL_CYAN_BG\";\n BlockNames[BlockNames[\"NORMAL_BLUE_BG\"] = 251] = \"NORMAL_BLUE_BG\";\n BlockNames[BlockNames[\"NORMAL_MAGENTA_BG\"] = 252] = \"NORMAL_MAGENTA_BG\";\n BlockNames[BlockNames[\"DARK_WHITE_BG\"] = 253] = \"DARK_WHITE_BG\";\n BlockNames[BlockNames[\"DARK_GRAY_BG\"] = 254] = \"DARK_GRAY_BG\";\n BlockNames[BlockNames[\"DARK_BLACK_BG\"] = 255] = \"DARK_BLACK_BG\";\n BlockNames[BlockNames[\"DARK_RED_BG\"] = 256] = \"DARK_RED_BG\";\n BlockNames[BlockNames[\"DARK_ORANGE_BG\"] = 257] = \"DARK_ORANGE_BG\";\n BlockNames[BlockNames[\"DARK_YELLOW_BG\"] = 258] = \"DARK_YELLOW_BG\";\n BlockNames[BlockNames[\"DARK_GREEN_BG\"] = 259] = \"DARK_GREEN_BG\";\n BlockNames[BlockNames[\"DARK_CYAN_BG\"] = 260] = \"DARK_CYAN_BG\";\n BlockNames[BlockNames[\"DARK_BLUE_BG\"] = 261] = \"DARK_BLUE_BG\";\n BlockNames[BlockNames[\"DARK_MAGENTA_BG\"] = 262] = \"DARK_MAGENTA_BG\";\n BlockNames[BlockNames[\"CHECKER_WHITE\"] = 263] = \"CHECKER_WHITE\";\n BlockNames[BlockNames[\"CHECKER_GRAY\"] = 264] = \"CHECKER_GRAY\";\n BlockNames[BlockNames[\"CHECKER_BLACK\"] = 265] = \"CHECKER_BLACK\";\n BlockNames[BlockNames[\"CHECKER_RED\"] = 266] = \"CHECKER_RED\";\n BlockNames[BlockNames[\"CHECKER_ORANGE\"] = 267] = \"CHECKER_ORANGE\";\n BlockNames[BlockNames[\"CHECKER_YELLOW\"] = 268] = \"CHECKER_YELLOW\";\n BlockNames[BlockNames[\"CHECKER_GREEN\"] = 269] = \"CHECKER_GREEN\";\n BlockNames[BlockNames[\"CHECKER_CYAN\"] = 270] = \"CHECKER_CYAN\";\n BlockNames[BlockNames[\"CHECKER_BLUE\"] = 271] = \"CHECKER_BLUE\";\n BlockNames[BlockNames[\"CHECKER_MAGENTA\"] = 272] = \"CHECKER_MAGENTA\";\n BlockNames[BlockNames[\"CHECKER_WHITE_BG\"] = 273] = \"CHECKER_WHITE_BG\";\n BlockNames[BlockNames[\"CHECKER_GRAY_BG\"] = 274] = \"CHECKER_GRAY_BG\";\n BlockNames[BlockNames[\"CHECKER_BLACK_BG\"] = 275] = \"CHECKER_BLACK_BG\";\n BlockNames[BlockNames[\"CHECKER_RED_BG\"] = 276] = \"CHECKER_RED_BG\";\n BlockNames[BlockNames[\"CHECKER_ORANGE_BG\"] = 277] = \"CHECKER_ORANGE_BG\";\n BlockNames[BlockNames[\"CHECKER_YELLOW_BG\"] = 278] = \"CHECKER_YELLOW_BG\";\n BlockNames[BlockNames[\"CHECKER_GREEN_BG\"] = 279] = \"CHECKER_GREEN_BG\";\n BlockNames[BlockNames[\"CHECKER_CYAN_BG\"] = 280] = \"CHECKER_CYAN_BG\";\n BlockNames[BlockNames[\"CHECKER_BLUE_BG\"] = 281] = \"CHECKER_BLUE_BG\";\n BlockNames[BlockNames[\"CHECKER_MAGENTA_BG\"] = 282] = \"CHECKER_MAGENTA_BG\";\n BlockNames[BlockNames[\"PASTEL_RED_BG\"] = 283] = \"PASTEL_RED_BG\";\n BlockNames[BlockNames[\"PASTEL_ORANGE_BG\"] = 284] = \"PASTEL_ORANGE_BG\";\n BlockNames[BlockNames[\"PASTEL_YELLOW_BG\"] = 285] = \"PASTEL_YELLOW_BG\";\n BlockNames[BlockNames[\"PASTEL_LIME_BG\"] = 286] = \"PASTEL_LIME_BG\";\n BlockNames[BlockNames[\"PASTEL_GREEN_BG\"] = 287] = \"PASTEL_GREEN_BG\";\n BlockNames[BlockNames[\"PASTEL_CYAN_BG\"] = 288] = \"PASTEL_CYAN_BG\";\n BlockNames[BlockNames[\"PASTEL_BLUE_BG\"] = 289] = \"PASTEL_BLUE_BG\";\n BlockNames[BlockNames[\"PASTEL_PURPLE_BG\"] = 290] = \"PASTEL_PURPLE_BG\";\n BlockNames[BlockNames[\"GRASS_BRICK_LEFT\"] = 292] = \"GRASS_BRICK_LEFT\";\n BlockNames[BlockNames[\"GRASS_BRICK_MIDDLE\"] = 291] = \"GRASS_BRICK_MIDDLE\";\n BlockNames[BlockNames[\"GRASS_BRICK_RIGHT\"] = 293] = \"GRASS_BRICK_RIGHT\";\n BlockNames[BlockNames[\"METAL_SILVER\"] = 294] = \"METAL_SILVER\";\n BlockNames[BlockNames[\"METAL_COPPER\"] = 295] = \"METAL_COPPER\";\n BlockNames[BlockNames[\"METAL_GOLD\"] = 296] = \"METAL_GOLD\";\n BlockNames[BlockNames[\"GENERIC_STRIPED_HAZARD_YELLOW\"] = 297] = \"GENERIC_STRIPED_HAZARD_YELLOW\";\n BlockNames[BlockNames[\"GENERIC_STRIPED_HAZARD_BLACK\"] = 298] = \"GENERIC_STRIPED_HAZARD_BLACK\";\n BlockNames[BlockNames[\"GENERIC_YELLOW_FACE\"] = 299] = \"GENERIC_YELLOW_FACE\";\n BlockNames[BlockNames[\"GENERIC_YELLOW_FACE_SMILE\"] = 300] = \"GENERIC_YELLOW_FACE_SMILE\";\n BlockNames[BlockNames[\"GENERIC_YELLOW_FACE_FROWN\"] = 301] = \"GENERIC_YELLOW_FACE_FROWN\";\n BlockNames[BlockNames[\"GENERIC_YELLOW\"] = 302] = \"GENERIC_YELLOW\";\n BlockNames[BlockNames[\"GENERIC_BLACK\"] = 303] = \"GENERIC_BLACK\";\n BlockNames[BlockNames[\"GENERIC_BLACK_TRANSPARENT\"] = 304] = \"GENERIC_BLACK_TRANSPARENT\";\n BlockNames[BlockNames[\"SECRET_APPEAR\"] = 305] = \"SECRET_APPEAR\";\n BlockNames[BlockNames[\"SECRET_DISAPPEAR\"] = 306] = \"SECRET_DISAPPEAR\";\n BlockNames[BlockNames[\"SECRET_INVISIBLE\"] = 307] = \"SECRET_INVISIBLE\";\n BlockNames[BlockNames[\"GLASS_RED\"] = 308] = \"GLASS_RED\";\n BlockNames[BlockNames[\"GLASS_ORANGE\"] = 309] = \"GLASS_ORANGE\";\n BlockNames[BlockNames[\"GLASS_YELLOW\"] = 310] = \"GLASS_YELLOW\";\n BlockNames[BlockNames[\"GLASS_GREEN\"] = 311] = \"GLASS_GREEN\";\n BlockNames[BlockNames[\"GLASS_CYAN\"] = 312] = \"GLASS_CYAN\";\n BlockNames[BlockNames[\"GLASS_BLUE\"] = 313] = \"GLASS_BLUE\";\n BlockNames[BlockNames[\"GLASS_PURPLE\"] = 314] = \"GLASS_PURPLE\";\n BlockNames[BlockNames[\"GLASS_MAGENTA\"] = 315] = \"GLASS_MAGENTA\";\n BlockNames[BlockNames[\"MINERALS_RED\"] = 316] = \"MINERALS_RED\";\n BlockNames[BlockNames[\"MINERALS_ORANGE\"] = 317] = \"MINERALS_ORANGE\";\n BlockNames[BlockNames[\"MINERALS_YELLOW\"] = 318] = \"MINERALS_YELLOW\";\n BlockNames[BlockNames[\"MINERALS_GREEN\"] = 319] = \"MINERALS_GREEN\";\n BlockNames[BlockNames[\"MINERALS_CYAN\"] = 320] = \"MINERALS_CYAN\";\n BlockNames[BlockNames[\"MINERALS_BLUE\"] = 321] = \"MINERALS_BLUE\";\n BlockNames[BlockNames[\"MINERALS_PURPLE\"] = 322] = \"MINERALS_PURPLE\";\n BlockNames[BlockNames[\"MINERALS_MAGENTA\"] = 323] = \"MINERALS_MAGENTA\";\n BlockNames[BlockNames[\"FACTORY_CRATE_METAL\"] = 324] = \"FACTORY_CRATE_METAL\";\n BlockNames[BlockNames[\"FACTORY_CRATE_WOOD\"] = 325] = \"FACTORY_CRATE_WOOD\";\n BlockNames[BlockNames[\"FACTORY_STONE\"] = 326] = \"FACTORY_STONE\";\n BlockNames[BlockNames[\"FACTORY_WOOD\"] = 327] = \"FACTORY_WOOD\";\n BlockNames[BlockNames[\"FACTORY_SCALES\"] = 328] = \"FACTORY_SCALES\";\n BlockNames[BlockNames[\"MEADOW_GRASS_LEFT\"] = 329] = \"MEADOW_GRASS_LEFT\";\n BlockNames[BlockNames[\"MEADOW_GRASS_MIDDLE\"] = 330] = \"MEADOW_GRASS_MIDDLE\";\n BlockNames[BlockNames[\"MEADOW_GRASS_RIGHT\"] = 331] = \"MEADOW_GRASS_RIGHT\";\n BlockNames[BlockNames[\"MEADOW_BUSH_LEFT\"] = 332] = \"MEADOW_BUSH_LEFT\";\n BlockNames[BlockNames[\"MEADOW_BUSH_MIDDLE\"] = 333] = \"MEADOW_BUSH_MIDDLE\";\n BlockNames[BlockNames[\"MEADOW_BUSH_RIGHT\"] = 334] = \"MEADOW_BUSH_RIGHT\";\n BlockNames[BlockNames[\"MEADOW_YELLOW_FLOWER\"] = 335] = \"MEADOW_YELLOW_FLOWER\";\n BlockNames[BlockNames[\"MEADOW_SMALL_BUSH\"] = 336] = \"MEADOW_SMALL_BUSH\";\n BlockNames[BlockNames[\"EASTER_EGG_BLUE\"] = 337] = \"EASTER_EGG_BLUE\";\n BlockNames[BlockNames[\"EASTER_EGG_PINK\"] = 338] = \"EASTER_EGG_PINK\";\n BlockNames[BlockNames[\"EASTER_EGG_YELLOW\"] = 339] = \"EASTER_EGG_YELLOW\";\n BlockNames[BlockNames[\"EASTER_EGG_RED\"] = 340] = \"EASTER_EGG_RED\";\n BlockNames[BlockNames[\"EASTER_EGG_GREEN\"] = 341] = \"EASTER_EGG_GREEN\";\n BlockNames[BlockNames[\"CANDY_PINK\"] = 342] = \"CANDY_PINK\";\n BlockNames[BlockNames[\"CANDY_BLUE\"] = 343] = \"CANDY_BLUE\";\n BlockNames[BlockNames[\"CANDY_ONEWAY_PINK_TOP\"] = 344] = \"CANDY_ONEWAY_PINK_TOP\";\n BlockNames[BlockNames[\"CANDY_ONEWAY_RED_TOP\"] = 345] = \"CANDY_ONEWAY_RED_TOP\";\n BlockNames[BlockNames[\"CANDY_ONEWAY_CYAN_TOP\"] = 346] = \"CANDY_ONEWAY_CYAN_TOP\";\n BlockNames[BlockNames[\"CANDY_ONEWAY_GREEN_TOP\"] = 347] = \"CANDY_ONEWAY_GREEN_TOP\";\n BlockNames[BlockNames[\"CANDY_CANE\"] = 348] = \"CANDY_CANE\";\n BlockNames[BlockNames[\"CANDY_LICORICE\"] = 349] = \"CANDY_LICORICE\";\n BlockNames[BlockNames[\"CANDY_CHOCOLATE\"] = 350] = \"CANDY_CHOCOLATE\";\n BlockNames[BlockNames[\"CANDY_CREAM_SMALL\"] = 351] = \"CANDY_CREAM_SMALL\";\n BlockNames[BlockNames[\"CANDY_CREAM_LARGE\"] = 352] = \"CANDY_CREAM_LARGE\";\n BlockNames[BlockNames[\"CANDY_GUMDROP_RED\"] = 353] = \"CANDY_GUMDROP_RED\";\n BlockNames[BlockNames[\"CANDY_GUMDROP_GREEN\"] = 354] = \"CANDY_GUMDROP_GREEN\";\n BlockNames[BlockNames[\"CANDY_GUMDROP_PINK\"] = 355] = \"CANDY_GUMDROP_PINK\";\n BlockNames[BlockNames[\"CANDY_PINK_BG\"] = 356] = \"CANDY_PINK_BG\";\n BlockNames[BlockNames[\"CANDY_BLUE_BG\"] = 357] = \"CANDY_BLUE_BG\";\n BlockNames[BlockNames[\"BEACH_SAND\"] = 358] = \"BEACH_SAND\";\n BlockNames[BlockNames[\"BEACH_PARASOL\"] = 359] = \"BEACH_PARASOL\";\n BlockNames[BlockNames[\"BEACH_SAND_DRIFT_BOTTOM_LEFT\"] = 362] = \"BEACH_SAND_DRIFT_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"BEACH_SAND_DRIFT_BOTTOM_RIGHT\"] = 363] = \"BEACH_SAND_DRIFT_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"BEACH_SAND_DRIFT_TOP_LEFT\"] = 360] = \"BEACH_SAND_DRIFT_TOP_LEFT\";\n BlockNames[BlockNames[\"BEACH_SAND_DRIFT_TOP_RIGHT\"] = 361] = \"BEACH_SAND_DRIFT_TOP_RIGHT\";\n BlockNames[BlockNames[\"BEACH_ROCK\"] = 364] = \"BEACH_ROCK\";\n BlockNames[BlockNames[\"BEACH_DRY_BUSH\"] = 365] = \"BEACH_DRY_BUSH\";\n BlockNames[BlockNames[\"SUMMER_BEACH\"] = 366] = \"SUMMER_BEACH\";\n BlockNames[BlockNames[\"SUMMER_PAIL\"] = 367] = \"SUMMER_PAIL\";\n BlockNames[BlockNames[\"SUMMER_SHOVEL\"] = 368] = \"SUMMER_SHOVEL\";\n BlockNames[BlockNames[\"SUMMER_DRINK\"] = 369] = \"SUMMER_DRINK\";\n BlockNames[BlockNames[\"BEACH_LIFE_PRESERVER_RING_RED\"] = 370] = \"BEACH_LIFE_PRESERVER_RING_RED\";\n BlockNames[BlockNames[\"BEACH_ANCHOR\"] = 371] = \"BEACH_ANCHOR\";\n BlockNames[BlockNames[\"BEACH_DOCK_ROPE_LEFT\"] = 372] = \"BEACH_DOCK_ROPE_LEFT\";\n BlockNames[BlockNames[\"BEACH_DOCK_ROPE_RIGHT\"] = 373] = \"BEACH_DOCK_ROPE_RIGHT\";\n BlockNames[BlockNames[\"BEACH_TREE_PALM\"] = 374] = \"BEACH_TREE_PALM\";\n BlockNames[BlockNames[\"JUNGLE_FACE_BLOCK\"] = 375] = \"JUNGLE_FACE_BLOCK\";\n BlockNames[BlockNames[\"JUNGLE_ONEWAY_TOP\"] = 376] = \"JUNGLE_ONEWAY_TOP\";\n BlockNames[BlockNames[\"JUNGLE_GRAY\"] = 377] = \"JUNGLE_GRAY\";\n BlockNames[BlockNames[\"JUNGLE_RED\"] = 378] = \"JUNGLE_RED\";\n BlockNames[BlockNames[\"JUNGLE_BLUE\"] = 379] = \"JUNGLE_BLUE\";\n BlockNames[BlockNames[\"JUNGLE_OLIVE\"] = 380] = \"JUNGLE_OLIVE\";\n BlockNames[BlockNames[\"JUNGLE_POT\"] = 381] = \"JUNGLE_POT\";\n BlockNames[BlockNames[\"JUNGLE_PLANT\"] = 382] = \"JUNGLE_PLANT\";\n BlockNames[BlockNames[\"JUNGLE_POT_BROKEN\"] = 383] = \"JUNGLE_POT_BROKEN\";\n BlockNames[BlockNames[\"JUNGLE_STATUE\"] = 384] = \"JUNGLE_STATUE\";\n BlockNames[BlockNames[\"JUNGLE_GRAY_BG\"] = 385] = \"JUNGLE_GRAY_BG\";\n BlockNames[BlockNames[\"JUNGLE_RED_BG\"] = 386] = \"JUNGLE_RED_BG\";\n BlockNames[BlockNames[\"JUNGLE_BLUE_BG\"] = 387] = \"JUNGLE_BLUE_BG\";\n BlockNames[BlockNames[\"JUNGLE_OLIVE_BG\"] = 388] = \"JUNGLE_OLIVE_BG\";\n BlockNames[BlockNames[\"JUNGLE_LEAVES_LIGHT_BG\"] = 389] = \"JUNGLE_LEAVES_LIGHT_BG\";\n BlockNames[BlockNames[\"JUNGLE_LEAVES_MEDIUM_BG\"] = 390] = \"JUNGLE_LEAVES_MEDIUM_BG\";\n BlockNames[BlockNames[\"JUNGLE_LEAVES_DARK_BG\"] = 391] = \"JUNGLE_LEAVES_DARK_BG\";\n BlockNames[BlockNames[\"ENVIRONMENT_LOG\"] = 392] = \"ENVIRONMENT_LOG\";\n BlockNames[BlockNames[\"ENVIRONMENT_GRASS\"] = 393] = \"ENVIRONMENT_GRASS\";\n BlockNames[BlockNames[\"ENVIRONMENT_BAMBOO\"] = 394] = \"ENVIRONMENT_BAMBOO\";\n BlockNames[BlockNames[\"ENVIRONMENT_OBSIDIAN\"] = 395] = \"ENVIRONMENT_OBSIDIAN\";\n BlockNames[BlockNames[\"ENVIRONMENT_LAVA\"] = 396] = \"ENVIRONMENT_LAVA\";\n BlockNames[BlockNames[\"ENVIRONMENT_LOG_BG\"] = 397] = \"ENVIRONMENT_LOG_BG\";\n BlockNames[BlockNames[\"ENVIRONMENT_GRASS_BG\"] = 398] = \"ENVIRONMENT_GRASS_BG\";\n BlockNames[BlockNames[\"ENVIRONMENT_BAMBOO_BG\"] = 399] = \"ENVIRONMENT_BAMBOO_BG\";\n BlockNames[BlockNames[\"ENVIRONMENT_OBSIDIAN_BG\"] = 400] = \"ENVIRONMENT_OBSIDIAN_BG\";\n BlockNames[BlockNames[\"ENVIRONMENT_LAVA_BG\"] = 401] = \"ENVIRONMENT_LAVA_BG\";\n BlockNames[BlockNames[\"WINDOW_CLEAR\"] = 402] = \"WINDOW_CLEAR\";\n BlockNames[BlockNames[\"WINDOW_RED\"] = 403] = \"WINDOW_RED\";\n BlockNames[BlockNames[\"WINDOW_ORANGE\"] = 404] = \"WINDOW_ORANGE\";\n BlockNames[BlockNames[\"WINDOW_YELLOW\"] = 405] = \"WINDOW_YELLOW\";\n BlockNames[BlockNames[\"WINDOW_GREEN\"] = 406] = \"WINDOW_GREEN\";\n BlockNames[BlockNames[\"WINDOW_TEAL\"] = 407] = \"WINDOW_TEAL\";\n BlockNames[BlockNames[\"WINDOW_BLUE\"] = 408] = \"WINDOW_BLUE\";\n BlockNames[BlockNames[\"WINDOW_PURPLE\"] = 409] = \"WINDOW_PURPLE\";\n BlockNames[BlockNames[\"WINDOW_PINK\"] = 410] = \"WINDOW_PINK\";\n BlockNames[BlockNames[\"CANVAS_RED\"] = 411] = \"CANVAS_RED\";\n BlockNames[BlockNames[\"CANVAS_BLUE\"] = 412] = \"CANVAS_BLUE\";\n BlockNames[BlockNames[\"CANVAS_GREEN\"] = 413] = \"CANVAS_GREEN\";\n BlockNames[BlockNames[\"CANVAS_GRAY_BG\"] = 414] = \"CANVAS_GRAY_BG\";\n BlockNames[BlockNames[\"CANVAS_RED_BG\"] = 415] = \"CANVAS_RED_BG\";\n BlockNames[BlockNames[\"CANVAS_ORANGE_BG\"] = 416] = \"CANVAS_ORANGE_BG\";\n BlockNames[BlockNames[\"CANVAS_TAN_BG\"] = 417] = \"CANVAS_TAN_BG\";\n BlockNames[BlockNames[\"CANVAS_YELLOW_BG\"] = 418] = \"CANVAS_YELLOW_BG\";\n BlockNames[BlockNames[\"CANVAS_GREEN_BG\"] = 419] = \"CANVAS_GREEN_BG\";\n BlockNames[BlockNames[\"CANVAS_CYAN_BG\"] = 420] = \"CANVAS_CYAN_BG\";\n BlockNames[BlockNames[\"CANVAS_BLUE_BG\"] = 421] = \"CANVAS_BLUE_BG\";\n BlockNames[BlockNames[\"CANVAS_PURPLE_BG\"] = 422] = \"CANVAS_PURPLE_BG\";\n BlockNames[BlockNames[\"STONE_GRAY\"] = 423] = \"STONE_GRAY\";\n BlockNames[BlockNames[\"STONE_GREEN\"] = 424] = \"STONE_GREEN\";\n BlockNames[BlockNames[\"STONE_BROWN\"] = 425] = \"STONE_BROWN\";\n BlockNames[BlockNames[\"STONE_BLUE\"] = 426] = \"STONE_BLUE\";\n BlockNames[BlockNames[\"STONE_GRAY_BG\"] = 427] = \"STONE_GRAY_BG\";\n BlockNames[BlockNames[\"STONE_HALF_GRAY_BG\"] = 428] = \"STONE_HALF_GRAY_BG\";\n BlockNames[BlockNames[\"STONE_GREEN_BG\"] = 429] = \"STONE_GREEN_BG\";\n BlockNames[BlockNames[\"STONE_HALF_GREEN_BG\"] = 430] = \"STONE_HALF_GREEN_BG\";\n BlockNames[BlockNames[\"STONE_BROWN_BG\"] = 431] = \"STONE_BROWN_BG\";\n BlockNames[BlockNames[\"STONE_HALF_BROWN_BG\"] = 432] = \"STONE_HALF_BROWN_BG\";\n BlockNames[BlockNames[\"STONE_BLUE_BG\"] = 433] = \"STONE_BLUE_BG\";\n BlockNames[BlockNames[\"STONE_HALF_BLUE_BG\"] = 434] = \"STONE_HALF_BLUE_BG\";\n BlockNames[BlockNames[\"GEMSTONE_GREEN\"] = 435] = \"GEMSTONE_GREEN\";\n BlockNames[BlockNames[\"GEMSTONE_PURPLE\"] = 436] = \"GEMSTONE_PURPLE\";\n BlockNames[BlockNames[\"GEMSTONE_YELLOW\"] = 437] = \"GEMSTONE_YELLOW\";\n BlockNames[BlockNames[\"GEMSTONE_BLUE\"] = 438] = \"GEMSTONE_BLUE\";\n BlockNames[BlockNames[\"GEMSTONE_RED\"] = 439] = \"GEMSTONE_RED\";\n BlockNames[BlockNames[\"GEMSTONE_CYAN\"] = 440] = \"GEMSTONE_CYAN\";\n BlockNames[BlockNames[\"GEMSTONE_WHITE\"] = 441] = \"GEMSTONE_WHITE\";\n BlockNames[BlockNames[\"GEMSTONE_BLACK\"] = 442] = \"GEMSTONE_BLACK\";\n BlockNames[BlockNames[\"SAND_WHITE\"] = 443] = \"SAND_WHITE\";\n BlockNames[BlockNames[\"SAND_WHITE_SURFACE\"] = 444] = \"SAND_WHITE_SURFACE\";\n BlockNames[BlockNames[\"SAND_GRAY\"] = 445] = \"SAND_GRAY\";\n BlockNames[BlockNames[\"SAND_GRAY_SURFACE\"] = 446] = \"SAND_GRAY_SURFACE\";\n BlockNames[BlockNames[\"SAND_YELLOW\"] = 447] = \"SAND_YELLOW\";\n BlockNames[BlockNames[\"SAND_YELLOW_SURFACE\"] = 448] = \"SAND_YELLOW_SURFACE\";\n BlockNames[BlockNames[\"SAND_ORANGE\"] = 449] = \"SAND_ORANGE\";\n BlockNames[BlockNames[\"SAND_ORANGE_SURFACE\"] = 450] = \"SAND_ORANGE_SURFACE\";\n BlockNames[BlockNames[\"SAND_BROWN_LIGHT\"] = 451] = \"SAND_BROWN_LIGHT\";\n BlockNames[BlockNames[\"SAND_BROWN_LIGHT_SURFACE\"] = 452] = \"SAND_BROWN_LIGHT_SURFACE\";\n BlockNames[BlockNames[\"SAND_BROWN_DARK\"] = 453] = \"SAND_BROWN_DARK\";\n BlockNames[BlockNames[\"SAND_BROWN_DARK_SURFACE\"] = 454] = \"SAND_BROWN_DARK_SURFACE\";\n BlockNames[BlockNames[\"SAND_YELLOW_LIGHT_BG\"] = 455] = \"SAND_YELLOW_LIGHT_BG\";\n BlockNames[BlockNames[\"SAND_GRAY_BG\"] = 456] = \"SAND_GRAY_BG\";\n BlockNames[BlockNames[\"SAND_YELLOW_DARK_BG\"] = 457] = \"SAND_YELLOW_DARK_BG\";\n BlockNames[BlockNames[\"SAND_ORANGE_BG\"] = 458] = \"SAND_ORANGE_BG\";\n BlockNames[BlockNames[\"SAND_BROWN_LIGHT_BG\"] = 459] = \"SAND_BROWN_LIGHT_BG\";\n BlockNames[BlockNames[\"SAND_BROWN_DARK_BG\"] = 460] = \"SAND_BROWN_DARK_BG\";\n BlockNames[BlockNames[\"FARM_WHEAT\"] = 461] = \"FARM_WHEAT\";\n BlockNames[BlockNames[\"FARM_CORN\"] = 462] = \"FARM_CORN\";\n BlockNames[BlockNames[\"FARM_FENCE_LEFT\"] = 463] = \"FARM_FENCE_LEFT\";\n BlockNames[BlockNames[\"FARM_FENCE_MIDDLE\"] = 464] = \"FARM_FENCE_MIDDLE\";\n BlockNames[BlockNames[\"FARM_FENCE_RIGHT\"] = 465] = \"FARM_FENCE_RIGHT\";\n BlockNames[BlockNames[\"FARM_HAY\"] = 466] = \"FARM_HAY\";\n BlockNames[BlockNames[\"CAVE_GRAY_LIGHT_BG\"] = 467] = \"CAVE_GRAY_LIGHT_BG\";\n BlockNames[BlockNames[\"CAVE_GRAY_DARK_BG\"] = 468] = \"CAVE_GRAY_DARK_BG\";\n BlockNames[BlockNames[\"CAVE_BLACK_BG\"] = 469] = \"CAVE_BLACK_BG\";\n BlockNames[BlockNames[\"CAVE_RED_BG\"] = 470] = \"CAVE_RED_BG\";\n BlockNames[BlockNames[\"CAVE_BROWN_BG\"] = 471] = \"CAVE_BROWN_BG\";\n BlockNames[BlockNames[\"CAVE_YELLOW_BG\"] = 472] = \"CAVE_YELLOW_BG\";\n BlockNames[BlockNames[\"CAVE_GREEN_BG\"] = 473] = \"CAVE_GREEN_BG\";\n BlockNames[BlockNames[\"CAVE_CYAN_BG\"] = 474] = \"CAVE_CYAN_BG\";\n BlockNames[BlockNames[\"CAVE_BLUE_BG\"] = 475] = \"CAVE_BLUE_BG\";\n BlockNames[BlockNames[\"CAVE_PURPLE_BG\"] = 476] = \"CAVE_PURPLE_BG\";\n BlockNames[BlockNames[\"CAVE_PINK_BG\"] = 477] = \"CAVE_PINK_BG\";\n BlockNames[BlockNames[\"HALLOWEEN_BLOOD\"] = 478] = \"HALLOWEEN_BLOOD\";\n BlockNames[BlockNames[\"HALLOWEEN_BRICK_GRAY\"] = 479] = \"HALLOWEEN_BRICK_GRAY\";\n BlockNames[BlockNames[\"HALLOWEEN_GRAY_BG\"] = 480] = \"HALLOWEEN_GRAY_BG\";\n BlockNames[BlockNames[\"HALLOWEEN_BRICK_GRAY_BG\"] = 481] = \"HALLOWEEN_BRICK_GRAY_BG\";\n BlockNames[BlockNames[\"HALLOWEEN_BRICK_GRAY_RIGHT_BG\"] = 482] = \"HALLOWEEN_BRICK_GRAY_RIGHT_BG\";\n BlockNames[BlockNames[\"HALLOWEEN_BRICK_GRAY_LEFT_BG\"] = 483] = \"HALLOWEEN_BRICK_GRAY_LEFT_BG\";\n BlockNames[BlockNames[\"HALLOWEEN_TREE_BG\"] = 484] = \"HALLOWEEN_TREE_BG\";\n BlockNames[BlockNames[\"HALLOWEEN_LEAVES_PURPLE_BG\"] = 485] = \"HALLOWEEN_LEAVES_PURPLE_BG\";\n BlockNames[BlockNames[\"HALLOWEEN_TOMBSTONE\"] = 486] = \"HALLOWEEN_TOMBSTONE\";\n BlockNames[BlockNames[\"HALLOWEEN_COBWEB_TOP_LEFT\"] = 487] = \"HALLOWEEN_COBWEB_TOP_LEFT\";\n BlockNames[BlockNames[\"HALLOWEEN_COBWEB_TOP_RIGHT\"] = 488] = \"HALLOWEEN_COBWEB_TOP_RIGHT\";\n BlockNames[BlockNames[\"HALLOWEEN_COBWEB_BOTTOM_LEFT\"] = 489] = \"HALLOWEEN_COBWEB_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"HALLOWEEN_COBWEB_BOTTOM_RIGHT\"] = 490] = \"HALLOWEEN_COBWEB_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"HALLOWEEN_TREE_BRANCH_TOP_LEFT\"] = 491] = \"HALLOWEEN_TREE_BRANCH_TOP_LEFT\";\n BlockNames[BlockNames[\"HALLOWEEN_TREE_BRANCH_TOP_RIGHT\"] = 492] = \"HALLOWEEN_TREE_BRANCH_TOP_RIGHT\";\n BlockNames[BlockNames[\"HALLOWEEN_TREE_BRANCH_BOTTOM_LEFT\"] = 493] = \"HALLOWEEN_TREE_BRANCH_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"HALLOWEEN_TREE_BRANCH_BOTTOM_RIGHT\"] = 494] = \"HALLOWEEN_TREE_BRANCH_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"HALLOWEEN_PUMPKIN_ON\"] = 495] = \"HALLOWEEN_PUMPKIN_ON\";\n BlockNames[BlockNames[\"HALLOWEEN_PUMPKIN_OFF\"] = 496] = \"HALLOWEEN_PUMPKIN_OFF\";\n BlockNames[BlockNames[\"HALLOWEEN_GRASS_PURPLE\"] = 497] = \"HALLOWEEN_GRASS_PURPLE\";\n BlockNames[BlockNames[\"HALLOWEEN_EYES_YELLOW\"] = 498] = \"HALLOWEEN_EYES_YELLOW\";\n BlockNames[BlockNames[\"HALLOWEEN_EYES_ORANGE\"] = 499] = \"HALLOWEEN_EYES_ORANGE\";\n BlockNames[BlockNames[\"HALLOWEEN_EYES_PURPLE\"] = 500] = \"HALLOWEEN_EYES_PURPLE\";\n BlockNames[BlockNames[\"HALLOWEEN_EYES_GREEN\"] = 501] = \"HALLOWEEN_EYES_GREEN\";\n BlockNames[BlockNames[\"MARBLE_COLUMN_TOP\"] = 502] = \"MARBLE_COLUMN_TOP\";\n BlockNames[BlockNames[\"MARBLE_COLUMN_MIDDLE\"] = 503] = \"MARBLE_COLUMN_MIDDLE\";\n BlockNames[BlockNames[\"MARBLE_COLUMN_BOTTOM\"] = 504] = \"MARBLE_COLUMN_BOTTOM\";\n BlockNames[BlockNames[\"MARBLE_GRAY\"] = 505] = \"MARBLE_GRAY\";\n BlockNames[BlockNames[\"MARBLE_GREEN\"] = 506] = \"MARBLE_GREEN\";\n BlockNames[BlockNames[\"MARBLE_RED\"] = 507] = \"MARBLE_RED\";\n BlockNames[BlockNames[\"MARBLE_ONEWAY\"] = 508] = \"MARBLE_ONEWAY\";\n BlockNames[BlockNames[\"MARBLE_GRAY_BG\"] = 509] = \"MARBLE_GRAY_BG\";\n BlockNames[BlockNames[\"MARBLE_GREEN_BG\"] = 510] = \"MARBLE_GREEN_BG\";\n BlockNames[BlockNames[\"MARBLE_RED_BG\"] = 511] = \"MARBLE_RED_BG\";\n BlockNames[BlockNames[\"WILDWEST_ONEWAY_BROWN_TOP\"] = 512] = \"WILDWEST_ONEWAY_BROWN_TOP\";\n BlockNames[BlockNames[\"WILDWEST_ONEWAY_BROWN_DARK_TOP\"] = 513] = \"WILDWEST_ONEWAY_BROWN_DARK_TOP\";\n BlockNames[BlockNames[\"WILDWEST_ONEWAY_RED_TOP\"] = 514] = \"WILDWEST_ONEWAY_RED_TOP\";\n BlockNames[BlockNames[\"WILDWEST_ONEWAY_RED_DARK_TOP\"] = 515] = \"WILDWEST_ONEWAY_RED_DARK_TOP\";\n BlockNames[BlockNames[\"WILDWEST_ONEWAY_BLUE_TOP\"] = 516] = \"WILDWEST_ONEWAY_BLUE_TOP\";\n BlockNames[BlockNames[\"WILDWEST_ONEWAY_BLUE_DARK_TOP\"] = 517] = \"WILDWEST_ONEWAY_BLUE_DARK_TOP\";\n BlockNames[BlockNames[\"WILDWEST_SIDING_BROWN_LIGHT_BG\"] = 518] = \"WILDWEST_SIDING_BROWN_LIGHT_BG\";\n BlockNames[BlockNames[\"WILDWEST_SIDING_BROWN_DARK_BG\"] = 519] = \"WILDWEST_SIDING_BROWN_DARK_BG\";\n BlockNames[BlockNames[\"WILDWEST_SIDING_RED_LIGHT_BG\"] = 520] = \"WILDWEST_SIDING_RED_LIGHT_BG\";\n BlockNames[BlockNames[\"WILDWEST_SIDING_RED_DARK_BG\"] = 521] = \"WILDWEST_SIDING_RED_DARK_BG\";\n BlockNames[BlockNames[\"WILDWEST_SIDING_BLUE_LIGHT_BG\"] = 522] = \"WILDWEST_SIDING_BLUE_LIGHT_BG\";\n BlockNames[BlockNames[\"WILDWEST_SIDING_BLUE_DARK_BG\"] = 523] = \"WILDWEST_SIDING_BLUE_DARK_BG\";\n BlockNames[BlockNames[\"WILDWEST_POLE_WHITE_HORIZONTAL\"] = 524] = \"WILDWEST_POLE_WHITE_HORIZONTAL\";\n BlockNames[BlockNames[\"WILDWEST_POLE_WHITE_VERTICAL\"] = 525] = \"WILDWEST_POLE_WHITE_VERTICAL\";\n BlockNames[BlockNames[\"WILDWEST_POLE_GRAY_HORIZONTAL\"] = 526] = \"WILDWEST_POLE_GRAY_HORIZONTAL\";\n BlockNames[BlockNames[\"WILDWEST_POLE_GRAY_VERTICAL\"] = 527] = \"WILDWEST_POLE_GRAY_VERTICAL\";\n BlockNames[BlockNames[\"WILDWEST_DOOR_LEFT_BROWN\"] = 528] = \"WILDWEST_DOOR_LEFT_BROWN\";\n BlockNames[BlockNames[\"WILDWEST_DOOR_LEFT_RED\"] = 530] = \"WILDWEST_DOOR_LEFT_RED\";\n BlockNames[BlockNames[\"WILDWEST_DOOR_LEFT_BLUE\"] = 532] = \"WILDWEST_DOOR_LEFT_BLUE\";\n BlockNames[BlockNames[\"WILDWEST_DOOR_RIGHT_BROWN\"] = 529] = \"WILDWEST_DOOR_RIGHT_BROWN\";\n BlockNames[BlockNames[\"WILDWEST_DOOR_RIGHT_RED\"] = 531] = \"WILDWEST_DOOR_RIGHT_RED\";\n BlockNames[BlockNames[\"WILDWEST_DOOR_RIGHT_BLUE\"] = 533] = \"WILDWEST_DOOR_RIGHT_BLUE\";\n BlockNames[BlockNames[\"WILDWEST_WINDOW\"] = 534] = \"WILDWEST_WINDOW\";\n BlockNames[BlockNames[\"WILDWEST_FENCE_BROWN_LIGHT\"] = 535] = \"WILDWEST_FENCE_BROWN_LIGHT\";\n BlockNames[BlockNames[\"WILDWEST_FENCE_BROWN_DARK\"] = 538] = \"WILDWEST_FENCE_BROWN_DARK\";\n BlockNames[BlockNames[\"WILDWEST_FENCE_RED_LIGHT\"] = 536] = \"WILDWEST_FENCE_RED_LIGHT\";\n BlockNames[BlockNames[\"WILDWEST_FENCE_RED_DARK\"] = 539] = \"WILDWEST_FENCE_RED_DARK\";\n BlockNames[BlockNames[\"WILDWEST_FENCE_BLUE_LIGHT\"] = 537] = \"WILDWEST_FENCE_BLUE_LIGHT\";\n BlockNames[BlockNames[\"WILDWEST_FENCE_BLUE_DARK\"] = 540] = \"WILDWEST_FENCE_BLUE_DARK\";\n BlockNames[BlockNames[\"NEON_MAGENTA_BG\"] = 541] = \"NEON_MAGENTA_BG\";\n BlockNames[BlockNames[\"NEON_ORANGE_BG\"] = 542] = \"NEON_ORANGE_BG\";\n BlockNames[BlockNames[\"NEON_YELLOW_BG\"] = 543] = \"NEON_YELLOW_BG\";\n BlockNames[BlockNames[\"NEON_GREEN_BG\"] = 544] = \"NEON_GREEN_BG\";\n BlockNames[BlockNames[\"NEON_CYAN_BG\"] = 545] = \"NEON_CYAN_BG\";\n BlockNames[BlockNames[\"NEON_BLUE_BG\"] = 546] = \"NEON_BLUE_BG\";\n BlockNames[BlockNames[\"CLOUD_WHITE_CENTER\"] = 547] = \"CLOUD_WHITE_CENTER\";\n BlockNames[BlockNames[\"CLOUD_WHITE_TOP\"] = 548] = \"CLOUD_WHITE_TOP\";\n BlockNames[BlockNames[\"CLOUD_WHITE_BOTTOM\"] = 549] = \"CLOUD_WHITE_BOTTOM\";\n BlockNames[BlockNames[\"CLOUD_WHITE_LEFT\"] = 550] = \"CLOUD_WHITE_LEFT\";\n BlockNames[BlockNames[\"CLOUD_WHITE_RIGHT\"] = 551] = \"CLOUD_WHITE_RIGHT\";\n BlockNames[BlockNames[\"CLOUD_WHITE_TOP_RIGHT\"] = 552] = \"CLOUD_WHITE_TOP_RIGHT\";\n BlockNames[BlockNames[\"CLOUD_WHITE_TOP_LEFT\"] = 553] = \"CLOUD_WHITE_TOP_LEFT\";\n BlockNames[BlockNames[\"CLOUD_WHITE_BOTTOM_LEFT\"] = 554] = \"CLOUD_WHITE_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"CLOUD_WHITE_BOTTOM_RIGHT\"] = 555] = \"CLOUD_WHITE_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"CLOUD_GRAY_CENTER\"] = 556] = \"CLOUD_GRAY_CENTER\";\n BlockNames[BlockNames[\"CLOUD_GRAY_TOP\"] = 557] = \"CLOUD_GRAY_TOP\";\n BlockNames[BlockNames[\"CLOUD_GRAY_BOTTOM\"] = 558] = \"CLOUD_GRAY_BOTTOM\";\n BlockNames[BlockNames[\"CLOUD_GRAY_LEFT\"] = 559] = \"CLOUD_GRAY_LEFT\";\n BlockNames[BlockNames[\"CLOUD_GRAY_RIGHT\"] = 560] = \"CLOUD_GRAY_RIGHT\";\n BlockNames[BlockNames[\"CLOUD_GRAY_TOP_RIGHT\"] = 561] = \"CLOUD_GRAY_TOP_RIGHT\";\n BlockNames[BlockNames[\"CLOUD_GRAY_TOP_LEFT\"] = 562] = \"CLOUD_GRAY_TOP_LEFT\";\n BlockNames[BlockNames[\"CLOUD_GRAY_BOTTOM_LEFT\"] = 563] = \"CLOUD_GRAY_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"CLOUD_GRAY_BOTTOM_RIGHT\"] = 564] = \"CLOUD_GRAY_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"INDUSTRIAL_IRON\"] = 565] = \"INDUSTRIAL_IRON\";\n BlockNames[BlockNames[\"INDUSTRIAL_WIRES\"] = 566] = \"INDUSTRIAL_WIRES\";\n BlockNames[BlockNames[\"INDUSTRIAL_PLATE_GRAY_PLAIN_BG\"] = 567] = \"INDUSTRIAL_PLATE_GRAY_PLAIN_BG\";\n BlockNames[BlockNames[\"INDUSTRIAL_PLATE_GRAY_GRAY_BG\"] = 568] = \"INDUSTRIAL_PLATE_GRAY_GRAY_BG\";\n BlockNames[BlockNames[\"INDUSTRIAL_PLATE_GRAY_BLUE_BG\"] = 569] = \"INDUSTRIAL_PLATE_GRAY_BLUE_BG\";\n BlockNames[BlockNames[\"INDUSTRIAL_PLATE_GRAY_GREEN_BG\"] = 570] = \"INDUSTRIAL_PLATE_GRAY_GREEN_BG\";\n BlockNames[BlockNames[\"INDUSTRIAL_PLATE_GRAY_YELLOW_BG\"] = 571] = \"INDUSTRIAL_PLATE_GRAY_YELLOW_BG\";\n BlockNames[BlockNames[\"INDUSTRIAL_ONEWAY_GRAY_TOP\"] = 572] = \"INDUSTRIAL_ONEWAY_GRAY_TOP\";\n BlockNames[BlockNames[\"INDUSTRIAL_SCAFFOLDING_HORIZONTAL\"] = 573] = \"INDUSTRIAL_SCAFFOLDING_HORIZONTAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_SCAFFOLDING_VERTICAL\"] = 574] = \"INDUSTRIAL_SCAFFOLDING_VERTICAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_PISTON_LEFT\"] = 575] = \"INDUSTRIAL_PISTON_LEFT\";\n BlockNames[BlockNames[\"INDUSTRIAL_PISTON_TOP\"] = 576] = \"INDUSTRIAL_PISTON_TOP\";\n BlockNames[BlockNames[\"INDUSTRIAL_PISTON_RIGHT\"] = 577] = \"INDUSTRIAL_PISTON_RIGHT\";\n BlockNames[BlockNames[\"INDUSTRIAL_PISTON_BOTTOM\"] = 578] = \"INDUSTRIAL_PISTON_BOTTOM\";\n BlockNames[BlockNames[\"INDUSTRIAL_PIPE_THICK_HORIZONTAL\"] = 579] = \"INDUSTRIAL_PIPE_THICK_HORIZONTAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_PIPE_THICK_VERTICAL\"] = 580] = \"INDUSTRIAL_PIPE_THICK_VERTICAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_PIPE_THIN_HORIZONTAL\"] = 581] = \"INDUSTRIAL_PIPE_THIN_HORIZONTAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_PIPE_THIN_VERTICAL\"] = 582] = \"INDUSTRIAL_PIPE_THIN_VERTICAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_CONVEYOR_LEFT\"] = 583] = \"INDUSTRIAL_CONVEYOR_LEFT\";\n BlockNames[BlockNames[\"INDUSTRIAL_CONVEYOR_MIDDLE_PEG\"] = 584] = \"INDUSTRIAL_CONVEYOR_MIDDLE_PEG\";\n BlockNames[BlockNames[\"INDUSTRIAL_CONVEYOR_MIDDLE\"] = 585] = \"INDUSTRIAL_CONVEYOR_MIDDLE\";\n BlockNames[BlockNames[\"INDUSTRIAL_CONVEYOR_RIGHT\"] = 586] = \"INDUSTRIAL_CONVEYOR_RIGHT\";\n BlockNames[BlockNames[\"INDUSTRIAL_CAUTION_SIGN_FIRE\"] = 587] = \"INDUSTRIAL_CAUTION_SIGN_FIRE\";\n BlockNames[BlockNames[\"INDUSTRIAL_CAUTION_SIGN_DEATH\"] = 588] = \"INDUSTRIAL_CAUTION_SIGN_DEATH\";\n BlockNames[BlockNames[\"INDUSTRIAL_CAUTION_SIGN_ELECTRICITY\"] = 589] = \"INDUSTRIAL_CAUTION_SIGN_ELECTRICITY\";\n BlockNames[BlockNames[\"INDUSTRIAL_CAUTION_SIGN_ENTRY\"] = 590] = \"INDUSTRIAL_CAUTION_SIGN_ENTRY\";\n BlockNames[BlockNames[\"INDUSTRIAL_CAUTION_TAPE_HORIZONTAL\"] = 591] = \"INDUSTRIAL_CAUTION_TAPE_HORIZONTAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_CAUTION_TAPE_VERTICAL\"] = 592] = \"INDUSTRIAL_CAUTION_TAPE_VERTICAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_PIPE_DECORATION_HORIZONTAL\"] = 593] = \"INDUSTRIAL_PIPE_DECORATION_HORIZONTAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_PIPE_DECORATION_VERTICAL\"] = 594] = \"INDUSTRIAL_PIPE_DECORATION_VERTICAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_LAMP_OVERHEAD\"] = 595] = \"INDUSTRIAL_LAMP_OVERHEAD\";\n BlockNames[BlockNames[\"INDUSTRIAL_TESLA_COIL\"] = 596] = \"INDUSTRIAL_TESLA_COIL\";\n BlockNames[BlockNames[\"INDUSTRIAL_WIRE_HORIZONTAL\"] = 597] = \"INDUSTRIAL_WIRE_HORIZONTAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_WIRE_VERTICAL\"] = 598] = \"INDUSTRIAL_WIRE_VERTICAL\";\n BlockNames[BlockNames[\"INDUSTRIAL_ELECTRICITY\"] = 599] = \"INDUSTRIAL_ELECTRICITY\";\n BlockNames[BlockNames[\"CLAY_TILE_WHITE_BG\"] = 600] = \"CLAY_TILE_WHITE_BG\";\n BlockNames[BlockNames[\"CLAY_TILE_BRICK_BG\"] = 601] = \"CLAY_TILE_BRICK_BG\";\n BlockNames[BlockNames[\"CLAY_TILE_DIAMOND_BG\"] = 602] = \"CLAY_TILE_DIAMOND_BG\";\n BlockNames[BlockNames[\"CLAY_TILE_X_BG\"] = 603] = \"CLAY_TILE_X_BG\";\n BlockNames[BlockNames[\"CLAY_TILE_ROUGH_BG\"] = 604] = \"CLAY_TILE_ROUGH_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_ONEWAY_GRAY_TOP\"] = 605] = \"MEDIEVAL_ONEWAY_GRAY_TOP\";\n BlockNames[BlockNames[\"MEDIEVAL_BRICK\"] = 606] = \"MEDIEVAL_BRICK\";\n BlockNames[BlockNames[\"MEDIEVAL_BRICK_WINDOW\"] = 607] = \"MEDIEVAL_BRICK_WINDOW\";\n BlockNames[BlockNames[\"MEDIEVAL_ANVIL\"] = 617] = \"MEDIEVAL_ANVIL\";\n BlockNames[BlockNames[\"MEDIEVAL_BARREL\"] = 618] = \"MEDIEVAL_BARREL\";\n BlockNames[BlockNames[\"MEDIEVAL_BLINDS\"] = 619] = \"MEDIEVAL_BLINDS\";\n BlockNames[BlockNames[\"MEDIEVAL_BRICK_BG\"] = 608] = \"MEDIEVAL_BRICK_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_WOOD_BG\"] = 609] = \"MEDIEVAL_WOOD_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_STRAW_BG\"] = 610] = \"MEDIEVAL_STRAW_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_ROOF_RED_BG\"] = 611] = \"MEDIEVAL_ROOF_RED_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_ROOF_GREEN_BG\"] = 612] = \"MEDIEVAL_ROOF_GREEN_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_ROOF_BROWN_BG\"] = 613] = \"MEDIEVAL_ROOF_BROWN_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_ROOF_GRAY_BG\"] = 614] = \"MEDIEVAL_ROOF_GRAY_BG\";\n BlockNames[BlockNames[\"MEDIEVAL_BRICK_DECORATION_TOP_MIDDLE\"] = 615] = \"MEDIEVAL_BRICK_DECORATION_TOP_MIDDLE\";\n BlockNames[BlockNames[\"MEDIEVAL_STONE\"] = 616] = \"MEDIEVAL_STONE\";\n BlockNames[BlockNames[\"MEDIEVAL_SCAFFOLDING_STRAIGHT_T\"] = 620] = \"MEDIEVAL_SCAFFOLDING_STRAIGHT_T\";\n BlockNames[BlockNames[\"MEDIEVAL_SCAFFOLDING_STRAIGHT_HORIZONTAL\"] = 621] = \"MEDIEVAL_SCAFFOLDING_STRAIGHT_HORIZONTAL\";\n BlockNames[BlockNames[\"MEDIEVAL_SCAFFOLDING_ANGLED_MIDDLE\"] = 622] = \"MEDIEVAL_SCAFFOLDING_ANGLED_MIDDLE\";\n BlockNames[BlockNames[\"MEDIEVAL_SCAFFOLDING_STRAIGHT_VERTICAL\"] = 623] = \"MEDIEVAL_SCAFFOLDING_STRAIGHT_VERTICAL\";\n BlockNames[BlockNames[\"MEDIEVAL_SCAFFOLDING_ANGLED_RIGHT\"] = 624] = \"MEDIEVAL_SCAFFOLDING_ANGLED_RIGHT\";\n BlockNames[BlockNames[\"MEDIEVAL_SCAFFOLDING_ANGLED_LEFT\"] = 625] = \"MEDIEVAL_SCAFFOLDING_ANGLED_LEFT\";\n BlockNames[BlockNames[\"MEDIEVAL_AXE_TOP_LEFT\"] = 626] = \"MEDIEVAL_AXE_TOP_LEFT\";\n BlockNames[BlockNames[\"MEDIEVAL_AXE_TOP_RIGHT\"] = 627] = \"MEDIEVAL_AXE_TOP_RIGHT\";\n BlockNames[BlockNames[\"MEDIEVAL_AXE_BOTTOM_LEFT\"] = 628] = \"MEDIEVAL_AXE_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"MEDIEVAL_AXE_BOTTOM_RIGHT\"] = 629] = \"MEDIEVAL_AXE_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"MEDIEVAL_SWORD_TOP_LEFT\"] = 630] = \"MEDIEVAL_SWORD_TOP_LEFT\";\n BlockNames[BlockNames[\"MEDIEVAL_SWORD_TOP_RIGHT\"] = 631] = \"MEDIEVAL_SWORD_TOP_RIGHT\";\n BlockNames[BlockNames[\"MEDIEVAL_SWORD_BOTTOM_LEFT\"] = 632] = \"MEDIEVAL_SWORD_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"MEDIEVAL_SWORD_BOTTOM_RIGHT\"] = 633] = \"MEDIEVAL_SWORD_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CIRCLE_BLUE\"] = 634] = \"MEDIEVAL_SHIELD_CIRCLE_BLUE\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CIRCLE_GREEN\"] = 635] = \"MEDIEVAL_SHIELD_CIRCLE_GREEN\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CIRCLE_YELLOW\"] = 636] = \"MEDIEVAL_SHIELD_CIRCLE_YELLOW\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CIRCLE_RED\"] = 637] = \"MEDIEVAL_SHIELD_CIRCLE_RED\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CURVED_BLUE\"] = 638] = \"MEDIEVAL_SHIELD_CURVED_BLUE\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CURVED_GREEN\"] = 639] = \"MEDIEVAL_SHIELD_CURVED_GREEN\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CURVED_YELLOW\"] = 640] = \"MEDIEVAL_SHIELD_CURVED_YELLOW\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD_CURVED_RED\"] = 641] = \"MEDIEVAL_SHIELD_CURVED_RED\";\n BlockNames[BlockNames[\"MEDIEVAL_BANNER_BLUE\"] = 642] = \"MEDIEVAL_BANNER_BLUE\";\n BlockNames[BlockNames[\"MEDIEVAL_BANNER_GREEN\"] = 643] = \"MEDIEVAL_BANNER_GREEN\";\n BlockNames[BlockNames[\"MEDIEVAL_BANNER_YELLOW\"] = 644] = \"MEDIEVAL_BANNER_YELLOW\";\n BlockNames[BlockNames[\"MEDIEVAL_BANNER_RED\"] = 645] = \"MEDIEVAL_BANNER_RED\";\n BlockNames[BlockNames[\"MEDIEVAL_SHIELD\"] = 646] = \"MEDIEVAL_SHIELD\";\n BlockNames[BlockNames[\"PIPES_LEFT\"] = 647] = \"PIPES_LEFT\";\n BlockNames[BlockNames[\"PIPES_HORIZONTAL\"] = 648] = \"PIPES_HORIZONTAL\";\n BlockNames[BlockNames[\"PIPES_RIGHT\"] = 649] = \"PIPES_RIGHT\";\n BlockNames[BlockNames[\"PIPES_UP\"] = 650] = \"PIPES_UP\";\n BlockNames[BlockNames[\"PIPES_VERTICAL\"] = 651] = \"PIPES_VERTICAL\";\n BlockNames[BlockNames[\"PIPES_DOWN\"] = 652] = \"PIPES_DOWN\";\n BlockNames[BlockNames[\"OUTERSPACE_WHITE\"] = 653] = \"OUTERSPACE_WHITE\";\n BlockNames[BlockNames[\"OUTERSPACE_BLUE\"] = 654] = \"OUTERSPACE_BLUE\";\n BlockNames[BlockNames[\"OUTERSPACE_GREEN\"] = 655] = \"OUTERSPACE_GREEN\";\n BlockNames[BlockNames[\"OUTERSPACE_RED\"] = 656] = \"OUTERSPACE_RED\";\n BlockNames[BlockNames[\"OUTERSPACE_SAND\"] = 657] = \"OUTERSPACE_SAND\";\n BlockNames[BlockNames[\"OUTERSPACE_MOON\"] = 658] = \"OUTERSPACE_MOON\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_1\"] = 659] = \"OUTERSPACE_MARS_ROCK_1\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_2\"] = 660] = \"OUTERSPACE_MARS_ROCK_2\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_3\"] = 661] = \"OUTERSPACE_MARS_ROCK_3\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_4\"] = 662] = \"OUTERSPACE_MARS_ROCK_4\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_5\"] = 663] = \"OUTERSPACE_MARS_ROCK_5\";\n BlockNames[BlockNames[\"OUTERSPACE_WHITE_BG\"] = 664] = \"OUTERSPACE_WHITE_BG\";\n BlockNames[BlockNames[\"OUTERSPACE_BLUE_BG\"] = 665] = \"OUTERSPACE_BLUE_BG\";\n BlockNames[BlockNames[\"OUTERSPACE_GREEN_BG\"] = 666] = \"OUTERSPACE_GREEN_BG\";\n BlockNames[BlockNames[\"OUTERSPACE_RED_BG\"] = 667] = \"OUTERSPACE_RED_BG\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_3_BG\"] = 668] = \"OUTERSPACE_MARS_ROCK_3_BG\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_4_BG\"] = 669] = \"OUTERSPACE_MARS_ROCK_4_BG\";\n BlockNames[BlockNames[\"OUTERSPACE_MARS_ROCK_5_BG\"] = 670] = \"OUTERSPACE_MARS_ROCK_5_BG\";\n BlockNames[BlockNames[\"OUTERSPACE_SIGN\"] = 671] = \"OUTERSPACE_SIGN\";\n BlockNames[BlockNames[\"OUTERSPACE_LIGHT_RED\"] = 672] = \"OUTERSPACE_LIGHT_RED\";\n BlockNames[BlockNames[\"OUTERSPACE_LIGHT_BLUE\"] = 673] = \"OUTERSPACE_LIGHT_BLUE\";\n BlockNames[BlockNames[\"OUTERSPACE_LIGHT_GREEN\"] = 674] = \"OUTERSPACE_LIGHT_GREEN\";\n BlockNames[BlockNames[\"OUTERSPACE_LIGHT_YELLOW\"] = 675] = \"OUTERSPACE_LIGHT_YELLOW\";\n BlockNames[BlockNames[\"OUTERSPACE_LIGHT_MAGENTA\"] = 676] = \"OUTERSPACE_LIGHT_MAGENTA\";\n BlockNames[BlockNames[\"OUTERSPACE_LIGHT_CYAN\"] = 677] = \"OUTERSPACE_LIGHT_CYAN\";\n BlockNames[BlockNames[\"OUTERSPACE_COMPUTER\"] = 678] = \"OUTERSPACE_COMPUTER\";\n BlockNames[BlockNames[\"OUTERSPACE_STAR_RED\"] = 679] = \"OUTERSPACE_STAR_RED\";\n BlockNames[BlockNames[\"OUTERSPACE_STAR_BLUE\"] = 680] = \"OUTERSPACE_STAR_BLUE\";\n BlockNames[BlockNames[\"OUTERSPACE_STAR_YELLOW\"] = 681] = \"OUTERSPACE_STAR_YELLOW\";\n BlockNames[BlockNames[\"OUTERSPACE_ROCK_GRAY\"] = 682] = \"OUTERSPACE_ROCK_GRAY\";\n BlockNames[BlockNames[\"GARDEN_ROCK\"] = 683] = \"GARDEN_ROCK\";\n BlockNames[BlockNames[\"GARDEN_GRASS\"] = 684] = \"GARDEN_GRASS\";\n BlockNames[BlockNames[\"GARDEN_LEAVES\"] = 685] = \"GARDEN_LEAVES\";\n BlockNames[BlockNames[\"GARDEN_GRASSPLANT\"] = 686] = \"GARDEN_GRASSPLANT\";\n BlockNames[BlockNames[\"GARDEN_FENCE\"] = 687] = \"GARDEN_FENCE\";\n BlockNames[BlockNames[\"GARDEN_LATTICE\"] = 688] = \"GARDEN_LATTICE\";\n BlockNames[BlockNames[\"GARDEN_ONEWAY_LEAF_BRANCH\"] = 689] = \"GARDEN_ONEWAY_LEAF_BRANCH\";\n BlockNames[BlockNames[\"GARDEN_ONEWAY_LEAF_LEFT\"] = 690] = \"GARDEN_ONEWAY_LEAF_LEFT\";\n BlockNames[BlockNames[\"GARDEN_ONEWAY_LEAF_RIGHT\"] = 691] = \"GARDEN_ONEWAY_LEAF_RIGHT\";\n BlockNames[BlockNames[\"GARDEN_SNAIL\"] = 692] = \"GARDEN_SNAIL\";\n BlockNames[BlockNames[\"GARDEN_BUTTERFLY\"] = 693] = \"GARDEN_BUTTERFLY\";\n BlockNames[BlockNames[\"GARDEN_ROCK_BG\"] = 694] = \"GARDEN_ROCK_BG\";\n BlockNames[BlockNames[\"GARDEN_GRASS_BG\"] = 695] = \"GARDEN_GRASS_BG\";\n BlockNames[BlockNames[\"GARDEN_LEAVES_BG\"] = 696] = \"GARDEN_LEAVES_BG\";\n BlockNames[BlockNames[\"GARDEN_FRAME\"] = 697] = \"GARDEN_FRAME\";\n BlockNames[BlockNames[\"DOMESTIC_TILE\"] = 698] = \"DOMESTIC_TILE\";\n BlockNames[BlockNames[\"DOMESTIC_WOOD\"] = 699] = \"DOMESTIC_WOOD\";\n BlockNames[BlockNames[\"DOMESTIC_WOOD_PANEL\"] = 700] = \"DOMESTIC_WOOD_PANEL\";\n BlockNames[BlockNames[\"DOMESTIC_WALLPAPER_YELLOW_BG\"] = 701] = \"DOMESTIC_WALLPAPER_YELLOW_BG\";\n BlockNames[BlockNames[\"DOMESTIC_WALLPAPER_BROWN_BG\"] = 702] = \"DOMESTIC_WALLPAPER_BROWN_BG\";\n BlockNames[BlockNames[\"DOMESTIC_WALLPAPER_RED_BG\"] = 703] = \"DOMESTIC_WALLPAPER_RED_BG\";\n BlockNames[BlockNames[\"DOMESTIC_WALLPAPER_BLUE_BG\"] = 704] = \"DOMESTIC_WALLPAPER_BLUE_BG\";\n BlockNames[BlockNames[\"DOMESTIC_WALLPAPER_GREEN_BG\"] = 705] = \"DOMESTIC_WALLPAPER_GREEN_BG\";\n BlockNames[BlockNames[\"DOMESTIC_LAMP\"] = 706] = \"DOMESTIC_LAMP\";\n BlockNames[BlockNames[\"DOMESTIC_LIGHT_BULB_TOP_ON\"] = 707] = \"DOMESTIC_LIGHT_BULB_TOP_ON\";\n BlockNames[BlockNames[\"DOMESTIC_LIGHT_BULB_TOP_OFF\"] = 708] = \"DOMESTIC_LIGHT_BULB_TOP_OFF\";\n BlockNames[BlockNames[\"DOMESTIC_LIGHT_BULB_BOTTOM_ON\"] = 709] = \"DOMESTIC_LIGHT_BULB_BOTTOM_ON\";\n BlockNames[BlockNames[\"DOMESTIC_LIGHT_BULB_BOTTOM_OFF\"] = 710] = \"DOMESTIC_LIGHT_BULB_BOTTOM_OFF\";\n BlockNames[BlockNames[\"DOMESTIC_BOTTOM_RIGHT\"] = 711] = \"DOMESTIC_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_T_BOTTOM\"] = 712] = \"DOMESTIC_PIPE_T_BOTTOM\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_BOTTOM_LEFT\"] = 713] = \"DOMESTIC_PIPE_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_STRAIGHT_HORIZONTAL\"] = 714] = \"DOMESTIC_PIPE_STRAIGHT_HORIZONTAL\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_T_RIGHT\"] = 715] = \"DOMESTIC_PIPE_T_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_CROSS\"] = 716] = \"DOMESTIC_PIPE_CROSS\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_T_LEFT\"] = 717] = \"DOMESTIC_PIPE_T_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_STRAIGHT_VERTICAL\"] = 718] = \"DOMESTIC_PIPE_STRAIGHT_VERTICAL\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_TOP_RIGHT\"] = 719] = \"DOMESTIC_PIPE_TOP_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_T_TOP\"] = 720] = \"DOMESTIC_PIPE_T_TOP\";\n BlockNames[BlockNames[\"DOMESTIC_PIPE_TOP_LEFT\"] = 721] = \"DOMESTIC_PIPE_TOP_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_PAINTING_BLUE\"] = 722] = \"DOMESTIC_PAINTING_BLUE\";\n BlockNames[BlockNames[\"DOMESTIC_PAINTING_GREEN\"] = 723] = \"DOMESTIC_PAINTING_GREEN\";\n BlockNames[BlockNames[\"DOMESTIC_PAINTING_BLUE_DARK\"] = 724] = \"DOMESTIC_PAINTING_BLUE_DARK\";\n BlockNames[BlockNames[\"DOMESTIC_PAINTING_PURPLE\"] = 725] = \"DOMESTIC_PAINTING_PURPLE\";\n BlockNames[BlockNames[\"DOMESTIC_VASE_BLUE\"] = 726] = \"DOMESTIC_VASE_BLUE\";\n BlockNames[BlockNames[\"DOMESTIC_VASE_PURPLE\"] = 727] = \"DOMESTIC_VASE_PURPLE\";\n BlockNames[BlockNames[\"DOMESTIC_VASE_ORANGE\"] = 728] = \"DOMESTIC_VASE_ORANGE\";\n BlockNames[BlockNames[\"DOMESTIC_VASE_YELLOW\"] = 729] = \"DOMESTIC_VASE_YELLOW\";\n BlockNames[BlockNames[\"DOMESTIC_TELEVISION_BLACK\"] = 730] = \"DOMESTIC_TELEVISION_BLACK\";\n BlockNames[BlockNames[\"DOMESTIC_TELEVISION_GRAY\"] = 731] = \"DOMESTIC_TELEVISION_GRAY\";\n BlockNames[BlockNames[\"DOMESTIC_TELEVISION_BLUE\"] = 732] = \"DOMESTIC_TELEVISION_BLUE\";\n BlockNames[BlockNames[\"DOMESTIC_TELEVISION_YELLOW\"] = 733] = \"DOMESTIC_TELEVISION_YELLOW\";\n BlockNames[BlockNames[\"DOMESTIC_WINDOW_BLACK\"] = 734] = \"DOMESTIC_WINDOW_BLACK\";\n BlockNames[BlockNames[\"DOMESTIC_WINDOW_BLUE\"] = 735] = \"DOMESTIC_WINDOW_BLUE\";\n BlockNames[BlockNames[\"DOMESTIC_WINDOW_ORANGE\"] = 736] = \"DOMESTIC_WINDOW_ORANGE\";\n BlockNames[BlockNames[\"DOMESTIC_WINDOW_YELLOW\"] = 737] = \"DOMESTIC_WINDOW_YELLOW\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_YELLOW_LEFT\"] = 738] = \"DOMESTIC_HALF_YELLOW_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_YELLOW_TOP\"] = 739] = \"DOMESTIC_HALF_YELLOW_TOP\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_YELLOW_RIGHT\"] = 740] = \"DOMESTIC_HALF_YELLOW_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_YELLOW_BOTTOM\"] = 741] = \"DOMESTIC_HALF_YELLOW_BOTTOM\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_BROWN_LEFT\"] = 742] = \"DOMESTIC_HALF_BROWN_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_BROWN_TOP\"] = 743] = \"DOMESTIC_HALF_BROWN_TOP\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_BROWN_RIGHT\"] = 744] = \"DOMESTIC_HALF_BROWN_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_BROWN_BOTTOM\"] = 745] = \"DOMESTIC_HALF_BROWN_BOTTOM\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_WHITE_LEFT\"] = 746] = \"DOMESTIC_HALF_WHITE_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_WHITE_TOP\"] = 747] = \"DOMESTIC_HALF_WHITE_TOP\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_WHITE_RIGHT\"] = 748] = \"DOMESTIC_HALF_WHITE_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_HALF_WHITE_BOTTOM\"] = 749] = \"DOMESTIC_HALF_WHITE_BOTTOM\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_TOP_LEFT\"] = 750] = \"DOMESTIC_FRAME_BORDER_TOP_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_TOP\"] = 751] = \"DOMESTIC_FRAME_BORDER_TOP\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_TOP_RIGHT\"] = 752] = \"DOMESTIC_FRAME_BORDER_TOP_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_TOP_BOTTOM\"] = 753] = \"DOMESTIC_FRAME_BORDER_TOP_BOTTOM\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_LEFT\"] = 754] = \"DOMESTIC_FRAME_BORDER_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_FULL\"] = 755] = \"DOMESTIC_FRAME_BORDER_FULL\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_RIGHT\"] = 756] = \"DOMESTIC_FRAME_BORDER_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_LEFT_RIGHT\"] = 757] = \"DOMESTIC_FRAME_BORDER_LEFT_RIGHT\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_BOTTOM_LEFT\"] = 758] = \"DOMESTIC_FRAME_BORDER_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_BOTTOM\"] = 759] = \"DOMESTIC_FRAME_BORDER_BOTTOM\";\n BlockNames[BlockNames[\"DOMESTIC_FRAME_BORDER_BOTTOM_RIGHT\"] = 760] = \"DOMESTIC_FRAME_BORDER_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"DOJO_ONEWAY_WHITE_TOP\"] = 761] = \"DOJO_ONEWAY_WHITE_TOP\";\n BlockNames[BlockNames[\"DOJO_ONEWAY_GRAY_TOP\"] = 762] = \"DOJO_ONEWAY_GRAY_TOP\";\n BlockNames[BlockNames[\"DOJO_WALLPAPER_WHITE_BG\"] = 763] = \"DOJO_WALLPAPER_WHITE_BG\";\n BlockNames[BlockNames[\"DOJO_WALLPAPER_GRAY_BG\"] = 764] = \"DOJO_WALLPAPER_GRAY_BG\";\n BlockNames[BlockNames[\"DOJO_SHINGLES_BLUE_BG\"] = 765] = \"DOJO_SHINGLES_BLUE_BG\";\n BlockNames[BlockNames[\"DOJO_SHINGLES_BLUE_DARK_BG\"] = 766] = \"DOJO_SHINGLES_BLUE_DARK_BG\";\n BlockNames[BlockNames[\"DOJO_SHINGLES_RED_BG\"] = 767] = \"DOJO_SHINGLES_RED_BG\";\n BlockNames[BlockNames[\"DOJO_SHINGLES_RED_DARK_BG\"] = 768] = \"DOJO_SHINGLES_RED_DARK_BG\";\n BlockNames[BlockNames[\"DOJO_SHINGLES_GREEN_BG\"] = 769] = \"DOJO_SHINGLES_GREEN_BG\";\n BlockNames[BlockNames[\"DOJO_SHINGLES_GREEN_DARK_BG\"] = 770] = \"DOJO_SHINGLES_GREEN_DARK_BG\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_BLUE_LEFT\"] = 771] = \"DOJO_ROOFTOP_BLUE_LEFT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_BLUE_RIGHT\"] = 772] = \"DOJO_ROOFTOP_BLUE_RIGHT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_RED_LEFT\"] = 773] = \"DOJO_ROOFTOP_RED_LEFT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_RED_RIGHT\"] = 774] = \"DOJO_ROOFTOP_RED_RIGHT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_GREEN_LEFT\"] = 775] = \"DOJO_ROOFTOP_GREEN_LEFT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_GREEN_RIGHT\"] = 776] = \"DOJO_ROOFTOP_GREEN_RIGHT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_GREEN_DARK_LEFT\"] = 781] = \"DOJO_ROOFTOP_GREEN_DARK_LEFT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_GREEN_DARK_RIGHT\"] = 782] = \"DOJO_ROOFTOP_GREEN_DARK_RIGHT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_BLUE_DARK_LEFT\"] = 777] = \"DOJO_ROOFTOP_BLUE_DARK_LEFT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_BLUE_DARK_RIGHT\"] = 778] = \"DOJO_ROOFTOP_BLUE_DARK_RIGHT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_RED_DARK_LEFT\"] = 779] = \"DOJO_ROOFTOP_RED_DARK_LEFT\";\n BlockNames[BlockNames[\"DOJO_ROOFTOP_RED_DARK_RIGHT\"] = 780] = \"DOJO_ROOFTOP_RED_DARK_RIGHT\";\n BlockNames[BlockNames[\"DOJO_WINDOW_BRIGHT\"] = 783] = \"DOJO_WINDOW_BRIGHT\";\n BlockNames[BlockNames[\"DOJO_WINDOW_DARK\"] = 784] = \"DOJO_WINDOW_DARK\";\n BlockNames[BlockNames[\"DOJO_CHINESE_CHARACTER_AND\"] = 785] = \"DOJO_CHINESE_CHARACTER_AND\";\n BlockNames[BlockNames[\"DOJO_CHINESE_CHARACTER_BOOK\"] = 786] = \"DOJO_CHINESE_CHARACTER_BOOK\";\n BlockNames[BlockNames[\"DOJO_CHINESE_SYMBOL_YIN_YANG\"] = 787] = \"DOJO_CHINESE_SYMBOL_YIN_YANG\";\n BlockNames[BlockNames[\"CHRISTMAS_TREE_LIGHTS\"] = 789] = \"CHRISTMAS_TREE_LIGHTS\";\n BlockNames[BlockNames[\"CHRISTMAS_TREE_PLAIN\"] = 788] = \"CHRISTMAS_TREE_PLAIN\";\n BlockNames[BlockNames[\"CHRISTMAS_FENCE_SNOW\"] = 791] = \"CHRISTMAS_FENCE_SNOW\";\n BlockNames[BlockNames[\"CHRISTMAS_FENCE_PLAIN\"] = 790] = \"CHRISTMAS_FENCE_PLAIN\";\n BlockNames[BlockNames[\"CHRISTMAS_ORNAMENT_RED\"] = 792] = \"CHRISTMAS_ORNAMENT_RED\";\n BlockNames[BlockNames[\"CHRISTMAS_ORNAMENT_GREEN\"] = 793] = \"CHRISTMAS_ORNAMENT_GREEN\";\n BlockNames[BlockNames[\"CHRISTMAS_ORNAMENT_BLUE\"] = 794] = \"CHRISTMAS_ORNAMENT_BLUE\";\n BlockNames[BlockNames[\"CHRISTMAS_WREATH\"] = 795] = \"CHRISTMAS_WREATH\";\n BlockNames[BlockNames[\"CHRISTMAS_STAR\"] = 796] = \"CHRISTMAS_STAR\";\n BlockNames[BlockNames[\"CHRISTMAS_WRAPPING_PAPER_YELLOW_BG\"] = 797] = \"CHRISTMAS_WRAPPING_PAPER_YELLOW_BG\";\n BlockNames[BlockNames[\"CHRISTMAS_WRAPPING_PAPER_GREEN_BG\"] = 798] = \"CHRISTMAS_WRAPPING_PAPER_GREEN_BG\";\n BlockNames[BlockNames[\"CHRISTMAS_WRAPPING_PAPER_BLUE_BG\"] = 799] = \"CHRISTMAS_WRAPPING_PAPER_BLUE_BG\";\n BlockNames[BlockNames[\"CHRISTMAS_RIBBON_BLUE_VERTICAL\"] = 800] = \"CHRISTMAS_RIBBON_BLUE_VERTICAL\";\n BlockNames[BlockNames[\"CHRISTMAS_RIBBON_BLUE_HORIZONTAL\"] = 801] = \"CHRISTMAS_RIBBON_BLUE_HORIZONTAL\";\n BlockNames[BlockNames[\"CHRISTMAS_RIBBON_BLUE_CROSS\"] = 802] = \"CHRISTMAS_RIBBON_BLUE_CROSS\";\n BlockNames[BlockNames[\"CHRISTMAS_RIBBON_PURPLE_VERTICAL\"] = 803] = \"CHRISTMAS_RIBBON_PURPLE_VERTICAL\";\n BlockNames[BlockNames[\"CHRISTMAS_RIBBON_PURPLE_HORIZONTAL\"] = 804] = \"CHRISTMAS_RIBBON_PURPLE_HORIZONTAL\";\n BlockNames[BlockNames[\"CHRISTMAS_RIBBON_PURPLE_CROSS\"] = 805] = \"CHRISTMAS_RIBBON_PURPLE_CROSS\";\n BlockNames[BlockNames[\"CHRISTMAS_CANDY_CANE\"] = 806] = \"CHRISTMAS_CANDY_CANE\";\n BlockNames[BlockNames[\"CHRISTMAS_MISTLETOE\"] = 807] = \"CHRISTMAS_MISTLETOE\";\n BlockNames[BlockNames[\"CHRISTMAS_STOCKING\"] = 808] = \"CHRISTMAS_STOCKING\";\n BlockNames[BlockNames[\"CHRISTMAS_RIBBON_RED_BOW\"] = 809] = \"CHRISTMAS_RIBBON_RED_BOW\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_FULL_RED\"] = 810] = \"CHRISTMAS_GIFT_FULL_RED\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_HALF_RED\"] = 811] = \"CHRISTMAS_GIFT_HALF_RED\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_FULL_GREEN\"] = 812] = \"CHRISTMAS_GIFT_FULL_GREEN\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_HALF_GREEN\"] = 813] = \"CHRISTMAS_GIFT_HALF_GREEN\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_FULL_WHITE\"] = 814] = \"CHRISTMAS_GIFT_FULL_WHITE\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_HALF_WHITE\"] = 815] = \"CHRISTMAS_GIFT_HALF_WHITE\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_FULL_BLUE\"] = 816] = \"CHRISTMAS_GIFT_FULL_BLUE\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_HALF_BLUE\"] = 817] = \"CHRISTMAS_GIFT_HALF_BLUE\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_FULL_YELLOW\"] = 818] = \"CHRISTMAS_GIFT_FULL_YELLOW\";\n BlockNames[BlockNames[\"CHRISTMAS_GIFT_HALF_YELLOW\"] = 819] = \"CHRISTMAS_GIFT_HALF_YELLOW\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_TOP_RED\"] = 820] = \"CHRISTMAS_STRING_LIGHT_TOP_RED\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_BOTTOM_RED\"] = 825] = \"CHRISTMAS_STRING_LIGHT_BOTTOM_RED\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_TOP_YELLOW\"] = 821] = \"CHRISTMAS_STRING_LIGHT_TOP_YELLOW\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_BOTTOM_YELLOW\"] = 826] = \"CHRISTMAS_STRING_LIGHT_BOTTOM_YELLOW\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_TOP_GREEN\"] = 822] = \"CHRISTMAS_STRING_LIGHT_TOP_GREEN\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_BOTTOM_GREEN\"] = 827] = \"CHRISTMAS_STRING_LIGHT_BOTTOM_GREEN\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_TOP_BLUE\"] = 823] = \"CHRISTMAS_STRING_LIGHT_TOP_BLUE\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_BOTTOM_BLUE\"] = 828] = \"CHRISTMAS_STRING_LIGHT_BOTTOM_BLUE\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_TOP_PURPLE\"] = 824] = \"CHRISTMAS_STRING_LIGHT_TOP_PURPLE\";\n BlockNames[BlockNames[\"CHRISTMAS_STRING_LIGHT_BOTTOM_PURPLE\"] = 829] = \"CHRISTMAS_STRING_LIGHT_BOTTOM_PURPLE\";\n BlockNames[BlockNames[\"CHRISTMAS_BELL_YELLOW\"] = 830] = \"CHRISTMAS_BELL_YELLOW\";\n BlockNames[BlockNames[\"CHRISTMAS_BELL_GROUP_RED\"] = 831] = \"CHRISTMAS_BELL_GROUP_RED\";\n BlockNames[BlockNames[\"CHRISTMAS_CANDLE_RED\"] = 832] = \"CHRISTMAS_CANDLE_RED\";\n BlockNames[BlockNames[\"SCIFI_PANEL_RED\"] = 833] = \"SCIFI_PANEL_RED\";\n BlockNames[BlockNames[\"SCIFI_PANEL_BLUE\"] = 834] = \"SCIFI_PANEL_BLUE\";\n BlockNames[BlockNames[\"SCIFI_PANEL_GREEN\"] = 835] = \"SCIFI_PANEL_GREEN\";\n BlockNames[BlockNames[\"SCIFI_PANEL_YELLOW\"] = 836] = \"SCIFI_PANEL_YELLOW\";\n BlockNames[BlockNames[\"SCIFI_PANEL_MAGENTA\"] = 837] = \"SCIFI_PANEL_MAGENTA\";\n BlockNames[BlockNames[\"SCIFI_PANEL_CYAN\"] = 838] = \"SCIFI_PANEL_CYAN\";\n BlockNames[BlockNames[\"SCIFI_METAL_GRAY\"] = 839] = \"SCIFI_METAL_GRAY\";\n BlockNames[BlockNames[\"SCIFI_METAL_WHITE\"] = 840] = \"SCIFI_METAL_WHITE\";\n BlockNames[BlockNames[\"SCIFI_BROWN_LEOPARD\"] = 841] = \"SCIFI_BROWN_LEOPARD\";\n BlockNames[BlockNames[\"SCIFI_ONEWAY_RED_TOP\"] = 842] = \"SCIFI_ONEWAY_RED_TOP\";\n BlockNames[BlockNames[\"SCIFI_ONEWAY_BLUE_TOP\"] = 843] = \"SCIFI_ONEWAY_BLUE_TOP\";\n BlockNames[BlockNames[\"SCIFI_ONEWAY_GREEN_TOP\"] = 844] = \"SCIFI_ONEWAY_GREEN_TOP\";\n BlockNames[BlockNames[\"SCIFI_ONEWAY_YELLOW_TOP\"] = 845] = \"SCIFI_ONEWAY_YELLOW_TOP\";\n BlockNames[BlockNames[\"SCIFI_ONEWAY_MAGENTA_TOP\"] = 846] = \"SCIFI_ONEWAY_MAGENTA_TOP\";\n BlockNames[BlockNames[\"SCIFI_ONEWAY_CYAN_TOP\"] = 847] = \"SCIFI_ONEWAY_CYAN_TOP\";\n BlockNames[BlockNames[\"SCIFI_LASER_BLUE_CORNER_BOTTOMRIGHT\"] = 848] = \"SCIFI_LASER_BLUE_CORNER_BOTTOMRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_BLUE_CORNER_BOTTOMLEFT\"] = 849] = \"SCIFI_LASER_BLUE_CORNER_BOTTOMLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_BLUE_STRAIGHT_HORIZONTAL\"] = 850] = \"SCIFI_LASER_BLUE_STRAIGHT_HORIZONTAL\";\n BlockNames[BlockNames[\"SCIFI_LASER_BLUE_CORNER_TOPRIGHT\"] = 851] = \"SCIFI_LASER_BLUE_CORNER_TOPRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_BLUE_CORNER_TOPLEFT\"] = 852] = \"SCIFI_LASER_BLUE_CORNER_TOPLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_BLUE_STRAIGHT_VERTICAL\"] = 853] = \"SCIFI_LASER_BLUE_STRAIGHT_VERTICAL\";\n BlockNames[BlockNames[\"SCIFI_LASER_GREEN_CORNER_BOTTOMRIGHT\"] = 854] = \"SCIFI_LASER_GREEN_CORNER_BOTTOMRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_GREEN_CORNER_BOTTOMLEFT\"] = 855] = \"SCIFI_LASER_GREEN_CORNER_BOTTOMLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_GREEN_STRAIGHT_HORIZONTAL\"] = 856] = \"SCIFI_LASER_GREEN_STRAIGHT_HORIZONTAL\";\n BlockNames[BlockNames[\"SCIFI_LASER_GREEN_CORNER_TOPRIGHT\"] = 857] = \"SCIFI_LASER_GREEN_CORNER_TOPRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_GREEN_CORNER_TOPLEFT\"] = 858] = \"SCIFI_LASER_GREEN_CORNER_TOPLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_GREEN_STRAIGHT_VERTICAL\"] = 859] = \"SCIFI_LASER_GREEN_STRAIGHT_VERTICAL\";\n BlockNames[BlockNames[\"SCIFI_LASER_ORANGE_CORNER_BOTTOMRIGHT\"] = 860] = \"SCIFI_LASER_ORANGE_CORNER_BOTTOMRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_ORANGE_CORNER_BOTTOMLEFT\"] = 861] = \"SCIFI_LASER_ORANGE_CORNER_BOTTOMLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_ORANGE_STRAIGHT_HORIZONTAL\"] = 862] = \"SCIFI_LASER_ORANGE_STRAIGHT_HORIZONTAL\";\n BlockNames[BlockNames[\"SCIFI_LASER_ORANGE_CORNER_TOPRIGHT\"] = 863] = \"SCIFI_LASER_ORANGE_CORNER_TOPRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_ORANGE_CORNER_TOPLEFT\"] = 864] = \"SCIFI_LASER_ORANGE_CORNER_TOPLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_ORANGE_STRAIGHT_VERITICAL\"] = 865] = \"SCIFI_LASER_ORANGE_STRAIGHT_VERITICAL\";\n BlockNames[BlockNames[\"SCIFI_LASER_RED_CORNER_BOTTOMRIGHT\"] = 866] = \"SCIFI_LASER_RED_CORNER_BOTTOMRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_RED_CORNER_BOTTOMLEFT\"] = 867] = \"SCIFI_LASER_RED_CORNER_BOTTOMLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_RED_STRAIGHT_HORIZONTAL\"] = 868] = \"SCIFI_LASER_RED_STRAIGHT_HORIZONTAL\";\n BlockNames[BlockNames[\"SCIFI_LASER_RED_CORNER_TOPRIGHT\"] = 869] = \"SCIFI_LASER_RED_CORNER_TOPRIGHT\";\n BlockNames[BlockNames[\"SCIFI_LASER_RED_CORNER_TOPLEFT\"] = 870] = \"SCIFI_LASER_RED_CORNER_TOPLEFT\";\n BlockNames[BlockNames[\"SCIFI_LASER_RED_STRAIGHT_VERTICAL\"] = 871] = \"SCIFI_LASER_RED_STRAIGHT_VERTICAL\";\n BlockNames[BlockNames[\"SCIFI_OUTLINE_GRAY_BG\"] = 872] = \"SCIFI_OUTLINE_GRAY_BG\";\n BlockNames[BlockNames[\"PRISON_BARS\"] = 873] = \"PRISON_BARS\";\n BlockNames[BlockNames[\"PRISON_BRICK\"] = 874] = \"PRISON_BRICK\";\n BlockNames[BlockNames[\"PRISON_BRICK_BG\"] = 875] = \"PRISON_BRICK_BG\";\n BlockNames[BlockNames[\"PRISON_WINDOW_ORANGE_BG\"] = 876] = \"PRISON_WINDOW_ORANGE_BG\";\n BlockNames[BlockNames[\"PRISON_WINDOW_BLUE_BG\"] = 877] = \"PRISON_WINDOW_BLUE_BG\";\n BlockNames[BlockNames[\"PRISON_WINDOW_BLACK_BG\"] = 878] = \"PRISON_WINDOW_BLACK_BG\";\n BlockNames[BlockNames[\"PIRATE_WOOD_PLANK_BROWN\"] = 879] = \"PIRATE_WOOD_PLANK_BROWN\";\n BlockNames[BlockNames[\"PIRATE_CHEST_BROWN\"] = 880] = \"PIRATE_CHEST_BROWN\";\n BlockNames[BlockNames[\"PIRATE_ONEWAY_BROWN_TOP\"] = 881] = \"PIRATE_ONEWAY_BROWN_TOP\";\n BlockNames[BlockNames[\"PIRATE_SHIP_BORDER_BROWN\"] = 882] = \"PIRATE_SHIP_BORDER_BROWN\";\n BlockNames[BlockNames[\"PIRATE_SKELETON_HEAD\"] = 883] = \"PIRATE_SKELETON_HEAD\";\n BlockNames[BlockNames[\"PIRATE_CANNON\"] = 884] = \"PIRATE_CANNON\";\n BlockNames[BlockNames[\"PIRATE_PORT_WINDOW\"] = 885] = \"PIRATE_PORT_WINDOW\";\n BlockNames[BlockNames[\"PIRATE_WOOD_PLANK_LIGHT_BROWN_BG\"] = 886] = \"PIRATE_WOOD_PLANK_LIGHT_BROWN_BG\";\n BlockNames[BlockNames[\"PIRATE_WOOD_PLANK_BROWN_BG\"] = 887] = \"PIRATE_WOOD_PLANK_BROWN_BG\";\n BlockNames[BlockNames[\"PIRATE_WOOD_PLANK_DARK_BROWN_BG\"] = 888] = \"PIRATE_WOOD_PLANK_DARK_BROWN_BG\";\n BlockNames[BlockNames[\"PIRATE_SKELETON_FLAG_BG\"] = 889] = \"PIRATE_SKELETON_FLAG_BG\";\n BlockNames[BlockNames[\"PLASTIC_RED\"] = 890] = \"PLASTIC_RED\";\n BlockNames[BlockNames[\"PLASTIC_ORANGE\"] = 891] = \"PLASTIC_ORANGE\";\n BlockNames[BlockNames[\"PLASTIC_YELLOW\"] = 892] = \"PLASTIC_YELLOW\";\n BlockNames[BlockNames[\"PLASTIC_LIME\"] = 893] = \"PLASTIC_LIME\";\n BlockNames[BlockNames[\"PLASTIC_GREEN\"] = 894] = \"PLASTIC_GREEN\";\n BlockNames[BlockNames[\"PLASTIC_CYAN\"] = 895] = \"PLASTIC_CYAN\";\n BlockNames[BlockNames[\"PLASTIC_BLUE\"] = 896] = \"PLASTIC_BLUE\";\n BlockNames[BlockNames[\"PLASTIC_MAGENTA\"] = 897] = \"PLASTIC_MAGENTA\";\n BlockNames[BlockNames[\"LAVA_YELLOW\"] = 898] = \"LAVA_YELLOW\";\n BlockNames[BlockNames[\"LAVA_ORANGE\"] = 899] = \"LAVA_ORANGE\";\n BlockNames[BlockNames[\"LAVA_DARK_ORANGE\"] = 900] = \"LAVA_DARK_ORANGE\";\n BlockNames[BlockNames[\"LAVA_YELLOW_BG\"] = 901] = \"LAVA_YELLOW_BG\";\n BlockNames[BlockNames[\"LAVA_ORANGE_BG\"] = 902] = \"LAVA_ORANGE_BG\";\n BlockNames[BlockNames[\"LAVA_DARK_RED_BG\"] = 903] = \"LAVA_DARK_RED_BG\";\n BlockNames[BlockNames[\"GOLD_BASIC\"] = 904] = \"GOLD_BASIC\";\n BlockNames[BlockNames[\"GOLD_BRICK\"] = 905] = \"GOLD_BRICK\";\n BlockNames[BlockNames[\"GOLD_CHISLED\"] = 906] = \"GOLD_CHISLED\";\n BlockNames[BlockNames[\"GOLD_TILE\"] = 907] = \"GOLD_TILE\";\n BlockNames[BlockNames[\"GOLD_MANTLE_ONEWAY_TOP\"] = 908] = \"GOLD_MANTLE_ONEWAY_TOP\";\n BlockNames[BlockNames[\"GOLD_BASIC_BG\"] = 909] = \"GOLD_BASIC_BG\";\n BlockNames[BlockNames[\"GOLD_BRICK_BG\"] = 910] = \"GOLD_BRICK_BG\";\n BlockNames[BlockNames[\"GOLD_CHISLED_BG\"] = 911] = \"GOLD_CHISLED_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_PLYWOOD\"] = 912] = \"CONSTRUCTION_PLYWOOD\";\n BlockNames[BlockNames[\"CONSTRUCTION_GRAVEL\"] = 913] = \"CONSTRUCTION_GRAVEL\";\n BlockNames[BlockNames[\"CONSTRUCTION_CEMENT\"] = 914] = \"CONSTRUCTION_CEMENT\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_HORIZONTAL_LEFT\"] = 915] = \"CONSTRUCTION_BEAM_RED_HORIZONTAL_LEFT\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_HORIZONTAL_MIDDLE\"] = 916] = \"CONSTRUCTION_BEAM_RED_HORIZONTAL_MIDDLE\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_HORIZONTAL_RIGHT\"] = 917] = \"CONSTRUCTION_BEAM_RED_HORIZONTAL_RIGHT\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_VERTICAL_TOP\"] = 918] = \"CONSTRUCTION_BEAM_RED_VERTICAL_TOP\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_VERTICAL_MIDDLE\"] = 919] = \"CONSTRUCTION_BEAM_RED_VERTICAL_MIDDLE\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_VERTICAL_BOTTOM\"] = 920] = \"CONSTRUCTION_BEAM_RED_VERTICAL_BOTTOM\";\n BlockNames[BlockNames[\"CONSTRUCTION_CAUTION_ORANGE\"] = 921] = \"CONSTRUCTION_CAUTION_ORANGE\";\n BlockNames[BlockNames[\"CONSTRUCTION_CONE_ORANGE\"] = 922] = \"CONSTRUCTION_CONE_ORANGE\";\n BlockNames[BlockNames[\"CONSTRUCTION_SIGN_WARNING\"] = 923] = \"CONSTRUCTION_SIGN_WARNING\";\n BlockNames[BlockNames[\"CONSTRUCTION_SIGN_STOP\"] = 924] = \"CONSTRUCTION_SIGN_STOP\";\n BlockNames[BlockNames[\"CONSTRUCTION_HYDRANT_FIRE\"] = 925] = \"CONSTRUCTION_HYDRANT_FIRE\";\n BlockNames[BlockNames[\"CONSTRUCTION_PLYWOOD_BG\"] = 926] = \"CONSTRUCTION_PLYWOOD_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_GRAVEL_BG\"] = 927] = \"CONSTRUCTION_GRAVEL_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_CEMENT_BG\"] = 928] = \"CONSTRUCTION_CEMENT_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_HORIZONTAL_LEFT_BG\"] = 929] = \"CONSTRUCTION_BEAM_RED_HORIZONTAL_LEFT_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_HORIZONTAL_MIDDLE_BG\"] = 930] = \"CONSTRUCTION_BEAM_RED_HORIZONTAL_MIDDLE_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_HORIZONTAL_RIGHT_BG\"] = 931] = \"CONSTRUCTION_BEAM_RED_HORIZONTAL_RIGHT_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_VERTICAL_TOP_BG\"] = 932] = \"CONSTRUCTION_BEAM_RED_VERTICAL_TOP_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_VERTICAL_MIDDLE_BG\"] = 933] = \"CONSTRUCTION_BEAM_RED_VERTICAL_MIDDLE_BG\";\n BlockNames[BlockNames[\"CONSTRUCTION_BEAM_RED_VERTICAL_BOTTOM_BG\"] = 934] = \"CONSTRUCTION_BEAM_RED_VERTICAL_BOTTOM_BG\";\n BlockNames[BlockNames[\"TILES_WHITE\"] = 935] = \"TILES_WHITE\";\n BlockNames[BlockNames[\"TILES_GRAY\"] = 936] = \"TILES_GRAY\";\n BlockNames[BlockNames[\"TILES_BLACK\"] = 937] = \"TILES_BLACK\";\n BlockNames[BlockNames[\"TILES_RED\"] = 938] = \"TILES_RED\";\n BlockNames[BlockNames[\"TILES_ORANGE\"] = 939] = \"TILES_ORANGE\";\n BlockNames[BlockNames[\"TILES_YELLOW\"] = 940] = \"TILES_YELLOW\";\n BlockNames[BlockNames[\"TILES_GREEN\"] = 941] = \"TILES_GREEN\";\n BlockNames[BlockNames[\"TILES_CYAN\"] = 942] = \"TILES_CYAN\";\n BlockNames[BlockNames[\"TILES_BLUE\"] = 943] = \"TILES_BLUE\";\n BlockNames[BlockNames[\"TILES_PURPLE\"] = 944] = \"TILES_PURPLE\";\n BlockNames[BlockNames[\"TILES_WHITE_BG\"] = 945] = \"TILES_WHITE_BG\";\n BlockNames[BlockNames[\"TILES_GRAY_BG\"] = 946] = \"TILES_GRAY_BG\";\n BlockNames[BlockNames[\"TILES_BLACK_BG\"] = 947] = \"TILES_BLACK_BG\";\n BlockNames[BlockNames[\"TILES_RED_BG\"] = 948] = \"TILES_RED_BG\";\n BlockNames[BlockNames[\"TILES_ORANGE_BG\"] = 949] = \"TILES_ORANGE_BG\";\n BlockNames[BlockNames[\"TILES_YELLOW_BG\"] = 950] = \"TILES_YELLOW_BG\";\n BlockNames[BlockNames[\"TILES_GREEN_BG\"] = 951] = \"TILES_GREEN_BG\";\n BlockNames[BlockNames[\"TILES_CYAN_BG\"] = 952] = \"TILES_CYAN_BG\";\n BlockNames[BlockNames[\"TILES_BLUE_BG\"] = 953] = \"TILES_BLUE_BG\";\n BlockNames[BlockNames[\"TILES_PURPLE_BG\"] = 954] = \"TILES_PURPLE_BG\";\n BlockNames[BlockNames[\"HALFBLOCKS_WHITE_LEFT\"] = 955] = \"HALFBLOCKS_WHITE_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_WHITE_TOP\"] = 956] = \"HALFBLOCKS_WHITE_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_WHITE_RIGHT\"] = 957] = \"HALFBLOCKS_WHITE_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_WHITE_BOTTOM\"] = 958] = \"HALFBLOCKS_WHITE_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_GRAY_LEFT\"] = 959] = \"HALFBLOCKS_GRAY_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_GRAY_TOP\"] = 960] = \"HALFBLOCKS_GRAY_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_GRAY_RIGHT\"] = 961] = \"HALFBLOCKS_GRAY_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_GRAY_BOTTOM\"] = 962] = \"HALFBLOCKS_GRAY_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLACK_LEFT\"] = 963] = \"HALFBLOCKS_BLACK_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLACK_TOP\"] = 964] = \"HALFBLOCKS_BLACK_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLACK_RIGHT\"] = 965] = \"HALFBLOCKS_BLACK_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLACK_BOTTOM\"] = 966] = \"HALFBLOCKS_BLACK_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_RED_LEFT\"] = 967] = \"HALFBLOCKS_RED_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_RED_TOP\"] = 968] = \"HALFBLOCKS_RED_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_RED_RIGHT\"] = 969] = \"HALFBLOCKS_RED_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_RED_BOTTOM\"] = 970] = \"HALFBLOCKS_RED_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_ORANGE_LEFT\"] = 971] = \"HALFBLOCKS_ORANGE_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_ORANGE_TOP\"] = 972] = \"HALFBLOCKS_ORANGE_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_ORANGE_RIGHT\"] = 973] = \"HALFBLOCKS_ORANGE_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_ORANGE_BOTTOM\"] = 974] = \"HALFBLOCKS_ORANGE_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_YELLOW_LEFT\"] = 975] = \"HALFBLOCKS_YELLOW_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_YELLOW_TOP\"] = 976] = \"HALFBLOCKS_YELLOW_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_YELLOW_RIGHT\"] = 977] = \"HALFBLOCKS_YELLOW_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_YELLOW_BOTTOM\"] = 978] = \"HALFBLOCKS_YELLOW_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_GREEN_LEFT\"] = 979] = \"HALFBLOCKS_GREEN_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_GREEN_TOP\"] = 980] = \"HALFBLOCKS_GREEN_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_GREEN_RIGHT\"] = 981] = \"HALFBLOCKS_GREEN_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_GREEN_BOTTOM\"] = 982] = \"HALFBLOCKS_GREEN_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_CYAN_LEFT\"] = 983] = \"HALFBLOCKS_CYAN_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_CYAN_TOP\"] = 984] = \"HALFBLOCKS_CYAN_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_CYAN_RIGHT\"] = 985] = \"HALFBLOCKS_CYAN_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_CYAN_BOTTOM\"] = 986] = \"HALFBLOCKS_CYAN_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLUE_LEFT\"] = 987] = \"HALFBLOCKS_BLUE_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLUE_TOP\"] = 988] = \"HALFBLOCKS_BLUE_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLUE_RIGHT\"] = 989] = \"HALFBLOCKS_BLUE_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_BLUE_BOTTOM\"] = 990] = \"HALFBLOCKS_BLUE_BOTTOM\";\n BlockNames[BlockNames[\"HALFBLOCKS_MAGENTA_LEFT\"] = 991] = \"HALFBLOCKS_MAGENTA_LEFT\";\n BlockNames[BlockNames[\"HALFBLOCKS_MAGENTA_TOP\"] = 992] = \"HALFBLOCKS_MAGENTA_TOP\";\n BlockNames[BlockNames[\"HALFBLOCKS_MAGENTA_RIGHT\"] = 993] = \"HALFBLOCKS_MAGENTA_RIGHT\";\n BlockNames[BlockNames[\"HALFBLOCKS_MAGENTA_BOTTOM\"] = 994] = \"HALFBLOCKS_MAGENTA_BOTTOM\";\n BlockNames[BlockNames[\"WINTER_ICE_BRICK\"] = 995] = \"WINTER_ICE_BRICK\";\n BlockNames[BlockNames[\"WINTER_SNOW\"] = 996] = \"WINTER_SNOW\";\n BlockNames[BlockNames[\"WINTER_GLACIER\"] = 997] = \"WINTER_GLACIER\";\n BlockNames[BlockNames[\"WINTER_SLATE\"] = 998] = \"WINTER_SLATE\";\n BlockNames[BlockNames[\"WINTER_ICE\"] = 999] = \"WINTER_ICE\";\n BlockNames[BlockNames[\"WINTER_ONEWAY_ICE\"] = 1000] = \"WINTER_ONEWAY_ICE\";\n BlockNames[BlockNames[\"WINTER_ICE_LIGHT\"] = 1001] = \"WINTER_ICE_LIGHT\";\n BlockNames[BlockNames[\"WINTER_ICE_DARK\"] = 1002] = \"WINTER_ICE_DARK\";\n BlockNames[BlockNames[\"WINTER_ICE_DARK_LEFT\"] = 1003] = \"WINTER_ICE_DARK_LEFT\";\n BlockNames[BlockNames[\"WINTER_ICE_DARK_MIDDLE\"] = 1004] = \"WINTER_ICE_DARK_MIDDLE\";\n BlockNames[BlockNames[\"WINTER_ICE_DARK_RIGHT\"] = 1005] = \"WINTER_ICE_DARK_RIGHT\";\n BlockNames[BlockNames[\"WINTER_HALF_SNOW_LEFT\"] = 1006] = \"WINTER_HALF_SNOW_LEFT\";\n BlockNames[BlockNames[\"WINTER_HALF_SNOW_TOP\"] = 1007] = \"WINTER_HALF_SNOW_TOP\";\n BlockNames[BlockNames[\"WINTER_HALF_SNOW_RIGHT\"] = 1008] = \"WINTER_HALF_SNOW_RIGHT\";\n BlockNames[BlockNames[\"WINTER_HALF_SNOW_BOTTOM\"] = 1009] = \"WINTER_HALF_SNOW_BOTTOM\";\n BlockNames[BlockNames[\"WINTER_HALF_ICE_LEFT\"] = 1010] = \"WINTER_HALF_ICE_LEFT\";\n BlockNames[BlockNames[\"WINTER_HALF_ICE_TOP\"] = 1011] = \"WINTER_HALF_ICE_TOP\";\n BlockNames[BlockNames[\"WINTER_HALF_ICE_RIGHT\"] = 1012] = \"WINTER_HALF_ICE_RIGHT\";\n BlockNames[BlockNames[\"WINTER_HALF_ICE_BOTTOM\"] = 1013] = \"WINTER_HALF_ICE_BOTTOM\";\n BlockNames[BlockNames[\"WINTER_ICE_SLIPPERY\"] = 1014] = \"WINTER_ICE_SLIPPERY\";\n BlockNames[BlockNames[\"WINTER_SNOW_PILE\"] = 1015] = \"WINTER_SNOW_PILE\";\n BlockNames[BlockNames[\"WINTER_ICE_DRIFT_TOP_LEFT\"] = 1016] = \"WINTER_ICE_DRIFT_TOP_LEFT\";\n BlockNames[BlockNames[\"WINTER_ICE_DRIFT_TOP_RIGHT\"] = 1017] = \"WINTER_ICE_DRIFT_TOP_RIGHT\";\n BlockNames[BlockNames[\"WINTER_ICE_DRIFT_BOTTOM_LEFT\"] = 1018] = \"WINTER_ICE_DRIFT_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"WINTER_ICE_DRIFT_BOTTOM_RIGHT\"] = 1019] = \"WINTER_ICE_DRIFT_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"WINTER_SNOW_DRIFT_TOP_LEFT\"] = 1020] = \"WINTER_SNOW_DRIFT_TOP_LEFT\";\n BlockNames[BlockNames[\"WINTER_SNOW_DRIFT_TOP_RIGHT\"] = 1021] = \"WINTER_SNOW_DRIFT_TOP_RIGHT\";\n BlockNames[BlockNames[\"WINTER_SNOW_DRIFT_BOTTOM_LEFT\"] = 1022] = \"WINTER_SNOW_DRIFT_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"WINTER_SNOW_DRIFT_BOTTOM_RIGHT\"] = 1023] = \"WINTER_SNOW_DRIFT_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"WINTER_SNOW_FLUFF_LEFT\"] = 1024] = \"WINTER_SNOW_FLUFF_LEFT\";\n BlockNames[BlockNames[\"WINTER_SNOW_FLUFF_MIDDLE\"] = 1025] = \"WINTER_SNOW_FLUFF_MIDDLE\";\n BlockNames[BlockNames[\"WINTER_SNOW_FLUFF_RIGHT\"] = 1026] = \"WINTER_SNOW_FLUFF_RIGHT\";\n BlockNames[BlockNames[\"WINTER_SNOWMAN\"] = 1027] = \"WINTER_SNOWMAN\";\n BlockNames[BlockNames[\"WINTER_TREE\"] = 1028] = \"WINTER_TREE\";\n BlockNames[BlockNames[\"WINTER_SNOWFLAKE_LARGE\"] = 1029] = \"WINTER_SNOWFLAKE_LARGE\";\n BlockNames[BlockNames[\"WINTER_SNOWFLAKE_SMALL\"] = 1030] = \"WINTER_SNOWFLAKE_SMALL\";\n BlockNames[BlockNames[\"WINTER_ICE_DARK_BG\"] = 1031] = \"WINTER_ICE_DARK_BG\";\n BlockNames[BlockNames[\"WINTER_ICE_LIGHT_BG\"] = 1032] = \"WINTER_ICE_LIGHT_BG\";\n BlockNames[BlockNames[\"WINTER_ICE_BRICK_BG\"] = 1033] = \"WINTER_ICE_BRICK_BG\";\n BlockNames[BlockNames[\"WINTER_SNOW_BG\"] = 1034] = \"WINTER_SNOW_BG\";\n BlockNames[BlockNames[\"WINTER_GLACIER_BG\"] = 1035] = \"WINTER_GLACIER_BG\";\n BlockNames[BlockNames[\"WINTER_SLATE_BG\"] = 1036] = \"WINTER_SLATE_BG\";\n BlockNames[BlockNames[\"FAIRYTALE_PEBBLES\"] = 1037] = \"FAIRYTALE_PEBBLES\";\n BlockNames[BlockNames[\"FAIRYTALE_TREE_ORANGE\"] = 1038] = \"FAIRYTALE_TREE_ORANGE\";\n BlockNames[BlockNames[\"FAIRYTALE_MOSS_GREEN\"] = 1039] = \"FAIRYTALE_MOSS_GREEN\";\n BlockNames[BlockNames[\"FAIRYTALE_CLOUD_BLUE\"] = 1040] = \"FAIRYTALE_CLOUD_BLUE\";\n BlockNames[BlockNames[\"FAIRYTALE_MUSHROOM_BLOCK_RED\"] = 1041] = \"FAIRYTALE_MUSHROOM_BLOCK_RED\";\n BlockNames[BlockNames[\"FAIRYTALE_VINE_GREEN\"] = 1042] = \"FAIRYTALE_VINE_GREEN\";\n BlockNames[BlockNames[\"FAIRYTALE_MUSHROOM_DECORATION_ORANGE\"] = 1043] = \"FAIRYTALE_MUSHROOM_DECORATION_ORANGE\";\n BlockNames[BlockNames[\"FAIRYTALE_MUSHROOM_DECORATION_RED\"] = 1044] = \"FAIRYTALE_MUSHROOM_DECORATION_RED\";\n BlockNames[BlockNames[\"FAIRYTALE_DEW_DROP\"] = 1045] = \"FAIRYTALE_DEW_DROP\";\n BlockNames[BlockNames[\"FAIRYTALE_MIST_ORANGE_BG\"] = 1046] = \"FAIRYTALE_MIST_ORANGE_BG\";\n BlockNames[BlockNames[\"FAIRYTALE_MIST_GREEN_BG\"] = 1047] = \"FAIRYTALE_MIST_GREEN_BG\";\n BlockNames[BlockNames[\"FAIRYTALE_MIST_BLUE_BG\"] = 1048] = \"FAIRYTALE_MIST_BLUE_BG\";\n BlockNames[BlockNames[\"FAIRYTALE_MIST_PINK_BG\"] = 1049] = \"FAIRYTALE_MIST_PINK_BG\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_ORANGE_LEFT\"] = 1050] = \"FAIRYTALE_HALF_ORANGE_LEFT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_ORANGE_TOP\"] = 1051] = \"FAIRYTALE_HALF_ORANGE_TOP\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_ORANGE_RIGHT\"] = 1052] = \"FAIRYTALE_HALF_ORANGE_RIGHT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_ORANGE_BOTTOM\"] = 1053] = \"FAIRYTALE_HALF_ORANGE_BOTTOM\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_GREEN_LEFT\"] = 1054] = \"FAIRYTALE_HALF_GREEN_LEFT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_GREEN_TOP\"] = 1055] = \"FAIRYTALE_HALF_GREEN_TOP\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_GREEN_RIGHT\"] = 1056] = \"FAIRYTALE_HALF_GREEN_RIGHT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_GREEN_BOTTOM\"] = 1057] = \"FAIRYTALE_HALF_GREEN_BOTTOM\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_BLUE_LEFT\"] = 1058] = \"FAIRYTALE_HALF_BLUE_LEFT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_BLUE_TOP\"] = 1059] = \"FAIRYTALE_HALF_BLUE_TOP\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_BLUE_RIGHT\"] = 1060] = \"FAIRYTALE_HALF_BLUE_RIGHT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_BLUE_BOTTOM\"] = 1061] = \"FAIRYTALE_HALF_BLUE_BOTTOM\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_PINK_LEFT\"] = 1062] = \"FAIRYTALE_HALF_PINK_LEFT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_PINK_TOP\"] = 1063] = \"FAIRYTALE_HALF_PINK_TOP\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_PINK_RIGHT\"] = 1064] = \"FAIRYTALE_HALF_PINK_RIGHT\";\n BlockNames[BlockNames[\"FAIRYTALE_HALF_PINK_BOTTOM\"] = 1065] = \"FAIRYTALE_HALF_PINK_BOTTOM\";\n BlockNames[BlockNames[\"FAIRYTALE_FLOWER_BLUE\"] = 1066] = \"FAIRYTALE_FLOWER_BLUE\";\n BlockNames[BlockNames[\"FAIRYTALE_FLOWER_ORANGE\"] = 1067] = \"FAIRYTALE_FLOWER_ORANGE\";\n BlockNames[BlockNames[\"FAIRYTALE_FLOWER_PINK\"] = 1068] = \"FAIRYTALE_FLOWER_PINK\";\n BlockNames[BlockNames[\"SPRING_DIRT_BROWN\"] = 1069] = \"SPRING_DIRT_BROWN\";\n BlockNames[BlockNames[\"SPRING_HEDGE_GREEN\"] = 1070] = \"SPRING_HEDGE_GREEN\";\n BlockNames[BlockNames[\"SPRING_DIRT_DRIFT_TOP_LEFT\"] = 1071] = \"SPRING_DIRT_DRIFT_TOP_LEFT\";\n BlockNames[BlockNames[\"SPRING_DIRT_DRIFT_TOP_RIGHT\"] = 1072] = \"SPRING_DIRT_DRIFT_TOP_RIGHT\";\n BlockNames[BlockNames[\"SPRING_DIRT_DRIFT_BOTTOM_LEFT\"] = 1073] = \"SPRING_DIRT_DRIFT_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"SPRING_DIRT_DRIFT_BOTTOM_RIGHT\"] = 1074] = \"SPRING_DIRT_DRIFT_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"SPRING_DAISY_WHITE\"] = 1075] = \"SPRING_DAISY_WHITE\";\n BlockNames[BlockNames[\"SPRING_DAISY_BLUE\"] = 1076] = \"SPRING_DAISY_BLUE\";\n BlockNames[BlockNames[\"SPRING_DAISY_PINK\"] = 1077] = \"SPRING_DAISY_PINK\";\n BlockNames[BlockNames[\"SPRING_TULIP_RED\"] = 1078] = \"SPRING_TULIP_RED\";\n BlockNames[BlockNames[\"SPRING_TULIP_YELLOW\"] = 1079] = \"SPRING_TULIP_YELLOW\";\n BlockNames[BlockNames[\"SPRING_TULIP_PINK\"] = 1080] = \"SPRING_TULIP_PINK\";\n BlockNames[BlockNames[\"SPRING_DAFFODIL_WHITE\"] = 1081] = \"SPRING_DAFFODIL_WHITE\";\n BlockNames[BlockNames[\"SPRING_DAFFODIL_YELLOW\"] = 1082] = \"SPRING_DAFFODIL_YELLOW\";\n BlockNames[BlockNames[\"SPRING_DAFFODIL_ORANGE\"] = 1083] = \"SPRING_DAFFODIL_ORANGE\";\n BlockNames[BlockNames[\"ONEWAY_WHITE_LEFT\"] = 1084] = \"ONEWAY_WHITE_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_WHITE_TOP\"] = 1085] = \"ONEWAY_WHITE_TOP\";\n BlockNames[BlockNames[\"ONEWAY_WHITE_RIGHT\"] = 1086] = \"ONEWAY_WHITE_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_WHITE_BOTTOM\"] = 1087] = \"ONEWAY_WHITE_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_GRAY_LEFT\"] = 1088] = \"ONEWAY_GRAY_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_GRAY_TOP\"] = 1089] = \"ONEWAY_GRAY_TOP\";\n BlockNames[BlockNames[\"ONEWAY_GRAY_RIGHT\"] = 1090] = \"ONEWAY_GRAY_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_GRAY_BOTTOM\"] = 1091] = \"ONEWAY_GRAY_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_BLACK_LEFT\"] = 1092] = \"ONEWAY_BLACK_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_BLACK_TOP\"] = 1093] = \"ONEWAY_BLACK_TOP\";\n BlockNames[BlockNames[\"ONEWAY_BLACK_RIGHT\"] = 1094] = \"ONEWAY_BLACK_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_BLACK_BOTTOM\"] = 1095] = \"ONEWAY_BLACK_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_RED_LEFT\"] = 1096] = \"ONEWAY_RED_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_RED_TOP\"] = 1097] = \"ONEWAY_RED_TOP\";\n BlockNames[BlockNames[\"ONEWAY_RED_RIGHT\"] = 1098] = \"ONEWAY_RED_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_RED_BOTTOM\"] = 1099] = \"ONEWAY_RED_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_ORANGE_LEFT\"] = 1100] = \"ONEWAY_ORANGE_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_ORANGE_TOP\"] = 1101] = \"ONEWAY_ORANGE_TOP\";\n BlockNames[BlockNames[\"ONEWAY_ORANGE_RIGHT\"] = 1102] = \"ONEWAY_ORANGE_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_ORANGE_BOTTOM\"] = 1103] = \"ONEWAY_ORANGE_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_YELLOW_LEFT\"] = 1104] = \"ONEWAY_YELLOW_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_YELLOW_TOP\"] = 1105] = \"ONEWAY_YELLOW_TOP\";\n BlockNames[BlockNames[\"ONEWAY_YELLOW_RIGHT\"] = 1106] = \"ONEWAY_YELLOW_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_YELLOW_BOTTOM\"] = 1107] = \"ONEWAY_YELLOW_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_GREEN_LEFT\"] = 1108] = \"ONEWAY_GREEN_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_GREEN_TOP\"] = 1109] = \"ONEWAY_GREEN_TOP\";\n BlockNames[BlockNames[\"ONEWAY_GREEN_RIGHT\"] = 1110] = \"ONEWAY_GREEN_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_GREEN_BOTTOM\"] = 1111] = \"ONEWAY_GREEN_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_CYAN_LEFT\"] = 1112] = \"ONEWAY_CYAN_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_CYAN_TOP\"] = 1113] = \"ONEWAY_CYAN_TOP\";\n BlockNames[BlockNames[\"ONEWAY_CYAN_RIGHT\"] = 1114] = \"ONEWAY_CYAN_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_CYAN_BOTTOM\"] = 1115] = \"ONEWAY_CYAN_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_BLUE_LEFT\"] = 1116] = \"ONEWAY_BLUE_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_BLUE_TOP\"] = 1117] = \"ONEWAY_BLUE_TOP\";\n BlockNames[BlockNames[\"ONEWAY_BLUE_RIGHT\"] = 1118] = \"ONEWAY_BLUE_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_BLUE_BOTTOM\"] = 1119] = \"ONEWAY_BLUE_BOTTOM\";\n BlockNames[BlockNames[\"ONEWAY_MAGENTA_LEFT\"] = 1120] = \"ONEWAY_MAGENTA_LEFT\";\n BlockNames[BlockNames[\"ONEWAY_MAGENTA_TOP\"] = 1121] = \"ONEWAY_MAGENTA_TOP\";\n BlockNames[BlockNames[\"ONEWAY_MAGENTA_RIGHT\"] = 1122] = \"ONEWAY_MAGENTA_RIGHT\";\n BlockNames[BlockNames[\"ONEWAY_MAGENTA_BOTTOM\"] = 1123] = \"ONEWAY_MAGENTA_BOTTOM\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_GREY\"] = 1124] = \"DUNGEON_COBBLESTONE_GREY\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_GREEN\"] = 1125] = \"DUNGEON_COBBLESTONE_GREEN\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_BLUE\"] = 1126] = \"DUNGEON_COBBLESTONE_BLUE\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_PURPLE\"] = 1127] = \"DUNGEON_COBBLESTONE_PURPLE\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_GREY_BG\"] = 1128] = \"DUNGEON_COBBLESTONE_GREY_BG\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_GREEN_BG\"] = 1129] = \"DUNGEON_COBBLESTONE_GREEN_BG\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_BLUE_BG\"] = 1130] = \"DUNGEON_COBBLESTONE_BLUE_BG\";\n BlockNames[BlockNames[\"DUNGEON_COBBLESTONE_PURPLE_BG\"] = 1131] = \"DUNGEON_COBBLESTONE_PURPLE_BG\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_MIDDLE_GRAY\"] = 1132] = \"DUNGEON_PILLAR_MIDDLE_GRAY\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_BOTTOM_GRAY\"] = 1136] = \"DUNGEON_PILLAR_BOTTOM_GRAY\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_MIDDLE_GREEN\"] = 1133] = \"DUNGEON_PILLAR_MIDDLE_GREEN\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_BOTTOM_GREEN\"] = 1137] = \"DUNGEON_PILLAR_BOTTOM_GREEN\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_MIDDLE_BLUE\"] = 1134] = \"DUNGEON_PILLAR_MIDDLE_BLUE\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_BOTTOM_BLUE\"] = 1138] = \"DUNGEON_PILLAR_BOTTOM_BLUE\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_MIDDLE_PURPLE\"] = 1135] = \"DUNGEON_PILLAR_MIDDLE_PURPLE\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_BOTTOM_PURPLE\"] = 1139] = \"DUNGEON_PILLAR_BOTTOM_PURPLE\";\n BlockNames[BlockNames[\"DUNGEON_ONEWAY_PILLAR_TOP_GRAY\"] = 1140] = \"DUNGEON_ONEWAY_PILLAR_TOP_GRAY\";\n BlockNames[BlockNames[\"DUNGEON_ONEWAY_PILLAR_TOP_GREEN\"] = 1141] = \"DUNGEON_ONEWAY_PILLAR_TOP_GREEN\";\n BlockNames[BlockNames[\"DUNGEON_ONEWAY_PILLAR_TOP_BLUE\"] = 1142] = \"DUNGEON_ONEWAY_PILLAR_TOP_BLUE\";\n BlockNames[BlockNames[\"DUNGEON_ONEWAY_PILLAR_TOP_PURPLE\"] = 1143] = \"DUNGEON_ONEWAY_PILLAR_TOP_PURPLE\";\n BlockNames[BlockNames[\"DUNGEON_STEEL_ARC_LEFT_GRAY\"] = 1144] = \"DUNGEON_STEEL_ARC_LEFT_GRAY\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_ARC_RIGHT_GRAY\"] = 1145] = \"DUNGEON_PILLAR_ARC_RIGHT_GRAY\";\n BlockNames[BlockNames[\"DUNGEON_STEEL_ARC_LEFT_GREEN\"] = 1146] = \"DUNGEON_STEEL_ARC_LEFT_GREEN\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_ARC_RIGHT_GREEN\"] = 1147] = \"DUNGEON_PILLAR_ARC_RIGHT_GREEN\";\n BlockNames[BlockNames[\"DUNGEON_STEEL_ARC_LEFT_BLUE\"] = 1148] = \"DUNGEON_STEEL_ARC_LEFT_BLUE\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_ARC_RIGHT_BLUE\"] = 1149] = \"DUNGEON_PILLAR_ARC_RIGHT_BLUE\";\n BlockNames[BlockNames[\"DUNGEON_STEEL_ARC_LEFT_PURPLE\"] = 1150] = \"DUNGEON_STEEL_ARC_LEFT_PURPLE\";\n BlockNames[BlockNames[\"DUNGEON_PILLAR_ARC_RIGHT_PURPLE\"] = 1151] = \"DUNGEON_PILLAR_ARC_RIGHT_PURPLE\";\n BlockNames[BlockNames[\"DUNGEON_TORCH_YELLOW\"] = 1152] = \"DUNGEON_TORCH_YELLOW\";\n BlockNames[BlockNames[\"DUNGEON_TORCH_GREEN\"] = 1153] = \"DUNGEON_TORCH_GREEN\";\n BlockNames[BlockNames[\"DUNGEON_TORCH_BLUE\"] = 1154] = \"DUNGEON_TORCH_BLUE\";\n BlockNames[BlockNames[\"DUNGEON_TORCH_PURPLE\"] = 1155] = \"DUNGEON_TORCH_PURPLE\";\n BlockNames[BlockNames[\"DUNGEON_WINDOW\"] = 1156] = \"DUNGEON_WINDOW\";\n BlockNames[BlockNames[\"DUNGEON_CHAIN_RING\"] = 1157] = \"DUNGEON_CHAIN_RING\";\n BlockNames[BlockNames[\"DUNGEON_CHAIN_HOOK\"] = 1158] = \"DUNGEON_CHAIN_HOOK\";\n BlockNames[BlockNames[\"DUNGEON_CHAIN_LOCK\"] = 1159] = \"DUNGEON_CHAIN_LOCK\";\n BlockNames[BlockNames[\"RETAIL_FLAG_RED\"] = 1160] = \"RETAIL_FLAG_RED\";\n BlockNames[BlockNames[\"RETAIL_FLAG_GREEN\"] = 1161] = \"RETAIL_FLAG_GREEN\";\n BlockNames[BlockNames[\"RETAIL_FLAG_YELLOW\"] = 1162] = \"RETAIL_FLAG_YELLOW\";\n BlockNames[BlockNames[\"RETAIL_FLAG_CYAN\"] = 1163] = \"RETAIL_FLAG_CYAN\";\n BlockNames[BlockNames[\"RETAIL_FLAG_BLUE\"] = 1164] = \"RETAIL_FLAG_BLUE\";\n BlockNames[BlockNames[\"RETAIL_FLAG_PURPLE\"] = 1165] = \"RETAIL_FLAG_PURPLE\";\n BlockNames[BlockNames[\"RETAIL_AWNING_RED\"] = 1166] = \"RETAIL_AWNING_RED\";\n BlockNames[BlockNames[\"RETAIL_AWNING_GREEN\"] = 1167] = \"RETAIL_AWNING_GREEN\";\n BlockNames[BlockNames[\"RETAIL_AWNING_YELLOW\"] = 1168] = \"RETAIL_AWNING_YELLOW\";\n BlockNames[BlockNames[\"RETAIL_AWNING_CYAN\"] = 1169] = \"RETAIL_AWNING_CYAN\";\n BlockNames[BlockNames[\"RETAIL_AWNING_BLUE\"] = 1170] = \"RETAIL_AWNING_BLUE\";\n BlockNames[BlockNames[\"RETAIL_AWNING_PURPLE\"] = 1171] = \"RETAIL_AWNING_PURPLE\";\n BlockNames[BlockNames[\"SUMMER_STRAW\"] = 1172] = \"SUMMER_STRAW\";\n BlockNames[BlockNames[\"SUMMER_PLANK_PURPLE\"] = 1173] = \"SUMMER_PLANK_PURPLE\";\n BlockNames[BlockNames[\"SUMMER_PLANK_YELLLOW\"] = 1174] = \"SUMMER_PLANK_YELLLOW\";\n BlockNames[BlockNames[\"SUMMER_PLANK_GREEN\"] = 1175] = \"SUMMER_PLANK_GREEN\";\n BlockNames[BlockNames[\"SUMMER_ONEWAY_DOCK_TOP\"] = 1176] = \"SUMMER_ONEWAY_DOCK_TOP\";\n BlockNames[BlockNames[\"SUMMER_STRAW_BG\"] = 1177] = \"SUMMER_STRAW_BG\";\n BlockNames[BlockNames[\"SUMMER_PLANK_PURPLE_BG\"] = 1178] = \"SUMMER_PLANK_PURPLE_BG\";\n BlockNames[BlockNames[\"SUMMER_PLANK_YELLOW_BG\"] = 1179] = \"SUMMER_PLANK_YELLOW_BG\";\n BlockNames[BlockNames[\"SUMMER_PLANK_GREEN_BG\"] = 1180] = \"SUMMER_PLANK_GREEN_BG\";\n BlockNames[BlockNames[\"SUMMER_ICE_CREAM_VANILLA\"] = 1181] = \"SUMMER_ICE_CREAM_VANILLA\";\n BlockNames[BlockNames[\"SUMMER_ICE_CREAM_CHOCOLATE\"] = 1182] = \"SUMMER_ICE_CREAM_CHOCOLATE\";\n BlockNames[BlockNames[\"SUMMER_ICE_CREAM_SRAWBERRY\"] = 1183] = \"SUMMER_ICE_CREAM_SRAWBERRY\";\n BlockNames[BlockNames[\"SUMMER_ICE_CREAM_MINT\"] = 1184] = \"SUMMER_ICE_CREAM_MINT\";\n BlockNames[BlockNames[\"MINE_STONE_BROWN\"] = 1185] = \"MINE_STONE_BROWN\";\n BlockNames[BlockNames[\"MINE_STONE_BROWN_BG\"] = 1186] = \"MINE_STONE_BROWN_BG\";\n BlockNames[BlockNames[\"MINE_STALAGMITE\"] = 1187] = \"MINE_STALAGMITE\";\n BlockNames[BlockNames[\"MINE_STALAGTITE\"] = 1188] = \"MINE_STALAGTITE\";\n BlockNames[BlockNames[\"MINE_CRYSTAL_RED\"] = 1189] = \"MINE_CRYSTAL_RED\";\n BlockNames[BlockNames[\"MINE_CRYSTAL_GREEN\"] = 1190] = \"MINE_CRYSTAL_GREEN\";\n BlockNames[BlockNames[\"MINE_CRYSTAL_YELLOW\"] = 1191] = \"MINE_CRYSTAL_YELLOW\";\n BlockNames[BlockNames[\"MINE_CRYSTAL_CYAN\"] = 1192] = \"MINE_CRYSTAL_CYAN\";\n BlockNames[BlockNames[\"MINE_CRYSTAL_BLUE\"] = 1193] = \"MINE_CRYSTAL_BLUE\";\n BlockNames[BlockNames[\"MINE_CRYSTAL_PURPLE\"] = 1194] = \"MINE_CRYSTAL_PURPLE\";\n BlockNames[BlockNames[\"MINE_TORCH\"] = 1195] = \"MINE_TORCH\";\n BlockNames[BlockNames[\"HAUNTED_MOSSY_BRICK_GREEN\"] = 1196] = \"HAUNTED_MOSSY_BRICK_GREEN\";\n BlockNames[BlockNames[\"HAUNTED_SIDING_GRAY\"] = 1197] = \"HAUNTED_SIDING_GRAY\";\n BlockNames[BlockNames[\"HAUNTED_MOSSY_SHINGLES_GRAY\"] = 1198] = \"HAUNTED_MOSSY_SHINGLES_GRAY\";\n BlockNames[BlockNames[\"HAUNTED_ONEWAY_STONE_GRAY_TOP\"] = 1199] = \"HAUNTED_ONEWAY_STONE_GRAY_TOP\";\n BlockNames[BlockNames[\"HAUNTED_BUSH_DEAD\"] = 1200] = \"HAUNTED_BUSH_DEAD\";\n BlockNames[BlockNames[\"HAUNTED_FENCE_IRON\"] = 1201] = \"HAUNTED_FENCE_IRON\";\n BlockNames[BlockNames[\"HAUNTED_WINDOW_CURVED_OFF\"] = 1202] = \"HAUNTED_WINDOW_CURVED_OFF\";\n BlockNames[BlockNames[\"HAUNTED_WINDOW_CURVED_ON\"] = 1203] = \"HAUNTED_WINDOW_CURVED_ON\";\n BlockNames[BlockNames[\"HAUNTED_WINDOW_CIRCLE_OFF\"] = 1204] = \"HAUNTED_WINDOW_CIRCLE_OFF\";\n BlockNames[BlockNames[\"HAUNTED_WINDOW_CIRCLE_ON\"] = 1205] = \"HAUNTED_WINDOW_CIRCLE_ON\";\n BlockNames[BlockNames[\"HAUNTED_LANTERN_OFF\"] = 1206] = \"HAUNTED_LANTERN_OFF\";\n BlockNames[BlockNames[\"HAUNTED_LANTERN_ON\"] = 1207] = \"HAUNTED_LANTERN_ON\";\n BlockNames[BlockNames[\"HAUNTED_MOSSY_BRICK_GREEN_BG\"] = 1208] = \"HAUNTED_MOSSY_BRICK_GREEN_BG\";\n BlockNames[BlockNames[\"HAUNTED_SLIDING_GRAY_BG\"] = 1209] = \"HAUNTED_SLIDING_GRAY_BG\";\n BlockNames[BlockNames[\"HAUNTED_MOSSY_SHINGLES_GRAY_BG\"] = 1210] = \"HAUNTED_MOSSY_SHINGLES_GRAY_BG\";\n BlockNames[BlockNames[\"DESERT_ROCK_ORANGE\"] = 1211] = \"DESERT_ROCK_ORANGE\";\n BlockNames[BlockNames[\"DESERT_CACTUS\"] = 1212] = \"DESERT_CACTUS\";\n BlockNames[BlockNames[\"DESERT_BUSH\"] = 1213] = \"DESERT_BUSH\";\n BlockNames[BlockNames[\"DESERT_TREE\"] = 1214] = \"DESERT_TREE\";\n BlockNames[BlockNames[\"MONSTER_SKIN_GREEN_LIGHT_BG\"] = 1215] = \"MONSTER_SKIN_GREEN_LIGHT_BG\";\n BlockNames[BlockNames[\"MONSTER_SKIN_GREEN_DARK_BG\"] = 1216] = \"MONSTER_SKIN_GREEN_DARK_BG\";\n BlockNames[BlockNames[\"MONSTER_SCALES_RED_LIGHT_BG\"] = 1217] = \"MONSTER_SCALES_RED_LIGHT_BG\";\n BlockNames[BlockNames[\"MONSTER_SCALES_RED_DARK_BG\"] = 1218] = \"MONSTER_SCALES_RED_DARK_BG\";\n BlockNames[BlockNames[\"MONSTER_SCALES_PURPLE_LIGHT_BG\"] = 1219] = \"MONSTER_SCALES_PURPLE_LIGHT_BG\";\n BlockNames[BlockNames[\"MONSTER_SCALES_PURPLE_DARK_BG\"] = 1220] = \"MONSTER_SCALES_PURPLE_DARK_BG\";\n BlockNames[BlockNames[\"MONSTER_TEETH_LARGE_TOP\"] = 1221] = \"MONSTER_TEETH_LARGE_TOP\";\n BlockNames[BlockNames[\"MONSTER_TEETH_LARGE_BOTTOM\"] = 1222] = \"MONSTER_TEETH_LARGE_BOTTOM\";\n BlockNames[BlockNames[\"MONSTER_TEETH_LARGE_LEFT\"] = 1223] = \"MONSTER_TEETH_LARGE_LEFT\";\n BlockNames[BlockNames[\"MONSTER_TEETH_LARGE_RIGHT\"] = 1224] = \"MONSTER_TEETH_LARGE_RIGHT\";\n BlockNames[BlockNames[\"MONSTER_TEETH_MEDIUM_TOP\"] = 1225] = \"MONSTER_TEETH_MEDIUM_TOP\";\n BlockNames[BlockNames[\"MONSTER_TEETH_MEDIUM_BOTTOM\"] = 1226] = \"MONSTER_TEETH_MEDIUM_BOTTOM\";\n BlockNames[BlockNames[\"MONSTER_TEETH_MEDIUM_LEFT\"] = 1227] = \"MONSTER_TEETH_MEDIUM_LEFT\";\n BlockNames[BlockNames[\"MONSTER_TEETH_MEDIUM_RIGHT\"] = 1228] = \"MONSTER_TEETH_MEDIUM_RIGHT\";\n BlockNames[BlockNames[\"MONSTER_TEETH_SMALL_TOP\"] = 1229] = \"MONSTER_TEETH_SMALL_TOP\";\n BlockNames[BlockNames[\"MONSTER_TEETH_SMALL_BOTTOM\"] = 1230] = \"MONSTER_TEETH_SMALL_BOTTOM\";\n BlockNames[BlockNames[\"MONSTER_TEETH_SMALL_LEFT\"] = 1231] = \"MONSTER_TEETH_SMALL_LEFT\";\n BlockNames[BlockNames[\"MONSTER_TEETH_SMALL_RIGHT\"] = 1232] = \"MONSTER_TEETH_SMALL_RIGHT\";\n BlockNames[BlockNames[\"MONSTER_EYE_YELLOW\"] = 1233] = \"MONSTER_EYE_YELLOW\";\n BlockNames[BlockNames[\"MONSTER_EYE_BLUE\"] = 1234] = \"MONSTER_EYE_BLUE\";\n BlockNames[BlockNames[\"MONSTER_EYE_PURPLE\"] = 1235] = \"MONSTER_EYE_PURPLE\";\n BlockNames[BlockNames[\"SWAMP_GRASS\"] = 1236] = \"SWAMP_GRASS\";\n BlockNames[BlockNames[\"SWAMP_LOG\"] = 1237] = \"SWAMP_LOG\";\n BlockNames[BlockNames[\"SWAMP_SIGN_TOXIC\"] = 1238] = \"SWAMP_SIGN_TOXIC\";\n BlockNames[BlockNames[\"SWAMP_MUD_BG\"] = 1239] = \"SWAMP_MUD_BG\";\n BlockNames[BlockNames[\"SWAMP_GRASS_BG\"] = 1240] = \"SWAMP_GRASS_BG\";\n BlockNames[BlockNames[\"FALL_LEAVES_DRIFT_TOP_LEFT\"] = 1241] = \"FALL_LEAVES_DRIFT_TOP_LEFT\";\n BlockNames[BlockNames[\"FALL_LEAVES_DRIFT_TOP_RIGHT\"] = 1242] = \"FALL_LEAVES_DRIFT_TOP_RIGHT\";\n BlockNames[BlockNames[\"FALL_LEAVES_DRIFT_BOTTOM_LEFT\"] = 1243] = \"FALL_LEAVES_DRIFT_BOTTOM_LEFT\";\n BlockNames[BlockNames[\"FALL_LEAVES_DRIFT_BOTTOM_RIGHT\"] = 1244] = \"FALL_LEAVES_DRIFT_BOTTOM_RIGHT\";\n BlockNames[BlockNames[\"FALL_GRASS_LEFT\"] = 1245] = \"FALL_GRASS_LEFT\";\n BlockNames[BlockNames[\"FALL_GRASS_MIDDLE\"] = 1246] = \"FALL_GRASS_MIDDLE\";\n BlockNames[BlockNames[\"FALL_GRASS_RIGHT\"] = 1247] = \"FALL_GRASS_RIGHT\";\n BlockNames[BlockNames[\"FALL_ACORN\"] = 1248] = \"FALL_ACORN\";\n BlockNames[BlockNames[\"FALL_PUMPKIN\"] = 1249] = \"FALL_PUMPKIN\";\n BlockNames[BlockNames[\"FALL_LEAVES_YELLOW_BG\"] = 1250] = \"FALL_LEAVES_YELLOW_BG\";\n BlockNames[BlockNames[\"FALL_LEAVES_ORANGE_BG\"] = 1251] = \"FALL_LEAVES_ORANGE_BG\";\n BlockNames[BlockNames[\"FALL_LEAVES_RED_BG\"] = 1252] = \"FALL_LEAVES_RED_BG\";\n BlockNames[BlockNames[\"VALENTINES_HEART_RED\"] = 1253] = \"VALENTINES_HEART_RED\";\n BlockNames[BlockNames[\"VALENTINES_HEART_PURPLE\"] = 1254] = \"VALENTINES_HEART_PURPLE\";\n BlockNames[BlockNames[\"VALENTINES_HEART_PINK\"] = 1255] = \"VALENTINES_HEART_PINK\";\n BlockNames[BlockNames[\"NEWYEARS_HUNG_LIGHT_RED\"] = 1256] = \"NEWYEARS_HUNG_LIGHT_RED\";\n BlockNames[BlockNames[\"NEWYEARS_HUNG_LIGHT_YELLOW\"] = 1257] = \"NEWYEARS_HUNG_LIGHT_YELLOW\";\n BlockNames[BlockNames[\"NEWYEARS_HUNG_LIGHT_GREEN\"] = 1258] = \"NEWYEARS_HUNG_LIGHT_GREEN\";\n BlockNames[BlockNames[\"NEWYEARS_HUNG_LIGHT_BLUE\"] = 1259] = \"NEWYEARS_HUNG_LIGHT_BLUE\";\n BlockNames[BlockNames[\"NEWYEARS_HUNG_LIGHT_PINK\"] = 1260] = \"NEWYEARS_HUNG_LIGHT_PINK\";\n BlockNames[BlockNames[\"NEWYEARS_WINE\"] = 1261] = \"NEWYEARS_WINE\";\n BlockNames[BlockNames[\"NEWYEARS_CHAMPAGNE\"] = 1262] = \"NEWYEARS_CHAMPAGNE\";\n BlockNames[BlockNames[\"NEWYEARS_BALLOON_RED\"] = 1263] = \"NEWYEARS_BALLOON_RED\";\n BlockNames[BlockNames[\"NEWYEARS_BALLOON_ORANGE\"] = 1264] = \"NEWYEARS_BALLOON_ORANGE\";\n BlockNames[BlockNames[\"NEWYEARS_BALLOON_GREEN\"] = 1265] = \"NEWYEARS_BALLOON_GREEN\";\n BlockNames[BlockNames[\"NEWYEARS_BALLOON_BLUE\"] = 1266] = \"NEWYEARS_BALLOON_BLUE\";\n BlockNames[BlockNames[\"NEWYEARS_BALLOON_PURPLE\"] = 1267] = \"NEWYEARS_BALLOON_PURPLE\";\n BlockNames[BlockNames[\"NEWYEARS_STREAMER_RED\"] = 1268] = \"NEWYEARS_STREAMER_RED\";\n BlockNames[BlockNames[\"NEWYEARS_STREAMER_ORANGE\"] = 1269] = \"NEWYEARS_STREAMER_ORANGE\";\n BlockNames[BlockNames[\"NEWYEARS_STREAMER_GREEN\"] = 1270] = \"NEWYEARS_STREAMER_GREEN\";\n BlockNames[BlockNames[\"NEWYEARS_STREAMER_BLUE\"] = 1271] = \"NEWYEARS_STREAMER_BLUE\";\n BlockNames[BlockNames[\"NEWYEARS_STREAMER_PURPLE\"] = 1272] = \"NEWYEARS_STREAMER_PURPLE\";\n BlockNames[BlockNames[\"LEPRECHAUN_SHAMROCK\"] = 1273] = \"LEPRECHAUN_SHAMROCK\";\n BlockNames[BlockNames[\"LEPRECHAUN_GOLD_POT\"] = 1274] = \"LEPRECHAUN_GOLD_POT\";\n BlockNames[BlockNames[\"LEPRECHAUN_GOLD_BAG\"] = 1275] = \"LEPRECHAUN_GOLD_BAG\";\n BlockNames[BlockNames[\"LEPRECHAUN_HORSE_SHOE\"] = 1276] = \"LEPRECHAUN_HORSE_SHOE\";\n BlockNames[BlockNames[\"LEPRECHAUN_RAINBOW_LEFT\"] = 1277] = \"LEPRECHAUN_RAINBOW_LEFT\";\n BlockNames[BlockNames[\"LEPRECHAUN_RAINBOW_RIGHT\"] = 1278] = \"LEPRECHAUN_RAINBOW_RIGHT\";\n BlockNames[BlockNames[\"RESTAURANT_FOOD_BURGER\"] = 1279] = \"RESTAURANT_FOOD_BURGER\";\n BlockNames[BlockNames[\"RESTAURANT_FOOD_HOTDOG\"] = 1280] = \"RESTAURANT_FOOD_HOTDOG\";\n BlockNames[BlockNames[\"RESTAURANT_FOOD_SUB\"] = 1281] = \"RESTAURANT_FOOD_SUB\";\n BlockNames[BlockNames[\"RESTAURANT_FOOD_SODA\"] = 1282] = \"RESTAURANT_FOOD_SODA\";\n BlockNames[BlockNames[\"RESTAURANT_FOOD_FRIES\"] = 1283] = \"RESTAURANT_FOOD_FRIES\";\n BlockNames[BlockNames[\"RESTAURANT_GLASS_EMPTY\"] = 1284] = \"RESTAURANT_GLASS_EMPTY\";\n BlockNames[BlockNames[\"RESTAURANT_GLASS_WATER\"] = 1285] = \"RESTAURANT_GLASS_WATER\";\n BlockNames[BlockNames[\"RESTAURANT_GLASS_MILK\"] = 1286] = \"RESTAURANT_GLASS_MILK\";\n BlockNames[BlockNames[\"RESTAURANT_GLASS_ORANGEJUICE\"] = 1287] = \"RESTAURANT_GLASS_ORANGEJUICE\";\n BlockNames[BlockNames[\"RESTAURANT_PLATE_EMPTY\"] = 1288] = \"RESTAURANT_PLATE_EMPTY\";\n BlockNames[BlockNames[\"RESTAURANT_PLATE_CHICKEN\"] = 1289] = \"RESTAURANT_PLATE_CHICKEN\";\n BlockNames[BlockNames[\"RESTAURANT_PLATE_HAM\"] = 1290] = \"RESTAURANT_PLATE_HAM\";\n BlockNames[BlockNames[\"RESTAURANT_PLATE_FISH\"] = 1291] = \"RESTAURANT_PLATE_FISH\";\n BlockNames[BlockNames[\"RESTAURANT_PLATE_CAKE_CHOCOLATE\"] = 1292] = \"RESTAURANT_PLATE_CAKE_CHOCOLATE\";\n BlockNames[BlockNames[\"RESTAURANT_PLATE_PIE_CHERRY\"] = 1293] = \"RESTAURANT_PLATE_PIE_CHERRY\";\n BlockNames[BlockNames[\"RESTAURANT_PLATE_COOKIES\"] = 1294] = \"RESTAURANT_PLATE_COOKIES\";\n BlockNames[BlockNames[\"RESTAURANT_BOWL_EMPTY\"] = 1295] = \"RESTAURANT_BOWL_EMPTY\";\n BlockNames[BlockNames[\"RESTAURANT_BOWL_SALAD\"] = 1296] = \"RESTAURANT_BOWL_SALAD\";\n BlockNames[BlockNames[\"RESTAURANT_BOWL_SPAGHETTI\"] = 1297] = \"RESTAURANT_BOWL_SPAGHETTI\";\n BlockNames[BlockNames[\"RESTAURANT_BOWL_ICECREAM\"] = 1298] = \"RESTAURANT_BOWL_ICECREAM\";\n BlockNames[BlockNames[\"TOXIC_ONEWAY_RUSTED_LEFT\"] = 1299] = \"TOXIC_ONEWAY_RUSTED_LEFT\";\n BlockNames[BlockNames[\"TOXIC_ONEWAY_RUSTED_TOP\"] = 1300] = \"TOXIC_ONEWAY_RUSTED_TOP\";\n BlockNames[BlockNames[\"TOXIC_ONEWAY_RUSTED_RIGHT\"] = 1301] = \"TOXIC_ONEWAY_RUSTED_RIGHT\";\n BlockNames[BlockNames[\"TOXIC_ONEWAY_RUSTED_BOTTOM\"] = 1302] = \"TOXIC_ONEWAY_RUSTED_BOTTOM\";\n BlockNames[BlockNames[\"TOXIC_WASTE_BG\"] = 1303] = \"TOXIC_WASTE_BG\";\n BlockNames[BlockNames[\"TOXIC_WASTE_BARREL_OFF\"] = 1304] = \"TOXIC_WASTE_BARREL_OFF\";\n BlockNames[BlockNames[\"TOXIC_WASTE_BARREL_ON\"] = 1305] = \"TOXIC_WASTE_BARREL_ON\";\n BlockNames[BlockNames[\"TOXIC_SEWER_DRAIN_EMPTY\"] = 1306] = \"TOXIC_SEWER_DRAIN_EMPTY\";\n BlockNames[BlockNames[\"TOXIC_SEWER_DRAIN_WATER\"] = 1307] = \"TOXIC_SEWER_DRAIN_WATER\";\n BlockNames[BlockNames[\"TOXIC_SEWER_DRAIN_WASTE\"] = 1308] = \"TOXIC_SEWER_DRAIN_WASTE\";\n BlockNames[BlockNames[\"TOXIC_SEWER_DRAIN_LAVA\"] = 1309] = \"TOXIC_SEWER_DRAIN_LAVA\";\n BlockNames[BlockNames[\"TOXIC_SEWER_DRAIN_MUD\"] = 1310] = \"TOXIC_SEWER_DRAIN_MUD\";\n BlockNames[BlockNames[\"TOXIC_LADDER_VERTICAL_BROKEN\"] = 1311] = \"TOXIC_LADDER_VERTICAL_BROKEN\";\n BlockNames[BlockNames[\"TOXIC_RAIL_RUSTED\"] = 1312] = \"TOXIC_RAIL_RUSTED\";\n BlockNames[BlockNames[\"TEXTILE_CLOTH_GREEN_BG\"] = 1313] = \"TEXTILE_CLOTH_GREEN_BG\";\n BlockNames[BlockNames[\"TEXTILE_CLOTH_BLUE_BG\"] = 1314] = \"TEXTILE_CLOTH_BLUE_BG\";\n BlockNames[BlockNames[\"TEXTILE_CLOTH_PINK_BG\"] = 1315] = \"TEXTILE_CLOTH_PINK_BG\";\n BlockNames[BlockNames[\"TEXTILE_CLOTH_YELLOW_BG\"] = 1316] = \"TEXTILE_CLOTH_YELLOW_BG\";\n BlockNames[BlockNames[\"TEXTILE_CLOTH_RED_BG\"] = 1317] = \"TEXTILE_CLOTH_RED_BG\";\n BlockNames[BlockNames[\"CARNIVAL_STRIPES_RED_WHITE_BG\"] = 1318] = \"CARNIVAL_STRIPES_RED_WHITE_BG\";\n BlockNames[BlockNames[\"CARNIVAL_STRIPES_RED_YELLOW_BG\"] = 1319] = \"CARNIVAL_STRIPES_RED_YELLOW_BG\";\n BlockNames[BlockNames[\"CARNIVAL_STRIPES_PURPLE_VIOLET_BG\"] = 1320] = \"CARNIVAL_STRIPES_PURPLE_VIOLET_BG\";\n BlockNames[BlockNames[\"CARNIVAL_CHECKER_BG\"] = 1321] = \"CARNIVAL_CHECKER_BG\";\n BlockNames[BlockNames[\"CARNIVAL_PINK_BG\"] = 1322] = \"CARNIVAL_PINK_BG\";\n BlockNames[BlockNames[\"CARNIVAL_GREEN_BG\"] = 1323] = \"CARNIVAL_GREEN_BG\";\n BlockNames[BlockNames[\"CARNIVAL_YELLOW_BG\"] = 1324] = \"CARNIVAL_YELLOW_BG\";\n BlockNames[BlockNames[\"CARNIVAL_BLUE_BG\"] = 1325] = \"CARNIVAL_BLUE_BG\";\n BlockNames[BlockNames[\"UNDERWATER_BG\"] = 1326] = \"UNDERWATER_BG\";\n BlockNames[BlockNames[\"UNDERWATER_OCTOPUS_BG\"] = 1327] = \"UNDERWATER_OCTOPUS_BG\";\n BlockNames[BlockNames[\"UNDERWATER_FISH_BG\"] = 1328] = \"UNDERWATER_FISH_BG\";\n BlockNames[BlockNames[\"UNDERWATER_SEAHORSE_BG\"] = 1329] = \"UNDERWATER_SEAHORSE_BG\";\n BlockNames[BlockNames[\"UNDERWATER_SEAWEED_BG\"] = 1330] = \"UNDERWATER_SEAWEED_BG\";\n})(BlockNames || (BlockNames = {}));\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmxvY2suanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9saWIvdXRpbC9ibG9jay50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSxVQW96Q1g7QUFwekNELFdBQVksVUFBVTtJQUNuQiw2Q0FBUyxDQUFBO0lBQ1QsMkRBQWdCLENBQUE7SUFDaEIsdURBQWMsQ0FBQTtJQUNkLDZEQUFpQixDQUFBO0lBQ2pCLDJEQUFnQixDQUFBO0lBQ2hCLHlEQUFlLENBQUE7SUFDZixtRUFBb0IsQ0FBQTtJQUNwQiwrRUFBMEIsQ0FBQTtJQUMxQiwyRUFBd0IsQ0FBQTtJQUN4QixpRkFBMkIsQ0FBQTtJQUMzQixnRkFBMkIsQ0FBQTtJQUMzQiw4RUFBMEIsQ0FBQTtJQUMxQix3RkFBK0IsQ0FBQTtJQUMvQix3REFBZSxDQUFBO0lBQ2Ysb0RBQWEsQ0FBQTtJQUNiLDBEQUFnQixDQUFBO0lBQ2hCLHdEQUFlLENBQUE7SUFDZixrRkFBNEIsQ0FBQTtJQUM1QixzRkFBOEIsQ0FBQTtJQUM5QixnR0FBbUMsQ0FBQTtJQUNuQyxvR0FBcUMsQ0FBQTtJQUNyQyw4RkFBa0MsQ0FBQTtJQUNsQyxrR0FBb0MsQ0FBQTtJQUNwQyxnRkFBMkIsQ0FBQTtJQUMzQiw4RUFBMEIsQ0FBQTtJQUMxQixrRkFBNEIsQ0FBQTtJQUM1QixzRkFBOEIsQ0FBQTtJQUM5Qiw0RkFBaUMsQ0FBQTtJQUNqQyw0RkFBaUMsQ0FBQTtJQUNqQyxnRkFBMkIsQ0FBQTtJQUMzQixvRUFBcUIsQ0FBQTtJQUNyQixrRUFBb0IsQ0FBQTtJQUNwQiw0REFBaUIsQ0FBQTtJQUNqQix3REFBZSxDQUFBO0lBQ2YsNERBQWlCLENBQUE7SUFDakIsa0VBQW9CLENBQUE7SUFDcEIsa0VBQW9CLENBQUE7SUFDcEIsc0VBQXNCLENBQUE7SUFDdEIsc0VBQXNCLENBQUE7SUFDdEIsa0RBQVksQ0FBQTtJQUNaLHNEQUFjLENBQUE7SUFDZCxvREFBYSxDQUFBO0lBQ2Isb0RBQWEs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QixpRUFBb0IsQ0FBQTtJQUNwQixtRUFBcUIsQ0FBQTtJQUNyQiwrREFBbUIsQ0FBQTtJQUNuQixxRUFBc0IsQ0FBQTtJQUN0QixxRUFBc0IsQ0FBQTtJQUN0QixtRUFBcUIsQ0FBQTtJQUNyQixpRUFBb0IsQ0FBQTtJQUNwQixpRUFBb0IsQ0FBQTtJQUNwQix1RUFBdUIsQ0FBQTtJQUN2QiwrREFBbUIsQ0FBQTtJQUNuQiw2REFBa0IsQ0FBQTtJQUNsQiwrREFBbUIsQ0FBQTtJQUNuQiwyREFBaUIsQ0FBQTtJQUNqQixpRUFBb0IsQ0FBQTtJQUNwQixpRUFBb0IsQ0FBQTtJQUNwQiwrREFBbUIsQ0FBQTtJQUNuQiw2REFBa0IsQ0FBQTtJQUNsQiw2REFBa0IsQ0FBQTtJQUNsQixtRUFBcUIsQ0FBQTtJQUNyQiwrREFBbUIsQ0FBQTtJQUNuQiw2REFBa0IsQ0FBQTtJQUNsQiwrREFBbUIsQ0FBQTtJQUNuQiwyREFBaUIsQ0FBQTtJQUNqQixpRUFBb0IsQ0FBQTtJQUNwQixpRUFBb0IsQ0FBQTtJQUNwQiwrREFBbUIsQ0FBQTtJQUNuQiw2REFBa0IsQ0FBQTtJQUNsQiw2REFBa0IsQ0FBQTtJQUNsQixtRUFBcUIsQ0FBQTtJQUNyQixxRUFBc0IsQ0FBQTtJQUN0QixtRUFBcUIsQ0FBQTtJQUNyQixxRUFBc0IsQ0FBQTtJQUN0QixpRUFBb0IsQ0FBQTtJQUNwQix1RUFBdUIsQ0FBQTtJQUN2Qix1RUFBdUIsQ0FBQTtJQUN2QixxRUFBc0IsQ0FBQTtJQUN0QixtRUFBcUIsQ0FBQTtJQUNyQixtRUFBcUIsQ0FBQTtJQUNyQix5RUFBd0IsQ0FBQTtJQUN4QiwrREFBbUIsQ0FBQTtJQUNuQixxRUFBc0IsQ0FBQTtJQUN0QixxRUFBc0IsQ0FBQTtJQUN0QixpRUFBb0IsQ0FBQTtJQUNwQixtRUFBcUIsQ0FBQTtJQUNyQixpRUFBb0IsQ0FBQTtJQUNwQixpRUFBb0IsQ0FBQTtJQUNwQixxRUFBc0IsQ0FBQTtJQUN0QixxRUFBc0IsQ0FBQTtJQUN0Qix5RUFBd0IsQ0FBQTtJQUN4Qix1RUFBdUIsQ0FBQTtJQUN2Qiw2REFBa0IsQ0FBQTtJQUNsQiw2REFBa0IsQ0FBQTtJQUNsQix5REFBZ0IsQ0FBQTtJQUNoQiwrRkFBbUMsQ0FBQTtJQUNuQyw2RkFBa0MsQ0FBQTtJQUNsQywyRUFBeUIsQ0FBQTtJQUN6Qix1RkFBK0IsQ0FBQTtJQUMvQix1RkFBK0IsQ0FBQTtJQUMvQixpRUFBb0IsQ0FBQTtJQUNwQiwrREFBbUIsQ0FBQTtJQUNuQix1RkFBK0IsQ0FBQTtJQUMvQiwrREFBbUIsQ0FBQTtJQUNuQixxRUFBc0IsQ0FBQTtJQUN0QixxRUFBc0IsQ0FBQTtJQUN0Qix1REFBZSxDQUFBO0lBQ2YsNkRBQWtCLENBQUE7SUFDbEIsNkRBQWtCLENBQUE7SUFDbEIsMkRBQWlCLENBQUE7SUFDakIseURBQWdCLENBQUE7SUFDaEIseURBQWdCLENBQUE7SUFDaEIsNkRBQWtCLENBQUE7SUFDbEIsK0RBQW1CLENBQUE7SUFDbkIsNkRBQWtCLENBQUE7SUFDbEIsbUVBQXFCLENBQUE7SUFDckIsbUVBQXFCLENBQUE7SUFDckIsaUVBQW9CLENBQUE7SUFDcEIsK0RBQW1CLENBQUE7SUFDbkIsK0RBQW1CLENBQUE7SUFDbkIsbUVBQXFCLENBQUE7SUFDckIscUVBQXNCLENBQUE7SUFDdEIsMkVBQXlCLENBQUE7SUFDekIseUVBQXdCLENBQUE7SUFDeEIsK0RBQW1CLENBQUE7SUFDbkIsNkRBQWtCLENBQUE7SUFDbEIsaUVBQW9CLENBQUE7SUFDcEIsdUVBQXVCLENBQUE7SUFDdkIsMkVBQXlCLENBQUE7SUFDekIseUVBQXdCLENBQUE7SUFDeEIscUVBQXNCLENBQUE7SUFDdEIseUVBQXdCLENBQUE7SUFDeEIsdUVBQXVCLENBQUE7SUFDdkIsNkVBQTBCLENBQUE7SUFDMUIsdUVBQXVCLENBQUE7SUFDdkIsbUVBQXFCLENBQUE7SUFDckIsbUVBQXFCLENBQUE7SUFDckIsdUVBQXVCLENBQUE7SUFDdkIsaUVBQW9CLENBQUE7SUFDcEIscUVBQXNCLENBQUE7SUFDdEIseURBQWdCLENBQUE7SUFDaEIseURBQWdCLENBQUE7SUFDaEIsK0VBQTJCLENBQUE7SUFDM0IsNkVBQTBCLENBQUE7SUFDMUIsK0VBQTJCLENBQUE7SUFDM0IsaUZBQTRCLENBQUE7SUFDNUIseURBQWdCLENBQUE7SUFDaEIsaUVBQW9CLENBQUE7SUFDcEIsbUVBQXFCLENBQUE7SUFDckIsdUVBQXVCLENBQUE7SUFDdkIsdUVBQXVCLENBQUE7SUFDdkIsdUVBQXVCLENBQUE7SUFDdkIsMkVBQXlCLENBQUE7SUFDekIseUVBQXdCLENBQUE7SUFDeEIsK0RBQW1CLENBQUE7SUFDbkIsK0RBQW1CLENBQUE7SUFDbkIseURBQWdCLENBQUE7SUFDaEIsK0RBQW1CLENBQUE7SUFDbkIsNkZBQWtDLENBQUE7SUFDbEMsK0ZBQW1DLENBQUE7SUFDbkMsdUZBQStCLENBQUE7SUFDL0IseUZBQWdDLENBQUE7SUFDaEMseURBQWdCLENBQUE7SUFDaEIsaUVBQW9CLENBQUE7SUFDcEIsNkRBQWtCLENBQUE7SUFDbEIsMkRBQWlCLENBQUE7SUFDakIsK0RBQW1CLENBQUE7SUFDbkIsNkRBQWtCLENBQUE7SUFDbEIsK0ZBQW1DLENBQUE7SUFDbkMsNkRBQWtCLENBQUE7SUFDbEIsNkVBQTBCLENBQUE7SUFDMUIsK0VBQTJCLENBQUE7SUFDM0IsbUVBQXFCLENBQUE7SUFDckIsdUVBQXVCLENBQUE7SUFDdkIsdUVBQXVCLENBQUE7SUFDdkIsMkRBQWlCLENBQUE7SUFDakIseURBQWdCLENBQUE7SUFDaEIsMkRBQWlCLENBQUE7SUFDakIsNkRBQWtCLENBQUE7SUFDbEIseURBQWdCLENBQUE7SUFDaEIsNkRBQWtCLENBQUE7SUFDbEIsdUVBQXVCLENBQUE7SUFDdkIsK0RBQW1CLENBQUE7SUFDbkIsaUVBQW9CLENBQUE7SUFDcEIsK0RBQW1CLENBQUE7SUFDbkIsaUVBQW9CLENBQUE7SUFDcEIsbUVBQXFCLENBQUE7SUFDckIsaUZBQTRCLENBQUE7SUFDNUIsbUZBQTZCLENBQUE7SUFDN0IsK0VBQTJCLENBQUE7SUFDM0IsbUVBQXFCLENBQUE7SUFDckIsdUVBQXVCLENBQUE7SUFDdkIseUVBQXdCLENBQUE7SUFDeEIsNkVBQTBCLENBQUE7SUFDMUIscUVBQXNCLENBQUE7SUFDdEIseUVBQXdCLENBQUE7SUFDeEIsNkVBQTBCLENBQUE7SUFDMUIsK0VBQTJCLENBQUE7SUFDM0IsbUZBQTZCLENBQUE7SUFDN0IsMkVBQXlCLENBQUE7SUFDekIsNkRBQWtCLENBQUE7SUFDbEIseURBQWdCLENBQUE7SUFDaEIsK0RBQW1CLENBQUE7SUFDbkIsK0RBQW1CLENBQUE7SUFDbkIsNkRBQWtCLENBQUE7SUFDbEIsMkRBQWlCLENBQUE7SUFDakIsMkRBQWlCLENBQUE7SUFDakIsK0RBQW1CLENBQUE7SUFDbkIsMkRBQWlCLENBQUE7SUFDakIseURBQWdCLENBQUE7SUFDaEIsMkRBQWlCLENBQUE7SUFDakIsNkRBQWtCLENBQUE7SUFDbEIsaUVBQW9CLENBQUE7SUFDcEIsK0RBQW1CLENBQUE7SUFDbkIscUVBQXNCLENBQUE7SUFDdEIsK0RBQW1CLENBQUE7SUFDbkIscUVBQXNCLENBQUE7SUFDdEIsbUVBQXFCLENBQUE7SUFDckIsaUVBQW9CLENBQUE7SUFDcEIsaUVBQW9CLENBQUE7SUFDcEIscUVBQXNCLENBQUE7SUFDdEIseURBQWdCLENBQUE7SUFDaEIsMkRBQWlCLENBQUE7SUFDakIsMkRBQWlCLENBQUE7SUFDakIseURBQWdCLENBQUE7SUFDaEIsK0RBQW1CLENBQUE7SUFDbkIseUVBQXdCLENBQUE7SUFDeEIsaUVBQW9CLENBQUE7SUFDcEIsMkVBQXlCLENBQUE7SUFDekIsaUVBQW9CLENBQUE7SUFDcEIsMkVBQXlCLENBQUE7SUFDekIsK0RBQW1CLENBQUE7SUFDbkIseUVBQXdCLENBQUE7SUFDeEIsaUVBQW9CLENBQUE7SUFDcEIsbUVBQXFCLENBQUE7SUFDckIsbUVBQXFCLENBQUE7SUFDckIsK0RBQW1CLENBQUE7SUFDbkIsNkRBQWtCLENBQUE7SUFDbEIsK0RBQW1CLENBQUE7SUFDbkIsaUVBQW9CLENBQUE7SUFDcEIsaUVBQW9CLENBQUE7SUFDcEIseURBQWdCLENBQUE7SUFDaEIseUVBQXdCLENBQUE7SUFDeEIsdURBQWUsQ0FBQTtJQUNmLHVFQUF1QixDQUFBO0lBQ3ZCLDJEQUFpQixDQUFBO0lBQ2pCLDJFQUF5QixDQUFBO0lBQ3pCLDJEQUFpQixDQUFBO0lBQ2pCLDJFQUF5QixDQUFBO0lBQ3pCLHFFQUFzQixDQUFBO0lBQ3RCLHFGQUE4QixDQUFBO0lBQzlCLG1FQUFxQixDQUFBO0lBQ3JCLG1GQUE2QixDQUFBO0lBQzdCLDZFQUEwQixDQUFBO0lBQzFCLDZEQUFrQixDQUFBO0lBQ2xCLDJFQUF5QixDQUFBO0lBQ3pCLGlFQUFvQixDQUFBO0lBQ3BCLDJFQUF5QixDQUFBO0lBQ3pCLHlFQUF3QixDQUFBO0lBQ3hCLHlEQUFnQixDQUFBO0lBQ2hCLHVEQUFlLENBQUE7SUFDZixtRUFBcUIsQ0FBQTtJQUNyQix1RUFBdUIsQ0FBQTtJQUN2QixxRUFBc0IsQ0FBQTtJQUN0QixxREFBYyxDQUFBO0lBQ2QseUVBQXdCLENBQUE7SUFDeEIsdUVBQXVCLENBQUE7SUFDdkIsK0RBQW1CLENBQUE7SUFDbkIsMkRBQWlCLENBQUE7SUFDakIsK0RBQW1CLENBQUE7SUFDbkIsaUVBQW9CLENBQUE7SUFDcEIsK0RBQW1CLENBQUE7SUFDbkIsNkRBQWtCLENBQUE7SUFDbEIsNkRBQWtCLENBQUE7SUFDbEIsaUVBQW9CLENBQUE7SUFDcEIsNkRBQWtCLENBQUE7SUFDbEIsbUVBQXFCLENBQUE7SUFDckIsNkVBQTBCLENBQUE7SUFDMUIsdUVBQXVCLENBQUE7SUFDdkIsbUZBQTZCLENBQUE7SUFDN0IsK0ZBQW1DLENBQUE7SUFDbkMsNkZBQWtDLENBQUE7SUFDbEMsdUVBQXVCLENBQUE7SUFDdkIseUZBQWdDLENBQUE7SUFDaEMsMkVBQXlCLENBQUE7SUFDekIsdUZBQStCLENBQUE7SUFDL0IseUZBQWdDLENBQUE7SUFDaEMsNkZBQWtDLENBQUE7SUFDbEMsK0ZBQW1DLENBQUE7SUFDbkMsaUdBQW9DLENBQUE7SUFDcEMsbUdBQXFDLENBQUE7SUFDckMsdUdBQXVDLENBQUE7SUFDdkMseUdBQXdDLENBQUE7SUFDeEMsNkVBQTBCLENBQUE7SUFDMUIsK0VBQTJCLENBQUE7SUFDM0IsaUZBQTRCLENBQUE7SUFDNUIsK0VBQTJCLENBQUE7SUFDM0IsK0VBQTJCLENBQUE7SUFDM0IsK0VBQTJCLENBQUE7SUFDM0IsNkVBQTBCLENBQUE7SUFDMUIsdUVBQXVCLENBQUE7SUFDdkIsNkVBQTBCLENBQUE7SUFDMUIsNkVBQTBCLENBQUE7SUFDMUIsMkRBQWlCLENBQUE7SUFDakIsNkRBQWtCLENBQUE7SUFDbEIseURBQWdCLENBQUE7SUFDaEIsK0RBQW1CLENBQUE7SUFDbkIsaUVBQW9CLENBQUE7SUFDcEIsbUVBQXFCLENBQUE7SUFDckIsK0RBQW1CLENBQUE7SUFDbkIsdUZBQStCLENBQUE7SUFDL0IsaUdBQW9DLENBQUE7SUFDcEMsbUZBQTZCLENBQUE7SUFDN0IsNkZBQWtDLENBQUE7SUFDbEMscUZBQThCLENBQUE7SUFDOUIsK0ZBQW1DLENBQUE7SUFDbkMsaUdBQW9DLENBQUE7SUFDcEMsK0ZBQW1DLENBQUE7SUFDbkMsNkZBQWtDLENBQUE7SUFDbEMsMkZBQWlDLENBQUE7SUFDakMsK0ZBQW1DLENBQUE7SUFDbkMsNkZBQWtDLENBQUE7SUFDbEMsaUdBQW9DLENBQUE7SUFDcEMsNkZBQWtDLENBQUE7SUFDbEMsK0ZBQW1DLENBQUE7SUFDbkMsMkZBQWlDLENBQUE7SUFDakMscUZBQThCLENBQUE7SUFDOUIsaUZBQTRCLENBQUE7SUFDNUIsbUZBQTZCLENBQUE7SUFDN0IsdUZBQStCLENBQUE7SUFDL0IsbUZBQTZCLENBQUE7SUFDN0IscUZBQThCLENBQUE7SUFDOUIsbUVBQXFCLENBQUE7SUFDckIseUZBQWdDLENBQUE7SUFDaEMsdUZBQStCLENBQUE7SUFDL0IscUZBQThCLENBQUE7SUFDOUIsbUZBQTZCLENBQUE7SUFDN0IsdUZBQStCLENBQUE7SUFDL0IscUZBQThCLENBQUE7SUFDOUIsbUVBQXFCLENBQUE7SUFDckIsaUVBQW9CLENBQUE7SUFDcEIsaUVBQW9CLENBQUE7SUFDcEIsK0RBQW1CLENBQUE7SUFDbkIsNkRBQWtCLENBQUE7SUFDbEIsNkRBQWtCLENBQUE7SUFDbEIseUVBQXdCLENBQUE7SUFDeEIsbUVBQXFCLENBQUE7SUFDckIseUVBQXdCLENBQUE7SUFDeEIscUVBQXNCLENBQUE7SUFDdEIsdUVBQXVCLENBQUE7SUFDdkIsK0VBQTJCLENBQUE7SUFDM0IsNkVBQTBCLENBQUE7SUFDMUIsbUZBQTZCLENBQUE7SUFDN0IscUZBQThCLENBQUE7SUFDOUIsdUVBQXVCLENBQUE7SUFDdkIsaUVBQW9CLENBQUE7SUFDcEIsdUVBQXVCLENBQUE7SUFDdkIsbUVBQXFCLENBQUE7SUFDckIscUVBQXNCLENBQUE7SUFDdEIsNkVBQTBCLENBQUE7SUFDMUIsMkVBQXlCLENBQUE7SUFDekIsaUZBQTRCLENBQUE7SUFDNUIsbUZBQTZCLENBQUE7SUFDN0IsbUVBQXFCLENBQUE7SUFDckIscUVBQXNCLENBQUE7SUFDdEIsaUdBQW9DLENBQUE7SUFDcEMsK0ZBQW1DLENBQUE7SUFDbkMsK0ZBQW1DLENBQUE7SUFDbkMsaUdBQW9DLENBQUE7SUFDcEMsbUdBQXFDLENBQUE7SUFDckMseUZBQWdDLENBQUE7SUFDaEMsdUdBQXVDLENBQUE7SUFDdkMsbUdBQXFDLENBQUE7SUFDckMsaUZBQTRCLENBQUE7SUFDNUIsK0VBQTJCLENBQUE7SUFDM0IsbUZBQTZCLENBQUE7SUFDN0IscUZBQThCLENBQUE7SUFDOUIscUdBQXNDLENBQUE7SUFDdEMsaUdBQW9DLENBQUE7SUFDcEMsbUdBQXFDLENBQUE7SUFDckMsK0ZBQW1DLENBQUE7SUFDbkMscUZBQThCLENBQUE7SUFDOUIsaUdBQW9DLENBQUE7SUFDcEMseUZBQWdDLENBQUE7SUFDaEMsdUZBQStCLENBQUE7SUFDL0IsNkZBQWtDLENBQUE7SUFDbEMsK0ZBQW1DLENBQUE7SUFDbkMsMkdBQXlDLENBQUE7SUFDekMsK0ZBQW1DLENBQUE7SUFDbkMseUdBQXdDLENBQUE7SUFDeEMscUdBQXNDLENBQUE7SUFDdEMsK0dBQTJDLENBQUE7SUFDM0MsMkdBQXlDLENBQUE7SUFDekMscUZBQThCLENBQUE7SUFDOUIsK0VBQTJCLENBQUE7SUFDM0IseUZBQWdDLENBQUE7SUFDaEMscUZBQThCLENBQUE7SUFDOUIsaUZBQTRCLENBQUE7SUFDNUIseUVBQXdCLENBQUE7SUFDeEIseUVBQXdCLENBQUE7SUFDeEIsNkVBQTBCLENBQUE7SUFDMUIsaUVBQW9CLENBQUE7SUFDcEIseUVBQXdCLENBQUE7SUFDeEIscUZBQThCLENBQUE7SUFDOUIsaUVBQW9CLENBQUE7SUFDcEIsK0VBQTJCLENBQUE7SUFDM0IsaUVBQW9CLENBQUE7SUFDcEIsbUVBQXFCLENBQUE7SUFDckIsbUVBQXFCLENBQUE7SUFDckIsdUVBQXVCLENBQUE7SUFDdkIscUVBQXNCLENBQUE7SUFDdEIsdUVBQXVCLENBQUE7SUFDdkIsNkVBQTBCLENBQUE7SUFDMUIsaUZBQTRCLENBQUE7SUFDNUIsaUZBQTRCLENBQUE7SUFDNUIsK0VBQTJCLENBQUE7SUFDM0IsNkdBQTBDLENBQUE7SUFDMUMsaUVBQW9CLENBQUE7SUFDcEIsbUdBQXFDLENBQUE7SUFDckMscUhBQThDLENBQUE7SUFDOUMseUdBQXdDLENBQUE7SUFDeEMsaUhBQTRDLENBQUE7SUFDNUMsdUdBQXVDLENBQUE7SUFDdkMscUdBQXNDLENBQUE7SUFDdEMsK0VBQTJCLENBQUE7SUFDM0IsaUZBQTRCLENBQUE7SUFDNUIscUZBQThCLENBQUE7SUFDOUIsdUZBQStCLENBQUE7SUFDL0IsbUZBQTZCLENBQUE7SUFDN0IscUZBQThCLENBQUE7SUFDOUIseUZBQWdDLENBQUE7SUFDaEMsMkZBQWlDLENBQUE7SUFDakMsMkZBQWlDLENBQUE7SUFDakMsNkZBQWtDLENBQUE7SUFDbEMsK0ZBQW1DLENBQUE7SUFDbkMseUZBQWdDLENBQUE7SUFDaEMsMkZBQWlDLENBQUE7SUFDakMsNkZBQWtDLENBQUE7SUFDbEMsK0ZBQW1DLENBQUE7SUFDbkMseUZBQWdDLENBQUE7SUFDaEMsNkVBQTBCLENBQUE7SUFDMUIsK0VBQTJCLENBQUE7SUFDM0IsaUZBQTRCLENBQUE7SUFDNUIsMkVBQXlCLENBQUE7SUFDekIsbUVBQXFCLENBQUE7SUFDckIseURBQWdCLENBQUE7SUFDaEIscUVBQXNCLENBQUE7SUFDdEIsMkRBQWlCLENBQUE7SUFDakIscURBQWMsQ0FBQTtJQUNkLGlFQUFvQixDQUFBO0lBQ3BCLHlEQUFnQixDQUFBO0lBQ2hCLHFFQUFzQixDQUFBO0lBQ3RCLG1FQUFxQixDQUFBO0lBQ3JCLHFFQUFzQixDQUFBO0lBQ3RCLGlFQUFvQixDQUFBO0lBQ3BCLG1FQUFxQixDQUFBO0lBQ3JCLG1FQUFxQixDQUFBO0lBQ3JCLGlGQUE0QixDQUFBO0lBQzVCLGlGQUE0QixDQUFBO0lBQzVCLGlGQUE0QixDQUFBO0lBQzVCLGlGQUE0QixDQUFBO0lBQzVCLGlGQUE0QixDQUFBO0lBQzVCLDJFQUF5QixDQUFBO0lBQ3pCLHlFQUF3QixDQUFBO0lBQ3hCLDJFQUF5QixDQUFBO0lBQ3pCLHVFQUF1QixDQUFBO0lBQ3ZCLHVGQUErQixDQUFBO0lBQy9CLHVGQUErQixDQUFBO0lBQy9CLHVGQUErQixDQUFBO0lBQy9CLG1FQUFxQixDQUFBO0lBQ3JCLDZFQUEwQixDQUFBO0lBQzFCLCtFQUEyQixDQUFBO0lBQzNCLGlGQUE0QixDQUFBO0lBQzVCLG1GQUE2QixDQUFBO0lBQzdCLHFGQUE4QixDQUFBO0lBQzlCLCtFQUEyQixDQUFBO0lBQzNCLDJFQUF5QixDQUFBO0lBQ3pCLDJFQUF5QixDQUFBO0lBQ3pCLDZFQUEwQixDQUFBO0lBQzFCLGlGQUE0QixDQUFBO0lBQzVCLDZFQUEwQixDQUFBO0lBQzFCLDJEQUFpQixDQUFBO0lBQ2pCLDZEQUFrQixDQUFBO0lBQ2xCLCtEQUFtQixDQUFBO0lBQ25CLHVFQUF1QixDQUFBO0lBQ3ZCLDZEQUFrQixDQUFBO0lBQ2xCLGlFQUFvQixDQUFBO0lBQ3BCLHVGQUErQixDQUFBO0lBQy9CLG1GQUE2QixDQUFBO0lBQzdCLHFGQUE4QixDQUFBO0lBQzlCLDZEQUFrQixDQUFBO0lBQ2xCLHFFQUFzQixDQUFBO0lBQ3RCLGlFQUFvQixDQUFBO0lBQ3BCLG1FQUFxQixDQUFBO0lBQ3JCLHFFQUFzQixDQUFBO0lBQ3RCLDZEQUFrQixDQUFBO0lBQ2xCLCtEQUFtQixDQUFBO0lBQ25CLCtEQUFtQixDQUFBO0lBQ25CLDJFQUF5QixDQUFBO0lBQ3pCLDZGQUFrQyxDQUFBO0lBQ2xDLDJGQUFpQyxDQUFBO0lBQ2pDLHVGQUErQixDQUFBO0lBQy9CLHlGQUFnQyxDQUFBO0lBQ2hDLDJGQUFpQyxDQUFBO0lBQ2pDLCtEQUFtQixDQUFBO0lBQ25CLHlGQUFnQyxDQUFBO0lBQ2hDLDJGQUFpQyxDQUFBO0lBQ2pDLCtGQUFtQyxDQUFBO0lBQ25DLGlHQUFvQyxDQUFBO0lBQ3BDLCtFQUEyQixDQUFBO0lBQzNCLGlGQUE0QixDQUFBO0lBQzVCLHVGQUErQixDQUFBO0lBQy9CLHVHQUF1QyxDQUFBO0lBQ3ZDLCtFQUEyQixDQUFBO0lBQzNCLDJFQUF5QixDQUFBO0lBQ3pCLDZFQUEwQixDQUFBO0lBQzFCLG1HQUFxQyxDQUFBO0lBQ3JDLG1GQUE2QixDQUFBO0lBQzdCLDJFQUF5QixDQUFBO0lBQ3pCLGlGQUE0QixDQUFBO0lBQzVCLGlGQUE0QixDQUFBO0lBQzVCLG1GQUE2QixDQUFBO0lBQzdCLDJGQUFpQyxDQUFBO0lBQ2pDLHFGQUE4QixDQUFBO0lBQzlCLHlFQUF3QixDQUFBO0lBQ3hCLDZFQUEwQixDQUFBO0lBQzFCLDZFQUEwQixDQUFBO0lBQzFCLDZFQUEwQixDQUFBO0lBQzFCLHVGQUErQixDQUFBO0lBQy9CLHFGQUE4QixDQUFBO0lBQzlCLHFGQUE4QixDQUFBO0lBQzlCLHlGQUFnQyxDQUFBO0lBQ2hDLCtFQUEyQixDQUFBO0lBQzNCLDZFQUEwQixDQUFBO0lBQzFCLGlGQUE0QixDQUFBO0lBQzVCLGlGQUE0QixDQUFBO0lBQzVCLHVGQUErQixDQUFBO0lBQy9CLHFGQUE4QixDQUFBO0lBQzlCLHlGQUFnQyxDQUFBO0lBQ2hDLDJGQUFpQyxDQUFBO0lBQ2pDLHFGQUE4QixDQUFBO0lBQzlCLG1GQUE2QixDQUFBO0lBQzdCLHVGQUErQixDQUFBO0lBQy9CLHlGQUFnQyxDQUFBO0lBQ2hDLHFGQUE4QixDQUFBO0lBQzlCLG1GQUE2QixDQUFBO0lBQzdCLHVGQUErQixDQUFBO0lBQy9CLHlGQUFnQyxDQUFBO0lBQ2hDLGlHQUFvQyxDQUFBO0lBQ3BDLHVGQUErQixDQUFBO0lBQy9CLG1HQUFxQyxDQUFBO0lBQ3JDLHFHQUFzQyxDQUFBO0lBQ3RDLHlGQUFnQyxDQUFBO0lBQ2hDLHlGQUFnQyxDQUFBO0lBQ2hDLDJGQUFpQyxDQUFBO0lBQ2pDLHFHQUFzQyxDQUFBO0lBQ3RDLHVHQUF1QyxDQUFBO0lBQ3ZDLDZGQUFrQyxDQUFBO0lBQ2xDLHlHQUF3QyxDQUFBO0lBQ3hDLCtFQUEyQixDQUFBO0lBQzNCLDZFQUEwQixDQUFBO0lBQzFCLG1GQUE2QixDQUFBO0lBQzdCLGlGQUE0QixDQUFBO0lBQzVCLCtFQUEyQixDQUFBO0lBQzNCLHlGQUFnQyxDQUFBO0lBQ2hDLDZFQUEwQixDQUFBO0lBQzFCLHVGQUErQixDQUFBO0lBQy9CLGlGQUE0QixDQUFBO0lBQzVCLDJGQUFpQyxDQUFBO0lBQ2pDLGlGQUE0QixDQUFBO0lBQzVCLG1GQUE2QixDQUFBO0lBQzdCLCtFQUEyQixDQUFBO0lBQzNCLGlGQUE0QixDQUFBO0lBQzVCLG1GQUE2QixDQUFBO0lBQzdCLHFGQUE4QixDQUFBO0lBQzlCLDZGQUFrQyxDQUFBO0lBQ2xDLCtGQUFtQyxDQUFBO0lBQ25DLDJGQUFpQyxDQUFBO0lBQ2pDLDZGQUFrQyxDQUFBO0lBQ2xDLHlGQUFnQyxDQUFBO0lBQ2hDLDJGQUFpQyxDQUFBO0lBQ2pDLHlFQUF3QixDQUFBO0lBQ3hCLHFFQUFzQixDQUFBO0lBQ3RCLHlGQUFnQyxDQUFBO0lBQ2hDLDJGQUFpQyxDQUFBO0lBQ2pDLDZGQUFrQyxDQUFBO0lBQ2xDLCtFQUEyQixDQUFBO0lBQzNCLDZFQUEwQixDQUFBO0lBQzFCLDZFQUEwQixDQUFBO0lBQzFCLCtFQUEyQixDQUFBO0lBQzNCLGlGQUE0QixDQUFBO0lBQzVCLHFGQUE4QixDQUFBO0lBQzlCLG1GQUE2QixDQUFBO0lBQzdCLHFFQUFzQixDQUFBO0lBQ3RCLGlFQUFvQixDQUFBO0lBQ3BCLHlHQUF3QyxDQUFBO0lBQ3hDLHVHQUF1QyxDQUFBO0lBQ3ZDLHFHQUFzQyxDQUFBO0lBQ3RDLGlHQUFvQyxDQUFBO0lBQ3BDLHFHQUFzQyxDQUFBO0lBQ3RDLDJGQUFpQyxDQUFBO0lBQ2pDLHFHQUFzQyxDQUFBO0lBQ3RDLHlHQUF3QyxDQUFBO0lBQ3hDLCtGQUFtQyxDQUFBO0lBQ25DLDZFQUEwQixDQUFBO0lBQzFCLDJFQUF5QixDQUFBO0lBQ3pCLHlFQUF3QixDQUFBO0lBQ3hCLHFGQUE4QixDQUFBO0lBQzlCLG1GQUE2QixDQUFBO0lBQzdCLG1GQUE2QixDQUFBO0lBQzdCLHVGQUErQixDQUFBO0lBQy9CLHVGQUErQixDQUFBO0lBQy9CLHVGQUErQixDQUFBO0lBQy9CLHVGQUErQixDQUFBO0lBQy9CLHFGQUE4QixDQUFBO0lBQzlCLHFGQUE4QixDQUFBO0lBQzlCLHlGQUFnQyxDQUFBO0lBQ2hDLHlGQUFnQyxDQUFBO0lBQ2hDLGlHQUFvQyxDQUFBO0lBQ3BDLHVHQUF1QyxDQUFBO0lBQ3ZDLHVHQUF1QyxDQUFBO0lBQ3ZDLDZHQUEwQyxDQUFBO0lBQzFDLHFHQUFzQyxDQUFBO0lBQ3RDLDJHQUF5QyxDQUFBO0lBQ3pDLG1HQUFxQyxDQUFBO0lBQ3JDLHlHQUF3QyxDQUFBO0lBQ3hDLHVHQUF1QyxDQUFBO0lBQ3ZDLDZHQUEwQyxDQUFBO0lBQzFDLCtFQUEyQixDQUFBO0lBQzNCLHFGQUE4QixDQUFBO0lBQzlCLDZFQUEwQixDQUFBO0lBQzFCLG1FQUFxQixDQUFBO0lBQ3JCLHFFQUFzQixDQUFBO0lBQ3RCLHVFQUF1QixDQUFBO0lBQ3ZCLHlFQUF3QixDQUFBO0lBQ3hCLDJFQUF5QixDQUFBO0lBQ3pCLHFFQUFzQixDQUFBO0lBQ3RCLHFFQUFzQixDQUFBO0lBQ3RCLHVFQUF1QixDQUFBO0lBQ3ZCLDJFQUF5QixDQUFBO0lBQ3pCLDZFQUEwQixDQUFBO0lBQzFCLCtFQUEyQixDQUFBO0lBQzNCLGlGQUE0QixDQUFBO0lBQzVCLG1GQUE2QixDQUFBO0lBQzdCLHFGQUE4QixDQUFBO0lBQzlCLCtFQUEyQixDQUFBO0lBQzNCLDJHQUF5QyxDQUFBO0lBQ3pDLHlHQUF3QyxDQUFBO0lBQ3hDLDZHQUEwQyxDQUFBO0lBQzFDLHFHQUFzQyxDQUFBO0lBQ3RDLG1HQUFxQyxDQUFBO0lBQ3JDLHlHQUF3QyxDQUFBO0lBQ3hDLDZHQUEwQyxDQUFBO0lBQzFDLDJHQUF5QyxDQUFBO0lBQ3pDLCtHQUEyQyxDQUFBO0lBQzNDLHVHQUF1QyxDQUFBO0lBQ3ZDLHFHQUFzQyxDQUFBO0lBQ3RDLDJHQUF5QyxDQUFBO0lBQ3pDLCtHQUEyQyxDQUFBO0lBQzNDLDZHQUEwQyxDQUFBO0lBQzFDLGlIQUE0QyxDQUFBO0lBQzVDLHlHQUF3QyxDQUFBO0lBQ3hDLHVHQUF1QyxDQUFBO0lBQ3ZDLCtHQUEyQyxDQUFBO0lBQzNDLHlHQUF3QyxDQUFBO0lBQ3hDLHVHQUF1QyxDQUFBO0lBQ3ZDLDJHQUF5QyxDQUFBO0lBQ3pDLG1HQUFxQyxDQUFBO0lBQ3JDLGlHQUFvQyxDQUFBO0lBQ3BDLHVHQUF1QyxDQUFBO0lBQ3ZDLCtFQUEyQixDQUFBO0lBQzNCLDJEQUFpQixDQUFBO0lBQ2pCLDZEQUFrQixDQUFBO0lBQ2xCLG1FQUFxQixDQUFBO0lBQ3JCLG1GQUE2QixDQUFBO0lBQzdCLCtFQUEyQixDQUFBO0lBQzNCLGlGQUE0QixDQUFBO0lBQzVCLG1GQUE2QixDQUFBO0lBQzdCLHlFQUF3QixDQUFBO0lBQ3hCLG1GQUE2QixDQUFBO0lBQzdCLHFGQUE4QixDQUFBO0lBQzlCLDZFQUEwQixDQUFBO0lBQzFCLCtEQUFtQixDQUFBO0lBQ25CLHlFQUF3QixDQUFBO0lBQ3hCLHFHQUFzQyxDQUFBO0lBQ3RDLHlGQUFnQyxDQUFBO0lBQ2hDLG1HQUFxQyxDQUFBO0lBQ3JDLG1GQUE2QixDQUFBO0lBQzdCLDJEQUFpQixDQUFBO0lBQ2pCLGlFQUFvQixDQUFBO0lBQ3BCLGlFQUFvQixDQUFBO0lBQ3BCLDZEQUFrQixDQUFBO0lBQ2xCLCtEQUFtQixDQUFBO0lBQ25CLDZEQUFrQixDQUFBO0lBQ2xCLDZEQUFrQixDQUFBO0lBQ2xCLG1FQUFxQixDQUFBO0lBQ3JCLDJEQUFpQixDQUFBO0lBQ2pCLDJEQUFpQixDQUFBO0lBQ2pCLHFFQUFzQixDQUFBO0lBQ3RCLGlFQUFvQixDQUFBO0lBQ3BCLGlFQUFvQixDQUFBO0lBQ3BCLHFFQUFzQixDQUFBO0lBQ3RCLHlEQUFnQixDQUFBO0lBQ2hCLHlEQUFnQixDQUFBO0lBQ2hCLDZEQUFrQixDQUFBO0lBQ2xCLHVEQUFlLENBQUE7SUFDZixpRkFBNEIsQ0FBQTtJQUM1QiwrREFBbUIsQ0FBQTtJQUNuQiwrREFBbUIsQ0FBQTtJQUNuQixtRUFBcUIsQ0FBQTtJQUNyQiw2RUFBMEIsQ0FBQTtJQUMxQiwyRUFBeUIsQ0FBQTtJQUN6QiwyRUFBeUIsQ0FBQTtJQUN6QiwrR0FBMkMsQ0FBQTtJQUMzQyxtSEFBNkMsQ0FBQTtJQUM3QyxpSEFBNEMsQ0FBQTtJQUM1Qyx5R0FBd0MsQ0FBQTtJQUN4QywrR0FBMkMsQ0FBQTtJQUMzQywrR0FBMkMsQ0FBQTtJQUMzQywyRkFBaUMsQ0FBQTtJQUNqQyxxRkFBOEIsQ0FBQTtJQUM5Qix1RkFBK0IsQ0FBQTtJQUMvQixpRkFBNEIsQ0FBQTtJQUM1Qix1RkFBK0IsQ0FBQTtJQUMvQixtRkFBNkIsQ0FBQTtJQUM3QixpRkFBNEIsQ0FBQTtJQUM1QixpRkFBNEIsQ0FBQTtJQUM1QixxSEFBOEMsQ0FBQTtJQUM5Qyx5SEFBZ0QsQ0FBQTtJQUNoRCx1SEFBK0MsQ0FBQTtJQUMvQywrR0FBMkMsQ0FBQTtJQUMzQyxxSEFBOEMsQ0FBQTtJQUM5QyxxSEFBOEMsQ0FBQTtJQUM5QywyREFBaUIsQ0FBQTtJQUNqQix5REFBZ0IsQ0FBQTtJQUNoQiwyREFBaUIsQ0FBQTtJQUNqQix1REFBZSxDQUFBO0lBQ2YsNkRBQWtCLENBQUE7SUFDbEIsNkRBQWtCLENBQUE7SUFDbEIsMkRBQWlCLENBQUE7SUFDakIseURBQWdCLENBQUE7SUFDaEIseURBQWdCLENBQUE7SUFDaEIsNkRBQWtCLENBQUE7SUFDbEIsaUVBQW9CLENBQUE7SUFDcEIsK0RBQW1CLENBQUE7SUFDbkIsaUVBQW9CLENBQUE7SUFDcEIsNkRBQWtCLENBQUE7SUFDbEIsbUVBQXFCLENBQUE7SUFDckIsbUVBQXFCLENBQUE7SUFDckIsaUVBQW9CLENBQUE7SUFDcEIsK0RBQW1CLENBQUE7SUFDbkIsK0RBQW1CLENBQUE7SUFDbkIsbUVBQXFCLENBQUE7SUFDckIsK0VBQTJCLENBQUE7SUFDM0IsNkVBQTBCLENBQUE7SUFDMUIsaUZBQTRCLENBQUE7SUFDNUIsbUZBQTZCLENBQUE7SUFDN0IsNkVBQTBCLENBQUE7SUFDMUIsMkVBQXlCLENBQUE7SUFDekIsK0VBQTJCLENBQUE7SUFDM0IsaUZBQTRCLENBQUE7SUFDNUIsK0VBQTJCLENBQUE7SUFDM0IsNkVBQTBCLENBQUE7SUFDMUIsaUZBQTRCLENBQUE7SUFDNUIsbUZBQTZCLENBQUE7SUFDN0IsMkVBQXlCLENBQUE7SUFDekIseUVBQXdCLENBQUE7SUFDeEIsNkVBQTBCLENBQUE7SUFDMUIsK0VBQTJCLENBQUE7SUFDM0IsaUZBQTRCLENBQUE7SUFDNUIsK0VBQTJCLENBQUE7SUFDM0IsbUZBQTZCLENBQUE7SUFDN0IscUZBQThCLENBQUE7SUFDOUIsaUZBQTRCLENBQUE7SUFDNUIsK0VBQTJCLENBQUE7SUFDM0IsbUZBQTZCLENBQUE7SUFDN0IscUZBQThCLENBQUE7SUFDOUIsK0VBQTJCLENBQUE7SUFDM0IsNkVBQTBCLENBQUE7SUFDMUIsaUZBQTRCLENBQUE7SUFDNUIsbUZBQTZCLENBQUE7SUFDN0IsNkVBQTBCLENBQUE7SUFDMUIsMkVBQXlCLENBQUE7SUFDekIsK0VBQTJCLENBQUE7SUFDM0IsaUZBQTRCLENBQUE7SUFDNUIsNkVBQTBCLENBQUE7SUFDMUIsMkVBQXlCLENBQUE7SUFDekIsK0VBQTJCLENBQUE7SUFDM0IsaUZBQTRCLENBQUE7SUFDNUIsbUZBQTZCLENBQUE7SUFDN0IsaUZBQTRCLENBQUE7SUFDNUIscUZBQThCLENBQUE7SUFDOUIsdUZBQStCLENBQUE7SUFDL0IscUVBQXNCLENBQUE7SUFDdEIsMkRBQWlCLENBQUE7SUFDakIsaUVBQW9CLENBQUE7SUFDcEIsNkRBQWtCLENBQUE7SUFDbEIseURBQWdCLENBQUE7SUFDaEIsd0VBQXdCLENBQUE7SUFDeEIsc0VBQXVCLENBQUE7SUFDdkIsb0VBQXNCLENBQUE7SUFDdEIsOEVBQTJCLENBQUE7SUFDM0Isa0ZBQTZCLENBQUE7SUFDN0IsZ0ZBQTRCLENBQUE7SUFDNUIsZ0ZBQTRCLENBQUE7SUFDNUIsOEVBQTJCLENBQUE7SUFDM0Isa0ZBQTZCLENBQUE7SUFDN0Isb0ZBQThCLENBQUE7SUFDOUIsOEVBQTJCLENBQUE7SUFDM0IsNEVBQTBCLENBQUE7SUFDMUIsZ0ZBQTRCLENBQUE7SUFDNUIsa0ZBQTZCLENBQUE7SUFDN0IsNEVBQTBCLENBQUE7SUFDMUIsc0VBQXVCLENBQUE7SUFDdkIsd0ZBQWdDLENBQUE7SUFDaEMsMEZBQWlDLENBQUE7SUFDakMsOEZBQW1DLENBQUE7SUFDbkMsZ0dBQW9DLENBQUE7SUFDcEMsMEZBQWlDLENBQUE7SUFDakMsNEZBQWtDLENBQUE7SUFDbEMsZ0dBQW9DLENBQUE7SUFDcEMsa0dBQXFDLENBQUE7SUFDckMsa0ZBQTZCLENBQUE7SUFDN0Isc0ZBQStCLENBQUE7SUFDL0Isb0ZBQThCLENBQUE7SUFDOUIsa0VBQXFCLENBQUE7SUFDckIsNERBQWtCLENBQUE7SUFDbEIsa0ZBQTZCLENBQUE7SUFDN0Isa0ZBQTZCLENBQUE7SUFDN0IsMEVBQXlCLENBQUE7SUFDekIsNEVBQTBCLENBQUE7SUFDMUIsNEVBQTBCLENBQUE7SUFDMUIsa0VBQXFCLENBQUE7SUFDckIsd0VBQXdCLENBQUE7SUFDeEIsb0VBQXNCLENBQUE7SUFDdEIsd0VBQXdCLENBQUE7SUFDeEIsZ0ZBQTRCLENBQUE7SUFDNUIsOEVBQTJCLENBQUE7SUFDM0IsOEVBQTJCLENBQUE7SUFDM0IsOEZBQW1DLENBQUE7SUFDbkMsOEVBQTJCLENBQUE7SUFDM0IsOEdBQTJDLENBQUE7SUFDM0Msd0dBQXdDLENBQUE7SUFDeEMsMEVBQXlCLENBQUE7SUFDekIsc0ZBQStCLENBQUE7SUFDL0Isb0ZBQThCLENBQUE7SUFDOUIsa0ZBQTZCLENBQUE7SUFDN0Isa0ZBQTZCLENBQUE7SUFDN0IsMEZBQWlDLENBQUE7SUFDakMsd0ZBQWdDLENBQUE7SUFDaEMsNEZBQWtDLENBQUE7SUFDbEMsOEZBQW1DLENBQUE7SUFDbkMsd0ZBQWdDLENBQUE7SUFDaEMsc0ZBQStCLENBQUE7SUFDL0IsMEZBQWlDLENBQUE7SUFDakMsNEZBQWtDLENBQUE7SUFDbEMsc0ZBQStCLENBQUE7SUFDL0Isb0ZBQThCLENBQUE7SUFDOUIsd0ZBQWdDLENBQUE7SUFDaEMsMEZBQWlDLENBQUE7SUFDakMsc0ZBQStCLENBQUE7SUFDL0Isb0ZBQThCLENBQUE7SUFDOUIsd0ZBQWdDLENBQUE7SUFDaEMsMEZBQWlDLENBQUE7SUFDakMsZ0ZBQTRCLENBQUE7SUFDNUIsb0ZBQThCLENBQUE7SUFDOUIsZ0ZBQTRCLENBQUE7SUFDNUIsd0VBQXdCLENBQUE7SUFDeEIsMEVBQXlCLENBQUE7SUFDekIsMEZBQWlDLENBQUE7SUFDakMsNEZBQWtDLENBQUE7SUFDbEMsZ0dBQW9DLENBQUE7SUFDcEMsa0dBQXFDLENBQUE7SUFDckMsMEVBQXlCLENBQUE7SUFDekIsd0VBQXdCLENBQUE7SUFDeEIsd0VBQXdCLENBQUE7SUFDeEIsc0VBQXVCLENBQUE7SUFDdkIsNEVBQTBCLENBQUE7SUFDMUIsd0VBQXdCLENBQUE7SUFDeEIsZ0ZBQTRCLENBQUE7SUFDNUIsa0ZBQTZCLENBQUE7SUFDN0Isa0ZBQTZCLENBQUE7SUFDN0Isd0VBQXdCLENBQUE7SUFDeEIsc0VBQXVCLENBQUE7SUFDdkIsMEVBQXlCLENBQUE7SUFDekIsNEVBQTBCLENBQUE7SUFDMUIsc0VBQXVCLENBQUE7SUFDdkIsb0VBQXNCLENBQUE7SUFDdEIsd0VBQXdCLENBQUE7SUFDeEIsMEVBQXlCLENBQUE7SUFDekIsd0VBQXdCLENBQUE7SUFDeEIsc0VBQXVCLENBQUE7SUFDdkIsMEVBQXlCLENBQUE7SUFDekIsNEVBQTBCLENBQUE7SUFDMUIsb0VBQXNCLENBQUE7SUFDdEIsa0VBQXFCLENBQUE7SUFDckIsc0VBQXVCLENBQUE7SUFDdkIsd0VBQXdCLENBQUE7SUFDeEIsMEVBQXlCLENBQUE7SUFDekIsd0VBQXdCLENBQUE7SUFDeEIsNEVBQTBCLENBQUE7SUFDMUIsOEVBQTJCLENBQUE7SUFDM0IsMEVBQXlCLENBQUE7SUFDekIsd0VBQXdCLENBQUE7SUFDeEIsNEVBQTBCLENBQUE7SUFDMUIsOEVBQTJCLENBQUE7SUFDM0Isd0VBQXdCLENBQUE7SUFDeEIsc0VBQXVCLENBQUE7SUFDdkIsMEVBQXlCLENBQUE7SUFDekIsNEVBQTBCLENBQUE7SUFDMUIsc0VBQXVCLENBQUE7SUFDdkIsb0VBQXNCLENBQUE7SUFDdEIsd0VBQXdCLENBQUE7SUFDeEIsMEVBQXlCLENBQUE7SUFDekIsc0VBQXVCLENBQUE7SUFDdkIsb0VBQXNCLENBQUE7SUFDdEIsd0VBQXdCLENBQUE7SUFDeEIsMEVBQXlCLENBQUE7SUFDekIsNEVBQTBCLENBQUE7SUFDMUIsMEVBQXlCLENBQUE7SUFDekIsOEVBQTJCLENBQUE7SUFDM0IsZ0ZBQTRCLENBQUE7SUFDNUIsc0ZBQStCLENBQUE7SUFDL0Isd0ZBQWdDLENBQUE7SUFDaEMsc0ZBQStCLENBQUE7SUFDL0IsMEZBQWlDLENBQUE7SUFDakMsNEZBQWtDLENBQUE7SUFDbEMsOEZBQW1DLENBQUE7SUFDbkMsNEZBQWtDLENBQUE7SUFDbEMsZ0dBQW9DLENBQUE7SUFDcEMsMEZBQWlDLENBQUE7SUFDakMsMEZBQWlDLENBQUE7SUFDakMsNEZBQWtDLENBQUE7SUFDbEMsNEZBQWtDLENBQUE7SUFDbEMsMEZBQWlDLENBQUE7SUFDakMsMEZBQWlDLENBQUE7SUFDakMsOEZBQW1DLENBQUE7SUFDbkMsOEZBQW1DLENBQUE7SUFDbkMsa0dBQXFDLENBQUE7SUFDckMsb0dBQXNDLENBQUE7SUFDdEMsa0dBQXFDLENBQUE7SUFDckMsc0dBQXVDLENBQUE7SUFDdkMsNEZBQWtDLENBQUE7SUFDbEMsZ0dBQW9DLENBQUE7SUFDcEMsOEZBQW1DLENBQUE7SUFDbkMsa0dBQXFDLENBQUE7SUFDckMsNEZBQWtDLENBQUE7SUFDbEMsZ0dBQW9DLENBQUE7SUFDcEMsZ0dBQW9DLENBQUE7SUFDcEMsb0dBQXNDLENBQUE7SUFDdEMsOEVBQTJCLENBQUE7SUFDM0IsNEVBQTBCLENBQUE7SUFDMUIsMEVBQXlCLENBQUE7SUFDekIsOEVBQTJCLENBQUE7SUFDM0Isa0VBQXFCLENBQUE7SUFDckIsMEVBQXlCLENBQUE7SUFDekIsMEVBQXlCLENBQUE7SUFDekIsMEVBQXlCLENBQUE7SUFDekIsb0VBQXNCLENBQUE7SUFDdEIsd0VBQXdCLENBQUE7SUFDeEIsMEVBQXlCLENBQUE7SUFDekIsc0VBQXVCLENBQUE7SUFDdkIsc0VBQXVCLENBQUE7SUFDdkIsMEVBQXlCLENBQUE7SUFDekIsd0VBQXdCLENBQUE7SUFDeEIsNEVBQTBCLENBQUE7SUFDMUIsOEVBQTJCLENBQUE7SUFDM0IsMEVBQXlCLENBQUE7SUFDekIsMEVBQXlCLENBQUE7SUFDekIsOEVBQTJCLENBQUE7SUFDM0IsOERBQW1CLENBQUE7SUFDbkIsNEVBQTBCLENBQUE7SUFDMUIsOEVBQTJCLENBQUE7SUFDM0IsMEVBQXlCLENBQUE7SUFDekIsa0ZBQTZCLENBQUE7SUFDN0Isb0VBQXNCLENBQUE7SUFDdEIsa0ZBQTZCLENBQUE7SUFDN0Isa0ZBQTZCLENBQUE7SUFDN0IsZ0ZBQTRCLENBQUE7SUFDNUIsc0ZBQStCLENBQUE7SUFDL0IsMEZBQWlDLENBQUE7SUFDakMsMEZBQWlDLENBQUE7SUFDakMsZ0ZBQTRCLENBQUE7SUFDNUIsc0VBQXVCLENBQUE7SUFDdkIsNEVBQTBCLENBQUE7SUFDMUIsb0VBQXNCLENBQUE7SUFDdEIsb0VBQXNCLENBQUE7SUFDdEIsc0VBQXVCLENBQUE7SUFDdkIsMEVBQXlCLENBQUE7SUFDekIsNEVBQTBCLENBQUE7SUFDMUIsd0VBQXdCLENBQUE7SUFDeEIsd0VBQXdCLENBQUE7SUFDeEIsNEVBQTBCLENBQUE7SUFDMUIsMERBQWlCLENBQUE7SUFDakIsd0ZBQWdDLENBQUE7SUFDaEMsNEVBQTBCLENBQUE7SUFDMUIsNEZBQWtDLENBQUE7SUFDbEMsZ0dBQW9DLENBQUE7SUFDcEMsd0VBQXdCLENBQUE7SUFDeEIsMEVBQXlCLENBQUE7SUFDekIsd0ZBQWdDLENBQUE7SUFDaEMsc0ZBQStCLENBQUE7SUFDL0Isd0ZBQWdDLENBQUE7SUFDaEMsc0ZBQStCLENBQUE7SUFDL0IsNEVBQTBCLENBQUE7SUFDMUIsMEVBQXlCLENBQUE7SUFDekIsOEZBQW1DLENBQUE7SUFDbkMsb0ZBQThCLENBQUE7SUFDOUIsa0dBQXFDLENBQUE7SUFDckMsMEVBQXlCLENBQUE7SUFDekIsZ0VBQW9CLENBQUE7SUFDcEIsNERBQWtCLENBQUE7SUFDbEIsNERBQWtCLENBQUE7SUFDbEIsNEZBQWtDLENBQUE7SUFDbEMsMEZBQWlDLENBQUE7SUFDakMsNEZBQWtDLENBQUE7SUFDbEMsMEZBQWlDLENBQUE7SUFDakMsa0dBQXFDLENBQUE7SUFDckMsZ0dBQW9DLENBQUE7SUFDcEMsb0ZBQThCLENBQUE7SUFDOUIsMEZBQWlDLENBQUE7SUFDakMsc0ZBQStCLENBQUE7SUFDL0Isd0ZBQWdDLENBQUE7SUFDaEMsc0ZBQStCLENBQUE7SUFDL0IsNEZBQWtDLENBQUE7SUFDbEMsd0ZBQWdDLENBQUE7SUFDaEMsMEZBQWlDLENBQUE7SUFDakMsb0ZBQThCLENBQUE7SUFDOUIsMEZBQWlDLENBQUE7SUFDakMsc0ZBQStCLENBQUE7SUFDL0Isd0ZBQWdDLENBQUE7SUFDaEMsMEVBQXlCLENBQUE7SUFDekIsc0VBQXVCLENBQUE7SUFDdkIsMEVBQXlCLENBQUE7SUFDekIsNERBQWtCLENBQUE7SUFDbEIsd0RBQWdCLENBQUE7SUFDaEIsc0VBQXVCLENBQUE7SUFDdkIsOERBQW1CLENBQUE7SUFDbkIsa0VBQXFCLENBQUE7SUFDckIsMEZBQWlDLENBQUE7SUFDakMsNEZBQWtDLENBQUE7SUFDbEMsZ0dBQW9DLENBQUE7SUFDcEMsa0dBQXFDLENBQUE7SUFDckMsb0VBQXNCLENBQUE7SUFDdEIsd0VBQXdCLENBQUE7SUFDeEIsc0VBQXVCLENBQUE7SUFDdkIsMERBQWlCLENBQUE7SUFDakIsOERBQW1CLENBQUE7SUFDbkIsZ0ZBQTRCLENBQUE7SUFDNUIsZ0ZBQTRCLENBQUE7SUFDNUIsMEVBQXlCLENBQUE7SUFDekIsOEVBQTJCLENBQUE7SUFDM0Isb0ZBQThCLENBQUE7SUFDOUIsZ0ZBQTRCLENBQUE7SUFDNUIsb0ZBQThCLENBQUE7SUFDOUIsMEZBQWlDLENBQUE7SUFDakMsd0ZBQWdDLENBQUE7SUFDaEMsc0ZBQStCLENBQUE7SUFDL0Isc0ZBQStCLENBQUE7SUFDL0IsZ0VBQW9CLENBQUE7SUFDcEIsMEVBQXlCLENBQUE7SUFDekIsOEVBQTJCLENBQUE7SUFDM0Isb0ZBQThCLENBQUE7SUFDOUIsa0ZBQTZCLENBQUE7SUFDN0IsZ0ZBQTRCLENBQUE7SUFDNUIsb0ZBQThCLENBQUE7SUFDOUIsZ0ZBQTRCLENBQUE7SUFDNUIsc0ZBQStCLENBQUE7SUFDL0Isb0ZBQThCLENBQUE7SUFDOUIsa0ZBQTZCLENBQUE7SUFDN0Isc0ZBQStCLENBQUE7SUFDL0IsNEVBQTBCLENBQUE7SUFDMUIsNEVBQTBCLENBQUE7SUFDMUIsNEVBQTBCLENBQUE7SUFDMUIsZ0ZBQTRCLENBQUE7SUFDNUIsb0ZBQThCLENBQUE7SUFDOUIsc0ZBQStCLENBQUE7SUFDL0Isa0ZBQTZCLENBQUE7SUFDN0Isa0ZBQTZCLENBQUE7SUFDN0IsNEVBQTBCLENBQUE7SUFDMUIsOEVBQTJCLENBQUE7SUFDM0IsZ0ZBQTRCLENBQUE7SUFDNUIsa0ZBQTZCLENBQUE7SUFDN0Isa0ZBQTZCLENBQUE7SUFDN0IsZ0ZBQTRCLENBQUE7SUFDNUIsOEZBQW1DLENBQUE7SUFDbkMsa0ZBQTZCLENBQUE7SUFDN0Isc0ZBQStCLENBQUE7SUFDL0IsOEVBQTJCLENBQUE7SUFDM0IsZ0ZBQTRCLENBQUE7SUFDNUIsb0dBQXNDLENBQUE7SUFDdEMsNEZBQWtDLENBQUE7SUFDbEMsc0ZBQStCLENBQUE7SUFDL0IsZ0ZBQTRCLENBQUE7SUFDNUIsZ0ZBQTRCLENBQUE7SUFDNUIsd0ZBQWdDLENBQUE7SUFDaEMsc0ZBQStCLENBQUE7SUFDL0Isc0ZBQStCLENBQUE7SUFDL0Isb0ZBQThCLENBQUE7SUFDOUIsd0ZBQWdDLENBQUE7SUFDaEMsMEZBQWlDLENBQUE7SUFDakMsa0VBQXFCLENBQUE7SUFDckIsa0ZBQTZCLENBQUE7SUFDN0IsZ0ZBQTRCLENBQUE7SUFDNUIsb0ZBQThCLENBQUE7SUFDOUIsb0ZBQThCLENBQUE7SUFDOUIsb0ZBQThCLENBQUE7SUFDOUIsa0ZBQTZCLENBQUE7SUFDN0IsZ0ZBQTRCLENBQUE7SUFDNUIsOEZBQW1DLENBQUE7SUFDbkMsd0VBQXdCLENBQUE7SUFDeEIsa0ZBQTZCLENBQUE7SUFDN0IsZ0ZBQTRCLENBQUE7SUFDNUIsZ0ZBQTRCLENBQUE7SUFDNUIsb0ZBQThCLENBQUE7SUFDOUIsOEVBQTJCLENBQUE7SUFDM0IsZ0dBQW9DLENBQUE7SUFDcEMsa0dBQXFDLENBQUE7SUFDckMsd0dBQXdDLENBQUE7SUFDeEMsNEVBQTBCLENBQUE7SUFDMUIsc0VBQXVCLENBQUE7SUFDdkIsd0VBQXdCLENBQUE7SUFDeEIsMEVBQXlCLENBQUE7SUFDekIsc0VBQXVCLENBQUE7SUFDdkIsZ0VBQW9CLENBQUE7SUFDcEIsZ0ZBQTRCLENBQUE7SUFDNUIsMEVBQXlCLENBQUE7SUFDekIsa0ZBQTZCLENBQUE7SUFDN0IsZ0ZBQTRCLENBQUE7QUFDL0IsQ0FBQyxFQXB6Q1csVUFBVSxLQUFWLFVBQVUsUUFvekNyQiJ9\n\n//# sourceURL=webpack://PW/./esm/util/block.js?");
140
110
 
141
111
  /***/ }),
142
112
 
143
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/enum.js":
113
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/boot.js":
144
114
  /*!****************************************************************************************************************!*\
145
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/enum.js ***!
115
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/boot.js ***!
146
116
  \****************************************************************************************************************/
147
- /***/ ((__unused_webpack_module, exports) => {
148
-
149
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.enumDesc = enumDesc;\nexports.tsEnum = tsEnum;\n/**\n * Hydrate an enum descriptor.\n *\n * @private\n */\nfunction enumDesc(file, path, ...paths) {\n if (paths.length == 0) {\n return file.enums[path];\n }\n const e = paths.pop(); // we checked length above\n return paths.reduce((acc, cur) => acc.nestedMessages[cur], file.messages[path]).nestedEnums[e];\n}\n/**\n * Construct a TypeScript enum object at runtime from a descriptor.\n */\nfunction tsEnum(desc) {\n const enumObject = {};\n for (const value of desc.values) {\n enumObject[value.localName] = value.number;\n enumObject[value.number] = value.localName;\n }\n return enumObject;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/enum.js?");
150
-
151
- /***/ }),
152
-
153
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/extension.js":
154
- /*!*********************************************************************************************************************!*\
155
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/extension.js ***!
156
- \*********************************************************************************************************************/
157
- /***/ ((__unused_webpack_module, exports) => {
117
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
158
118
 
159
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.extDesc = extDesc;\n/**\n * Hydrate an extension descriptor.\n *\n * @private\n */\nfunction extDesc(file, path, ...paths) {\n if (paths.length == 0) {\n return file.extensions[path];\n }\n const e = paths.pop(); // we checked length above\n return paths.reduce((acc, cur) => acc.nestedMessages[cur], file.messages[path]).nestedExtensions[e];\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/extension.js?");
119
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ boot: () => (/* binding */ boot),\n/* harmony export */ bootFileDescriptorProto: () => (/* binding */ bootFileDescriptorProto)\n/* harmony export */ });\n/* harmony import */ var _restore_json_names_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./restore-json-names.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/restore-json-names.js\");\n/* harmony import */ var _registry_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../registry.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/registry.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n\n/**\n * Hydrate a file descriptor for google/protobuf/descriptor.proto from a plain\n * object.\n *\n * See createFileDescriptorProtoBoot() for details.\n *\n * @private\n */\nfunction boot(boot) {\n const root = bootFileDescriptorProto(boot);\n root.messageType.forEach(_restore_json_names_js__WEBPACK_IMPORTED_MODULE_0__.restoreJsonNames);\n const reg = (0,_registry_js__WEBPACK_IMPORTED_MODULE_1__.createFileRegistry)(root, () => undefined);\n // non-null assertion because we just created the registry from the file we look up\n return reg.getFile(root.name);\n}\n/**\n * Creates the message google.protobuf.FileDescriptorProto from an object literal.\n *\n * See createFileDescriptorProtoBoot() for details.\n *\n * @private\n */\nfunction bootFileDescriptorProto(init) {\n const proto = Object.create({\n syntax: \"\",\n edition: 0,\n });\n return Object.assign(proto, Object.assign(Object.assign({ $typeName: \"google.protobuf.FileDescriptorProto\", dependency: [], publicDependency: [], weakDependency: [], service: [], extension: [] }, init), { messageType: init.messageType.map(bootDescriptorProto), enumType: init.enumType.map(bootEnumDescriptorProto) }));\n}\nfunction bootDescriptorProto(init) {\n var _a, _b, _c, _d, _e, _f, _g, _h;\n return {\n $typeName: \"google.protobuf.DescriptorProto\",\n name: init.name,\n field: (_b = (_a = init.field) === null || _a === void 0 ? void 0 : _a.map(bootFieldDescriptorProto)) !== null && _b !== void 0 ? _b : [],\n extension: [],\n nestedType: (_d = (_c = init.nestedType) === null || _c === void 0 ? void 0 : _c.map(bootDescriptorProto)) !== null && _d !== void 0 ? _d : [],\n enumType: (_f = (_e = init.enumType) === null || _e === void 0 ? void 0 : _e.map(bootEnumDescriptorProto)) !== null && _f !== void 0 ? _f : [],\n extensionRange: (_h = (_g = init.extensionRange) === null || _g === void 0 ? void 0 : _g.map((e) => (Object.assign({ $typeName: \"google.protobuf.DescriptorProto.ExtensionRange\" }, e)))) !== null && _h !== void 0 ? _h : [],\n oneofDecl: [],\n reservedRange: [],\n reservedName: [],\n };\n}\nfunction bootFieldDescriptorProto(init) {\n const proto = Object.create({\n label: 1,\n typeName: \"\",\n extendee: \"\",\n defaultValue: \"\",\n oneofIndex: 0,\n jsonName: \"\",\n proto3Optional: false,\n });\n return Object.assign(proto, Object.assign(Object.assign({ $typeName: \"google.protobuf.FieldDescriptorProto\" }, init), { options: init.options ? bootFieldOptions(init.options) : undefined }));\n}\nfunction bootFieldOptions(init) {\n var _a, _b, _c;\n const proto = Object.create({\n ctype: 0,\n packed: false,\n jstype: 0,\n lazy: false,\n unverifiedLazy: false,\n deprecated: false,\n weak: false,\n debugRedact: false,\n retention: 0,\n });\n return Object.assign(proto, Object.assign(Object.assign({ $typeName: \"google.protobuf.FieldOptions\" }, init), { targets: (_a = init.targets) !== null && _a !== void 0 ? _a : [], editionDefaults: (_c = (_b = init.editionDefaults) === null || _b === void 0 ? void 0 : _b.map((e) => (Object.assign({ $typeName: \"google.protobuf.FieldOptions.EditionDefault\" }, e)))) !== null && _c !== void 0 ? _c : [], uninterpretedOption: [] }));\n}\nfunction bootEnumDescriptorProto(init) {\n return {\n $typeName: \"google.protobuf.EnumDescriptorProto\",\n name: init.name,\n reservedName: [],\n reservedRange: [],\n value: init.value.map((e) => (Object.assign({ $typeName: \"google.protobuf.EnumValueDescriptorProto\" }, e))),\n };\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/boot.js?");
160
120
 
161
121
  /***/ }),
162
122
 
163
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js":
123
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/enum.js":
164
124
  /*!****************************************************************************************************************!*\
165
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js ***!
125
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/enum.js ***!
166
126
  \****************************************************************************************************************/
167
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
127
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
168
128
 
169
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.fileDesc = fileDesc;\nconst base64_encoding_js_1 = __webpack_require__(/*! ../wire/base64-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/base64-encoding.js\");\nconst descriptor_pb_js_1 = __webpack_require__(/*! ../wkt/gen/google/protobuf/descriptor_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/descriptor_pb.js\");\nconst registry_js_1 = __webpack_require__(/*! ../registry.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/registry.js\");\nconst restore_json_names_js_1 = __webpack_require__(/*! ./restore-json-names.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/restore-json-names.js\");\nconst from_binary_js_1 = __webpack_require__(/*! ../from-binary.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/from-binary.js\");\n/**\n * Hydrate a file descriptor.\n *\n * @private\n */\nfunction fileDesc(b64, imports) {\n var _a;\n const root = (0, from_binary_js_1.fromBinary)(descriptor_pb_js_1.FileDescriptorProtoSchema, (0, base64_encoding_js_1.base64Decode)(b64));\n root.messageType.forEach(restore_json_names_js_1.restoreJsonNames);\n root.dependency = (_a = imports === null || imports === void 0 ? void 0 : imports.map((f) => f.proto.name)) !== null && _a !== void 0 ? _a : [];\n const reg = (0, registry_js_1.createFileRegistry)(root, (protoFileName) => imports === null || imports === void 0 ? void 0 : imports.find((f) => f.proto.name === protoFileName));\n // non-null assertion because we just created the registry from the file we look up\n return reg.getFile(root.name);\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js?");
129
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ enumDesc: () => (/* binding */ enumDesc),\n/* harmony export */ tsEnum: () => (/* binding */ tsEnum)\n/* harmony export */ });\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n/**\n * Hydrate an enum descriptor.\n *\n * @private\n */\nfunction enumDesc(file, path, ...paths) {\n if (paths.length == 0) {\n return file.enums[path];\n }\n const e = paths.pop(); // we checked length above\n return paths.reduce((acc, cur) => acc.nestedMessages[cur], file.messages[path]).nestedEnums[e];\n}\n/**\n * Construct a TypeScript enum object at runtime from a descriptor.\n */\nfunction tsEnum(desc) {\n const enumObject = {};\n for (const value of desc.values) {\n enumObject[value.localName] = value.number;\n enumObject[value.number] = value.localName;\n }\n return enumObject;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/enum.js?");
170
130
 
171
131
  /***/ }),
172
132
 
173
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/index.js":
174
- /*!*****************************************************************************************************************!*\
175
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/index.js ***!
176
- \*****************************************************************************************************************/
177
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
133
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/file.js":
134
+ /*!****************************************************************************************************************!*\
135
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/file.js ***!
136
+ \****************************************************************************************************************/
137
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
178
138
 
179
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\n__exportStar(__webpack_require__(/*! ./boot.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/boot.js\"), exports);\n__exportStar(__webpack_require__(/*! ./embed.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/embed.js\"), exports);\n__exportStar(__webpack_require__(/*! ./enum.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/enum.js\"), exports);\n__exportStar(__webpack_require__(/*! ./extension.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/extension.js\"), exports);\n__exportStar(__webpack_require__(/*! ./file.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js\"), exports);\n__exportStar(__webpack_require__(/*! ./message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js\"), exports);\n__exportStar(__webpack_require__(/*! ./service.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/service.js\"), exports);\n__exportStar(__webpack_require__(/*! ./symbols.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/symbols.js\"), exports);\n__exportStar(__webpack_require__(/*! ./scalar.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/scalar.js\"), exports);\n__exportStar(__webpack_require__(/*! ./types.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/types.js\"), exports);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/index.js?");
139
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ fileDesc: () => (/* binding */ fileDesc)\n/* harmony export */ });\n/* harmony import */ var _wire_base64_encoding_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../wire/base64-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/base64-encoding.js\");\n/* harmony import */ var _wkt_gen_google_protobuf_descriptor_pb_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../wkt/gen/google/protobuf/descriptor_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/descriptor_pb.js\");\n/* harmony import */ var _registry_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../registry.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/registry.js\");\n/* harmony import */ var _restore_json_names_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./restore-json-names.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/restore-json-names.js\");\n/* harmony import */ var _from_binary_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../from-binary.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/from-binary.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n\n\n\n\n/**\n * Hydrate a file descriptor.\n *\n * @private\n */\nfunction fileDesc(b64, imports) {\n var _a;\n const root = (0,_from_binary_js__WEBPACK_IMPORTED_MODULE_0__.fromBinary)(_wkt_gen_google_protobuf_descriptor_pb_js__WEBPACK_IMPORTED_MODULE_1__.FileDescriptorProtoSchema, (0,_wire_base64_encoding_js__WEBPACK_IMPORTED_MODULE_2__.base64Decode)(b64));\n root.messageType.forEach(_restore_json_names_js__WEBPACK_IMPORTED_MODULE_3__.restoreJsonNames);\n root.dependency = (_a = imports === null || imports === void 0 ? void 0 : imports.map((f) => f.proto.name)) !== null && _a !== void 0 ? _a : [];\n const reg = (0,_registry_js__WEBPACK_IMPORTED_MODULE_4__.createFileRegistry)(root, (protoFileName) => imports === null || imports === void 0 ? void 0 : imports.find((f) => f.proto.name === protoFileName));\n // non-null assertion because we just created the registry from the file we look up\n return reg.getFile(root.name);\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/file.js?");
180
140
 
181
141
  /***/ }),
182
142
 
183
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js":
143
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/message.js":
184
144
  /*!*******************************************************************************************************************!*\
185
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js ***!
145
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/message.js ***!
186
146
  \*******************************************************************************************************************/
187
- /***/ ((__unused_webpack_module, exports) => {
147
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
188
148
 
189
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.messageDesc = messageDesc;\n/**\n * Hydrate a message descriptor.\n *\n * @private\n */\nfunction messageDesc(file, path, ...paths) {\n return paths.reduce((acc, cur) => acc.nestedMessages[cur], file.messages[path]);\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js?");
149
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ messageDesc: () => (/* binding */ messageDesc)\n/* harmony export */ });\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n/**\n * Hydrate a message descriptor.\n *\n * @private\n */\nfunction messageDesc(file, path, ...paths) {\n return paths.reduce((acc, cur) => acc.nestedMessages[cur], file.messages[path]);\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/message.js?");
190
150
 
191
151
  /***/ }),
192
152
 
193
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/restore-json-names.js":
153
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/restore-json-names.js":
194
154
  /*!******************************************************************************************************************************!*\
195
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/restore-json-names.js ***!
155
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/restore-json-names.js ***!
196
156
  \******************************************************************************************************************************/
197
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
198
-
199
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.restoreJsonNames = restoreJsonNames;\nconst names_js_1 = __webpack_require__(/*! ../reflect/names.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/names.js\");\nconst unsafe_js_1 = __webpack_require__(/*! ../reflect/unsafe.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/unsafe.js\");\n/**\n * @private\n */\nfunction restoreJsonNames(message) {\n for (const f of message.field) {\n if (!(0, unsafe_js_1.unsafeIsSetExplicit)(f, \"jsonName\")) {\n f.jsonName = (0, names_js_1.protoCamelCase)(f.name);\n }\n }\n message.nestedType.forEach(restoreJsonNames);\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/restore-json-names.js?");
200
-
201
- /***/ }),
202
-
203
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/scalar.js":
204
- /*!******************************************************************************************************************!*\
205
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/scalar.js ***!
206
- \******************************************************************************************************************/
207
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
208
-
209
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.scalarTypeScriptType = scalarTypeScriptType;\nexports.scalarJsonType = scalarJsonType;\nconst descriptors_js_1 = __webpack_require__(/*! ../descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js\");\n/**\n * Return the TypeScript type (as a string) for the given scalar type.\n */\nfunction scalarTypeScriptType(scalar, longAsString) {\n switch (scalar) {\n case descriptors_js_1.ScalarType.STRING:\n return \"string\";\n case descriptors_js_1.ScalarType.BOOL:\n return \"boolean\";\n case descriptors_js_1.ScalarType.UINT64:\n case descriptors_js_1.ScalarType.SFIXED64:\n case descriptors_js_1.ScalarType.FIXED64:\n case descriptors_js_1.ScalarType.SINT64:\n case descriptors_js_1.ScalarType.INT64:\n return longAsString ? \"string\" : \"bigint\";\n case descriptors_js_1.ScalarType.BYTES:\n return \"Uint8Array\";\n default:\n return \"number\";\n }\n}\n/**\n * Return the JSON type (as a string) for the given scalar type.\n */\nfunction scalarJsonType(scalar) {\n switch (scalar) {\n case descriptors_js_1.ScalarType.DOUBLE:\n case descriptors_js_1.ScalarType.FLOAT:\n return `number | \"NaN\" | \"Infinity\" | \"-Infinity\"`;\n case descriptors_js_1.ScalarType.UINT64:\n case descriptors_js_1.ScalarType.SFIXED64:\n case descriptors_js_1.ScalarType.FIXED64:\n case descriptors_js_1.ScalarType.SINT64:\n case descriptors_js_1.ScalarType.INT64:\n return \"string\";\n case descriptors_js_1.ScalarType.INT32:\n case descriptors_js_1.ScalarType.FIXED32:\n case descriptors_js_1.ScalarType.UINT32:\n case descriptors_js_1.ScalarType.SFIXED32:\n case descriptors_js_1.ScalarType.SINT32:\n return \"number\";\n case descriptors_js_1.ScalarType.STRING:\n return \"string\";\n case descriptors_js_1.ScalarType.BOOL:\n return \"boolean\";\n case descriptors_js_1.ScalarType.BYTES:\n return \"string\";\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/scalar.js?");
210
-
211
- /***/ }),
212
-
213
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/service.js":
214
- /*!*******************************************************************************************************************!*\
215
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/service.js ***!
216
- \*******************************************************************************************************************/
217
- /***/ ((__unused_webpack_module, exports) => {
218
-
219
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.serviceDesc = serviceDesc;\n/**\n * Hydrate a service descriptor.\n *\n * @private\n */\nfunction serviceDesc(file, path, ...paths) {\n if (paths.length > 0) {\n throw new Error();\n }\n return file.services[path];\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/service.js?");
220
-
221
- /***/ }),
222
-
223
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/symbols.js":
224
- /*!*******************************************************************************************************************!*\
225
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/symbols.js ***!
226
- \*******************************************************************************************************************/
227
- /***/ ((__unused_webpack_module, exports) => {
228
-
229
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.symbols = exports.wktPublicImportPaths = exports.packageName = void 0;\n/**\n * @private\n */\nexports.packageName = \"@bufbuild/protobuf\";\n/**\n * @private\n */\nexports.wktPublicImportPaths = {\n \"google/protobuf/compiler/plugin.proto\": exports.packageName + \"/wkt\",\n \"google/protobuf/any.proto\": exports.packageName + \"/wkt\",\n \"google/protobuf/api.proto\": exports.packageName + \"/wkt\",\n \"google/protobuf/descriptor.proto\": exports.packageName + \"/wkt\",\n \"google/protobuf/duration.proto\": exports.packageName + \"/wkt\",\n \"google/protobuf/empty.proto\": exports.packageName + \"/wkt\",\n \"google/protobuf/field_mask.proto\": exports.packageName + \"/wkt\",\n \"google/protobuf/source_context.proto\": exports.packageName + \"/wkt\",\n \"google/protobuf/struct.proto\": exports.packageName + \"/wkt\",\n \"google/protobuf/timestamp.proto\": exports.packageName + \"/wkt\",\n \"google/protobuf/type.proto\": exports.packageName + \"/wkt\",\n \"google/protobuf/wrappers.proto\": exports.packageName + \"/wkt\",\n};\n/**\n * @private\n */\n// prettier-ignore\nexports.symbols = {\n isMessage: { typeOnly: false, bootstrapWktFrom: \"../../is-message.js\", from: exports.packageName },\n Message: { typeOnly: true, bootstrapWktFrom: \"../../types.js\", from: exports.packageName },\n create: { typeOnly: false, bootstrapWktFrom: \"../../create.js\", from: exports.packageName },\n fromJson: { typeOnly: false, bootstrapWktFrom: \"../../from-json.js\", from: exports.packageName },\n fromJsonString: { typeOnly: false, bootstrapWktFrom: \"../../from-json.js\", from: exports.packageName },\n fromBinary: { typeOnly: false, bootstrapWktFrom: \"../../from-binary.js\", from: exports.packageName },\n toBinary: { typeOnly: false, bootstrapWktFrom: \"../../to-binary.js\", from: exports.packageName },\n toJson: { typeOnly: false, bootstrapWktFrom: \"../../to-json.js\", from: exports.packageName },\n toJsonString: { typeOnly: false, bootstrapWktFrom: \"../../to-json.js\", from: exports.packageName },\n protoInt64: { typeOnly: false, bootstrapWktFrom: \"../../proto-int64.js\", from: exports.packageName },\n JsonValue: { typeOnly: true, bootstrapWktFrom: \"../../json-value.js\", from: exports.packageName },\n JsonObject: { typeOnly: true, bootstrapWktFrom: \"../../json-value.js\", from: exports.packageName },\n codegen: {\n boot: { typeOnly: false, bootstrapWktFrom: \"../../codegenv1/boot.js\", from: exports.packageName + \"/codegenv1\" },\n fileDesc: { typeOnly: false, bootstrapWktFrom: \"../../codegenv1/file.js\", from: exports.packageName + \"/codegenv1\" },\n enumDesc: { typeOnly: false, bootstrapWktFrom: \"../../codegenv1/enum.js\", from: exports.packageName + \"/codegenv1\" },\n extDesc: { typeOnly: false, bootstrapWktFrom: \"../../codegenv1/extension.js\", from: exports.packageName + \"/codegenv1\" },\n messageDesc: { typeOnly: false, bootstrapWktFrom: \"../../codegenv1/message.js\", from: exports.packageName + \"/codegenv1\" },\n serviceDesc: { typeOnly: false, bootstrapWktFrom: \"../../codegenv1/service.js\", from: exports.packageName + \"/codegenv1\" },\n tsEnum: { typeOnly: false, bootstrapWktFrom: \"../../codegenv1/enum.js\", from: exports.packageName + \"/codegenv1\" },\n GenFile: { typeOnly: true, bootstrapWktFrom: \"../../codegenv1/types.js\", from: exports.packageName + \"/codegenv1\" },\n GenEnum: { typeOnly: true, bootstrapWktFrom: \"../../codegenv1/types.js\", from: exports.packageName + \"/codegenv1\" },\n GenExtension: { typeOnly: true, bootstrapWktFrom: \"../../codegenv1/types.js\", from: exports.packageName + \"/codegenv1\" },\n GenMessage: { typeOnly: true, bootstrapWktFrom: \"../../codegenv1/types.js\", from: exports.packageName + \"/codegenv1\" },\n GenService: { typeOnly: true, bootstrapWktFrom: \"../../codegenv1/types.js\", from: exports.packageName + \"/codegenv1\" },\n },\n};\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/symbols.js?");
230
-
231
- /***/ }),
232
-
233
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/types.js":
234
- /*!*****************************************************************************************************************!*\
235
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/types.js ***!
236
- \*****************************************************************************************************************/
237
- /***/ ((__unused_webpack_module, exports) => {
157
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
238
158
 
239
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nclass brandv1 {\n constructor() {\n this.v = \"codegenv1\";\n this.a = false;\n this.b = false;\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/types.js?");
159
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ restoreJsonNames: () => (/* binding */ restoreJsonNames)\n/* harmony export */ });\n/* harmony import */ var _reflect_names_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../reflect/names.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/names.js\");\n/* harmony import */ var _reflect_unsafe_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../reflect/unsafe.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/unsafe.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n\n/**\n * @private\n */\nfunction restoreJsonNames(message) {\n for (const f of message.field) {\n if (!(0,_reflect_unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeIsSetExplicit)(f, \"jsonName\")) {\n f.jsonName = (0,_reflect_names_js__WEBPACK_IMPORTED_MODULE_1__.protoCamelCase)(f.name);\n }\n }\n message.nestedType.forEach(restoreJsonNames);\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/restore-json-names.js?");
240
160
 
241
161
  /***/ }),
242
162
 
243
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/create.js":
163
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/create.js":
244
164
  /*!********************************************************************************************************!*\
245
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/create.js ***!
165
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/create.js ***!
246
166
  \********************************************************************************************************/
247
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
167
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
248
168
 
249
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.create = create;\nconst is_message_js_1 = __webpack_require__(/*! ./is-message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/is-message.js\");\nconst descriptors_js_1 = __webpack_require__(/*! ./descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js\");\nconst scalar_js_1 = __webpack_require__(/*! ./reflect/scalar.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/scalar.js\");\nconst guard_js_1 = __webpack_require__(/*! ./reflect/guard.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/guard.js\");\nconst unsafe_js_1 = __webpack_require__(/*! ./reflect/unsafe.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/unsafe.js\");\nconst wrappers_js_1 = __webpack_require__(/*! ./wkt/wrappers.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/wrappers.js\");\n// bootstrap-inject google.protobuf.Edition.EDITION_PROTO3: const $name: Edition.$localName = $number;\nconst EDITION_PROTO3 = 999;\n// bootstrap-inject google.protobuf.Edition.EDITION_PROTO2: const $name: Edition.$localName = $number;\nconst EDITION_PROTO2 = 998;\n// bootstrap-inject google.protobuf.FeatureSet.FieldPresence.IMPLICIT: const $name: FeatureSet_FieldPresence.$localName = $number;\nconst IMPLICIT = 2;\n/**\n * Create a new message instance.\n *\n * The second argument is an optional initializer object, where all fields are\n * optional.\n */\nfunction create(schema, init) {\n if ((0, is_message_js_1.isMessage)(init, schema)) {\n return init;\n }\n const message = createZeroMessage(schema);\n if (init !== undefined) {\n initMessage(schema, message, init);\n }\n return message;\n}\n/**\n * Sets field values from a MessageInitShape on a zero message.\n */\nfunction initMessage(messageDesc, message, init) {\n for (const member of messageDesc.members) {\n let value = init[member.localName];\n if (value == null) {\n // intentionally ignore undefined and null\n continue;\n }\n let field;\n if (member.kind == \"oneof\") {\n const oneofField = (0, unsafe_js_1.unsafeOneofCase)(init, member);\n if (!oneofField) {\n continue;\n }\n field = oneofField;\n value = (0, unsafe_js_1.unsafeGet)(init, oneofField);\n }\n else {\n field = member;\n }\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check -- no need to convert enum\n switch (field.fieldKind) {\n case \"message\":\n value = toMessage(field, value);\n break;\n case \"scalar\":\n value = initScalar(field, value);\n break;\n case \"list\":\n value = initList(field, value);\n break;\n case \"map\":\n value = initMap(field, value);\n break;\n }\n (0, unsafe_js_1.unsafeSet)(message, field, value);\n }\n return message;\n}\nfunction initScalar(field, value) {\n if (field.scalar == descriptors_js_1.ScalarType.BYTES) {\n return toU8Arr(value);\n }\n return value;\n}\nfunction initMap(field, value) {\n if ((0, guard_js_1.isObject)(value)) {\n if (field.scalar == descriptors_js_1.ScalarType.BYTES) {\n return convertObjectValues(value, toU8Arr);\n }\n if (field.mapKind == \"message\") {\n return convertObjectValues(value, (val) => toMessage(field, val));\n }\n }\n return value;\n}\nfunction initList(field, value) {\n if (Array.isArray(value)) {\n if (field.scalar == descriptors_js_1.ScalarType.BYTES) {\n return value.map(toU8Arr);\n }\n if (field.listKind == \"message\") {\n return value.map((item) => toMessage(field, item));\n }\n }\n return value;\n}\nfunction toMessage(field, value) {\n if (field.fieldKind == \"message\" &&\n !field.oneof &&\n (0, wrappers_js_1.isWrapperDesc)(field.message)) {\n // Types from google/protobuf/wrappers.proto are unwrapped when used in\n // a singular field that is not part of a oneof group.\n return initScalar(field.message.fields[0], value);\n }\n if ((0, guard_js_1.isObject)(value)) {\n if (field.message.typeName == \"google.protobuf.Struct\" &&\n field.parent.typeName !== \"google.protobuf.Value\") {\n // google.protobuf.Struct is represented with JsonObject when used in a\n // field, except when used in google.protobuf.Value.\n return value;\n }\n if (!(0, is_message_js_1.isMessage)(value, field.message)) {\n return create(field.message, value);\n }\n }\n return value;\n}\n// converts any ArrayLike<number> to Uint8Array if necessary.\nfunction toU8Arr(value) {\n return Array.isArray(value) ? new Uint8Array(value) : value;\n}\nfunction convertObjectValues(obj, fn) {\n const ret = {};\n for (const entry of Object.entries(obj)) {\n ret[entry[0]] = fn(entry[1]);\n }\n return ret;\n}\nconst tokenZeroMessageField = Symbol();\nconst messagePrototypes = new WeakMap();\n/**\n * Create a zero message.\n */\nfunction createZeroMessage(desc) {\n let msg;\n if (!needsPrototypeChain(desc)) {\n msg = {\n $typeName: desc.typeName,\n };\n for (const member of desc.members) {\n if (member.kind == \"oneof\" || member.presence == IMPLICIT) {\n msg[member.localName] = createZeroField(member);\n }\n }\n }\n else {\n // Support default values and track presence via the prototype chain\n const cached = messagePrototypes.get(desc);\n let prototype;\n let members;\n if (cached) {\n ({ prototype, members } = cached);\n }\n else {\n prototype = {};\n members = new Set();\n for (const member of desc.members) {\n if (member.kind == \"oneof\") {\n // we can only put immutable values on the prototype,\n // oneof ADTs are mutable\n continue;\n }\n if (member.fieldKind != \"scalar\" && member.fieldKind != \"enum\") {\n // only scalar and enum values are immutable, map, list, and message\n // are not\n continue;\n }\n if (member.presence == IMPLICIT) {\n // implicit presence tracks field presence by zero values - e.g. 0, false, \"\", are unset, 1, true, \"x\" are set.\n // message, map, list fields are mutable, and also have IMPLICIT presence.\n continue;\n }\n members.add(member);\n prototype[member.localName] = createZeroField(member);\n }\n messagePrototypes.set(desc, { prototype, members });\n }\n msg = Object.create(prototype);\n msg.$typeName = desc.typeName;\n for (const member of desc.members) {\n if (members.has(member)) {\n continue;\n }\n if (member.kind == \"field\") {\n if (member.fieldKind == \"message\") {\n continue;\n }\n if (member.fieldKind == \"scalar\" || member.fieldKind == \"enum\") {\n if (member.presence != IMPLICIT) {\n continue;\n }\n }\n }\n msg[member.localName] = createZeroField(member);\n }\n }\n return msg;\n}\n/**\n * Do we need the prototype chain to track field presence?\n */\nfunction needsPrototypeChain(desc) {\n switch (desc.file.edition) {\n case EDITION_PROTO3:\n // proto3 always uses implicit presence, we never need the prototype chain.\n return false;\n case EDITION_PROTO2:\n // proto2 never uses implicit presence, we always need the prototype chain.\n return true;\n default:\n // If a message uses scalar or enum fields with explicit presence, we need\n // the prototype chain to track presence. This rule does not apply to fields\n // in a oneof group - they use a different mechanism to track presence.\n return desc.fields.some((f) => f.presence != IMPLICIT && f.fieldKind != \"message\" && !f.oneof);\n }\n}\n/**\n * Returns a zero value for oneof groups, and for every field kind except\n * messages. Scalar and enum fields can have default values.\n */\nfunction createZeroField(field) {\n if (field.kind == \"oneof\") {\n return { case: undefined };\n }\n if (field.fieldKind == \"list\") {\n return [];\n }\n if (field.fieldKind == \"map\") {\n return {}; // Object.create(null) would be desirable here, but is unsupported by react https://react.dev/reference/react/use-server#serializable-parameters-and-return-values\n }\n if (field.fieldKind == \"message\") {\n return tokenZeroMessageField;\n }\n const defaultValue = field.getDefaultValue();\n if (defaultValue !== undefined) {\n return field.fieldKind == \"scalar\" && field.longAsString\n ? defaultValue.toString()\n : defaultValue;\n }\n return field.fieldKind == \"scalar\"\n ? (0, scalar_js_1.scalarZeroValue)(field.scalar, field.longAsString)\n : field.enum.values[0].number;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/create.js?");
169
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ create: () => (/* binding */ create)\n/* harmony export */ });\n/* harmony import */ var _is_message_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./is-message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/is-message.js\");\n/* harmony import */ var _descriptors_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/descriptors.js\");\n/* harmony import */ var _reflect_scalar_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./reflect/scalar.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/scalar.js\");\n/* harmony import */ var _reflect_guard_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./reflect/guard.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/guard.js\");\n/* harmony import */ var _reflect_unsafe_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./reflect/unsafe.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/unsafe.js\");\n/* harmony import */ var _wkt_wrappers_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./wkt/wrappers.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wkt/wrappers.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n\n\n\n\n\n\n// bootstrap-inject google.protobuf.Edition.EDITION_PROTO3: const $name: Edition.$localName = $number;\nconst EDITION_PROTO3 = 999;\n// bootstrap-inject google.protobuf.Edition.EDITION_PROTO2: const $name: Edition.$localName = $number;\nconst EDITION_PROTO2 = 998;\n// bootstrap-inject google.protobuf.FeatureSet.FieldPresence.IMPLICIT: const $name: FeatureSet_FieldPresence.$localName = $number;\nconst IMPLICIT = 2;\n/**\n * Create a new message instance.\n *\n * The second argument is an optional initializer object, where all fields are\n * optional.\n */\nfunction create(schema, init) {\n if ((0,_is_message_js__WEBPACK_IMPORTED_MODULE_0__.isMessage)(init, schema)) {\n return init;\n }\n const message = createZeroMessage(schema);\n if (init !== undefined) {\n initMessage(schema, message, init);\n }\n return message;\n}\n/**\n * Sets field values from a MessageInitShape on a zero message.\n */\nfunction initMessage(messageDesc, message, init) {\n for (const member of messageDesc.members) {\n let value = init[member.localName];\n if (value == null) {\n // intentionally ignore undefined and null\n continue;\n }\n let field;\n if (member.kind == \"oneof\") {\n const oneofField = (0,_reflect_unsafe_js__WEBPACK_IMPORTED_MODULE_1__.unsafeOneofCase)(init, member);\n if (!oneofField) {\n continue;\n }\n field = oneofField;\n value = (0,_reflect_unsafe_js__WEBPACK_IMPORTED_MODULE_1__.unsafeGet)(init, oneofField);\n }\n else {\n field = member;\n }\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check -- no need to convert enum\n switch (field.fieldKind) {\n case \"message\":\n value = toMessage(field, value);\n break;\n case \"scalar\":\n value = initScalar(field, value);\n break;\n case \"list\":\n value = initList(field, value);\n break;\n case \"map\":\n value = initMap(field, value);\n break;\n }\n (0,_reflect_unsafe_js__WEBPACK_IMPORTED_MODULE_1__.unsafeSet)(message, field, value);\n }\n return message;\n}\nfunction initScalar(field, value) {\n if (field.scalar == _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.BYTES) {\n return toU8Arr(value);\n }\n return value;\n}\nfunction initMap(field, value) {\n if ((0,_reflect_guard_js__WEBPACK_IMPORTED_MODULE_3__.isObject)(value)) {\n if (field.scalar == _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.BYTES) {\n return convertObjectValues(value, toU8Arr);\n }\n if (field.mapKind == \"message\") {\n return convertObjectValues(value, (val) => toMessage(field, val));\n }\n }\n return value;\n}\nfunction initList(field, value) {\n if (Array.isArray(value)) {\n if (field.scalar == _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.BYTES) {\n return value.map(toU8Arr);\n }\n if (field.listKind == \"message\") {\n return value.map((item) => toMessage(field, item));\n }\n }\n return value;\n}\nfunction toMessage(field, value) {\n if (field.fieldKind == \"message\" &&\n !field.oneof &&\n (0,_wkt_wrappers_js__WEBPACK_IMPORTED_MODULE_4__.isWrapperDesc)(field.message)) {\n // Types from google/protobuf/wrappers.proto are unwrapped when used in\n // a singular field that is not part of a oneof group.\n return initScalar(field.message.fields[0], value);\n }\n if ((0,_reflect_guard_js__WEBPACK_IMPORTED_MODULE_3__.isObject)(value)) {\n if (field.message.typeName == \"google.protobuf.Struct\" &&\n field.parent.typeName !== \"google.protobuf.Value\") {\n // google.protobuf.Struct is represented with JsonObject when used in a\n // field, except when used in google.protobuf.Value.\n return value;\n }\n if (!(0,_is_message_js__WEBPACK_IMPORTED_MODULE_0__.isMessage)(value, field.message)) {\n return create(field.message, value);\n }\n }\n return value;\n}\n// converts any ArrayLike<number> to Uint8Array if necessary.\nfunction toU8Arr(value) {\n return Array.isArray(value) ? new Uint8Array(value) : value;\n}\nfunction convertObjectValues(obj, fn) {\n const ret = {};\n for (const entry of Object.entries(obj)) {\n ret[entry[0]] = fn(entry[1]);\n }\n return ret;\n}\nconst tokenZeroMessageField = Symbol();\nconst messagePrototypes = new WeakMap();\n/**\n * Create a zero message.\n */\nfunction createZeroMessage(desc) {\n let msg;\n if (!needsPrototypeChain(desc)) {\n msg = {\n $typeName: desc.typeName,\n };\n for (const member of desc.members) {\n if (member.kind == \"oneof\" || member.presence == IMPLICIT) {\n msg[member.localName] = createZeroField(member);\n }\n }\n }\n else {\n // Support default values and track presence via the prototype chain\n const cached = messagePrototypes.get(desc);\n let prototype;\n let members;\n if (cached) {\n ({ prototype, members } = cached);\n }\n else {\n prototype = {};\n members = new Set();\n for (const member of desc.members) {\n if (member.kind == \"oneof\") {\n // we can only put immutable values on the prototype,\n // oneof ADTs are mutable\n continue;\n }\n if (member.fieldKind != \"scalar\" && member.fieldKind != \"enum\") {\n // only scalar and enum values are immutable, map, list, and message\n // are not\n continue;\n }\n if (member.presence == IMPLICIT) {\n // implicit presence tracks field presence by zero values - e.g. 0, false, \"\", are unset, 1, true, \"x\" are set.\n // message, map, list fields are mutable, and also have IMPLICIT presence.\n continue;\n }\n members.add(member);\n prototype[member.localName] = createZeroField(member);\n }\n messagePrototypes.set(desc, { prototype, members });\n }\n msg = Object.create(prototype);\n msg.$typeName = desc.typeName;\n for (const member of desc.members) {\n if (members.has(member)) {\n continue;\n }\n if (member.kind == \"field\") {\n if (member.fieldKind == \"message\") {\n continue;\n }\n if (member.fieldKind == \"scalar\" || member.fieldKind == \"enum\") {\n if (member.presence != IMPLICIT) {\n continue;\n }\n }\n }\n msg[member.localName] = createZeroField(member);\n }\n }\n return msg;\n}\n/**\n * Do we need the prototype chain to track field presence?\n */\nfunction needsPrototypeChain(desc) {\n switch (desc.file.edition) {\n case EDITION_PROTO3:\n // proto3 always uses implicit presence, we never need the prototype chain.\n return false;\n case EDITION_PROTO2:\n // proto2 never uses implicit presence, we always need the prototype chain.\n return true;\n default:\n // If a message uses scalar or enum fields with explicit presence, we need\n // the prototype chain to track presence. This rule does not apply to fields\n // in a oneof group - they use a different mechanism to track presence.\n return desc.fields.some((f) => f.presence != IMPLICIT && f.fieldKind != \"message\" && !f.oneof);\n }\n}\n/**\n * Returns a zero value for oneof groups, and for every field kind except\n * messages. Scalar and enum fields can have default values.\n */\nfunction createZeroField(field) {\n if (field.kind == \"oneof\") {\n return { case: undefined };\n }\n if (field.fieldKind == \"list\") {\n return [];\n }\n if (field.fieldKind == \"map\") {\n return {}; // Object.create(null) would be desirable here, but is unsupported by react https://react.dev/reference/react/use-server#serializable-parameters-and-return-values\n }\n if (field.fieldKind == \"message\") {\n return tokenZeroMessageField;\n }\n const defaultValue = field.getDefaultValue();\n if (defaultValue !== undefined) {\n return field.fieldKind == \"scalar\" && field.longAsString\n ? defaultValue.toString()\n : defaultValue;\n }\n return field.fieldKind == \"scalar\"\n ? (0,_reflect_scalar_js__WEBPACK_IMPORTED_MODULE_5__.scalarZeroValue)(field.scalar, field.longAsString)\n : field.enum.values[0].number;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/create.js?");
250
170
 
251
171
  /***/ }),
252
172
 
253
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js":
173
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/descriptors.js":
254
174
  /*!*************************************************************************************************************!*\
255
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js ***!
175
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/descriptors.js ***!
256
176
  \*************************************************************************************************************/
257
- /***/ ((__unused_webpack_module, exports) => {
258
-
259
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.ScalarType = void 0;\n/**\n * Scalar value types. This is a subset of field types declared by protobuf\n * enum google.protobuf.FieldDescriptorProto.Type The types GROUP and MESSAGE\n * are omitted, but the numerical values are identical.\n */\nvar ScalarType;\n(function (ScalarType) {\n // 0 is reserved for errors.\n // Order is weird for historical reasons.\n ScalarType[ScalarType[\"DOUBLE\"] = 1] = \"DOUBLE\";\n ScalarType[ScalarType[\"FLOAT\"] = 2] = \"FLOAT\";\n // Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if\n // negative values are likely.\n ScalarType[ScalarType[\"INT64\"] = 3] = \"INT64\";\n ScalarType[ScalarType[\"UINT64\"] = 4] = \"UINT64\";\n // Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if\n // negative values are likely.\n ScalarType[ScalarType[\"INT32\"] = 5] = \"INT32\";\n ScalarType[ScalarType[\"FIXED64\"] = 6] = \"FIXED64\";\n ScalarType[ScalarType[\"FIXED32\"] = 7] = \"FIXED32\";\n ScalarType[ScalarType[\"BOOL\"] = 8] = \"BOOL\";\n ScalarType[ScalarType[\"STRING\"] = 9] = \"STRING\";\n // Tag-delimited aggregate.\n // Group type is deprecated and not supported in proto3. However, Proto3\n // implementations should still be able to parse the group wire format and\n // treat group fields as unknown fields.\n // TYPE_GROUP = 10,\n // TYPE_MESSAGE = 11, // Length-delimited aggregate.\n // New in version 2.\n ScalarType[ScalarType[\"BYTES\"] = 12] = \"BYTES\";\n ScalarType[ScalarType[\"UINT32\"] = 13] = \"UINT32\";\n // TYPE_ENUM = 14,\n ScalarType[ScalarType[\"SFIXED32\"] = 15] = \"SFIXED32\";\n ScalarType[ScalarType[\"SFIXED64\"] = 16] = \"SFIXED64\";\n ScalarType[ScalarType[\"SINT32\"] = 17] = \"SINT32\";\n ScalarType[ScalarType[\"SINT64\"] = 18] = \"SINT64\";\n})(ScalarType || (exports.ScalarType = ScalarType = {}));\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js?");
260
-
261
- /***/ }),
262
-
263
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/equals.js":
264
- /*!********************************************************************************************************!*\
265
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/equals.js ***!
266
- \********************************************************************************************************/
267
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
268
-
269
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.equals = equals;\nconst scalar_js_1 = __webpack_require__(/*! ./reflect/scalar.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/scalar.js\");\nconst reflect_js_1 = __webpack_require__(/*! ./reflect/reflect.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect.js\");\nconst descriptors_js_1 = __webpack_require__(/*! ./descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js\");\nconst index_js_1 = __webpack_require__(/*! ./wkt/index.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/index.js\");\nconst extensions_js_1 = __webpack_require__(/*! ./extensions.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/extensions.js\");\n/**\n * Compare two messages of the same type.\n *\n * Note that this function disregards extensions and unknown fields, and that\n * NaN is not equal NaN, following the IEEE standard.\n */\nfunction equals(schema, a, b, options) {\n if (a.$typeName != schema.typeName || b.$typeName != schema.typeName) {\n return false;\n }\n if (a === b) {\n return true;\n }\n return reflectEquals((0, reflect_js_1.reflect)(schema, a), (0, reflect_js_1.reflect)(schema, b), options);\n}\nfunction reflectEquals(a, b, opts) {\n if (a.desc.typeName === \"google.protobuf.Any\" && (opts === null || opts === void 0 ? void 0 : opts.unpackAny) == true) {\n return anyUnpackedEquals(a.message, b.message, opts);\n }\n for (const f of a.fields) {\n if (!fieldEquals(f, a, b, opts)) {\n return false;\n }\n }\n if ((opts === null || opts === void 0 ? void 0 : opts.unknown) == true && !unknownEquals(a, b, opts.registry)) {\n return false;\n }\n if ((opts === null || opts === void 0 ? void 0 : opts.extensions) == true && !extensionsEquals(a, b, opts)) {\n return false;\n }\n return true;\n}\n// TODO(tstamm) add an option to consider NaN equal to NaN?\nfunction fieldEquals(f, a, b, opts) {\n if (!a.isSet(f) && !b.isSet(f)) {\n return true;\n }\n if (!a.isSet(f) || !b.isSet(f)) {\n return false;\n }\n switch (f.fieldKind) {\n case \"scalar\":\n return (0, scalar_js_1.scalarEquals)(f.scalar, a.get(f), b.get(f));\n case \"enum\":\n return a.get(f) === b.get(f);\n case \"message\":\n return reflectEquals(a.get(f), b.get(f), opts);\n case \"map\": {\n // TODO(tstamm) can't we compare sizes first?\n const mapA = a.get(f);\n const mapB = b.get(f);\n const keys = [];\n for (const k of mapA.keys()) {\n if (!mapB.has(k)) {\n return false;\n }\n keys.push(k);\n }\n for (const k of mapB.keys()) {\n if (!mapA.has(k)) {\n return false;\n }\n }\n for (const key of keys) {\n const va = mapA.get(key);\n const vb = mapB.get(key);\n if (va === vb) {\n continue;\n }\n switch (f.mapKind) {\n case \"enum\":\n return false;\n case \"message\":\n if (!reflectEquals(va, vb, opts)) {\n return false;\n }\n break;\n case \"scalar\":\n if (!(0, scalar_js_1.scalarEquals)(f.scalar, va, vb)) {\n return false;\n }\n break;\n }\n }\n break;\n }\n case \"list\": {\n const listA = a.get(f);\n const listB = b.get(f);\n if (listA.size != listB.size) {\n return false;\n }\n for (let i = 0; i < listA.size; i++) {\n const va = listA.get(i);\n const vb = listB.get(i);\n if (va === vb) {\n continue;\n }\n switch (f.listKind) {\n case \"enum\":\n return false;\n case \"message\":\n if (!reflectEquals(va, vb, opts)) {\n return false;\n }\n break;\n case \"scalar\":\n if (!(0, scalar_js_1.scalarEquals)(f.scalar, va, vb)) {\n return false;\n }\n break;\n }\n }\n break;\n }\n }\n return true;\n}\nfunction anyUnpackedEquals(a, b, opts) {\n if (a.typeUrl !== b.typeUrl) {\n return false;\n }\n const unpackedA = (0, index_js_1.anyUnpack)(a, opts.registry);\n const unpackedB = (0, index_js_1.anyUnpack)(b, opts.registry);\n if (unpackedA && unpackedB) {\n const schema = opts.registry.getMessage(unpackedA.$typeName);\n if (schema) {\n return equals(schema, unpackedA, unpackedB, opts);\n }\n }\n return (0, scalar_js_1.scalarEquals)(descriptors_js_1.ScalarType.BYTES, a.value, b.value);\n}\nfunction unknownEquals(a, b, registry) {\n function getTrulyUnknown(msg, registry) {\n var _a;\n const u = (_a = msg.getUnknown()) !== null && _a !== void 0 ? _a : [];\n return registry\n ? u.filter((uf) => !registry.getExtensionFor(msg.desc, uf.no))\n : u;\n }\n const unknownA = getTrulyUnknown(a, registry);\n const unknownB = getTrulyUnknown(b, registry);\n if (unknownA.length != unknownB.length) {\n return false;\n }\n for (let i = 0; i < unknownA.length; i++) {\n const a = unknownA[i], b = unknownB[i];\n if (a.no != b.no) {\n return false;\n }\n if (a.wireType != b.wireType) {\n return false;\n }\n if (!(0, scalar_js_1.scalarEquals)(descriptors_js_1.ScalarType.BYTES, a.data, b.data)) {\n return false;\n }\n }\n return true;\n}\nfunction extensionsEquals(a, b, opts) {\n function getSetExtensions(msg, registry) {\n var _a;\n return ((_a = msg.getUnknown()) !== null && _a !== void 0 ? _a : [])\n .map((uf) => registry.getExtensionFor(msg.desc, uf.no))\n .filter((e) => e != undefined)\n .filter((e, index, arr) => arr.indexOf(e) === index);\n }\n const extensionsA = getSetExtensions(a, opts.registry);\n const extensionsB = getSetExtensions(b, opts.registry);\n if (extensionsA.length != extensionsB.length ||\n extensionsA.some((e) => !extensionsB.includes(e))) {\n return false;\n }\n for (const extension of extensionsA) {\n const [containerA, field] = (0, extensions_js_1.createExtensionContainer)(extension, (0, extensions_js_1.getExtension)(a.message, extension));\n const [containerB] = (0, extensions_js_1.createExtensionContainer)(extension, (0, extensions_js_1.getExtension)(b.message, extension));\n if (!fieldEquals(field, containerA, containerB, opts)) {\n return false;\n }\n }\n return true;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/equals.js?");
270
-
271
- /***/ }),
272
-
273
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/extensions.js":
274
- /*!************************************************************************************************************!*\
275
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/extensions.js ***!
276
- \************************************************************************************************************/
277
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
278
-
279
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.getExtension = getExtension;\nexports.setExtension = setExtension;\nexports.clearExtension = clearExtension;\nexports.hasExtension = hasExtension;\nexports.hasOption = hasOption;\nexports.getOption = getOption;\nexports.createExtensionContainer = createExtensionContainer;\nconst create_js_1 = __webpack_require__(/*! ./create.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/create.js\");\nconst from_binary_js_1 = __webpack_require__(/*! ./from-binary.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/from-binary.js\");\nconst reflect_js_1 = __webpack_require__(/*! ./reflect/reflect.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect.js\");\nconst scalar_js_1 = __webpack_require__(/*! ./reflect/scalar.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/scalar.js\");\nconst to_binary_js_1 = __webpack_require__(/*! ./to-binary.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/to-binary.js\");\nconst binary_encoding_js_1 = __webpack_require__(/*! ./wire/binary-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/binary-encoding.js\");\nconst wrappers_js_1 = __webpack_require__(/*! ./wkt/wrappers.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/wrappers.js\");\n/**\n * Retrieve an extension value from a message.\n *\n * The function never returns undefined. Use hasExtension() to check whether an\n * extension is set. If the extension is not set, this function returns the\n * default value (if one was specified in the protobuf source), or the zero value\n * (for example `0` for numeric types, `[]` for repeated extension fields, and\n * an empty message instance for message fields).\n *\n * Extensions are stored as unknown fields on a message. To mutate an extension\n * value, make sure to store the new value with setExtension() after mutating.\n *\n * If the extension does not extend the given message, an error is raised.\n */\nfunction getExtension(message, extension) {\n assertExtendee(extension, message);\n const ufs = filterUnknownFields(message.$unknown, extension);\n const [container, field, get] = createExtensionContainer(extension);\n for (const uf of ufs) {\n (0, from_binary_js_1.readField)(container, new binary_encoding_js_1.BinaryReader(uf.data), field, uf.wireType, {\n readUnknownFields: false,\n });\n }\n return get();\n}\n/**\n * Set an extension value on a message. If the message already has a value for\n * this extension, the value is replaced.\n *\n * If the extension does not extend the given message, an error is raised.\n */\nfunction setExtension(message, extension, value) {\n var _a;\n assertExtendee(extension, message);\n const ufs = ((_a = message.$unknown) !== null && _a !== void 0 ? _a : []).filter((uf) => uf.no !== extension.number);\n const [container, field] = createExtensionContainer(extension, value);\n const writer = new binary_encoding_js_1.BinaryWriter();\n (0, to_binary_js_1.writeField)(writer, { writeUnknownFields: false }, container, field);\n const reader = new binary_encoding_js_1.BinaryReader(writer.finish());\n while (reader.pos < reader.len) {\n const [no, wireType] = reader.tag();\n const data = reader.skip(wireType, no);\n ufs.push({ no, wireType, data });\n }\n message.$unknown = ufs;\n}\n/**\n * Remove an extension value from a message.\n *\n * If the extension does not extend the given message, an error is raised.\n */\nfunction clearExtension(message, extension) {\n assertExtendee(extension, message);\n if (message.$unknown === undefined) {\n return;\n }\n message.$unknown = message.$unknown.filter((uf) => uf.no !== extension.number);\n}\n/**\n * Check whether an extension is set on a message.\n */\nfunction hasExtension(message, extension) {\n var _a;\n return (extension.extendee.typeName === message.$typeName &&\n !!((_a = message.$unknown) === null || _a === void 0 ? void 0 : _a.find((uf) => uf.no === extension.number)));\n}\n/**\n * Check whether an option is set on a descriptor.\n *\n * Options are extensions to the `google.protobuf.*Options` messages defined in\n * google/protobuf/descriptor.proto. This function gets the option message from\n * the descriptor, and calls hasExtension().\n */\nfunction hasOption(element, option) {\n const message = element.proto.options;\n if (!message) {\n return false;\n }\n return hasExtension(message, option);\n}\n/**\n * Retrieve an option value from a descriptor.\n *\n * Options are extensions to the `google.protobuf.*Options` messages defined in\n * google/protobuf/descriptor.proto. This function gets the option message from\n * the descriptor, and calls getExtension(). Same as getExtension(), this\n * function never returns undefined.\n */\nfunction getOption(element, option) {\n const message = element.proto.options;\n if (!message) {\n const [, , get] = createExtensionContainer(option);\n return get();\n }\n return getExtension(message, option);\n}\nfunction filterUnknownFields(unknownFields, extension) {\n if (unknownFields === undefined)\n return [];\n if (extension.fieldKind === \"enum\" || extension.fieldKind === \"scalar\") {\n // singular scalar fields do not merge, we pick the last\n for (let i = unknownFields.length - 1; i >= 0; --i) {\n if (unknownFields[i].no == extension.number) {\n return [unknownFields[i]];\n }\n }\n return [];\n }\n return unknownFields.filter((uf) => uf.no === extension.number);\n}\n/**\n * @private\n */\nfunction createExtensionContainer(extension, value) {\n const localName = extension.typeName;\n const field = Object.assign(Object.assign({}, extension), { kind: \"field\", parent: extension.extendee, localName });\n const desc = Object.assign(Object.assign({}, extension.extendee), { fields: [field], members: [field], oneofs: [] });\n const container = (0, create_js_1.create)(desc, value !== undefined ? { [localName]: value } : undefined);\n return [\n (0, reflect_js_1.reflect)(desc, container),\n field,\n () => {\n const value = container[localName];\n if (value === undefined) {\n // Only message fields are undefined, rest will have a zero value.\n const desc = extension.message;\n if ((0, wrappers_js_1.isWrapperDesc)(desc)) {\n return (0, scalar_js_1.scalarZeroValue)(desc.fields[0].scalar, desc.fields[0].longAsString);\n }\n return (0, create_js_1.create)(desc);\n }\n return value;\n },\n ];\n}\nfunction assertExtendee(extension, message) {\n if (extension.extendee.typeName != message.$typeName) {\n throw new Error(`extension ${extension.typeName} can only be applied to message ${extension.extendee.typeName}`);\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/extensions.js?");
280
-
281
- /***/ }),
282
-
283
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/fields.js":
284
- /*!********************************************************************************************************!*\
285
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/fields.js ***!
286
- \********************************************************************************************************/
287
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
177
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
288
178
 
289
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.isFieldSet = isFieldSet;\nexports.clearField = clearField;\nconst unsafe_js_1 = __webpack_require__(/*! ./reflect/unsafe.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/unsafe.js\");\n/**\n * Returns true if the field is set.\n *\n * - Scalar and enum fields with implicit presence (proto3):\n * Set if not a zero value.\n *\n * - Scalar and enum fields with explicit presence (proto2, oneof):\n * Set if a value was set when creating or parsing the message, or when a\n * value was assigned to the field's property.\n *\n * - Message fields:\n * Set if the property is not undefined.\n *\n * - List and map fields:\n * Set if not empty.\n */\nfunction isFieldSet(message, field) {\n return (field.parent.typeName == message.$typeName && (0, unsafe_js_1.unsafeIsSet)(message, field));\n}\n/**\n * Resets the field, so that isFieldSet() will return false.\n */\nfunction clearField(message, field) {\n if (field.parent.typeName == message.$typeName) {\n (0, unsafe_js_1.unsafeClear)(message, field);\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/fields.js?");
179
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ScalarType: () => (/* binding */ ScalarType)\n/* harmony export */ });\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n/**\n * Scalar value types. This is a subset of field types declared by protobuf\n * enum google.protobuf.FieldDescriptorProto.Type The types GROUP and MESSAGE\n * are omitted, but the numerical values are identical.\n */\nvar ScalarType;\n(function (ScalarType) {\n // 0 is reserved for errors.\n // Order is weird for historical reasons.\n ScalarType[ScalarType[\"DOUBLE\"] = 1] = \"DOUBLE\";\n ScalarType[ScalarType[\"FLOAT\"] = 2] = \"FLOAT\";\n // Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if\n // negative values are likely.\n ScalarType[ScalarType[\"INT64\"] = 3] = \"INT64\";\n ScalarType[ScalarType[\"UINT64\"] = 4] = \"UINT64\";\n // Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if\n // negative values are likely.\n ScalarType[ScalarType[\"INT32\"] = 5] = \"INT32\";\n ScalarType[ScalarType[\"FIXED64\"] = 6] = \"FIXED64\";\n ScalarType[ScalarType[\"FIXED32\"] = 7] = \"FIXED32\";\n ScalarType[ScalarType[\"BOOL\"] = 8] = \"BOOL\";\n ScalarType[ScalarType[\"STRING\"] = 9] = \"STRING\";\n // Tag-delimited aggregate.\n // Group type is deprecated and not supported in proto3. However, Proto3\n // implementations should still be able to parse the group wire format and\n // treat group fields as unknown fields.\n // TYPE_GROUP = 10,\n // TYPE_MESSAGE = 11, // Length-delimited aggregate.\n // New in version 2.\n ScalarType[ScalarType[\"BYTES\"] = 12] = \"BYTES\";\n ScalarType[ScalarType[\"UINT32\"] = 13] = \"UINT32\";\n // TYPE_ENUM = 14,\n ScalarType[ScalarType[\"SFIXED32\"] = 15] = \"SFIXED32\";\n ScalarType[ScalarType[\"SFIXED64\"] = 16] = \"SFIXED64\";\n ScalarType[ScalarType[\"SINT32\"] = 17] = \"SINT32\";\n ScalarType[ScalarType[\"SINT64\"] = 18] = \"SINT64\";\n})(ScalarType || (ScalarType = {}));\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/descriptors.js?");
290
180
 
291
181
  /***/ }),
292
182
 
293
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/from-binary.js":
183
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/from-binary.js":
294
184
  /*!*************************************************************************************************************!*\
295
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/from-binary.js ***!
185
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/from-binary.js ***!
296
186
  \*************************************************************************************************************/
297
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
298
-
299
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.fromBinary = fromBinary;\nexports.mergeFromBinary = mergeFromBinary;\nexports.readField = readField;\nconst descriptors_js_1 = __webpack_require__(/*! ./descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js\");\nconst scalar_js_1 = __webpack_require__(/*! ./reflect/scalar.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/scalar.js\");\nconst reflect_js_1 = __webpack_require__(/*! ./reflect/reflect.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect.js\");\nconst binary_encoding_js_1 = __webpack_require__(/*! ./wire/binary-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/binary-encoding.js\");\n// Default options for parsing binary data.\nconst readDefaults = {\n readUnknownFields: true,\n};\nfunction makeReadOptions(options) {\n return options ? Object.assign(Object.assign({}, readDefaults), options) : readDefaults;\n}\n/**\n * Parse serialized binary data.\n */\nfunction fromBinary(schema, bytes, options) {\n const msg = (0, reflect_js_1.reflect)(schema, undefined, false);\n readMessage(msg, new binary_encoding_js_1.BinaryReader(bytes), makeReadOptions(options), false, bytes.byteLength);\n return msg.message;\n}\n/**\n * Parse from binary data, merging fields.\n *\n * Repeated fields are appended. Map entries are added, overwriting\n * existing keys.\n *\n * If a message field is already present, it will be merged with the\n * new data.\n */\nfunction mergeFromBinary(schema, target, bytes, options) {\n readMessage((0, reflect_js_1.reflect)(schema, target, false), new binary_encoding_js_1.BinaryReader(bytes), makeReadOptions(options), false, bytes.byteLength);\n return target;\n}\n/**\n * If `delimited` is false, read the length given in `lengthOrDelimitedFieldNo`.\n *\n * If `delimited` is true, read until an EndGroup tag. `lengthOrDelimitedFieldNo`\n * is the expected field number.\n *\n * @private\n */\nfunction readMessage(message, reader, options, delimited, lengthOrDelimitedFieldNo) {\n var _a;\n const end = delimited ? reader.len : reader.pos + lengthOrDelimitedFieldNo;\n let fieldNo, wireType;\n const unknownFields = (_a = message.getUnknown()) !== null && _a !== void 0 ? _a : [];\n while (reader.pos < end) {\n [fieldNo, wireType] = reader.tag();\n if (delimited && wireType == binary_encoding_js_1.WireType.EndGroup) {\n break;\n }\n const field = message.findNumber(fieldNo);\n if (!field) {\n const data = reader.skip(wireType, fieldNo);\n if (options.readUnknownFields) {\n unknownFields.push({ no: fieldNo, wireType, data });\n }\n continue;\n }\n readField(message, reader, field, wireType, options);\n }\n if (delimited) {\n if (wireType != binary_encoding_js_1.WireType.EndGroup || fieldNo !== lengthOrDelimitedFieldNo) {\n throw new Error(`invalid end group tag`);\n }\n }\n if (unknownFields.length > 0) {\n message.setUnknown(unknownFields);\n }\n}\n/**\n * @private\n */\nfunction readField(message, reader, field, wireType, options) {\n switch (field.fieldKind) {\n case \"scalar\":\n message.set(field, readScalar(reader, field.scalar));\n break;\n case \"enum\":\n message.set(field, readScalar(reader, descriptors_js_1.ScalarType.INT32));\n break;\n case \"message\":\n message.set(field, readMessageField(reader, options, field, message.get(field)));\n break;\n case \"list\":\n readListField(reader, wireType, message.get(field), options);\n break;\n case \"map\":\n readMapEntry(reader, message.get(field), options);\n break;\n }\n}\n// Read a map field, expecting key field = 1, value field = 2\nfunction readMapEntry(reader, map, options) {\n const field = map.field();\n let key, val;\n const end = reader.pos + reader.uint32();\n while (reader.pos < end) {\n const [fieldNo] = reader.tag();\n switch (fieldNo) {\n case 1:\n key = readScalar(reader, field.mapKey);\n break;\n case 2:\n switch (field.mapKind) {\n case \"scalar\":\n val = readScalar(reader, field.scalar);\n break;\n case \"enum\":\n val = reader.int32();\n break;\n case \"message\":\n val = readMessageField(reader, options, field);\n break;\n }\n break;\n }\n }\n if (key === undefined) {\n key = (0, scalar_js_1.scalarZeroValue)(field.mapKey, false);\n }\n if (val === undefined) {\n switch (field.mapKind) {\n case \"scalar\":\n val = (0, scalar_js_1.scalarZeroValue)(field.scalar, false);\n break;\n case \"enum\":\n val = field.enum.values[0].number;\n break;\n case \"message\":\n val = (0, reflect_js_1.reflect)(field.message, undefined, false);\n break;\n }\n }\n map.set(key, val);\n}\nfunction readListField(reader, wireType, list, options) {\n var _a;\n const field = list.field();\n if (field.listKind === \"message\") {\n list.add(readMessageField(reader, options, field));\n return;\n }\n const scalarType = (_a = field.scalar) !== null && _a !== void 0 ? _a : descriptors_js_1.ScalarType.INT32;\n const packed = wireType == binary_encoding_js_1.WireType.LengthDelimited &&\n scalarType != descriptors_js_1.ScalarType.STRING &&\n scalarType != descriptors_js_1.ScalarType.BYTES;\n if (!packed) {\n list.add(readScalar(reader, scalarType));\n return;\n }\n const e = reader.uint32() + reader.pos;\n while (reader.pos < e) {\n list.add(readScalar(reader, scalarType));\n }\n}\nfunction readMessageField(reader, options, field, mergeMessage) {\n const delimited = field.delimitedEncoding;\n const message = mergeMessage !== null && mergeMessage !== void 0 ? mergeMessage : (0, reflect_js_1.reflect)(field.message, undefined, false);\n readMessage(message, reader, options, delimited, delimited ? field.number : reader.uint32());\n return message;\n}\nfunction readScalar(reader, type) {\n switch (type) {\n case descriptors_js_1.ScalarType.STRING:\n return reader.string();\n case descriptors_js_1.ScalarType.BOOL:\n return reader.bool();\n case descriptors_js_1.ScalarType.DOUBLE:\n return reader.double();\n case descriptors_js_1.ScalarType.FLOAT:\n return reader.float();\n case descriptors_js_1.ScalarType.INT32:\n return reader.int32();\n case descriptors_js_1.ScalarType.INT64:\n return reader.int64();\n case descriptors_js_1.ScalarType.UINT64:\n return reader.uint64();\n case descriptors_js_1.ScalarType.FIXED64:\n return reader.fixed64();\n case descriptors_js_1.ScalarType.BYTES:\n return reader.bytes();\n case descriptors_js_1.ScalarType.FIXED32:\n return reader.fixed32();\n case descriptors_js_1.ScalarType.SFIXED32:\n return reader.sfixed32();\n case descriptors_js_1.ScalarType.SFIXED64:\n return reader.sfixed64();\n case descriptors_js_1.ScalarType.SINT64:\n return reader.sint64();\n case descriptors_js_1.ScalarType.UINT32:\n return reader.uint32();\n case descriptors_js_1.ScalarType.SINT32:\n return reader.sint32();\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/from-binary.js?");
300
-
301
- /***/ }),
302
-
303
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/from-json.js":
304
- /*!***********************************************************************************************************!*\
305
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/from-json.js ***!
306
- \***********************************************************************************************************/
307
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
308
-
309
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.fromJsonString = fromJsonString;\nexports.mergeFromJsonString = mergeFromJsonString;\nexports.fromJson = fromJson;\nexports.mergeFromJson = mergeFromJson;\nexports.enumFromJson = enumFromJson;\nexports.isEnumJson = isEnumJson;\n/* eslint-disable no-case-declarations,@typescript-eslint/restrict-template-expressions */\nconst descriptors_js_1 = __webpack_require__(/*! ./descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js\");\nconst proto_int64_js_1 = __webpack_require__(/*! ./proto-int64.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js\");\nconst create_js_1 = __webpack_require__(/*! ./create.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/create.js\");\nconst reflect_js_1 = __webpack_require__(/*! ./reflect/reflect.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect.js\");\nconst error_js_1 = __webpack_require__(/*! ./reflect/error.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/error.js\");\nconst reflect_check_js_1 = __webpack_require__(/*! ./reflect/reflect-check.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect-check.js\");\nconst scalar_js_1 = __webpack_require__(/*! ./reflect/scalar.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/scalar.js\");\nconst base64_encoding_js_1 = __webpack_require__(/*! ./wire/base64-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/base64-encoding.js\");\nconst index_js_1 = __webpack_require__(/*! ./wkt/index.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/index.js\");\nconst extensions_js_1 = __webpack_require__(/*! ./extensions.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/extensions.js\");\n// Default options for parsing JSON.\nconst jsonReadDefaults = {\n ignoreUnknownFields: false,\n};\nfunction makeReadOptions(options) {\n return options ? Object.assign(Object.assign({}, jsonReadDefaults), options) : jsonReadDefaults;\n}\n/**\n * Parse a message from a JSON string.\n */\nfunction fromJsonString(schema, json, options) {\n return fromJson(schema, parseJsonString(json, schema.typeName), options);\n}\n/**\n * Parse a message from a JSON string, merging fields.\n *\n * Repeated fields are appended. Map entries are added, overwriting\n * existing keys.\n *\n * If a message field is already present, it will be merged with the\n * new data.\n */\nfunction mergeFromJsonString(schema, target, json, options) {\n return mergeFromJson(schema, target, parseJsonString(json, schema.typeName), options);\n}\n/**\n * Parse a message from a JSON value.\n */\nfunction fromJson(schema, json, options) {\n const msg = (0, reflect_js_1.reflect)(schema);\n try {\n readMessage(msg, json, makeReadOptions(options));\n }\n catch (e) {\n if ((0, error_js_1.isFieldError)(e)) {\n // @ts-expect-error we use the ES2022 error CTOR option \"cause\" for better stack traces\n throw new Error(`cannot decode ${e.field()} from JSON: ${e.message}`, {\n cause: e,\n });\n }\n throw e;\n }\n return msg.message;\n}\n/**\n * Parse a message from a JSON value, merging fields.\n *\n * Repeated fields are appended. Map entries are added, overwriting\n * existing keys.\n *\n * If a message field is already present, it will be merged with the\n * new data.\n */\nfunction mergeFromJson(schema, target, json, options) {\n try {\n readMessage((0, reflect_js_1.reflect)(schema, target), json, makeReadOptions(options));\n }\n catch (e) {\n if ((0, error_js_1.isFieldError)(e)) {\n // @ts-expect-error we use the ES2022 error CTOR option \"cause\" for better stack traces\n throw new Error(`cannot decode ${e.field()} from JSON: ${e.message}`, {\n cause: e,\n });\n }\n throw e;\n }\n return target;\n}\n/**\n * Parses an enum value from JSON.\n */\nfunction enumFromJson(descEnum, json) {\n const val = readEnum(descEnum, json, false, false);\n if (val === tokenIgnoredUnknownEnum) {\n throw new Error(`cannot decode ${String(descEnum)} from JSON: ${(0, reflect_check_js_1.formatVal)(json)}`);\n }\n return val;\n}\n/**\n * Is the given value a JSON enum value?\n */\nfunction isEnumJson(descEnum, value) {\n return undefined !== descEnum.values.find((v) => v.name === value);\n}\nfunction readMessage(msg, json, opts) {\n var _a;\n if (tryWktFromJson(msg, json, opts)) {\n return;\n }\n if (json == null || Array.isArray(json) || typeof json != \"object\") {\n throw new Error(`cannot decode ${msg.desc} from JSON: ${(0, reflect_check_js_1.formatVal)(json)}`);\n }\n const oneofSeen = new Map();\n const jsonNames = new Map();\n for (const field of msg.desc.fields) {\n jsonNames.set(field.name, field).set(field.jsonName, field);\n }\n for (const [jsonKey, jsonValue] of Object.entries(json)) {\n const field = jsonNames.get(jsonKey);\n if (field) {\n if (field.oneof) {\n if (jsonValue === null && field.fieldKind == \"scalar\") {\n // see conformance test Required.Proto3.JsonInput.OneofFieldNull{First,Second}\n continue;\n }\n const seen = oneofSeen.get(field.oneof);\n if (seen !== undefined) {\n throw new error_js_1.FieldError(field.oneof, `oneof set multiple times by ${seen.name} and ${field.name}`);\n }\n oneofSeen.set(field.oneof, field);\n }\n readField(msg, field, jsonValue, opts);\n }\n else {\n let extension = undefined;\n if (jsonKey.startsWith(\"[\") &&\n jsonKey.endsWith(\"]\") &&\n (extension = (_a = opts.registry) === null || _a === void 0 ? void 0 : _a.getExtension(jsonKey.substring(1, jsonKey.length - 1))) &&\n extension.extendee.typeName === msg.desc.typeName) {\n const [container, field, get] = (0, extensions_js_1.createExtensionContainer)(extension);\n readField(container, field, jsonValue, opts);\n (0, extensions_js_1.setExtension)(msg.message, extension, get());\n }\n if (!extension && !opts.ignoreUnknownFields) {\n throw new Error(`cannot decode ${msg.desc} from JSON: key \"${jsonKey}\" is unknown`);\n }\n }\n }\n}\nfunction readField(msg, field, json, opts) {\n switch (field.fieldKind) {\n case \"scalar\":\n readScalarField(msg, field, json);\n break;\n case \"enum\":\n readEnumField(msg, field, json, opts);\n break;\n case \"message\":\n readMessageField(msg, field, json, opts);\n break;\n case \"list\":\n readListField(msg.get(field), json, opts);\n break;\n case \"map\":\n readMapField(msg.get(field), json, opts);\n break;\n }\n}\nfunction readMapField(map, json, opts) {\n if (json === null) {\n return;\n }\n const field = map.field();\n if (typeof json != \"object\" || Array.isArray(json)) {\n throw new error_js_1.FieldError(field, \"expected object, got \" + (0, reflect_check_js_1.formatVal)(json));\n }\n for (const [jsonMapKey, jsonMapValue] of Object.entries(json)) {\n if (jsonMapValue === null) {\n throw new error_js_1.FieldError(field, \"map value must not be null\");\n }\n let value;\n switch (field.mapKind) {\n case \"message\":\n const msgValue = (0, reflect_js_1.reflect)(field.message);\n readMessage(msgValue, jsonMapValue, opts);\n value = msgValue;\n break;\n case \"enum\":\n value = readEnum(field.enum, jsonMapValue, opts.ignoreUnknownFields, true);\n if (value === tokenIgnoredUnknownEnum) {\n return;\n }\n break;\n case \"scalar\":\n value = scalarFromJson(field, jsonMapValue, true);\n break;\n }\n const key = mapKeyFromJson(field.mapKey, jsonMapKey);\n map.set(key, value);\n }\n}\nfunction readListField(list, json, opts) {\n if (json === null) {\n return;\n }\n const field = list.field();\n if (!Array.isArray(json)) {\n throw new error_js_1.FieldError(field, \"expected Array, got \" + (0, reflect_check_js_1.formatVal)(json));\n }\n for (const jsonItem of json) {\n if (jsonItem === null) {\n throw new error_js_1.FieldError(field, \"list item must not be null\");\n }\n switch (field.listKind) {\n case \"message\":\n const msgValue = (0, reflect_js_1.reflect)(field.message);\n readMessage(msgValue, jsonItem, opts);\n list.add(msgValue);\n break;\n case \"enum\":\n const enumValue = readEnum(field.enum, jsonItem, opts.ignoreUnknownFields, true);\n if (enumValue !== tokenIgnoredUnknownEnum) {\n list.add(enumValue);\n }\n break;\n case \"scalar\":\n list.add(scalarFromJson(field, jsonItem, true));\n break;\n }\n }\n}\nfunction readMessageField(msg, field, json, opts) {\n if (json === null && field.message.typeName != \"google.protobuf.Value\") {\n msg.clear(field);\n return;\n }\n const msgValue = msg.isSet(field) ? msg.get(field) : (0, reflect_js_1.reflect)(field.message);\n readMessage(msgValue, json, opts);\n msg.set(field, msgValue);\n}\nfunction readEnumField(msg, field, json, opts) {\n const enumValue = readEnum(field.enum, json, opts.ignoreUnknownFields, false);\n if (enumValue === tokenNull) {\n msg.clear(field);\n }\n else if (enumValue !== tokenIgnoredUnknownEnum) {\n msg.set(field, enumValue);\n }\n}\nfunction readScalarField(msg, field, json) {\n const scalarValue = scalarFromJson(field, json, false);\n if (scalarValue === tokenNull) {\n msg.clear(field);\n }\n else {\n msg.set(field, scalarValue);\n }\n}\nconst tokenIgnoredUnknownEnum = Symbol();\nfunction readEnum(desc, json, ignoreUnknownFields, nullAsZeroValue) {\n if (json === null) {\n if (desc.typeName == \"google.protobuf.NullValue\") {\n return 0; // google.protobuf.NullValue.NULL_VALUE = 0\n }\n return nullAsZeroValue ? desc.values[0].number : tokenNull;\n }\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (typeof json) {\n case \"number\":\n if (Number.isInteger(json)) {\n return json;\n }\n break;\n case \"string\":\n const value = desc.values.find((ev) => ev.name === json);\n if (value !== undefined) {\n return value.number;\n }\n if (ignoreUnknownFields) {\n return tokenIgnoredUnknownEnum;\n }\n break;\n }\n throw new Error(`cannot decode ${desc} from JSON: ${(0, reflect_check_js_1.formatVal)(json)}`);\n}\nconst tokenNull = Symbol();\nfunction scalarFromJson(field, json, nullAsZeroValue) {\n if (json === null) {\n if (nullAsZeroValue) {\n return (0, scalar_js_1.scalarZeroValue)(field.scalar, false);\n }\n return tokenNull;\n }\n // int64, sfixed64, sint64, fixed64, uint64: Reflect supports string and number.\n // string, bool: Supported by reflect.\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (field.scalar) {\n // float, double: JSON value will be a number or one of the special string values \"NaN\", \"Infinity\", and \"-Infinity\".\n // Either numbers or strings are accepted. Exponent notation is also accepted.\n case descriptors_js_1.ScalarType.DOUBLE:\n case descriptors_js_1.ScalarType.FLOAT:\n if (json === \"NaN\")\n return NaN;\n if (json === \"Infinity\")\n return Number.POSITIVE_INFINITY;\n if (json === \"-Infinity\")\n return Number.NEGATIVE_INFINITY;\n if (typeof json == \"number\") {\n if (isNaN(json)) {\n // NaN must be encoded with string constants\n throw new error_js_1.FieldError(field, \"unexpected NaN number\");\n }\n if (!isFinite(json)) {\n // Infinity must be encoded with string constants\n throw new error_js_1.FieldError(field, \"unexpected infinite number\");\n }\n break;\n }\n if (typeof json == \"string\") {\n if (json === \"\") {\n // empty string is not a number\n break;\n }\n if (json.trim().length !== json.length) {\n // extra whitespace\n break;\n }\n const float = Number(json);\n if (!isFinite(float)) {\n // Infinity and NaN must be encoded with string constants\n break;\n }\n return float;\n }\n break;\n // int32, fixed32, uint32: JSON value will be a decimal number. Either numbers or strings are accepted.\n case descriptors_js_1.ScalarType.INT32:\n case descriptors_js_1.ScalarType.FIXED32:\n case descriptors_js_1.ScalarType.SFIXED32:\n case descriptors_js_1.ScalarType.SINT32:\n case descriptors_js_1.ScalarType.UINT32:\n return int32FromJson(json);\n // bytes: JSON value will be the data encoded as a string using standard base64 encoding with paddings.\n // Either standard or URL-safe base64 encoding with/without paddings are accepted.\n case descriptors_js_1.ScalarType.BYTES:\n if (typeof json == \"string\") {\n if (json === \"\") {\n return new Uint8Array(0);\n }\n try {\n return (0, base64_encoding_js_1.base64Decode)(json);\n }\n catch (e) {\n const message = e instanceof Error ? e.message : String(e);\n throw new error_js_1.FieldError(field, message);\n }\n }\n break;\n }\n return json;\n}\n/**\n * Try to parse a JSON value to a map key for the reflect API.\n *\n * Returns the input if the JSON value cannot be converted.\n */\nfunction mapKeyFromJson(type, json) {\n switch (type) {\n case descriptors_js_1.ScalarType.BOOL:\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (json) {\n case \"true\":\n return true;\n case \"false\":\n return false;\n }\n return json;\n case descriptors_js_1.ScalarType.INT32:\n case descriptors_js_1.ScalarType.FIXED32:\n case descriptors_js_1.ScalarType.UINT32:\n case descriptors_js_1.ScalarType.SFIXED32:\n case descriptors_js_1.ScalarType.SINT32:\n return int32FromJson(json);\n default:\n return json;\n }\n}\n/**\n * Try to parse a JSON value to a 32-bit integer for the reflect API.\n *\n * Returns the input if the JSON value cannot be converted.\n */\nfunction int32FromJson(json) {\n if (typeof json == \"string\") {\n if (json === \"\") {\n // empty string is not a number\n return json;\n }\n if (json.trim().length !== json.length) {\n // extra whitespace\n return json;\n }\n const num = Number(json);\n if (Number.isNaN(num)) {\n // not a number\n return json;\n }\n return num;\n }\n return json;\n}\nfunction parseJsonString(jsonString, typeName) {\n try {\n return JSON.parse(jsonString);\n }\n catch (e) {\n const message = e instanceof Error ? e.message : String(e);\n throw new Error(`cannot decode message ${typeName} from JSON: ${message}`, \n // @ts-expect-error we use the ES2022 error CTOR option \"cause\" for better stack traces\n { cause: e });\n }\n}\nfunction tryWktFromJson(msg, jsonValue, opts) {\n if (!msg.desc.typeName.startsWith(\"google.protobuf.\")) {\n return false;\n }\n switch (msg.desc.typeName) {\n case \"google.protobuf.Any\":\n anyFromJson(msg.message, jsonValue, opts);\n return true;\n case \"google.protobuf.Timestamp\":\n timestampFromJson(msg.message, jsonValue);\n return true;\n case \"google.protobuf.Duration\":\n durationFromJson(msg.message, jsonValue);\n return true;\n case \"google.protobuf.FieldMask\":\n fieldMaskFromJson(msg.message, jsonValue);\n return true;\n case \"google.protobuf.Struct\":\n structFromJson(msg.message, jsonValue);\n return true;\n case \"google.protobuf.Value\":\n valueFromJson(msg.message, jsonValue);\n return true;\n case \"google.protobuf.ListValue\":\n listValueFromJson(msg.message, jsonValue);\n return true;\n default:\n if ((0, index_js_1.isWrapperDesc)(msg.desc)) {\n const valueField = msg.desc.fields[0];\n if (jsonValue === null) {\n msg.clear(valueField);\n }\n else {\n msg.set(valueField, scalarFromJson(valueField, jsonValue, true));\n }\n return true;\n }\n return false;\n }\n}\nfunction anyFromJson(any, json, opts) {\n var _a;\n if (json === null || Array.isArray(json) || typeof json != \"object\") {\n throw new Error(`cannot decode message ${any.$typeName} from JSON: expected object but got ${(0, reflect_check_js_1.formatVal)(json)}`);\n }\n if (Object.keys(json).length == 0) {\n return;\n }\n const typeUrl = json[\"@type\"];\n if (typeof typeUrl != \"string\" || typeUrl == \"\") {\n throw new Error(`cannot decode message ${any.$typeName} from JSON: \"@type\" is empty`);\n }\n const typeName = typeUrl.includes(\"/\")\n ? typeUrl.substring(typeUrl.lastIndexOf(\"/\") + 1)\n : typeUrl;\n if (!typeName.length) {\n throw new Error(`cannot decode message ${any.$typeName} from JSON: \"@type\" is invalid`);\n }\n const desc = (_a = opts.registry) === null || _a === void 0 ? void 0 : _a.getMessage(typeName);\n if (!desc) {\n throw new Error(`cannot decode message ${any.$typeName} from JSON: ${typeUrl} is not in the type registry`);\n }\n const msg = (0, reflect_js_1.reflect)(desc);\n if (typeName.startsWith(\"google.protobuf.\") &&\n Object.prototype.hasOwnProperty.call(json, \"value\")) {\n const value = json[\"value\"];\n readMessage(msg, value, opts);\n }\n else {\n const copy = Object.assign({}, json);\n delete copy[\"@type\"];\n readMessage(msg, copy, opts);\n }\n (0, index_js_1.anyPack)(msg.desc, msg.message, any);\n}\nfunction timestampFromJson(timestamp, json) {\n if (typeof json !== \"string\") {\n throw new Error(`cannot decode message ${timestamp.$typeName} from JSON: ${(0, reflect_check_js_1.formatVal)(json)}`);\n }\n const matches = json.match(/^([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})(?:Z|\\.([0-9]{3,9})Z|([+-][0-9][0-9]:[0-9][0-9]))$/);\n if (!matches) {\n throw new Error(`cannot decode message ${timestamp.$typeName} from JSON: invalid RFC 3339 string`);\n }\n const ms = Date.parse(\n //prettier-ignore\n matches[1] + \"-\" + matches[2] + \"-\" + matches[3] + \"T\" + matches[4] + \":\" + matches[5] + \":\" + matches[6] + (matches[8] ? matches[8] : \"Z\"));\n if (Number.isNaN(ms)) {\n throw new Error(`cannot decode message ${timestamp.$typeName} from JSON: invalid RFC 3339 string`);\n }\n if (ms < Date.parse(\"0001-01-01T00:00:00Z\") ||\n ms > Date.parse(\"9999-12-31T23:59:59Z\")) {\n throw new Error(`cannot decode message ${timestamp.$typeName} from JSON: must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive`);\n }\n timestamp.seconds = proto_int64_js_1.protoInt64.parse(ms / 1000);\n timestamp.nanos = 0;\n if (matches[7]) {\n timestamp.nanos =\n parseInt(\"1\" + matches[7] + \"0\".repeat(9 - matches[7].length)) -\n 1000000000;\n }\n}\nfunction durationFromJson(duration, json) {\n if (typeof json !== \"string\") {\n throw new Error(`cannot decode message ${duration.$typeName} from JSON: ${(0, reflect_check_js_1.formatVal)(json)}`);\n }\n const match = json.match(/^(-?[0-9]+)(?:\\.([0-9]+))?s/);\n if (match === null) {\n throw new Error(`cannot decode message ${duration.$typeName} from JSON: ${(0, reflect_check_js_1.formatVal)(json)}`);\n }\n const longSeconds = Number(match[1]);\n if (longSeconds > 315576000000 || longSeconds < -315576000000) {\n throw new Error(`cannot decode message ${duration.$typeName} from JSON: ${(0, reflect_check_js_1.formatVal)(json)}`);\n }\n duration.seconds = proto_int64_js_1.protoInt64.parse(longSeconds);\n if (typeof match[2] !== \"string\") {\n return;\n }\n const nanosStr = match[2] + \"0\".repeat(9 - match[2].length);\n duration.nanos = parseInt(nanosStr);\n if (longSeconds < 0 || Object.is(longSeconds, -0)) {\n duration.nanos = -duration.nanos;\n }\n}\nfunction fieldMaskFromJson(fieldMask, json) {\n if (typeof json !== \"string\") {\n throw new Error(`cannot decode message ${fieldMask.$typeName} from JSON: ${(0, reflect_check_js_1.formatVal)(json)}`);\n }\n if (json === \"\") {\n return;\n }\n function camelToSnake(str) {\n if (str.includes(\"_\")) {\n throw new Error(`cannot decode message ${fieldMask.$typeName} from JSON: path names must be lowerCamelCase`);\n }\n const sc = str.replace(/[A-Z]/g, (letter) => \"_\" + letter.toLowerCase());\n return sc[0] === \"_\" ? sc.substring(1) : sc;\n }\n fieldMask.paths = json.split(\",\").map(camelToSnake);\n}\nfunction structFromJson(struct, json) {\n if (typeof json != \"object\" || json == null || Array.isArray(json)) {\n throw new Error(`cannot decode message ${struct.$typeName} from JSON ${(0, reflect_check_js_1.formatVal)(json)}`);\n }\n for (const [k, v] of Object.entries(json)) {\n const parsedV = (0, create_js_1.create)(index_js_1.ValueSchema);\n valueFromJson(parsedV, v);\n struct.fields[k] = parsedV;\n }\n}\nfunction valueFromJson(value, json) {\n switch (typeof json) {\n case \"number\":\n value.kind = { case: \"numberValue\", value: json };\n break;\n case \"string\":\n value.kind = { case: \"stringValue\", value: json };\n break;\n case \"boolean\":\n value.kind = { case: \"boolValue\", value: json };\n break;\n case \"object\":\n if (json === null) {\n value.kind = { case: \"nullValue\", value: index_js_1.NullValue.NULL_VALUE };\n }\n else if (Array.isArray(json)) {\n const listValue = (0, create_js_1.create)(index_js_1.ListValueSchema);\n listValueFromJson(listValue, json);\n value.kind = { case: \"listValue\", value: listValue };\n }\n else {\n const struct = (0, create_js_1.create)(index_js_1.StructSchema);\n structFromJson(struct, json);\n value.kind = { case: \"structValue\", value: struct };\n }\n break;\n default:\n throw new Error(`cannot decode message ${value.$typeName} from JSON ${(0, reflect_check_js_1.formatVal)(json)}`);\n }\n return value;\n}\nfunction listValueFromJson(listValue, json) {\n if (!Array.isArray(json)) {\n throw new Error(`cannot decode message ${listValue.$typeName} from JSON ${(0, reflect_check_js_1.formatVal)(json)}`);\n }\n for (const e of json) {\n const value = (0, create_js_1.create)(index_js_1.ValueSchema);\n valueFromJson(value, e);\n listValue.values.push(value);\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/from-json.js?");
310
-
311
- /***/ }),
312
-
313
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/index.js":
314
- /*!*******************************************************************************************************!*\
315
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/index.js ***!
316
- \*******************************************************************************************************/
317
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
187
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
318
188
 
319
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.getOption = exports.hasOption = exports.clearExtension = exports.setExtension = exports.getExtension = exports.hasExtension = exports.mergeFromBinary = exports.fromBinary = exports.toBinary = void 0;\n__exportStar(__webpack_require__(/*! ./types.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/types.js\"), exports);\n__exportStar(__webpack_require__(/*! ./is-message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/is-message.js\"), exports);\n__exportStar(__webpack_require__(/*! ./create.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/create.js\"), exports);\n__exportStar(__webpack_require__(/*! ./clone.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/clone.js\"), exports);\n__exportStar(__webpack_require__(/*! ./descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js\"), exports);\n__exportStar(__webpack_require__(/*! ./equals.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/equals.js\"), exports);\n__exportStar(__webpack_require__(/*! ./fields.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/fields.js\"), exports);\n__exportStar(__webpack_require__(/*! ./registry.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/registry.js\"), exports);\nvar to_binary_js_1 = __webpack_require__(/*! ./to-binary.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/to-binary.js\");\nObject.defineProperty(exports, \"toBinary\", ({ enumerable: true, get: function () { return to_binary_js_1.toBinary; } }));\nvar from_binary_js_1 = __webpack_require__(/*! ./from-binary.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/from-binary.js\");\nObject.defineProperty(exports, \"fromBinary\", ({ enumerable: true, get: function () { return from_binary_js_1.fromBinary; } }));\nObject.defineProperty(exports, \"mergeFromBinary\", ({ enumerable: true, get: function () { return from_binary_js_1.mergeFromBinary; } }));\n__exportStar(__webpack_require__(/*! ./to-json.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/to-json.js\"), exports);\n__exportStar(__webpack_require__(/*! ./from-json.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/from-json.js\"), exports);\nvar extensions_js_1 = __webpack_require__(/*! ./extensions.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/extensions.js\");\nObject.defineProperty(exports, \"hasExtension\", ({ enumerable: true, get: function () { return extensions_js_1.hasExtension; } }));\nObject.defineProperty(exports, \"getExtension\", ({ enumerable: true, get: function () { return extensions_js_1.getExtension; } }));\nObject.defineProperty(exports, \"setExtension\", ({ enumerable: true, get: function () { return extensions_js_1.setExtension; } }));\nObject.defineProperty(exports, \"clearExtension\", ({ enumerable: true, get: function () { return extensions_js_1.clearExtension; } }));\nObject.defineProperty(exports, \"hasOption\", ({ enumerable: true, get: function () { return extensions_js_1.hasOption; } }));\nObject.defineProperty(exports, \"getOption\", ({ enumerable: true, get: function () { return extensions_js_1.getOption; } }));\n__exportStar(__webpack_require__(/*! ./proto-int64.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js\"), exports);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/index.js?");
189
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ fromBinary: () => (/* binding */ fromBinary),\n/* harmony export */ mergeFromBinary: () => (/* binding */ mergeFromBinary),\n/* harmony export */ readField: () => (/* binding */ readField)\n/* harmony export */ });\n/* harmony import */ var _descriptors_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/descriptors.js\");\n/* harmony import */ var _reflect_scalar_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./reflect/scalar.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/scalar.js\");\n/* harmony import */ var _reflect_reflect_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./reflect/reflect.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect.js\");\n/* harmony import */ var _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./wire/binary-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/binary-encoding.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n\n\n\n// Default options for parsing binary data.\nconst readDefaults = {\n readUnknownFields: true,\n};\nfunction makeReadOptions(options) {\n return options ? Object.assign(Object.assign({}, readDefaults), options) : readDefaults;\n}\n/**\n * Parse serialized binary data.\n */\nfunction fromBinary(schema, bytes, options) {\n const msg = (0,_reflect_reflect_js__WEBPACK_IMPORTED_MODULE_0__.reflect)(schema, undefined, false);\n readMessage(msg, new _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_1__.BinaryReader(bytes), makeReadOptions(options), false, bytes.byteLength);\n return msg.message;\n}\n/**\n * Parse from binary data, merging fields.\n *\n * Repeated fields are appended. Map entries are added, overwriting\n * existing keys.\n *\n * If a message field is already present, it will be merged with the\n * new data.\n */\nfunction mergeFromBinary(schema, target, bytes, options) {\n readMessage((0,_reflect_reflect_js__WEBPACK_IMPORTED_MODULE_0__.reflect)(schema, target, false), new _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_1__.BinaryReader(bytes), makeReadOptions(options), false, bytes.byteLength);\n return target;\n}\n/**\n * If `delimited` is false, read the length given in `lengthOrDelimitedFieldNo`.\n *\n * If `delimited` is true, read until an EndGroup tag. `lengthOrDelimitedFieldNo`\n * is the expected field number.\n *\n * @private\n */\nfunction readMessage(message, reader, options, delimited, lengthOrDelimitedFieldNo) {\n var _a;\n const end = delimited ? reader.len : reader.pos + lengthOrDelimitedFieldNo;\n let fieldNo, wireType;\n const unknownFields = (_a = message.getUnknown()) !== null && _a !== void 0 ? _a : [];\n while (reader.pos < end) {\n [fieldNo, wireType] = reader.tag();\n if (delimited && wireType == _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_1__.WireType.EndGroup) {\n break;\n }\n const field = message.findNumber(fieldNo);\n if (!field) {\n const data = reader.skip(wireType, fieldNo);\n if (options.readUnknownFields) {\n unknownFields.push({ no: fieldNo, wireType, data });\n }\n continue;\n }\n readField(message, reader, field, wireType, options);\n }\n if (delimited) {\n if (wireType != _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_1__.WireType.EndGroup || fieldNo !== lengthOrDelimitedFieldNo) {\n throw new Error(`invalid end group tag`);\n }\n }\n if (unknownFields.length > 0) {\n message.setUnknown(unknownFields);\n }\n}\n/**\n * @private\n */\nfunction readField(message, reader, field, wireType, options) {\n switch (field.fieldKind) {\n case \"scalar\":\n message.set(field, readScalar(reader, field.scalar));\n break;\n case \"enum\":\n message.set(field, readScalar(reader, _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.INT32));\n break;\n case \"message\":\n message.set(field, readMessageField(reader, options, field, message.get(field)));\n break;\n case \"list\":\n readListField(reader, wireType, message.get(field), options);\n break;\n case \"map\":\n readMapEntry(reader, message.get(field), options);\n break;\n }\n}\n// Read a map field, expecting key field = 1, value field = 2\nfunction readMapEntry(reader, map, options) {\n const field = map.field();\n let key, val;\n const end = reader.pos + reader.uint32();\n while (reader.pos < end) {\n const [fieldNo] = reader.tag();\n switch (fieldNo) {\n case 1:\n key = readScalar(reader, field.mapKey);\n break;\n case 2:\n switch (field.mapKind) {\n case \"scalar\":\n val = readScalar(reader, field.scalar);\n break;\n case \"enum\":\n val = reader.int32();\n break;\n case \"message\":\n val = readMessageField(reader, options, field);\n break;\n }\n break;\n }\n }\n if (key === undefined) {\n key = (0,_reflect_scalar_js__WEBPACK_IMPORTED_MODULE_3__.scalarZeroValue)(field.mapKey, false);\n }\n if (val === undefined) {\n switch (field.mapKind) {\n case \"scalar\":\n val = (0,_reflect_scalar_js__WEBPACK_IMPORTED_MODULE_3__.scalarZeroValue)(field.scalar, false);\n break;\n case \"enum\":\n val = field.enum.values[0].number;\n break;\n case \"message\":\n val = (0,_reflect_reflect_js__WEBPACK_IMPORTED_MODULE_0__.reflect)(field.message, undefined, false);\n break;\n }\n }\n map.set(key, val);\n}\nfunction readListField(reader, wireType, list, options) {\n var _a;\n const field = list.field();\n if (field.listKind === \"message\") {\n list.add(readMessageField(reader, options, field));\n return;\n }\n const scalarType = (_a = field.scalar) !== null && _a !== void 0 ? _a : _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.INT32;\n const packed = wireType == _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_1__.WireType.LengthDelimited &&\n scalarType != _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.STRING &&\n scalarType != _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.BYTES;\n if (!packed) {\n list.add(readScalar(reader, scalarType));\n return;\n }\n const e = reader.uint32() + reader.pos;\n while (reader.pos < e) {\n list.add(readScalar(reader, scalarType));\n }\n}\nfunction readMessageField(reader, options, field, mergeMessage) {\n const delimited = field.delimitedEncoding;\n const message = mergeMessage !== null && mergeMessage !== void 0 ? mergeMessage : (0,_reflect_reflect_js__WEBPACK_IMPORTED_MODULE_0__.reflect)(field.message, undefined, false);\n readMessage(message, reader, options, delimited, delimited ? field.number : reader.uint32());\n return message;\n}\nfunction readScalar(reader, type) {\n switch (type) {\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.STRING:\n return reader.string();\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.BOOL:\n return reader.bool();\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.DOUBLE:\n return reader.double();\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FLOAT:\n return reader.float();\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.INT32:\n return reader.int32();\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.INT64:\n return reader.int64();\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.UINT64:\n return reader.uint64();\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FIXED64:\n return reader.fixed64();\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.BYTES:\n return reader.bytes();\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FIXED32:\n return reader.fixed32();\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SFIXED32:\n return reader.sfixed32();\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SFIXED64:\n return reader.sfixed64();\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SINT64:\n return reader.sint64();\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.UINT32:\n return reader.uint32();\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SINT32:\n return reader.sint32();\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/from-binary.js?");
320
190
 
321
191
  /***/ }),
322
192
 
323
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/is-message.js":
193
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/is-message.js":
324
194
  /*!************************************************************************************************************!*\
325
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/is-message.js ***!
195
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/is-message.js ***!
326
196
  \************************************************************************************************************/
327
- /***/ ((__unused_webpack_module, exports) => {
197
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
328
198
 
329
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.isMessage = isMessage;\n/**\n * Determine whether the given `arg` is a message.\n * If `desc` is set, determine whether `arg` is this specific message.\n */\nfunction isMessage(arg, schema) {\n const isMessage = arg !== null &&\n typeof arg == \"object\" &&\n \"$typeName\" in arg &&\n typeof arg.$typeName == \"string\";\n if (!isMessage) {\n return false;\n }\n if (schema === undefined) {\n return true;\n }\n return schema.typeName === arg.$typeName;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/is-message.js?");
199
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ isMessage: () => (/* binding */ isMessage)\n/* harmony export */ });\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n/**\n * Determine whether the given `arg` is a message.\n * If `desc` is set, determine whether `arg` is this specific message.\n */\nfunction isMessage(arg, schema) {\n const isMessage = arg !== null &&\n typeof arg == \"object\" &&\n \"$typeName\" in arg &&\n typeof arg.$typeName == \"string\";\n if (!isMessage) {\n return false;\n }\n if (schema === undefined) {\n return true;\n }\n return schema.typeName === arg.$typeName;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/is-message.js?");
330
200
 
331
201
  /***/ }),
332
202
 
333
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js":
203
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js":
334
204
  /*!*************************************************************************************************************!*\
335
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js ***!
205
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js ***!
336
206
  \*************************************************************************************************************/
337
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
207
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
338
208
 
339
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.protoInt64 = void 0;\nconst varint_js_1 = __webpack_require__(/*! ./wire/varint.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/varint.js\");\n/**\n * Int64Support for the current environment.\n */\nexports.protoInt64 = makeInt64Support();\nfunction makeInt64Support() {\n const dv = new DataView(new ArrayBuffer(8));\n // note that Safari 14 implements BigInt, but not the DataView methods\n const ok = typeof BigInt === \"function\" &&\n typeof dv.getBigInt64 === \"function\" &&\n typeof dv.getBigUint64 === \"function\" &&\n typeof dv.setBigInt64 === \"function\" &&\n typeof dv.setBigUint64 === \"function\" &&\n (typeof process != \"object\" ||\n typeof process.env != \"object\" ||\n process.env.BUF_BIGINT_DISABLE !== \"1\");\n if (ok) {\n const MIN = BigInt(\"-9223372036854775808\"), MAX = BigInt(\"9223372036854775807\"), UMIN = BigInt(\"0\"), UMAX = BigInt(\"18446744073709551615\");\n return {\n zero: BigInt(0),\n supported: true,\n parse(value) {\n const bi = typeof value == \"bigint\" ? value : BigInt(value);\n if (bi > MAX || bi < MIN) {\n throw new Error(`invalid int64: ${value}`);\n }\n return bi;\n },\n uParse(value) {\n const bi = typeof value == \"bigint\" ? value : BigInt(value);\n if (bi > UMAX || bi < UMIN) {\n throw new Error(`invalid uint64: ${value}`);\n }\n return bi;\n },\n enc(value) {\n dv.setBigInt64(0, this.parse(value), true);\n return {\n lo: dv.getInt32(0, true),\n hi: dv.getInt32(4, true),\n };\n },\n uEnc(value) {\n dv.setBigInt64(0, this.uParse(value), true);\n return {\n lo: dv.getInt32(0, true),\n hi: dv.getInt32(4, true),\n };\n },\n dec(lo, hi) {\n dv.setInt32(0, lo, true);\n dv.setInt32(4, hi, true);\n return dv.getBigInt64(0, true);\n },\n uDec(lo, hi) {\n dv.setInt32(0, lo, true);\n dv.setInt32(4, hi, true);\n return dv.getBigUint64(0, true);\n },\n };\n }\n return {\n zero: \"0\",\n supported: false,\n parse(value) {\n if (typeof value != \"string\") {\n value = value.toString();\n }\n assertInt64String(value);\n return value;\n },\n uParse(value) {\n if (typeof value != \"string\") {\n value = value.toString();\n }\n assertUInt64String(value);\n return value;\n },\n enc(value) {\n if (typeof value != \"string\") {\n value = value.toString();\n }\n assertInt64String(value);\n return (0, varint_js_1.int64FromString)(value);\n },\n uEnc(value) {\n if (typeof value != \"string\") {\n value = value.toString();\n }\n assertUInt64String(value);\n return (0, varint_js_1.int64FromString)(value);\n },\n dec(lo, hi) {\n return (0, varint_js_1.int64ToString)(lo, hi);\n },\n uDec(lo, hi) {\n return (0, varint_js_1.uInt64ToString)(lo, hi);\n },\n };\n}\nfunction assertInt64String(value) {\n if (!/^-?[0-9]+$/.test(value)) {\n throw new Error(\"invalid int64: \" + value);\n }\n}\nfunction assertUInt64String(value) {\n if (!/^[0-9]+$/.test(value)) {\n throw new Error(\"invalid uint64: \" + value);\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js?");
209
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ protoInt64: () => (/* binding */ protoInt64)\n/* harmony export */ });\n/* harmony import */ var _wire_varint_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./wire/varint.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/varint.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n/**\n * Int64Support for the current environment.\n */\nconst protoInt64 = /*@__PURE__*/ makeInt64Support();\nfunction makeInt64Support() {\n const dv = new DataView(new ArrayBuffer(8));\n // note that Safari 14 implements BigInt, but not the DataView methods\n const ok = typeof BigInt === \"function\" &&\n typeof dv.getBigInt64 === \"function\" &&\n typeof dv.getBigUint64 === \"function\" &&\n typeof dv.setBigInt64 === \"function\" &&\n typeof dv.setBigUint64 === \"function\" &&\n (typeof process != \"object\" ||\n typeof process.env != \"object\" ||\n process.env.BUF_BIGINT_DISABLE !== \"1\");\n if (ok) {\n const MIN = BigInt(\"-9223372036854775808\"), MAX = BigInt(\"9223372036854775807\"), UMIN = BigInt(\"0\"), UMAX = BigInt(\"18446744073709551615\");\n return {\n zero: BigInt(0),\n supported: true,\n parse(value) {\n const bi = typeof value == \"bigint\" ? value : BigInt(value);\n if (bi > MAX || bi < MIN) {\n throw new Error(`invalid int64: ${value}`);\n }\n return bi;\n },\n uParse(value) {\n const bi = typeof value == \"bigint\" ? value : BigInt(value);\n if (bi > UMAX || bi < UMIN) {\n throw new Error(`invalid uint64: ${value}`);\n }\n return bi;\n },\n enc(value) {\n dv.setBigInt64(0, this.parse(value), true);\n return {\n lo: dv.getInt32(0, true),\n hi: dv.getInt32(4, true),\n };\n },\n uEnc(value) {\n dv.setBigInt64(0, this.uParse(value), true);\n return {\n lo: dv.getInt32(0, true),\n hi: dv.getInt32(4, true),\n };\n },\n dec(lo, hi) {\n dv.setInt32(0, lo, true);\n dv.setInt32(4, hi, true);\n return dv.getBigInt64(0, true);\n },\n uDec(lo, hi) {\n dv.setInt32(0, lo, true);\n dv.setInt32(4, hi, true);\n return dv.getBigUint64(0, true);\n },\n };\n }\n return {\n zero: \"0\",\n supported: false,\n parse(value) {\n if (typeof value != \"string\") {\n value = value.toString();\n }\n assertInt64String(value);\n return value;\n },\n uParse(value) {\n if (typeof value != \"string\") {\n value = value.toString();\n }\n assertUInt64String(value);\n return value;\n },\n enc(value) {\n if (typeof value != \"string\") {\n value = value.toString();\n }\n assertInt64String(value);\n return (0,_wire_varint_js__WEBPACK_IMPORTED_MODULE_0__.int64FromString)(value);\n },\n uEnc(value) {\n if (typeof value != \"string\") {\n value = value.toString();\n }\n assertUInt64String(value);\n return (0,_wire_varint_js__WEBPACK_IMPORTED_MODULE_0__.int64FromString)(value);\n },\n dec(lo, hi) {\n return (0,_wire_varint_js__WEBPACK_IMPORTED_MODULE_0__.int64ToString)(lo, hi);\n },\n uDec(lo, hi) {\n return (0,_wire_varint_js__WEBPACK_IMPORTED_MODULE_0__.uInt64ToString)(lo, hi);\n },\n };\n}\nfunction assertInt64String(value) {\n if (!/^-?[0-9]+$/.test(value)) {\n throw new Error(\"invalid int64: \" + value);\n }\n}\nfunction assertUInt64String(value) {\n if (!/^[0-9]+$/.test(value)) {\n throw new Error(\"invalid uint64: \" + value);\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js?");
340
210
 
341
211
  /***/ }),
342
212
 
343
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/error.js":
213
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/error.js":
344
214
  /*!***************************************************************************************************************!*\
345
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/error.js ***!
215
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/error.js ***!
346
216
  \***************************************************************************************************************/
347
- /***/ ((__unused_webpack_module, exports) => {
217
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
348
218
 
349
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.FieldError = void 0;\nexports.isFieldError = isFieldError;\nconst errorNames = [\n \"FieldValueInvalidError\",\n \"FieldListRangeError\",\n \"ForeignFieldError\",\n];\nclass FieldError extends Error {\n constructor(fieldOrOneof, message, name = \"FieldValueInvalidError\") {\n super(message);\n this.name = name;\n this.field = () => fieldOrOneof;\n }\n}\nexports.FieldError = FieldError;\nfunction isFieldError(arg) {\n return (arg instanceof Error &&\n errorNames.includes(arg.name) &&\n \"field\" in arg &&\n typeof arg.field == \"function\");\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/error.js?");
219
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ FieldError: () => (/* binding */ FieldError),\n/* harmony export */ isFieldError: () => (/* binding */ isFieldError)\n/* harmony export */ });\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nconst errorNames = [\n \"FieldValueInvalidError\",\n \"FieldListRangeError\",\n \"ForeignFieldError\",\n];\nclass FieldError extends Error {\n constructor(fieldOrOneof, message, name = \"FieldValueInvalidError\") {\n super(message);\n this.name = name;\n this.field = () => fieldOrOneof;\n }\n}\nfunction isFieldError(arg) {\n return (arg instanceof Error &&\n errorNames.includes(arg.name) &&\n \"field\" in arg &&\n typeof arg.field == \"function\");\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/error.js?");
350
220
 
351
221
  /***/ }),
352
222
 
353
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/guard.js":
223
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/guard.js":
354
224
  /*!***************************************************************************************************************!*\
355
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/guard.js ***!
225
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/guard.js ***!
356
226
  \***************************************************************************************************************/
357
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
227
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
358
228
 
359
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.isObject = isObject;\nexports.isOneofADT = isOneofADT;\nexports.isReflectList = isReflectList;\nexports.isReflectMap = isReflectMap;\nexports.isReflectMessage = isReflectMessage;\nconst unsafe_js_1 = __webpack_require__(/*! ./unsafe.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/unsafe.js\");\nfunction isObject(arg) {\n return arg !== null && typeof arg == \"object\" && !Array.isArray(arg);\n}\nfunction isOneofADT(arg) {\n return (arg !== null &&\n typeof arg == \"object\" &&\n \"case\" in arg &&\n ((typeof arg.case == \"string\" && \"value\" in arg && arg.value != null) ||\n (arg.case === undefined &&\n (!(\"value\" in arg) || arg.value === undefined))));\n}\nfunction isReflectList(arg, field) {\n var _a, _b, _c, _d;\n if (isObject(arg) &&\n unsafe_js_1.unsafeLocal in arg &&\n \"add\" in arg &&\n \"field\" in arg &&\n typeof arg.field == \"function\") {\n if (field !== undefined) {\n const a = field, b = arg.field();\n return (a.listKind == b.listKind &&\n a.scalar === b.scalar &&\n ((_a = a.message) === null || _a === void 0 ? void 0 : _a.typeName) === ((_b = b.message) === null || _b === void 0 ? void 0 : _b.typeName) &&\n ((_c = a.enum) === null || _c === void 0 ? void 0 : _c.typeName) === ((_d = b.enum) === null || _d === void 0 ? void 0 : _d.typeName));\n }\n return true;\n }\n return false;\n}\nfunction isReflectMap(arg, field) {\n var _a, _b, _c, _d;\n if (isObject(arg) &&\n unsafe_js_1.unsafeLocal in arg &&\n \"has\" in arg &&\n \"field\" in arg &&\n typeof arg.field == \"function\") {\n if (field !== undefined) {\n const a = field, b = arg.field();\n return (a.mapKey === b.mapKey &&\n a.mapKind == b.mapKind &&\n a.scalar === b.scalar &&\n ((_a = a.message) === null || _a === void 0 ? void 0 : _a.typeName) === ((_b = b.message) === null || _b === void 0 ? void 0 : _b.typeName) &&\n ((_c = a.enum) === null || _c === void 0 ? void 0 : _c.typeName) === ((_d = b.enum) === null || _d === void 0 ? void 0 : _d.typeName));\n }\n return true;\n }\n return false;\n}\nfunction isReflectMessage(arg, messageDesc) {\n return (isObject(arg) &&\n unsafe_js_1.unsafeLocal in arg &&\n \"desc\" in arg &&\n isObject(arg.desc) &&\n arg.desc.kind === \"message\" &&\n (messageDesc === undefined || arg.desc.typeName == messageDesc.typeName));\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/guard.js?");
229
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ isObject: () => (/* binding */ isObject),\n/* harmony export */ isOneofADT: () => (/* binding */ isOneofADT),\n/* harmony export */ isReflectList: () => (/* binding */ isReflectList),\n/* harmony export */ isReflectMap: () => (/* binding */ isReflectMap),\n/* harmony export */ isReflectMessage: () => (/* binding */ isReflectMessage)\n/* harmony export */ });\n/* harmony import */ var _unsafe_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./unsafe.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/unsafe.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\nfunction isObject(arg) {\n return arg !== null && typeof arg == \"object\" && !Array.isArray(arg);\n}\nfunction isOneofADT(arg) {\n return (arg !== null &&\n typeof arg == \"object\" &&\n \"case\" in arg &&\n ((typeof arg.case == \"string\" && \"value\" in arg && arg.value != null) ||\n (arg.case === undefined &&\n (!(\"value\" in arg) || arg.value === undefined))));\n}\nfunction isReflectList(arg, field) {\n var _a, _b, _c, _d;\n if (isObject(arg) &&\n _unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeLocal in arg &&\n \"add\" in arg &&\n \"field\" in arg &&\n typeof arg.field == \"function\") {\n if (field !== undefined) {\n const a = field, b = arg.field();\n return (a.listKind == b.listKind &&\n a.scalar === b.scalar &&\n ((_a = a.message) === null || _a === void 0 ? void 0 : _a.typeName) === ((_b = b.message) === null || _b === void 0 ? void 0 : _b.typeName) &&\n ((_c = a.enum) === null || _c === void 0 ? void 0 : _c.typeName) === ((_d = b.enum) === null || _d === void 0 ? void 0 : _d.typeName));\n }\n return true;\n }\n return false;\n}\nfunction isReflectMap(arg, field) {\n var _a, _b, _c, _d;\n if (isObject(arg) &&\n _unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeLocal in arg &&\n \"has\" in arg &&\n \"field\" in arg &&\n typeof arg.field == \"function\") {\n if (field !== undefined) {\n const a = field, b = arg.field();\n return (a.mapKey === b.mapKey &&\n a.mapKind == b.mapKind &&\n a.scalar === b.scalar &&\n ((_a = a.message) === null || _a === void 0 ? void 0 : _a.typeName) === ((_b = b.message) === null || _b === void 0 ? void 0 : _b.typeName) &&\n ((_c = a.enum) === null || _c === void 0 ? void 0 : _c.typeName) === ((_d = b.enum) === null || _d === void 0 ? void 0 : _d.typeName));\n }\n return true;\n }\n return false;\n}\nfunction isReflectMessage(arg, messageDesc) {\n return (isObject(arg) &&\n _unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeLocal in arg &&\n \"desc\" in arg &&\n isObject(arg.desc) &&\n arg.desc.kind === \"message\" &&\n (messageDesc === undefined || arg.desc.typeName == messageDesc.typeName));\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/guard.js?");
360
230
 
361
231
  /***/ }),
362
232
 
363
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/names.js":
233
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/names.js":
364
234
  /*!***************************************************************************************************************!*\
365
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/names.js ***!
235
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/names.js ***!
366
236
  \***************************************************************************************************************/
367
- /***/ ((__unused_webpack_module, exports) => {
237
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
368
238
 
369
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.protoCamelCase = protoCamelCase;\nexports.safeObjectProperty = safeObjectProperty;\n/**\n * Converts snake_case to protoCamelCase according to the convention\n * used by protoc to convert a field name to a JSON name.\n */\nfunction protoCamelCase(snakeCase) {\n let capNext = false;\n const b = [];\n for (let i = 0; i < snakeCase.length; i++) {\n let c = snakeCase.charAt(i);\n switch (c) {\n case \"_\":\n capNext = true;\n break;\n case \"0\":\n case \"1\":\n case \"2\":\n case \"3\":\n case \"4\":\n case \"5\":\n case \"6\":\n case \"7\":\n case \"8\":\n case \"9\":\n b.push(c);\n capNext = false;\n break;\n default:\n if (capNext) {\n capNext = false;\n c = c.toUpperCase();\n }\n b.push(c);\n break;\n }\n }\n return b.join(\"\");\n}\n/**\n * Names that cannot be used for object properties because they are reserved\n * by built-in JavaScript properties.\n */\nconst reservedObjectProperties = new Set([\n // names reserved by JavaScript\n \"constructor\",\n \"toString\",\n \"toJSON\",\n \"valueOf\",\n]);\n/**\n * Escapes names that are reserved for ECMAScript built-in object properties.\n *\n * Also see safeIdentifier() from @bufbuild/protoplugin.\n */\nfunction safeObjectProperty(name) {\n return reservedObjectProperties.has(name) ? name + \"$\" : name;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/names.js?");
239
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ protoCamelCase: () => (/* binding */ protoCamelCase),\n/* harmony export */ safeObjectProperty: () => (/* binding */ safeObjectProperty)\n/* harmony export */ });\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n/**\n * Converts snake_case to protoCamelCase according to the convention\n * used by protoc to convert a field name to a JSON name.\n */\nfunction protoCamelCase(snakeCase) {\n let capNext = false;\n const b = [];\n for (let i = 0; i < snakeCase.length; i++) {\n let c = snakeCase.charAt(i);\n switch (c) {\n case \"_\":\n capNext = true;\n break;\n case \"0\":\n case \"1\":\n case \"2\":\n case \"3\":\n case \"4\":\n case \"5\":\n case \"6\":\n case \"7\":\n case \"8\":\n case \"9\":\n b.push(c);\n capNext = false;\n break;\n default:\n if (capNext) {\n capNext = false;\n c = c.toUpperCase();\n }\n b.push(c);\n break;\n }\n }\n return b.join(\"\");\n}\n/**\n * Names that cannot be used for object properties because they are reserved\n * by built-in JavaScript properties.\n */\nconst reservedObjectProperties = new Set([\n // names reserved by JavaScript\n \"constructor\",\n \"toString\",\n \"toJSON\",\n \"valueOf\",\n]);\n/**\n * Escapes names that are reserved for ECMAScript built-in object properties.\n *\n * Also see safeIdentifier() from @bufbuild/protoplugin.\n */\nfunction safeObjectProperty(name) {\n return reservedObjectProperties.has(name) ? name + \"$\" : name;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/names.js?");
370
240
 
371
241
  /***/ }),
372
242
 
373
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/nested-types.js":
243
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/nested-types.js":
374
244
  /*!**********************************************************************************************************************!*\
375
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/nested-types.js ***!
245
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/nested-types.js ***!
376
246
  \**********************************************************************************************************************/
377
- /***/ ((__unused_webpack_module, exports) => {
247
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
378
248
 
379
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.nestedTypes = nestedTypes;\nexports.parentTypes = parentTypes;\n/**\n * Iterate over all types - enumerations, extensions, services, messages -\n * and enumerations, extensions and messages nested in messages.\n */\nfunction* nestedTypes(desc) {\n switch (desc.kind) {\n case \"file\":\n for (const message of desc.messages) {\n yield message;\n yield* nestedTypes(message);\n }\n yield* desc.enums;\n yield* desc.services;\n yield* desc.extensions;\n break;\n case \"message\":\n for (const message of desc.nestedMessages) {\n yield message;\n yield* nestedTypes(message);\n }\n yield* desc.nestedEnums;\n yield* desc.nestedExtensions;\n break;\n }\n}\n/**\n * Returns the ancestors of a given Protobuf element, up to the file.\n */\nfunction parentTypes(desc) {\n const parents = [];\n while (desc.kind !== \"file\") {\n const p = parent(desc);\n desc = p;\n parents.push(p);\n }\n return parents;\n}\nfunction parent(desc) {\n var _a;\n switch (desc.kind) {\n case \"enum_value\":\n case \"field\":\n case \"oneof\":\n case \"rpc\":\n return desc.parent;\n case \"service\":\n return desc.file;\n case \"extension\":\n case \"enum\":\n case \"message\":\n return (_a = desc.parent) !== null && _a !== void 0 ? _a : desc.file;\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/nested-types.js?");
249
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ nestedTypes: () => (/* binding */ nestedTypes),\n/* harmony export */ parentTypes: () => (/* binding */ parentTypes)\n/* harmony export */ });\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n/**\n * Iterate over all types - enumerations, extensions, services, messages -\n * and enumerations, extensions and messages nested in messages.\n */\nfunction* nestedTypes(desc) {\n switch (desc.kind) {\n case \"file\":\n for (const message of desc.messages) {\n yield message;\n yield* nestedTypes(message);\n }\n yield* desc.enums;\n yield* desc.services;\n yield* desc.extensions;\n break;\n case \"message\":\n for (const message of desc.nestedMessages) {\n yield message;\n yield* nestedTypes(message);\n }\n yield* desc.nestedEnums;\n yield* desc.nestedExtensions;\n break;\n }\n}\n/**\n * Returns the ancestors of a given Protobuf element, up to the file.\n */\nfunction parentTypes(desc) {\n const parents = [];\n while (desc.kind !== \"file\") {\n const p = parent(desc);\n desc = p;\n parents.push(p);\n }\n return parents;\n}\nfunction parent(desc) {\n var _a;\n switch (desc.kind) {\n case \"enum_value\":\n case \"field\":\n case \"oneof\":\n case \"rpc\":\n return desc.parent;\n case \"service\":\n return desc.file;\n case \"extension\":\n case \"enum\":\n case \"message\":\n return (_a = desc.parent) !== null && _a !== void 0 ? _a : desc.file;\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/nested-types.js?");
380
250
 
381
251
  /***/ }),
382
252
 
383
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect-check.js":
253
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect-check.js":
384
254
  /*!***********************************************************************************************************************!*\
385
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect-check.js ***!
255
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect-check.js ***!
386
256
  \***********************************************************************************************************************/
387
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
257
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
388
258
 
389
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.checkField = checkField;\nexports.checkListItem = checkListItem;\nexports.checkMapEntry = checkMapEntry;\nexports.formatVal = formatVal;\nconst descriptors_js_1 = __webpack_require__(/*! ../descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js\");\nconst is_message_js_1 = __webpack_require__(/*! ../is-message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/is-message.js\");\nconst error_js_1 = __webpack_require__(/*! ./error.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/error.js\");\nconst guard_js_1 = __webpack_require__(/*! ./guard.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/guard.js\");\nconst binary_encoding_js_1 = __webpack_require__(/*! ../wire/binary-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/binary-encoding.js\");\nconst text_encoding_js_1 = __webpack_require__(/*! ../wire/text-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/text-encoding.js\");\nconst proto_int64_js_1 = __webpack_require__(/*! ../proto-int64.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js\");\n/**\n * Check whether the given field value is valid for the reflect API.\n */\nfunction checkField(field, value) {\n const check = field.fieldKind == \"list\"\n ? (0, guard_js_1.isReflectList)(value, field)\n : field.fieldKind == \"map\"\n ? (0, guard_js_1.isReflectMap)(value, field)\n : checkSingular(field, value);\n if (check === true) {\n return undefined;\n }\n let reason;\n switch (field.fieldKind) {\n case \"list\":\n reason = `expected ${formatReflectList(field)}, got ${formatVal(value)}`;\n break;\n case \"map\":\n reason = `expected ${formatReflectMap(field)}, got ${formatVal(value)}`;\n break;\n default: {\n reason = reasonSingular(field, value, check);\n }\n }\n return new error_js_1.FieldError(field, reason);\n}\n/**\n * Check whether the given list item is valid for the reflect API.\n */\nfunction checkListItem(field, index, value) {\n const check = checkSingular(field, value);\n if (check !== true) {\n return new error_js_1.FieldError(field, `list item #${index + 1}: ${reasonSingular(field, value, check)}`);\n }\n return undefined;\n}\n/**\n * Check whether the given map key and value are valid for the reflect API.\n */\nfunction checkMapEntry(field, key, value) {\n const checkKey = checkScalarValue(key, field.mapKey);\n if (checkKey !== true) {\n return new error_js_1.FieldError(field, `invalid map key: ${reasonSingular({ scalar: field.mapKey }, key, checkKey)}`);\n }\n const checkVal = checkSingular(field, value);\n if (checkVal !== true) {\n return new error_js_1.FieldError(field, `map entry ${formatVal(key)}: ${reasonSingular(field, value, checkVal)}`);\n }\n return undefined;\n}\nfunction checkSingular(field, value) {\n if (field.scalar !== undefined) {\n return checkScalarValue(value, field.scalar);\n }\n if (field.enum !== undefined) {\n if (field.enum.open) {\n return Number.isInteger(value);\n }\n return field.enum.values.some((v) => v.number === value);\n }\n return (0, guard_js_1.isReflectMessage)(value, field.message);\n}\nfunction checkScalarValue(value, scalar) {\n switch (scalar) {\n case descriptors_js_1.ScalarType.DOUBLE:\n return typeof value == \"number\";\n case descriptors_js_1.ScalarType.FLOAT:\n if (typeof value != \"number\") {\n return false;\n }\n if (Number.isNaN(value) || !Number.isFinite(value)) {\n return true;\n }\n if (value > binary_encoding_js_1.FLOAT32_MAX || value < binary_encoding_js_1.FLOAT32_MIN) {\n return `${value.toFixed()} out of range`;\n }\n return true;\n case descriptors_js_1.ScalarType.INT32:\n case descriptors_js_1.ScalarType.SFIXED32:\n case descriptors_js_1.ScalarType.SINT32:\n // signed\n if (typeof value !== \"number\" || !Number.isInteger(value)) {\n return false;\n }\n if (value > binary_encoding_js_1.INT32_MAX || value < binary_encoding_js_1.INT32_MIN) {\n return `${value.toFixed()} out of range`;\n }\n return true;\n case descriptors_js_1.ScalarType.FIXED32:\n case descriptors_js_1.ScalarType.UINT32:\n // unsigned\n if (typeof value !== \"number\" || !Number.isInteger(value)) {\n return false;\n }\n if (value > binary_encoding_js_1.UINT32_MAX || value < 0) {\n return `${value.toFixed()} out of range`;\n }\n return true;\n case descriptors_js_1.ScalarType.BOOL:\n return typeof value == \"boolean\";\n case descriptors_js_1.ScalarType.STRING:\n if (typeof value != \"string\") {\n return false;\n }\n return (0, text_encoding_js_1.getTextEncoding)().checkUtf8(value) || \"invalid UTF8\";\n case descriptors_js_1.ScalarType.BYTES:\n return value instanceof Uint8Array;\n case descriptors_js_1.ScalarType.INT64:\n case descriptors_js_1.ScalarType.SFIXED64:\n case descriptors_js_1.ScalarType.SINT64:\n // signed\n if (typeof value != \"string\" &&\n typeof value !== \"bigint\" &&\n typeof value !== \"number\") {\n return false;\n }\n try {\n proto_int64_js_1.protoInt64.parse(value);\n }\n catch (e) {\n return `${value} out of range`;\n }\n return true;\n case descriptors_js_1.ScalarType.FIXED64:\n case descriptors_js_1.ScalarType.UINT64:\n // unsigned\n if (typeof value != \"string\" &&\n typeof value !== \"bigint\" &&\n typeof value !== \"number\") {\n return false;\n }\n try {\n proto_int64_js_1.protoInt64.uParse(value);\n }\n catch (e) {\n return `${value} out of range`;\n }\n return true;\n }\n}\nfunction reasonSingular(field, val, details) {\n details =\n typeof details == \"string\" ? `: ${details}` : `, got ${formatVal(val)}`;\n if (field.scalar !== undefined) {\n return `expected ${scalarTypeDescription(field.scalar)}` + details;\n }\n else if (field.enum !== undefined) {\n return `expected ${field.enum.toString()}` + details;\n }\n return `expected ${formatReflectMessage(field.message)}` + details;\n}\nfunction formatVal(val) {\n switch (typeof val) {\n case \"object\":\n if (val === null) {\n return \"null\";\n }\n if (val instanceof Uint8Array) {\n return `Uint8Array(${val.length})`;\n }\n if (Array.isArray(val)) {\n return `Array(${val.length})`;\n }\n if ((0, guard_js_1.isReflectList)(val)) {\n return formatReflectList(val.field());\n }\n if ((0, guard_js_1.isReflectMap)(val)) {\n return formatReflectMap(val.field());\n }\n if ((0, guard_js_1.isReflectMessage)(val)) {\n return formatReflectMessage(val.desc);\n }\n if ((0, is_message_js_1.isMessage)(val)) {\n return `message ${val.$typeName}`;\n }\n return \"object\";\n case \"string\":\n return val.length > 30 ? \"string\" : `\"${val.split('\"').join('\\\\\"')}\"`;\n case \"boolean\":\n return String(val);\n case \"number\":\n return String(val);\n case \"bigint\":\n return String(val) + \"n\";\n default:\n // \"symbol\" | \"undefined\" | \"object\" | \"function\"\n return typeof val;\n }\n}\nfunction formatReflectMessage(desc) {\n return `ReflectMessage (${desc.typeName})`;\n}\nfunction formatReflectList(field) {\n switch (field.listKind) {\n case \"message\":\n return `ReflectList (${field.message.toString()})`;\n case \"enum\":\n return `ReflectList (${field.enum.toString()})`;\n case \"scalar\":\n return `ReflectList (${descriptors_js_1.ScalarType[field.scalar]})`;\n }\n}\nfunction formatReflectMap(field) {\n switch (field.mapKind) {\n case \"message\":\n return `ReflectMap (${descriptors_js_1.ScalarType[field.mapKey]}, ${field.message.toString()})`;\n case \"enum\":\n return `ReflectMap (${descriptors_js_1.ScalarType[field.mapKey]}, ${field.enum.toString()})`;\n case \"scalar\":\n return `ReflectMap (${descriptors_js_1.ScalarType[field.mapKey]}, ${descriptors_js_1.ScalarType[field.scalar]})`;\n }\n}\nfunction scalarTypeDescription(scalar) {\n switch (scalar) {\n case descriptors_js_1.ScalarType.STRING:\n return \"string\";\n case descriptors_js_1.ScalarType.BOOL:\n return \"boolean\";\n case descriptors_js_1.ScalarType.INT64:\n case descriptors_js_1.ScalarType.SINT64:\n case descriptors_js_1.ScalarType.SFIXED64:\n return \"bigint (int64)\";\n case descriptors_js_1.ScalarType.UINT64:\n case descriptors_js_1.ScalarType.FIXED64:\n return \"bigint (uint64)\";\n case descriptors_js_1.ScalarType.BYTES:\n return \"Uint8Array\";\n case descriptors_js_1.ScalarType.DOUBLE:\n return \"number (float64)\";\n case descriptors_js_1.ScalarType.FLOAT:\n return \"number (float32)\";\n case descriptors_js_1.ScalarType.FIXED32:\n case descriptors_js_1.ScalarType.UINT32:\n return \"number (uint32)\";\n case descriptors_js_1.ScalarType.INT32:\n case descriptors_js_1.ScalarType.SFIXED32:\n case descriptors_js_1.ScalarType.SINT32:\n return \"number (int32)\";\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect-check.js?");
259
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ checkField: () => (/* binding */ checkField),\n/* harmony export */ checkListItem: () => (/* binding */ checkListItem),\n/* harmony export */ checkMapEntry: () => (/* binding */ checkMapEntry),\n/* harmony export */ formatVal: () => (/* binding */ formatVal)\n/* harmony export */ });\n/* harmony import */ var _descriptors_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/descriptors.js\");\n/* harmony import */ var _is_message_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../is-message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/is-message.js\");\n/* harmony import */ var _error_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./error.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/error.js\");\n/* harmony import */ var _guard_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./guard.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/guard.js\");\n/* harmony import */ var _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../wire/binary-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/binary-encoding.js\");\n/* harmony import */ var _wire_text_encoding_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../wire/text-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/text-encoding.js\");\n/* harmony import */ var _proto_int64_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../proto-int64.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n\n\n\n\n\n\n/**\n * Check whether the given field value is valid for the reflect API.\n */\nfunction checkField(field, value) {\n const check = field.fieldKind == \"list\"\n ? (0,_guard_js__WEBPACK_IMPORTED_MODULE_0__.isReflectList)(value, field)\n : field.fieldKind == \"map\"\n ? (0,_guard_js__WEBPACK_IMPORTED_MODULE_0__.isReflectMap)(value, field)\n : checkSingular(field, value);\n if (check === true) {\n return undefined;\n }\n let reason;\n switch (field.fieldKind) {\n case \"list\":\n reason = `expected ${formatReflectList(field)}, got ${formatVal(value)}`;\n break;\n case \"map\":\n reason = `expected ${formatReflectMap(field)}, got ${formatVal(value)}`;\n break;\n default: {\n reason = reasonSingular(field, value, check);\n }\n }\n return new _error_js__WEBPACK_IMPORTED_MODULE_1__.FieldError(field, reason);\n}\n/**\n * Check whether the given list item is valid for the reflect API.\n */\nfunction checkListItem(field, index, value) {\n const check = checkSingular(field, value);\n if (check !== true) {\n return new _error_js__WEBPACK_IMPORTED_MODULE_1__.FieldError(field, `list item #${index + 1}: ${reasonSingular(field, value, check)}`);\n }\n return undefined;\n}\n/**\n * Check whether the given map key and value are valid for the reflect API.\n */\nfunction checkMapEntry(field, key, value) {\n const checkKey = checkScalarValue(key, field.mapKey);\n if (checkKey !== true) {\n return new _error_js__WEBPACK_IMPORTED_MODULE_1__.FieldError(field, `invalid map key: ${reasonSingular({ scalar: field.mapKey }, key, checkKey)}`);\n }\n const checkVal = checkSingular(field, value);\n if (checkVal !== true) {\n return new _error_js__WEBPACK_IMPORTED_MODULE_1__.FieldError(field, `map entry ${formatVal(key)}: ${reasonSingular(field, value, checkVal)}`);\n }\n return undefined;\n}\nfunction checkSingular(field, value) {\n if (field.scalar !== undefined) {\n return checkScalarValue(value, field.scalar);\n }\n if (field.enum !== undefined) {\n if (field.enum.open) {\n return Number.isInteger(value);\n }\n return field.enum.values.some((v) => v.number === value);\n }\n return (0,_guard_js__WEBPACK_IMPORTED_MODULE_0__.isReflectMessage)(value, field.message);\n}\nfunction checkScalarValue(value, scalar) {\n switch (scalar) {\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.DOUBLE:\n return typeof value == \"number\";\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FLOAT:\n if (typeof value != \"number\") {\n return false;\n }\n if (Number.isNaN(value) || !Number.isFinite(value)) {\n return true;\n }\n if (value > _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_3__.FLOAT32_MAX || value < _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_3__.FLOAT32_MIN) {\n return `${value.toFixed()} out of range`;\n }\n return true;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.INT32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SFIXED32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SINT32:\n // signed\n if (typeof value !== \"number\" || !Number.isInteger(value)) {\n return false;\n }\n if (value > _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_3__.INT32_MAX || value < _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_3__.INT32_MIN) {\n return `${value.toFixed()} out of range`;\n }\n return true;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FIXED32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.UINT32:\n // unsigned\n if (typeof value !== \"number\" || !Number.isInteger(value)) {\n return false;\n }\n if (value > _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_3__.UINT32_MAX || value < 0) {\n return `${value.toFixed()} out of range`;\n }\n return true;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.BOOL:\n return typeof value == \"boolean\";\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.STRING:\n if (typeof value != \"string\") {\n return false;\n }\n return (0,_wire_text_encoding_js__WEBPACK_IMPORTED_MODULE_4__.getTextEncoding)().checkUtf8(value) || \"invalid UTF8\";\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.BYTES:\n return value instanceof Uint8Array;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.INT64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SFIXED64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SINT64:\n // signed\n if (typeof value != \"string\" &&\n typeof value !== \"bigint\" &&\n typeof value !== \"number\") {\n return false;\n }\n try {\n _proto_int64_js__WEBPACK_IMPORTED_MODULE_5__.protoInt64.parse(value);\n }\n catch (e) {\n return `${value} out of range`;\n }\n return true;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FIXED64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.UINT64:\n // unsigned\n if (typeof value != \"string\" &&\n typeof value !== \"bigint\" &&\n typeof value !== \"number\") {\n return false;\n }\n try {\n _proto_int64_js__WEBPACK_IMPORTED_MODULE_5__.protoInt64.uParse(value);\n }\n catch (e) {\n return `${value} out of range`;\n }\n return true;\n }\n}\nfunction reasonSingular(field, val, details) {\n details =\n typeof details == \"string\" ? `: ${details}` : `, got ${formatVal(val)}`;\n if (field.scalar !== undefined) {\n return `expected ${scalarTypeDescription(field.scalar)}` + details;\n }\n else if (field.enum !== undefined) {\n return `expected ${field.enum.toString()}` + details;\n }\n return `expected ${formatReflectMessage(field.message)}` + details;\n}\nfunction formatVal(val) {\n switch (typeof val) {\n case \"object\":\n if (val === null) {\n return \"null\";\n }\n if (val instanceof Uint8Array) {\n return `Uint8Array(${val.length})`;\n }\n if (Array.isArray(val)) {\n return `Array(${val.length})`;\n }\n if ((0,_guard_js__WEBPACK_IMPORTED_MODULE_0__.isReflectList)(val)) {\n return formatReflectList(val.field());\n }\n if ((0,_guard_js__WEBPACK_IMPORTED_MODULE_0__.isReflectMap)(val)) {\n return formatReflectMap(val.field());\n }\n if ((0,_guard_js__WEBPACK_IMPORTED_MODULE_0__.isReflectMessage)(val)) {\n return formatReflectMessage(val.desc);\n }\n if ((0,_is_message_js__WEBPACK_IMPORTED_MODULE_6__.isMessage)(val)) {\n return `message ${val.$typeName}`;\n }\n return \"object\";\n case \"string\":\n return val.length > 30 ? \"string\" : `\"${val.split('\"').join('\\\\\"')}\"`;\n case \"boolean\":\n return String(val);\n case \"number\":\n return String(val);\n case \"bigint\":\n return String(val) + \"n\";\n default:\n // \"symbol\" | \"undefined\" | \"object\" | \"function\"\n return typeof val;\n }\n}\nfunction formatReflectMessage(desc) {\n return `ReflectMessage (${desc.typeName})`;\n}\nfunction formatReflectList(field) {\n switch (field.listKind) {\n case \"message\":\n return `ReflectList (${field.message.toString()})`;\n case \"enum\":\n return `ReflectList (${field.enum.toString()})`;\n case \"scalar\":\n return `ReflectList (${_descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType[field.scalar]})`;\n }\n}\nfunction formatReflectMap(field) {\n switch (field.mapKind) {\n case \"message\":\n return `ReflectMap (${_descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType[field.mapKey]}, ${field.message.toString()})`;\n case \"enum\":\n return `ReflectMap (${_descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType[field.mapKey]}, ${field.enum.toString()})`;\n case \"scalar\":\n return `ReflectMap (${_descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType[field.mapKey]}, ${_descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType[field.scalar]})`;\n }\n}\nfunction scalarTypeDescription(scalar) {\n switch (scalar) {\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.STRING:\n return \"string\";\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.BOOL:\n return \"boolean\";\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.INT64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SINT64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SFIXED64:\n return \"bigint (int64)\";\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.UINT64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FIXED64:\n return \"bigint (uint64)\";\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.BYTES:\n return \"Uint8Array\";\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.DOUBLE:\n return \"number (float64)\";\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FLOAT:\n return \"number (float32)\";\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FIXED32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.UINT32:\n return \"number (uint32)\";\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.INT32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SFIXED32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SINT32:\n return \"number (int32)\";\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect-check.js?");
390
260
 
391
261
  /***/ }),
392
262
 
393
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect.js":
263
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect.js":
394
264
  /*!*****************************************************************************************************************!*\
395
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect.js ***!
265
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect.js ***!
396
266
  \*****************************************************************************************************************/
397
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
267
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
398
268
 
399
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.reflect = reflect;\nexports.reflectList = reflectList;\nexports.reflectMap = reflectMap;\nconst descriptors_js_1 = __webpack_require__(/*! ../descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js\");\nconst reflect_check_js_1 = __webpack_require__(/*! ./reflect-check.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect-check.js\");\nconst error_js_1 = __webpack_require__(/*! ./error.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/error.js\");\nconst unsafe_js_1 = __webpack_require__(/*! ./unsafe.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/unsafe.js\");\nconst create_js_1 = __webpack_require__(/*! ../create.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/create.js\");\nconst wrappers_js_1 = __webpack_require__(/*! ../wkt/wrappers.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/wrappers.js\");\nconst scalar_js_1 = __webpack_require__(/*! ./scalar.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/scalar.js\");\nconst proto_int64_js_1 = __webpack_require__(/*! ../proto-int64.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js\");\nconst guard_js_1 = __webpack_require__(/*! ./guard.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/guard.js\");\n/**\n * Create a ReflectMessage.\n */\nfunction reflect(messageDesc, message, \n/**\n * By default, field values are validated when setting them. For example,\n * a value for an uint32 field must be a ECMAScript Number >= 0.\n *\n * When field values are trusted, performance can be improved by disabling\n * checks.\n */\ncheck = true) {\n return new ReflectMessageImpl(messageDesc, message, check);\n}\nclass ReflectMessageImpl {\n get sortedFields() {\n var _a;\n return ((_a = this._sortedFields) !== null && _a !== void 0 ? _a : (this._sortedFields = this.desc.fields\n .concat()\n .sort((a, b) => a.number - b.number)));\n }\n constructor(messageDesc, message, check = true) {\n this.lists = new Map();\n this.maps = new Map();\n this.check = check;\n this.desc = messageDesc;\n this.message = this[unsafe_js_1.unsafeLocal] = message !== null && message !== void 0 ? message : (0, create_js_1.create)(messageDesc);\n this.fields = messageDesc.fields;\n this.oneofs = messageDesc.oneofs;\n this.members = messageDesc.members;\n }\n findNumber(number) {\n if (!this._fieldsByNumber) {\n this._fieldsByNumber = new Map(this.desc.fields.map((f) => [f.number, f]));\n }\n return this._fieldsByNumber.get(number);\n }\n oneofCase(oneof) {\n assertOwn(this.message, oneof);\n return (0, unsafe_js_1.unsafeOneofCase)(this.message, oneof);\n }\n isSet(field) {\n assertOwn(this.message, field);\n return (0, unsafe_js_1.unsafeIsSet)(this.message, field);\n }\n clear(field) {\n assertOwn(this.message, field);\n (0, unsafe_js_1.unsafeClear)(this.message, field);\n }\n get(field) {\n assertOwn(this.message, field);\n const value = (0, unsafe_js_1.unsafeGet)(this.message, field);\n switch (field.fieldKind) {\n case \"list\":\n // eslint-disable-next-line no-case-declarations\n let list = this.lists.get(field);\n if (!list || list[unsafe_js_1.unsafeLocal] !== value) {\n this.lists.set(field, (list = new ReflectListImpl(field, value, this.check)));\n }\n return list;\n case \"map\":\n // eslint-disable-next-line no-case-declarations\n let map = this.maps.get(field);\n if (!map || map[unsafe_js_1.unsafeLocal] !== value) {\n this.maps.set(field, (map = new ReflectMapImpl(field, value, this.check)));\n }\n return map;\n case \"message\":\n return messageToReflect(field, value, this.check);\n case \"scalar\":\n return (value === undefined\n ? (0, scalar_js_1.scalarZeroValue)(field.scalar, false)\n : longToReflect(field, value));\n case \"enum\":\n return (value !== null && value !== void 0 ? value : field.enum.values[0].number);\n }\n }\n set(field, value) {\n assertOwn(this.message, field);\n if (this.check) {\n const err = (0, reflect_check_js_1.checkField)(field, value);\n if (err) {\n throw err;\n }\n }\n let local;\n if (field.fieldKind == \"message\") {\n local = messageToLocal(field, value);\n }\n else if ((0, guard_js_1.isReflectMap)(value) || (0, guard_js_1.isReflectList)(value)) {\n local = value[unsafe_js_1.unsafeLocal];\n }\n else {\n local = longToLocal(field, value);\n }\n (0, unsafe_js_1.unsafeSet)(this.message, field, local);\n }\n getUnknown() {\n return this.message.$unknown;\n }\n setUnknown(value) {\n this.message.$unknown = value;\n }\n}\nfunction assertOwn(owner, member) {\n if (member.parent.typeName !== owner.$typeName) {\n throw new error_js_1.FieldError(member, `cannot use ${member.toString()} with message ${owner.$typeName}`, \"ForeignFieldError\");\n }\n}\n/**\n * Create a ReflectList.\n */\nfunction reflectList(field, unsafeInput, \n/**\n * By default, field values are validated when setting them. For example,\n * a value for an uint32 field must be a ECMAScript Number >= 0.\n *\n * When field values are trusted, performance can be improved by disabling\n * checks.\n */\ncheck = true) {\n return new ReflectListImpl(field, unsafeInput !== null && unsafeInput !== void 0 ? unsafeInput : [], check);\n}\nclass ReflectListImpl {\n field() {\n return this._field;\n }\n get size() {\n return this._arr.length;\n }\n constructor(field, unsafeInput, check) {\n this._field = field;\n this._arr = this[unsafe_js_1.unsafeLocal] = unsafeInput;\n this.check = check;\n }\n get(index) {\n const item = this._arr[index];\n return item === undefined\n ? undefined\n : listItemToReflect(this._field, item, this.check);\n }\n set(index, item) {\n if (index < 0 || index >= this._arr.length) {\n throw new error_js_1.FieldError(this._field, `list item #${index + 1}: out of range`);\n }\n if (this.check) {\n const err = (0, reflect_check_js_1.checkListItem)(this._field, index, item);\n if (err) {\n throw err;\n }\n }\n this._arr[index] = listItemToLocal(this._field, item);\n }\n add(item) {\n if (this.check) {\n const err = (0, reflect_check_js_1.checkListItem)(this._field, this._arr.length, item);\n if (err) {\n throw err;\n }\n }\n this._arr.push(listItemToLocal(this._field, item));\n return undefined;\n }\n clear() {\n this._arr.splice(0, this._arr.length);\n }\n [Symbol.iterator]() {\n return this.values();\n }\n keys() {\n return this._arr.keys();\n }\n *values() {\n for (const item of this._arr) {\n yield listItemToReflect(this._field, item, this.check);\n }\n }\n *entries() {\n for (let i = 0; i < this._arr.length; i++) {\n yield [i, listItemToReflect(this._field, this._arr[i], this.check)];\n }\n }\n}\n/**\n * Create a ReflectMap.\n */\nfunction reflectMap(field, unsafeInput, \n/**\n * By default, field values are validated when setting them. For example,\n * a value for an uint32 field must be a ECMAScript Number >= 0.\n *\n * When field values are trusted, performance can be improved by disabling\n * checks.\n */\ncheck = true) {\n return new ReflectMapImpl(field, unsafeInput, check);\n}\nclass ReflectMapImpl {\n constructor(field, unsafeInput, check = true) {\n this.obj = this[unsafe_js_1.unsafeLocal] = unsafeInput !== null && unsafeInput !== void 0 ? unsafeInput : {};\n this.check = check;\n this._field = field;\n }\n field() {\n return this._field;\n }\n set(key, value) {\n if (this.check) {\n const err = (0, reflect_check_js_1.checkMapEntry)(this._field, key, value);\n if (err) {\n throw err;\n }\n }\n this.obj[mapKeyToLocal(key)] = mapValueToLocal(this._field, value);\n return this;\n }\n delete(key) {\n const k = mapKeyToLocal(key);\n const has = Object.prototype.hasOwnProperty.call(this.obj, k);\n if (has) {\n delete this.obj[k];\n }\n return has;\n }\n clear() {\n for (const key of Object.keys(this.obj)) {\n delete this.obj[key];\n }\n }\n get(key) {\n let val = this.obj[mapKeyToLocal(key)];\n if (val !== undefined) {\n val = mapValueToReflect(this._field, val, this.check);\n }\n return val;\n }\n has(key) {\n return Object.prototype.hasOwnProperty.call(this.obj, mapKeyToLocal(key));\n }\n *keys() {\n for (const objKey of Object.keys(this.obj)) {\n yield mapKeyToReflect(objKey, this._field.mapKey);\n }\n }\n *entries() {\n for (const objEntry of Object.entries(this.obj)) {\n yield [\n mapKeyToReflect(objEntry[0], this._field.mapKey),\n mapValueToReflect(this._field, objEntry[1], this.check),\n ];\n }\n }\n [Symbol.iterator]() {\n return this.entries();\n }\n get size() {\n return Object.keys(this.obj).length;\n }\n *values() {\n for (const val of Object.values(this.obj)) {\n yield mapValueToReflect(this._field, val, this.check);\n }\n }\n forEach(callbackfn, thisArg) {\n for (const mapEntry of this.entries()) {\n callbackfn.call(thisArg, mapEntry[1], mapEntry[0], this);\n }\n }\n}\nfunction messageToLocal(field, value) {\n if (!(0, guard_js_1.isReflectMessage)(value)) {\n return value;\n }\n if ((0, wrappers_js_1.isWrapper)(value.message) &&\n !field.oneof &&\n field.fieldKind == \"message\") {\n // Types from google/protobuf/wrappers.proto are unwrapped when used in\n // a singular field that is not part of a oneof group.\n return value.message.value;\n }\n if (value.desc.typeName == \"google.protobuf.Struct\" &&\n field.parent.typeName != \"google.protobuf.Value\") {\n // google.protobuf.Struct is represented with JsonObject when used in a\n // field, except when used in google.protobuf.Value.\n return wktStructToLocal(value.message);\n }\n return value.message;\n}\nfunction messageToReflect(field, value, check) {\n if (value !== undefined) {\n if ((0, wrappers_js_1.isWrapperDesc)(field.message) &&\n !field.oneof &&\n field.fieldKind == \"message\") {\n // Types from google/protobuf/wrappers.proto are unwrapped when used in\n // a singular field that is not part of a oneof group.\n value = {\n $typeName: field.message.typeName,\n value: longToReflect(field.message.fields[0], value),\n };\n }\n else if (field.message.typeName == \"google.protobuf.Struct\" &&\n field.parent.typeName != \"google.protobuf.Value\" &&\n (0, guard_js_1.isObject)(value)) {\n // google.protobuf.Struct is represented with JsonObject when used in a\n // field, except when used in google.protobuf.Value.\n value = wktStructToReflect(value);\n }\n }\n return new ReflectMessageImpl(field.message, value, check);\n}\nfunction listItemToLocal(field, value) {\n if (field.listKind == \"message\") {\n return messageToLocal(field, value);\n }\n return longToLocal(field, value);\n}\nfunction listItemToReflect(field, value, check) {\n if (field.listKind == \"message\") {\n return messageToReflect(field, value, check);\n }\n return longToReflect(field, value);\n}\nfunction mapValueToLocal(field, value) {\n if (field.mapKind == \"message\") {\n return messageToLocal(field, value);\n }\n return longToLocal(field, value);\n}\nfunction mapValueToReflect(field, value, check) {\n if (field.mapKind == \"message\") {\n return messageToReflect(field, value, check);\n }\n return value;\n}\nfunction mapKeyToLocal(key) {\n return typeof key == \"string\" || typeof key == \"number\" ? key : String(key);\n}\n/**\n * Converts a map key (any scalar value except float, double, or bytes) from its\n * representation in a message (string or number, the only possible object key\n * types) to the closest possible type in ECMAScript.\n */\nfunction mapKeyToReflect(key, type) {\n switch (type) {\n case descriptors_js_1.ScalarType.STRING:\n return key;\n case descriptors_js_1.ScalarType.INT32:\n case descriptors_js_1.ScalarType.FIXED32:\n case descriptors_js_1.ScalarType.UINT32:\n case descriptors_js_1.ScalarType.SFIXED32:\n case descriptors_js_1.ScalarType.SINT32: {\n const n = Number.parseInt(key);\n if (Number.isFinite(n)) {\n return n;\n }\n break;\n }\n case descriptors_js_1.ScalarType.BOOL:\n switch (key) {\n case \"true\":\n return true;\n case \"false\":\n return false;\n }\n break;\n case descriptors_js_1.ScalarType.UINT64:\n case descriptors_js_1.ScalarType.FIXED64:\n try {\n return proto_int64_js_1.protoInt64.uParse(key);\n }\n catch (_a) {\n //\n }\n break;\n default:\n // INT64, SFIXED64, SINT64\n try {\n return proto_int64_js_1.protoInt64.parse(key);\n }\n catch (_b) {\n //\n }\n break;\n }\n return key;\n}\nfunction longToReflect(field, value) {\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (field.scalar) {\n case descriptors_js_1.ScalarType.INT64:\n case descriptors_js_1.ScalarType.SFIXED64:\n case descriptors_js_1.ScalarType.SINT64:\n if (\"longAsString\" in field &&\n field.longAsString &&\n typeof value == \"string\") {\n value = proto_int64_js_1.protoInt64.parse(value);\n }\n break;\n case descriptors_js_1.ScalarType.FIXED64:\n case descriptors_js_1.ScalarType.UINT64:\n if (\"longAsString\" in field &&\n field.longAsString &&\n typeof value == \"string\") {\n value = proto_int64_js_1.protoInt64.uParse(value);\n }\n break;\n }\n return value;\n}\nfunction longToLocal(field, value) {\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (field.scalar) {\n case descriptors_js_1.ScalarType.INT64:\n case descriptors_js_1.ScalarType.SFIXED64:\n case descriptors_js_1.ScalarType.SINT64:\n if (\"longAsString\" in field && field.longAsString) {\n value = String(value);\n }\n else if (typeof value == \"string\" || typeof value == \"number\") {\n value = proto_int64_js_1.protoInt64.parse(value);\n }\n break;\n case descriptors_js_1.ScalarType.FIXED64:\n case descriptors_js_1.ScalarType.UINT64:\n if (\"longAsString\" in field && field.longAsString) {\n value = String(value);\n }\n else if (typeof value == \"string\" || typeof value == \"number\") {\n value = proto_int64_js_1.protoInt64.uParse(value);\n }\n break;\n }\n return value;\n}\nfunction wktStructToReflect(json) {\n const struct = {\n $typeName: \"google.protobuf.Struct\",\n fields: {},\n };\n if ((0, guard_js_1.isObject)(json)) {\n for (const [k, v] of Object.entries(json)) {\n struct.fields[k] = wktValueToReflect(v);\n }\n }\n return struct;\n}\nfunction wktStructToLocal(val) {\n const json = {};\n for (const [k, v] of Object.entries(val.fields)) {\n json[k] = wktValueToLocal(v);\n }\n return json;\n}\nfunction wktValueToLocal(val) {\n switch (val.kind.case) {\n case \"structValue\":\n return wktStructToLocal(val.kind.value);\n case \"listValue\":\n return val.kind.value.values.map(wktValueToLocal);\n case \"nullValue\":\n case undefined:\n return null;\n default:\n return val.kind.value;\n }\n}\nfunction wktValueToReflect(json) {\n const value = {\n $typeName: \"google.protobuf.Value\",\n kind: { case: undefined },\n };\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check -- invalid input is unselected kind\n switch (typeof json) {\n case \"number\":\n value.kind = { case: \"numberValue\", value: json };\n break;\n case \"string\":\n value.kind = { case: \"stringValue\", value: json };\n break;\n case \"boolean\":\n value.kind = { case: \"boolValue\", value: json };\n break;\n case \"object\":\n if (json === null) {\n const nullValue = 0;\n value.kind = { case: \"nullValue\", value: nullValue };\n }\n else if (Array.isArray(json)) {\n const listValue = {\n $typeName: \"google.protobuf.ListValue\",\n values: [],\n };\n if (Array.isArray(json)) {\n for (const e of json) {\n listValue.values.push(wktValueToReflect(e));\n }\n }\n value.kind = {\n case: \"listValue\",\n value: listValue,\n };\n }\n else {\n value.kind = {\n case: \"structValue\",\n value: wktStructToReflect(json),\n };\n }\n break;\n }\n return value;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect.js?");
269
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ reflect: () => (/* binding */ reflect),\n/* harmony export */ reflectList: () => (/* binding */ reflectList),\n/* harmony export */ reflectMap: () => (/* binding */ reflectMap)\n/* harmony export */ });\n/* harmony import */ var _descriptors_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/descriptors.js\");\n/* harmony import */ var _reflect_check_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./reflect-check.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect-check.js\");\n/* harmony import */ var _error_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./error.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/error.js\");\n/* harmony import */ var _unsafe_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./unsafe.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/unsafe.js\");\n/* harmony import */ var _create_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../create.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/create.js\");\n/* harmony import */ var _wkt_wrappers_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../wkt/wrappers.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wkt/wrappers.js\");\n/* harmony import */ var _scalar_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./scalar.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/scalar.js\");\n/* harmony import */ var _proto_int64_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../proto-int64.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js\");\n/* harmony import */ var _guard_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./guard.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/guard.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n\n\n\n\n\n\n\n\n/**\n * Create a ReflectMessage.\n */\nfunction reflect(messageDesc, message, \n/**\n * By default, field values are validated when setting them. For example,\n * a value for an uint32 field must be a ECMAScript Number >= 0.\n *\n * When field values are trusted, performance can be improved by disabling\n * checks.\n */\ncheck = true) {\n return new ReflectMessageImpl(messageDesc, message, check);\n}\nclass ReflectMessageImpl {\n get sortedFields() {\n var _a;\n return ((_a = this._sortedFields) !== null && _a !== void 0 ? _a : (this._sortedFields = this.desc.fields\n .concat()\n .sort((a, b) => a.number - b.number)));\n }\n constructor(messageDesc, message, check = true) {\n this.lists = new Map();\n this.maps = new Map();\n this.check = check;\n this.desc = messageDesc;\n this.message = this[_unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeLocal] = message !== null && message !== void 0 ? message : (0,_create_js__WEBPACK_IMPORTED_MODULE_1__.create)(messageDesc);\n this.fields = messageDesc.fields;\n this.oneofs = messageDesc.oneofs;\n this.members = messageDesc.members;\n }\n findNumber(number) {\n if (!this._fieldsByNumber) {\n this._fieldsByNumber = new Map(this.desc.fields.map((f) => [f.number, f]));\n }\n return this._fieldsByNumber.get(number);\n }\n oneofCase(oneof) {\n assertOwn(this.message, oneof);\n return (0,_unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeOneofCase)(this.message, oneof);\n }\n isSet(field) {\n assertOwn(this.message, field);\n return (0,_unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeIsSet)(this.message, field);\n }\n clear(field) {\n assertOwn(this.message, field);\n (0,_unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeClear)(this.message, field);\n }\n get(field) {\n assertOwn(this.message, field);\n const value = (0,_unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeGet)(this.message, field);\n switch (field.fieldKind) {\n case \"list\":\n // eslint-disable-next-line no-case-declarations\n let list = this.lists.get(field);\n if (!list || list[_unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeLocal] !== value) {\n this.lists.set(field, (list = new ReflectListImpl(field, value, this.check)));\n }\n return list;\n case \"map\":\n // eslint-disable-next-line no-case-declarations\n let map = this.maps.get(field);\n if (!map || map[_unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeLocal] !== value) {\n this.maps.set(field, (map = new ReflectMapImpl(field, value, this.check)));\n }\n return map;\n case \"message\":\n return messageToReflect(field, value, this.check);\n case \"scalar\":\n return (value === undefined\n ? (0,_scalar_js__WEBPACK_IMPORTED_MODULE_2__.scalarZeroValue)(field.scalar, false)\n : longToReflect(field, value));\n case \"enum\":\n return (value !== null && value !== void 0 ? value : field.enum.values[0].number);\n }\n }\n set(field, value) {\n assertOwn(this.message, field);\n if (this.check) {\n const err = (0,_reflect_check_js__WEBPACK_IMPORTED_MODULE_3__.checkField)(field, value);\n if (err) {\n throw err;\n }\n }\n let local;\n if (field.fieldKind == \"message\") {\n local = messageToLocal(field, value);\n }\n else if ((0,_guard_js__WEBPACK_IMPORTED_MODULE_4__.isReflectMap)(value) || (0,_guard_js__WEBPACK_IMPORTED_MODULE_4__.isReflectList)(value)) {\n local = value[_unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeLocal];\n }\n else {\n local = longToLocal(field, value);\n }\n (0,_unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeSet)(this.message, field, local);\n }\n getUnknown() {\n return this.message.$unknown;\n }\n setUnknown(value) {\n this.message.$unknown = value;\n }\n}\nfunction assertOwn(owner, member) {\n if (member.parent.typeName !== owner.$typeName) {\n throw new _error_js__WEBPACK_IMPORTED_MODULE_5__.FieldError(member, `cannot use ${member.toString()} with message ${owner.$typeName}`, \"ForeignFieldError\");\n }\n}\n/**\n * Create a ReflectList.\n */\nfunction reflectList(field, unsafeInput, \n/**\n * By default, field values are validated when setting them. For example,\n * a value for an uint32 field must be a ECMAScript Number >= 0.\n *\n * When field values are trusted, performance can be improved by disabling\n * checks.\n */\ncheck = true) {\n return new ReflectListImpl(field, unsafeInput !== null && unsafeInput !== void 0 ? unsafeInput : [], check);\n}\nclass ReflectListImpl {\n field() {\n return this._field;\n }\n get size() {\n return this._arr.length;\n }\n constructor(field, unsafeInput, check) {\n this._field = field;\n this._arr = this[_unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeLocal] = unsafeInput;\n this.check = check;\n }\n get(index) {\n const item = this._arr[index];\n return item === undefined\n ? undefined\n : listItemToReflect(this._field, item, this.check);\n }\n set(index, item) {\n if (index < 0 || index >= this._arr.length) {\n throw new _error_js__WEBPACK_IMPORTED_MODULE_5__.FieldError(this._field, `list item #${index + 1}: out of range`);\n }\n if (this.check) {\n const err = (0,_reflect_check_js__WEBPACK_IMPORTED_MODULE_3__.checkListItem)(this._field, index, item);\n if (err) {\n throw err;\n }\n }\n this._arr[index] = listItemToLocal(this._field, item);\n }\n add(item) {\n if (this.check) {\n const err = (0,_reflect_check_js__WEBPACK_IMPORTED_MODULE_3__.checkListItem)(this._field, this._arr.length, item);\n if (err) {\n throw err;\n }\n }\n this._arr.push(listItemToLocal(this._field, item));\n return undefined;\n }\n clear() {\n this._arr.splice(0, this._arr.length);\n }\n [Symbol.iterator]() {\n return this.values();\n }\n keys() {\n return this._arr.keys();\n }\n *values() {\n for (const item of this._arr) {\n yield listItemToReflect(this._field, item, this.check);\n }\n }\n *entries() {\n for (let i = 0; i < this._arr.length; i++) {\n yield [i, listItemToReflect(this._field, this._arr[i], this.check)];\n }\n }\n}\n/**\n * Create a ReflectMap.\n */\nfunction reflectMap(field, unsafeInput, \n/**\n * By default, field values are validated when setting them. For example,\n * a value for an uint32 field must be a ECMAScript Number >= 0.\n *\n * When field values are trusted, performance can be improved by disabling\n * checks.\n */\ncheck = true) {\n return new ReflectMapImpl(field, unsafeInput, check);\n}\nclass ReflectMapImpl {\n constructor(field, unsafeInput, check = true) {\n this.obj = this[_unsafe_js__WEBPACK_IMPORTED_MODULE_0__.unsafeLocal] = unsafeInput !== null && unsafeInput !== void 0 ? unsafeInput : {};\n this.check = check;\n this._field = field;\n }\n field() {\n return this._field;\n }\n set(key, value) {\n if (this.check) {\n const err = (0,_reflect_check_js__WEBPACK_IMPORTED_MODULE_3__.checkMapEntry)(this._field, key, value);\n if (err) {\n throw err;\n }\n }\n this.obj[mapKeyToLocal(key)] = mapValueToLocal(this._field, value);\n return this;\n }\n delete(key) {\n const k = mapKeyToLocal(key);\n const has = Object.prototype.hasOwnProperty.call(this.obj, k);\n if (has) {\n delete this.obj[k];\n }\n return has;\n }\n clear() {\n for (const key of Object.keys(this.obj)) {\n delete this.obj[key];\n }\n }\n get(key) {\n let val = this.obj[mapKeyToLocal(key)];\n if (val !== undefined) {\n val = mapValueToReflect(this._field, val, this.check);\n }\n return val;\n }\n has(key) {\n return Object.prototype.hasOwnProperty.call(this.obj, mapKeyToLocal(key));\n }\n *keys() {\n for (const objKey of Object.keys(this.obj)) {\n yield mapKeyToReflect(objKey, this._field.mapKey);\n }\n }\n *entries() {\n for (const objEntry of Object.entries(this.obj)) {\n yield [\n mapKeyToReflect(objEntry[0], this._field.mapKey),\n mapValueToReflect(this._field, objEntry[1], this.check),\n ];\n }\n }\n [Symbol.iterator]() {\n return this.entries();\n }\n get size() {\n return Object.keys(this.obj).length;\n }\n *values() {\n for (const val of Object.values(this.obj)) {\n yield mapValueToReflect(this._field, val, this.check);\n }\n }\n forEach(callbackfn, thisArg) {\n for (const mapEntry of this.entries()) {\n callbackfn.call(thisArg, mapEntry[1], mapEntry[0], this);\n }\n }\n}\nfunction messageToLocal(field, value) {\n if (!(0,_guard_js__WEBPACK_IMPORTED_MODULE_4__.isReflectMessage)(value)) {\n return value;\n }\n if ((0,_wkt_wrappers_js__WEBPACK_IMPORTED_MODULE_6__.isWrapper)(value.message) &&\n !field.oneof &&\n field.fieldKind == \"message\") {\n // Types from google/protobuf/wrappers.proto are unwrapped when used in\n // a singular field that is not part of a oneof group.\n return value.message.value;\n }\n if (value.desc.typeName == \"google.protobuf.Struct\" &&\n field.parent.typeName != \"google.protobuf.Value\") {\n // google.protobuf.Struct is represented with JsonObject when used in a\n // field, except when used in google.protobuf.Value.\n return wktStructToLocal(value.message);\n }\n return value.message;\n}\nfunction messageToReflect(field, value, check) {\n if (value !== undefined) {\n if ((0,_wkt_wrappers_js__WEBPACK_IMPORTED_MODULE_6__.isWrapperDesc)(field.message) &&\n !field.oneof &&\n field.fieldKind == \"message\") {\n // Types from google/protobuf/wrappers.proto are unwrapped when used in\n // a singular field that is not part of a oneof group.\n value = {\n $typeName: field.message.typeName,\n value: longToReflect(field.message.fields[0], value),\n };\n }\n else if (field.message.typeName == \"google.protobuf.Struct\" &&\n field.parent.typeName != \"google.protobuf.Value\" &&\n (0,_guard_js__WEBPACK_IMPORTED_MODULE_4__.isObject)(value)) {\n // google.protobuf.Struct is represented with JsonObject when used in a\n // field, except when used in google.protobuf.Value.\n value = wktStructToReflect(value);\n }\n }\n return new ReflectMessageImpl(field.message, value, check);\n}\nfunction listItemToLocal(field, value) {\n if (field.listKind == \"message\") {\n return messageToLocal(field, value);\n }\n return longToLocal(field, value);\n}\nfunction listItemToReflect(field, value, check) {\n if (field.listKind == \"message\") {\n return messageToReflect(field, value, check);\n }\n return longToReflect(field, value);\n}\nfunction mapValueToLocal(field, value) {\n if (field.mapKind == \"message\") {\n return messageToLocal(field, value);\n }\n return longToLocal(field, value);\n}\nfunction mapValueToReflect(field, value, check) {\n if (field.mapKind == \"message\") {\n return messageToReflect(field, value, check);\n }\n return value;\n}\nfunction mapKeyToLocal(key) {\n return typeof key == \"string\" || typeof key == \"number\" ? key : String(key);\n}\n/**\n * Converts a map key (any scalar value except float, double, or bytes) from its\n * representation in a message (string or number, the only possible object key\n * types) to the closest possible type in ECMAScript.\n */\nfunction mapKeyToReflect(key, type) {\n switch (type) {\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.STRING:\n return key;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.INT32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.FIXED32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.UINT32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.SFIXED32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.SINT32: {\n const n = Number.parseInt(key);\n if (Number.isFinite(n)) {\n return n;\n }\n break;\n }\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.BOOL:\n switch (key) {\n case \"true\":\n return true;\n case \"false\":\n return false;\n }\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.UINT64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.FIXED64:\n try {\n return _proto_int64_js__WEBPACK_IMPORTED_MODULE_8__.protoInt64.uParse(key);\n }\n catch (_a) {\n //\n }\n break;\n default:\n // INT64, SFIXED64, SINT64\n try {\n return _proto_int64_js__WEBPACK_IMPORTED_MODULE_8__.protoInt64.parse(key);\n }\n catch (_b) {\n //\n }\n break;\n }\n return key;\n}\nfunction longToReflect(field, value) {\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (field.scalar) {\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.INT64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.SFIXED64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.SINT64:\n if (\"longAsString\" in field &&\n field.longAsString &&\n typeof value == \"string\") {\n value = _proto_int64_js__WEBPACK_IMPORTED_MODULE_8__.protoInt64.parse(value);\n }\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.FIXED64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.UINT64:\n if (\"longAsString\" in field &&\n field.longAsString &&\n typeof value == \"string\") {\n value = _proto_int64_js__WEBPACK_IMPORTED_MODULE_8__.protoInt64.uParse(value);\n }\n break;\n }\n return value;\n}\nfunction longToLocal(field, value) {\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (field.scalar) {\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.INT64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.SFIXED64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.SINT64:\n if (\"longAsString\" in field && field.longAsString) {\n value = String(value);\n }\n else if (typeof value == \"string\" || typeof value == \"number\") {\n value = _proto_int64_js__WEBPACK_IMPORTED_MODULE_8__.protoInt64.parse(value);\n }\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.FIXED64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_7__.ScalarType.UINT64:\n if (\"longAsString\" in field && field.longAsString) {\n value = String(value);\n }\n else if (typeof value == \"string\" || typeof value == \"number\") {\n value = _proto_int64_js__WEBPACK_IMPORTED_MODULE_8__.protoInt64.uParse(value);\n }\n break;\n }\n return value;\n}\nfunction wktStructToReflect(json) {\n const struct = {\n $typeName: \"google.protobuf.Struct\",\n fields: {},\n };\n if ((0,_guard_js__WEBPACK_IMPORTED_MODULE_4__.isObject)(json)) {\n for (const [k, v] of Object.entries(json)) {\n struct.fields[k] = wktValueToReflect(v);\n }\n }\n return struct;\n}\nfunction wktStructToLocal(val) {\n const json = {};\n for (const [k, v] of Object.entries(val.fields)) {\n json[k] = wktValueToLocal(v);\n }\n return json;\n}\nfunction wktValueToLocal(val) {\n switch (val.kind.case) {\n case \"structValue\":\n return wktStructToLocal(val.kind.value);\n case \"listValue\":\n return val.kind.value.values.map(wktValueToLocal);\n case \"nullValue\":\n case undefined:\n return null;\n default:\n return val.kind.value;\n }\n}\nfunction wktValueToReflect(json) {\n const value = {\n $typeName: \"google.protobuf.Value\",\n kind: { case: undefined },\n };\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check -- invalid input is unselected kind\n switch (typeof json) {\n case \"number\":\n value.kind = { case: \"numberValue\", value: json };\n break;\n case \"string\":\n value.kind = { case: \"stringValue\", value: json };\n break;\n case \"boolean\":\n value.kind = { case: \"boolValue\", value: json };\n break;\n case \"object\":\n if (json === null) {\n const nullValue = 0;\n value.kind = { case: \"nullValue\", value: nullValue };\n }\n else if (Array.isArray(json)) {\n const listValue = {\n $typeName: \"google.protobuf.ListValue\",\n values: [],\n };\n if (Array.isArray(json)) {\n for (const e of json) {\n listValue.values.push(wktValueToReflect(e));\n }\n }\n value.kind = {\n case: \"listValue\",\n value: listValue,\n };\n }\n else {\n value.kind = {\n case: \"structValue\",\n value: wktStructToReflect(json),\n };\n }\n break;\n }\n return value;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect.js?");
400
270
 
401
271
  /***/ }),
402
272
 
403
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/scalar.js":
273
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/scalar.js":
404
274
  /*!****************************************************************************************************************!*\
405
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/scalar.js ***!
275
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/scalar.js ***!
406
276
  \****************************************************************************************************************/
407
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
277
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
408
278
 
409
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.scalarEquals = scalarEquals;\nexports.scalarZeroValue = scalarZeroValue;\nexports.isScalarZeroValue = isScalarZeroValue;\nconst proto_int64_js_1 = __webpack_require__(/*! ../proto-int64.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js\");\nconst descriptors_js_1 = __webpack_require__(/*! ../descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js\");\n/**\n * Returns true if both scalar values are equal.\n */\nfunction scalarEquals(type, a, b) {\n if (a === b) {\n // This correctly matches equal values except BYTES and (possibly) 64-bit integers.\n return true;\n }\n // Special case BYTES - we need to compare each byte individually\n if (type == descriptors_js_1.ScalarType.BYTES) {\n if (!(a instanceof Uint8Array) || !(b instanceof Uint8Array)) {\n return false;\n }\n if (a.length !== b.length) {\n return false;\n }\n for (let i = 0; i < a.length; i++) {\n if (a[i] !== b[i]) {\n return false;\n }\n }\n return true;\n }\n // Special case 64-bit integers - we support number, string and bigint representation.\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (type) {\n case descriptors_js_1.ScalarType.UINT64:\n case descriptors_js_1.ScalarType.FIXED64:\n case descriptors_js_1.ScalarType.INT64:\n case descriptors_js_1.ScalarType.SFIXED64:\n case descriptors_js_1.ScalarType.SINT64:\n // Loose comparison will match between 0n, 0 and \"0\".\n return a == b;\n }\n // Anything that hasn't been caught by strict comparison or special cased\n // BYTES and 64-bit integers is not equal.\n return false;\n}\n/**\n * Returns the zero value for the given scalar type.\n */\nfunction scalarZeroValue(type, longAsString) {\n switch (type) {\n case descriptors_js_1.ScalarType.STRING:\n return \"\";\n case descriptors_js_1.ScalarType.BOOL:\n return false;\n default:\n // Handles INT32, UINT32, SINT32, FIXED32, SFIXED32.\n // We do not use individual cases to save a few bytes code size.\n return 0;\n case descriptors_js_1.ScalarType.DOUBLE:\n case descriptors_js_1.ScalarType.FLOAT:\n return 0.0;\n case descriptors_js_1.ScalarType.INT64:\n case descriptors_js_1.ScalarType.UINT64:\n case descriptors_js_1.ScalarType.SFIXED64:\n case descriptors_js_1.ScalarType.FIXED64:\n case descriptors_js_1.ScalarType.SINT64:\n return (longAsString ? \"0\" : proto_int64_js_1.protoInt64.zero);\n case descriptors_js_1.ScalarType.BYTES:\n return new Uint8Array(0);\n }\n}\n/**\n * Returns true for a zero-value. For example, an integer has the zero-value `0`,\n * a boolean is `false`, a string is `\"\"`, and bytes is an empty Uint8Array.\n *\n * In proto3, zero-values are not written to the wire, unless the field is\n * optional or repeated.\n */\nfunction isScalarZeroValue(type, value) {\n switch (type) {\n case descriptors_js_1.ScalarType.BOOL:\n return value === false;\n case descriptors_js_1.ScalarType.STRING:\n return value === \"\";\n case descriptors_js_1.ScalarType.BYTES:\n return value instanceof Uint8Array && !value.byteLength;\n default:\n return value == 0; // Loose comparison matches 0n, 0 and \"0\"\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/scalar.js?");
279
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ isScalarZeroValue: () => (/* binding */ isScalarZeroValue),\n/* harmony export */ scalarEquals: () => (/* binding */ scalarEquals),\n/* harmony export */ scalarZeroValue: () => (/* binding */ scalarZeroValue)\n/* harmony export */ });\n/* harmony import */ var _proto_int64_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../proto-int64.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js\");\n/* harmony import */ var _descriptors_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/descriptors.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n\n/**\n * Returns true if both scalar values are equal.\n */\nfunction scalarEquals(type, a, b) {\n if (a === b) {\n // This correctly matches equal values except BYTES and (possibly) 64-bit integers.\n return true;\n }\n // Special case BYTES - we need to compare each byte individually\n if (type == _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.BYTES) {\n if (!(a instanceof Uint8Array) || !(b instanceof Uint8Array)) {\n return false;\n }\n if (a.length !== b.length) {\n return false;\n }\n for (let i = 0; i < a.length; i++) {\n if (a[i] !== b[i]) {\n return false;\n }\n }\n return true;\n }\n // Special case 64-bit integers - we support number, string and bigint representation.\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (type) {\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.UINT64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.FIXED64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.INT64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.SFIXED64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.SINT64:\n // Loose comparison will match between 0n, 0 and \"0\".\n return a == b;\n }\n // Anything that hasn't been caught by strict comparison or special cased\n // BYTES and 64-bit integers is not equal.\n return false;\n}\n/**\n * Returns the zero value for the given scalar type.\n */\nfunction scalarZeroValue(type, longAsString) {\n switch (type) {\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.STRING:\n return \"\";\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.BOOL:\n return false;\n default:\n // Handles INT32, UINT32, SINT32, FIXED32, SFIXED32.\n // We do not use individual cases to save a few bytes code size.\n return 0;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.DOUBLE:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.FLOAT:\n return 0.0;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.INT64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.UINT64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.SFIXED64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.FIXED64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.SINT64:\n return (longAsString ? \"0\" : _proto_int64_js__WEBPACK_IMPORTED_MODULE_1__.protoInt64.zero);\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.BYTES:\n return new Uint8Array(0);\n }\n}\n/**\n * Returns true for a zero-value. For example, an integer has the zero-value `0`,\n * a boolean is `false`, a string is `\"\"`, and bytes is an empty Uint8Array.\n *\n * In proto3, zero-values are not written to the wire, unless the field is\n * optional or repeated.\n */\nfunction isScalarZeroValue(type, value) {\n switch (type) {\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.BOOL:\n return value === false;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.STRING:\n return value === \"\";\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.BYTES:\n return value instanceof Uint8Array && !value.byteLength;\n default:\n return value == 0; // Loose comparison matches 0n, 0 and \"0\"\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/scalar.js?");
410
280
 
411
281
  /***/ }),
412
282
 
413
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/unsafe.js":
283
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/unsafe.js":
414
284
  /*!****************************************************************************************************************!*\
415
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/unsafe.js ***!
285
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/unsafe.js ***!
416
286
  \****************************************************************************************************************/
417
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
287
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
418
288
 
419
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.unsafeLocal = void 0;\nexports.unsafeOneofCase = unsafeOneofCase;\nexports.unsafeIsSet = unsafeIsSet;\nexports.unsafeIsSetExplicit = unsafeIsSetExplicit;\nexports.unsafeGet = unsafeGet;\nexports.unsafeSet = unsafeSet;\nexports.unsafeClear = unsafeClear;\nconst scalar_js_1 = __webpack_require__(/*! ./scalar.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/scalar.js\");\n// bootstrap-inject google.protobuf.FeatureSet.FieldPresence.IMPLICIT: const $name: FeatureSet_FieldPresence.$localName = $number;\nconst IMPLICIT = 2;\nexports.unsafeLocal = Symbol.for(\"reflect unsafe local\");\n/**\n * Return the selected field of a oneof group.\n *\n * @private\n */\nfunction unsafeOneofCase(target, // eslint-disable-line @typescript-eslint/no-explicit-any -- `any` is the best choice for dynamic access\noneof) {\n const c = target[oneof.localName].case;\n if (c === undefined) {\n return c;\n }\n return oneof.fields.find((f) => f.localName === c);\n}\n/**\n * Returns true if the field is set.\n *\n * @private\n */\nfunction unsafeIsSet(target, // eslint-disable-line @typescript-eslint/no-explicit-any -- `any` is the best choice for dynamic access\nfield) {\n const name = field.localName;\n if (field.oneof) {\n return target[field.oneof.localName].case === name; // eslint-disable-line @typescript-eslint/no-unsafe-member-access\n }\n if (field.presence != IMPLICIT) {\n // Fields with explicit presence have properties on the prototype chain\n // for default / zero values (except for proto3).\n return (target[name] !== undefined &&\n Object.prototype.hasOwnProperty.call(target, name));\n }\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (field.fieldKind) {\n case \"list\":\n return target[name].length > 0;\n case \"map\":\n return Object.keys(target[name]).length > 0; // eslint-disable-line @typescript-eslint/no-unsafe-argument\n case \"scalar\":\n return !(0, scalar_js_1.isScalarZeroValue)(field.scalar, target[name]);\n case \"enum\":\n return target[name] !== field.enum.values[0].number;\n }\n throw new Error(\"message field with implicit presence\");\n}\n/**\n * Returns true if the field is set, but only for singular fields with explicit\n * presence (proto2).\n *\n * @private\n */\nfunction unsafeIsSetExplicit(target, localName) {\n return (Object.prototype.hasOwnProperty.call(target, localName) &&\n target[localName] !== undefined);\n}\n/**\n * Return a field value, respecting oneof groups.\n *\n * @private\n */\nfunction unsafeGet(target, field) {\n if (field.oneof) {\n const oneof = target[field.oneof.localName];\n if (oneof.case === field.localName) {\n return oneof.value;\n }\n return undefined;\n }\n return target[field.localName];\n}\n/**\n * Set a field value, respecting oneof groups.\n *\n * @private\n */\nfunction unsafeSet(target, field, value) {\n if (field.oneof) {\n target[field.oneof.localName] = {\n case: field.localName,\n value: value,\n };\n }\n else {\n target[field.localName] = value;\n }\n}\n/**\n * Resets the field, so that unsafeIsSet() will return false.\n *\n * @private\n */\nfunction unsafeClear(target, // eslint-disable-line @typescript-eslint/no-explicit-any -- `any` is the best choice for dynamic access\nfield) {\n const name = field.localName;\n if (field.oneof) {\n const oneofLocalName = field.oneof.localName;\n if (target[oneofLocalName].case === name) {\n target[oneofLocalName] = { case: undefined };\n }\n }\n else if (field.presence != IMPLICIT) {\n // Fields with explicit presence have properties on the prototype chain\n // for default / zero values (except for proto3). By deleting their own\n // property, the field is reset.\n delete target[name];\n }\n else {\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (field.fieldKind) {\n case \"map\":\n target[name] = {};\n break;\n case \"list\":\n target[name] = [];\n break;\n case \"enum\":\n target[name] = field.enum.values[0].number;\n break;\n case \"scalar\":\n target[name] = (0, scalar_js_1.scalarZeroValue)(field.scalar, field.longAsString);\n break;\n }\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/unsafe.js?");
289
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ unsafeClear: () => (/* binding */ unsafeClear),\n/* harmony export */ unsafeGet: () => (/* binding */ unsafeGet),\n/* harmony export */ unsafeIsSet: () => (/* binding */ unsafeIsSet),\n/* harmony export */ unsafeIsSetExplicit: () => (/* binding */ unsafeIsSetExplicit),\n/* harmony export */ unsafeLocal: () => (/* binding */ unsafeLocal),\n/* harmony export */ unsafeOneofCase: () => (/* binding */ unsafeOneofCase),\n/* harmony export */ unsafeSet: () => (/* binding */ unsafeSet)\n/* harmony export */ });\n/* harmony import */ var _scalar_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./scalar.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/scalar.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n// bootstrap-inject google.protobuf.FeatureSet.FieldPresence.IMPLICIT: const $name: FeatureSet_FieldPresence.$localName = $number;\nconst IMPLICIT = 2;\nconst unsafeLocal = Symbol.for(\"reflect unsafe local\");\n/**\n * Return the selected field of a oneof group.\n *\n * @private\n */\nfunction unsafeOneofCase(target, // eslint-disable-line @typescript-eslint/no-explicit-any -- `any` is the best choice for dynamic access\noneof) {\n const c = target[oneof.localName].case;\n if (c === undefined) {\n return c;\n }\n return oneof.fields.find((f) => f.localName === c);\n}\n/**\n * Returns true if the field is set.\n *\n * @private\n */\nfunction unsafeIsSet(target, // eslint-disable-line @typescript-eslint/no-explicit-any -- `any` is the best choice for dynamic access\nfield) {\n const name = field.localName;\n if (field.oneof) {\n return target[field.oneof.localName].case === name; // eslint-disable-line @typescript-eslint/no-unsafe-member-access\n }\n if (field.presence != IMPLICIT) {\n // Fields with explicit presence have properties on the prototype chain\n // for default / zero values (except for proto3).\n return (target[name] !== undefined &&\n Object.prototype.hasOwnProperty.call(target, name));\n }\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (field.fieldKind) {\n case \"list\":\n return target[name].length > 0;\n case \"map\":\n return Object.keys(target[name]).length > 0; // eslint-disable-line @typescript-eslint/no-unsafe-argument\n case \"scalar\":\n return !(0,_scalar_js__WEBPACK_IMPORTED_MODULE_0__.isScalarZeroValue)(field.scalar, target[name]);\n case \"enum\":\n return target[name] !== field.enum.values[0].number;\n }\n throw new Error(\"message field with implicit presence\");\n}\n/**\n * Returns true if the field is set, but only for singular fields with explicit\n * presence (proto2).\n *\n * @private\n */\nfunction unsafeIsSetExplicit(target, localName) {\n return (Object.prototype.hasOwnProperty.call(target, localName) &&\n target[localName] !== undefined);\n}\n/**\n * Return a field value, respecting oneof groups.\n *\n * @private\n */\nfunction unsafeGet(target, field) {\n if (field.oneof) {\n const oneof = target[field.oneof.localName];\n if (oneof.case === field.localName) {\n return oneof.value;\n }\n return undefined;\n }\n return target[field.localName];\n}\n/**\n * Set a field value, respecting oneof groups.\n *\n * @private\n */\nfunction unsafeSet(target, field, value) {\n if (field.oneof) {\n target[field.oneof.localName] = {\n case: field.localName,\n value: value,\n };\n }\n else {\n target[field.localName] = value;\n }\n}\n/**\n * Resets the field, so that unsafeIsSet() will return false.\n *\n * @private\n */\nfunction unsafeClear(target, // eslint-disable-line @typescript-eslint/no-explicit-any -- `any` is the best choice for dynamic access\nfield) {\n const name = field.localName;\n if (field.oneof) {\n const oneofLocalName = field.oneof.localName;\n if (target[oneofLocalName].case === name) {\n target[oneofLocalName] = { case: undefined };\n }\n }\n else if (field.presence != IMPLICIT) {\n // Fields with explicit presence have properties on the prototype chain\n // for default / zero values (except for proto3). By deleting their own\n // property, the field is reset.\n delete target[name];\n }\n else {\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (field.fieldKind) {\n case \"map\":\n target[name] = {};\n break;\n case \"list\":\n target[name] = [];\n break;\n case \"enum\":\n target[name] = field.enum.values[0].number;\n break;\n case \"scalar\":\n target[name] = (0,_scalar_js__WEBPACK_IMPORTED_MODULE_0__.scalarZeroValue)(field.scalar, field.longAsString);\n break;\n }\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/unsafe.js?");
420
290
 
421
291
  /***/ }),
422
292
 
423
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/registry.js":
293
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/registry.js":
424
294
  /*!**********************************************************************************************************!*\
425
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/registry.js ***!
295
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/registry.js ***!
426
296
  \**********************************************************************************************************/
427
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
297
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
428
298
 
429
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.maximumEdition = exports.minimumEdition = void 0;\nexports.createRegistry = createRegistry;\nexports.createMutableRegistry = createMutableRegistry;\nexports.createFileRegistry = createFileRegistry;\nconst descriptors_js_1 = __webpack_require__(/*! ./descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js\");\nconst text_format_js_1 = __webpack_require__(/*! ./wire/text-format.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/text-format.js\");\nconst nested_types_js_1 = __webpack_require__(/*! ./reflect/nested-types.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/nested-types.js\");\nconst unsafe_js_1 = __webpack_require__(/*! ./reflect/unsafe.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/unsafe.js\");\nconst names_js_1 = __webpack_require__(/*! ./reflect/names.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/names.js\");\n/**\n * Create a registry from the given inputs.\n *\n * An input can be:\n * - Any message, enum, service, or extension descriptor, which adds just the\n * descriptor for this type.\n * - A file descriptor, which adds all typed defined in this file.\n * - A registry, which adds all types from the registry.\n *\n * For duplicate descriptors (same type name), the one given last wins.\n */\nfunction createRegistry(...input) {\n return initBaseRegistry(input);\n}\n/**\n * Create a registry that allows adding and removing descriptors.\n */\nfunction createMutableRegistry(...input) {\n const reg = initBaseRegistry(input);\n return Object.assign(Object.assign({}, reg), { remove(desc) {\n var _a;\n if (desc.kind == \"extension\") {\n (_a = reg.extendees.get(desc.extendee.typeName)) === null || _a === void 0 ? void 0 : _a.delete(desc.number);\n }\n reg.types.delete(desc.typeName);\n } });\n}\nfunction createFileRegistry(...args) {\n const registry = createBaseRegistry();\n if (!args.length) {\n return registry;\n }\n if (\"$typeName\" in args[0] &&\n args[0].$typeName == \"google.protobuf.FileDescriptorSet\") {\n for (const file of args[0].file) {\n addFile(file, registry);\n }\n return registry;\n }\n if (\"$typeName\" in args[0]) {\n const input = args[0];\n const resolve = args[1];\n const seen = new Set();\n // eslint-disable-next-line no-inner-declarations\n function recurseDeps(file) {\n const deps = [];\n for (const protoFileName of file.dependency) {\n if (registry.getFile(protoFileName) != undefined) {\n continue;\n }\n if (seen.has(protoFileName)) {\n continue;\n }\n const dep = resolve(protoFileName);\n if (!dep) {\n throw new Error(`Unable to resolve ${protoFileName}, imported by ${file.name}`);\n }\n if (\"kind\" in dep) {\n registry.addFile(dep, false, true);\n }\n else {\n seen.add(dep.name);\n deps.push(dep);\n }\n }\n return deps.concat(...deps.map(recurseDeps));\n }\n for (const file of [input, ...recurseDeps(input)].reverse()) {\n addFile(file, registry);\n }\n }\n else {\n for (const fileReg of args) {\n for (const file of fileReg.files) {\n registry.addFile(file);\n }\n }\n }\n return registry;\n}\n/**\n * @private\n */\nfunction createBaseRegistry() {\n const types = new Map();\n const extendees = new Map();\n const files = new Map();\n return {\n kind: \"registry\",\n types,\n extendees,\n [Symbol.iterator]() {\n return types.values();\n },\n get files() {\n return files.values();\n },\n addFile(file, skipTypes, withDeps) {\n files.set(file.proto.name, file);\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions\n if (!skipTypes) {\n for (const type of (0, nested_types_js_1.nestedTypes)(file)) {\n this.add(type);\n }\n }\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions\n if (withDeps) {\n for (const f of file.dependencies) {\n this.addFile(f, skipTypes, withDeps);\n }\n }\n },\n add(desc) {\n if (desc.kind == \"extension\") {\n let numberToExt = extendees.get(desc.extendee.typeName);\n if (!numberToExt) {\n extendees.set(desc.extendee.typeName, (numberToExt = new Map()));\n }\n numberToExt.set(desc.number, desc);\n }\n types.set(desc.typeName, desc);\n },\n get(typeName) {\n return types.get(typeName);\n },\n getFile(fileName) {\n return files.get(fileName);\n },\n getMessage(typeName) {\n const t = types.get(typeName);\n return (t === null || t === void 0 ? void 0 : t.kind) == \"message\" ? t : undefined;\n },\n getEnum(typeName) {\n const t = types.get(typeName);\n return (t === null || t === void 0 ? void 0 : t.kind) == \"enum\" ? t : undefined;\n },\n getExtension(typeName) {\n const t = types.get(typeName);\n return (t === null || t === void 0 ? void 0 : t.kind) == \"extension\" ? t : undefined;\n },\n getExtensionFor(extendee, no) {\n var _a;\n return (_a = extendees.get(extendee.typeName)) === null || _a === void 0 ? void 0 : _a.get(no);\n },\n getService(typeName) {\n const t = types.get(typeName);\n return (t === null || t === void 0 ? void 0 : t.kind) == \"service\" ? t : undefined;\n },\n };\n}\n/**\n * @private\n */\nfunction initBaseRegistry(inputs) {\n const registry = createBaseRegistry();\n for (const input of inputs) {\n switch (input.kind) {\n case \"registry\":\n for (const n of input) {\n registry.add(n);\n }\n break;\n case \"file\":\n registry.addFile(input);\n break;\n default:\n registry.add(input);\n break;\n }\n }\n return registry;\n}\n// bootstrap-inject google.protobuf.Edition.EDITION_PROTO2: const $name: Edition.$localName = $number;\nconst EDITION_PROTO2 = 998;\n// bootstrap-inject google.protobuf.Edition.EDITION_PROTO3: const $name: Edition.$localName = $number;\nconst EDITION_PROTO3 = 999;\n// bootstrap-inject google.protobuf.FieldDescriptorProto.Type.TYPE_STRING: const $name: FieldDescriptorProto_Type.$localName = $number;\nconst TYPE_STRING = 9;\n// bootstrap-inject google.protobuf.FieldDescriptorProto.Type.TYPE_GROUP: const $name: FieldDescriptorProto_Type.$localName = $number;\nconst TYPE_GROUP = 10;\n// bootstrap-inject google.protobuf.FieldDescriptorProto.Type.TYPE_MESSAGE: const $name: FieldDescriptorProto_Type.$localName = $number;\nconst TYPE_MESSAGE = 11;\n// bootstrap-inject google.protobuf.FieldDescriptorProto.Type.TYPE_BYTES: const $name: FieldDescriptorProto_Type.$localName = $number;\nconst TYPE_BYTES = 12;\n// bootstrap-inject google.protobuf.FieldDescriptorProto.Type.TYPE_ENUM: const $name: FieldDescriptorProto_Type.$localName = $number;\nconst TYPE_ENUM = 14;\n// bootstrap-inject google.protobuf.FieldDescriptorProto.Label.LABEL_REPEATED: const $name: FieldDescriptorProto_Label.$localName = $number;\nconst LABEL_REPEATED = 3;\n// bootstrap-inject google.protobuf.FieldDescriptorProto.Label.LABEL_REQUIRED: const $name: FieldDescriptorProto_Label.$localName = $number;\nconst LABEL_REQUIRED = 2;\n// bootstrap-inject google.protobuf.FieldOptions.JSType.JS_STRING: const $name: FieldOptions_JSType.$localName = $number;\nconst JS_STRING = 1;\n// bootstrap-inject google.protobuf.MethodOptions.IdempotencyLevel.IDEMPOTENCY_UNKNOWN: const $name: MethodOptions_IdempotencyLevel.$localName = $number;\nconst IDEMPOTENCY_UNKNOWN = 0;\n// bootstrap-inject google.protobuf.FeatureSet.FieldPresence.EXPLICIT: const $name: FeatureSet_FieldPresence.$localName = $number;\nconst EXPLICIT = 1;\n// bootstrap-inject google.protobuf.FeatureSet.FieldPresence.IMPLICIT: const $name: FeatureSet_FieldPresence.$localName = $number;\nconst IMPLICIT = 2;\n// bootstrap-inject google.protobuf.FeatureSet.FieldPresence.LEGACY_REQUIRED: const $name: FeatureSet_FieldPresence.$localName = $number;\nconst LEGACY_REQUIRED = 3;\n// bootstrap-inject google.protobuf.FeatureSet.RepeatedFieldEncoding.PACKED: const $name: FeatureSet_RepeatedFieldEncoding.$localName = $number;\nconst PACKED = 1;\n// bootstrap-inject google.protobuf.FeatureSet.MessageEncoding.DELIMITED: const $name: FeatureSet_MessageEncoding.$localName = $number;\nconst DELIMITED = 2;\n// bootstrap-inject google.protobuf.FeatureSet.EnumType.OPEN: const $name: FeatureSet_EnumType.$localName = $number;\nconst OPEN = 1;\n// prettier-ignore\n// bootstrap-inject defaults: EDITION_PROTO2 to EDITION_2023: export const minimumEdition: SupportedEdition = $minimumEdition, maximumEdition: SupportedEdition = $maximumEdition;\n// generated from protoc v28.3\nexports.minimumEdition = 998, exports.maximumEdition = 1000;\nconst featureDefaults = {\n // EDITION_PROTO2\n 998: {\n fieldPresence: 1, // EXPLICIT,\n enumType: 2, // CLOSED,\n repeatedFieldEncoding: 2, // EXPANDED,\n utf8Validation: 3, // NONE,\n messageEncoding: 1, // LENGTH_PREFIXED,\n jsonFormat: 2, // LEGACY_BEST_EFFORT,\n },\n // EDITION_PROTO3\n 999: {\n fieldPresence: 2, // IMPLICIT,\n enumType: 1, // OPEN,\n repeatedFieldEncoding: 1, // PACKED,\n utf8Validation: 2, // VERIFY,\n messageEncoding: 1, // LENGTH_PREFIXED,\n jsonFormat: 1, // ALLOW,\n },\n // EDITION_2023\n 1000: {\n fieldPresence: 1, // EXPLICIT,\n enumType: 1, // OPEN,\n repeatedFieldEncoding: 1, // PACKED,\n utf8Validation: 2, // VERIFY,\n messageEncoding: 1, // LENGTH_PREFIXED,\n jsonFormat: 1, // ALLOW,\n },\n};\n/**\n * Create a descriptor for a file, add it to the registry.\n */\nfunction addFile(proto, reg) {\n var _a, _b;\n const file = {\n kind: \"file\",\n proto,\n deprecated: (_b = (_a = proto.options) === null || _a === void 0 ? void 0 : _a.deprecated) !== null && _b !== void 0 ? _b : false,\n edition: getFileEdition(proto),\n name: proto.name.replace(/\\.proto$/, \"\"),\n dependencies: findFileDependencies(proto, reg),\n enums: [],\n messages: [],\n extensions: [],\n services: [],\n toString() {\n // eslint-disable-next-line @typescript-eslint/restrict-template-expressions -- we asserted above\n return `file ${proto.name}`;\n },\n };\n const mapEntriesStore = new Map();\n const mapEntries = {\n get(typeName) {\n return mapEntriesStore.get(typeName);\n },\n add(desc) {\n var _a;\n assert(((_a = desc.proto.options) === null || _a === void 0 ? void 0 : _a.mapEntry) === true);\n mapEntriesStore.set(desc.typeName, desc);\n },\n };\n for (const enumProto of proto.enumType) {\n addEnum(enumProto, file, undefined, reg);\n }\n for (const messageProto of proto.messageType) {\n addMessage(messageProto, file, undefined, reg, mapEntries);\n }\n for (const serviceProto of proto.service) {\n addService(serviceProto, file, reg);\n }\n addExtensions(file, reg);\n for (const mapEntry of mapEntriesStore.values()) {\n // to create a map field, we need access to the map entry's fields\n addFields(mapEntry, reg, mapEntries);\n }\n for (const message of file.messages) {\n addFields(message, reg, mapEntries);\n addExtensions(message, reg);\n }\n reg.addFile(file, true);\n}\n/**\n * Create descriptors for extensions, and add them to the message / file,\n * and to our cart.\n * Recurses into nested types.\n */\nfunction addExtensions(desc, reg) {\n switch (desc.kind) {\n case \"file\":\n for (const proto of desc.proto.extension) {\n const ext = newField(proto, desc, reg);\n desc.extensions.push(ext);\n reg.add(ext);\n }\n break;\n case \"message\":\n for (const proto of desc.proto.extension) {\n const ext = newField(proto, desc, reg);\n desc.nestedExtensions.push(ext);\n reg.add(ext);\n }\n for (const message of desc.nestedMessages) {\n addExtensions(message, reg);\n }\n break;\n }\n}\n/**\n * Create descriptors for fields and oneof groups, and add them to the message.\n * Recurses into nested types.\n */\nfunction addFields(message, reg, mapEntries) {\n const allOneofs = message.proto.oneofDecl.map((proto) => newOneof(proto, message));\n const oneofsSeen = new Set();\n for (const proto of message.proto.field) {\n const oneof = findOneof(proto, allOneofs);\n const field = newField(proto, message, reg, oneof, mapEntries);\n message.fields.push(field);\n message.field[field.localName] = field;\n if (oneof === undefined) {\n message.members.push(field);\n }\n else {\n oneof.fields.push(field);\n if (!oneofsSeen.has(oneof)) {\n oneofsSeen.add(oneof);\n message.members.push(oneof);\n }\n }\n }\n for (const oneof of allOneofs.filter((o) => oneofsSeen.has(o))) {\n message.oneofs.push(oneof);\n }\n for (const child of message.nestedMessages) {\n addFields(child, reg, mapEntries);\n }\n}\n/**\n * Create a descriptor for an enumeration, and add it our cart and to the\n * parent type, if any.\n */\nfunction addEnum(proto, file, parent, reg) {\n var _a, _b, _c;\n const sharedPrefix = findEnumSharedPrefix(proto.name, proto.value);\n const desc = {\n kind: \"enum\",\n proto,\n deprecated: (_b = (_a = proto.options) === null || _a === void 0 ? void 0 : _a.deprecated) !== null && _b !== void 0 ? _b : false,\n file,\n parent,\n open: true,\n name: proto.name,\n typeName: makeTypeName(proto, parent, file),\n value: {},\n values: [],\n sharedPrefix,\n toString() {\n return `enum ${this.typeName}`;\n },\n };\n desc.open = isEnumOpen(desc);\n reg.add(desc);\n proto.value.forEach((proto) => {\n var _a, _b;\n const name = proto.name;\n desc.values.push((desc.value[proto.number] = {\n kind: \"enum_value\",\n proto,\n deprecated: (_b = (_a = proto.options) === null || _a === void 0 ? void 0 : _a.deprecated) !== null && _b !== void 0 ? _b : false,\n parent: desc,\n name,\n localName: (0, names_js_1.safeObjectProperty)(sharedPrefix == undefined\n ? name\n : name.substring(sharedPrefix.length)),\n number: proto.number,\n toString() {\n return `enum value ${desc.typeName}.${name}`;\n },\n }));\n });\n ((_c = parent === null || parent === void 0 ? void 0 : parent.nestedEnums) !== null && _c !== void 0 ? _c : file.enums).push(desc);\n}\n/**\n * Create a descriptor for a message, including nested types, and add it to our\n * cart. Note that this does not create descriptors fields.\n */\nfunction addMessage(proto, file, parent, reg, mapEntries) {\n var _a, _b, _c, _d;\n const desc = {\n kind: \"message\",\n proto,\n deprecated: (_b = (_a = proto.options) === null || _a === void 0 ? void 0 : _a.deprecated) !== null && _b !== void 0 ? _b : false,\n file,\n parent,\n name: proto.name,\n typeName: makeTypeName(proto, parent, file),\n fields: [],\n field: {},\n oneofs: [],\n members: [],\n nestedEnums: [],\n nestedMessages: [],\n nestedExtensions: [],\n toString() {\n return `message ${this.typeName}`;\n },\n };\n if (((_c = proto.options) === null || _c === void 0 ? void 0 : _c.mapEntry) === true) {\n mapEntries.add(desc);\n }\n else {\n ((_d = parent === null || parent === void 0 ? void 0 : parent.nestedMessages) !== null && _d !== void 0 ? _d : file.messages).push(desc);\n reg.add(desc);\n }\n for (const enumProto of proto.enumType) {\n addEnum(enumProto, file, desc, reg);\n }\n for (const messageProto of proto.nestedType) {\n addMessage(messageProto, file, desc, reg, mapEntries);\n }\n}\n/**\n * Create a descriptor for a service, including methods, and add it to our\n * cart.\n */\nfunction addService(proto, file, reg) {\n var _a, _b;\n const desc = {\n kind: \"service\",\n proto,\n deprecated: (_b = (_a = proto.options) === null || _a === void 0 ? void 0 : _a.deprecated) !== null && _b !== void 0 ? _b : false,\n file,\n name: proto.name,\n typeName: makeTypeName(proto, undefined, file),\n methods: [],\n method: {},\n toString() {\n return `service ${this.typeName}`;\n },\n };\n file.services.push(desc);\n reg.add(desc);\n for (const methodProto of proto.method) {\n const method = newMethod(methodProto, desc, reg);\n desc.methods.push(method);\n desc.method[method.localName] = method;\n }\n}\n/**\n * Create a descriptor for a method.\n */\nfunction newMethod(proto, parent, reg) {\n var _a, _b, _c, _d;\n let methodKind;\n if (proto.clientStreaming && proto.serverStreaming) {\n methodKind = \"bidi_streaming\";\n }\n else if (proto.clientStreaming) {\n methodKind = \"client_streaming\";\n }\n else if (proto.serverStreaming) {\n methodKind = \"server_streaming\";\n }\n else {\n methodKind = \"unary\";\n }\n const input = reg.getMessage(trimLeadingDot(proto.inputType));\n const output = reg.getMessage(trimLeadingDot(proto.outputType));\n assert(input, `invalid MethodDescriptorProto: input_type ${proto.inputType} not found`);\n assert(output, `invalid MethodDescriptorProto: output_type ${proto.inputType} not found`);\n const name = proto.name;\n return {\n kind: \"rpc\",\n proto,\n deprecated: (_b = (_a = proto.options) === null || _a === void 0 ? void 0 : _a.deprecated) !== null && _b !== void 0 ? _b : false,\n parent,\n name,\n localName: (0, names_js_1.safeObjectProperty)(name.length\n ? (0, names_js_1.safeObjectProperty)(name[0].toLowerCase() + name.substring(1))\n : name),\n methodKind,\n input,\n output,\n idempotency: (_d = (_c = proto.options) === null || _c === void 0 ? void 0 : _c.idempotencyLevel) !== null && _d !== void 0 ? _d : IDEMPOTENCY_UNKNOWN,\n toString() {\n return `rpc ${parent.typeName}.${name}`;\n },\n };\n}\n/**\n * Create a descriptor for a oneof group.\n */\nfunction newOneof(proto, parent) {\n return {\n kind: \"oneof\",\n proto,\n deprecated: false,\n parent,\n fields: [],\n name: proto.name,\n localName: (0, names_js_1.safeObjectProperty)((0, names_js_1.protoCamelCase)(proto.name)),\n toString() {\n return `oneof ${parent.typeName}.${this.name}`;\n },\n };\n}\nfunction newField(proto, parentOrFile, reg, oneof, mapEntries) {\n var _a, _b, _c;\n const isExtension = mapEntries === undefined;\n const field = {\n kind: \"field\",\n proto,\n deprecated: (_b = (_a = proto.options) === null || _a === void 0 ? void 0 : _a.deprecated) !== null && _b !== void 0 ? _b : false,\n name: proto.name,\n number: proto.number,\n scalar: undefined,\n message: undefined,\n enum: undefined,\n presence: getFieldPresence(proto, oneof, isExtension, parentOrFile),\n listKind: undefined,\n mapKind: undefined,\n mapKey: undefined,\n delimitedEncoding: undefined,\n packed: undefined,\n longAsString: false,\n getDefaultValue: undefined,\n };\n if (isExtension) {\n // extension field\n const file = parentOrFile.kind == \"file\" ? parentOrFile : parentOrFile.file;\n const parent = parentOrFile.kind == \"file\" ? undefined : parentOrFile;\n const typeName = makeTypeName(proto, parent, file);\n field.kind = \"extension\";\n field.file = file;\n field.parent = parent;\n field.oneof = undefined;\n field.typeName = typeName;\n field.jsonName = `[${typeName}]`; // option json_name is not allowed on extension fields\n field.toString = () => `extension ${typeName}`;\n const extendee = reg.getMessage(trimLeadingDot(proto.extendee));\n assert(extendee, `invalid FieldDescriptorProto: extendee ${proto.extendee} not found`);\n field.extendee = extendee;\n }\n else {\n // regular field\n const parent = parentOrFile;\n assert(parent.kind == \"message\");\n field.parent = parent;\n field.oneof = oneof;\n field.localName = oneof\n ? (0, names_js_1.protoCamelCase)(proto.name)\n : (0, names_js_1.safeObjectProperty)((0, names_js_1.protoCamelCase)(proto.name));\n field.jsonName = proto.jsonName;\n field.toString = () => `field ${parent.typeName}.${proto.name}`;\n }\n const label = proto.label;\n const type = proto.type;\n const jstype = (_c = proto.options) === null || _c === void 0 ? void 0 : _c.jstype;\n if (label === LABEL_REPEATED) {\n // list or map field\n const mapEntry = type == TYPE_MESSAGE\n ? mapEntries === null || mapEntries === void 0 ? void 0 : mapEntries.get(trimLeadingDot(proto.typeName))\n : undefined;\n if (mapEntry) {\n // map field\n field.fieldKind = \"map\";\n const { key, value } = findMapEntryFields(mapEntry);\n field.mapKey = key.scalar;\n field.mapKind = value.fieldKind;\n field.message = value.message;\n field.delimitedEncoding = false; // map fields are always LENGTH_PREFIXED\n field.enum = value.enum;\n field.scalar = value.scalar;\n return field;\n }\n // list field\n field.fieldKind = \"list\";\n switch (type) {\n case TYPE_MESSAGE:\n case TYPE_GROUP:\n field.listKind = \"message\";\n field.message = reg.getMessage(trimLeadingDot(proto.typeName));\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions\n assert(field.message);\n field.delimitedEncoding = isDelimitedEncoding(proto, parentOrFile);\n break;\n case TYPE_ENUM:\n field.listKind = \"enum\";\n field.enum = reg.getEnum(trimLeadingDot(proto.typeName));\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions\n assert(field.enum);\n break;\n default:\n field.listKind = \"scalar\";\n field.scalar = type;\n field.longAsString = jstype == JS_STRING;\n break;\n }\n field.packed = isPackedField(proto, parentOrFile);\n return field;\n }\n // singular\n switch (type) {\n case TYPE_MESSAGE:\n case TYPE_GROUP:\n field.fieldKind = \"message\";\n field.message = reg.getMessage(trimLeadingDot(proto.typeName));\n assert(\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions\n field.message, `invalid FieldDescriptorProto: type_name ${proto.typeName} not found`);\n field.delimitedEncoding = isDelimitedEncoding(proto, parentOrFile);\n field.getDefaultValue = () => undefined;\n break;\n case TYPE_ENUM: {\n const enumeration = reg.getEnum(trimLeadingDot(proto.typeName));\n assert(enumeration !== undefined, `invalid FieldDescriptorProto: type_name ${proto.typeName} not found`);\n field.fieldKind = \"enum\";\n field.enum = reg.getEnum(trimLeadingDot(proto.typeName));\n field.getDefaultValue = () => {\n return (0, unsafe_js_1.unsafeIsSetExplicit)(proto, \"defaultValue\")\n ? (0, text_format_js_1.parseTextFormatEnumValue)(enumeration, proto.defaultValue)\n : undefined;\n };\n break;\n }\n default: {\n field.fieldKind = \"scalar\";\n field.scalar = type;\n field.longAsString = jstype == JS_STRING;\n field.getDefaultValue = () => {\n return (0, unsafe_js_1.unsafeIsSetExplicit)(proto, \"defaultValue\")\n ? (0, text_format_js_1.parseTextFormatScalarValue)(type, proto.defaultValue)\n : undefined;\n };\n break;\n }\n }\n return field;\n}\n/**\n * Parse the \"syntax\" and \"edition\" fields, returning one of the supported\n * editions.\n */\nfunction getFileEdition(proto) {\n switch (proto.syntax) {\n case \"\":\n case \"proto2\":\n return EDITION_PROTO2;\n case \"proto3\":\n return EDITION_PROTO3;\n case \"editions\":\n if (proto.edition in featureDefaults) {\n return proto.edition;\n }\n throw new Error(`${proto.name}: unsupported edition`);\n default:\n throw new Error(`${proto.name}: unsupported syntax \"${proto.syntax}\"`);\n }\n}\n/**\n * Resolve dependencies of FileDescriptorProto to DescFile.\n */\nfunction findFileDependencies(proto, reg) {\n return proto.dependency.map((wantName) => {\n const dep = reg.getFile(wantName);\n if (!dep) {\n throw new Error(`Cannot find ${wantName}, imported by ${proto.name}`);\n }\n return dep;\n });\n}\n/**\n * Finds a prefix shared by enum values, for example `my_enum_` for\n * `enum MyEnum {MY_ENUM_A=0; MY_ENUM_B=1;}`.\n */\nfunction findEnumSharedPrefix(enumName, values) {\n const prefix = camelToSnakeCase(enumName) + \"_\";\n for (const value of values) {\n if (!value.name.toLowerCase().startsWith(prefix)) {\n return undefined;\n }\n const shortName = value.name.substring(prefix.length);\n if (shortName.length == 0) {\n return undefined;\n }\n if (/^\\d/.test(shortName)) {\n // identifiers must not start with numbers\n return undefined;\n }\n }\n return prefix;\n}\n/**\n * Converts lowerCamelCase or UpperCamelCase into lower_snake_case.\n * This is used to find shared prefixes in an enum.\n */\nfunction camelToSnakeCase(camel) {\n return (camel.substring(0, 1) + camel.substring(1).replace(/[A-Z]/g, (c) => \"_\" + c)).toLowerCase();\n}\n/**\n * Create a fully qualified name for a protobuf type or extension field.\n *\n * The fully qualified name for messages, enumerations, and services is\n * constructed by concatenating the package name (if present), parent\n * message names (for nested types), and the type name. We omit the leading\n * dot added by protobuf compilers. Examples:\n * - mypackage.MyMessage\n * - mypackage.MyMessage.NestedMessage\n *\n * The fully qualified name for extension fields is constructed by\n * concatenating the package name (if present), parent message names (for\n * extensions declared within a message), and the field name. Examples:\n * - mypackage.extfield\n * - mypackage.MyMessage.extfield\n */\nfunction makeTypeName(proto, parent, file) {\n let typeName;\n if (parent) {\n typeName = `${parent.typeName}.${proto.name}`;\n }\n else if (file.proto.package.length > 0) {\n typeName = `${file.proto.package}.${proto.name}`;\n }\n else {\n typeName = `${proto.name}`;\n }\n return typeName;\n}\n/**\n * Remove the leading dot from a fully qualified type name.\n */\nfunction trimLeadingDot(typeName) {\n return typeName.startsWith(\".\") ? typeName.substring(1) : typeName;\n}\n/**\n * Did the user put the field in a oneof group?\n * Synthetic oneofs for proto3 optionals are ignored.\n */\nfunction findOneof(proto, allOneofs) {\n if (!(0, unsafe_js_1.unsafeIsSetExplicit)(proto, \"oneofIndex\")) {\n return undefined;\n }\n if (proto.proto3Optional) {\n return undefined;\n }\n const oneof = allOneofs[proto.oneofIndex];\n assert(\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions\n oneof, `invalid FieldDescriptorProto: oneof #${proto.oneofIndex} for field #${proto.number} not found`);\n return oneof;\n}\n/**\n * Presence of the field.\n * See https://protobuf.dev/programming-guides/field_presence/\n */\nfunction getFieldPresence(proto, oneof, isExtension, parent) {\n if (proto.label == LABEL_REQUIRED) {\n // proto2 required is LEGACY_REQUIRED\n return LEGACY_REQUIRED;\n }\n if (proto.label == LABEL_REPEATED) {\n // repeated fields (including maps) do not track presence\n return IMPLICIT;\n }\n if (!!oneof || proto.proto3Optional) {\n // oneof is always explicit\n return EXPLICIT;\n }\n if (proto.type == TYPE_MESSAGE) {\n // singular message field cannot be implicit\n return EXPLICIT;\n }\n if (isExtension) {\n // extensions always track presence\n return EXPLICIT;\n }\n return resolveFeature(\"fieldPresence\", { proto, parent });\n}\n/**\n * Pack this repeated field?\n */\nfunction isPackedField(proto, parent) {\n if (proto.label != LABEL_REPEATED) {\n return false;\n }\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (proto.type) {\n case TYPE_STRING:\n case TYPE_BYTES:\n case TYPE_GROUP:\n case TYPE_MESSAGE:\n // length-delimited types cannot be packed\n return false;\n }\n const o = proto.options;\n if (o && (0, unsafe_js_1.unsafeIsSetExplicit)(o, \"packed\")) {\n // prefer the field option over edition features\n return o.packed;\n }\n return (PACKED ==\n resolveFeature(\"repeatedFieldEncoding\", {\n proto,\n parent,\n }));\n}\n/**\n * Find the key and value fields of a synthetic map entry message.\n */\nfunction findMapEntryFields(mapEntry) {\n const key = mapEntry.fields.find((f) => f.number === 1);\n const value = mapEntry.fields.find((f) => f.number === 2);\n assert(key &&\n key.fieldKind == \"scalar\" &&\n key.scalar != descriptors_js_1.ScalarType.BYTES &&\n key.scalar != descriptors_js_1.ScalarType.FLOAT &&\n key.scalar != descriptors_js_1.ScalarType.DOUBLE &&\n value &&\n value.fieldKind != \"list\" &&\n value.fieldKind != \"map\");\n return { key, value };\n}\n/**\n * Enumerations can be open or closed.\n * See https://protobuf.dev/programming-guides/enum/\n */\nfunction isEnumOpen(desc) {\n var _a;\n return (OPEN ==\n resolveFeature(\"enumType\", {\n proto: desc.proto,\n parent: (_a = desc.parent) !== null && _a !== void 0 ? _a : desc.file,\n }));\n}\n/**\n * Encode the message delimited (a.k.a. proto2 group encoding), or\n * length-prefixed?\n */\nfunction isDelimitedEncoding(proto, parent) {\n if (proto.type == TYPE_GROUP) {\n return true;\n }\n return (DELIMITED ==\n resolveFeature(\"messageEncoding\", {\n proto,\n parent,\n }));\n}\nfunction resolveFeature(name, ref) {\n var _a, _b;\n const featureSet = (_a = ref.proto.options) === null || _a === void 0 ? void 0 : _a.features;\n if (featureSet) {\n const val = featureSet[name];\n if (val != 0) {\n return val;\n }\n }\n if (\"kind\" in ref) {\n if (ref.kind == \"message\") {\n return resolveFeature(name, (_b = ref.parent) !== null && _b !== void 0 ? _b : ref.file);\n }\n const editionDefaults = featureDefaults[ref.edition];\n if (!editionDefaults) {\n throw new Error(`feature default for edition ${ref.edition} not found`);\n }\n return editionDefaults[name];\n }\n return resolveFeature(name, ref.parent);\n}\n/**\n * Assert that condition is truthy or throw error (with message)\n */\nfunction assert(condition, msg) {\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions -- we want the implicit conversion to boolean\n if (!condition) {\n throw new Error(msg);\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/registry.js?");
299
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ createFileRegistry: () => (/* binding */ createFileRegistry),\n/* harmony export */ createMutableRegistry: () => (/* binding */ createMutableRegistry),\n/* harmony export */ createRegistry: () => (/* binding */ createRegistry),\n/* harmony export */ maximumEdition: () => (/* binding */ maximumEdition),\n/* harmony export */ minimumEdition: () => (/* binding */ minimumEdition)\n/* harmony export */ });\n/* harmony import */ var _descriptors_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/descriptors.js\");\n/* harmony import */ var _wire_text_format_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./wire/text-format.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/text-format.js\");\n/* harmony import */ var _reflect_nested_types_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./reflect/nested-types.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/nested-types.js\");\n/* harmony import */ var _reflect_unsafe_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./reflect/unsafe.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/unsafe.js\");\n/* harmony import */ var _reflect_names_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./reflect/names.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/names.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n\n\n\n\n/**\n * Create a registry from the given inputs.\n *\n * An input can be:\n * - Any message, enum, service, or extension descriptor, which adds just the\n * descriptor for this type.\n * - A file descriptor, which adds all typed defined in this file.\n * - A registry, which adds all types from the registry.\n *\n * For duplicate descriptors (same type name), the one given last wins.\n */\nfunction createRegistry(...input) {\n return initBaseRegistry(input);\n}\n/**\n * Create a registry that allows adding and removing descriptors.\n */\nfunction createMutableRegistry(...input) {\n const reg = initBaseRegistry(input);\n return Object.assign(Object.assign({}, reg), { remove(desc) {\n var _a;\n if (desc.kind == \"extension\") {\n (_a = reg.extendees.get(desc.extendee.typeName)) === null || _a === void 0 ? void 0 : _a.delete(desc.number);\n }\n reg.types.delete(desc.typeName);\n } });\n}\nfunction createFileRegistry(...args) {\n const registry = createBaseRegistry();\n if (!args.length) {\n return registry;\n }\n if (\"$typeName\" in args[0] &&\n args[0].$typeName == \"google.protobuf.FileDescriptorSet\") {\n for (const file of args[0].file) {\n addFile(file, registry);\n }\n return registry;\n }\n if (\"$typeName\" in args[0]) {\n const input = args[0];\n const resolve = args[1];\n const seen = new Set();\n // eslint-disable-next-line no-inner-declarations\n function recurseDeps(file) {\n const deps = [];\n for (const protoFileName of file.dependency) {\n if (registry.getFile(protoFileName) != undefined) {\n continue;\n }\n if (seen.has(protoFileName)) {\n continue;\n }\n const dep = resolve(protoFileName);\n if (!dep) {\n throw new Error(`Unable to resolve ${protoFileName}, imported by ${file.name}`);\n }\n if (\"kind\" in dep) {\n registry.addFile(dep, false, true);\n }\n else {\n seen.add(dep.name);\n deps.push(dep);\n }\n }\n return deps.concat(...deps.map(recurseDeps));\n }\n for (const file of [input, ...recurseDeps(input)].reverse()) {\n addFile(file, registry);\n }\n }\n else {\n for (const fileReg of args) {\n for (const file of fileReg.files) {\n registry.addFile(file);\n }\n }\n }\n return registry;\n}\n/**\n * @private\n */\nfunction createBaseRegistry() {\n const types = new Map();\n const extendees = new Map();\n const files = new Map();\n return {\n kind: \"registry\",\n types,\n extendees,\n [Symbol.iterator]() {\n return types.values();\n },\n get files() {\n return files.values();\n },\n addFile(file, skipTypes, withDeps) {\n files.set(file.proto.name, file);\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions\n if (!skipTypes) {\n for (const type of (0,_reflect_nested_types_js__WEBPACK_IMPORTED_MODULE_0__.nestedTypes)(file)) {\n this.add(type);\n }\n }\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions\n if (withDeps) {\n for (const f of file.dependencies) {\n this.addFile(f, skipTypes, withDeps);\n }\n }\n },\n add(desc) {\n if (desc.kind == \"extension\") {\n let numberToExt = extendees.get(desc.extendee.typeName);\n if (!numberToExt) {\n extendees.set(desc.extendee.typeName, (numberToExt = new Map()));\n }\n numberToExt.set(desc.number, desc);\n }\n types.set(desc.typeName, desc);\n },\n get(typeName) {\n return types.get(typeName);\n },\n getFile(fileName) {\n return files.get(fileName);\n },\n getMessage(typeName) {\n const t = types.get(typeName);\n return (t === null || t === void 0 ? void 0 : t.kind) == \"message\" ? t : undefined;\n },\n getEnum(typeName) {\n const t = types.get(typeName);\n return (t === null || t === void 0 ? void 0 : t.kind) == \"enum\" ? t : undefined;\n },\n getExtension(typeName) {\n const t = types.get(typeName);\n return (t === null || t === void 0 ? void 0 : t.kind) == \"extension\" ? t : undefined;\n },\n getExtensionFor(extendee, no) {\n var _a;\n return (_a = extendees.get(extendee.typeName)) === null || _a === void 0 ? void 0 : _a.get(no);\n },\n getService(typeName) {\n const t = types.get(typeName);\n return (t === null || t === void 0 ? void 0 : t.kind) == \"service\" ? t : undefined;\n },\n };\n}\n/**\n * @private\n */\nfunction initBaseRegistry(inputs) {\n const registry = createBaseRegistry();\n for (const input of inputs) {\n switch (input.kind) {\n case \"registry\":\n for (const n of input) {\n registry.add(n);\n }\n break;\n case \"file\":\n registry.addFile(input);\n break;\n default:\n registry.add(input);\n break;\n }\n }\n return registry;\n}\n// bootstrap-inject google.protobuf.Edition.EDITION_PROTO2: const $name: Edition.$localName = $number;\nconst EDITION_PROTO2 = 998;\n// bootstrap-inject google.protobuf.Edition.EDITION_PROTO3: const $name: Edition.$localName = $number;\nconst EDITION_PROTO3 = 999;\n// bootstrap-inject google.protobuf.FieldDescriptorProto.Type.TYPE_STRING: const $name: FieldDescriptorProto_Type.$localName = $number;\nconst TYPE_STRING = 9;\n// bootstrap-inject google.protobuf.FieldDescriptorProto.Type.TYPE_GROUP: const $name: FieldDescriptorProto_Type.$localName = $number;\nconst TYPE_GROUP = 10;\n// bootstrap-inject google.protobuf.FieldDescriptorProto.Type.TYPE_MESSAGE: const $name: FieldDescriptorProto_Type.$localName = $number;\nconst TYPE_MESSAGE = 11;\n// bootstrap-inject google.protobuf.FieldDescriptorProto.Type.TYPE_BYTES: const $name: FieldDescriptorProto_Type.$localName = $number;\nconst TYPE_BYTES = 12;\n// bootstrap-inject google.protobuf.FieldDescriptorProto.Type.TYPE_ENUM: const $name: FieldDescriptorProto_Type.$localName = $number;\nconst TYPE_ENUM = 14;\n// bootstrap-inject google.protobuf.FieldDescriptorProto.Label.LABEL_REPEATED: const $name: FieldDescriptorProto_Label.$localName = $number;\nconst LABEL_REPEATED = 3;\n// bootstrap-inject google.protobuf.FieldDescriptorProto.Label.LABEL_REQUIRED: const $name: FieldDescriptorProto_Label.$localName = $number;\nconst LABEL_REQUIRED = 2;\n// bootstrap-inject google.protobuf.FieldOptions.JSType.JS_STRING: const $name: FieldOptions_JSType.$localName = $number;\nconst JS_STRING = 1;\n// bootstrap-inject google.protobuf.MethodOptions.IdempotencyLevel.IDEMPOTENCY_UNKNOWN: const $name: MethodOptions_IdempotencyLevel.$localName = $number;\nconst IDEMPOTENCY_UNKNOWN = 0;\n// bootstrap-inject google.protobuf.FeatureSet.FieldPresence.EXPLICIT: const $name: FeatureSet_FieldPresence.$localName = $number;\nconst EXPLICIT = 1;\n// bootstrap-inject google.protobuf.FeatureSet.FieldPresence.IMPLICIT: const $name: FeatureSet_FieldPresence.$localName = $number;\nconst IMPLICIT = 2;\n// bootstrap-inject google.protobuf.FeatureSet.FieldPresence.LEGACY_REQUIRED: const $name: FeatureSet_FieldPresence.$localName = $number;\nconst LEGACY_REQUIRED = 3;\n// bootstrap-inject google.protobuf.FeatureSet.RepeatedFieldEncoding.PACKED: const $name: FeatureSet_RepeatedFieldEncoding.$localName = $number;\nconst PACKED = 1;\n// bootstrap-inject google.protobuf.FeatureSet.MessageEncoding.DELIMITED: const $name: FeatureSet_MessageEncoding.$localName = $number;\nconst DELIMITED = 2;\n// bootstrap-inject google.protobuf.FeatureSet.EnumType.OPEN: const $name: FeatureSet_EnumType.$localName = $number;\nconst OPEN = 1;\n// prettier-ignore\n// bootstrap-inject defaults: EDITION_PROTO2 to EDITION_2023: export const minimumEdition: SupportedEdition = $minimumEdition, maximumEdition: SupportedEdition = $maximumEdition;\n// generated from protoc v28.3\nconst minimumEdition = 998, maximumEdition = 1000;\nconst featureDefaults = {\n // EDITION_PROTO2\n 998: {\n fieldPresence: 1, // EXPLICIT,\n enumType: 2, // CLOSED,\n repeatedFieldEncoding: 2, // EXPANDED,\n utf8Validation: 3, // NONE,\n messageEncoding: 1, // LENGTH_PREFIXED,\n jsonFormat: 2, // LEGACY_BEST_EFFORT,\n },\n // EDITION_PROTO3\n 999: {\n fieldPresence: 2, // IMPLICIT,\n enumType: 1, // OPEN,\n repeatedFieldEncoding: 1, // PACKED,\n utf8Validation: 2, // VERIFY,\n messageEncoding: 1, // LENGTH_PREFIXED,\n jsonFormat: 1, // ALLOW,\n },\n // EDITION_2023\n 1000: {\n fieldPresence: 1, // EXPLICIT,\n enumType: 1, // OPEN,\n repeatedFieldEncoding: 1, // PACKED,\n utf8Validation: 2, // VERIFY,\n messageEncoding: 1, // LENGTH_PREFIXED,\n jsonFormat: 1, // ALLOW,\n },\n};\n/**\n * Create a descriptor for a file, add it to the registry.\n */\nfunction addFile(proto, reg) {\n var _a, _b;\n const file = {\n kind: \"file\",\n proto,\n deprecated: (_b = (_a = proto.options) === null || _a === void 0 ? void 0 : _a.deprecated) !== null && _b !== void 0 ? _b : false,\n edition: getFileEdition(proto),\n name: proto.name.replace(/\\.proto$/, \"\"),\n dependencies: findFileDependencies(proto, reg),\n enums: [],\n messages: [],\n extensions: [],\n services: [],\n toString() {\n // eslint-disable-next-line @typescript-eslint/restrict-template-expressions -- we asserted above\n return `file ${proto.name}`;\n },\n };\n const mapEntriesStore = new Map();\n const mapEntries = {\n get(typeName) {\n return mapEntriesStore.get(typeName);\n },\n add(desc) {\n var _a;\n assert(((_a = desc.proto.options) === null || _a === void 0 ? void 0 : _a.mapEntry) === true);\n mapEntriesStore.set(desc.typeName, desc);\n },\n };\n for (const enumProto of proto.enumType) {\n addEnum(enumProto, file, undefined, reg);\n }\n for (const messageProto of proto.messageType) {\n addMessage(messageProto, file, undefined, reg, mapEntries);\n }\n for (const serviceProto of proto.service) {\n addService(serviceProto, file, reg);\n }\n addExtensions(file, reg);\n for (const mapEntry of mapEntriesStore.values()) {\n // to create a map field, we need access to the map entry's fields\n addFields(mapEntry, reg, mapEntries);\n }\n for (const message of file.messages) {\n addFields(message, reg, mapEntries);\n addExtensions(message, reg);\n }\n reg.addFile(file, true);\n}\n/**\n * Create descriptors for extensions, and add them to the message / file,\n * and to our cart.\n * Recurses into nested types.\n */\nfunction addExtensions(desc, reg) {\n switch (desc.kind) {\n case \"file\":\n for (const proto of desc.proto.extension) {\n const ext = newField(proto, desc, reg);\n desc.extensions.push(ext);\n reg.add(ext);\n }\n break;\n case \"message\":\n for (const proto of desc.proto.extension) {\n const ext = newField(proto, desc, reg);\n desc.nestedExtensions.push(ext);\n reg.add(ext);\n }\n for (const message of desc.nestedMessages) {\n addExtensions(message, reg);\n }\n break;\n }\n}\n/**\n * Create descriptors for fields and oneof groups, and add them to the message.\n * Recurses into nested types.\n */\nfunction addFields(message, reg, mapEntries) {\n const allOneofs = message.proto.oneofDecl.map((proto) => newOneof(proto, message));\n const oneofsSeen = new Set();\n for (const proto of message.proto.field) {\n const oneof = findOneof(proto, allOneofs);\n const field = newField(proto, message, reg, oneof, mapEntries);\n message.fields.push(field);\n message.field[field.localName] = field;\n if (oneof === undefined) {\n message.members.push(field);\n }\n else {\n oneof.fields.push(field);\n if (!oneofsSeen.has(oneof)) {\n oneofsSeen.add(oneof);\n message.members.push(oneof);\n }\n }\n }\n for (const oneof of allOneofs.filter((o) => oneofsSeen.has(o))) {\n message.oneofs.push(oneof);\n }\n for (const child of message.nestedMessages) {\n addFields(child, reg, mapEntries);\n }\n}\n/**\n * Create a descriptor for an enumeration, and add it our cart and to the\n * parent type, if any.\n */\nfunction addEnum(proto, file, parent, reg) {\n var _a, _b, _c;\n const sharedPrefix = findEnumSharedPrefix(proto.name, proto.value);\n const desc = {\n kind: \"enum\",\n proto,\n deprecated: (_b = (_a = proto.options) === null || _a === void 0 ? void 0 : _a.deprecated) !== null && _b !== void 0 ? _b : false,\n file,\n parent,\n open: true,\n name: proto.name,\n typeName: makeTypeName(proto, parent, file),\n value: {},\n values: [],\n sharedPrefix,\n toString() {\n return `enum ${this.typeName}`;\n },\n };\n desc.open = isEnumOpen(desc);\n reg.add(desc);\n proto.value.forEach((proto) => {\n var _a, _b;\n const name = proto.name;\n desc.values.push((desc.value[proto.number] = {\n kind: \"enum_value\",\n proto,\n deprecated: (_b = (_a = proto.options) === null || _a === void 0 ? void 0 : _a.deprecated) !== null && _b !== void 0 ? _b : false,\n parent: desc,\n name,\n localName: (0,_reflect_names_js__WEBPACK_IMPORTED_MODULE_1__.safeObjectProperty)(sharedPrefix == undefined\n ? name\n : name.substring(sharedPrefix.length)),\n number: proto.number,\n toString() {\n return `enum value ${desc.typeName}.${name}`;\n },\n }));\n });\n ((_c = parent === null || parent === void 0 ? void 0 : parent.nestedEnums) !== null && _c !== void 0 ? _c : file.enums).push(desc);\n}\n/**\n * Create a descriptor for a message, including nested types, and add it to our\n * cart. Note that this does not create descriptors fields.\n */\nfunction addMessage(proto, file, parent, reg, mapEntries) {\n var _a, _b, _c, _d;\n const desc = {\n kind: \"message\",\n proto,\n deprecated: (_b = (_a = proto.options) === null || _a === void 0 ? void 0 : _a.deprecated) !== null && _b !== void 0 ? _b : false,\n file,\n parent,\n name: proto.name,\n typeName: makeTypeName(proto, parent, file),\n fields: [],\n field: {},\n oneofs: [],\n members: [],\n nestedEnums: [],\n nestedMessages: [],\n nestedExtensions: [],\n toString() {\n return `message ${this.typeName}`;\n },\n };\n if (((_c = proto.options) === null || _c === void 0 ? void 0 : _c.mapEntry) === true) {\n mapEntries.add(desc);\n }\n else {\n ((_d = parent === null || parent === void 0 ? void 0 : parent.nestedMessages) !== null && _d !== void 0 ? _d : file.messages).push(desc);\n reg.add(desc);\n }\n for (const enumProto of proto.enumType) {\n addEnum(enumProto, file, desc, reg);\n }\n for (const messageProto of proto.nestedType) {\n addMessage(messageProto, file, desc, reg, mapEntries);\n }\n}\n/**\n * Create a descriptor for a service, including methods, and add it to our\n * cart.\n */\nfunction addService(proto, file, reg) {\n var _a, _b;\n const desc = {\n kind: \"service\",\n proto,\n deprecated: (_b = (_a = proto.options) === null || _a === void 0 ? void 0 : _a.deprecated) !== null && _b !== void 0 ? _b : false,\n file,\n name: proto.name,\n typeName: makeTypeName(proto, undefined, file),\n methods: [],\n method: {},\n toString() {\n return `service ${this.typeName}`;\n },\n };\n file.services.push(desc);\n reg.add(desc);\n for (const methodProto of proto.method) {\n const method = newMethod(methodProto, desc, reg);\n desc.methods.push(method);\n desc.method[method.localName] = method;\n }\n}\n/**\n * Create a descriptor for a method.\n */\nfunction newMethod(proto, parent, reg) {\n var _a, _b, _c, _d;\n let methodKind;\n if (proto.clientStreaming && proto.serverStreaming) {\n methodKind = \"bidi_streaming\";\n }\n else if (proto.clientStreaming) {\n methodKind = \"client_streaming\";\n }\n else if (proto.serverStreaming) {\n methodKind = \"server_streaming\";\n }\n else {\n methodKind = \"unary\";\n }\n const input = reg.getMessage(trimLeadingDot(proto.inputType));\n const output = reg.getMessage(trimLeadingDot(proto.outputType));\n assert(input, `invalid MethodDescriptorProto: input_type ${proto.inputType} not found`);\n assert(output, `invalid MethodDescriptorProto: output_type ${proto.inputType} not found`);\n const name = proto.name;\n return {\n kind: \"rpc\",\n proto,\n deprecated: (_b = (_a = proto.options) === null || _a === void 0 ? void 0 : _a.deprecated) !== null && _b !== void 0 ? _b : false,\n parent,\n name,\n localName: (0,_reflect_names_js__WEBPACK_IMPORTED_MODULE_1__.safeObjectProperty)(name.length\n ? (0,_reflect_names_js__WEBPACK_IMPORTED_MODULE_1__.safeObjectProperty)(name[0].toLowerCase() + name.substring(1))\n : name),\n methodKind,\n input,\n output,\n idempotency: (_d = (_c = proto.options) === null || _c === void 0 ? void 0 : _c.idempotencyLevel) !== null && _d !== void 0 ? _d : IDEMPOTENCY_UNKNOWN,\n toString() {\n return `rpc ${parent.typeName}.${name}`;\n },\n };\n}\n/**\n * Create a descriptor for a oneof group.\n */\nfunction newOneof(proto, parent) {\n return {\n kind: \"oneof\",\n proto,\n deprecated: false,\n parent,\n fields: [],\n name: proto.name,\n localName: (0,_reflect_names_js__WEBPACK_IMPORTED_MODULE_1__.safeObjectProperty)((0,_reflect_names_js__WEBPACK_IMPORTED_MODULE_1__.protoCamelCase)(proto.name)),\n toString() {\n return `oneof ${parent.typeName}.${this.name}`;\n },\n };\n}\nfunction newField(proto, parentOrFile, reg, oneof, mapEntries) {\n var _a, _b, _c;\n const isExtension = mapEntries === undefined;\n const field = {\n kind: \"field\",\n proto,\n deprecated: (_b = (_a = proto.options) === null || _a === void 0 ? void 0 : _a.deprecated) !== null && _b !== void 0 ? _b : false,\n name: proto.name,\n number: proto.number,\n scalar: undefined,\n message: undefined,\n enum: undefined,\n presence: getFieldPresence(proto, oneof, isExtension, parentOrFile),\n listKind: undefined,\n mapKind: undefined,\n mapKey: undefined,\n delimitedEncoding: undefined,\n packed: undefined,\n longAsString: false,\n getDefaultValue: undefined,\n };\n if (isExtension) {\n // extension field\n const file = parentOrFile.kind == \"file\" ? parentOrFile : parentOrFile.file;\n const parent = parentOrFile.kind == \"file\" ? undefined : parentOrFile;\n const typeName = makeTypeName(proto, parent, file);\n field.kind = \"extension\";\n field.file = file;\n field.parent = parent;\n field.oneof = undefined;\n field.typeName = typeName;\n field.jsonName = `[${typeName}]`; // option json_name is not allowed on extension fields\n field.toString = () => `extension ${typeName}`;\n const extendee = reg.getMessage(trimLeadingDot(proto.extendee));\n assert(extendee, `invalid FieldDescriptorProto: extendee ${proto.extendee} not found`);\n field.extendee = extendee;\n }\n else {\n // regular field\n const parent = parentOrFile;\n assert(parent.kind == \"message\");\n field.parent = parent;\n field.oneof = oneof;\n field.localName = oneof\n ? (0,_reflect_names_js__WEBPACK_IMPORTED_MODULE_1__.protoCamelCase)(proto.name)\n : (0,_reflect_names_js__WEBPACK_IMPORTED_MODULE_1__.safeObjectProperty)((0,_reflect_names_js__WEBPACK_IMPORTED_MODULE_1__.protoCamelCase)(proto.name));\n field.jsonName = proto.jsonName;\n field.toString = () => `field ${parent.typeName}.${proto.name}`;\n }\n const label = proto.label;\n const type = proto.type;\n const jstype = (_c = proto.options) === null || _c === void 0 ? void 0 : _c.jstype;\n if (label === LABEL_REPEATED) {\n // list or map field\n const mapEntry = type == TYPE_MESSAGE\n ? mapEntries === null || mapEntries === void 0 ? void 0 : mapEntries.get(trimLeadingDot(proto.typeName))\n : undefined;\n if (mapEntry) {\n // map field\n field.fieldKind = \"map\";\n const { key, value } = findMapEntryFields(mapEntry);\n field.mapKey = key.scalar;\n field.mapKind = value.fieldKind;\n field.message = value.message;\n field.delimitedEncoding = false; // map fields are always LENGTH_PREFIXED\n field.enum = value.enum;\n field.scalar = value.scalar;\n return field;\n }\n // list field\n field.fieldKind = \"list\";\n switch (type) {\n case TYPE_MESSAGE:\n case TYPE_GROUP:\n field.listKind = \"message\";\n field.message = reg.getMessage(trimLeadingDot(proto.typeName));\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions\n assert(field.message);\n field.delimitedEncoding = isDelimitedEncoding(proto, parentOrFile);\n break;\n case TYPE_ENUM:\n field.listKind = \"enum\";\n field.enum = reg.getEnum(trimLeadingDot(proto.typeName));\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions\n assert(field.enum);\n break;\n default:\n field.listKind = \"scalar\";\n field.scalar = type;\n field.longAsString = jstype == JS_STRING;\n break;\n }\n field.packed = isPackedField(proto, parentOrFile);\n return field;\n }\n // singular\n switch (type) {\n case TYPE_MESSAGE:\n case TYPE_GROUP:\n field.fieldKind = \"message\";\n field.message = reg.getMessage(trimLeadingDot(proto.typeName));\n assert(\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions\n field.message, `invalid FieldDescriptorProto: type_name ${proto.typeName} not found`);\n field.delimitedEncoding = isDelimitedEncoding(proto, parentOrFile);\n field.getDefaultValue = () => undefined;\n break;\n case TYPE_ENUM: {\n const enumeration = reg.getEnum(trimLeadingDot(proto.typeName));\n assert(enumeration !== undefined, `invalid FieldDescriptorProto: type_name ${proto.typeName} not found`);\n field.fieldKind = \"enum\";\n field.enum = reg.getEnum(trimLeadingDot(proto.typeName));\n field.getDefaultValue = () => {\n return (0,_reflect_unsafe_js__WEBPACK_IMPORTED_MODULE_2__.unsafeIsSetExplicit)(proto, \"defaultValue\")\n ? (0,_wire_text_format_js__WEBPACK_IMPORTED_MODULE_3__.parseTextFormatEnumValue)(enumeration, proto.defaultValue)\n : undefined;\n };\n break;\n }\n default: {\n field.fieldKind = \"scalar\";\n field.scalar = type;\n field.longAsString = jstype == JS_STRING;\n field.getDefaultValue = () => {\n return (0,_reflect_unsafe_js__WEBPACK_IMPORTED_MODULE_2__.unsafeIsSetExplicit)(proto, \"defaultValue\")\n ? (0,_wire_text_format_js__WEBPACK_IMPORTED_MODULE_3__.parseTextFormatScalarValue)(type, proto.defaultValue)\n : undefined;\n };\n break;\n }\n }\n return field;\n}\n/**\n * Parse the \"syntax\" and \"edition\" fields, returning one of the supported\n * editions.\n */\nfunction getFileEdition(proto) {\n switch (proto.syntax) {\n case \"\":\n case \"proto2\":\n return EDITION_PROTO2;\n case \"proto3\":\n return EDITION_PROTO3;\n case \"editions\":\n if (proto.edition in featureDefaults) {\n return proto.edition;\n }\n throw new Error(`${proto.name}: unsupported edition`);\n default:\n throw new Error(`${proto.name}: unsupported syntax \"${proto.syntax}\"`);\n }\n}\n/**\n * Resolve dependencies of FileDescriptorProto to DescFile.\n */\nfunction findFileDependencies(proto, reg) {\n return proto.dependency.map((wantName) => {\n const dep = reg.getFile(wantName);\n if (!dep) {\n throw new Error(`Cannot find ${wantName}, imported by ${proto.name}`);\n }\n return dep;\n });\n}\n/**\n * Finds a prefix shared by enum values, for example `my_enum_` for\n * `enum MyEnum {MY_ENUM_A=0; MY_ENUM_B=1;}`.\n */\nfunction findEnumSharedPrefix(enumName, values) {\n const prefix = camelToSnakeCase(enumName) + \"_\";\n for (const value of values) {\n if (!value.name.toLowerCase().startsWith(prefix)) {\n return undefined;\n }\n const shortName = value.name.substring(prefix.length);\n if (shortName.length == 0) {\n return undefined;\n }\n if (/^\\d/.test(shortName)) {\n // identifiers must not start with numbers\n return undefined;\n }\n }\n return prefix;\n}\n/**\n * Converts lowerCamelCase or UpperCamelCase into lower_snake_case.\n * This is used to find shared prefixes in an enum.\n */\nfunction camelToSnakeCase(camel) {\n return (camel.substring(0, 1) + camel.substring(1).replace(/[A-Z]/g, (c) => \"_\" + c)).toLowerCase();\n}\n/**\n * Create a fully qualified name for a protobuf type or extension field.\n *\n * The fully qualified name for messages, enumerations, and services is\n * constructed by concatenating the package name (if present), parent\n * message names (for nested types), and the type name. We omit the leading\n * dot added by protobuf compilers. Examples:\n * - mypackage.MyMessage\n * - mypackage.MyMessage.NestedMessage\n *\n * The fully qualified name for extension fields is constructed by\n * concatenating the package name (if present), parent message names (for\n * extensions declared within a message), and the field name. Examples:\n * - mypackage.extfield\n * - mypackage.MyMessage.extfield\n */\nfunction makeTypeName(proto, parent, file) {\n let typeName;\n if (parent) {\n typeName = `${parent.typeName}.${proto.name}`;\n }\n else if (file.proto.package.length > 0) {\n typeName = `${file.proto.package}.${proto.name}`;\n }\n else {\n typeName = `${proto.name}`;\n }\n return typeName;\n}\n/**\n * Remove the leading dot from a fully qualified type name.\n */\nfunction trimLeadingDot(typeName) {\n return typeName.startsWith(\".\") ? typeName.substring(1) : typeName;\n}\n/**\n * Did the user put the field in a oneof group?\n * Synthetic oneofs for proto3 optionals are ignored.\n */\nfunction findOneof(proto, allOneofs) {\n if (!(0,_reflect_unsafe_js__WEBPACK_IMPORTED_MODULE_2__.unsafeIsSetExplicit)(proto, \"oneofIndex\")) {\n return undefined;\n }\n if (proto.proto3Optional) {\n return undefined;\n }\n const oneof = allOneofs[proto.oneofIndex];\n assert(\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions\n oneof, `invalid FieldDescriptorProto: oneof #${proto.oneofIndex} for field #${proto.number} not found`);\n return oneof;\n}\n/**\n * Presence of the field.\n * See https://protobuf.dev/programming-guides/field_presence/\n */\nfunction getFieldPresence(proto, oneof, isExtension, parent) {\n if (proto.label == LABEL_REQUIRED) {\n // proto2 required is LEGACY_REQUIRED\n return LEGACY_REQUIRED;\n }\n if (proto.label == LABEL_REPEATED) {\n // repeated fields (including maps) do not track presence\n return IMPLICIT;\n }\n if (!!oneof || proto.proto3Optional) {\n // oneof is always explicit\n return EXPLICIT;\n }\n if (proto.type == TYPE_MESSAGE) {\n // singular message field cannot be implicit\n return EXPLICIT;\n }\n if (isExtension) {\n // extensions always track presence\n return EXPLICIT;\n }\n return resolveFeature(\"fieldPresence\", { proto, parent });\n}\n/**\n * Pack this repeated field?\n */\nfunction isPackedField(proto, parent) {\n if (proto.label != LABEL_REPEATED) {\n return false;\n }\n // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check\n switch (proto.type) {\n case TYPE_STRING:\n case TYPE_BYTES:\n case TYPE_GROUP:\n case TYPE_MESSAGE:\n // length-delimited types cannot be packed\n return false;\n }\n const o = proto.options;\n if (o && (0,_reflect_unsafe_js__WEBPACK_IMPORTED_MODULE_2__.unsafeIsSetExplicit)(o, \"packed\")) {\n // prefer the field option over edition features\n return o.packed;\n }\n return (PACKED ==\n resolveFeature(\"repeatedFieldEncoding\", {\n proto,\n parent,\n }));\n}\n/**\n * Find the key and value fields of a synthetic map entry message.\n */\nfunction findMapEntryFields(mapEntry) {\n const key = mapEntry.fields.find((f) => f.number === 1);\n const value = mapEntry.fields.find((f) => f.number === 2);\n assert(key &&\n key.fieldKind == \"scalar\" &&\n key.scalar != _descriptors_js__WEBPACK_IMPORTED_MODULE_4__.ScalarType.BYTES &&\n key.scalar != _descriptors_js__WEBPACK_IMPORTED_MODULE_4__.ScalarType.FLOAT &&\n key.scalar != _descriptors_js__WEBPACK_IMPORTED_MODULE_4__.ScalarType.DOUBLE &&\n value &&\n value.fieldKind != \"list\" &&\n value.fieldKind != \"map\");\n return { key, value };\n}\n/**\n * Enumerations can be open or closed.\n * See https://protobuf.dev/programming-guides/enum/\n */\nfunction isEnumOpen(desc) {\n var _a;\n return (OPEN ==\n resolveFeature(\"enumType\", {\n proto: desc.proto,\n parent: (_a = desc.parent) !== null && _a !== void 0 ? _a : desc.file,\n }));\n}\n/**\n * Encode the message delimited (a.k.a. proto2 group encoding), or\n * length-prefixed?\n */\nfunction isDelimitedEncoding(proto, parent) {\n if (proto.type == TYPE_GROUP) {\n return true;\n }\n return (DELIMITED ==\n resolveFeature(\"messageEncoding\", {\n proto,\n parent,\n }));\n}\nfunction resolveFeature(name, ref) {\n var _a, _b;\n const featureSet = (_a = ref.proto.options) === null || _a === void 0 ? void 0 : _a.features;\n if (featureSet) {\n const val = featureSet[name];\n if (val != 0) {\n return val;\n }\n }\n if (\"kind\" in ref) {\n if (ref.kind == \"message\") {\n return resolveFeature(name, (_b = ref.parent) !== null && _b !== void 0 ? _b : ref.file);\n }\n const editionDefaults = featureDefaults[ref.edition];\n if (!editionDefaults) {\n throw new Error(`feature default for edition ${ref.edition} not found`);\n }\n return editionDefaults[name];\n }\n return resolveFeature(name, ref.parent);\n}\n/**\n * Assert that condition is truthy or throw error (with message)\n */\nfunction assert(condition, msg) {\n // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions -- we want the implicit conversion to boolean\n if (!condition) {\n throw new Error(msg);\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/registry.js?");
430
300
 
431
301
  /***/ }),
432
302
 
433
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/to-binary.js":
303
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/to-binary.js":
434
304
  /*!***********************************************************************************************************!*\
435
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/to-binary.js ***!
305
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/to-binary.js ***!
436
306
  \***********************************************************************************************************/
437
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
438
-
439
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.toBinary = toBinary;\nexports.writeField = writeField;\nconst reflect_js_1 = __webpack_require__(/*! ./reflect/reflect.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect.js\");\nconst binary_encoding_js_1 = __webpack_require__(/*! ./wire/binary-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/binary-encoding.js\");\nconst descriptors_js_1 = __webpack_require__(/*! ./descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js\");\n// bootstrap-inject google.protobuf.FeatureSet.FieldPresence.LEGACY_REQUIRED: const $name: FeatureSet_FieldPresence.$localName = $number;\nconst LEGACY_REQUIRED = 3;\n// Default options for serializing binary data.\nconst writeDefaults = {\n writeUnknownFields: true,\n};\nfunction makeWriteOptions(options) {\n return options ? Object.assign(Object.assign({}, writeDefaults), options) : writeDefaults;\n}\nfunction toBinary(schema, message, options) {\n return writeFields(new binary_encoding_js_1.BinaryWriter(), makeWriteOptions(options), (0, reflect_js_1.reflect)(schema, message)).finish();\n}\nfunction writeFields(writer, opts, msg) {\n var _a;\n for (const f of msg.sortedFields) {\n if (!msg.isSet(f)) {\n if (f.presence == LEGACY_REQUIRED) {\n throw new Error(`cannot encode field ${msg.desc.typeName}.${f.name} to binary: required field not set`);\n }\n continue;\n }\n writeField(writer, opts, msg, f);\n }\n if (opts.writeUnknownFields) {\n for (const { no, wireType, data } of (_a = msg.getUnknown()) !== null && _a !== void 0 ? _a : []) {\n writer.tag(no, wireType).raw(data);\n }\n }\n return writer;\n}\n/**\n * @private\n */\nfunction writeField(writer, opts, msg, field) {\n var _a;\n switch (field.fieldKind) {\n case \"scalar\":\n case \"enum\":\n writeScalar(writer, (_a = field.scalar) !== null && _a !== void 0 ? _a : descriptors_js_1.ScalarType.INT32, field.number, msg.get(field));\n break;\n case \"list\":\n writeListField(writer, opts, field, msg.get(field));\n break;\n case \"message\":\n writeMessageField(writer, opts, field, msg.get(field));\n break;\n case \"map\":\n for (const [key, val] of msg.get(field)) {\n writeMapEntry(writer, opts, field, key, val);\n }\n break;\n }\n}\nfunction writeScalar(writer, scalarType, fieldNo, value) {\n writeScalarValue(writer.tag(fieldNo, writeTypeOfScalar(scalarType)), scalarType, value);\n}\nfunction writeMessageField(writer, opts, field, message) {\n if (field.delimitedEncoding) {\n writeFields(writer.tag(field.number, binary_encoding_js_1.WireType.StartGroup), opts, message).tag(field.number, binary_encoding_js_1.WireType.EndGroup);\n }\n else {\n writeFields(writer.tag(field.number, binary_encoding_js_1.WireType.LengthDelimited).fork(), opts, message).join();\n }\n}\nfunction writeListField(writer, opts, field, list) {\n var _a;\n if (field.listKind == \"message\") {\n for (const item of list) {\n writeMessageField(writer, opts, field, item);\n }\n return;\n }\n const scalarType = (_a = field.scalar) !== null && _a !== void 0 ? _a : descriptors_js_1.ScalarType.INT32;\n if (field.packed) {\n if (!list.size) {\n return;\n }\n writer.tag(field.number, binary_encoding_js_1.WireType.LengthDelimited).fork();\n for (const item of list) {\n writeScalarValue(writer, scalarType, item);\n }\n writer.join();\n return;\n }\n for (const item of list) {\n writeScalar(writer, scalarType, field.number, item);\n }\n}\nfunction writeMapEntry(writer, opts, field, key, value) {\n var _a;\n writer.tag(field.number, binary_encoding_js_1.WireType.LengthDelimited).fork();\n // write key, expecting key field number = 1\n writeScalar(writer, field.mapKey, 1, key);\n // write value, expecting value field number = 2\n switch (field.mapKind) {\n case \"scalar\":\n case \"enum\":\n writeScalar(writer, (_a = field.scalar) !== null && _a !== void 0 ? _a : descriptors_js_1.ScalarType.INT32, 2, value);\n break;\n case \"message\":\n writeFields(writer.tag(2, binary_encoding_js_1.WireType.LengthDelimited).fork(), opts, value).join();\n break;\n }\n writer.join();\n}\nfunction writeScalarValue(writer, type, value) {\n switch (type) {\n case descriptors_js_1.ScalarType.STRING:\n writer.string(value);\n break;\n case descriptors_js_1.ScalarType.BOOL:\n writer.bool(value);\n break;\n case descriptors_js_1.ScalarType.DOUBLE:\n writer.double(value);\n break;\n case descriptors_js_1.ScalarType.FLOAT:\n writer.float(value);\n break;\n case descriptors_js_1.ScalarType.INT32:\n writer.int32(value);\n break;\n case descriptors_js_1.ScalarType.INT64:\n writer.int64(value);\n break;\n case descriptors_js_1.ScalarType.UINT64:\n writer.uint64(value);\n break;\n case descriptors_js_1.ScalarType.FIXED64:\n writer.fixed64(value);\n break;\n case descriptors_js_1.ScalarType.BYTES:\n writer.bytes(value);\n break;\n case descriptors_js_1.ScalarType.FIXED32:\n writer.fixed32(value);\n break;\n case descriptors_js_1.ScalarType.SFIXED32:\n writer.sfixed32(value);\n break;\n case descriptors_js_1.ScalarType.SFIXED64:\n writer.sfixed64(value);\n break;\n case descriptors_js_1.ScalarType.SINT64:\n writer.sint64(value);\n break;\n case descriptors_js_1.ScalarType.UINT32:\n writer.uint32(value);\n break;\n case descriptors_js_1.ScalarType.SINT32:\n writer.sint32(value);\n break;\n }\n}\nfunction writeTypeOfScalar(type) {\n switch (type) {\n case descriptors_js_1.ScalarType.BYTES:\n case descriptors_js_1.ScalarType.STRING:\n return binary_encoding_js_1.WireType.LengthDelimited;\n case descriptors_js_1.ScalarType.DOUBLE:\n case descriptors_js_1.ScalarType.FIXED64:\n case descriptors_js_1.ScalarType.SFIXED64:\n return binary_encoding_js_1.WireType.Bit64;\n case descriptors_js_1.ScalarType.FIXED32:\n case descriptors_js_1.ScalarType.SFIXED32:\n case descriptors_js_1.ScalarType.FLOAT:\n return binary_encoding_js_1.WireType.Bit32;\n default:\n return binary_encoding_js_1.WireType.Varint;\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/to-binary.js?");
440
-
441
- /***/ }),
442
-
443
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/to-json.js":
444
- /*!*********************************************************************************************************!*\
445
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/to-json.js ***!
446
- \*********************************************************************************************************/
447
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
448
-
449
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.toJson = toJson;\nexports.toJsonString = toJsonString;\nexports.enumToJson = enumToJson;\nconst descriptors_js_1 = __webpack_require__(/*! ./descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js\");\nconst names_js_1 = __webpack_require__(/*! ./reflect/names.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/names.js\");\nconst reflect_js_1 = __webpack_require__(/*! ./reflect/reflect.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect.js\");\nconst index_js_1 = __webpack_require__(/*! ./wkt/index.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/index.js\");\nconst wrappers_js_1 = __webpack_require__(/*! ./wkt/wrappers.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/wrappers.js\");\nconst index_js_2 = __webpack_require__(/*! ./wire/index.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/index.js\");\nconst extensions_js_1 = __webpack_require__(/*! ./extensions.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/extensions.js\");\nconst reflect_check_js_1 = __webpack_require__(/*! ./reflect/reflect-check.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/reflect/reflect-check.js\");\n/* eslint-disable @typescript-eslint/restrict-template-expressions */\n// bootstrap-inject google.protobuf.FeatureSet.FieldPresence.LEGACY_REQUIRED: const $name: FeatureSet_FieldPresence.$localName = $number;\nconst LEGACY_REQUIRED = 3;\n// bootstrap-inject google.protobuf.FeatureSet.FieldPresence.IMPLICIT: const $name: FeatureSet_FieldPresence.$localName = $number;\nconst IMPLICIT = 2;\n// Default options for serializing to JSON.\nconst jsonWriteDefaults = {\n alwaysEmitImplicit: false,\n enumAsInteger: false,\n useProtoFieldName: false,\n};\nfunction makeWriteOptions(options) {\n return options ? Object.assign(Object.assign({}, jsonWriteDefaults), options) : jsonWriteDefaults;\n}\n/**\n * Serialize the message to a JSON value, a JavaScript value that can be\n * passed to JSON.stringify().\n */\nfunction toJson(schema, message, options) {\n return reflectToJson((0, reflect_js_1.reflect)(schema, message), makeWriteOptions(options));\n}\n/**\n * Serialize the message to a JSON string.\n */\nfunction toJsonString(schema, message, options) {\n var _a;\n const jsonValue = toJson(schema, message, options);\n return JSON.stringify(jsonValue, null, (_a = options === null || options === void 0 ? void 0 : options.prettySpaces) !== null && _a !== void 0 ? _a : 0);\n}\n/**\n * Serialize a single enum value to JSON.\n */\nfunction enumToJson(descEnum, value) {\n var _a;\n if (descEnum.typeName == \"google.protobuf.NullValue\") {\n return null;\n }\n const name = (_a = descEnum.value[value]) === null || _a === void 0 ? void 0 : _a.name;\n if (name === undefined) {\n throw new Error(`${String(value)} is not a value in ${descEnum.toString()}`);\n }\n return name;\n}\nfunction reflectToJson(msg, opts) {\n var _a;\n const wktJson = tryWktToJson(msg, opts);\n if (wktJson !== undefined)\n return wktJson;\n const json = {};\n for (const f of msg.sortedFields) {\n if (!msg.isSet(f)) {\n if (f.presence == LEGACY_REQUIRED) {\n throw new Error(`cannot encode field ${msg.desc.typeName}.${f.name} to JSON: required field not set`);\n }\n if (!opts.alwaysEmitImplicit || f.presence !== IMPLICIT) {\n // Fields with implicit presence omit zero values (e.g. empty string) by default\n continue;\n }\n }\n const jsonValue = fieldToJson(f, msg.get(f), opts);\n if (jsonValue !== undefined) {\n json[jsonName(f, opts)] = jsonValue;\n }\n }\n if (opts.registry) {\n const tagSeen = new Set();\n for (const uf of (_a = msg.getUnknown()) !== null && _a !== void 0 ? _a : []) {\n // Same tag can appear multiple times, so we\n // keep track and skip identical ones.\n if (tagSeen.has(uf.no)) {\n continue;\n }\n const extension = opts.registry.getExtensionFor(msg.desc, uf.no);\n if (!extension) {\n continue;\n }\n const value = (0, extensions_js_1.getExtension)(msg.message, extension);\n const [container, field] = (0, extensions_js_1.createExtensionContainer)(extension, value);\n const jsonValue = fieldToJson(field, container.get(field), opts);\n if (jsonValue !== undefined) {\n json[extension.jsonName] = jsonValue;\n }\n }\n }\n return json;\n}\nfunction fieldToJson(f, val, opts) {\n switch (f.fieldKind) {\n case \"scalar\":\n return scalarToJson(f, val);\n case \"message\":\n return reflectToJson(val, opts);\n case \"enum\":\n return enumToJsonInternal(f.enum, val, opts.enumAsInteger);\n case \"list\":\n return listToJson(val, opts);\n case \"map\":\n return mapToJson(val, opts);\n }\n}\nfunction mapToJson(map, opts) {\n const f = map.field();\n const jsonObj = {};\n switch (f.mapKind) {\n case \"scalar\":\n for (const [entryKey, entryValue] of map) {\n jsonObj[entryKey] = scalarToJson(f, entryValue);\n }\n break;\n case \"message\":\n for (const [entryKey, entryValue] of map) {\n jsonObj[entryKey] = reflectToJson(entryValue, opts);\n }\n break;\n case \"enum\":\n for (const [entryKey, entryValue] of map) {\n jsonObj[entryKey] = enumToJsonInternal(f.enum, entryValue, opts.enumAsInteger);\n }\n break;\n }\n return opts.alwaysEmitImplicit || map.size > 0 ? jsonObj : undefined;\n}\nfunction listToJson(list, opts) {\n const f = list.field();\n const jsonArr = [];\n switch (f.listKind) {\n case \"scalar\":\n for (const item of list) {\n jsonArr.push(scalarToJson(f, item));\n }\n break;\n case \"enum\":\n for (const item of list) {\n jsonArr.push(enumToJsonInternal(f.enum, item, opts.enumAsInteger));\n }\n break;\n case \"message\":\n for (const item of list) {\n jsonArr.push(reflectToJson(item, opts));\n }\n break;\n }\n return opts.alwaysEmitImplicit || jsonArr.length > 0 ? jsonArr : undefined;\n}\nfunction enumToJsonInternal(desc, value, enumAsInteger) {\n var _a;\n if (typeof value != \"number\") {\n throw new Error(`cannot encode ${desc} to JSON: expected number, got ${(0, reflect_check_js_1.formatVal)(value)}`);\n }\n if (desc.typeName == \"google.protobuf.NullValue\") {\n return null;\n }\n if (enumAsInteger) {\n return value;\n }\n const val = desc.value[value];\n return (_a = val === null || val === void 0 ? void 0 : val.name) !== null && _a !== void 0 ? _a : value; // if we don't know the enum value, just return the number\n}\nfunction scalarToJson(field, value) {\n var _a, _b, _c, _d, _e, _f;\n switch (field.scalar) {\n // int32, fixed32, uint32: JSON value will be a decimal number. Either numbers or strings are accepted.\n case descriptors_js_1.ScalarType.INT32:\n case descriptors_js_1.ScalarType.SFIXED32:\n case descriptors_js_1.ScalarType.SINT32:\n case descriptors_js_1.ScalarType.FIXED32:\n case descriptors_js_1.ScalarType.UINT32:\n if (typeof value != \"number\") {\n throw new Error(`cannot encode ${field} to JSON: ${(_a = (0, reflect_check_js_1.checkField)(field, value)) === null || _a === void 0 ? void 0 : _a.message}`);\n }\n return value;\n // float, double: JSON value will be a number or one of the special string values \"NaN\", \"Infinity\", and \"-Infinity\".\n // Either numbers or strings are accepted. Exponent notation is also accepted.\n case descriptors_js_1.ScalarType.FLOAT:\n case descriptors_js_1.ScalarType.DOUBLE: // eslint-disable-line no-fallthrough\n if (typeof value != \"number\") {\n throw new Error(`cannot encode ${field} to JSON: ${(_b = (0, reflect_check_js_1.checkField)(field, value)) === null || _b === void 0 ? void 0 : _b.message}`);\n }\n if (isNaN(value))\n return \"NaN\";\n if (value === Number.POSITIVE_INFINITY)\n return \"Infinity\";\n if (value === Number.NEGATIVE_INFINITY)\n return \"-Infinity\";\n return value;\n // string:\n case descriptors_js_1.ScalarType.STRING:\n if (typeof value != \"string\") {\n throw new Error(`cannot encode ${field} to JSON: ${(_c = (0, reflect_check_js_1.checkField)(field, value)) === null || _c === void 0 ? void 0 : _c.message}`);\n }\n return value;\n // bool:\n case descriptors_js_1.ScalarType.BOOL:\n if (typeof value != \"boolean\") {\n throw new Error(`cannot encode ${field} to JSON: ${(_d = (0, reflect_check_js_1.checkField)(field, value)) === null || _d === void 0 ? void 0 : _d.message}`);\n }\n return value;\n // JSON value will be a decimal string. Either numbers or strings are accepted.\n case descriptors_js_1.ScalarType.UINT64:\n case descriptors_js_1.ScalarType.FIXED64:\n case descriptors_js_1.ScalarType.INT64:\n case descriptors_js_1.ScalarType.SFIXED64:\n case descriptors_js_1.ScalarType.SINT64:\n if (typeof value != \"bigint\" && typeof value != \"string\") {\n throw new Error(`cannot encode ${field} to JSON: ${(_e = (0, reflect_check_js_1.checkField)(field, value)) === null || _e === void 0 ? void 0 : _e.message}`);\n }\n return value.toString();\n // bytes: JSON value will be the data encoded as a string using standard base64 encoding with paddings.\n // Either standard or URL-safe base64 encoding with/without paddings are accepted.\n case descriptors_js_1.ScalarType.BYTES:\n if (value instanceof Uint8Array) {\n return (0, index_js_2.base64Encode)(value);\n }\n throw new Error(`cannot encode ${field} to JSON: ${(_f = (0, reflect_check_js_1.checkField)(field, value)) === null || _f === void 0 ? void 0 : _f.message}`);\n }\n}\nfunction jsonName(f, opts) {\n return opts.useProtoFieldName ? f.name : f.jsonName;\n}\n// returns a json value if wkt, otherwise returns undefined.\nfunction tryWktToJson(msg, opts) {\n if (!msg.desc.typeName.startsWith(\"google.protobuf.\")) {\n return undefined;\n }\n switch (msg.desc.typeName) {\n case \"google.protobuf.Any\":\n return anyToJson(msg.message, opts);\n case \"google.protobuf.Timestamp\":\n return timestampToJson(msg.message);\n case \"google.protobuf.Duration\":\n return durationToJson(msg.message);\n case \"google.protobuf.FieldMask\":\n return fieldMaskToJson(msg.message);\n case \"google.protobuf.Struct\":\n return structToJson(msg.message);\n case \"google.protobuf.Value\":\n return valueToJson(msg.message);\n case \"google.protobuf.ListValue\":\n return listValueToJson(msg.message);\n default:\n if ((0, wrappers_js_1.isWrapperDesc)(msg.desc)) {\n const valueField = msg.desc.fields[0];\n return scalarToJson(valueField, msg.get(valueField));\n }\n return undefined;\n }\n}\nfunction anyToJson(val, opts) {\n if (val.typeUrl === \"\") {\n return {};\n }\n const { registry } = opts;\n let message;\n let desc;\n if (registry) {\n message = (0, index_js_1.anyUnpack)(val, registry);\n if (message) {\n desc = registry.getMessage(message.$typeName);\n }\n }\n if (!desc || !message) {\n throw new Error(`cannot encode message ${val.$typeName} to JSON: \"${val.typeUrl}\" is not in the type registry`);\n }\n let json = reflectToJson((0, reflect_js_1.reflect)(desc, message), opts);\n if (desc.typeName.startsWith(\"google.protobuf.\") ||\n json === null ||\n Array.isArray(json) ||\n typeof json !== \"object\") {\n json = { value: json };\n }\n json[\"@type\"] = val.typeUrl;\n return json;\n}\nfunction durationToJson(val) {\n if (Number(val.seconds) > 315576000000 ||\n Number(val.seconds) < -315576000000) {\n throw new Error(`cannot encode message ${val.$typeName} to JSON: value out of range`);\n }\n let text = val.seconds.toString();\n if (val.nanos !== 0) {\n let nanosStr = Math.abs(val.nanos).toString();\n nanosStr = \"0\".repeat(9 - nanosStr.length) + nanosStr;\n if (nanosStr.substring(3) === \"000000\") {\n nanosStr = nanosStr.substring(0, 3);\n }\n else if (nanosStr.substring(6) === \"000\") {\n nanosStr = nanosStr.substring(0, 6);\n }\n text += \".\" + nanosStr;\n if (val.nanos < 0 && Number(val.seconds) == 0) {\n text = \"-\" + text;\n }\n }\n return text + \"s\";\n}\nfunction fieldMaskToJson(val) {\n return val.paths\n .map((p) => {\n // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing\n if (p.match(/_[0-9]?_/g) || p.match(/[A-Z]/g)) {\n throw new Error(`cannot encode message ${val.$typeName} to JSON: lowerCamelCase of path name \"` +\n p +\n '\" is irreversible');\n }\n return (0, names_js_1.protoCamelCase)(p);\n })\n .join(\",\");\n}\nfunction structToJson(val) {\n const json = {};\n for (const [k, v] of Object.entries(val.fields)) {\n json[k] = valueToJson(v);\n }\n return json;\n}\nfunction valueToJson(val) {\n switch (val.kind.case) {\n case \"nullValue\":\n return null;\n case \"numberValue\":\n if (!Number.isFinite(val.kind.value)) {\n throw new Error(`${val.$typeName} cannot be NaN or Infinity`);\n }\n return val.kind.value;\n case \"boolValue\":\n return val.kind.value;\n case \"stringValue\":\n return val.kind.value;\n case \"structValue\":\n return structToJson(val.kind.value);\n case \"listValue\":\n return listValueToJson(val.kind.value);\n default:\n throw new Error(`${val.$typeName} must have a value`);\n }\n}\nfunction listValueToJson(val) {\n return val.values.map(valueToJson);\n}\nfunction timestampToJson(val) {\n const ms = Number(val.seconds) * 1000;\n if (ms < Date.parse(\"0001-01-01T00:00:00Z\") ||\n ms > Date.parse(\"9999-12-31T23:59:59Z\")) {\n throw new Error(`cannot encode message ${val.$typeName} to JSON: must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive`);\n }\n if (val.nanos < 0) {\n throw new Error(`cannot encode message ${val.$typeName} to JSON: nanos must not be negative`);\n }\n let z = \"Z\";\n if (val.nanos > 0) {\n const nanosStr = (val.nanos + 1000000000).toString().substring(1);\n if (nanosStr.substring(3) === \"000000\") {\n z = \".\" + nanosStr.substring(0, 3) + \"Z\";\n }\n else if (nanosStr.substring(6) === \"000\") {\n z = \".\" + nanosStr.substring(0, 6) + \"Z\";\n }\n else {\n z = \".\" + nanosStr + \"Z\";\n }\n }\n return new Date(ms).toISOString().replace(\".000Z\", z);\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/to-json.js?");
450
-
451
- /***/ }),
452
-
453
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/types.js":
454
- /*!*******************************************************************************************************!*\
455
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/types.js ***!
456
- \*******************************************************************************************************/
457
- /***/ ((__unused_webpack_module, exports) => {
307
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
458
308
 
459
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/types.js?");
309
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ toBinary: () => (/* binding */ toBinary),\n/* harmony export */ writeField: () => (/* binding */ writeField)\n/* harmony export */ });\n/* harmony import */ var _reflect_reflect_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./reflect/reflect.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/reflect/reflect.js\");\n/* harmony import */ var _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./wire/binary-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/binary-encoding.js\");\n/* harmony import */ var _descriptors_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/descriptors.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n\n\n// bootstrap-inject google.protobuf.FeatureSet.FieldPresence.LEGACY_REQUIRED: const $name: FeatureSet_FieldPresence.$localName = $number;\nconst LEGACY_REQUIRED = 3;\n// Default options for serializing binary data.\nconst writeDefaults = {\n writeUnknownFields: true,\n};\nfunction makeWriteOptions(options) {\n return options ? Object.assign(Object.assign({}, writeDefaults), options) : writeDefaults;\n}\nfunction toBinary(schema, message, options) {\n return writeFields(new _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_0__.BinaryWriter(), makeWriteOptions(options), (0,_reflect_reflect_js__WEBPACK_IMPORTED_MODULE_1__.reflect)(schema, message)).finish();\n}\nfunction writeFields(writer, opts, msg) {\n var _a;\n for (const f of msg.sortedFields) {\n if (!msg.isSet(f)) {\n if (f.presence == LEGACY_REQUIRED) {\n throw new Error(`cannot encode field ${msg.desc.typeName}.${f.name} to binary: required field not set`);\n }\n continue;\n }\n writeField(writer, opts, msg, f);\n }\n if (opts.writeUnknownFields) {\n for (const { no, wireType, data } of (_a = msg.getUnknown()) !== null && _a !== void 0 ? _a : []) {\n writer.tag(no, wireType).raw(data);\n }\n }\n return writer;\n}\n/**\n * @private\n */\nfunction writeField(writer, opts, msg, field) {\n var _a;\n switch (field.fieldKind) {\n case \"scalar\":\n case \"enum\":\n writeScalar(writer, (_a = field.scalar) !== null && _a !== void 0 ? _a : _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.INT32, field.number, msg.get(field));\n break;\n case \"list\":\n writeListField(writer, opts, field, msg.get(field));\n break;\n case \"message\":\n writeMessageField(writer, opts, field, msg.get(field));\n break;\n case \"map\":\n for (const [key, val] of msg.get(field)) {\n writeMapEntry(writer, opts, field, key, val);\n }\n break;\n }\n}\nfunction writeScalar(writer, scalarType, fieldNo, value) {\n writeScalarValue(writer.tag(fieldNo, writeTypeOfScalar(scalarType)), scalarType, value);\n}\nfunction writeMessageField(writer, opts, field, message) {\n if (field.delimitedEncoding) {\n writeFields(writer.tag(field.number, _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_0__.WireType.StartGroup), opts, message).tag(field.number, _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_0__.WireType.EndGroup);\n }\n else {\n writeFields(writer.tag(field.number, _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_0__.WireType.LengthDelimited).fork(), opts, message).join();\n }\n}\nfunction writeListField(writer, opts, field, list) {\n var _a;\n if (field.listKind == \"message\") {\n for (const item of list) {\n writeMessageField(writer, opts, field, item);\n }\n return;\n }\n const scalarType = (_a = field.scalar) !== null && _a !== void 0 ? _a : _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.INT32;\n if (field.packed) {\n if (!list.size) {\n return;\n }\n writer.tag(field.number, _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_0__.WireType.LengthDelimited).fork();\n for (const item of list) {\n writeScalarValue(writer, scalarType, item);\n }\n writer.join();\n return;\n }\n for (const item of list) {\n writeScalar(writer, scalarType, field.number, item);\n }\n}\nfunction writeMapEntry(writer, opts, field, key, value) {\n var _a;\n writer.tag(field.number, _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_0__.WireType.LengthDelimited).fork();\n // write key, expecting key field number = 1\n writeScalar(writer, field.mapKey, 1, key);\n // write value, expecting value field number = 2\n switch (field.mapKind) {\n case \"scalar\":\n case \"enum\":\n writeScalar(writer, (_a = field.scalar) !== null && _a !== void 0 ? _a : _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.INT32, 2, value);\n break;\n case \"message\":\n writeFields(writer.tag(2, _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_0__.WireType.LengthDelimited).fork(), opts, value).join();\n break;\n }\n writer.join();\n}\nfunction writeScalarValue(writer, type, value) {\n switch (type) {\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.STRING:\n writer.string(value);\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.BOOL:\n writer.bool(value);\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.DOUBLE:\n writer.double(value);\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FLOAT:\n writer.float(value);\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.INT32:\n writer.int32(value);\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.INT64:\n writer.int64(value);\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.UINT64:\n writer.uint64(value);\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FIXED64:\n writer.fixed64(value);\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.BYTES:\n writer.bytes(value);\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FIXED32:\n writer.fixed32(value);\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SFIXED32:\n writer.sfixed32(value);\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SFIXED64:\n writer.sfixed64(value);\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SINT64:\n writer.sint64(value);\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.UINT32:\n writer.uint32(value);\n break;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SINT32:\n writer.sint32(value);\n break;\n }\n}\nfunction writeTypeOfScalar(type) {\n switch (type) {\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.BYTES:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.STRING:\n return _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_0__.WireType.LengthDelimited;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.DOUBLE:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FIXED64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SFIXED64:\n return _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_0__.WireType.Bit64;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FIXED32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.SFIXED32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_2__.ScalarType.FLOAT:\n return _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_0__.WireType.Bit32;\n default:\n return _wire_binary_encoding_js__WEBPACK_IMPORTED_MODULE_0__.WireType.Varint;\n }\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/to-binary.js?");
460
310
 
461
311
  /***/ }),
462
312
 
463
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/base64-encoding.js":
313
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/base64-encoding.js":
464
314
  /*!**********************************************************************************************************************!*\
465
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/base64-encoding.js ***!
315
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/base64-encoding.js ***!
466
316
  \**********************************************************************************************************************/
467
- /***/ ((__unused_webpack_module, exports) => {
317
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
468
318
 
469
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.base64Decode = base64Decode;\nexports.base64Encode = base64Encode;\n/* eslint-disable @typescript-eslint/ban-ts-comment, @typescript-eslint/no-unnecessary-condition, prefer-const */\n/**\n * Decodes a base64 string to a byte array.\n *\n * - ignores white-space, including line breaks and tabs\n * - allows inner padding (can decode concatenated base64 strings)\n * - does not require padding\n * - understands base64url encoding:\n * \"-\" instead of \"+\",\n * \"_\" instead of \"/\",\n * no padding\n */\nfunction base64Decode(base64Str) {\n const table = getDecodeTable();\n // estimate byte size, not accounting for inner padding and whitespace\n let es = (base64Str.length * 3) / 4;\n if (base64Str[base64Str.length - 2] == \"=\")\n es -= 2;\n else if (base64Str[base64Str.length - 1] == \"=\")\n es -= 1;\n let bytes = new Uint8Array(es), bytePos = 0, // position in byte array\n groupPos = 0, // position in base64 group\n b, // current byte\n p = 0; // previous byte\n for (let i = 0; i < base64Str.length; i++) {\n b = table[base64Str.charCodeAt(i)];\n if (b === undefined) {\n switch (base64Str[i]) {\n // @ts-expect-error TS7029: Fallthrough case in switch\n case \"=\":\n groupPos = 0; // reset state when padding found\n // eslint-disable-next-line no-fallthrough\n case \"\\n\":\n case \"\\r\":\n case \"\\t\":\n case \" \":\n continue; // skip white-space, and padding\n default:\n throw Error(\"invalid base64 string\");\n }\n }\n switch (groupPos) {\n case 0:\n p = b;\n groupPos = 1;\n break;\n case 1:\n bytes[bytePos++] = (p << 2) | ((b & 48) >> 4);\n p = b;\n groupPos = 2;\n break;\n case 2:\n bytes[bytePos++] = ((p & 15) << 4) | ((b & 60) >> 2);\n p = b;\n groupPos = 3;\n break;\n case 3:\n bytes[bytePos++] = ((p & 3) << 6) | b;\n groupPos = 0;\n break;\n }\n }\n if (groupPos == 1)\n throw Error(\"invalid base64 string\");\n return bytes.subarray(0, bytePos);\n}\n/**\n * Encode a byte array to a base64 string.\n *\n * By default, this function uses the standard base64 encoding with padding.\n *\n * To encode without padding, use encoding = \"std_raw\".\n *\n * To encode with the URL encoding, use encoding = \"url\", which replaces the\n * characters +/ by their URL-safe counterparts -_, and omits padding.\n */\nfunction base64Encode(bytes, encoding = \"std\") {\n const table = getEncodeTable(encoding);\n const pad = encoding == \"std\";\n let base64 = \"\", groupPos = 0, // position in base64 group\n b, // current byte\n p = 0; // carry over from previous byte\n for (let i = 0; i < bytes.length; i++) {\n b = bytes[i];\n switch (groupPos) {\n case 0:\n base64 += table[b >> 2];\n p = (b & 3) << 4;\n groupPos = 1;\n break;\n case 1:\n base64 += table[p | (b >> 4)];\n p = (b & 15) << 2;\n groupPos = 2;\n break;\n case 2:\n base64 += table[p | (b >> 6)];\n base64 += table[b & 63];\n groupPos = 0;\n break;\n }\n }\n // add output padding\n if (groupPos) {\n base64 += table[p];\n if (pad) {\n base64 += \"=\";\n if (groupPos == 1)\n base64 += \"=\";\n }\n }\n return base64;\n}\n// lookup table from base64 character to byte\nlet encodeTableStd;\nlet encodeTableUrl;\n// lookup table from base64 character *code* to byte because lookup by number is fast\nlet decodeTable;\nfunction getEncodeTable(encoding) {\n if (!encodeTableStd) {\n encodeTableStd =\n \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\".split(\"\");\n encodeTableUrl = encodeTableStd.slice(0, -2).concat(\"-\", \"_\");\n }\n return encoding == \"url\" ? encodeTableUrl : encodeTableStd;\n}\nfunction getDecodeTable() {\n if (!decodeTable) {\n decodeTable = [];\n const encodeTable = getEncodeTable(\"std\");\n for (let i = 0; i < encodeTable.length; i++)\n decodeTable[encodeTable[i].charCodeAt(0)] = i;\n // support base64url variants\n decodeTable[\"-\".charCodeAt(0)] = encodeTable.indexOf(\"+\");\n decodeTable[\"_\".charCodeAt(0)] = encodeTable.indexOf(\"/\");\n }\n return decodeTable;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/base64-encoding.js?");
319
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ base64Decode: () => (/* binding */ base64Decode),\n/* harmony export */ base64Encode: () => (/* binding */ base64Encode)\n/* harmony export */ });\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n/* eslint-disable @typescript-eslint/ban-ts-comment, @typescript-eslint/no-unnecessary-condition, prefer-const */\n/**\n * Decodes a base64 string to a byte array.\n *\n * - ignores white-space, including line breaks and tabs\n * - allows inner padding (can decode concatenated base64 strings)\n * - does not require padding\n * - understands base64url encoding:\n * \"-\" instead of \"+\",\n * \"_\" instead of \"/\",\n * no padding\n */\nfunction base64Decode(base64Str) {\n const table = getDecodeTable();\n // estimate byte size, not accounting for inner padding and whitespace\n let es = (base64Str.length * 3) / 4;\n if (base64Str[base64Str.length - 2] == \"=\")\n es -= 2;\n else if (base64Str[base64Str.length - 1] == \"=\")\n es -= 1;\n let bytes = new Uint8Array(es), bytePos = 0, // position in byte array\n groupPos = 0, // position in base64 group\n b, // current byte\n p = 0; // previous byte\n for (let i = 0; i < base64Str.length; i++) {\n b = table[base64Str.charCodeAt(i)];\n if (b === undefined) {\n switch (base64Str[i]) {\n // @ts-expect-error TS7029: Fallthrough case in switch\n case \"=\":\n groupPos = 0; // reset state when padding found\n // eslint-disable-next-line no-fallthrough\n case \"\\n\":\n case \"\\r\":\n case \"\\t\":\n case \" \":\n continue; // skip white-space, and padding\n default:\n throw Error(\"invalid base64 string\");\n }\n }\n switch (groupPos) {\n case 0:\n p = b;\n groupPos = 1;\n break;\n case 1:\n bytes[bytePos++] = (p << 2) | ((b & 48) >> 4);\n p = b;\n groupPos = 2;\n break;\n case 2:\n bytes[bytePos++] = ((p & 15) << 4) | ((b & 60) >> 2);\n p = b;\n groupPos = 3;\n break;\n case 3:\n bytes[bytePos++] = ((p & 3) << 6) | b;\n groupPos = 0;\n break;\n }\n }\n if (groupPos == 1)\n throw Error(\"invalid base64 string\");\n return bytes.subarray(0, bytePos);\n}\n/**\n * Encode a byte array to a base64 string.\n *\n * By default, this function uses the standard base64 encoding with padding.\n *\n * To encode without padding, use encoding = \"std_raw\".\n *\n * To encode with the URL encoding, use encoding = \"url\", which replaces the\n * characters +/ by their URL-safe counterparts -_, and omits padding.\n */\nfunction base64Encode(bytes, encoding = \"std\") {\n const table = getEncodeTable(encoding);\n const pad = encoding == \"std\";\n let base64 = \"\", groupPos = 0, // position in base64 group\n b, // current byte\n p = 0; // carry over from previous byte\n for (let i = 0; i < bytes.length; i++) {\n b = bytes[i];\n switch (groupPos) {\n case 0:\n base64 += table[b >> 2];\n p = (b & 3) << 4;\n groupPos = 1;\n break;\n case 1:\n base64 += table[p | (b >> 4)];\n p = (b & 15) << 2;\n groupPos = 2;\n break;\n case 2:\n base64 += table[p | (b >> 6)];\n base64 += table[b & 63];\n groupPos = 0;\n break;\n }\n }\n // add output padding\n if (groupPos) {\n base64 += table[p];\n if (pad) {\n base64 += \"=\";\n if (groupPos == 1)\n base64 += \"=\";\n }\n }\n return base64;\n}\n// lookup table from base64 character to byte\nlet encodeTableStd;\nlet encodeTableUrl;\n// lookup table from base64 character *code* to byte because lookup by number is fast\nlet decodeTable;\nfunction getEncodeTable(encoding) {\n if (!encodeTableStd) {\n encodeTableStd =\n \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\".split(\"\");\n encodeTableUrl = encodeTableStd.slice(0, -2).concat(\"-\", \"_\");\n }\n return encoding == \"url\" ? encodeTableUrl : encodeTableStd;\n}\nfunction getDecodeTable() {\n if (!decodeTable) {\n decodeTable = [];\n const encodeTable = getEncodeTable(\"std\");\n for (let i = 0; i < encodeTable.length; i++)\n decodeTable[encodeTable[i].charCodeAt(0)] = i;\n // support base64url variants\n decodeTable[\"-\".charCodeAt(0)] = encodeTable.indexOf(\"+\");\n decodeTable[\"_\".charCodeAt(0)] = encodeTable.indexOf(\"/\");\n }\n return decodeTable;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/base64-encoding.js?");
470
320
 
471
321
  /***/ }),
472
322
 
473
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/binary-encoding.js":
323
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/binary-encoding.js":
474
324
  /*!**********************************************************************************************************************!*\
475
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/binary-encoding.js ***!
325
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/binary-encoding.js ***!
476
326
  \**********************************************************************************************************************/
477
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
478
-
479
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.BinaryReader = exports.BinaryWriter = exports.INT32_MIN = exports.INT32_MAX = exports.UINT32_MAX = exports.FLOAT32_MIN = exports.FLOAT32_MAX = exports.WireType = void 0;\nconst varint_js_1 = __webpack_require__(/*! ./varint.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/varint.js\");\nconst proto_int64_js_1 = __webpack_require__(/*! ../proto-int64.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js\");\nconst text_encoding_js_1 = __webpack_require__(/*! ./text-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/text-encoding.js\");\n/* eslint-disable prefer-const,no-case-declarations,@typescript-eslint/restrict-plus-operands */\n/**\n * Protobuf binary format wire types.\n *\n * A wire type provides just enough information to find the length of the\n * following value.\n *\n * See https://developers.google.com/protocol-buffers/docs/encoding#structure\n */\nvar WireType;\n(function (WireType) {\n /**\n * Used for int32, int64, uint32, uint64, sint32, sint64, bool, enum\n */\n WireType[WireType[\"Varint\"] = 0] = \"Varint\";\n /**\n * Used for fixed64, sfixed64, double.\n * Always 8 bytes with little-endian byte order.\n */\n WireType[WireType[\"Bit64\"] = 1] = \"Bit64\";\n /**\n * Used for string, bytes, embedded messages, packed repeated fields\n *\n * Only repeated numeric types (types which use the varint, 32-bit,\n * or 64-bit wire types) can be packed. In proto3, such fields are\n * packed by default.\n */\n WireType[WireType[\"LengthDelimited\"] = 2] = \"LengthDelimited\";\n /**\n * Start of a tag-delimited aggregate, such as a proto2 group, or a message\n * in editions with message_encoding = DELIMITED.\n */\n WireType[WireType[\"StartGroup\"] = 3] = \"StartGroup\";\n /**\n * End of a tag-delimited aggregate.\n */\n WireType[WireType[\"EndGroup\"] = 4] = \"EndGroup\";\n /**\n * Used for fixed32, sfixed32, float.\n * Always 4 bytes with little-endian byte order.\n */\n WireType[WireType[\"Bit32\"] = 5] = \"Bit32\";\n})(WireType || (exports.WireType = WireType = {}));\n/**\n * Maximum value for a 32-bit floating point value (Protobuf FLOAT).\n */\nexports.FLOAT32_MAX = 3.4028234663852886e38;\n/**\n * Minimum value for a 32-bit floating point value (Protobuf FLOAT).\n */\nexports.FLOAT32_MIN = -3.4028234663852886e38;\n/**\n * Maximum value for an unsigned 32-bit integer (Protobuf UINT32, FIXED32).\n */\nexports.UINT32_MAX = 0xffffffff;\n/**\n * Maximum value for a signed 32-bit integer (Protobuf INT32, SFIXED32, SINT32).\n */\nexports.INT32_MAX = 0x7fffffff;\n/**\n * Minimum value for a signed 32-bit integer (Protobuf INT32, SFIXED32, SINT32).\n */\nexports.INT32_MIN = -0x80000000;\nclass BinaryWriter {\n constructor(encodeUtf8 = (0, text_encoding_js_1.getTextEncoding)().encodeUtf8) {\n this.encodeUtf8 = encodeUtf8;\n /**\n * Previous fork states.\n */\n this.stack = [];\n this.chunks = [];\n this.buf = [];\n }\n /**\n * Return all bytes written and reset this writer.\n */\n finish() {\n if (this.buf.length) {\n this.chunks.push(new Uint8Array(this.buf)); // flush the buffer\n this.buf = [];\n }\n let len = 0;\n for (let i = 0; i < this.chunks.length; i++)\n len += this.chunks[i].length;\n let bytes = new Uint8Array(len);\n let offset = 0;\n for (let i = 0; i < this.chunks.length; i++) {\n bytes.set(this.chunks[i], offset);\n offset += this.chunks[i].length;\n }\n this.chunks = [];\n return bytes;\n }\n /**\n * Start a new fork for length-delimited data like a message\n * or a packed repeated field.\n *\n * Must be joined later with `join()`.\n */\n fork() {\n this.stack.push({ chunks: this.chunks, buf: this.buf });\n this.chunks = [];\n this.buf = [];\n return this;\n }\n /**\n * Join the last fork. Write its length and bytes, then\n * return to the previous state.\n */\n join() {\n // get chunk of fork\n let chunk = this.finish();\n // restore previous state\n let prev = this.stack.pop();\n if (!prev)\n throw new Error(\"invalid state, fork stack empty\");\n this.chunks = prev.chunks;\n this.buf = prev.buf;\n // write length of chunk as varint\n this.uint32(chunk.byteLength);\n return this.raw(chunk);\n }\n /**\n * Writes a tag (field number and wire type).\n *\n * Equivalent to `uint32( (fieldNo << 3 | type) >>> 0 )`.\n *\n * Generated code should compute the tag ahead of time and call `uint32()`.\n */\n tag(fieldNo, type) {\n return this.uint32(((fieldNo << 3) | type) >>> 0);\n }\n /**\n * Write a chunk of raw bytes.\n */\n raw(chunk) {\n if (this.buf.length) {\n this.chunks.push(new Uint8Array(this.buf));\n this.buf = [];\n }\n this.chunks.push(chunk);\n return this;\n }\n /**\n * Write a `uint32` value, an unsigned 32 bit varint.\n */\n uint32(value) {\n assertUInt32(value);\n // write value as varint 32, inlined for speed\n while (value > 0x7f) {\n this.buf.push((value & 0x7f) | 0x80);\n value = value >>> 7;\n }\n this.buf.push(value);\n return this;\n }\n /**\n * Write a `int32` value, a signed 32 bit varint.\n */\n int32(value) {\n assertInt32(value);\n (0, varint_js_1.varint32write)(value, this.buf);\n return this;\n }\n /**\n * Write a `bool` value, a variant.\n */\n bool(value) {\n this.buf.push(value ? 1 : 0);\n return this;\n }\n /**\n * Write a `bytes` value, length-delimited arbitrary data.\n */\n bytes(value) {\n this.uint32(value.byteLength); // write length of chunk as varint\n return this.raw(value);\n }\n /**\n * Write a `string` value, length-delimited data converted to UTF-8 text.\n */\n string(value) {\n let chunk = this.encodeUtf8(value);\n this.uint32(chunk.byteLength); // write length of chunk as varint\n return this.raw(chunk);\n }\n /**\n * Write a `float` value, 32-bit floating point number.\n */\n float(value) {\n assertFloat32(value);\n let chunk = new Uint8Array(4);\n new DataView(chunk.buffer).setFloat32(0, value, true);\n return this.raw(chunk);\n }\n /**\n * Write a `double` value, a 64-bit floating point number.\n */\n double(value) {\n let chunk = new Uint8Array(8);\n new DataView(chunk.buffer).setFloat64(0, value, true);\n return this.raw(chunk);\n }\n /**\n * Write a `fixed32` value, an unsigned, fixed-length 32-bit integer.\n */\n fixed32(value) {\n assertUInt32(value);\n let chunk = new Uint8Array(4);\n new DataView(chunk.buffer).setUint32(0, value, true);\n return this.raw(chunk);\n }\n /**\n * Write a `sfixed32` value, a signed, fixed-length 32-bit integer.\n */\n sfixed32(value) {\n assertInt32(value);\n let chunk = new Uint8Array(4);\n new DataView(chunk.buffer).setInt32(0, value, true);\n return this.raw(chunk);\n }\n /**\n * Write a `sint32` value, a signed, zigzag-encoded 32-bit varint.\n */\n sint32(value) {\n assertInt32(value);\n // zigzag encode\n value = ((value << 1) ^ (value >> 31)) >>> 0;\n (0, varint_js_1.varint32write)(value, this.buf);\n return this;\n }\n /**\n * Write a `fixed64` value, a signed, fixed-length 64-bit integer.\n */\n sfixed64(value) {\n let chunk = new Uint8Array(8), view = new DataView(chunk.buffer), tc = proto_int64_js_1.protoInt64.enc(value);\n view.setInt32(0, tc.lo, true);\n view.setInt32(4, tc.hi, true);\n return this.raw(chunk);\n }\n /**\n * Write a `fixed64` value, an unsigned, fixed-length 64 bit integer.\n */\n fixed64(value) {\n let chunk = new Uint8Array(8), view = new DataView(chunk.buffer), tc = proto_int64_js_1.protoInt64.uEnc(value);\n view.setInt32(0, tc.lo, true);\n view.setInt32(4, tc.hi, true);\n return this.raw(chunk);\n }\n /**\n * Write a `int64` value, a signed 64-bit varint.\n */\n int64(value) {\n let tc = proto_int64_js_1.protoInt64.enc(value);\n (0, varint_js_1.varint64write)(tc.lo, tc.hi, this.buf);\n return this;\n }\n /**\n * Write a `sint64` value, a signed, zig-zag-encoded 64-bit varint.\n */\n sint64(value) {\n let tc = proto_int64_js_1.protoInt64.enc(value), \n // zigzag encode\n sign = tc.hi >> 31, lo = (tc.lo << 1) ^ sign, hi = ((tc.hi << 1) | (tc.lo >>> 31)) ^ sign;\n (0, varint_js_1.varint64write)(lo, hi, this.buf);\n return this;\n }\n /**\n * Write a `uint64` value, an unsigned 64-bit varint.\n */\n uint64(value) {\n let tc = proto_int64_js_1.protoInt64.uEnc(value);\n (0, varint_js_1.varint64write)(tc.lo, tc.hi, this.buf);\n return this;\n }\n}\nexports.BinaryWriter = BinaryWriter;\nclass BinaryReader {\n constructor(buf, decodeUtf8 = (0, text_encoding_js_1.getTextEncoding)().decodeUtf8) {\n this.decodeUtf8 = decodeUtf8;\n this.varint64 = varint_js_1.varint64read; // dirty cast for `this`\n /**\n * Read a `uint32` field, an unsigned 32 bit varint.\n */\n this.uint32 = varint_js_1.varint32read;\n this.buf = buf;\n this.len = buf.length;\n this.pos = 0;\n this.view = new DataView(buf.buffer, buf.byteOffset, buf.byteLength);\n }\n /**\n * Reads a tag - field number and wire type.\n */\n tag() {\n let tag = this.uint32(), fieldNo = tag >>> 3, wireType = tag & 7;\n if (fieldNo <= 0 || wireType < 0 || wireType > 5)\n throw new Error(\"illegal tag: field no \" + fieldNo + \" wire type \" + wireType);\n return [fieldNo, wireType];\n }\n /**\n * Skip one element and return the skipped data.\n *\n * When skipping StartGroup, provide the tags field number to check for\n * matching field number in the EndGroup tag.\n */\n skip(wireType, fieldNo) {\n let start = this.pos;\n switch (wireType) {\n case WireType.Varint:\n while (this.buf[this.pos++] & 0x80) {\n // ignore\n }\n break;\n // eslint-disable-next-line\n // @ts-expect-error TS7029: Fallthrough case in switch\n case WireType.Bit64:\n this.pos += 4;\n // eslint-disable-next-line no-fallthrough\n case WireType.Bit32:\n this.pos += 4;\n break;\n case WireType.LengthDelimited:\n let len = this.uint32();\n this.pos += len;\n break;\n case WireType.StartGroup:\n for (;;) {\n const [fn, wt] = this.tag();\n if (wt === WireType.EndGroup) {\n if (fieldNo !== undefined && fn !== fieldNo) {\n throw new Error(\"invalid end group tag\");\n }\n break;\n }\n this.skip(wt, fn);\n }\n break;\n default:\n throw new Error(\"cant skip wire type \" + wireType);\n }\n this.assertBounds();\n return this.buf.subarray(start, this.pos);\n }\n /**\n * Throws error if position in byte array is out of range.\n */\n assertBounds() {\n if (this.pos > this.len)\n throw new RangeError(\"premature EOF\");\n }\n /**\n * Read a `int32` field, a signed 32 bit varint.\n */\n int32() {\n return this.uint32() | 0;\n }\n /**\n * Read a `sint32` field, a signed, zigzag-encoded 32-bit varint.\n */\n sint32() {\n let zze = this.uint32();\n // decode zigzag\n return (zze >>> 1) ^ -(zze & 1);\n }\n /**\n * Read a `int64` field, a signed 64-bit varint.\n */\n int64() {\n return proto_int64_js_1.protoInt64.dec(...this.varint64());\n }\n /**\n * Read a `uint64` field, an unsigned 64-bit varint.\n */\n uint64() {\n return proto_int64_js_1.protoInt64.uDec(...this.varint64());\n }\n /**\n * Read a `sint64` field, a signed, zig-zag-encoded 64-bit varint.\n */\n sint64() {\n let [lo, hi] = this.varint64();\n // decode zig zag\n let s = -(lo & 1);\n lo = ((lo >>> 1) | ((hi & 1) << 31)) ^ s;\n hi = (hi >>> 1) ^ s;\n return proto_int64_js_1.protoInt64.dec(lo, hi);\n }\n /**\n * Read a `bool` field, a variant.\n */\n bool() {\n let [lo, hi] = this.varint64();\n return lo !== 0 || hi !== 0;\n }\n /**\n * Read a `fixed32` field, an unsigned, fixed-length 32-bit integer.\n */\n fixed32() {\n return this.view.getUint32((this.pos += 4) - 4, true);\n }\n /**\n * Read a `sfixed32` field, a signed, fixed-length 32-bit integer.\n */\n sfixed32() {\n return this.view.getInt32((this.pos += 4) - 4, true);\n }\n /**\n * Read a `fixed64` field, an unsigned, fixed-length 64 bit integer.\n */\n fixed64() {\n return proto_int64_js_1.protoInt64.uDec(this.sfixed32(), this.sfixed32());\n }\n /**\n * Read a `fixed64` field, a signed, fixed-length 64-bit integer.\n */\n sfixed64() {\n return proto_int64_js_1.protoInt64.dec(this.sfixed32(), this.sfixed32());\n }\n /**\n * Read a `float` field, 32-bit floating point number.\n */\n float() {\n return this.view.getFloat32((this.pos += 4) - 4, true);\n }\n /**\n * Read a `double` field, a 64-bit floating point number.\n */\n double() {\n return this.view.getFloat64((this.pos += 8) - 8, true);\n }\n /**\n * Read a `bytes` field, length-delimited arbitrary data.\n */\n bytes() {\n let len = this.uint32(), start = this.pos;\n this.pos += len;\n this.assertBounds();\n return this.buf.subarray(start, start + len);\n }\n /**\n * Read a `string` field, length-delimited data converted to UTF-8 text.\n */\n string() {\n return this.decodeUtf8(this.bytes());\n }\n}\nexports.BinaryReader = BinaryReader;\n/**\n * Assert a valid signed protobuf 32-bit integer as a number or string.\n */\nfunction assertInt32(arg) {\n if (typeof arg == \"string\") {\n arg = Number(arg);\n }\n else if (typeof arg != \"number\") {\n throw new Error(\"invalid int32: \" + typeof arg);\n }\n if (!Number.isInteger(arg) ||\n arg > exports.INT32_MAX ||\n arg < exports.INT32_MIN)\n throw new Error(\"invalid int32: \" + arg);\n}\n/**\n * Assert a valid unsigned protobuf 32-bit integer as a number or string.\n */\nfunction assertUInt32(arg) {\n if (typeof arg == \"string\") {\n arg = Number(arg);\n }\n else if (typeof arg != \"number\") {\n throw new Error(\"invalid uint32: \" + typeof arg);\n }\n if (!Number.isInteger(arg) ||\n arg > exports.UINT32_MAX ||\n arg < 0)\n throw new Error(\"invalid uint32: \" + arg);\n}\n/**\n * Assert a valid protobuf float value as a number or string.\n */\nfunction assertFloat32(arg) {\n if (typeof arg == \"string\") {\n const o = arg;\n arg = Number(arg);\n if (isNaN(arg) && o !== \"NaN\") {\n throw new Error(\"invalid float32: \" + o);\n }\n }\n else if (typeof arg != \"number\") {\n throw new Error(\"invalid float32: \" + typeof arg);\n }\n if (Number.isFinite(arg) &&\n (arg > exports.FLOAT32_MAX || arg < exports.FLOAT32_MIN))\n throw new Error(\"invalid float32: \" + arg);\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/binary-encoding.js?");
480
-
481
- /***/ }),
482
-
483
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/index.js":
484
- /*!************************************************************************************************************!*\
485
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/index.js ***!
486
- \************************************************************************************************************/
487
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
488
-
489
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\n__exportStar(__webpack_require__(/*! ./binary-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/binary-encoding.js\"), exports);\n__exportStar(__webpack_require__(/*! ./base64-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/base64-encoding.js\"), exports);\n__exportStar(__webpack_require__(/*! ./text-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/text-encoding.js\"), exports);\n__exportStar(__webpack_require__(/*! ./text-format.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/text-format.js\"), exports);\n__exportStar(__webpack_require__(/*! ./size-delimited.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/size-delimited.js\"), exports);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/index.js?");
490
-
491
- /***/ }),
492
-
493
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/size-delimited.js":
494
- /*!*********************************************************************************************************************!*\
495
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/size-delimited.js ***!
496
- \*********************************************************************************************************************/
497
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
327
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
498
328
 
499
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nvar __asyncValues = (this && this.__asyncValues) || function (o) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var m = o[Symbol.asyncIterator], i;\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n};\nvar __await = (this && this.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); }\nvar __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _arguments, generator) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\n return i = Object.create((typeof AsyncIterator === \"function\" ? AsyncIterator : Object).prototype), verb(\"next\"), verb(\"throw\"), verb(\"return\", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;\n function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }\n function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\n function fulfill(value) { resume(\"next\", value); }\n function reject(value) { resume(\"throw\", value); }\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\n};\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.sizeDelimitedEncode = sizeDelimitedEncode;\nexports.sizeDelimitedDecodeStream = sizeDelimitedDecodeStream;\nexports.sizeDelimitedPeek = sizeDelimitedPeek;\nconst to_binary_js_1 = __webpack_require__(/*! ../to-binary.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/to-binary.js\");\nconst binary_encoding_js_1 = __webpack_require__(/*! ./binary-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/binary-encoding.js\");\nconst from_binary_js_1 = __webpack_require__(/*! ../from-binary.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/from-binary.js\");\n/**\n * Serialize a message, prefixing it with its size.\n *\n * A size-delimited message is a varint size in bytes, followed by exactly\n * that many bytes of a message serialized with the binary format.\n *\n * This size-delimited format is compatible with other implementations.\n * For details, see https://github.com/protocolbuffers/protobuf/issues/10229\n */\nfunction sizeDelimitedEncode(messageDesc, message, options) {\n const writer = new binary_encoding_js_1.BinaryWriter();\n writer.bytes((0, to_binary_js_1.toBinary)(messageDesc, message, options));\n return writer.finish();\n}\n/**\n * Parse a stream of size-delimited messages.\n *\n * A size-delimited message is a varint size in bytes, followed by exactly\n * that many bytes of a message serialized with the binary format.\n *\n * This size-delimited format is compatible with other implementations.\n * For details, see https://github.com/protocolbuffers/protobuf/issues/10229\n */\nfunction sizeDelimitedDecodeStream(messageDesc, iterable, options) {\n return __asyncGenerator(this, arguments, function* sizeDelimitedDecodeStream_1() {\n var _a, e_1, _b, _c;\n // append chunk to buffer, returning updated buffer\n function append(buffer, chunk) {\n const n = new Uint8Array(buffer.byteLength + chunk.byteLength);\n n.set(buffer);\n n.set(chunk, buffer.length);\n return n;\n }\n let buffer = new Uint8Array(0);\n try {\n for (var _d = true, iterable_1 = __asyncValues(iterable), iterable_1_1; iterable_1_1 = yield __await(iterable_1.next()), _a = iterable_1_1.done, !_a; _d = true) {\n _c = iterable_1_1.value;\n _d = false;\n const chunk = _c;\n buffer = append(buffer, chunk);\n for (;;) {\n const size = sizeDelimitedPeek(buffer);\n if (size.eof) {\n // size is incomplete, buffer more data\n break;\n }\n if (size.offset + size.size > buffer.byteLength) {\n // message is incomplete, buffer more data\n break;\n }\n yield yield __await((0, from_binary_js_1.fromBinary)(messageDesc, buffer.subarray(size.offset, size.offset + size.size), options));\n buffer = buffer.subarray(size.offset + size.size);\n }\n }\n }\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\n finally {\n try {\n if (!_d && !_a && (_b = iterable_1.return)) yield __await(_b.call(iterable_1));\n }\n finally { if (e_1) throw e_1.error; }\n }\n if (buffer.byteLength > 0) {\n throw new Error(\"incomplete data\");\n }\n });\n}\n/**\n * Decodes the size from the given size-delimited message, which may be\n * incomplete.\n *\n * Returns an object with the following properties:\n * - size: The size of the delimited message in bytes\n * - offset: The offset in the given byte array where the message starts\n * - eof: true\n *\n * If the size-delimited data does not include all bytes of the varint size,\n * the following object is returned:\n * - size: null\n * - offset: null\n * - eof: false\n *\n * This function can be used to implement parsing of size-delimited messages\n * from a stream.\n */\nfunction sizeDelimitedPeek(data) {\n const sizeEof = { eof: true, size: null, offset: null };\n for (let i = 0; i < 10; i++) {\n if (i > data.byteLength) {\n return sizeEof;\n }\n if ((data[i] & 0x80) == 0) {\n const reader = new binary_encoding_js_1.BinaryReader(data);\n let size;\n try {\n size = reader.uint32();\n }\n catch (e) {\n if (e instanceof RangeError) {\n return sizeEof;\n }\n throw e;\n }\n return {\n eof: false,\n size,\n offset: reader.pos,\n };\n }\n }\n throw new Error(\"invalid varint\");\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/size-delimited.js?");
329
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ BinaryReader: () => (/* binding */ BinaryReader),\n/* harmony export */ BinaryWriter: () => (/* binding */ BinaryWriter),\n/* harmony export */ FLOAT32_MAX: () => (/* binding */ FLOAT32_MAX),\n/* harmony export */ FLOAT32_MIN: () => (/* binding */ FLOAT32_MIN),\n/* harmony export */ INT32_MAX: () => (/* binding */ INT32_MAX),\n/* harmony export */ INT32_MIN: () => (/* binding */ INT32_MIN),\n/* harmony export */ UINT32_MAX: () => (/* binding */ UINT32_MAX),\n/* harmony export */ WireType: () => (/* binding */ WireType)\n/* harmony export */ });\n/* harmony import */ var _varint_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./varint.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/varint.js\");\n/* harmony import */ var _proto_int64_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../proto-int64.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js\");\n/* harmony import */ var _text_encoding_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./text-encoding.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/text-encoding.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n\n\n/* eslint-disable prefer-const,no-case-declarations,@typescript-eslint/restrict-plus-operands */\n/**\n * Protobuf binary format wire types.\n *\n * A wire type provides just enough information to find the length of the\n * following value.\n *\n * See https://developers.google.com/protocol-buffers/docs/encoding#structure\n */\nvar WireType;\n(function (WireType) {\n /**\n * Used for int32, int64, uint32, uint64, sint32, sint64, bool, enum\n */\n WireType[WireType[\"Varint\"] = 0] = \"Varint\";\n /**\n * Used for fixed64, sfixed64, double.\n * Always 8 bytes with little-endian byte order.\n */\n WireType[WireType[\"Bit64\"] = 1] = \"Bit64\";\n /**\n * Used for string, bytes, embedded messages, packed repeated fields\n *\n * Only repeated numeric types (types which use the varint, 32-bit,\n * or 64-bit wire types) can be packed. In proto3, such fields are\n * packed by default.\n */\n WireType[WireType[\"LengthDelimited\"] = 2] = \"LengthDelimited\";\n /**\n * Start of a tag-delimited aggregate, such as a proto2 group, or a message\n * in editions with message_encoding = DELIMITED.\n */\n WireType[WireType[\"StartGroup\"] = 3] = \"StartGroup\";\n /**\n * End of a tag-delimited aggregate.\n */\n WireType[WireType[\"EndGroup\"] = 4] = \"EndGroup\";\n /**\n * Used for fixed32, sfixed32, float.\n * Always 4 bytes with little-endian byte order.\n */\n WireType[WireType[\"Bit32\"] = 5] = \"Bit32\";\n})(WireType || (WireType = {}));\n/**\n * Maximum value for a 32-bit floating point value (Protobuf FLOAT).\n */\nconst FLOAT32_MAX = 3.4028234663852886e38;\n/**\n * Minimum value for a 32-bit floating point value (Protobuf FLOAT).\n */\nconst FLOAT32_MIN = -3.4028234663852886e38;\n/**\n * Maximum value for an unsigned 32-bit integer (Protobuf UINT32, FIXED32).\n */\nconst UINT32_MAX = 0xffffffff;\n/**\n * Maximum value for a signed 32-bit integer (Protobuf INT32, SFIXED32, SINT32).\n */\nconst INT32_MAX = 0x7fffffff;\n/**\n * Minimum value for a signed 32-bit integer (Protobuf INT32, SFIXED32, SINT32).\n */\nconst INT32_MIN = -0x80000000;\nclass BinaryWriter {\n constructor(encodeUtf8 = (0,_text_encoding_js__WEBPACK_IMPORTED_MODULE_0__.getTextEncoding)().encodeUtf8) {\n this.encodeUtf8 = encodeUtf8;\n /**\n * Previous fork states.\n */\n this.stack = [];\n this.chunks = [];\n this.buf = [];\n }\n /**\n * Return all bytes written and reset this writer.\n */\n finish() {\n if (this.buf.length) {\n this.chunks.push(new Uint8Array(this.buf)); // flush the buffer\n this.buf = [];\n }\n let len = 0;\n for (let i = 0; i < this.chunks.length; i++)\n len += this.chunks[i].length;\n let bytes = new Uint8Array(len);\n let offset = 0;\n for (let i = 0; i < this.chunks.length; i++) {\n bytes.set(this.chunks[i], offset);\n offset += this.chunks[i].length;\n }\n this.chunks = [];\n return bytes;\n }\n /**\n * Start a new fork for length-delimited data like a message\n * or a packed repeated field.\n *\n * Must be joined later with `join()`.\n */\n fork() {\n this.stack.push({ chunks: this.chunks, buf: this.buf });\n this.chunks = [];\n this.buf = [];\n return this;\n }\n /**\n * Join the last fork. Write its length and bytes, then\n * return to the previous state.\n */\n join() {\n // get chunk of fork\n let chunk = this.finish();\n // restore previous state\n let prev = this.stack.pop();\n if (!prev)\n throw new Error(\"invalid state, fork stack empty\");\n this.chunks = prev.chunks;\n this.buf = prev.buf;\n // write length of chunk as varint\n this.uint32(chunk.byteLength);\n return this.raw(chunk);\n }\n /**\n * Writes a tag (field number and wire type).\n *\n * Equivalent to `uint32( (fieldNo << 3 | type) >>> 0 )`.\n *\n * Generated code should compute the tag ahead of time and call `uint32()`.\n */\n tag(fieldNo, type) {\n return this.uint32(((fieldNo << 3) | type) >>> 0);\n }\n /**\n * Write a chunk of raw bytes.\n */\n raw(chunk) {\n if (this.buf.length) {\n this.chunks.push(new Uint8Array(this.buf));\n this.buf = [];\n }\n this.chunks.push(chunk);\n return this;\n }\n /**\n * Write a `uint32` value, an unsigned 32 bit varint.\n */\n uint32(value) {\n assertUInt32(value);\n // write value as varint 32, inlined for speed\n while (value > 0x7f) {\n this.buf.push((value & 0x7f) | 0x80);\n value = value >>> 7;\n }\n this.buf.push(value);\n return this;\n }\n /**\n * Write a `int32` value, a signed 32 bit varint.\n */\n int32(value) {\n assertInt32(value);\n (0,_varint_js__WEBPACK_IMPORTED_MODULE_1__.varint32write)(value, this.buf);\n return this;\n }\n /**\n * Write a `bool` value, a variant.\n */\n bool(value) {\n this.buf.push(value ? 1 : 0);\n return this;\n }\n /**\n * Write a `bytes` value, length-delimited arbitrary data.\n */\n bytes(value) {\n this.uint32(value.byteLength); // write length of chunk as varint\n return this.raw(value);\n }\n /**\n * Write a `string` value, length-delimited data converted to UTF-8 text.\n */\n string(value) {\n let chunk = this.encodeUtf8(value);\n this.uint32(chunk.byteLength); // write length of chunk as varint\n return this.raw(chunk);\n }\n /**\n * Write a `float` value, 32-bit floating point number.\n */\n float(value) {\n assertFloat32(value);\n let chunk = new Uint8Array(4);\n new DataView(chunk.buffer).setFloat32(0, value, true);\n return this.raw(chunk);\n }\n /**\n * Write a `double` value, a 64-bit floating point number.\n */\n double(value) {\n let chunk = new Uint8Array(8);\n new DataView(chunk.buffer).setFloat64(0, value, true);\n return this.raw(chunk);\n }\n /**\n * Write a `fixed32` value, an unsigned, fixed-length 32-bit integer.\n */\n fixed32(value) {\n assertUInt32(value);\n let chunk = new Uint8Array(4);\n new DataView(chunk.buffer).setUint32(0, value, true);\n return this.raw(chunk);\n }\n /**\n * Write a `sfixed32` value, a signed, fixed-length 32-bit integer.\n */\n sfixed32(value) {\n assertInt32(value);\n let chunk = new Uint8Array(4);\n new DataView(chunk.buffer).setInt32(0, value, true);\n return this.raw(chunk);\n }\n /**\n * Write a `sint32` value, a signed, zigzag-encoded 32-bit varint.\n */\n sint32(value) {\n assertInt32(value);\n // zigzag encode\n value = ((value << 1) ^ (value >> 31)) >>> 0;\n (0,_varint_js__WEBPACK_IMPORTED_MODULE_1__.varint32write)(value, this.buf);\n return this;\n }\n /**\n * Write a `fixed64` value, a signed, fixed-length 64-bit integer.\n */\n sfixed64(value) {\n let chunk = new Uint8Array(8), view = new DataView(chunk.buffer), tc = _proto_int64_js__WEBPACK_IMPORTED_MODULE_2__.protoInt64.enc(value);\n view.setInt32(0, tc.lo, true);\n view.setInt32(4, tc.hi, true);\n return this.raw(chunk);\n }\n /**\n * Write a `fixed64` value, an unsigned, fixed-length 64 bit integer.\n */\n fixed64(value) {\n let chunk = new Uint8Array(8), view = new DataView(chunk.buffer), tc = _proto_int64_js__WEBPACK_IMPORTED_MODULE_2__.protoInt64.uEnc(value);\n view.setInt32(0, tc.lo, true);\n view.setInt32(4, tc.hi, true);\n return this.raw(chunk);\n }\n /**\n * Write a `int64` value, a signed 64-bit varint.\n */\n int64(value) {\n let tc = _proto_int64_js__WEBPACK_IMPORTED_MODULE_2__.protoInt64.enc(value);\n (0,_varint_js__WEBPACK_IMPORTED_MODULE_1__.varint64write)(tc.lo, tc.hi, this.buf);\n return this;\n }\n /**\n * Write a `sint64` value, a signed, zig-zag-encoded 64-bit varint.\n */\n sint64(value) {\n let tc = _proto_int64_js__WEBPACK_IMPORTED_MODULE_2__.protoInt64.enc(value), \n // zigzag encode\n sign = tc.hi >> 31, lo = (tc.lo << 1) ^ sign, hi = ((tc.hi << 1) | (tc.lo >>> 31)) ^ sign;\n (0,_varint_js__WEBPACK_IMPORTED_MODULE_1__.varint64write)(lo, hi, this.buf);\n return this;\n }\n /**\n * Write a `uint64` value, an unsigned 64-bit varint.\n */\n uint64(value) {\n let tc = _proto_int64_js__WEBPACK_IMPORTED_MODULE_2__.protoInt64.uEnc(value);\n (0,_varint_js__WEBPACK_IMPORTED_MODULE_1__.varint64write)(tc.lo, tc.hi, this.buf);\n return this;\n }\n}\nclass BinaryReader {\n constructor(buf, decodeUtf8 = (0,_text_encoding_js__WEBPACK_IMPORTED_MODULE_0__.getTextEncoding)().decodeUtf8) {\n this.decodeUtf8 = decodeUtf8;\n this.varint64 = _varint_js__WEBPACK_IMPORTED_MODULE_1__.varint64read; // dirty cast for `this`\n /**\n * Read a `uint32` field, an unsigned 32 bit varint.\n */\n this.uint32 = _varint_js__WEBPACK_IMPORTED_MODULE_1__.varint32read;\n this.buf = buf;\n this.len = buf.length;\n this.pos = 0;\n this.view = new DataView(buf.buffer, buf.byteOffset, buf.byteLength);\n }\n /**\n * Reads a tag - field number and wire type.\n */\n tag() {\n let tag = this.uint32(), fieldNo = tag >>> 3, wireType = tag & 7;\n if (fieldNo <= 0 || wireType < 0 || wireType > 5)\n throw new Error(\"illegal tag: field no \" + fieldNo + \" wire type \" + wireType);\n return [fieldNo, wireType];\n }\n /**\n * Skip one element and return the skipped data.\n *\n * When skipping StartGroup, provide the tags field number to check for\n * matching field number in the EndGroup tag.\n */\n skip(wireType, fieldNo) {\n let start = this.pos;\n switch (wireType) {\n case WireType.Varint:\n while (this.buf[this.pos++] & 0x80) {\n // ignore\n }\n break;\n // eslint-disable-next-line\n // @ts-expect-error TS7029: Fallthrough case in switch\n case WireType.Bit64:\n this.pos += 4;\n // eslint-disable-next-line no-fallthrough\n case WireType.Bit32:\n this.pos += 4;\n break;\n case WireType.LengthDelimited:\n let len = this.uint32();\n this.pos += len;\n break;\n case WireType.StartGroup:\n for (;;) {\n const [fn, wt] = this.tag();\n if (wt === WireType.EndGroup) {\n if (fieldNo !== undefined && fn !== fieldNo) {\n throw new Error(\"invalid end group tag\");\n }\n break;\n }\n this.skip(wt, fn);\n }\n break;\n default:\n throw new Error(\"cant skip wire type \" + wireType);\n }\n this.assertBounds();\n return this.buf.subarray(start, this.pos);\n }\n /**\n * Throws error if position in byte array is out of range.\n */\n assertBounds() {\n if (this.pos > this.len)\n throw new RangeError(\"premature EOF\");\n }\n /**\n * Read a `int32` field, a signed 32 bit varint.\n */\n int32() {\n return this.uint32() | 0;\n }\n /**\n * Read a `sint32` field, a signed, zigzag-encoded 32-bit varint.\n */\n sint32() {\n let zze = this.uint32();\n // decode zigzag\n return (zze >>> 1) ^ -(zze & 1);\n }\n /**\n * Read a `int64` field, a signed 64-bit varint.\n */\n int64() {\n return _proto_int64_js__WEBPACK_IMPORTED_MODULE_2__.protoInt64.dec(...this.varint64());\n }\n /**\n * Read a `uint64` field, an unsigned 64-bit varint.\n */\n uint64() {\n return _proto_int64_js__WEBPACK_IMPORTED_MODULE_2__.protoInt64.uDec(...this.varint64());\n }\n /**\n * Read a `sint64` field, a signed, zig-zag-encoded 64-bit varint.\n */\n sint64() {\n let [lo, hi] = this.varint64();\n // decode zig zag\n let s = -(lo & 1);\n lo = ((lo >>> 1) | ((hi & 1) << 31)) ^ s;\n hi = (hi >>> 1) ^ s;\n return _proto_int64_js__WEBPACK_IMPORTED_MODULE_2__.protoInt64.dec(lo, hi);\n }\n /**\n * Read a `bool` field, a variant.\n */\n bool() {\n let [lo, hi] = this.varint64();\n return lo !== 0 || hi !== 0;\n }\n /**\n * Read a `fixed32` field, an unsigned, fixed-length 32-bit integer.\n */\n fixed32() {\n return this.view.getUint32((this.pos += 4) - 4, true);\n }\n /**\n * Read a `sfixed32` field, a signed, fixed-length 32-bit integer.\n */\n sfixed32() {\n return this.view.getInt32((this.pos += 4) - 4, true);\n }\n /**\n * Read a `fixed64` field, an unsigned, fixed-length 64 bit integer.\n */\n fixed64() {\n return _proto_int64_js__WEBPACK_IMPORTED_MODULE_2__.protoInt64.uDec(this.sfixed32(), this.sfixed32());\n }\n /**\n * Read a `fixed64` field, a signed, fixed-length 64-bit integer.\n */\n sfixed64() {\n return _proto_int64_js__WEBPACK_IMPORTED_MODULE_2__.protoInt64.dec(this.sfixed32(), this.sfixed32());\n }\n /**\n * Read a `float` field, 32-bit floating point number.\n */\n float() {\n return this.view.getFloat32((this.pos += 4) - 4, true);\n }\n /**\n * Read a `double` field, a 64-bit floating point number.\n */\n double() {\n return this.view.getFloat64((this.pos += 8) - 8, true);\n }\n /**\n * Read a `bytes` field, length-delimited arbitrary data.\n */\n bytes() {\n let len = this.uint32(), start = this.pos;\n this.pos += len;\n this.assertBounds();\n return this.buf.subarray(start, start + len);\n }\n /**\n * Read a `string` field, length-delimited data converted to UTF-8 text.\n */\n string() {\n return this.decodeUtf8(this.bytes());\n }\n}\n/**\n * Assert a valid signed protobuf 32-bit integer as a number or string.\n */\nfunction assertInt32(arg) {\n if (typeof arg == \"string\") {\n arg = Number(arg);\n }\n else if (typeof arg != \"number\") {\n throw new Error(\"invalid int32: \" + typeof arg);\n }\n if (!Number.isInteger(arg) ||\n arg > INT32_MAX ||\n arg < INT32_MIN)\n throw new Error(\"invalid int32: \" + arg);\n}\n/**\n * Assert a valid unsigned protobuf 32-bit integer as a number or string.\n */\nfunction assertUInt32(arg) {\n if (typeof arg == \"string\") {\n arg = Number(arg);\n }\n else if (typeof arg != \"number\") {\n throw new Error(\"invalid uint32: \" + typeof arg);\n }\n if (!Number.isInteger(arg) ||\n arg > UINT32_MAX ||\n arg < 0)\n throw new Error(\"invalid uint32: \" + arg);\n}\n/**\n * Assert a valid protobuf float value as a number or string.\n */\nfunction assertFloat32(arg) {\n if (typeof arg == \"string\") {\n const o = arg;\n arg = Number(arg);\n if (isNaN(arg) && o !== \"NaN\") {\n throw new Error(\"invalid float32: \" + o);\n }\n }\n else if (typeof arg != \"number\") {\n throw new Error(\"invalid float32: \" + typeof arg);\n }\n if (Number.isFinite(arg) &&\n (arg > FLOAT32_MAX || arg < FLOAT32_MIN))\n throw new Error(\"invalid float32: \" + arg);\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/binary-encoding.js?");
500
330
 
501
331
  /***/ }),
502
332
 
503
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/text-encoding.js":
333
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/text-encoding.js":
504
334
  /*!********************************************************************************************************************!*\
505
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/text-encoding.js ***!
335
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/text-encoding.js ***!
506
336
  \********************************************************************************************************************/
507
- /***/ ((__unused_webpack_module, exports) => {
337
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
508
338
 
509
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.configureTextEncoding = configureTextEncoding;\nexports.getTextEncoding = getTextEncoding;\nconst symbol = Symbol.for(\"@bufbuild/protobuf/text-encoding\");\n/**\n * Protobuf-ES requires the Text Encoding API to convert UTF-8 from and to\n * binary. This WHATWG API is widely available, but it is not part of the\n * ECMAScript standard. On runtimes where it is not available, use this\n * function to provide your own implementation.\n *\n * Note that the Text Encoding API does not provide a way to validate UTF-8.\n * Our implementation falls back to use encodeURIComponent().\n */\nfunction configureTextEncoding(textEncoding) {\n globalThis[symbol] = textEncoding;\n}\nfunction getTextEncoding() {\n if (globalThis[symbol] == undefined) {\n const te = new globalThis.TextEncoder();\n const td = new globalThis.TextDecoder();\n globalThis[symbol] = {\n encodeUtf8(text) {\n return te.encode(text);\n },\n decodeUtf8(bytes) {\n return td.decode(bytes);\n },\n checkUtf8(text) {\n try {\n encodeURIComponent(text);\n return true;\n }\n catch (e) {\n return false;\n }\n },\n };\n }\n return globalThis[symbol];\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/text-encoding.js?");
339
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ configureTextEncoding: () => (/* binding */ configureTextEncoding),\n/* harmony export */ getTextEncoding: () => (/* binding */ getTextEncoding)\n/* harmony export */ });\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nconst symbol = Symbol.for(\"@bufbuild/protobuf/text-encoding\");\n/**\n * Protobuf-ES requires the Text Encoding API to convert UTF-8 from and to\n * binary. This WHATWG API is widely available, but it is not part of the\n * ECMAScript standard. On runtimes where it is not available, use this\n * function to provide your own implementation.\n *\n * Note that the Text Encoding API does not provide a way to validate UTF-8.\n * Our implementation falls back to use encodeURIComponent().\n */\nfunction configureTextEncoding(textEncoding) {\n globalThis[symbol] = textEncoding;\n}\nfunction getTextEncoding() {\n if (globalThis[symbol] == undefined) {\n const te = new globalThis.TextEncoder();\n const td = new globalThis.TextDecoder();\n globalThis[symbol] = {\n encodeUtf8(text) {\n return te.encode(text);\n },\n decodeUtf8(bytes) {\n return td.decode(bytes);\n },\n checkUtf8(text) {\n try {\n encodeURIComponent(text);\n return true;\n }\n catch (e) {\n return false;\n }\n },\n };\n }\n return globalThis[symbol];\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/text-encoding.js?");
510
340
 
511
341
  /***/ }),
512
342
 
513
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/text-format.js":
343
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/text-format.js":
514
344
  /*!******************************************************************************************************************!*\
515
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/text-format.js ***!
345
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/text-format.js ***!
516
346
  \******************************************************************************************************************/
517
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
347
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
518
348
 
519
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.parseTextFormatEnumValue = parseTextFormatEnumValue;\nexports.parseTextFormatScalarValue = parseTextFormatScalarValue;\nconst descriptors_js_1 = __webpack_require__(/*! ../descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/descriptors.js\");\nconst proto_int64_js_1 = __webpack_require__(/*! ../proto-int64.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js\");\n/* eslint-disable @typescript-eslint/restrict-template-expressions */\n/**\n * Parse an enum value from the Protobuf text format.\n *\n * @private\n */\nfunction parseTextFormatEnumValue(descEnum, value) {\n const enumValue = descEnum.values.find((v) => v.name === value);\n if (!enumValue) {\n throw new Error(`cannot parse ${descEnum} default value: ${value}`);\n }\n return enumValue.number;\n}\n/**\n * Parse a scalar value from the Protobuf text format.\n *\n * @private\n */\nfunction parseTextFormatScalarValue(type, value) {\n switch (type) {\n case descriptors_js_1.ScalarType.STRING:\n return value;\n case descriptors_js_1.ScalarType.BYTES: {\n const u = unescapeBytesDefaultValue(value);\n if (u === false) {\n throw new Error(`cannot parse ${descriptors_js_1.ScalarType[type]} default value: ${value}`);\n }\n return u;\n }\n case descriptors_js_1.ScalarType.INT64:\n case descriptors_js_1.ScalarType.SFIXED64:\n case descriptors_js_1.ScalarType.SINT64:\n return proto_int64_js_1.protoInt64.parse(value);\n case descriptors_js_1.ScalarType.UINT64:\n case descriptors_js_1.ScalarType.FIXED64:\n return proto_int64_js_1.protoInt64.uParse(value);\n case descriptors_js_1.ScalarType.DOUBLE:\n case descriptors_js_1.ScalarType.FLOAT:\n switch (value) {\n case \"inf\":\n return Number.POSITIVE_INFINITY;\n case \"-inf\":\n return Number.NEGATIVE_INFINITY;\n case \"nan\":\n return Number.NaN;\n default:\n return parseFloat(value);\n }\n case descriptors_js_1.ScalarType.BOOL:\n return value === \"true\";\n case descriptors_js_1.ScalarType.INT32:\n case descriptors_js_1.ScalarType.UINT32:\n case descriptors_js_1.ScalarType.SINT32:\n case descriptors_js_1.ScalarType.FIXED32:\n case descriptors_js_1.ScalarType.SFIXED32:\n return parseInt(value, 10);\n }\n}\n/**\n * Parses a text-encoded default value (proto2) of a BYTES field.\n */\nfunction unescapeBytesDefaultValue(str) {\n const b = [];\n const input = {\n tail: str,\n c: \"\",\n next() {\n if (this.tail.length == 0) {\n return false;\n }\n this.c = this.tail[0];\n this.tail = this.tail.substring(1);\n return true;\n },\n take(n) {\n if (this.tail.length >= n) {\n const r = this.tail.substring(0, n);\n this.tail = this.tail.substring(n);\n return r;\n }\n return false;\n },\n };\n while (input.next()) {\n switch (input.c) {\n case \"\\\\\":\n if (input.next()) {\n switch (input.c) {\n case \"\\\\\":\n b.push(input.c.charCodeAt(0));\n break;\n case \"b\":\n b.push(0x08);\n break;\n case \"f\":\n b.push(0x0c);\n break;\n case \"n\":\n b.push(0x0a);\n break;\n case \"r\":\n b.push(0x0d);\n break;\n case \"t\":\n b.push(0x09);\n break;\n case \"v\":\n b.push(0x0b);\n break;\n case \"0\":\n case \"1\":\n case \"2\":\n case \"3\":\n case \"4\":\n case \"5\":\n case \"6\":\n case \"7\": {\n const s = input.c;\n const t = input.take(2);\n if (t === false) {\n return false;\n }\n const n = parseInt(s + t, 8);\n if (isNaN(n)) {\n return false;\n }\n b.push(n);\n break;\n }\n case \"x\": {\n const s = input.c;\n const t = input.take(2);\n if (t === false) {\n return false;\n }\n const n = parseInt(s + t, 16);\n if (isNaN(n)) {\n return false;\n }\n b.push(n);\n break;\n }\n case \"u\": {\n const s = input.c;\n const t = input.take(4);\n if (t === false) {\n return false;\n }\n const n = parseInt(s + t, 16);\n if (isNaN(n)) {\n return false;\n }\n const chunk = new Uint8Array(4);\n const view = new DataView(chunk.buffer);\n view.setInt32(0, n, true);\n b.push(chunk[0], chunk[1], chunk[2], chunk[3]);\n break;\n }\n case \"U\": {\n const s = input.c;\n const t = input.take(8);\n if (t === false) {\n return false;\n }\n const tc = proto_int64_js_1.protoInt64.uEnc(s + t);\n const chunk = new Uint8Array(8);\n const view = new DataView(chunk.buffer);\n view.setInt32(0, tc.lo, true);\n view.setInt32(4, tc.hi, true);\n b.push(chunk[0], chunk[1], chunk[2], chunk[3], chunk[4], chunk[5], chunk[6], chunk[7]);\n break;\n }\n }\n }\n break;\n default:\n b.push(input.c.charCodeAt(0));\n }\n }\n return new Uint8Array(b);\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/text-format.js?");
349
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ parseTextFormatEnumValue: () => (/* binding */ parseTextFormatEnumValue),\n/* harmony export */ parseTextFormatScalarValue: () => (/* binding */ parseTextFormatScalarValue)\n/* harmony export */ });\n/* harmony import */ var _descriptors_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../descriptors.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/descriptors.js\");\n/* harmony import */ var _proto_int64_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../proto-int64.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n\n/* eslint-disable @typescript-eslint/restrict-template-expressions */\n/**\n * Parse an enum value from the Protobuf text format.\n *\n * @private\n */\nfunction parseTextFormatEnumValue(descEnum, value) {\n const enumValue = descEnum.values.find((v) => v.name === value);\n if (!enumValue) {\n throw new Error(`cannot parse ${descEnum} default value: ${value}`);\n }\n return enumValue.number;\n}\n/**\n * Parse a scalar value from the Protobuf text format.\n *\n * @private\n */\nfunction parseTextFormatScalarValue(type, value) {\n switch (type) {\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.STRING:\n return value;\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.BYTES: {\n const u = unescapeBytesDefaultValue(value);\n if (u === false) {\n throw new Error(`cannot parse ${_descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType[type]} default value: ${value}`);\n }\n return u;\n }\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.INT64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.SFIXED64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.SINT64:\n return _proto_int64_js__WEBPACK_IMPORTED_MODULE_1__.protoInt64.parse(value);\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.UINT64:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.FIXED64:\n return _proto_int64_js__WEBPACK_IMPORTED_MODULE_1__.protoInt64.uParse(value);\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.DOUBLE:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.FLOAT:\n switch (value) {\n case \"inf\":\n return Number.POSITIVE_INFINITY;\n case \"-inf\":\n return Number.NEGATIVE_INFINITY;\n case \"nan\":\n return Number.NaN;\n default:\n return parseFloat(value);\n }\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.BOOL:\n return value === \"true\";\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.INT32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.UINT32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.SINT32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.FIXED32:\n case _descriptors_js__WEBPACK_IMPORTED_MODULE_0__.ScalarType.SFIXED32:\n return parseInt(value, 10);\n }\n}\n/**\n * Parses a text-encoded default value (proto2) of a BYTES field.\n */\nfunction unescapeBytesDefaultValue(str) {\n const b = [];\n const input = {\n tail: str,\n c: \"\",\n next() {\n if (this.tail.length == 0) {\n return false;\n }\n this.c = this.tail[0];\n this.tail = this.tail.substring(1);\n return true;\n },\n take(n) {\n if (this.tail.length >= n) {\n const r = this.tail.substring(0, n);\n this.tail = this.tail.substring(n);\n return r;\n }\n return false;\n },\n };\n while (input.next()) {\n switch (input.c) {\n case \"\\\\\":\n if (input.next()) {\n switch (input.c) {\n case \"\\\\\":\n b.push(input.c.charCodeAt(0));\n break;\n case \"b\":\n b.push(0x08);\n break;\n case \"f\":\n b.push(0x0c);\n break;\n case \"n\":\n b.push(0x0a);\n break;\n case \"r\":\n b.push(0x0d);\n break;\n case \"t\":\n b.push(0x09);\n break;\n case \"v\":\n b.push(0x0b);\n break;\n case \"0\":\n case \"1\":\n case \"2\":\n case \"3\":\n case \"4\":\n case \"5\":\n case \"6\":\n case \"7\": {\n const s = input.c;\n const t = input.take(2);\n if (t === false) {\n return false;\n }\n const n = parseInt(s + t, 8);\n if (isNaN(n)) {\n return false;\n }\n b.push(n);\n break;\n }\n case \"x\": {\n const s = input.c;\n const t = input.take(2);\n if (t === false) {\n return false;\n }\n const n = parseInt(s + t, 16);\n if (isNaN(n)) {\n return false;\n }\n b.push(n);\n break;\n }\n case \"u\": {\n const s = input.c;\n const t = input.take(4);\n if (t === false) {\n return false;\n }\n const n = parseInt(s + t, 16);\n if (isNaN(n)) {\n return false;\n }\n const chunk = new Uint8Array(4);\n const view = new DataView(chunk.buffer);\n view.setInt32(0, n, true);\n b.push(chunk[0], chunk[1], chunk[2], chunk[3]);\n break;\n }\n case \"U\": {\n const s = input.c;\n const t = input.take(8);\n if (t === false) {\n return false;\n }\n const tc = _proto_int64_js__WEBPACK_IMPORTED_MODULE_1__.protoInt64.uEnc(s + t);\n const chunk = new Uint8Array(8);\n const view = new DataView(chunk.buffer);\n view.setInt32(0, tc.lo, true);\n view.setInt32(4, tc.hi, true);\n b.push(chunk[0], chunk[1], chunk[2], chunk[3], chunk[4], chunk[5], chunk[6], chunk[7]);\n break;\n }\n }\n }\n break;\n default:\n b.push(input.c.charCodeAt(0));\n }\n }\n return new Uint8Array(b);\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/text-format.js?");
520
350
 
521
351
  /***/ }),
522
352
 
523
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/varint.js":
353
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/varint.js":
524
354
  /*!*************************************************************************************************************!*\
525
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/varint.js ***!
355
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/varint.js ***!
526
356
  \*************************************************************************************************************/
527
- /***/ ((__unused_webpack_module, exports) => {
528
-
529
- eval("\n// Copyright 2008 Google Inc. All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n// * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n// * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n// * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Code generated by the Protocol Buffer compiler is owned by the owner\n// of the input file used when generating it. This code is not\n// standalone and requires a support library to be linked with it. This\n// support library is itself covered by the above license.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.varint64read = varint64read;\nexports.varint64write = varint64write;\nexports.int64FromString = int64FromString;\nexports.int64ToString = int64ToString;\nexports.uInt64ToString = uInt64ToString;\nexports.varint32write = varint32write;\nexports.varint32read = varint32read;\n/* eslint-disable prefer-const,@typescript-eslint/restrict-plus-operands */\n/**\n * Read a 64 bit varint as two JS numbers.\n *\n * Returns tuple:\n * [0]: low bits\n * [1]: high bits\n *\n * Copyright 2008 Google Inc. All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf/blob/8a71927d74a4ce34efe2d8769fda198f52d20d12/js/experimental/runtime/kernel/buffer_decoder.js#L175\n */\nfunction varint64read() {\n let lowBits = 0;\n let highBits = 0;\n for (let shift = 0; shift < 28; shift += 7) {\n let b = this.buf[this.pos++];\n lowBits |= (b & 0x7f) << shift;\n if ((b & 0x80) == 0) {\n this.assertBounds();\n return [lowBits, highBits];\n }\n }\n let middleByte = this.buf[this.pos++];\n // last four bits of the first 32 bit number\n lowBits |= (middleByte & 0x0f) << 28;\n // 3 upper bits are part of the next 32 bit number\n highBits = (middleByte & 0x70) >> 4;\n if ((middleByte & 0x80) == 0) {\n this.assertBounds();\n return [lowBits, highBits];\n }\n for (let shift = 3; shift <= 31; shift += 7) {\n let b = this.buf[this.pos++];\n highBits |= (b & 0x7f) << shift;\n if ((b & 0x80) == 0) {\n this.assertBounds();\n return [lowBits, highBits];\n }\n }\n throw new Error(\"invalid varint\");\n}\n/**\n * Write a 64 bit varint, given as two JS numbers, to the given bytes array.\n *\n * Copyright 2008 Google Inc. All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf/blob/8a71927d74a4ce34efe2d8769fda198f52d20d12/js/experimental/runtime/kernel/writer.js#L344\n */\nfunction varint64write(lo, hi, bytes) {\n for (let i = 0; i < 28; i = i + 7) {\n const shift = lo >>> i;\n const hasNext = !(shift >>> 7 == 0 && hi == 0);\n const byte = (hasNext ? shift | 0x80 : shift) & 0xff;\n bytes.push(byte);\n if (!hasNext) {\n return;\n }\n }\n const splitBits = ((lo >>> 28) & 0x0f) | ((hi & 0x07) << 4);\n const hasMoreBits = !(hi >> 3 == 0);\n bytes.push((hasMoreBits ? splitBits | 0x80 : splitBits) & 0xff);\n if (!hasMoreBits) {\n return;\n }\n for (let i = 3; i < 31; i = i + 7) {\n const shift = hi >>> i;\n const hasNext = !(shift >>> 7 == 0);\n const byte = (hasNext ? shift | 0x80 : shift) & 0xff;\n bytes.push(byte);\n if (!hasNext) {\n return;\n }\n }\n bytes.push((hi >>> 31) & 0x01);\n}\n// constants for binary math\nconst TWO_PWR_32_DBL = 0x100000000;\n/**\n * Parse decimal string of 64 bit integer value as two JS numbers.\n *\n * Copyright 2008 Google Inc. All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf-javascript/blob/a428c58273abad07c66071d9753bc4d1289de426/experimental/runtime/int64.js#L10\n */\nfunction int64FromString(dec) {\n // Check for minus sign.\n const minus = dec[0] === \"-\";\n if (minus) {\n dec = dec.slice(1);\n }\n // Work 6 decimal digits at a time, acting like we're converting base 1e6\n // digits to binary. This is safe to do with floating point math because\n // Number.isSafeInteger(ALL_32_BITS * 1e6) == true.\n const base = 1e6;\n let lowBits = 0;\n let highBits = 0;\n function add1e6digit(begin, end) {\n // Note: Number('') is 0.\n const digit1e6 = Number(dec.slice(begin, end));\n highBits *= base;\n lowBits = lowBits * base + digit1e6;\n // Carry bits from lowBits to\n if (lowBits >= TWO_PWR_32_DBL) {\n highBits = highBits + ((lowBits / TWO_PWR_32_DBL) | 0);\n lowBits = lowBits % TWO_PWR_32_DBL;\n }\n }\n add1e6digit(-24, -18);\n add1e6digit(-18, -12);\n add1e6digit(-12, -6);\n add1e6digit(-6);\n return minus ? negate(lowBits, highBits) : newBits(lowBits, highBits);\n}\n/**\n * Losslessly converts a 64-bit signed integer in 32:32 split representation\n * into a decimal string.\n *\n * Copyright 2008 Google Inc. All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf-javascript/blob/a428c58273abad07c66071d9753bc4d1289de426/experimental/runtime/int64.js#L10\n */\nfunction int64ToString(lo, hi) {\n let bits = newBits(lo, hi);\n // If we're treating the input as a signed value and the high bit is set, do\n // a manual two's complement conversion before the decimal conversion.\n const negative = bits.hi & 0x80000000;\n if (negative) {\n bits = negate(bits.lo, bits.hi);\n }\n const result = uInt64ToString(bits.lo, bits.hi);\n return negative ? \"-\" + result : result;\n}\n/**\n * Losslessly converts a 64-bit unsigned integer in 32:32 split representation\n * into a decimal string.\n *\n * Copyright 2008 Google Inc. All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf-javascript/blob/a428c58273abad07c66071d9753bc4d1289de426/experimental/runtime/int64.js#L10\n */\nfunction uInt64ToString(lo, hi) {\n ({ lo, hi } = toUnsigned(lo, hi));\n // Skip the expensive conversion if the number is small enough to use the\n // built-in conversions.\n // Number.MAX_SAFE_INTEGER = 0x001FFFFF FFFFFFFF, thus any number with\n // highBits <= 0x1FFFFF can be safely expressed with a double and retain\n // integer precision.\n // Proven by: Number.isSafeInteger(0x1FFFFF * 2**32 + 0xFFFFFFFF) == true.\n if (hi <= 0x1fffff) {\n return String(TWO_PWR_32_DBL * hi + lo);\n }\n // What this code is doing is essentially converting the input number from\n // base-2 to base-1e7, which allows us to represent the 64-bit range with\n // only 3 (very large) digits. Those digits are then trivial to convert to\n // a base-10 string.\n // The magic numbers used here are -\n // 2^24 = 16777216 = (1,6777216) in base-1e7.\n // 2^48 = 281474976710656 = (2,8147497,6710656) in base-1e7.\n // Split 32:32 representation into 16:24:24 representation so our\n // intermediate digits don't overflow.\n const low = lo & 0xffffff;\n const mid = ((lo >>> 24) | (hi << 8)) & 0xffffff;\n const high = (hi >> 16) & 0xffff;\n // Assemble our three base-1e7 digits, ignoring carries. The maximum\n // value in a digit at this step is representable as a 48-bit integer, which\n // can be stored in a 64-bit floating point number.\n let digitA = low + mid * 6777216 + high * 6710656;\n let digitB = mid + high * 8147497;\n let digitC = high * 2;\n // Apply carries from A to B and from B to C.\n const base = 10000000;\n if (digitA >= base) {\n digitB += Math.floor(digitA / base);\n digitA %= base;\n }\n if (digitB >= base) {\n digitC += Math.floor(digitB / base);\n digitB %= base;\n }\n // If digitC is 0, then we should have returned in the trivial code path\n // at the top for non-safe integers. Given this, we can assume both digitB\n // and digitA need leading zeros.\n return (digitC.toString() +\n decimalFrom1e7WithLeadingZeros(digitB) +\n decimalFrom1e7WithLeadingZeros(digitA));\n}\nfunction toUnsigned(lo, hi) {\n return { lo: lo >>> 0, hi: hi >>> 0 };\n}\nfunction newBits(lo, hi) {\n return { lo: lo | 0, hi: hi | 0 };\n}\n/**\n * Returns two's compliment negation of input.\n * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators#Signed_32-bit_integers\n */\nfunction negate(lowBits, highBits) {\n highBits = ~highBits;\n if (lowBits) {\n lowBits = ~lowBits + 1;\n }\n else {\n // If lowBits is 0, then bitwise-not is 0xFFFFFFFF,\n // adding 1 to that, results in 0x100000000, which leaves\n // the low bits 0x0 and simply adds one to the high bits.\n highBits += 1;\n }\n return newBits(lowBits, highBits);\n}\n/**\n * Returns decimal representation of digit1e7 with leading zeros.\n */\nconst decimalFrom1e7WithLeadingZeros = (digit1e7) => {\n const partial = String(digit1e7);\n return \"0000000\".slice(partial.length) + partial;\n};\n/**\n * Write a 32 bit varint, signed or unsigned. Same as `varint64write(0, value, bytes)`\n *\n * Copyright 2008 Google Inc. All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf/blob/1b18833f4f2a2f681f4e4a25cdf3b0a43115ec26/js/binary/encoder.js#L144\n */\nfunction varint32write(value, bytes) {\n if (value >= 0) {\n // write value as varint 32\n while (value > 0x7f) {\n bytes.push((value & 0x7f) | 0x80);\n value = value >>> 7;\n }\n bytes.push(value);\n }\n else {\n for (let i = 0; i < 9; i++) {\n bytes.push((value & 127) | 128);\n value = value >> 7;\n }\n bytes.push(1);\n }\n}\n/**\n * Read an unsigned 32 bit varint.\n *\n * See https://github.com/protocolbuffers/protobuf/blob/8a71927d74a4ce34efe2d8769fda198f52d20d12/js/experimental/runtime/kernel/buffer_decoder.js#L220\n */\nfunction varint32read() {\n let b = this.buf[this.pos++];\n let result = b & 0x7f;\n if ((b & 0x80) == 0) {\n this.assertBounds();\n return result;\n }\n b = this.buf[this.pos++];\n result |= (b & 0x7f) << 7;\n if ((b & 0x80) == 0) {\n this.assertBounds();\n return result;\n }\n b = this.buf[this.pos++];\n result |= (b & 0x7f) << 14;\n if ((b & 0x80) == 0) {\n this.assertBounds();\n return result;\n }\n b = this.buf[this.pos++];\n result |= (b & 0x7f) << 21;\n if ((b & 0x80) == 0) {\n this.assertBounds();\n return result;\n }\n // Extract only last 4 bits\n b = this.buf[this.pos++];\n result |= (b & 0x0f) << 28;\n for (let readBytes = 5; (b & 0x80) !== 0 && readBytes < 10; readBytes++)\n b = this.buf[this.pos++];\n if ((b & 0x80) != 0)\n throw new Error(\"invalid varint\");\n this.assertBounds();\n // Result can have 32 bits, convert it to unsigned\n return result >>> 0;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wire/varint.js?");
530
-
531
- /***/ }),
532
-
533
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/any.js":
534
- /*!*********************************************************************************************************!*\
535
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/any.js ***!
536
- \*********************************************************************************************************/
537
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
538
-
539
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.anyPack = anyPack;\nexports.anyIs = anyIs;\nexports.anyUnpack = anyUnpack;\nexports.anyUnpackTo = anyUnpackTo;\nconst any_pb_js_1 = __webpack_require__(/*! ./gen/google/protobuf/any_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/any_pb.js\");\nconst create_js_1 = __webpack_require__(/*! ../create.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/create.js\");\nconst to_binary_js_1 = __webpack_require__(/*! ../to-binary.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/to-binary.js\");\nconst from_binary_js_1 = __webpack_require__(/*! ../from-binary.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/from-binary.js\");\nfunction anyPack(schema, message, into) {\n let ret = false;\n if (!into) {\n into = (0, create_js_1.create)(any_pb_js_1.AnySchema);\n ret = true;\n }\n into.value = (0, to_binary_js_1.toBinary)(schema, message);\n into.typeUrl = typeNameToUrl(message.$typeName);\n return ret ? into : undefined;\n}\nfunction anyIs(any, descOrTypeName) {\n if (any.typeUrl === \"\") {\n return false;\n }\n const want = typeof descOrTypeName == \"string\"\n ? descOrTypeName\n : descOrTypeName.typeName;\n const got = typeUrlToName(any.typeUrl);\n return want === got;\n}\nfunction anyUnpack(any, registryOrMessageDesc) {\n if (any.typeUrl === \"\") {\n return undefined;\n }\n const desc = registryOrMessageDesc.kind == \"message\"\n ? registryOrMessageDesc\n : registryOrMessageDesc.getMessage(typeUrlToName(any.typeUrl));\n if (!desc || !anyIs(any, desc)) {\n return undefined;\n }\n return (0, from_binary_js_1.fromBinary)(desc, any.value);\n}\n/**\n * Same as anyUnpack but unpacks into the target message.\n */\nfunction anyUnpackTo(any, schema, message) {\n if (!anyIs(any, schema)) {\n return undefined;\n }\n return (0, from_binary_js_1.mergeFromBinary)(schema, message, any.value);\n}\nfunction typeNameToUrl(name) {\n return `type.googleapis.com/${name}`;\n}\nfunction typeUrlToName(url) {\n const slash = url.lastIndexOf(\"/\");\n const name = slash >= 0 ? url.substring(slash + 1) : url;\n if (!name.length) {\n throw new Error(`invalid type url: ${url}`);\n }\n return name;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/any.js?");
540
-
541
- /***/ }),
542
-
543
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/any_pb.js":
544
- /*!********************************************************************************************************************************!*\
545
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/any_pb.js ***!
546
- \********************************************************************************************************************************/
547
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
548
-
549
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.AnySchema = exports.file_google_protobuf_any = void 0;\nconst file_js_1 = __webpack_require__(/*! ../../../../codegenv1/file.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js\");\nconst message_js_1 = __webpack_require__(/*! ../../../../codegenv1/message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js\");\n/**\n * Describes the file google/protobuf/any.proto.\n */\nexports.file_google_protobuf_any = (0, file_js_1.fileDesc)(\"Chlnb29nbGUvcHJvdG9idWYvYW55LnByb3RvEg9nb29nbGUucHJvdG9idWYiJgoDQW55EhAKCHR5cGVfdXJsGAEgASgJEg0KBXZhbHVlGAIgASgMQnYKE2NvbS5nb29nbGUucHJvdG9idWZCCEFueVByb3RvUAFaLGdvb2dsZS5nb2xhbmcub3JnL3Byb3RvYnVmL3R5cGVzL2tub3duL2FueXBiogIDR1BCqgIeR29vZ2xlLlByb3RvYnVmLldlbGxLbm93blR5cGVzYgZwcm90bzM\");\n/**\n * Describes the message google.protobuf.Any.\n * Use `create(AnySchema)` to create a new message.\n */\nexports.AnySchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_any, 0);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/any_pb.js?");
550
-
551
- /***/ }),
552
-
553
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/api_pb.js":
554
- /*!********************************************************************************************************************************!*\
555
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/api_pb.js ***!
556
- \********************************************************************************************************************************/
557
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
558
-
559
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.MixinSchema = exports.MethodSchema = exports.ApiSchema = exports.file_google_protobuf_api = void 0;\nconst file_js_1 = __webpack_require__(/*! ../../../../codegenv1/file.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js\");\nconst source_context_pb_js_1 = __webpack_require__(/*! ./source_context_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/source_context_pb.js\");\nconst type_pb_js_1 = __webpack_require__(/*! ./type_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/type_pb.js\");\nconst message_js_1 = __webpack_require__(/*! ../../../../codegenv1/message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js\");\n/**\n * Describes the file google/protobuf/api.proto.\n */\nexports.file_google_protobuf_api = (0, file_js_1.fileDesc)(\"Chlnb29nbGUvcHJvdG9idWYvYXBpLnByb3RvEg9nb29nbGUucHJvdG9idWYigQIKA0FwaRIMCgRuYW1lGAEgASgJEigKB21ldGhvZHMYAiADKAsyFy5nb29nbGUucHJvdG9idWYuTWV0aG9kEigKB29wdGlvbnMYAyADKAsyFy5nb29nbGUucHJvdG9idWYuT3B0aW9uEg8KB3ZlcnNpb24YBCABKAkSNgoOc291cmNlX2NvbnRleHQYBSABKAsyHi5nb29nbGUucHJvdG9idWYuU291cmNlQ29udGV4dBImCgZtaXhpbnMYBiADKAsyFi5nb29nbGUucHJvdG9idWYuTWl4aW4SJwoGc3ludGF4GAcgASgOMhcuZ29vZ2xlLnByb3RvYnVmLlN5bnRheCLVAQoGTWV0aG9kEgwKBG5hbWUYASABKAkSGAoQcmVxdWVzdF90eXBlX3VybBgCIAEoCRIZChFyZXF1ZXN0X3N0cmVhbWluZxgDIAEoCBIZChFyZXNwb25zZV90eXBlX3VybBgEIAEoCRIaChJyZXNwb25zZV9zdHJlYW1pbmcYBSABKAgSKAoHb3B0aW9ucxgGIAMoCzIXLmdvb2dsZS5wcm90b2J1Zi5PcHRpb24SJwoGc3ludGF4GAcgASgOMhcuZ29vZ2xlLnByb3RvYnVmLlN5bnRheCIjCgVNaXhpbhIMCgRuYW1lGAEgASgJEgwKBHJvb3QYAiABKAlCdgoTY29tLmdvb2dsZS5wcm90b2J1ZkIIQXBpUHJvdG9QAVosZ29vZ2xlLmdvbGFuZy5vcmcvcHJvdG9idWYvdHlwZXMva25vd24vYXBpcGKiAgNHUEKqAh5Hb29nbGUuUHJvdG9idWYuV2VsbEtub3duVHlwZXNiBnByb3RvMw\", [source_context_pb_js_1.file_google_protobuf_source_context, type_pb_js_1.file_google_protobuf_type]);\n/**\n * Describes the message google.protobuf.Api.\n * Use `create(ApiSchema)` to create a new message.\n */\nexports.ApiSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_api, 0);\n/**\n * Describes the message google.protobuf.Method.\n * Use `create(MethodSchema)` to create a new message.\n */\nexports.MethodSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_api, 1);\n/**\n * Describes the message google.protobuf.Mixin.\n * Use `create(MixinSchema)` to create a new message.\n */\nexports.MixinSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_api, 2);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/api_pb.js?");
560
-
561
- /***/ }),
562
-
563
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/compiler/plugin_pb.js":
564
- /*!********************************************************************************************************************************************!*\
565
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/compiler/plugin_pb.js ***!
566
- \********************************************************************************************************************************************/
567
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
568
-
569
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.CodeGeneratorResponse_FeatureSchema = exports.CodeGeneratorResponse_Feature = exports.CodeGeneratorResponse_FileSchema = exports.CodeGeneratorResponseSchema = exports.CodeGeneratorRequestSchema = exports.VersionSchema = exports.file_google_protobuf_compiler_plugin = void 0;\nconst file_js_1 = __webpack_require__(/*! ../../../../../codegenv1/file.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js\");\nconst descriptor_pb_js_1 = __webpack_require__(/*! ../descriptor_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/descriptor_pb.js\");\nconst message_js_1 = __webpack_require__(/*! ../../../../../codegenv1/message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js\");\nconst enum_js_1 = __webpack_require__(/*! ../../../../../codegenv1/enum.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/enum.js\");\n/**\n * Describes the file google/protobuf/compiler/plugin.proto.\n */\nexports.file_google_protobuf_compiler_plugin = (0, file_js_1.fileDesc)(\"CiVnb29nbGUvcHJvdG9idWYvY29tcGlsZXIvcGx1Z2luLnByb3RvEhhnb29nbGUucHJvdG9idWYuY29tcGlsZXIiRgoHVmVyc2lvbhINCgVtYWpvchgBIAEoBRINCgVtaW5vchgCIAEoBRINCgVwYXRjaBgDIAEoBRIOCgZzdWZmaXgYBCABKAkigQIKFENvZGVHZW5lcmF0b3JSZXF1ZXN0EhgKEGZpbGVfdG9fZ2VuZXJhdGUYASADKAkSEQoJcGFyYW1ldGVyGAIgASgJEjgKCnByb3RvX2ZpbGUYDyADKAsyJC5nb29nbGUucHJvdG9idWYuRmlsZURlc2NyaXB0b3JQcm90bxJFChdzb3VyY2VfZmlsZV9kZXNjcmlwdG9ycxgRIAMoCzIkLmdvb2dsZS5wcm90b2J1Zi5GaWxlRGVzY3JpcHRvclByb3RvEjsKEGNvbXBpbGVyX3ZlcnNpb24YAyABKAsyIS5nb29nbGUucHJvdG9idWYuY29tcGlsZXIuVmVyc2lvbiKSAwoVQ29kZUdlbmVyYXRvclJlc3BvbnNlEg0KBWVycm9yGAEgASgJEhoKEnN1cHBvcnRlZF9mZWF0dXJlcxgCIAEoBBIXCg9taW5pbXVtX2VkaXRpb24YAyABKAUSFwoPbWF4aW11bV9lZGl0aW9uGAQgASgFEkIKBGZpbGUYDyADKAsyNC5nb29nbGUucHJvdG9idWYuY29tcGlsZXIuQ29kZUdlbmVyYXRvclJlc3BvbnNlLkZpbGUafwoERmlsZRIMCgRuYW1lGAEgASgJEhcKD2luc2VydGlvbl9wb2ludBgCIAEoCRIPCgdjb250ZW50GA8gASgJEj8KE2dlbmVyYXRlZF9jb2RlX2luZm8YECABKAsyIi5nb29nbGUucHJvdG9idWYuR2VuZXJhdGVkQ29kZUluZm8iVwoHRmVhdHVyZRIQCgxGRUFUVVJFX05PTkUQABIbChdGRUFUVVJFX1BST1RPM19PUFRJT05BTBABEh0KGUZFQVRVUkVfU1VQUE9SVFNfRURJVElPTlMQAkJyChxjb20uZ29vZ2xlLnByb3RvYnVmLmNvbXBpbGVyQgxQbHVnaW5Qcm90b3NaKWdvb2dsZS5nb2xhbmcub3JnL3Byb3RvYnVmL3R5cGVzL3BsdWdpbnBiqgIYR29vZ2xlLlByb3RvYnVmLkNvbXBpbGVy\", [descriptor_pb_js_1.file_google_protobuf_descriptor]);\n/**\n * Describes the message google.protobuf.compiler.Version.\n * Use `create(VersionSchema)` to create a new message.\n */\nexports.VersionSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_compiler_plugin, 0);\n/**\n * Describes the message google.protobuf.compiler.CodeGeneratorRequest.\n * Use `create(CodeGeneratorRequestSchema)` to create a new message.\n */\nexports.CodeGeneratorRequestSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_compiler_plugin, 1);\n/**\n * Describes the message google.protobuf.compiler.CodeGeneratorResponse.\n * Use `create(CodeGeneratorResponseSchema)` to create a new message.\n */\nexports.CodeGeneratorResponseSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_compiler_plugin, 2);\n/**\n * Describes the message google.protobuf.compiler.CodeGeneratorResponse.File.\n * Use `create(CodeGeneratorResponse_FileSchema)` to create a new message.\n */\nexports.CodeGeneratorResponse_FileSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_compiler_plugin, 2, 0);\n/**\n * Sync with code_generator.h.\n *\n * @generated from enum google.protobuf.compiler.CodeGeneratorResponse.Feature\n */\nvar CodeGeneratorResponse_Feature;\n(function (CodeGeneratorResponse_Feature) {\n /**\n * @generated from enum value: FEATURE_NONE = 0;\n */\n CodeGeneratorResponse_Feature[CodeGeneratorResponse_Feature[\"NONE\"] = 0] = \"NONE\";\n /**\n * @generated from enum value: FEATURE_PROTO3_OPTIONAL = 1;\n */\n CodeGeneratorResponse_Feature[CodeGeneratorResponse_Feature[\"PROTO3_OPTIONAL\"] = 1] = \"PROTO3_OPTIONAL\";\n /**\n * @generated from enum value: FEATURE_SUPPORTS_EDITIONS = 2;\n */\n CodeGeneratorResponse_Feature[CodeGeneratorResponse_Feature[\"SUPPORTS_EDITIONS\"] = 2] = \"SUPPORTS_EDITIONS\";\n})(CodeGeneratorResponse_Feature || (exports.CodeGeneratorResponse_Feature = CodeGeneratorResponse_Feature = {}));\n/**\n * Describes the enum google.protobuf.compiler.CodeGeneratorResponse.Feature.\n */\nexports.CodeGeneratorResponse_FeatureSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_compiler_plugin, 2, 0);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/compiler/plugin_pb.js?");
570
-
571
- /***/ }),
572
-
573
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/descriptor_pb.js":
574
- /*!***************************************************************************************************************************************!*\
575
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/descriptor_pb.js ***!
576
- \***************************************************************************************************************************************/
577
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
578
-
579
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.FeatureSet_EnumTypeSchema = exports.FeatureSet_EnumType = exports.FeatureSet_FieldPresenceSchema = exports.FeatureSet_FieldPresence = exports.FeatureSetSchema = exports.UninterpretedOption_NamePartSchema = exports.UninterpretedOptionSchema = exports.MethodOptions_IdempotencyLevelSchema = exports.MethodOptions_IdempotencyLevel = exports.MethodOptionsSchema = exports.ServiceOptionsSchema = exports.EnumValueOptionsSchema = exports.EnumOptionsSchema = exports.OneofOptionsSchema = exports.FieldOptions_OptionTargetTypeSchema = exports.FieldOptions_OptionTargetType = exports.FieldOptions_OptionRetentionSchema = exports.FieldOptions_OptionRetention = exports.FieldOptions_JSTypeSchema = exports.FieldOptions_JSType = exports.FieldOptions_CTypeSchema = exports.FieldOptions_CType = exports.FieldOptions_FeatureSupportSchema = exports.FieldOptions_EditionDefaultSchema = exports.FieldOptionsSchema = exports.MessageOptionsSchema = exports.FileOptions_OptimizeModeSchema = exports.FileOptions_OptimizeMode = exports.FileOptionsSchema = exports.MethodDescriptorProtoSchema = exports.ServiceDescriptorProtoSchema = exports.EnumValueDescriptorProtoSchema = exports.EnumDescriptorProto_EnumReservedRangeSchema = exports.EnumDescriptorProtoSchema = exports.OneofDescriptorProtoSchema = exports.FieldDescriptorProto_LabelSchema = exports.FieldDescriptorProto_Label = exports.FieldDescriptorProto_TypeSchema = exports.FieldDescriptorProto_Type = exports.FieldDescriptorProtoSchema = exports.ExtensionRangeOptions_VerificationStateSchema = exports.ExtensionRangeOptions_VerificationState = exports.ExtensionRangeOptions_DeclarationSchema = exports.ExtensionRangeOptionsSchema = exports.DescriptorProto_ReservedRangeSchema = exports.DescriptorProto_ExtensionRangeSchema = exports.DescriptorProtoSchema = exports.FileDescriptorProtoSchema = exports.FileDescriptorSetSchema = exports.file_google_protobuf_descriptor = void 0;\nexports.EditionSchema = exports.Edition = exports.GeneratedCodeInfo_Annotation_SemanticSchema = exports.GeneratedCodeInfo_Annotation_Semantic = exports.GeneratedCodeInfo_AnnotationSchema = exports.GeneratedCodeInfoSchema = exports.SourceCodeInfo_LocationSchema = exports.SourceCodeInfoSchema = exports.FeatureSetDefaults_FeatureSetEditionDefaultSchema = exports.FeatureSetDefaultsSchema = exports.FeatureSet_JsonFormatSchema = exports.FeatureSet_JsonFormat = exports.FeatureSet_MessageEncodingSchema = exports.FeatureSet_MessageEncoding = exports.FeatureSet_Utf8ValidationSchema = exports.FeatureSet_Utf8Validation = exports.FeatureSet_RepeatedFieldEncodingSchema = exports.FeatureSet_RepeatedFieldEncoding = void 0;\nconst boot_js_1 = __webpack_require__(/*! ../../../../codegenv1/boot.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/boot.js\");\nconst message_js_1 = __webpack_require__(/*! ../../../../codegenv1/message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js\");\nconst enum_js_1 = __webpack_require__(/*! ../../../../codegenv1/enum.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/enum.js\");\n/**\n * Describes the file google/protobuf/descriptor.proto.\n */\nexports.file_google_protobuf_descriptor = (0, boot_js_1.boot)({ \"name\": \"google/protobuf/descriptor.proto\", \"package\": \"google.protobuf\", \"messageType\": [{ \"name\": \"FileDescriptorSet\", \"field\": [{ \"name\": \"file\", \"number\": 1, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.FileDescriptorProto\" }] }, { \"name\": \"FileDescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"package\", \"number\": 2, \"type\": 9, \"label\": 1 }, { \"name\": \"dependency\", \"number\": 3, \"type\": 9, \"label\": 3 }, { \"name\": \"public_dependency\", \"number\": 10, \"type\": 5, \"label\": 3 }, { \"name\": \"weak_dependency\", \"number\": 11, \"type\": 5, \"label\": 3 }, { \"name\": \"message_type\", \"number\": 4, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.DescriptorProto\" }, { \"name\": \"enum_type\", \"number\": 5, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.EnumDescriptorProto\" }, { \"name\": \"service\", \"number\": 6, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.ServiceDescriptorProto\" }, { \"name\": \"extension\", \"number\": 7, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.FieldDescriptorProto\" }, { \"name\": \"options\", \"number\": 8, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FileOptions\" }, { \"name\": \"source_code_info\", \"number\": 9, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.SourceCodeInfo\" }, { \"name\": \"syntax\", \"number\": 12, \"type\": 9, \"label\": 1 }, { \"name\": \"edition\", \"number\": 14, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }] }, { \"name\": \"DescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"field\", \"number\": 2, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.FieldDescriptorProto\" }, { \"name\": \"extension\", \"number\": 6, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.FieldDescriptorProto\" }, { \"name\": \"nested_type\", \"number\": 3, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.DescriptorProto\" }, { \"name\": \"enum_type\", \"number\": 4, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.EnumDescriptorProto\" }, { \"name\": \"extension_range\", \"number\": 5, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.DescriptorProto.ExtensionRange\" }, { \"name\": \"oneof_decl\", \"number\": 8, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.OneofDescriptorProto\" }, { \"name\": \"options\", \"number\": 7, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.MessageOptions\" }, { \"name\": \"reserved_range\", \"number\": 9, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.DescriptorProto.ReservedRange\" }, { \"name\": \"reserved_name\", \"number\": 10, \"type\": 9, \"label\": 3 }], \"nestedType\": [{ \"name\": \"ExtensionRange\", \"field\": [{ \"name\": \"start\", \"number\": 1, \"type\": 5, \"label\": 1 }, { \"name\": \"end\", \"number\": 2, \"type\": 5, \"label\": 1 }, { \"name\": \"options\", \"number\": 3, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.ExtensionRangeOptions\" }] }, { \"name\": \"ReservedRange\", \"field\": [{ \"name\": \"start\", \"number\": 1, \"type\": 5, \"label\": 1 }, { \"name\": \"end\", \"number\": 2, \"type\": 5, \"label\": 1 }] }] }, { \"name\": \"ExtensionRangeOptions\", \"field\": [{ \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }, { \"name\": \"declaration\", \"number\": 2, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.ExtensionRangeOptions.Declaration\", \"options\": { \"retention\": 2 } }, { \"name\": \"features\", \"number\": 50, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"verification\", \"number\": 3, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.ExtensionRangeOptions.VerificationState\", \"defaultValue\": \"UNVERIFIED\", \"options\": { \"retention\": 2 } }], \"nestedType\": [{ \"name\": \"Declaration\", \"field\": [{ \"name\": \"number\", \"number\": 1, \"type\": 5, \"label\": 1 }, { \"name\": \"full_name\", \"number\": 2, \"type\": 9, \"label\": 1 }, { \"name\": \"type\", \"number\": 3, \"type\": 9, \"label\": 1 }, { \"name\": \"reserved\", \"number\": 5, \"type\": 8, \"label\": 1 }, { \"name\": \"repeated\", \"number\": 6, \"type\": 8, \"label\": 1 }] }], \"enumType\": [{ \"name\": \"VerificationState\", \"value\": [{ \"name\": \"DECLARATION\", \"number\": 0 }, { \"name\": \"UNVERIFIED\", \"number\": 1 }] }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"FieldDescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"number\", \"number\": 3, \"type\": 5, \"label\": 1 }, { \"name\": \"label\", \"number\": 4, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FieldDescriptorProto.Label\" }, { \"name\": \"type\", \"number\": 5, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FieldDescriptorProto.Type\" }, { \"name\": \"type_name\", \"number\": 6, \"type\": 9, \"label\": 1 }, { \"name\": \"extendee\", \"number\": 2, \"type\": 9, \"label\": 1 }, { \"name\": \"default_value\", \"number\": 7, \"type\": 9, \"label\": 1 }, { \"name\": \"oneof_index\", \"number\": 9, \"type\": 5, \"label\": 1 }, { \"name\": \"json_name\", \"number\": 10, \"type\": 9, \"label\": 1 }, { \"name\": \"options\", \"number\": 8, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FieldOptions\" }, { \"name\": \"proto3_optional\", \"number\": 17, \"type\": 8, \"label\": 1 }], \"enumType\": [{ \"name\": \"Type\", \"value\": [{ \"name\": \"TYPE_DOUBLE\", \"number\": 1 }, { \"name\": \"TYPE_FLOAT\", \"number\": 2 }, { \"name\": \"TYPE_INT64\", \"number\": 3 }, { \"name\": \"TYPE_UINT64\", \"number\": 4 }, { \"name\": \"TYPE_INT32\", \"number\": 5 }, { \"name\": \"TYPE_FIXED64\", \"number\": 6 }, { \"name\": \"TYPE_FIXED32\", \"number\": 7 }, { \"name\": \"TYPE_BOOL\", \"number\": 8 }, { \"name\": \"TYPE_STRING\", \"number\": 9 }, { \"name\": \"TYPE_GROUP\", \"number\": 10 }, { \"name\": \"TYPE_MESSAGE\", \"number\": 11 }, { \"name\": \"TYPE_BYTES\", \"number\": 12 }, { \"name\": \"TYPE_UINT32\", \"number\": 13 }, { \"name\": \"TYPE_ENUM\", \"number\": 14 }, { \"name\": \"TYPE_SFIXED32\", \"number\": 15 }, { \"name\": \"TYPE_SFIXED64\", \"number\": 16 }, { \"name\": \"TYPE_SINT32\", \"number\": 17 }, { \"name\": \"TYPE_SINT64\", \"number\": 18 }] }, { \"name\": \"Label\", \"value\": [{ \"name\": \"LABEL_OPTIONAL\", \"number\": 1 }, { \"name\": \"LABEL_REPEATED\", \"number\": 3 }, { \"name\": \"LABEL_REQUIRED\", \"number\": 2 }] }] }, { \"name\": \"OneofDescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"options\", \"number\": 2, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.OneofOptions\" }] }, { \"name\": \"EnumDescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"value\", \"number\": 2, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.EnumValueDescriptorProto\" }, { \"name\": \"options\", \"number\": 3, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.EnumOptions\" }, { \"name\": \"reserved_range\", \"number\": 4, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.EnumDescriptorProto.EnumReservedRange\" }, { \"name\": \"reserved_name\", \"number\": 5, \"type\": 9, \"label\": 3 }], \"nestedType\": [{ \"name\": \"EnumReservedRange\", \"field\": [{ \"name\": \"start\", \"number\": 1, \"type\": 5, \"label\": 1 }, { \"name\": \"end\", \"number\": 2, \"type\": 5, \"label\": 1 }] }] }, { \"name\": \"EnumValueDescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"number\", \"number\": 2, \"type\": 5, \"label\": 1 }, { \"name\": \"options\", \"number\": 3, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.EnumValueOptions\" }] }, { \"name\": \"ServiceDescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"method\", \"number\": 2, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.MethodDescriptorProto\" }, { \"name\": \"options\", \"number\": 3, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.ServiceOptions\" }] }, { \"name\": \"MethodDescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"input_type\", \"number\": 2, \"type\": 9, \"label\": 1 }, { \"name\": \"output_type\", \"number\": 3, \"type\": 9, \"label\": 1 }, { \"name\": \"options\", \"number\": 4, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.MethodOptions\" }, { \"name\": \"client_streaming\", \"number\": 5, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"server_streaming\", \"number\": 6, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }] }, { \"name\": \"FileOptions\", \"field\": [{ \"name\": \"java_package\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"java_outer_classname\", \"number\": 8, \"type\": 9, \"label\": 1 }, { \"name\": \"java_multiple_files\", \"number\": 10, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"java_generate_equals_and_hash\", \"number\": 20, \"type\": 8, \"label\": 1, \"options\": { \"deprecated\": true } }, { \"name\": \"java_string_check_utf8\", \"number\": 27, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"optimize_for\", \"number\": 9, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FileOptions.OptimizeMode\", \"defaultValue\": \"SPEED\" }, { \"name\": \"go_package\", \"number\": 11, \"type\": 9, \"label\": 1 }, { \"name\": \"cc_generic_services\", \"number\": 16, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"java_generic_services\", \"number\": 17, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"py_generic_services\", \"number\": 18, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"deprecated\", \"number\": 23, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"cc_enable_arenas\", \"number\": 31, \"type\": 8, \"label\": 1, \"defaultValue\": \"true\" }, { \"name\": \"objc_class_prefix\", \"number\": 36, \"type\": 9, \"label\": 1 }, { \"name\": \"csharp_namespace\", \"number\": 37, \"type\": 9, \"label\": 1 }, { \"name\": \"swift_prefix\", \"number\": 39, \"type\": 9, \"label\": 1 }, { \"name\": \"php_class_prefix\", \"number\": 40, \"type\": 9, \"label\": 1 }, { \"name\": \"php_namespace\", \"number\": 41, \"type\": 9, \"label\": 1 }, { \"name\": \"php_metadata_namespace\", \"number\": 44, \"type\": 9, \"label\": 1 }, { \"name\": \"ruby_package\", \"number\": 45, \"type\": 9, \"label\": 1 }, { \"name\": \"features\", \"number\": 50, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"enumType\": [{ \"name\": \"OptimizeMode\", \"value\": [{ \"name\": \"SPEED\", \"number\": 1 }, { \"name\": \"CODE_SIZE\", \"number\": 2 }, { \"name\": \"LITE_RUNTIME\", \"number\": 3 }] }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"MessageOptions\", \"field\": [{ \"name\": \"message_set_wire_format\", \"number\": 1, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"no_standard_descriptor_accessor\", \"number\": 2, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"deprecated\", \"number\": 3, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"map_entry\", \"number\": 7, \"type\": 8, \"label\": 1 }, { \"name\": \"deprecated_legacy_json_field_conflicts\", \"number\": 11, \"type\": 8, \"label\": 1, \"options\": { \"deprecated\": true } }, { \"name\": \"features\", \"number\": 12, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"FieldOptions\", \"field\": [{ \"name\": \"ctype\", \"number\": 1, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FieldOptions.CType\", \"defaultValue\": \"STRING\" }, { \"name\": \"packed\", \"number\": 2, \"type\": 8, \"label\": 1 }, { \"name\": \"jstype\", \"number\": 6, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FieldOptions.JSType\", \"defaultValue\": \"JS_NORMAL\" }, { \"name\": \"lazy\", \"number\": 5, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"unverified_lazy\", \"number\": 15, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"deprecated\", \"number\": 3, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"weak\", \"number\": 10, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"debug_redact\", \"number\": 16, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"retention\", \"number\": 17, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FieldOptions.OptionRetention\" }, { \"name\": \"targets\", \"number\": 19, \"type\": 14, \"label\": 3, \"typeName\": \".google.protobuf.FieldOptions.OptionTargetType\" }, { \"name\": \"edition_defaults\", \"number\": 20, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.FieldOptions.EditionDefault\" }, { \"name\": \"features\", \"number\": 21, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"feature_support\", \"number\": 22, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FieldOptions.FeatureSupport\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"nestedType\": [{ \"name\": \"EditionDefault\", \"field\": [{ \"name\": \"edition\", \"number\": 3, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }, { \"name\": \"value\", \"number\": 2, \"type\": 9, \"label\": 1 }] }, { \"name\": \"FeatureSupport\", \"field\": [{ \"name\": \"edition_introduced\", \"number\": 1, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }, { \"name\": \"edition_deprecated\", \"number\": 2, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }, { \"name\": \"deprecation_warning\", \"number\": 3, \"type\": 9, \"label\": 1 }, { \"name\": \"edition_removed\", \"number\": 4, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }] }], \"enumType\": [{ \"name\": \"CType\", \"value\": [{ \"name\": \"STRING\", \"number\": 0 }, { \"name\": \"CORD\", \"number\": 1 }, { \"name\": \"STRING_PIECE\", \"number\": 2 }] }, { \"name\": \"JSType\", \"value\": [{ \"name\": \"JS_NORMAL\", \"number\": 0 }, { \"name\": \"JS_STRING\", \"number\": 1 }, { \"name\": \"JS_NUMBER\", \"number\": 2 }] }, { \"name\": \"OptionRetention\", \"value\": [{ \"name\": \"RETENTION_UNKNOWN\", \"number\": 0 }, { \"name\": \"RETENTION_RUNTIME\", \"number\": 1 }, { \"name\": \"RETENTION_SOURCE\", \"number\": 2 }] }, { \"name\": \"OptionTargetType\", \"value\": [{ \"name\": \"TARGET_TYPE_UNKNOWN\", \"number\": 0 }, { \"name\": \"TARGET_TYPE_FILE\", \"number\": 1 }, { \"name\": \"TARGET_TYPE_EXTENSION_RANGE\", \"number\": 2 }, { \"name\": \"TARGET_TYPE_MESSAGE\", \"number\": 3 }, { \"name\": \"TARGET_TYPE_FIELD\", \"number\": 4 }, { \"name\": \"TARGET_TYPE_ONEOF\", \"number\": 5 }, { \"name\": \"TARGET_TYPE_ENUM\", \"number\": 6 }, { \"name\": \"TARGET_TYPE_ENUM_ENTRY\", \"number\": 7 }, { \"name\": \"TARGET_TYPE_SERVICE\", \"number\": 8 }, { \"name\": \"TARGET_TYPE_METHOD\", \"number\": 9 }] }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"OneofOptions\", \"field\": [{ \"name\": \"features\", \"number\": 1, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"EnumOptions\", \"field\": [{ \"name\": \"allow_alias\", \"number\": 2, \"type\": 8, \"label\": 1 }, { \"name\": \"deprecated\", \"number\": 3, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"deprecated_legacy_json_field_conflicts\", \"number\": 6, \"type\": 8, \"label\": 1, \"options\": { \"deprecated\": true } }, { \"name\": \"features\", \"number\": 7, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"EnumValueOptions\", \"field\": [{ \"name\": \"deprecated\", \"number\": 1, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"features\", \"number\": 2, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"debug_redact\", \"number\": 3, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"feature_support\", \"number\": 4, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FieldOptions.FeatureSupport\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"ServiceOptions\", \"field\": [{ \"name\": \"features\", \"number\": 34, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"deprecated\", \"number\": 33, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"MethodOptions\", \"field\": [{ \"name\": \"deprecated\", \"number\": 33, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"idempotency_level\", \"number\": 34, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.MethodOptions.IdempotencyLevel\", \"defaultValue\": \"IDEMPOTENCY_UNKNOWN\" }, { \"name\": \"features\", \"number\": 35, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"enumType\": [{ \"name\": \"IdempotencyLevel\", \"value\": [{ \"name\": \"IDEMPOTENCY_UNKNOWN\", \"number\": 0 }, { \"name\": \"NO_SIDE_EFFECTS\", \"number\": 1 }, { \"name\": \"IDEMPOTENT\", \"number\": 2 }] }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"UninterpretedOption\", \"field\": [{ \"name\": \"name\", \"number\": 2, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption.NamePart\" }, { \"name\": \"identifier_value\", \"number\": 3, \"type\": 9, \"label\": 1 }, { \"name\": \"positive_int_value\", \"number\": 4, \"type\": 4, \"label\": 1 }, { \"name\": \"negative_int_value\", \"number\": 5, \"type\": 3, \"label\": 1 }, { \"name\": \"double_value\", \"number\": 6, \"type\": 1, \"label\": 1 }, { \"name\": \"string_value\", \"number\": 7, \"type\": 12, \"label\": 1 }, { \"name\": \"aggregate_value\", \"number\": 8, \"type\": 9, \"label\": 1 }], \"nestedType\": [{ \"name\": \"NamePart\", \"field\": [{ \"name\": \"name_part\", \"number\": 1, \"type\": 9, \"label\": 2 }, { \"name\": \"is_extension\", \"number\": 2, \"type\": 8, \"label\": 2 }] }] }, { \"name\": \"FeatureSet\", \"field\": [{ \"name\": \"field_presence\", \"number\": 1, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet.FieldPresence\", \"options\": { \"retention\": 1, \"targets\": [4, 1], \"editionDefaults\": [{ \"value\": \"EXPLICIT\", \"edition\": 900 }, { \"value\": \"IMPLICIT\", \"edition\": 999 }, { \"value\": \"EXPLICIT\", \"edition\": 1000 }] } }, { \"name\": \"enum_type\", \"number\": 2, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet.EnumType\", \"options\": { \"retention\": 1, \"targets\": [6, 1], \"editionDefaults\": [{ \"value\": \"CLOSED\", \"edition\": 900 }, { \"value\": \"OPEN\", \"edition\": 999 }] } }, { \"name\": \"repeated_field_encoding\", \"number\": 3, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet.RepeatedFieldEncoding\", \"options\": { \"retention\": 1, \"targets\": [4, 1], \"editionDefaults\": [{ \"value\": \"EXPANDED\", \"edition\": 900 }, { \"value\": \"PACKED\", \"edition\": 999 }] } }, { \"name\": \"utf8_validation\", \"number\": 4, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet.Utf8Validation\", \"options\": { \"retention\": 1, \"targets\": [4, 1], \"editionDefaults\": [{ \"value\": \"NONE\", \"edition\": 900 }, { \"value\": \"VERIFY\", \"edition\": 999 }] } }, { \"name\": \"message_encoding\", \"number\": 5, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet.MessageEncoding\", \"options\": { \"retention\": 1, \"targets\": [4, 1], \"editionDefaults\": [{ \"value\": \"LENGTH_PREFIXED\", \"edition\": 900 }] } }, { \"name\": \"json_format\", \"number\": 6, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet.JsonFormat\", \"options\": { \"retention\": 1, \"targets\": [3, 6, 1], \"editionDefaults\": [{ \"value\": \"LEGACY_BEST_EFFORT\", \"edition\": 900 }, { \"value\": \"ALLOW\", \"edition\": 999 }] } }], \"enumType\": [{ \"name\": \"FieldPresence\", \"value\": [{ \"name\": \"FIELD_PRESENCE_UNKNOWN\", \"number\": 0 }, { \"name\": \"EXPLICIT\", \"number\": 1 }, { \"name\": \"IMPLICIT\", \"number\": 2 }, { \"name\": \"LEGACY_REQUIRED\", \"number\": 3 }] }, { \"name\": \"EnumType\", \"value\": [{ \"name\": \"ENUM_TYPE_UNKNOWN\", \"number\": 0 }, { \"name\": \"OPEN\", \"number\": 1 }, { \"name\": \"CLOSED\", \"number\": 2 }] }, { \"name\": \"RepeatedFieldEncoding\", \"value\": [{ \"name\": \"REPEATED_FIELD_ENCODING_UNKNOWN\", \"number\": 0 }, { \"name\": \"PACKED\", \"number\": 1 }, { \"name\": \"EXPANDED\", \"number\": 2 }] }, { \"name\": \"Utf8Validation\", \"value\": [{ \"name\": \"UTF8_VALIDATION_UNKNOWN\", \"number\": 0 }, { \"name\": \"VERIFY\", \"number\": 2 }, { \"name\": \"NONE\", \"number\": 3 }] }, { \"name\": \"MessageEncoding\", \"value\": [{ \"name\": \"MESSAGE_ENCODING_UNKNOWN\", \"number\": 0 }, { \"name\": \"LENGTH_PREFIXED\", \"number\": 1 }, { \"name\": \"DELIMITED\", \"number\": 2 }] }, { \"name\": \"JsonFormat\", \"value\": [{ \"name\": \"JSON_FORMAT_UNKNOWN\", \"number\": 0 }, { \"name\": \"ALLOW\", \"number\": 1 }, { \"name\": \"LEGACY_BEST_EFFORT\", \"number\": 2 }] }], \"extensionRange\": [{ \"start\": 1000, \"end\": 9995 }, { \"start\": 9995, \"end\": 10000 }, { \"start\": 10000, \"end\": 10001 }] }, { \"name\": \"FeatureSetDefaults\", \"field\": [{ \"name\": \"defaults\", \"number\": 1, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault\" }, { \"name\": \"minimum_edition\", \"number\": 4, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }, { \"name\": \"maximum_edition\", \"number\": 5, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }], \"nestedType\": [{ \"name\": \"FeatureSetEditionDefault\", \"field\": [{ \"name\": \"edition\", \"number\": 3, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }, { \"name\": \"overridable_features\", \"number\": 4, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"fixed_features\", \"number\": 5, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }] }] }, { \"name\": \"SourceCodeInfo\", \"field\": [{ \"name\": \"location\", \"number\": 1, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.SourceCodeInfo.Location\" }], \"nestedType\": [{ \"name\": \"Location\", \"field\": [{ \"name\": \"path\", \"number\": 1, \"type\": 5, \"label\": 3, \"options\": { \"packed\": true } }, { \"name\": \"span\", \"number\": 2, \"type\": 5, \"label\": 3, \"options\": { \"packed\": true } }, { \"name\": \"leading_comments\", \"number\": 3, \"type\": 9, \"label\": 1 }, { \"name\": \"trailing_comments\", \"number\": 4, \"type\": 9, \"label\": 1 }, { \"name\": \"leading_detached_comments\", \"number\": 6, \"type\": 9, \"label\": 3 }] }] }, { \"name\": \"GeneratedCodeInfo\", \"field\": [{ \"name\": \"annotation\", \"number\": 1, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.GeneratedCodeInfo.Annotation\" }], \"nestedType\": [{ \"name\": \"Annotation\", \"field\": [{ \"name\": \"path\", \"number\": 1, \"type\": 5, \"label\": 3, \"options\": { \"packed\": true } }, { \"name\": \"source_file\", \"number\": 2, \"type\": 9, \"label\": 1 }, { \"name\": \"begin\", \"number\": 3, \"type\": 5, \"label\": 1 }, { \"name\": \"end\", \"number\": 4, \"type\": 5, \"label\": 1 }, { \"name\": \"semantic\", \"number\": 5, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.GeneratedCodeInfo.Annotation.Semantic\" }], \"enumType\": [{ \"name\": \"Semantic\", \"value\": [{ \"name\": \"NONE\", \"number\": 0 }, { \"name\": \"SET\", \"number\": 1 }, { \"name\": \"ALIAS\", \"number\": 2 }] }] }] }], \"enumType\": [{ \"name\": \"Edition\", \"value\": [{ \"name\": \"EDITION_UNKNOWN\", \"number\": 0 }, { \"name\": \"EDITION_LEGACY\", \"number\": 900 }, { \"name\": \"EDITION_PROTO2\", \"number\": 998 }, { \"name\": \"EDITION_PROTO3\", \"number\": 999 }, { \"name\": \"EDITION_2023\", \"number\": 1000 }, { \"name\": \"EDITION_2024\", \"number\": 1001 }, { \"name\": \"EDITION_1_TEST_ONLY\", \"number\": 1 }, { \"name\": \"EDITION_2_TEST_ONLY\", \"number\": 2 }, { \"name\": \"EDITION_99997_TEST_ONLY\", \"number\": 99997 }, { \"name\": \"EDITION_99998_TEST_ONLY\", \"number\": 99998 }, { \"name\": \"EDITION_99999_TEST_ONLY\", \"number\": 99999 }, { \"name\": \"EDITION_MAX\", \"number\": 2147483647 }] }] });\n/**\n * Describes the message google.protobuf.FileDescriptorSet.\n * Use `create(FileDescriptorSetSchema)` to create a new message.\n */\nexports.FileDescriptorSetSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 0);\n/**\n * Describes the message google.protobuf.FileDescriptorProto.\n * Use `create(FileDescriptorProtoSchema)` to create a new message.\n */\nexports.FileDescriptorProtoSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 1);\n/**\n * Describes the message google.protobuf.DescriptorProto.\n * Use `create(DescriptorProtoSchema)` to create a new message.\n */\nexports.DescriptorProtoSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 2);\n/**\n * Describes the message google.protobuf.DescriptorProto.ExtensionRange.\n * Use `create(DescriptorProto_ExtensionRangeSchema)` to create a new message.\n */\nexports.DescriptorProto_ExtensionRangeSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 2, 0);\n/**\n * Describes the message google.protobuf.DescriptorProto.ReservedRange.\n * Use `create(DescriptorProto_ReservedRangeSchema)` to create a new message.\n */\nexports.DescriptorProto_ReservedRangeSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 2, 1);\n/**\n * Describes the message google.protobuf.ExtensionRangeOptions.\n * Use `create(ExtensionRangeOptionsSchema)` to create a new message.\n */\nexports.ExtensionRangeOptionsSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 3);\n/**\n * Describes the message google.protobuf.ExtensionRangeOptions.Declaration.\n * Use `create(ExtensionRangeOptions_DeclarationSchema)` to create a new message.\n */\nexports.ExtensionRangeOptions_DeclarationSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 3, 0);\n/**\n * The verification state of the extension range.\n *\n * @generated from enum google.protobuf.ExtensionRangeOptions.VerificationState\n */\nvar ExtensionRangeOptions_VerificationState;\n(function (ExtensionRangeOptions_VerificationState) {\n /**\n * All the extensions of the range must be declared.\n *\n * @generated from enum value: DECLARATION = 0;\n */\n ExtensionRangeOptions_VerificationState[ExtensionRangeOptions_VerificationState[\"DECLARATION\"] = 0] = \"DECLARATION\";\n /**\n * @generated from enum value: UNVERIFIED = 1;\n */\n ExtensionRangeOptions_VerificationState[ExtensionRangeOptions_VerificationState[\"UNVERIFIED\"] = 1] = \"UNVERIFIED\";\n})(ExtensionRangeOptions_VerificationState || (exports.ExtensionRangeOptions_VerificationState = ExtensionRangeOptions_VerificationState = {}));\n/**\n * Describes the enum google.protobuf.ExtensionRangeOptions.VerificationState.\n */\nexports.ExtensionRangeOptions_VerificationStateSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 3, 0);\n/**\n * Describes the message google.protobuf.FieldDescriptorProto.\n * Use `create(FieldDescriptorProtoSchema)` to create a new message.\n */\nexports.FieldDescriptorProtoSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 4);\n/**\n * @generated from enum google.protobuf.FieldDescriptorProto.Type\n */\nvar FieldDescriptorProto_Type;\n(function (FieldDescriptorProto_Type) {\n /**\n * 0 is reserved for errors.\n * Order is weird for historical reasons.\n *\n * @generated from enum value: TYPE_DOUBLE = 1;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"DOUBLE\"] = 1] = \"DOUBLE\";\n /**\n * @generated from enum value: TYPE_FLOAT = 2;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"FLOAT\"] = 2] = \"FLOAT\";\n /**\n * Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if\n * negative values are likely.\n *\n * @generated from enum value: TYPE_INT64 = 3;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"INT64\"] = 3] = \"INT64\";\n /**\n * @generated from enum value: TYPE_UINT64 = 4;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"UINT64\"] = 4] = \"UINT64\";\n /**\n * Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if\n * negative values are likely.\n *\n * @generated from enum value: TYPE_INT32 = 5;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"INT32\"] = 5] = \"INT32\";\n /**\n * @generated from enum value: TYPE_FIXED64 = 6;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"FIXED64\"] = 6] = \"FIXED64\";\n /**\n * @generated from enum value: TYPE_FIXED32 = 7;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"FIXED32\"] = 7] = \"FIXED32\";\n /**\n * @generated from enum value: TYPE_BOOL = 8;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"BOOL\"] = 8] = \"BOOL\";\n /**\n * @generated from enum value: TYPE_STRING = 9;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"STRING\"] = 9] = \"STRING\";\n /**\n * Tag-delimited aggregate.\n * Group type is deprecated and not supported after google.protobuf. However, Proto3\n * implementations should still be able to parse the group wire format and\n * treat group fields as unknown fields. In Editions, the group wire format\n * can be enabled via the `message_encoding` feature.\n *\n * @generated from enum value: TYPE_GROUP = 10;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"GROUP\"] = 10] = \"GROUP\";\n /**\n * Length-delimited aggregate.\n *\n * @generated from enum value: TYPE_MESSAGE = 11;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"MESSAGE\"] = 11] = \"MESSAGE\";\n /**\n * New in version 2.\n *\n * @generated from enum value: TYPE_BYTES = 12;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"BYTES\"] = 12] = \"BYTES\";\n /**\n * @generated from enum value: TYPE_UINT32 = 13;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"UINT32\"] = 13] = \"UINT32\";\n /**\n * @generated from enum value: TYPE_ENUM = 14;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"ENUM\"] = 14] = \"ENUM\";\n /**\n * @generated from enum value: TYPE_SFIXED32 = 15;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"SFIXED32\"] = 15] = \"SFIXED32\";\n /**\n * @generated from enum value: TYPE_SFIXED64 = 16;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"SFIXED64\"] = 16] = \"SFIXED64\";\n /**\n * Uses ZigZag encoding.\n *\n * @generated from enum value: TYPE_SINT32 = 17;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"SINT32\"] = 17] = \"SINT32\";\n /**\n * Uses ZigZag encoding.\n *\n * @generated from enum value: TYPE_SINT64 = 18;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"SINT64\"] = 18] = \"SINT64\";\n})(FieldDescriptorProto_Type || (exports.FieldDescriptorProto_Type = FieldDescriptorProto_Type = {}));\n/**\n * Describes the enum google.protobuf.FieldDescriptorProto.Type.\n */\nexports.FieldDescriptorProto_TypeSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 4, 0);\n/**\n * @generated from enum google.protobuf.FieldDescriptorProto.Label\n */\nvar FieldDescriptorProto_Label;\n(function (FieldDescriptorProto_Label) {\n /**\n * 0 is reserved for errors\n *\n * @generated from enum value: LABEL_OPTIONAL = 1;\n */\n FieldDescriptorProto_Label[FieldDescriptorProto_Label[\"OPTIONAL\"] = 1] = \"OPTIONAL\";\n /**\n * @generated from enum value: LABEL_REPEATED = 3;\n */\n FieldDescriptorProto_Label[FieldDescriptorProto_Label[\"REPEATED\"] = 3] = \"REPEATED\";\n /**\n * The required label is only allowed in google.protobuf. In proto3 and Editions\n * it's explicitly prohibited. In Editions, the `field_presence` feature\n * can be used to get this behavior.\n *\n * @generated from enum value: LABEL_REQUIRED = 2;\n */\n FieldDescriptorProto_Label[FieldDescriptorProto_Label[\"REQUIRED\"] = 2] = \"REQUIRED\";\n})(FieldDescriptorProto_Label || (exports.FieldDescriptorProto_Label = FieldDescriptorProto_Label = {}));\n/**\n * Describes the enum google.protobuf.FieldDescriptorProto.Label.\n */\nexports.FieldDescriptorProto_LabelSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 4, 1);\n/**\n * Describes the message google.protobuf.OneofDescriptorProto.\n * Use `create(OneofDescriptorProtoSchema)` to create a new message.\n */\nexports.OneofDescriptorProtoSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 5);\n/**\n * Describes the message google.protobuf.EnumDescriptorProto.\n * Use `create(EnumDescriptorProtoSchema)` to create a new message.\n */\nexports.EnumDescriptorProtoSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 6);\n/**\n * Describes the message google.protobuf.EnumDescriptorProto.EnumReservedRange.\n * Use `create(EnumDescriptorProto_EnumReservedRangeSchema)` to create a new message.\n */\nexports.EnumDescriptorProto_EnumReservedRangeSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 6, 0);\n/**\n * Describes the message google.protobuf.EnumValueDescriptorProto.\n * Use `create(EnumValueDescriptorProtoSchema)` to create a new message.\n */\nexports.EnumValueDescriptorProtoSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 7);\n/**\n * Describes the message google.protobuf.ServiceDescriptorProto.\n * Use `create(ServiceDescriptorProtoSchema)` to create a new message.\n */\nexports.ServiceDescriptorProtoSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 8);\n/**\n * Describes the message google.protobuf.MethodDescriptorProto.\n * Use `create(MethodDescriptorProtoSchema)` to create a new message.\n */\nexports.MethodDescriptorProtoSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 9);\n/**\n * Describes the message google.protobuf.FileOptions.\n * Use `create(FileOptionsSchema)` to create a new message.\n */\nexports.FileOptionsSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 10);\n/**\n * Generated classes can be optimized for speed or code size.\n *\n * @generated from enum google.protobuf.FileOptions.OptimizeMode\n */\nvar FileOptions_OptimizeMode;\n(function (FileOptions_OptimizeMode) {\n /**\n * Generate complete code for parsing, serialization,\n *\n * @generated from enum value: SPEED = 1;\n */\n FileOptions_OptimizeMode[FileOptions_OptimizeMode[\"SPEED\"] = 1] = \"SPEED\";\n /**\n * etc.\n *\n * Use ReflectionOps to implement these methods.\n *\n * @generated from enum value: CODE_SIZE = 2;\n */\n FileOptions_OptimizeMode[FileOptions_OptimizeMode[\"CODE_SIZE\"] = 2] = \"CODE_SIZE\";\n /**\n * Generate code using MessageLite and the lite runtime.\n *\n * @generated from enum value: LITE_RUNTIME = 3;\n */\n FileOptions_OptimizeMode[FileOptions_OptimizeMode[\"LITE_RUNTIME\"] = 3] = \"LITE_RUNTIME\";\n})(FileOptions_OptimizeMode || (exports.FileOptions_OptimizeMode = FileOptions_OptimizeMode = {}));\n/**\n * Describes the enum google.protobuf.FileOptions.OptimizeMode.\n */\nexports.FileOptions_OptimizeModeSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 10, 0);\n/**\n * Describes the message google.protobuf.MessageOptions.\n * Use `create(MessageOptionsSchema)` to create a new message.\n */\nexports.MessageOptionsSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 11);\n/**\n * Describes the message google.protobuf.FieldOptions.\n * Use `create(FieldOptionsSchema)` to create a new message.\n */\nexports.FieldOptionsSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 12);\n/**\n * Describes the message google.protobuf.FieldOptions.EditionDefault.\n * Use `create(FieldOptions_EditionDefaultSchema)` to create a new message.\n */\nexports.FieldOptions_EditionDefaultSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 12, 0);\n/**\n * Describes the message google.protobuf.FieldOptions.FeatureSupport.\n * Use `create(FieldOptions_FeatureSupportSchema)` to create a new message.\n */\nexports.FieldOptions_FeatureSupportSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 12, 1);\n/**\n * @generated from enum google.protobuf.FieldOptions.CType\n */\nvar FieldOptions_CType;\n(function (FieldOptions_CType) {\n /**\n * Default mode.\n *\n * @generated from enum value: STRING = 0;\n */\n FieldOptions_CType[FieldOptions_CType[\"STRING\"] = 0] = \"STRING\";\n /**\n * The option [ctype=CORD] may be applied to a non-repeated field of type\n * \"bytes\". It indicates that in C++, the data should be stored in a Cord\n * instead of a string. For very large strings, this may reduce memory\n * fragmentation. It may also allow better performance when parsing from a\n * Cord, or when parsing with aliasing enabled, as the parsed Cord may then\n * alias the original buffer.\n *\n * @generated from enum value: CORD = 1;\n */\n FieldOptions_CType[FieldOptions_CType[\"CORD\"] = 1] = \"CORD\";\n /**\n * @generated from enum value: STRING_PIECE = 2;\n */\n FieldOptions_CType[FieldOptions_CType[\"STRING_PIECE\"] = 2] = \"STRING_PIECE\";\n})(FieldOptions_CType || (exports.FieldOptions_CType = FieldOptions_CType = {}));\n/**\n * Describes the enum google.protobuf.FieldOptions.CType.\n */\nexports.FieldOptions_CTypeSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 12, 0);\n/**\n * @generated from enum google.protobuf.FieldOptions.JSType\n */\nvar FieldOptions_JSType;\n(function (FieldOptions_JSType) {\n /**\n * Use the default type.\n *\n * @generated from enum value: JS_NORMAL = 0;\n */\n FieldOptions_JSType[FieldOptions_JSType[\"JS_NORMAL\"] = 0] = \"JS_NORMAL\";\n /**\n * Use JavaScript strings.\n *\n * @generated from enum value: JS_STRING = 1;\n */\n FieldOptions_JSType[FieldOptions_JSType[\"JS_STRING\"] = 1] = \"JS_STRING\";\n /**\n * Use JavaScript numbers.\n *\n * @generated from enum value: JS_NUMBER = 2;\n */\n FieldOptions_JSType[FieldOptions_JSType[\"JS_NUMBER\"] = 2] = \"JS_NUMBER\";\n})(FieldOptions_JSType || (exports.FieldOptions_JSType = FieldOptions_JSType = {}));\n/**\n * Describes the enum google.protobuf.FieldOptions.JSType.\n */\nexports.FieldOptions_JSTypeSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 12, 1);\n/**\n * If set to RETENTION_SOURCE, the option will be omitted from the binary.\n * Note: as of January 2023, support for this is in progress and does not yet\n * have an effect (b/264593489).\n *\n * @generated from enum google.protobuf.FieldOptions.OptionRetention\n */\nvar FieldOptions_OptionRetention;\n(function (FieldOptions_OptionRetention) {\n /**\n * @generated from enum value: RETENTION_UNKNOWN = 0;\n */\n FieldOptions_OptionRetention[FieldOptions_OptionRetention[\"RETENTION_UNKNOWN\"] = 0] = \"RETENTION_UNKNOWN\";\n /**\n * @generated from enum value: RETENTION_RUNTIME = 1;\n */\n FieldOptions_OptionRetention[FieldOptions_OptionRetention[\"RETENTION_RUNTIME\"] = 1] = \"RETENTION_RUNTIME\";\n /**\n * @generated from enum value: RETENTION_SOURCE = 2;\n */\n FieldOptions_OptionRetention[FieldOptions_OptionRetention[\"RETENTION_SOURCE\"] = 2] = \"RETENTION_SOURCE\";\n})(FieldOptions_OptionRetention || (exports.FieldOptions_OptionRetention = FieldOptions_OptionRetention = {}));\n/**\n * Describes the enum google.protobuf.FieldOptions.OptionRetention.\n */\nexports.FieldOptions_OptionRetentionSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 12, 2);\n/**\n * This indicates the types of entities that the field may apply to when used\n * as an option. If it is unset, then the field may be freely used as an\n * option on any kind of entity. Note: as of January 2023, support for this is\n * in progress and does not yet have an effect (b/264593489).\n *\n * @generated from enum google.protobuf.FieldOptions.OptionTargetType\n */\nvar FieldOptions_OptionTargetType;\n(function (FieldOptions_OptionTargetType) {\n /**\n * @generated from enum value: TARGET_TYPE_UNKNOWN = 0;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_UNKNOWN\"] = 0] = \"TARGET_TYPE_UNKNOWN\";\n /**\n * @generated from enum value: TARGET_TYPE_FILE = 1;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_FILE\"] = 1] = \"TARGET_TYPE_FILE\";\n /**\n * @generated from enum value: TARGET_TYPE_EXTENSION_RANGE = 2;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_EXTENSION_RANGE\"] = 2] = \"TARGET_TYPE_EXTENSION_RANGE\";\n /**\n * @generated from enum value: TARGET_TYPE_MESSAGE = 3;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_MESSAGE\"] = 3] = \"TARGET_TYPE_MESSAGE\";\n /**\n * @generated from enum value: TARGET_TYPE_FIELD = 4;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_FIELD\"] = 4] = \"TARGET_TYPE_FIELD\";\n /**\n * @generated from enum value: TARGET_TYPE_ONEOF = 5;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_ONEOF\"] = 5] = \"TARGET_TYPE_ONEOF\";\n /**\n * @generated from enum value: TARGET_TYPE_ENUM = 6;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_ENUM\"] = 6] = \"TARGET_TYPE_ENUM\";\n /**\n * @generated from enum value: TARGET_TYPE_ENUM_ENTRY = 7;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_ENUM_ENTRY\"] = 7] = \"TARGET_TYPE_ENUM_ENTRY\";\n /**\n * @generated from enum value: TARGET_TYPE_SERVICE = 8;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_SERVICE\"] = 8] = \"TARGET_TYPE_SERVICE\";\n /**\n * @generated from enum value: TARGET_TYPE_METHOD = 9;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_METHOD\"] = 9] = \"TARGET_TYPE_METHOD\";\n})(FieldOptions_OptionTargetType || (exports.FieldOptions_OptionTargetType = FieldOptions_OptionTargetType = {}));\n/**\n * Describes the enum google.protobuf.FieldOptions.OptionTargetType.\n */\nexports.FieldOptions_OptionTargetTypeSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 12, 3);\n/**\n * Describes the message google.protobuf.OneofOptions.\n * Use `create(OneofOptionsSchema)` to create a new message.\n */\nexports.OneofOptionsSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 13);\n/**\n * Describes the message google.protobuf.EnumOptions.\n * Use `create(EnumOptionsSchema)` to create a new message.\n */\nexports.EnumOptionsSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 14);\n/**\n * Describes the message google.protobuf.EnumValueOptions.\n * Use `create(EnumValueOptionsSchema)` to create a new message.\n */\nexports.EnumValueOptionsSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 15);\n/**\n * Describes the message google.protobuf.ServiceOptions.\n * Use `create(ServiceOptionsSchema)` to create a new message.\n */\nexports.ServiceOptionsSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 16);\n/**\n * Describes the message google.protobuf.MethodOptions.\n * Use `create(MethodOptionsSchema)` to create a new message.\n */\nexports.MethodOptionsSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 17);\n/**\n * Is this method side-effect-free (or safe in HTTP parlance), or idempotent,\n * or neither? HTTP based RPC implementation may choose GET verb for safe\n * methods, and PUT verb for idempotent methods instead of the default POST.\n *\n * @generated from enum google.protobuf.MethodOptions.IdempotencyLevel\n */\nvar MethodOptions_IdempotencyLevel;\n(function (MethodOptions_IdempotencyLevel) {\n /**\n * @generated from enum value: IDEMPOTENCY_UNKNOWN = 0;\n */\n MethodOptions_IdempotencyLevel[MethodOptions_IdempotencyLevel[\"IDEMPOTENCY_UNKNOWN\"] = 0] = \"IDEMPOTENCY_UNKNOWN\";\n /**\n * implies idempotent\n *\n * @generated from enum value: NO_SIDE_EFFECTS = 1;\n */\n MethodOptions_IdempotencyLevel[MethodOptions_IdempotencyLevel[\"NO_SIDE_EFFECTS\"] = 1] = \"NO_SIDE_EFFECTS\";\n /**\n * idempotent, but may have side effects\n *\n * @generated from enum value: IDEMPOTENT = 2;\n */\n MethodOptions_IdempotencyLevel[MethodOptions_IdempotencyLevel[\"IDEMPOTENT\"] = 2] = \"IDEMPOTENT\";\n})(MethodOptions_IdempotencyLevel || (exports.MethodOptions_IdempotencyLevel = MethodOptions_IdempotencyLevel = {}));\n/**\n * Describes the enum google.protobuf.MethodOptions.IdempotencyLevel.\n */\nexports.MethodOptions_IdempotencyLevelSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 17, 0);\n/**\n * Describes the message google.protobuf.UninterpretedOption.\n * Use `create(UninterpretedOptionSchema)` to create a new message.\n */\nexports.UninterpretedOptionSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 18);\n/**\n * Describes the message google.protobuf.UninterpretedOption.NamePart.\n * Use `create(UninterpretedOption_NamePartSchema)` to create a new message.\n */\nexports.UninterpretedOption_NamePartSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 18, 0);\n/**\n * Describes the message google.protobuf.FeatureSet.\n * Use `create(FeatureSetSchema)` to create a new message.\n */\nexports.FeatureSetSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 19);\n/**\n * @generated from enum google.protobuf.FeatureSet.FieldPresence\n */\nvar FeatureSet_FieldPresence;\n(function (FeatureSet_FieldPresence) {\n /**\n * @generated from enum value: FIELD_PRESENCE_UNKNOWN = 0;\n */\n FeatureSet_FieldPresence[FeatureSet_FieldPresence[\"FIELD_PRESENCE_UNKNOWN\"] = 0] = \"FIELD_PRESENCE_UNKNOWN\";\n /**\n * @generated from enum value: EXPLICIT = 1;\n */\n FeatureSet_FieldPresence[FeatureSet_FieldPresence[\"EXPLICIT\"] = 1] = \"EXPLICIT\";\n /**\n * @generated from enum value: IMPLICIT = 2;\n */\n FeatureSet_FieldPresence[FeatureSet_FieldPresence[\"IMPLICIT\"] = 2] = \"IMPLICIT\";\n /**\n * @generated from enum value: LEGACY_REQUIRED = 3;\n */\n FeatureSet_FieldPresence[FeatureSet_FieldPresence[\"LEGACY_REQUIRED\"] = 3] = \"LEGACY_REQUIRED\";\n})(FeatureSet_FieldPresence || (exports.FeatureSet_FieldPresence = FeatureSet_FieldPresence = {}));\n/**\n * Describes the enum google.protobuf.FeatureSet.FieldPresence.\n */\nexports.FeatureSet_FieldPresenceSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 19, 0);\n/**\n * @generated from enum google.protobuf.FeatureSet.EnumType\n */\nvar FeatureSet_EnumType;\n(function (FeatureSet_EnumType) {\n /**\n * @generated from enum value: ENUM_TYPE_UNKNOWN = 0;\n */\n FeatureSet_EnumType[FeatureSet_EnumType[\"ENUM_TYPE_UNKNOWN\"] = 0] = \"ENUM_TYPE_UNKNOWN\";\n /**\n * @generated from enum value: OPEN = 1;\n */\n FeatureSet_EnumType[FeatureSet_EnumType[\"OPEN\"] = 1] = \"OPEN\";\n /**\n * @generated from enum value: CLOSED = 2;\n */\n FeatureSet_EnumType[FeatureSet_EnumType[\"CLOSED\"] = 2] = \"CLOSED\";\n})(FeatureSet_EnumType || (exports.FeatureSet_EnumType = FeatureSet_EnumType = {}));\n/**\n * Describes the enum google.protobuf.FeatureSet.EnumType.\n */\nexports.FeatureSet_EnumTypeSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 19, 1);\n/**\n * @generated from enum google.protobuf.FeatureSet.RepeatedFieldEncoding\n */\nvar FeatureSet_RepeatedFieldEncoding;\n(function (FeatureSet_RepeatedFieldEncoding) {\n /**\n * @generated from enum value: REPEATED_FIELD_ENCODING_UNKNOWN = 0;\n */\n FeatureSet_RepeatedFieldEncoding[FeatureSet_RepeatedFieldEncoding[\"REPEATED_FIELD_ENCODING_UNKNOWN\"] = 0] = \"REPEATED_FIELD_ENCODING_UNKNOWN\";\n /**\n * @generated from enum value: PACKED = 1;\n */\n FeatureSet_RepeatedFieldEncoding[FeatureSet_RepeatedFieldEncoding[\"PACKED\"] = 1] = \"PACKED\";\n /**\n * @generated from enum value: EXPANDED = 2;\n */\n FeatureSet_RepeatedFieldEncoding[FeatureSet_RepeatedFieldEncoding[\"EXPANDED\"] = 2] = \"EXPANDED\";\n})(FeatureSet_RepeatedFieldEncoding || (exports.FeatureSet_RepeatedFieldEncoding = FeatureSet_RepeatedFieldEncoding = {}));\n/**\n * Describes the enum google.protobuf.FeatureSet.RepeatedFieldEncoding.\n */\nexports.FeatureSet_RepeatedFieldEncodingSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 19, 2);\n/**\n * @generated from enum google.protobuf.FeatureSet.Utf8Validation\n */\nvar FeatureSet_Utf8Validation;\n(function (FeatureSet_Utf8Validation) {\n /**\n * @generated from enum value: UTF8_VALIDATION_UNKNOWN = 0;\n */\n FeatureSet_Utf8Validation[FeatureSet_Utf8Validation[\"UTF8_VALIDATION_UNKNOWN\"] = 0] = \"UTF8_VALIDATION_UNKNOWN\";\n /**\n * @generated from enum value: VERIFY = 2;\n */\n FeatureSet_Utf8Validation[FeatureSet_Utf8Validation[\"VERIFY\"] = 2] = \"VERIFY\";\n /**\n * @generated from enum value: NONE = 3;\n */\n FeatureSet_Utf8Validation[FeatureSet_Utf8Validation[\"NONE\"] = 3] = \"NONE\";\n})(FeatureSet_Utf8Validation || (exports.FeatureSet_Utf8Validation = FeatureSet_Utf8Validation = {}));\n/**\n * Describes the enum google.protobuf.FeatureSet.Utf8Validation.\n */\nexports.FeatureSet_Utf8ValidationSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 19, 3);\n/**\n * @generated from enum google.protobuf.FeatureSet.MessageEncoding\n */\nvar FeatureSet_MessageEncoding;\n(function (FeatureSet_MessageEncoding) {\n /**\n * @generated from enum value: MESSAGE_ENCODING_UNKNOWN = 0;\n */\n FeatureSet_MessageEncoding[FeatureSet_MessageEncoding[\"MESSAGE_ENCODING_UNKNOWN\"] = 0] = \"MESSAGE_ENCODING_UNKNOWN\";\n /**\n * @generated from enum value: LENGTH_PREFIXED = 1;\n */\n FeatureSet_MessageEncoding[FeatureSet_MessageEncoding[\"LENGTH_PREFIXED\"] = 1] = \"LENGTH_PREFIXED\";\n /**\n * @generated from enum value: DELIMITED = 2;\n */\n FeatureSet_MessageEncoding[FeatureSet_MessageEncoding[\"DELIMITED\"] = 2] = \"DELIMITED\";\n})(FeatureSet_MessageEncoding || (exports.FeatureSet_MessageEncoding = FeatureSet_MessageEncoding = {}));\n/**\n * Describes the enum google.protobuf.FeatureSet.MessageEncoding.\n */\nexports.FeatureSet_MessageEncodingSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 19, 4);\n/**\n * @generated from enum google.protobuf.FeatureSet.JsonFormat\n */\nvar FeatureSet_JsonFormat;\n(function (FeatureSet_JsonFormat) {\n /**\n * @generated from enum value: JSON_FORMAT_UNKNOWN = 0;\n */\n FeatureSet_JsonFormat[FeatureSet_JsonFormat[\"JSON_FORMAT_UNKNOWN\"] = 0] = \"JSON_FORMAT_UNKNOWN\";\n /**\n * @generated from enum value: ALLOW = 1;\n */\n FeatureSet_JsonFormat[FeatureSet_JsonFormat[\"ALLOW\"] = 1] = \"ALLOW\";\n /**\n * @generated from enum value: LEGACY_BEST_EFFORT = 2;\n */\n FeatureSet_JsonFormat[FeatureSet_JsonFormat[\"LEGACY_BEST_EFFORT\"] = 2] = \"LEGACY_BEST_EFFORT\";\n})(FeatureSet_JsonFormat || (exports.FeatureSet_JsonFormat = FeatureSet_JsonFormat = {}));\n/**\n * Describes the enum google.protobuf.FeatureSet.JsonFormat.\n */\nexports.FeatureSet_JsonFormatSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 19, 5);\n/**\n * Describes the message google.protobuf.FeatureSetDefaults.\n * Use `create(FeatureSetDefaultsSchema)` to create a new message.\n */\nexports.FeatureSetDefaultsSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 20);\n/**\n * Describes the message google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.\n * Use `create(FeatureSetDefaults_FeatureSetEditionDefaultSchema)` to create a new message.\n */\nexports.FeatureSetDefaults_FeatureSetEditionDefaultSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 20, 0);\n/**\n * Describes the message google.protobuf.SourceCodeInfo.\n * Use `create(SourceCodeInfoSchema)` to create a new message.\n */\nexports.SourceCodeInfoSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 21);\n/**\n * Describes the message google.protobuf.SourceCodeInfo.Location.\n * Use `create(SourceCodeInfo_LocationSchema)` to create a new message.\n */\nexports.SourceCodeInfo_LocationSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 21, 0);\n/**\n * Describes the message google.protobuf.GeneratedCodeInfo.\n * Use `create(GeneratedCodeInfoSchema)` to create a new message.\n */\nexports.GeneratedCodeInfoSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 22);\n/**\n * Describes the message google.protobuf.GeneratedCodeInfo.Annotation.\n * Use `create(GeneratedCodeInfo_AnnotationSchema)` to create a new message.\n */\nexports.GeneratedCodeInfo_AnnotationSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_descriptor, 22, 0);\n/**\n * Represents the identified object's effect on the element in the original\n * .proto file.\n *\n * @generated from enum google.protobuf.GeneratedCodeInfo.Annotation.Semantic\n */\nvar GeneratedCodeInfo_Annotation_Semantic;\n(function (GeneratedCodeInfo_Annotation_Semantic) {\n /**\n * There is no effect or the effect is indescribable.\n *\n * @generated from enum value: NONE = 0;\n */\n GeneratedCodeInfo_Annotation_Semantic[GeneratedCodeInfo_Annotation_Semantic[\"NONE\"] = 0] = \"NONE\";\n /**\n * The element is set or otherwise mutated.\n *\n * @generated from enum value: SET = 1;\n */\n GeneratedCodeInfo_Annotation_Semantic[GeneratedCodeInfo_Annotation_Semantic[\"SET\"] = 1] = \"SET\";\n /**\n * An alias to the element is returned.\n *\n * @generated from enum value: ALIAS = 2;\n */\n GeneratedCodeInfo_Annotation_Semantic[GeneratedCodeInfo_Annotation_Semantic[\"ALIAS\"] = 2] = \"ALIAS\";\n})(GeneratedCodeInfo_Annotation_Semantic || (exports.GeneratedCodeInfo_Annotation_Semantic = GeneratedCodeInfo_Annotation_Semantic = {}));\n/**\n * Describes the enum google.protobuf.GeneratedCodeInfo.Annotation.Semantic.\n */\nexports.GeneratedCodeInfo_Annotation_SemanticSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 22, 0, 0);\n/**\n * The full set of known editions.\n *\n * @generated from enum google.protobuf.Edition\n */\nvar Edition;\n(function (Edition) {\n /**\n * A placeholder for an unknown edition value.\n *\n * @generated from enum value: EDITION_UNKNOWN = 0;\n */\n Edition[Edition[\"EDITION_UNKNOWN\"] = 0] = \"EDITION_UNKNOWN\";\n /**\n * A placeholder edition for specifying default behaviors *before* a feature\n * was first introduced. This is effectively an \"infinite past\".\n *\n * @generated from enum value: EDITION_LEGACY = 900;\n */\n Edition[Edition[\"EDITION_LEGACY\"] = 900] = \"EDITION_LEGACY\";\n /**\n * Legacy syntax \"editions\". These pre-date editions, but behave much like\n * distinct editions. These can't be used to specify the edition of proto\n * files, but feature definitions must supply proto2/proto3 defaults for\n * backwards compatibility.\n *\n * @generated from enum value: EDITION_PROTO2 = 998;\n */\n Edition[Edition[\"EDITION_PROTO2\"] = 998] = \"EDITION_PROTO2\";\n /**\n * @generated from enum value: EDITION_PROTO3 = 999;\n */\n Edition[Edition[\"EDITION_PROTO3\"] = 999] = \"EDITION_PROTO3\";\n /**\n * Editions that have been released. The specific values are arbitrary and\n * should not be depended on, but they will always be time-ordered for easy\n * comparison.\n *\n * @generated from enum value: EDITION_2023 = 1000;\n */\n Edition[Edition[\"EDITION_2023\"] = 1000] = \"EDITION_2023\";\n /**\n * @generated from enum value: EDITION_2024 = 1001;\n */\n Edition[Edition[\"EDITION_2024\"] = 1001] = \"EDITION_2024\";\n /**\n * Placeholder editions for testing feature resolution. These should not be\n * used or relyed on outside of tests.\n *\n * @generated from enum value: EDITION_1_TEST_ONLY = 1;\n */\n Edition[Edition[\"EDITION_1_TEST_ONLY\"] = 1] = \"EDITION_1_TEST_ONLY\";\n /**\n * @generated from enum value: EDITION_2_TEST_ONLY = 2;\n */\n Edition[Edition[\"EDITION_2_TEST_ONLY\"] = 2] = \"EDITION_2_TEST_ONLY\";\n /**\n * @generated from enum value: EDITION_99997_TEST_ONLY = 99997;\n */\n Edition[Edition[\"EDITION_99997_TEST_ONLY\"] = 99997] = \"EDITION_99997_TEST_ONLY\";\n /**\n * @generated from enum value: EDITION_99998_TEST_ONLY = 99998;\n */\n Edition[Edition[\"EDITION_99998_TEST_ONLY\"] = 99998] = \"EDITION_99998_TEST_ONLY\";\n /**\n * @generated from enum value: EDITION_99999_TEST_ONLY = 99999;\n */\n Edition[Edition[\"EDITION_99999_TEST_ONLY\"] = 99999] = \"EDITION_99999_TEST_ONLY\";\n /**\n * Placeholder for specifying unbounded edition support. This should only\n * ever be used by plugins that can expect to never require any changes to\n * support a new edition.\n *\n * @generated from enum value: EDITION_MAX = 2147483647;\n */\n Edition[Edition[\"EDITION_MAX\"] = 2147483647] = \"EDITION_MAX\";\n})(Edition || (exports.Edition = Edition = {}));\n/**\n * Describes the enum google.protobuf.Edition.\n */\nexports.EditionSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_descriptor, 0);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/descriptor_pb.js?");
580
-
581
- /***/ }),
582
-
583
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/duration_pb.js":
584
- /*!*************************************************************************************************************************************!*\
585
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/duration_pb.js ***!
586
- \*************************************************************************************************************************************/
587
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
588
-
589
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.DurationSchema = exports.file_google_protobuf_duration = void 0;\nconst file_js_1 = __webpack_require__(/*! ../../../../codegenv1/file.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js\");\nconst message_js_1 = __webpack_require__(/*! ../../../../codegenv1/message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js\");\n/**\n * Describes the file google/protobuf/duration.proto.\n */\nexports.file_google_protobuf_duration = (0, file_js_1.fileDesc)(\"Ch5nb29nbGUvcHJvdG9idWYvZHVyYXRpb24ucHJvdG8SD2dvb2dsZS5wcm90b2J1ZiIqCghEdXJhdGlvbhIPCgdzZWNvbmRzGAEgASgDEg0KBW5hbm9zGAIgASgFQoMBChNjb20uZ29vZ2xlLnByb3RvYnVmQg1EdXJhdGlvblByb3RvUAFaMWdvb2dsZS5nb2xhbmcub3JnL3Byb3RvYnVmL3R5cGVzL2tub3duL2R1cmF0aW9ucGL4AQGiAgNHUEKqAh5Hb29nbGUuUHJvdG9idWYuV2VsbEtub3duVHlwZXNiBnByb3RvMw\");\n/**\n * Describes the message google.protobuf.Duration.\n * Use `create(DurationSchema)` to create a new message.\n */\nexports.DurationSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_duration, 0);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/duration_pb.js?");
590
-
591
- /***/ }),
592
-
593
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/empty_pb.js":
594
- /*!**********************************************************************************************************************************!*\
595
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/empty_pb.js ***!
596
- \**********************************************************************************************************************************/
597
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
357
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
598
358
 
599
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.EmptySchema = exports.file_google_protobuf_empty = void 0;\nconst file_js_1 = __webpack_require__(/*! ../../../../codegenv1/file.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js\");\nconst message_js_1 = __webpack_require__(/*! ../../../../codegenv1/message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js\");\n/**\n * Describes the file google/protobuf/empty.proto.\n */\nexports.file_google_protobuf_empty = (0, file_js_1.fileDesc)(\"Chtnb29nbGUvcHJvdG9idWYvZW1wdHkucHJvdG8SD2dvb2dsZS5wcm90b2J1ZiIHCgVFbXB0eUJ9ChNjb20uZ29vZ2xlLnByb3RvYnVmQgpFbXB0eVByb3RvUAFaLmdvb2dsZS5nb2xhbmcub3JnL3Byb3RvYnVmL3R5cGVzL2tub3duL2VtcHR5cGL4AQGiAgNHUEKqAh5Hb29nbGUuUHJvdG9idWYuV2VsbEtub3duVHlwZXNiBnByb3RvMw\");\n/**\n * Describes the message google.protobuf.Empty.\n * Use `create(EmptySchema)` to create a new message.\n */\nexports.EmptySchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_empty, 0);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/empty_pb.js?");
359
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ int64FromString: () => (/* binding */ int64FromString),\n/* harmony export */ int64ToString: () => (/* binding */ int64ToString),\n/* harmony export */ uInt64ToString: () => (/* binding */ uInt64ToString),\n/* harmony export */ varint32read: () => (/* binding */ varint32read),\n/* harmony export */ varint32write: () => (/* binding */ varint32write),\n/* harmony export */ varint64read: () => (/* binding */ varint64read),\n/* harmony export */ varint64write: () => (/* binding */ varint64write)\n/* harmony export */ });\n// Copyright 2008 Google Inc. All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n// * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n// * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n// * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n//\n// Code generated by the Protocol Buffer compiler is owned by the owner\n// of the input file used when generating it. This code is not\n// standalone and requires a support library to be linked with it. This\n// support library is itself covered by the above license.\n/* eslint-disable prefer-const,@typescript-eslint/restrict-plus-operands */\n/**\n * Read a 64 bit varint as two JS numbers.\n *\n * Returns tuple:\n * [0]: low bits\n * [1]: high bits\n *\n * Copyright 2008 Google Inc. All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf/blob/8a71927d74a4ce34efe2d8769fda198f52d20d12/js/experimental/runtime/kernel/buffer_decoder.js#L175\n */\nfunction varint64read() {\n let lowBits = 0;\n let highBits = 0;\n for (let shift = 0; shift < 28; shift += 7) {\n let b = this.buf[this.pos++];\n lowBits |= (b & 0x7f) << shift;\n if ((b & 0x80) == 0) {\n this.assertBounds();\n return [lowBits, highBits];\n }\n }\n let middleByte = this.buf[this.pos++];\n // last four bits of the first 32 bit number\n lowBits |= (middleByte & 0x0f) << 28;\n // 3 upper bits are part of the next 32 bit number\n highBits = (middleByte & 0x70) >> 4;\n if ((middleByte & 0x80) == 0) {\n this.assertBounds();\n return [lowBits, highBits];\n }\n for (let shift = 3; shift <= 31; shift += 7) {\n let b = this.buf[this.pos++];\n highBits |= (b & 0x7f) << shift;\n if ((b & 0x80) == 0) {\n this.assertBounds();\n return [lowBits, highBits];\n }\n }\n throw new Error(\"invalid varint\");\n}\n/**\n * Write a 64 bit varint, given as two JS numbers, to the given bytes array.\n *\n * Copyright 2008 Google Inc. All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf/blob/8a71927d74a4ce34efe2d8769fda198f52d20d12/js/experimental/runtime/kernel/writer.js#L344\n */\nfunction varint64write(lo, hi, bytes) {\n for (let i = 0; i < 28; i = i + 7) {\n const shift = lo >>> i;\n const hasNext = !(shift >>> 7 == 0 && hi == 0);\n const byte = (hasNext ? shift | 0x80 : shift) & 0xff;\n bytes.push(byte);\n if (!hasNext) {\n return;\n }\n }\n const splitBits = ((lo >>> 28) & 0x0f) | ((hi & 0x07) << 4);\n const hasMoreBits = !(hi >> 3 == 0);\n bytes.push((hasMoreBits ? splitBits | 0x80 : splitBits) & 0xff);\n if (!hasMoreBits) {\n return;\n }\n for (let i = 3; i < 31; i = i + 7) {\n const shift = hi >>> i;\n const hasNext = !(shift >>> 7 == 0);\n const byte = (hasNext ? shift | 0x80 : shift) & 0xff;\n bytes.push(byte);\n if (!hasNext) {\n return;\n }\n }\n bytes.push((hi >>> 31) & 0x01);\n}\n// constants for binary math\nconst TWO_PWR_32_DBL = 0x100000000;\n/**\n * Parse decimal string of 64 bit integer value as two JS numbers.\n *\n * Copyright 2008 Google Inc. All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf-javascript/blob/a428c58273abad07c66071d9753bc4d1289de426/experimental/runtime/int64.js#L10\n */\nfunction int64FromString(dec) {\n // Check for minus sign.\n const minus = dec[0] === \"-\";\n if (minus) {\n dec = dec.slice(1);\n }\n // Work 6 decimal digits at a time, acting like we're converting base 1e6\n // digits to binary. This is safe to do with floating point math because\n // Number.isSafeInteger(ALL_32_BITS * 1e6) == true.\n const base = 1e6;\n let lowBits = 0;\n let highBits = 0;\n function add1e6digit(begin, end) {\n // Note: Number('') is 0.\n const digit1e6 = Number(dec.slice(begin, end));\n highBits *= base;\n lowBits = lowBits * base + digit1e6;\n // Carry bits from lowBits to\n if (lowBits >= TWO_PWR_32_DBL) {\n highBits = highBits + ((lowBits / TWO_PWR_32_DBL) | 0);\n lowBits = lowBits % TWO_PWR_32_DBL;\n }\n }\n add1e6digit(-24, -18);\n add1e6digit(-18, -12);\n add1e6digit(-12, -6);\n add1e6digit(-6);\n return minus ? negate(lowBits, highBits) : newBits(lowBits, highBits);\n}\n/**\n * Losslessly converts a 64-bit signed integer in 32:32 split representation\n * into a decimal string.\n *\n * Copyright 2008 Google Inc. All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf-javascript/blob/a428c58273abad07c66071d9753bc4d1289de426/experimental/runtime/int64.js#L10\n */\nfunction int64ToString(lo, hi) {\n let bits = newBits(lo, hi);\n // If we're treating the input as a signed value and the high bit is set, do\n // a manual two's complement conversion before the decimal conversion.\n const negative = bits.hi & 0x80000000;\n if (negative) {\n bits = negate(bits.lo, bits.hi);\n }\n const result = uInt64ToString(bits.lo, bits.hi);\n return negative ? \"-\" + result : result;\n}\n/**\n * Losslessly converts a 64-bit unsigned integer in 32:32 split representation\n * into a decimal string.\n *\n * Copyright 2008 Google Inc. All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf-javascript/blob/a428c58273abad07c66071d9753bc4d1289de426/experimental/runtime/int64.js#L10\n */\nfunction uInt64ToString(lo, hi) {\n ({ lo, hi } = toUnsigned(lo, hi));\n // Skip the expensive conversion if the number is small enough to use the\n // built-in conversions.\n // Number.MAX_SAFE_INTEGER = 0x001FFFFF FFFFFFFF, thus any number with\n // highBits <= 0x1FFFFF can be safely expressed with a double and retain\n // integer precision.\n // Proven by: Number.isSafeInteger(0x1FFFFF * 2**32 + 0xFFFFFFFF) == true.\n if (hi <= 0x1fffff) {\n return String(TWO_PWR_32_DBL * hi + lo);\n }\n // What this code is doing is essentially converting the input number from\n // base-2 to base-1e7, which allows us to represent the 64-bit range with\n // only 3 (very large) digits. Those digits are then trivial to convert to\n // a base-10 string.\n // The magic numbers used here are -\n // 2^24 = 16777216 = (1,6777216) in base-1e7.\n // 2^48 = 281474976710656 = (2,8147497,6710656) in base-1e7.\n // Split 32:32 representation into 16:24:24 representation so our\n // intermediate digits don't overflow.\n const low = lo & 0xffffff;\n const mid = ((lo >>> 24) | (hi << 8)) & 0xffffff;\n const high = (hi >> 16) & 0xffff;\n // Assemble our three base-1e7 digits, ignoring carries. The maximum\n // value in a digit at this step is representable as a 48-bit integer, which\n // can be stored in a 64-bit floating point number.\n let digitA = low + mid * 6777216 + high * 6710656;\n let digitB = mid + high * 8147497;\n let digitC = high * 2;\n // Apply carries from A to B and from B to C.\n const base = 10000000;\n if (digitA >= base) {\n digitB += Math.floor(digitA / base);\n digitA %= base;\n }\n if (digitB >= base) {\n digitC += Math.floor(digitB / base);\n digitB %= base;\n }\n // If digitC is 0, then we should have returned in the trivial code path\n // at the top for non-safe integers. Given this, we can assume both digitB\n // and digitA need leading zeros.\n return (digitC.toString() +\n decimalFrom1e7WithLeadingZeros(digitB) +\n decimalFrom1e7WithLeadingZeros(digitA));\n}\nfunction toUnsigned(lo, hi) {\n return { lo: lo >>> 0, hi: hi >>> 0 };\n}\nfunction newBits(lo, hi) {\n return { lo: lo | 0, hi: hi | 0 };\n}\n/**\n * Returns two's compliment negation of input.\n * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators#Signed_32-bit_integers\n */\nfunction negate(lowBits, highBits) {\n highBits = ~highBits;\n if (lowBits) {\n lowBits = ~lowBits + 1;\n }\n else {\n // If lowBits is 0, then bitwise-not is 0xFFFFFFFF,\n // adding 1 to that, results in 0x100000000, which leaves\n // the low bits 0x0 and simply adds one to the high bits.\n highBits += 1;\n }\n return newBits(lowBits, highBits);\n}\n/**\n * Returns decimal representation of digit1e7 with leading zeros.\n */\nconst decimalFrom1e7WithLeadingZeros = (digit1e7) => {\n const partial = String(digit1e7);\n return \"0000000\".slice(partial.length) + partial;\n};\n/**\n * Write a 32 bit varint, signed or unsigned. Same as `varint64write(0, value, bytes)`\n *\n * Copyright 2008 Google Inc. All rights reserved.\n *\n * See https://github.com/protocolbuffers/protobuf/blob/1b18833f4f2a2f681f4e4a25cdf3b0a43115ec26/js/binary/encoder.js#L144\n */\nfunction varint32write(value, bytes) {\n if (value >= 0) {\n // write value as varint 32\n while (value > 0x7f) {\n bytes.push((value & 0x7f) | 0x80);\n value = value >>> 7;\n }\n bytes.push(value);\n }\n else {\n for (let i = 0; i < 9; i++) {\n bytes.push((value & 127) | 128);\n value = value >> 7;\n }\n bytes.push(1);\n }\n}\n/**\n * Read an unsigned 32 bit varint.\n *\n * See https://github.com/protocolbuffers/protobuf/blob/8a71927d74a4ce34efe2d8769fda198f52d20d12/js/experimental/runtime/kernel/buffer_decoder.js#L220\n */\nfunction varint32read() {\n let b = this.buf[this.pos++];\n let result = b & 0x7f;\n if ((b & 0x80) == 0) {\n this.assertBounds();\n return result;\n }\n b = this.buf[this.pos++];\n result |= (b & 0x7f) << 7;\n if ((b & 0x80) == 0) {\n this.assertBounds();\n return result;\n }\n b = this.buf[this.pos++];\n result |= (b & 0x7f) << 14;\n if ((b & 0x80) == 0) {\n this.assertBounds();\n return result;\n }\n b = this.buf[this.pos++];\n result |= (b & 0x7f) << 21;\n if ((b & 0x80) == 0) {\n this.assertBounds();\n return result;\n }\n // Extract only last 4 bits\n b = this.buf[this.pos++];\n result |= (b & 0x0f) << 28;\n for (let readBytes = 5; (b & 0x80) !== 0 && readBytes < 10; readBytes++)\n b = this.buf[this.pos++];\n if ((b & 0x80) != 0)\n throw new Error(\"invalid varint\");\n this.assertBounds();\n // Result can have 32 bits, convert it to unsigned\n return result >>> 0;\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wire/varint.js?");
600
360
 
601
361
  /***/ }),
602
362
 
603
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/field_mask_pb.js":
363
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/descriptor_pb.js":
604
364
  /*!***************************************************************************************************************************************!*\
605
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/field_mask_pb.js ***!
365
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/descriptor_pb.js ***!
606
366
  \***************************************************************************************************************************************/
607
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
608
-
609
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.FieldMaskSchema = exports.file_google_protobuf_field_mask = void 0;\nconst file_js_1 = __webpack_require__(/*! ../../../../codegenv1/file.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js\");\nconst message_js_1 = __webpack_require__(/*! ../../../../codegenv1/message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js\");\n/**\n * Describes the file google/protobuf/field_mask.proto.\n */\nexports.file_google_protobuf_field_mask = (0, file_js_1.fileDesc)(\"CiBnb29nbGUvcHJvdG9idWYvZmllbGRfbWFzay5wcm90bxIPZ29vZ2xlLnByb3RvYnVmIhoKCUZpZWxkTWFzaxINCgVwYXRocxgBIAMoCUKFAQoTY29tLmdvb2dsZS5wcm90b2J1ZkIORmllbGRNYXNrUHJvdG9QAVoyZ29vZ2xlLmdvbGFuZy5vcmcvcHJvdG9idWYvdHlwZXMva25vd24vZmllbGRtYXNrcGL4AQGiAgNHUEKqAh5Hb29nbGUuUHJvdG9idWYuV2VsbEtub3duVHlwZXNiBnByb3RvMw\");\n/**\n * Describes the message google.protobuf.FieldMask.\n * Use `create(FieldMaskSchema)` to create a new message.\n */\nexports.FieldMaskSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_field_mask, 0);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/field_mask_pb.js?");
610
-
611
- /***/ }),
612
-
613
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/source_context_pb.js":
614
- /*!*******************************************************************************************************************************************!*\
615
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/source_context_pb.js ***!
616
- \*******************************************************************************************************************************************/
617
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
618
-
619
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.SourceContextSchema = exports.file_google_protobuf_source_context = void 0;\nconst file_js_1 = __webpack_require__(/*! ../../../../codegenv1/file.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js\");\nconst message_js_1 = __webpack_require__(/*! ../../../../codegenv1/message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js\");\n/**\n * Describes the file google/protobuf/source_context.proto.\n */\nexports.file_google_protobuf_source_context = (0, file_js_1.fileDesc)(\"CiRnb29nbGUvcHJvdG9idWYvc291cmNlX2NvbnRleHQucHJvdG8SD2dvb2dsZS5wcm90b2J1ZiIiCg1Tb3VyY2VDb250ZXh0EhEKCWZpbGVfbmFtZRgBIAEoCUKKAQoTY29tLmdvb2dsZS5wcm90b2J1ZkISU291cmNlQ29udGV4dFByb3RvUAFaNmdvb2dsZS5nb2xhbmcub3JnL3Byb3RvYnVmL3R5cGVzL2tub3duL3NvdXJjZWNvbnRleHRwYqICA0dQQqoCHkdvb2dsZS5Qcm90b2J1Zi5XZWxsS25vd25UeXBlc2IGcHJvdG8z\");\n/**\n * Describes the message google.protobuf.SourceContext.\n * Use `create(SourceContextSchema)` to create a new message.\n */\nexports.SourceContextSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_source_context, 0);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/source_context_pb.js?");
620
-
621
- /***/ }),
622
-
623
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/struct_pb.js":
624
- /*!***********************************************************************************************************************************!*\
625
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/struct_pb.js ***!
626
- \***********************************************************************************************************************************/
627
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
628
-
629
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.NullValueSchema = exports.NullValue = exports.ListValueSchema = exports.ValueSchema = exports.StructSchema = exports.file_google_protobuf_struct = void 0;\nconst file_js_1 = __webpack_require__(/*! ../../../../codegenv1/file.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js\");\nconst message_js_1 = __webpack_require__(/*! ../../../../codegenv1/message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js\");\nconst enum_js_1 = __webpack_require__(/*! ../../../../codegenv1/enum.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/enum.js\");\n/**\n * Describes the file google/protobuf/struct.proto.\n */\nexports.file_google_protobuf_struct = (0, file_js_1.fileDesc)(\"Chxnb29nbGUvcHJvdG9idWYvc3RydWN0LnByb3RvEg9nb29nbGUucHJvdG9idWYihAEKBlN0cnVjdBIzCgZmaWVsZHMYASADKAsyIy5nb29nbGUucHJvdG9idWYuU3RydWN0LkZpZWxkc0VudHJ5GkUKC0ZpZWxkc0VudHJ5EgsKA2tleRgBIAEoCRIlCgV2YWx1ZRgCIAEoCzIWLmdvb2dsZS5wcm90b2J1Zi5WYWx1ZToCOAEi6gEKBVZhbHVlEjAKCm51bGxfdmFsdWUYASABKA4yGi5nb29nbGUucHJvdG9idWYuTnVsbFZhbHVlSAASFgoMbnVtYmVyX3ZhbHVlGAIgASgBSAASFgoMc3RyaW5nX3ZhbHVlGAMgASgJSAASFAoKYm9vbF92YWx1ZRgEIAEoCEgAEi8KDHN0cnVjdF92YWx1ZRgFIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3RIABIwCgpsaXN0X3ZhbHVlGAYgASgLMhouZ29vZ2xlLnByb3RvYnVmLkxpc3RWYWx1ZUgAQgYKBGtpbmQiMwoJTGlzdFZhbHVlEiYKBnZhbHVlcxgBIAMoCzIWLmdvb2dsZS5wcm90b2J1Zi5WYWx1ZSobCglOdWxsVmFsdWUSDgoKTlVMTF9WQUxVRRAAQn8KE2NvbS5nb29nbGUucHJvdG9idWZCC1N0cnVjdFByb3RvUAFaL2dvb2dsZS5nb2xhbmcub3JnL3Byb3RvYnVmL3R5cGVzL2tub3duL3N0cnVjdHBi+AEBogIDR1BCqgIeR29vZ2xlLlByb3RvYnVmLldlbGxLbm93blR5cGVzYgZwcm90bzM\");\n/**\n * Describes the message google.protobuf.Struct.\n * Use `create(StructSchema)` to create a new message.\n */\nexports.StructSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_struct, 0);\n/**\n * Describes the message google.protobuf.Value.\n * Use `create(ValueSchema)` to create a new message.\n */\nexports.ValueSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_struct, 1);\n/**\n * Describes the message google.protobuf.ListValue.\n * Use `create(ListValueSchema)` to create a new message.\n */\nexports.ListValueSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_struct, 2);\n/**\n * `NullValue` is a singleton enumeration to represent the null value for the\n * `Value` type union.\n *\n * The JSON representation for `NullValue` is JSON `null`.\n *\n * @generated from enum google.protobuf.NullValue\n */\nvar NullValue;\n(function (NullValue) {\n /**\n * Null value.\n *\n * @generated from enum value: NULL_VALUE = 0;\n */\n NullValue[NullValue[\"NULL_VALUE\"] = 0] = \"NULL_VALUE\";\n})(NullValue || (exports.NullValue = NullValue = {}));\n/**\n * Describes the enum google.protobuf.NullValue.\n */\nexports.NullValueSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_struct, 0);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/struct_pb.js?");
630
-
631
- /***/ }),
632
-
633
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/timestamp_pb.js":
634
- /*!**************************************************************************************************************************************!*\
635
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/timestamp_pb.js ***!
636
- \**************************************************************************************************************************************/
637
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
638
-
639
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.TimestampSchema = exports.file_google_protobuf_timestamp = void 0;\nconst file_js_1 = __webpack_require__(/*! ../../../../codegenv1/file.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js\");\nconst message_js_1 = __webpack_require__(/*! ../../../../codegenv1/message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js\");\n/**\n * Describes the file google/protobuf/timestamp.proto.\n */\nexports.file_google_protobuf_timestamp = (0, file_js_1.fileDesc)(\"Ch9nb29nbGUvcHJvdG9idWYvdGltZXN0YW1wLnByb3RvEg9nb29nbGUucHJvdG9idWYiKwoJVGltZXN0YW1wEg8KB3NlY29uZHMYASABKAMSDQoFbmFub3MYAiABKAVChQEKE2NvbS5nb29nbGUucHJvdG9idWZCDlRpbWVzdGFtcFByb3RvUAFaMmdvb2dsZS5nb2xhbmcub3JnL3Byb3RvYnVmL3R5cGVzL2tub3duL3RpbWVzdGFtcHBi+AEBogIDR1BCqgIeR29vZ2xlLlByb3RvYnVmLldlbGxLbm93blR5cGVzYgZwcm90bzM\");\n/**\n * Describes the message google.protobuf.Timestamp.\n * Use `create(TimestampSchema)` to create a new message.\n */\nexports.TimestampSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_timestamp, 0);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/timestamp_pb.js?");
640
-
641
- /***/ }),
642
-
643
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/type_pb.js":
644
- /*!*********************************************************************************************************************************!*\
645
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/type_pb.js ***!
646
- \*********************************************************************************************************************************/
647
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
648
-
649
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.SyntaxSchema = exports.Syntax = exports.OptionSchema = exports.EnumValueSchema = exports.EnumSchema = exports.Field_CardinalitySchema = exports.Field_Cardinality = exports.Field_KindSchema = exports.Field_Kind = exports.FieldSchema = exports.TypeSchema = exports.file_google_protobuf_type = void 0;\nconst file_js_1 = __webpack_require__(/*! ../../../../codegenv1/file.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js\");\nconst any_pb_js_1 = __webpack_require__(/*! ./any_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/any_pb.js\");\nconst source_context_pb_js_1 = __webpack_require__(/*! ./source_context_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/source_context_pb.js\");\nconst message_js_1 = __webpack_require__(/*! ../../../../codegenv1/message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js\");\nconst enum_js_1 = __webpack_require__(/*! ../../../../codegenv1/enum.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/enum.js\");\n/**\n * Describes the file google/protobuf/type.proto.\n */\nexports.file_google_protobuf_type = (0, file_js_1.fileDesc)(\"Chpnb29nbGUvcHJvdG9idWYvdHlwZS5wcm90bxIPZ29vZ2xlLnByb3RvYnVmIugBCgRUeXBlEgwKBG5hbWUYASABKAkSJgoGZmllbGRzGAIgAygLMhYuZ29vZ2xlLnByb3RvYnVmLkZpZWxkEg4KBm9uZW9mcxgDIAMoCRIoCgdvcHRpb25zGAQgAygLMhcuZ29vZ2xlLnByb3RvYnVmLk9wdGlvbhI2Cg5zb3VyY2VfY29udGV4dBgFIAEoCzIeLmdvb2dsZS5wcm90b2J1Zi5Tb3VyY2VDb250ZXh0EicKBnN5bnRheBgGIAEoDjIXLmdvb2dsZS5wcm90b2J1Zi5TeW50YXgSDwoHZWRpdGlvbhgHIAEoCSLVBQoFRmllbGQSKQoEa2luZBgBIAEoDjIbLmdvb2dsZS5wcm90b2J1Zi5GaWVsZC5LaW5kEjcKC2NhcmRpbmFsaXR5GAIgASgOMiIuZ29vZ2xlLnByb3RvYnVmLkZpZWxkLkNhcmRpbmFsaXR5Eg4KBm51bWJlchgDIAEoBRIMCgRuYW1lGAQgASgJEhAKCHR5cGVfdXJsGAYgASgJEhMKC29uZW9mX2luZGV4GAcgASgFEg4KBnBhY2tlZBgIIAEoCBIoCgdvcHRpb25zGAkgAygLMhcuZ29vZ2xlLnByb3RvYnVmLk9wdGlvbhIRCglqc29uX25hbWUYCiABKAkSFQoNZGVmYXVsdF92YWx1ZRgLIAEoCSLIAgoES2luZBIQCgxUWVBFX1VOS05PV04QABIPCgtUWVBFX0RPVUJMRRABEg4KClRZUEVfRkxPQVQQAhIOCgpUWVBFX0lOVDY0EAMSDwoLVFlQRV9VSU5UNjQQBBIOCgpUWVBFX0lOVDMyEAUSEAoMVFlQRV9GSVhFRDY0EAYSEAoMVFlQRV9GSVhFRDMyEAcSDQoJVFlQRV9CT09MEAgSDwoLVFlQRV9TVFJJTkcQCRIOCgpUWVBFX0dST1VQEAoSEAoMVFlQRV9NRVNTQUdFEAsSDgoKVFlQRV9CWVRFUxAMEg8KC1RZUEVfVUlOVDMyEA0SDQoJVFlQRV9FTlVNEA4SEQoNVFlQRV9TRklYRUQzMhAPEhEKDVRZUEVfU0ZJWEVENjQQEBIPCgtUWVBFX1NJTlQzMhAREg8KC1RZUEVfU0lOVDY0EBIidAoLQ2FyZGluYWxpdHkSFwoTQ0FSRElOQUxJVFlfVU5LTk9XThAAEhgKFENBUkRJTkFMSVRZX09QVElPTkFMEAESGAoUQ0FSRElOQUxJVFlfUkVRVUlSRUQQAhIYChRDQVJESU5BTElUWV9SRVBFQVRFRBADIt8BCgRFbnVtEgwKBG5hbWUYASABKAkSLQoJZW51bXZhbHVlGAIgAygLMhouZ29vZ2xlLnByb3RvYnVmLkVudW1WYWx1ZRIoCgdvcHRpb25zGAMgAygLMhcuZ29vZ2xlLnByb3RvYnVmLk9wdGlvbhI2Cg5zb3VyY2VfY29udGV4dBgEIAEoCzIeLmdvb2dsZS5wcm90b2J1Zi5Tb3VyY2VDb250ZXh0EicKBnN5bnRheBgFIAEoDjIXLmdvb2dsZS5wcm90b2J1Zi5TeW50YXgSDwoHZWRpdGlvbhgGIAEoCSJTCglFbnVtVmFsdWUSDAoEbmFtZRgBIAEoCRIOCgZudW1iZXIYAiABKAUSKAoHb3B0aW9ucxgDIAMoCzIXLmdvb2dsZS5wcm90b2J1Zi5PcHRpb24iOwoGT3B0aW9uEgwKBG5hbWUYASABKAkSIwoFdmFsdWUYAiABKAsyFC5nb29nbGUucHJvdG9idWYuQW55KkMKBlN5bnRheBIRCg1TWU5UQVhfUFJPVE8yEAASEQoNU1lOVEFYX1BST1RPMxABEhMKD1NZTlRBWF9FRElUSU9OUxACQnsKE2NvbS5nb29nbGUucHJvdG9idWZCCVR5cGVQcm90b1ABWi1nb29nbGUuZ29sYW5nLm9yZy9wcm90b2J1Zi90eXBlcy9rbm93bi90eXBlcGL4AQGiAgNHUEKqAh5Hb29nbGUuUHJvdG9idWYuV2VsbEtub3duVHlwZXNiBnByb3RvMw\", [any_pb_js_1.file_google_protobuf_any, source_context_pb_js_1.file_google_protobuf_source_context]);\n/**\n * Describes the message google.protobuf.Type.\n * Use `create(TypeSchema)` to create a new message.\n */\nexports.TypeSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_type, 0);\n/**\n * Describes the message google.protobuf.Field.\n * Use `create(FieldSchema)` to create a new message.\n */\nexports.FieldSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_type, 1);\n/**\n * Basic field types.\n *\n * @generated from enum google.protobuf.Field.Kind\n */\nvar Field_Kind;\n(function (Field_Kind) {\n /**\n * Field type unknown.\n *\n * @generated from enum value: TYPE_UNKNOWN = 0;\n */\n Field_Kind[Field_Kind[\"TYPE_UNKNOWN\"] = 0] = \"TYPE_UNKNOWN\";\n /**\n * Field type double.\n *\n * @generated from enum value: TYPE_DOUBLE = 1;\n */\n Field_Kind[Field_Kind[\"TYPE_DOUBLE\"] = 1] = \"TYPE_DOUBLE\";\n /**\n * Field type float.\n *\n * @generated from enum value: TYPE_FLOAT = 2;\n */\n Field_Kind[Field_Kind[\"TYPE_FLOAT\"] = 2] = \"TYPE_FLOAT\";\n /**\n * Field type int64.\n *\n * @generated from enum value: TYPE_INT64 = 3;\n */\n Field_Kind[Field_Kind[\"TYPE_INT64\"] = 3] = \"TYPE_INT64\";\n /**\n * Field type uint64.\n *\n * @generated from enum value: TYPE_UINT64 = 4;\n */\n Field_Kind[Field_Kind[\"TYPE_UINT64\"] = 4] = \"TYPE_UINT64\";\n /**\n * Field type int32.\n *\n * @generated from enum value: TYPE_INT32 = 5;\n */\n Field_Kind[Field_Kind[\"TYPE_INT32\"] = 5] = \"TYPE_INT32\";\n /**\n * Field type fixed64.\n *\n * @generated from enum value: TYPE_FIXED64 = 6;\n */\n Field_Kind[Field_Kind[\"TYPE_FIXED64\"] = 6] = \"TYPE_FIXED64\";\n /**\n * Field type fixed32.\n *\n * @generated from enum value: TYPE_FIXED32 = 7;\n */\n Field_Kind[Field_Kind[\"TYPE_FIXED32\"] = 7] = \"TYPE_FIXED32\";\n /**\n * Field type bool.\n *\n * @generated from enum value: TYPE_BOOL = 8;\n */\n Field_Kind[Field_Kind[\"TYPE_BOOL\"] = 8] = \"TYPE_BOOL\";\n /**\n * Field type string.\n *\n * @generated from enum value: TYPE_STRING = 9;\n */\n Field_Kind[Field_Kind[\"TYPE_STRING\"] = 9] = \"TYPE_STRING\";\n /**\n * Field type group. Proto2 syntax only, and deprecated.\n *\n * @generated from enum value: TYPE_GROUP = 10;\n */\n Field_Kind[Field_Kind[\"TYPE_GROUP\"] = 10] = \"TYPE_GROUP\";\n /**\n * Field type message.\n *\n * @generated from enum value: TYPE_MESSAGE = 11;\n */\n Field_Kind[Field_Kind[\"TYPE_MESSAGE\"] = 11] = \"TYPE_MESSAGE\";\n /**\n * Field type bytes.\n *\n * @generated from enum value: TYPE_BYTES = 12;\n */\n Field_Kind[Field_Kind[\"TYPE_BYTES\"] = 12] = \"TYPE_BYTES\";\n /**\n * Field type uint32.\n *\n * @generated from enum value: TYPE_UINT32 = 13;\n */\n Field_Kind[Field_Kind[\"TYPE_UINT32\"] = 13] = \"TYPE_UINT32\";\n /**\n * Field type enum.\n *\n * @generated from enum value: TYPE_ENUM = 14;\n */\n Field_Kind[Field_Kind[\"TYPE_ENUM\"] = 14] = \"TYPE_ENUM\";\n /**\n * Field type sfixed32.\n *\n * @generated from enum value: TYPE_SFIXED32 = 15;\n */\n Field_Kind[Field_Kind[\"TYPE_SFIXED32\"] = 15] = \"TYPE_SFIXED32\";\n /**\n * Field type sfixed64.\n *\n * @generated from enum value: TYPE_SFIXED64 = 16;\n */\n Field_Kind[Field_Kind[\"TYPE_SFIXED64\"] = 16] = \"TYPE_SFIXED64\";\n /**\n * Field type sint32.\n *\n * @generated from enum value: TYPE_SINT32 = 17;\n */\n Field_Kind[Field_Kind[\"TYPE_SINT32\"] = 17] = \"TYPE_SINT32\";\n /**\n * Field type sint64.\n *\n * @generated from enum value: TYPE_SINT64 = 18;\n */\n Field_Kind[Field_Kind[\"TYPE_SINT64\"] = 18] = \"TYPE_SINT64\";\n})(Field_Kind || (exports.Field_Kind = Field_Kind = {}));\n/**\n * Describes the enum google.protobuf.Field.Kind.\n */\nexports.Field_KindSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_type, 1, 0);\n/**\n * Whether a field is optional, required, or repeated.\n *\n * @generated from enum google.protobuf.Field.Cardinality\n */\nvar Field_Cardinality;\n(function (Field_Cardinality) {\n /**\n * For fields with unknown cardinality.\n *\n * @generated from enum value: CARDINALITY_UNKNOWN = 0;\n */\n Field_Cardinality[Field_Cardinality[\"UNKNOWN\"] = 0] = \"UNKNOWN\";\n /**\n * For optional fields.\n *\n * @generated from enum value: CARDINALITY_OPTIONAL = 1;\n */\n Field_Cardinality[Field_Cardinality[\"OPTIONAL\"] = 1] = \"OPTIONAL\";\n /**\n * For required fields. Proto2 syntax only.\n *\n * @generated from enum value: CARDINALITY_REQUIRED = 2;\n */\n Field_Cardinality[Field_Cardinality[\"REQUIRED\"] = 2] = \"REQUIRED\";\n /**\n * For repeated fields.\n *\n * @generated from enum value: CARDINALITY_REPEATED = 3;\n */\n Field_Cardinality[Field_Cardinality[\"REPEATED\"] = 3] = \"REPEATED\";\n})(Field_Cardinality || (exports.Field_Cardinality = Field_Cardinality = {}));\n/**\n * Describes the enum google.protobuf.Field.Cardinality.\n */\nexports.Field_CardinalitySchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_type, 1, 1);\n/**\n * Describes the message google.protobuf.Enum.\n * Use `create(EnumSchema)` to create a new message.\n */\nexports.EnumSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_type, 2);\n/**\n * Describes the message google.protobuf.EnumValue.\n * Use `create(EnumValueSchema)` to create a new message.\n */\nexports.EnumValueSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_type, 3);\n/**\n * Describes the message google.protobuf.Option.\n * Use `create(OptionSchema)` to create a new message.\n */\nexports.OptionSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_type, 4);\n/**\n * The syntax in which a protocol buffer element is defined.\n *\n * @generated from enum google.protobuf.Syntax\n */\nvar Syntax;\n(function (Syntax) {\n /**\n * Syntax `proto2`.\n *\n * @generated from enum value: SYNTAX_PROTO2 = 0;\n */\n Syntax[Syntax[\"PROTO2\"] = 0] = \"PROTO2\";\n /**\n * Syntax `proto3`.\n *\n * @generated from enum value: SYNTAX_PROTO3 = 1;\n */\n Syntax[Syntax[\"PROTO3\"] = 1] = \"PROTO3\";\n /**\n * Syntax `editions`.\n *\n * @generated from enum value: SYNTAX_EDITIONS = 2;\n */\n Syntax[Syntax[\"EDITIONS\"] = 2] = \"EDITIONS\";\n})(Syntax || (exports.Syntax = Syntax = {}));\n/**\n * Describes the enum google.protobuf.Syntax.\n */\nexports.SyntaxSchema = (0, enum_js_1.enumDesc)(exports.file_google_protobuf_type, 0);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/type_pb.js?");
650
-
651
- /***/ }),
652
-
653
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/wrappers_pb.js":
654
- /*!*************************************************************************************************************************************!*\
655
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/wrappers_pb.js ***!
656
- \*************************************************************************************************************************************/
657
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
658
-
659
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.BytesValueSchema = exports.StringValueSchema = exports.BoolValueSchema = exports.UInt32ValueSchema = exports.Int32ValueSchema = exports.UInt64ValueSchema = exports.Int64ValueSchema = exports.FloatValueSchema = exports.DoubleValueSchema = exports.file_google_protobuf_wrappers = void 0;\nconst file_js_1 = __webpack_require__(/*! ../../../../codegenv1/file.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/file.js\");\nconst message_js_1 = __webpack_require__(/*! ../../../../codegenv1/message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/message.js\");\n/**\n * Describes the file google/protobuf/wrappers.proto.\n */\nexports.file_google_protobuf_wrappers = (0, file_js_1.fileDesc)(\"Ch5nb29nbGUvcHJvdG9idWYvd3JhcHBlcnMucHJvdG8SD2dvb2dsZS5wcm90b2J1ZiIcCgtEb3VibGVWYWx1ZRINCgV2YWx1ZRgBIAEoASIbCgpGbG9hdFZhbHVlEg0KBXZhbHVlGAEgASgCIhsKCkludDY0VmFsdWUSDQoFdmFsdWUYASABKAMiHAoLVUludDY0VmFsdWUSDQoFdmFsdWUYASABKAQiGwoKSW50MzJWYWx1ZRINCgV2YWx1ZRgBIAEoBSIcCgtVSW50MzJWYWx1ZRINCgV2YWx1ZRgBIAEoDSIaCglCb29sVmFsdWUSDQoFdmFsdWUYASABKAgiHAoLU3RyaW5nVmFsdWUSDQoFdmFsdWUYASABKAkiGwoKQnl0ZXNWYWx1ZRINCgV2YWx1ZRgBIAEoDEKDAQoTY29tLmdvb2dsZS5wcm90b2J1ZkINV3JhcHBlcnNQcm90b1ABWjFnb29nbGUuZ29sYW5nLm9yZy9wcm90b2J1Zi90eXBlcy9rbm93bi93cmFwcGVyc3Bi+AEBogIDR1BCqgIeR29vZ2xlLlByb3RvYnVmLldlbGxLbm93blR5cGVzYgZwcm90bzM\");\n/**\n * Describes the message google.protobuf.DoubleValue.\n * Use `create(DoubleValueSchema)` to create a new message.\n */\nexports.DoubleValueSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_wrappers, 0);\n/**\n * Describes the message google.protobuf.FloatValue.\n * Use `create(FloatValueSchema)` to create a new message.\n */\nexports.FloatValueSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_wrappers, 1);\n/**\n * Describes the message google.protobuf.Int64Value.\n * Use `create(Int64ValueSchema)` to create a new message.\n */\nexports.Int64ValueSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_wrappers, 2);\n/**\n * Describes the message google.protobuf.UInt64Value.\n * Use `create(UInt64ValueSchema)` to create a new message.\n */\nexports.UInt64ValueSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_wrappers, 3);\n/**\n * Describes the message google.protobuf.Int32Value.\n * Use `create(Int32ValueSchema)` to create a new message.\n */\nexports.Int32ValueSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_wrappers, 4);\n/**\n * Describes the message google.protobuf.UInt32Value.\n * Use `create(UInt32ValueSchema)` to create a new message.\n */\nexports.UInt32ValueSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_wrappers, 5);\n/**\n * Describes the message google.protobuf.BoolValue.\n * Use `create(BoolValueSchema)` to create a new message.\n */\nexports.BoolValueSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_wrappers, 6);\n/**\n * Describes the message google.protobuf.StringValue.\n * Use `create(StringValueSchema)` to create a new message.\n */\nexports.StringValueSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_wrappers, 7);\n/**\n * Describes the message google.protobuf.BytesValue.\n * Use `create(BytesValueSchema)` to create a new message.\n */\nexports.BytesValueSchema = (0, message_js_1.messageDesc)(exports.file_google_protobuf_wrappers, 8);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/wrappers_pb.js?");
660
-
661
- /***/ }),
662
-
663
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/index.js":
664
- /*!***********************************************************************************************************!*\
665
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/index.js ***!
666
- \***********************************************************************************************************/
667
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
668
-
669
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nvar __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n}));\nvar __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n};\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\n__exportStar(__webpack_require__(/*! ./timestamp.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/timestamp.js\"), exports);\n__exportStar(__webpack_require__(/*! ./any.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/any.js\"), exports);\n__exportStar(__webpack_require__(/*! ./wrappers.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/wrappers.js\"), exports);\n__exportStar(__webpack_require__(/*! ./gen/google/protobuf/api_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/api_pb.js\"), exports);\n__exportStar(__webpack_require__(/*! ./gen/google/protobuf/any_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/any_pb.js\"), exports);\n__exportStar(__webpack_require__(/*! ./gen/google/protobuf/descriptor_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/descriptor_pb.js\"), exports);\n__exportStar(__webpack_require__(/*! ./gen/google/protobuf/duration_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/duration_pb.js\"), exports);\n__exportStar(__webpack_require__(/*! ./gen/google/protobuf/empty_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/empty_pb.js\"), exports);\n__exportStar(__webpack_require__(/*! ./gen/google/protobuf/field_mask_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/field_mask_pb.js\"), exports);\n__exportStar(__webpack_require__(/*! ./gen/google/protobuf/source_context_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/source_context_pb.js\"), exports);\n__exportStar(__webpack_require__(/*! ./gen/google/protobuf/struct_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/struct_pb.js\"), exports);\n__exportStar(__webpack_require__(/*! ./gen/google/protobuf/timestamp_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/timestamp_pb.js\"), exports);\n__exportStar(__webpack_require__(/*! ./gen/google/protobuf/type_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/type_pb.js\"), exports);\n__exportStar(__webpack_require__(/*! ./gen/google/protobuf/wrappers_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/wrappers_pb.js\"), exports);\n__exportStar(__webpack_require__(/*! ./gen/google/protobuf/compiler/plugin_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/compiler/plugin_pb.js\"), exports);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/index.js?");
670
-
671
- /***/ }),
672
-
673
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/timestamp.js":
674
- /*!***************************************************************************************************************!*\
675
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/timestamp.js ***!
676
- \***************************************************************************************************************/
677
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
367
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
678
368
 
679
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.timestampNow = timestampNow;\nexports.timestampFromDate = timestampFromDate;\nexports.timestampDate = timestampDate;\nexports.timestampFromMs = timestampFromMs;\nexports.timestampMs = timestampMs;\nconst timestamp_pb_js_1 = __webpack_require__(/*! ./gen/google/protobuf/timestamp_pb.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/timestamp_pb.js\");\nconst create_js_1 = __webpack_require__(/*! ../create.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/create.js\");\nconst proto_int64_js_1 = __webpack_require__(/*! ../proto-int64.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js\");\n/**\n * Create a google.protobuf.Timestamp for the current time.\n */\nfunction timestampNow() {\n return timestampFromDate(new Date());\n}\n/**\n * Create a google.protobuf.Timestamp message from an ECMAScript Date.\n */\nfunction timestampFromDate(date) {\n return timestampFromMs(date.getTime());\n}\n/**\n * Convert a google.protobuf.Timestamp message to an ECMAScript Date.\n */\nfunction timestampDate(timestamp) {\n return new Date(timestampMs(timestamp));\n}\n/**\n * Create a google.protobuf.Timestamp message from a Unix timestamp in milliseconds.\n */\nfunction timestampFromMs(timestampMs) {\n return (0, create_js_1.create)(timestamp_pb_js_1.TimestampSchema, {\n seconds: proto_int64_js_1.protoInt64.parse(Math.floor(timestampMs / 1000)),\n nanos: (timestampMs % 1000) * 1000000,\n });\n}\n/**\n * Convert a google.protobuf.Timestamp to a Unix timestamp in milliseconds.\n */\nfunction timestampMs(timestamp) {\n return (Number(timestamp.seconds) * 1000 + Math.ceil(timestamp.nanos / 1000000));\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/timestamp.js?");
369
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ DescriptorProtoSchema: () => (/* binding */ DescriptorProtoSchema),\n/* harmony export */ DescriptorProto_ExtensionRangeSchema: () => (/* binding */ DescriptorProto_ExtensionRangeSchema),\n/* harmony export */ DescriptorProto_ReservedRangeSchema: () => (/* binding */ DescriptorProto_ReservedRangeSchema),\n/* harmony export */ Edition: () => (/* binding */ Edition),\n/* harmony export */ EditionSchema: () => (/* binding */ EditionSchema),\n/* harmony export */ EnumDescriptorProtoSchema: () => (/* binding */ EnumDescriptorProtoSchema),\n/* harmony export */ EnumDescriptorProto_EnumReservedRangeSchema: () => (/* binding */ EnumDescriptorProto_EnumReservedRangeSchema),\n/* harmony export */ EnumOptionsSchema: () => (/* binding */ EnumOptionsSchema),\n/* harmony export */ EnumValueDescriptorProtoSchema: () => (/* binding */ EnumValueDescriptorProtoSchema),\n/* harmony export */ EnumValueOptionsSchema: () => (/* binding */ EnumValueOptionsSchema),\n/* harmony export */ ExtensionRangeOptionsSchema: () => (/* binding */ ExtensionRangeOptionsSchema),\n/* harmony export */ ExtensionRangeOptions_DeclarationSchema: () => (/* binding */ ExtensionRangeOptions_DeclarationSchema),\n/* harmony export */ ExtensionRangeOptions_VerificationState: () => (/* binding */ ExtensionRangeOptions_VerificationState),\n/* harmony export */ ExtensionRangeOptions_VerificationStateSchema: () => (/* binding */ ExtensionRangeOptions_VerificationStateSchema),\n/* harmony export */ FeatureSetDefaultsSchema: () => (/* binding */ FeatureSetDefaultsSchema),\n/* harmony export */ FeatureSetDefaults_FeatureSetEditionDefaultSchema: () => (/* binding */ FeatureSetDefaults_FeatureSetEditionDefaultSchema),\n/* harmony export */ FeatureSetSchema: () => (/* binding */ FeatureSetSchema),\n/* harmony export */ FeatureSet_EnumType: () => (/* binding */ FeatureSet_EnumType),\n/* harmony export */ FeatureSet_EnumTypeSchema: () => (/* binding */ FeatureSet_EnumTypeSchema),\n/* harmony export */ FeatureSet_FieldPresence: () => (/* binding */ FeatureSet_FieldPresence),\n/* harmony export */ FeatureSet_FieldPresenceSchema: () => (/* binding */ FeatureSet_FieldPresenceSchema),\n/* harmony export */ FeatureSet_JsonFormat: () => (/* binding */ FeatureSet_JsonFormat),\n/* harmony export */ FeatureSet_JsonFormatSchema: () => (/* binding */ FeatureSet_JsonFormatSchema),\n/* harmony export */ FeatureSet_MessageEncoding: () => (/* binding */ FeatureSet_MessageEncoding),\n/* harmony export */ FeatureSet_MessageEncodingSchema: () => (/* binding */ FeatureSet_MessageEncodingSchema),\n/* harmony export */ FeatureSet_RepeatedFieldEncoding: () => (/* binding */ FeatureSet_RepeatedFieldEncoding),\n/* harmony export */ FeatureSet_RepeatedFieldEncodingSchema: () => (/* binding */ FeatureSet_RepeatedFieldEncodingSchema),\n/* harmony export */ FeatureSet_Utf8Validation: () => (/* binding */ FeatureSet_Utf8Validation),\n/* harmony export */ FeatureSet_Utf8ValidationSchema: () => (/* binding */ FeatureSet_Utf8ValidationSchema),\n/* harmony export */ FieldDescriptorProtoSchema: () => (/* binding */ FieldDescriptorProtoSchema),\n/* harmony export */ FieldDescriptorProto_Label: () => (/* binding */ FieldDescriptorProto_Label),\n/* harmony export */ FieldDescriptorProto_LabelSchema: () => (/* binding */ FieldDescriptorProto_LabelSchema),\n/* harmony export */ FieldDescriptorProto_Type: () => (/* binding */ FieldDescriptorProto_Type),\n/* harmony export */ FieldDescriptorProto_TypeSchema: () => (/* binding */ FieldDescriptorProto_TypeSchema),\n/* harmony export */ FieldOptionsSchema: () => (/* binding */ FieldOptionsSchema),\n/* harmony export */ FieldOptions_CType: () => (/* binding */ FieldOptions_CType),\n/* harmony export */ FieldOptions_CTypeSchema: () => (/* binding */ FieldOptions_CTypeSchema),\n/* harmony export */ FieldOptions_EditionDefaultSchema: () => (/* binding */ FieldOptions_EditionDefaultSchema),\n/* harmony export */ FieldOptions_FeatureSupportSchema: () => (/* binding */ FieldOptions_FeatureSupportSchema),\n/* harmony export */ FieldOptions_JSType: () => (/* binding */ FieldOptions_JSType),\n/* harmony export */ FieldOptions_JSTypeSchema: () => (/* binding */ FieldOptions_JSTypeSchema),\n/* harmony export */ FieldOptions_OptionRetention: () => (/* binding */ FieldOptions_OptionRetention),\n/* harmony export */ FieldOptions_OptionRetentionSchema: () => (/* binding */ FieldOptions_OptionRetentionSchema),\n/* harmony export */ FieldOptions_OptionTargetType: () => (/* binding */ FieldOptions_OptionTargetType),\n/* harmony export */ FieldOptions_OptionTargetTypeSchema: () => (/* binding */ FieldOptions_OptionTargetTypeSchema),\n/* harmony export */ FileDescriptorProtoSchema: () => (/* binding */ FileDescriptorProtoSchema),\n/* harmony export */ FileDescriptorSetSchema: () => (/* binding */ FileDescriptorSetSchema),\n/* harmony export */ FileOptionsSchema: () => (/* binding */ FileOptionsSchema),\n/* harmony export */ FileOptions_OptimizeMode: () => (/* binding */ FileOptions_OptimizeMode),\n/* harmony export */ FileOptions_OptimizeModeSchema: () => (/* binding */ FileOptions_OptimizeModeSchema),\n/* harmony export */ GeneratedCodeInfoSchema: () => (/* binding */ GeneratedCodeInfoSchema),\n/* harmony export */ GeneratedCodeInfo_AnnotationSchema: () => (/* binding */ GeneratedCodeInfo_AnnotationSchema),\n/* harmony export */ GeneratedCodeInfo_Annotation_Semantic: () => (/* binding */ GeneratedCodeInfo_Annotation_Semantic),\n/* harmony export */ GeneratedCodeInfo_Annotation_SemanticSchema: () => (/* binding */ GeneratedCodeInfo_Annotation_SemanticSchema),\n/* harmony export */ MessageOptionsSchema: () => (/* binding */ MessageOptionsSchema),\n/* harmony export */ MethodDescriptorProtoSchema: () => (/* binding */ MethodDescriptorProtoSchema),\n/* harmony export */ MethodOptionsSchema: () => (/* binding */ MethodOptionsSchema),\n/* harmony export */ MethodOptions_IdempotencyLevel: () => (/* binding */ MethodOptions_IdempotencyLevel),\n/* harmony export */ MethodOptions_IdempotencyLevelSchema: () => (/* binding */ MethodOptions_IdempotencyLevelSchema),\n/* harmony export */ OneofDescriptorProtoSchema: () => (/* binding */ OneofDescriptorProtoSchema),\n/* harmony export */ OneofOptionsSchema: () => (/* binding */ OneofOptionsSchema),\n/* harmony export */ ServiceDescriptorProtoSchema: () => (/* binding */ ServiceDescriptorProtoSchema),\n/* harmony export */ ServiceOptionsSchema: () => (/* binding */ ServiceOptionsSchema),\n/* harmony export */ SourceCodeInfoSchema: () => (/* binding */ SourceCodeInfoSchema),\n/* harmony export */ SourceCodeInfo_LocationSchema: () => (/* binding */ SourceCodeInfo_LocationSchema),\n/* harmony export */ UninterpretedOptionSchema: () => (/* binding */ UninterpretedOptionSchema),\n/* harmony export */ UninterpretedOption_NamePartSchema: () => (/* binding */ UninterpretedOption_NamePartSchema),\n/* harmony export */ file_google_protobuf_descriptor: () => (/* binding */ file_google_protobuf_descriptor)\n/* harmony export */ });\n/* harmony import */ var _codegenv1_boot_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../../codegenv1/boot.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/boot.js\");\n/* harmony import */ var _codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../codegenv1/message.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/message.js\");\n/* harmony import */ var _codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../codegenv1/enum.js */ \"./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/codegenv1/enum.js\");\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n\n\n/**\n * Describes the file google/protobuf/descriptor.proto.\n */\nconst file_google_protobuf_descriptor = /*@__PURE__*/ (0,_codegenv1_boot_js__WEBPACK_IMPORTED_MODULE_0__.boot)({ \"name\": \"google/protobuf/descriptor.proto\", \"package\": \"google.protobuf\", \"messageType\": [{ \"name\": \"FileDescriptorSet\", \"field\": [{ \"name\": \"file\", \"number\": 1, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.FileDescriptorProto\" }] }, { \"name\": \"FileDescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"package\", \"number\": 2, \"type\": 9, \"label\": 1 }, { \"name\": \"dependency\", \"number\": 3, \"type\": 9, \"label\": 3 }, { \"name\": \"public_dependency\", \"number\": 10, \"type\": 5, \"label\": 3 }, { \"name\": \"weak_dependency\", \"number\": 11, \"type\": 5, \"label\": 3 }, { \"name\": \"message_type\", \"number\": 4, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.DescriptorProto\" }, { \"name\": \"enum_type\", \"number\": 5, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.EnumDescriptorProto\" }, { \"name\": \"service\", \"number\": 6, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.ServiceDescriptorProto\" }, { \"name\": \"extension\", \"number\": 7, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.FieldDescriptorProto\" }, { \"name\": \"options\", \"number\": 8, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FileOptions\" }, { \"name\": \"source_code_info\", \"number\": 9, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.SourceCodeInfo\" }, { \"name\": \"syntax\", \"number\": 12, \"type\": 9, \"label\": 1 }, { \"name\": \"edition\", \"number\": 14, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }] }, { \"name\": \"DescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"field\", \"number\": 2, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.FieldDescriptorProto\" }, { \"name\": \"extension\", \"number\": 6, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.FieldDescriptorProto\" }, { \"name\": \"nested_type\", \"number\": 3, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.DescriptorProto\" }, { \"name\": \"enum_type\", \"number\": 4, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.EnumDescriptorProto\" }, { \"name\": \"extension_range\", \"number\": 5, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.DescriptorProto.ExtensionRange\" }, { \"name\": \"oneof_decl\", \"number\": 8, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.OneofDescriptorProto\" }, { \"name\": \"options\", \"number\": 7, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.MessageOptions\" }, { \"name\": \"reserved_range\", \"number\": 9, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.DescriptorProto.ReservedRange\" }, { \"name\": \"reserved_name\", \"number\": 10, \"type\": 9, \"label\": 3 }], \"nestedType\": [{ \"name\": \"ExtensionRange\", \"field\": [{ \"name\": \"start\", \"number\": 1, \"type\": 5, \"label\": 1 }, { \"name\": \"end\", \"number\": 2, \"type\": 5, \"label\": 1 }, { \"name\": \"options\", \"number\": 3, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.ExtensionRangeOptions\" }] }, { \"name\": \"ReservedRange\", \"field\": [{ \"name\": \"start\", \"number\": 1, \"type\": 5, \"label\": 1 }, { \"name\": \"end\", \"number\": 2, \"type\": 5, \"label\": 1 }] }] }, { \"name\": \"ExtensionRangeOptions\", \"field\": [{ \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }, { \"name\": \"declaration\", \"number\": 2, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.ExtensionRangeOptions.Declaration\", \"options\": { \"retention\": 2 } }, { \"name\": \"features\", \"number\": 50, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"verification\", \"number\": 3, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.ExtensionRangeOptions.VerificationState\", \"defaultValue\": \"UNVERIFIED\", \"options\": { \"retention\": 2 } }], \"nestedType\": [{ \"name\": \"Declaration\", \"field\": [{ \"name\": \"number\", \"number\": 1, \"type\": 5, \"label\": 1 }, { \"name\": \"full_name\", \"number\": 2, \"type\": 9, \"label\": 1 }, { \"name\": \"type\", \"number\": 3, \"type\": 9, \"label\": 1 }, { \"name\": \"reserved\", \"number\": 5, \"type\": 8, \"label\": 1 }, { \"name\": \"repeated\", \"number\": 6, \"type\": 8, \"label\": 1 }] }], \"enumType\": [{ \"name\": \"VerificationState\", \"value\": [{ \"name\": \"DECLARATION\", \"number\": 0 }, { \"name\": \"UNVERIFIED\", \"number\": 1 }] }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"FieldDescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"number\", \"number\": 3, \"type\": 5, \"label\": 1 }, { \"name\": \"label\", \"number\": 4, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FieldDescriptorProto.Label\" }, { \"name\": \"type\", \"number\": 5, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FieldDescriptorProto.Type\" }, { \"name\": \"type_name\", \"number\": 6, \"type\": 9, \"label\": 1 }, { \"name\": \"extendee\", \"number\": 2, \"type\": 9, \"label\": 1 }, { \"name\": \"default_value\", \"number\": 7, \"type\": 9, \"label\": 1 }, { \"name\": \"oneof_index\", \"number\": 9, \"type\": 5, \"label\": 1 }, { \"name\": \"json_name\", \"number\": 10, \"type\": 9, \"label\": 1 }, { \"name\": \"options\", \"number\": 8, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FieldOptions\" }, { \"name\": \"proto3_optional\", \"number\": 17, \"type\": 8, \"label\": 1 }], \"enumType\": [{ \"name\": \"Type\", \"value\": [{ \"name\": \"TYPE_DOUBLE\", \"number\": 1 }, { \"name\": \"TYPE_FLOAT\", \"number\": 2 }, { \"name\": \"TYPE_INT64\", \"number\": 3 }, { \"name\": \"TYPE_UINT64\", \"number\": 4 }, { \"name\": \"TYPE_INT32\", \"number\": 5 }, { \"name\": \"TYPE_FIXED64\", \"number\": 6 }, { \"name\": \"TYPE_FIXED32\", \"number\": 7 }, { \"name\": \"TYPE_BOOL\", \"number\": 8 }, { \"name\": \"TYPE_STRING\", \"number\": 9 }, { \"name\": \"TYPE_GROUP\", \"number\": 10 }, { \"name\": \"TYPE_MESSAGE\", \"number\": 11 }, { \"name\": \"TYPE_BYTES\", \"number\": 12 }, { \"name\": \"TYPE_UINT32\", \"number\": 13 }, { \"name\": \"TYPE_ENUM\", \"number\": 14 }, { \"name\": \"TYPE_SFIXED32\", \"number\": 15 }, { \"name\": \"TYPE_SFIXED64\", \"number\": 16 }, { \"name\": \"TYPE_SINT32\", \"number\": 17 }, { \"name\": \"TYPE_SINT64\", \"number\": 18 }] }, { \"name\": \"Label\", \"value\": [{ \"name\": \"LABEL_OPTIONAL\", \"number\": 1 }, { \"name\": \"LABEL_REPEATED\", \"number\": 3 }, { \"name\": \"LABEL_REQUIRED\", \"number\": 2 }] }] }, { \"name\": \"OneofDescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"options\", \"number\": 2, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.OneofOptions\" }] }, { \"name\": \"EnumDescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"value\", \"number\": 2, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.EnumValueDescriptorProto\" }, { \"name\": \"options\", \"number\": 3, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.EnumOptions\" }, { \"name\": \"reserved_range\", \"number\": 4, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.EnumDescriptorProto.EnumReservedRange\" }, { \"name\": \"reserved_name\", \"number\": 5, \"type\": 9, \"label\": 3 }], \"nestedType\": [{ \"name\": \"EnumReservedRange\", \"field\": [{ \"name\": \"start\", \"number\": 1, \"type\": 5, \"label\": 1 }, { \"name\": \"end\", \"number\": 2, \"type\": 5, \"label\": 1 }] }] }, { \"name\": \"EnumValueDescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"number\", \"number\": 2, \"type\": 5, \"label\": 1 }, { \"name\": \"options\", \"number\": 3, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.EnumValueOptions\" }] }, { \"name\": \"ServiceDescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"method\", \"number\": 2, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.MethodDescriptorProto\" }, { \"name\": \"options\", \"number\": 3, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.ServiceOptions\" }] }, { \"name\": \"MethodDescriptorProto\", \"field\": [{ \"name\": \"name\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"input_type\", \"number\": 2, \"type\": 9, \"label\": 1 }, { \"name\": \"output_type\", \"number\": 3, \"type\": 9, \"label\": 1 }, { \"name\": \"options\", \"number\": 4, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.MethodOptions\" }, { \"name\": \"client_streaming\", \"number\": 5, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"server_streaming\", \"number\": 6, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }] }, { \"name\": \"FileOptions\", \"field\": [{ \"name\": \"java_package\", \"number\": 1, \"type\": 9, \"label\": 1 }, { \"name\": \"java_outer_classname\", \"number\": 8, \"type\": 9, \"label\": 1 }, { \"name\": \"java_multiple_files\", \"number\": 10, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"java_generate_equals_and_hash\", \"number\": 20, \"type\": 8, \"label\": 1, \"options\": { \"deprecated\": true } }, { \"name\": \"java_string_check_utf8\", \"number\": 27, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"optimize_for\", \"number\": 9, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FileOptions.OptimizeMode\", \"defaultValue\": \"SPEED\" }, { \"name\": \"go_package\", \"number\": 11, \"type\": 9, \"label\": 1 }, { \"name\": \"cc_generic_services\", \"number\": 16, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"java_generic_services\", \"number\": 17, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"py_generic_services\", \"number\": 18, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"deprecated\", \"number\": 23, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"cc_enable_arenas\", \"number\": 31, \"type\": 8, \"label\": 1, \"defaultValue\": \"true\" }, { \"name\": \"objc_class_prefix\", \"number\": 36, \"type\": 9, \"label\": 1 }, { \"name\": \"csharp_namespace\", \"number\": 37, \"type\": 9, \"label\": 1 }, { \"name\": \"swift_prefix\", \"number\": 39, \"type\": 9, \"label\": 1 }, { \"name\": \"php_class_prefix\", \"number\": 40, \"type\": 9, \"label\": 1 }, { \"name\": \"php_namespace\", \"number\": 41, \"type\": 9, \"label\": 1 }, { \"name\": \"php_metadata_namespace\", \"number\": 44, \"type\": 9, \"label\": 1 }, { \"name\": \"ruby_package\", \"number\": 45, \"type\": 9, \"label\": 1 }, { \"name\": \"features\", \"number\": 50, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"enumType\": [{ \"name\": \"OptimizeMode\", \"value\": [{ \"name\": \"SPEED\", \"number\": 1 }, { \"name\": \"CODE_SIZE\", \"number\": 2 }, { \"name\": \"LITE_RUNTIME\", \"number\": 3 }] }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"MessageOptions\", \"field\": [{ \"name\": \"message_set_wire_format\", \"number\": 1, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"no_standard_descriptor_accessor\", \"number\": 2, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"deprecated\", \"number\": 3, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"map_entry\", \"number\": 7, \"type\": 8, \"label\": 1 }, { \"name\": \"deprecated_legacy_json_field_conflicts\", \"number\": 11, \"type\": 8, \"label\": 1, \"options\": { \"deprecated\": true } }, { \"name\": \"features\", \"number\": 12, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"FieldOptions\", \"field\": [{ \"name\": \"ctype\", \"number\": 1, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FieldOptions.CType\", \"defaultValue\": \"STRING\" }, { \"name\": \"packed\", \"number\": 2, \"type\": 8, \"label\": 1 }, { \"name\": \"jstype\", \"number\": 6, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FieldOptions.JSType\", \"defaultValue\": \"JS_NORMAL\" }, { \"name\": \"lazy\", \"number\": 5, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"unverified_lazy\", \"number\": 15, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"deprecated\", \"number\": 3, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"weak\", \"number\": 10, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"debug_redact\", \"number\": 16, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"retention\", \"number\": 17, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FieldOptions.OptionRetention\" }, { \"name\": \"targets\", \"number\": 19, \"type\": 14, \"label\": 3, \"typeName\": \".google.protobuf.FieldOptions.OptionTargetType\" }, { \"name\": \"edition_defaults\", \"number\": 20, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.FieldOptions.EditionDefault\" }, { \"name\": \"features\", \"number\": 21, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"feature_support\", \"number\": 22, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FieldOptions.FeatureSupport\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"nestedType\": [{ \"name\": \"EditionDefault\", \"field\": [{ \"name\": \"edition\", \"number\": 3, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }, { \"name\": \"value\", \"number\": 2, \"type\": 9, \"label\": 1 }] }, { \"name\": \"FeatureSupport\", \"field\": [{ \"name\": \"edition_introduced\", \"number\": 1, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }, { \"name\": \"edition_deprecated\", \"number\": 2, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }, { \"name\": \"deprecation_warning\", \"number\": 3, \"type\": 9, \"label\": 1 }, { \"name\": \"edition_removed\", \"number\": 4, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }] }], \"enumType\": [{ \"name\": \"CType\", \"value\": [{ \"name\": \"STRING\", \"number\": 0 }, { \"name\": \"CORD\", \"number\": 1 }, { \"name\": \"STRING_PIECE\", \"number\": 2 }] }, { \"name\": \"JSType\", \"value\": [{ \"name\": \"JS_NORMAL\", \"number\": 0 }, { \"name\": \"JS_STRING\", \"number\": 1 }, { \"name\": \"JS_NUMBER\", \"number\": 2 }] }, { \"name\": \"OptionRetention\", \"value\": [{ \"name\": \"RETENTION_UNKNOWN\", \"number\": 0 }, { \"name\": \"RETENTION_RUNTIME\", \"number\": 1 }, { \"name\": \"RETENTION_SOURCE\", \"number\": 2 }] }, { \"name\": \"OptionTargetType\", \"value\": [{ \"name\": \"TARGET_TYPE_UNKNOWN\", \"number\": 0 }, { \"name\": \"TARGET_TYPE_FILE\", \"number\": 1 }, { \"name\": \"TARGET_TYPE_EXTENSION_RANGE\", \"number\": 2 }, { \"name\": \"TARGET_TYPE_MESSAGE\", \"number\": 3 }, { \"name\": \"TARGET_TYPE_FIELD\", \"number\": 4 }, { \"name\": \"TARGET_TYPE_ONEOF\", \"number\": 5 }, { \"name\": \"TARGET_TYPE_ENUM\", \"number\": 6 }, { \"name\": \"TARGET_TYPE_ENUM_ENTRY\", \"number\": 7 }, { \"name\": \"TARGET_TYPE_SERVICE\", \"number\": 8 }, { \"name\": \"TARGET_TYPE_METHOD\", \"number\": 9 }] }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"OneofOptions\", \"field\": [{ \"name\": \"features\", \"number\": 1, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"EnumOptions\", \"field\": [{ \"name\": \"allow_alias\", \"number\": 2, \"type\": 8, \"label\": 1 }, { \"name\": \"deprecated\", \"number\": 3, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"deprecated_legacy_json_field_conflicts\", \"number\": 6, \"type\": 8, \"label\": 1, \"options\": { \"deprecated\": true } }, { \"name\": \"features\", \"number\": 7, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"EnumValueOptions\", \"field\": [{ \"name\": \"deprecated\", \"number\": 1, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"features\", \"number\": 2, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"debug_redact\", \"number\": 3, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"feature_support\", \"number\": 4, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FieldOptions.FeatureSupport\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"ServiceOptions\", \"field\": [{ \"name\": \"features\", \"number\": 34, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"deprecated\", \"number\": 33, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"MethodOptions\", \"field\": [{ \"name\": \"deprecated\", \"number\": 33, \"type\": 8, \"label\": 1, \"defaultValue\": \"false\" }, { \"name\": \"idempotency_level\", \"number\": 34, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.MethodOptions.IdempotencyLevel\", \"defaultValue\": \"IDEMPOTENCY_UNKNOWN\" }, { \"name\": \"features\", \"number\": 35, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"uninterpreted_option\", \"number\": 999, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption\" }], \"enumType\": [{ \"name\": \"IdempotencyLevel\", \"value\": [{ \"name\": \"IDEMPOTENCY_UNKNOWN\", \"number\": 0 }, { \"name\": \"NO_SIDE_EFFECTS\", \"number\": 1 }, { \"name\": \"IDEMPOTENT\", \"number\": 2 }] }], \"extensionRange\": [{ \"start\": 1000, \"end\": 536870912 }] }, { \"name\": \"UninterpretedOption\", \"field\": [{ \"name\": \"name\", \"number\": 2, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.UninterpretedOption.NamePart\" }, { \"name\": \"identifier_value\", \"number\": 3, \"type\": 9, \"label\": 1 }, { \"name\": \"positive_int_value\", \"number\": 4, \"type\": 4, \"label\": 1 }, { \"name\": \"negative_int_value\", \"number\": 5, \"type\": 3, \"label\": 1 }, { \"name\": \"double_value\", \"number\": 6, \"type\": 1, \"label\": 1 }, { \"name\": \"string_value\", \"number\": 7, \"type\": 12, \"label\": 1 }, { \"name\": \"aggregate_value\", \"number\": 8, \"type\": 9, \"label\": 1 }], \"nestedType\": [{ \"name\": \"NamePart\", \"field\": [{ \"name\": \"name_part\", \"number\": 1, \"type\": 9, \"label\": 2 }, { \"name\": \"is_extension\", \"number\": 2, \"type\": 8, \"label\": 2 }] }] }, { \"name\": \"FeatureSet\", \"field\": [{ \"name\": \"field_presence\", \"number\": 1, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet.FieldPresence\", \"options\": { \"retention\": 1, \"targets\": [4, 1], \"editionDefaults\": [{ \"value\": \"EXPLICIT\", \"edition\": 900 }, { \"value\": \"IMPLICIT\", \"edition\": 999 }, { \"value\": \"EXPLICIT\", \"edition\": 1000 }] } }, { \"name\": \"enum_type\", \"number\": 2, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet.EnumType\", \"options\": { \"retention\": 1, \"targets\": [6, 1], \"editionDefaults\": [{ \"value\": \"CLOSED\", \"edition\": 900 }, { \"value\": \"OPEN\", \"edition\": 999 }] } }, { \"name\": \"repeated_field_encoding\", \"number\": 3, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet.RepeatedFieldEncoding\", \"options\": { \"retention\": 1, \"targets\": [4, 1], \"editionDefaults\": [{ \"value\": \"EXPANDED\", \"edition\": 900 }, { \"value\": \"PACKED\", \"edition\": 999 }] } }, { \"name\": \"utf8_validation\", \"number\": 4, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet.Utf8Validation\", \"options\": { \"retention\": 1, \"targets\": [4, 1], \"editionDefaults\": [{ \"value\": \"NONE\", \"edition\": 900 }, { \"value\": \"VERIFY\", \"edition\": 999 }] } }, { \"name\": \"message_encoding\", \"number\": 5, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet.MessageEncoding\", \"options\": { \"retention\": 1, \"targets\": [4, 1], \"editionDefaults\": [{ \"value\": \"LENGTH_PREFIXED\", \"edition\": 900 }] } }, { \"name\": \"json_format\", \"number\": 6, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet.JsonFormat\", \"options\": { \"retention\": 1, \"targets\": [3, 6, 1], \"editionDefaults\": [{ \"value\": \"LEGACY_BEST_EFFORT\", \"edition\": 900 }, { \"value\": \"ALLOW\", \"edition\": 999 }] } }], \"enumType\": [{ \"name\": \"FieldPresence\", \"value\": [{ \"name\": \"FIELD_PRESENCE_UNKNOWN\", \"number\": 0 }, { \"name\": \"EXPLICIT\", \"number\": 1 }, { \"name\": \"IMPLICIT\", \"number\": 2 }, { \"name\": \"LEGACY_REQUIRED\", \"number\": 3 }] }, { \"name\": \"EnumType\", \"value\": [{ \"name\": \"ENUM_TYPE_UNKNOWN\", \"number\": 0 }, { \"name\": \"OPEN\", \"number\": 1 }, { \"name\": \"CLOSED\", \"number\": 2 }] }, { \"name\": \"RepeatedFieldEncoding\", \"value\": [{ \"name\": \"REPEATED_FIELD_ENCODING_UNKNOWN\", \"number\": 0 }, { \"name\": \"PACKED\", \"number\": 1 }, { \"name\": \"EXPANDED\", \"number\": 2 }] }, { \"name\": \"Utf8Validation\", \"value\": [{ \"name\": \"UTF8_VALIDATION_UNKNOWN\", \"number\": 0 }, { \"name\": \"VERIFY\", \"number\": 2 }, { \"name\": \"NONE\", \"number\": 3 }] }, { \"name\": \"MessageEncoding\", \"value\": [{ \"name\": \"MESSAGE_ENCODING_UNKNOWN\", \"number\": 0 }, { \"name\": \"LENGTH_PREFIXED\", \"number\": 1 }, { \"name\": \"DELIMITED\", \"number\": 2 }] }, { \"name\": \"JsonFormat\", \"value\": [{ \"name\": \"JSON_FORMAT_UNKNOWN\", \"number\": 0 }, { \"name\": \"ALLOW\", \"number\": 1 }, { \"name\": \"LEGACY_BEST_EFFORT\", \"number\": 2 }] }], \"extensionRange\": [{ \"start\": 1000, \"end\": 9995 }, { \"start\": 9995, \"end\": 10000 }, { \"start\": 10000, \"end\": 10001 }] }, { \"name\": \"FeatureSetDefaults\", \"field\": [{ \"name\": \"defaults\", \"number\": 1, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault\" }, { \"name\": \"minimum_edition\", \"number\": 4, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }, { \"name\": \"maximum_edition\", \"number\": 5, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }], \"nestedType\": [{ \"name\": \"FeatureSetEditionDefault\", \"field\": [{ \"name\": \"edition\", \"number\": 3, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.Edition\" }, { \"name\": \"overridable_features\", \"number\": 4, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }, { \"name\": \"fixed_features\", \"number\": 5, \"type\": 11, \"label\": 1, \"typeName\": \".google.protobuf.FeatureSet\" }] }] }, { \"name\": \"SourceCodeInfo\", \"field\": [{ \"name\": \"location\", \"number\": 1, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.SourceCodeInfo.Location\" }], \"nestedType\": [{ \"name\": \"Location\", \"field\": [{ \"name\": \"path\", \"number\": 1, \"type\": 5, \"label\": 3, \"options\": { \"packed\": true } }, { \"name\": \"span\", \"number\": 2, \"type\": 5, \"label\": 3, \"options\": { \"packed\": true } }, { \"name\": \"leading_comments\", \"number\": 3, \"type\": 9, \"label\": 1 }, { \"name\": \"trailing_comments\", \"number\": 4, \"type\": 9, \"label\": 1 }, { \"name\": \"leading_detached_comments\", \"number\": 6, \"type\": 9, \"label\": 3 }] }] }, { \"name\": \"GeneratedCodeInfo\", \"field\": [{ \"name\": \"annotation\", \"number\": 1, \"type\": 11, \"label\": 3, \"typeName\": \".google.protobuf.GeneratedCodeInfo.Annotation\" }], \"nestedType\": [{ \"name\": \"Annotation\", \"field\": [{ \"name\": \"path\", \"number\": 1, \"type\": 5, \"label\": 3, \"options\": { \"packed\": true } }, { \"name\": \"source_file\", \"number\": 2, \"type\": 9, \"label\": 1 }, { \"name\": \"begin\", \"number\": 3, \"type\": 5, \"label\": 1 }, { \"name\": \"end\", \"number\": 4, \"type\": 5, \"label\": 1 }, { \"name\": \"semantic\", \"number\": 5, \"type\": 14, \"label\": 1, \"typeName\": \".google.protobuf.GeneratedCodeInfo.Annotation.Semantic\" }], \"enumType\": [{ \"name\": \"Semantic\", \"value\": [{ \"name\": \"NONE\", \"number\": 0 }, { \"name\": \"SET\", \"number\": 1 }, { \"name\": \"ALIAS\", \"number\": 2 }] }] }] }], \"enumType\": [{ \"name\": \"Edition\", \"value\": [{ \"name\": \"EDITION_UNKNOWN\", \"number\": 0 }, { \"name\": \"EDITION_LEGACY\", \"number\": 900 }, { \"name\": \"EDITION_PROTO2\", \"number\": 998 }, { \"name\": \"EDITION_PROTO3\", \"number\": 999 }, { \"name\": \"EDITION_2023\", \"number\": 1000 }, { \"name\": \"EDITION_2024\", \"number\": 1001 }, { \"name\": \"EDITION_1_TEST_ONLY\", \"number\": 1 }, { \"name\": \"EDITION_2_TEST_ONLY\", \"number\": 2 }, { \"name\": \"EDITION_99997_TEST_ONLY\", \"number\": 99997 }, { \"name\": \"EDITION_99998_TEST_ONLY\", \"number\": 99998 }, { \"name\": \"EDITION_99999_TEST_ONLY\", \"number\": 99999 }, { \"name\": \"EDITION_MAX\", \"number\": 2147483647 }] }] });\n/**\n * Describes the message google.protobuf.FileDescriptorSet.\n * Use `create(FileDescriptorSetSchema)` to create a new message.\n */\nconst FileDescriptorSetSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 0);\n/**\n * Describes the message google.protobuf.FileDescriptorProto.\n * Use `create(FileDescriptorProtoSchema)` to create a new message.\n */\nconst FileDescriptorProtoSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 1);\n/**\n * Describes the message google.protobuf.DescriptorProto.\n * Use `create(DescriptorProtoSchema)` to create a new message.\n */\nconst DescriptorProtoSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 2);\n/**\n * Describes the message google.protobuf.DescriptorProto.ExtensionRange.\n * Use `create(DescriptorProto_ExtensionRangeSchema)` to create a new message.\n */\nconst DescriptorProto_ExtensionRangeSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 2, 0);\n/**\n * Describes the message google.protobuf.DescriptorProto.ReservedRange.\n * Use `create(DescriptorProto_ReservedRangeSchema)` to create a new message.\n */\nconst DescriptorProto_ReservedRangeSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 2, 1);\n/**\n * Describes the message google.protobuf.ExtensionRangeOptions.\n * Use `create(ExtensionRangeOptionsSchema)` to create a new message.\n */\nconst ExtensionRangeOptionsSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 3);\n/**\n * Describes the message google.protobuf.ExtensionRangeOptions.Declaration.\n * Use `create(ExtensionRangeOptions_DeclarationSchema)` to create a new message.\n */\nconst ExtensionRangeOptions_DeclarationSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 3, 0);\n/**\n * The verification state of the extension range.\n *\n * @generated from enum google.protobuf.ExtensionRangeOptions.VerificationState\n */\nvar ExtensionRangeOptions_VerificationState;\n(function (ExtensionRangeOptions_VerificationState) {\n /**\n * All the extensions of the range must be declared.\n *\n * @generated from enum value: DECLARATION = 0;\n */\n ExtensionRangeOptions_VerificationState[ExtensionRangeOptions_VerificationState[\"DECLARATION\"] = 0] = \"DECLARATION\";\n /**\n * @generated from enum value: UNVERIFIED = 1;\n */\n ExtensionRangeOptions_VerificationState[ExtensionRangeOptions_VerificationState[\"UNVERIFIED\"] = 1] = \"UNVERIFIED\";\n})(ExtensionRangeOptions_VerificationState || (ExtensionRangeOptions_VerificationState = {}));\n/**\n * Describes the enum google.protobuf.ExtensionRangeOptions.VerificationState.\n */\nconst ExtensionRangeOptions_VerificationStateSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 3, 0);\n/**\n * Describes the message google.protobuf.FieldDescriptorProto.\n * Use `create(FieldDescriptorProtoSchema)` to create a new message.\n */\nconst FieldDescriptorProtoSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 4);\n/**\n * @generated from enum google.protobuf.FieldDescriptorProto.Type\n */\nvar FieldDescriptorProto_Type;\n(function (FieldDescriptorProto_Type) {\n /**\n * 0 is reserved for errors.\n * Order is weird for historical reasons.\n *\n * @generated from enum value: TYPE_DOUBLE = 1;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"DOUBLE\"] = 1] = \"DOUBLE\";\n /**\n * @generated from enum value: TYPE_FLOAT = 2;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"FLOAT\"] = 2] = \"FLOAT\";\n /**\n * Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if\n * negative values are likely.\n *\n * @generated from enum value: TYPE_INT64 = 3;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"INT64\"] = 3] = \"INT64\";\n /**\n * @generated from enum value: TYPE_UINT64 = 4;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"UINT64\"] = 4] = \"UINT64\";\n /**\n * Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if\n * negative values are likely.\n *\n * @generated from enum value: TYPE_INT32 = 5;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"INT32\"] = 5] = \"INT32\";\n /**\n * @generated from enum value: TYPE_FIXED64 = 6;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"FIXED64\"] = 6] = \"FIXED64\";\n /**\n * @generated from enum value: TYPE_FIXED32 = 7;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"FIXED32\"] = 7] = \"FIXED32\";\n /**\n * @generated from enum value: TYPE_BOOL = 8;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"BOOL\"] = 8] = \"BOOL\";\n /**\n * @generated from enum value: TYPE_STRING = 9;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"STRING\"] = 9] = \"STRING\";\n /**\n * Tag-delimited aggregate.\n * Group type is deprecated and not supported after google.protobuf. However, Proto3\n * implementations should still be able to parse the group wire format and\n * treat group fields as unknown fields. In Editions, the group wire format\n * can be enabled via the `message_encoding` feature.\n *\n * @generated from enum value: TYPE_GROUP = 10;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"GROUP\"] = 10] = \"GROUP\";\n /**\n * Length-delimited aggregate.\n *\n * @generated from enum value: TYPE_MESSAGE = 11;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"MESSAGE\"] = 11] = \"MESSAGE\";\n /**\n * New in version 2.\n *\n * @generated from enum value: TYPE_BYTES = 12;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"BYTES\"] = 12] = \"BYTES\";\n /**\n * @generated from enum value: TYPE_UINT32 = 13;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"UINT32\"] = 13] = \"UINT32\";\n /**\n * @generated from enum value: TYPE_ENUM = 14;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"ENUM\"] = 14] = \"ENUM\";\n /**\n * @generated from enum value: TYPE_SFIXED32 = 15;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"SFIXED32\"] = 15] = \"SFIXED32\";\n /**\n * @generated from enum value: TYPE_SFIXED64 = 16;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"SFIXED64\"] = 16] = \"SFIXED64\";\n /**\n * Uses ZigZag encoding.\n *\n * @generated from enum value: TYPE_SINT32 = 17;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"SINT32\"] = 17] = \"SINT32\";\n /**\n * Uses ZigZag encoding.\n *\n * @generated from enum value: TYPE_SINT64 = 18;\n */\n FieldDescriptorProto_Type[FieldDescriptorProto_Type[\"SINT64\"] = 18] = \"SINT64\";\n})(FieldDescriptorProto_Type || (FieldDescriptorProto_Type = {}));\n/**\n * Describes the enum google.protobuf.FieldDescriptorProto.Type.\n */\nconst FieldDescriptorProto_TypeSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 4, 0);\n/**\n * @generated from enum google.protobuf.FieldDescriptorProto.Label\n */\nvar FieldDescriptorProto_Label;\n(function (FieldDescriptorProto_Label) {\n /**\n * 0 is reserved for errors\n *\n * @generated from enum value: LABEL_OPTIONAL = 1;\n */\n FieldDescriptorProto_Label[FieldDescriptorProto_Label[\"OPTIONAL\"] = 1] = \"OPTIONAL\";\n /**\n * @generated from enum value: LABEL_REPEATED = 3;\n */\n FieldDescriptorProto_Label[FieldDescriptorProto_Label[\"REPEATED\"] = 3] = \"REPEATED\";\n /**\n * The required label is only allowed in google.protobuf. In proto3 and Editions\n * it's explicitly prohibited. In Editions, the `field_presence` feature\n * can be used to get this behavior.\n *\n * @generated from enum value: LABEL_REQUIRED = 2;\n */\n FieldDescriptorProto_Label[FieldDescriptorProto_Label[\"REQUIRED\"] = 2] = \"REQUIRED\";\n})(FieldDescriptorProto_Label || (FieldDescriptorProto_Label = {}));\n/**\n * Describes the enum google.protobuf.FieldDescriptorProto.Label.\n */\nconst FieldDescriptorProto_LabelSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 4, 1);\n/**\n * Describes the message google.protobuf.OneofDescriptorProto.\n * Use `create(OneofDescriptorProtoSchema)` to create a new message.\n */\nconst OneofDescriptorProtoSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 5);\n/**\n * Describes the message google.protobuf.EnumDescriptorProto.\n * Use `create(EnumDescriptorProtoSchema)` to create a new message.\n */\nconst EnumDescriptorProtoSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 6);\n/**\n * Describes the message google.protobuf.EnumDescriptorProto.EnumReservedRange.\n * Use `create(EnumDescriptorProto_EnumReservedRangeSchema)` to create a new message.\n */\nconst EnumDescriptorProto_EnumReservedRangeSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 6, 0);\n/**\n * Describes the message google.protobuf.EnumValueDescriptorProto.\n * Use `create(EnumValueDescriptorProtoSchema)` to create a new message.\n */\nconst EnumValueDescriptorProtoSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 7);\n/**\n * Describes the message google.protobuf.ServiceDescriptorProto.\n * Use `create(ServiceDescriptorProtoSchema)` to create a new message.\n */\nconst ServiceDescriptorProtoSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 8);\n/**\n * Describes the message google.protobuf.MethodDescriptorProto.\n * Use `create(MethodDescriptorProtoSchema)` to create a new message.\n */\nconst MethodDescriptorProtoSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 9);\n/**\n * Describes the message google.protobuf.FileOptions.\n * Use `create(FileOptionsSchema)` to create a new message.\n */\nconst FileOptionsSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 10);\n/**\n * Generated classes can be optimized for speed or code size.\n *\n * @generated from enum google.protobuf.FileOptions.OptimizeMode\n */\nvar FileOptions_OptimizeMode;\n(function (FileOptions_OptimizeMode) {\n /**\n * Generate complete code for parsing, serialization,\n *\n * @generated from enum value: SPEED = 1;\n */\n FileOptions_OptimizeMode[FileOptions_OptimizeMode[\"SPEED\"] = 1] = \"SPEED\";\n /**\n * etc.\n *\n * Use ReflectionOps to implement these methods.\n *\n * @generated from enum value: CODE_SIZE = 2;\n */\n FileOptions_OptimizeMode[FileOptions_OptimizeMode[\"CODE_SIZE\"] = 2] = \"CODE_SIZE\";\n /**\n * Generate code using MessageLite and the lite runtime.\n *\n * @generated from enum value: LITE_RUNTIME = 3;\n */\n FileOptions_OptimizeMode[FileOptions_OptimizeMode[\"LITE_RUNTIME\"] = 3] = \"LITE_RUNTIME\";\n})(FileOptions_OptimizeMode || (FileOptions_OptimizeMode = {}));\n/**\n * Describes the enum google.protobuf.FileOptions.OptimizeMode.\n */\nconst FileOptions_OptimizeModeSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 10, 0);\n/**\n * Describes the message google.protobuf.MessageOptions.\n * Use `create(MessageOptionsSchema)` to create a new message.\n */\nconst MessageOptionsSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 11);\n/**\n * Describes the message google.protobuf.FieldOptions.\n * Use `create(FieldOptionsSchema)` to create a new message.\n */\nconst FieldOptionsSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 12);\n/**\n * Describes the message google.protobuf.FieldOptions.EditionDefault.\n * Use `create(FieldOptions_EditionDefaultSchema)` to create a new message.\n */\nconst FieldOptions_EditionDefaultSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 12, 0);\n/**\n * Describes the message google.protobuf.FieldOptions.FeatureSupport.\n * Use `create(FieldOptions_FeatureSupportSchema)` to create a new message.\n */\nconst FieldOptions_FeatureSupportSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 12, 1);\n/**\n * @generated from enum google.protobuf.FieldOptions.CType\n */\nvar FieldOptions_CType;\n(function (FieldOptions_CType) {\n /**\n * Default mode.\n *\n * @generated from enum value: STRING = 0;\n */\n FieldOptions_CType[FieldOptions_CType[\"STRING\"] = 0] = \"STRING\";\n /**\n * The option [ctype=CORD] may be applied to a non-repeated field of type\n * \"bytes\". It indicates that in C++, the data should be stored in a Cord\n * instead of a string. For very large strings, this may reduce memory\n * fragmentation. It may also allow better performance when parsing from a\n * Cord, or when parsing with aliasing enabled, as the parsed Cord may then\n * alias the original buffer.\n *\n * @generated from enum value: CORD = 1;\n */\n FieldOptions_CType[FieldOptions_CType[\"CORD\"] = 1] = \"CORD\";\n /**\n * @generated from enum value: STRING_PIECE = 2;\n */\n FieldOptions_CType[FieldOptions_CType[\"STRING_PIECE\"] = 2] = \"STRING_PIECE\";\n})(FieldOptions_CType || (FieldOptions_CType = {}));\n/**\n * Describes the enum google.protobuf.FieldOptions.CType.\n */\nconst FieldOptions_CTypeSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 12, 0);\n/**\n * @generated from enum google.protobuf.FieldOptions.JSType\n */\nvar FieldOptions_JSType;\n(function (FieldOptions_JSType) {\n /**\n * Use the default type.\n *\n * @generated from enum value: JS_NORMAL = 0;\n */\n FieldOptions_JSType[FieldOptions_JSType[\"JS_NORMAL\"] = 0] = \"JS_NORMAL\";\n /**\n * Use JavaScript strings.\n *\n * @generated from enum value: JS_STRING = 1;\n */\n FieldOptions_JSType[FieldOptions_JSType[\"JS_STRING\"] = 1] = \"JS_STRING\";\n /**\n * Use JavaScript numbers.\n *\n * @generated from enum value: JS_NUMBER = 2;\n */\n FieldOptions_JSType[FieldOptions_JSType[\"JS_NUMBER\"] = 2] = \"JS_NUMBER\";\n})(FieldOptions_JSType || (FieldOptions_JSType = {}));\n/**\n * Describes the enum google.protobuf.FieldOptions.JSType.\n */\nconst FieldOptions_JSTypeSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 12, 1);\n/**\n * If set to RETENTION_SOURCE, the option will be omitted from the binary.\n * Note: as of January 2023, support for this is in progress and does not yet\n * have an effect (b/264593489).\n *\n * @generated from enum google.protobuf.FieldOptions.OptionRetention\n */\nvar FieldOptions_OptionRetention;\n(function (FieldOptions_OptionRetention) {\n /**\n * @generated from enum value: RETENTION_UNKNOWN = 0;\n */\n FieldOptions_OptionRetention[FieldOptions_OptionRetention[\"RETENTION_UNKNOWN\"] = 0] = \"RETENTION_UNKNOWN\";\n /**\n * @generated from enum value: RETENTION_RUNTIME = 1;\n */\n FieldOptions_OptionRetention[FieldOptions_OptionRetention[\"RETENTION_RUNTIME\"] = 1] = \"RETENTION_RUNTIME\";\n /**\n * @generated from enum value: RETENTION_SOURCE = 2;\n */\n FieldOptions_OptionRetention[FieldOptions_OptionRetention[\"RETENTION_SOURCE\"] = 2] = \"RETENTION_SOURCE\";\n})(FieldOptions_OptionRetention || (FieldOptions_OptionRetention = {}));\n/**\n * Describes the enum google.protobuf.FieldOptions.OptionRetention.\n */\nconst FieldOptions_OptionRetentionSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 12, 2);\n/**\n * This indicates the types of entities that the field may apply to when used\n * as an option. If it is unset, then the field may be freely used as an\n * option on any kind of entity. Note: as of January 2023, support for this is\n * in progress and does not yet have an effect (b/264593489).\n *\n * @generated from enum google.protobuf.FieldOptions.OptionTargetType\n */\nvar FieldOptions_OptionTargetType;\n(function (FieldOptions_OptionTargetType) {\n /**\n * @generated from enum value: TARGET_TYPE_UNKNOWN = 0;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_UNKNOWN\"] = 0] = \"TARGET_TYPE_UNKNOWN\";\n /**\n * @generated from enum value: TARGET_TYPE_FILE = 1;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_FILE\"] = 1] = \"TARGET_TYPE_FILE\";\n /**\n * @generated from enum value: TARGET_TYPE_EXTENSION_RANGE = 2;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_EXTENSION_RANGE\"] = 2] = \"TARGET_TYPE_EXTENSION_RANGE\";\n /**\n * @generated from enum value: TARGET_TYPE_MESSAGE = 3;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_MESSAGE\"] = 3] = \"TARGET_TYPE_MESSAGE\";\n /**\n * @generated from enum value: TARGET_TYPE_FIELD = 4;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_FIELD\"] = 4] = \"TARGET_TYPE_FIELD\";\n /**\n * @generated from enum value: TARGET_TYPE_ONEOF = 5;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_ONEOF\"] = 5] = \"TARGET_TYPE_ONEOF\";\n /**\n * @generated from enum value: TARGET_TYPE_ENUM = 6;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_ENUM\"] = 6] = \"TARGET_TYPE_ENUM\";\n /**\n * @generated from enum value: TARGET_TYPE_ENUM_ENTRY = 7;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_ENUM_ENTRY\"] = 7] = \"TARGET_TYPE_ENUM_ENTRY\";\n /**\n * @generated from enum value: TARGET_TYPE_SERVICE = 8;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_SERVICE\"] = 8] = \"TARGET_TYPE_SERVICE\";\n /**\n * @generated from enum value: TARGET_TYPE_METHOD = 9;\n */\n FieldOptions_OptionTargetType[FieldOptions_OptionTargetType[\"TARGET_TYPE_METHOD\"] = 9] = \"TARGET_TYPE_METHOD\";\n})(FieldOptions_OptionTargetType || (FieldOptions_OptionTargetType = {}));\n/**\n * Describes the enum google.protobuf.FieldOptions.OptionTargetType.\n */\nconst FieldOptions_OptionTargetTypeSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 12, 3);\n/**\n * Describes the message google.protobuf.OneofOptions.\n * Use `create(OneofOptionsSchema)` to create a new message.\n */\nconst OneofOptionsSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 13);\n/**\n * Describes the message google.protobuf.EnumOptions.\n * Use `create(EnumOptionsSchema)` to create a new message.\n */\nconst EnumOptionsSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 14);\n/**\n * Describes the message google.protobuf.EnumValueOptions.\n * Use `create(EnumValueOptionsSchema)` to create a new message.\n */\nconst EnumValueOptionsSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 15);\n/**\n * Describes the message google.protobuf.ServiceOptions.\n * Use `create(ServiceOptionsSchema)` to create a new message.\n */\nconst ServiceOptionsSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 16);\n/**\n * Describes the message google.protobuf.MethodOptions.\n * Use `create(MethodOptionsSchema)` to create a new message.\n */\nconst MethodOptionsSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 17);\n/**\n * Is this method side-effect-free (or safe in HTTP parlance), or idempotent,\n * or neither? HTTP based RPC implementation may choose GET verb for safe\n * methods, and PUT verb for idempotent methods instead of the default POST.\n *\n * @generated from enum google.protobuf.MethodOptions.IdempotencyLevel\n */\nvar MethodOptions_IdempotencyLevel;\n(function (MethodOptions_IdempotencyLevel) {\n /**\n * @generated from enum value: IDEMPOTENCY_UNKNOWN = 0;\n */\n MethodOptions_IdempotencyLevel[MethodOptions_IdempotencyLevel[\"IDEMPOTENCY_UNKNOWN\"] = 0] = \"IDEMPOTENCY_UNKNOWN\";\n /**\n * implies idempotent\n *\n * @generated from enum value: NO_SIDE_EFFECTS = 1;\n */\n MethodOptions_IdempotencyLevel[MethodOptions_IdempotencyLevel[\"NO_SIDE_EFFECTS\"] = 1] = \"NO_SIDE_EFFECTS\";\n /**\n * idempotent, but may have side effects\n *\n * @generated from enum value: IDEMPOTENT = 2;\n */\n MethodOptions_IdempotencyLevel[MethodOptions_IdempotencyLevel[\"IDEMPOTENT\"] = 2] = \"IDEMPOTENT\";\n})(MethodOptions_IdempotencyLevel || (MethodOptions_IdempotencyLevel = {}));\n/**\n * Describes the enum google.protobuf.MethodOptions.IdempotencyLevel.\n */\nconst MethodOptions_IdempotencyLevelSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 17, 0);\n/**\n * Describes the message google.protobuf.UninterpretedOption.\n * Use `create(UninterpretedOptionSchema)` to create a new message.\n */\nconst UninterpretedOptionSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 18);\n/**\n * Describes the message google.protobuf.UninterpretedOption.NamePart.\n * Use `create(UninterpretedOption_NamePartSchema)` to create a new message.\n */\nconst UninterpretedOption_NamePartSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 18, 0);\n/**\n * Describes the message google.protobuf.FeatureSet.\n * Use `create(FeatureSetSchema)` to create a new message.\n */\nconst FeatureSetSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 19);\n/**\n * @generated from enum google.protobuf.FeatureSet.FieldPresence\n */\nvar FeatureSet_FieldPresence;\n(function (FeatureSet_FieldPresence) {\n /**\n * @generated from enum value: FIELD_PRESENCE_UNKNOWN = 0;\n */\n FeatureSet_FieldPresence[FeatureSet_FieldPresence[\"FIELD_PRESENCE_UNKNOWN\"] = 0] = \"FIELD_PRESENCE_UNKNOWN\";\n /**\n * @generated from enum value: EXPLICIT = 1;\n */\n FeatureSet_FieldPresence[FeatureSet_FieldPresence[\"EXPLICIT\"] = 1] = \"EXPLICIT\";\n /**\n * @generated from enum value: IMPLICIT = 2;\n */\n FeatureSet_FieldPresence[FeatureSet_FieldPresence[\"IMPLICIT\"] = 2] = \"IMPLICIT\";\n /**\n * @generated from enum value: LEGACY_REQUIRED = 3;\n */\n FeatureSet_FieldPresence[FeatureSet_FieldPresence[\"LEGACY_REQUIRED\"] = 3] = \"LEGACY_REQUIRED\";\n})(FeatureSet_FieldPresence || (FeatureSet_FieldPresence = {}));\n/**\n * Describes the enum google.protobuf.FeatureSet.FieldPresence.\n */\nconst FeatureSet_FieldPresenceSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 19, 0);\n/**\n * @generated from enum google.protobuf.FeatureSet.EnumType\n */\nvar FeatureSet_EnumType;\n(function (FeatureSet_EnumType) {\n /**\n * @generated from enum value: ENUM_TYPE_UNKNOWN = 0;\n */\n FeatureSet_EnumType[FeatureSet_EnumType[\"ENUM_TYPE_UNKNOWN\"] = 0] = \"ENUM_TYPE_UNKNOWN\";\n /**\n * @generated from enum value: OPEN = 1;\n */\n FeatureSet_EnumType[FeatureSet_EnumType[\"OPEN\"] = 1] = \"OPEN\";\n /**\n * @generated from enum value: CLOSED = 2;\n */\n FeatureSet_EnumType[FeatureSet_EnumType[\"CLOSED\"] = 2] = \"CLOSED\";\n})(FeatureSet_EnumType || (FeatureSet_EnumType = {}));\n/**\n * Describes the enum google.protobuf.FeatureSet.EnumType.\n */\nconst FeatureSet_EnumTypeSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 19, 1);\n/**\n * @generated from enum google.protobuf.FeatureSet.RepeatedFieldEncoding\n */\nvar FeatureSet_RepeatedFieldEncoding;\n(function (FeatureSet_RepeatedFieldEncoding) {\n /**\n * @generated from enum value: REPEATED_FIELD_ENCODING_UNKNOWN = 0;\n */\n FeatureSet_RepeatedFieldEncoding[FeatureSet_RepeatedFieldEncoding[\"REPEATED_FIELD_ENCODING_UNKNOWN\"] = 0] = \"REPEATED_FIELD_ENCODING_UNKNOWN\";\n /**\n * @generated from enum value: PACKED = 1;\n */\n FeatureSet_RepeatedFieldEncoding[FeatureSet_RepeatedFieldEncoding[\"PACKED\"] = 1] = \"PACKED\";\n /**\n * @generated from enum value: EXPANDED = 2;\n */\n FeatureSet_RepeatedFieldEncoding[FeatureSet_RepeatedFieldEncoding[\"EXPANDED\"] = 2] = \"EXPANDED\";\n})(FeatureSet_RepeatedFieldEncoding || (FeatureSet_RepeatedFieldEncoding = {}));\n/**\n * Describes the enum google.protobuf.FeatureSet.RepeatedFieldEncoding.\n */\nconst FeatureSet_RepeatedFieldEncodingSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 19, 2);\n/**\n * @generated from enum google.protobuf.FeatureSet.Utf8Validation\n */\nvar FeatureSet_Utf8Validation;\n(function (FeatureSet_Utf8Validation) {\n /**\n * @generated from enum value: UTF8_VALIDATION_UNKNOWN = 0;\n */\n FeatureSet_Utf8Validation[FeatureSet_Utf8Validation[\"UTF8_VALIDATION_UNKNOWN\"] = 0] = \"UTF8_VALIDATION_UNKNOWN\";\n /**\n * @generated from enum value: VERIFY = 2;\n */\n FeatureSet_Utf8Validation[FeatureSet_Utf8Validation[\"VERIFY\"] = 2] = \"VERIFY\";\n /**\n * @generated from enum value: NONE = 3;\n */\n FeatureSet_Utf8Validation[FeatureSet_Utf8Validation[\"NONE\"] = 3] = \"NONE\";\n})(FeatureSet_Utf8Validation || (FeatureSet_Utf8Validation = {}));\n/**\n * Describes the enum google.protobuf.FeatureSet.Utf8Validation.\n */\nconst FeatureSet_Utf8ValidationSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 19, 3);\n/**\n * @generated from enum google.protobuf.FeatureSet.MessageEncoding\n */\nvar FeatureSet_MessageEncoding;\n(function (FeatureSet_MessageEncoding) {\n /**\n * @generated from enum value: MESSAGE_ENCODING_UNKNOWN = 0;\n */\n FeatureSet_MessageEncoding[FeatureSet_MessageEncoding[\"MESSAGE_ENCODING_UNKNOWN\"] = 0] = \"MESSAGE_ENCODING_UNKNOWN\";\n /**\n * @generated from enum value: LENGTH_PREFIXED = 1;\n */\n FeatureSet_MessageEncoding[FeatureSet_MessageEncoding[\"LENGTH_PREFIXED\"] = 1] = \"LENGTH_PREFIXED\";\n /**\n * @generated from enum value: DELIMITED = 2;\n */\n FeatureSet_MessageEncoding[FeatureSet_MessageEncoding[\"DELIMITED\"] = 2] = \"DELIMITED\";\n})(FeatureSet_MessageEncoding || (FeatureSet_MessageEncoding = {}));\n/**\n * Describes the enum google.protobuf.FeatureSet.MessageEncoding.\n */\nconst FeatureSet_MessageEncodingSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 19, 4);\n/**\n * @generated from enum google.protobuf.FeatureSet.JsonFormat\n */\nvar FeatureSet_JsonFormat;\n(function (FeatureSet_JsonFormat) {\n /**\n * @generated from enum value: JSON_FORMAT_UNKNOWN = 0;\n */\n FeatureSet_JsonFormat[FeatureSet_JsonFormat[\"JSON_FORMAT_UNKNOWN\"] = 0] = \"JSON_FORMAT_UNKNOWN\";\n /**\n * @generated from enum value: ALLOW = 1;\n */\n FeatureSet_JsonFormat[FeatureSet_JsonFormat[\"ALLOW\"] = 1] = \"ALLOW\";\n /**\n * @generated from enum value: LEGACY_BEST_EFFORT = 2;\n */\n FeatureSet_JsonFormat[FeatureSet_JsonFormat[\"LEGACY_BEST_EFFORT\"] = 2] = \"LEGACY_BEST_EFFORT\";\n})(FeatureSet_JsonFormat || (FeatureSet_JsonFormat = {}));\n/**\n * Describes the enum google.protobuf.FeatureSet.JsonFormat.\n */\nconst FeatureSet_JsonFormatSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 19, 5);\n/**\n * Describes the message google.protobuf.FeatureSetDefaults.\n * Use `create(FeatureSetDefaultsSchema)` to create a new message.\n */\nconst FeatureSetDefaultsSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 20);\n/**\n * Describes the message google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.\n * Use `create(FeatureSetDefaults_FeatureSetEditionDefaultSchema)` to create a new message.\n */\nconst FeatureSetDefaults_FeatureSetEditionDefaultSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 20, 0);\n/**\n * Describes the message google.protobuf.SourceCodeInfo.\n * Use `create(SourceCodeInfoSchema)` to create a new message.\n */\nconst SourceCodeInfoSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 21);\n/**\n * Describes the message google.protobuf.SourceCodeInfo.Location.\n * Use `create(SourceCodeInfo_LocationSchema)` to create a new message.\n */\nconst SourceCodeInfo_LocationSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 21, 0);\n/**\n * Describes the message google.protobuf.GeneratedCodeInfo.\n * Use `create(GeneratedCodeInfoSchema)` to create a new message.\n */\nconst GeneratedCodeInfoSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 22);\n/**\n * Describes the message google.protobuf.GeneratedCodeInfo.Annotation.\n * Use `create(GeneratedCodeInfo_AnnotationSchema)` to create a new message.\n */\nconst GeneratedCodeInfo_AnnotationSchema = /*@__PURE__*/ (0,_codegenv1_message_js__WEBPACK_IMPORTED_MODULE_1__.messageDesc)(file_google_protobuf_descriptor, 22, 0);\n/**\n * Represents the identified object's effect on the element in the original\n * .proto file.\n *\n * @generated from enum google.protobuf.GeneratedCodeInfo.Annotation.Semantic\n */\nvar GeneratedCodeInfo_Annotation_Semantic;\n(function (GeneratedCodeInfo_Annotation_Semantic) {\n /**\n * There is no effect or the effect is indescribable.\n *\n * @generated from enum value: NONE = 0;\n */\n GeneratedCodeInfo_Annotation_Semantic[GeneratedCodeInfo_Annotation_Semantic[\"NONE\"] = 0] = \"NONE\";\n /**\n * The element is set or otherwise mutated.\n *\n * @generated from enum value: SET = 1;\n */\n GeneratedCodeInfo_Annotation_Semantic[GeneratedCodeInfo_Annotation_Semantic[\"SET\"] = 1] = \"SET\";\n /**\n * An alias to the element is returned.\n *\n * @generated from enum value: ALIAS = 2;\n */\n GeneratedCodeInfo_Annotation_Semantic[GeneratedCodeInfo_Annotation_Semantic[\"ALIAS\"] = 2] = \"ALIAS\";\n})(GeneratedCodeInfo_Annotation_Semantic || (GeneratedCodeInfo_Annotation_Semantic = {}));\n/**\n * Describes the enum google.protobuf.GeneratedCodeInfo.Annotation.Semantic.\n */\nconst GeneratedCodeInfo_Annotation_SemanticSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 22, 0, 0);\n/**\n * The full set of known editions.\n *\n * @generated from enum google.protobuf.Edition\n */\nvar Edition;\n(function (Edition) {\n /**\n * A placeholder for an unknown edition value.\n *\n * @generated from enum value: EDITION_UNKNOWN = 0;\n */\n Edition[Edition[\"EDITION_UNKNOWN\"] = 0] = \"EDITION_UNKNOWN\";\n /**\n * A placeholder edition for specifying default behaviors *before* a feature\n * was first introduced. This is effectively an \"infinite past\".\n *\n * @generated from enum value: EDITION_LEGACY = 900;\n */\n Edition[Edition[\"EDITION_LEGACY\"] = 900] = \"EDITION_LEGACY\";\n /**\n * Legacy syntax \"editions\". These pre-date editions, but behave much like\n * distinct editions. These can't be used to specify the edition of proto\n * files, but feature definitions must supply proto2/proto3 defaults for\n * backwards compatibility.\n *\n * @generated from enum value: EDITION_PROTO2 = 998;\n */\n Edition[Edition[\"EDITION_PROTO2\"] = 998] = \"EDITION_PROTO2\";\n /**\n * @generated from enum value: EDITION_PROTO3 = 999;\n */\n Edition[Edition[\"EDITION_PROTO3\"] = 999] = \"EDITION_PROTO3\";\n /**\n * Editions that have been released. The specific values are arbitrary and\n * should not be depended on, but they will always be time-ordered for easy\n * comparison.\n *\n * @generated from enum value: EDITION_2023 = 1000;\n */\n Edition[Edition[\"EDITION_2023\"] = 1000] = \"EDITION_2023\";\n /**\n * @generated from enum value: EDITION_2024 = 1001;\n */\n Edition[Edition[\"EDITION_2024\"] = 1001] = \"EDITION_2024\";\n /**\n * Placeholder editions for testing feature resolution. These should not be\n * used or relyed on outside of tests.\n *\n * @generated from enum value: EDITION_1_TEST_ONLY = 1;\n */\n Edition[Edition[\"EDITION_1_TEST_ONLY\"] = 1] = \"EDITION_1_TEST_ONLY\";\n /**\n * @generated from enum value: EDITION_2_TEST_ONLY = 2;\n */\n Edition[Edition[\"EDITION_2_TEST_ONLY\"] = 2] = \"EDITION_2_TEST_ONLY\";\n /**\n * @generated from enum value: EDITION_99997_TEST_ONLY = 99997;\n */\n Edition[Edition[\"EDITION_99997_TEST_ONLY\"] = 99997] = \"EDITION_99997_TEST_ONLY\";\n /**\n * @generated from enum value: EDITION_99998_TEST_ONLY = 99998;\n */\n Edition[Edition[\"EDITION_99998_TEST_ONLY\"] = 99998] = \"EDITION_99998_TEST_ONLY\";\n /**\n * @generated from enum value: EDITION_99999_TEST_ONLY = 99999;\n */\n Edition[Edition[\"EDITION_99999_TEST_ONLY\"] = 99999] = \"EDITION_99999_TEST_ONLY\";\n /**\n * Placeholder for specifying unbounded edition support. This should only\n * ever be used by plugins that can expect to never require any changes to\n * support a new edition.\n *\n * @generated from enum value: EDITION_MAX = 2147483647;\n */\n Edition[Edition[\"EDITION_MAX\"] = 2147483647] = \"EDITION_MAX\";\n})(Edition || (Edition = {}));\n/**\n * Describes the enum google.protobuf.Edition.\n */\nconst EditionSchema = /*@__PURE__*/ (0,_codegenv1_enum_js__WEBPACK_IMPORTED_MODULE_2__.enumDesc)(file_google_protobuf_descriptor, 0);\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/descriptor_pb.js?");
680
370
 
681
371
  /***/ }),
682
372
 
683
- /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/wrappers.js":
373
+ /***/ "./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wkt/wrappers.js":
684
374
  /*!**************************************************************************************************************!*\
685
- !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/wrappers.js ***!
375
+ !*** ./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wkt/wrappers.js ***!
686
376
  \**************************************************************************************************************/
687
- /***/ ((__unused_webpack_module, exports) => {
377
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
688
378
 
689
- eval("\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.isWrapper = isWrapper;\nexports.isWrapperDesc = isWrapperDesc;\nfunction isWrapper(arg) {\n return isWrapperTypeName(arg.$typeName);\n}\nfunction isWrapperDesc(messageDesc) {\n const f = messageDesc.fields[0];\n return (isWrapperTypeName(messageDesc.typeName) &&\n f !== undefined &&\n f.fieldKind == \"scalar\" &&\n f.name == \"value\" &&\n f.number == 1);\n}\nfunction isWrapperTypeName(name) {\n return (name.startsWith(\"google.protobuf.\") &&\n [\n \"DoubleValue\",\n \"FloatValue\",\n \"Int64Value\",\n \"UInt64Value\",\n \"Int32Value\",\n \"UInt32Value\",\n \"BoolValue\",\n \"StringValue\",\n \"BytesValue\",\n ].includes(name.substring(16)));\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/cjs/wkt/wrappers.js?");
379
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ isWrapper: () => (/* binding */ isWrapper),\n/* harmony export */ isWrapperDesc: () => (/* binding */ isWrapperDesc)\n/* harmony export */ });\n// Copyright 2021-2024 Buf Technologies, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\nfunction isWrapper(arg) {\n return isWrapperTypeName(arg.$typeName);\n}\nfunction isWrapperDesc(messageDesc) {\n const f = messageDesc.fields[0];\n return (isWrapperTypeName(messageDesc.typeName) &&\n f !== undefined &&\n f.fieldKind == \"scalar\" &&\n f.name == \"value\" &&\n f.number == 1);\n}\nfunction isWrapperTypeName(name) {\n return (name.startsWith(\"google.protobuf.\") &&\n [\n \"DoubleValue\",\n \"FloatValue\",\n \"Int64Value\",\n \"UInt64Value\",\n \"Int32Value\",\n \"UInt32Value\",\n \"BoolValue\",\n \"StringValue\",\n \"BytesValue\",\n ].includes(name.substring(16)));\n}\n\n\n//# sourceURL=webpack://PW/./node_modules/.pnpm/@bufbuild+protobuf@2.2.3/node_modules/@bufbuild/protobuf/dist/esm/wkt/wrappers.js?");
690
380
 
691
381
  /***/ }),
692
382
 
@@ -740,7 +430,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
740
430
  /******/ };
741
431
  /******/
742
432
  /******/ // Execute the module function
743
- /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
433
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
744
434
  /******/
745
435
  /******/ // Return the exports of the module
746
436
  /******/ return module.exports;
@@ -780,7 +470,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
780
470
  /******/ // startup
781
471
  /******/ // Load entry module and return exports
782
472
  /******/ // This entry module can't be inlined because the eval devtool is used.
783
- /******/ var __webpack_exports__ = __webpack_require__("./dist/index.js");
473
+ /******/ var __webpack_exports__ = __webpack_require__("./esm/index.js");
784
474
  /******/
785
475
  /******/ return __webpack_exports__;
786
476
  /******/ })()