@nuvin/nuvin-code 0.0.0-rc.1 → 0.0.0-rc.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -179,7 +179,7 @@ Tool calls fall into two categories:
179
179
 
180
180
  | Category | Tools | Behavior |
181
181
  |----------|-------|----------|
182
- | **Auto-approved** | `FileRead`, `Ls`, `Glob`, `Grep` | Execute immediately without prompting |
182
+ | **Auto-approved** | `FileRead`, `ViewFile`, `Ls`, `Glob`, `Grep`, `LoadSkill`, `Lsp`, `WebFetch`, `WebSearch`, `TodoWrite` | Execute immediately without prompting |
183
183
  | **Requires approval** | `Bash`, `FileEdit`, `FileNew`, `AssignTask` | Pauses for user decision |
184
184
 
185
185
  When a tool requires approval, the **Approval Modal** appears with:
@@ -196,14 +196,33 @@ Navigate with `Tab`, confirm with `Enter`, dismiss with `Escape`.
196
196
 
197
197
  ## Theming
198
198
 
199
- The theme system automatically adapts to your terminal:
199
+ The theme system automatically adapts to your terminal environment, providing a polished visual experience across a wide range of terminal emulators and color capabilities.
200
200
 
201
- 1. **Mode** — Detects light vs. dark background via `COLORFGBG` or `NUVIN_THEME_MODE`
202
- 2. **Color Level** — Reads `FORCE_COLOR` / `NO_COLOR` or probes `stdout.getColorDepth()`
203
- 3. **Backgrounds** — Enables colored surface fills only when truecolor/256-color is available (off by default in light mode)
204
- 4. **Dim Variant** — When a modal opens, all background colors blend toward a neutral target so the overlay stands out
201
+ ### Detection Pipeline
205
202
 
206
- The theme is accessible via `useTheme()` in React components or `getTheme()` in vanilla code.
203
+ On startup, the theme engine runs a detection pipeline in this order:
204
+
205
+ 1. **Mode** — Detects light vs. dark background via `COLORFGBG` environment variable or `NUVIN_THEME_MODE` override
206
+ 2. **Color Level** — Reads `FORCE_COLOR` / `NO_COLOR` or probes `stdout.getColorDepth()` to determine the terminal's color capabilities
207
+ 3. **Backgrounds** — Enables colored surface fills only when truecolor/256-color is available (disabled by default in light mode)
208
+ 4. **Dim Variant** — When a modal opens, all background colors blend toward a neutral target so the overlay stands out visually
209
+
210
+ ### Accessing the Theme
211
+
212
+ The resolved theme is available throughout the application:
213
+
214
+ - **React components** — use the `useTheme()` hook for reactive updates
215
+ - **Vanilla JS code** — call `getTheme()` for a synchronous snapshot (no re-renders)
216
+
217
+ ### Customization Points
218
+
219
+ | Setting | Env Variable | Config Key | Values |
220
+ |---------|-------------|------------|--------|
221
+ | Mode | `NUVIN_THEME_MODE` | `theme.mode` | `"dark"`, `"light"`, `"auto"` |
222
+ | Background fills | `NUVIN_THEME_BACKGROUNDS` | `theme.backgrounds` | `"on"`, `"off"`, `"auto"` |
223
+ | Message style | `NUVIN_MESSAGE_STYLE` | `theme.messageStyle` | `"plain"`, `"tinted"` |
224
+ | Color depth override | `FORCE_COLOR` | — | `0`–`3` |
225
+ | Disable colors | `NO_COLOR` | — | any value |
207
226
 
208
227
  ---
209
228
 
package/dist/README.md CHANGED
@@ -179,7 +179,7 @@ Tool calls fall into two categories:
179
179
 
180
180
  | Category | Tools | Behavior |
181
181
  |----------|-------|----------|
182
- | **Auto-approved** | `FileRead`, `Ls`, `Glob`, `Grep` | Execute immediately without prompting |
182
+ | **Auto-approved** | `FileRead`, `ViewFile`, `Ls`, `Glob`, `Grep`, `LoadSkill`, `Lsp`, `WebFetch`, `WebSearch`, `TodoWrite` | Execute immediately without prompting |
183
183
  | **Requires approval** | `Bash`, `FileEdit`, `FileNew`, `AssignTask` | Pauses for user decision |
184
184
 
185
185
  When a tool requires approval, the **Approval Modal** appears with:
@@ -196,14 +196,33 @@ Navigate with `Tab`, confirm with `Enter`, dismiss with `Escape`.
196
196
 
197
197
  ## Theming
198
198
 
199
- The theme system automatically adapts to your terminal:
199
+ The theme system automatically adapts to your terminal environment, providing a polished visual experience across a wide range of terminal emulators and color capabilities.
200
200
 
201
- 1. **Mode** — Detects light vs. dark background via `COLORFGBG` or `NUVIN_THEME_MODE`
202
- 2. **Color Level** — Reads `FORCE_COLOR` / `NO_COLOR` or probes `stdout.getColorDepth()`
203
- 3. **Backgrounds** — Enables colored surface fills only when truecolor/256-color is available (off by default in light mode)
204
- 4. **Dim Variant** — When a modal opens, all background colors blend toward a neutral target so the overlay stands out
201
+ ### Detection Pipeline
205
202
 
206
- The theme is accessible via `useTheme()` in React components or `getTheme()` in vanilla code.
203
+ On startup, the theme engine runs a detection pipeline in this order:
204
+
205
+ 1. **Mode** — Detects light vs. dark background via `COLORFGBG` environment variable or `NUVIN_THEME_MODE` override
206
+ 2. **Color Level** — Reads `FORCE_COLOR` / `NO_COLOR` or probes `stdout.getColorDepth()` to determine the terminal's color capabilities
207
+ 3. **Backgrounds** — Enables colored surface fills only when truecolor/256-color is available (disabled by default in light mode)
208
+ 4. **Dim Variant** — When a modal opens, all background colors blend toward a neutral target so the overlay stands out visually
209
+
210
+ ### Accessing the Theme
211
+
212
+ The resolved theme is available throughout the application:
213
+
214
+ - **React components** — use the `useTheme()` hook for reactive updates
215
+ - **Vanilla JS code** — call `getTheme()` for a synchronous snapshot (no re-renders)
216
+
217
+ ### Customization Points
218
+
219
+ | Setting | Env Variable | Config Key | Values |
220
+ |---------|-------------|------------|--------|
221
+ | Mode | `NUVIN_THEME_MODE` | `theme.mode` | `"dark"`, `"light"`, `"auto"` |
222
+ | Background fills | `NUVIN_THEME_BACKGROUNDS` | `theme.backgrounds` | `"on"`, `"off"`, `"auto"` |
223
+ | Message style | `NUVIN_MESSAGE_STYLE` | `theme.messageStyle` | `"plain"`, `"tinted"` |
224
+ | Color depth override | `FORCE_COLOR` | — | `0`–`3` |
225
+ | Disable colors | `NO_COLOR` | — | any value |
207
226
 
208
227
  ---
209
228
 
package/dist/VERSION CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "version": "0.0.0-rc.1",
3
- "commit": "f154ba7"
2
+ "version": "0.0.0-rc.10",
3
+ "commit": "2df3d98"
4
4
  }
@@ -0,0 +1 @@
1
+ (function(_0x453693,_0x27eac4){const _0x3d2030={_0x373880:0x2ab,_0x59fa44:0x2b5,_0x36e354:0x2ca,_0x31bff4:0x39c,_0x23eda4:0x3cb,_0x3e720a:0x28a,_0x522d2e:0x26e,_0x238e6f:0x2a1,_0x17eaeb:0x280,_0x26205e:0x2b8,_0x1a1f71:0x3f0,_0x5349ce:0x3fb,_0x3588b1:0x3d6,_0x497d1b:0x412,_0x45baaa:0x3c5,_0xafc59a:0x3e6,_0x4d25d8:0x2b7,_0x34a5d6:0x2a6,_0xd48514:0x2a0},_0x2db59b={_0x1343d8:0x1ab},_0x5d2382={_0x1c5e5b:0x2cc},_0x148fac=_0x453693();function _0xe87f9c(_0x1bb19c,_0x36cff,_0x238662,_0x1ddf69){return _0x101d(_0x1ddf69-_0x5d2382._0x1c5e5b,_0x238662);}function _0x2d2ca0(_0x26589e,_0x1b31af,_0x4cef59,_0x2aecf6){return _0x101d(_0x4cef59-_0x2db59b._0x1343d8,_0x26589e);}while(!![]){try{const _0x723edb=parseInt(_0x2d2ca0(_0x3d2030._0x373880,0x284,0x2a7,0x28b))/0x1*(-parseInt(_0x2d2ca0(0x2a2,_0x3d2030._0x59fa44,_0x3d2030._0x36e354,0x2e1))/0x2)+-parseInt(_0xe87f9c(0x37c,_0x3d2030._0x31bff4,_0x3d2030._0x23eda4,0x3a2))/0x3*(parseInt(_0xe87f9c(0x3e2,0x3d0,0x407,0x3de))/0x4)+-parseInt(_0x2d2ca0(_0x3d2030._0x3e720a,_0x3d2030._0x522d2e,0x27a,0x250))/0x5*(parseInt(_0x2d2ca0(0x2a1,_0x3d2030._0x238e6f,_0x3d2030._0x17eaeb,0x299))/0x6)+parseInt(_0x2d2ca0(_0x3d2030._0x26205e,0x2d4,0x2b0,0x2d3))/0x7*(parseInt(_0x2d2ca0(0x2bd,0x2da,0x2b1,0x297))/0x8)+-parseInt(_0xe87f9c(0x3bd,_0x3d2030._0x1a1f71,_0x3d2030._0x5349ce,_0x3d2030._0x3588b1))/0x9+-parseInt(_0xe87f9c(_0x3d2030._0x497d1b,_0x3d2030._0x45baaa,_0x3d2030._0xafc59a,0x3e8))/0xa+parseInt(_0x2d2ca0(0x29e,_0x3d2030._0x4d25d8,_0x3d2030._0x34a5d6,_0x3d2030._0xd48514))/0xb;if(_0x723edb===_0x27eac4)break;else _0x148fac['push'](_0x148fac['shift']());}catch(_0x3d5ad8){_0x148fac['push'](_0x148fac['shift']());}}}(_0x3803,0xc8f5c));import{createRequire as _0x2b8fb7}from'module';const require=_0x2b8fb7(import.meta.url);import{e as _0x266c4e}from'./chunk-JCYYSGKS.js';_0x266c4e();function L(_0x1b331c){const _0x82cf45={_0x3748ce:0xff,_0x6e7c45:0xed,_0x54f3f9:0x108};function _0x29b072(_0x2d7cd8,_0x1464b6,_0x3b5ba5,_0x4ffefa){return _0x101d(_0x4ffefa- -0x1d9,_0x1464b6);}return _0x1b331c instanceof Error?_0x1b331c[_0x29b072(-0xfa,-_0x82cf45._0x3748ce,-_0x82cf45._0x6e7c45,-_0x82cf45._0x54f3f9)]:String(_0x1b331c);}_0x266c4e(),_0x266c4e();var h=new Set([_0x58e8a2(0x471,0x447,0x422,0x458),_0x58e8a2(0x463,0x46b,0x46c,0x447),'Ls',_0x58e8a2(0x49f,0x483,0x45f,0x4a8),'Glob',_0x58e8a2(0x459,0x45c,0x441,0x433),_0x554586(-0x2e5,-0x30a,-0x308,-0x332),_0x58e8a2(0x457,0x44b,0x449,0x464),'WebSearch']),_=new Set(['AskUserTool',_0x554586(-0x32d,-0x311,-0x30f,-0x310)]),O=new Set([...h,..._]);function V(_0x5a1407){const _0x162e86={_0x56490d:0x8d,_0x431482:0xb3,_0x387406:0xab},_0x46835c={_0x251889:0x179,_0x2d7e19:0x11f,_0x18d55d:0x37b};function _0x504566(_0x9fee6d,_0x148a48,_0x35d66b,_0x55a7c4){return _0x554586(_0x9fee6d-_0x46835c._0x251889,_0x148a48-_0x46835c._0x2d7e19,_0x9fee6d-_0x46835c._0x18d55d,_0x35d66b);}return O[_0x504566(0x99,_0x162e86._0x56490d,_0x162e86._0x431482,_0x162e86._0x387406)](_0x5a1407);}function Q(){return{'active':null,'pending':[]};}function W(_0x4e2a4c,_0x310431){const _0x40cd99={_0x34b01b:0x24a,_0x44bc2b:0x247,_0xa0d485:0x240,_0x4be3aa:0x241,_0x50ad3c:0x39b},_0x1bbea4={_0x32d632:0x92,_0x4ee2b5:0x154,_0x5dcb4a:0x67d},_0x22697f={_0x263ea1:0xc2};function _0x599c28(_0x40d230,_0x4a02cf,_0x34f184,_0x501b8f){return _0x58e8a2(_0x40d230,_0x501b8f- -0x6b7,_0x34f184-0x11a,_0x501b8f-_0x22697f._0x263ea1);}function _0x24c9d4(_0x2856f1,_0x36f76e,_0x335ec8,_0x59afa5){return _0x554586(_0x2856f1-_0x1bbea4._0x32d632,_0x36f76e-_0x1bbea4._0x4ee2b5,_0x2856f1-_0x1bbea4._0x5dcb4a,_0x59afa5);}return _0x4e2a4c[_0x599c28(-_0x40cd99._0x34b01b,-_0x40cd99._0x44bc2b,-_0x40cd99._0xa0d485,-_0x40cd99._0x4be3aa)]?{..._0x4e2a4c,'pending':[..._0x4e2a4c[_0x24c9d4(0x3b9,0x3a3,_0x40cd99._0x50ad3c,0x39a)],_0x310431]}:{..._0x4e2a4c,'active':_0x310431};}function q(_0x291ca9){const _0x54d0a5={_0x1a39de:0x241,_0x1871f1:0x232},_0xa303d0={_0x13d6b2:0x6b6,_0x8c5bb6:0x110};function _0x309647(_0x218724,_0x3d5acf,_0x3dc0e6,_0x2c014b){return _0x58e8a2(_0x218724,_0x2c014b- -_0xa303d0._0x13d6b2,_0x3dc0e6-_0xa303d0._0x8c5bb6,_0x2c014b-0x1ba);}let [_0x216a33,..._0x5dfd6e]=_0x291ca9[_0x309647(-_0x54d0a5._0x1a39de,-0x255,-0x210,-_0x54d0a5._0x1871f1)];return{'active':_0x216a33??null,'pending':_0x5dfd6e};}_0x266c4e();import{getReasoningTextFromMessage as _0xcf852f,getTextFromMessage as _0x4e25aa}from'@nuvin/agent-core/formats';_0x266c4e();function _0x58e8a2(_0x561c57,_0x4e40f8,_0x4b8a0f,_0x15ba60){return _0x101d(_0x4e40f8-0x36d,_0x561c57);}function S(_0xe6b019){const _0x541017={_0x425c7b:0x3ee,_0x4ee42e:0x415,_0x162071:0x400,_0x58be6b:0x117},_0x45a7ec={_0xaf88c0:0x7e,_0x5a7756:0x9e};function _0x409d77(_0x5e70da,_0x1cab9e,_0x1115bf,_0x3add24){return _0x554586(_0x5e70da-0xd0,_0x1cab9e-0x13e,_0x1cab9e-0x705,_0x5e70da);}function _0x460273(_0x20ba3d,_0x473b1a,_0x311d25,_0x232fbe){return _0x58e8a2(_0x20ba3d,_0x473b1a- -0x568,_0x311d25-_0x45a7ec._0xaf88c0,_0x232fbe-_0x45a7ec._0x5a7756);}return typeof _0xe6b019==_0x409d77(_0x541017._0x425c7b,_0x541017._0x4ee42e,0x437,_0x541017._0x162071)&&_0xe6b019!==null&&!Array[_0x460273(-0x10b,-0x10b,-_0x541017._0x58be6b,-0x11c)](_0xe6b019)?_0xe6b019:void 0x0;}function g(_0x5405cc){const _0x51ac05={_0x467afb:0x4e,_0xacd0b:0x82,_0xba8013:0x42},_0x40a0e5={_0x1ac7a4:0x42f,_0x16b607:0xfa,_0x4af2e8:0x1bb};function _0x384e01(_0x311bfb,_0x9197e2,_0x3d466b,_0x40bc69){return _0x58e8a2(_0x311bfb,_0x40bc69- -_0x40a0e5._0x1ac7a4,_0x3d466b-_0x40a0e5._0x16b607,_0x40bc69-_0x40a0e5._0x4af2e8);}return'message-'+_0x5405cc[_0x384e01(_0x51ac05._0x467afb,_0x51ac05._0xacd0b,_0x51ac05._0xba8013,0x5c)];}function u(_0x4716af,_0x5147b3,_0x2fde22){const _0x5636ce={_0x4115e6:0x278,_0xf0cf87:0x267,_0x5bc144:0x284,_0x13d878:0x27c},_0x58b0c7={_0x876596:0x1c3,_0x19f4fd:0x577},_0x4760ff={_0x479dce:0xdc,_0x4f640d:0x1b0};function _0x203bbc(_0x5db8f0,_0x383e21,_0x1023e9,_0x2abe79){return _0x554586(_0x5db8f0-0x13e,_0x383e21-_0x4760ff._0x479dce,_0x5db8f0-_0x4760ff._0x4f640d,_0x383e21);}function _0x5d4875(_0x57c151,_0xd76f79,_0x9180c5,_0x2662dc){return _0x554586(_0x57c151-_0x58b0c7._0x876596,_0xd76f79-0x108,_0x2662dc-_0x58b0c7._0x19f4fd,_0xd76f79);}return{..._0x4716af,'messages':_0x4716af[_0x5d4875(0x27e,0x257,0x292,_0x5636ce._0x4115e6)][_0x5d4875(_0x5636ce._0xf0cf87,0x25c,_0x5636ce._0x5bc144,_0x5636ce._0x13d878)](_0x511a6e=>_0x511a6e['id']===_0x5147b3?_0x2fde22(_0x511a6e):_0x511a6e)};}function d(_0x297e4c,_0x55b972){const _0xfb8309={_0x49abae:0xb3};function _0x41ba16(_0x1fba6a,_0x3e8d5e,_0x43b07c,_0x49dccd){return _0x58e8a2(_0x49dccd,_0x43b07c- -0x514,_0x43b07c-0xe8,_0x49dccd-0x188);}return{..._0x297e4c,'messages':[..._0x297e4c['messages'],_0x55b972],'nextId':_0x297e4c[_0x41ba16(-0x95,-_0xfb8309._0x49abae,-0x89,-0x6c)]+0x1};}function k(_0x43763c,_0x357e20){return _0x43763c?_0x43763c+'::'+_0x357e20:_0x357e20;}function M(_0x24b0c6,_0xc8bb8d,_0x30d8a9,_0x8ff1b9,_0x1714dc,_0x82ab5c,_0x29664d,_0x17fde6){const _0x40267e={_0x976cee:0x27a,_0x2ba6ff:0x4f,_0xeca6cd:0xa4},_0x3350b7={_0x50187b:0xb4,_0x14132f:0x103};let _0x19a8d0=k(_0x17fde6,_0x30d8a9),_0x36a36f=_0x24b0c6[_0xc8bb8d][_0x19a8d0];if(_0x36a36f)return u(_0x24b0c6,_0x36a36f,_0x831652=>_0x831652['role']!==_0x8ff1b9?_0x831652:{..._0x831652,'live':_0x29664d,'text':_0x82ab5c===_0x38eb83(0x1e4,0x1c0,0x1cc,0x1a2)?''+_0x831652[_0x740f79(0x38d,0x390,0x367,0x36e)]+_0x1714dc:_0x1714dc});let _0x4a8b88=g(_0x24b0c6),_0x599f2c=d(_0x24b0c6,{'id':_0x4a8b88,'role':_0x8ff1b9,'text':_0x1714dc,'live':_0x29664d,..._0x17fde6?{'parentToolCallId':_0x17fde6}:{}});function _0x740f79(_0xc07367,_0x4093e6,_0x1e5061,_0x2e30eb){return _0x58e8a2(_0x1e5061,_0x4093e6- -_0x3350b7._0x50187b,_0x1e5061-0x1bb,_0x2e30eb-_0x3350b7._0x14132f);}function _0x38eb83(_0x455708,_0x1ce236,_0x6a5555,_0x93ef00){return _0x58e8a2(_0x1ce236,_0x6a5555- -_0x40267e._0x976cee,_0x6a5555-_0x40267e._0x2ba6ff,_0x93ef00-_0x40267e._0xeca6cd);}return{..._0x599f2c,[_0xc8bb8d]:{..._0x599f2c[_0xc8bb8d],[_0x19a8d0]:_0x4a8b88}};}function P(_0x20f104){const _0x3b52d7={_0x178836:0x219,_0x4f8e70:0x264,_0x16adc2:0x260,_0x447500:0x339,_0x320f45:0x33f,_0x5d1f32:0x2cc,_0x28c0ab:0x2e6,_0x14bd7b:0x2de,_0x20e896:0x319},_0x56fea4={_0x84572a:0x15f,_0x15828b:0x1e2};let _0xb25ace=S(_0x20f104);if(!_0xb25ace)return JSON['stringify'](_0x20f104);function _0x1e0931(_0x1f29f0,_0x560842,_0x47e556,_0x915668){return _0x58e8a2(_0x47e556,_0x560842- -0x6b9,_0x47e556-0xff,_0x915668-0x7e);}let _0x4325dd=_0xb25ace[_0x1e0931(-_0x3b52d7._0x178836,-0x240,-_0x3b52d7._0x4f8e70,-0x227)];function _0x117525(_0x38b8e4,_0x8a0048,_0x428b5e,_0x1b6281){return _0x58e8a2(_0x428b5e,_0x1b6281- -_0x56fea4._0x84572a,_0x428b5e-0x125,_0x1b6281-_0x56fea4._0x15828b);}if(typeof _0x4325dd==_0x1e0931(-_0x3b52d7._0x16adc2,-0x264,-0x288,-0x28d))return _0x4325dd;let _0x26dbbc=Object[_0x117525(_0x3b52d7._0x447500,_0x3b52d7._0x320f45,0x335,0x329)](_0xb25ace);return _0x26dbbc[_0x117525(_0x3b52d7._0x5d1f32,0x2fa,0x2d2,_0x3b52d7._0x28c0ab)]===0x1&&typeof _0x26dbbc[0x0]?.[0x1]==_0x117525(_0x3b52d7._0x14bd7b,_0x3b52d7._0x20e896,0x2db,0x2f6)?String(_0x26dbbc[0x0][0x1]):JSON[_0x1e0931(-0x222,-0x233,-0x240,-0x229)](_0xb25ace);}var E=0x5;function j(_0x174350){const _0x49628a={_0x50edc4:0x2a5,_0x59789b:0x2ab,_0xa74ed5:0x2ad,_0x2389bd:0x289,_0x16b430:0x241,_0x8730b2:0x25d,_0x4f0b1e:0x26d,_0x249b6b:0x255},_0x3ccf50={_0x3ef38d:0xd5,_0x127df8:0x45},_0x4adc2a={_0x394fdd:0x180};let _0xf08b5c=_0x174350[_0x52cdac(-_0x49628a._0x50edc4,-0x27c,-0x290,-0x295)](/\s+$/,'');function _0x52cdac(_0x4db059,_0x5492c6,_0x47be5e,_0x2eff61){return _0x554586(_0x4db059-_0x4adc2a._0x394fdd,_0x5492c6-0x4e,_0x5492c6-0x7a,_0x2eff61);}if(_0xf08b5c[_0x52cdac(-_0x49628a._0x59789b,-0x289,-0x28f,-_0x49628a._0xa74ed5)]===0x0)return;let _0x4bc55d=_0xf08b5c[_0x52cdac(-_0x49628a._0x2389bd,-0x25f,-0x25b,-_0x49628a._0x16b430)]('\x0a');function _0x27923e(_0x379421,_0x124ca4,_0x32f6cf,_0xc7795e){return _0x554586(_0x379421-_0x3ccf50._0x3ef38d,_0x124ca4-0x1be,_0x32f6cf-_0x3ccf50._0x127df8,_0x379421);}return{'text':_0x4bc55d[_0x52cdac(-0x28b,-0x282,-_0x49628a._0x8730b2,-0x288)](-E)[_0x52cdac(-0x253,-_0x49628a._0x4f0b1e,-_0x49628a._0x249b6b,-0x297)]('\x0a'),'totalLines':_0x4bc55d['length']};}function w(_0x3e45d9,_0x24061b){const _0x8da263={_0x1abd29:0xdc,_0x270766:0xd0,_0x6d59ca:0xb4,_0x2017a1:0x8e,_0x38944b:0x75,_0x59cf55:0x70,_0x19728b:0xce,_0x3a2c72:0xbc,_0x43b749:0xd9,_0x4a4170:0xa5,_0x3ce7da:0xad,_0x3e92c0:0x95,_0x4fbbfc:0xac},_0x5ac0a5={_0x159fd1:0x515,_0x314361:0x11b},_0x4aa3d2={_0x1633ec:0x3ff,_0x23a7b6:0x14};function _0x4e8b2c(_0x3f10ad,_0x3e9879,_0x200386,_0x58f3fe){return _0x58e8a2(_0x58f3fe,_0x200386- -_0x4aa3d2._0x1633ec,_0x200386-0x53,_0x58f3fe-_0x4aa3d2._0x23a7b6);}function _0x1e7d00(_0x1d7f7e,_0x5eaf88,_0x52be9a,_0x341d03){return _0x58e8a2(_0x52be9a,_0x5eaf88- -_0x5ac0a5._0x159fd1,_0x52be9a-0xec,_0x341d03-_0x5ac0a5._0x314361);}return _0x3e45d9[_0x1e7d00(-_0x8da263._0x1abd29,-_0x8da263._0x270766,-_0x8da263._0x6d59ca,-0xe8)]===0x0?_0x24061b[_0x1e7d00(-0x9a,-_0x8da263._0x2017a1,-_0x8da263._0x38944b,-0x91)]:_0x24061b[_0x4e8b2c(_0x8da263._0x59cf55,0x62,0x88,0x6f)][_0x1e7d00(-_0x8da263._0x19728b,-_0x8da263._0x270766,-_0x8da263._0x3a2c72,-_0x8da263._0x43b749)]===0x0||_0x3e45d9===_0x24061b['output']?_0x3e45d9:_0x24061b[_0x1e7d00(-_0x8da263._0x4a4170,-0x8e,-_0x8da263._0x3ce7da,-0x84)][_0x4e8b2c(_0x8da263._0x3e92c0,0x8e,0x7e,0x6d)](_0x3e45d9)?_0x24061b[_0x1e7d00(-0x6a,-_0x8da263._0x2017a1,-0xad,-_0x8da263._0x4fbbfc)]:_0x3e45d9;}function f(_0x4b8924,_0x59d00c,_0x3eb473){const _0x81340e={_0x579e7b:0x25c,_0xd924a:0x269,_0x24ea2e:0x122,_0x29f12b:0xdf,_0x372d19:0x125,_0x53600e:0xfc,_0x3882f2:0x112,_0x497e68:0x28a,_0x33fd20:0x288,_0x5ad7c6:0x123,_0x3d4ce6:0xe2,_0x4001cf:0x139,_0x120144:0x12e,_0x11961f:0x12b},_0x56c852={_0x12e8a0:0x585,_0x195bbb:0xfb,_0x2d2bd3:0x16a},_0x49b1cf={_0x423d6c:0xe8};let _0x1ba5c4=_0x4b8924[_0x1b0c31(-_0x81340e._0x579e7b,-0x28f,-_0x81340e._0xd924a,-0x269)][_0x59d00c['id']];function _0x1b0c31(_0x268a9e,_0x3c06df,_0x3e979b,_0x2c68f2){return _0x58e8a2(_0x268a9e,_0x3e979b- -0x6c0,_0x3e979b-_0x49b1cf._0x423d6c,_0x2c68f2-0xba);}function _0x3dbcbd(_0x94d17e,_0x420ef4,_0x1d13fa,_0xfb2359){return _0x58e8a2(_0x1d13fa,_0x420ef4- -_0x56c852._0x12e8a0,_0x1d13fa-_0x56c852._0x195bbb,_0xfb2359-_0x56c852._0x2d2bd3);}if(_0x1ba5c4)return u(_0x4b8924,_0x1ba5c4,_0x4fc8bd=>_0x4fc8bd[_0x3dbcbd(-0x144,-0x14a,-0x150,-0x150)]!=='tool'||_0x4fc8bd['input']!==void 0x0?_0x4fc8bd:{..._0x4fc8bd,'input':S(_0x59d00c[_0x1b0c31(-0x25f,-0x247,-0x270,-0x280)])});let _0x302002=g(_0x4b8924),_0x5e4a00=d(_0x4b8924,{'id':_0x302002,'role':_0x3dbcbd(-_0x81340e._0x24ea2e,-0x103,-0x12a,-_0x81340e._0x29f12b),'toolName':_0x59d00c['name'],'toolCallId':_0x59d00c['id'],'summary':P(_0x59d00c[_0x3dbcbd(-0x110,-0x135,-_0x81340e._0x372d19,-0x150)]),'text':'','status':_0x3dbcbd(-0xec,-0x101,-_0x81340e._0x53600e,-_0x81340e._0x3882f2),'input':S(_0x59d00c['input']),..._0x59d00c[_0x1b0c31(-_0x81340e._0x497e68,-_0x81340e._0x33fd20,-0x266,-0x26f)]===_0x3dbcbd(-0x100,-0x107,-_0x81340e._0x5ad7c6,-_0x81340e._0x3d4ce6)?{'hidden':!0x0}:{},..._0x3eb473?{'parentToolCallId':_0x3eb473}:{}});return{..._0x5e4a00,'toolMessageIds':{..._0x5e4a00[_0x3dbcbd(-_0x81340e._0x4001cf,-_0x81340e._0x120144,-_0x81340e._0x11961f,-0x139)],[_0x59d00c['id']]:_0x302002}};}function Z(_0x47e852,_0x28e8b8,_0x542e9a){const _0x1913b6={_0x19ba4d:0x2e9,_0x2b77cf:0x2a9},_0xcbd892={_0xf6151d:0xdd},_0x3f3cdb={_0x171aeb:0x1ba,_0x2300a0:0x11a};function _0x130757(_0x1d4ca1,_0x4760c5,_0x2c8a29,_0x5e594c){return _0x58e8a2(_0x1d4ca1,_0x2c8a29- -0x194,_0x2c8a29-_0x3f3cdb._0x171aeb,_0x5e594c-_0x3f3cdb._0x2300a0);}let _0x4ec331=_0x47e852[_0x130757(0x2c4,_0x1913b6._0x19ba4d,0x2c3,_0x1913b6._0x2b77cf)][_0x28e8b8];function _0x239622(_0x30d033,_0x3ee149,_0x5d7590,_0x8ead3){return _0x58e8a2(_0x3ee149,_0x5d7590- -0x58b,_0x5d7590-_0xcbd892._0xf6151d,_0x8ead3-0x14);}return _0x4ec331?u(_0x47e852,_0x4ec331,_0x60d49e=>_0x60d49e['role']!==_0x130757(0x2e3,0x2f1,0x2ee,0x2f1)?_0x60d49e:{..._0x60d49e,'status':_0x542e9a}):_0x47e852;}function b(_0x19f63b,_0x5a88a2,_0x2227db){const _0x36f2aa={_0x24d65c:0x165,_0x8c692e:0x18d,_0x426f81:0x1ae,_0x1cead7:0x142,_0x46a74b:0x127,_0x2dac3e:0x167,_0x449f35:0x196,_0xe7e24b:0x18e,_0x33a8da:0x1be,_0x2667e6:0x164,_0x3f594a:0x158,_0x2f56d1:0x124,_0x3d5a70:0x145,_0x1e9d66:0x151,_0x4170da:0x1be,_0x177ef1:0x1a1},_0x417d33={_0x2d747a:0x56},_0x3dbf77={_0x58c3e6:0x140};function _0x44dc98(_0x3a7816,_0x8bf746,_0x19fb16,_0x3ad6ce){return _0x554586(_0x3a7816-0x183,_0x8bf746-_0x3dbf77._0x58c3e6,_0x8bf746-0x164,_0x3ad6ce);}function _0x47b57e(_0x448e3e,_0x3d9a47,_0x1f3f12,_0x47ff57){return _0x58e8a2(_0x3d9a47,_0x448e3e- -0x5c4,_0x1f3f12-_0x417d33._0x2d747a,_0x47ff57-0x193);}let _0x1c9a34=_0x19f63b[_0x44dc98(-_0x36f2aa._0x24d65c,-_0x36f2aa._0x8c692e,-_0x36f2aa._0x426f81,-0x1ad)][_0x5a88a2['callId']];return _0x1c9a34?u(_0x19f63b,_0x1c9a34,_0x40f6d0=>_0x40f6d0[_0x47b57e(-0x189,-0x188,-0x1a9,-0x16d)]!=='tool'?_0x40f6d0:{..._0x40f6d0,'completedAt':_0x40f6d0[_0x44dc98(-0x164,-0x16f,-0x183,-0x17b)]??_0x2227db,'status':_0x5a88a2[_0x47b57e(-0x170,-0x170,-0x160,-0x199)],'text':w(_0x40f6d0['text'],_0x5a88a2),'structured':_0x5a88a2['structured'],'hidden':!0x1,'streamingPreview':void 0x0}):d(_0x19f63b,{'id':g(_0x19f63b),'completedAt':_0x2227db,'role':_0x47b57e(-_0x36f2aa._0x1cead7,-0x147,-_0x36f2aa._0x46a74b,-_0x36f2aa._0x2dac3e),'toolName':_0x5a88a2[_0x44dc98(-0x1bc,-_0x36f2aa._0x449f35,-_0x36f2aa._0xe7e24b,-_0x36f2aa._0x33a8da)],'toolCallId':_0x5a88a2[_0x44dc98(-0x18c,-0x173,-_0x36f2aa._0x2667e6,-_0x36f2aa._0x3f594a)],'status':_0x5a88a2['status'],'summary':'','text':_0x5a88a2[_0x47b57e(-0x13d,-_0x36f2aa._0x2f56d1,-_0x36f2aa._0x3d5a70,-_0x36f2aa._0x1e9d66)],'structured':_0x5a88a2[_0x44dc98(-_0x36f2aa._0x4170da,-0x1a7,-0x1b9,-_0x36f2aa._0x177ef1)]});}function C(){return{'assistantMessageIds':{},'messages':[],'nextId':0x1,'reasoningMessageIds':{},'toolMessageIds':{}};}function ee(_0x3e43f3){const _0x4317c9={_0x20f395:0x3f5,_0x132614:0x2ec,_0x24589b:0x2fe,_0x2b9271:0x3cb,_0x21aed9:0x424},_0x1ed5f0={_0x224389:0x228,_0xa8984:0x25a},_0x632a15={_0x209f90:0x17b};function _0x45383c(_0x2ca307,_0x5996fd,_0xab4512,_0x23ba18){return _0x554586(_0x2ca307-_0x632a15._0x209f90,_0x5996fd-0xc9,_0xab4512-0x603,_0x23ba18);}let _0x25c769=_0x3e43f3[_0x5e8f6e(_0x4317c9._0x20f395,0x408,0x400,0x3fa)]((_0x2140cf,_0x4277cc)=>{const _0x115070={_0xa0047e:0x61f,_0x355269:0x1ed},_0x2620e6={_0x5b43d7:0x4db,_0x2bcabc:0x155};let _0x1a8b2e=/^message-(\d+)$/[_0x259e11(-0x25c,-0x240,-_0x1ed5f0._0x224389,-0x21b)](_0x4277cc['id']);function _0x57ce75(_0x1f8ed0,_0x5e00cc,_0x2b1f01,_0x41292c){return _0x5e8f6e(_0x1f8ed0-0x14e,_0x5e00cc- -_0x2620e6._0x5b43d7,_0x1f8ed0,_0x41292c-_0x2620e6._0x2bcabc);}function _0x259e11(_0x41375c,_0x7eae05,_0x5cd0b2,_0x3a2e4e){return _0x5e8f6e(_0x41375c-0x160,_0x7eae05- -_0x115070._0xa0047e,_0x5cd0b2,_0x3a2e4e-_0x115070._0x355269);}return _0x1a8b2e?Math[_0x259e11(-0x252,-0x255,-0x263,-_0x1ed5f0._0xa8984)](_0x2140cf,Number(_0x1a8b2e[0x1])+0x1):_0x2140cf;},0x1)+_0x3e43f3[_0x45383c(_0x4317c9._0x132614,0x2d7,0x300,_0x4317c9._0x24589b)],_0x1ebdf2={};function _0x5e8f6e(_0x5bcf60,_0x53cf0d,_0x2c1b5a,_0x18a805){return _0x58e8a2(_0x2c1b5a,_0x53cf0d- -0x70,_0x2c1b5a-0x7f,_0x18a805-0xeb);}for(let _0x2955b7 of _0x3e43f3)_0x2955b7[_0x5e8f6e(0x3de,_0x4317c9._0x2b9271,0x3d9,0x3ba)]===_0x5e8f6e(_0x4317c9._0x21aed9,0x412,0x426,0x404)&&(_0x1ebdf2[_0x2955b7['toolCallId']]=_0x2955b7['id']);return{'assistantMessageIds':{},'messages':_0x3e43f3,'nextId':_0x25c769,'reasoningMessageIds':{},'toolMessageIds':_0x1ebdf2};}function te(_0x46b699,_0x42f756,_0x1f6906){const _0x13f09f={_0x1ade8d:0x7b,_0x44d836:0x59,_0x4b0da1:0x39},_0x672953={_0x223886:0xf0,_0x4efdaf:0x628},_0x469b45={_0x36851f:0x12e,_0x430000:0xf2,_0x5123f3:0x35f};function _0x27dc13(_0x219fdb,_0x38f1db,_0x20a9b0,_0x34b6c5){return _0x554586(_0x219fdb-_0x469b45._0x36851f,_0x38f1db-_0x469b45._0x430000,_0x38f1db-_0x469b45._0x5123f3,_0x219fdb);}function _0x90eed3(_0x13128d,_0x354d6f,_0x3585b4,_0xea493e){return _0x554586(_0x13128d-_0x672953._0x223886,_0x354d6f-0x147,_0x13128d-_0x672953._0x4efdaf,_0x354d6f);}return d(_0x46b699,{'id':g(_0x46b699),'role':_0x27dc13(0x71,0x5f,0x6b,_0x13f09f._0x1ade8d),'text':_0x42f756,..._0x1f6906&&_0x1f6906[_0x27dc13(0x62,0x5c,_0x13f09f._0x44d836,_0x13f09f._0x4b0da1)]>0x0?{'attachmentLabels':_0x1f6906}:{}});}function se(_0x30364f,_0x26b603){return d(_0x30364f,{'id':g(_0x30364f),'role':'error','text':_0x26b603});}function ne(_0x1e2d99,_0x3c3d4d){return d(_0x1e2d99,{'id':g(_0x1e2d99),'role':'info','text':_0x3c3d4d});}function _0x554586(_0x7882c8,_0x5073a1,_0x3b297e,_0x319993){return _0x101d(_0x3b297e- -0x3db,_0x319993);}function J(_0x166850,_0x1c1ab9){const _0x5bc0e3={_0x2b6764:0x28d,_0x2912ef:0x291,_0x53fe29:0x2a0,_0x1d5888:0x266},_0xf5152={_0x5dfd68:0x102};function _0x17cdfb(_0x247ff7,_0x16be19,_0x201289,_0x51733b){return _0x58e8a2(_0x51733b,_0x247ff7- -0x6fa,_0x201289-0x15d,_0x51733b-_0xf5152._0x5dfd68);}return d(_0x166850,{'id':g(_0x166850),'role':_0x17cdfb(-_0x5bc0e3._0x2b6764,-_0x5bc0e3._0x2912ef,-_0x5bc0e3._0x53fe29,-_0x5bc0e3._0x1d5888),'text':_0x1c1ab9});}function re(_0x103991,_0x5bebcc,_0x17be60,_0x3aa946=Date['now']()){const _0x4b367d={_0x3f3759:0x186,_0x25a918:0x172,_0x425dc2:0x195,_0x4469f1:0x69,_0x4503e9:0x37,_0x361c48:0x1ce,_0x201a8a:0x1f4,_0x48b048:0x73,_0x4070dc:0x55,_0x323df0:0x8a,_0x45bca1:0x75,_0xcba22e:0x9a,_0x3afa92:0x44,_0x364737:0x5a,_0x1dcc14:0x1b9,_0x5ee94f:0x1eb,_0x1f8d41:0x64,_0x36fbb5:0x89,_0x3a9ad8:0x5f,_0xff98dc:0x71,_0x1c4a4e:0x84,_0x12825e:0xa6,_0x112c90:0x43,_0x1da6de:0x1ad,_0x876fe7:0x190,_0x26ce75:0x52,_0x232873:0x53,_0x4b3ba1:0x191,_0x113142:0x73,_0x5588f7:0x88,_0xd05d51:0x54,_0x2ba93b:0x193,_0x301d7e:0x1bc,_0x1b234b:0x1ac,_0x3c41df:0x36,_0x1648d7:0x4c,_0x36a5d4:0x1a5,_0x5907ed:0x1b0,_0x2ea15f:0x198,_0x5bd3f0:0x187,_0x582e38:0x182,_0x10b4a6:0x1cf,_0xd31564:0x4f,_0x5dd977:0x26,_0x275882:0x78,_0x22908c:0x3e,_0x1f7dd6:0x63,_0xa005cb:0x25,_0x2b76d0:0x1d6,_0x552181:0x1cd,_0x4feafd:0x1b1,_0x4e6539:0x1d2,_0x2ed0ea:0x9c,_0x25b5db:0x5d,_0x415dd5:0x4a,_0x3496eb:0x96,_0x316277:0x86,_0x3f5af6:0x18c,_0x136787:0x1ad,_0x310a05:0x18d,_0x1bc27b:0x19e,_0x14385e:0x1c2,_0x10d64b:0x19e,_0x426e37:0x1a1,_0x3ae638:0x58,_0x5dc786:0x1b7,_0x5c1ebd:0x1a6,_0x37ee00:0x1b6,_0x2a44e5:0x85,_0x46f49c:0xa7,_0xc41146:0xad,_0x20e0d2:0x91,_0x13b235:0x7f,_0x2d9991:0x81,_0x42e7f1:0x1a4,_0x406084:0x1c5,_0x48e50c:0x95,_0x7290c:0x1a2,_0x2d6b9b:0x183,_0x187ba7:0x19e,_0x5491c9:0x8a,_0x1fb0ec:0x48,_0x54b703:0x8d,_0x106c85:0x4b,_0x4613d9:0x2a,_0x30265f:0x66,_0x54724f:0xb1,_0x417699:0xa2,_0x2db01c:0x70,_0x3b03e0:0x4d,_0xa5ed82:0x1c8,_0x5bfb34:0x1a0,_0x12c2f9:0x1d3,_0x128df1:0x1eb},_0x4883bc={_0x37875a:0x384,_0x5828f0:0x361,_0x427bd4:0x356,_0x536d21:0x378,_0x5ed4f2:0x1c6,_0x32b89f:0x1d3,_0x415526:0x21a,_0x332128:0x200,_0x44981c:0x1ee,_0x4b5278:0x1e0,_0x8cf318:0x1d2,_0x1f7bb8:0x1c7,_0x127749:0x1cd,_0x5d3327:0x1f6,_0x591ac4:0x1e8,_0x4f3927:0x1cc},_0x5c6e4f={_0x2044dd:0x1ca},_0x21eda0={_0x1b0490:0x13f,_0xb5298f:0x142},_0x251362={_0x456088:0x612,_0xfd496f:0x15c,_0x2a9bbe:0x1ac},_0x5b3d5b={_0x2bae51:0x112,_0x3e5ac2:0x359};function _0xc4a372(_0x169c56,_0x39ac38,_0x3b762b,_0x24a65e){return _0x554586(_0x169c56-0xe9,_0x39ac38-_0x5b3d5b._0x2bae51,_0x169c56-_0x5b3d5b._0x3e5ac2,_0x24a65e);}function _0x49f5c7(_0x3370c2,_0x4cc51a,_0x3f4561,_0xfc8658){return _0x58e8a2(_0x3370c2,_0x4cc51a- -_0x251362._0x456088,_0x3f4561-_0x251362._0xfd496f,_0xfc8658-_0x251362._0x2a9bbe);}switch(_0x5bebcc[_0x49f5c7(-_0x4b367d._0x3f3759,-0x188,-_0x4b367d._0x25a918,-_0x4b367d._0x425dc2)]){case'assistant_chunk':return _0x5bebcc[_0xc4a372(0x52,0x71,_0x4b367d._0x4469f1,_0x4b367d._0x4503e9)][_0x49f5c7(-0x1ed,-_0x4b367d._0x361c48,-0x1c2,-_0x4b367d._0x201a8a)]?M(_0x103991,'assistantMessageIds',_0x5bebcc[_0xc4a372(_0x4b367d._0x48b048,_0x4b367d._0x4070dc,0x94,_0x4b367d._0x323df0)],_0xc4a372(_0x4b367d._0x45bca1,_0x4b367d._0xcba22e,0x58,0x9b),_0x5bebcc[_0xc4a372(0x52,0x7c,_0x4b367d._0x3afa92,_0x4b367d._0x364737)][_0x49f5c7(-_0x4b367d._0x1dcc14,-_0x4b367d._0x361c48,-0x1f6,-_0x4b367d._0x5ee94f)],'append',!0x0,_0x17be60):_0x103991;case _0xc4a372(_0x4b367d._0x1f8d41,_0x4b367d._0x36fbb5,_0x4b367d._0x3a9ad8,_0x4b367d._0x364737):{let _0x5d7ed3=_0x4e25aa(_0x5bebcc[_0xc4a372(0x4f,0x3a,0x39,0x57)])[_0xc4a372(0x8b,_0x4b367d._0xff98dc,_0x4b367d._0x1c4a4e,_0x4b367d._0x12825e)]();return _0x5d7ed3[_0xc4a372(0x56,0x4e,0x56,_0x4b367d._0x112c90)]===0x0?_0x103991:M(_0x103991,_0x49f5c7(-0x196,-_0x4b367d._0x1da6de,-0x190,-_0x4b367d._0x876fe7),_0x5bebcc['message']['id'],'assistant',_0x5d7ed3,_0xc4a372(0x63,0x4d,_0x4b367d._0x26ce75,_0x4b367d._0x232873),!0x1,_0x17be60);}case'reasoning_chunk':return _0x5bebcc['text']?M(_0x103991,_0x49f5c7(-_0x4b367d._0x425dc2,-_0x4b367d._0x4b3ba1,-0x18a,-0x17a),_0x5bebcc[_0xc4a372(_0x4b367d._0x113142,_0x4b367d._0x36fbb5,_0x4b367d._0x5588f7,_0x4b367d._0xd05d51)],_0x49f5c7(-_0x4b367d._0x2ba93b,-_0x4b367d._0x301d7e,-0x1af,-_0x4b367d._0x1b234b),_0x5bebcc['text'],_0xc4a372(0x57,_0x4b367d._0x3c41df,_0x4b367d._0x1648d7,0x42),!0x0,_0x17be60):_0x103991;case _0x49f5c7(-0x1d6,-0x1c1,-0x1d5,-_0x4b367d._0x36a5d4):{let _0x501bd6=_0xcf852f(_0x5bebcc[_0x49f5c7(-0x1c8,-0x1d4,-0x1b9,-_0x4b367d._0x5907ed)])[_0x49f5c7(-0x1a4,-_0x4b367d._0x2ea15f,-_0x4b367d._0x5bd3f0,-_0x4b367d._0x582e38)]();return _0x501bd6[_0x49f5c7(-_0x4b367d._0x10b4a6,-0x1cd,-0x1a9,-0x1c1)]===0x0?_0x103991:M(_0x103991,'reasoningMessageIds',_0x5bebcc[_0xc4a372(_0x4b367d._0xd31564,0x55,0x2e,_0x4b367d._0x5dd977)]['id'],'reasoning',_0x501bd6,_0xc4a372(0x63,_0x4b367d._0x275882,_0x4b367d._0x22908c,_0x4b367d._0x1f7dd6),!0x1,_0x17be60);}case'final_message':{let _0x43938c=_0x4e25aa(_0x5bebcc[_0xc4a372(0x4f,_0x4b367d._0xa005cb,0x4a,0x3e)])['trim']();return _0x43938c[_0x49f5c7(-_0x4b367d._0x2b76d0,-_0x4b367d._0x552181,-_0x4b367d._0x4feafd,-_0x4b367d._0x4e6539)]===0x0?_0x103991:M(_0x103991,_0xc4a372(0x76,0x7c,_0x4b367d._0x2ed0ea,_0x4b367d._0x25b5db),_0x5bebcc[_0xc4a372(0x4f,0x74,_0x4b367d._0x415dd5,0x38)]['id'],'assistant',_0x43938c,'replace',!0x1,_0x17be60);}case _0xc4a372(0x6f,_0x4b367d._0x4070dc,_0x4b367d._0x3496eb,_0x4b367d._0x316277):return f(_0x103991,_0x5bebcc[_0x49f5c7(-_0x4b367d._0x3f5af6,-0x19e,-_0x4b367d._0x136787,-0x19a)],_0x17be60);case _0x49f5c7(-0x199,-_0x4b367d._0x310a05,-0x1b7,-_0x4b367d._0x1bc27b):{let _0xdb58d5=f(_0x103991,_0x5bebcc[_0x49f5c7(-_0x4b367d._0x14385e,-_0x4b367d._0x10d64b,-0x1a9,-_0x4b367d._0x426e37)],_0x17be60),_0x5b7932=_0xdb58d5[_0xc4a372(0x68,_0x4b367d._0x3ae638,0x5e,0x71)][_0x5bebcc['toolCall']['id']];return u(_0xdb58d5,_0x5b7932,_0x2ff0e4=>_0x2ff0e4[_0x49f5c7(-0x1de,-0x1d7,-0x1ca,-0x1bf)]!=='tool'?_0x2ff0e4:{..._0x2ff0e4,'startedAt':_0x2ff0e4[_0x49f5c7(-0x182,-0x1a8,-0x1b1,-0x1a1)]??_0x3aa946,'status':_0x49f5c7(-0x1cc,-0x1b9,-0x1d7,-0x1b5)});}case _0x49f5c7(-_0x4b367d._0x5dc786,-_0x4b367d._0x5c1ebd,-_0x4b367d._0x37ee00,-0x1b9):{let _0x30a4d8=f(_0x103991,_0x5bebcc['toolCall'],_0x17be60),_0x23363f=_0x30a4d8['toolMessageIds'][_0x5bebcc[_0xc4a372(_0x4b367d._0x2a44e5,_0x4b367d._0x46f49c,_0x4b367d._0xc41146,_0x4b367d._0x3496eb)]['id']];return u(_0x30a4d8,_0x23363f,_0x19a0d0=>{function _0x272231(_0x3052b9,_0x52016f,_0xcde36d,_0x3a188d){return _0xc4a372(_0x52016f-0x168,_0x52016f-_0x21eda0._0x1b0490,_0xcde36d-_0x21eda0._0xb5298f,_0x3052b9);}if(_0x19a0d0[_0xe65729(0x343,_0x4883bc._0x37875a,0x359,_0x4883bc._0x5828f0)]!=='tool')return _0x19a0d0;let _0x230351=''+_0x19a0d0[_0xe65729(_0x4883bc._0x427bd4,_0x4883bc._0x536d21,_0x4883bc._0x37875a,0x36a)]+_0x5bebcc[_0x272231(0x1dd,0x1ba,_0x4883bc._0x5ed4f2,_0x4883bc._0x32b89f)][_0x272231(_0x4883bc._0x415526,_0x4883bc._0x332128,_0x4883bc._0x44981c,_0x4883bc._0x4b5278)];function _0xe65729(_0x5c8327,_0x307150,_0x310ce6,_0x42967b){return _0xc4a372(_0x42967b-0x315,_0x307150-0x92,_0x310ce6-_0x5c6e4f._0x2044dd,_0x310ce6);}return{..._0x19a0d0,'text':_0x230351,'streamingPreview':_0x19a0d0[_0x272231(_0x4883bc._0x8cf318,_0x4883bc._0x1f7bb8,0x1b9,_0x4883bc._0x127749)]===_0x272231(0x1f6,0x1f5,_0x4883bc._0x5d3327,0x21e)?j(_0x230351):_0x19a0d0[_0x272231(_0x4883bc._0x591ac4,0x1dc,_0x4883bc._0x4f3927,0x1b2)]};});}case _0xc4a372(_0x4b367d._0x20e0d2,_0x4b367d._0x275882,_0x4b367d._0x13b235,_0x4b367d._0x2d9991):{let _0x278e6f=f(_0x103991,_0x5bebcc[_0x49f5c7(-_0x4b367d._0x42e7f1,-0x19e,-_0x4b367d._0x406084,-_0x4b367d._0x582e38)],_0x17be60);return b(_0x278e6f,_0x5bebcc[_0xc4a372(0x71,0x79,_0x4b367d._0x48e50c,_0x4b367d._0x323df0)],_0x3aa946);}case _0xc4a372(0x78,0x8a,_0x4b367d._0x45bca1,0x67):return b(_0x103991,_0x5bebcc['result'],_0x3aa946);case _0x49f5c7(-0x18e,-_0x4b367d._0x7290c,-_0x4b367d._0x2d6b9b,-_0x4b367d._0x2ea15f):{let _0x1b4803=f(_0x103991,_0x5bebcc[_0x49f5c7(-0x178,-_0x4b367d._0x187ba7,-0x19c,-0x187)],_0x17be60),_0x32ff80=_0x1b4803[_0xc4a372(0x68,_0x4b367d._0x5491c9,0x92,_0x4b367d._0x1fb0ec)][_0x5bebcc['toolCall']['id']];return u(_0x1b4803,_0x32ff80,_0x2bc8dd=>_0x2bc8dd[_0xc4a372(0x4c,0x3b,0x39,0x65)]!==_0xc4a372(0x93,0x79,0xa3,0xaa)?_0x2bc8dd:{..._0x2bc8dd,'completedAt':_0x2bc8dd[_0xc4a372(0x86,0x70,0x93,0x7f)]??_0x3aa946,'status':_0xc4a372(0x6c,0x93,0x56,0x53),'text':_0x5bebcc[_0x49f5c7(-0x1b0,-0x1b2,-0x194,-0x1ac)][_0xc4a372(0x98,0x90,0x6e,0x76)],'structured':_0x5bebcc[_0xc4a372(0x71,0x74,0x8d,0x71)][_0xc4a372(0x4e,0x59,0x3e,0x59)]});}case _0xc4a372(_0x4b367d._0x13b235,0x89,0x75,_0x4b367d._0x54b703):{let _0x67baef=Math[_0xc4a372(_0x4b367d._0x106c85,0x62,_0x4b367d._0x4613d9,_0x4b367d._0x30265f)](0x1,Math['ceil'](_0x5bebcc['delayMs']/0x3e8)),_0x3aad86=_0x5bebcc[_0xc4a372(0x8c,_0x4b367d._0x54724f,_0x4b367d._0x417699,0x9c)]>0x0?'in\x20'+_0x67baef+'s':_0xc4a372(_0x4b367d._0x2db01c,0x5b,_0x4b367d._0x25b5db,_0x4b367d._0x3b03e0);return J(_0x103991,'Provider\x20request\x20failed,\x20retrying\x20'+_0x3aad86+'\x20('+_0x5bebcc[_0x49f5c7(-0x1e9,-_0x4b367d._0xa5ed82,-0x1c8,-_0x4b367d._0x5bfb34)]+'/'+_0x5bebcc[_0x49f5c7(-0x1cd,-_0x4b367d._0x12c2f9,-_0x4b367d._0x128df1,-0x1bd)]+')…');}default:return _0x103991;}}_0x266c4e();import{contentFromPastedText as _0x3ba287,hasPastedImages as _0x52617a}from'@nuvin/agent-core/formats';function ue(_0x226486){const _0xb1b1b6={_0x4d2eaa:0x28f,_0x3679fa:0x2a2,_0x340498:0x269},_0x361edb={_0x4fe34d:0x1b9};function _0x5b579e(_0x1f266e,_0x328d9c,_0x189998,_0x3800dd){return _0x58e8a2(_0x189998,_0x328d9c- -_0x361edb._0x4fe34d,_0x189998-0x139,_0x3800dd-0x1d9);}return _0x52617a(_0x226486)?{'role':_0x5b579e(0x2ad,_0xb1b1b6._0x4d2eaa,_0xb1b1b6._0x3679fa,_0xb1b1b6._0x340498),'content':_0x3ba287(_0x226486)}:_0x226486;}function _0x101d(_0x8d3cd5,_0x4ebfce){_0x8d3cd5=_0x8d3cd5-0xcc;const _0x3803d0=_0x3803();let _0x101dad=_0x3803d0[_0x8d3cd5];if(_0x101d['UtTvqN']===undefined){var _0x4ed3f3=function(_0x45c6fd){const _0x215d5c='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x2b8fb7='',_0x266c4e='';for(let _0xcf852f=0x0,_0x4e25aa,_0x3ba287,_0x52617a=0x0;_0x3ba287=_0x45c6fd['charAt'](_0x52617a++);~_0x3ba287&&(_0x4e25aa=_0xcf852f%0x4?_0x4e25aa*0x40+_0x3ba287:_0x3ba287,_0xcf852f++%0x4)?_0x2b8fb7+=String['fromCharCode'](0xff&_0x4e25aa>>(-0x2*_0xcf852f&0x6)):0x0){_0x3ba287=_0x215d5c['indexOf'](_0x3ba287);}for(let _0x1b331c=0x0,_0x5a1407=_0x2b8fb7['length'];_0x1b331c<_0x5a1407;_0x1b331c++){_0x266c4e+='%'+('00'+_0x2b8fb7['charCodeAt'](_0x1b331c)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x266c4e);};_0x101d['hiXqid']=_0x4ed3f3,_0x101d['VdyRxJ']={},_0x101d['UtTvqN']=!![];}const _0x192438=_0x3803d0[0x0],_0x52b8b2=_0x8d3cd5+_0x192438,_0xddaa95=_0x101d['VdyRxJ'][_0x52b8b2];return!_0xddaa95?(_0x101dad=_0x101d['hiXqid'](_0x101dad),_0x101d['VdyRxJ'][_0x52b8b2]=_0x101dad):_0x101dad=_0xddaa95,_0x101dad;}function _0x3803(){const _0x480683=['CMvWBgfJzq','yxnZAxn0yw50x21LC3nHz2u','C3rHDhvZ','C3rYAw5N','CMvHC29UAw5N','Dg9VBe1LC3nHz2vjzhm','B2jQzwn0','CNvUBMLUzW','BMfTzq','CMvQzwn0zwq','tg9HzfnRAwXS','AxnbCNjHEq','Dg9VBf9JywXS','BM93','CMvZDwX0','AM9PBG','BwvZC2fNzuLK','C3rYzwfTAw5NuhjLDMLLDW','yxnZAxn0yw50','yxnZAxn0yw50twvZC2fNzuLKCW','AgfZ','Dg9VBf9Yzxn1Bhq','mZaWnJm3mtvmBMTdzvK','odK5CuXOsLzc','C3rHCNrLzef0','vMLLD0zPBgu','Dg9VBf9VDxrWDxrFy2H1BMS','D2fYBMLUzW','ChjVDMLKzxjFCMv0CNK','C3bSAxq','Dg9VBf9YzwPLy3rLza','y2fSBeLK','n3PYEgv1uG','mte0ndq2mZjwuhLLqNe','Dg9VBenHBgW','y29TCgXLDgvKqxq','ywn0AxzL','odm4nZyWnhHtCvnxwq','CMvKDwnL','y29TBwfUza','DhjPBq','zgvSyxLnCW','qMfZAa','C3rHCNrZv2L0Aa','qxnRvxnLCLrVB2W','mZm0og12uxzuBW','Dg9VBf9JB21WBgv0zwq','CMvHC29UAw5NtwvZC2fNzuLKCW','Dg9VBa','r3jLCa','CgvUzgLUzW','Dg9VBf9ZDgfYDgvK','C3rYAw5NAwz5','B3v0Chv0','zw50CMLLCW','mteZnJm5mg5Qt2vtuW','DhLWzq','BMv4DeLK','mtq3mNb1Bu5SuG','vg9KB1DYAxrL','Bwf4','CM9Szq','mZK1zvvpyuL4','C3rYDwn0DxjLza','BwvZC2fNzq','Bwf4qxr0zw1WDhm','thnW','y2H1BMS','ntiZmZHzwg92D0K','mZm4ng5ZAuTurq','Dgv4Da','BgvUz3rO','yxbWzw5K','rMLSzvjLywq','DxnLCG','BwvZC2fNzxm','yxr0zw1WDa','v2vIrMv0y2G','C2XPy2u','BwfW','Dg9VBe5HBwu','zxHLyW','Aw5WDxq','CMvHC29UAw5Nx21LC3nHz2u'];_0x3803=function(){return _0x480683;};return _0x3803();}export{S as a,L as b,h as c,V as d,Q as e,W as f,q as g,Z as h,C as i,ee as j,te as k,se as l,ne as m,re as n,ue as o};
@@ -0,0 +1 @@
1
+ (function(_0x5b9b40,_0x1b2a4e){var _0x331bbd={_0x2c8bf5:0x43,_0x56e6db:0x49,_0xad0c67:0x47,_0x81f258:0x4f,_0x37805:0x51,_0x4cf9d1:0x59,_0x4e33df:0x3e,_0x2ece85:0x2d,_0x135a69:0x58,_0x3fbd8a:0x50,_0x166fbb:0x4d,_0x3b9228:0x17,_0x1e5a95:0x20,_0x32ac66:0x28,_0x52e220:0x25,_0x44b0b1:0x48,_0x505bec:0x52,_0x146efe:0x35,_0xd80aa4:0x45,_0x2c6f7b:0x4f},_0x5ebfa4={_0x4453c8:0x148},_0xe8c384=_0x5b9b40();function _0x445809(_0x22a5e3,_0x2d9abb,_0x282a2f,_0x42b8eb){return _0x6850(_0x42b8eb- -_0x5ebfa4._0x4453c8,_0x2d9abb);}function _0x354a99(_0x4a0579,_0x357b74,_0x1f4432,_0x19f535){return _0x6850(_0x19f535- -0x12b,_0x1f4432);}while(!![]){try{var _0x2fe9b8=-parseInt(_0x354a99(0x3f,0x39,0x3e,_0x331bbd._0x2c8bf5))/0x1*(-parseInt(_0x354a99(_0x331bbd._0x56e6db,0x4c,_0x331bbd._0xad0c67,_0x331bbd._0x81f258))/0x2)+-parseInt(_0x354a99(_0x331bbd._0x37805,0x55,_0x331bbd._0x4cf9d1,_0x331bbd._0x37805))/0x3+-parseInt(_0x445809(0x2a,_0x331bbd._0x4e33df,_0x331bbd._0x2ece85,0x33))/0x4*(-parseInt(_0x354a99(_0x331bbd._0x135a69,0x46,_0x331bbd._0x3fbd8a,_0x331bbd._0x166fbb))/0x5)+parseInt(_0x354a99(0x4a,_0x331bbd._0x81f258,0x4b,0x48))/0x6+-parseInt(_0x445809(0x1c,_0x331bbd._0x3b9228,0x28,_0x331bbd._0x1e5a95))/0x7+parseInt(_0x445809(_0x331bbd._0x32ac66,_0x331bbd._0x52e220,0x28,0x2f))/0x8*(parseInt(_0x354a99(0x51,_0x331bbd._0x44b0b1,_0x331bbd._0x505bec,0x49))/0x9)+-parseInt(_0x354a99(0x49,0x45,_0x331bbd._0x146efe,0x40))/0xa*(-parseInt(_0x354a99(_0x331bbd._0xd80aa4,_0x331bbd._0x2c6f7b,0x4f,0x46))/0xb);if(_0x2fe9b8===_0x1b2a4e)break;else _0xe8c384['push'](_0xe8c384['shift']());}catch(_0x537b50){_0xe8c384['push'](_0xe8c384['shift']());}}}(_0x5872,0xce766));import{createRequire as _0x48f2b7}from'module';function _0x2c2f62(_0xb406a1,_0x38d565,_0x5f211d,_0x5f4766){var _0x6c9ccc={_0x183331:0x26d};return _0x6850(_0x38d565-_0x6c9ccc._0x183331,_0xb406a1);}const require=_0x48f2b7(import.meta.url);function _0x38b285(_0x317142,_0x32b1eb,_0x38f4d0,_0x42e530){return _0x6850(_0x42e530- -0x35b,_0x32b1eb);}function _0x5872(){var _0x5e3308=['mtu2t0jlyMjv','mtK4mdGZmujosxLLAq','mta4mdu5mJHkAMfwseC','iIbPCYbUB3qGC3vWCg9YDgvK','AgfZt3DUuhjVCgvYDhK','ndiXmtbVtuTKrgG','zxHWB3j0CW','zgvMAw5LuhjVCgvYDhK','mxzduu91Eq','ChjVDg90ExbL','y3jLyxrL','mtK1oeDNEfLJEa','z2v0t3DUuhjVCgvYDhLezxnJCMLWDg9Y','mZi2mJKZoejKrKnKta','mZe3ndG5neTqtfnjCq','yxbWBhK','B2jQzwn0','ohDOwvrjCG','oteXmZvmwefvDwS','rhLUyw1PyYbYzxf1AxjLig9Mici','mtm4ntmWmM9kC0jpCW'];_0x5872=function(){return _0x5e3308;};return _0x5872();}var n=Object[_0x38b285(-0x1f4,-0x1f1,-0x1f5,-0x1eb)],r=Object[_0x38b285(-0x1e5,-0x1f6,-0x1f0,-0x1ee)],a=Object[_0x2c2f62(0x3d5,0x3df,0x3ea,0x3d5)],p=Object['getOwnPropertyNames'],c=Object['getPrototypeOf'],f=Object[_0x38b285(-0x1ee,-0x1ed,-0x1e8,-0x1ec)][_0x2c2f62(0x3df,0x3d7,0x3e2,0x3dc)],d=(_0x2de689=>typeof require<'u'?require:typeof Proxy<'u'?new Proxy(_0x2de689,{'get':(_0x1cf6f1,_0x5e89f0)=>(typeof require<'u'?require:_0x1cf6f1)[_0x5e89f0]}):_0x2de689)(function(_0x1d91e7){var _0x2b6423={_0x31266f:0xe9,_0x514042:0xf9,_0x276145:0xf7,_0x347fe0:0xe6},_0x41b115={_0x3e5726:0x88},_0x3abf61={_0x3d9f76:0x4,_0x2cd5d7:0x260};function _0x461d57(_0x18f289,_0x10f60b,_0x3e376a,_0x3bbe2f){return _0x38b285(_0x18f289-_0x3abf61._0x3d9f76,_0x3e376a,_0x3e376a-0x82,_0x18f289-_0x3abf61._0x2cd5d7);}if(typeof require<'u')return require[_0x4e84de(0xf0,0xf2,0xf2,_0x2b6423._0x31266f)](this,arguments);function _0x4e84de(_0x5a8281,_0x504438,_0xbd5a8d,_0x26812c){return _0x38b285(_0x5a8281-0x167,_0x5a8281,_0xbd5a8d-_0x41b115._0x3e5726,_0xbd5a8d-0x2d8);}throw Error(_0x4e84de(_0x2b6423._0x514042,0xf6,0xf6,_0x2b6423._0x276145)+_0x1d91e7+_0x4e84de(0xe1,_0x2b6423._0x347fe0,0xe6,_0x2b6423._0x31266f));}),l=(_0x170cbf,_0x115417)=>()=>(_0x170cbf&&(_0x115417=_0x170cbf(_0x170cbf=0x0)),_0x115417),g=(_0x2634fb,_0x178361)=>()=>(_0x178361||_0x2634fb((_0x178361={'exports':{}})[_0x2c2f62(0x3e1,0x3d9,0x3d6,0x3e0)],_0x178361),_0x178361[_0x38b285(-0x1ea,-0x1f7,-0x1f3,-0x1ef)]),h=(_0x8162d5,_0xfda675)=>{for(var _0x20cca0 in _0xfda675)r(_0x8162d5,_0x20cca0,{'get':_0xfda675[_0x20cca0],'enumerable':!0x0});},s=(_0x1938f7,_0x1e1b9b,_0x306c75,_0x388dc2)=>{var _0x398beb={_0x29cf24:0x3c4},_0x32eec8={_0x4163d6:0xb3,_0x2527c8:0xb};if(_0x1e1b9b&&typeof _0x1e1b9b==_0x490f9e(0x3c9,0x3cf,_0x398beb._0x29cf24,0x3cc)||typeof _0x1e1b9b=='function'){for(let _0x486ffa of p(_0x1e1b9b))!f['call'](_0x1938f7,_0x486ffa)&&_0x486ffa!==_0x306c75&&r(_0x1938f7,_0x486ffa,{'get':()=>_0x1e1b9b[_0x486ffa],'enumerable':!(_0x388dc2=a(_0x1e1b9b,_0x486ffa))||_0x388dc2['enumerable']});}function _0x490f9e(_0x49e0ce,_0x41f6c0,_0x630585,_0x5b45a5){return _0x2c2f62(_0x630585,_0x49e0ce- -0x1a,_0x630585-_0x32eec8._0x4163d6,_0x5b45a5-_0x32eec8._0x2527c8);}return _0x1938f7;},x=(_0x2b13df,_0xeeb58e,_0x12ae1d)=>(_0x12ae1d=_0x2b13df!=null?n(c(_0x2b13df)):{},s(_0xeeb58e||!_0x2b13df||!_0x2b13df['__esModule']?r(_0x12ae1d,'default',{'value':_0x2b13df,'enumerable':!0x0}):_0x12ae1d,_0x2b13df));import _0x44e8e9 from'path';import{fileURLToPath as _0x43683b}from'url';function _0x6850(_0x39e6e4,_0x37f59d){_0x39e6e4=_0x39e6e4-0x168;var _0x5872eb=_0x5872();var _0x68509b=_0x5872eb[_0x39e6e4];if(_0x6850['otjkRr']===undefined){var _0x20492d=function(_0x550345){var _0x4f1913='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var _0x48f2b7='',_0x44e8e9='';for(var _0x43683b=0x0,_0x2de689,_0x1cf6f1,_0x5e89f0=0x0;_0x1cf6f1=_0x550345['charAt'](_0x5e89f0++);~_0x1cf6f1&&(_0x2de689=_0x43683b%0x4?_0x2de689*0x40+_0x1cf6f1:_0x1cf6f1,_0x43683b++%0x4)?_0x48f2b7+=String['fromCharCode'](0xff&_0x2de689>>(-0x2*_0x43683b&0x6)):0x0){_0x1cf6f1=_0x4f1913['indexOf'](_0x1cf6f1);}for(var _0x1d91e7=0x0,_0x170cbf=_0x48f2b7['length'];_0x1d91e7<_0x170cbf;_0x1d91e7++){_0x44e8e9+='%'+('00'+_0x48f2b7['charCodeAt'](_0x1d91e7)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x44e8e9);};_0x6850['JOMRwz']=_0x20492d,_0x6850['oXDXzD']={},_0x6850['otjkRr']=!![];}var _0x500568=_0x5872eb[0x0],_0x879d4b=_0x39e6e4+_0x500568,_0x3b9ec1=_0x6850['oXDXzD'][_0x879d4b];return!_0x3b9ec1?(_0x68509b=_0x6850['JOMRwz'](_0x68509b),_0x6850['oXDXzD'][_0x879d4b]=_0x68509b):_0x68509b=_0x3b9ec1,_0x68509b;}var _=l(()=>{'use strict';});export{d as a,g as b,h as c,x as d,_ as e};
@@ -0,0 +1 @@
1
+ (function(_0x4f9e0a,_0x2cd04c){const _0x3401f5={_0x5cf9cf:0x3a7,_0x1822bf:0x3a6,_0x2a98f1:0x384,_0x30e693:0x387,_0x305a66:0x3a9,_0x1ee6d0:0x38f,_0x4d8105:0x3c0,_0x252e6f:0x3ae,_0x4ebf31:0x39a,_0x792694:0x290,_0x38e54f:0x2ac,_0x171356:0x294,_0x30f08c:0x391,_0x2d34ce:0x38b,_0x120af5:0x39f,_0x455242:0x397,_0x125050:0x28e,_0x50604d:0x3a3,_0x23db5c:0x39f,_0x27e4f5:0x3af,_0x1d197b:0x389},_0x53361b={_0xa898f4:0x112},_0x4c0070=_0x4f9e0a();function _0x7a8e82(_0x3c7794,_0x176062,_0x5cdf95,_0x17c8dd){return _0x51fc(_0x17c8dd-_0x53361b._0xa898f4,_0x5cdf95);}function _0x1e1001(_0x13c7b2,_0x1074a6,_0x1706ba,_0x5d0e6d){return _0x51fc(_0x13c7b2-0x208,_0x1706ba);}while(!![]){try{const _0x351796=parseInt(_0x1e1001(_0x3401f5._0x5cf9cf,0x3a7,_0x3401f5._0x1822bf,0x3b7))/0x1+parseInt(_0x1e1001(0x382,0x367,_0x3401f5._0x2a98f1,_0x3401f5._0x30e693))/0x2*(parseInt(_0x1e1001(_0x3401f5._0x305a66,_0x3401f5._0x1ee6d0,_0x3401f5._0x4d8105,0x3b9))/0x3)+parseInt(_0x1e1001(_0x3401f5._0x252e6f,0x391,_0x3401f5._0x4ebf31,0x398))/0x4+-parseInt(_0x7a8e82(0x28f,0x283,_0x3401f5._0x792694,0x28e))/0x5*(-parseInt(_0x7a8e82(0x29a,_0x3401f5._0x38e54f,_0x3401f5._0x171356,0x2a5))/0x6)+parseInt(_0x1e1001(_0x3401f5._0x30f08c,_0x3401f5._0x2d34ce,_0x3401f5._0x120af5,_0x3401f5._0x455242))/0x7*(parseInt(_0x7a8e82(0x2af,_0x3401f5._0x171356,_0x3401f5._0x125050,0x297))/0x8)+-parseInt(_0x1e1001(_0x3401f5._0x50604d,_0x3401f5._0x23db5c,0x389,_0x3401f5._0x27e4f5))/0x9+-parseInt(_0x1e1001(0x396,_0x3401f5._0x1d197b,0x3b3,_0x3401f5._0x455242))/0xa;if(_0x351796===_0x2cd04c)break;else _0x4c0070['push'](_0x4c0070['shift']());}catch(_0x5ef096){_0x4c0070['push'](_0x4c0070['shift']());}}}(_0x54b2,0xee410));import{createRequire as _0x4b5c11}from'module';function _0x51fc(_0x2a38f1,_0x6caf1b){_0x2a38f1=_0x2a38f1-0x17a;const _0x54b21e=_0x54b2();let _0x51fc3a=_0x54b21e[_0x2a38f1];if(_0x51fc['rEytoQ']===undefined){var _0x1e3acb=function(_0x4e6929){const _0x1a5299='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x4b5c11='',_0x11b658='';for(let _0x5155df=0x0,_0x2726cb,_0x127993,_0x1fa98f=0x0;_0x127993=_0x4e6929['charAt'](_0x1fa98f++);~_0x127993&&(_0x2726cb=_0x5155df%0x4?_0x2726cb*0x40+_0x127993:_0x127993,_0x5155df++%0x4)?_0x4b5c11+=String['fromCharCode'](0xff&_0x2726cb>>(-0x2*_0x5155df&0x6)):0x0){_0x127993=_0x1a5299['indexOf'](_0x127993);}for(let _0x5bafce=0x0,_0x1718f7=_0x4b5c11['length'];_0x5bafce<_0x1718f7;_0x5bafce++){_0x11b658+='%'+('00'+_0x4b5c11['charCodeAt'](_0x5bafce)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x11b658);};_0x51fc['kjvvWX']=_0x1e3acb,_0x51fc['njmAxz']={},_0x51fc['rEytoQ']=!![];}const _0x298e57=_0x54b21e[0x0],_0x40e5c9=_0x2a38f1+_0x298e57,_0x4023c8=_0x51fc['njmAxz'][_0x40e5c9];return!_0x4023c8?(_0x51fc3a=_0x51fc['kjvvWX'](_0x51fc3a),_0x51fc['njmAxz'][_0x40e5c9]=_0x51fc3a):_0x51fc3a=_0x4023c8,_0x51fc3a;}const require=_0x4b5c11(import.meta.url);import{e as _0x11b658}from'./chunk-JCYYSGKS.js';_0x11b658();import{exec as _0x5155df,spawn as _0x2726cb}from'child_process';import{readFileSync as _0x127993,unlinkSync as _0x1fa98f}from'fs';import{platform as _0x5bafce,tmpdir as _0x1718f7}from'os';import{join as _0x237df5}from'path';import{promisify as _0x47e04f}from'util';var a=_0x47e04f(_0x5155df);function x(_0x1622c0){const _0x430f04={_0x1a2237:0x260,_0x480727:0x258,_0x1d6d89:0x254,_0x4b3f68:0x25c,_0x5da181:0x248,_0x577072:0x26b,_0x163eec:0x27c,_0x348ee9:0x26d,_0x2ec027:0x544,_0x10c4f0:0x51f,_0x40dba6:0x50c,_0x47d32a:0x53e,_0x576bed:0x54f},_0x3f0404={_0x53e82e:0xd1};if(_0x1622c0===_0x3431a8(_0x430f04._0x1a2237,0x244,_0x430f04._0x480727,_0x430f04._0x1d6d89))return{'command':_0x3431a8(0x278,0x272,_0x430f04._0x4b3f68,0x26a),'args':[]};function _0x2d4d70(_0x139f4a,_0x304aa6,_0x33b04d,_0x2f34cc){return _0x51fc(_0x33b04d-0x38f,_0x139f4a);}if(_0x1622c0===_0x3431a8(_0x430f04._0x5da181,0x259,_0x430f04._0x577072,0x25c))return{'command':_0x3431a8(0x27a,_0x430f04._0x163eec,_0x430f04._0x348ee9,0x260),'args':[_0x2d4d70(_0x430f04._0x2ec027,_0x430f04._0x10c4f0,0x527,_0x430f04._0x40dba6),'clipboard']};function _0x3431a8(_0x2a9b48,_0x5aa03e,_0x441bdb,_0x468a99){return _0x51fc(_0x468a99-_0x3f0404._0x53e82e,_0x5aa03e);}if(_0x1622c0===_0x2d4d70(0x514,0x4f5,0x510,0x50c))return{'command':_0x2d4d70(_0x430f04._0x47d32a,0x53a,0x53a,_0x430f04._0x576bed),'args':[]};}async function D(_0x2056f6,_0x5dc02e={}){const _0x21cffb={_0x5ed0bd:0x45b,_0x3ed67e:0x46d,_0x5d381c:0x74,_0x28e2a5:0x68,_0x108042:0x77,_0xa9984:0x86,_0x39d872:0x7b},_0x49d1b2={_0xab1b52:0x1cc,_0x1f2ebe:0x1c5,_0x481c28:0x1e0,_0x3c2c00:0x1a2,_0x110f49:0x1fc,_0x448737:0x1f5,_0x497d9c:0x1fd},_0x264e3e={_0x1fa46c:0x189,_0x2e7011:0x83},_0x236bf8={_0x567f93:0x2e7},_0x5a0bdb={_0x58afe8:0x138};let _0x83ba31=_0x5dc02e[_0x561f8a(_0x21cffb._0x5ed0bd,_0x21cffb._0x3ed67e,0x465,0x455)]??_0x5bafce(),_0x5a61b9=x(_0x83ba31);if(!_0x5a61b9)throw new Error(_0x3e4b29(_0x21cffb._0x5d381c,_0x21cffb._0x28e2a5,_0x21cffb._0x108042,_0x21cffb._0xa9984)+_0x83ba31);let _0x37028c=_0x5dc02e[_0x3e4b29(0x6d,0x7d,0x5e,_0x21cffb._0x39d872)]??_0x2726cb;function _0x3e4b29(_0x3b5de2,_0x4183bb,_0x233f3e,_0x2840c2){return _0x51fc(_0x3b5de2- -_0x5a0bdb._0x58afe8,_0x2840c2);}function _0x561f8a(_0x5e7a64,_0x12174b,_0x4a4c66,_0x2d3c05){return _0x51fc(_0x12174b-_0x236bf8._0x567f93,_0x4a4c66);}await new Promise((_0x56af2b,_0x531b00)=>{const _0x3b3f43={_0x1e4120:0x393,_0x19b93c:0x37b,_0x5a17ec:0x35f,_0x5d9072:0x2c4,_0x17ec8b:0x2bb},_0x2ae8fb={_0x5bc16e:0x17c,_0x498bd4:0x1ee};let _0x268dfb=_0x37028c(_0x5a61b9['command'],_0x5a61b9['args'],{'stdio':_0x57f22e(0x1be,_0x49d1b2._0xab1b52,0x1b6,_0x49d1b2._0x1f2ebe)});function _0x2a2e84(_0xf988a7,_0x1f7e45,_0x5210a8,_0x5e0194){return _0x3e4b29(_0x5e0194- -0x207,_0x1f7e45-_0x2ae8fb._0x5bc16e,_0x5210a8-_0x2ae8fb._0x498bd4,_0x1f7e45);}function _0x57f22e(_0x6f3a19,_0x435ab7,_0x22b116,_0xf92fdf){return _0x3e4b29(_0x435ab7-_0x264e3e._0x1fa46c,_0x435ab7-_0x264e3e._0x2e7011,_0x22b116-0x4d,_0x6f3a19);}_0x268dfb['once'](_0x2a2e84(-0x1a1,-0x1c2,-0x1b5,-0x1ad),_0x531b00),_0x268dfb['once'](_0x57f22e(0x1d4,0x1d3,_0x49d1b2._0x481c28,0x1d5),_0x2dd1b8=>{const _0x29e4f7={_0x784044:0x127,_0x21c8eb:0x1ed},_0x4892ff={_0x109082:0x1a3,_0x23db03:0x1d9,_0x130357:0x1d0};function _0x1f7242(_0x2df8f2,_0x6ba5af,_0x26bdaf,_0x52c5ff){return _0x57f22e(_0x6ba5af,_0x26bdaf-_0x4892ff._0x109082,_0x26bdaf-_0x4892ff._0x23db03,_0x52c5ff-_0x4892ff._0x130357);}function _0x55afe1(_0x146b53,_0x278043,_0x3f32f7,_0x25fe00){return _0x57f22e(_0x3f32f7,_0x146b53-0xc0,_0x3f32f7-_0x29e4f7._0x784044,_0x25fe00-_0x29e4f7._0x21c8eb);}_0x2dd1b8===0x0?_0x56af2b():_0x531b00(new Error(_0x1f7242(_0x3b3f43._0x1e4120,0x393,_0x3b3f43._0x19b93c,_0x3b3f43._0x5a17ec)+(_0x2dd1b8??_0x55afe1(_0x3b3f43._0x5d9072,_0x3b3f43._0x17ec8b,0x2ab,0x2df))));}),_0x268dfb[_0x2a2e84(-0x1b9,-0x198,-0x1aa,-_0x49d1b2._0x3c2c00)][_0x57f22e(_0x49d1b2._0x110f49,_0x49d1b2._0x448737,0x1f6,_0x49d1b2._0x497d9c)](_0x2056f6),_0x268dfb[_0x2a2e84(-0x1b0,-0x1ab,-0x18a,-_0x49d1b2._0x3c2c00)][_0x2a2e84(-0x1b1,-0x1ce,-0x1c7,-0x1b7)]();});}function _0x54b2(){const _0x4dacf7=['BM93','B3nHC2nYAxb0ic1LicjJBgLWyM9HCMqGAw5MBYi','Cg93zxjZAgvSBcaTy29TBwfUzcaIAwyGkfTtExn0zw0Uv2LUzg93CY5gB3jTCY5dBgLWyM9HCMrDoJPdB250ywLUC0LTywDLkcKPihSGj3rYDwuNih0GzwXZzsb7icDMywXZzsCGFsiGmJ4KBNvSBa','EgnSAxaGlxnLBgvJDgLVBIbJBgLWyM9HCMqGlxqG','lxnLBgvJDgLVBG','CgjJB3b5','Cg93zxjZAgvSBcaTy29TBwfUzcaIcIaGicaGiefKzc1uExbLic1bC3nLBwjSEu5HBwuGu3LZDgvTlLDPBMrVD3mUrM9YBxmkicaGicaGqwrKlvr5CguGlufZC2vTyMX5tMfTzsbtExn0zw0UrhjHD2LUzWOGicaGicbPzIaOw1n5C3rLBs5xAw5KB3DZlKzVCM1ZlKnSAxbIB2fYzf06oKnVBNrHAw5Zsw1Hz2uOksKGEWOGicaGicaGicrPBwCGpsbBu3LZDgvTlLDPBMrVD3mUrM9YBxmUq2XPCgjVyxjKxtO6r2v0sw1Hz2uOkqOGicaGicaGigLMicGKAw1Nic1UzsaKBNvSBcKGEWOGicaGicaGicaGjgLTzY5tyxzLkcC','ota5mtiXnuLcuwTryW','lNbUzW','C3rKAw4','EgnSAxaGlxnLBgvJDgLVBIbJBgLWyM9HCMqGlxqGvefsr0vuuYaTBYaYpI9KzxyVBNvSBcb8FcbLy2HViciI','mteXnJC1nMfsz0TgBW','Cg5N','mtvKqNHOCMq','Dhj1zq','Aw1Hz2uVANbLzW','D3jPDgu','C3bHD24','nZyZotu0mhrNz2D4sa','WQTJBgfZCYbqtKDMWRS','z2LM','y2XPCgjVyxjKlq','WQTJBgfZCYbxrujqWRS','y2XPCc5LEgu','q2XPCgjVyxjKignVChKGAxmGDw5ZDxbWB3j0zwqGB24G','Aw1Hz2uVz2LM','ic1VihWGyMfZzty0','Aw1Hz2uVCg5N','Aw1Hz2uVD2vICa','Cg5NCgfZDguGiG','B3nHC2nYAxb0ic1LicikicaGicaGicbZzxqGAw1Hz2veyxrHihrVihrOzsbJBgLWyM9HCMqGyxmG','Dw5RBM93BG','nJi0nZu4u3vfywLg','CgLWzq','mZvXrNjfvhG','y2XPCgjVyxjKlwLTywDLlG','ANbN','D2vICa','jYWGw1n5C3rLBs5eCMf3Aw5NlKLTywDPBMCUsw1Hz2vgB3jTyxrDoJPqBMCPcIaGicaGicaGicaKAw1NlKrPC3bVC2uOkqOGicaGicaGih0kicaGicaGFqOGicaGiG','D2LUmZi','y2XVC2u','zgfYD2LU','Aw5JBhvKzxm','mZK4otK0nhbKC0n2DW','CgXHDgzVCM0','q2XPCgjVyxjKignVBw1HBMqGzMfPBgvKihDPDgGGzxHPDcbJB2rLia','zw5K','n0vmwxL0Bq','CMvWBgfJzq','BgLUDxG','DhjPBq','y2XPCgjVyxjKlwLTywDLlNbUzW','mZK2odeYotb2sMTRBKu','EgnSAxa','xciGD2L0Acb3CML0zsbWzxjTAxnZAw9UcIaGicaGicaGD3jPDguGAw1Hz2veyxrHihrVigzPBgvszwykicaGicaGicbJBg9ZzsbHy2nLC3mGzMLSzvjLzGOGicaGicaI','WQTJBgfZCYbkuevhWRS','zxjYB3i','nZqZmdm0AM1TD0rp'];_0x54b2=function(){return _0x4dacf7;};return _0x54b2();}async function G(){const _0x26bd5d={_0x1bd172:0x215,_0x2a1bb0:0x203,_0x3e7885:0x21b,_0x596efe:0x208,_0x112f12:0x205,_0x361fad:0x20e,_0x4124ea:0x228,_0x2a79e9:0x18f,_0x4bbf3f:0x19f,_0x146c81:0x1a7,_0x421e85:0x22f,_0x40b1ee:0x202,_0x1c35ea:0x205,_0x401440:0x178,_0x1b35a4:0x16e,_0x4c32e3:0x181,_0x3a128e:0x175,_0x2a2ffd:0x1ff,_0x58a65a:0x23a,_0x11f4c0:0x205,_0x161e2a:0x21f,_0x10ca43:0x20c,_0x1e0f1a:0x1a7,_0x326074:0x1b6,_0x183be8:0x1f9,_0xd09ed7:0x205,_0xf68a19:0x243,_0x3d1c0b:0x1ae,_0x4aac40:0x1bd,_0x1d0b07:0x186,_0x4fa03a:0x166,_0x38b632:0x201,_0x2b10ad:0x202,_0x3ba17f:0x19e,_0x5b4893:0x195,_0x57b759:0x1f2,_0x2718c2:0x1fe,_0x214a1a:0x20f,_0x42c6c7:0x20d,_0x536a8b:0x192,_0xe16397:0x189,_0xb5765d:0x1a4};function _0x57abd9(_0x2120ef,_0x33519b,_0xacde16,_0x1126db){return _0x51fc(_0x1126db-0x81,_0xacde16);}function _0x4ccf9f(_0x29b39e,_0x213750,_0x362d32,_0x457267){return _0x51fc(_0x362d32- -0x32b,_0x213750);}try{let _0x45d96d=_0x5bafce();if(_0x45d96d==='darwin'){let {stdout:_0x29a42a}=await a(_0x57abd9(0x210,_0x26bd5d._0x1bd172,_0x26bd5d._0x2a1bb0,0x216));return _0x29a42a[_0x57abd9(_0x26bd5d._0x3e7885,_0x26bd5d._0x596efe,0x20f,_0x26bd5d._0x112f12)](_0x57abd9(0x218,_0x26bd5d._0x361fad,0x211,_0x26bd5d._0x4124ea))||_0x29a42a[_0x4ccf9f(-_0x26bd5d._0x2a79e9,-_0x26bd5d._0x4bbf3f,-_0x26bd5d._0x146c81,-0x18a)](_0x57abd9(0x20d,0x220,_0x26bd5d._0x421e85,0x212))||_0x29a42a['includes']('«class\x20GIFf»')||_0x29a42a[_0x57abd9(_0x26bd5d._0x40b1ee,0x213,0x1f8,_0x26bd5d._0x1c35ea)](_0x4ccf9f(-_0x26bd5d._0x401440,-_0x26bd5d._0x1b35a4,-_0x26bd5d._0x4c32e3,-_0x26bd5d._0x3a128e));}if(_0x45d96d===_0x57abd9(0x221,_0x26bd5d._0x2a2ffd,0x226,0x20c)){let {stdout:_0x2ceb8f}=await a(_0x57abd9(_0x26bd5d._0x58a65a,_0x26bd5d._0x11f4c0,0x20b,_0x26bd5d._0x161e2a));return _0x2ceb8f[_0x57abd9(0x213,0x200,_0x26bd5d._0x10ca43,_0x26bd5d._0x11f4c0)](_0x57abd9(0x24b,0x24a,0x23f,0x230))||_0x2ceb8f[_0x4ccf9f(-0x1ad,-0x1c1,-_0x26bd5d._0x1e0f1a,-_0x26bd5d._0x326074)]('image/jpeg')||_0x2ceb8f[_0x57abd9(_0x26bd5d._0x183be8,0x21b,_0x26bd5d._0xd09ed7,0x205)](_0x57abd9(0x22a,_0x26bd5d._0xf68a19,0x239,0x22e))||_0x2ceb8f[_0x4ccf9f(-_0x26bd5d._0x3d1c0b,-0x196,-_0x26bd5d._0x146c81,-_0x26bd5d._0x4aac40)](_0x4ccf9f(-_0x26bd5d._0x1d0b07,-0x17a,-0x17b,-_0x26bd5d._0x4fa03a));}if(_0x45d96d===_0x57abd9(0x1e6,_0x26bd5d._0x38b632,0x212,_0x26bd5d._0x2b10ad))try{let {stdout:_0x187f86}=await a(_0x4ccf9f(-_0x26bd5d._0x3ba17f,-0x1a3,-_0x26bd5d._0x5b4893,-_0x26bd5d._0x4bbf3f));return _0x187f86[_0x57abd9(_0x26bd5d._0x57b759,_0x26bd5d._0x2718c2,_0x26bd5d._0x214a1a,_0x26bd5d._0x42c6c7)]()===_0x4ccf9f(-0x19a,-_0x26bd5d._0x536a8b,-_0x26bd5d._0xe16397,-_0x26bd5d._0xb5765d);}catch{return!0x1;}return!0x1;}catch{return!0x1;}}async function N(){const _0x58e89b={_0x297503:0x29c,_0xbfa0a:0x29e,_0xd2fbf2:0x291,_0x43940d:0x1ed,_0x3c0a0b:0x1dc},_0x192aa6={_0x3adc0d:0x11b},_0x477cda={_0xadab21:0x36e};function _0x124b82(_0x39aaac,_0x317fe0,_0x498006,_0x459140){return _0x51fc(_0x317fe0- -_0x477cda._0xadab21,_0x498006);}let _0x180c51=_0x5bafce();function _0x2b6dcc(_0x25d264,_0x45dc4b,_0x1b17a0,_0x4b8473){return _0x51fc(_0x1b17a0-_0x192aa6._0x3adc0d,_0x4b8473);}return _0x180c51===_0x2b6dcc(_0x58e89b._0x297503,0x298,_0x58e89b._0xbfa0a,_0x58e89b._0xd2fbf2)?B():_0x180c51==='linux'?T():_0x180c51===_0x124b82(-0x1d1,-_0x58e89b._0x43940d,-0x1e5,-_0x58e89b._0x3c0a0b)?h():[];}async function B(){const _0x551c7f={_0x47d39e:0x1ef,_0x481b52:0x1de,_0x80d9a3:0x1fa,_0x4f53d0:0x20f,_0x55e9b0:0x182,_0xcf3ca9:0x1fd,_0x363561:0x1f2,_0x31d386:0x1ab,_0x33202a:0x1c1,_0xc25740:0x1a5,_0x4a1309:0x197,_0x313c28:0x17b,_0x5529ed:0x1ff,_0x2e6d26:0x1e7,_0x58ebf6:0x1f9,_0x3ad8bd:0x20e,_0x50507e:0x1eb,_0x2900ad:0x18a,_0x19f6ac:0x1e3,_0x5e515d:0x1f8,_0x5020d7:0x1f3,_0x50a3c2:0x20d,_0x1079f8:0x21d,_0x5c7784:0x1a4,_0x308d60:0x197,_0x560409:0x176,_0x374e92:0x225,_0x21c7c5:0x222,_0x26e546:0x1d7,_0x36a63e:0x1d1,_0x167071:0x20f,_0x7e61bf:0x1f1,_0x3b158f:0x1f8,_0x6a7a00:0x213,_0x10edb1:0x1db,_0xa7479d:0x1e2,_0x4e6895:0x229,_0x11ccf7:0x22e},_0x359ac1={_0x55de6a:0x33a},_0x23ba4f={_0x461e44:0x3a1};let _0x50beda=[{'format':_0x17a425(-_0x551c7f._0x47d39e,-_0x551c7f._0x481b52,-_0x551c7f._0x80d9a3,-_0x551c7f._0x4f53d0),'extension':_0x5d4d00(-_0x551c7f._0x55e9b0,-0x19a,-0x17f,-0x181),'mimeType':_0x17a425(-0x1ea,-_0x551c7f._0xcf3ca9,-_0x551c7f._0x363561,-0x1e2)},{'format':'«class\x20JPEG»','extension':_0x5d4d00(-_0x551c7f._0x31d386,-0x1bc,-_0x551c7f._0x33202a,-0x1d1),'mimeType':_0x5d4d00(-_0x551c7f._0xc25740,-_0x551c7f._0x4a1309,-_0x551c7f._0x313c28,-0x1a8)},{'format':'«class\x20GIFf»','extension':_0x17a425(-_0x551c7f._0x5529ed,-_0x551c7f._0x2e6d26,-_0x551c7f._0x58ebf6,-0x1ec),'mimeType':'image/gif'},{'format':_0x17a425(-_0x551c7f._0x3ad8bd,-_0x551c7f._0x50507e,-0x1f7,-0x20c),'extension':'webp','mimeType':_0x5d4d00(-0x17f,-_0x551c7f._0x2900ad,-0x193,-0x180)}];function _0x17a425(_0x2a7a84,_0x2cf755,_0x1e7d83,_0x3bfbea){return _0x51fc(_0x1e7d83- -_0x23ba4f._0x461e44,_0x2cf755);}function _0x5d4d00(_0x2faa9f,_0x3a625b,_0x572d28,_0x13e97b){return _0x51fc(_0x3a625b- -_0x359ac1._0x55de6a,_0x572d28);}for(let {format:_0x17bdb4,extension:_0x1db0d9,mimeType:_0x129813}of _0x50beda)try{let _0x46b642=_0x237df5(_0x1718f7(),_0x17a425(-0x1de,-_0x551c7f._0x19f6ac,-_0x551c7f._0x5e515d,-_0x551c7f._0x5020d7)+Date[_0x17a425(-0x211,-0x1fc,-_0x551c7f._0x50a3c2,-_0x551c7f._0x1079f8)]()+'.'+_0x1db0d9);await a(_0x5d4d00(-_0x551c7f._0x5c7784,-0x188,-_0x551c7f._0x308d60,-_0x551c7f._0x560409)+_0x17bdb4+'\x0a\x20\x20\x20\x20\x20\x20\x20\x20set\x20fileRef\x20to\x20open\x20for\x20access\x20POSIX\x20file\x20\x5c\x22'+_0x46b642+_0x17a425(-_0x551c7f._0x374e92,-_0x551c7f._0x21c7c5,-0x211,-0x214));let _0xc426b1=_0x127993(_0x46b642);return _0x1fa98f(_0x46b642),[{'data':_0xc426b1,'mediaType':_0x129813,'name':_0x5d4d00(-_0x551c7f._0x26e546,-0x1bd,-0x1c6,-_0x551c7f._0x36a63e)+_0x1db0d9}];}catch{}try{let _0x2037c9=_0x237df5(_0x1718f7(),_0x17a425(-_0x551c7f._0x167071,-_0x551c7f._0x7e61bf,-_0x551c7f._0x3b158f,-_0x551c7f._0x6a7a00)+Date['now']()+'.png');await a(_0x17a425(-0x1ff,-0x20c,-0x1f0,-0x1d4)+_0x2037c9+'\x22');let _0x12cd50=_0x127993(_0x2037c9);return _0x1fa98f(_0x2037c9),[{'data':_0x12cd50,'mediaType':_0x17a425(-_0x551c7f._0x10edb1,-0x1d7,-_0x551c7f._0x363561,-_0x551c7f._0xa7479d),'name':_0x17a425(-0x1fc,-_0x551c7f._0x4e6895,-0x214,-_0x551c7f._0x11ccf7)}];}catch{}return[];}async function T(){const _0x5ccea5={_0x2dc9f3:0x1e1,_0x1f4f56:0x1ea,_0x3aafaa:0x143,_0x3932d5:0x142,_0x29e672:0x1e7,_0x2b3095:0x1d1,_0x1d853f:0x1d3,_0x2ecc16:0x1d7,_0x193eb6:0x1d8,_0x5dd37d:0x121,_0x514b43:0xff,_0xf83179:0x10b,_0x4af73d:0x135,_0xf84f4c:0x125,_0x11140d:0x202,_0x36a80e:0x20c,_0x5d5439:0x1cd,_0x25eb69:0x10c,_0x210218:0x1de,_0x28f3db:0x1fa,_0x481ecf:0x1cb,_0x154c7d:0x1f5,_0x359837:0x1ec,_0x324f86:0x208,_0x3e8416:0x1ca,_0xd1c492:0x1c2,_0x51e5e6:0x1de},_0x47021e={_0x42082a:0x78},_0x41caf7={_0x5218d1:0x47};function _0x5bc2da(_0x22da83,_0x372869,_0x149c24,_0x26b163){return _0x51fc(_0x22da83-_0x41caf7._0x5218d1,_0x149c24);}let {stdout:_0x15fe51}=await a(_0x5bc2da(0x1e5,_0x5ccea5._0x2dc9f3,_0x5ccea5._0x1f4f56,0x1fa)),_0x2bc714=[{'target':_0x480d82(_0x5ccea5._0x3aafaa,_0x5ccea5._0x3932d5,0x13b,0x137),'extension':_0x5bc2da(_0x5ccea5._0x29e672,_0x5ccea5._0x2b3095,_0x5ccea5._0x1d853f,0x201)},{'target':_0x5bc2da(0x1ea,_0x5ccea5._0x2ecc16,_0x5ccea5._0x193eb6,0x1f7),'extension':_0x480d82(_0x5ccea5._0x5dd37d,_0x5ccea5._0x514b43,_0x5ccea5._0xf83179,0x106)},{'target':_0x480d82(0x148,0x145,0x146,_0x5ccea5._0x4af73d),'extension':_0x480d82(_0x5ccea5._0xf84f4c,0x14b,0x145,0x130)},{'target':_0x5bc2da(0x1f7,_0x5ccea5._0x11140d,0x1f3,_0x5ccea5._0x36a80e),'extension':_0x5bc2da(0x1c6,0x1da,0x1ac,_0x5ccea5._0x5d5439)}];for(let {target:_0x1efe4e,extension:_0x5ff5e3}of _0x2bc714)if(_0x15fe51[_0x480d82(0xf8,0xf1,0xf1,_0x5ccea5._0x25eb69)](_0x1efe4e))try{let {stdout:_0x56509c}=await a(_0x5bc2da(_0x5ccea5._0x210218,0x1fb,_0x5ccea5._0x28f3db,_0x5ccea5._0x481ecf)+_0x1efe4e+_0x5bc2da(_0x5ccea5._0x154c7d,_0x5ccea5._0x359837,0x20c,_0x5ccea5._0x324f86));return[{'data':Buffer['from'](_0x56509c[_0x5bc2da(_0x5ccea5._0x1d853f,_0x5ccea5._0x3e8416,0x1b7,_0x5ccea5._0xd1c492)](),'base64'),'mediaType':_0x1efe4e,'name':_0x5bc2da(0x1c4,_0x5ccea5._0x51e5e6,0x1af,0x1c4)+_0x5ff5e3}];}catch{}function _0x480d82(_0x136b64,_0x3e47c4,_0x2ec3bc,_0x250fb2){return _0x51fc(_0x250fb2- -_0x47021e._0x42082a,_0x136b64);}return[];}async function h(){const _0x3138f5={_0x5d2769:0x30,_0x22f5b0:0x2d,_0x2a8a07:0x1af,_0x3ca313:0x18c,_0x366e58:0x3a,_0x279f27:0x3c,_0x14f622:0x51,_0x441dc4:0x199,_0x58f066:0x19d,_0x49230f:0x194,_0x24b452:0x184,_0x387932:0x35,_0x38b65b:0x27,_0x12a7fa:0x44,_0x269317:0x49},_0x54b082={_0x48ba18:0x14};let _0x501a5f=_0x237df5(_0x1718f7(),_0x15bbed(-0x1d,-_0x3138f5._0x5d2769,-_0x3138f5._0x22f5b0,-0x34)+Date[_0x1fe4eb(_0x3138f5._0x2a8a07,_0x3138f5._0x3ca313,0x1a8,0x1bc)]()+_0x15bbed(-0x33,-0x4a,-_0x3138f5._0x366e58,-0x30));function _0x15bbed(_0x4c43f2,_0x53a6f2,_0xf1926a,_0x386352){return _0x51fc(_0xf1926a- -0x1d6,_0x4c43f2);}function _0x1fe4eb(_0x5633c6,_0x302282,_0x58e786,_0xb563ed){return _0x51fc(_0x58e786-_0x54b082._0x48ba18,_0xb563ed);}try{await a(_0x15bbed(-0x4c,-0x24,-_0x3138f5._0x279f27,-_0x3138f5._0x14f622)+_0x501a5f[_0x1fe4eb(0x1a9,0x19d,0x19e,_0x3138f5._0x441dc4)](/\\/g,'\x5c\x5c')+_0x1fe4eb(_0x3138f5._0x58f066,0x187,_0x3138f5._0x49230f,_0x3138f5._0x24b452));let _0x4f24c6=_0x127993(_0x501a5f);return _0x1fa98f(_0x501a5f),[{'data':_0x4f24c6,'mediaType':_0x15bbed(-0x35,-_0x3138f5._0x387932,-_0x3138f5._0x38b65b,-0x34),'name':_0x15bbed(-_0x3138f5._0x12a7fa,-0x57,-_0x3138f5._0x269317,-0x47)}];}catch{try{_0x1fa98f(_0x501a5f);}catch{}return[];}}export{D as a,G as b,N as c};
@@ -0,0 +1 @@
1
+ (function(_0x331763,_0x2c67d2){const _0x583e25={_0x4f54a:0x397,_0x41ce8e:0x39a,_0x1fcf90:0x39c,_0x2e4f8b:0x395,_0x396eca:0x390,_0x437c66:0x399,_0x4b7e65:0x39d,_0x277680:0x259,_0x55c6b3:0x253,_0x4f3854:0x3a0,_0x5017ed:0x3a2,_0x4243df:0x398,_0x2435a4:0x255,_0x41e3a3:0x250,_0x8abcdf:0x24f,_0x234c44:0x397,_0x4930a9:0x392,_0x2e47d9:0x396,_0x339e42:0x251,_0xa0bb4:0x252,_0x44863a:0x259},_0x3233d9=_0x331763();function _0x193d08(_0x10d0bf,_0x98e840,_0x1a6b5a,_0x555df9){return _0x59de(_0x555df9-0x1e0,_0x1a6b5a);}function _0x2bf45f(_0x433765,_0x22f58b,_0x942b66,_0x39453f){return _0x59de(_0x433765-0x322,_0x22f58b);}while(!![]){try{const _0x5c8b12=-parseInt(_0x2bf45f(0x39b,0x395,_0x583e25._0x4f54a,0x395))/0x1*(parseInt(_0x2bf45f(_0x583e25._0x41ce8e,_0x583e25._0x1fcf90,0x397,0x399))/0x2)+-parseInt(_0x2bf45f(_0x583e25._0x2e4f8b,_0x583e25._0x396eca,_0x583e25._0x437c66,_0x583e25._0x4f54a))/0x3+-parseInt(_0x2bf45f(_0x583e25._0x4b7e65,0x39e,0x39c,0x3a1))/0x4*(parseInt(_0x193d08(0x258,_0x583e25._0x277680,_0x583e25._0x55c6b3,0x256))/0x5)+-parseInt(_0x2bf45f(0x39c,_0x583e25._0x4f3854,_0x583e25._0x5017ed,_0x583e25._0x4243df))/0x6*(parseInt(_0x193d08(_0x583e25._0x2435a4,_0x583e25._0x41e3a3,_0x583e25._0x8abcdf,0x251))/0x7)+parseInt(_0x2bf45f(_0x583e25._0x234c44,_0x583e25._0x4930a9,0x393,0x39c))/0x8*(parseInt(_0x2bf45f(_0x583e25._0x437c66,_0x583e25._0x2e47d9,0x399,0x397))/0x9)+-parseInt(_0x193d08(0x251,_0x583e25._0x339e42,0x24e,_0x583e25._0xa0bb4))/0xa+parseInt(_0x193d08(_0x583e25._0x44863a,0x258,0x254,0x254))/0xb;if(_0x5c8b12===_0x2c67d2)break;else _0x3233d9['push'](_0x3233d9['shift']());}catch(_0xe77148){_0x3233d9['push'](_0x3233d9['shift']());}}}(_0x30b8,0x8cc15));import{createRequire as _0x440441}from'module';const require=_0x440441(import.meta.url);function _0x59de(_0x3411c3,_0x310a40){_0x3411c3=_0x3411c3-0x71;const _0x30b843=_0x30b8();let _0x59de3c=_0x30b843[_0x3411c3];if(_0x59de['jijYFK']===undefined){var _0x4e34f8=function(_0x19f045){const _0x4fa68f='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x440441='',_0x327feb='';for(let _0x8aed96=0x0,_0xc8bc50,_0x106c85,_0x2df0ca=0x0;_0x106c85=_0x19f045['charAt'](_0x2df0ca++);~_0x106c85&&(_0xc8bc50=_0x8aed96%0x4?_0xc8bc50*0x40+_0x106c85:_0x106c85,_0x8aed96++%0x4)?_0x440441+=String['fromCharCode'](0xff&_0xc8bc50>>(-0x2*_0x8aed96&0x6)):0x0){_0x106c85=_0x4fa68f['indexOf'](_0x106c85);}for(let _0x5bdbe2=0x0,_0x266195=_0x440441['length'];_0x5bdbe2<_0x266195;_0x5bdbe2++){_0x327feb+='%'+('00'+_0x440441['charCodeAt'](_0x5bdbe2)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x327feb);};_0x59de['qOzECr']=_0x4e34f8,_0x59de['wGOrqs']={},_0x59de['jijYFK']=!![];}const _0x582e51=_0x30b843[0x0],_0xa18b18=_0x3411c3+_0x582e51,_0x56504d=_0x59de['wGOrqs'][_0xa18b18];return!_0x56504d?(_0x59de3c=_0x59de['qOzECr'](_0x59de3c),_0x59de['wGOrqs'][_0xa18b18]=_0x59de3c):_0x59de3c=_0x56504d,_0x59de3c;}import{a,b,c}from'./chunk-QX4BITAK.js';import'./chunk-JCYYSGKS.js';function _0x30b8(){const _0x5f3e1d=['otyXmZK1m0ryrNP5Ca','nJi4odCYu1Dmsvzk','m3Dky2Hpza','mJuZnJi2tgfPDKHj','nta0mdy4whbPB29e','n1fHwgHrAW','mJi1mdG4mgTIr3nPwq','mJu0oty1ofzLEvvlrq','mJu1nZq2odfyCgzJwLe','oeLuugrtDW','mZbPr0XYvg0'];_0x30b8=function(){return _0x5f3e1d;};return _0x30b8();}export{a as copyTextToClipboard,c as getClipboardFiles,b as hasClipboardFiles};