typescript-virtual-container 1.5.2 → 1.5.3

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/examples/app.js CHANGED
@@ -1,13 +1,13 @@
1
- globalThis.startedat=Date.now();var y={env:{NODE_ENV:"production"},version:"v20.0.0",platform:"browser",browser:!0,argv:[],cwd:()=>"/",exit:()=>{},nextTick:(e,...t)=>queueMicrotask(()=>e(...t)),memoryUsage:()=>({rss:0,heapTotal:0,heapUsed:0,external:0}),uptime:()=>(Date.now()-globalThis.startedat)/1e3};globalThis.process=y;var Yt=class e extends Uint8Array{static from(t,n){if(typeof t=="string"){let r=n||"utf8";if(r==="hex"){let i=new e(t.length/2);for(let s=0;s<i.length;s++)i[s]=parseInt(t.slice(s*2,s*2+2),16);return i}if(r==="base64"){let i=atob(t),s=new e(i.length);for(let o=0;o<i.length;o++)s[o]=i.charCodeAt(o);return s}return new e(new TextEncoder().encode(t))}return t instanceof ArrayBuffer?new e(t):new e(t)}static alloc(t,n=0){return new e(t).fill(n)}static allocUnsafe(t){return new e(t)}static isBuffer(t){return t instanceof e||t instanceof Uint8Array}static concat(t,n){let r=n??t.reduce((o,a)=>o+a.length,0),i=new e(r),s=0;for(let o of t)i.set(o,s),s+=o.length;return i}static byteLength(t,n="utf8"){return n==="hex"?t.length/2:n==="base64"?Math.floor(t.length*3/4):new TextEncoder().encode(t).length}writeUInt8(t,n=0){return this[n]=t&255,n+1}writeInt8(t,n=0){return this[n]=t&255,n+1}writeUInt16BE(t,n=0){return this[n]=t>>>8&255,this[n+1]=t&255,n+2}writeUInt16LE(t,n=0){return this[n]=t&255,this[n+1]=t>>>8&255,n+2}writeInt16BE(t,n=0){return this.writeUInt16BE(t,n)}writeInt16LE(t,n=0){return this.writeUInt16LE(t,n)}writeUInt32BE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setUint32(0,t,!1),n+4}writeUInt32LE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setUint32(0,t,!0),n+4}writeInt32BE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setInt32(0,t,!1),n+4}writeInt32LE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setInt32(0,t,!0),n+4}writeBigUInt64BE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setBigUint64(0,BigInt(t),!1),n+8}writeBigUInt64LE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setBigUint64(0,BigInt(t),!0),n+8}writeFloatBE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setFloat32(0,t,!1),n+4}writeFloatLE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setFloat32(0,t,!0),n+4}writeDoubleBE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setFloat64(0,t,!1),n+8}writeDoubleLE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setFloat64(0,t,!0),n+8}readUInt8(t=0){return this[t]}readInt8(t=0){let n=this[t];return n>=128?n-256:n}readUInt16BE(t=0){return this[t]<<8|this[t+1]}readUInt16LE(t=0){return this[t]|this[t+1]<<8}readInt16BE(t=0){let n=this.readUInt16BE(t);return n>=32768?n-65536:n}readInt16LE(t=0){let n=this.readUInt16LE(t);return n>=32768?n-65536:n}readUInt32BE(t=0){return new DataView(this.buffer,this.byteOffset+t).getUint32(0,!1)}readUInt32LE(t=0){return new DataView(this.buffer,this.byteOffset+t).getUint32(0,!0)}readInt32BE(t=0){return new DataView(this.buffer,this.byteOffset+t).getInt32(0,!1)}readInt32LE(t=0){return new DataView(this.buffer,this.byteOffset+t).getInt32(0,!0)}readBigUInt64BE(t=0){return new DataView(this.buffer,this.byteOffset+t).getBigUint64(0,!1)}readBigUInt64LE(t=0){return new DataView(this.buffer,this.byteOffset+t).getBigUint64(0,!0)}readFloatBE(t=0){return new DataView(this.buffer,this.byteOffset+t).getFloat32(0,!1)}readFloatLE(t=0){return new DataView(this.buffer,this.byteOffset+t).getFloat32(0,!0)}readDoubleBE(t=0){return new DataView(this.buffer,this.byteOffset+t).getFloat64(0,!1)}readDoubleLE(t=0){return new DataView(this.buffer,this.byteOffset+t).getFloat64(0,!0)}toString(t="utf8",n=0,r=this.length){let i=this.subarray(n,r);return t==="hex"?Array.from(i).map(s=>s.toString(16).padStart(2,"0")).join(""):t==="base64"?btoa(String.fromCharCode(...i)):new TextDecoder(t==="utf8"?"utf-8":t).decode(i)}copy(t,n=0,r=0,i=this.length){t.set(this.subarray(r,i),n)}equals(t){if(this.length!==t.length)return!1;for(let n=0;n<this.length;n++)if(this[n]!==t[n])return!1;return!0}slice(t,n){return new e(super.slice(t,n))}subarray(t,n){return new e(super.subarray(t,n))}get length(){return this.byteLength}};globalThis.Buffer=Yt;var In={name:"adduser",description:"Add a new user",category:"users",params:["<username>"],run:({authUser:e,shell:t,args:n})=>{if(e!=="root")return{stderr:`adduser: permission denied
1
+ globalThis.startedat=Date.now();var y={env:{NODE_ENV:"production"},version:"v20.0.0",platform:"browser",browser:!0,argv:[],cwd:()=>"/",exit:()=>{},nextTick:(e,...t)=>queueMicrotask(()=>e(...t)),memoryUsage:()=>({rss:0,heapTotal:0,heapUsed:0,external:0}),uptime:()=>(Date.now()-globalThis.startedat)/1e3};globalThis.process=y;var Zt=class e extends Uint8Array{static from(t,n){if(typeof t=="string"){let r=n||"utf8";if(r==="hex"){let i=new e(t.length/2);for(let s=0;s<i.length;s++)i[s]=parseInt(t.slice(s*2,s*2+2),16);return i}if(r==="base64"){let i=atob(t),s=new e(i.length);for(let o=0;o<i.length;o++)s[o]=i.charCodeAt(o);return s}return new e(new TextEncoder().encode(t))}return t instanceof ArrayBuffer?new e(t):new e(t)}static alloc(t,n=0){return new e(t).fill(n)}static allocUnsafe(t){return new e(t)}static isBuffer(t){return t instanceof e||t instanceof Uint8Array}static concat(t,n){let r=n??t.reduce((o,a)=>o+a.length,0),i=new e(r),s=0;for(let o of t)i.set(o,s),s+=o.length;return i}static byteLength(t,n="utf8"){return n==="hex"?t.length/2:n==="base64"?Math.floor(t.length*3/4):new TextEncoder().encode(t).length}writeUInt8(t,n=0){return this[n]=t&255,n+1}writeInt8(t,n=0){return this[n]=t&255,n+1}writeUInt16BE(t,n=0){return this[n]=t>>>8&255,this[n+1]=t&255,n+2}writeUInt16LE(t,n=0){return this[n]=t&255,this[n+1]=t>>>8&255,n+2}writeInt16BE(t,n=0){return this.writeUInt16BE(t,n)}writeInt16LE(t,n=0){return this.writeUInt16LE(t,n)}writeUInt32BE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setUint32(0,t,!1),n+4}writeUInt32LE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setUint32(0,t,!0),n+4}writeInt32BE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setInt32(0,t,!1),n+4}writeInt32LE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setInt32(0,t,!0),n+4}writeBigUInt64BE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setBigUint64(0,BigInt(t),!1),n+8}writeBigUInt64LE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setBigUint64(0,BigInt(t),!0),n+8}writeFloatBE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setFloat32(0,t,!1),n+4}writeFloatLE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setFloat32(0,t,!0),n+4}writeDoubleBE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setFloat64(0,t,!1),n+8}writeDoubleLE(t,n=0){return new DataView(this.buffer,this.byteOffset+n).setFloat64(0,t,!0),n+8}readUInt8(t=0){return this[t]}readInt8(t=0){let n=this[t];return n>=128?n-256:n}readUInt16BE(t=0){return this[t]<<8|this[t+1]}readUInt16LE(t=0){return this[t]|this[t+1]<<8}readInt16BE(t=0){let n=this.readUInt16BE(t);return n>=32768?n-65536:n}readInt16LE(t=0){let n=this.readUInt16LE(t);return n>=32768?n-65536:n}readUInt32BE(t=0){return new DataView(this.buffer,this.byteOffset+t).getUint32(0,!1)}readUInt32LE(t=0){return new DataView(this.buffer,this.byteOffset+t).getUint32(0,!0)}readInt32BE(t=0){return new DataView(this.buffer,this.byteOffset+t).getInt32(0,!1)}readInt32LE(t=0){return new DataView(this.buffer,this.byteOffset+t).getInt32(0,!0)}readBigUInt64BE(t=0){return new DataView(this.buffer,this.byteOffset+t).getBigUint64(0,!1)}readBigUInt64LE(t=0){return new DataView(this.buffer,this.byteOffset+t).getBigUint64(0,!0)}readFloatBE(t=0){return new DataView(this.buffer,this.byteOffset+t).getFloat32(0,!1)}readFloatLE(t=0){return new DataView(this.buffer,this.byteOffset+t).getFloat32(0,!0)}readDoubleBE(t=0){return new DataView(this.buffer,this.byteOffset+t).getFloat64(0,!1)}readDoubleLE(t=0){return new DataView(this.buffer,this.byteOffset+t).getFloat64(0,!0)}toString(t="utf8",n=0,r=this.length){let i=this.subarray(n,r);return t==="hex"?Array.from(i).map(s=>s.toString(16).padStart(2,"0")).join(""):t==="base64"?btoa(String.fromCharCode(...i)):new TextDecoder(t==="utf8"?"utf-8":t).decode(i)}copy(t,n=0,r=0,i=this.length){t.set(this.subarray(r,i),n)}equals(t){if(this.length!==t.length)return!1;for(let n=0;n<this.length;n++)if(this[n]!==t[n])return!1;return!0}slice(t,n){return new e(super.slice(t,n))}subarray(t,n){return new e(super.subarray(t,n))}get length(){return this.byteLength}};globalThis.Buffer=Zt;var An={name:"adduser",description:"Add a new user",category:"users",params:["<username>"],run:({authUser:e,shell:t,args:n})=>{if(e!=="root")return{stderr:`adduser: permission denied
2
2
  `,exitCode:1};let r=n[0];if(!r)return{stderr:`Usage: adduser <username>
3
3
  `,exitCode:1};if(t.users.listUsers().includes(r))return{stderr:`adduser: user '${r}' already exists
4
4
  `,exitCode:1};let i="",s="new";return{sudoChallenge:{username:r,targetUser:r,commandLine:null,loginShell:!1,prompt:"New password: ",mode:"passwd",onPassword:async(a,l)=>s==="new"?a.length<1?{result:{stderr:`adduser: password cannot be empty
5
5
  `,exitCode:1}}:(i=a,s="retype",{result:null,nextPrompt:"Retype new password: "}):a!==i?{result:{stderr:`adduser: passwords do not match \u2014 user not created
6
6
  `,exitCode:1}}:(await l.users.addUser(r,i),{result:{stdout:`${[`Adding user '${r}' ...`,`Adding new group '${r}' (1001) ...`,`Adding new user '${r}' (1001) with group '${r}' ...`,`Creating home directory '/home/${r}' ...`,`passwd: password set for '${r}'`,"adduser: done."].join(`
7
7
  `)}
8
- `,exitCode:0}})},exitCode:0}}};function Nn(e){return Array.isArray(e)?e:[e]}function vt(e,t){if(e===t)return{matched:!0,inlineValue:null};let n=`${t}=`;return e.startsWith(n)?{matched:!0,inlineValue:e.slice(n.length)}:t.length===2&&t.startsWith("-")&&!t.startsWith("--")&&e.startsWith(t)&&e.length>t.length?{matched:!0,inlineValue:e.slice(t.length)}:{matched:!1,inlineValue:null}}function Pi(e,t={}){let n=new Set(t.flags??[]),r=new Set(t.flagsWithValue??[]),i=[],s=!1;for(let o=0;o<e.length;o+=1){let a=e[o];if(s){i.push(a);continue}if(a==="--"){s=!0;continue}let l=!1;for(let c of n){let{matched:u}=vt(a,c);if(u){l=!0;break}}if(!l){for(let c of r){let u=vt(a,c);if(u.matched){l=!0,u.inlineValue===null&&o+1<e.length&&(o+=1);break}}l||i.push(a)}}return i}function C(e,t){let n=Nn(t);for(let r of e)for(let i of n)if(vt(r,i).matched)return!0;return!1}function ue(e,t){let n=Nn(t);for(let r=0;r<e.length;r+=1){let i=e[r];for(let s of n){let o=vt(i,s);if(!o.matched)continue;if(o.inlineValue!==null)return o.inlineValue;let a=e[r+1];return a!==void 0&&a!=="--"?a:!0}}}function Me(e,t,n={}){return Pi(e,n)[t]}function de(e,t={}){let n=new Set,r=new Map,i=[],s=new Set(t.flags??[]),o=new Set(t.flagsWithValue??[]),a=!1;for(let l=0;l<e.length;l+=1){let c=e[l];if(a){i.push(c);continue}if(c==="--"){a=!0;continue}if(s.has(c)){n.add(c);continue}if(o.has(c)){let d=e[l+1];d&&!d.startsWith("-")?(r.set(c,d),l+=1):r.set(c,"");continue}let u=Array.from(o).find(d=>c.startsWith(`${d}=`));if(u){r.set(u,c.slice(u.length+1));continue}i.push(c)}return{flags:n,flagsWithValues:r,positionals:i}}var An={name:"alias",description:"Define or display aliases",category:"shell",params:["[name[=value] ...]"],run:({args:e,env:t})=>{if(!t)return{exitCode:0};if(e.length===0)return{stdout:Object.entries(t.vars).filter(([i])=>i.startsWith("__alias_")).map(([i,s])=>`alias ${i.slice(8)}='${s}'`).join(`
8
+ `,exitCode:0}})},exitCode:0}}};function _n(e){return Array.isArray(e)?e:[e]}function Ct(e,t){if(e===t)return{matched:!0,inlineValue:null};let n=`${t}=`;return e.startsWith(n)?{matched:!0,inlineValue:e.slice(n.length)}:t.length===2&&t.startsWith("-")&&!t.startsWith("--")&&e.startsWith(t)&&e.length>t.length?{matched:!0,inlineValue:e.slice(t.length)}:{matched:!1,inlineValue:null}}function $i(e,t={}){let n=new Set(t.flags??[]),r=new Set(t.flagsWithValue??[]),i=[],s=!1;for(let o=0;o<e.length;o+=1){let a=e[o];if(s){i.push(a);continue}if(a==="--"){s=!0;continue}let l=!1;for(let c of n){let{matched:u}=Ct(a,c);if(u){l=!0;break}}if(!l){for(let c of r){let u=Ct(a,c);if(u.matched){l=!0,u.inlineValue===null&&o+1<e.length&&(o+=1);break}}l||i.push(a)}}return i}function C(e,t){let n=_n(t);for(let r of e)for(let i of n)if(Ct(r,i).matched)return!0;return!1}function ue(e,t){let n=_n(t);for(let r=0;r<e.length;r+=1){let i=e[r];for(let s of n){let o=Ct(i,s);if(!o.matched)continue;if(o.inlineValue!==null)return o.inlineValue;let a=e[r+1];return a!==void 0&&a!=="--"?a:!0}}}function Me(e,t,n={}){return $i(e,n)[t]}function de(e,t={}){let n=new Set,r=new Map,i=[],s=new Set(t.flags??[]),o=new Set(t.flagsWithValue??[]),a=!1;for(let l=0;l<e.length;l+=1){let c=e[l];if(a){i.push(c);continue}if(c==="--"){a=!0;continue}if(s.has(c)){n.add(c);continue}if(o.has(c)){let d=e[l+1];d&&!d.startsWith("-")?(r.set(c,d),l+=1):r.set(c,"");continue}let u=Array.from(o).find(d=>c.startsWith(`${d}=`));if(u){r.set(u,c.slice(u.length+1));continue}i.push(c)}return{flags:n,flagsWithValues:r,positionals:i}}var On={name:"alias",description:"Define or display aliases",category:"shell",params:["[name[=value] ...]"],run:({args:e,env:t})=>{if(!t)return{exitCode:0};if(e.length===0)return{stdout:Object.entries(t.vars).filter(([i])=>i.startsWith("__alias_")).map(([i,s])=>`alias ${i.slice(8)}='${s}'`).join(`
9
9
  `)||"",exitCode:0};let n=[];for(let r of e){let i=r.indexOf("=");if(i===-1){let s=t.vars[`__alias_${r}`];if(s)n.push(`alias ${r}='${s}'`);else return{stderr:`alias: ${r}: not found`,exitCode:1}}else{let s=r.slice(0,i),o=r.slice(i+1).replace(/^['"]|['"]$/g,"");t.vars[`__alias_${s}`]=o}}return{stdout:n.join(`
10
- `)||void 0,exitCode:0}}},_n={name:"unalias",description:"Remove alias definitions",category:"shell",params:["<name...> | -a"],run:({args:e,env:t})=>{if(!t)return{exitCode:0};if(C(e,["-a"])){for(let n of Object.keys(t.vars))n.startsWith("__alias_")&&delete t.vars[n];return{exitCode:0}}for(let n of e)delete t.vars[`__alias_${n}`];return{exitCode:0}}};function Jt(){throw new Error("child_process.spawn not supported in browser")}var z={basename(e){let t=e.split("/").filter(Boolean);return t.length?t[t.length-1]:""},dirname(e){if(!e)return".";let t=e.split("/").filter(Boolean);return t.pop(),t.length?"/"+t.join("/"):"/"},join(...e){return e.join("/").replace(/\/+/g,"/")},resolve(...e){let t=e.join("/");return t.startsWith("/")?t:"/"+t},normalize(e){let t=e.split("/"),n=[];for(let r of t)r===".."?n.pop():r&&r!=="."&&n.push(r);return(e.startsWith("/")?"/":"")+n.join("/")||"."}};function Ct(e){return z.dirname(e)}function rt(...e){return z.resolve(...e)}function On(...e){return e.join("/").replace(/\/+/g,"/")}var Ei=["/.virtual-env-js/.auth","/etc/htpasswd"];function M(e,t,n){if(!t||t.trim()==="")return e;if(t.startsWith("~")){let r=n??"/root";return z.normalize(`${r}${t.slice(1)}`)}return t.startsWith("/")?z.normalize(t):z.normalize(z.join(e,t))}function $i(e){let t=e.startsWith("/")?z.normalize(e):z.normalize(`/${e}`);return Ei.some(n=>t===n||t.startsWith(`${n}/`))}function V(e,t,n){if(e!=="root"&&$i(t))throw new Error(`${n}: permission denied: ${t}`)}function Tn(e){let n=(e.split("?")[0]?.split("#")[0]??e).split("/").filter(Boolean).pop();return n&&n.length>0?n:"index.html"}function ki(e,t){let n=Array.from({length:e.length+1},()=>Array(t.length+1).fill(0));for(let r=0;r<=e.length;r+=1)n[r][0]=r;for(let r=0;r<=t.length;r+=1)n[0][r]=r;for(let r=1;r<=e.length;r+=1)for(let i=1;i<=t.length;i+=1){let s=e[r-1]===t[i-1]?0:1;n[r][i]=Math.min(n[r-1][i]+1,n[r][i-1]+1,n[r-1][i-1]+s)}return n[e.length][t.length]}function Fn(e,t,n){let r=M(t,n);if(e.exists(r))return r;let i=z.dirname(r),s=z.basename(r),o=e.list(i),a=o.filter(c=>c.toLowerCase()===s.toLowerCase());if(a.length===1)return z.join(i,a[0]);let l=o.filter(c=>ki(c.toLowerCase(),s.toLowerCase())<=1);return l.length===1?z.join(i,l[0]):r}function We(e){return e.packageManager}var Dn={name:"apt",aliases:["apt-get"],description:"Package manager",category:"package",params:["<install|remove|update|upgrade|search|show|list> [pkg...]"],run:({args:e,shell:t,authUser:n})=>{let r=We(t);if(!r)return{stderr:"apt: package manager not initialised",exitCode:1};let i=e[0]?.toLowerCase(),s=e.slice(1),o=C(s,["-q","--quiet","-qq"]),a=C(s,["--purge"]),l=s.filter(u=>!u.startsWith("-"));if(["install","remove","purge","upgrade","update"].includes(i??"")&&n!=="root")return{stderr:`E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied)
10
+ `)||void 0,exitCode:0}}},Tn={name:"unalias",description:"Remove alias definitions",category:"shell",params:["<name...> | -a"],run:({args:e,env:t})=>{if(!t)return{exitCode:0};if(C(e,["-a"])){for(let n of Object.keys(t.vars))n.startsWith("__alias_")&&delete t.vars[n];return{exitCode:0}}for(let n of e)delete t.vars[`__alias_${n}`];return{exitCode:0}}};function Xt(){throw new Error("child_process.spawn not supported in browser")}var z={basename(e){let t=e.split("/").filter(Boolean);return t.length?t[t.length-1]:""},dirname(e){if(!e)return".";let t=e.split("/").filter(Boolean);return t.pop(),t.length?"/"+t.join("/"):"/"},join(...e){return e.join("/").replace(/\/+/g,"/")},resolve(...e){let t=e.join("/");return t.startsWith("/")?t:"/"+t},normalize(e){let t=e.split("/"),n=[];for(let r of t)r===".."?n.pop():r&&r!=="."&&n.push(r);return(e.startsWith("/")?"/":"")+n.join("/")||"."}};function Pt(e){return z.dirname(e)}function st(...e){return z.resolve(...e)}function Dn(...e){return e.join("/").replace(/\/+/g,"/")}var ki=["/.virtual-env-js/.auth","/etc/htpasswd"];function M(e,t,n){if(!t||t.trim()==="")return e;if(t.startsWith("~")){let r=n??"/root";return z.normalize(`${r}${t.slice(1)}`)}return t.startsWith("/")?z.normalize(t):z.normalize(z.join(e,t))}function Mi(e){let t=e.startsWith("/")?z.normalize(e):z.normalize(`/${e}`);return ki.some(n=>t===n||t.startsWith(`${n}/`))}function V(e,t,n){if(e!=="root"&&Mi(t))throw new Error(`${n}: permission denied: ${t}`)}function Fn(e){let n=(e.split("?")[0]?.split("#")[0]??e).split("/").filter(Boolean).pop();return n&&n.length>0?n:"index.html"}function Ii(e,t){let n=Array.from({length:e.length+1},()=>Array(t.length+1).fill(0));for(let r=0;r<=e.length;r+=1)n[r][0]=r;for(let r=0;r<=t.length;r+=1)n[0][r]=r;for(let r=1;r<=e.length;r+=1)for(let i=1;i<=t.length;i+=1){let s=e[r-1]===t[i-1]?0:1;n[r][i]=Math.min(n[r-1][i]+1,n[r][i-1]+1,n[r-1][i-1]+s)}return n[e.length][t.length]}function Rn(e,t,n){let r=M(t,n);if(e.exists(r))return r;let i=z.dirname(r),s=z.basename(r),o=e.list(i),a=o.filter(c=>c.toLowerCase()===s.toLowerCase());if(a.length===1)return z.join(i,a[0]);let l=o.filter(c=>Ii(c.toLowerCase(),s.toLowerCase())<=1);return l.length===1?z.join(i,l[0]):r}function qe(e){return e.packageManager}var Ln={name:"apt",aliases:["apt-get"],description:"Package manager",category:"package",params:["<install|remove|update|upgrade|search|show|list> [pkg...]"],run:({args:e,shell:t,authUser:n})=>{let r=qe(t);if(!r)return{stderr:"apt: package manager not initialised",exitCode:1};let i=e[0]?.toLowerCase(),s=e.slice(1),o=C(s,["-q","--quiet","-qq"]),a=C(s,["--purge"]),l=s.filter(u=>!u.startsWith("-"));if(["install","remove","purge","upgrade","update"].includes(i??"")&&n!=="root")return{stderr:`E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied)
11
11
  E: Unable to acquire the dpkg frontend lock, are you root?`,exitCode:100};switch(i){case"install":{if(l.length===0)return{stderr:"apt: no packages specified",exitCode:1};let{output:u,exitCode:d}=r.install(l,{quiet:o});return{stdout:u||void 0,exitCode:d}}case"remove":case"purge":{if(l.length===0)return{stderr:"apt: no packages specified",exitCode:1};let{output:u,exitCode:d}=r.remove(l,{purge:i==="purge"||a,quiet:o});return{stdout:u||void 0,exitCode:d}}case"update":return{stdout:["Hit:1 fortune://packages.fortune.local nyx InRelease","Hit:2 fortune://security.fortune.local nyx-security InRelease","Reading package lists... Done","Building dependency tree... Done","Reading state information... Done","All packages are up to date."].join(`
12
12
  `),exitCode:0};case"upgrade":return{stdout:["Reading package lists... Done","Building dependency tree... Done","Reading state information... Done","Calculating upgrade... Done","0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded."].join(`
13
13
  `),exitCode:0};case"search":{let u=l[0];if(!u)return{stderr:"apt: search requires a term",exitCode:1};let d=r.search(u);return d.length===0?{stdout:`Sorting... Done
@@ -22,23 +22,23 @@ ${p.map(S=>`${S.name}/${S.section} ${S.version} ${S.architecture} [installed]`).
22
22
  `)}`,exitCode:0}}return{stdout:`Listing... Done
23
23
  ${r.listAvailable().map(p=>`${p.name}/${p.section??"misc"} ${p.version} amd64`).join(`
24
24
  `)}`,exitCode:0}}default:return{stdout:["Usage: apt [options] command","","Commands:"," install <pkg...> Install packages"," remove <pkg...> Remove packages"," purge <pkg...> Remove packages and config files"," update Refresh package index"," upgrade Upgrade all packages"," search <term> Search in package descriptions"," show <pkg> Show package details"," list [--installed] List packages"].join(`
25
- `),exitCode:0}}}},Rn={name:"apt-cache",description:"Query the package cache",category:"package",params:["<search|show|policy> [pkg]"],run:({args:e,shell:t})=>{let n=We(t);if(!n)return{stderr:"apt-cache: package manager not initialised",exitCode:1};let r=e[0]?.toLowerCase(),i=e[1];switch(r){case"search":return i?{stdout:n.search(i).map(o=>`${o.name} - ${o.shortDesc??o.description}`).join(`
25
+ `),exitCode:0}}}},Vn={name:"apt-cache",description:"Query the package cache",category:"package",params:["<search|show|policy> [pkg]"],run:({args:e,shell:t})=>{let n=qe(t);if(!n)return{stderr:"apt-cache: package manager not initialised",exitCode:1};let r=e[0]?.toLowerCase(),i=e[1];switch(r){case"search":return i?{stdout:n.search(i).map(o=>`${o.name} - ${o.shortDesc??o.description}`).join(`
26
26
  `)||"(no results)",exitCode:0}:{stderr:"Need a search term",exitCode:1};case"show":{if(!i)return{stderr:"Need a package name",exitCode:1};let s=n.show(i);return s?{stdout:s,exitCode:0}:{stderr:`N: Unable to locate package ${i}`,exitCode:100}}case"policy":{if(!i)return{stderr:"Need a package name",exitCode:1};let s=n.findInRegistry(i);if(!s)return{stderr:`N: Unable to locate package ${i}`,exitCode:100};let o=n.isInstalled(i);return{stdout:[`${i}:`,` Installed: ${o?s.version:"(none)"}`,` Candidate: ${s.version}`," Version table:",` ${s.version} 500`," 500 fortune://packages.fortune.local nyx/main amd64 Packages"].join(`
27
- `),exitCode:0}}default:return{stderr:`apt-cache: unknown command '${r??""}'`,exitCode:1}}}};var Ln={name:"awk",description:"Pattern scanning and processing language",category:"text",params:["[-F <sep>] '<program>' [file]"],run:({authUser:e,args:t,stdin:n,cwd:r,shell:i})=>{let s=ue(t,["-F"])??" ",o=t.filter(P=>!P.startsWith("-")&&P!==s),a=o[0],l=o[1];if(!a)return{stderr:"awk: no program",exitCode:1};let c=n??"";if(l){let P=M(r,l);try{V(e,P,"awk"),c=i.vfs.readFile(P)}catch{return{stderr:`awk: ${l}: No such file or directory`,exitCode:1}}}let u=c.split(`
28
- `);u[u.length-1]===""&&u.pop();let d=[],m=a.trim();if(!m.startsWith("{")&&!m.includes("{"))d.push({pattern:m,action:"print $0"});else{let P=/([^{]*)\{([^}]*)\}/g,N=P.exec(m);for(;N!==null;)d.push({pattern:N[1].trim(),action:N[2].trim()}),N=P.exec(m);d.length===0&&d.push({pattern:"",action:m.replace(/[{}]/g,"").trim()})}let p=[],g=d.find(P=>P.pattern==="BEGIN"),S=d.find(P=>P.pattern==="END"),v=d.filter(P=>P.pattern!=="BEGIN"&&P.pattern!=="END");function E(P){return s===" "?P.trim().split(/\s+/).filter(Boolean):P.split(s)}function T(P,N,I){let x=E(N),A=x.length,F=w=>{if(w=w.trim(),w==="NR")return String(I);if(w==="NF")return String(A);if(w==="$0")return N;if(w==="$NF")return x[A-1]??"";if(/^\$\d+$/.test(w))return x[parseInt(w.slice(1),10)-1]??"";let D=w.replace(/\bNR\b/g,String(I)).replace(/\bNF\b/g,String(A));if(/^[\d\s+\-*/()]+$/.test(D))try{return String(Function(`"use strict"; return (${D});`)())}catch{}return w.replace(/"/g,"")},k=P.split(";").map(w=>w.trim()).filter(Boolean);for(let w of k)if(w==="print"||w==="print $0")p.push(N);else if(w.startsWith("print ")){let D=w.slice(6).split(/\s*,\s*/);p.push(D.map(F).join(" "))}}function _(P,N,I){if(!P||P==="1")return!0;let x=P.match(/^NR\s*([=!<>]=?|==)\s*(\d+)$/);if(x){let k=x[1],w=parseInt(x[2],10);switch(k){case"==":return I===w;case"!=":return I!==w;case">":return I>w;case">=":return I>=w;case"<":return I<w;case"<=":return I<=w}}let A=P.match(/^NR%(\d+)==(\d+)$/);if(A)return I%parseInt(A[1],10)===parseInt(A[2],10);if(P.startsWith("/")&&P.endsWith("/"))try{return new RegExp(P.slice(1,-1)).test(N)}catch{return!1}let F=P.match(/^\$(\d+)~\/(.*)\/$/);if(F){let w=E(N)[parseInt(F[1],10)-1]??"";try{return new RegExp(F[2]).test(w)}catch{return!1}}return!1}g&&T(g.action,"",0);for(let P=1;P<=u.length;P++){let N=u[P-1];for(let I of v)_(I.pattern,N,P)&&T(I.action,N,P)}return S&&T(S.action,"",u.length+1),{stdout:p.join(`
27
+ `),exitCode:0}}default:return{stderr:`apt-cache: unknown command '${r??""}'`,exitCode:1}}}};var Un={name:"awk",description:"Pattern scanning and processing language",category:"text",params:["[-F <sep>] '<program>' [file]"],run:({authUser:e,args:t,stdin:n,cwd:r,shell:i})=>{let s=ue(t,["-F"])??" ",o=t.filter(P=>!P.startsWith("-")&&P!==s),a=o[0],l=o[1];if(!a)return{stderr:"awk: no program",exitCode:1};let c=n??"";if(l){let P=M(r,l);try{V(e,P,"awk"),c=i.vfs.readFile(P)}catch{return{stderr:`awk: ${l}: No such file or directory`,exitCode:1}}}let u=c.split(`
28
+ `);u[u.length-1]===""&&u.pop();let d=[],m=a.trim();if(!m.startsWith("{")&&!m.includes("{"))d.push({pattern:m,action:"print $0"});else{let P=/([^{]*)\{([^}]*)\}/g,N=P.exec(m);for(;N!==null;)d.push({pattern:N[1].trim(),action:N[2].trim()}),N=P.exec(m);d.length===0&&d.push({pattern:"",action:m.replace(/[{}]/g,"").trim()})}let p=[],g=d.find(P=>P.pattern==="BEGIN"),S=d.find(P=>P.pattern==="END"),v=d.filter(P=>P.pattern!=="BEGIN"&&P.pattern!=="END");function E(P){return s===" "?P.trim().split(/\s+/).filter(Boolean):P.split(s)}function T(P,N,I){let x=E(N),A=x.length,D=w=>{if(w=w.trim(),w==="NR")return String(I);if(w==="NF")return String(A);if(w==="$0")return N;if(w==="$NF")return x[A-1]??"";if(/^\$\d+$/.test(w))return x[parseInt(w.slice(1),10)-1]??"";let F=w.replace(/\bNR\b/g,String(I)).replace(/\bNF\b/g,String(A));if(/^[\d\s+\-*/()]+$/.test(F))try{return String(Function(`"use strict"; return (${F});`)())}catch{}return w.replace(/"/g,"")},k=P.split(";").map(w=>w.trim()).filter(Boolean);for(let w of k)if(w==="print"||w==="print $0")p.push(N);else if(w.startsWith("print ")){let F=w.slice(6).split(/\s*,\s*/);p.push(F.map(D).join(" "))}}function _(P,N,I){if(!P||P==="1")return!0;let x=P.match(/^NR\s*([=!<>]=?|==)\s*(\d+)$/);if(x){let k=x[1],w=parseInt(x[2],10);switch(k){case"==":return I===w;case"!=":return I!==w;case">":return I>w;case">=":return I>=w;case"<":return I<w;case"<=":return I<=w}}let A=P.match(/^NR%(\d+)==(\d+)$/);if(A)return I%parseInt(A[1],10)===parseInt(A[2],10);if(P.startsWith("/")&&P.endsWith("/"))try{return new RegExp(P.slice(1,-1)).test(N)}catch{return!1}let D=P.match(/^\$(\d+)~\/(.*)\/$/);if(D){let w=E(N)[parseInt(D[1],10)-1]??"";try{return new RegExp(D[2]).test(w)}catch{return!1}}return!1}g&&T(g.action,"",0);for(let P=1;P<=u.length;P++){let N=u[P-1];for(let I of v)_(I.pattern,N,P)&&T(I.action,N,P)}return S&&T(S.action,"",u.length+1),{stdout:p.join(`
29
29
  `)+(p.length>0?`
30
- `:""),exitCode:0}}};var Vn={name:"base64",description:"Encode/decode base64",category:"text",params:["[-d] [file]"],run:({args:e,stdin:t})=>{let n=C(e,["-d","--decode"]),r=t??"";if(n)try{return{stdout:Buffer.from(r.trim(),"base64").toString("utf8"),exitCode:0}}catch{return{stderr:"base64: invalid input",exitCode:1}}return{stdout:Buffer.from(r).toString("base64"),exitCode:0}}};var Un={name:"cat",description:"Concatenate and print files",category:"files",params:["[-n] [-b] <file...>"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let s=C(r,["-n","--number"]),o=C(r,["-b","--number-nonblank"]),a=r.filter(m=>!m.startsWith("-"));if(a.length===0&&i!==void 0)return{stdout:i,exitCode:0};if(a.length===0)return{stderr:"cat: missing file operand",exitCode:1};let l=[];for(let m of a){let p=Fn(t.vfs,n,m);V(e,p,"cat"),l.push(t.vfs.readFile(p))}let c=l.join("");if(!s&&!o)return{stdout:c,exitCode:0};let u=1;return{stdout:c.split(`
30
+ `:""),exitCode:0}}};var Bn={name:"base64",description:"Encode/decode base64",category:"text",params:["[-d] [file]"],run:({args:e,stdin:t})=>{let n=C(e,["-d","--decode"]),r=t??"";if(n)try{return{stdout:Buffer.from(r.trim(),"base64").toString("utf8"),exitCode:0}}catch{return{stderr:"base64: invalid input",exitCode:1}}return{stdout:Buffer.from(r).toString("base64"),exitCode:0}}};var zn={name:"cat",description:"Concatenate and print files",category:"files",params:["[-n] [-b] <file...>"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let s=C(r,["-n","--number"]),o=C(r,["-b","--number-nonblank"]),a=r.filter(m=>!m.startsWith("-"));if(a.length===0&&i!==void 0)return{stdout:i,exitCode:0};if(a.length===0)return{stderr:"cat: missing file operand",exitCode:1};let l=[];for(let m of a){let p=Rn(t.vfs,n,m);V(e,p,"cat"),l.push(t.vfs.readFile(p))}let c=l.join("");if(!s&&!o)return{stdout:c,exitCode:0};let u=1;return{stdout:c.split(`
31
31
  `).map(m=>o&&m.trim()===""?m:`${String(u++).padStart(6)} ${m}`).join(`
32
- `),exitCode:0}}};async function Bn(e,t,n,r,i,s,o){let a={exitCode:0},l=[],c=i,u=0;for(;u<e.length;){let m=e[u];if(a=await Mi(m.pipeline,t,n,r,c,s,o),o.lastExitCode=a.exitCode??0,a.nextCwd&&(a.exitCode??0)===0&&(c=a.nextCwd),a.stdout&&l.push(a.stdout),a.closeSession||a.switchUser)return{...a,stdout:l.join("")||a.stdout};let p=m.op;if(!(!p||p===";")){if(p==="&&"){if((a.exitCode??0)!==0)for(;u<e.length&&e[u]?.op==="&&";)u++}else if(p==="||"&&(a.exitCode??0)===0)for(;u<e.length&&e[u]?.op==="||";)u++}u++}let d=l.join("");return{...a,stdout:d||a.stdout,nextCwd:c!==i?c:void 0}}async function Mi(e,t,n,r,i,s,o){if(!e.isValid)return{stderr:e.error||"Syntax error",exitCode:1};if(e.commands.length===0)return{exitCode:0};let a=o??{vars:{},lastExitCode:0};return e.commands.length===1?Ii(e.commands[0],t,n,r,i,s,a):Ni(e.commands,t,n,r,i,s,a)}async function Ii(e,t,n,r,i,s,o){let a;if(e.inputFile){let c=M(i,e.inputFile);try{a=s.vfs.readFile(c)}catch{return{stderr:`${e.inputFile}: No such file or directory`,exitCode:1}}}let l=await qe(e.name,e.args,t,n,r,i,s,a,o);if(e.outputFile){let c=M(i,e.outputFile),u=l.stdout||"";try{if(e.appendOutput){let d=(()=>{try{return s.vfs.readFile(c)}catch{return""}})();s.writeFileAsUser(t,c,d+u)}else s.writeFileAsUser(t,c,u);return{...l,stdout:""}}catch{return{...l,stderr:`Failed to write to ${e.outputFile}`,exitCode:1}}}return l}async function Ni(e,t,n,r,i,s,o){let a="",l=0;for(let c=0;c<e.length;c++){let u=e[c];if(c===0&&u.inputFile){let m=M(i,u.inputFile);try{a=s.vfs.readFile(m)}catch{return{stderr:`${u.inputFile}: No such file or directory`,exitCode:1}}}let d=await qe(u.name,u.args,t,n,r,i,s,a,o);if(l=d.exitCode??0,c===e.length-1&&u.outputFile){let m=M(i,u.outputFile),p=d.stdout||"";try{if(u.appendOutput){let g=(()=>{try{return s.vfs.readFile(m)}catch{return""}})();s.writeFileAsUser(t,m,g+p)}else s.writeFileAsUser(t,m,p);a=""}catch{return{stderr:`Failed to write to ${u.outputFile}`,exitCode:1}}}else a=d.stdout||"";if(d.stderr&&l!==0)return{stderr:d.stderr,exitCode:l};if(d.closeSession||d.switchUser)return d}return{stdout:a,exitCode:l}}function it(e){let t=[],n="",r=!1,i="",s=0;for(;s<e.length;){let o=e[s],a=e[s+1];if((o==='"'||o==="'")&&!r){r=!0,i=o,s++;continue}if(r&&o===i){r=!1,i="",s++;continue}if(r){n+=o,s++;continue}if(o===" "){n&&(t.push(n),n=""),s++;continue}if(!r&&o==="2"&&a===">"){let l=e.slice(s+1);if(l.startsWith(">>&1")||l.startsWith(">> &1")){n&&(t.push(n),n=""),t.push("2>>&1"),s+=5;continue}if(l.startsWith(">&1")){n&&(t.push(n),n=""),t.push("2>&1"),s+=4;continue}if(l.startsWith(">>")){n&&(t.push(n),n=""),t.push("2>>"),s+=3;continue}if(l.startsWith(">")){n&&(t.push(n),n=""),t.push("2>"),s+=2;continue}}if((o===">"||o==="<")&&!r){n&&(t.push(n),n=""),o===">"&&a===">"?(t.push(">>"),s+=2):(t.push(o),s++);continue}n+=o,s++}return n&&t.push(n),t}function zn(e){let t=e.trim();if(!t)return{statements:[],isValid:!0};try{return{statements:Ai(t),isValid:!0}}catch(n){return{statements:[],isValid:!1,error:n.message}}}function Ai(e){let t=_i(e),n=[];for(let r of t){let s={pipeline:{commands:Oi(r.text.trim()),isValid:!0}};r.op&&(s.op=r.op),n.push(s)}return n}function _i(e){let t=[],n="",r=0,i=!1,s="",o=0,a=l=>{n.trim()&&t.push({text:n,op:l}),n=""};for(;o<e.length;){let l=e[o],c=e.slice(o,o+2);if((l==='"'||l==="'")&&!i){i=!0,s=l,n+=l,o++;continue}if(i&&l===s){i=!1,n+=l,o++;continue}if(i){n+=l,o++;continue}if(l==="("){r++,n+=l,o++;continue}if(l===")"){r--,n+=l,o++;continue}if(r>0){n+=l,o++;continue}if(c==="&&"){a("&&"),o+=2;continue}if(c==="||"){a("||"),o+=2;continue}if(l===";"){a(";"),o++;continue}n+=l,o++}return a(),t}function Oi(e){return Ti(e).map(Fi)}function Ti(e){let t=[],n="",r=!1,i="";for(let o=0;o<e.length;o++){let a=e[o];if((a==='"'||a==="'")&&!r){r=!0,i=a,n+=a;continue}if(r&&a===i){r=!1,n+=a;continue}if(r){n+=a;continue}if(a==="|"&&e[o+1]!=="|"){if(!n.trim())throw new Error("Syntax error near unexpected token '|'");t.push(n.trim()),n=""}else n+=a}let s=n.trim();if(!s&&t.length>0)throw new Error("Syntax error near unexpected token '|'");return s&&t.push(s),t}function Fi(e){let t=it(e);if(t.length===0)return{name:"",args:[]};let n=[],r,i,s=!1,o=0,a,l=!1,c=!1;for(;o<t.length;){let m=t[o];if(m==="<"){if(o++,o>=t.length)throw new Error("Syntax error: expected filename after <");r=t[o],o++}else if(m===">>"){if(o++,o>=t.length)throw new Error("Syntax error: expected filename after >>");i=t[o],s=!0,o++}else if(m===">"){if(o++,o>=t.length)throw new Error("Syntax error: expected filename after >");i=t[o],s=!1,o++}else if(m==="2>&1")c=!0,o++;else if(m==="2>>"){if(o++,o>=t.length)throw new Error("Syntax error: expected filename after 2>>");a=t[o],l=!0,o++}else if(m==="2>"){if(o++,o>=t.length)throw new Error("Syntax error: expected filename after 2>");a=t[o],l=!1,o++}else n.push(m),o++}let u=n[0]??"";return{name:/^([A-Za-z_][A-Za-z0-9_]*)=(.*)$/.test(u)?u:u.toLowerCase(),args:n.slice(1),inputFile:r,outputFile:i,appendOutput:s,stderrFile:a,stderrAppend:l,stderrToStdout:c}}function Di(e,t){let n=[],r=0;for(;r<e.length;){let i=e[r];if(/\s/.test(i)){r++;continue}if(i==="+"){n.push({type:"plus"}),r++;continue}if(i==="-"){n.push({type:"minus"}),r++;continue}if(i==="*"){if(e[r+1]==="*"){n.push({type:"pow"}),r+=2;continue}n.push({type:"mul"}),r++;continue}if(i==="/"){n.push({type:"div"}),r++;continue}if(i==="%"){n.push({type:"mod"}),r++;continue}if(i==="("){n.push({type:"lparen"}),r++;continue}if(i===")"){n.push({type:"rparen"}),r++;continue}if(/\d/.test(i)){let s=r+1;for(;s<e.length&&/\d/.test(e[s]);)s++;n.push({type:"number",value:Number(e.slice(r,s))}),r=s;continue}if(/[A-Za-z_]/.test(i)){let s=r+1;for(;s<e.length&&/[A-Za-z0-9_]/.test(e[s]);)s++;let o=e.slice(r,s),a=t[o],l=a===void 0||a===""?0:Number(a);n.push({type:"number",value:Number.isFinite(l)?l:0}),r=s;continue}return[]}return n}function en(e,t){let n=e.trim();if(n.length===0||n.length>1024)return NaN;let r=Di(n,t);if(r.length===0)return NaN;let i=0,s=()=>r[i],o=()=>r[i++],a=()=>{let p=o();if(!p)return NaN;if(p.type==="number")return p.value;if(p.type==="lparen"){let g=d();return r[i]?.type!=="rparen"?NaN:(i++,g)}return NaN},l=()=>{let p=s();return p?.type==="plus"?(o(),l()):p?.type==="minus"?(o(),-l()):a()},c=()=>{let p=l();for(;s()?.type==="pow";){o();let g=l();p=p**g}return p},u=()=>{let p=c();for(;;){let g=s();if(g?.type==="mul"){o(),p*=c();continue}if(g?.type==="div"){o();let S=c();p=S===0?NaN:p/S;continue}if(g?.type==="mod"){o();let S=c();p=S===0?NaN:p%S;continue}return p}},d=()=>{let p=u();for(;;){let g=s();if(g?.type==="plus"){o(),p+=u();continue}if(g?.type==="minus"){o(),p-=u();continue}return p}},m=d();return!Number.isFinite(m)||i!==r.length?NaN:Math.trunc(m)}function Ri(e,t){let n=[],r=0;for(;r<e.length;){let i=e.indexOf("'",r);if(i===-1){n.push(t(e.slice(r)));break}n.push(t(e.slice(r,i)));let s=e.indexOf("'",i+1);if(s===-1){n.push(e.slice(i));break}n.push(e.slice(i,s+1)),r=s+1}return n.join("")}function Et(e){function r(i,s){if(s>8)return[i];let o=0,a=-1;for(let l=0;l<i.length;l++){let c=i[l];if(c==="{"&&i[l-1]!=="$")o===0&&(a=l),o++;else if(c==="}"&&(o--,o===0&&a!==-1)){let u=i.slice(0,a),d=i.slice(a+1,l),m=i.slice(l+1),p=d.match(/^(-?\d+)\.\.(-?\d+)(?:\.\.-?(\d+))?$/)||d.match(/^([a-z])\.\.([a-z])$/);if(p){let E=[];if(/\d/.test(p[1])){let P=parseInt(p[1],10),N=parseInt(p[2],10),I=p[3]?parseInt(p[3],10):1,x=P<=N?I:-I;for(let A=P;P<=N?A<=N:A>=N;A+=x)E.push(String(A))}else{let P=p[1].charCodeAt(0),N=p[2].charCodeAt(0),I=P<=N?1:-1;for(let x=P;P<=N?x<=N:x>=N;x+=I)E.push(String.fromCharCode(x))}let T=E.map(P=>`${u}${P}${m}`),_=[];for(let P of T)if(_.push(...r(P,s+1)),_.length>256)return[i];return _}let g=[],S="",v=0;for(let E of d)E==="{"?(v++,S+=E):E==="}"?(v--,S+=E):E===","&&v===0?(g.push(S),S=""):S+=E;if(g.push(S),g.length>1){let E=[];for(let T of g)if(E.push(...r(`${u}${T}${m}`,s+1)),E.length>256)return[i];return E}break}}return[i]}return r(e,0)}function Li(e,t){let n="",r=0;for(;r<e.length;){if(e[r]==="$"&&e[r+1]==="("&&e[r+2]==="("){let i=r+3,s=0;for(;i<e.length;){let o=e[i];if(o==="(")s++;else if(o===")"){if(s>0)s--;else if(e[i+1]===")"){let a=e.slice(r+3,i),l=en(a,t);n+=Number.isNaN(l)?"0":String(l),r=i+2;break}}i++}if(i>=e.length){n+=e.slice(r);break}continue}n+=e[r],r++}return n}function Pt(e,t,n=0,r){let i=r??t.HOME??"/home/user";return Ri(e,s=>{let o=s;return o=o.replace(/(^|[\s:])~(\/|$)/g,(a,l,c)=>`${l}${i}${c}`),o=o.replace(/\$\?/g,String(n)),o=o.replace(/\$\$/g,"1"),o=o.replace(/\$#/g,"0"),o=Li(o,t),o=o.replace(/\$\{#([A-Za-z_][A-Za-z0-9_]*)\}/g,(a,l)=>String((t[l]??"").length)),o=o.replace(/\$\{([A-Za-z_][A-Za-z0-9_]*):-([^}]*)\}/g,(a,l,c)=>t[l]!==void 0&&t[l]!==""?t[l]:c),o=o.replace(/\$\{([A-Za-z_][A-Za-z0-9_]*):=([^}]*)\}/g,(a,l,c)=>((t[l]===void 0||t[l]==="")&&(t[l]=c),t[l])),o=o.replace(/\$\{([A-Za-z_][A-Za-z0-9_]*):\+([^}]*)\}/g,(a,l,c)=>t[l]!==void 0&&t[l]!==""?c:""),o=o.replace(/\$\{([A-Za-z_][A-Za-z0-9_]*)\}/g,(a,l)=>t[l]??""),o=o.replace(/\$([A-Za-z_][A-Za-z0-9_]*|\d+)/g,(a,l)=>t[l]??""),o})}async function $t(e,t,n,r){let i="__shellExpandDepth",o=Number(t[i]??"0");if(o>=8)return Pt(e,t,n);t[i]=String(o+1);try{if(e.includes("$(")){let a="",l=!1,c=0;for(;c<e.length;){let u=e[c];if(u==="'"&&!l){l=!0,a+=u,c++;continue}if(u==="'"&&l){l=!1,a+=u,c++;continue}if(!l&&u==="$"&&e[c+1]==="("){if(e[c+2]==="("){a+=u,c++;continue}let d=0,m=c+1;for(;m<e.length;){if(e[m]==="(")d++;else if(e[m]===")"&&(d--,d===0))break;m++}let p=e.slice(c+2,m).trim(),g=(await r(p)).replace(/\n$/,"");a+=g,c=m+1;continue}a+=u,c++}e=a}return Pt(e,t,n)}finally{o<=0?delete t[i]:t[i]=String(o)}}function J(e){return e==="root"?"/root":`/home/${e}`}function Ve(e,t){return{vars:{PATH:"/usr/local/bin:/usr/bin:/bin",HOME:J(e),USER:e,LOGNAME:e,SHELL:"/bin/sh",TERM:"xterm-256color",HOSTNAME:t,PS1:"\\u@\\h:\\w\\$ "},lastExitCode:0}}function Hn(e,t,n,r){if(e.startsWith("/")){if(!n.vfs.exists(e))return null;try{let s=n.vfs.stat(e);return s.type!=="file"||!(s.mode&73)||(e.startsWith("/sbin/")||e.startsWith("/usr/sbin/"))&&r!=="root"?null:e}catch{return null}}let i=(t.vars.PATH??"/usr/local/bin:/usr/bin:/bin").split(":");for(let s of i){if((s==="/sbin"||s==="/usr/sbin")&&r!=="root")continue;let o=`${s}/${e}`;if(n.vfs.exists(o))try{let a=n.vfs.stat(o);if(a.type!=="file"||!(a.mode&73))continue;return o}catch{}}return null}async function qe(e,t,n,r,i,s,o,a,l){let c=/^([A-Za-z_][A-Za-z0-9_]*)=(.*)$/,u=[e,...t],d=0;for(;d<u.length&&c.test(u[d]);)d+=1;if(d>0){let g=u.slice(0,d).map(E=>E.match(c)),S=u.slice(d),v=[];for(let[,E,T]of g)v.push([E,l.vars[E]]),l.vars[E]=T;if(S.length===0)return{exitCode:0};try{return await qe(S[0],S.slice(1),n,r,i,s,o,a,l)}finally{for(let[E,T]of v)T===void 0?delete l.vars[E]:l.vars[E]=T}}let m=l.vars[`__alias_${e}`];if(m)return Z(`${m} ${t.join(" ")}`,n,r,i,s,o,a,l);let p=xe(e);if(!p){let g=Hn(e,l,o,n);if(g){let S=o.vfs.readFile(g),v=S.match(/exec\s+builtin\s+(\S+)/);if(v){let T=xe(v[1]);if(T)return await T.run({authUser:n,hostname:r,activeSessions:o.users.listActiveSessions(),rawInput:[e,...t].join(" "),mode:i,args:t,stdin:a,cwd:s,shell:o,env:l})}let E=xe("sh");if(E)return await E.run({authUser:n,hostname:r,activeSessions:o.users.listActiveSessions(),rawInput:`sh -c ${JSON.stringify(S)}`,mode:i,args:["-c",S,"--",...t],stdin:a,cwd:s,shell:o,env:l})}return{stderr:`${e}: command not found`,exitCode:127}}try{return await p.run({authUser:n,hostname:r,activeSessions:o.users.listActiveSessions(),rawInput:[e,...t].join(" "),mode:i,args:t,stdin:a,cwd:s,shell:o,env:l})}catch(g){return{stderr:g instanceof Error?g.message:"Command failed",exitCode:1}}}async function Z(e,t,n,r,i,s,o,a){let l=e.trim();if(l.length===0)return{exitCode:0};let c=a??Ve(t,n),d=it(l)[0]?.toLowerCase()??"",m=c.vars[`__alias_${d}`],p=m?l.replace(d,m):l,g=/\bfor\s+\w+\s+in\b/.test(p)||/\bwhile\s+/.test(p)||/\bif\s+/.test(p)||/\w+\s*\(\s*\)\s*\{/.test(p)||/\bfunction\s+\w+/.test(p)||/\(\(\s*.+\s*\)\)/.test(p),S=/(?<![|&])[|](?![|])/.test(p)||p.includes(">")||p.includes("<")||p.includes("&&")||p.includes("||")||p.includes(";");if(g&&d!=="sh"&&d!=="bash"||S){if(g&&d!=="sh"&&d!=="bash"){let x=xe("sh");if(x)return await x.run({authUser:t,hostname:n,activeSessions:s.users.listActiveSessions(),rawInput:p,mode:r,args:["-c",p],stdin:void 0,cwd:i,shell:s,env:c})}let I=zn(p);if(!I.isValid)return{stderr:I.error||"Syntax error",exitCode:1};try{return await Bn(I.statements,t,n,r,i,s,c)}catch(x){return{stderr:x instanceof Error?x.message:"Execution failed",exitCode:1}}}let v=await $t(p,c.vars,c.lastExitCode,I=>Z(I,t,n,r,i,s,void 0,c).then(x=>x.stdout??"")),E=it(v.trim());if(E.length===0)return{exitCode:0};if(/^([A-Za-z_][A-Za-z0-9_]*)=(.*)$/.test(E[0]))return qe(E[0],E.slice(1),t,n,r,i,s,o,c);let _=E[0]?.toLowerCase()??"",P=E.slice(1).flatMap(Et),N=xe(_);if(!N){let I=Hn(_,c,s,t);if(I){let x=s.vfs.readFile(I),A=x.match(/exec\s+builtin\s+(\S+)/);if(A){let k=A[1],w=xe(k);if(w)return await w.run({authUser:t,hostname:n,activeSessions:s.users.listActiveSessions(),rawInput:[_,...P].join(" "),mode:r,args:P,stdin:o,cwd:i,shell:s,env:c})}let F=xe("sh");if(F)return await F.run({authUser:t,hostname:n,activeSessions:s.users.listActiveSessions(),rawInput:`sh -c ${JSON.stringify(x)}`,mode:r,args:["-c",x,"--",...P],stdin:o,cwd:i,shell:s,env:c})}return{stderr:`${_}: command not found`,exitCode:127}}try{return await N.run({authUser:t,hostname:n,activeSessions:s.users.listActiveSessions(),rawInput:v,mode:r,args:P,stdin:o,cwd:i,shell:s,env:c})}catch(I){return{stderr:I instanceof Error?I.message:"Command failed",exitCode:1}}}var jn={name:"cd",description:"Change directory",category:"navigation",params:["[path]"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=M(n,r[0]??"~",J(e));return V(e,i,"cd"),t.vfs.stat(i).type!=="directory"?{stderr:`cd: not a directory: ${i}`,exitCode:1}:{nextCwd:i,exitCode:0}}};function Vi(e,t){let n=/^([ugoa]*)([+\-=])([rwx]*)$/,r=t.split(","),i=e;for(let s of r){let o=s.trim().match(n);if(!o)return null;let[,a="a",l,c=""]=o,u=a===""||a==="a"?["u","g","o"]:a.split(""),d={u:{r:256,w:128,x:64},g:{r:32,w:16,x:8},o:{r:4,w:2,x:1}};for(let m of u)for(let p of c.split("")){let g=d[m]?.[p];if(g!==void 0){if(l==="+")i|=g;else if(l==="-")i&=~g;else if(l==="="){let S=Object.values(d[m]??{}).reduce((v,E)=>v|E,0);i=i&~S|g}}}}return i}var Wn={name:"chmod",description:"Change file permissions",category:"files",params:["<mode> <file>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let[i,s]=r;if(!i||!s)return{stderr:"chmod: missing operand",exitCode:1};let o=M(n,s);try{if(V(e,o,"chmod"),!t.vfs.exists(o))return{stderr:`chmod: ${s}: No such file or directory`,exitCode:1};let a,l=parseInt(i,8);if(!Number.isNaN(l)&&/^[0-7]+$/.test(i))a=l;else{let c=t.vfs.stat(o).mode,u=Vi(c,i);if(u===null)return{stderr:`chmod: invalid mode: ${i}`,exitCode:1};a=u}return t.vfs.chmod(o,a),{exitCode:0}}catch(a){return{stderr:`chmod: ${a instanceof Error?a.message:String(a)}`,exitCode:1}}}};var qn={name:"clear",description:"Clear the terminal screen",category:"shell",params:[],run:()=>({clearScreen:!0,stdout:"",exitCode:0})};var Kn={name:"cp",description:"Copy files or directories",category:"files",params:["[-r] <source> <dest>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=C(r,["-r","-R","--recursive"]),s=r.filter(u=>!u.startsWith("-")),[o,a]=s;if(!o||!a)return{stderr:"cp: missing operand",exitCode:1};let l=M(n,o),c=M(n,a);try{if(V(e,l,"cp"),V(e,c,"cp"),!t.vfs.exists(l))return{stderr:`cp: ${o}: No such file or directory`,exitCode:1};if(t.vfs.stat(l).type==="directory"){if(!i)return{stderr:`cp: ${o}: is a directory (use -r)`,exitCode:1};let d=(p,g)=>{t.vfs.mkdir(g,493);for(let S of t.vfs.list(p)){let v=`${p}/${S}`,E=`${g}/${S}`;if(t.vfs.stat(v).type==="directory")d(v,E);else{let _=t.vfs.readFileRaw(v);t.writeFileAsUser(e,E,_)}}},m=t.vfs.exists(c)&&t.vfs.stat(c).type==="directory"?`${c}/${o.split("/").pop()}`:c;d(l,m)}else{let d=t.vfs.exists(c)&&t.vfs.stat(c).type==="directory"?`${c}/${o.split("/").pop()}`:c,m=t.vfs.readFileRaw(l);t.writeFileAsUser(e,d,m)}return{exitCode:0}}catch(u){return{stderr:`cp: ${u instanceof Error?u.message:String(u)}`,exitCode:1}}}};var Gn={name:"curl",description:"Transfer data from or to a server (pure fetch)",category:"network",params:["[options] <url>"],run:async({authUser:e,cwd:t,args:n,shell:r})=>{let{flagsWithValues:i,positionals:s}=de(n,{flagsWithValue:["-o","--output","-X","--request","-d","--data","-H","--header","-u","--user"]});if(C(n,["--help","-h"]))return{stdout:["Usage: curl [options] <url>"," -o, --output <file> Write to file"," -X, --request <method> HTTP method"," -d, --data <data> POST data"," -H, --header <hdr> Extra header"," -s, --silent Silent mode"," -I, --head Fetch headers only"," -L, --location Follow redirects"," -v, --verbose Verbose"].join(`
32
+ `),exitCode:0}}};async function Hn(e,t,n,r,i,s,o){let a={exitCode:0},l=[],c=i,u=0;for(;u<e.length;){let m=e[u];if(a=await Ni(m.pipeline,t,n,r,c,s,o),o.lastExitCode=a.exitCode??0,a.nextCwd&&(a.exitCode??0)===0&&(c=a.nextCwd),a.stdout&&l.push(a.stdout),a.closeSession||a.switchUser)return{...a,stdout:l.join("")||a.stdout};let p=m.op;if(!(!p||p===";")){if(p==="&&"){if((a.exitCode??0)!==0)for(;u<e.length&&e[u]?.op==="&&";)u++}else if(p==="||"&&(a.exitCode??0)===0)for(;u<e.length&&e[u]?.op==="||";)u++}u++}let d=l.join("");return{...a,stdout:d||a.stdout,nextCwd:c!==i?c:void 0}}async function Ni(e,t,n,r,i,s,o){if(!e.isValid)return{stderr:e.error||"Syntax error",exitCode:1};if(e.commands.length===0)return{exitCode:0};let a=o??{vars:{},lastExitCode:0};return e.commands.length===1?Ai(e.commands[0],t,n,r,i,s,a):_i(e.commands,t,n,r,i,s,a)}async function Ai(e,t,n,r,i,s,o){let a;if(e.inputFile){let c=M(i,e.inputFile);try{a=s.vfs.readFile(c)}catch{return{stderr:`${e.inputFile}: No such file or directory`,exitCode:1}}}let l=await Ke(e.name,e.args,t,n,r,i,s,a,o);if(e.outputFile){let c=M(i,e.outputFile),u=l.stdout||"";try{if(e.appendOutput){let d=(()=>{try{return s.vfs.readFile(c)}catch{return""}})();s.writeFileAsUser(t,c,d+u)}else s.writeFileAsUser(t,c,u);return{...l,stdout:""}}catch{return{...l,stderr:`Failed to write to ${e.outputFile}`,exitCode:1}}}return l}async function _i(e,t,n,r,i,s,o){let a="",l=0;for(let c=0;c<e.length;c++){let u=e[c];if(c===0&&u.inputFile){let m=M(i,u.inputFile);try{a=s.vfs.readFile(m)}catch{return{stderr:`${u.inputFile}: No such file or directory`,exitCode:1}}}let d=await Ke(u.name,u.args,t,n,r,i,s,a,o);if(l=d.exitCode??0,c===e.length-1&&u.outputFile){let m=M(i,u.outputFile),p=d.stdout||"";try{if(u.appendOutput){let g=(()=>{try{return s.vfs.readFile(m)}catch{return""}})();s.writeFileAsUser(t,m,g+p)}else s.writeFileAsUser(t,m,p);a=""}catch{return{stderr:`Failed to write to ${u.outputFile}`,exitCode:1}}}else a=d.stdout||"";if(d.stderr&&l!==0)return{stderr:d.stderr,exitCode:l};if(d.closeSession||d.switchUser)return d}return{stdout:a,exitCode:l}}function ot(e){let t=[],n="",r=!1,i="",s=0;for(;s<e.length;){let o=e[s],a=e[s+1];if((o==='"'||o==="'")&&!r){r=!0,i=o,s++;continue}if(r&&o===i){r=!1,i="",s++;continue}if(r){n+=o,s++;continue}if(o===" "){n&&(t.push(n),n=""),s++;continue}if(!r&&o==="2"&&a===">"){let l=e.slice(s+1);if(l.startsWith(">>&1")||l.startsWith(">> &1")){n&&(t.push(n),n=""),t.push("2>>&1"),s+=5;continue}if(l.startsWith(">&1")){n&&(t.push(n),n=""),t.push("2>&1"),s+=4;continue}if(l.startsWith(">>")){n&&(t.push(n),n=""),t.push("2>>"),s+=3;continue}if(l.startsWith(">")){n&&(t.push(n),n=""),t.push("2>"),s+=2;continue}}if((o===">"||o==="<")&&!r){n&&(t.push(n),n=""),o===">"&&a===">"?(t.push(">>"),s+=2):(t.push(o),s++);continue}n+=o,s++}return n&&t.push(n),t}function jn(e){let t=e.trim();if(!t)return{statements:[],isValid:!0};try{return{statements:Oi(t),isValid:!0}}catch(n){return{statements:[],isValid:!1,error:n.message}}}function Oi(e){let t=Ti(e),n=[];for(let r of t){let s={pipeline:{commands:Di(r.text.trim()),isValid:!0}};r.op&&(s.op=r.op),n.push(s)}return n}function Ti(e){let t=[],n="",r=0,i=!1,s="",o=0,a=l=>{n.trim()&&t.push({text:n,op:l}),n=""};for(;o<e.length;){let l=e[o],c=e.slice(o,o+2);if((l==='"'||l==="'")&&!i){i=!0,s=l,n+=l,o++;continue}if(i&&l===s){i=!1,n+=l,o++;continue}if(i){n+=l,o++;continue}if(l==="("){r++,n+=l,o++;continue}if(l===")"){r--,n+=l,o++;continue}if(r>0){n+=l,o++;continue}if(c==="&&"){a("&&"),o+=2;continue}if(c==="||"){a("||"),o+=2;continue}if(l===";"){a(";"),o++;continue}n+=l,o++}return a(),t}function Di(e){return Fi(e).map(Ri)}function Fi(e){let t=[],n="",r=!1,i="";for(let o=0;o<e.length;o++){let a=e[o];if((a==='"'||a==="'")&&!r){r=!0,i=a,n+=a;continue}if(r&&a===i){r=!1,n+=a;continue}if(r){n+=a;continue}if(a==="|"&&e[o+1]!=="|"){if(!n.trim())throw new Error("Syntax error near unexpected token '|'");t.push(n.trim()),n=""}else n+=a}let s=n.trim();if(!s&&t.length>0)throw new Error("Syntax error near unexpected token '|'");return s&&t.push(s),t}function Ri(e){let t=ot(e);if(t.length===0)return{name:"",args:[]};let n=[],r,i,s=!1,o=0,a,l=!1,c=!1;for(;o<t.length;){let m=t[o];if(m==="<"){if(o++,o>=t.length)throw new Error("Syntax error: expected filename after <");r=t[o],o++}else if(m===">>"){if(o++,o>=t.length)throw new Error("Syntax error: expected filename after >>");i=t[o],s=!0,o++}else if(m===">"){if(o++,o>=t.length)throw new Error("Syntax error: expected filename after >");i=t[o],s=!1,o++}else if(m==="2>&1")c=!0,o++;else if(m==="2>>"){if(o++,o>=t.length)throw new Error("Syntax error: expected filename after 2>>");a=t[o],l=!0,o++}else if(m==="2>"){if(o++,o>=t.length)throw new Error("Syntax error: expected filename after 2>");a=t[o],l=!1,o++}else n.push(m),o++}let u=n[0]??"";return{name:/^([A-Za-z_][A-Za-z0-9_]*)=(.*)$/.test(u)?u:u.toLowerCase(),args:n.slice(1),inputFile:r,outputFile:i,appendOutput:s,stderrFile:a,stderrAppend:l,stderrToStdout:c}}function Li(e,t){let n=[],r=0;for(;r<e.length;){let i=e[r];if(/\s/.test(i)){r++;continue}if(i==="+"){n.push({type:"plus"}),r++;continue}if(i==="-"){n.push({type:"minus"}),r++;continue}if(i==="*"){if(e[r+1]==="*"){n.push({type:"pow"}),r+=2;continue}n.push({type:"mul"}),r++;continue}if(i==="/"){n.push({type:"div"}),r++;continue}if(i==="%"){n.push({type:"mod"}),r++;continue}if(i==="("){n.push({type:"lparen"}),r++;continue}if(i===")"){n.push({type:"rparen"}),r++;continue}if(/\d/.test(i)){let s=r+1;for(;s<e.length&&/\d/.test(e[s]);)s++;n.push({type:"number",value:Number(e.slice(r,s))}),r=s;continue}if(/[A-Za-z_]/.test(i)){let s=r+1;for(;s<e.length&&/[A-Za-z0-9_]/.test(e[s]);)s++;let o=e.slice(r,s),a=t[o],l=a===void 0||a===""?0:Number(a);n.push({type:"number",value:Number.isFinite(l)?l:0}),r=s;continue}return[]}return n}function nn(e,t){let n=e.trim();if(n.length===0||n.length>1024)return NaN;let r=Li(n,t);if(r.length===0)return NaN;let i=0,s=()=>r[i],o=()=>r[i++],a=()=>{let p=o();if(!p)return NaN;if(p.type==="number")return p.value;if(p.type==="lparen"){let g=d();return r[i]?.type!=="rparen"?NaN:(i++,g)}return NaN},l=()=>{let p=s();return p?.type==="plus"?(o(),l()):p?.type==="minus"?(o(),-l()):a()},c=()=>{let p=l();for(;s()?.type==="pow";){o();let g=l();p=p**g}return p},u=()=>{let p=c();for(;;){let g=s();if(g?.type==="mul"){o(),p*=c();continue}if(g?.type==="div"){o();let S=c();p=S===0?NaN:p/S;continue}if(g?.type==="mod"){o();let S=c();p=S===0?NaN:p%S;continue}return p}},d=()=>{let p=u();for(;;){let g=s();if(g?.type==="plus"){o(),p+=u();continue}if(g?.type==="minus"){o(),p-=u();continue}return p}},m=d();return!Number.isFinite(m)||i!==r.length?NaN:Math.trunc(m)}function Vi(e,t){let n=[],r=0;for(;r<e.length;){let i=e.indexOf("'",r);if(i===-1){n.push(t(e.slice(r)));break}n.push(t(e.slice(r,i)));let s=e.indexOf("'",i+1);if(s===-1){n.push(e.slice(i));break}n.push(e.slice(i,s+1)),r=s+1}return n.join("")}function $t(e){function r(i,s){if(s>8)return[i];let o=0,a=-1;for(let l=0;l<i.length;l++){let c=i[l];if(c==="{"&&i[l-1]!=="$")o===0&&(a=l),o++;else if(c==="}"&&(o--,o===0&&a!==-1)){let u=i.slice(0,a),d=i.slice(a+1,l),m=i.slice(l+1),p=d.match(/^(-?\d+)\.\.(-?\d+)(?:\.\.-?(\d+))?$/)||d.match(/^([a-z])\.\.([a-z])$/);if(p){let E=[];if(/\d/.test(p[1])){let P=parseInt(p[1],10),N=parseInt(p[2],10),I=p[3]?parseInt(p[3],10):1,x=P<=N?I:-I;for(let A=P;P<=N?A<=N:A>=N;A+=x)E.push(String(A))}else{let P=p[1].charCodeAt(0),N=p[2].charCodeAt(0),I=P<=N?1:-1;for(let x=P;P<=N?x<=N:x>=N;x+=I)E.push(String.fromCharCode(x))}let T=E.map(P=>`${u}${P}${m}`),_=[];for(let P of T)if(_.push(...r(P,s+1)),_.length>256)return[i];return _}let g=[],S="",v=0;for(let E of d)E==="{"?(v++,S+=E):E==="}"?(v--,S+=E):E===","&&v===0?(g.push(S),S=""):S+=E;if(g.push(S),g.length>1){let E=[];for(let T of g)if(E.push(...r(`${u}${T}${m}`,s+1)),E.length>256)return[i];return E}break}}return[i]}return r(e,0)}function Ui(e,t){let n="",r=0;for(;r<e.length;){if(e[r]==="$"&&e[r+1]==="("&&e[r+2]==="("){let i=r+3,s=0;for(;i<e.length;){let o=e[i];if(o==="(")s++;else if(o===")"){if(s>0)s--;else if(e[i+1]===")"){let a=e.slice(r+3,i),l=nn(a,t);n+=Number.isNaN(l)?"0":String(l),r=i+2;break}}i++}if(i>=e.length){n+=e.slice(r);break}continue}n+=e[r],r++}return n}function Et(e,t,n=0,r){let i=r??t.HOME??"/home/user";return Vi(e,s=>{let o=s;return o=o.replace(/(^|[\s:])~(\/|$)/g,(a,l,c)=>`${l}${i}${c}`),o=o.replace(/\$\?/g,String(n)),o=o.replace(/\$\$/g,"1"),o=o.replace(/\$#/g,"0"),o=Ui(o,t),o=o.replace(/\$\{#([A-Za-z_][A-Za-z0-9_]*)\}/g,(a,l)=>String((t[l]??"").length)),o=o.replace(/\$\{([A-Za-z_][A-Za-z0-9_]*):-([^}]*)\}/g,(a,l,c)=>t[l]!==void 0&&t[l]!==""?t[l]:c),o=o.replace(/\$\{([A-Za-z_][A-Za-z0-9_]*):=([^}]*)\}/g,(a,l,c)=>((t[l]===void 0||t[l]==="")&&(t[l]=c),t[l])),o=o.replace(/\$\{([A-Za-z_][A-Za-z0-9_]*):\+([^}]*)\}/g,(a,l,c)=>t[l]!==void 0&&t[l]!==""?c:""),o=o.replace(/\$\{([A-Za-z_][A-Za-z0-9_]*)\}/g,(a,l)=>t[l]??""),o=o.replace(/\$([A-Za-z_][A-Za-z0-9_]*|\d+)/g,(a,l)=>t[l]??""),o})}async function kt(e,t,n,r){let i="__shellExpandDepth",o=Number(t[i]??"0");if(o>=8)return Et(e,t,n);t[i]=String(o+1);try{if(e.includes("$(")){let a="",l=!1,c=0;for(;c<e.length;){let u=e[c];if(u==="'"&&!l){l=!0,a+=u,c++;continue}if(u==="'"&&l){l=!1,a+=u,c++;continue}if(!l&&u==="$"&&e[c+1]==="("){if(e[c+2]==="("){a+=u,c++;continue}let d=0,m=c+1;for(;m<e.length;){if(e[m]==="(")d++;else if(e[m]===")"&&(d--,d===0))break;m++}let p=e.slice(c+2,m).trim(),g=(await r(p)).replace(/\n$/,"");a+=g,c=m+1;continue}a+=u,c++}e=a}return Et(e,t,n)}finally{o<=0?delete t[i]:t[i]=String(o)}}function J(e){return e==="root"?"/root":`/home/${e}`}function Ue(e,t){return{vars:{PATH:"/usr/local/bin:/usr/bin:/bin",HOME:J(e),USER:e,LOGNAME:e,SHELL:"/bin/sh",TERM:"xterm-256color",HOSTNAME:t,PS1:"\\u@\\h:\\w\\$ "},lastExitCode:0}}function Wn(e,t,n,r){if(e.startsWith("/")){if(!n.vfs.exists(e))return null;try{let s=n.vfs.stat(e);return s.type!=="file"||!(s.mode&73)||(e.startsWith("/sbin/")||e.startsWith("/usr/sbin/"))&&r!=="root"?null:e}catch{return null}}let i=(t.vars.PATH??"/usr/local/bin:/usr/bin:/bin").split(":");for(let s of i){if((s==="/sbin"||s==="/usr/sbin")&&r!=="root")continue;let o=`${s}/${e}`;if(n.vfs.exists(o))try{let a=n.vfs.stat(o);if(a.type!=="file"||!(a.mode&73))continue;return o}catch{}}return null}var Mt=8,_e=0;async function Ke(e,t,n,r,i,s,o,a,l){if(_e++,_e>Mt)return _e--,{stderr:`${e}: maximum call depth (${Mt}) exceeded`,exitCode:126};try{return await Bi(e,t,n,r,i,s,o,a,l)}finally{_e--}}async function Bi(e,t,n,r,i,s,o,a,l){let c=/^([A-Za-z_][A-Za-z0-9_]*)=(.*)$/,u=[e,...t],d=0;for(;d<u.length&&c.test(u[d]);)d+=1;if(d>0){let g=u.slice(0,d).map(E=>E.match(c)),S=u.slice(d),v=[];for(let[,E,T]of g)v.push([E,l.vars[E]]),l.vars[E]=T;if(S.length===0)return{exitCode:0};try{return await Ke(S[0],S.slice(1),n,r,i,s,o,a,l)}finally{for(let[E,T]of v)T===void 0?delete l.vars[E]:l.vars[E]=T}}let m=l.vars[`__alias_${e}`];if(m)return Z(`${m} ${t.join(" ")}`,n,r,i,s,o,a,l);let p=xe(e);if(!p){let g=Wn(e,l,o,n);if(g){let S=o.vfs.readFile(g),v=S.match(/exec\s+builtin\s+(\S+)/);if(v){let T=xe(v[1]);return T?await T.run({authUser:n,hostname:r,activeSessions:o.users.listActiveSessions(),rawInput:[e,...t].join(" "),mode:i,args:t,stdin:a,cwd:s,shell:o,env:l}):{stderr:`${e}: exec builtin '${v[1]}' not found`,exitCode:127}}let E=xe("sh");if(E)return await E.run({authUser:n,hostname:r,activeSessions:o.users.listActiveSessions(),rawInput:`sh -c ${JSON.stringify(S)}`,mode:i,args:["-c",S,"--",...t],stdin:a,cwd:s,shell:o,env:l})}return{stderr:`${e}: command not found`,exitCode:127}}try{return await p.run({authUser:n,hostname:r,activeSessions:o.users.listActiveSessions(),rawInput:[e,...t].join(" "),mode:i,args:t,stdin:a,cwd:s,shell:o,env:l})}catch(g){return{stderr:g instanceof Error?g.message:"Command failed",exitCode:1}}}async function Z(e,t,n,r,i,s,o,a){let l=e.trim();if(l.length===0)return{exitCode:0};let c=a??Ue(t,n);if(_e++,_e>Mt)return _e--,{stderr:`${l.split(" ")[0]}: maximum call depth (${Mt}) exceeded`,exitCode:126};try{let d=ot(l)[0]?.toLowerCase()??"",m=c.vars[`__alias_${d}`],p=m?l.replace(d,m):l,g=/\bfor\s+\w+\s+in\b/.test(p)||/\bwhile\s+/.test(p)||/\bif\s+/.test(p)||/\w+\s*\(\s*\)\s*\{/.test(p)||/\bfunction\s+\w+/.test(p)||/\(\(\s*.+\s*\)\)/.test(p),S=/(?<![|&])[|](?![|])/.test(p)||p.includes(">")||p.includes("<")||p.includes("&&")||p.includes("||")||p.includes(";");if(g&&d!=="sh"&&d!=="bash"||S){if(g&&d!=="sh"&&d!=="bash"){let x=xe("sh");if(x)return await x.run({authUser:t,hostname:n,activeSessions:s.users.listActiveSessions(),rawInput:p,mode:r,args:["-c",p],stdin:void 0,cwd:i,shell:s,env:c})}let I=jn(p);if(!I.isValid)return{stderr:I.error||"Syntax error",exitCode:1};try{return await Hn(I.statements,t,n,r,i,s,c)}catch(x){return{stderr:x instanceof Error?x.message:"Execution failed",exitCode:1}}}let v=await kt(p,c.vars,c.lastExitCode,I=>Z(I,t,n,r,i,s,void 0,c).then(x=>x.stdout??"")),E=ot(v.trim());if(E.length===0)return{exitCode:0};if(/^([A-Za-z_][A-Za-z0-9_]*)=(.*)$/.test(E[0]))return Ke(E[0],E.slice(1),t,n,r,i,s,o,c);let _=E[0]?.toLowerCase()??"",P=E.slice(1).flatMap($t),N=xe(_);if(!N){let I=Wn(_,c,s,t);if(I){let x=s.vfs.readFile(I),A=x.match(/exec\s+builtin\s+(\S+)/);if(A){let k=A[1],w=xe(k);if(w)return await w.run({authUser:t,hostname:n,activeSessions:s.users.listActiveSessions(),rawInput:[_,...P].join(" "),mode:r,args:P,stdin:o,cwd:i,shell:s,env:c})}let D=xe("sh");if(D)return await D.run({authUser:t,hostname:n,activeSessions:s.users.listActiveSessions(),rawInput:`sh -c ${JSON.stringify(x)}`,mode:r,args:["-c",x,"--",...P],stdin:o,cwd:i,shell:s,env:c})}return{stderr:`${_}: command not found`,exitCode:127}}try{return await N.run({authUser:t,hostname:n,activeSessions:s.users.listActiveSessions(),rawInput:v,mode:r,args:P,stdin:o,cwd:i,shell:s,env:c})}catch(I){return{stderr:I instanceof Error?I.message:"Command failed",exitCode:1}}}finally{_e--}}var qn={name:"cd",description:"Change directory",category:"navigation",params:["[path]"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=M(n,r[0]??"~",J(e));return V(e,i,"cd"),t.vfs.stat(i).type!=="directory"?{stderr:`cd: not a directory: ${i}`,exitCode:1}:{nextCwd:i,exitCode:0}}};function zi(e,t){let n=/^([ugoa]*)([+\-=])([rwx]*)$/,r=t.split(","),i=e;for(let s of r){let o=s.trim().match(n);if(!o)return null;let[,a="a",l,c=""]=o,u=a===""||a==="a"?["u","g","o"]:a.split(""),d={u:{r:256,w:128,x:64},g:{r:32,w:16,x:8},o:{r:4,w:2,x:1}};for(let m of u)for(let p of c.split("")){let g=d[m]?.[p];if(g!==void 0){if(l==="+")i|=g;else if(l==="-")i&=~g;else if(l==="="){let S=Object.values(d[m]??{}).reduce((v,E)=>v|E,0);i=i&~S|g}}}}return i}var Kn={name:"chmod",description:"Change file permissions",category:"files",params:["<mode> <file>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let[i,s]=r;if(!i||!s)return{stderr:"chmod: missing operand",exitCode:1};let o=M(n,s);try{if(V(e,o,"chmod"),!t.vfs.exists(o))return{stderr:`chmod: ${s}: No such file or directory`,exitCode:1};let a,l=parseInt(i,8);if(!Number.isNaN(l)&&/^[0-7]+$/.test(i))a=l;else{let c=t.vfs.stat(o).mode,u=zi(c,i);if(u===null)return{stderr:`chmod: invalid mode: ${i}`,exitCode:1};a=u}return t.vfs.chmod(o,a),{exitCode:0}}catch(a){return{stderr:`chmod: ${a instanceof Error?a.message:String(a)}`,exitCode:1}}}};var Gn={name:"clear",description:"Clear the terminal screen",category:"shell",params:[],run:()=>({clearScreen:!0,stdout:"",exitCode:0})};var Yn={name:"cp",description:"Copy files or directories",category:"files",params:["[-r] <source> <dest>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=C(r,["-r","-R","--recursive"]),s=r.filter(u=>!u.startsWith("-")),[o,a]=s;if(!o||!a)return{stderr:"cp: missing operand",exitCode:1};let l=M(n,o),c=M(n,a);try{if(V(e,l,"cp"),V(e,c,"cp"),!t.vfs.exists(l))return{stderr:`cp: ${o}: No such file or directory`,exitCode:1};if(t.vfs.stat(l).type==="directory"){if(!i)return{stderr:`cp: ${o}: is a directory (use -r)`,exitCode:1};let d=(p,g)=>{t.vfs.mkdir(g,493);for(let S of t.vfs.list(p)){let v=`${p}/${S}`,E=`${g}/${S}`;if(t.vfs.stat(v).type==="directory")d(v,E);else{let _=t.vfs.readFileRaw(v);t.writeFileAsUser(e,E,_)}}},m=t.vfs.exists(c)&&t.vfs.stat(c).type==="directory"?`${c}/${o.split("/").pop()}`:c;d(l,m)}else{let d=t.vfs.exists(c)&&t.vfs.stat(c).type==="directory"?`${c}/${o.split("/").pop()}`:c,m=t.vfs.readFileRaw(l);t.writeFileAsUser(e,d,m)}return{exitCode:0}}catch(u){return{stderr:`cp: ${u instanceof Error?u.message:String(u)}`,exitCode:1}}}};var Jn={name:"curl",description:"Transfer data from or to a server (pure fetch)",category:"network",params:["[options] <url>"],run:async({authUser:e,cwd:t,args:n,shell:r})=>{let{flagsWithValues:i,positionals:s}=de(n,{flagsWithValue:["-o","--output","-X","--request","-d","--data","-H","--header","-u","--user"]});if(C(n,["--help","-h"]))return{stdout:["Usage: curl [options] <url>"," -o, --output <file> Write to file"," -X, --request <method> HTTP method"," -d, --data <data> POST data"," -H, --header <hdr> Extra header"," -s, --silent Silent mode"," -I, --head Fetch headers only"," -L, --location Follow redirects"," -v, --verbose Verbose"].join(`
33
33
  `),exitCode:0};let o=s[0];if(!o)return{stderr:"curl: no URL specified",exitCode:1};let a=i.get("-o")??i.get("--output")??null,l=(i.get("-X")??i.get("--request")??"GET").toUpperCase(),c=i.get("-d")??i.get("--data")??null,u=i.get("-H")??i.get("--header")??null,d=C(n,["-s","--silent"]),m=C(n,["-I","--head"]),p=C(n,["-L","--location"]),g=C(n,["-v","--verbose"]),S={"User-Agent":"curl/7.88.1"};if(u){let N=u.indexOf(":");N!==-1&&(S[u.slice(0,N).trim()]=u.slice(N+1).trim())}let v=c&&l==="GET"?"POST":l,E={method:v,headers:S,redirect:p?"follow":"manual"};c&&(S["Content-Type"]??="application/x-www-form-urlencoded",E.body=c);let T=[];g&&(T.push(`* Trying ${o}...`,"* Connected"),T.push(`> ${v} / HTTP/1.1`,`> Host: ${new URL(o).host}`));let _;try{let N=o.startsWith("http://")||o.startsWith("https://")?o:`http://${o}`;_=await fetch(N,E)}catch(N){return{stderr:`curl: (6) Could not resolve host: ${N instanceof Error?N.message:String(N)}`,exitCode:6}}if(g&&T.push(`< HTTP/1.1 ${_.status} ${_.statusText}`),m){let N=[`HTTP/1.1 ${_.status} ${_.statusText}`];for(let[I,x]of _.headers.entries())N.push(`${I}: ${x}`);return{stdout:`${N.join(`\r
34
34
  `)}\r
35
35
  `,exitCode:0}}let P;try{P=await _.text()}catch{return{stderr:"curl: failed to read response body",exitCode:1}}if(a){let N=M(t,a);return V(e,N,"curl"),r.writeFileAsUser(e,N,P),d||T.push(` % Total % Received
36
36
  100 ${P.length} 100 ${P.length}`),{stderr:T.join(`
37
37
  `)||void 0,exitCode:_.ok?0:22}}return{stdout:P,stderr:T.length>0?T.join(`
38
- `):void 0,exitCode:_.ok?0:22}}};var Yn={name:"cut",description:"Remove sections from lines",category:"text",params:["-d <delim> -f <fields> [file]"],run:({args:e,stdin:t})=>{let n=ue(e,["-d"])??" ",i=(ue(e,["-f"])??"1").split(",").map(a=>{let[l,c]=a.split("-").map(Number);return c!==void 0?{from:(l??1)-1,to:c-1}:{from:(l??1)-1,to:(l??1)-1}});return{stdout:(t??"").split(`
38
+ `):void 0,exitCode:_.ok?0:22}}};var Zn={name:"cut",description:"Remove sections from lines",category:"text",params:["-d <delim> -f <fields> [file]"],run:({args:e,stdin:t})=>{let n=ue(e,["-d"])??" ",i=(ue(e,["-f"])??"1").split(",").map(a=>{let[l,c]=a.split("-").map(Number);return c!==void 0?{from:(l??1)-1,to:c-1}:{from:(l??1)-1,to:(l??1)-1}});return{stdout:(t??"").split(`
39
39
  `).map(a=>{let l=a.split(n),c=[];for(let u of i)for(let d=u.from;d<=Math.min(u.to,l.length-1);d++)c.push(l[d]??"");return c.join(n)}).join(`
40
- `),exitCode:0}}};var Jn={name:"date",description:"Print current date and time",category:"system",params:["[+format]"],run:({args:e})=>{let t=new Date,n=e[0];return n?.startsWith("+")?{stdout:n.slice(1).replace("%Y",String(t.getFullYear())).replace("%m",String(t.getMonth()+1).padStart(2,"0")).replace("%d",String(t.getDate()).padStart(2,"0")).replace("%H",String(t.getHours()).padStart(2,"0")).replace("%M",String(t.getMinutes()).padStart(2,"0")).replace("%S",String(t.getSeconds()).padStart(2,"0")).replace("%s",String(Math.floor(t.getTime()/1e3))),exitCode:0}:{stdout:t.toString(),exitCode:0}}};var Zn={name:"declare",aliases:["local","typeset"],description:"Declare variables and give them attributes",category:"shell",params:["[-i] [-r] [-x] [-a] [name[=value]...]"],run:({args:e,env:t})=>{if(!t)return{exitCode:0};let n=C(e,["-i"]),r=C(e,["-r"]),i=C(e,["-x"]);if(e.filter(a=>!a.startsWith("-")).length===0)return{stdout:Object.entries(t.vars).map(([l,c])=>`declare -- ${l}="${c}"`).join(`
41
- `),exitCode:0};let o=e.filter(a=>!a.startsWith("-"));for(let a of o){let l=a.indexOf("=");if(l===-1)a in t.vars||(t.vars[a]="");else{let c=a.slice(0,l),u=a.slice(l+1);if(n){let d=parseInt(u,10);u=Number.isNaN(d)?"0":String(d)}t.vars[c]=u}}return{exitCode:0}}};var Qn={name:"deluser",description:"Delete a user",category:"users",params:["[-f] <username>"],run:async({authUser:e,args:t,shell:n})=>{if(e!=="root")return{stderr:`deluser: permission denied
40
+ `),exitCode:0}}};var Xn={name:"date",description:"Print current date and time",category:"system",params:["[+format]"],run:({args:e})=>{let t=new Date,n=e[0];return n?.startsWith("+")?{stdout:n.slice(1).replace("%Y",String(t.getFullYear())).replace("%m",String(t.getMonth()+1).padStart(2,"0")).replace("%d",String(t.getDate()).padStart(2,"0")).replace("%H",String(t.getHours()).padStart(2,"0")).replace("%M",String(t.getMinutes()).padStart(2,"0")).replace("%S",String(t.getSeconds()).padStart(2,"0")).replace("%s",String(Math.floor(t.getTime()/1e3))),exitCode:0}:{stdout:t.toString(),exitCode:0}}};var Qn={name:"declare",aliases:["local","typeset"],description:"Declare variables and give them attributes",category:"shell",params:["[-i] [-r] [-x] [-a] [name[=value]...]"],run:({args:e,env:t})=>{if(!t)return{exitCode:0};let n=C(e,["-i"]),r=C(e,["-r"]),i=C(e,["-x"]);if(e.filter(a=>!a.startsWith("-")).length===0)return{stdout:Object.entries(t.vars).map(([l,c])=>`declare -- ${l}="${c}"`).join(`
41
+ `),exitCode:0};let o=e.filter(a=>!a.startsWith("-"));for(let a of o){let l=a.indexOf("=");if(l===-1)a in t.vars||(t.vars[a]="");else{let c=a.slice(0,l),u=a.slice(l+1);if(n){let d=parseInt(u,10);u=Number.isNaN(d)?"0":String(d)}t.vars[c]=u}}return{exitCode:0}}};var er={name:"deluser",description:"Delete a user",category:"users",params:["[-f] <username>"],run:async({authUser:e,args:t,shell:n})=>{if(e!=="root")return{stderr:`deluser: permission denied
42
42
  `,exitCode:1};let r=t.includes("-f")||t.includes("--force")||t.includes("-y"),i=t.find(o=>!o.startsWith("-"));if(!i)return{stderr:`Usage: deluser [-f] <username>
43
43
  `,exitCode:1};if(!n.users.listUsers().includes(i))return{stderr:`deluser: user '${i}' does not exist
44
44
  `,exitCode:1};if(i==="root")return{stderr:`deluser: cannot remove the root account
@@ -48,69 +48,69 @@ deluser: done.
48
48
  `,exitCode:1}}:(await a.users.deleteUser(i),{result:{stdout:`Removing user '${i}' ...
49
49
  deluser: done.
50
50
  `,exitCode:0}});return{sudoChallenge:{username:i,targetUser:i,commandLine:null,loginShell:!1,prompt:`Warning: deleting user '${i}'.
51
- Type the username to confirm: `,mode:"confirm",onPassword:s},exitCode:0}}};var Xn={name:"df",description:"Report filesystem disk space usage",category:"system",params:["[-h]"],run:({shell:e})=>{let n=(e.vfs.getUsageBytes()/1024).toFixed(0),r="1048576",i=String(Number(r)-Number(n)),s=Math.round(Number(n)/Number(r)*100),o="Filesystem 1K-blocks Used Available Use% Mounted on",a=`virtual-fs ${r.padStart(9)} ${n.padStart(7)} ${i.padStart(9)} ${s}% /`;return{stdout:`${o}
52
- ${a}`,exitCode:0}}};var er={name:"diff",description:"Compare files line by line",category:"text",params:["<file1> <file2>"],run:({shell:e,cwd:t,args:n})=>{let[r,i]=n;if(!r||!i)return{stderr:"diff: missing operand",exitCode:1};let s=M(t,r),o=M(t,i),a,l;try{a=e.vfs.readFile(s).split(`
51
+ Type the username to confirm: `,mode:"confirm",onPassword:s},exitCode:0}}};var tr={name:"df",description:"Report filesystem disk space usage",category:"system",params:["[-h]"],run:({shell:e})=>{let n=(e.vfs.getUsageBytes()/1024).toFixed(0),r="1048576",i=String(Number(r)-Number(n)),s=Math.round(Number(n)/Number(r)*100),o="Filesystem 1K-blocks Used Available Use% Mounted on",a=`virtual-fs ${r.padStart(9)} ${n.padStart(7)} ${i.padStart(9)} ${s}% /`;return{stdout:`${o}
52
+ ${a}`,exitCode:0}}};var nr={name:"diff",description:"Compare files line by line",category:"text",params:["<file1> <file2>"],run:({shell:e,cwd:t,args:n})=>{let[r,i]=n;if(!r||!i)return{stderr:"diff: missing operand",exitCode:1};let s=M(t,r),o=M(t,i),a,l;try{a=e.vfs.readFile(s).split(`
53
53
  `)}catch{return{stderr:`diff: ${r}: No such file or directory`,exitCode:2}}try{l=e.vfs.readFile(o).split(`
54
54
  `)}catch{return{stderr:`diff: ${i}: No such file or directory`,exitCode:2}}let c=[],u=Math.max(a.length,l.length);for(let d=0;d<u;d++){let m=a[d],p=l[d];m!==p&&(m!==void 0&&c.push(`< ${m}`),p!==void 0&&c.push(`> ${p}`))}return{stdout:c.join(`
55
- `),exitCode:c.length>0?1:0}}};var tr={name:"dpkg",description:"Debian package manager low-level tool",category:"package",params:["[-l] [-s pkg] [-L pkg] [-i pkg] [--remove pkg]"],run:({args:e,authUser:t,shell:n})=>{let r=We(n);if(!r)return{stderr:"dpkg: package manager not initialised",exitCode:1};let i=C(e,["-l","--list"]),s=C(e,["-s","--status"]),o=C(e,["-L","--listfiles"]),a=C(e,["-r","--remove"]),l=C(e,["-P","--purge"]),{positionals:c}=de(e,{flags:["-l","--list","-s","--status","-L","--listfiles","-r","--remove","-P","--purge"]});if(i){let u=r.listInstalled();if(u.length===0)return{stdout:["Desired=Unknown/Install/Remove/Purge/Hold","|Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend","|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)","||/ Name Version Architecture Description","+++-==============-===============-============-========================================","(no packages installed)"].join(`
55
+ `),exitCode:c.length>0?1:0}}};var rr={name:"dpkg",description:"Debian package manager low-level tool",category:"package",params:["[-l] [-s pkg] [-L pkg] [-i pkg] [--remove pkg]"],run:({args:e,authUser:t,shell:n})=>{let r=qe(n);if(!r)return{stderr:"dpkg: package manager not initialised",exitCode:1};let i=C(e,["-l","--list"]),s=C(e,["-s","--status"]),o=C(e,["-L","--listfiles"]),a=C(e,["-r","--remove"]),l=C(e,["-P","--purge"]),{positionals:c}=de(e,{flags:["-l","--list","-s","--status","-L","--listfiles","-r","--remove","-P","--purge"]});if(i){let u=r.listInstalled();if(u.length===0)return{stdout:["Desired=Unknown/Install/Remove/Purge/Hold","|Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend","|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)","||/ Name Version Architecture Description","+++-==============-===============-============-========================================","(no packages installed)"].join(`
56
56
  `),exitCode:0};let d=["Desired=Unknown/Install/Remove/Purge/Hold","|Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend","|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)","||/ Name Version Architecture Description","+++-==============-===============-============-========================================"],m=u.map(p=>{let g=p.name.padEnd(14).slice(0,14),S=p.version.padEnd(15).slice(0,15),v=p.architecture.padEnd(12).slice(0,12),E=(p.description||"").slice(0,40);return`ii ${g} ${S} ${v} ${E}`});return{stdout:[...d,...m].join(`
57
57
  `),exitCode:0}}if(s){let u=c[0];if(!u)return{stderr:"dpkg: -s needs a package name",exitCode:1};let d=r.show(u);return d?{stdout:d,exitCode:0}:{stderr:`dpkg-query: package '${u}' is not installed and no information is available`,exitCode:1}}if(o){let u=c[0];if(!u)return{stderr:"dpkg: -L needs a package name",exitCode:1};let d=r.listInstalled().find(m=>m.name===u);return d?d.files.length===0?{stdout:"/.keep",exitCode:0}:{stdout:d.files.join(`
58
58
  `),exitCode:0}:{stderr:`dpkg-query: package '${u}' is not installed`,exitCode:1}}if(a||l){if(t!=="root")return{stderr:"dpkg: error: requested operation requires superuser privilege",exitCode:2};if(c.length===0)return{stderr:"dpkg: error: need an action option",exitCode:2};let{output:u,exitCode:d}=r.remove(c,{purge:l});return{stdout:u||void 0,exitCode:d}}return{stdout:["Usage: dpkg [<option>...] <command>","","Commands:"," -l, --list List packages matching given pattern"," -s, --status <pkg>... Report status of specified package"," -L, --listfiles <pkg>... List files owned by package"," -r, --remove <pkg>... Remove <pkg> but leave its configuration"," -P, --purge <pkg>... Remove <pkg> and its configuration"].join(`
59
- `),exitCode:0}}},nr={name:"dpkg-query",description:"Show information about installed packages",category:"package",params:["-W [pkg] | -l [pattern]"],run:({args:e,shell:t})=>{let n=We(t);if(!n)return{stderr:"dpkg-query: package manager not initialised",exitCode:1};let r=C(e,["-l"]),i=C(e,["-W","--show"]),{positionals:s}=de(e,{flags:["-l","-W","--show"]});if(r||i){let o=n.listInstalled(),a=s[0],l=a?o.filter(u=>u.name.includes(a)):o;return i?{stdout:l.map(u=>`${u.name} ${u.version}`).join(`
59
+ `),exitCode:0}}},sr={name:"dpkg-query",description:"Show information about installed packages",category:"package",params:["-W [pkg] | -l [pattern]"],run:({args:e,shell:t})=>{let n=qe(t);if(!n)return{stderr:"dpkg-query: package manager not initialised",exitCode:1};let r=C(e,["-l"]),i=C(e,["-W","--show"]),{positionals:s}=de(e,{flags:["-l","-W","--show"]});if(r||i){let o=n.listInstalled(),a=s[0],l=a?o.filter(u=>u.name.includes(a)):o;return i?{stdout:l.map(u=>`${u.name} ${u.version}`).join(`
60
60
  `),exitCode:0}:{stdout:l.map(u=>{let d=u.name.padEnd(14).slice(0,14),m=u.version.padEnd(15).slice(0,15);return`ii ${d} ${m} amd64 ${(u.description||"").slice(0,40)}`}).join(`
61
- `)||"(no packages match)",exitCode:0}}return{stderr:"dpkg-query: need a flag (-l, -W)",exitCode:1}}};var rr={name:"du",description:"Estimate file space usage",category:"system",params:["[-h] [-s] [path]"],run:({shell:e,cwd:t,args:n})=>{let r=C(n,["-h"]),i=C(n,["-s"]),s=n.find(u=>!u.startsWith("-"))??".",o=M(t,s),a=u=>r?`${(u/1024).toFixed(1)}K`:String(Math.ceil(u/1024));if(!e.vfs.exists(o))return{stderr:`du: ${s}: No such file or directory`,exitCode:1};if(i||e.vfs.stat(o).type==="file")return{stdout:`${a(e.vfs.getUsageBytes(o))} ${s}`,exitCode:0};let l=[],c=(u,d)=>{let m=0;for(let p of e.vfs.list(u)){let g=`${u}/${p}`,S=`${d}/${p}`,v=e.vfs.stat(g);v.type==="directory"?m+=c(g,S):(m+=v.size,i||l.push(`${a(v.size)} ${S}`))}return l.push(`${a(m)} ${d}`),m};return c(o,s),{stdout:l.join(`
62
- `),exitCode:0}}};function Ui(e){return e.replace(/\\n/g,`
63
- `).replace(/\\t/g," ").replace(/\\r/g,"\r").replace(/\\\\/g,"\\").replace(/\\a/g,"\x07").replace(/\\b/g,"\b").replace(/\\f/g,"\f").replace(/\\v/g,"\v").replace(/\\0(\d{1,3})/g,(t,n)=>String.fromCharCode(parseInt(n,8)))}var sr={name:"echo",description:"Display text",category:"shell",params:["[-n] [-e] [text...]"],run:({args:e,stdin:t,env:n})=>{let{flags:r,positionals:i}=de(e,{flags:["-n","-e","-E"]}),s=r.has("-n"),o=r.has("-e"),a=i.length>0?i.join(" "):t??"",l=Pt(a,n?.vars??{},n?.lastExitCode??0),c=o?Ui(l):l;return{stdout:s?c:`${c}
64
- `,exitCode:0}}};var ir={name:"env",description:"Print environment variables",category:"shell",params:[],run:({env:e,authUser:t})=>{let n={...e.vars,USER:t,HOME:`/home/${t}`};return{stdout:Object.entries(n).map(([r,i])=>`${r}=${i}`).join(`
65
- `),exitCode:0}}};var or={name:"exit",aliases:["bye"],description:"Exit the shell session",category:"shell",params:["[code]"],run:({args:e})=>({closeSession:!0,exitCode:parseInt(e[0]??"0",10)||0})};var ar={name:"export",description:"Set shell environment variable",category:"shell",params:["[VAR=value]"],run:({args:e,env:t})=>{if(e.length===0||e.length===1&&e[0]==="-p"){let n=Object.entries(t.vars).filter(([r])=>r&&/^[A-Za-z_][A-Za-z0-9_]*$/.test(r)).map(([r,i])=>`declare -x ${r}="${i}"`).join(`
61
+ `)||"(no packages match)",exitCode:0}}return{stderr:"dpkg-query: need a flag (-l, -W)",exitCode:1}}};var ir={name:"du",description:"Estimate file space usage",category:"system",params:["[-h] [-s] [path]"],run:({shell:e,cwd:t,args:n})=>{let r=C(n,["-h"]),i=C(n,["-s"]),s=n.find(u=>!u.startsWith("-"))??".",o=M(t,s),a=u=>r?`${(u/1024).toFixed(1)}K`:String(Math.ceil(u/1024));if(!e.vfs.exists(o))return{stderr:`du: ${s}: No such file or directory`,exitCode:1};if(i||e.vfs.stat(o).type==="file")return{stdout:`${a(e.vfs.getUsageBytes(o))} ${s}`,exitCode:0};let l=[],c=(u,d)=>{let m=0;for(let p of e.vfs.list(u)){let g=`${u}/${p}`,S=`${d}/${p}`,v=e.vfs.stat(g);v.type==="directory"?m+=c(g,S):(m+=v.size,i||l.push(`${a(v.size)} ${S}`))}return l.push(`${a(m)} ${d}`),m};return c(o,s),{stdout:l.join(`
62
+ `),exitCode:0}}};function Hi(e){return e.replace(/\\n/g,`
63
+ `).replace(/\\t/g," ").replace(/\\r/g,"\r").replace(/\\\\/g,"\\").replace(/\\a/g,"\x07").replace(/\\b/g,"\b").replace(/\\f/g,"\f").replace(/\\v/g,"\v").replace(/\\0(\d{1,3})/g,(t,n)=>String.fromCharCode(parseInt(n,8)))}var or={name:"echo",description:"Display text",category:"shell",params:["[-n] [-e] [text...]"],run:({args:e,stdin:t,env:n})=>{let{flags:r,positionals:i}=de(e,{flags:["-n","-e","-E"]}),s=r.has("-n"),o=r.has("-e"),a=i.length>0?i.join(" "):t??"",l=Et(a,n?.vars??{},n?.lastExitCode??0),c=o?Hi(l):l;return{stdout:s?c:`${c}
64
+ `,exitCode:0}}};var ar={name:"env",description:"Print environment variables",category:"shell",params:[],run:({env:e,authUser:t})=>{let n={...e.vars,USER:t,HOME:`/home/${t}`};return{stdout:Object.entries(n).map(([r,i])=>`${r}=${i}`).join(`
65
+ `),exitCode:0}}};var lr={name:"exit",aliases:["bye"],description:"Exit the shell session",category:"shell",params:["[code]"],run:({args:e})=>({closeSession:!0,exitCode:parseInt(e[0]??"0",10)||0})};var cr={name:"export",description:"Set shell environment variable",category:"shell",params:["[VAR=value]"],run:({args:e,env:t})=>{if(e.length===0||e.length===1&&e[0]==="-p"){let n=Object.entries(t.vars).filter(([r])=>r&&/^[A-Za-z_][A-Za-z0-9_]*$/.test(r)).map(([r,i])=>`declare -x ${r}="${i}"`).join(`
66
66
  `);return{stdout:n?`${n}
67
- `:"",exitCode:0}}for(let n of e.filter(r=>r!=="-p"))if(n.includes("=")){let r=n.indexOf("="),i=n.slice(0,r),s=n.slice(r+1);t.vars[i]=s}return{exitCode:0}}};var lr={name:"find",description:"Search for files",category:"files",params:["[path] [-name <pattern>] [-type f|d]"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=ue(r,["-name"]),s=ue(r,["-type"]),a=r.filter(m=>!m.startsWith("-")&&m!==i&&m!==s)[0]??".",l=M(n,a);try{if(V(e,l,"find"),!t.vfs.exists(l))return{stderr:`find: ${a}: No such file or directory`,exitCode:1}}catch(m){return{stderr:`find: ${m instanceof Error?m.message:String(m)}`,exitCode:1}}let c=i?new RegExp(`^${i.replace(/\./g,"\\.").replace(/\*/g,".*").replace(/\?/g,".")}$`):null,u=[],d=(m,p)=>{let g=t.vfs.stat(m),S=!s||s==="f"&&g.type==="file"||s==="d"&&g.type==="directory",v=!c||c.test(m.split("/").pop()??"");if(S&&v&&u.push(p),g.type==="directory")for(let E of t.vfs.list(m)){let T=`${m}/${E}`,_=`${p}/${E}`;d(T,_)}};return d(l,a),{stdout:u.join(`
68
- `),exitCode:0}}};function Ce(){try{return navigator?.deviceMemory?navigator.deviceMemory*1024*1024:1024*1024*1024}catch{return 1024*1024*1024}}function Ue(){return Math.floor(Ce()*.5)}function kt(){return[{model:"web-cpu",speed:1e3}]}function tn(){return"web"}function Mt(){return"x86_64"}function nn(){return"web-release"}function cr(){return Math.floor(performance.now()/1e3)}var ur={name:"free",description:"Display amount of free and used memory",category:"system",params:["[-h] [-m] [-g]"],run:({args:e})=>{let t=C(e,["-h","--human"]),n=C(e,["-m"]),r=C(e,["-g"]),i=Ce(),s=Ue(),o=i-s,a=Math.floor(i*.02),l=Math.floor(i*.05),c=Math.floor(s*.95),u=Math.floor(i*.5),d=S=>t?S>=1024*1024*1024?`${(S/(1024*1024*1024)).toFixed(1)}G`:S>=1024*1024?`${(S/(1024*1024)).toFixed(1)}M`:`${(S/1024).toFixed(1)}K`:String(Math.floor(r?S/(1024*1024*1024):n?S/(1024*1024):S/1024)),m=" total used free shared buff/cache available",p=`Mem: ${d(i).padStart(12)} ${d(o).padStart(11)} ${d(s).padStart(11)} ${d(a).padStart(11)} ${d(l).padStart(11)} ${d(c).padStart(11)}`,g=`Swap: ${d(u).padStart(12)} ${d(0).padStart(11)} ${d(u).padStart(11)}`;return{stdout:[m,p,g].join(`
69
- `),exitCode:0}}};var dr={name:"grep",description:"Search text patterns",category:"text",params:["[-i] [-v] [-n] [-r] <pattern> [file...]"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let{flags:s,positionals:o}=de(r,{flags:["-i","-v","-n","-r","-c","-l","-L","-q","--quiet","--silent"]}),a=s.has("-i"),l=s.has("-v"),c=s.has("-n"),u=s.has("-r"),d=s.has("-c"),m=s.has("-l"),p=s.has("-q")||s.has("--quiet")||s.has("--silent"),g=o[0],S=o.slice(1);if(!g)return{stderr:"grep: no pattern specified",exitCode:1};let v;try{let P=a?"mi":"m";v=new RegExp(g,P)}catch{return{stderr:`grep: invalid regex: ${g}`,exitCode:1}}let E=(P,N="")=>{let I=P.split(`
70
- `),x=[];for(let A=0;A<I.length;A++){let F=I[A]??"",k=v.test(F);if(l?!k:k){let D=c?`${A+1}:`:"";x.push(`${N}${D}${F}`)}}return x},T=P=>{if(!t.vfs.exists(P))return[];if(t.vfs.stat(P).type==="file")return[P];if(!u)return[];let I=[],x=A=>{for(let F of t.vfs.list(A)){let k=`${A}/${F}`;t.vfs.stat(k).type==="file"?I.push(k):x(k)}};return x(P),I},_=[];if(S.length===0){if(!i)return{stdout:"",exitCode:1};let P=E(i);if(d)return{stdout:`${P.length}
71
- `,exitCode:P.length>0?0:1};if(p)return{exitCode:P.length>0?0:1};_.push(...P)}else{let P=S.flatMap(N=>{let I=M(n,N);return T(I).map(x=>({file:N,path:x}))});for(let{file:N,path:I}of P)try{V(e,I,"grep");let x=t.vfs.readFile(I),A=P.length>1?`${N}:`:"",F=E(x,A);d?_.push(P.length>1?`${N}:${F.length}`:String(F.length)):m?F.length>0&&_.push(N):_.push(...F)}catch{return{stderr:`grep: ${N}: No such file or directory`,exitCode:1}}}return{stdout:_.length>0?`${_.join(`
67
+ `:"",exitCode:0}}for(let n of e.filter(r=>r!=="-p"))if(n.includes("=")){let r=n.indexOf("="),i=n.slice(0,r),s=n.slice(r+1);t.vars[i]=s}return{exitCode:0}}};var ur={name:"find",description:"Search for files",category:"files",params:["[path] [-name <pattern>] [-type f|d]"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=ue(r,["-name"]),s=ue(r,["-type"]),a=r.filter(m=>!m.startsWith("-")&&m!==i&&m!==s)[0]??".",l=M(n,a);try{if(V(e,l,"find"),!t.vfs.exists(l))return{stderr:`find: ${a}: No such file or directory`,exitCode:1}}catch(m){return{stderr:`find: ${m instanceof Error?m.message:String(m)}`,exitCode:1}}let c=i?new RegExp(`^${i.replace(/\./g,"\\.").replace(/\*/g,".*").replace(/\?/g,".")}$`):null,u=[],d=(m,p)=>{let g=t.vfs.stat(m),S=!s||s==="f"&&g.type==="file"||s==="d"&&g.type==="directory",v=!c||c.test(m.split("/").pop()??"");if(S&&v&&u.push(p),g.type==="directory")for(let E of t.vfs.list(m)){let T=`${m}/${E}`,_=`${p}/${E}`;d(T,_)}};return d(l,a),{stdout:u.join(`
68
+ `),exitCode:0}}};function Ce(){try{return navigator?.deviceMemory?navigator.deviceMemory*1024*1024:1024*1024*1024}catch{return 1024*1024*1024}}function Be(){return Math.floor(Ce()*.5)}function It(){return[{model:"web-cpu",speed:1e3}]}function rn(){return"web"}function Nt(){return"x86_64"}function sn(){return"web-release"}function dr(){return Math.floor(performance.now()/1e3)}var mr={name:"free",description:"Display amount of free and used memory",category:"system",params:["[-h] [-m] [-g]"],run:({args:e})=>{let t=C(e,["-h","--human"]),n=C(e,["-m"]),r=C(e,["-g"]),i=Ce(),s=Be(),o=i-s,a=Math.floor(i*.02),l=Math.floor(i*.05),c=Math.floor(s*.95),u=Math.floor(i*.5),d=S=>t?S>=1024*1024*1024?`${(S/(1024*1024*1024)).toFixed(1)}G`:S>=1024*1024?`${(S/(1024*1024)).toFixed(1)}M`:`${(S/1024).toFixed(1)}K`:String(Math.floor(r?S/(1024*1024*1024):n?S/(1024*1024):S/1024)),m=" total used free shared buff/cache available",p=`Mem: ${d(i).padStart(12)} ${d(o).padStart(11)} ${d(s).padStart(11)} ${d(a).padStart(11)} ${d(l).padStart(11)} ${d(c).padStart(11)}`,g=`Swap: ${d(u).padStart(12)} ${d(0).padStart(11)} ${d(u).padStart(11)}`;return{stdout:[m,p,g].join(`
69
+ `),exitCode:0}}};var pr={name:"grep",description:"Search text patterns",category:"text",params:["[-i] [-v] [-n] [-r] <pattern> [file...]"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let{flags:s,positionals:o}=de(r,{flags:["-i","-v","-n","-r","-c","-l","-L","-q","--quiet","--silent"]}),a=s.has("-i"),l=s.has("-v"),c=s.has("-n"),u=s.has("-r"),d=s.has("-c"),m=s.has("-l"),p=s.has("-q")||s.has("--quiet")||s.has("--silent"),g=o[0],S=o.slice(1);if(!g)return{stderr:"grep: no pattern specified",exitCode:1};let v;try{let P=a?"mi":"m";v=new RegExp(g,P)}catch{return{stderr:`grep: invalid regex: ${g}`,exitCode:1}}let E=(P,N="")=>{let I=P.split(`
70
+ `),x=[];for(let A=0;A<I.length;A++){let D=I[A]??"",k=v.test(D);if(l?!k:k){let F=c?`${A+1}:`:"";x.push(`${N}${F}${D}`)}}return x},T=P=>{if(!t.vfs.exists(P))return[];if(t.vfs.stat(P).type==="file")return[P];if(!u)return[];let I=[],x=A=>{for(let D of t.vfs.list(A)){let k=`${A}/${D}`;t.vfs.stat(k).type==="file"?I.push(k):x(k)}};return x(P),I},_=[];if(S.length===0){if(!i)return{stdout:"",exitCode:1};let P=E(i);if(d)return{stdout:`${P.length}
71
+ `,exitCode:P.length>0?0:1};if(p)return{exitCode:P.length>0?0:1};_.push(...P)}else{let P=S.flatMap(N=>{let I=M(n,N);return T(I).map(x=>({file:N,path:x}))});for(let{file:N,path:I}of P)try{V(e,I,"grep");let x=t.vfs.readFile(I),A=P.length>1?`${N}:`:"",D=E(x,A);d?_.push(P.length>1?`${N}:${D.length}`:String(D.length)):m?D.length>0&&_.push(N):_.push(...D)}catch{return{stderr:`grep: ${N}: No such file or directory`,exitCode:1}}}return{stdout:_.length>0?`${_.join(`
72
72
  `)}
73
- `:"",exitCode:_.length>0?0:1}}};var mr={name:"groups",description:"Print group memberships",category:"system",params:["[user]"],run:({authUser:e,shell:t,args:n})=>{let r=n[0]??e;return{stdout:t.users.isSudoer(r)?`${r} sudo root`:r,exitCode:0}}};var pr={name:"gzip",description:"Compress files",category:"archive",params:["[-k] [-d] <file>"],run:({shell:e,cwd:t,args:n})=>{if(!e.packageManager.isInstalled("gzip"))return{stderr:`bash: gzip: command not found
73
+ `:"",exitCode:_.length>0?0:1}}};var fr={name:"groups",description:"Print group memberships",category:"system",params:["[user]"],run:({authUser:e,shell:t,args:n})=>{let r=n[0]??e;return{stdout:t.users.isSudoer(r)?`${r} sudo root`:r,exitCode:0}}};var hr={name:"gzip",description:"Compress files",category:"archive",params:["[-k] [-d] <file>"],run:({shell:e,cwd:t,args:n})=>{if(!e.packageManager.isInstalled("gzip"))return{stderr:`bash: gzip: command not found
74
74
  Hint: install it with: apt install gzip
75
75
  `,exitCode:127};let r=n.includes("-k")||n.includes("--keep"),i=n.includes("-d"),s=n.find(c=>!c.startsWith("-"));if(!s)return{stderr:`gzip: no file specified
76
76
  `,exitCode:1};let o=M(t,s);if(i){if(!s.endsWith(".gz"))return{stderr:`gzip: ${s}: unknown suffix -- ignored
77
77
  `,exitCode:1};if(!e.vfs.exists(o))return{stderr:`gzip: ${s}: No such file or directory
78
78
  `,exitCode:1};let c=e.vfs.readFile(o),u=o.slice(0,-3);return e.vfs.writeFile(u,c),r||e.vfs.remove(o),{exitCode:0}}if(!e.vfs.exists(o))return{stderr:`gzip: ${s}: No such file or directory
79
79
  `,exitCode:1};if(s.endsWith(".gz"))return{stderr:`gzip: ${s}: already has .gz suffix -- unchanged
80
- `,exitCode:1};let a=e.vfs.readFileRaw(o),l=`${o}.gz`;return e.vfs.writeFile(l,a,{compress:!0}),r||e.vfs.remove(o),{exitCode:0}}},fr={name:"gunzip",description:"Decompress files",category:"archive",aliases:["zcat"],params:["[-k] <file>"],run:({shell:e,cwd:t,args:n})=>{let r=n.includes("-k")||n.includes("--keep"),i=n.find(l=>!l.startsWith("-"));if(!i)return{stderr:`gunzip: no file specified
80
+ `,exitCode:1};let a=e.vfs.readFileRaw(o),l=`${o}.gz`;return e.vfs.writeFile(l,a,{compress:!0}),r||e.vfs.remove(o),{exitCode:0}}},gr={name:"gunzip",description:"Decompress files",category:"archive",aliases:["zcat"],params:["[-k] <file>"],run:({shell:e,cwd:t,args:n})=>{let r=n.includes("-k")||n.includes("--keep"),i=n.find(l=>!l.startsWith("-"));if(!i)return{stderr:`gunzip: no file specified
81
81
  `,exitCode:1};let s=M(t,i);if(!e.vfs.exists(s))return{stderr:`gunzip: ${i}: No such file or directory
82
82
  `,exitCode:1};if(!i.endsWith(".gz"))return{stderr:`gunzip: ${i}: unknown suffix -- ignored
83
- `,exitCode:1};let o=e.vfs.readFile(s),a=s.slice(0,-3);return e.vfs.writeFile(a,o),r||e.vfs.remove(s),{exitCode:0}}};var hr={name:"head",description:"Output first lines",category:"text",params:["[-n <lines>] [file...]"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let s=ue(r,["-n"]),o=r.find(d=>/^-\d+$/.test(d)),a=typeof s=="string"?parseInt(s,10):o?parseInt(o.slice(1),10):10,l=r.filter(d=>!d.startsWith("-")&&d!==s&&d!==String(a)),c=d=>{let m=d.split(`
83
+ `,exitCode:1};let o=e.vfs.readFile(s),a=s.slice(0,-3);return e.vfs.writeFile(a,o),r||e.vfs.remove(s),{exitCode:0}}};var yr={name:"head",description:"Output first lines",category:"text",params:["[-n <lines>] [file...]"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let s=ue(r,["-n"]),o=r.find(d=>/^-\d+$/.test(d)),a=typeof s=="string"?parseInt(s,10):o?parseInt(o.slice(1),10):10,l=r.filter(d=>!d.startsWith("-")&&d!==s&&d!==String(a)),c=d=>{let m=d.split(`
84
84
  `),p=m.slice(0,a);return p.join(`
85
85
  `)+(d.endsWith(`
86
86
  `)&&p.length===m.slice(0,a).length?`
87
87
  `:"")};if(l.length===0)return{stdout:c(i??""),exitCode:0};let u=[];for(let d of l){let m=M(n,d);try{V(e,m,"head"),u.push(c(t.vfs.readFile(m)))}catch{return{stderr:`head: ${d}: No such file or directory`,exitCode:1}}}return{stdout:u.join(`
88
- `),exitCode:0}}};var gr=["navigation","files","text","archive","system","package","network","shell","users","misc"],Sr={navigation:"Navigation",files:"Files & Filesystem",text:"Text Processing",archive:"Archive & Compression",system:"System",package:"Package Management",network:"Network",shell:"Shell & Scripting",users:"Users & Permissions",misc:"Miscellaneous"},br="\x1B[1m",Pe="\x1B[0m",Bi="\x1B[36m",zi="\x1B[33m",ot="\x1B[2m",Hi="\x1B[32m";function yr(e,t){return e.length>=t?e:e+" ".repeat(t-e.length)}function ji(e){let t=e.aliases?.length?` ${ot}(${e.aliases.join(", ")})${Pe}`:"";return` ${Bi}${yr(e.name,16)}${Pe}${t}${yr("",(e.aliases?.length,0))} ${e.description??""}`}function Wi(e){let t={};for(let s of e){let o=s.category??"misc";t[o]||(t[o]=[]),t[o].push(s)}let n=[`${br}Available commands${Pe}`,`${ot}Type 'help <command>' for detailed usage.${Pe}`,""],r=[...gr.filter(s=>t[s]),...Object.keys(t).filter(s=>!gr.includes(s)).sort()];for(let s of r){let o=t[s];if(!o?.length)continue;n.push(`${zi}${Sr[s]??s}${Pe}`);let a=[...o].sort((l,c)=>l.name.localeCompare(c.name));for(let l of a)n.push(ji(l));n.push("")}let i=e.length;return n.push(`${ot}${i} commands available.${Pe}`),n.join(`
89
- `)}function qi(e){let t=[];if(t.push(`${br}${e.name}${Pe} \u2014 ${e.description??"no description"}`),e.aliases?.length&&t.push(`${ot}Aliases: ${e.aliases.join(", ")}${Pe}`),t.push(""),t.push(`${Hi}Usage:${Pe}`),e.params.length)for(let r of e.params)t.push(` ${e.name} ${r}`);else t.push(` ${e.name}`);let n=Sr[e.category??"misc"]??e.category??"misc";return t.push(""),t.push(`${ot}Category: ${n}${Pe}`),t.join(`
90
- `)}function xr(e){return{name:"help",description:"List all commands, or show usage for a specific command",category:"shell",params:["[command]"],run:({args:t})=>{let n=Xt();if(t[0]){let r=t[0].toLowerCase(),i=n.find(s=>s.name===r||s.aliases?.includes(r));return i?{stdout:qi(i),exitCode:0}:{stderr:`help: no help entry for '${t[0]}'`,exitCode:1}}return{stdout:Wi(n),exitCode:0}}}}var wr={name:"history",description:"Display command history",category:"shell",params:["[n]"],run:({args:e,shell:t,authUser:n})=>{let r=`/home/${n}/.bash_history`;if(!t.vfs.exists(r))return{stdout:"",exitCode:0};let s=t.vfs.readFile(r).split(`
88
+ `),exitCode:0}}};var Sr=["navigation","files","text","archive","system","package","network","shell","users","misc"],xr={navigation:"Navigation",files:"Files & Filesystem",text:"Text Processing",archive:"Archive & Compression",system:"System",package:"Package Management",network:"Network",shell:"Shell & Scripting",users:"Users & Permissions",misc:"Miscellaneous"},wr="\x1B[1m",Pe="\x1B[0m",ji="\x1B[36m",Wi="\x1B[33m",at="\x1B[2m",qi="\x1B[32m";function br(e,t){return e.length>=t?e:e+" ".repeat(t-e.length)}function Ki(e){let t=e.aliases?.length?` ${at}(${e.aliases.join(", ")})${Pe}`:"";return` ${ji}${br(e.name,16)}${Pe}${t}${br("",(e.aliases?.length,0))} ${e.description??""}`}function Gi(e){let t={};for(let s of e){let o=s.category??"misc";t[o]||(t[o]=[]),t[o].push(s)}let n=[`${wr}Available commands${Pe}`,`${at}Type 'help <command>' for detailed usage.${Pe}`,""],r=[...Sr.filter(s=>t[s]),...Object.keys(t).filter(s=>!Sr.includes(s)).sort()];for(let s of r){let o=t[s];if(!o?.length)continue;n.push(`${Wi}${xr[s]??s}${Pe}`);let a=[...o].sort((l,c)=>l.name.localeCompare(c.name));for(let l of a)n.push(Ki(l));n.push("")}let i=e.length;return n.push(`${at}${i} commands available.${Pe}`),n.join(`
89
+ `)}function Yi(e){let t=[];if(t.push(`${wr}${e.name}${Pe} \u2014 ${e.description??"no description"}`),e.aliases?.length&&t.push(`${at}Aliases: ${e.aliases.join(", ")}${Pe}`),t.push(""),t.push(`${qi}Usage:${Pe}`),e.params.length)for(let r of e.params)t.push(` ${e.name} ${r}`);else t.push(` ${e.name}`);let n=xr[e.category??"misc"]??e.category??"misc";return t.push(""),t.push(`${at}Category: ${n}${Pe}`),t.join(`
90
+ `)}function vr(e){return{name:"help",description:"List all commands, or show usage for a specific command",category:"shell",params:["[command]"],run:({args:t})=>{let n=tn();if(t[0]){let r=t[0].toLowerCase(),i=n.find(s=>s.name===r||s.aliases?.includes(r));return i?{stdout:Yi(i),exitCode:0}:{stderr:`help: no help entry for '${t[0]}'`,exitCode:1}}return{stdout:Gi(n),exitCode:0}}}}var Cr={name:"history",description:"Display command history",category:"shell",params:["[n]"],run:({args:e,shell:t,authUser:n})=>{let r=`/home/${n}/.bash_history`;if(!t.vfs.exists(r))return{stdout:"",exitCode:0};let s=t.vfs.readFile(r).split(`
91
91
  `).filter(Boolean),o=e[0],a=o?parseInt(o,10):null,l=a&&!Number.isNaN(a)?s.slice(-a):s,c=s.length-l.length+1;return{stdout:l.map((d,m)=>`${String(c+m).padStart(5)} ${d}`).join(`
92
- `),exitCode:0}}};var vr={name:"hostname",description:"Print hostname",category:"system",params:[],run:({hostname:e})=>({stdout:e,exitCode:0})};var Cr={name:"htop",description:"System monitor",category:"system",params:[],run:({mode:e})=>e==="exec"?{stderr:"htop: interactive terminal required",exitCode:1}:{openHtop:!0,exitCode:0}};var Pr={name:"id",description:"Print user identity",category:"system",params:["[user]"],run:({authUser:e,shell:t,args:n})=>{let r=n[0]??e,i=r==="root"?0:1e3,s=i,a=t.users.isSudoer(r)?`${s}(${r}),0(root)`:`${s}(${r})`;return{stdout:`uid=${i}(${r}) gid=${s}(${r}) groups=${a}`,exitCode:0}}};var Er={name:"kill",description:"Send signal to process",category:"system",params:["[-9] <pid>"],run:({args:e})=>e.find(n=>!n.startsWith("-"))?{stdout:"",exitCode:0}:{stderr:"kill: no pid specified",exitCode:1}};var $r={name:"ln",description:"Create links",category:"files",params:["[-s] <target> <link_name>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=C(r,["-s","--symbolic"]),s=r.filter(u=>!u.startsWith("-")),[o,a]=s;if(!o||!a)return{stderr:"ln: missing operand",exitCode:1};let l=M(n,a),c=i?o:M(n,o);try{if(V(e,l,"ln"),i)t.vfs.symlink(c,l);else{let u=M(n,o);if(V(e,u,"ln"),!t.vfs.exists(u))return{stderr:`ln: ${o}: No such file or directory`,exitCode:1};let d=t.vfs.readFile(u);t.writeFileAsUser(e,l,d)}return{exitCode:0}}catch(u){return{stderr:`ln: ${u instanceof Error?u.message:String(u)}`,exitCode:1}}}},kr={name:"readlink",description:"Print resolved path of symbolic link",category:"files",params:["[-f] <path>"],run:({shell:e,cwd:t,args:n})=>{let r=n.includes("-f")||n.includes("-e"),i=n.find(a=>!a.startsWith("-"));if(!i)return{stderr:`readlink: missing operand
92
+ `),exitCode:0}}};var Pr={name:"hostname",description:"Print hostname",category:"system",params:[],run:({hostname:e})=>({stdout:e,exitCode:0})};var Er={name:"htop",description:"System monitor",category:"system",params:[],run:({mode:e})=>e==="exec"?{stderr:"htop: interactive terminal required",exitCode:1}:{openHtop:!0,exitCode:0}};var $r={name:"id",description:"Print user identity",category:"system",params:["[user]"],run:({authUser:e,shell:t,args:n})=>{let r=n[0]??e,i=r==="root"?0:1e3,s=i,a=t.users.isSudoer(r)?`${s}(${r}),0(root)`:`${s}(${r})`;return{stdout:`uid=${i}(${r}) gid=${s}(${r}) groups=${a}`,exitCode:0}}};var kr={name:"kill",description:"Send signal to process",category:"system",params:["[-9] <pid>"],run:({args:e})=>e.find(n=>!n.startsWith("-"))?{stdout:"",exitCode:0}:{stderr:"kill: no pid specified",exitCode:1}};var Mr={name:"ln",description:"Create links",category:"files",params:["[-s] <target> <link_name>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=C(r,["-s","--symbolic"]),s=r.filter(u=>!u.startsWith("-")),[o,a]=s;if(!o||!a)return{stderr:"ln: missing operand",exitCode:1};let l=M(n,a),c=i?o:M(n,o);try{if(V(e,l,"ln"),i)t.vfs.symlink(c,l);else{let u=M(n,o);if(V(e,u,"ln"),!t.vfs.exists(u))return{stderr:`ln: ${o}: No such file or directory`,exitCode:1};let d=t.vfs.readFile(u);t.writeFileAsUser(e,l,d)}return{exitCode:0}}catch(u){return{stderr:`ln: ${u instanceof Error?u.message:String(u)}`,exitCode:1}}}},Ir={name:"readlink",description:"Print resolved path of symbolic link",category:"files",params:["[-f] <path>"],run:({shell:e,cwd:t,args:n})=>{let r=n.includes("-f")||n.includes("-e"),i=n.find(a=>!a.startsWith("-"));if(!i)return{stderr:`readlink: missing operand
93
93
  `,exitCode:1};let s=M(t,i);return e.vfs.exists(s)?e.vfs.isSymlink(s)?{stdout:`${e.vfs.resolveSymlink(s)}
94
94
  `,exitCode:0}:{stderr:`readlink: ${i}: not a symbolic link
95
95
  `,exitCode:1}:{stderr:`readlink: ${i}: No such file or directory
96
- `,exitCode:1}}};var Mr={name:"seq",description:"Print a sequence of numbers",category:"text",params:["[FIRST [INCREMENT]] LAST"],run:({args:e})=>{let t=e.filter(d=>!d.startsWith("-")||/^-[\d.]/.test(d)).map(Number),n=(()=>{let d=e.indexOf("-s");return d!==-1?e[d+1]??`
96
+ `,exitCode:1}}};var Nr={name:"seq",description:"Print a sequence of numbers",category:"text",params:["[FIRST [INCREMENT]] LAST"],run:({args:e})=>{let t=e.filter(d=>!d.startsWith("-")||/^-[\d.]/.test(d)).map(Number),n=(()=>{let d=e.indexOf("-s");return d!==-1?e[d+1]??`
97
97
  `:`
98
98
  `})(),r=(()=>{let d=e.indexOf("-f");return d!==-1?e[d+1]??"%g":null})(),i=e.includes("-w"),s=1,o=1,a;if(t.length===1?a=t[0]:t.length===2?(s=t[0],a=t[1]):(s=t[0],o=t[1],a=t[2]),o===0)return{stderr:`seq: zero increment
99
99
  `,exitCode:1};if(o>0&&s>a||o<0&&s<a)return{stdout:"",exitCode:0};let l=[],c=1e5,u=0;for(let d=s;(o>0?d<=a:d>=a)&&!(++u>c);d=Math.round((d+o)*1e10)/1e10){let m;if(r?m=r.replace("%g",String(d)).replace("%f",d.toFixed(6)).replace("%d",String(Math.trunc(d))):m=Number.isInteger(d)?String(d):d.toPrecision(12).replace(/\.?0+$/,""),i){let p=String(Math.trunc(a)).length;m=m.padStart(p,"0")}l.push(m)}return{stdout:`${l.join(n)}
100
- `,exitCode:0}}};var Ir={name:"stat",description:"Display file status",category:"files",params:["[-c <format>] <file>"],run:({shell:e,cwd:t,args:n})=>{let r=n.findIndex(E=>E==="-c"||E==="--format"),i=r!==-1?n[r+1]:void 0,s=n.find(E=>!E.startsWith("-")&&E!==i);if(!s)return{stderr:`stat: missing operand
100
+ `,exitCode:0}}};var Ar={name:"stat",description:"Display file status",category:"files",params:["[-c <format>] <file>"],run:({shell:e,cwd:t,args:n})=>{let r=n.findIndex(E=>E==="-c"||E==="--format"),i=r!==-1?n[r+1]:void 0,s=n.find(E=>!E.startsWith("-")&&E!==i);if(!s)return{stderr:`stat: missing operand
101
101
  `,exitCode:1};let o=M(t,s);if(!e.vfs.exists(o))return{stderr:`stat: cannot stat '${s}': No such file or directory
102
102
  `,exitCode:1};let a=e.vfs.stat(o),l=a.type==="directory",c=e.vfs.isSymlink(o),u=e.vfs.isSymlink(o),d=E=>{let T=[256,128,64,32,16,8,4,2,1],_=["r","w","x","r","w","x","r","w","x"];return(l?"d":u?"l":"-")+T.map((P,N)=>E&P?_[N]:"-").join("")},m=a.mode.toString(8).padStart(4,"0"),p=d(a.mode),g="size"in a?a.size:0,S=E=>E.toISOString().replace("T"," ").replace(/\.\d+Z$/," +0000");return i?{stdout:`${i.replace("%n",s).replace("%s",String(g)).replace("%a",m.slice(1)).replace("%A",p).replace("%F",u?"symbolic link":l?"directory":"regular file").replace("%y",S(a.updatedAt)).replace("%z",S(a.updatedAt))}
103
103
  `,exitCode:0}:{stdout:`${[` File: ${s}${u?` -> ${e.vfs.resolveSymlink(o)}`:""}`,` Size: ${g}${" ".repeat(3)}${u?"symbolic link":l?"directory":"regular file"}`,`Access: (${m}/${p}) Uid: ( 0/ root) Gid: ( 0/ root)`,`Modify: ${S(a.updatedAt)}`,`Change: ${S(a.updatedAt)}`].join(`
104
104
  `)}
105
- `,exitCode:0}}};var Ki="\x1B[0m",Gi="\x1B[1;34m",Yi="\x1B[1;36m",Ji="\x1B[1;32m",Zi="",Qi="\x1B[30;42m",Xi="\x1B[37;44m",eo="\x1B[34;42m";function Ke(e,t){return t?`${t}${e}${Ki}`:e}function on(e,t,n){if(n)return Yi;if(t==="directory"){let r=!!(e&512),i=!!(e&2);return r&&i?Qi:r?Xi:i?eo:Gi}return e&73?Ji:Zi}function Nr(e,t,n){let r;n?r="l":t==="directory"?r="d":r="-";let i=c=>e&c?"r":"-",s=c=>e&c?"w":"-",o=(()=>{let c=!!(e&64);return e&2048?c?"s":"S":c?"x":"-"})(),a=(()=>{let c=!!(e&8);return e&1024?c?"s":"S":c?"x":"-"})(),l=(()=>{let c=!!(e&1);return t==="directory"&&e&512?c?"t":"T":c?"x":"-"})();return`${r}${i(256)}${s(128)}${o}${i(32)}${s(16)}${a}${i(4)}${s(2)}${l}`}var to=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function sn(e){let t=new Date,n=4320*3600*1e3,r=Math.abs(t.getTime()-e.getTime())<n,i=String(e.getDate()).padStart(2," "),s=to[e.getMonth()]??"";if(r){let o=String(e.getHours()).padStart(2,"0"),a=String(e.getMinutes()).padStart(2,"0");return`${i} ${s.padEnd(3)} ${o}:${a}`}return`${i} ${s.padEnd(3)} ${e.getFullYear()}`}function It(e,t){try{return e.readFile(t)}catch{return"?"}}function no(e,t,n){let r=t==="/"?"":t;return n.map(i=>{let s=`${r}/${i}`,o=e.isSymlink(s),a;try{a=e.stat(s)}catch{return i}let l=on(a.mode,a.type,o);return Ke(i,l)}).join(" ")}function ro(e,t,n){let r=t==="/"?"":t,i=n.map(d=>{let m=`${r}/${d}`,p=e.isSymlink(m),g;try{g=e.stat(m)}catch{return{perms:"----------",nlink:"1",size:"0",date:sn(new Date),label:d}}let S=p?41471:g.mode,v=Nr(S,g.type,p),E=g.type==="directory"?String((g.childrenCount??0)+2):"1",T=p?It(e,m).length:g.type==="file"?g.size??0:(g.childrenCount??0)*4096,_=String(T),P=sn(g.updatedAt),N=on(S,g.type,p),I=p?`${Ke(d,N)} -> ${It(e,m)}`:Ke(d,N);return{perms:v,nlink:E,size:_,date:P,label:I}}),s=Math.max(...i.map(d=>d.nlink.length)),o=Math.max(...i.map(d=>d.size.length)),a="root",l="root",c=n.length*8,u=i.map(d=>`${d.perms} ${d.nlink.padStart(s)} ${a} ${l} ${d.size.padStart(o)} ${d.date} ${d.label}`);return`total ${c}
105
+ `,exitCode:0}}};var Ji="\x1B[0m",Zi="\x1B[1;34m",Xi="\x1B[1;36m",Qi="\x1B[1;32m",eo="",to="\x1B[30;42m",no="\x1B[37;44m",ro="\x1B[34;42m";function Ge(e,t){return t?`${t}${e}${Ji}`:e}function ln(e,t,n){if(n)return Xi;if(t==="directory"){let r=!!(e&512),i=!!(e&2);return r&&i?to:r?no:i?ro:Zi}return e&73?Qi:eo}function _r(e,t,n){let r;n?r="l":t==="directory"?r="d":r="-";let i=c=>e&c?"r":"-",s=c=>e&c?"w":"-",o=(()=>{let c=!!(e&64);return e&2048?c?"s":"S":c?"x":"-"})(),a=(()=>{let c=!!(e&8);return e&1024?c?"s":"S":c?"x":"-"})(),l=(()=>{let c=!!(e&1);return t==="directory"&&e&512?c?"t":"T":c?"x":"-"})();return`${r}${i(256)}${s(128)}${o}${i(32)}${s(16)}${a}${i(4)}${s(2)}${l}`}var so=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function an(e){let t=new Date,n=4320*3600*1e3,r=Math.abs(t.getTime()-e.getTime())<n,i=String(e.getDate()).padStart(2," "),s=so[e.getMonth()]??"";if(r){let o=String(e.getHours()).padStart(2,"0"),a=String(e.getMinutes()).padStart(2,"0");return`${i} ${s.padEnd(3)} ${o}:${a}`}return`${i} ${s.padEnd(3)} ${e.getFullYear()}`}function At(e,t){try{return e.readFile(t)}catch{return"?"}}function io(e,t,n){let r=t==="/"?"":t;return n.map(i=>{let s=`${r}/${i}`,o=e.isSymlink(s),a;try{a=e.stat(s)}catch{return i}let l=ln(a.mode,a.type,o);return Ge(i,l)}).join(" ")}function oo(e,t,n){let r=t==="/"?"":t,i=n.map(d=>{let m=`${r}/${d}`,p=e.isSymlink(m),g;try{g=e.stat(m)}catch{return{perms:"----------",nlink:"1",size:"0",date:an(new Date),label:d}}let S=p?41471:g.mode,v=_r(S,g.type,p),E=g.type==="directory"?String((g.childrenCount??0)+2):"1",T=p?At(e,m).length:g.type==="file"?g.size??0:(g.childrenCount??0)*4096,_=String(T),P=an(g.updatedAt),N=ln(S,g.type,p),I=p?`${Ge(d,N)} -> ${At(e,m)}`:Ge(d,N);return{perms:v,nlink:E,size:_,date:P,label:I}}),s=Math.max(...i.map(d=>d.nlink.length)),o=Math.max(...i.map(d=>d.size.length)),a="root",l="root",c=n.length*8,u=i.map(d=>`${d.perms} ${d.nlink.padStart(s)} ${a} ${l} ${d.size.padStart(o)} ${d.date} ${d.label}`);return`total ${c}
106
106
  ${u.join(`
107
- `)}`}var Ar={name:"ls",description:"List directory contents",category:"navigation",params:["[-la] [path]"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=C(r,["-l","--long","-la","-al"]),s=C(r,["-a","--all","-la","-al"]),o=Me(r,0,{flags:["-l","--long","-a","--all","-la","-al"]}),a=M(n,o??n);if(V(e,a,"ls"),t.vfs.exists(a)){let u=t.vfs.stat(a),d=t.vfs.isSymlink(a);if(u.type==="file"||d){let m=a.split("/").pop()??a,p=on(d?41471:u.mode,u.type,d);if(i){let g=d?41471:u.mode,S=d?It(t.vfs,a).length:u.size??0,v=Nr(g,u.type,d),E=d?`${Ke(m,p)} -> ${It(t.vfs,a)}`:Ke(m,p);return{stdout:`${v} 1 root root ${S} ${sn(u.updatedAt)} ${E}
108
- `,exitCode:0}}return{stdout:`${Ke(m,p)}
109
- `,exitCode:0}}}let l=t.vfs.list(a).filter(u=>s||!u.startsWith("."));return{stdout:`${i?ro(t.vfs,a,l):no(t.vfs,a,l)}
110
- `,exitCode:0}}};var _r={name:"lsb_release",description:"Print distribution-specific information",category:"system",params:["[-a] [-i] [-d] [-r] [-c]"],run:({args:e,shell:t})=>{let n=t.properties?.os??"Fortune GNU/Linux x64",r="nyx",i="1.0";try{let d=t.vfs.readFile("/etc/os-release");for(let m of d.split(`
107
+ `)}`}var Or={name:"ls",description:"List directory contents",category:"navigation",params:["[-la] [path]"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=C(r,["-l","--long","-la","-al"]),s=C(r,["-a","--all","-la","-al"]),o=Me(r,0,{flags:["-l","--long","-a","--all","-la","-al"]}),a=M(n,o??n);if(V(e,a,"ls"),t.vfs.exists(a)){let u=t.vfs.stat(a),d=t.vfs.isSymlink(a);if(u.type==="file"||d){let m=a.split("/").pop()??a,p=ln(d?41471:u.mode,u.type,d);if(i){let g=d?41471:u.mode,S=d?At(t.vfs,a).length:u.size??0,v=_r(g,u.type,d),E=d?`${Ge(m,p)} -> ${At(t.vfs,a)}`:Ge(m,p);return{stdout:`${v} 1 root root ${S} ${an(u.updatedAt)} ${E}
108
+ `,exitCode:0}}return{stdout:`${Ge(m,p)}
109
+ `,exitCode:0}}}let l=t.vfs.list(a).filter(u=>s||!u.startsWith("."));return{stdout:`${i?oo(t.vfs,a,l):io(t.vfs,a,l)}
110
+ `,exitCode:0}}};var Tr={name:"lsb_release",description:"Print distribution-specific information",category:"system",params:["[-a] [-i] [-d] [-r] [-c]"],run:({args:e,shell:t})=>{let n=t.properties?.os??"Fortune GNU/Linux x64",r="nyx",i="1.0";try{let d=t.vfs.readFile("/etc/os-release");for(let m of d.split(`
111
111
  `))m.startsWith("PRETTY_NAME=")&&(n=m.slice(12).replace(/^"|"$/g,"").trim()),m.startsWith("VERSION_CODENAME=")&&(r=m.slice(17).trim()),m.startsWith("VERSION_ID=")&&(i=m.slice(11).replace(/^"|"$/g,"").trim())}catch{}let s=C(e,["-a","--all"]),o=C(e,["-i","--id"]),a=C(e,["-d","--description"]),l=C(e,["-r","--release"]),c=C(e,["-c","--codename"]);if(s||e.length===0)return{stdout:["Distributor ID: Fortune",`Description: ${n}`,`Release: ${i}`,`Codename: ${r}`].join(`
112
112
  `),exitCode:0};let u=[];return o&&u.push("Distributor ID: Fortune"),a&&u.push(`Description: ${n}`),l&&u.push(`Release: ${i}`),c&&u.push(`Codename: ${r}`),{stdout:u.join(`
113
- `),exitCode:0}}};var Or={adduser:`ADDUSER(8) User Commands ADDUSER(8)
113
+ `),exitCode:0}}};var Dr={adduser:`ADDUSER(8) User Commands ADDUSER(8)
114
114
 
115
115
  NAME
116
116
  adduser - add a user to the system
@@ -920,113 +920,113 @@ SYNOPSIS
920
920
  xargs [COMMAND [INITIAL-ARGS]]
921
921
 
922
922
  DESCRIPTION
923
- Read items from stdin and execute COMMAND with those items as arguments.`};var so={gunzip:"gzip"},Tr={name:"man",description:"Interface to the system reference manuals",category:"shell",params:["<command>"],run:async({args:e,shell:t})=>{let n=e[0];if(!n)return{stderr:"What manual page do you want?",exitCode:1};let r=`/usr/share/man/man1/${n}.1`;if(t.vfs.exists(r))return{stdout:t.vfs.readFile(r),exitCode:0};let i=n.toLowerCase(),s=so[i]??i,o=Or[s]??null;return o?{stdout:o,exitCode:0}:{stderr:`No manual entry for ${n}`,exitCode:16}}};var Fr={name:"mkdir",description:"Make directories",category:"files",params:["<dir>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{if(r.length===0)return{stderr:"mkdir: missing operand",exitCode:1};for(let i=0;i<r.length;i++){let s=Me(r,i);if(!s)return{stderr:"mkdir: missing operand",exitCode:1};let o=M(n,s);V(e,o,"mkdir"),t.vfs.mkdir(o)}return{exitCode:0}}};var Dr={name:"mv",description:"Move or rename files",category:"files",params:["<source> <dest>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=r.filter(c=>!c.startsWith("-")),[s,o]=i;if(!s||!o)return{stderr:"mv: missing operand",exitCode:1};let a=M(n,s),l=M(n,o);try{if(V(e,a,"mv"),V(e,l,"mv"),!t.vfs.exists(a))return{stderr:`mv: ${s}: No such file or directory`,exitCode:1};let c=t.vfs.exists(l)&&t.vfs.stat(l).type==="directory"?`${l}/${s.split("/").pop()}`:l;return t.vfs.move(a,c),{exitCode:0}}catch(c){return{stderr:`mv: ${c instanceof Error?c.message:String(c)}`,exitCode:1}}}};var Rr={name:"nano",description:"Text editor",category:"files",params:["<file>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=r[0];if(!i)return{stderr:"nano: missing file operand",exitCode:1};let s=M(n,i);V(e,s,"nano");let o=t.vfs.exists(s)?t.vfs.readFile(s):"",a=z.basename(s)||"buffer",l=`/tmp/sshmimic-nano-${Date.now()}-${a}.tmp`;return{openEditor:{targetPath:s,tempPath:l,initialContent:o},exitCode:0}}};var io="vfs-fs-shim",_e="files",Nt=null;function an(){return Nt?Promise.resolve(Nt):new Promise((e,t)=>{let n=indexedDB.open(io,1);n.onupgradeneeded=r=>r.target.result.createObjectStore(_e),n.onsuccess=r=>{Nt=r.target.result,e(Nt)},n.onerror=r=>t(r.target.error)})}var oe=new Map;an().then(e=>{let n=e.transaction(_e,"readonly").objectStore(_e).openCursor();n.onsuccess=r=>{let i=r.target.result;i&&(oe.set(i.key,i.value),i.continue())}});function Ge(e,t){an().then(n=>{let r=n.transaction(_e,"readwrite");t===null?r.objectStore(_e).delete(e):r.objectStore(_e).put(t,e)})}function oo(e,t="utf8"){if(e instanceof Uint8Array)return e;if(typeof e=="string"){if(t==="hex"){let n=new Uint8Array(e.length/2);for(let r=0;r<n.length;r++)n[r]=parseInt(e.slice(r*2,r*2+2),16);return n}return new TextEncoder().encode(e)}return new Uint8Array(e)}function ao(e,t="utf8"){return!t||t==="utf8"?new TextDecoder().decode(e):t==="hex"?Array.from(e).map(n=>n.toString(16).padStart(2,"0")).join(""):t==="base64"?btoa(String.fromCharCode(...e)):new TextDecoder().decode(e)}function te(e){return oe.has(e)}function he(e,t){if(!oe.has(e))throw Object.assign(new Error(`ENOENT: no such file: ${e}`),{code:"ENOENT"});let n=oe.get(e);if(n==="__DIR__")throw Object.assign(new Error(`EISDIR: ${e}`),{code:"EISDIR"});let r=typeof t=="string"?t:t?.encoding;return r?ao(n,r):globalThis.Buffer.from(n)}function Ye(e,t,n){let r=typeof n=="string"?n:n?.encoding,i=oo(t,r);oe.set(e,i),Ge(e,i)}function at(e){oe.delete(e),Ge(e,null)}function Lr(e,t={}){if(t.recursive)for(let n of[...oe.keys()])(n===e||n.startsWith(e+"/"))&&(oe.delete(n),Ge(n,null));else at(e)}function Je(e,t={}){if(t.recursive){let n=e.split("/").filter(Boolean),r="";for(let i of n)r+="/"+i,oe.has(r)||(oe.set(r,"__DIR__"),Ge(r,"__DIR__"))}else oe.set(e,"__DIR__"),Ge(e,"__DIR__")}function lt(e){let t=e.endsWith("/")?e:e+"/";return[...oe.keys()].filter(n=>n.startsWith(t)&&n.slice(t.length).split("/").length===1).map(n=>n.slice(t.length))}function _t(e){if(!oe.has(e))throw Object.assign(new Error(`ENOENT: ${e}`),{code:"ENOENT"});let t=oe.get(e),n=t==="__DIR__";return{isDirectory:()=>n,isFile:()=>!n,size:n?0:t.length}}var At=new Map,lo=10,ct={O_WRONLY:1,O_CREAT:64,O_APPEND:1024};function Vr(e,t){let n=lo++,r=(t&ct.O_APPEND)!==0,i=oe.has(e)?oe.get(e):new Uint8Array(0);return At.set(n,{path:e,data:r?i:new Uint8Array(0)}),n}function Ur(e,t){let n=At.get(e);if(!n)return;let r=new Uint8Array(n.data.length+t.length);r.set(n.data),r.set(t,n.data.length),n.data=r}function Br(e){let t=At.get(e);t&&(oe.set(t.path,t.data),Ge(t.path,t.data),At.delete(e))}var co=an().then(e=>new Promise(t=>{let r=e.transaction(_e,"readonly").objectStore(_e).openCursor();r.onsuccess=i=>{let s=i.target.result;if(!s)return t(!0);oe.set(s.key,s.value),s.continue()}}));globalThis.__fsReady__=co;function uo(e){let t=Math.max(1,Math.floor(e/60)),n=Math.floor(t/1440),r=Math.floor(t%1440/60),i=t%60,s=[];return n>0&&s.push(`${n} day${n>1?"s":""}`),r>0&&s.push(`${r} hour${r>1?"s":""}`),(i>0||s.length===0)&&s.push(`${i} min${i>1?"s":""}`),s.join(", ")}function Hr(e){return`\x1B[${e}m \x1B[0m`}function mo(){let e=[40,41,42,43,44,45,46,47].map(Hr).join(""),t=[100,101,102,103,104,105,106,107].map(Hr).join("");return[e,t]}function jr(e,t,n){if(e.trim().length===0)return e;let r={r:255,g:255,b:255},i={r:168,g:85,b:247},s=n<=1?0:t/(n-1),o=Math.round(r.r+(i.r-r.r)*s),a=Math.round(r.g+(i.g-r.g)*s),l=Math.round(r.b+(i.b-r.b)*s);return`\x1B[38;2;${o};${a};${l}m${e}\x1B[0m`}function po(e){if(e.trim().length===0)return e;let t=e.indexOf(":");if(t===-1)return e.includes("@")?Wr(e):e;let n=e.substring(0,t+1),r=e.substring(t+1);return Wr(n)+r}function Wr(e){let t=new RegExp("\x1B\\[[\\d;]*m","g"),n=e.replace(t,"");if(n.trim().length===0)return e;let r={r:255,g:255,b:255},i={r:168,g:85,b:247},s="";for(let o=0;o<n.length;o+=1){let a=n.length<=1?0:o/(n.length-1),l=Math.round(r.r+(i.r-r.r)*a),c=Math.round(r.g+(i.g-r.g)*a),u=Math.round(r.b+(i.b-r.b)*a);s+=`\x1B[38;2;${l};${c};${u}m${n[o]}\x1B[0m`}return s}function qr(e){return Math.max(0,Math.round(e/(1024*1024)))}function Kr(){try{let e=he("/etc/os-release","utf8");for(let t of e.split(`
924
- `)){if(!t.startsWith("PRETTY_NAME="))continue;return t.slice(12).trim().replace(/^"|"$/g,"")}}catch{return}}function Gr(e){try{let t=he(e,"utf8").split(`
925
- `)[0]?.trim();return!t||t.length===0?void 0:t}catch{return}}function fo(e){let t=Gr("/sys/devices/virtual/dmi/id/sys_vendor"),n=Gr("/sys/devices/virtual/dmi/id/product_name");return t&&n?`${t} ${n}`:n||e}function ho(){let e=["/var/lib/dpkg/status","/usr/local/var/lib/dpkg/status"];for(let t of e)if(te(t))try{return he(t,"utf8").match(/^Package:\s+/gm)?.length??0}catch{}}function go(){let e=["/snap","/var/lib/snapd/snaps"];for(let t of e)if(te(t))try{return lt(t,{withFileTypes:!0}).filter(i=>i.isDirectory()).length}catch{}}function yo(){let e=ho(),t=go();return e!==void 0&&t!==void 0?`${e} (dpkg), ${t} (snap)`:e!==void 0?`${e} (dpkg)`:t!==void 0?`${t} (snap)`:"n/a"}function So(){let e=kt();if(e.length===0)return"unknown";let t=e[0];if(!t)return"unknown";let n=(t.speed/1e3).toFixed(2);return`${t.model} (${e.length}) @ ${n}GHz`}function bo(e){return!e||e.trim().length===0?"unknown":z.basename(e.trim())}function xo(e){let t=Ce(),n=Ue(),r=Math.max(0,t-n),i=e.shellProps,s=y.uptime();return e.uptimeSeconds===void 0&&(e.uptimeSeconds=Math.round(s)),{user:e.user,host:e.host,osName:i?.os??e.osName??`${Kr()??tn()} ${Mt()}`,kernel:i?.kernel??e.kernel??nn(),uptimeSeconds:e.uptimeSeconds??cr(),packages:e.packages??yo(),shell:bo(e.shell),shellProps:e.shellProps??{kernel:e.kernel??nn(),os:e.osName??`${Kr()??tn()} ${Mt()}`,arch:Mt()},resolution:e.resolution??"n/a (ssh)",terminal:e.terminal??"unknown",cpu:e.cpu??So(),gpu:e.gpu??"n/a",memoryUsedMiB:e.memoryUsedMiB??qr(r),memoryTotalMiB:e.memoryTotalMiB??qr(t)}}function Yr(e){let t=xo(e),n=uo(t.uptimeSeconds),r=mo(),i=[" .. .:. "," .::.. .. .. ",". .... ... .. ",": .... .:. .. ",": .:.:........:. .. ",": .. ",". : ",". : ",".. : "," :. .. "," .. .. "," :-. :: "," .:. :. "," ..: ... "," ..: :.. "," :... :...."," .. ...."," . .. "," .:. .: "," :. .. "," ::. .. ","..... ..:... ","...:. .. ",".:...:. ::. .. "," ... ..:::::.. ..:::::::.. "],s=[`${t.user}@${t.host}`,"-------------------------",`OS: ${t.osName}`,`Host: ${fo(t.host)}`,`Kernel: ${t.kernel}`,`Uptime: ${n}`,`Packages: ${t.packages}`,`Shell: ${t.shell}`,`Resolution: ${t.resolution}`,`Terminal: ${t.terminal}`,`CPU: ${t.cpu}`,`GPU: ${t.gpu}`,`Memory: ${t.memoryUsedMiB}MiB / ${t.memoryTotalMiB}MiB`,"",r[0],r[1]],o=Math.max(i.length,s.length),a=[];for(let l=0;l<o;l+=1){let c=i[l]??"",u=s[l]??"";if(u.length>0){let d=jr(c.padEnd(31," "),l,i.length),m=po(u);a.push(`${d} ${m}`);continue}a.push(jr(c,l,i.length))}return a.join(`
926
- `)}var Jr={name:"neofetch",description:"System info display",category:"system",params:["[--off]"],run:({args:e,authUser:t,hostname:n,shell:r,env:i})=>r.packageManager.isInstalled("neofetch")?C(e,"--help")?{stdout:"Usage: neofetch [--off]",exitCode:0}:C(e,"--off")?{stdout:`${t}@${n}`,exitCode:0}:{stdout:Yr({user:t,host:n,shell:i.vars.SHELL,shellProps:r.properties,terminal:i.vars.TERM,uptimeSeconds:Math.floor((Date.now()-r.startTime)/1e3),packages:`${r.packageManager?.installedCount()??0} (dpkg)`}),exitCode:0}:{stderr:`bash: neofetch: command not found
923
+ Read items from stdin and execute COMMAND with those items as arguments.`};var ao={gunzip:"gzip"},Fr={name:"man",description:"Interface to the system reference manuals",category:"shell",params:["<command>"],run:async({args:e,shell:t})=>{let n=e[0];if(!n)return{stderr:"What manual page do you want?",exitCode:1};let r=`/usr/share/man/man1/${n}.1`;if(t.vfs.exists(r))return{stdout:t.vfs.readFile(r),exitCode:0};let i=n.toLowerCase(),s=ao[i]??i,o=Dr[s]??null;return o?{stdout:o,exitCode:0}:{stderr:`No manual entry for ${n}`,exitCode:16}}};var Rr={name:"mkdir",description:"Make directories",category:"files",params:["<dir>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{if(r.length===0)return{stderr:"mkdir: missing operand",exitCode:1};for(let i=0;i<r.length;i++){let s=Me(r,i);if(!s)return{stderr:"mkdir: missing operand",exitCode:1};let o=M(n,s);V(e,o,"mkdir"),t.vfs.mkdir(o)}return{exitCode:0}}};var Lr={name:"mv",description:"Move or rename files",category:"files",params:["<source> <dest>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=r.filter(c=>!c.startsWith("-")),[s,o]=i;if(!s||!o)return{stderr:"mv: missing operand",exitCode:1};let a=M(n,s),l=M(n,o);try{if(V(e,a,"mv"),V(e,l,"mv"),!t.vfs.exists(a))return{stderr:`mv: ${s}: No such file or directory`,exitCode:1};let c=t.vfs.exists(l)&&t.vfs.stat(l).type==="directory"?`${l}/${s.split("/").pop()}`:l;return t.vfs.move(a,c),{exitCode:0}}catch(c){return{stderr:`mv: ${c instanceof Error?c.message:String(c)}`,exitCode:1}}}};var Vr={name:"nano",description:"Text editor",category:"files",params:["<file>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=r[0];if(!i)return{stderr:"nano: missing file operand",exitCode:1};let s=M(n,i);V(e,s,"nano");let o=t.vfs.exists(s)?t.vfs.readFile(s):"",a=z.basename(s)||"buffer",l=`/tmp/sshmimic-nano-${Date.now()}-${a}.tmp`;return{openEditor:{targetPath:s,tempPath:l,initialContent:o},exitCode:0}}};var lo="vfs-fs-shim",Oe="files",_t=null;function cn(){return _t?Promise.resolve(_t):new Promise((e,t)=>{let n=indexedDB.open(lo,1);n.onupgradeneeded=r=>r.target.result.createObjectStore(Oe),n.onsuccess=r=>{_t=r.target.result,e(_t)},n.onerror=r=>t(r.target.error)})}var oe=new Map;cn().then(e=>{let n=e.transaction(Oe,"readonly").objectStore(Oe).openCursor();n.onsuccess=r=>{let i=r.target.result;i&&(oe.set(i.key,i.value),i.continue())}});function Ye(e,t){cn().then(n=>{let r=n.transaction(Oe,"readwrite");t===null?r.objectStore(Oe).delete(e):r.objectStore(Oe).put(t,e)})}function co(e,t="utf8"){if(e instanceof Uint8Array)return e;if(typeof e=="string"){if(t==="hex"){let n=new Uint8Array(e.length/2);for(let r=0;r<n.length;r++)n[r]=parseInt(e.slice(r*2,r*2+2),16);return n}return new TextEncoder().encode(e)}return new Uint8Array(e)}function uo(e,t="utf8"){return!t||t==="utf8"?new TextDecoder().decode(e):t==="hex"?Array.from(e).map(n=>n.toString(16).padStart(2,"0")).join(""):t==="base64"?btoa(String.fromCharCode(...e)):new TextDecoder().decode(e)}function te(e){return oe.has(e)}function he(e,t){if(!oe.has(e))throw Object.assign(new Error(`ENOENT: no such file: ${e}`),{code:"ENOENT"});let n=oe.get(e);if(n==="__DIR__")throw Object.assign(new Error(`EISDIR: ${e}`),{code:"EISDIR"});let r=typeof t=="string"?t:t?.encoding;return r?uo(n,r):globalThis.Buffer.from(n)}function Je(e,t,n){let r=typeof n=="string"?n:n?.encoding,i=co(t,r);oe.set(e,i),Ye(e,i)}function lt(e){oe.delete(e),Ye(e,null)}function Ur(e,t={}){if(t.recursive)for(let n of[...oe.keys()])(n===e||n.startsWith(e+"/"))&&(oe.delete(n),Ye(n,null));else lt(e)}function Ze(e,t={}){if(t.recursive){let n=e.split("/").filter(Boolean),r="";for(let i of n)r+="/"+i,oe.has(r)||(oe.set(r,"__DIR__"),Ye(r,"__DIR__"))}else oe.set(e,"__DIR__"),Ye(e,"__DIR__")}function ct(e){let t=e.endsWith("/")?e:e+"/";return[...oe.keys()].filter(n=>n.startsWith(t)&&n.slice(t.length).split("/").length===1).map(n=>n.slice(t.length))}function Tt(e){if(!oe.has(e))throw Object.assign(new Error(`ENOENT: ${e}`),{code:"ENOENT"});let t=oe.get(e),n=t==="__DIR__";return{isDirectory:()=>n,isFile:()=>!n,size:n?0:t.length}}var Ot=new Map,mo=10,ut={O_WRONLY:1,O_CREAT:64,O_APPEND:1024};function Br(e,t){let n=mo++,r=(t&ut.O_APPEND)!==0,i=oe.has(e)?oe.get(e):new Uint8Array(0);return Ot.set(n,{path:e,data:r?i:new Uint8Array(0)}),n}function zr(e,t){let n=Ot.get(e);if(!n)return;let r=new Uint8Array(n.data.length+t.length);r.set(n.data),r.set(t,n.data.length),n.data=r}function Hr(e){let t=Ot.get(e);t&&(oe.set(t.path,t.data),Ye(t.path,t.data),Ot.delete(e))}var po=cn().then(e=>new Promise(t=>{let r=e.transaction(Oe,"readonly").objectStore(Oe).openCursor();r.onsuccess=i=>{let s=i.target.result;if(!s)return t(!0);oe.set(s.key,s.value),s.continue()}}));globalThis.__fsReady__=po;function fo(e){let t=Math.max(1,Math.floor(e/60)),n=Math.floor(t/1440),r=Math.floor(t%1440/60),i=t%60,s=[];return n>0&&s.push(`${n} day${n>1?"s":""}`),r>0&&s.push(`${r} hour${r>1?"s":""}`),(i>0||s.length===0)&&s.push(`${i} min${i>1?"s":""}`),s.join(", ")}function Wr(e){return`\x1B[${e}m \x1B[0m`}function ho(){let e=[40,41,42,43,44,45,46,47].map(Wr).join(""),t=[100,101,102,103,104,105,106,107].map(Wr).join("");return[e,t]}function qr(e,t,n){if(e.trim().length===0)return e;let r={r:255,g:255,b:255},i={r:168,g:85,b:247},s=n<=1?0:t/(n-1),o=Math.round(r.r+(i.r-r.r)*s),a=Math.round(r.g+(i.g-r.g)*s),l=Math.round(r.b+(i.b-r.b)*s);return`\x1B[38;2;${o};${a};${l}m${e}\x1B[0m`}function go(e){if(e.trim().length===0)return e;let t=e.indexOf(":");if(t===-1)return e.includes("@")?Kr(e):e;let n=e.substring(0,t+1),r=e.substring(t+1);return Kr(n)+r}function Kr(e){let t=new RegExp("\x1B\\[[\\d;]*m","g"),n=e.replace(t,"");if(n.trim().length===0)return e;let r={r:255,g:255,b:255},i={r:168,g:85,b:247},s="";for(let o=0;o<n.length;o+=1){let a=n.length<=1?0:o/(n.length-1),l=Math.round(r.r+(i.r-r.r)*a),c=Math.round(r.g+(i.g-r.g)*a),u=Math.round(r.b+(i.b-r.b)*a);s+=`\x1B[38;2;${l};${c};${u}m${n[o]}\x1B[0m`}return s}function Gr(e){return Math.max(0,Math.round(e/(1024*1024)))}function Yr(){try{let e=he("/etc/os-release","utf8");for(let t of e.split(`
924
+ `)){if(!t.startsWith("PRETTY_NAME="))continue;return t.slice(12).trim().replace(/^"|"$/g,"")}}catch{return}}function Jr(e){try{let t=he(e,"utf8").split(`
925
+ `)[0]?.trim();return!t||t.length===0?void 0:t}catch{return}}function yo(e){let t=Jr("/sys/devices/virtual/dmi/id/sys_vendor"),n=Jr("/sys/devices/virtual/dmi/id/product_name");return t&&n?`${t} ${n}`:n||e}function So(){let e=["/var/lib/dpkg/status","/usr/local/var/lib/dpkg/status"];for(let t of e)if(te(t))try{return he(t,"utf8").match(/^Package:\s+/gm)?.length??0}catch{}}function bo(){let e=["/snap","/var/lib/snapd/snaps"];for(let t of e)if(te(t))try{return ct(t,{withFileTypes:!0}).filter(i=>i.isDirectory()).length}catch{}}function xo(){let e=So(),t=bo();return e!==void 0&&t!==void 0?`${e} (dpkg), ${t} (snap)`:e!==void 0?`${e} (dpkg)`:t!==void 0?`${t} (snap)`:"n/a"}function wo(){let e=It();if(e.length===0)return"unknown";let t=e[0];if(!t)return"unknown";let n=(t.speed/1e3).toFixed(2);return`${t.model} (${e.length}) @ ${n}GHz`}function vo(e){return!e||e.trim().length===0?"unknown":z.basename(e.trim())}function Co(e){let t=Ce(),n=Be(),r=Math.max(0,t-n),i=e.shellProps,s=y.uptime();return e.uptimeSeconds===void 0&&(e.uptimeSeconds=Math.round(s)),{user:e.user,host:e.host,osName:i?.os??e.osName??`${Yr()??rn()} ${Nt()}`,kernel:i?.kernel??e.kernel??sn(),uptimeSeconds:e.uptimeSeconds??dr(),packages:e.packages??xo(),shell:vo(e.shell),shellProps:e.shellProps??{kernel:e.kernel??sn(),os:e.osName??`${Yr()??rn()} ${Nt()}`,arch:Nt()},resolution:e.resolution??"n/a (ssh)",terminal:e.terminal??"unknown",cpu:e.cpu??wo(),gpu:e.gpu??"n/a",memoryUsedMiB:e.memoryUsedMiB??Gr(r),memoryTotalMiB:e.memoryTotalMiB??Gr(t)}}function Zr(e){let t=Co(e),n=fo(t.uptimeSeconds),r=ho(),i=[" .. .:. "," .::.. .. .. ",". .... ... .. ",": .... .:. .. ",": .:.:........:. .. ",": .. ",". : ",". : ",".. : "," :. .. "," .. .. "," :-. :: "," .:. :. "," ..: ... "," ..: :.. "," :... :...."," .. ...."," . .. "," .:. .: "," :. .. "," ::. .. ","..... ..:... ","...:. .. ",".:...:. ::. .. "," ... ..:::::.. ..:::::::.. "],s=[`${t.user}@${t.host}`,"-------------------------",`OS: ${t.osName}`,`Host: ${yo(t.host)}`,`Kernel: ${t.kernel}`,`Uptime: ${n}`,`Packages: ${t.packages}`,`Shell: ${t.shell}`,`Resolution: ${t.resolution}`,`Terminal: ${t.terminal}`,`CPU: ${t.cpu}`,`GPU: ${t.gpu}`,`Memory: ${t.memoryUsedMiB}MiB / ${t.memoryTotalMiB}MiB`,"",r[0],r[1]],o=Math.max(i.length,s.length),a=[];for(let l=0;l<o;l+=1){let c=i[l]??"",u=s[l]??"";if(u.length>0){let d=qr(c.padEnd(31," "),l,i.length),m=go(u);a.push(`${d} ${m}`);continue}a.push(qr(c,l,i.length))}return a.join(`
926
+ `)}var Xr={name:"neofetch",description:"System info display",category:"system",params:["[--off]"],run:({args:e,authUser:t,hostname:n,shell:r,env:i})=>r.packageManager.isInstalled("neofetch")?C(e,"--help")?{stdout:"Usage: neofetch [--off]",exitCode:0}:C(e,"--off")?{stdout:`${t}@${n}`,exitCode:0}:{stdout:Zr({user:t,host:n,shell:i.vars.SHELL,shellProps:r.properties,terminal:i.vars.TERM,uptimeSeconds:Math.floor((Date.now()-r.startTime)/1e3),packages:`${r.packageManager?.installedCount()??0} (dpkg)`}),exitCode:0}:{stderr:`bash: neofetch: command not found
927
927
  Hint: install it with: apt install neofetch
928
- `,exitCode:127}};function Ot(e,t){let n=new Function("exports","require","module","__filename","__dirname",e),r={exports:{}};return n(r.exports,()=>{throw new Error("require not supported in vm shim")},r,"",""),r.exports}var Tt="v18.19.0",Zr={node:Tt,npm:"9.2.0",v8:"10.2.154.26-node.22"};function wo(e,t){let n={version:Tt,versions:Zr,platform:"linux",arch:"x64",env:{NODE_ENV:"production",HOME:"/root",PATH:"/usr/local/bin:/usr/bin:/bin"},argv:["node"],stdout:{write:s=>(e.push(s),!0)},stderr:{write:s=>(t.push(s),!0)},exit:(s=0)=>{throw new Ft(s)},cwd:()=>"/root",hrtime:()=>[0,0]},r={log:(...s)=>e.push(s.map(Ee).join(" ")),error:(...s)=>t.push(s.map(Ee).join(" ")),warn:(...s)=>t.push(s.map(Ee).join(" ")),info:(...s)=>e.push(s.map(Ee).join(" ")),dir:s=>e.push(Ee(s))},i=s=>{switch(s){case"path":return{join:(...o)=>o.join("/").replace(/\/+/g,"/"),resolve:(...o)=>`/${o.join("/").replace(/^\/+/,"")}`,dirname:o=>o.split("/").slice(0,-1).join("/")||"/",basename:o=>o.split("/").pop()??"",extname:o=>{let a=o.split("/").pop()??"",l=a.lastIndexOf(".");return l>0?a.slice(l):""},sep:"/",delimiter:":"};case"os":return{platform:()=>"linux",arch:()=>"x64",type:()=>"Linux",hostname:()=>"fortune-vm",homedir:()=>"/root",tmpdir:()=>"/tmp",EOL:`
929
- `};case"util":return{format:(...o)=>o.map(Ee).join(" "),inspect:o=>Ee(o)};case"fs":case"fs/promises":throw new Error(`Cannot require '${s}': filesystem access not available in virtual runtime`);case"child_process":case"net":case"http":case"https":throw new Error(`Cannot require '${s}': not available in virtual runtime`);default:throw new Error(`Cannot find module '${s}'`)}};return i.resolve=s=>{throw new Error(`Cannot resolve '${s}'`)},i.cache={},i.extensions={},Ot.createContext({console:r,process:n,require:i,Math,JSON,Object,Array,String,Number,Boolean,Symbol,Date,RegExp,Error,TypeError,RangeError,SyntaxError,Promise,Map,Set,WeakMap,WeakSet,parseInt,parseFloat,isNaN,isFinite,encodeURIComponent,decodeURIComponent,encodeURI,decodeURI,setTimeout:()=>{},clearTimeout:()=>{},setInterval:()=>{},clearInterval:()=>{},queueMicrotask:()=>{},globalThis:void 0,undefined:void 0,Infinity:1/0,NaN:NaN})}var Ft=class{constructor(t){this.code=t}code};function Ee(e){if(e===null)return"null";if(e===void 0)return"undefined";if(typeof e=="string")return e;if(typeof e=="function")return`[Function: ${e.name||"(anonymous)"}]`;if(Array.isArray(e))return`[ ${e.map(Ee).join(", ")} ]`;if(e instanceof Error)return`${e.name}: ${e.message}`;if(typeof e=="object")try{return`{ ${Object.entries(e).map(([n,r])=>`${n}: ${Ee(r)}`).join(", ")} }`}catch{return"[Object]"}return String(e)}function Dt(e){let t=[],n=[],r=wo(t,n),i=0;try{let s=Ot.runInContext(e,r,{timeout:5e3});s!==void 0&&t.length===0&&t.push(Ee(s))}catch(s){s instanceof Ft?i=s.code:s instanceof Error?(n.push(`${s.name}: ${s.message}`),i=1):(n.push(String(s)),i=1)}return{stdout:t.length?`${t.join(`
928
+ `,exitCode:127}};function Dt(e,t){let n=new Function("exports","require","module","__filename","__dirname",e),r={exports:{}};return n(r.exports,()=>{throw new Error("require not supported in vm shim")},r,"",""),r.exports}var Ft="v18.19.0",Qr={node:Ft,npm:"9.2.0",v8:"10.2.154.26-node.22"};function Po(e,t){let n={version:Ft,versions:Qr,platform:"linux",arch:"x64",env:{NODE_ENV:"production",HOME:"/root",PATH:"/usr/local/bin:/usr/bin:/bin"},argv:["node"],stdout:{write:s=>(e.push(s),!0)},stderr:{write:s=>(t.push(s),!0)},exit:(s=0)=>{throw new Rt(s)},cwd:()=>"/root",hrtime:()=>[0,0]},r={log:(...s)=>e.push(s.map(Ee).join(" ")),error:(...s)=>t.push(s.map(Ee).join(" ")),warn:(...s)=>t.push(s.map(Ee).join(" ")),info:(...s)=>e.push(s.map(Ee).join(" ")),dir:s=>e.push(Ee(s))},i=s=>{switch(s){case"path":return{join:(...o)=>o.join("/").replace(/\/+/g,"/"),resolve:(...o)=>`/${o.join("/").replace(/^\/+/,"")}`,dirname:o=>o.split("/").slice(0,-1).join("/")||"/",basename:o=>o.split("/").pop()??"",extname:o=>{let a=o.split("/").pop()??"",l=a.lastIndexOf(".");return l>0?a.slice(l):""},sep:"/",delimiter:":"};case"os":return{platform:()=>"linux",arch:()=>"x64",type:()=>"Linux",hostname:()=>"fortune-vm",homedir:()=>"/root",tmpdir:()=>"/tmp",EOL:`
929
+ `};case"util":return{format:(...o)=>o.map(Ee).join(" "),inspect:o=>Ee(o)};case"fs":case"fs/promises":throw new Error(`Cannot require '${s}': filesystem access not available in virtual runtime`);case"child_process":case"net":case"http":case"https":throw new Error(`Cannot require '${s}': not available in virtual runtime`);default:throw new Error(`Cannot find module '${s}'`)}};return i.resolve=s=>{throw new Error(`Cannot resolve '${s}'`)},i.cache={},i.extensions={},Dt.createContext({console:r,process:n,require:i,Math,JSON,Object,Array,String,Number,Boolean,Symbol,Date,RegExp,Error,TypeError,RangeError,SyntaxError,Promise,Map,Set,WeakMap,WeakSet,parseInt,parseFloat,isNaN,isFinite,encodeURIComponent,decodeURIComponent,encodeURI,decodeURI,setTimeout:()=>{},clearTimeout:()=>{},setInterval:()=>{},clearInterval:()=>{},queueMicrotask:()=>{},globalThis:void 0,undefined:void 0,Infinity:1/0,NaN:NaN})}var Rt=class{constructor(t){this.code=t}code};function Ee(e){if(e===null)return"null";if(e===void 0)return"undefined";if(typeof e=="string")return e;if(typeof e=="function")return`[Function: ${e.name||"(anonymous)"}]`;if(Array.isArray(e))return`[ ${e.map(Ee).join(", ")} ]`;if(e instanceof Error)return`${e.name}: ${e.message}`;if(typeof e=="object")try{return`{ ${Object.entries(e).map(([n,r])=>`${n}: ${Ee(r)}`).join(", ")} }`}catch{return"[Object]"}return String(e)}function Lt(e){let t=[],n=[],r=Po(t,n),i=0;try{let s=Dt.runInContext(e,r,{timeout:5e3});s!==void 0&&t.length===0&&t.push(Ee(s))}catch(s){s instanceof Rt?i=s.code:s instanceof Error?(n.push(`${s.name}: ${s.message}`),i=1):(n.push(String(s)),i=1)}return{stdout:t.length?`${t.join(`
930
930
  `)}
931
931
  `:"",stderr:n.length?`${n.join(`
932
932
  `)}
933
- `:"",exitCode:i}}function vo(e){let t=e.trim();return!t.includes(`
934
- `)&&!t.startsWith("const ")&&!t.startsWith("let ")&&!t.startsWith("var ")&&!t.startsWith("function ")&&!t.startsWith("class ")&&!t.startsWith("if ")&&!t.startsWith("for ")&&!t.startsWith("while ")&&!t.startsWith("import ")&&!t.startsWith("//")?Dt(t):Dt(`(async () => { ${e} })()`)}var Qr={name:"node",description:"JavaScript runtime (virtual)",category:"system",params:["[--version] [-e <expr>] [-p <expr>] [file]"],run:({args:e,shell:t,cwd:n})=>{if(!t.packageManager.isInstalled("nodejs"))return{stderr:`bash: node: command not found
933
+ `:"",exitCode:i}}function Eo(e){let t=e.trim();return!t.includes(`
934
+ `)&&!t.startsWith("const ")&&!t.startsWith("let ")&&!t.startsWith("var ")&&!t.startsWith("function ")&&!t.startsWith("class ")&&!t.startsWith("if ")&&!t.startsWith("for ")&&!t.startsWith("while ")&&!t.startsWith("import ")&&!t.startsWith("//")?Lt(t):Lt(`(async () => { ${e} })()`)}var es={name:"node",description:"JavaScript runtime (virtual)",category:"system",params:["[--version] [-e <expr>] [-p <expr>] [file]"],run:({args:e,shell:t,cwd:n})=>{if(!t.packageManager.isInstalled("nodejs"))return{stderr:`bash: node: command not found
935
935
  Hint: install it with: apt install nodejs
936
- `,exitCode:127};if(C(e,["--version","-v"]))return{stdout:`${Tt}
937
- `,exitCode:0};if(C(e,["--versions"]))return{stdout:`${JSON.stringify(Zr,null,2)}
936
+ `,exitCode:127};if(C(e,["--version","-v"]))return{stdout:`${Ft}
937
+ `,exitCode:0};if(C(e,["--versions"]))return{stdout:`${JSON.stringify(Qr,null,2)}
938
938
  `,exitCode:0};let r=e.findIndex(o=>o==="-e"||o==="--eval");if(r!==-1){let o=e[r+1];if(!o)return{stderr:`node: -e requires an argument
939
- `,exitCode:1};let{stdout:a,stderr:l,exitCode:c}=Dt(o);return{stdout:a||void 0,stderr:l||void 0,exitCode:c}}let i=e.findIndex(o=>o==="-p"||o==="--print");if(i!==-1){let o=e[i+1];if(!o)return{stderr:`node: -p requires an argument
940
- `,exitCode:1};let{stdout:a,stderr:l,exitCode:c}=Dt(o);return{stdout:a||(c===0?`
939
+ `,exitCode:1};let{stdout:a,stderr:l,exitCode:c}=Lt(o);return{stdout:a||void 0,stderr:l||void 0,exitCode:c}}let i=e.findIndex(o=>o==="-p"||o==="--print");if(i!==-1){let o=e[i+1];if(!o)return{stderr:`node: -p requires an argument
940
+ `,exitCode:1};let{stdout:a,stderr:l,exitCode:c}=Lt(o);return{stdout:a||(c===0?`
941
941
  `:void 0),stderr:l||void 0,exitCode:c}}let s=e.find(o=>!o.startsWith("-"));if(s){let o=M(n,s);if(!t.vfs.exists(o))return{stderr:`node: cannot open file '${s}': No such file or directory
942
- `,exitCode:1};let a=t.vfs.readFile(o),{stdout:l,stderr:c,exitCode:u}=vo(a);return{stdout:l||void 0,stderr:c||void 0,exitCode:u}}return{stdout:[`Welcome to Node.js ${Tt}.`,'Type ".exit" to exit the REPL.',"> "].join(`
943
- `),exitCode:0}}};var Rt="9.2.0",Co="18.19.0",Xr={name:"npm",description:"Node.js package manager (virtual)",category:"system",params:["<command> [args]"],run:({args:e,shell:t})=>{if(!t.packageManager.isInstalled("npm"))return{stderr:`bash: npm: command not found
942
+ `,exitCode:1};let a=t.vfs.readFile(o),{stdout:l,stderr:c,exitCode:u}=Eo(a);return{stdout:l||void 0,stderr:c||void 0,exitCode:u}}return{stdout:[`Welcome to Node.js ${Ft}.`,'Type ".exit" to exit the REPL.',"> "].join(`
943
+ `),exitCode:0}}};var Vt="9.2.0",$o="18.19.0",ts={name:"npm",description:"Node.js package manager (virtual)",category:"system",params:["<command> [args]"],run:({args:e,shell:t})=>{if(!t.packageManager.isInstalled("npm"))return{stderr:`bash: npm: command not found
944
944
  Hint: install it with: apt install npm
945
- `,exitCode:127};if(C(e,["--version","-v"]))return{stdout:`${Rt}
946
- `,exitCode:0};let n=e[0]?.toLowerCase();switch(n){case"version":case"-version":return{stdout:`{ npm: '${Rt}', node: '${Co}', v8: '10.2.154.26' }
945
+ `,exitCode:127};if(C(e,["--version","-v"]))return{stdout:`${Vt}
946
+ `,exitCode:0};let n=e[0]?.toLowerCase();switch(n){case"version":case"-version":return{stdout:`{ npm: '${Vt}', node: '${$o}', v8: '10.2.154.26' }
947
947
  `,exitCode:0};case"install":case"i":case"add":return{stderr:`npm warn: package installation is not available in the virtual runtime.
948
948
  npm warn: This environment simulates npm CLI behaviour only.
949
949
  `,exitCode:1};case"run":case"exec":case"x":return{stderr:`npm error: script execution is not available in the virtual runtime.
950
950
  `,exitCode:1};case"init":return{stdout:`Wrote to /home/user/package.json
951
951
  `,exitCode:0};case"list":case"ls":return{stdout:`${n==="ls"||n==="list"?"virtual-env@1.0.0":""}
952
952
  \u2514\u2500\u2500 (empty)
953
- `,exitCode:0};case"help":case void 0:return{stdout:`${[`npm ${Rt}`,"","Usage: npm <command>","","Commands:"," install (not available in virtual runtime)"," run (not available in virtual runtime)"," exec (not available in virtual runtime)"," list List installed packages"," version Print versions"," --version Print npm version"].join(`
953
+ `,exitCode:0};case"help":case void 0:return{stdout:`${[`npm ${Vt}`,"","Usage: npm <command>","","Commands:"," install (not available in virtual runtime)"," run (not available in virtual runtime)"," exec (not available in virtual runtime)"," list List installed packages"," version Print versions"," --version Print npm version"].join(`
954
954
  `)}
955
955
  `,exitCode:0};default:return{stderr:`npm error: unknown command: ${n}
956
- `,exitCode:1}}}},es={name:"npx",description:"Node.js package runner (virtual)",category:"system",params:["<package> [args]"],run:({args:e,shell:t})=>t.packageManager.isInstalled("npm")?C(e,["--version"])?{stdout:`${Rt}
956
+ `,exitCode:1}}}},ns={name:"npx",description:"Node.js package runner (virtual)",category:"system",params:["<package> [args]"],run:({args:e,shell:t})=>t.packageManager.isInstalled("npm")?C(e,["--version"])?{stdout:`${Vt}
957
957
  `,exitCode:0}:{stderr:`npx: package execution is not available in the virtual runtime.
958
958
  `,exitCode:1}:{stderr:`bash: npx: command not found
959
959
  Hint: install it with: apt install npm
960
- `,exitCode:127}};var ts={name:"passwd",description:"Change user password",category:"users",params:["[username]"],run:async({authUser:e,args:t,shell:n,stdin:r})=>{let i=t[0]??e;if(e!=="root"&&e!==i)return{stderr:"passwd: permission denied",exitCode:1};if(!n.users.listUsers().includes(i))return{stderr:`passwd: user '${i}' does not exist`,exitCode:1};if(r!==void 0&&r.trim().length>0){let s=r.trim().split(`
960
+ `,exitCode:127}};var rs={name:"passwd",description:"Change user password",category:"users",params:["[username]"],run:async({authUser:e,args:t,shell:n,stdin:r})=>{let i=t[0]??e;if(e!=="root"&&e!==i)return{stderr:"passwd: permission denied",exitCode:1};if(!n.users.listUsers().includes(i))return{stderr:`passwd: user '${i}' does not exist`,exitCode:1};if(r!==void 0&&r.trim().length>0){let s=r.trim().split(`
961
961
  `)[0];return await n.users.setPassword(i,s),{stdout:`passwd: password updated successfully
962
- `,exitCode:0}}return{passwordChallenge:{prompt:"New password: ",confirmPrompt:"Retype new password: ",action:"passwd",targetUsername:i},exitCode:0}}};var ns={name:"ping",description:"Send ICMP ECHO_REQUEST (mock)",category:"network",params:["[-c <count>] <host>"],run:({args:e})=>{let{flagsWithValues:t,positionals:n}=de(e,{flagsWithValue:["-c","-i","-W"]}),r=n[0]??"localhost",i=t.get("-c"),s=i?Math.max(1,parseInt(i,10)||4):4,o=[`PING ${r}: 56 data bytes`];for(let a=0;a<s;a++){let l=(Math.random()*10+1).toFixed(3);o.push(`64 bytes from ${r}: icmp_seq=${a} ttl=64 time=${l} ms`)}return o.push(`--- ${r} ping statistics ---`),o.push(`${s} packets transmitted, ${s} received, 0% packet loss`),{stdout:o.join(`
963
- `),exitCode:0}}};function Po(e,t){let n=0,r="",i=0;for(;i<e.length;){if(e[i]==="\\"&&i+1<e.length)switch(e[i+1]){case"n":r+=`
964
- `,i+=2;continue;case"t":r+=" ",i+=2;continue;case"r":r+="\r",i+=2;continue;case"\\":r+="\\",i+=2;continue;case"a":r+="\x07",i+=2;continue;case"b":r+="\b",i+=2;continue;case"f":r+="\f",i+=2;continue;case"v":r+="\v",i+=2;continue;default:r+=e[i],i++;continue}if(e[i]==="%"&&i+1<e.length){let s=i+1,o=!1;e[s]==="-"&&(o=!0,s++);let a=!1;e[s]==="0"&&(a=!0,s++);let l=0;for(;s<e.length&&/\d/.test(e[s]);)l=l*10+parseInt(e[s],10),s++;let c=-1;if(e[s]===".")for(s++,c=0;s<e.length&&/\d/.test(e[s]);)c=c*10+parseInt(e[s],10),s++;let u=e[s],d=t[n++]??"",m=(p,g=" ")=>{if(l<=0||p.length>=l)return p;let S=g.repeat(l-p.length);return o?p+S:S+p};switch(u){case"s":{let p=String(d);c>=0&&(p=p.slice(0,c)),r+=m(p);break}case"d":case"i":r+=m(String(parseInt(d,10)||0),a?"0":" ");break;case"f":{let p=c>=0?c:6;r+=m((parseFloat(d)||0).toFixed(p));break}case"o":r+=m((parseInt(d,10)||0).toString(8),a?"0":" ");break;case"x":r+=m((parseInt(d,10)||0).toString(16),a?"0":" ");break;case"X":r+=m((parseInt(d,10)||0).toString(16).toUpperCase(),a?"0":" ");break;case"%":r+="%",n--;break;default:r+=e[i],i++;continue}i=s+1;continue}r+=e[i],i++}return r}var rs={name:"printf",description:"Format and print data",category:"shell",params:["<format> [args...]"],run:({args:e})=>{let t=e[0];return t?{stdout:Po(t,e.slice(1)),exitCode:0}:{stderr:"printf: missing format string",exitCode:1}}};var ss={name:"ps",description:"Report process status",category:"system",params:["[-a] [-u] [-x] [aux]"],run:({authUser:e,shell:t,args:n})=>{let r=t.users.listActiveSessions(),i=C(n,["-u"])||n.includes("u")||n.includes("aux")||n.includes("au"),s=C(n,["-a","-x"])||n.includes("a")||n.includes("aux");if(i){let u=["USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND"],d=1e3;for(let m of r){let p=m.username.padEnd(10).slice(0,10),g=(Math.random()*.5).toFixed(1),S=Math.floor(Math.random()*2e4+5e3),v=Math.floor(Math.random()*5e3+1e3);u.push(`${p} ${String(d).padStart(6)} 0.0 ${g.padStart(4)} ${String(S).padStart(6)} ${String(v).padStart(5)} ${m.tty.padEnd(8)} Ss 00:00 0:00 bash`),d++}return u.push(`root ${String(d).padStart(6)} 0.0 0.0 0 0 ? S 00:00 0:00 ps`),{stdout:u.join(`
962
+ `,exitCode:0}}return{passwordChallenge:{prompt:"New password: ",confirmPrompt:"Retype new password: ",action:"passwd",targetUsername:i},exitCode:0}}};var ss={name:"ping",description:"Send ICMP ECHO_REQUEST (mock)",category:"network",params:["[-c <count>] <host>"],run:({args:e})=>{let{flagsWithValues:t,positionals:n}=de(e,{flagsWithValue:["-c","-i","-W"]}),r=n[0]??"localhost",i=t.get("-c"),s=i?Math.max(1,parseInt(i,10)||4):4,o=[`PING ${r}: 56 data bytes`];for(let a=0;a<s;a++){let l=(Math.random()*10+1).toFixed(3);o.push(`64 bytes from ${r}: icmp_seq=${a} ttl=64 time=${l} ms`)}return o.push(`--- ${r} ping statistics ---`),o.push(`${s} packets transmitted, ${s} received, 0% packet loss`),{stdout:o.join(`
963
+ `),exitCode:0}}};function ko(e,t){let n=0,r="",i=0;for(;i<e.length;){if(e[i]==="\\"&&i+1<e.length)switch(e[i+1]){case"n":r+=`
964
+ `,i+=2;continue;case"t":r+=" ",i+=2;continue;case"r":r+="\r",i+=2;continue;case"\\":r+="\\",i+=2;continue;case"a":r+="\x07",i+=2;continue;case"b":r+="\b",i+=2;continue;case"f":r+="\f",i+=2;continue;case"v":r+="\v",i+=2;continue;default:r+=e[i],i++;continue}if(e[i]==="%"&&i+1<e.length){let s=i+1,o=!1;e[s]==="-"&&(o=!0,s++);let a=!1;e[s]==="0"&&(a=!0,s++);let l=0;for(;s<e.length&&/\d/.test(e[s]);)l=l*10+parseInt(e[s],10),s++;let c=-1;if(e[s]===".")for(s++,c=0;s<e.length&&/\d/.test(e[s]);)c=c*10+parseInt(e[s],10),s++;let u=e[s],d=t[n++]??"",m=(p,g=" ")=>{if(l<=0||p.length>=l)return p;let S=g.repeat(l-p.length);return o?p+S:S+p};switch(u){case"s":{let p=String(d);c>=0&&(p=p.slice(0,c)),r+=m(p);break}case"d":case"i":r+=m(String(parseInt(d,10)||0),a?"0":" ");break;case"f":{let p=c>=0?c:6;r+=m((parseFloat(d)||0).toFixed(p));break}case"o":r+=m((parseInt(d,10)||0).toString(8),a?"0":" ");break;case"x":r+=m((parseInt(d,10)||0).toString(16),a?"0":" ");break;case"X":r+=m((parseInt(d,10)||0).toString(16).toUpperCase(),a?"0":" ");break;case"%":r+="%",n--;break;default:r+=e[i],i++;continue}i=s+1;continue}r+=e[i],i++}return r}var is={name:"printf",description:"Format and print data",category:"shell",params:["<format> [args...]"],run:({args:e})=>{let t=e[0];return t?{stdout:ko(t,e.slice(1)),exitCode:0}:{stderr:"printf: missing format string",exitCode:1}}};var os={name:"ps",description:"Report process status",category:"system",params:["[-a] [-u] [-x] [aux]"],run:({authUser:e,shell:t,args:n})=>{let r=t.users.listActiveSessions(),i=C(n,["-u"])||n.includes("u")||n.includes("aux")||n.includes("au"),s=C(n,["-a","-x"])||n.includes("a")||n.includes("aux");if(i){let u=["USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND"],d=1e3;for(let m of r){let p=m.username.padEnd(10).slice(0,10),g=(Math.random()*.5).toFixed(1),S=Math.floor(Math.random()*2e4+5e3),v=Math.floor(Math.random()*5e3+1e3);u.push(`${p} ${String(d).padStart(6)} 0.0 ${g.padStart(4)} ${String(S).padStart(6)} ${String(v).padStart(5)} ${m.tty.padEnd(8)} Ss 00:00 0:00 bash`),d++}return u.push(`root ${String(d).padStart(6)} 0.0 0.0 0 0 ? S 00:00 0:00 ps`),{stdout:u.join(`
965
965
  `),exitCode:0}}let a=[" PID TTY TIME CMD"],l=1e3;for(let c of r)!s&&c.username!==e||(a.push(`${String(l).padStart(5)} ${c.tty.padEnd(12)} 00:00:00 ${c.username===e?"bash":`bash (${c.username})`}`),l++);return a.push(`${String(l).padStart(5)} pts/0 00:00:00 ps`),{stdout:a.join(`
966
- `),exitCode:0}}};var is={name:"pwd",description:"Print working directory",category:"navigation",params:[],run:({cwd:e})=>({stdout:e,exitCode:0})};var Eo="Python 3.11.2";var Lt="3.11.2 (default, Mar 13 2023, 12:18:29) [GCC 12.2.0]",b={__pytype__:"none"};function X(e=[]){return{__pytype__:"dict",data:new Map(e)}}function ln(e,t,n=1){return{__pytype__:"range",start:e,stop:t,step:n}}function G(e){return!!e&&typeof e=="object"&&!Array.isArray(e)&&e.__pytype__==="dict"}function Qe(e){return!!e&&typeof e=="object"&&!Array.isArray(e)&&e.__pytype__==="range"}function $e(e){return!!e&&typeof e=="object"&&!Array.isArray(e)&&e.__pytype__==="func"}function cn(e){return!!e&&typeof e=="object"&&!Array.isArray(e)&&e.__pytype__==="class"}function ut(e){return!!e&&typeof e=="object"&&!Array.isArray(e)&&e.__pytype__==="instance"}function Ne(e){return!!e&&typeof e=="object"&&!Array.isArray(e)&&e.__pytype__==="none"}function re(e){return e===null||Ne(e)?"None":e===!0?"True":e===!1?"False":typeof e=="number"?Number.isInteger(e)?String(e):e.toPrecision(12).replace(/\.?0+$/,""):typeof e=="string"?`'${e.replace(/'/g,"\\'")}'`:Array.isArray(e)?`[${e.map(re).join(", ")}]`:G(e)?`{${[...e.data.entries()].map(([t,n])=>`'${t}': ${re(n)}`).join(", ")}}`:Qe(e)?`range(${e.start}, ${e.stop}${e.step!==1?`, ${e.step}`:""})`:$e(e)?`<function ${e.name} at 0x...>`:cn(e)?`<class '${e.name}'>`:ut(e)?`<${e.cls.name} object at 0x...>`:String(e)}function R(e){return e===null||Ne(e)?"None":e===!0?"True":e===!1?"False":typeof e=="number"?Number.isInteger(e)?String(e):e.toPrecision(12).replace(/\.?0+$/,""):typeof e=="string"?e:Array.isArray(e)?`[${e.map(re).join(", ")}]`:G(e)?`{${[...e.data.entries()].map(([t,n])=>`'${t}': ${re(n)}`).join(", ")}}`:Qe(e)?`range(${e.start}, ${e.stop}${e.step!==1?`, ${e.step}`:""})`:re(e)}function me(e){return e===null||Ne(e)?!1:typeof e=="boolean"?e:typeof e=="number"?e!==0:typeof e=="string"||Array.isArray(e)?e.length>0:G(e)?e.data.size>0:Qe(e)?as(e)>0:!0}function as(e){if(e.step===0)return 0;let t=Math.ceil((e.stop-e.start)/e.step);return Math.max(0,t)}function $o(e){let t=[];for(let n=e.start;(e.step>0?n<e.stop:n>e.stop)&&(t.push(n),!(t.length>1e4));n+=e.step);return t}function ne(e){if(Array.isArray(e))return e;if(typeof e=="string")return[...e];if(Qe(e))return $o(e);if(G(e))return[...e.data.keys()];throw new Q("TypeError",`'${Be(e)}' object is not iterable`)}function Be(e){return e===null||Ne(e)?"NoneType":typeof e=="boolean"?"bool":typeof e=="number"?Number.isInteger(e)?"int":"float":typeof e=="string"?"str":Array.isArray(e)?"list":G(e)?"dict":Qe(e)?"range":$e(e)?"function":cn(e)?"type":ut(e)?e.cls.name:"object"}var Q=class{constructor(t,n){this.type=t;this.message=n}type;message;toString(){return`${this.type}: ${this.message}`}},Ze=class{constructor(t){this.value=t}value},dt=class{},mt=class{},pt=class{constructor(t){this.code=t}code};function ko(e){let t=new Map,n=X([["sep","/"],["linesep",`
967
- `],["curdir","."],["pardir",".."]]);return n.__methods__={getcwd:()=>e,getenv:r=>typeof r=="string"?y.env[r]??b:b,path:X([["join",b],["exists",b],["dirname",b],["basename",b]]),listdir:()=>[]},t.set("__builtins__",b),t.set("__name__","__main__"),t.set("__cwd__",e),t}function Mo(e){let t=X([["sep","/"],["curdir","."]]),n=X([["sep","/"],["linesep",`
968
- `],["name","posix"]]);return n._cwd=e,t._cwd=e,n.path=t,n}function Io(){return X([["version",Lt],["version_info",X([["major",3],["minor",11],["micro",2]].map(([e,t])=>[e,t]))],["platform","linux"],["executable","/usr/bin/python3"],["prefix","/usr"],["path",["/usr/lib/python3.11","/usr/lib/python3.11/lib-dynload"]],["argv",[""]],["maxsize",9007199254740991]])}function No(){return X([["pi",Math.PI],["e",Math.E],["tau",Math.PI*2],["inf",1/0],["nan",NaN],["sqrt",b],["floor",b],["ceil",b],["log",b],["pow",b],["sin",b],["cos",b],["tan",b],["fabs",b],["factorial",b]])}function Ao(){return X([["dumps",b],["loads",b]])}function _o(){return X([["match",b],["search",b],["findall",b],["sub",b],["split",b],["compile",b]])}var os={os:Mo,sys:()=>Io(),math:()=>No(),json:()=>Ao(),re:()=>_o(),random:()=>X([["random",b],["randint",b],["choice",b],["shuffle",b]]),time:()=>X([["time",b],["sleep",b],["ctime",b]]),datetime:()=>X([["datetime",b],["date",b],["timedelta",b]]),collections:()=>X([["Counter",b],["defaultdict",b],["OrderedDict",b]]),itertools:()=>X([["chain",b],["product",b],["combinations",b],["permutations",b]]),functools:()=>X([["reduce",b],["partial",b],["lru_cache",b]]),string:()=>X([["ascii_letters","abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"],["digits","0123456789"],["punctuation","!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"]])},Vt=class{constructor(t){this.cwd=t}cwd;output=[];stderr=[];modules=new Map;getOutput(){return this.output.join(`
966
+ `),exitCode:0}}};var as={name:"pwd",description:"Print working directory",category:"navigation",params:[],run:({cwd:e})=>({stdout:e,exitCode:0})};var Mo="Python 3.11.2";var Ut="3.11.2 (default, Mar 13 2023, 12:18:29) [GCC 12.2.0]",b={__pytype__:"none"};function Q(e=[]){return{__pytype__:"dict",data:new Map(e)}}function un(e,t,n=1){return{__pytype__:"range",start:e,stop:t,step:n}}function G(e){return!!e&&typeof e=="object"&&!Array.isArray(e)&&e.__pytype__==="dict"}function Qe(e){return!!e&&typeof e=="object"&&!Array.isArray(e)&&e.__pytype__==="range"}function $e(e){return!!e&&typeof e=="object"&&!Array.isArray(e)&&e.__pytype__==="func"}function dn(e){return!!e&&typeof e=="object"&&!Array.isArray(e)&&e.__pytype__==="class"}function dt(e){return!!e&&typeof e=="object"&&!Array.isArray(e)&&e.__pytype__==="instance"}function Ne(e){return!!e&&typeof e=="object"&&!Array.isArray(e)&&e.__pytype__==="none"}function re(e){return e===null||Ne(e)?"None":e===!0?"True":e===!1?"False":typeof e=="number"?Number.isInteger(e)?String(e):e.toPrecision(12).replace(/\.?0+$/,""):typeof e=="string"?`'${e.replace(/'/g,"\\'")}'`:Array.isArray(e)?`[${e.map(re).join(", ")}]`:G(e)?`{${[...e.data.entries()].map(([t,n])=>`'${t}': ${re(n)}`).join(", ")}}`:Qe(e)?`range(${e.start}, ${e.stop}${e.step!==1?`, ${e.step}`:""})`:$e(e)?`<function ${e.name} at 0x...>`:dn(e)?`<class '${e.name}'>`:dt(e)?`<${e.cls.name} object at 0x...>`:String(e)}function R(e){return e===null||Ne(e)?"None":e===!0?"True":e===!1?"False":typeof e=="number"?Number.isInteger(e)?String(e):e.toPrecision(12).replace(/\.?0+$/,""):typeof e=="string"?e:Array.isArray(e)?`[${e.map(re).join(", ")}]`:G(e)?`{${[...e.data.entries()].map(([t,n])=>`'${t}': ${re(n)}`).join(", ")}}`:Qe(e)?`range(${e.start}, ${e.stop}${e.step!==1?`, ${e.step}`:""})`:re(e)}function me(e){return e===null||Ne(e)?!1:typeof e=="boolean"?e:typeof e=="number"?e!==0:typeof e=="string"||Array.isArray(e)?e.length>0:G(e)?e.data.size>0:Qe(e)?cs(e)>0:!0}function cs(e){if(e.step===0)return 0;let t=Math.ceil((e.stop-e.start)/e.step);return Math.max(0,t)}function Io(e){let t=[];for(let n=e.start;(e.step>0?n<e.stop:n>e.stop)&&(t.push(n),!(t.length>1e4));n+=e.step);return t}function ne(e){if(Array.isArray(e))return e;if(typeof e=="string")return[...e];if(Qe(e))return Io(e);if(G(e))return[...e.data.keys()];throw new X("TypeError",`'${ze(e)}' object is not iterable`)}function ze(e){return e===null||Ne(e)?"NoneType":typeof e=="boolean"?"bool":typeof e=="number"?Number.isInteger(e)?"int":"float":typeof e=="string"?"str":Array.isArray(e)?"list":G(e)?"dict":Qe(e)?"range":$e(e)?"function":dn(e)?"type":dt(e)?e.cls.name:"object"}var X=class{constructor(t,n){this.type=t;this.message=n}type;message;toString(){return`${this.type}: ${this.message}`}},Xe=class{constructor(t){this.value=t}value},mt=class{},pt=class{},ft=class{constructor(t){this.code=t}code};function No(e){let t=new Map,n=Q([["sep","/"],["linesep",`
967
+ `],["curdir","."],["pardir",".."]]);return n.__methods__={getcwd:()=>e,getenv:r=>typeof r=="string"?y.env[r]??b:b,path:Q([["join",b],["exists",b],["dirname",b],["basename",b]]),listdir:()=>[]},t.set("__builtins__",b),t.set("__name__","__main__"),t.set("__cwd__",e),t}function Ao(e){let t=Q([["sep","/"],["curdir","."]]),n=Q([["sep","/"],["linesep",`
968
+ `],["name","posix"]]);return n._cwd=e,t._cwd=e,n.path=t,n}function _o(){return Q([["version",Ut],["version_info",Q([["major",3],["minor",11],["micro",2]].map(([e,t])=>[e,t]))],["platform","linux"],["executable","/usr/bin/python3"],["prefix","/usr"],["path",["/usr/lib/python3.11","/usr/lib/python3.11/lib-dynload"]],["argv",[""]],["maxsize",9007199254740991]])}function Oo(){return Q([["pi",Math.PI],["e",Math.E],["tau",Math.PI*2],["inf",1/0],["nan",NaN],["sqrt",b],["floor",b],["ceil",b],["log",b],["pow",b],["sin",b],["cos",b],["tan",b],["fabs",b],["factorial",b]])}function To(){return Q([["dumps",b],["loads",b]])}function Do(){return Q([["match",b],["search",b],["findall",b],["sub",b],["split",b],["compile",b]])}var ls={os:Ao,sys:()=>_o(),math:()=>Oo(),json:()=>To(),re:()=>Do(),random:()=>Q([["random",b],["randint",b],["choice",b],["shuffle",b]]),time:()=>Q([["time",b],["sleep",b],["ctime",b]]),datetime:()=>Q([["datetime",b],["date",b],["timedelta",b]]),collections:()=>Q([["Counter",b],["defaultdict",b],["OrderedDict",b]]),itertools:()=>Q([["chain",b],["product",b],["combinations",b],["permutations",b]]),functools:()=>Q([["reduce",b],["partial",b],["lru_cache",b]]),string:()=>Q([["ascii_letters","abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"],["digits","0123456789"],["punctuation","!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"]])},Bt=class{constructor(t){this.cwd=t}cwd;output=[];stderr=[];modules=new Map;getOutput(){return this.output.join(`
969
969
  `)+(this.output.length?`
970
970
  `:"")}getStderr(){return this.stderr.join(`
971
971
  `)+(this.stderr.length?`
972
972
  `:"")}splitArgs(t){let n=[],r=0,i="",s=!1,o="";for(let a=0;a<t.length;a++){let l=t[a];s?(i+=l,l===o&&t[a-1]!=="\\"&&(s=!1)):l==='"'||l==="'"?(s=!0,o=l,i+=l):"([{".includes(l)?(r++,i+=l):")]}".includes(l)?(r--,i+=l):l===","&&r===0?(n.push(i.trim()),i=""):i+=l}return i.trim()&&n.push(i.trim()),n}pyEval(t,n){if(t=t.trim(),!t||t==="None")return b;if(t==="True")return!0;if(t==="False")return!1;if(t==="...")return b;if(/^-?\d+$/.test(t))return parseInt(t,10);if(/^-?\d+\.\d*$/.test(t))return parseFloat(t);if(/^0x[0-9a-fA-F]+$/.test(t))return parseInt(t,16);if(/^0o[0-7]+$/.test(t))return parseInt(t.slice(2),8);if(/^('''[\s\S]*'''|"""[\s\S]*""")$/.test(t))return t.slice(3,-3);if(/^(['"])(.*)\1$/s.test(t))return t.slice(1,-1).replace(/\\n/g,`
973
- `).replace(/\\t/g," ").replace(/\\r/g,"\r").replace(/\\\\/g,"\\").replace(/\\'/g,"'").replace(/\\"/g,'"');let r=t.match(/^f(['"])([\s\S]*)\1$/);if(r){let c=r[2];return c=c.replace(/\{([^{}]+)\}/g,(u,d)=>{try{return R(this.pyEval(d.trim(),n))}catch{return`{${d}}`}}),c}let i=t.match(/^b(['"])(.*)\1$/s);if(i)return i[2];if(t.startsWith("[")&&t.endsWith("]")){let c=t.slice(1,-1).trim();if(!c)return[];let u=c.match(/^(.+?)\s+for\s+(\w+)\s+in\s+(.+?)(?:\s+if\s+(.+))?$/);if(u){let[,d,m,p,g]=u,S=ne(this.pyEval(p.trim(),n)),v=[];for(let E of S){let T=new Map(n);T.set(m,E),!(g&&!me(this.pyEval(g,T)))&&v.push(this.pyEval(d.trim(),T))}return v}return this.splitArgs(c).map(d=>this.pyEval(d,n))}if(t.startsWith("(")&&t.endsWith(")")){let c=t.slice(1,-1).trim();if(!c)return[];let u=this.splitArgs(c);return u.length===1&&!c.endsWith(",")?this.pyEval(u[0],n):u.map(d=>this.pyEval(d,n))}if(t.startsWith("{")&&t.endsWith("}")){let c=t.slice(1,-1).trim();if(!c)return X();let u=X();for(let d of this.splitArgs(c)){let m=d.indexOf(":");if(m===-1)continue;let p=R(this.pyEval(d.slice(0,m).trim(),n)),g=this.pyEval(d.slice(m+1).trim(),n);u.data.set(p,g)}return u}let s=t.match(/^not\s+(.+)$/);if(s)return!me(this.pyEval(s[1],n));let o=[["or"],["and"],["in","not in","is not","is","==","!=","<=",">=","<",">"],["+","-"],["**"],["*","//","/","%"]];for(let c of o){let u=this.tryBinaryOp(t,c,n);if(u!==void 0)return u}if(t.startsWith("-")){let c=this.pyEval(t.slice(1),n);if(typeof c=="number")return-c}if(y.env.PY_DEBUG&&console.error("eval:",JSON.stringify(t)),t.endsWith("]")&&!t.startsWith("[")){let c=this.findMatchingBracket(t,"[");if(c!==-1){let u=this.pyEval(t.slice(0,c),n),d=t.slice(c+1,-1);return this.subscript(u,d,n)}}let a=t.match(/^([A-Za-z_][A-Za-z0-9_]*)\s*\(([\s\S]*)\)$/);if(a){let[,c,u]=a,d=(u?.trim()?this.splitArgs(u):[]).map(m=>this.pyEval(m,n));return this.callBuiltin(c,d,n)}let l=this.findDotAccess(t);if(l){let{objExpr:c,attr:u,callPart:d}=l,m=this.pyEval(c,n);if(d!==void 0){let p=d.slice(1,-1),g=p.trim()?this.splitArgs(p).map(S=>this.pyEval(S,n)):[];return this.callMethod(m,u,g,n)}return this.getAttr(m,u,n)}if(/^[A-Za-z_][A-Za-z0-9_]*$/.test(t)){if(n.has(t))return n.get(t);throw new Q("NameError",`name '${t}' is not defined`)}if(/^[A-Za-z_][A-Za-z0-9_.]+$/.test(t)){let c=t.split("."),u=n.get(c[0])??(()=>{throw new Q("NameError",`name '${c[0]}' is not defined`)})();for(let d of c.slice(1))u=this.getAttr(u,d,n);return u}return b}findMatchingBracket(t,n){let r=n==="["?"]":n==="("?")":"}",i=0;for(let s=t.length-1;s>=0;s--)if(t[s]===r&&i++,t[s]===n&&(i--,i===0))return s;return-1}findDotAccess(t){let n=0,r=!1,i="";for(let s=t.length-1;s>0;s--){let o=t[s];if(r){o===i&&t[s-1]!=="\\"&&(r=!1);continue}if(o==='"'||o==="'"){r=!0,i=o;continue}if(")]}".includes(o)){n++;continue}if("([{".includes(o)){n--;continue}if(n!==0||o!==".")continue;let a=t.slice(0,s).trim(),c=t.slice(s+1).match(/^(\w+)(\([\s\S]*\))?$/);if(c&&!/^-?\d+$/.test(a))return{objExpr:a,attr:c[1],callPart:c[2]}}return null}tryBinaryOp(t,n,r){let i=0,s=!1,o="";for(let a=t.length-1;a>=0;a--){let l=t[a];if(s){l===o&&t[a-1]!=="\\"&&(s=!1);continue}if(l==='"'||l==="'"){s=!0,o=l;continue}if(")]}".includes(l)){i++;continue}if("([{".includes(l)){i--;continue}if(i===0){for(let c of n)if(t.slice(a,a+c.length)===c){if(c==="*"&&(t[a+1]==="*"||t[a-1]==="*"))continue;let u=t[a-1],d=t[a+c.length];if(/^[a-z]/.test(c)&&(u&&/\w/.test(u)||d&&/\w/.test(d)))continue;let p=t.slice(0,a).trim(),g=t.slice(a+c.length).trim();if(!p||!g)continue;return this.applyBinaryOp(c,p,g,r)}}}}applyBinaryOp(t,n,r,i){if(t==="and"){let a=this.pyEval(n,i);return me(a)?this.pyEval(r,i):a}if(t==="or"){let a=this.pyEval(n,i);return me(a)?a:this.pyEval(r,i)}let s=this.pyEval(n,i),o=this.pyEval(r,i);switch(t){case"+":return typeof s=="string"&&typeof o=="string"?s+o:Array.isArray(s)&&Array.isArray(o)?[...s,...o]:s+o;case"-":return s-o;case"*":if(typeof s=="string"&&typeof o=="number")return s.repeat(o);if(Array.isArray(s)&&typeof o=="number"){let a=[];for(let l=0;l<o;l++)a.push(...s);return a}return s*o;case"/":{if(o===0)throw new Q("ZeroDivisionError","division by zero");return s/o}case"//":{if(o===0)throw new Q("ZeroDivisionError","integer division or modulo by zero");return Math.floor(s/o)}case"%":{if(typeof s=="string")return this.pyStringFormat(s,Array.isArray(o)?o:[o]);if(o===0)throw new Q("ZeroDivisionError","integer division or modulo by zero");return s%o}case"**":return s**o;case"==":return re(s)===re(o)||s===o;case"!=":return re(s)!==re(o)&&s!==o;case"<":return s<o;case"<=":return s<=o;case">":return s>o;case">=":return s>=o;case"in":return this.pyIn(o,s);case"not in":return!this.pyIn(o,s);case"is":return s===o||Ne(s)&&Ne(o);case"is not":return!(s===o||Ne(s)&&Ne(o))}return b}pyIn(t,n){return typeof t=="string"?typeof n=="string"&&t.includes(n):Array.isArray(t)?t.some(r=>re(r)===re(n)):G(t)?t.data.has(R(n)):!1}subscript(t,n,r){if(n.includes(":")){let s=n.split(":").map(l=>l.trim()),o=s[0]?this.pyEval(s[0],r):void 0,a=s[1]?this.pyEval(s[1],r):void 0;return typeof t=="string"||Array.isArray(t)?t.slice(o,a):b}let i=this.pyEval(n,r);if(Array.isArray(t)){let s=i;return s<0&&(s=t.length+s),t[s]??b}if(typeof t=="string"){let s=i;return s<0&&(s=t.length+s),t[s]??b}if(G(t))return t.data.get(R(i))??b;throw new Q("TypeError",`'${Be(t)}' is not subscriptable`)}getAttr(t,n,r){return G(t)?t.data.has(n)?t.data.get(n):n==="path"&&t.path?t.path:b:ut(t)?t.attrs.get(n)??b:typeof t=="string"?{__class__:{__pytype__:"class",name:"str"}}[n]??b:b}callMethod(t,n,r,i){if(typeof t=="string")switch(n){case"upper":return t.toUpperCase();case"lower":return t.toLowerCase();case"strip":return(r[0]?t.replace(new RegExp(`[${r[0]}]+`,"g"),""):t).trim();case"lstrip":return t.trimStart();case"rstrip":return t.trimEnd();case"split":return t.split(typeof r[0]=="string"?r[0]:/\s+/).filter((s,o)=>o>0||s!=="");case"splitlines":return t.split(`
974
- `);case"join":return ne(r[0]??[]).map(R).join(t);case"replace":return t.replaceAll(R(r[0]??""),R(r[1]??""));case"startswith":return t.startsWith(R(r[0]??""));case"endswith":return t.endsWith(R(r[0]??""));case"find":return t.indexOf(R(r[0]??""));case"index":{let s=t.indexOf(R(r[0]??""));if(s===-1)throw new Q("ValueError","substring not found");return s}case"count":return t.split(R(r[0]??"")).length-1;case"format":return this.pyStringFormat(t,r);case"encode":return t;case"decode":return t;case"isdigit":return/^\d+$/.test(t);case"isalpha":return/^[a-zA-Z]+$/.test(t);case"isalnum":return/^[a-zA-Z0-9]+$/.test(t);case"isspace":return/^\s+$/.test(t);case"isupper":return t===t.toUpperCase()&&t!==t.toLowerCase();case"islower":return t===t.toLowerCase()&&t!==t.toUpperCase();case"center":{let s=r[0]??0,o=R(r[1]??" ");return t.padStart(Math.floor((s+t.length)/2),o).padEnd(s,o)}case"ljust":return t.padEnd(r[0]??0,R(r[1]??" "));case"rjust":return t.padStart(r[0]??0,R(r[1]??" "));case"zfill":return t.padStart(r[0]??0,"0");case"title":return t.replace(/\b\w/g,s=>s.toUpperCase());case"capitalize":return t[0]?.toUpperCase()+t.slice(1).toLowerCase();case"swapcase":return[...t].map(s=>s===s.toUpperCase()?s.toLowerCase():s.toUpperCase()).join("")}if(Array.isArray(t))switch(n){case"append":return t.push(r[0]??b),b;case"extend":for(let s of ne(r[0]??[]))t.push(s);return b;case"insert":return t.splice(r[0]??0,0,r[1]??b),b;case"pop":{let s=r[0]!==void 0?r[0]:-1,o=s<0?t.length+s:s;return t.splice(o,1)[0]??b}case"remove":{let s=t.findIndex(o=>re(o)===re(r[0]??b));return s!==-1&&t.splice(s,1),b}case"index":{let s=t.findIndex(o=>re(o)===re(r[0]??b));if(s===-1)throw new Q("ValueError","is not in list");return s}case"count":return t.filter(s=>re(s)===re(r[0]??b)).length;case"sort":return t.sort((s,o)=>typeof s=="number"&&typeof o=="number"?s-o:R(s).localeCompare(R(o))),b;case"reverse":return t.reverse(),b;case"copy":return[...t];case"clear":return t.splice(0),b}if(G(t))switch(n){case"keys":return[...t.data.keys()];case"values":return[...t.data.values()];case"items":return[...t.data.entries()].map(([s,o])=>[s,o]);case"get":return t.data.get(R(r[0]??""))??r[1]??b;case"update":{if(G(r[0]??b))for(let[s,o]of r[0].data)t.data.set(s,o);return b}case"pop":{let s=R(r[0]??""),o=t.data.get(s)??r[1]??b;return t.data.delete(s),o}case"clear":return t.data.clear(),b;case"copy":return X([...t.data.entries()]);case"setdefault":{let s=R(r[0]??"");return t.data.has(s)||t.data.set(s,r[1]??b),t.data.get(s)??b}}if(G(t)&&t.data.has("name")&&t.data.get("name")==="posix")switch(n){case"getcwd":return this.cwd;case"getenv":return typeof r[0]=="string"?y.env[r[0]]??r[1]??b:b;case"listdir":return[];case"path":return t}if(G(t))switch(n){case"join":return r.map(R).join("/").replace(/\/+/g,"/");case"exists":return!1;case"dirname":return R(r[0]??"").split("/").slice(0,-1).join("/")||"/";case"basename":return R(r[0]??"").split("/").pop()??"";case"abspath":return R(r[0]??"");case"splitext":{let s=R(r[0]??""),o=s.lastIndexOf(".");return o>0?[s.slice(0,o),s.slice(o)]:[s,""]}case"isfile":return!1;case"isdir":return!1}if(G(t)&&t.data.has("version")&&t.data.get("version")===Lt&&n==="exit")throw new pt(r[0]??0);if(G(t)){let s={sqrt:Math.sqrt,floor:Math.floor,ceil:Math.ceil,fabs:Math.abs,log:Math.log,log2:Math.log2,log10:Math.log10,sin:Math.sin,cos:Math.cos,tan:Math.tan,asin:Math.asin,acos:Math.acos,atan:Math.atan,atan2:Math.atan2,pow:Math.pow,exp:Math.exp,hypot:Math.hypot};if(n in s){let o=s[n];return o(...r.map(a=>a))}if(n==="factorial"){let o=r[0]??0,a=1;for(;o>1;)a*=o--;return a}if(n==="gcd"){let o=Math.abs(r[0]??0),a=Math.abs(r[1]??0);for(;a;)[o,a]=[a,o%a];return o}}if(G(t)){if(n==="dumps"){let s=G(r[1]??b)?r[1]:void 0,o=s?s.data.get("indent"):void 0;return JSON.stringify(this.pyToJs(r[0]??b),null,o)}if(n==="loads")return this.jsToPy(JSON.parse(R(r[0]??"")))}if(ut(t)){let s=t.attrs.get(n)??t.cls.methods.get(n)??b;if($e(s)){let o=new Map(s.closure);return o.set("self",t),s.params.slice(1).forEach((a,l)=>o.set(a,r[l]??b)),this.execBlock(s.body,o)}}throw new Q("AttributeError",`'${Be(t)}' object has no attribute '${n}'`)}pyStringFormat(t,n){let r=0;return t.replace(/%([diouxXeEfFgGcrs%])/g,(i,s)=>{if(s==="%")return"%";let o=n[r++];switch(s){case"d":case"i":return String(Math.trunc(o));case"f":return o.toFixed(6);case"s":return R(o??b);case"r":return re(o??b);default:return String(o)}})}pyToJs(t){return Ne(t)?null:G(t)?Object.fromEntries([...t.data.entries()].map(([n,r])=>[n,this.pyToJs(r)])):Array.isArray(t)?t.map(n=>this.pyToJs(n)):t}jsToPy(t){return t==null?b:typeof t=="boolean"||typeof t=="number"||typeof t=="string"?t:Array.isArray(t)?t.map(n=>this.jsToPy(n)):typeof t=="object"?X(Object.entries(t).map(([n,r])=>[n,this.jsToPy(r)])):b}callBuiltin(t,n,r){if(r.has(t)){let i=r.get(t)??b;return $e(i)?this.callFunc(i,n,r):cn(i)?this.instantiate(i,n,r):i}switch(t){case"print":return this.output.push(n.map(R).join(" ")+`
975
- `.replace(/\\n/g,"")),b;case"input":return this.output.push(R(n[0]??"")),"";case"int":{if(n.length===0)return 0;let i=n[1]??10,s=parseInt(R(n[0]??0),i);return Number.isNaN(s)?(()=>{throw new Q("ValueError","invalid literal for int()")})():s}case"float":{if(n.length===0)return 0;let i=parseFloat(R(n[0]??0));return Number.isNaN(i)?(()=>{throw new Q("ValueError","could not convert to float")})():i}case"str":return n.length===0?"":R(n[0]??b);case"bool":return n.length===0?!1:me(n[0]??b);case"list":return n.length===0?[]:ne(n[0]??[]);case"tuple":return n.length===0?[]:ne(n[0]??[]);case"set":return n.length===0?[]:[...new Set(ne(n[0]??[]).map(re))].map(i=>ne(n[0]??[]).find(o=>re(o)===i)??b);case"dict":return n.length===0?X():G(n[0]??b)?n[0]:X();case"bytes":return typeof n[0]=="string"?n[0]:R(n[0]??"");case"bytearray":return n.length===0?"":R(n[0]??"");case"type":return n.length===1?`<class '${Be(n[0]??b)}'>`:b;case"isinstance":return Be(n[0]??b)===R(n[1]??"");case"issubclass":return!1;case"callable":return $e(n[0]??b);case"hasattr":return G(n[0]??b)?n[0].data.has(R(n[1]??"")):!1;case"getattr":return G(n[0]??b)?n[0].data.get(R(n[1]??""))??n[2]??b:n[2]??b;case"setattr":return G(n[0]??b)&&n[0].data.set(R(n[1]??""),n[2]??b),b;case"len":{let i=n[0]??b;if(typeof i=="string"||Array.isArray(i))return i.length;if(G(i))return i.data.size;if(Qe(i))return as(i);throw new Q("TypeError",`object of type '${Be(i)}' has no len()`)}case"range":return n.length===1?ln(0,n[0]):n.length===2?ln(n[0],n[1]):ln(n[0],n[1],n[2]);case"enumerate":{let i=n[1]??0;return ne(n[0]??[]).map((s,o)=>[o+i,s])}case"zip":{let i=n.map(ne),s=Math.min(...i.map(o=>o.length));return Array.from({length:s},(o,a)=>i.map(l=>l[a]??b))}case"map":{let i=n[0]??b;return ne(n[1]??[]).map(s=>$e(i)?this.callFunc(i,[s],r):b)}case"filter":{let i=n[0]??b;return ne(n[1]??[]).filter(s=>$e(i)?me(this.callFunc(i,[s],r)):me(s))}case"reduce":{let i=n[0]??b,s=ne(n[1]??[]);if(s.length===0)return n[2]??b;let o=n[2]!==void 0?n[2]:s[0];for(let a of n[2]!==void 0?s:s.slice(1))o=$e(i)?this.callFunc(i,[o,a],r):b;return o}case"sorted":{let i=[...ne(n[0]??[])],s=n[1]??b,o=G(s)?s.data.get("key")??b:s;return i.sort((a,l)=>{let c=$e(o)?this.callFunc(o,[a],r):a,u=$e(o)?this.callFunc(o,[l],r):l;return typeof c=="number"&&typeof u=="number"?c-u:R(c).localeCompare(R(u))}),i}case"reversed":return[...ne(n[0]??[])].reverse();case"any":return ne(n[0]??[]).some(me);case"all":return ne(n[0]??[]).every(me);case"sum":return ne(n[0]??[]).reduce((i,s)=>i+s,n[1]??0);case"max":return(n.length===1?ne(n[0]??[]):n).reduce((s,o)=>s>=o?s:o);case"min":return(n.length===1?ne(n[0]??[]):n).reduce((s,o)=>s<=o?s:o);case"abs":return Math.abs(n[0]??0);case"round":return n[1]!==void 0?parseFloat(n[0].toFixed(n[1])):Math.round(n[0]??0);case"divmod":{let i=n[0],s=n[1];return[Math.floor(i/s),i%s]}case"pow":return n[0]**n[1];case"hex":return`0x${n[0].toString(16)}`;case"oct":return`0o${n[0].toString(8)}`;case"bin":return`0b${n[0].toString(2)}`;case"ord":return R(n[0]??"").charCodeAt(0);case"chr":return String.fromCharCode(n[0]??0);case"id":return Math.floor(Math.random()*4294967295);case"hash":return typeof n[0]=="number"?n[0]:R(n[0]??"").split("").reduce((i,s)=>i*31+s.charCodeAt(0)|0,0);case"open":throw new Q("PermissionError","open() not available in virtual runtime");case"repr":return re(n[0]??b);case"iter":return n[0]??b;case"next":return Array.isArray(n[0])&&n[0].length>0?n[0].shift():n[1]??(()=>{throw new Q("StopIteration","")})();case"vars":return X([...r.entries()].map(([i,s])=>[i,s]));case"globals":return X([...r.entries()].map(([i,s])=>[i,s]));case"locals":return X([...r.entries()].map(([i,s])=>[i,s]));case"dir":{if(n.length===0)return[...r.keys()];let i=n[0]??b;return typeof i=="string"?["upper","lower","strip","split","join","replace","find","format","encode","startswith","endswith","count","isdigit","isalpha","title","capitalize"]:Array.isArray(i)?["append","extend","insert","pop","remove","index","count","sort","reverse","copy","clear"]:G(i)?["keys","values","items","get","update","pop","clear","copy","setdefault"]:[]}case"Exception":case"ValueError":case"TypeError":case"KeyError":case"IndexError":case"AttributeError":case"NameError":case"RuntimeError":case"StopIteration":case"NotImplementedError":case"OSError":case"IOError":throw new Q(t,R(n[0]??""));case"exec":return this.execScript(R(n[0]??""),r),b;case"eval":return this.pyEval(R(n[0]??""),r);default:throw new Q("NameError",`name '${t}' is not defined`)}}callFunc(t,n,r){let i=new Map(t.closure);t.params.forEach((s,o)=>{if(s.startsWith("*")){i.set(s.slice(1),n.slice(o));return}i.set(s,n[o]??b)});try{return this.execBlock(t.body,i)}catch(s){if(s instanceof Ze)return s.value;throw s}}instantiate(t,n,r){let i={__pytype__:"instance",cls:t,attrs:new Map};return t.methods.get("__init__")&&this.callMethod(i,"__init__",n,r),i}execScript(t,n){let r=t.split(`
976
- `);this.execLines(r,0,n)}execLines(t,n,r){let i=n;for(;i<t.length;){let s=t[i];if(!s.trim()||s.trim().startsWith("#")){i++;continue}i=this.execStatement(t,i,r)}return i}execBlock(t,n){try{this.execLines(t,0,n)}catch(r){if(r instanceof Ze)return r.value;throw r}return b}getIndent(t){let n=0;for(let r of t)if(r===" ")n++;else if(r===" ")n+=4;else break;return n}collectBlock(t,n,r){let i=[];for(let s=n;s<t.length;s++){let o=t[s];if(!o.trim()){i.push("");continue}if(this.getIndent(o)<=r)break;i.push(o.slice(r+4))}return i}execStatement(t,n,r){let i=t[n],s=i.trim(),o=this.getIndent(i);if(s==="pass")return n+1;if(s==="break")throw new dt;if(s==="continue")throw new mt;let a=s.match(/^return(?:\s+(.+))?$/);if(a)throw new Ze(a[1]?this.pyEval(a[1],r):b);let l=s.match(/^raise(?:\s+(.+))?$/);if(l){if(l[1]){let x=this.pyEval(l[1],r);throw new Q(typeof x=="string"?x:Be(x),R(x))}throw new Q("RuntimeError","")}let c=s.match(/^assert\s+(.+?)(?:,\s*(.+))?$/);if(c){if(!me(this.pyEval(c[1],r)))throw new Q("AssertionError",c[2]?R(this.pyEval(c[2],r)):"");return n+1}let u=s.match(/^del\s+(.+)$/);if(u)return r.delete(u[1].trim()),n+1;let d=s.match(/^import\s+(\w+)(?:\s+as\s+(\w+))?$/);if(d){let[,x,A]=d,F=os[x];if(F){let k=F(this.cwd);this.modules.set(x,k),r.set(A??x,k)}return n+1}let m=s.match(/^from\s+(\w+)\s+import\s+(.+)$/);if(m){let[,x,A]=m,F=os[x];if(F){let k=F(this.cwd);if(A?.trim()==="*")for(let[w,D]of k.data)r.set(w,D);else for(let w of A.split(",").map(D=>D.trim()))r.set(w,k.data.get(w)??b)}return n+1}let p=s.match(/^def\s+(\w+)\s*\(([^)]*)\)\s*:$/);if(p){let[,x,A]=p,F=A.split(",").map(D=>D.trim()).filter(Boolean),k=this.collectBlock(t,n+1,o),w={__pytype__:"func",name:x,params:F,body:k,closure:new Map(r)};return r.set(x,w),n+1+k.length}let g=s.match(/^class\s+(\w+)(?:\(([^)]*)\))?\s*:$/);if(g){let[,x,A]=g,F=A?A.split(",").map(K=>K.trim()):[],k=this.collectBlock(t,n+1,o),w={__pytype__:"class",name:x,methods:new Map,bases:F},D=0;for(;D<k.length;){let q=k[D].trim().match(/^def\s+(\w+)\s*\(([^)]*)\)\s*:$/);if(q){let[,ee,be]=q,pe=be.split(",").map(O=>O.trim()).filter(Boolean),ke=this.collectBlock(k,D+1,0);w.methods.set(ee,{__pytype__:"func",name:ee,params:pe,body:ke,closure:new Map(r)}),D+=1+ke.length}else D++}return r.set(x,w),n+1+k.length}if(s.startsWith("if ")&&s.endsWith(":")){let x=s.slice(3,-1).trim(),A=this.collectBlock(t,n+1,o),F=A.length+1;if(me(this.pyEval(x,r))){this.execBlock(A,new Map(r).also?.(D=>{for(let[K,q]of r)D.set(K,q)})??r),this.runBlockInScope(A,r);let w=n+1+A.length;for(;w<t.length;){let D=t[w].trim();if(this.getIndent(t[w])<o||!D.startsWith("elif")&&!D.startsWith("else"))break;let K=this.collectBlock(t,w+1,o);w+=1+K.length}return w}let k=n+1+A.length;for(;k<t.length;){let w=t[k],D=w.trim();if(this.getIndent(w)!==o)break;let K=D.match(/^elif\s+(.+):$/);if(K){let q=this.collectBlock(t,k+1,o);if(me(this.pyEval(K[1],r))){for(this.runBlockInScope(q,r),k+=1+q.length;k<t.length;){let ee=t[k].trim();if(this.getIndent(t[k])!==o||!ee.startsWith("elif")&&!ee.startsWith("else"))break;let be=this.collectBlock(t,k+1,o);k+=1+be.length}return k}k+=1+q.length;continue}if(D==="else:"){let q=this.collectBlock(t,k+1,o);return this.runBlockInScope(q,r),k+1+q.length}break}return k}let S=s.match(/^for\s+(.+?)\s+in\s+(.+?)\s*:$/);if(S){let[,x,A]=S,F=ne(this.pyEval(A.trim(),r)),k=this.collectBlock(t,n+1,o),w=[],D=n+1+k.length;D<t.length&&t[D]?.trim()==="else:"&&(w=this.collectBlock(t,D+1,o),D+=1+w.length);let K=!1;for(let q of F){if(x.includes(",")){let ee=x.split(",").map(pe=>pe.trim()),be=Array.isArray(q)?q:[q];ee.forEach((pe,ke)=>r.set(pe,be[ke]??b))}else r.set(x.trim(),q);try{this.runBlockInScope(k,r)}catch(ee){if(ee instanceof dt){K=!0;break}if(ee instanceof mt)continue;throw ee}}return!K&&w.length&&this.runBlockInScope(w,r),D}let v=s.match(/^while\s+(.+?)\s*:$/);if(v){let x=v[1],A=this.collectBlock(t,n+1,o),F=0;for(;me(this.pyEval(x,r))&&F++<1e5;)try{this.runBlockInScope(A,r)}catch(k){if(k instanceof dt)break;if(k instanceof mt)continue;throw k}return n+1+A.length}if(s==="try:"){let x=this.collectBlock(t,n+1,o),A=n+1+x.length,F=[],k=[],w=[];for(;A<t.length;){let K=t[A],q=K.trim();if(this.getIndent(K)!==o)break;if(q.startsWith("except")){let ee=q.match(/^except(?:\s+(\w+)(?:\s+as\s+(\w+))?)?\s*:$/),be=ee?.[1]??null,pe=ee?.[2],ke=this.collectBlock(t,A+1,o);F.push({exc:be,body:ke}),pe&&r.set(pe,""),A+=1+ke.length}else if(q==="else:")w=this.collectBlock(t,A+1,o),A+=1+w.length;else if(q==="finally:")k=this.collectBlock(t,A+1,o),A+=1+k.length;else break}let D=null;try{this.runBlockInScope(x,r),w.length&&this.runBlockInScope(w,r)}catch(K){if(K instanceof Q){D=K;let q=!1;for(let ee of F)if(ee.exc===null||ee.exc===K.type||ee.exc==="Exception"){this.runBlockInScope(ee.body,r),q=!0;break}if(!q)throw K}else throw K}finally{k.length&&this.runBlockInScope(k,r)}return A}let E=s.match(/^with\s+(.+?)\s+as\s+(\w+)\s*:$/);if(E){let x=this.collectBlock(t,n+1,o);return r.set(E[2],b),this.runBlockInScope(x,r),n+1+x.length}let T=s.match(/^([A-Za-z_][A-Za-z0-9_]*)\s*(\+=|-=|\*=|\/\/=|\/=|%=|\*\*=|&=|\|=)\s*(.+)$/);if(T){let[,x,A,F]=T,k=r.get(x)??0,w=this.pyEval(F,r),D;switch(A){case"+=":D=typeof k=="string"?k+R(w):k+w;break;case"-=":D=k-w;break;case"*=":D=k*w;break;case"/=":D=k/w;break;case"//=":D=Math.floor(k/w);break;case"%=":D=k%w;break;case"**=":D=k**w;break;default:D=w}return r.set(x,D),n+1}let _=s.match(/^([A-Za-z_][A-Za-z0-9_]*)\[(.+)\]\s*=\s*(.+)$/);if(_){let[,x,A,F]=_,k=r.get(x)??b,w=this.pyEval(F,r)??b,D=this.pyEval(A,r)??b;return Array.isArray(k)?k[D]=w:G(k)&&k.data.set(R(D),w),n+1}let P=s.match(/^([A-Za-z_][A-Za-z0-9_.]+)\s*=\s*(.+)$/);if(P){let x=P[1].lastIndexOf(".");if(x!==-1){let A=P[1].slice(0,x),F=P[1].slice(x+1),k=this.pyEval(P[2],r),w=this.pyEval(A,r);return G(w)?w.data.set(F,k):ut(w)&&w.attrs.set(F,k),n+1}}let N=s.match(/^([A-Za-z_][A-Za-z0-9_,\s]*),\s*([A-Za-z_][A-Za-z0-9_]*)\s*=\s*(.+)$/);if(N){let x=this.pyEval(N[3],r),A=s.split("=")[0].split(",").map(k=>k.trim()),F=ne(x);return A.forEach((k,w)=>r.set(k,F[w]??b)),n+1}let I=s.match(/^([A-Za-z_][A-Za-z0-9_]*)\s*(?::[^=]+)?\s*=\s*(.+)$/);if(I){let[,x,A]=I;return r.set(x,this.pyEval(A,r)),n+1}try{this.pyEval(s,r)}catch(x){if(x instanceof Q||x instanceof pt)throw x}return n+1}runBlockInScope(t,n){this.execLines(t,0,n)}run(t){let n=ko(this.cwd);try{this.execScript(t,n)}catch(r){return r instanceof pt?{stdout:this.getOutput(),stderr:this.getStderr(),exitCode:r.code}:r instanceof Q?(this.stderr.push(r.toString()),{stdout:this.getOutput(),stderr:this.getStderr(),exitCode:1}):r instanceof Ze?{stdout:this.getOutput(),stderr:this.getStderr(),exitCode:0}:(this.stderr.push(`RuntimeError: ${r}`),{stdout:this.getOutput(),stderr:this.getStderr(),exitCode:1})}return{stdout:this.getOutput(),stderr:this.getStderr(),exitCode:0}}},ls={name:"python3",aliases:["python"],description:"Python 3 interpreter (virtual)",category:"system",params:["[--version] [-c <code>] [-V] [file]"],run:({args:e,shell:t,cwd:n})=>{if(!t.packageManager.isInstalled("python3"))return{stderr:`bash: python3: command not found
973
+ `).replace(/\\t/g," ").replace(/\\r/g,"\r").replace(/\\\\/g,"\\").replace(/\\'/g,"'").replace(/\\"/g,'"');let r=t.match(/^f(['"])([\s\S]*)\1$/);if(r){let c=r[2];return c=c.replace(/\{([^{}]+)\}/g,(u,d)=>{try{return R(this.pyEval(d.trim(),n))}catch{return`{${d}}`}}),c}let i=t.match(/^b(['"])(.*)\1$/s);if(i)return i[2];if(t.startsWith("[")&&t.endsWith("]")){let c=t.slice(1,-1).trim();if(!c)return[];let u=c.match(/^(.+?)\s+for\s+(\w+)\s+in\s+(.+?)(?:\s+if\s+(.+))?$/);if(u){let[,d,m,p,g]=u,S=ne(this.pyEval(p.trim(),n)),v=[];for(let E of S){let T=new Map(n);T.set(m,E),!(g&&!me(this.pyEval(g,T)))&&v.push(this.pyEval(d.trim(),T))}return v}return this.splitArgs(c).map(d=>this.pyEval(d,n))}if(t.startsWith("(")&&t.endsWith(")")){let c=t.slice(1,-1).trim();if(!c)return[];let u=this.splitArgs(c);return u.length===1&&!c.endsWith(",")?this.pyEval(u[0],n):u.map(d=>this.pyEval(d,n))}if(t.startsWith("{")&&t.endsWith("}")){let c=t.slice(1,-1).trim();if(!c)return Q();let u=Q();for(let d of this.splitArgs(c)){let m=d.indexOf(":");if(m===-1)continue;let p=R(this.pyEval(d.slice(0,m).trim(),n)),g=this.pyEval(d.slice(m+1).trim(),n);u.data.set(p,g)}return u}let s=t.match(/^not\s+(.+)$/);if(s)return!me(this.pyEval(s[1],n));let o=[["or"],["and"],["in","not in","is not","is","==","!=","<=",">=","<",">"],["+","-"],["**"],["*","//","/","%"]];for(let c of o){let u=this.tryBinaryOp(t,c,n);if(u!==void 0)return u}if(t.startsWith("-")){let c=this.pyEval(t.slice(1),n);if(typeof c=="number")return-c}if(y.env.PY_DEBUG&&console.error("eval:",JSON.stringify(t)),t.endsWith("]")&&!t.startsWith("[")){let c=this.findMatchingBracket(t,"[");if(c!==-1){let u=this.pyEval(t.slice(0,c),n),d=t.slice(c+1,-1);return this.subscript(u,d,n)}}let a=t.match(/^([A-Za-z_][A-Za-z0-9_]*)\s*\(([\s\S]*)\)$/);if(a){let[,c,u]=a,d=(u?.trim()?this.splitArgs(u):[]).map(m=>this.pyEval(m,n));return this.callBuiltin(c,d,n)}let l=this.findDotAccess(t);if(l){let{objExpr:c,attr:u,callPart:d}=l,m=this.pyEval(c,n);if(d!==void 0){let p=d.slice(1,-1),g=p.trim()?this.splitArgs(p).map(S=>this.pyEval(S,n)):[];return this.callMethod(m,u,g,n)}return this.getAttr(m,u,n)}if(/^[A-Za-z_][A-Za-z0-9_]*$/.test(t)){if(n.has(t))return n.get(t);throw new X("NameError",`name '${t}' is not defined`)}if(/^[A-Za-z_][A-Za-z0-9_.]+$/.test(t)){let c=t.split("."),u=n.get(c[0])??(()=>{throw new X("NameError",`name '${c[0]}' is not defined`)})();for(let d of c.slice(1))u=this.getAttr(u,d,n);return u}return b}findMatchingBracket(t,n){let r=n==="["?"]":n==="("?")":"}",i=0;for(let s=t.length-1;s>=0;s--)if(t[s]===r&&i++,t[s]===n&&(i--,i===0))return s;return-1}findDotAccess(t){let n=0,r=!1,i="";for(let s=t.length-1;s>0;s--){let o=t[s];if(r){o===i&&t[s-1]!=="\\"&&(r=!1);continue}if(o==='"'||o==="'"){r=!0,i=o;continue}if(")]}".includes(o)){n++;continue}if("([{".includes(o)){n--;continue}if(n!==0||o!==".")continue;let a=t.slice(0,s).trim(),c=t.slice(s+1).match(/^(\w+)(\([\s\S]*\))?$/);if(c&&!/^-?\d+$/.test(a))return{objExpr:a,attr:c[1],callPart:c[2]}}return null}tryBinaryOp(t,n,r){let i=0,s=!1,o="";for(let a=t.length-1;a>=0;a--){let l=t[a];if(s){l===o&&t[a-1]!=="\\"&&(s=!1);continue}if(l==='"'||l==="'"){s=!0,o=l;continue}if(")]}".includes(l)){i++;continue}if("([{".includes(l)){i--;continue}if(i===0){for(let c of n)if(t.slice(a,a+c.length)===c){if(c==="*"&&(t[a+1]==="*"||t[a-1]==="*"))continue;let u=t[a-1],d=t[a+c.length];if(/^[a-z]/.test(c)&&(u&&/\w/.test(u)||d&&/\w/.test(d)))continue;let p=t.slice(0,a).trim(),g=t.slice(a+c.length).trim();if(!p||!g)continue;return this.applyBinaryOp(c,p,g,r)}}}}applyBinaryOp(t,n,r,i){if(t==="and"){let a=this.pyEval(n,i);return me(a)?this.pyEval(r,i):a}if(t==="or"){let a=this.pyEval(n,i);return me(a)?a:this.pyEval(r,i)}let s=this.pyEval(n,i),o=this.pyEval(r,i);switch(t){case"+":return typeof s=="string"&&typeof o=="string"?s+o:Array.isArray(s)&&Array.isArray(o)?[...s,...o]:s+o;case"-":return s-o;case"*":if(typeof s=="string"&&typeof o=="number")return s.repeat(o);if(Array.isArray(s)&&typeof o=="number"){let a=[];for(let l=0;l<o;l++)a.push(...s);return a}return s*o;case"/":{if(o===0)throw new X("ZeroDivisionError","division by zero");return s/o}case"//":{if(o===0)throw new X("ZeroDivisionError","integer division or modulo by zero");return Math.floor(s/o)}case"%":{if(typeof s=="string")return this.pyStringFormat(s,Array.isArray(o)?o:[o]);if(o===0)throw new X("ZeroDivisionError","integer division or modulo by zero");return s%o}case"**":return s**o;case"==":return re(s)===re(o)||s===o;case"!=":return re(s)!==re(o)&&s!==o;case"<":return s<o;case"<=":return s<=o;case">":return s>o;case">=":return s>=o;case"in":return this.pyIn(o,s);case"not in":return!this.pyIn(o,s);case"is":return s===o||Ne(s)&&Ne(o);case"is not":return!(s===o||Ne(s)&&Ne(o))}return b}pyIn(t,n){return typeof t=="string"?typeof n=="string"&&t.includes(n):Array.isArray(t)?t.some(r=>re(r)===re(n)):G(t)?t.data.has(R(n)):!1}subscript(t,n,r){if(n.includes(":")){let s=n.split(":").map(l=>l.trim()),o=s[0]?this.pyEval(s[0],r):void 0,a=s[1]?this.pyEval(s[1],r):void 0;return typeof t=="string"||Array.isArray(t)?t.slice(o,a):b}let i=this.pyEval(n,r);if(Array.isArray(t)){let s=i;return s<0&&(s=t.length+s),t[s]??b}if(typeof t=="string"){let s=i;return s<0&&(s=t.length+s),t[s]??b}if(G(t))return t.data.get(R(i))??b;throw new X("TypeError",`'${ze(t)}' is not subscriptable`)}getAttr(t,n,r){return G(t)?t.data.has(n)?t.data.get(n):n==="path"&&t.path?t.path:b:dt(t)?t.attrs.get(n)??b:typeof t=="string"?{__class__:{__pytype__:"class",name:"str"}}[n]??b:b}callMethod(t,n,r,i){if(typeof t=="string")switch(n){case"upper":return t.toUpperCase();case"lower":return t.toLowerCase();case"strip":return(r[0]?t.replace(new RegExp(`[${r[0]}]+`,"g"),""):t).trim();case"lstrip":return t.trimStart();case"rstrip":return t.trimEnd();case"split":return t.split(typeof r[0]=="string"?r[0]:/\s+/).filter((s,o)=>o>0||s!=="");case"splitlines":return t.split(`
974
+ `);case"join":return ne(r[0]??[]).map(R).join(t);case"replace":return t.replaceAll(R(r[0]??""),R(r[1]??""));case"startswith":return t.startsWith(R(r[0]??""));case"endswith":return t.endsWith(R(r[0]??""));case"find":return t.indexOf(R(r[0]??""));case"index":{let s=t.indexOf(R(r[0]??""));if(s===-1)throw new X("ValueError","substring not found");return s}case"count":return t.split(R(r[0]??"")).length-1;case"format":return this.pyStringFormat(t,r);case"encode":return t;case"decode":return t;case"isdigit":return/^\d+$/.test(t);case"isalpha":return/^[a-zA-Z]+$/.test(t);case"isalnum":return/^[a-zA-Z0-9]+$/.test(t);case"isspace":return/^\s+$/.test(t);case"isupper":return t===t.toUpperCase()&&t!==t.toLowerCase();case"islower":return t===t.toLowerCase()&&t!==t.toUpperCase();case"center":{let s=r[0]??0,o=R(r[1]??" ");return t.padStart(Math.floor((s+t.length)/2),o).padEnd(s,o)}case"ljust":return t.padEnd(r[0]??0,R(r[1]??" "));case"rjust":return t.padStart(r[0]??0,R(r[1]??" "));case"zfill":return t.padStart(r[0]??0,"0");case"title":return t.replace(/\b\w/g,s=>s.toUpperCase());case"capitalize":return t[0]?.toUpperCase()+t.slice(1).toLowerCase();case"swapcase":return[...t].map(s=>s===s.toUpperCase()?s.toLowerCase():s.toUpperCase()).join("")}if(Array.isArray(t))switch(n){case"append":return t.push(r[0]??b),b;case"extend":for(let s of ne(r[0]??[]))t.push(s);return b;case"insert":return t.splice(r[0]??0,0,r[1]??b),b;case"pop":{let s=r[0]!==void 0?r[0]:-1,o=s<0?t.length+s:s;return t.splice(o,1)[0]??b}case"remove":{let s=t.findIndex(o=>re(o)===re(r[0]??b));return s!==-1&&t.splice(s,1),b}case"index":{let s=t.findIndex(o=>re(o)===re(r[0]??b));if(s===-1)throw new X("ValueError","is not in list");return s}case"count":return t.filter(s=>re(s)===re(r[0]??b)).length;case"sort":return t.sort((s,o)=>typeof s=="number"&&typeof o=="number"?s-o:R(s).localeCompare(R(o))),b;case"reverse":return t.reverse(),b;case"copy":return[...t];case"clear":return t.splice(0),b}if(G(t))switch(n){case"keys":return[...t.data.keys()];case"values":return[...t.data.values()];case"items":return[...t.data.entries()].map(([s,o])=>[s,o]);case"get":return t.data.get(R(r[0]??""))??r[1]??b;case"update":{if(G(r[0]??b))for(let[s,o]of r[0].data)t.data.set(s,o);return b}case"pop":{let s=R(r[0]??""),o=t.data.get(s)??r[1]??b;return t.data.delete(s),o}case"clear":return t.data.clear(),b;case"copy":return Q([...t.data.entries()]);case"setdefault":{let s=R(r[0]??"");return t.data.has(s)||t.data.set(s,r[1]??b),t.data.get(s)??b}}if(G(t)&&t.data.has("name")&&t.data.get("name")==="posix")switch(n){case"getcwd":return this.cwd;case"getenv":return typeof r[0]=="string"?y.env[r[0]]??r[1]??b:b;case"listdir":return[];case"path":return t}if(G(t))switch(n){case"join":return r.map(R).join("/").replace(/\/+/g,"/");case"exists":return!1;case"dirname":return R(r[0]??"").split("/").slice(0,-1).join("/")||"/";case"basename":return R(r[0]??"").split("/").pop()??"";case"abspath":return R(r[0]??"");case"splitext":{let s=R(r[0]??""),o=s.lastIndexOf(".");return o>0?[s.slice(0,o),s.slice(o)]:[s,""]}case"isfile":return!1;case"isdir":return!1}if(G(t)&&t.data.has("version")&&t.data.get("version")===Ut&&n==="exit")throw new ft(r[0]??0);if(G(t)){let s={sqrt:Math.sqrt,floor:Math.floor,ceil:Math.ceil,fabs:Math.abs,log:Math.log,log2:Math.log2,log10:Math.log10,sin:Math.sin,cos:Math.cos,tan:Math.tan,asin:Math.asin,acos:Math.acos,atan:Math.atan,atan2:Math.atan2,pow:Math.pow,exp:Math.exp,hypot:Math.hypot};if(n in s){let o=s[n];return o(...r.map(a=>a))}if(n==="factorial"){let o=r[0]??0,a=1;for(;o>1;)a*=o--;return a}if(n==="gcd"){let o=Math.abs(r[0]??0),a=Math.abs(r[1]??0);for(;a;)[o,a]=[a,o%a];return o}}if(G(t)){if(n==="dumps"){let s=G(r[1]??b)?r[1]:void 0,o=s?s.data.get("indent"):void 0;return JSON.stringify(this.pyToJs(r[0]??b),null,o)}if(n==="loads")return this.jsToPy(JSON.parse(R(r[0]??"")))}if(dt(t)){let s=t.attrs.get(n)??t.cls.methods.get(n)??b;if($e(s)){let o=new Map(s.closure);return o.set("self",t),s.params.slice(1).forEach((a,l)=>o.set(a,r[l]??b)),this.execBlock(s.body,o)}}throw new X("AttributeError",`'${ze(t)}' object has no attribute '${n}'`)}pyStringFormat(t,n){let r=0;return t.replace(/%([diouxXeEfFgGcrs%])/g,(i,s)=>{if(s==="%")return"%";let o=n[r++];switch(s){case"d":case"i":return String(Math.trunc(o));case"f":return o.toFixed(6);case"s":return R(o??b);case"r":return re(o??b);default:return String(o)}})}pyToJs(t){return Ne(t)?null:G(t)?Object.fromEntries([...t.data.entries()].map(([n,r])=>[n,this.pyToJs(r)])):Array.isArray(t)?t.map(n=>this.pyToJs(n)):t}jsToPy(t){return t==null?b:typeof t=="boolean"||typeof t=="number"||typeof t=="string"?t:Array.isArray(t)?t.map(n=>this.jsToPy(n)):typeof t=="object"?Q(Object.entries(t).map(([n,r])=>[n,this.jsToPy(r)])):b}callBuiltin(t,n,r){if(r.has(t)){let i=r.get(t)??b;return $e(i)?this.callFunc(i,n,r):dn(i)?this.instantiate(i,n,r):i}switch(t){case"print":return this.output.push(n.map(R).join(" ")+`
975
+ `.replace(/\\n/g,"")),b;case"input":return this.output.push(R(n[0]??"")),"";case"int":{if(n.length===0)return 0;let i=n[1]??10,s=parseInt(R(n[0]??0),i);return Number.isNaN(s)?(()=>{throw new X("ValueError","invalid literal for int()")})():s}case"float":{if(n.length===0)return 0;let i=parseFloat(R(n[0]??0));return Number.isNaN(i)?(()=>{throw new X("ValueError","could not convert to float")})():i}case"str":return n.length===0?"":R(n[0]??b);case"bool":return n.length===0?!1:me(n[0]??b);case"list":return n.length===0?[]:ne(n[0]??[]);case"tuple":return n.length===0?[]:ne(n[0]??[]);case"set":return n.length===0?[]:[...new Set(ne(n[0]??[]).map(re))].map(i=>ne(n[0]??[]).find(o=>re(o)===i)??b);case"dict":return n.length===0?Q():G(n[0]??b)?n[0]:Q();case"bytes":return typeof n[0]=="string"?n[0]:R(n[0]??"");case"bytearray":return n.length===0?"":R(n[0]??"");case"type":return n.length===1?`<class '${ze(n[0]??b)}'>`:b;case"isinstance":return ze(n[0]??b)===R(n[1]??"");case"issubclass":return!1;case"callable":return $e(n[0]??b);case"hasattr":return G(n[0]??b)?n[0].data.has(R(n[1]??"")):!1;case"getattr":return G(n[0]??b)?n[0].data.get(R(n[1]??""))??n[2]??b:n[2]??b;case"setattr":return G(n[0]??b)&&n[0].data.set(R(n[1]??""),n[2]??b),b;case"len":{let i=n[0]??b;if(typeof i=="string"||Array.isArray(i))return i.length;if(G(i))return i.data.size;if(Qe(i))return cs(i);throw new X("TypeError",`object of type '${ze(i)}' has no len()`)}case"range":return n.length===1?un(0,n[0]):n.length===2?un(n[0],n[1]):un(n[0],n[1],n[2]);case"enumerate":{let i=n[1]??0;return ne(n[0]??[]).map((s,o)=>[o+i,s])}case"zip":{let i=n.map(ne),s=Math.min(...i.map(o=>o.length));return Array.from({length:s},(o,a)=>i.map(l=>l[a]??b))}case"map":{let i=n[0]??b;return ne(n[1]??[]).map(s=>$e(i)?this.callFunc(i,[s],r):b)}case"filter":{let i=n[0]??b;return ne(n[1]??[]).filter(s=>$e(i)?me(this.callFunc(i,[s],r)):me(s))}case"reduce":{let i=n[0]??b,s=ne(n[1]??[]);if(s.length===0)return n[2]??b;let o=n[2]!==void 0?n[2]:s[0];for(let a of n[2]!==void 0?s:s.slice(1))o=$e(i)?this.callFunc(i,[o,a],r):b;return o}case"sorted":{let i=[...ne(n[0]??[])],s=n[1]??b,o=G(s)?s.data.get("key")??b:s;return i.sort((a,l)=>{let c=$e(o)?this.callFunc(o,[a],r):a,u=$e(o)?this.callFunc(o,[l],r):l;return typeof c=="number"&&typeof u=="number"?c-u:R(c).localeCompare(R(u))}),i}case"reversed":return[...ne(n[0]??[])].reverse();case"any":return ne(n[0]??[]).some(me);case"all":return ne(n[0]??[]).every(me);case"sum":return ne(n[0]??[]).reduce((i,s)=>i+s,n[1]??0);case"max":return(n.length===1?ne(n[0]??[]):n).reduce((s,o)=>s>=o?s:o);case"min":return(n.length===1?ne(n[0]??[]):n).reduce((s,o)=>s<=o?s:o);case"abs":return Math.abs(n[0]??0);case"round":return n[1]!==void 0?parseFloat(n[0].toFixed(n[1])):Math.round(n[0]??0);case"divmod":{let i=n[0],s=n[1];return[Math.floor(i/s),i%s]}case"pow":return n[0]**n[1];case"hex":return`0x${n[0].toString(16)}`;case"oct":return`0o${n[0].toString(8)}`;case"bin":return`0b${n[0].toString(2)}`;case"ord":return R(n[0]??"").charCodeAt(0);case"chr":return String.fromCharCode(n[0]??0);case"id":return Math.floor(Math.random()*4294967295);case"hash":return typeof n[0]=="number"?n[0]:R(n[0]??"").split("").reduce((i,s)=>i*31+s.charCodeAt(0)|0,0);case"open":throw new X("PermissionError","open() not available in virtual runtime");case"repr":return re(n[0]??b);case"iter":return n[0]??b;case"next":return Array.isArray(n[0])&&n[0].length>0?n[0].shift():n[1]??(()=>{throw new X("StopIteration","")})();case"vars":return Q([...r.entries()].map(([i,s])=>[i,s]));case"globals":return Q([...r.entries()].map(([i,s])=>[i,s]));case"locals":return Q([...r.entries()].map(([i,s])=>[i,s]));case"dir":{if(n.length===0)return[...r.keys()];let i=n[0]??b;return typeof i=="string"?["upper","lower","strip","split","join","replace","find","format","encode","startswith","endswith","count","isdigit","isalpha","title","capitalize"]:Array.isArray(i)?["append","extend","insert","pop","remove","index","count","sort","reverse","copy","clear"]:G(i)?["keys","values","items","get","update","pop","clear","copy","setdefault"]:[]}case"Exception":case"ValueError":case"TypeError":case"KeyError":case"IndexError":case"AttributeError":case"NameError":case"RuntimeError":case"StopIteration":case"NotImplementedError":case"OSError":case"IOError":throw new X(t,R(n[0]??""));case"exec":return this.execScript(R(n[0]??""),r),b;case"eval":return this.pyEval(R(n[0]??""),r);default:throw new X("NameError",`name '${t}' is not defined`)}}callFunc(t,n,r){let i=new Map(t.closure);t.params.forEach((s,o)=>{if(s.startsWith("*")){i.set(s.slice(1),n.slice(o));return}i.set(s,n[o]??b)});try{return this.execBlock(t.body,i)}catch(s){if(s instanceof Xe)return s.value;throw s}}instantiate(t,n,r){let i={__pytype__:"instance",cls:t,attrs:new Map};return t.methods.get("__init__")&&this.callMethod(i,"__init__",n,r),i}execScript(t,n){let r=t.split(`
976
+ `);this.execLines(r,0,n)}execLines(t,n,r){let i=n;for(;i<t.length;){let s=t[i];if(!s.trim()||s.trim().startsWith("#")){i++;continue}i=this.execStatement(t,i,r)}return i}execBlock(t,n){try{this.execLines(t,0,n)}catch(r){if(r instanceof Xe)return r.value;throw r}return b}getIndent(t){let n=0;for(let r of t)if(r===" ")n++;else if(r===" ")n+=4;else break;return n}collectBlock(t,n,r){let i=[];for(let s=n;s<t.length;s++){let o=t[s];if(!o.trim()){i.push("");continue}if(this.getIndent(o)<=r)break;i.push(o.slice(r+4))}return i}execStatement(t,n,r){let i=t[n],s=i.trim(),o=this.getIndent(i);if(s==="pass")return n+1;if(s==="break")throw new mt;if(s==="continue")throw new pt;let a=s.match(/^return(?:\s+(.+))?$/);if(a)throw new Xe(a[1]?this.pyEval(a[1],r):b);let l=s.match(/^raise(?:\s+(.+))?$/);if(l){if(l[1]){let x=this.pyEval(l[1],r);throw new X(typeof x=="string"?x:ze(x),R(x))}throw new X("RuntimeError","")}let c=s.match(/^assert\s+(.+?)(?:,\s*(.+))?$/);if(c){if(!me(this.pyEval(c[1],r)))throw new X("AssertionError",c[2]?R(this.pyEval(c[2],r)):"");return n+1}let u=s.match(/^del\s+(.+)$/);if(u)return r.delete(u[1].trim()),n+1;let d=s.match(/^import\s+(\w+)(?:\s+as\s+(\w+))?$/);if(d){let[,x,A]=d,D=ls[x];if(D){let k=D(this.cwd);this.modules.set(x,k),r.set(A??x,k)}return n+1}let m=s.match(/^from\s+(\w+)\s+import\s+(.+)$/);if(m){let[,x,A]=m,D=ls[x];if(D){let k=D(this.cwd);if(A?.trim()==="*")for(let[w,F]of k.data)r.set(w,F);else for(let w of A.split(",").map(F=>F.trim()))r.set(w,k.data.get(w)??b)}return n+1}let p=s.match(/^def\s+(\w+)\s*\(([^)]*)\)\s*:$/);if(p){let[,x,A]=p,D=A.split(",").map(F=>F.trim()).filter(Boolean),k=this.collectBlock(t,n+1,o),w={__pytype__:"func",name:x,params:D,body:k,closure:new Map(r)};return r.set(x,w),n+1+k.length}let g=s.match(/^class\s+(\w+)(?:\(([^)]*)\))?\s*:$/);if(g){let[,x,A]=g,D=A?A.split(",").map(K=>K.trim()):[],k=this.collectBlock(t,n+1,o),w={__pytype__:"class",name:x,methods:new Map,bases:D},F=0;for(;F<k.length;){let q=k[F].trim().match(/^def\s+(\w+)\s*\(([^)]*)\)\s*:$/);if(q){let[,ee,be]=q,pe=be.split(",").map(O=>O.trim()).filter(Boolean),ke=this.collectBlock(k,F+1,0);w.methods.set(ee,{__pytype__:"func",name:ee,params:pe,body:ke,closure:new Map(r)}),F+=1+ke.length}else F++}return r.set(x,w),n+1+k.length}if(s.startsWith("if ")&&s.endsWith(":")){let x=s.slice(3,-1).trim(),A=this.collectBlock(t,n+1,o),D=A.length+1;if(me(this.pyEval(x,r))){this.execBlock(A,new Map(r).also?.(F=>{for(let[K,q]of r)F.set(K,q)})??r),this.runBlockInScope(A,r);let w=n+1+A.length;for(;w<t.length;){let F=t[w].trim();if(this.getIndent(t[w])<o||!F.startsWith("elif")&&!F.startsWith("else"))break;let K=this.collectBlock(t,w+1,o);w+=1+K.length}return w}let k=n+1+A.length;for(;k<t.length;){let w=t[k],F=w.trim();if(this.getIndent(w)!==o)break;let K=F.match(/^elif\s+(.+):$/);if(K){let q=this.collectBlock(t,k+1,o);if(me(this.pyEval(K[1],r))){for(this.runBlockInScope(q,r),k+=1+q.length;k<t.length;){let ee=t[k].trim();if(this.getIndent(t[k])!==o||!ee.startsWith("elif")&&!ee.startsWith("else"))break;let be=this.collectBlock(t,k+1,o);k+=1+be.length}return k}k+=1+q.length;continue}if(F==="else:"){let q=this.collectBlock(t,k+1,o);return this.runBlockInScope(q,r),k+1+q.length}break}return k}let S=s.match(/^for\s+(.+?)\s+in\s+(.+?)\s*:$/);if(S){let[,x,A]=S,D=ne(this.pyEval(A.trim(),r)),k=this.collectBlock(t,n+1,o),w=[],F=n+1+k.length;F<t.length&&t[F]?.trim()==="else:"&&(w=this.collectBlock(t,F+1,o),F+=1+w.length);let K=!1;for(let q of D){if(x.includes(",")){let ee=x.split(",").map(pe=>pe.trim()),be=Array.isArray(q)?q:[q];ee.forEach((pe,ke)=>r.set(pe,be[ke]??b))}else r.set(x.trim(),q);try{this.runBlockInScope(k,r)}catch(ee){if(ee instanceof mt){K=!0;break}if(ee instanceof pt)continue;throw ee}}return!K&&w.length&&this.runBlockInScope(w,r),F}let v=s.match(/^while\s+(.+?)\s*:$/);if(v){let x=v[1],A=this.collectBlock(t,n+1,o),D=0;for(;me(this.pyEval(x,r))&&D++<1e5;)try{this.runBlockInScope(A,r)}catch(k){if(k instanceof mt)break;if(k instanceof pt)continue;throw k}return n+1+A.length}if(s==="try:"){let x=this.collectBlock(t,n+1,o),A=n+1+x.length,D=[],k=[],w=[];for(;A<t.length;){let K=t[A],q=K.trim();if(this.getIndent(K)!==o)break;if(q.startsWith("except")){let ee=q.match(/^except(?:\s+(\w+)(?:\s+as\s+(\w+))?)?\s*:$/),be=ee?.[1]??null,pe=ee?.[2],ke=this.collectBlock(t,A+1,o);D.push({exc:be,body:ke}),pe&&r.set(pe,""),A+=1+ke.length}else if(q==="else:")w=this.collectBlock(t,A+1,o),A+=1+w.length;else if(q==="finally:")k=this.collectBlock(t,A+1,o),A+=1+k.length;else break}let F=null;try{this.runBlockInScope(x,r),w.length&&this.runBlockInScope(w,r)}catch(K){if(K instanceof X){F=K;let q=!1;for(let ee of D)if(ee.exc===null||ee.exc===K.type||ee.exc==="Exception"){this.runBlockInScope(ee.body,r),q=!0;break}if(!q)throw K}else throw K}finally{k.length&&this.runBlockInScope(k,r)}return A}let E=s.match(/^with\s+(.+?)\s+as\s+(\w+)\s*:$/);if(E){let x=this.collectBlock(t,n+1,o);return r.set(E[2],b),this.runBlockInScope(x,r),n+1+x.length}let T=s.match(/^([A-Za-z_][A-Za-z0-9_]*)\s*(\+=|-=|\*=|\/\/=|\/=|%=|\*\*=|&=|\|=)\s*(.+)$/);if(T){let[,x,A,D]=T,k=r.get(x)??0,w=this.pyEval(D,r),F;switch(A){case"+=":F=typeof k=="string"?k+R(w):k+w;break;case"-=":F=k-w;break;case"*=":F=k*w;break;case"/=":F=k/w;break;case"//=":F=Math.floor(k/w);break;case"%=":F=k%w;break;case"**=":F=k**w;break;default:F=w}return r.set(x,F),n+1}let _=s.match(/^([A-Za-z_][A-Za-z0-9_]*)\[(.+)\]\s*=\s*(.+)$/);if(_){let[,x,A,D]=_,k=r.get(x)??b,w=this.pyEval(D,r)??b,F=this.pyEval(A,r)??b;return Array.isArray(k)?k[F]=w:G(k)&&k.data.set(R(F),w),n+1}let P=s.match(/^([A-Za-z_][A-Za-z0-9_.]+)\s*=\s*(.+)$/);if(P){let x=P[1].lastIndexOf(".");if(x!==-1){let A=P[1].slice(0,x),D=P[1].slice(x+1),k=this.pyEval(P[2],r),w=this.pyEval(A,r);return G(w)?w.data.set(D,k):dt(w)&&w.attrs.set(D,k),n+1}}let N=s.match(/^([A-Za-z_][A-Za-z0-9_,\s]*),\s*([A-Za-z_][A-Za-z0-9_]*)\s*=\s*(.+)$/);if(N){let x=this.pyEval(N[3],r),A=s.split("=")[0].split(",").map(k=>k.trim()),D=ne(x);return A.forEach((k,w)=>r.set(k,D[w]??b)),n+1}let I=s.match(/^([A-Za-z_][A-Za-z0-9_]*)\s*(?::[^=]+)?\s*=\s*(.+)$/);if(I){let[,x,A]=I;return r.set(x,this.pyEval(A,r)),n+1}try{this.pyEval(s,r)}catch(x){if(x instanceof X||x instanceof ft)throw x}return n+1}runBlockInScope(t,n){this.execLines(t,0,n)}run(t){let n=No(this.cwd);try{this.execScript(t,n)}catch(r){return r instanceof ft?{stdout:this.getOutput(),stderr:this.getStderr(),exitCode:r.code}:r instanceof X?(this.stderr.push(r.toString()),{stdout:this.getOutput(),stderr:this.getStderr(),exitCode:1}):r instanceof Xe?{stdout:this.getOutput(),stderr:this.getStderr(),exitCode:0}:(this.stderr.push(`RuntimeError: ${r}`),{stdout:this.getOutput(),stderr:this.getStderr(),exitCode:1})}return{stdout:this.getOutput(),stderr:this.getStderr(),exitCode:0}}},us={name:"python3",aliases:["python"],description:"Python 3 interpreter (virtual)",category:"system",params:["[--version] [-c <code>] [-V] [file]"],run:({args:e,shell:t,cwd:n})=>{if(!t.packageManager.isInstalled("python3"))return{stderr:`bash: python3: command not found
977
977
  Hint: install it with: apt install python3
978
- `,exitCode:127};if(C(e,["--version","-V"]))return{stdout:`${Eo}
979
- `,exitCode:0};if(C(e,["--version-full"]))return{stdout:`${Lt}
978
+ `,exitCode:127};if(C(e,["--version","-V"]))return{stdout:`${Mo}
979
+ `,exitCode:0};if(C(e,["--version-full"]))return{stdout:`${Ut}
980
980
  `,exitCode:0};let r=e.indexOf("-c");if(r!==-1){let s=e[r+1];if(!s)return{stderr:`python3: -c requires a code argument
981
981
  `,exitCode:1};let o=s.replace(/\\n/g,`
982
- `).replace(/\\t/g," "),a=new Vt(n),{stdout:l,stderr:c,exitCode:u}=a.run(o);return{stdout:l||void 0,stderr:c||void 0,exitCode:u}}let i=e.find(s=>!s.startsWith("-"));if(i){let s=M(n,i);if(!t.vfs.exists(s))return{stderr:`python3: can't open file '${i}': [Errno 2] No such file or directory
983
- `,exitCode:2};let o=t.vfs.readFile(s),a=new Vt(n),{stdout:l,stderr:c,exitCode:u}=a.run(o);return{stdout:l||void 0,stderr:c||void 0,exitCode:u}}return{stdout:`${Lt}
982
+ `).replace(/\\t/g," "),a=new Bt(n),{stdout:l,stderr:c,exitCode:u}=a.run(o);return{stdout:l||void 0,stderr:c||void 0,exitCode:u}}let i=e.find(s=>!s.startsWith("-"));if(i){let s=M(n,i);if(!t.vfs.exists(s))return{stderr:`python3: can't open file '${i}': [Errno 2] No such file or directory
983
+ `,exitCode:2};let o=t.vfs.readFile(s),a=new Bt(n),{stdout:l,stderr:c,exitCode:u}=a.run(o);return{stdout:l||void 0,stderr:c||void 0,exitCode:u}}return{stdout:`${Ut}
984
984
  Type "help", "copyright", "credits" or "license" for more information.
985
- >>> `,exitCode:0}}};var cs={name:"read",description:"Read a line from stdin into variables",category:"shell",params:["[-r] [-p prompt] <var...>"],run:({args:e,stdin:t,env:n})=>{let r=e.indexOf("-p"),i=e.filter((a,l)=>a!=="-r"&&a!=="-p"&&e[l-1]!=="-p"),s=(t??"").split(`
985
+ >>> `,exitCode:0}}};var ds={name:"read",description:"Read a line from stdin into variables",category:"shell",params:["[-r] [-p prompt] <var...>"],run:({args:e,stdin:t,env:n})=>{let r=e.indexOf("-p"),i=e.filter((a,l)=>a!=="-r"&&a!=="-p"&&e[l-1]!=="-p"),s=(t??"").split(`
986
986
  `)[0]??"",o=C(e,["-r"])?s:s.replace(/\\(?:\r?\n|.)/g,a=>a[1]===`
987
- `||a[1]==="\r"?"":a[1]);if(!n)return{exitCode:0};if(i.length===0)n.vars.REPLY=o;else if(i.length===1)n.vars[i[0]]=o;else{let a=o.split(/\s+/);for(let l=0;l<i.length;l++)n.vars[i[l]]=l<i.length-1?a[l]??"":a.slice(l).join(" ")}return{exitCode:0}}};var us={name:"rm",description:"Remove files or directories",category:"files",params:["[-r|-rf] <path>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{if(r.length===0)return{stderr:"rm: missing operand",exitCode:1};let i=C(r,["-r","-rf","-fr"]),s=[];for(let o=0;;o+=1){let a=Me(r,o,{flags:["-r","-rf","-fr"]});if(!a)break;s.push(a)}if(s.length===0)return{stderr:"rm: missing operand",exitCode:1};for(let o of s){let a=M(n,o);V(e,a,"rm"),t.vfs.remove(a,{recursive:i})}return{exitCode:0}}};var ds={name:"sed",description:"Stream editor for filtering and transforming text",category:"text",params:["-e <expr> [file]","s/pattern/replace/[g]"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let s=C(r,["-i"]),o=ue(r,["-e"])??r.find(v=>!v.startsWith("-")),a=r.filter(v=>!v.startsWith("-")&&v!==o).pop();if(!o)return{stderr:"sed: no expression",exitCode:1};let l=i??"";if(a){let v=M(n,a);try{l=t.vfs.readFile(v)}catch{return{stderr:`sed: ${a}: No such file or directory`,exitCode:1}}}let c=o.match(/^s([^a-zA-Z0-9])(.+?)\1(.*?)\1([gi]*)$/);if(!c)return{stderr:`sed: unrecognized command: ${o}`,exitCode:1};let[,,u,d,m]=c,p=(m??"").includes("i")?"gi":(m??"").includes("g")?"g":"",g;try{g=new RegExp(u,p||"")}catch{return{stderr:`sed: invalid regex: ${u}`,exitCode:1}}let S=((m??"").includes("g")||p.includes("g"),l.replace(g,d??""));if(s&&a){let v=M(n,a);return t.writeFileAsUser(e,v,S),{exitCode:0}}return{stdout:S,exitCode:0}}};var ms={name:"set",description:"Display or set shell variables",category:"shell",params:["[VAR=value]"],run:({args:e,env:t})=>{if(e.length===0)return{stdout:Object.entries(t.vars).map(([r,i])=>`${r}=${i}`).join(`
988
- `),exitCode:0};for(let n of e)if(n.includes("=")){let r=n.indexOf("=");t.vars[n.slice(0,r)]=n.slice(r+1)}return{exitCode:0}}};async function dn(e,t,n,r){return $t(e,t,n,i=>Z(i,r.authUser,r.hostname,r.mode,r.cwd,r.shell,void 0,r.env).then(s=>s.stdout??""))}function Oe(e){let t=[],n=0;for(;n<e.length;){let r=e[n].trim();if(!r||r.startsWith("#")){n++;continue}let i=r.match(/^(?:function\s+)?(\w+)\s*\(\s*\)\s*\{(.+)\}\s*$/),s=i??(r.match(/^(?:function\s+)?(\w+)\s*\(\s*\)\s*\{?\s*$/)||r.match(/^function\s+(\w+)\s*\{?\s*$/));if(s){let a=s[1],l=[];if(i){l.push(...i[2].split(";").map(c=>c.trim()).filter(Boolean)),t.push({type:"func",name:a,body:l}),n++;continue}for(n++;n<e.length&&e[n]?.trim()!=="}"&&n<e.length+1;){let c=e[n].trim().replace(/^do\s+/,"");c&&c!=="{"&&l.push(c),n++}n++,t.push({type:"func",name:a,body:l});continue}let o=r.match(/^\(\(\s*(.+?)\s*\)\)$/);if(o){t.push({type:"arith",expr:o[1]}),n++;continue}if(r.startsWith("if ")||r==="if"){let a=r.replace(/^if\s+/,"").replace(/;\s*then\s*$/,"").trim(),l=[],c=[],u=[],d="then",m="";for(n++;n<e.length&&e[n]?.trim()!=="fi";){let p=e[n].trim();p.startsWith("elif ")?(d="elif",m=p.replace(/^elif\s+/,"").replace(/;\s*then\s*$/,"").trim(),c.push({cond:m,body:[]})):p==="else"?d="else":p!=="then"&&(d==="then"?l.push(p):d==="elif"&&c.length>0?c[c.length-1].body.push(p):u.push(p)),n++}t.push({type:"if",cond:a,then_:l,elif:c,else_:u})}else if(r.startsWith("for ")){let a=r.match(/^for\s+(\w+)\s+in\s+(.+?)(?:\s*;\s*do)?$/);if(a){let l=[];for(n++;n<e.length&&e[n]?.trim()!=="done";){let c=e[n].trim().replace(/^do\s+/,"");c&&c!=="do"&&l.push(c),n++}t.push({type:"for",var:a[1],list:a[2],body:l})}else t.push({type:"cmd",line:r})}else if(r.startsWith("while ")){let a=r.replace(/^while\s+/,"").replace(/;\s*do\s*$/,"").trim(),l=[];for(n++;n<e.length&&e[n]?.trim()!=="done";){let c=e[n].trim().replace(/^do\s+/,"");c&&c!=="do"&&l.push(c),n++}t.push({type:"while",cond:a,body:l})}else t.push({type:"cmd",line:r});n++}return t}async function un(e,t){let n=await dn(e,t.env.vars,t.env.lastExitCode,t),r=n.match(/^\[?\s*(.+?)\s*\]?$/);if(r){let s=r[1],o=s.match(/^-([fdeznr])\s+(.+)$/);if(o){let[,c,u]=o,d=M(t.cwd,u);if(c==="f")return t.shell.vfs.exists(d)&&t.shell.vfs.stat(d).type==="file";if(c==="d")return t.shell.vfs.exists(d)&&t.shell.vfs.stat(d).type==="directory";if(c==="e")return t.shell.vfs.exists(d);if(c==="z")return(u??"").length===0;if(c==="n")return(u??"").length>0}let a=s.match(/^"?([^"]*)"?\s*(==|!=|=|<|>)\s*"?([^"]*)"?$/);if(a){let[,c,u,d]=a;if(u==="=="||u==="=")return c===d;if(u==="!=")return c!==d}let l=s.match(/^(\S+)\s+(-eq|-ne|-lt|-le|-gt|-ge)\s+(\S+)$/);if(l){let[,c,u,d]=l,m=Number(c),p=Number(d);if(u==="-eq")return m===p;if(u==="-ne")return m!==p;if(u==="-lt")return m<p;if(u==="-le")return m<=p;if(u==="-gt")return m>p;if(u==="-ge")return m>=p}}return((await Z(n,t.authUser,t.hostname,t.mode,t.cwd,t.shell,void 0,t.env)).exitCode??0)===0}async function Te(e,t){let n={exitCode:0},r="";for(let i of e)if(i.type==="cmd"){let s=await dn(i.line,t.env.vars,t.env.lastExitCode,t),o=/^([A-Za-z_][A-Za-z0-9_]*)=(.*)/,a=s.trim().split(/\s+/);if(a.length>0&&o.test(a[0])&&a.every(u=>o.test(u))){for(let u of a){let d=u.match(o);t.env.vars[d[1]]=d[2]}t.env.lastExitCode=0;continue}let l=await(async()=>{let c=s.trim().split(/\s+/)[0]??"",u=t.env.vars[`__func_${c}`];if(u){let d=s.trim().split(/\s+/).slice(1),m={...t.env.vars};d.forEach((S,v)=>{t.env.vars[String(v+1)]=S}),t.env.vars[0]=c;let p=u.split(`
989
- `),g=await Te(Oe(p),t);for(let S=1;S<=d.length;S++)delete t.env.vars[String(S)];return Object.assign(t.env.vars,{...m,...t.env.vars}),g}return Z(s,t.authUser,t.hostname,t.mode,t.cwd,t.shell,void 0,t.env)})();if(t.env.lastExitCode=l.exitCode??0,l.stdout&&(r+=`${l.stdout}
990
- `),l.stderr)return{...l,stdout:r.trim()};n=l}else if(i.type==="if"){let s=!1;if(await un(i.cond,t)){let o=await Te(Oe(i.then_),t);o.stdout&&(r+=`${o.stdout}
991
- `),s=!0}else{for(let o of i.elif)if(await un(o.cond,t)){let a=await Te(Oe(o.body),t);a.stdout&&(r+=`${a.stdout}
992
- `),s=!0;break}if(!s&&i.else_.length>0){let o=await Te(Oe(i.else_),t);o.stdout&&(r+=`${o.stdout}
987
+ `||a[1]==="\r"?"":a[1]);if(!n)return{exitCode:0};if(i.length===0)n.vars.REPLY=o;else if(i.length===1)n.vars[i[0]]=o;else{let a=o.split(/\s+/);for(let l=0;l<i.length;l++)n.vars[i[l]]=l<i.length-1?a[l]??"":a.slice(l).join(" ")}return{exitCode:0}}};var ms={name:"rm",description:"Remove files or directories",category:"files",params:["[-r|-rf] <path>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{if(r.length===0)return{stderr:"rm: missing operand",exitCode:1};let i=C(r,["-r","-rf","-fr"]),s=[];for(let o=0;;o+=1){let a=Me(r,o,{flags:["-r","-rf","-fr"]});if(!a)break;s.push(a)}if(s.length===0)return{stderr:"rm: missing operand",exitCode:1};for(let o of s){let a=M(n,o);V(e,a,"rm"),t.vfs.remove(a,{recursive:i})}return{exitCode:0}}};var ps={name:"sed",description:"Stream editor for filtering and transforming text",category:"text",params:["-e <expr> [file]","s/pattern/replace/[g]"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let s=C(r,["-i"]),o=ue(r,["-e"])??r.find(v=>!v.startsWith("-")),a=r.filter(v=>!v.startsWith("-")&&v!==o).pop();if(!o)return{stderr:"sed: no expression",exitCode:1};let l=i??"";if(a){let v=M(n,a);try{l=t.vfs.readFile(v)}catch{return{stderr:`sed: ${a}: No such file or directory`,exitCode:1}}}let c=o.match(/^s([^a-zA-Z0-9])(.+?)\1(.*?)\1([gi]*)$/);if(!c)return{stderr:`sed: unrecognized command: ${o}`,exitCode:1};let[,,u,d,m]=c,p=(m??"").includes("i")?"gi":(m??"").includes("g")?"g":"",g;try{g=new RegExp(u,p||"")}catch{return{stderr:`sed: invalid regex: ${u}`,exitCode:1}}let S=((m??"").includes("g")||p.includes("g"),l.replace(g,d??""));if(s&&a){let v=M(n,a);return t.writeFileAsUser(e,v,S),{exitCode:0}}return{stdout:S,exitCode:0}}};var fs={name:"set",description:"Display or set shell variables",category:"shell",params:["[VAR=value]"],run:({args:e,env:t})=>{if(e.length===0)return{stdout:Object.entries(t.vars).map(([r,i])=>`${r}=${i}`).join(`
988
+ `),exitCode:0};for(let n of e)if(n.includes("=")){let r=n.indexOf("=");t.vars[n.slice(0,r)]=n.slice(r+1)}return{exitCode:0}}};async function pn(e,t,n,r){return kt(e,t,n,i=>Z(i,r.authUser,r.hostname,r.mode,r.cwd,r.shell,void 0,r.env).then(s=>s.stdout??""))}function Te(e){let t=[],n=0;for(;n<e.length;){let r=e[n].trim();if(!r||r.startsWith("#")){n++;continue}let i=r.match(/^(?:function\s+)?(\w+)\s*\(\s*\)\s*\{(.+)\}\s*$/),s=i??(r.match(/^(?:function\s+)?(\w+)\s*\(\s*\)\s*\{?\s*$/)||r.match(/^function\s+(\w+)\s*\{?\s*$/));if(s){let a=s[1],l=[];if(i){l.push(...i[2].split(";").map(c=>c.trim()).filter(Boolean)),t.push({type:"func",name:a,body:l}),n++;continue}for(n++;n<e.length&&e[n]?.trim()!=="}"&&n<e.length+1;){let c=e[n].trim().replace(/^do\s+/,"");c&&c!=="{"&&l.push(c),n++}n++,t.push({type:"func",name:a,body:l});continue}let o=r.match(/^\(\(\s*(.+?)\s*\)\)$/);if(o){t.push({type:"arith",expr:o[1]}),n++;continue}if(r.startsWith("if ")||r==="if"){let a=r.replace(/^if\s+/,"").replace(/;\s*then\s*$/,"").trim(),l=[],c=[],u=[],d="then",m="";for(n++;n<e.length&&e[n]?.trim()!=="fi";){let p=e[n].trim();p.startsWith("elif ")?(d="elif",m=p.replace(/^elif\s+/,"").replace(/;\s*then\s*$/,"").trim(),c.push({cond:m,body:[]})):p==="else"?d="else":p!=="then"&&(d==="then"?l.push(p):d==="elif"&&c.length>0?c[c.length-1].body.push(p):u.push(p)),n++}t.push({type:"if",cond:a,then_:l,elif:c,else_:u})}else if(r.startsWith("for ")){let a=r.match(/^for\s+(\w+)\s+in\s+(.+?)(?:\s*;\s*do)?$/);if(a){let l=[];for(n++;n<e.length&&e[n]?.trim()!=="done";){let c=e[n].trim().replace(/^do\s+/,"");c&&c!=="do"&&l.push(c),n++}t.push({type:"for",var:a[1],list:a[2],body:l})}else t.push({type:"cmd",line:r})}else if(r.startsWith("while ")){let a=r.replace(/^while\s+/,"").replace(/;\s*do\s*$/,"").trim(),l=[];for(n++;n<e.length&&e[n]?.trim()!=="done";){let c=e[n].trim().replace(/^do\s+/,"");c&&c!=="do"&&l.push(c),n++}t.push({type:"while",cond:a,body:l})}else t.push({type:"cmd",line:r});n++}return t}async function mn(e,t){let n=await pn(e,t.env.vars,t.env.lastExitCode,t),r=n.match(/^\[?\s*(.+?)\s*\]?$/);if(r){let s=r[1],o=s.match(/^-([fdeznr])\s+(.+)$/);if(o){let[,c,u]=o,d=M(t.cwd,u);if(c==="f")return t.shell.vfs.exists(d)&&t.shell.vfs.stat(d).type==="file";if(c==="d")return t.shell.vfs.exists(d)&&t.shell.vfs.stat(d).type==="directory";if(c==="e")return t.shell.vfs.exists(d);if(c==="z")return(u??"").length===0;if(c==="n")return(u??"").length>0}let a=s.match(/^"?([^"]*)"?\s*(==|!=|=|<|>)\s*"?([^"]*)"?$/);if(a){let[,c,u,d]=a;if(u==="=="||u==="=")return c===d;if(u==="!=")return c!==d}let l=s.match(/^(\S+)\s+(-eq|-ne|-lt|-le|-gt|-ge)\s+(\S+)$/);if(l){let[,c,u,d]=l,m=Number(c),p=Number(d);if(u==="-eq")return m===p;if(u==="-ne")return m!==p;if(u==="-lt")return m<p;if(u==="-le")return m<=p;if(u==="-gt")return m>p;if(u==="-ge")return m>=p}}return((await Z(n,t.authUser,t.hostname,t.mode,t.cwd,t.shell,void 0,t.env)).exitCode??0)===0}async function De(e,t){let n={exitCode:0},r="";for(let i of e)if(i.type==="cmd"){let s=await pn(i.line,t.env.vars,t.env.lastExitCode,t),o=/^([A-Za-z_][A-Za-z0-9_]*)=(.*)/,a=s.trim().split(/\s+/);if(a.length>0&&o.test(a[0])&&a.every(u=>o.test(u))){for(let u of a){let d=u.match(o);t.env.vars[d[1]]=d[2]}t.env.lastExitCode=0;continue}let l=await(async()=>{let c=s.trim().split(/\s+/)[0]??"",u=t.env.vars[`__func_${c}`];if(u){let d=s.trim().split(/\s+/).slice(1),m={...t.env.vars};d.forEach((S,v)=>{t.env.vars[String(v+1)]=S}),t.env.vars[0]=c;let p=u.split(`
989
+ `),g=await De(Te(p),t);for(let S=1;S<=d.length;S++)delete t.env.vars[String(S)];return Object.assign(t.env.vars,{...m,...t.env.vars}),g}return Z(s,t.authUser,t.hostname,t.mode,t.cwd,t.shell,void 0,t.env)})();if(t.env.lastExitCode=l.exitCode??0,l.stdout&&(r+=`${l.stdout}
990
+ `),l.stderr)return{...l,stdout:r.trim()};n=l}else if(i.type==="if"){let s=!1;if(await mn(i.cond,t)){let o=await De(Te(i.then_),t);o.stdout&&(r+=`${o.stdout}
991
+ `),s=!0}else{for(let o of i.elif)if(await mn(o.cond,t)){let a=await De(Te(o.body),t);a.stdout&&(r+=`${a.stdout}
992
+ `),s=!0;break}if(!s&&i.else_.length>0){let o=await De(Te(i.else_),t);o.stdout&&(r+=`${o.stdout}
993
993
  `)}}}else if(i.type==="func")t.env.vars[`__func_${i.name}`]=i.body.join(`
994
- `);else if(i.type==="arith"){let s=i.expr.trim(),o=s.match(/^(\w+)\s*(\+\+|--)$/);if(o){let a=parseInt(t.env.vars[o[1]]??"0",10);t.env.vars[o[1]]=String(o[2]==="++"?a+1:a-1)}else{let a=s.match(/^(\w+)\s*([+\-*/])=\s*(.+)$/);if(a){let l=parseInt(t.env.vars[a[1]]??"0",10),c=parseInt(a[3],10),u={"+":l+c,"-":l-c,"*":l*c,"/":Math.floor(l/c)};t.env.vars[a[1]]=String(u[a[2]]??l)}else{let l=en(s,t.env.vars);Number.isNaN(l)||(t.env.lastExitCode=l===0?1:0)}}}else if(i.type==="for"){let o=(await dn(i.list,t.env.vars,t.env.lastExitCode,t)).trim().split(/\s+/).flatMap(Et);for(let a of o){t.env.vars[i.var]=a;let l=await Te(Oe(i.body),t);if(l.stdout&&(r+=`${l.stdout}
995
- `),l.closeSession)return l}}else if(i.type==="while"){let s=0;for(;s<1e3&&await un(i.cond,t);){let o=await Te(Oe(i.body),t);if(o.stdout&&(r+=`${o.stdout}
996
- `),o.closeSession)return o;s++}}return{...n,stdout:r.trim()||n.stdout}}function ps(e){let t=[],n="",r=0,i=!1,s=!1,o=0;for(;o<e.length;){let l=e[o];if(!i&&!s){if(l==="'"){i=!0,n+=l,o++;continue}if(l==='"'){s=!0,n+=l,o++;continue}if(l==="{"){r++,n+=l,o++;continue}if(l==="}"){if(r--,n+=l,o++,r===0){let c=n.trim();for(c&&t.push(c),n="";o<e.length&&(e[o]===";"||e[o]===" ");)o++}continue}if(r===0&&(l===";"||l===`
997
- `)){let c=n.trim();c&&!c.startsWith("#")&&t.push(c),n="",o++;continue}}else i&&l==="'"?i=!1:s&&l==='"'&&(s=!1);n+=l,o++}let a=n.trim();return a&&!a.startsWith("#")&&t.push(a),t}var fs={name:"sh",aliases:["bash"],description:"Execute shell script or command",category:"shell",params:["-c <script>","[<file>]"],run:async e=>{let{args:t,shell:n,cwd:r}=e;if(C(t,"-c")){let s=t[t.indexOf("-c")+1]??"";if(!s)return{stderr:"sh: -c requires a script",exitCode:1};let o=ps(s),a=Oe(o);return Te(a,e)}let i=t[0];if(i){let s=M(r,i);if(!n.vfs.exists(s))return{stderr:`sh: ${i}: No such file or directory`,exitCode:1};let o=n.vfs.readFile(s),a=ps(o),l=Oe(a);return Te(l,e)}return{stderr:"sh: invalid usage. Use: sh -c 'cmd' or sh <file>",exitCode:1}}};var hs={name:"shift",description:"Shift positional parameters",category:"shell",params:["[n]"],run:({args:e,env:t})=>{if(!t)return{exitCode:0};let n=parseInt(e[0]??"1",10)||1,r=t.vars.__argv?.split("\0").filter(Boolean)??[];t.vars.__argv=r.slice(n).join("\0");let i=r.slice(n);for(let s=1;s<=9;s++)t.vars[String(s)]=i[s-1]??"";return{exitCode:0}}},gs={name:"trap",description:"Trap signals and events",category:"shell",params:["[action] [signal...]"],run:({args:e,env:t})=>{if(!t||e.length===0)return{exitCode:0};let n=e[0]??"",r=e.slice(1);for(let i of r)t.vars[`__trap_${i.toUpperCase()}`]=n;return{exitCode:0}}},ys={name:"return",description:"Return from a shell function",category:"shell",params:["[n]"],run:({args:e,env:t})=>{let n=parseInt(e[0]??"0",10);return t&&(t.lastExitCode=n),{exitCode:n}}};var Ss={name:"sleep",description:"Delay execution",category:"system",params:["<seconds>"],run:async({args:e})=>{let t=parseFloat(e[0]??"1");return Number.isNaN(t)||t<0?{stderr:"sleep: invalid time",exitCode:1}:(await new Promise(n=>setTimeout(n,t*1e3)),{exitCode:0})}};var bs={name:"sort",description:"Sort lines of text",category:"text",params:["[-r] [-n] [-u] [-k <col>] [file...]"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let s=C(r,["-r"]),o=C(r,["-n"]),a=C(r,["-u"]),l=r.filter(g=>!g.startsWith("-")),d=[...(l.length>0?l.map(g=>{try{return V(e,M(n,g),"sort"),t.vfs.readFile(M(n,g))}catch{return""}}).join(`
994
+ `);else if(i.type==="arith"){let s=i.expr.trim(),o=s.match(/^(\w+)\s*(\+\+|--)$/);if(o){let a=parseInt(t.env.vars[o[1]]??"0",10);t.env.vars[o[1]]=String(o[2]==="++"?a+1:a-1)}else{let a=s.match(/^(\w+)\s*([+\-*/])=\s*(.+)$/);if(a){let l=parseInt(t.env.vars[a[1]]??"0",10),c=parseInt(a[3],10),u={"+":l+c,"-":l-c,"*":l*c,"/":Math.floor(l/c)};t.env.vars[a[1]]=String(u[a[2]]??l)}else{let l=nn(s,t.env.vars);Number.isNaN(l)||(t.env.lastExitCode=l===0?1:0)}}}else if(i.type==="for"){let o=(await pn(i.list,t.env.vars,t.env.lastExitCode,t)).trim().split(/\s+/).flatMap($t);for(let a of o){t.env.vars[i.var]=a;let l=await De(Te(i.body),t);if(l.stdout&&(r+=`${l.stdout}
995
+ `),l.closeSession)return l}}else if(i.type==="while"){let s=0;for(;s<1e3&&await mn(i.cond,t);){let o=await De(Te(i.body),t);if(o.stdout&&(r+=`${o.stdout}
996
+ `),o.closeSession)return o;s++}}return{...n,stdout:r.trim()||n.stdout}}function hs(e){let t=[],n="",r=0,i=!1,s=!1,o=0;for(;o<e.length;){let l=e[o];if(!i&&!s){if(l==="'"){i=!0,n+=l,o++;continue}if(l==='"'){s=!0,n+=l,o++;continue}if(l==="{"){r++,n+=l,o++;continue}if(l==="}"){if(r--,n+=l,o++,r===0){let c=n.trim();for(c&&t.push(c),n="";o<e.length&&(e[o]===";"||e[o]===" ");)o++}continue}if(r===0&&(l===";"||l===`
997
+ `)){let c=n.trim();c&&!c.startsWith("#")&&t.push(c),n="",o++;continue}}else i&&l==="'"?i=!1:s&&l==='"'&&(s=!1);n+=l,o++}let a=n.trim();return a&&!a.startsWith("#")&&t.push(a),t}var gs={name:"sh",aliases:["bash"],description:"Execute shell script or command",category:"shell",params:["-c <script>","[<file>]"],run:async e=>{let{args:t,shell:n,cwd:r}=e;if(C(t,"-c")){let s=t[t.indexOf("-c")+1]??"";if(!s)return{stderr:"sh: -c requires a script",exitCode:1};let o=hs(s),a=Te(o);return De(a,e)}let i=t[0];if(i){let s=M(r,i);if(!n.vfs.exists(s))return{stderr:`sh: ${i}: No such file or directory`,exitCode:1};let o=n.vfs.readFile(s),a=hs(o),l=Te(a);return De(l,e)}return{stderr:"sh: invalid usage. Use: sh -c 'cmd' or sh <file>",exitCode:1}}};var ys={name:"shift",description:"Shift positional parameters",category:"shell",params:["[n]"],run:({args:e,env:t})=>{if(!t)return{exitCode:0};let n=parseInt(e[0]??"1",10)||1,r=t.vars.__argv?.split("\0").filter(Boolean)??[];t.vars.__argv=r.slice(n).join("\0");let i=r.slice(n);for(let s=1;s<=9;s++)t.vars[String(s)]=i[s-1]??"";return{exitCode:0}}},Ss={name:"trap",description:"Trap signals and events",category:"shell",params:["[action] [signal...]"],run:({args:e,env:t})=>{if(!t||e.length===0)return{exitCode:0};let n=e[0]??"",r=e.slice(1);for(let i of r)t.vars[`__trap_${i.toUpperCase()}`]=n;return{exitCode:0}}},bs={name:"return",description:"Return from a shell function",category:"shell",params:["[n]"],run:({args:e,env:t})=>{let n=parseInt(e[0]??"0",10);return t&&(t.lastExitCode=n),{exitCode:n}}};var xs={name:"sleep",description:"Delay execution",category:"system",params:["<seconds>"],run:async({args:e})=>{let t=parseFloat(e[0]??"1");return Number.isNaN(t)||t<0?{stderr:"sleep: invalid time",exitCode:1}:(await new Promise(n=>setTimeout(n,t*1e3)),{exitCode:0})}};var ws={name:"sort",description:"Sort lines of text",category:"text",params:["[-r] [-n] [-u] [-k <col>] [file...]"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let s=C(r,["-r"]),o=C(r,["-n"]),a=C(r,["-u"]),l=r.filter(g=>!g.startsWith("-")),d=[...(l.length>0?l.map(g=>{try{return V(e,M(n,g),"sort"),t.vfs.readFile(M(n,g))}catch{return""}}).join(`
998
998
  `):i??"").split(`
999
999
  `).filter(Boolean)].sort((g,S)=>o?Number(g)-Number(S):g.localeCompare(S)),m=s?d.reverse():d;return{stdout:(a?[...new Set(m)]:m).join(`
1000
- `),exitCode:0}}};var xs={name:"source",aliases:["."],description:"Execute commands from a file in the current shell environment",category:"shell",params:["<file> [args...]"],run:async({args:e,authUser:t,hostname:n,cwd:r,shell:i,env:s})=>{let o=e[0];if(!o)return{stderr:"source: missing filename",exitCode:1};let a=M(r,o);if(!i.vfs.exists(a))return{stderr:`source: ${o}: No such file or directory`,exitCode:1};let l=i.vfs.readFile(a),c=0;for(let u of l.split(`
1001
- `)){let d=u.trim();if(!d||d.startsWith("#"))continue;let m=await Z(d,t,n,"shell",r,i,void 0,s);if(c=m.exitCode??0,m.closeSession||m.switchUser)return m}return{exitCode:c}}};var ws={name:"su",description:"Switch user",category:"users",params:["[-] [-c <cmd>] [username]"],run:async({authUser:e,shell:t,args:n,hostname:r,mode:i,cwd:s})=>{let o=n.includes("-")||n.includes("-l")||n.includes("--login"),a=n.indexOf("-c"),l=a!==-1?n[a+1]:void 0,u=n.filter((d,m)=>m!==a&&m!==a+1).filter(d=>d!=="-"&&d!=="-l"&&d!=="--login").find(d=>!d.startsWith("-"))??"root";return t.users.listUsers().includes(u)?e==="root"?l?Z(l,u,r,i,o?`/home/${u}`:s,t):{switchUser:u,nextCwd:o?`/home/${u}`:void 0,exitCode:0}:t.users.isSudoer(e)?{sudoChallenge:{username:u,targetUser:u,commandLine:l??null,loginShell:o,prompt:"Password: "},exitCode:0}:{stderr:`su: permission denied
1000
+ `),exitCode:0}}};var vs={name:"source",aliases:["."],description:"Execute commands from a file in the current shell environment",category:"shell",params:["<file> [args...]"],run:async({args:e,authUser:t,hostname:n,cwd:r,shell:i,env:s})=>{let o=e[0];if(!o)return{stderr:"source: missing filename",exitCode:1};let a=M(r,o);if(!i.vfs.exists(a))return{stderr:`source: ${o}: No such file or directory`,exitCode:1};let l=i.vfs.readFile(a),c=0;for(let u of l.split(`
1001
+ `)){let d=u.trim();if(!d||d.startsWith("#"))continue;let m=await Z(d,t,n,"shell",r,i,void 0,s);if(c=m.exitCode??0,m.closeSession||m.switchUser)return m}return{exitCode:c}}};var Cs={name:"su",description:"Switch user",category:"users",params:["[-] [-c <cmd>] [username]"],run:async({authUser:e,shell:t,args:n,hostname:r,mode:i,cwd:s})=>{let o=n.includes("-")||n.includes("-l")||n.includes("--login"),a=n.indexOf("-c"),l=a!==-1?n[a+1]:void 0,u=n.filter((d,m)=>m!==a&&m!==a+1).filter(d=>d!=="-"&&d!=="-l"&&d!=="--login").find(d=>!d.startsWith("-"))??"root";return t.users.listUsers().includes(u)?e==="root"?l?Z(l,u,r,i,o?`/home/${u}`:s,t):{switchUser:u,nextCwd:o?`/home/${u}`:void 0,exitCode:0}:t.users.isSudoer(e)?{sudoChallenge:{username:u,targetUser:u,commandLine:l??null,loginShell:o,prompt:"Password: "},exitCode:0}:{stderr:`su: permission denied
1002
1002
  `,exitCode:1}:{stderr:`su: user '${u}' does not exist
1003
- `,exitCode:1}}};function Oo(e){let{flags:t,flagsWithValues:n,positionals:r}=de(e,{flags:["-i","-S"],flagsWithValue:["-u","--user"]}),i=t.has("-i"),s=n.get("-u")||n.get("--user")||"root",o=r.length>0?r.join(" "):null;return{targetUser:s,loginShell:i,commandLine:o}}var vs={name:"sudo",description:"Execute as superuser",category:"users",params:["<command...>"],run:async({authUser:e,hostname:t,mode:n,cwd:r,shell:i,args:s})=>{let{targetUser:o,loginShell:a,commandLine:l}=Oo(s);if(e!=="root"&&!i.users.isSudoer(e))return{stderr:"sudo: permission denied",exitCode:1};let c=o||"root",u=`[sudo] password for ${e}: `;return e==="root"?!l&&a?{switchUser:c,nextCwd:`/home/${c}`,exitCode:0}:l?Z(l,c,t,n,a?`/home/${c}`:r,i):{stderr:"sudo: missing command",exitCode:1}:{sudoChallenge:{username:e,targetUser:c,commandLine:l,loginShell:a,prompt:u},exitCode:0}}};var Cs={name:"tail",description:"Output last lines",category:"text",params:["[-n <lines>] [file...]"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let s=ue(r,["-n"]),o=r.find(d=>/^-\d+$/.test(d)),a=typeof s=="string"?parseInt(s,10):o?parseInt(o.slice(1),10):10,l=r.filter(d=>!d.startsWith("-")&&d!==s&&d!==String(a)),c=d=>{let m=d.split(`
1003
+ `,exitCode:1}}};function Fo(e){let{flags:t,flagsWithValues:n,positionals:r}=de(e,{flags:["-i","-S"],flagsWithValue:["-u","--user"]}),i=t.has("-i"),s=n.get("-u")||n.get("--user")||"root",o=r.length>0?r.join(" "):null;return{targetUser:s,loginShell:i,commandLine:o}}var Ps={name:"sudo",description:"Execute as superuser",category:"users",params:["<command...>"],run:async({authUser:e,hostname:t,mode:n,cwd:r,shell:i,args:s})=>{let{targetUser:o,loginShell:a,commandLine:l}=Fo(s);if(e!=="root"&&!i.users.isSudoer(e))return{stderr:"sudo: permission denied",exitCode:1};let c=o||"root",u=`[sudo] password for ${e}: `;return e==="root"?!l&&a?{switchUser:c,nextCwd:`/home/${c}`,exitCode:0}:l?Z(l,c,t,n,a?`/home/${c}`:r,i):{stderr:"sudo: missing command",exitCode:1}:{sudoChallenge:{username:e,targetUser:c,commandLine:l,loginShell:a,prompt:u},exitCode:0}}};var Es={name:"tail",description:"Output last lines",category:"text",params:["[-n <lines>] [file...]"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let s=ue(r,["-n"]),o=r.find(d=>/^-\d+$/.test(d)),a=typeof s=="string"?parseInt(s,10):o?parseInt(o.slice(1),10):10,l=r.filter(d=>!d.startsWith("-")&&d!==s&&d!==String(a)),c=d=>{let m=d.split(`
1004
1004
  `),p=d.endsWith(`
1005
1005
  `),g=p?m.slice(0,-1):m;return g.slice(Math.max(0,g.length-a)).join(`
1006
1006
  `)+(p?`
1007
1007
  `:"")};if(l.length===0)return{stdout:c(i??""),exitCode:0};let u=[];for(let d of l){let m=M(n,d);try{V(e,m,"tail"),u.push(c(t.vfs.readFile(m)))}catch{return{stderr:`tail: ${d}: No such file or directory`,exitCode:1}}}return{stdout:u.join(`
1008
- `),exitCode:0}}};var Ps={name:"tar",description:"Archive utility",category:"archive",params:["[-czf|-xzf|-tf] <archive> [files...]"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=[],s=!1;for(let m of r)if(/^-[a-zA-Z]{2,}$/.test(m))for(let p of m.slice(1))i.push(`-${p}`);else if(!s&&/^[cxtdru]{1,}[a-zA-Z]*$/.test(m)&&!m.includes("/")&&!m.startsWith("-")){s=!0;for(let p of m)i.push(`-${p}`)}else i.push(m);let o=i.includes("-c"),a=i.includes("-x"),l=i.includes("-t"),c=i.indexOf("-f"),u=c!==-1?i[c+1]:i.find(m=>m.endsWith(".tar")||m.endsWith(".tar.gz")||m.endsWith(".tgz"));if(!o&&!a&&!l)return{stderr:`tar: must specify -c, -x, or -t
1008
+ `),exitCode:0}}};var $s={name:"tar",description:"Archive utility",category:"archive",params:["[-czf|-xzf|-tf] <archive> [files...]"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=[],s=!1;for(let m of r)if(/^-[a-zA-Z]{2,}$/.test(m))for(let p of m.slice(1))i.push(`-${p}`);else if(!s&&/^[cxtdru]{1,}[a-zA-Z]*$/.test(m)&&!m.includes("/")&&!m.startsWith("-")){s=!0;for(let p of m)i.push(`-${p}`)}else i.push(m);let o=i.includes("-c"),a=i.includes("-x"),l=i.includes("-t"),c=i.indexOf("-f"),u=c!==-1?i[c+1]:i.find(m=>m.endsWith(".tar")||m.endsWith(".tar.gz")||m.endsWith(".tgz"));if(!o&&!a&&!l)return{stderr:`tar: must specify -c, -x, or -t
1009
1009
  `,exitCode:1};if(!u)return{stderr:`tar: no archive specified
1010
1010
  `,exitCode:1};let d=M(n,u);if(o){let m=new Set;c!==-1&&m.add(c+1);let p=i.filter((S,v)=>!S.startsWith("-")&&S!==u&&!m.has(v)),g={};for(let S of p){let v=M(n,S);try{if(t.vfs.stat(v).type==="file")g[S]=t.vfs.readFile(v);else{let T=(_,P)=>{for(let N of t.vfs.list(_)){let I=`${_}/${N}`,x=`${P}/${N}`;t.vfs.stat(I).type==="file"?g[x]=t.vfs.readFile(I):T(I,x)}};T(v,S)}}catch{return{stderr:`tar: ${S}: No such file or directory`,exitCode:1}}}return t.writeFileAsUser(e,d,JSON.stringify(g)),{exitCode:0}}if(l||a){let m;try{m=JSON.parse(t.vfs.readFile(d))}catch{return{stderr:`tar: ${u}: cannot open archive`,exitCode:1}}if(l)return{stdout:Object.keys(m).join(`
1011
- `),exitCode:0};for(let[p,g]of Object.entries(m))t.writeFileAsUser(e,M(n,p),g);return{exitCode:0}}return{stderr:"tar: must specify -c, -x, or -t",exitCode:1}}};var Es={name:"tee",description:"Read stdin, write to stdout and files",category:"text",params:["[-a] <file...>"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let s=C(r,["-a"]),o=r.filter(l=>!l.startsWith("-")),a=i??"";for(let l of o){let c=M(n,l);if(s){let u=(()=>{try{return t.vfs.readFile(c)}catch{return""}})();t.writeFileAsUser(e,c,u+a)}else t.writeFileAsUser(e,c,a)}return{stdout:a,exitCode:0}}};function Xe(e,t,n){if(e[e.length-1]==="]"&&(e=e.slice(0,-1)),e[0]==="["&&(e=e.slice(1)),e.length===0)return!1;if(e[0]==="!")return!Xe(e.slice(1),t,n);let r=e.indexOf("-a");if(r!==-1)return Xe(e.slice(0,r),t,n)&&Xe(e.slice(r+1),t,n);let i=e.indexOf("-o");if(i!==-1)return Xe(e.slice(0,i),t,n)||Xe(e.slice(i+1),t,n);if(e.length===2){let[s,o=""]=e,l=(c=>c.startsWith("/")?c:`${n}/${c}`.replace(/\/+/g,"/"))(o);switch(s){case"-e":return t.vfs.exists(l);case"-f":return t.vfs.exists(l)&&t.vfs.stat(l).type==="file";case"-d":return t.vfs.exists(l)&&t.vfs.stat(l).type==="directory";case"-r":return t.vfs.exists(l);case"-w":return t.vfs.exists(l);case"-x":return t.vfs.exists(l)&&!!(t.vfs.stat(l).mode&73);case"-s":return t.vfs.exists(l)&&t.vfs.stat(l).type==="file"&&t.vfs.stat(l).size>0;case"-z":return o.length===0;case"-n":return o.length>0;case"-L":return t.vfs.isSymlink(l)}}if(e.length===3){let[s="",o,a=""]=e,l=Number(s),c=Number(a);switch(o){case"=":case"==":return s===a;case"!=":return s!==a;case"<":return s<a;case">":return s>a;case"-eq":return l===c;case"-ne":return l!==c;case"-lt":return l<c;case"-le":return l<=c;case"-gt":return l>c;case"-ge":return l>=c}}return e.length===1?(e[0]??"").length>0:!1}var $s={name:"test",aliases:["["],description:"Evaluate conditional expression",category:"shell",params:["<expression>"],run:({args:e,shell:t,cwd:n})=>{try{return{exitCode:Xe([...e],t,n)?0:1}}catch{return{stderr:"test: malformed expression",exitCode:2}}}};var ks={name:"touch",description:"Create or update files",category:"files",params:["<file>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{if(r.length===0)return{stderr:"touch: missing file operand",exitCode:1};for(let i of r){let s=M(n,i);V(e,s,"touch"),t.vfs.exists(s)||t.writeFileAsUser(e,s,"")}return{exitCode:0}}};function To(e){return e.replace(/\\n/g,`
1012
- `).replace(/\\t/g," ").replace(/\\r/g,"\r").replace(/\\\\/g,"\\")}function Ms(e){let t=[],n=To(e),r=0;for(;r<n.length;){if(r+2<n.length&&n[r+1]==="-"){let i=n.charCodeAt(r),s=n.charCodeAt(r+2);if(i<=s){for(let o=i;o<=s;o++)t.push(String.fromCharCode(o));r+=3;continue}}t.push(n[r]),r++}return t}var Is={name:"tr",description:"Translate or delete characters",category:"text",params:["[-d] [-s] <set1> [set2]"],run:({args:e,stdin:t})=>{let n=C(e,["-d"]),r=C(e,["-s"]),i=e.filter(l=>!l.startsWith("-")),s=Ms(i[0]??""),o=Ms(i[1]??""),a=t??"";if(n){let l=new Set(s);a=[...a].filter(c=>!l.has(c)).join("")}else if(o.length>0){let l=new Map;for(let c=0;c<s.length;c++)l.set(s[c],o[c]??o[o.length-1]??"");a=[...a].map(c=>l.get(c)??c).join("")}if(r&&o.length>0){let l=new Set(o);a=a.replace(/(.)\1+/g,(c,u)=>l.has(u)?u:c)}return{stdout:a,exitCode:0}}};var Ns={name:"tree",description:"Display directory tree",category:"navigation",params:["[path]"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=M(n,Me(r,0)??n);return V(e,i,"tree"),{stdout:t.vfs.tree(i),exitCode:0}}};var As={name:"true",description:"Return success exit code",category:"shell",params:[],run:()=>({exitCode:0})},_s={name:"false",description:"Return failure exit code",category:"shell",params:[],run:()=>({exitCode:1})};var Os={name:"type",description:"Describe how a command would be interpreted",category:"shell",params:["<command...>"],run:({args:e,shell:t,env:n})=>{if(e.length===0)return{stderr:"type: missing argument",exitCode:1};let r=(n?.vars?.PATH??"/usr/local/bin:/usr/bin:/bin").split(":"),i=[],s=0;for(let o of e){if(xe(o)){i.push(`${o} is a shell builtin`);continue}let a=!1;for(let l of r){let c=`${l}/${o}`;if(t.vfs.exists(c)){i.push(`${o} is ${c}`),a=!0;break}}a||(i.push(`${o}: not found`),s=1)}return{stdout:i.join(`
1013
- `),exitCode:s}}};var Ts={name:"uname",description:"Print system information",category:"system",params:["[-a] [-s] [-r] [-m]"],run:({shell:e,args:t})=>{let n=C(t,["-a"]),r="Linux",i=e.properties?.kernel??"5.15.0",s=e.properties?.arch??"x86_64",o=e.hostname;return n?{stdout:`${r} ${o} ${i} #1 SMP ${s} GNU/Linux`,exitCode:0}:C(t,["-r"])?{stdout:i,exitCode:0}:C(t,["-m"])?{stdout:s,exitCode:0}:{stdout:r,exitCode:0}}};var Fs={name:"uniq",description:"Report or filter out repeated lines",category:"text",params:["[-c] [-d] [-u] [file]"],run:({args:e,stdin:t})=>{let n=C(e,["-c"]),r=C(e,["-d"]),i=C(e,["-u"]),s=(t??"").split(`
1011
+ `),exitCode:0};for(let[p,g]of Object.entries(m))t.writeFileAsUser(e,M(n,p),g);return{exitCode:0}}return{stderr:"tar: must specify -c, -x, or -t",exitCode:1}}};var ks={name:"tee",description:"Read stdin, write to stdout and files",category:"text",params:["[-a] <file...>"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let s=C(r,["-a"]),o=r.filter(l=>!l.startsWith("-")),a=i??"";for(let l of o){let c=M(n,l);if(s){let u=(()=>{try{return t.vfs.readFile(c)}catch{return""}})();t.writeFileAsUser(e,c,u+a)}else t.writeFileAsUser(e,c,a)}return{stdout:a,exitCode:0}}};function et(e,t,n){if(e[e.length-1]==="]"&&(e=e.slice(0,-1)),e[0]==="["&&(e=e.slice(1)),e.length===0)return!1;if(e[0]==="!")return!et(e.slice(1),t,n);let r=e.indexOf("-a");if(r!==-1)return et(e.slice(0,r),t,n)&&et(e.slice(r+1),t,n);let i=e.indexOf("-o");if(i!==-1)return et(e.slice(0,i),t,n)||et(e.slice(i+1),t,n);if(e.length===2){let[s,o=""]=e,l=(c=>c.startsWith("/")?c:`${n}/${c}`.replace(/\/+/g,"/"))(o);switch(s){case"-e":return t.vfs.exists(l);case"-f":return t.vfs.exists(l)&&t.vfs.stat(l).type==="file";case"-d":return t.vfs.exists(l)&&t.vfs.stat(l).type==="directory";case"-r":return t.vfs.exists(l);case"-w":return t.vfs.exists(l);case"-x":return t.vfs.exists(l)&&!!(t.vfs.stat(l).mode&73);case"-s":return t.vfs.exists(l)&&t.vfs.stat(l).type==="file"&&t.vfs.stat(l).size>0;case"-z":return o.length===0;case"-n":return o.length>0;case"-L":return t.vfs.isSymlink(l)}}if(e.length===3){let[s="",o,a=""]=e,l=Number(s),c=Number(a);switch(o){case"=":case"==":return s===a;case"!=":return s!==a;case"<":return s<a;case">":return s>a;case"-eq":return l===c;case"-ne":return l!==c;case"-lt":return l<c;case"-le":return l<=c;case"-gt":return l>c;case"-ge":return l>=c}}return e.length===1?(e[0]??"").length>0:!1}var Ms={name:"test",aliases:["["],description:"Evaluate conditional expression",category:"shell",params:["<expression>"],run:({args:e,shell:t,cwd:n})=>{try{return{exitCode:et([...e],t,n)?0:1}}catch{return{stderr:"test: malformed expression",exitCode:2}}}};var Is={name:"touch",description:"Create or update files",category:"files",params:["<file>"],run:({authUser:e,shell:t,cwd:n,args:r})=>{if(r.length===0)return{stderr:"touch: missing file operand",exitCode:1};for(let i of r){let s=M(n,i);V(e,s,"touch"),t.vfs.exists(s)||t.writeFileAsUser(e,s,"")}return{exitCode:0}}};function Ro(e){return e.replace(/\\n/g,`
1012
+ `).replace(/\\t/g," ").replace(/\\r/g,"\r").replace(/\\\\/g,"\\")}function Ns(e){let t=[],n=Ro(e),r=0;for(;r<n.length;){if(r+2<n.length&&n[r+1]==="-"){let i=n.charCodeAt(r),s=n.charCodeAt(r+2);if(i<=s){for(let o=i;o<=s;o++)t.push(String.fromCharCode(o));r+=3;continue}}t.push(n[r]),r++}return t}var As={name:"tr",description:"Translate or delete characters",category:"text",params:["[-d] [-s] <set1> [set2]"],run:({args:e,stdin:t})=>{let n=C(e,["-d"]),r=C(e,["-s"]),i=e.filter(l=>!l.startsWith("-")),s=Ns(i[0]??""),o=Ns(i[1]??""),a=t??"";if(n){let l=new Set(s);a=[...a].filter(c=>!l.has(c)).join("")}else if(o.length>0){let l=new Map;for(let c=0;c<s.length;c++)l.set(s[c],o[c]??o[o.length-1]??"");a=[...a].map(c=>l.get(c)??c).join("")}if(r&&o.length>0){let l=new Set(o);a=a.replace(/(.)\1+/g,(c,u)=>l.has(u)?u:c)}return{stdout:a,exitCode:0}}};var _s={name:"tree",description:"Display directory tree",category:"navigation",params:["[path]"],run:({authUser:e,shell:t,cwd:n,args:r})=>{let i=M(n,Me(r,0)??n);return V(e,i,"tree"),{stdout:t.vfs.tree(i),exitCode:0}}};var Os={name:"true",description:"Return success exit code",category:"shell",params:[],run:()=>({exitCode:0})},Ts={name:"false",description:"Return failure exit code",category:"shell",params:[],run:()=>({exitCode:1})};var Ds={name:"type",description:"Describe how a command would be interpreted",category:"shell",params:["<command...>"],run:({args:e,shell:t,env:n})=>{if(e.length===0)return{stderr:"type: missing argument",exitCode:1};let r=(n?.vars?.PATH??"/usr/local/bin:/usr/bin:/bin").split(":"),i=[],s=0;for(let o of e){if(xe(o)){i.push(`${o} is a shell builtin`);continue}let a=!1;for(let l of r){let c=`${l}/${o}`;if(t.vfs.exists(c)){i.push(`${o} is ${c}`),a=!0;break}}a||(i.push(`${o}: not found`),s=1)}return{stdout:i.join(`
1013
+ `),exitCode:s}}};var Fs={name:"uname",description:"Print system information",category:"system",params:["[-a] [-s] [-r] [-m]"],run:({shell:e,args:t})=>{let n=C(t,["-a"]),r="Linux",i=e.properties?.kernel??"5.15.0",s=e.properties?.arch??"x86_64",o=e.hostname;return n?{stdout:`${r} ${o} ${i} #1 SMP ${s} GNU/Linux`,exitCode:0}:C(t,["-r"])?{stdout:i,exitCode:0}:C(t,["-m"])?{stdout:s,exitCode:0}:{stdout:r,exitCode:0}}};var Rs={name:"uniq",description:"Report or filter out repeated lines",category:"text",params:["[-c] [-d] [-u] [file]"],run:({args:e,stdin:t})=>{let n=C(e,["-c"]),r=C(e,["-d"]),i=C(e,["-u"]),s=(t??"").split(`
1014
1014
  `),o=[],a=0;for(;a<s.length;){let l=a;for(;l<s.length&&s[l]===s[a];)l++;let c=l-a,u=s[a];if(r&&c===1){a=l;continue}if(i&&c>1){a=l;continue}o.push(n?`${String(c).padStart(4)} ${u}`:u),a=l}return{stdout:o.join(`
1015
- `),exitCode:0}}};var Ds={name:"unset",description:"Remove shell variable",category:"shell",params:["<VAR>"],run:({args:e,env:t})=>{for(let n of e)delete t.vars[n];return{exitCode:0}}};var Rs={name:"uptime",description:"Tell how long the system has been running",category:"system",params:["[-p] [-s]"],run:({args:e,shell:t})=>{let n=C(e,["-p"]),r=C(e,["-s"]),i=Math.floor((Date.now()-t.startTime)/1e3),s=Math.floor(i/86400),o=Math.floor(i%86400/3600),a=Math.floor(i%3600/60);if(r)return{stdout:new Date(t.startTime).toISOString().slice(0,19).replace("T"," "),exitCode:0};if(n){let m=[];return s>0&&m.push(`${s} day${s>1?"s":""}`),o>0&&m.push(`${o} hour${o>1?"s":""}`),m.push(`${a} minute${a!==1?"s":""}`),{stdout:`up ${m.join(", ")}`,exitCode:0}}let l=new Date().toTimeString().slice(0,8),c=s>0?`${s} day${s>1?"s":""}, ${String(o).padStart(2)}:${String(a).padStart(2,"0")}`:`${String(o).padStart(2)}:${String(a).padStart(2,"0")}`,u=t.users.listActiveSessions().length,d=(Math.random()*.5).toFixed(2);return{stdout:` ${l} up ${c}, ${u} user${u!==1?"s":""}, load average: ${d}, ${d}, ${d}`,exitCode:0}}};var Ls={name:"wc",description:"Count words/lines/bytes",category:"text",params:["[-l] [-w] [-c] [file...]"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let s=C(r,["-l"]),o=C(r,["-w"]),a=C(r,["-c"]),l=!s&&!o&&!a,c=r.filter(m=>!m.startsWith("-")),u=(m,p)=>{let g=m.length===0?0:m.trim().split(`
1015
+ `),exitCode:0}}};var Ls={name:"unset",description:"Remove shell variable",category:"shell",params:["<VAR>"],run:({args:e,env:t})=>{for(let n of e)delete t.vars[n];return{exitCode:0}}};var Vs={name:"uptime",description:"Tell how long the system has been running",category:"system",params:["[-p] [-s]"],run:({args:e,shell:t})=>{let n=C(e,["-p"]),r=C(e,["-s"]),i=Math.floor((Date.now()-t.startTime)/1e3),s=Math.floor(i/86400),o=Math.floor(i%86400/3600),a=Math.floor(i%3600/60);if(r)return{stdout:new Date(t.startTime).toISOString().slice(0,19).replace("T"," "),exitCode:0};if(n){let m=[];return s>0&&m.push(`${s} day${s>1?"s":""}`),o>0&&m.push(`${o} hour${o>1?"s":""}`),m.push(`${a} minute${a!==1?"s":""}`),{stdout:`up ${m.join(", ")}`,exitCode:0}}let l=new Date().toTimeString().slice(0,8),c=s>0?`${s} day${s>1?"s":""}, ${String(o).padStart(2)}:${String(a).padStart(2,"0")}`:`${String(o).padStart(2)}:${String(a).padStart(2,"0")}`,u=t.users.listActiveSessions().length,d=(Math.random()*.5).toFixed(2);return{stdout:` ${l} up ${c}, ${u} user${u!==1?"s":""}, load average: ${d}, ${d}, ${d}`,exitCode:0}}};var Us={name:"wc",description:"Count words/lines/bytes",category:"text",params:["[-l] [-w] [-c] [file...]"],run:({authUser:e,shell:t,cwd:n,args:r,stdin:i})=>{let s=C(r,["-l"]),o=C(r,["-w"]),a=C(r,["-c"]),l=!s&&!o&&!a,c=r.filter(m=>!m.startsWith("-")),u=(m,p)=>{let g=m.length===0?0:m.trim().split(`
1016
1016
  `).length,S=m.trim().split(/\s+/).filter(Boolean).length,v=Buffer.byteLength(m,"utf8"),E=[];return(l||s)&&E.push(String(g).padStart(7)),(l||o)&&E.push(String(S).padStart(7)),(l||a)&&E.push(String(v).padStart(7)),p&&E.push(` ${p}`),E.join("")};if(c.length===0)return{stdout:u(i??"",""),exitCode:0};let d=[];for(let m of c){let p=M(n,m);try{V(e,p,"wc");let g=t.vfs.readFile(p);d.push(u(g,m))}catch{return{stderr:`wc: ${m}: No such file or directory`,exitCode:1}}}return{stdout:d.join(`
1017
- `),exitCode:0}}};var Vs={name:"wget",description:"File downloader (pure fetch)",category:"network",params:["[options] <url>"],run:async({authUser:e,cwd:t,args:n,shell:r})=>{let{flagsWithValues:i,positionals:s}=de(n,{flagsWithValue:["-O","--output-document","-o","--output-file","-P","--directory-prefix","--tries","--timeout"]});if(C(n,["-h","--help"]))return{stdout:["Usage: wget [option]... [URL]..."," -O, --output-document=FILE Write to FILE ('-' for stdout)"," -P, --directory-prefix=DIR Save files in DIR"," -q, --quiet Quiet mode"," -v, --verbose Verbose output (default)"," -c, --continue Continue partial download"," --tries=N Retry N times"," --timeout=N Timeout in seconds"].join(`
1017
+ `),exitCode:0}}};var Bs={name:"wget",description:"File downloader (pure fetch)",category:"network",params:["[options] <url>"],run:async({authUser:e,cwd:t,args:n,shell:r})=>{let{flagsWithValues:i,positionals:s}=de(n,{flagsWithValue:["-O","--output-document","-o","--output-file","-P","--directory-prefix","--tries","--timeout"]});if(C(n,["-h","--help"]))return{stdout:["Usage: wget [option]... [URL]..."," -O, --output-document=FILE Write to FILE ('-' for stdout)"," -P, --directory-prefix=DIR Save files in DIR"," -q, --quiet Quiet mode"," -v, --verbose Verbose output (default)"," -c, --continue Continue partial download"," --tries=N Retry N times"," --timeout=N Timeout in seconds"].join(`
1018
1018
  `),exitCode:0};if(C(n,["-V","--version"]))return{stdout:"GNU Wget 1.21.3 (virtual) built on Fortune GNU/Linux.",exitCode:0};let o=s[0];if(!o)return{stderr:`wget: missing URL
1019
1019
  Usage: wget [OPTION]... [URL]...`,exitCode:1};let a=o.startsWith("http://")||o.startsWith("https://")?o:`http://${o}`;if(!a)return{stderr:`wget: missing URL
1020
- Usage: wget [OPTION]... [URL]...`,exitCode:1};let l=i.get("-O")??i.get("--output-document")??null,c=i.get("-P")??i.get("--directory-prefix")??null,u=C(n,["-q","--quiet"]),d=l==="-"?null:l??Tn(a),m=d?M(t,c?`${c}/${d}`:d):null;m&&V(e,m,"wget");let p=[];u||(p.push(`--${new Date().toISOString()}-- ${a}`),p.push(`Resolving ${new URL(a).host}...`),p.push(`Connecting to ${new URL(a).host}...`));let g;try{g=await fetch(a,{headers:{"User-Agent":"Wget/1.21.3 (Fortune GNU/Linux)"}})}catch(v){let E=v instanceof Error?v.message:String(v);return p.push(`wget: unable to resolve host: ${E}`),{stderr:p.join(`
1020
+ Usage: wget [OPTION]... [URL]...`,exitCode:1};let l=i.get("-O")??i.get("--output-document")??null,c=i.get("-P")??i.get("--directory-prefix")??null,u=C(n,["-q","--quiet"]),d=l==="-"?null:l??Fn(a),m=d?M(t,c?`${c}/${d}`:d):null;m&&V(e,m,"wget");let p=[];u||(p.push(`--${new Date().toISOString()}-- ${a}`),p.push(`Resolving ${new URL(a).host}...`),p.push(`Connecting to ${new URL(a).host}...`));let g;try{g=await fetch(a,{headers:{"User-Agent":"Wget/1.21.3 (Fortune GNU/Linux)"}})}catch(v){let E=v instanceof Error?v.message:String(v);return p.push(`wget: unable to resolve host: ${E}`),{stderr:p.join(`
1021
1021
  `),exitCode:4}}if(!g.ok)return p.push(`ERROR ${g.status}: ${g.statusText}`),{stderr:p.join(`
1022
1022
  `),exitCode:8};let S;try{S=await g.text()}catch{return{stderr:"wget: failed to read response",exitCode:1}}if(!u){let v=g.headers.get("content-type")??"application/octet-stream";p.push(`HTTP request sent, awaiting response... ${g.status} ${g.statusText}`),p.push(`Length: ${S.length} [${v}]`)}return l==="-"?{stdout:S,stderr:p.join(`
1023
1023
  `)||void 0,exitCode:0}:m?(r.writeFileAsUser(e,m,S),u||p.push(`Saving to: '${m}'
1024
1024
  ${m} 100%[==================>] ${S.length} B`),{stderr:p.join(`
1025
- `)||void 0,exitCode:0}):{stdout:S,exitCode:0}}};var Us={name:"which",description:"Locate a command in PATH",category:"shell",params:["<command...>"],run:({args:e,shell:t,env:n})=>{if(e.length===0)return{stderr:"which: missing argument",exitCode:1};let r=(n?.vars?.PATH??"/usr/local/bin:/usr/bin:/bin").split(":"),i=[],s=!1;for(let o of e){let a=!1;for(let l of r){let c=`${l}/${o}`;if(t.vfs.exists(c)&&t.vfs.stat(c).type==="file"){i.push(c),a=!0;break}}a||(s=!0)}return i.length===0?{exitCode:1}:{stdout:i.join(`
1026
- `),exitCode:s?1:0}}};function Ut(e){let t=e.toLocaleString("en-US",{weekday:"short"}),n=e.toLocaleString("en-US",{month:"short"}),r=e.getDate().toString().padStart(2,"0"),i=e.getHours().toString().padStart(2,"0"),s=e.getMinutes().toString().padStart(2,"0"),o=e.getSeconds().toString().padStart(2,"0"),a=e.getFullYear();return`${t} ${n} ${r} ${i}:${s}:${o} ${a}`}var Bs={name:"who",description:"Show active sessions",category:"system",params:[],run:({shell:e})=>({stdout:e.users.listActiveSessions().map(n=>{let r=new Date(n.startedAt),i=Number.isNaN(r.getTime())?n.startedAt:Ut(r);return`${n.username} ${n.tty} ${i} (${n.remoteAddress||"unknown"})`}).join(`
1027
- `),exitCode:0})};var zs={name:"whoami",description:"Print current user",category:"system",params:[],run:({authUser:e})=>({stdout:e,exitCode:0})};var Hs={name:"xargs",description:"Build and execute command lines from stdin",category:"text",params:["[command] [args...]"],run:async({authUser:e,hostname:t,mode:n,cwd:r,args:i,stdin:s,shell:o,env:a})=>{let l=i[0]??"echo",c=i.slice(1),u=(s??"").trim().split(/\s+/).filter(Boolean);if(u.length===0)return{exitCode:0};let d=[l,...c,...u].join(" ");return Z(d,e,t,n,r,o,void 0,a)}};var Fo=[is,jn,Ar,Ns,Un,ks,us,Fr,Kn,Dr,$r,kr,Wn,Mr,Ir,lr,dr,ds,Ln,bs,Fs,Ls,hr,Cs,Yn,Is,Es,Hs,er,Ps,pr,fr,Vn,zs,Bs,vr,Pr,mr,Ts,ss,Er,Xn,rr,Jn,Ss,ns,sr,ir,ar,ms,Ds,fs,qn,or,Rr,Cr,Gn,Vs,In,ts,Qn,vs,ws,Jr,Dn,Rn,tr,nr,Us,Os,Tr,An,_n,$s,xs,wr,rs,cs,Zn,hs,gs,ys,As,_s,Xr,es,Qr,ls,Rs,ur,_r],js=[],ft=new Map,Bt=null,Do=xr(()=>pn().map(e=>e.name));function mn(){ft.clear();for(let e of pn()){ft.set(e.name,e);for(let t of e.aliases??[])ft.set(t,e)}Bt=Array.from(ft.keys()).sort()}function pn(){return[...Fo,...js,Do]}function Zt(e){let t={...e,name:e.name.trim().toLowerCase(),aliases:e.aliases?.map(r=>r.trim().toLowerCase())};if([t.name,...t.aliases??[]].some(r=>r.length===0||/\s/.test(r)))throw new Error("Command names must be non-empty and contain no spaces");js.push(t),mn()}function Qt(e,t,n){return{name:e,params:t,run:n}}function st(){return Bt||mn(),Bt}function Xt(){return pn()}function xe(e){return Bt||mn(),ft.get(e.toLowerCase())}function Ws(e){return e==="1"||e==="true"}function qs(){return typeof performance<"u"&&typeof performance.now=="function"?performance.now():Date.now()}function Ro(){return Ws(y.env.DEV_MODE)||Ws(y.env.RENDER_PERF)}function ge(e){let t=Ro();if(!t)return{enabled:t,mark:()=>{},done:()=>{}};let n=qs(),r=s=>{let o=qs()-n;console.log(`[perf][${e}] ${s}: ${o.toFixed(1)}ms`)};return{enabled:t,mark:r,done:(s="done")=>{r(s)}}}var Pg=ge("HoneyPot");var Ng=ge("SshClient");var ye=class{constructor(){this._events=Object.create(null)}on(t,n){return(this._events[t]||=[]).push(n),this}addListener(t,n){return this.on(t,n)}emit(t,...n){let r=this._events[t]||[];for(let i of r)try{i(...n)}catch{}return r.length>0}removeListener(t,n){this._events[t]&&(this._events[t]=this._events[t].filter(r=>r!==n))}};function Fe(e){return function(){throw new Error(`ssh2: ${e} not implemented in browser`)}}var Rg={generateKeyPair:Fe("utils.generateKeyPair"),generateKeyPairSync:Fe("utils.generateKeyPairSync"),parseKey:Fe("utils.parseKey"),parsePrivateKey:Fe("utils.parsePrivateKey"),parsePublicKey:Fe("utils.parsePublicKey"),decryptKey:Fe("utils.decryptKey"),sftp:{OPEN_MODE:{},STATUS_CODE:{},flagsToString:Fe("utils.sftp.flagsToString"),stringToFlags:Fe("utils.sftp.stringToFlags")}};var yn=Buffer.from([86,70,83,33]),Lo=1,fn=1,Ks=2,hn=class{chunks=[];write(t){this.chunks.push(t)}writeUint8(t){let n=Buffer.allocUnsafe(1);n.writeUInt8(t,0),this.chunks.push(n)}writeUint16(t){let n=Buffer.allocUnsafe(2);n.writeUInt16LE(t,0),this.chunks.push(n)}writeUint32(t){let n=Buffer.allocUnsafe(4);n.writeUInt32LE(t,0),this.chunks.push(n)}writeFloat64(t){let n=Buffer.allocUnsafe(8);n.writeDoubleBE(t,0),this.chunks.push(n)}writeString(t){let n=Buffer.from(t,"utf8");this.writeUint16(n.length),this.chunks.push(n)}writeBytes(t){this.writeUint32(t.length),this.chunks.push(t)}toBuffer(){return Buffer.concat(this.chunks)}};function Gs(e,t){if(t.type==="file"){let n=t;e.writeUint8(fn),e.writeString(n.name),e.writeUint32(n.mode),e.writeFloat64(n.createdAt),e.writeFloat64(n.updatedAt),e.writeUint8(n.compressed?1:0),e.writeBytes(n.content)}else if(t.type==="stub"){let n=t;e.writeUint8(fn),e.writeString(n.name),e.writeUint32(n.mode),e.writeFloat64(n.createdAt),e.writeFloat64(n.updatedAt),e.writeUint8(0),e.writeBytes(Buffer.from(n.stubContent,"utf8"))}else{let n=t;e.writeUint8(Ks),e.writeString(n.name),e.writeUint32(n.mode),e.writeFloat64(n.createdAt),e.writeFloat64(n.updatedAt);let r=Object.values(n.children);e.writeUint32(r.length);for(let i of r)Gs(e,i)}}function Sn(e){let t=new hn;return t.write(yn),t.writeUint8(Lo),Gs(t,e),t.toBuffer()}var gn=class{constructor(t){this.buf=t}buf;pos=0;readUint8(){return this.buf.readUInt8(this.pos++)}readUint16(){let t=this.buf.readUInt16LE(this.pos);return this.pos+=2,t}readUint32(){let t=this.buf.readUInt32LE(this.pos);return this.pos+=4,t}readFloat64(){let t=this.buf.readDoubleBE(this.pos);return this.pos+=8,t}readString(){let t=this.readUint16(),n=this.buf.toString("utf8",this.pos,this.pos+t);return this.pos+=t,n}readBytes(){let t=this.readUint32(),n=this.buf.slice(this.pos,this.pos+t);return this.pos+=t,n}remaining(){return this.buf.length-this.pos}};function Ys(e){let t=e.readUint8(),n=e.readString(),r=e.readUint32(),i=e.readFloat64(),s=e.readFloat64();if(t===fn){let o=e.readUint8()===1,a=e.readBytes();return{type:"file",name:n,mode:r,createdAt:i,updatedAt:s,compressed:o,content:a}}if(t===Ks){let o=e.readUint32(),a=Object.create(null);for(let l=0;l<o;l++){let c=Ys(e);a[c.name]=c}return{type:"directory",name:n,mode:r,createdAt:i,updatedAt:s,children:a,_childCount:o}}throw new Error(`[VFS binary] Unknown node type: 0x${t.toString(16)}`)}function De(e){if(e.length<5)throw new Error("[VFS binary] Buffer too short");if(!e.slice(0,4).equals(yn))throw new Error("[VFS binary] Invalid magic \u2014 not a VFS binary snapshot");let n=new gn(e);for(let i=0;i<5;i++)n.readUint8();let r=Ys(n);if(r.type!=="directory")throw new Error("[VFS binary] Root node must be a directory");return r}function Js(e){return e.length>=4&&e.slice(0,4).equals(yn)}var j={WRITE:1,MKDIR:2,REMOVE:3,CHMOD:4,MOVE:5,SYMLINK:6},ht="utf8";function Vo(e,t,n){let r=Buffer.from(n,ht);return e.writeUInt16LE(r.length,t),r.copy(e,t+2),2+r.length}function Uo(e){let t=Buffer.from(e.path,ht),n=0;e.op===j.WRITE?n=4+(e.content?.length??0)+4:e.op===j.MKDIR?n=4:e.op===j.REMOVE?n=0:e.op===j.CHMOD?n=4:(e.op===j.MOVE||e.op===j.SYMLINK)&&(n=2+Buffer.byteLength(e.dest??"",ht));let r=3+t.length+n,i=Buffer.allocUnsafe(r),s=0;if(i.writeUInt8(e.op,s++),i.writeUInt16LE(t.length,s),s+=2,t.copy(i,s),s+=t.length,e.op===j.WRITE){let o=e.content??Buffer.alloc(0);i.writeUInt32LE(o.length,s),s+=4,o.copy(i,s),s+=o.length,i.writeUInt32LE(e.mode??420,s),s+=4}else e.op===j.MKDIR?(i.writeUInt32LE(e.mode??493,s),s+=4):e.op===j.CHMOD?(i.writeUInt32LE(e.mode??420,s),s+=4):(e.op===j.MOVE||e.op===j.SYMLINK)&&(s+=Vo(i,s,e.dest??""));return i}function Bo(e){let t=[],n=0;try{for(;n<e.length&&!(n+3>e.length);){let r=e.readUInt8(n++),i=e.readUInt16LE(n);if(n+=2,n+i>e.length)break;let s=e.subarray(n,n+i).toString(ht);if(n+=i,r===j.WRITE){if(n+4>e.length)break;let o=e.readUInt32LE(n);if(n+=4,n+o+4>e.length)break;let a=Buffer.from(e.subarray(n,n+o));n+=o;let l=e.readUInt32LE(n);n+=4,t.push({op:r,path:s,content:a,mode:l})}else if(r===j.MKDIR){if(n+4>e.length)break;let o=e.readUInt32LE(n);n+=4,t.push({op:r,path:s,mode:o})}else if(r===j.REMOVE)t.push({op:r,path:s});else if(r===j.CHMOD){if(n+4>e.length)break;let o=e.readUInt32LE(n);n+=4,t.push({op:r,path:s,mode:o})}else if(r===j.MOVE||r===j.SYMLINK){if(n+2>e.length)break;let o=e.readUInt16LE(n);if(n+=2,n+o>e.length)break;let a=e.subarray(n,n+o).toString(ht);n+=o,t.push({op:r,path:s,dest:a})}else break}}catch{}return t}function Zs(e,t){let n=Uo(t);if(te(e)){let r=Vr(e,ct.O_WRONLY|ct.O_CREAT|ct.O_APPEND);try{Ur(r,n)}finally{Br(r)}}else te(".vfs")||Je(".vfs"),Ye(e,n)}function bn(e){if(!te(e))return[];let t=he(e);return t.length===0?[]:Bo(t)}function Qs(e){te(e)&&at(e)}function W(e){if(!e||e.trim()==="")return"/";let t=z.normalize(e.startsWith("/")?e:`/${e}`);return t===""?"/":t}function zo(e){return e.split("/").filter(Boolean)}function ae(e,t){let n=W(t);if(n==="/")return e;let r=zo(n),i=e;for(let s of r){if(i.type!=="directory")throw new Error(`Path '${n}' does not exist.`);let o=i.children[s];if(!o)throw new Error(`Path '${n}' does not exist.`);i=o}return i}function ze(e,t,n,r){let i=W(t);if(i==="/")throw new Error("Root path has no parent directory.");let s=z.dirname(i),o=z.basename(i);if(!o)throw new Error(`Invalid path '${t}'.`);n&&r(s);let a=ae(e,s);if(a.type!=="directory")throw new Error(`Parent path '${s}' is not a directory.`);return{parent:a,name:o}}var xn=class e extends ye{root;mode;snapshotFile;journalFile;evictionThreshold;flushAfterNWrites;_writesSinceFlush=0;_flushTimer=null;_dirty=!1;mounts=new Map;static isBrowser=typeof y>"u"||typeof y.versions?.node>"u";constructor(t={}){if(super(),this.mode=t.mode??"memory",this.mode==="fs"){if(!t.snapshotPath)throw new Error('VirtualFileSystem: "snapshotPath" is required when mode is "fs".');this.snapshotFile=rt(t.snapshotPath,"vfs-snapshot.vfsb"),this.journalFile=rt(t.snapshotPath,"vfs-journal.bin"),this.evictionThreshold=t.evictionThresholdBytes??64*1024,this.flushAfterNWrites=t.flushAfterNWrites??500;let n=t.flushIntervalMs??1e3;n>0&&(this._flushTimer=setInterval(()=>{this._dirty&&this._autoFlush()},n),typeof this._flushTimer=="object"&&this._flushTimer!==null&&"unref"in this._flushTimer&&this._flushTimer.unref())}else this.snapshotFile=null,this.journalFile=null,this.evictionThreshold=0,this.flushAfterNWrites=0;this.root=this.makeDir("",493)}makeDir(t,n){let r=Date.now();return{type:"directory",name:t,mode:n,createdAt:r,updatedAt:r,children:Object.create(null),_childCount:0}}makeFile(t,n,r,i){let s=Date.now();return{type:"file",name:t,content:n,mode:r,compressed:i,createdAt:s,updatedAt:s}}makeStub(t,n,r){let i=Date.now();return{type:"stub",name:t,stubContent:n,mode:r,createdAt:i,updatedAt:i}}writeStub(t,n,r=420){let i=W(t),{parent:s,name:o}=ze(this.root,i,!0,l=>this.mkdirRecursive(l,493)),a=s.children[o];if(a?.type==="directory")throw new Error(`Cannot write stub '${i}': path is a directory.`);a?.type!=="file"&&(a||s._childCount++,s.children[o]=this.makeStub(o,n,r))}mkdirRecursive(t,n){let r=W(t);if(r==="/")return;let i=r.split("/").filter(Boolean),s=this.root,o="";for(let a of i){o+=`/${a}`;let l=s.children[a];if(!l)l=this.makeDir(a,n),s.children[a]=l,s._childCount++,this.emit("dir:create",{path:o,mode:n}),this._journal({op:j.MKDIR,path:o,mode:n});else if(l.type!=="directory")throw new Error(`Cannot create directory '${o}': path is a file.`);s=l}}async restoreMirror(){if(!(this.mode!=="fs"||!this.snapshotFile)){if(!te(this.snapshotFile)){if(this.journalFile){let t=bn(this.journalFile);t.length>0&&this._replayJournal(t)}return}try{let t=he(this.snapshotFile);if(Js(t))this.root=De(t);else{let n=JSON.parse(t.toString("utf8"));this.root=this.deserializeDir(n.root,""),console.info("[VirtualFileSystem] Migrating legacy JSON snapshot to binary format.")}if(this.emit("snapshot:restore",{path:this.snapshotFile}),this.journalFile){let n=bn(this.journalFile);n.length>0&&this._replayJournal(n)}}catch(t){console.warn(`[VirtualFileSystem] Could not restore snapshot from ${this.snapshotFile}:`,t instanceof Error?t.message:String(t))}}}async flushMirror(){if(this.mode!=="fs"||!this.snapshotFile){this.emit("mirror:flush");return}let t=Ct(this.snapshotFile);Je(t,{recursive:!0});let n=this.root,r=Sn(n);Ye(this.snapshotFile,r),this.journalFile&&Qs(this.journalFile),this._dirty=!1,this._writesSinceFlush=0,this.emit("mirror:flush",{path:this.snapshotFile}),this.evictLargeFiles()}getMode(){return this.mode}getSnapshotPath(){return this.snapshotFile}async _autoFlush(){this._dirty&&await this.flushMirror()}_markDirty(){this._dirty=!0,this.flushAfterNWrites>0&&(this._writesSinceFlush++,this._writesSinceFlush>=this.flushAfterNWrites&&(this._writesSinceFlush=0,this._autoFlush()))}async stopAutoFlush(){this._flushTimer!==null&&(clearInterval(this._flushTimer),this._flushTimer=null),this._dirty&&await this.flushMirror()}importRootTree(t){let n=this._replayMode;this._replayMode=!0;try{this.root=t}finally{this._replayMode=n}}mergeRootTree(t){let n=this._replayMode;this._replayMode=!0;try{this._mergeDir(this.root,t)}finally{this._replayMode=n}}_mergeDir(t,n){for(let[r,i]of Object.entries(n.children)){let s=t.children[r];i.type==="directory"?s?s.type==="directory"&&this._mergeDir(s,i):(t.children[r]=i,t._childCount++):s||(t.children[r]=i,t._childCount++)}}encodeBinary(){return Sn(this.root)}releaseTree(){this.root=this.makeDir("",493)}_replayMode=!1;_journal(t){this.journalFile&&!this._replayMode&&(Zs(this.journalFile,t),this._markDirty())}_replayJournal(t){this._replayMode=!0;try{for(let n of t)try{n.op===j.WRITE?this.writeFile(n.path,n.content??Buffer.alloc(0),{mode:n.mode}):n.op===j.MKDIR?this.mkdir(n.path,n.mode):n.op===j.REMOVE?this.exists(n.path)&&this.remove(n.path,{recursive:!0}):n.op===j.CHMOD?this.exists(n.path)&&this.chmod(n.path,n.mode??420):n.op===j.MOVE?this.exists(n.path)&&n.dest&&this.move(n.path,n.dest):n.op===j.SYMLINK&&n.dest&&this.symlink(n.dest,n.path)}catch{}}finally{this._replayMode=!1}}evictLargeFiles(){!this.snapshotFile||this.evictionThreshold===0||te(this.snapshotFile)&&this._evictDir(this.root)}_evictDir(t){for(let n of Object.values(t.children))if(n.type==="directory")this._evictDir(n);else if(n.type==="file"&&!n.evicted){let r=n.compressed?n.size??n.content.length*2:n.content.length;r>this.evictionThreshold&&(n.size=r,n.content=Buffer.alloc(0),n.evicted=!0)}}_reloadEvicted(t,n){if(!(!t.evicted||!this.snapshotFile)&&te(this.snapshotFile))try{let r=he(this.snapshotFile),i=De(r),s=n.split("/").filter(Boolean),o=i;for(let a of s){if(o.type!=="directory")return;let l=o.children[a];if(!l)return;o=l}o.type==="file"&&(t.content=o.content,t.compressed=o.compressed,t.evicted=void 0)}catch{}}mount(t,n,{readOnly:r=!0}={}){if(e.isBrowser)return;let i=W(t),s=rt(n);if(!te(s))throw new Error(`VirtualFileSystem.mount: host path does not exist: "${s}"`);if(!_t(s).isDirectory())throw new Error(`VirtualFileSystem.mount: host path is not a directory: "${s}"`);this.mkdir(i),this.mounts.set(i,{hostPath:s,readOnly:r}),this.emit("mount",{vPath:i,hostPath:s,readOnly:r})}unmount(t){let n=W(t);this.mounts.delete(n)&&this.emit("unmount",{vPath:n})}getMounts(){return[...this.mounts.entries()].map(([t,n])=>({vPath:t,...n}))}resolveMount(t){let n=W(t),r=[...this.mounts.entries()].sort(([i],[s])=>s.length-i.length);for(let[i,s]of r)if(n===i||n.startsWith(`${i}/`)){let o=n.slice(i.length).replace(/^\//,""),a=o?On(s.hostPath,o):s.hostPath;return{hostPath:s.hostPath,readOnly:s.readOnly,relPath:o,fullHostPath:a}}return null}mkdir(t,n=493){let r=W(t),i=(()=>{try{return ae(this.root,r)}catch{return null}})();if(i&&i.type!=="directory")throw new Error(`Cannot create directory '${r}': path is a file.`);this.mkdirRecursive(r,n)}writeFile(t,n,r={}){let i=this.resolveMount(t);if(i){if(i.readOnly)throw new Error(`EROFS: read-only file system, open '${i.fullHostPath}'`);let p=Ct(i.fullHostPath);te(p)||Je(p,{recursive:!0}),Ye(i.fullHostPath,Buffer.isBuffer(n)?n:Buffer.from(n,"utf8"));return}let s=W(t),{parent:o,name:a}=ze(this.root,s,!0,p=>this.mkdirRecursive(p,493)),l=o.children[a];if(l?.type==="directory")throw new Error(`Cannot write file '${s}': path is a directory.`);let c=Buffer.isBuffer(n)?n:Buffer.from(n,"utf8"),u=r.compress??!1,d=u?c:c,m=r.mode??420;if(l&&l.type==="file"){let p=l;p.content=d,p.compressed=u,p.mode=m,p.updatedAt=Date.now()}else l||o._childCount++,o.children[a]=this.makeFile(a,d,m,u);this.emit("file:write",{path:s,size:d.length}),this._journal({op:j.WRITE,path:s,content:c,mode:m})}readFile(t){let n=this.resolveMount(t);if(n){if(!te(n.fullHostPath))throw new Error(`ENOENT: no such file or directory, open '${n.fullHostPath}'`);return he(n.fullHostPath,"utf8")}let r=W(t),i=ae(this.root,r);if(i.type==="stub")return this.emit("file:read",{path:r,size:i.stubContent.length}),i.stubContent;if(i.type!=="file")throw new Error(`Cannot read '${t}': not a file.`);let s=i;s.evicted&&this._reloadEvicted(s,r);let o=s.compressed?s.content:s.content;return this.emit("file:read",{path:r,size:o.length}),o.toString("utf8")}readFileRaw(t){let n=this.resolveMount(t);if(n){if(!te(n.fullHostPath))throw new Error(`ENOENT: no such file or directory, open '${n.fullHostPath}'`);return he(n.fullHostPath)}let r=W(t),i=ae(this.root,r);if(i.type==="stub"){let a=Buffer.from(i.stubContent,"utf8");return this.emit("file:read",{path:r,size:a.length}),a}if(i.type!=="file")throw new Error(`Cannot read '${t}': not a file.`);let s=i;s.evicted&&this._reloadEvicted(s,r);let o=s.compressed?s.content:s.content;return this.emit("file:read",{path:r,size:o.length}),o}exists(t){let n=this.resolveMount(t);if(n)return te(n.fullHostPath);try{return ae(this.root,W(t)),!0}catch{return!1}}chmod(t,n){let r=W(t);ae(this.root,r).mode=n,this._journal({op:j.CHMOD,path:r,mode:n})}stat(t){let n=this.resolveMount(t);if(n){if(!te(n.fullHostPath))throw new Error(`ENOENT: stat '${n.fullHostPath}'`);let a=_t(n.fullHostPath),l=n.relPath.split("/").pop()??n.fullHostPath.split("/").pop()??"",c=a.mtime;return a.isDirectory()?{type:"directory",name:l,path:W(t),mode:493,createdAt:a.birthtime,updatedAt:c,childrenCount:lt(n.fullHostPath).length}:{type:"file",name:l,path:W(t),mode:n.readOnly?292:420,createdAt:a.birthtime,updatedAt:c,compressed:!1,size:a.size}}let r=W(t),i=ae(this.root,r),s=r==="/"?"":z.basename(r);if(i.type==="stub"){let a=i;return{type:"file",name:s,path:r,mode:a.mode,createdAt:new Date(a.createdAt),updatedAt:new Date(a.updatedAt),compressed:!1,size:a.stubContent.length}}if(i.type==="file"){let a=i;return{type:"file",name:s,path:r,mode:a.mode,createdAt:new Date(a.createdAt),updatedAt:new Date(a.updatedAt),compressed:a.compressed,size:a.evicted?a.size??0:a.content.length}}let o=i;return{type:"directory",name:s,path:r,mode:o.mode,createdAt:new Date(o.createdAt),updatedAt:new Date(o.updatedAt),childrenCount:o._childCount}}list(t="/"){let n=this.resolveMount(t);if(n){if(!te(n.fullHostPath))return[];try{return lt(n.fullHostPath).sort()}catch{return[]}}let r=W(t),i=ae(this.root,r);if(i.type!=="directory")throw new Error(`Cannot list '${t}': not a directory.`);return Object.keys(i.children).sort()}tree(t="/"){let n=W(t),r=ae(this.root,n);if(r.type!=="directory")throw new Error(`Cannot render tree for '${t}': not a directory.`);let i=t==="/"?"/":z.basename(n);return this.renderTreeLines(r,i)}renderTreeLines(t,n){let r=[n],i=Object.keys(t.children).sort();for(let s=0;s<i.length;s++){let o=i[s],a=t.children[o],l=s===i.length-1,c=l?"\u2514\u2500\u2500 ":"\u251C\u2500\u2500 ",u=l?" ":"\u2502 ";if(r.push(`${c}${o}`),a.type==="directory"){let d=this.renderTreeLines(a,"").split(`
1025
+ `)||void 0,exitCode:0}):{stdout:S,exitCode:0}}};var zs={name:"which",description:"Locate a command in PATH",category:"shell",params:["<command...>"],run:({args:e,shell:t,env:n})=>{if(e.length===0)return{stderr:"which: missing argument",exitCode:1};let r=(n?.vars?.PATH??"/usr/local/bin:/usr/bin:/bin").split(":"),i=[],s=!1;for(let o of e){let a=!1;for(let l of r){let c=`${l}/${o}`;if(t.vfs.exists(c)&&t.vfs.stat(c).type==="file"){i.push(c),a=!0;break}}a||(s=!0)}return i.length===0?{exitCode:1}:{stdout:i.join(`
1026
+ `),exitCode:s?1:0}}};function zt(e){let t=e.toLocaleString("en-US",{weekday:"short"}),n=e.toLocaleString("en-US",{month:"short"}),r=e.getDate().toString().padStart(2,"0"),i=e.getHours().toString().padStart(2,"0"),s=e.getMinutes().toString().padStart(2,"0"),o=e.getSeconds().toString().padStart(2,"0"),a=e.getFullYear();return`${t} ${n} ${r} ${i}:${s}:${o} ${a}`}var Hs={name:"who",description:"Show active sessions",category:"system",params:[],run:({shell:e})=>({stdout:e.users.listActiveSessions().map(n=>{let r=new Date(n.startedAt),i=Number.isNaN(r.getTime())?n.startedAt:zt(r);return`${n.username} ${n.tty} ${i} (${n.remoteAddress||"unknown"})`}).join(`
1027
+ `),exitCode:0})};var js={name:"whoami",description:"Print current user",category:"system",params:[],run:({authUser:e})=>({stdout:e,exitCode:0})};var Ws={name:"xargs",description:"Build and execute command lines from stdin",category:"text",params:["[command] [args...]"],run:async({authUser:e,hostname:t,mode:n,cwd:r,args:i,stdin:s,shell:o,env:a})=>{let l=i[0]??"echo",c=i.slice(1),u=(s??"").trim().split(/\s+/).filter(Boolean);if(u.length===0)return{exitCode:0};let d=[l,...c,...u].join(" ");return Z(d,e,t,n,r,o,void 0,a)}};var Lo=[as,qn,Or,_s,zn,Is,ms,Rr,Yn,Lr,Mr,Ir,Kn,Nr,Ar,ur,pr,ps,Un,ws,Rs,Us,yr,Es,Zn,As,ks,Ws,nr,$s,hr,gr,Bn,js,Hs,Pr,$r,fr,Fs,os,kr,tr,ir,Xn,xs,ss,or,ar,cr,fs,Ls,gs,Gn,lr,Vr,Er,Jn,Bs,An,rs,er,Ps,Cs,Xr,Ln,Vn,rr,sr,zs,Ds,Fr,On,Tn,Ms,vs,Cr,is,ds,Qn,ys,Ss,bs,Os,Ts,ts,ns,es,us,Vs,mr,Tr],qs=[],ht=new Map,Ht=null,Vo=vr(()=>hn().map(e=>e.name));function fn(){ht.clear();for(let e of hn()){ht.set(e.name,e);for(let t of e.aliases??[])ht.set(t,e)}Ht=Array.from(ht.keys()).sort()}function hn(){return[...Lo,...qs,Vo]}function Qt(e){let t={...e,name:e.name.trim().toLowerCase(),aliases:e.aliases?.map(r=>r.trim().toLowerCase())};if([t.name,...t.aliases??[]].some(r=>r.length===0||/\s/.test(r)))throw new Error("Command names must be non-empty and contain no spaces");qs.push(t),fn()}function en(e,t,n){return{name:e,params:t,run:n}}function it(){return Ht||fn(),Ht}function tn(){return hn()}function xe(e){return Ht||fn(),ht.get(e.toLowerCase())}function Ks(e){return e==="1"||e==="true"}function Gs(){return typeof performance<"u"&&typeof performance.now=="function"?performance.now():Date.now()}function Uo(){return Ks(y.env.DEV_MODE)||Ks(y.env.RENDER_PERF)}function ge(e){let t=Uo();if(!t)return{enabled:t,mark:()=>{},done:()=>{}};let n=Gs(),r=s=>{let o=Gs()-n;console.log(`[perf][${e}] ${s}: ${o.toFixed(1)}ms`)};return{enabled:t,mark:r,done:(s="done")=>{r(s)}}}var kg=ge("HoneyPot");var Og=ge("SshClient");var ye=class{constructor(){this._events=Object.create(null)}on(t,n){return(this._events[t]||=[]).push(n),this}addListener(t,n){return this.on(t,n)}emit(t,...n){let r=this._events[t]||[];for(let i of r)try{i(...n)}catch{}return r.length>0}removeListener(t,n){this._events[t]&&(this._events[t]=this._events[t].filter(r=>r!==n))}};function Fe(e){return function(){throw new Error(`ssh2: ${e} not implemented in browser`)}}var Ug={generateKeyPair:Fe("utils.generateKeyPair"),generateKeyPairSync:Fe("utils.generateKeyPairSync"),parseKey:Fe("utils.parseKey"),parsePrivateKey:Fe("utils.parsePrivateKey"),parsePublicKey:Fe("utils.parsePublicKey"),decryptKey:Fe("utils.decryptKey"),sftp:{OPEN_MODE:{},STATUS_CODE:{},flagsToString:Fe("utils.sftp.flagsToString"),stringToFlags:Fe("utils.sftp.stringToFlags")}};var bn=Buffer.from([86,70,83,33]),Bo=1,gn=1,Ys=2,yn=class{chunks=[];write(t){this.chunks.push(t)}writeUint8(t){let n=Buffer.allocUnsafe(1);n.writeUInt8(t,0),this.chunks.push(n)}writeUint16(t){let n=Buffer.allocUnsafe(2);n.writeUInt16LE(t,0),this.chunks.push(n)}writeUint32(t){let n=Buffer.allocUnsafe(4);n.writeUInt32LE(t,0),this.chunks.push(n)}writeFloat64(t){let n=Buffer.allocUnsafe(8);n.writeDoubleBE(t,0),this.chunks.push(n)}writeString(t){let n=Buffer.from(t,"utf8");this.writeUint16(n.length),this.chunks.push(n)}writeBytes(t){this.writeUint32(t.length),this.chunks.push(t)}toBuffer(){return Buffer.concat(this.chunks)}};function Js(e,t){if(t.type==="file"){let n=t;e.writeUint8(gn),e.writeString(n.name),e.writeUint32(n.mode),e.writeFloat64(n.createdAt),e.writeFloat64(n.updatedAt),e.writeUint8(n.compressed?1:0),e.writeBytes(n.content)}else if(t.type==="stub"){let n=t;e.writeUint8(gn),e.writeString(n.name),e.writeUint32(n.mode),e.writeFloat64(n.createdAt),e.writeFloat64(n.updatedAt),e.writeUint8(0),e.writeBytes(Buffer.from(n.stubContent,"utf8"))}else{let n=t;e.writeUint8(Ys),e.writeString(n.name),e.writeUint32(n.mode),e.writeFloat64(n.createdAt),e.writeFloat64(n.updatedAt);let r=Object.values(n.children);e.writeUint32(r.length);for(let i of r)Js(e,i)}}function xn(e){let t=new yn;return t.write(bn),t.writeUint8(Bo),Js(t,e),t.toBuffer()}var Sn=class{constructor(t){this.buf=t}buf;pos=0;readUint8(){return this.buf.readUInt8(this.pos++)}readUint16(){let t=this.buf.readUInt16LE(this.pos);return this.pos+=2,t}readUint32(){let t=this.buf.readUInt32LE(this.pos);return this.pos+=4,t}readFloat64(){let t=this.buf.readDoubleBE(this.pos);return this.pos+=8,t}readString(){let t=this.readUint16(),n=this.buf.toString("utf8",this.pos,this.pos+t);return this.pos+=t,n}readBytes(){let t=this.readUint32(),n=this.buf.slice(this.pos,this.pos+t);return this.pos+=t,n}remaining(){return this.buf.length-this.pos}};function Zs(e){let t=e.readUint8(),n=e.readString(),r=e.readUint32(),i=e.readFloat64(),s=e.readFloat64();if(t===gn){let o=e.readUint8()===1,a=e.readBytes();return{type:"file",name:n,mode:r,createdAt:i,updatedAt:s,compressed:o,content:a}}if(t===Ys){let o=e.readUint32(),a=Object.create(null);for(let l=0;l<o;l++){let c=Zs(e);a[c.name]=c}return{type:"directory",name:n,mode:r,createdAt:i,updatedAt:s,children:a,_childCount:o}}throw new Error(`[VFS binary] Unknown node type: 0x${t.toString(16)}`)}function Re(e){if(e.length<5)throw new Error("[VFS binary] Buffer too short");if(!e.slice(0,4).equals(bn))throw new Error("[VFS binary] Invalid magic \u2014 not a VFS binary snapshot");let n=new Sn(e);for(let i=0;i<5;i++)n.readUint8();let r=Zs(n);if(r.type!=="directory")throw new Error("[VFS binary] Root node must be a directory");return r}function Xs(e){return e.length>=4&&e.slice(0,4).equals(bn)}var j={WRITE:1,MKDIR:2,REMOVE:3,CHMOD:4,MOVE:5,SYMLINK:6},gt="utf8";function zo(e,t,n){let r=Buffer.from(n,gt);return e.writeUInt16LE(r.length,t),r.copy(e,t+2),2+r.length}function Ho(e){let t=Buffer.from(e.path,gt),n=0;e.op===j.WRITE?n=4+(e.content?.length??0)+4:e.op===j.MKDIR?n=4:e.op===j.REMOVE?n=0:e.op===j.CHMOD?n=4:(e.op===j.MOVE||e.op===j.SYMLINK)&&(n=2+Buffer.byteLength(e.dest??"",gt));let r=3+t.length+n,i=Buffer.allocUnsafe(r),s=0;if(i.writeUInt8(e.op,s++),i.writeUInt16LE(t.length,s),s+=2,t.copy(i,s),s+=t.length,e.op===j.WRITE){let o=e.content??Buffer.alloc(0);i.writeUInt32LE(o.length,s),s+=4,o.copy(i,s),s+=o.length,i.writeUInt32LE(e.mode??420,s),s+=4}else e.op===j.MKDIR?(i.writeUInt32LE(e.mode??493,s),s+=4):e.op===j.CHMOD?(i.writeUInt32LE(e.mode??420,s),s+=4):(e.op===j.MOVE||e.op===j.SYMLINK)&&(s+=zo(i,s,e.dest??""));return i}function jo(e){let t=[],n=0;try{for(;n<e.length&&!(n+3>e.length);){let r=e.readUInt8(n++),i=e.readUInt16LE(n);if(n+=2,n+i>e.length)break;let s=e.subarray(n,n+i).toString(gt);if(n+=i,r===j.WRITE){if(n+4>e.length)break;let o=e.readUInt32LE(n);if(n+=4,n+o+4>e.length)break;let a=Buffer.from(e.subarray(n,n+o));n+=o;let l=e.readUInt32LE(n);n+=4,t.push({op:r,path:s,content:a,mode:l})}else if(r===j.MKDIR){if(n+4>e.length)break;let o=e.readUInt32LE(n);n+=4,t.push({op:r,path:s,mode:o})}else if(r===j.REMOVE)t.push({op:r,path:s});else if(r===j.CHMOD){if(n+4>e.length)break;let o=e.readUInt32LE(n);n+=4,t.push({op:r,path:s,mode:o})}else if(r===j.MOVE||r===j.SYMLINK){if(n+2>e.length)break;let o=e.readUInt16LE(n);if(n+=2,n+o>e.length)break;let a=e.subarray(n,n+o).toString(gt);n+=o,t.push({op:r,path:s,dest:a})}else break}}catch{}return t}function Qs(e,t){let n=Ho(t);if(te(e)){let r=Br(e,ut.O_WRONLY|ut.O_CREAT|ut.O_APPEND);try{zr(r,n)}finally{Hr(r)}}else te(".vfs")||Ze(".vfs"),Je(e,n)}function wn(e){if(!te(e))return[];let t=he(e);return t.length===0?[]:jo(t)}function ei(e){te(e)&&lt(e)}function W(e){if(!e||e.trim()==="")return"/";let t=z.normalize(e.startsWith("/")?e:`/${e}`);return t===""?"/":t}function Wo(e){return e.split("/").filter(Boolean)}function ae(e,t){let n=W(t);if(n==="/")return e;let r=Wo(n),i=e;for(let s of r){if(i.type!=="directory")throw new Error(`Path '${n}' does not exist.`);let o=i.children[s];if(!o)throw new Error(`Path '${n}' does not exist.`);i=o}return i}function He(e,t,n,r){let i=W(t);if(i==="/")throw new Error("Root path has no parent directory.");let s=z.dirname(i),o=z.basename(i);if(!o)throw new Error(`Invalid path '${t}'.`);n&&r(s);let a=ae(e,s);if(a.type!=="directory")throw new Error(`Parent path '${s}' is not a directory.`);return{parent:a,name:o}}var vn=class e extends ye{root;mode;snapshotFile;journalFile;evictionThreshold;flushAfterNWrites;_writesSinceFlush=0;_flushTimer=null;_dirty=!1;mounts=new Map;static isBrowser=typeof y>"u"||typeof y.versions?.node>"u";constructor(t={}){if(super(),this.mode=t.mode??"memory",this.mode==="fs"){if(!t.snapshotPath)throw new Error('VirtualFileSystem: "snapshotPath" is required when mode is "fs".');this.snapshotFile=st(t.snapshotPath,"vfs-snapshot.vfsb"),this.journalFile=st(t.snapshotPath,"vfs-journal.bin"),this.evictionThreshold=t.evictionThresholdBytes??64*1024,this.flushAfterNWrites=t.flushAfterNWrites??500;let n=t.flushIntervalMs??1e3;n>0&&(this._flushTimer=setInterval(()=>{this._dirty&&this._autoFlush()},n),typeof this._flushTimer=="object"&&this._flushTimer!==null&&"unref"in this._flushTimer&&this._flushTimer.unref())}else this.snapshotFile=null,this.journalFile=null,this.evictionThreshold=0,this.flushAfterNWrites=0;this.root=this.makeDir("",493)}makeDir(t,n){let r=Date.now();return{type:"directory",name:t,mode:n,createdAt:r,updatedAt:r,children:Object.create(null),_childCount:0}}makeFile(t,n,r,i){let s=Date.now();return{type:"file",name:t,content:n,mode:r,compressed:i,createdAt:s,updatedAt:s}}makeStub(t,n,r){let i=Date.now();return{type:"stub",name:t,stubContent:n,mode:r,createdAt:i,updatedAt:i}}writeStub(t,n,r=420){let i=W(t),{parent:s,name:o}=He(this.root,i,!0,l=>this.mkdirRecursive(l,493)),a=s.children[o];if(a?.type==="directory")throw new Error(`Cannot write stub '${i}': path is a directory.`);a?.type!=="file"&&(a||s._childCount++,s.children[o]=this.makeStub(o,n,r))}mkdirRecursive(t,n){let r=W(t);if(r==="/")return;let i=r.split("/").filter(Boolean),s=this.root,o="";for(let a of i){o+=`/${a}`;let l=s.children[a];if(!l)l=this.makeDir(a,n),s.children[a]=l,s._childCount++,this.emit("dir:create",{path:o,mode:n}),this._journal({op:j.MKDIR,path:o,mode:n});else if(l.type!=="directory")throw new Error(`Cannot create directory '${o}': path is a file.`);s=l}}async restoreMirror(){if(!(this.mode!=="fs"||!this.snapshotFile)){if(!te(this.snapshotFile)){if(this.journalFile){let t=wn(this.journalFile);t.length>0&&this._replayJournal(t)}return}try{let t=he(this.snapshotFile);if(Xs(t))this.root=Re(t);else{let n=JSON.parse(t.toString("utf8"));this.root=this.deserializeDir(n.root,""),console.info("[VirtualFileSystem] Migrating legacy JSON snapshot to binary format.")}if(this.emit("snapshot:restore",{path:this.snapshotFile}),this.journalFile){let n=wn(this.journalFile);n.length>0&&this._replayJournal(n)}}catch(t){console.warn(`[VirtualFileSystem] Could not restore snapshot from ${this.snapshotFile}:`,t instanceof Error?t.message:String(t))}}}async flushMirror(){if(this.mode!=="fs"||!this.snapshotFile){this.emit("mirror:flush");return}let t=Pt(this.snapshotFile);Ze(t,{recursive:!0});let n=this.root,r=xn(n);Je(this.snapshotFile,r),this.journalFile&&ei(this.journalFile),this._dirty=!1,this._writesSinceFlush=0,this.emit("mirror:flush",{path:this.snapshotFile}),this.evictLargeFiles()}getMode(){return this.mode}getSnapshotPath(){return this.snapshotFile}async _autoFlush(){this._dirty&&await this.flushMirror()}_markDirty(){this._dirty=!0,this.flushAfterNWrites>0&&(this._writesSinceFlush++,this._writesSinceFlush>=this.flushAfterNWrites&&(this._writesSinceFlush=0,this._autoFlush()))}async stopAutoFlush(){this._flushTimer!==null&&(clearInterval(this._flushTimer),this._flushTimer=null),this._dirty&&await this.flushMirror()}importRootTree(t){let n=this._replayMode;this._replayMode=!0;try{this.root=t}finally{this._replayMode=n}}mergeRootTree(t){let n=this._replayMode;this._replayMode=!0;try{this._mergeDir(this.root,t)}finally{this._replayMode=n}}_mergeDir(t,n){for(let[r,i]of Object.entries(n.children)){let s=t.children[r];i.type==="directory"?s?s.type==="directory"&&this._mergeDir(s,i):(t.children[r]=i,t._childCount++):s||(t.children[r]=i,t._childCount++)}}encodeBinary(){return xn(this.root)}releaseTree(){this.root=this.makeDir("",493)}_replayMode=!1;_journal(t){this.journalFile&&!this._replayMode&&(Qs(this.journalFile,t),this._markDirty())}_replayJournal(t){this._replayMode=!0;try{for(let n of t)try{n.op===j.WRITE?this.writeFile(n.path,n.content??Buffer.alloc(0),{mode:n.mode}):n.op===j.MKDIR?this.mkdir(n.path,n.mode):n.op===j.REMOVE?this.exists(n.path)&&this.remove(n.path,{recursive:!0}):n.op===j.CHMOD?this.exists(n.path)&&this.chmod(n.path,n.mode??420):n.op===j.MOVE?this.exists(n.path)&&n.dest&&this.move(n.path,n.dest):n.op===j.SYMLINK&&n.dest&&this.symlink(n.dest,n.path)}catch{}}finally{this._replayMode=!1}}evictLargeFiles(){!this.snapshotFile||this.evictionThreshold===0||te(this.snapshotFile)&&this._evictDir(this.root)}_evictDir(t){for(let n of Object.values(t.children))if(n.type==="directory")this._evictDir(n);else if(n.type==="file"&&!n.evicted){let r=n.compressed?n.size??n.content.length*2:n.content.length;r>this.evictionThreshold&&(n.size=r,n.content=Buffer.alloc(0),n.evicted=!0)}}_reloadEvicted(t,n){if(!(!t.evicted||!this.snapshotFile)&&te(this.snapshotFile))try{let r=he(this.snapshotFile),i=Re(r),s=n.split("/").filter(Boolean),o=i;for(let a of s){if(o.type!=="directory")return;let l=o.children[a];if(!l)return;o=l}o.type==="file"&&(t.content=o.content,t.compressed=o.compressed,t.evicted=void 0)}catch{}}mount(t,n,{readOnly:r=!0}={}){if(e.isBrowser)return;let i=W(t),s=st(n);if(!te(s))throw new Error(`VirtualFileSystem.mount: host path does not exist: "${s}"`);if(!Tt(s).isDirectory())throw new Error(`VirtualFileSystem.mount: host path is not a directory: "${s}"`);this.mkdir(i),this.mounts.set(i,{hostPath:s,readOnly:r}),this.emit("mount",{vPath:i,hostPath:s,readOnly:r})}unmount(t){let n=W(t);this.mounts.delete(n)&&this.emit("unmount",{vPath:n})}getMounts(){return[...this.mounts.entries()].map(([t,n])=>({vPath:t,...n}))}resolveMount(t){let n=W(t),r=[...this.mounts.entries()].sort(([i],[s])=>s.length-i.length);for(let[i,s]of r)if(n===i||n.startsWith(`${i}/`)){let o=n.slice(i.length).replace(/^\//,""),a=o?Dn(s.hostPath,o):s.hostPath;return{hostPath:s.hostPath,readOnly:s.readOnly,relPath:o,fullHostPath:a}}return null}mkdir(t,n=493){let r=W(t),i=(()=>{try{return ae(this.root,r)}catch{return null}})();if(i&&i.type!=="directory")throw new Error(`Cannot create directory '${r}': path is a file.`);this.mkdirRecursive(r,n)}writeFile(t,n,r={}){let i=this.resolveMount(t);if(i){if(i.readOnly)throw new Error(`EROFS: read-only file system, open '${i.fullHostPath}'`);let p=Pt(i.fullHostPath);te(p)||Ze(p,{recursive:!0}),Je(i.fullHostPath,Buffer.isBuffer(n)?n:Buffer.from(n,"utf8"));return}let s=W(t),{parent:o,name:a}=He(this.root,s,!0,p=>this.mkdirRecursive(p,493)),l=o.children[a];if(l?.type==="directory")throw new Error(`Cannot write file '${s}': path is a directory.`);let c=Buffer.isBuffer(n)?n:Buffer.from(n,"utf8"),u=r.compress??!1,d=u?c:c,m=r.mode??420;if(l&&l.type==="file"){let p=l;p.content=d,p.compressed=u,p.mode=m,p.updatedAt=Date.now()}else l||o._childCount++,o.children[a]=this.makeFile(a,d,m,u);this.emit("file:write",{path:s,size:d.length}),this._journal({op:j.WRITE,path:s,content:c,mode:m})}readFile(t){let n=this.resolveMount(t);if(n){if(!te(n.fullHostPath))throw new Error(`ENOENT: no such file or directory, open '${n.fullHostPath}'`);return he(n.fullHostPath,"utf8")}let r=W(t),i=ae(this.root,r);if(i.type==="stub")return this.emit("file:read",{path:r,size:i.stubContent.length}),i.stubContent;if(i.type!=="file")throw new Error(`Cannot read '${t}': not a file.`);let s=i;s.evicted&&this._reloadEvicted(s,r);let o=s.compressed?s.content:s.content;return this.emit("file:read",{path:r,size:o.length}),o.toString("utf8")}readFileRaw(t){let n=this.resolveMount(t);if(n){if(!te(n.fullHostPath))throw new Error(`ENOENT: no such file or directory, open '${n.fullHostPath}'`);return he(n.fullHostPath)}let r=W(t),i=ae(this.root,r);if(i.type==="stub"){let a=Buffer.from(i.stubContent,"utf8");return this.emit("file:read",{path:r,size:a.length}),a}if(i.type!=="file")throw new Error(`Cannot read '${t}': not a file.`);let s=i;s.evicted&&this._reloadEvicted(s,r);let o=s.compressed?s.content:s.content;return this.emit("file:read",{path:r,size:o.length}),o}exists(t){let n=this.resolveMount(t);if(n)return te(n.fullHostPath);try{return ae(this.root,W(t)),!0}catch{return!1}}chmod(t,n){let r=W(t);ae(this.root,r).mode=n,this._journal({op:j.CHMOD,path:r,mode:n})}stat(t){let n=this.resolveMount(t);if(n){if(!te(n.fullHostPath))throw new Error(`ENOENT: stat '${n.fullHostPath}'`);let a=Tt(n.fullHostPath),l=n.relPath.split("/").pop()??n.fullHostPath.split("/").pop()??"",c=a.mtime;return a.isDirectory()?{type:"directory",name:l,path:W(t),mode:493,createdAt:a.birthtime,updatedAt:c,childrenCount:ct(n.fullHostPath).length}:{type:"file",name:l,path:W(t),mode:n.readOnly?292:420,createdAt:a.birthtime,updatedAt:c,compressed:!1,size:a.size}}let r=W(t),i=ae(this.root,r),s=r==="/"?"":z.basename(r);if(i.type==="stub"){let a=i;return{type:"file",name:s,path:r,mode:a.mode,createdAt:new Date(a.createdAt),updatedAt:new Date(a.updatedAt),compressed:!1,size:a.stubContent.length}}if(i.type==="file"){let a=i;return{type:"file",name:s,path:r,mode:a.mode,createdAt:new Date(a.createdAt),updatedAt:new Date(a.updatedAt),compressed:a.compressed,size:a.evicted?a.size??0:a.content.length}}let o=i;return{type:"directory",name:s,path:r,mode:o.mode,createdAt:new Date(o.createdAt),updatedAt:new Date(o.updatedAt),childrenCount:o._childCount}}list(t="/"){let n=this.resolveMount(t);if(n){if(!te(n.fullHostPath))return[];try{return ct(n.fullHostPath).sort()}catch{return[]}}let r=W(t),i=ae(this.root,r);if(i.type!=="directory")throw new Error(`Cannot list '${t}': not a directory.`);return Object.keys(i.children).sort()}tree(t="/"){let n=W(t),r=ae(this.root,n);if(r.type!=="directory")throw new Error(`Cannot render tree for '${t}': not a directory.`);let i=t==="/"?"/":z.basename(n);return this.renderTreeLines(r,i)}renderTreeLines(t,n){let r=[n],i=Object.keys(t.children).sort();for(let s=0;s<i.length;s++){let o=i[s],a=t.children[o],l=s===i.length-1,c=l?"\u2514\u2500\u2500 ":"\u251C\u2500\u2500 ",u=l?" ":"\u2502 ";if(r.push(`${c}${o}`),a.type==="directory"){let d=this.renderTreeLines(a,"").split(`
1028
1028
  `).slice(1).map(m=>`${u}${m}`);r.push(...d)}}return r.join(`
1029
- `)}getUsageBytes(t="/"){return this.computeUsage(ae(this.root,W(t)))}computeUsage(t){if(t.type==="file")return t.content.length;if(t.type==="stub")return t.stubContent.length;let n=0;for(let r of Object.values(t.children))n+=this.computeUsage(r);return n}compressFile(t){let n=ae(this.root,W(t));if(n.type!=="file")throw new Error(`Cannot compress '${t}': not a file.`);let r=n;r.compressed||(r.content=r.content,r.compressed=!0,r.updatedAt=Date.now())}decompressFile(t){let n=ae(this.root,W(t));if(n.type!=="file")throw new Error(`Cannot decompress '${t}': not a file.`);let r=n;r.compressed&&(r.content=r.content,r.compressed=!1,r.updatedAt=Date.now())}symlink(t,n){let r=W(n),i=t.startsWith("/")?W(t):t,{parent:s,name:o}=ze(this.root,r,!0,l=>this.mkdirRecursive(l,493)),a={type:"file",name:o,content:Buffer.from(i,"utf8"),mode:41471,compressed:!1,createdAt:Date.now(),updatedAt:Date.now()};s.children[o]=a,s._childCount++,this._journal({op:j.SYMLINK,path:r,dest:i}),this.emit("symlink:create",{link:r,target:i})}isSymlink(t){try{let n=ae(this.root,W(t));return n.type==="file"&&n.mode===41471}catch{return!1}}resolveSymlink(t,n=8){let r=W(t);for(let i=0;i<n;i++){try{let s=ae(this.root,r);if(s.type==="file"&&s.mode===41471){let o=s.content.toString("utf8");r=o.startsWith("/")?o:W(z.join(z.dirname(r),o));continue}}catch{break}return r}throw new Error(`Too many levels of symbolic links: ${t}`)}remove(t,n={}){let r=this.resolveMount(t);if(r){if(r.readOnly)throw new Error(`EROFS: read-only file system, unlink '${r.fullHostPath}'`);if(!te(r.fullHostPath))throw new Error(`ENOENT: no such file or directory, unlink '${r.fullHostPath}'`);_t(r.fullHostPath).isDirectory()?Lr(r.fullHostPath,{recursive:n.recursive??!1}):at(r.fullHostPath);return}let i=W(t);if(i==="/")throw new Error("Cannot remove root directory.");let s=ae(this.root,i);if(s.type==="directory"){let l=s;if(!n.recursive&&l._childCount>0)throw new Error(`Directory '${i}' is not empty. Use recursive option.`)}let{parent:o,name:a}=ze(this.root,i,!1,()=>{});delete o.children[a],o._childCount--,this.emit("node:remove",{path:i}),this._journal({op:j.REMOVE,path:i})}move(t,n){let r=W(t),i=W(n);if(r==="/"||i==="/")throw new Error("Cannot move root directory.");let s=ae(this.root,r);if(this.exists(i))throw new Error(`Destination '${i}' already exists.`);this.mkdirRecursive(z.dirname(i),493);let{parent:o,name:a}=ze(this.root,i,!1,()=>{}),{parent:l,name:c}=ze(this.root,r,!1,()=>{});delete l.children[c],l._childCount--,s.name=a,o.children[a]=s,o._childCount++,this._journal({op:j.MOVE,path:r,dest:i})}toSnapshot(){return{root:this.serializeDir(this.root)}}serializeDir(t){let n=[];for(let r of Object.values(t.children))r.type==="stub"?n.push({type:"file",name:r.name,mode:r.mode,createdAt:new Date(r.createdAt).toISOString(),updatedAt:new Date(r.updatedAt).toISOString(),compressed:!1,contentBase64:Buffer.from(r.stubContent,"utf8").toString("base64")}):r.type==="file"?n.push(this.serializeFile(r)):n.push(this.serializeDir(r));return{type:"directory",name:t.name,mode:t.mode,createdAt:new Date(t.createdAt).toISOString(),updatedAt:new Date(t.updatedAt).toISOString(),children:n}}serializeFile(t){return{type:"file",name:t.name,mode:t.mode,createdAt:new Date(t.createdAt).toISOString(),updatedAt:new Date(t.updatedAt).toISOString(),compressed:t.compressed,contentBase64:t.content.toString("base64")}}static fromSnapshot(t){let n=new e;return n.root=n.deserializeDir(t.root,""),n}importSnapshot(t){this.root=this.deserializeDir(t.root,""),this.emit("snapshot:import")}deserializeDir(t,n){let r={type:"directory",name:n,mode:t.mode,createdAt:Date.parse(t.createdAt),updatedAt:Date.parse(t.updatedAt),children:Object.create(null),_childCount:0};for(let i of t.children){if(i.type==="file"){let s=i;r.children[s.name]={type:"file",name:s.name,mode:s.mode,createdAt:Date.parse(s.createdAt),updatedAt:Date.parse(s.updatedAt),compressed:s.compressed,content:Buffer.from(s.contentBase64,"base64")}}else{let s=this.deserializeDir(i,i.name);r.children[i.name]=s}r._childCount++}return r}},gt=xn;function h(e,t,n=493){e.exists(t)||e.mkdir(t,n)}function f(e,t,n,r=420){e.writeStub(t,n,r)}function $(e,t,n){e.writeFile(t,n)}function Ho(e){let t=2166136261;for(let n=0;n<e.length;n++)t^=e.charCodeAt(n),t=Math.imul(t,16777619);return t>>>0}function jo(e,t,n){h(e,"/etc"),f(e,"/etc/os-release",`${['NAME="Fortune GNU/Linux"',`PRETTY_NAME="${n.os}"`,"ID=fortune","ID_LIKE=debian",'HOME_URL="https://github.com/itsrealfortune/typescript-virtual-container"',"VERSION_CODENAME=nyx",'VERSION_ID="24.04"',"FORTUNE_CODENAME=nyx"].join(`
1029
+ `)}getUsageBytes(t="/"){return this.computeUsage(ae(this.root,W(t)))}computeUsage(t){if(t.type==="file")return t.content.length;if(t.type==="stub")return t.stubContent.length;let n=0;for(let r of Object.values(t.children))n+=this.computeUsage(r);return n}compressFile(t){let n=ae(this.root,W(t));if(n.type!=="file")throw new Error(`Cannot compress '${t}': not a file.`);let r=n;r.compressed||(r.content=r.content,r.compressed=!0,r.updatedAt=Date.now())}decompressFile(t){let n=ae(this.root,W(t));if(n.type!=="file")throw new Error(`Cannot decompress '${t}': not a file.`);let r=n;r.compressed&&(r.content=r.content,r.compressed=!1,r.updatedAt=Date.now())}symlink(t,n){let r=W(n),i=t.startsWith("/")?W(t):t,{parent:s,name:o}=He(this.root,r,!0,l=>this.mkdirRecursive(l,493)),a={type:"file",name:o,content:Buffer.from(i,"utf8"),mode:41471,compressed:!1,createdAt:Date.now(),updatedAt:Date.now()};s.children[o]=a,s._childCount++,this._journal({op:j.SYMLINK,path:r,dest:i}),this.emit("symlink:create",{link:r,target:i})}isSymlink(t){try{let n=ae(this.root,W(t));return n.type==="file"&&n.mode===41471}catch{return!1}}resolveSymlink(t,n=8){let r=W(t);for(let i=0;i<n;i++){try{let s=ae(this.root,r);if(s.type==="file"&&s.mode===41471){let o=s.content.toString("utf8");r=o.startsWith("/")?o:W(z.join(z.dirname(r),o));continue}}catch{break}return r}throw new Error(`Too many levels of symbolic links: ${t}`)}remove(t,n={}){let r=this.resolveMount(t);if(r){if(r.readOnly)throw new Error(`EROFS: read-only file system, unlink '${r.fullHostPath}'`);if(!te(r.fullHostPath))throw new Error(`ENOENT: no such file or directory, unlink '${r.fullHostPath}'`);Tt(r.fullHostPath).isDirectory()?Ur(r.fullHostPath,{recursive:n.recursive??!1}):lt(r.fullHostPath);return}let i=W(t);if(i==="/")throw new Error("Cannot remove root directory.");let s=ae(this.root,i);if(s.type==="directory"){let l=s;if(!n.recursive&&l._childCount>0)throw new Error(`Directory '${i}' is not empty. Use recursive option.`)}let{parent:o,name:a}=He(this.root,i,!1,()=>{});delete o.children[a],o._childCount--,this.emit("node:remove",{path:i}),this._journal({op:j.REMOVE,path:i})}move(t,n){let r=W(t),i=W(n);if(r==="/"||i==="/")throw new Error("Cannot move root directory.");let s=ae(this.root,r);if(this.exists(i))throw new Error(`Destination '${i}' already exists.`);this.mkdirRecursive(z.dirname(i),493);let{parent:o,name:a}=He(this.root,i,!1,()=>{}),{parent:l,name:c}=He(this.root,r,!1,()=>{});delete l.children[c],l._childCount--,s.name=a,o.children[a]=s,o._childCount++,this._journal({op:j.MOVE,path:r,dest:i})}toSnapshot(){return{root:this.serializeDir(this.root)}}serializeDir(t){let n=[];for(let r of Object.values(t.children))r.type==="stub"?n.push({type:"file",name:r.name,mode:r.mode,createdAt:new Date(r.createdAt).toISOString(),updatedAt:new Date(r.updatedAt).toISOString(),compressed:!1,contentBase64:Buffer.from(r.stubContent,"utf8").toString("base64")}):r.type==="file"?n.push(this.serializeFile(r)):n.push(this.serializeDir(r));return{type:"directory",name:t.name,mode:t.mode,createdAt:new Date(t.createdAt).toISOString(),updatedAt:new Date(t.updatedAt).toISOString(),children:n}}serializeFile(t){return{type:"file",name:t.name,mode:t.mode,createdAt:new Date(t.createdAt).toISOString(),updatedAt:new Date(t.updatedAt).toISOString(),compressed:t.compressed,contentBase64:t.content.toString("base64")}}static fromSnapshot(t){let n=new e;return n.root=n.deserializeDir(t.root,""),n}importSnapshot(t){this.root=this.deserializeDir(t.root,""),this.emit("snapshot:import")}deserializeDir(t,n){let r={type:"directory",name:n,mode:t.mode,createdAt:Date.parse(t.createdAt),updatedAt:Date.parse(t.updatedAt),children:Object.create(null),_childCount:0};for(let i of t.children){if(i.type==="file"){let s=i;r.children[s.name]={type:"file",name:s.name,mode:s.mode,createdAt:Date.parse(s.createdAt),updatedAt:Date.parse(s.updatedAt),compressed:s.compressed,content:Buffer.from(s.contentBase64,"base64")}}else{let s=this.deserializeDir(i,i.name);r.children[i.name]=s}r._childCount++}return r}},yt=vn;function h(e,t,n=493){e.exists(t)||e.mkdir(t,n)}function f(e,t,n,r=420){e.writeStub(t,n,r)}function $(e,t,n){e.writeFile(t,n)}function qo(e){let t=2166136261;for(let n=0;n<e.length;n++)t^=e.charCodeAt(n),t=Math.imul(t,16777619);return t>>>0}function Ko(e,t,n){h(e,"/etc"),f(e,"/etc/os-release",`${['NAME="Fortune GNU/Linux"',`PRETTY_NAME="${n.os}"`,"ID=fortune","ID_LIKE=debian",'HOME_URL="https://github.com/itsrealfortune/typescript-virtual-container"',"VERSION_CODENAME=nyx",'VERSION_ID="24.04"',"FORTUNE_CODENAME=nyx"].join(`
1030
1030
  `)}
1031
1031
  `),f(e,"/etc/debian_version",`nyx/stable
1032
1032
  `),f(e,"/etc/hostname",`${t}
@@ -1139,13 +1139,13 @@ tcp 6 TCP
1139
1139
  udp 17 UDP
1140
1140
  `),h(e,"/etc/profile.d"),f(e,"/etc/profile.d/01-locale-fix.sh",`[ -z "$LANG" ] && export LANG=en_US.UTF-8
1141
1141
  `),f(e,"/etc/profile.d/apps-bin-path.sh",`export PATH="$PATH:/snap/bin"
1142
- `)}function wn(e,t){let n=t.listUsers(),r=["root:x:0:0:root:/root:/bin/bash","daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin","bin:x:2:2:bin:/bin:/usr/sbin/nologin","sys:x:3:3:sys:/dev:/usr/sbin/nologin","sync:x:4:65534:sync:/bin:/bin/sync","games:x:5:60:games:/usr/games:/usr/sbin/nologin","man:x:6:12:man:/var/cache/man:/usr/sbin/nologin","lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin","mail:x:8:8:mail:/var/mail:/usr/sbin/nologin","news:x:9:9:news:/var/spool/news:/usr/sbin/nologin","uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin","proxy:x:13:13:proxy:/bin:/usr/sbin/nologin","www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin","backup:x:34:34:backup:/var/backups:/usr/sbin/nologin","list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin","irc:x:39:39:ircd:/run/ircd:/usr/sbin/nologin","_apt:x:42:65534::/nonexistent:/usr/sbin/nologin","nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin","messagebus:x:100:106::/nonexistent:/usr/sbin/nologin","systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin","systemd-resolve:x:999:999:systemd Resolver:/:/usr/sbin/nologin","polkitd:x:997:997:polkit:/nonexistent:/usr/sbin/nologin"],i=1e3;for(let c of n)c!=="root"&&(r.push(`${c}:x:${i}:${i}::/home/${c}:/bin/bash`),i++);e.writeFile("/etc/passwd",`${r.join(`
1142
+ `)}function Cn(e,t){let n=t.listUsers(),r=["root:x:0:0:root:/root:/bin/bash","daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin","bin:x:2:2:bin:/bin:/usr/sbin/nologin","sys:x:3:3:sys:/dev:/usr/sbin/nologin","sync:x:4:65534:sync:/bin:/bin/sync","games:x:5:60:games:/usr/games:/usr/sbin/nologin","man:x:6:12:man:/var/cache/man:/usr/sbin/nologin","lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin","mail:x:8:8:mail:/var/mail:/usr/sbin/nologin","news:x:9:9:news:/var/spool/news:/usr/sbin/nologin","uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin","proxy:x:13:13:proxy:/bin:/usr/sbin/nologin","www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin","backup:x:34:34:backup:/var/backups:/usr/sbin/nologin","list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin","irc:x:39:39:ircd:/run/ircd:/usr/sbin/nologin","_apt:x:42:65534::/nonexistent:/usr/sbin/nologin","nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin","messagebus:x:100:106::/nonexistent:/usr/sbin/nologin","systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin","systemd-resolve:x:999:999:systemd Resolver:/:/usr/sbin/nologin","polkitd:x:997:997:polkit:/nonexistent:/usr/sbin/nologin"],i=1e3;for(let c of n)c!=="root"&&(r.push(`${c}:x:${i}:${i}::/home/${c}:/bin/bash`),i++);e.writeFile("/etc/passwd",`${r.join(`
1143
1143
  `)}
1144
1144
  `);let s=n.filter(c=>t.isSudoer(c)).join(","),o=n.filter(c=>c!=="root").join(","),a=["root:x:0:","daemon:x:1:","bin:x:2:","sys:x:3:","adm:x:4:syslog","tty:x:5:","disk:x:6:","lp:x:7:","mail:x:8:","news:x:9:","uucp:x:10:","man:x:12:","proxy:x:13:","kmem:x:15:","dialout:x:20:","fax:x:21:","voice:x:22:","cdrom:x:24:","floppy:x:25:","tape:x:26:",`sudo:x:27:${s}`,"audio:x:29:","dip:x:30:","www-data:x:33:","backup:x:34:","operator:x:37:","list:x:38:","irc:x:39:","src:x:40:","_apt:x:42:","shadow:x:42:","utmp:x:43:","video:x:44:","sasl:x:45:","plugdev:x:46:","staff:x:50:","games:x:60:",`users:x:100:${o}`,"nogroup:x:65534:","messagebus:x:106:","systemd-network:x:998:","systemd-resolve:x:999:","polkitd:x:997:"];e.writeFile("/etc/group",`${a.join(`
1145
1145
  `)}
1146
1146
  `);let l=["root:*:19000:0:99999:7:::","daemon:*:19000:0:99999:7:::","nobody:*:19000:0:99999:7:::","messagebus:*:19000:0:99999:7:::","_apt:*:19000:0:99999:7:::","systemd-network:!:19000:::::::","systemd-resolve:!:19000:::::::","polkitd:!:19000:::::::"];for(let c of n)c!=="root"&&l.push(`${c}:!:19000:0:99999:7:::`);e.writeFile("/etc/shadow",`${l.join(`
1147
1147
  `)}
1148
- `,{mode:416})}function Xs(e){let t=e.match(/(\d+)$/);return 1e3+(t?.[1]?parseInt(t[1],10):0)}function ei(e,t,n,r,i,s,o){let a=`/proc/${t}`;h(e,a),h(e,`${a}/fd`),h(e,`${a}/fdinfo`),h(e,`${a}/net`);let l=Math.floor((Date.now()-new Date(s).getTime())/1e3),c=i.split(/\s+/)[0]??"bash";$(e,`${a}/cmdline`,`${i.replace(/\s+/g,"\0")}\0`),$(e,`${a}/comm`,c),$(e,`${a}/status`,`${[`Name: ${c}`,"Umask: 0022","State: S (sleeping)",`Tgid: ${t}`,`Pid: ${t}`,"PPid: 1","TracerPid: 0","Uid: 0 0 0 0","Gid: 0 0 0 0","FDSize: 64","Groups:","VmPeak: 20480 kB","VmSize: 16384 kB","VmLck: 0 kB","VmPin: 0 kB","VmHWM: 4096 kB","VmRSS: 4096 kB","RssAnon: 512 kB","RssFile: 3584 kB","RssShmem: 0 kB","VmData: 2048 kB","VmStk: 132 kB","VmExe: 924 kB","VmLib: 2744 kB","VmPTE: 52 kB","VmSwap: 0 kB","Threads: 1","SigQ: 0/31968","SigPnd: 0000000000000000","SigBlk: 0000000000010000","SigIgn: 0000000000380004","SigCgt: 000000004b817efb","CapInh: 0000000000000000","CapPrm: 000001ffffffffff","CapEff: 000001ffffffffff","CapBnd: 000001ffffffffff","CapAmb: 0000000000000000","NoNewPrivs: 0","Seccomp: 0","voluntary_ctxt_switches: 100","nonvoluntary_ctxt_switches: 10"].join(`
1148
+ `,{mode:416})}function ti(e){let t=e.match(/(\d+)$/);return 1e3+(t?.[1]?parseInt(t[1],10):0)}function ni(e,t,n,r,i,s,o){let a=`/proc/${t}`;h(e,a),h(e,`${a}/fd`),h(e,`${a}/fdinfo`),h(e,`${a}/net`);let l=Math.floor((Date.now()-new Date(s).getTime())/1e3),c=i.split(/\s+/)[0]??"bash";$(e,`${a}/cmdline`,`${i.replace(/\s+/g,"\0")}\0`),$(e,`${a}/comm`,c),$(e,`${a}/status`,`${[`Name: ${c}`,"Umask: 0022","State: S (sleeping)",`Tgid: ${t}`,`Pid: ${t}`,"PPid: 1","TracerPid: 0","Uid: 0 0 0 0","Gid: 0 0 0 0","FDSize: 64","Groups:","VmPeak: 20480 kB","VmSize: 16384 kB","VmLck: 0 kB","VmPin: 0 kB","VmHWM: 4096 kB","VmRSS: 4096 kB","RssAnon: 512 kB","RssFile: 3584 kB","RssShmem: 0 kB","VmData: 2048 kB","VmStk: 132 kB","VmExe: 924 kB","VmLib: 2744 kB","VmPTE: 52 kB","VmSwap: 0 kB","Threads: 1","SigQ: 0/31968","SigPnd: 0000000000000000","SigBlk: 0000000000010000","SigIgn: 0000000000380004","SigCgt: 000000004b817efb","CapInh: 0000000000000000","CapPrm: 000001ffffffffff","CapEff: 000001ffffffffff","CapBnd: 000001ffffffffff","CapAmb: 0000000000000000","NoNewPrivs: 0","Seccomp: 0","voluntary_ctxt_switches: 100","nonvoluntary_ctxt_switches: 10"].join(`
1149
1149
  `)}
1150
1150
  `),$(e,`${a}/stat`,`${t} (${c}) S 1 ${t} ${t} 0 -1 4194304 0 0 0 0 ${l} 0 0 0 20 0 1 0 0 16777216 4096 18446744073709551615 93824992235520 93824992290000 140737488347024 0 0 0 65536 3686404 1266761467 1 0 0 17 0 0 0 0 0 0
1151
1151
  `),$(e,`${a}/statm`,`4096 1024 768 231 0 512 0
@@ -1171,13 +1171,13 @@ cancelled_write_bytes: 0
1171
1171
  `);for(let u of["0","1","2"])f(e,`${a}/fd/${u}`,""),f(e,`${a}/fdinfo/${u}`,`pos: 0
1172
1172
  flags: 0${u==="0"?"2":"1"}02
1173
1173
  mnt_id: 13
1174
- `)}function Wo(e,t){h(e,"/proc/boot"),f(e,"/proc/boot/log",`${[`[ 0.000000] Linux version ${t.kernel} (fortune@build) #1 SMP PREEMPT_DYNAMIC`,"[ 0.000000] Command line: console=ttyS0 reboot=k panic=1 nomodule random.trust_cpu=1 ipv6.disable=1","[ 0.000060] BIOS-provided physical RAM map:","[ 0.000070] ACPI: RSDP 0x00000000000F05B0 000014 (v00 BOCHS )","[ 0.000120] PCI: Using configuration type 1 for base access","[ 0.000240] clocksource: tsc-early: mask: 0xffffffffffffffff","[ 0.000320] ACPI: IRQ0 used by override","[ 0.000420] Initializing cgroup subsys cpuset","[ 0.000440] Initializing cgroup subsys cpu","[ 0.000450] Initializing cgroup subsys cpuacct","[ 0.000460] Linux agpgart interface v0.103","[ 0.000480] PCI: pci_cache_line_size set to 64 bytes","[ 0.000510] virtio-pci 0000:00:01.0: runtime IRQs not yet assigned","[ 0.000680] NET: Registered PF_INET6 protocol family","[ 0.000720] Freeing unused kernel image (initmem) memory","[ 0.000760] Write protecting the kernel read-only data","[ 0.000800] Run /sbin/init as init process","[ 0.001200] systemd[1]: Detected virtualization kvm","[ 0.001300] systemd[1]: Detected architecture x86-64","[ 0.002000] systemd[1]: Starting Fortune GNU/Linux...","[ 0.003000] systemd[1]: Started Journal Service","[ 0.010000] EXT4-fs (vda): mounted filesystem","[ 0.020000] systemd[1]: Reached target Basic System","[ 0.030000] systemd[1]: Started Login Service"].join(`
1174
+ `)}function Go(e,t){h(e,"/proc/boot"),f(e,"/proc/boot/log",`${[`[ 0.000000] Linux version ${t.kernel} (fortune@build) #1 SMP PREEMPT_DYNAMIC`,"[ 0.000000] Command line: console=ttyS0 reboot=k panic=1 nomodule random.trust_cpu=1 ipv6.disable=1","[ 0.000060] BIOS-provided physical RAM map:","[ 0.000070] ACPI: RSDP 0x00000000000F05B0 000014 (v00 BOCHS )","[ 0.000120] PCI: Using configuration type 1 for base access","[ 0.000240] clocksource: tsc-early: mask: 0xffffffffffffffff","[ 0.000320] ACPI: IRQ0 used by override","[ 0.000420] Initializing cgroup subsys cpuset","[ 0.000440] Initializing cgroup subsys cpu","[ 0.000450] Initializing cgroup subsys cpuacct","[ 0.000460] Linux agpgart interface v0.103","[ 0.000480] PCI: pci_cache_line_size set to 64 bytes","[ 0.000510] virtio-pci 0000:00:01.0: runtime IRQs not yet assigned","[ 0.000680] NET: Registered PF_INET6 protocol family","[ 0.000720] Freeing unused kernel image (initmem) memory","[ 0.000760] Write protecting the kernel read-only data","[ 0.000800] Run /sbin/init as init process","[ 0.001200] systemd[1]: Detected virtualization kvm","[ 0.001300] systemd[1]: Detected architecture x86-64","[ 0.002000] systemd[1]: Starting Fortune GNU/Linux...","[ 0.003000] systemd[1]: Started Journal Service","[ 0.010000] EXT4-fs (vda): mounted filesystem","[ 0.020000] systemd[1]: Reached target Basic System","[ 0.030000] systemd[1]: Started Login Service"].join(`
1175
1175
  `)}
1176
1176
  `),f(e,"/proc/boot/version",`Linux ${t.kernel} (virtual)
1177
- `)}function zt(e,t,n,r,i=[]){h(e,"/proc");let s=Math.floor((Date.now()-r)/1e3),o=Math.floor(s*.9);$(e,"/proc/uptime",`${s}.00 ${o}.00
1178
- `);let a=Math.floor(Ce()/1024),l=Math.floor(Ue()/1024),c=Math.floor(l*.95),u=Math.floor(a*.03),d=Math.floor(a*.08),m=Math.floor(a*.005),p=Math.floor(a*.02),g=Math.floor(a*.001);$(e,"/proc/meminfo",`${[`MemTotal: ${String(a).padStart(10)} kB`,`MemFree: ${String(l).padStart(10)} kB`,`MemAvailable: ${String(c).padStart(10)} kB`,`Buffers: ${String(u).padStart(10)} kB`,`Cached: ${String(d).padStart(10)} kB`,`SwapCached: ${String(0).padStart(10)} kB`,`Active: ${String(Math.floor((u+d)*1.2)).padStart(10)} kB`,`Inactive: ${String(Math.floor(d*.6)).padStart(10)} kB`,`Active(anon): ${String(Math.floor(a*.001)).padStart(10)} kB`,`Inactive(anon): ${String(Math.floor(a*.006)).padStart(10)} kB`,`Active(file): ${String(Math.floor(d*1.2)).padStart(10)} kB`,`Inactive(file): ${String(Math.floor(d*.6)).padStart(10)} kB`,`Unevictable: ${String(0).padStart(10)} kB`,`Mlocked: ${String(0).padStart(10)} kB`,`SwapTotal: ${String(0).padStart(10)} kB`,`SwapFree: ${String(0).padStart(10)} kB`,`Zswap: ${String(0).padStart(10)} kB`,`Zswapped: ${String(0).padStart(10)} kB`,`Dirty: ${String(Math.floor(Math.random()*64)).padStart(10)} kB`,`Writeback: ${String(0).padStart(10)} kB`,`AnonPages: ${String(Math.floor(a*.001)).padStart(10)} kB`,`Mapped: ${String(Math.floor(d*.4)).padStart(10)} kB`,`Shmem: ${String(m).padStart(10)} kB`,`KReclaimable: ${String(Math.floor(p*.6)).padStart(10)} kB`,`Slab: ${String(p).padStart(10)} kB`,`SReclaimable: ${String(Math.floor(p*.6)).padStart(10)} kB`,`SUnreclaim: ${String(Math.floor(p*.4)).padStart(10)} kB`,`KernelStack: ${String(Math.floor(a*5e-4)).padStart(10)} kB`,`PageTables: ${String(g).padStart(10)} kB`,`NFS_Unstable: ${String(0).padStart(10)} kB`,`Bounce: ${String(0).padStart(10)} kB`,`WritebackTmp: ${String(0).padStart(10)} kB`,`CommitLimit: ${String(Math.floor(a*.5)).padStart(10)} kB`,`Committed_AS: ${String(Math.floor(a*.05)).padStart(10)} kB`,`VmallocTotal: ${String(35184372087808/1024).padStart(10)} kB`,`VmallocUsed: ${String(Math.floor(a*.01)).padStart(10)} kB`,`VmallocChunk: ${String(0).padStart(10)} kB`,`Percpu: ${String(Math.floor(a*1e-4)).padStart(10)} kB`,`HardwareCorrupted: ${String(0).padStart(6)} kB`,`AnonHugePages: ${String(0).padStart(10)} kB`,`ShmemHugePages: ${String(0).padStart(10)} kB`,`ShmemPmdMapped: ${String(0).padStart(10)} kB`,`FileHugePages: ${String(0).padStart(10)} kB`,`FilePmdMapped: ${String(0).padStart(10)} kB`,`HugePages_Total: ${String(0).padStart(8)}`,`HugePages_Free: ${String(0).padStart(8)}`,`HugePages_Rsvd: ${String(0).padStart(8)}`,`HugePages_Surp: ${String(0).padStart(8)}`,`Hugepagesize: ${String(2048).padStart(10)} kB`,`Hugetlb: ${String(0).padStart(10)} kB`,`DirectMap4k: ${String(Math.floor(a*.02)).padStart(10)} kB`,`DirectMap2M: ${String(Math.floor(a*.98)).padStart(10)} kB`].join(`
1177
+ `)}function jt(e,t,n,r,i=[]){h(e,"/proc");let s=Math.floor((Date.now()-r)/1e3),o=Math.floor(s*.9);$(e,"/proc/uptime",`${s}.00 ${o}.00
1178
+ `);let a=Math.floor(Ce()/1024),l=Math.floor(Be()/1024),c=Math.floor(l*.95),u=Math.floor(a*.03),d=Math.floor(a*.08),m=Math.floor(a*.005),p=Math.floor(a*.02),g=Math.floor(a*.001);$(e,"/proc/meminfo",`${[`MemTotal: ${String(a).padStart(10)} kB`,`MemFree: ${String(l).padStart(10)} kB`,`MemAvailable: ${String(c).padStart(10)} kB`,`Buffers: ${String(u).padStart(10)} kB`,`Cached: ${String(d).padStart(10)} kB`,`SwapCached: ${String(0).padStart(10)} kB`,`Active: ${String(Math.floor((u+d)*1.2)).padStart(10)} kB`,`Inactive: ${String(Math.floor(d*.6)).padStart(10)} kB`,`Active(anon): ${String(Math.floor(a*.001)).padStart(10)} kB`,`Inactive(anon): ${String(Math.floor(a*.006)).padStart(10)} kB`,`Active(file): ${String(Math.floor(d*1.2)).padStart(10)} kB`,`Inactive(file): ${String(Math.floor(d*.6)).padStart(10)} kB`,`Unevictable: ${String(0).padStart(10)} kB`,`Mlocked: ${String(0).padStart(10)} kB`,`SwapTotal: ${String(0).padStart(10)} kB`,`SwapFree: ${String(0).padStart(10)} kB`,`Zswap: ${String(0).padStart(10)} kB`,`Zswapped: ${String(0).padStart(10)} kB`,`Dirty: ${String(Math.floor(Math.random()*64)).padStart(10)} kB`,`Writeback: ${String(0).padStart(10)} kB`,`AnonPages: ${String(Math.floor(a*.001)).padStart(10)} kB`,`Mapped: ${String(Math.floor(d*.4)).padStart(10)} kB`,`Shmem: ${String(m).padStart(10)} kB`,`KReclaimable: ${String(Math.floor(p*.6)).padStart(10)} kB`,`Slab: ${String(p).padStart(10)} kB`,`SReclaimable: ${String(Math.floor(p*.6)).padStart(10)} kB`,`SUnreclaim: ${String(Math.floor(p*.4)).padStart(10)} kB`,`KernelStack: ${String(Math.floor(a*5e-4)).padStart(10)} kB`,`PageTables: ${String(g).padStart(10)} kB`,`NFS_Unstable: ${String(0).padStart(10)} kB`,`Bounce: ${String(0).padStart(10)} kB`,`WritebackTmp: ${String(0).padStart(10)} kB`,`CommitLimit: ${String(Math.floor(a*.5)).padStart(10)} kB`,`Committed_AS: ${String(Math.floor(a*.05)).padStart(10)} kB`,`VmallocTotal: ${String(35184372087808/1024).padStart(10)} kB`,`VmallocUsed: ${String(Math.floor(a*.01)).padStart(10)} kB`,`VmallocChunk: ${String(0).padStart(10)} kB`,`Percpu: ${String(Math.floor(a*1e-4)).padStart(10)} kB`,`HardwareCorrupted: ${String(0).padStart(6)} kB`,`AnonHugePages: ${String(0).padStart(10)} kB`,`ShmemHugePages: ${String(0).padStart(10)} kB`,`ShmemPmdMapped: ${String(0).padStart(10)} kB`,`FileHugePages: ${String(0).padStart(10)} kB`,`FilePmdMapped: ${String(0).padStart(10)} kB`,`HugePages_Total: ${String(0).padStart(8)}`,`HugePages_Free: ${String(0).padStart(8)}`,`HugePages_Rsvd: ${String(0).padStart(8)}`,`HugePages_Surp: ${String(0).padStart(8)}`,`Hugepagesize: ${String(2048).padStart(10)} kB`,`Hugetlb: ${String(0).padStart(10)} kB`,`DirectMap4k: ${String(Math.floor(a*.02)).padStart(10)} kB`,`DirectMap2M: ${String(Math.floor(a*.98)).padStart(10)} kB`].join(`
1179
1179
  `)}
1180
- `);let S=kt(),v=[];for(let I=0;I<S.length;I++){let x=S[I];x&&v.push(`processor : ${I}`,"vendor_id : GenuineIntel","cpu family : 6","model : 85",`model name : ${x.model}`,"stepping : 7","microcode : 0x1",`cpu MHz : ${x.speed.toFixed(3)}`,"cache size : 33792 KB","physical id : 0",`siblings : ${S.length}`,`core id : ${I}`,`cpu cores : ${S.length}`,`apicid : ${I}`,`initial apicid : ${I}`,"fpu : yes","fpu_exception : yes","cpuid level : 13","wp : yes","flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch cpuid_fault ssbd ibrs ibpb stibp ibrs_enhanced fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat umip avx512_vnni md_clear arch_capabilities","bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa mmio_stale_data retbleed eibrs_pbrsb bhi ibpb_no_ret spectre_v2_user its",`bogomips : ${(x.speed*2/1e3).toFixed(2)}`,"clflush size : 64","cache_alignment : 64","address sizes : 46 bits physical, 48 bits virtual","power management:","")}$(e,"/proc/cpuinfo",`${v.join(`
1180
+ `);let S=It(),v=[];for(let I=0;I<S.length;I++){let x=S[I];x&&v.push(`processor : ${I}`,"vendor_id : GenuineIntel","cpu family : 6","model : 85",`model name : ${x.model}`,"stepping : 7","microcode : 0x1",`cpu MHz : ${x.speed.toFixed(3)}`,"cache size : 33792 KB","physical id : 0",`siblings : ${S.length}`,`core id : ${I}`,`cpu cores : ${S.length}`,`apicid : ${I}`,`initial apicid : ${I}`,"fpu : yes","fpu_exception : yes","cpuid level : 13","wp : yes","flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch cpuid_fault ssbd ibrs ibpb stibp ibrs_enhanced fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat umip avx512_vnni md_clear arch_capabilities","bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa mmio_stale_data retbleed eibrs_pbrsb bhi ibpb_no_ret spectre_v2_user its",`bogomips : ${(x.speed*2/1e3).toFixed(2)}`,"clflush size : 64","cache_alignment : 64","address sizes : 46 bits physical, 48 bits virtual","power management:","")}$(e,"/proc/cpuinfo",`${v.join(`
1181
1181
  `)}
1182
1182
  `),$(e,"/proc/version",`Linux version ${t.kernel} (fortune@nyx-build) (gcc (Fortune 13.3.0-nyx1) 13.3.0, GNU ld (GNU Binutils for Fortune) 2.42) #2 SMP PREEMPT_DYNAMIC
1183
1183
  `),$(e,"/proc/hostname",`${n}
@@ -1260,11 +1260,11 @@ FRAG: inuse 0 memory 0
1260
1260
  `),$(e,"/proc/sys/fs/inotify/max_queued_events",`16384
1261
1261
  `),$(e,"/proc/cgroups",`${["#subsys_name hierarchy num_cgroups enabled","cpuset 5 1 1","cpu 1 1 1","cpuacct 2 1 1","blkio 6 1 1","memory 3 1 1","devices 4 1 1","freezer 7 1 1","pids 8 1 1"].join(`
1262
1262
  `)}
1263
- `),ei(e,1,"root","pts/0","/sbin/init",new Date(r).toISOString(),{});for(let I of i){let x=Xs(I.tty);ei(e,x,I.username,I.tty,"bash",I.startedAt,{USER:I.username,HOME:`/home/${I.username}`,TERM:"xterm-256color",SHELL:"/bin/bash",LANG:"en_US.UTF-8",PATH:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",LOGNAME:I.username})}let P=i.length>0?Xs(i[i.length-1].tty):1;try{e.remove("/proc/self")}catch{}let N=`/proc/${P}`;if(h(e,"/proc/self"),h(e,"/proc/self/fd"),h(e,"/proc/self/fdinfo"),h(e,"/proc/self/net"),e.exists(N))for(let I of e.list(N)){let x=`${N}/${I}`,A=`/proc/self/${I}`;try{e.stat(x).type==="file"&&$(e,A,e.readFile(x))}catch{}}else $(e,"/proc/self/cmdline","bash\0"),$(e,"/proc/self/comm","bash"),$(e,"/proc/self/status",`Name: bash
1263
+ `),ni(e,1,"root","pts/0","/sbin/init",new Date(r).toISOString(),{});for(let I of i){let x=ti(I.tty);ni(e,x,I.username,I.tty,"bash",I.startedAt,{USER:I.username,HOME:`/home/${I.username}`,TERM:"xterm-256color",SHELL:"/bin/bash",LANG:"en_US.UTF-8",PATH:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",LOGNAME:I.username})}let P=i.length>0?ti(i[i.length-1].tty):1;try{e.remove("/proc/self")}catch{}let N=`/proc/${P}`;if(h(e,"/proc/self"),h(e,"/proc/self/fd"),h(e,"/proc/self/fdinfo"),h(e,"/proc/self/net"),e.exists(N))for(let I of e.list(N)){let x=`${N}/${I}`,A=`/proc/self/${I}`;try{e.stat(x).type==="file"&&$(e,A,e.readFile(x))}catch{}}else $(e,"/proc/self/cmdline","bash\0"),$(e,"/proc/self/comm","bash"),$(e,"/proc/self/status",`Name: bash
1264
1264
  State: S (sleeping)
1265
1265
  Pid: 1
1266
1266
  PPid: 0
1267
- `),$(e,"/proc/self/environ",""),$(e,"/proc/self/cwd","/root\0"),$(e,"/proc/self/exe","/bin/bash\0")}function qo(e,t,n){h(e,"/sys"),h(e,"/sys/devices"),h(e,"/sys/devices/virtual"),h(e,"/sys/devices/system"),h(e,"/sys/devices/system/cpu"),h(e,"/sys/devices/system/cpu/cpu0"),f(e,"/sys/devices/system/cpu/cpu0/online",`1
1267
+ `),$(e,"/proc/self/environ",""),$(e,"/proc/self/cwd","/root\0"),$(e,"/proc/self/exe","/bin/bash\0")}function Yo(e,t,n){h(e,"/sys"),h(e,"/sys/devices"),h(e,"/sys/devices/virtual"),h(e,"/sys/devices/system"),h(e,"/sys/devices/system/cpu"),h(e,"/sys/devices/system/cpu/cpu0"),f(e,"/sys/devices/system/cpu/cpu0/online",`1
1268
1268
  `),f(e,"/sys/devices/system/cpu/online",`0
1269
1269
  `),f(e,"/sys/devices/system/cpu/possible",`0
1270
1270
  `),f(e,"/sys/devices/system/cpu/present",`0
@@ -1276,7 +1276,7 @@ PPid: 0
1276
1276
  `),f(e,"/sys/class/net/eth0/duplex",`full
1277
1277
  `),f(e,"/sys/class/net/eth0/address",`aa:bb:cc:dd:ee:ff
1278
1278
  `),f(e,"/sys/class/net/eth0/tx_queue_len",`1000
1279
- `);let r=Ho(t),i=r.toString(16).padStart(8,"0");f(e,"/sys/class/net/eth0/address",`52:54:00:${i.slice(0,2)}:${i.slice(2,4)}:${i.slice(4,6)}
1279
+ `);let r=qo(t),i=r.toString(16).padStart(8,"0");f(e,"/sys/class/net/eth0/address",`52:54:00:${i.slice(0,2)}:${i.slice(2,4)}:${i.slice(4,6)}
1280
1280
  `),h(e,"/sys/class/net/lo"),f(e,"/sys/class/net/lo/operstate",`unknown
1281
1281
  `),f(e,"/sys/class/net/lo/carrier",`1
1282
1282
  `),f(e,"/sys/class/net/lo/mtu",`65536
@@ -1287,7 +1287,7 @@ PPid: 0
1287
1287
  `),h(e,"/sys/fs"),h(e,"/sys/fs/cgroup");for(let a of["cpu","cpuacct","memory","devices","blkio","pids","freezer","unified"])h(e,`/sys/fs/cgroup/${a}`),a!=="unified"&&(f(e,`/sys/fs/cgroup/${a}/tasks`,`1
1288
1288
  `),f(e,`/sys/fs/cgroup/${a}/notify_on_release`,`0
1289
1289
  `),f(e,`/sys/fs/cgroup/${a}/release_agent`,""));f(e,"/sys/fs/cgroup/memory/memory.limit_in_bytes",`${Ce()}
1290
- `),f(e,"/sys/fs/cgroup/memory/memory.usage_in_bytes",`${Ce()-Ue()}
1290
+ `),f(e,"/sys/fs/cgroup/memory/memory.usage_in_bytes",`${Ce()-Be()}
1291
1291
  `),f(e,"/sys/fs/cgroup/memory/memory.memsw.limit_in_bytes",`${Ce()}
1292
1292
  `),f(e,"/sys/fs/cgroup/cpu/cpu.cfs_period_us",`100000
1293
1293
  `),f(e,"/sys/fs/cgroup/cpu/cpu.cfs_quota_us",`-1
@@ -1299,7 +1299,7 @@ PPid: 0
1299
1299
  `);h(e,"/sys/class"),h(e,"/sys/class/net"),h(e,"/sys/kernel"),f(e,"/sys/kernel/hostname",`${t}
1300
1300
  `),f(e,"/sys/kernel/osrelease",`${n.kernel}
1301
1301
  `),f(e,"/sys/kernel/ostype",`Linux
1302
- `)}function Ko(e){h(e,"/dev"),f(e,"/dev/null","",438),f(e,"/dev/zero","",438),f(e,"/dev/full","",438),f(e,"/dev/random","",292),f(e,"/dev/urandom","",292),f(e,"/dev/mem","",416),f(e,"/dev/port","",416),f(e,"/dev/kmsg","",432),f(e,"/dev/hwrng","",432),f(e,"/dev/fuse","",432),f(e,"/dev/autofs","",432),f(e,"/dev/userfaultfd","",432),f(e,"/dev/cpu_dma_latency","",432),f(e,"/dev/ptp0","",432),f(e,"/dev/snapshot","",432),f(e,"/dev/console","",384),f(e,"/dev/tty","",438),f(e,"/dev/ttyS0","",432),f(e,"/dev/ptmx","",438);for(let t=0;t<=63;t++)f(e,`/dev/tty${t}`,"",400);f(e,"/dev/vcs","",400),f(e,"/dev/vcs1","",400),f(e,"/dev/vcsa","",400),f(e,"/dev/vcsa1","",400),f(e,"/dev/vcsu","",400),f(e,"/dev/vcsu1","",400);for(let t=0;t<8;t++)f(e,`/dev/loop${t}`,"",432);h(e,"/dev/loop-control"),f(e,"/dev/vda","",432),f(e,"/dev/vdb","",432),f(e,"/dev/vdc","",432),f(e,"/dev/vdd","",432),h(e,"/dev/net"),f(e,"/dev/net/tun","",432),h(e,"/dev/pts"),h(e,"/dev/shm"),h(e,"/dev/cpu"),f(e,"/dev/stdin","",438),f(e,"/dev/stdout","",438),f(e,"/dev/stderr","",438),h(e,"/dev/fd"),f(e,"/dev/vga_arbiter","",432),f(e,"/dev/vsock","",432)}function Go(e){h(e,"/usr"),h(e,"/usr/bin"),h(e,"/usr/sbin"),h(e,"/usr/local"),h(e,"/usr/local/bin"),h(e,"/usr/local/lib"),h(e,"/usr/local/share"),h(e,"/usr/local/include"),h(e,"/usr/local/sbin"),h(e,"/usr/share"),h(e,"/usr/share/doc"),h(e,"/usr/share/man"),h(e,"/usr/share/man/man1"),h(e,"/usr/share/man/man5"),h(e,"/usr/share/man/man8"),h(e,"/usr/share/common-licenses"),h(e,"/usr/share/ca-certificates"),h(e,"/usr/share/zoneinfo"),h(e,"/usr/lib"),h(e,"/usr/lib/x86_64-linux-gnu"),h(e,"/usr/lib/python3"),h(e,"/usr/lib/python3/dist-packages"),h(e,"/usr/lib/python3.12"),h(e,"/usr/lib/jvm"),h(e,"/usr/lib/jvm/java-21-openjdk-amd64"),h(e,"/usr/lib/jvm/java-21-openjdk-amd64/bin"),h(e,"/usr/lib/node_modules"),h(e,"/usr/lib/node_modules/npm"),h(e,"/usr/include"),h(e,"/usr/src");let t=["sh","bash","ls","cat","echo","grep","find","sort","head","tail","cut","tr","sed","awk","wc","tee","tar","gzip","gunzip","touch","mkdir","rm","mv","cp","chmod","ln","pwd","env","date","sleep","id","whoami","hostname","uname","ps","kill","df","du","curl","wget","nano","diff","uniq","xargs","base64"];for(let r of t)f(e,`/usr/bin/${r}`,`#!/bin/sh
1302
+ `)}function Jo(e){h(e,"/dev"),f(e,"/dev/null","",438),f(e,"/dev/zero","",438),f(e,"/dev/full","",438),f(e,"/dev/random","",292),f(e,"/dev/urandom","",292),f(e,"/dev/mem","",416),f(e,"/dev/port","",416),f(e,"/dev/kmsg","",432),f(e,"/dev/hwrng","",432),f(e,"/dev/fuse","",432),f(e,"/dev/autofs","",432),f(e,"/dev/userfaultfd","",432),f(e,"/dev/cpu_dma_latency","",432),f(e,"/dev/ptp0","",432),f(e,"/dev/snapshot","",432),f(e,"/dev/console","",384),f(e,"/dev/tty","",438),f(e,"/dev/ttyS0","",432),f(e,"/dev/ptmx","",438);for(let t=0;t<=63;t++)f(e,`/dev/tty${t}`,"",400);f(e,"/dev/vcs","",400),f(e,"/dev/vcs1","",400),f(e,"/dev/vcsa","",400),f(e,"/dev/vcsa1","",400),f(e,"/dev/vcsu","",400),f(e,"/dev/vcsu1","",400);for(let t=0;t<8;t++)f(e,`/dev/loop${t}`,"",432);h(e,"/dev/loop-control"),f(e,"/dev/vda","",432),f(e,"/dev/vdb","",432),f(e,"/dev/vdc","",432),f(e,"/dev/vdd","",432),h(e,"/dev/net"),f(e,"/dev/net/tun","",432),h(e,"/dev/pts"),h(e,"/dev/shm"),h(e,"/dev/cpu"),f(e,"/dev/stdin","",438),f(e,"/dev/stdout","",438),f(e,"/dev/stderr","",438),h(e,"/dev/fd"),f(e,"/dev/vga_arbiter","",432),f(e,"/dev/vsock","",432)}function Zo(e){h(e,"/usr"),h(e,"/usr/bin"),h(e,"/usr/sbin"),h(e,"/usr/local"),h(e,"/usr/local/bin"),h(e,"/usr/local/lib"),h(e,"/usr/local/share"),h(e,"/usr/local/include"),h(e,"/usr/local/sbin"),h(e,"/usr/share"),h(e,"/usr/share/doc"),h(e,"/usr/share/man"),h(e,"/usr/share/man/man1"),h(e,"/usr/share/man/man5"),h(e,"/usr/share/man/man8"),h(e,"/usr/share/common-licenses"),h(e,"/usr/share/ca-certificates"),h(e,"/usr/share/zoneinfo"),h(e,"/usr/lib"),h(e,"/usr/lib/x86_64-linux-gnu"),h(e,"/usr/lib/python3"),h(e,"/usr/lib/python3/dist-packages"),h(e,"/usr/lib/python3.12"),h(e,"/usr/lib/jvm"),h(e,"/usr/lib/jvm/java-21-openjdk-amd64"),h(e,"/usr/lib/jvm/java-21-openjdk-amd64/bin"),h(e,"/usr/lib/node_modules"),h(e,"/usr/lib/node_modules/npm"),h(e,"/usr/include"),h(e,"/usr/src");let t=["sh","bash","ls","cat","echo","grep","find","sort","head","tail","cut","tr","sed","awk","wc","tee","tar","gzip","gunzip","touch","mkdir","rm","mv","cp","chmod","ln","pwd","env","date","sleep","id","whoami","hostname","uname","ps","kill","df","du","curl","wget","nano","diff","uniq","xargs","base64"];for(let r of t)f(e,`/usr/bin/${r}`,`#!/bin/sh
1303
1303
  exec builtin ${r} "$@"
1304
1304
  `,493);let n=["nologin","useradd","userdel","groupadd","groupdel","adduser","deluser","shutdown","reboot","halt","init","service","update-alternatives","update-rc.d","depmod","modprobe","insmod","rmmod","lsmod","ifconfig","route","iptables","ip6tables","arp","iwconfig","ethtool","fdisk","parted","mkfs.ext4","fsck","ldconfig","ldconfig.real"];for(let r of n)f(e,`/usr/sbin/${r}`,`#!/bin/sh
1305
1305
  exec builtin ${r} "$@"
@@ -1322,7 +1322,7 @@ exec javac "$@"
1322
1322
  `),f(e,"/usr/share/common-licenses/LGPL-2.1",`GNU Lesser General Public License v2.1
1323
1323
  `),f(e,"/usr/share/common-licenses/Apache-2.0",`Apache License 2.0
1324
1324
  `),f(e,"/usr/share/common-licenses/MIT",`MIT License
1325
- `)}var Yo=`Package: bash
1325
+ `)}var Xo=`Package: bash
1326
1326
  Status: install ok installed
1327
1327
  Priority: required
1328
1328
  Section: shells
@@ -1582,14 +1582,14 @@ Description: pager program similar to more
1582
1582
  This package provides the \`less\` command, which is similar to more but allows
1583
1583
  you to move backwards through the file.
1584
1584
 
1585
- `;function Jo(e){h(e,"/var"),h(e,"/var/log"),h(e,"/var/log/apt"),h(e,"/var/log/journal"),h(e,"/var/log/private"),h(e,"/var/tmp"),h(e,"/var/cache"),h(e,"/var/cache/apt"),h(e,"/var/cache/apt/archives"),h(e,"/var/cache/apt/archives/partial"),h(e,"/var/cache/debconf"),h(e,"/var/cache/ldconfig"),h(e,"/var/cache/fontconfig"),h(e,"/var/cache/PackageKit"),h(e,"/var/lib"),h(e,"/var/lib/apt"),h(e,"/var/lib/apt/lists"),h(e,"/var/lib/apt/lists/partial"),h(e,"/var/lib/dpkg"),h(e,"/var/lib/dpkg/info"),h(e,"/var/lib/dpkg/updates"),h(e,"/var/lib/dpkg/alternatives"),h(e,"/var/lib/misc"),h(e,"/var/lib/systemd"),h(e,"/var/lib/systemd/coredump"),h(e,"/var/lib/pam"),h(e,"/var/lib/git"),h(e,"/var/lib/PackageKit"),h(e,"/var/lib/python"),h(e,"/var/spool"),h(e,"/var/spool/cron"),h(e,"/var/spool/mail"),h(e,"/var/mail"),h(e,"/var/backups"),h(e,"/var/www"),f(e,"/var/lib/dpkg/status",Yo),f(e,"/var/lib/dpkg/available",""),f(e,"/var/lib/dpkg/lock",""),f(e,"/var/lib/dpkg/lock-frontend",""),f(e,"/var/lib/apt/lists/lock",""),f(e,"/var/cache/apt/pkgcache.bin",""),f(e,"/var/cache/apt/srcpkgcache.bin",""),f(e,"/var/log/syslog",`${new Date().toUTCString()} kernel: Virtual container started
1586
- `),f(e,"/var/log/auth.log",""),f(e,"/var/log/kern.log",""),f(e,"/var/log/dpkg.log",""),f(e,"/var/log/apt/history.log",""),f(e,"/var/log/apt/term.log",""),f(e,"/var/log/faillog",""),f(e,"/var/log/lastlog",""),f(e,"/var/log/wtmp",""),f(e,"/var/log/btmp",""),f(e,"/var/log/alternatives.log",""),h(e,"/run"),h(e,"/run/lock"),h(e,"/run/lock/subsys"),h(e,"/run/systemd"),h(e,"/run/systemd/ask-password"),h(e,"/run/systemd/sessions"),h(e,"/run/systemd/users"),h(e,"/run/user"),h(e,"/run/dbus"),h(e,"/run/adduser"),f(e,"/run/utmp",""),f(e,"/run/dbus/system_bus_socket","")}function Zo(e){e.exists("/bin")||e.symlink("/usr/bin","/bin"),e.exists("/sbin")||e.symlink("/usr/sbin","/sbin"),e.exists("/var/run")||e.symlink("/run","/var/run"),h(e,"/lib"),h(e,"/lib64"),h(e,"/lib/x86_64-linux-gnu"),h(e,"/lib/modules"),e.exists("/lib64/ld-linux-x86-64.so.2")||f(e,"/lib64/ld-linux-x86-64.so.2","",493)}function Qo(e){h(e,"/tmp",1023),h(e,"/tmp/node-compile-cache",1023)}function Xo(e){h(e,"/root",448),h(e,"/root/.ssh",448),h(e,"/root/.config",493),h(e,"/root/.config/pip",493),h(e,"/root/.local",493),h(e,"/root/.local/share",493),f(e,"/root/.bashrc",`${["# root .bashrc","export PS1='\\[\\033[0;31m\\]\\u@\\h\\[\\033[0m\\]:\\[\\033[0;34m\\]\\w\\[\\033[0m\\]# '","export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","export LANG=en_US.UTF-8","alias ll='ls -la'","alias la='ls -A'","alias l='ls -CF'"].join(`
1585
+ `;function Qo(e){h(e,"/var"),h(e,"/var/log"),h(e,"/var/log/apt"),h(e,"/var/log/journal"),h(e,"/var/log/private"),h(e,"/var/tmp"),h(e,"/var/cache"),h(e,"/var/cache/apt"),h(e,"/var/cache/apt/archives"),h(e,"/var/cache/apt/archives/partial"),h(e,"/var/cache/debconf"),h(e,"/var/cache/ldconfig"),h(e,"/var/cache/fontconfig"),h(e,"/var/cache/PackageKit"),h(e,"/var/lib"),h(e,"/var/lib/apt"),h(e,"/var/lib/apt/lists"),h(e,"/var/lib/apt/lists/partial"),h(e,"/var/lib/dpkg"),h(e,"/var/lib/dpkg/info"),h(e,"/var/lib/dpkg/updates"),h(e,"/var/lib/dpkg/alternatives"),h(e,"/var/lib/misc"),h(e,"/var/lib/systemd"),h(e,"/var/lib/systemd/coredump"),h(e,"/var/lib/pam"),h(e,"/var/lib/git"),h(e,"/var/lib/PackageKit"),h(e,"/var/lib/python"),h(e,"/var/spool"),h(e,"/var/spool/cron"),h(e,"/var/spool/mail"),h(e,"/var/mail"),h(e,"/var/backups"),h(e,"/var/www"),f(e,"/var/lib/dpkg/status",Xo),f(e,"/var/lib/dpkg/available",""),f(e,"/var/lib/dpkg/lock",""),f(e,"/var/lib/dpkg/lock-frontend",""),f(e,"/var/lib/apt/lists/lock",""),f(e,"/var/cache/apt/pkgcache.bin",""),f(e,"/var/cache/apt/srcpkgcache.bin",""),f(e,"/var/log/syslog",`${new Date().toUTCString()} kernel: Virtual container started
1586
+ `),f(e,"/var/log/auth.log",""),f(e,"/var/log/kern.log",""),f(e,"/var/log/dpkg.log",""),f(e,"/var/log/apt/history.log",""),f(e,"/var/log/apt/term.log",""),f(e,"/var/log/faillog",""),f(e,"/var/log/lastlog",""),f(e,"/var/log/wtmp",""),f(e,"/var/log/btmp",""),f(e,"/var/log/alternatives.log",""),h(e,"/run"),h(e,"/run/lock"),h(e,"/run/lock/subsys"),h(e,"/run/systemd"),h(e,"/run/systemd/ask-password"),h(e,"/run/systemd/sessions"),h(e,"/run/systemd/users"),h(e,"/run/user"),h(e,"/run/dbus"),h(e,"/run/adduser"),f(e,"/run/utmp",""),f(e,"/run/dbus/system_bus_socket","")}function ea(e){e.exists("/bin")||e.symlink("/usr/bin","/bin"),e.exists("/sbin")||e.symlink("/usr/sbin","/sbin"),e.exists("/var/run")||e.symlink("/run","/var/run"),h(e,"/lib"),h(e,"/lib64"),h(e,"/lib/x86_64-linux-gnu"),h(e,"/lib/modules"),e.exists("/lib64/ld-linux-x86-64.so.2")||f(e,"/lib64/ld-linux-x86-64.so.2","",493)}function ta(e){h(e,"/tmp",1023),h(e,"/tmp/node-compile-cache",1023)}function na(e){h(e,"/root",448),h(e,"/root/.ssh",448),h(e,"/root/.config",493),h(e,"/root/.config/pip",493),h(e,"/root/.local",493),h(e,"/root/.local/share",493),f(e,"/root/.bashrc",`${["# root .bashrc","export PS1='\\[\\033[0;31m\\]\\u@\\h\\[\\033[0m\\]:\\[\\033[0;34m\\]\\w\\[\\033[0m\\]# '","export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","export LANG=en_US.UTF-8","alias ll='ls -la'","alias la='ls -A'","alias l='ls -CF'"].join(`
1587
1587
  `)}
1588
1588
  `),f(e,"/root/.profile",`[ -f ~/.bashrc ] && . ~/.bashrc
1589
1589
  `),f(e,"/root/.bash_logout",`# ~/.bash_logout
1590
1590
  `),f(e,"/root/.config/pip/pip.conf",`[global]
1591
1591
  break-system-packages = true
1592
- `)}function ea(e,t){h(e,"/opt"),h(e,"/opt/rclone"),h(e,"/srv"),h(e,"/mnt"),h(e,"/media"),h(e,"/boot"),h(e,"/boot/grub"),f(e,"/boot/grub/grub.cfg",`${["# GRUB configuration (virtual)","set default=0","set timeout=0","",'menuentry "Fortune GNU/Linux" {',` linux /vmlinuz-${t.kernel} root=/dev/vda rw console=ttyS0`,` initrd /initrd.img-${t.kernel}`,"}"].join(`
1592
+ `)}function ra(e,t){h(e,"/opt"),h(e,"/opt/rclone"),h(e,"/srv"),h(e,"/mnt"),h(e,"/media"),h(e,"/boot"),h(e,"/boot/grub"),f(e,"/boot/grub/grub.cfg",`${["# GRUB configuration (virtual)","set default=0","set timeout=0","",'menuentry "Fortune GNU/Linux" {',` linux /vmlinuz-${t.kernel} root=/dev/vda rw console=ttyS0`,` initrd /initrd.img-${t.kernel}`,"}"].join(`
1593
1593
  `)}
1594
1594
  `);let n=t.kernel;f(e,`/boot/vmlinuz-${n}`,"",420),f(e,`/boot/initrd.img-${n}`,"",420),f(e,`/boot/System.map-${n}`,`${n} virtual
1595
1595
  `,420),f(e,`/boot/config-${n}`,`# Linux kernel config ${n}
@@ -1597,11 +1597,7 @@ CONFIG_VIRTIO=y
1597
1597
  CONFIG_VIRTIO_BLK=y
1598
1598
  CONFIG_VIRTIO_NET=y
1599
1599
  CONFIG_KVM_GUEST=y
1600
- `,420),e.exists("/vmlinuz")||e.symlink(`/boot/vmlinuz-${n}`,"/vmlinuz"),e.exists("/vmlinuz.old")||e.symlink(`/boot/vmlinuz-${n}`,"/vmlinuz.old"),e.exists("/initrd.img")||e.symlink(`/boot/initrd.img-${n}`,"/initrd.img"),e.exists("/initrd.img.old")||e.symlink(`/boot/initrd.img-${n}`,"/initrd.img.old"),h(e,"/lost+found",448),h(e,"/home")}var ti=new Map;function ta(e,t){return`${e}|${t.kernel}|${t.os}|${t.arch}`}function na(e,t){let n=ta(e,t),r=ti.get(n);if(r)return r;let i=new gt({mode:"memory"});jo(i,e,t),qo(i,e,t),Ko(i),Go(i),Jo(i),Zo(i),Qo(i),ea(i,t),Wo(i,t);let s=i.encodeBinary();return ti.set(n,s),s}function ni(e,t,n,r,i,s=[]){let o=na(n,r);e.getMode()==="fs"&&e.exists("/home")?e.mergeRootTree(De(o)):e.importRootTree(De(o)),Xo(e),zt(e,r,n,i,s),wn(e,t)}var vn=[{name:"vim",version:"2:9.0.1378-2",section:"editors",description:"Vi IMproved - enhanced vi editor",shortDesc:"Vi IMproved",installedSizeKb:3812,files:[{path:"/usr/bin/vim",content:`#!/bin/sh
1601
- exec builtin nano "$@"
1602
- `,mode:493},{path:"/usr/bin/vi",content:`#!/bin/sh
1603
- exec builtin nano "$@"
1604
- `,mode:493},{path:"/usr/share/doc/vim/README",content:`Vim editor \u2014 virtual package.
1600
+ `,420),e.exists("/vmlinuz")||e.symlink(`/boot/vmlinuz-${n}`,"/vmlinuz"),e.exists("/vmlinuz.old")||e.symlink(`/boot/vmlinuz-${n}`,"/vmlinuz.old"),e.exists("/initrd.img")||e.symlink(`/boot/initrd.img-${n}`,"/initrd.img"),e.exists("/initrd.img.old")||e.symlink(`/boot/initrd.img-${n}`,"/initrd.img.old"),h(e,"/lost+found",448),h(e,"/home")}var ri=new Map;function sa(e,t){return`${e}|${t.kernel}|${t.os}|${t.arch}`}function ia(e,t){let n=sa(e,t),r=ri.get(n);if(r)return r;let i=new yt({mode:"memory"});Ko(i,e,t),Yo(i,e,t),Jo(i),Zo(i),Qo(i),ea(i),ta(i),ra(i,t),Go(i,t);let s=i.encodeBinary();return ri.set(n,s),s}function si(e,t,n,r,i,s=[]){let o=ia(n,r);e.getMode()==="fs"&&e.exists("/home")?e.mergeRootTree(Re(o)):e.importRootTree(Re(o)),na(e),jt(e,r,n,i,s),Cn(e,t)}var Pn=[{name:"vim",version:"2:9.0.1378-2",section:"editors",description:"Vi IMproved - enhanced vi editor",shortDesc:"Vi IMproved",installedSizeKb:3812,files:[{path:"/usr/share/doc/vim/README",content:`Vim editor \u2014 virtual package.
1605
1601
  `}]},{name:"git",version:"1:2.39.2-1",section:"vcs",description:"Fast, scalable, distributed revision control system",shortDesc:"fast distributed version control system",installedSizeKb:11240,files:[{path:"/usr/bin/git",content:`#!/bin/sh
1606
1602
  echo 'git: virtual stub \u2014 no host access'
1607
1603
  `,mode:493},{path:"/usr/share/doc/git/README.Debian",content:`Git virtual package for Fortune GNU/Linux.
@@ -1686,19 +1682,19 @@ echo 'journalctl: virtual stub'
1686
1682
  echo 'gzip: virtual stub'
1687
1683
  `,mode:493}]},{name:"neofetch",version:"7.1.0-1",section:"utils",description:"A command-line system information tool written in bash 3.2+",shortDesc:"command-line system information tool",installedSizeKb:256,files:[{path:"/usr/bin/neofetch",content:`#!/bin/sh
1688
1684
  echo 'neofetch: virtual stub'
1689
- `,mode:493}]}],yt=class{constructor(t,n){this.vfs=t;this.users=n}vfs;users;installed=new Map;registryPath="/var/lib/dpkg/status";logPath="/var/log/dpkg.log";aptLogPath="/var/log/apt/history.log";load(){if(!this.vfs.exists(this.registryPath))return;let t=this.vfs.readFile(this.registryPath);if(!t.trim())return;let n=t.split(/\n\n+/);for(let r of n){if(!r.trim())continue;let i=this.parseFields(r),s=i.Package;s&&this.installed.set(s,{name:s,version:i.Version??"unknown",architecture:i.Architecture??"amd64",maintainer:i.Maintainer??"Fortune Maintainers",description:i.Description??"",section:i.Section??"misc",installedSizeKb:Number(i["Installed-Size"]??0),installedAt:i["X-Installed-At"]??new Date().toISOString(),files:(i["X-Files"]??"").split("|").filter(Boolean)})}}persist(){let t=[];for(let n of this.installed.values())t.push([`Package: ${n.name}`,"Status: install ok installed","Priority: optional",`Section: ${n.section}`,`Installed-Size: ${n.installedSizeKb}`,`Maintainer: ${n.maintainer}`,`Architecture: ${n.architecture}`,`Version: ${n.version}`,`Description: ${n.description}`,`X-Installed-At: ${n.installedAt}`,`X-Files: ${n.files.join("|")}`].join(`
1685
+ `,mode:493}]}],St=class{constructor(t,n){this.vfs=t;this.users=n}vfs;users;installed=new Map;registryPath="/var/lib/dpkg/status";logPath="/var/log/dpkg.log";aptLogPath="/var/log/apt/history.log";load(){if(!this.vfs.exists(this.registryPath))return;let t=this.vfs.readFile(this.registryPath);if(!t.trim())return;let n=t.split(/\n\n+/);for(let r of n){if(!r.trim())continue;let i=this.parseFields(r),s=i.Package;s&&this.installed.set(s,{name:s,version:i.Version??"unknown",architecture:i.Architecture??"amd64",maintainer:i.Maintainer??"Fortune Maintainers",description:i.Description??"",section:i.Section??"misc",installedSizeKb:Number(i["Installed-Size"]??0),installedAt:i["X-Installed-At"]??new Date().toISOString(),files:(i["X-Files"]??"").split("|").filter(Boolean)})}}persist(){let t=[];for(let n of this.installed.values())t.push([`Package: ${n.name}`,"Status: install ok installed","Priority: optional",`Section: ${n.section}`,`Installed-Size: ${n.installedSizeKb}`,`Maintainer: ${n.maintainer}`,`Architecture: ${n.architecture}`,`Version: ${n.version}`,`Description: ${n.description}`,`X-Installed-At: ${n.installedAt}`,`X-Files: ${n.files.join("|")}`].join(`
1690
1686
  `));this.vfs.writeFile(this.registryPath,`${t.join(`
1691
1687
 
1692
1688
  `)}
1693
1689
  `)}parseFields(t){let n={};for(let r of t.split(`
1694
1690
  `)){let i=r.indexOf(": ");i!==-1&&(n[r.slice(0,i)]=r.slice(i+2))}return n}log(t){let r=`${new Date().toISOString().replace("T"," ").slice(0,19)} ${t}
1695
1691
  `,i=this.vfs.exists(this.logPath)?this.vfs.readFile(this.logPath):"";this.vfs.writeFile(this.logPath,i+r)}aptLog(t,n){let r=new Date().toISOString(),i=this.vfs.exists(this.aptLogPath)?this.vfs.readFile(this.aptLogPath):"",s=[`Start-Date: ${r}`,`Commandline: apt-get ${t} ${n.join(" ")}`,`${t==="install"?"Install":"Remove"}: ${n.join(", ")}`,`End-Date: ${r}`,""].join(`
1696
- `);this.vfs.writeFile(this.aptLogPath,i+s)}findInRegistry(t){return vn.find(n=>n.name.toLowerCase()===t.toLowerCase())}listAvailable(){return[...vn].sort((t,n)=>t.name.localeCompare(n.name))}listInstalled(){return[...this.installed.values()].sort((t,n)=>t.name.localeCompare(n.name))}isInstalled(t){return this.installed.has(t.toLowerCase())}installedCount(){return this.installed.size}install(t,n={}){let r=[],i=[],s=[],o=(l,c=new Set)=>{if(c.has(l)||(c.add(l),this.isInstalled(l)))return;let u=this.findInRegistry(l);if(!u){s.push(l);return}for(let d of u.depends??[])o(d,c);i.find(d=>d.name===u.name)||i.push(u)};for(let l of t)o(l);if(s.length>0)return{output:`E: Unable to locate package ${s.join(", ")}`,exitCode:100};if(i.length===0)return{output:t.map(l=>`${l} is already the newest version.`).join(`
1692
+ `);this.vfs.writeFile(this.aptLogPath,i+s)}findInRegistry(t){return Pn.find(n=>n.name.toLowerCase()===t.toLowerCase())}listAvailable(){return[...Pn].sort((t,n)=>t.name.localeCompare(n.name))}listInstalled(){return[...this.installed.values()].sort((t,n)=>t.name.localeCompare(n.name))}isInstalled(t){return this.installed.has(t.toLowerCase())}installedCount(){return this.installed.size}install(t,n={}){let r=[],i=[],s=[],o=(l,c=new Set)=>{if(c.has(l)||(c.add(l),this.isInstalled(l)))return;let u=this.findInRegistry(l);if(!u){s.push(l);return}for(let d of u.depends??[])o(d,c);i.find(d=>d.name===u.name)||i.push(u)};for(let l of t)o(l);if(s.length>0)return{output:`E: Unable to locate package ${s.join(", ")}`,exitCode:100};if(i.length===0)return{output:t.map(l=>`${l} is already the newest version.`).join(`
1697
1693
  `),exitCode:0};let a=i.reduce((l,c)=>l+(c.installedSizeKb??0),0);n.quiet||r.push("Reading package lists... Done","Building dependency tree... Done","Reading state information... Done","The following NEW packages will be installed:",` ${i.map(l=>l.name).join(" ")}`,`0 upgraded, ${i.length} newly installed, 0 to remove and 0 not upgraded.`,`Need to get 0 B/${a} kB of archives.`,`After this operation, ${a} kB of additional disk space will be used.`,"");for(let l of i){n.quiet||(r.push(`Selecting previously unselected package ${l.name}.`),r.push("(Reading database ... 12345 files and directories currently installed.)"),r.push(`Preparing to unpack .../archives/${l.name}_${l.version}_amd64.deb ...`),r.push(`Unpacking ${l.name} (${l.version}) ...`));for(let u of l.files??[]){let d=u.path.slice(0,u.path.lastIndexOf("/"));d&&!this.vfs.exists(d)&&this.vfs.mkdir(d,493),this.vfs.writeFile(u.path,u.content,{mode:u.mode??420})}l.onInstall?.(this.vfs,this.users),n.quiet||r.push(`Setting up ${l.name} (${l.version}) ...`);let c=new Date().toISOString();this.installed.set(l.name,{name:l.name,version:l.version,architecture:l.architecture??"amd64",maintainer:l.maintainer??"Fortune Maintainers <pkg@fortune.local>",description:l.description,section:l.section??"misc",installedSizeKb:l.installedSizeKb??0,installedAt:c,files:(l.files??[]).map(u=>u.path)}),this.log(`install ${l.name} ${l.version}`)}return this.aptLog("install",i.map(l=>l.name)),this.persist(),n.quiet||r.push("Processing triggers for man-db (2.11.2-2) ..."),{output:r.join(`
1698
1694
  `),exitCode:0}}remove(t,n={}){let r=[],i=[];for(let s of t){let o=this.installed.get(s.toLowerCase());o?i.push(o):r.push(`Package '${s}' is not installed, so not removed`)}if(i.length===0)return{output:r.join(`
1699
1695
  `)||"Nothing to remove.",exitCode:0};n.quiet||r.push("Reading package lists... Done","Building dependency tree... Done","The following packages will be REMOVED:",` ${i.map(s=>s.name).join(" ")}`,`0 upgraded, 0 newly installed, ${i.length} to remove and 0 not upgraded.`);for(let s of i){n.quiet||r.push(`Removing ${s.name} (${s.version}) ...`);for(let a of s.files)if(!(!n.purge&&(a.startsWith("/etc/")||a.endsWith(".conf"))))try{this.vfs.exists(a)&&this.vfs.remove(a)}catch{}this.findInRegistry(s.name)?.onRemove?.(this.vfs),this.installed.delete(s.name),this.log(`remove ${s.name} ${s.version}`)}return this.aptLog("remove",i.map(s=>s.name)),this.persist(),{output:r.join(`
1700
- `),exitCode:0}}search(t){let n=t.toLowerCase();return vn.filter(r=>r.name.includes(n)||r.description.toLowerCase().includes(n)||(r.shortDesc??"").toLowerCase().includes(n)).sort((r,i)=>r.name.localeCompare(i.name))}show(t){let n=this.findInRegistry(t);if(!n)return null;let r=this.installed.get(t);return[`Package: ${n.name}`,`Version: ${n.version}`,`Architecture: ${n.architecture??"amd64"}`,`Maintainer: ${n.maintainer??"Fortune Maintainers <pkg@fortune.local>"}`,`Installed-Size: ${n.installedSizeKb??0}`,`Depends: ${(n.depends??[]).join(", ")||"(none)"}`,`Section: ${n.section??"misc"}`,"Priority: optional",`Description: ${n.description}`,`Status: ${r?"install ok installed":"install ok not-installed"}`].join(`
1701
- `)}};var ra=new Uint32Array([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,8111177861,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]);function Ht(e){let t=e instanceof Uint8Array?e:new TextEncoder().encode(e),n=t.length*8,r=Math.ceil((t.length+9)/64)*64,i=new Uint8Array(r);i.set(t),i[t.length]=128,new DataView(i.buffer).setUint32(r-4,n>>>0,!1);let o=1779033703,a=3144134277,l=1013904242,c=2773480762,u=1359893119,d=2600822924,m=528734635,p=1541459225,g=new Uint32Array(64),S=new DataView(i.buffer);for(let T=0;T<r;T+=64){for(let w=0;w<16;w++)g[w]=S.getUint32(T+w*4,!1);for(let w=16;w<64;w++){let D=(g[w-15]>>>7|g[w-15]<<25)^(g[w-15]>>>18|g[w-15]<<14)^g[w-15]>>>3,K=(g[w-2]>>>17|g[w-2]<<15)^(g[w-2]>>>19|g[w-2]<<13)^g[w-2]>>>10;g[w]=g[w-16]+D+g[w-7]+K|0}let _=o,P=a,N=l,I=c,x=u,A=d,F=m,k=p;for(let w=0;w<64;w++){let D=(x>>>6|x<<26)^(x>>>11|x<<21)^(x>>>25|x<<7),K=x&A^~x&F,q=k+D+K+ra[w]+g[w]|0,ee=(_>>>2|_<<30)^(_>>>13|_<<19)^(_>>>22|_<<10),be=_&P^_&N^P&N,pe=ee+be|0;k=F,F=A,A=x,x=I+q|0,I=N,N=P,P=_,_=q+pe|0}o=o+_|0,a=a+P|0,l=l+N|0,c=c+I|0,u=u+x|0,d=d+A|0,m=m+F|0,p=p+k|0}let v=new Uint8Array(32),E=new DataView(v.buffer);return[o,a,l,c,u,d,m,p].forEach((T,_)=>E.setUint32(_*4,T,!1)),v}function ri(e,t){let r=e instanceof Uint8Array?e:new TextEncoder().encode(e);r.length>64&&(r=Ht(r));let i=new Uint8Array(64);i.set(r);let s=i.map(c=>c^54),o=i.map(c=>c^92),a=new Uint8Array(64+t.length);a.set(s),a.set(t,64);let l=new Uint8Array(96);return l.set(o),l.set(Ht(a),64),Ht(l)}function sa(e,t,n,r){let i=e instanceof Uint8Array?e:new TextEncoder().encode(e),s=t instanceof Uint8Array?t:new TextEncoder().encode(t),o=32,a=Math.ceil(r/o),l=new Uint8Array(r);for(let c=1;c<=a;c++){let u=new Uint8Array(4);new DataView(u.buffer).setUint32(0,c,!1);let d=new Uint8Array(s.length+4);d.set(s),d.set(u,s.length);let m=ri(i,d),p=new Uint8Array(m);for(let S=1;S<n;S++){m=ri(i,m);for(let v=0;v<o;v++)p[v]^=m[v]}let g=(c-1)*o;l.set(p.slice(0,r-g),g)}return l}function si(e){let t=new Uint8Array(e);return crypto.getRandomValues(t),t}function ii(){return crypto.randomUUID?crypto.randomUUID():("10000000-1000-4000-8000"+-1e11).replace(/[018]/g,e=>(e^crypto.getRandomValues(new Uint8Array(1))[0]&15>>e/4).toString(16))}function Cn(e){let t=[];return{update(n){return t.push(n instanceof Uint8Array?n:new TextEncoder().encode(String(n))),this},digest(n="hex"){let r=t.reduce((a,l)=>a+l.length,0),i=new Uint8Array(r),s=0;for(let a of t)i.set(a,s),s+=a.length;let o=Ht(i);return n==="hex"?Array.from(o).map(a=>a.toString(16).padStart(2,"0")).join(""):n==="base64"?btoa(String.fromCharCode(...o)):o}}}function oi(e,t,n,r={}){let i=r.N??16384,s=Math.max(1e3,Math.round(Math.log2(i)*1e3)),o=typeof e=="string"?new TextEncoder().encode(e):e,a=typeof t=="string"?new TextEncoder().encode(t):t;return sa(o,a,s,n)}function ai(e,t){if(e.length!==t.length)return!1;let n=0;for(let r=0;r<e.length;r++)n|=e[r]^t[r];return n===0}function ia(){let e=y.env.SSH_MIMIC_FAST_PASSWORD_HASH;return!!e&&!["0","false","no","off"].includes(e.toLowerCase())}var se=ge("VirtualUserManager"),St=class e extends ye{constructor(n,r=!0){super();this.vfs=n;this.autoSudoForNewUsers=r;se.mark("constructor")}vfs;autoSudoForNewUsers;static recordCache=new Map;static fastPasswordHash=ia();usersPath="/etc/htpasswd";sudoersPath="/etc/sudoers";quotasPath="/etc/quotas";authDirPath="/.virtual-env-js/.auth";users=new Map;sudoers=new Set;quotas=new Map;activeSessions=new Map;nextTty=0;async initialize(){se.mark("initialize"),this.loadFromVfs(),this.loadSudoersFromVfs(),this.loadQuotasFromVfs();let n=!1;this.users.has("root")||(this.users.set("root",this.createRecord("root","")),n=!0),this.sudoers.add("root");let r="/root";this.vfs.exists(r)||(this.vfs.mkdir(r,493),this.vfs.writeFile(`${r}/README.txt`,"Welcome to the virtual environment, root")),n&&await this.persist(),this.emit("initialized")}async setQuotaBytes(n,r){if(se.mark("setQuotaBytes"),this.validateUsername(n),!this.users.has(n))throw new Error(`quota: user '${n}' does not exist`);if(!Number.isFinite(r)||r<0)throw new Error("quota: maxBytes must be a non-negative number");this.quotas.set(n,Math.floor(r)),await this.persist()}async clearQuota(n){se.mark("clearQuota"),this.validateUsername(n),this.quotas.delete(n),await this.persist()}getQuotaBytes(n){return se.mark("getQuotaBytes"),this.quotas.get(n)??null}getUsageBytes(n){se.mark("getUsageBytes");let r=n==="root"?"/root":`/home/${n}`;return this.vfs.exists(r)?this.vfs.getUsageBytes(r):0}assertWriteWithinQuota(n,r,i){se.mark("assertWriteWithinQuota");let s=this.quotas.get(n);if(s===void 0)return;let o=li(r),a=li(n==="root"?"/root":`/home/${n}`);if(!(o===a||o.startsWith(`${a}/`)))return;let c=this.getUsageBytes(n),u=0;if(this.vfs.exists(o)){let p=this.vfs.stat(o);p.type==="file"&&(u=p.size)}let d=Buffer.isBuffer(i)?i.length:Buffer.byteLength(i,"utf8"),m=c-u+d;if(m>s)throw new Error(`quota exceeded for '${n}': ${m}/${s} bytes`)}verifyPassword(n,r){se.mark("verifyPassword");let i=this.users.get(n);if(!i)return this.hashPassword(r,""),!1;let s=this.hashPassword(r,i.salt),o=i.passwordHash;try{let a=Buffer.from(s,"hex"),l=Buffer.from(o,"hex");return a.length!==l.length?!1:ai(a,l)}catch{return s===o}}async addUser(n,r){if(se.mark("addUser"),this.validateUsername(n),this.validatePassword(r),this.users.has(n))return;this.users.set(n,this.createRecord(n,r)),this.autoSudoForNewUsers&&this.sudoers.add(n);let i=n==="root"?"/root":`/home/${n}`;this.vfs.exists(i)||(this.vfs.mkdir(i,493),this.vfs.writeFile(`${i}/README.txt`,`Welcome to the virtual environment, ${n}`)),await this.persist(),this.emit("user:add",{username:n})}getPasswordHash(n){se.mark("getPasswordHash");let r=this.users.get(n);return r?r.passwordHash:null}async setPassword(n,r){if(se.mark("setPassword"),this.validateUsername(n),this.validatePassword(r),!this.users.has(n))throw new Error(`passwd: user '${n}' does not exist`);this.users.set(n,this.createRecord(n,r)),await this.persist()}async deleteUser(n){if(se.mark("deleteUser"),this.validateUsername(n),n==="root")throw new Error("deluser: cannot delete root");if(!this.users.delete(n))throw new Error(`deluser: user '${n}' does not exist`);this.sudoers.delete(n),this.emit("user:delete",{username:n}),await this.persist()}isSudoer(n){return se.mark("isSudoer"),this.sudoers.has(n)}async addSudoer(n){if(se.mark("addSudoer"),this.validateUsername(n),!this.users.has(n))throw new Error(`sudoers: user '${n}' does not exist`);this.sudoers.add(n),await this.persist()}async removeSudoer(n){if(se.mark("removeSudoer"),this.validateUsername(n),n==="root")throw new Error("sudoers: cannot remove root");this.sudoers.delete(n),await this.persist()}registerSession(n,r){se.mark("registerSession");let i={id:ii(),username:n,tty:`pts/${this.nextTty++}`,remoteAddress:r,startedAt:new Date().toISOString()};return this.activeSessions.set(i.id,i),this.emit("session:register",{sessionId:i.id,username:n,remoteAddress:r}),i}unregisterSession(n){if(se.mark("unregisterSession"),!n)return;let r=this.activeSessions.get(n);this.activeSessions.delete(n),r&&this.emit("session:unregister",{sessionId:n,username:r.username}),this.activeSessions.delete(n)}updateSession(n,r,i){if(se.mark("updateSession"),!n)return;let s=this.activeSessions.get(n);s&&this.activeSessions.set(n,{...s,username:r,remoteAddress:i})}listActiveSessions(){return se.mark("listActiveSessions"),Array.from(this.activeSessions.values()).sort((n,r)=>n.startedAt.localeCompare(r.startedAt))}listUsers(){return Array.from(this.users.keys()).sort()}loadFromVfs(){if(this.users.clear(),!this.vfs.exists(this.usersPath))return;let n=this.vfs.readFile(this.usersPath);for(let r of n.split(`
1696
+ `),exitCode:0}}search(t){let n=t.toLowerCase();return Pn.filter(r=>r.name.includes(n)||r.description.toLowerCase().includes(n)||(r.shortDesc??"").toLowerCase().includes(n)).sort((r,i)=>r.name.localeCompare(i.name))}show(t){let n=this.findInRegistry(t);if(!n)return null;let r=this.installed.get(t);return[`Package: ${n.name}`,`Version: ${n.version}`,`Architecture: ${n.architecture??"amd64"}`,`Maintainer: ${n.maintainer??"Fortune Maintainers <pkg@fortune.local>"}`,`Installed-Size: ${n.installedSizeKb??0}`,`Depends: ${(n.depends??[]).join(", ")||"(none)"}`,`Section: ${n.section??"misc"}`,"Priority: optional",`Description: ${n.description}`,`Status: ${r?"install ok installed":"install ok not-installed"}`].join(`
1697
+ `)}};var oa=new Uint32Array([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,8111177861,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]);function Wt(e){let t=e instanceof Uint8Array?e:new TextEncoder().encode(e),n=t.length*8,r=Math.ceil((t.length+9)/64)*64,i=new Uint8Array(r);i.set(t),i[t.length]=128,new DataView(i.buffer).setUint32(r-4,n>>>0,!1);let o=1779033703,a=3144134277,l=1013904242,c=2773480762,u=1359893119,d=2600822924,m=528734635,p=1541459225,g=new Uint32Array(64),S=new DataView(i.buffer);for(let T=0;T<r;T+=64){for(let w=0;w<16;w++)g[w]=S.getUint32(T+w*4,!1);for(let w=16;w<64;w++){let F=(g[w-15]>>>7|g[w-15]<<25)^(g[w-15]>>>18|g[w-15]<<14)^g[w-15]>>>3,K=(g[w-2]>>>17|g[w-2]<<15)^(g[w-2]>>>19|g[w-2]<<13)^g[w-2]>>>10;g[w]=g[w-16]+F+g[w-7]+K|0}let _=o,P=a,N=l,I=c,x=u,A=d,D=m,k=p;for(let w=0;w<64;w++){let F=(x>>>6|x<<26)^(x>>>11|x<<21)^(x>>>25|x<<7),K=x&A^~x&D,q=k+F+K+oa[w]+g[w]|0,ee=(_>>>2|_<<30)^(_>>>13|_<<19)^(_>>>22|_<<10),be=_&P^_&N^P&N,pe=ee+be|0;k=D,D=A,A=x,x=I+q|0,I=N,N=P,P=_,_=q+pe|0}o=o+_|0,a=a+P|0,l=l+N|0,c=c+I|0,u=u+x|0,d=d+A|0,m=m+D|0,p=p+k|0}let v=new Uint8Array(32),E=new DataView(v.buffer);return[o,a,l,c,u,d,m,p].forEach((T,_)=>E.setUint32(_*4,T,!1)),v}function ii(e,t){let r=e instanceof Uint8Array?e:new TextEncoder().encode(e);r.length>64&&(r=Wt(r));let i=new Uint8Array(64);i.set(r);let s=i.map(c=>c^54),o=i.map(c=>c^92),a=new Uint8Array(64+t.length);a.set(s),a.set(t,64);let l=new Uint8Array(96);return l.set(o),l.set(Wt(a),64),Wt(l)}function aa(e,t,n,r){let i=e instanceof Uint8Array?e:new TextEncoder().encode(e),s=t instanceof Uint8Array?t:new TextEncoder().encode(t),o=32,a=Math.ceil(r/o),l=new Uint8Array(r);for(let c=1;c<=a;c++){let u=new Uint8Array(4);new DataView(u.buffer).setUint32(0,c,!1);let d=new Uint8Array(s.length+4);d.set(s),d.set(u,s.length);let m=ii(i,d),p=new Uint8Array(m);for(let S=1;S<n;S++){m=ii(i,m);for(let v=0;v<o;v++)p[v]^=m[v]}let g=(c-1)*o;l.set(p.slice(0,r-g),g)}return l}function oi(e){let t=new Uint8Array(e);return crypto.getRandomValues(t),t}function ai(){return crypto.randomUUID?crypto.randomUUID():("10000000-1000-4000-8000"+-1e11).replace(/[018]/g,e=>(e^crypto.getRandomValues(new Uint8Array(1))[0]&15>>e/4).toString(16))}function En(e){let t=[];return{update(n){return t.push(n instanceof Uint8Array?n:new TextEncoder().encode(String(n))),this},digest(n="hex"){let r=t.reduce((a,l)=>a+l.length,0),i=new Uint8Array(r),s=0;for(let a of t)i.set(a,s),s+=a.length;let o=Wt(i);return n==="hex"?Array.from(o).map(a=>a.toString(16).padStart(2,"0")).join(""):n==="base64"?btoa(String.fromCharCode(...o)):o}}}function li(e,t,n,r={}){let i=r.N??16384,s=Math.max(1e3,Math.round(Math.log2(i)*1e3)),o=typeof e=="string"?new TextEncoder().encode(e):e,a=typeof t=="string"?new TextEncoder().encode(t):t;return aa(o,a,s,n)}function ci(e,t){if(e.length!==t.length)return!1;let n=0;for(let r=0;r<e.length;r++)n|=e[r]^t[r];return n===0}function la(){let e=y.env.SSH_MIMIC_FAST_PASSWORD_HASH;return!!e&&!["0","false","no","off"].includes(e.toLowerCase())}var se=ge("VirtualUserManager"),bt=class e extends ye{constructor(n,r=!0){super();this.vfs=n;this.autoSudoForNewUsers=r;se.mark("constructor")}vfs;autoSudoForNewUsers;static recordCache=new Map;static fastPasswordHash=la();usersPath="/etc/htpasswd";sudoersPath="/etc/sudoers";quotasPath="/etc/quotas";authDirPath="/.virtual-env-js/.auth";users=new Map;sudoers=new Set;quotas=new Map;activeSessions=new Map;nextTty=0;async initialize(){se.mark("initialize"),this.loadFromVfs(),this.loadSudoersFromVfs(),this.loadQuotasFromVfs();let n=!1;this.users.has("root")||(this.users.set("root",this.createRecord("root","")),n=!0),this.sudoers.add("root");let r="/root";this.vfs.exists(r)||(this.vfs.mkdir(r,493),this.vfs.writeFile(`${r}/README.txt`,"Welcome to the virtual environment, root")),n&&await this.persist(),this.emit("initialized")}async setQuotaBytes(n,r){if(se.mark("setQuotaBytes"),this.validateUsername(n),!this.users.has(n))throw new Error(`quota: user '${n}' does not exist`);if(!Number.isFinite(r)||r<0)throw new Error("quota: maxBytes must be a non-negative number");this.quotas.set(n,Math.floor(r)),await this.persist()}async clearQuota(n){se.mark("clearQuota"),this.validateUsername(n),this.quotas.delete(n),await this.persist()}getQuotaBytes(n){return se.mark("getQuotaBytes"),this.quotas.get(n)??null}getUsageBytes(n){se.mark("getUsageBytes");let r=n==="root"?"/root":`/home/${n}`;return this.vfs.exists(r)?this.vfs.getUsageBytes(r):0}assertWriteWithinQuota(n,r,i){se.mark("assertWriteWithinQuota");let s=this.quotas.get(n);if(s===void 0)return;let o=ui(r),a=ui(n==="root"?"/root":`/home/${n}`);if(!(o===a||o.startsWith(`${a}/`)))return;let c=this.getUsageBytes(n),u=0;if(this.vfs.exists(o)){let p=this.vfs.stat(o);p.type==="file"&&(u=p.size)}let d=Buffer.isBuffer(i)?i.length:Buffer.byteLength(i,"utf8"),m=c-u+d;if(m>s)throw new Error(`quota exceeded for '${n}': ${m}/${s} bytes`)}verifyPassword(n,r){se.mark("verifyPassword");let i=this.users.get(n);if(!i)return this.hashPassword(r,""),!1;let s=this.hashPassword(r,i.salt),o=i.passwordHash;try{let a=Buffer.from(s,"hex"),l=Buffer.from(o,"hex");return a.length!==l.length?!1:ci(a,l)}catch{return s===o}}async addUser(n,r){if(se.mark("addUser"),this.validateUsername(n),this.validatePassword(r),this.users.has(n))return;this.users.set(n,this.createRecord(n,r)),this.autoSudoForNewUsers&&this.sudoers.add(n);let i=n==="root"?"/root":`/home/${n}`;this.vfs.exists(i)||(this.vfs.mkdir(i,493),this.vfs.writeFile(`${i}/README.txt`,`Welcome to the virtual environment, ${n}`)),await this.persist(),this.emit("user:add",{username:n})}getPasswordHash(n){se.mark("getPasswordHash");let r=this.users.get(n);return r?r.passwordHash:null}async setPassword(n,r){if(se.mark("setPassword"),this.validateUsername(n),this.validatePassword(r),!this.users.has(n))throw new Error(`passwd: user '${n}' does not exist`);this.users.set(n,this.createRecord(n,r)),await this.persist()}async deleteUser(n){if(se.mark("deleteUser"),this.validateUsername(n),n==="root")throw new Error("deluser: cannot delete root");if(!this.users.delete(n))throw new Error(`deluser: user '${n}' does not exist`);this.sudoers.delete(n),this.emit("user:delete",{username:n}),await this.persist()}isSudoer(n){return se.mark("isSudoer"),this.sudoers.has(n)}async addSudoer(n){if(se.mark("addSudoer"),this.validateUsername(n),!this.users.has(n))throw new Error(`sudoers: user '${n}' does not exist`);this.sudoers.add(n),await this.persist()}async removeSudoer(n){if(se.mark("removeSudoer"),this.validateUsername(n),n==="root")throw new Error("sudoers: cannot remove root");this.sudoers.delete(n),await this.persist()}registerSession(n,r){se.mark("registerSession");let i={id:ai(),username:n,tty:`pts/${this.nextTty++}`,remoteAddress:r,startedAt:new Date().toISOString()};return this.activeSessions.set(i.id,i),this.emit("session:register",{sessionId:i.id,username:n,remoteAddress:r}),i}unregisterSession(n){if(se.mark("unregisterSession"),!n)return;let r=this.activeSessions.get(n);this.activeSessions.delete(n),r&&this.emit("session:unregister",{sessionId:n,username:r.username}),this.activeSessions.delete(n)}updateSession(n,r,i){if(se.mark("updateSession"),!n)return;let s=this.activeSessions.get(n);s&&this.activeSessions.set(n,{...s,username:r,remoteAddress:i})}listActiveSessions(){return se.mark("listActiveSessions"),Array.from(this.activeSessions.values()).sort((n,r)=>n.startedAt.localeCompare(r.startedAt))}listUsers(){return Array.from(this.users.keys()).sort()}loadFromVfs(){if(this.users.clear(),!this.vfs.exists(this.usersPath))return;let n=this.vfs.readFile(this.usersPath);for(let r of n.split(`
1702
1698
  `)){let i=r.trim();if(i.length===0)continue;let s=i.split(":");if(s.length<3)continue;let[o,a,l]=s;!o||!a||!l||this.users.set(o,{username:o,salt:a,passwordHash:l})}}loadSudoersFromVfs(){if(this.sudoers.clear(),!this.vfs.exists(this.sudoersPath))return;let n=this.vfs.readFile(this.sudoersPath);for(let r of n.split(`
1703
1699
  `)){let i=r.trim();i.length>0&&this.sudoers.add(i)}}loadQuotasFromVfs(){if(this.quotas.clear(),!this.vfs.exists(this.quotasPath))return;let n=this.vfs.readFile(this.quotasPath);for(let r of n.split(`
1704
1700
  `)){let i=r.trim();if(i.length===0)continue;let[s,o]=i.split(":"),a=Number.parseInt(o??"",10);!s||!Number.isFinite(a)||a<0||this.quotas.set(s,a)}}async persist(){this.vfs.exists(this.authDirPath)||this.vfs.mkdir(this.authDirPath,448);let n=Array.from(this.users.values()).sort((o,a)=>o.username.localeCompare(a.username)).map(o=>[o.username,o.salt,o.passwordHash].join(":")).join(`
@@ -1707,49 +1703,49 @@ echo 'neofetch: virtual stub'
1707
1703
  `),s=!1;s=this.writeIfChanged(this.usersPath,n.length>0?`${n}
1708
1704
  `:"",384)||s,s=this.writeIfChanged(this.sudoersPath,r.length>0?`${r}
1709
1705
  `:"",384)||s,s=this.writeIfChanged(this.quotasPath,i.length>0?`${i}
1710
- `:"",384)||s,s&&await this.vfs.flushMirror()}writeIfChanged(n,r,i){return this.vfs.exists(n)&&this.vfs.readFile(n)===r?(this.vfs.chmod(n,i),!1):(this.vfs.writeFile(n,r,{mode:i}),!0)}createRecord(n,r){let i=Cn("sha256").update(n).update(":").update(r).digest("hex"),s=e.recordCache.get(i);if(s)return s;let o=si(16).toString("hex"),a={username:n,salt:o,passwordHash:this.hashPassword(r,o)};return e.recordCache.set(i,a),a}hasPassword(n){se.mark("hasPassword");let r=this.users.get(n);if(!r)return!1;let i=this.hashPassword("",r.salt);return r.passwordHash===i?!1:!!r.passwordHash}hashPassword(n,r=""){return e.fastPasswordHash?Cn("sha256").update(r).update(n).digest("hex"):oi(n,r||"",32).toString("hex")}validateUsername(n){if(!n||n.trim()==="")throw new Error("invalid username");if(!/^[a-z_][a-z0-9_-]{0,31}$/i.test(n))throw new Error("invalid username")}validatePassword(n){if(!n||n.trim()==="")throw new Error("invalid password")}authorizedKeys=new Map;addAuthorizedKey(n,r,i){se.mark("addAuthorizedKey");let s=this.authorizedKeys.get(n)??[];s.push({algo:r,data:i}),this.authorizedKeys.set(n,s),this.emit("key:add",{username:n,algo:r})}removeAuthorizedKeys(n){this.authorizedKeys.delete(n),this.emit("key:remove",{username:n})}getAuthorizedKeys(n){return this.authorizedKeys.get(n)??[]}};function li(e){let t=z.normalize(e);return t.startsWith("/")?t:`/${t}`}var bt=class extends ye{vfs;idleThresholdMs;checkIntervalMs;_state="active";_lastActivity=Date.now();_frozenBuffer=null;_checkTimer=null;constructor(t,n={}){super(),this.vfs=t,this.idleThresholdMs=n.idleThresholdMs??6e4,this.checkIntervalMs=n.checkIntervalMs??15e3}start(){this._checkTimer||(this._lastActivity=Date.now(),this._checkTimer=setInterval(()=>this._check(),this.checkIntervalMs),typeof this._checkTimer=="object"&&this._checkTimer!==null&&"unref"in this._checkTimer&&this._checkTimer.unref())}async stop(){this._checkTimer&&(clearInterval(this._checkTimer),this._checkTimer=null),this._state==="frozen"&&this._thaw()}ping(){this._lastActivity=Date.now(),this._state==="frozen"&&this._thaw()}get state(){return this._state}get idleMs(){return Date.now()-this._lastActivity}_check(){this._state!=="frozen"&&Date.now()-this._lastActivity>=this.idleThresholdMs&&this._freeze()}async _freeze(){this._state!=="frozen"&&(await this.vfs.stopAutoFlush(),this._frozenBuffer=this.vfs.encodeBinary(),this.vfs.releaseTree(),this._state="frozen",this.emit("freeze"))}_thaw(){if(this._state!=="frozen"||!this._frozenBuffer)return;let t=De(this._frozenBuffer);this.vfs.importRootTree(t),this._frozenBuffer=null,this._state="active",this.emit("thaw")}};async function jt(){throw new Error("node:fs/promises.readFile is not supported in browser")}async function ci(){throw new Error("node:fs/promises.writeFile is not supported in browser")}async function ui(){throw new Error("node:fs/promises.unlink is not supported in browser")}function Pn(e){return`'${e.replace(/'/g,"'\\''")}'`}function xt(e){return e.replace(/\r\n/g,`
1706
+ `:"",384)||s,s&&await this.vfs.flushMirror()}writeIfChanged(n,r,i){return this.vfs.exists(n)&&this.vfs.readFile(n)===r?(this.vfs.chmod(n,i),!1):(this.vfs.writeFile(n,r,{mode:i}),!0)}createRecord(n,r){let i=En("sha256").update(n).update(":").update(r).digest("hex"),s=e.recordCache.get(i);if(s)return s;let o=oi(16).toString("hex"),a={username:n,salt:o,passwordHash:this.hashPassword(r,o)};return e.recordCache.set(i,a),a}hasPassword(n){se.mark("hasPassword");let r=this.users.get(n);if(!r)return!1;let i=this.hashPassword("",r.salt);return r.passwordHash===i?!1:!!r.passwordHash}hashPassword(n,r=""){return e.fastPasswordHash?En("sha256").update(r).update(n).digest("hex"):li(n,r||"",32).toString("hex")}validateUsername(n){if(!n||n.trim()==="")throw new Error("invalid username");if(!/^[a-z_][a-z0-9_-]{0,31}$/i.test(n))throw new Error("invalid username")}validatePassword(n){if(!n||n.trim()==="")throw new Error("invalid password")}authorizedKeys=new Map;addAuthorizedKey(n,r,i){se.mark("addAuthorizedKey");let s=this.authorizedKeys.get(n)??[];s.push({algo:r,data:i}),this.authorizedKeys.set(n,s),this.emit("key:add",{username:n,algo:r})}removeAuthorizedKeys(n){this.authorizedKeys.delete(n),this.emit("key:remove",{username:n})}getAuthorizedKeys(n){return this.authorizedKeys.get(n)??[]}};function ui(e){let t=z.normalize(e);return t.startsWith("/")?t:`/${t}`}var xt=class extends ye{vfs;idleThresholdMs;checkIntervalMs;_state="active";_lastActivity=Date.now();_frozenBuffer=null;_checkTimer=null;constructor(t,n={}){super(),this.vfs=t,this.idleThresholdMs=n.idleThresholdMs??6e4,this.checkIntervalMs=n.checkIntervalMs??15e3}start(){this._checkTimer||(this._lastActivity=Date.now(),this._checkTimer=setInterval(()=>this._check(),this.checkIntervalMs),typeof this._checkTimer=="object"&&this._checkTimer!==null&&"unref"in this._checkTimer&&this._checkTimer.unref())}async stop(){this._checkTimer&&(clearInterval(this._checkTimer),this._checkTimer=null),this._state==="frozen"&&this._thaw()}ping(){this._lastActivity=Date.now(),this._state==="frozen"&&this._thaw()}get state(){return this._state}get idleMs(){return Date.now()-this._lastActivity}_check(){this._state!=="frozen"&&Date.now()-this._lastActivity>=this.idleThresholdMs&&this._freeze()}async _freeze(){this._state!=="frozen"&&(await this.vfs.stopAutoFlush(),this._frozenBuffer=this.vfs.encodeBinary(),this.vfs.releaseTree(),this._state="frozen",this.emit("freeze"))}_thaw(){if(this._state!=="frozen"||!this._frozenBuffer)return;let t=Re(this._frozenBuffer);this.vfs.importRootTree(t),this._frozenBuffer=null,this._state="active",this.emit("thaw")}};async function qt(){throw new Error("node:fs/promises.readFile is not supported in browser")}async function di(){throw new Error("node:fs/promises.writeFile is not supported in browser")}async function mi(){throw new Error("node:fs/promises.unlink is not supported in browser")}function $n(e){return`'${e.replace(/'/g,"'\\''")}'`}function wt(e){return e.replace(/\r\n/g,`
1711
1707
  `).replace(/\r/g,`
1712
1708
  `).replace(/\n/g,`\r
1713
- `)}function di(e,t){let n=Number.isFinite(t.cols)&&t.cols>0?Math.floor(t.cols):80,r=Number.isFinite(t.rows)&&t.rows>0?Math.floor(t.rows):24;return`stty cols ${n} rows ${r} 2>/dev/null; ${e}`}function Wt(e,t){return!t||t.trim()===""||t==="."?e:t.startsWith("/")?z.normalize(t):z.normalize(z.join(e,t))}async function mi(e){try{let n=(await jt(`/proc/${e}/task/${e}/children`,"utf8")).trim().split(/\s+/).filter(Boolean).map(i=>Number.parseInt(i,10)).filter(i=>Number.isInteger(i)&&i>0),r=await Promise.all(n.map(i=>mi(i)));return[...n,...r.flat()]}catch{return[]}}async function pi(e=y.pid){let t=await mi(e),n=Array.from(new Set(t)).sort((r,i)=>r-i);return n.length===0?null:n.join(",")}function fi(e,t,n){let r=di(e,t),i=Jt("script",["-qfec",r,"/dev/null"],{stdio:["pipe","pipe","pipe"],env:{...y.env,TERM:y.env.TERM??"xterm-256color"}});return i.stdout.on("data",s=>{n.write(s.toString("utf8"))}),i.stderr.on("data",s=>{n.write(s.toString("utf8"))}),i}function hi(e,t,n){return fi(`nano -- ${Pn(e)}`,t,n)}function gi(e,t,n){return fi(`htop -p ${Pn(e)}`,t,n)}function qt(e,t,n){let r=[`Linux ${e} ${t.kernel} ${t.arch}`,"","The programs included with the Fortune GNU/Linux system are free software;","the exact distribution terms for each program are described in the","individual files in /usr/share/doc/*/copyright.","","Fortune GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent","permitted by applicable law."];if(n){let i=new Date(n.at),s=Number.isNaN(i.getTime())?n.at:Ut(i);r.push(`Last login: ${s} from ${n.from||"unknown"}`)}return r.push(""),`${r.map(i=>`${i}\r
1714
- `).join("")}`}function Kt(e,t,n){let r=e==="root",i=r?"\x1B[31;1m":"\x1B[35;1m",s="\x1B[37;1m",o="\x1B[34;1m",a="\x1B[0m";return`${s}[${i}${e}${s}@${o}${t}${a} ${n}${s}]${a}${r?"#":"$"} `}function yi(e,t,n,r,i,s="unknown",o={cols:80,rows:24},a){let l="",c=0,u=oa(a.vfs,n),d=null,m="",p=J(n),g=Ve(n,r),S=null,v=null,E=()=>{let O=J(n),U=p===O?"~":z.basename(p)||"/";return Kt(n,r,U)},T=Array.from(new Set(st())).sort();console.log(`[${i}] Shell started for user '${n}' at ${s}`),(async()=>{let O=`${J(n)}/.bashrc`;if(a.vfs.exists(O))try{let U=a.vfs.readFile(O);for(let H of U.split(`
1709
+ `)}function pi(e,t){let n=Number.isFinite(t.cols)&&t.cols>0?Math.floor(t.cols):80,r=Number.isFinite(t.rows)&&t.rows>0?Math.floor(t.rows):24;return`stty cols ${n} rows ${r} 2>/dev/null; ${e}`}function Kt(e,t){return!t||t.trim()===""||t==="."?e:t.startsWith("/")?z.normalize(t):z.normalize(z.join(e,t))}async function fi(e){try{let n=(await qt(`/proc/${e}/task/${e}/children`,"utf8")).trim().split(/\s+/).filter(Boolean).map(i=>Number.parseInt(i,10)).filter(i=>Number.isInteger(i)&&i>0),r=await Promise.all(n.map(i=>fi(i)));return[...n,...r.flat()]}catch{return[]}}async function hi(e=y.pid){let t=await fi(e),n=Array.from(new Set(t)).sort((r,i)=>r-i);return n.length===0?null:n.join(",")}function gi(e,t,n){let r=pi(e,t),i=Xt("script",["-qfec",r,"/dev/null"],{stdio:["pipe","pipe","pipe"],env:{...y.env,TERM:y.env.TERM??"xterm-256color"}});return i.stdout.on("data",s=>{n.write(s.toString("utf8"))}),i.stderr.on("data",s=>{n.write(s.toString("utf8"))}),i}function yi(e,t,n){return gi(`nano -- ${$n(e)}`,t,n)}function Si(e,t,n){return gi(`htop -p ${$n(e)}`,t,n)}function Gt(e,t,n){let r=[`Linux ${e} ${t.kernel} ${t.arch}`,"","The programs included with the Fortune GNU/Linux system are free software;","the exact distribution terms for each program are described in the","individual files in /usr/share/doc/*/copyright.","","Fortune GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent","permitted by applicable law."];if(n){let i=new Date(n.at),s=Number.isNaN(i.getTime())?n.at:zt(i);r.push(`Last login: ${s} from ${n.from||"unknown"}`)}return r.push(""),`${r.map(i=>`${i}\r
1710
+ `).join("")}`}function Yt(e,t,n){let r=e==="root",i=r?"\x1B[31;1m":"\x1B[35;1m",s="\x1B[37;1m",o="\x1B[34;1m",a="\x1B[0m";return`${s}[${i}${e}${s}@${o}${t}${a} ${n}${s}]${a}${r?"#":"$"} `}function bi(e,t,n,r,i,s="unknown",o={cols:80,rows:24},a){let l="",c=0,u=ca(a.vfs,n),d=null,m="",p=J(n),g=Ue(n,r),S=null,v=null,E=()=>{let O=J(n),U=p===O?"~":z.basename(p)||"/";return Yt(n,r,U)},T=Array.from(new Set(it())).sort();console.log(`[${i}] Shell started for user '${n}' at ${s}`),(async()=>{let O=`${J(n)}/.bashrc`;if(a.vfs.exists(O))try{let U=a.vfs.readFile(O);for(let H of U.split(`
1715
1711
  `)){let L=H.trim();!L||L.startsWith("#")||await Z(L,n,r,"shell",p,a,void 0,g)}}catch{}})();function _(){let O=E();t.write(`\r${O}${l}\x1B[K`);let U=l.length-c;U>0&&t.write(`\x1B[${U}D`)}function P(){t.write("\r\x1B[K")}function N(O){v={...O,buffer:""},P(),t.write(O.prompt)}async function I(O){if(!v)return;let U=v;if(v=null,!O){t.write(`\r
1716
1712
  Sorry, try again.\r
1717
1713
  `),_();return}if(!U.commandLine){n=U.targetUser,U.loginShell&&(p=J(n)),a.users.updateSession(i,n,s),t.write(`\r
1718
1714
  `),_();return}let H=U.loginShell?J(U.targetUser):p,L=await Promise.resolve(Z(U.commandLine,U.targetUser,r,"shell",H,a));if(t.write(`\r
1719
- `),L.openEditor){await A(L.openEditor.targetPath,L.openEditor.initialContent,L.openEditor.tempPath);return}if(L.openHtop){await F();return}L.clearScreen&&t.write("\x1B[2J\x1B[H"),L.stdout&&t.write(`${xt(L.stdout)}\r
1720
- `),L.stderr&&t.write(`${xt(L.stderr)}\r
1721
- `),L.switchUser?(n=L.switchUser,p=L.nextCwd??J(n),a.users.updateSession(i,n,s)):L.nextCwd&&(p=L.nextCwd),_()}async function x(){if(!S)return;let O=S;if(O.kind==="nano"){try{let U=await jt(O.tempPath,"utf8");a.writeFileAsUser(n,O.targetPath,U)}catch{}await ui(O.tempPath).catch(()=>{})}S=null,l="",c=0,t.write(`\r
1722
- `),_()}async function A(O,U,H){a.vfs.exists(O)&&await ci(H,U,"utf8");let L=hi(H,o,t);L.on("error",ie=>{t.write(`nano: ${ie.message}\r
1723
- `),x()}),L.on("close",()=>{x()}),S={kind:"nano",targetPath:O,tempPath:H,process:L}}async function F(){let O=await pi();if(!O){t.write(`htop: no child_process processes to display\r
1724
- `);return}let U=gi(O,o,t);U.on("error",H=>{t.write(`htop: ${H.message}\r
1725
- `),x()}),U.on("close",()=>{x()}),S={kind:"htop",targetPath:"",tempPath:"",process:U}}function k(O){l=O,c=l.length,_()}function w(O){l=`${l.slice(0,c)}${O}${l.slice(c)}`,c+=O.length,_()}function D(O,U){let H=U;for(;H>0&&!/\s/.test(O[H-1]);)H-=1;let L=U;for(;L<O.length&&!/\s/.test(O[L]);)L+=1;return{start:H,end:L}}function K(O){let U=O.lastIndexOf("/"),H=U>=0?O.slice(0,U+1):"",L=U>=0?O.slice(U+1):O,ie=Wt(p,H||".");try{return a.vfs.list(ie).filter(B=>!B.startsWith(".")).filter(B=>B.startsWith(L)).map(B=>{let ve=z.join(ie,B),Le=a.vfs.stat(ve).type==="directory"?"/":"";return`${H}${B}${Le}`}).sort()}catch{return[]}}function q(){let{start:O,end:U}=D(l,c),H=l.slice(O,c);if(H.length===0)return;let ie=l.slice(0,O).trim().length===0?T.filter(fe=>fe.startsWith(H)):[],B=K(H),ve=Array.from(new Set([...ie,...B])).sort();if(ve.length!==0){if(ve.length===1){let fe=ve[0],Le=fe.endsWith("/")?"":" ";l=`${l.slice(0,O)}${fe}${Le}${l.slice(U)}`,c=O+fe.length+Le.length,_();return}t.write(`\r
1715
+ `),L.openEditor){await A(L.openEditor.targetPath,L.openEditor.initialContent,L.openEditor.tempPath);return}if(L.openHtop){await D();return}L.clearScreen&&t.write("\x1B[2J\x1B[H"),L.stdout&&t.write(`${wt(L.stdout)}\r
1716
+ `),L.stderr&&t.write(`${wt(L.stderr)}\r
1717
+ `),L.switchUser?(n=L.switchUser,p=L.nextCwd??J(n),a.users.updateSession(i,n,s)):L.nextCwd&&(p=L.nextCwd),_()}async function x(){if(!S)return;let O=S;if(O.kind==="nano"){try{let U=await qt(O.tempPath,"utf8");a.writeFileAsUser(n,O.targetPath,U)}catch{}await mi(O.tempPath).catch(()=>{})}S=null,l="",c=0,t.write(`\r
1718
+ `),_()}async function A(O,U,H){a.vfs.exists(O)&&await di(H,U,"utf8");let L=yi(H,o,t);L.on("error",ie=>{t.write(`nano: ${ie.message}\r
1719
+ `),x()}),L.on("close",()=>{x()}),S={kind:"nano",targetPath:O,tempPath:H,process:L}}async function D(){let O=await hi();if(!O){t.write(`htop: no child_process processes to display\r
1720
+ `);return}let U=Si(O,o,t);U.on("error",H=>{t.write(`htop: ${H.message}\r
1721
+ `),x()}),U.on("close",()=>{x()}),S={kind:"htop",targetPath:"",tempPath:"",process:U}}function k(O){l=O,c=l.length,_()}function w(O){l=`${l.slice(0,c)}${O}${l.slice(c)}`,c+=O.length,_()}function F(O,U){let H=U;for(;H>0&&!/\s/.test(O[H-1]);)H-=1;let L=U;for(;L<O.length&&!/\s/.test(O[L]);)L+=1;return{start:H,end:L}}function K(O){let U=O.lastIndexOf("/"),H=U>=0?O.slice(0,U+1):"",L=U>=0?O.slice(U+1):O,ie=Kt(p,H||".");try{return a.vfs.list(ie).filter(B=>!B.startsWith(".")).filter(B=>B.startsWith(L)).map(B=>{let ve=z.join(ie,B),Ve=a.vfs.stat(ve).type==="directory"?"/":"";return`${H}${B}${Ve}`}).sort()}catch{return[]}}function q(){let{start:O,end:U}=F(l,c),H=l.slice(O,c);if(H.length===0)return;let ie=l.slice(0,O).trim().length===0?T.filter(fe=>fe.startsWith(H)):[],B=K(H),ve=Array.from(new Set([...ie,...B])).sort();if(ve.length!==0){if(ve.length===1){let fe=ve[0],Ve=fe.endsWith("/")?"":" ";l=`${l.slice(0,O)}${fe}${Ve}${l.slice(U)}`,c=O+fe.length+Ve.length,_();return}t.write(`\r
1726
1722
  `),t.write(`${ve.join(" ")}\r
1727
1723
  `),_()}}function ee(O){if(O.length===0)return;u.push(O),u.length>500&&(u=u.slice(u.length-500));let U=u.length>0?`${u.join(`
1728
1724
  `)}
1729
- `:"";a.vfs.writeFile(`${J(n)}/.bash_history`,U)}function be(){let O=`${J(n)}/.lastlog.json`;if(!a.vfs.exists(O))return null;try{return JSON.parse(a.vfs.readFile(O))}catch{return null}}function pe(O){let U=`${J(n)}/.lastlog`;a.vfs.writeFile(U,JSON.stringify({at:O,from:s}))}function ke(){let O=be(),U=new Date().toISOString();t.write(qt(r,e,O)),pe(U)}ke(),_(),t.on("data",async O=>{if(S){S.process.stdin.write(O);return}if(v){let H=O.toString("utf8");for(let L=0;L<H.length;L+=1){let ie=H[L];if(ie===""){v=null,t.write(`^C\r
1725
+ `:"";a.vfs.writeFile(`${J(n)}/.bash_history`,U)}function be(){let O=`${J(n)}/.lastlog.json`;if(!a.vfs.exists(O))return null;try{return JSON.parse(a.vfs.readFile(O))}catch{return null}}function pe(O){let U=`${J(n)}/.lastlog`;a.vfs.writeFile(U,JSON.stringify({at:O,from:s}))}function ke(){let O=be(),U=new Date().toISOString();t.write(Gt(r,e,O)),pe(U)}ke(),_(),t.on("data",async O=>{if(S){S.process.stdin.write(O);return}if(v){let H=O.toString("utf8");for(let L=0;L<H.length;L+=1){let ie=H[L];if(ie===""){v=null,t.write(`^C\r
1730
1726
  `),_();return}if(ie==="\x7F"||ie==="\b"){v.buffer=v.buffer.slice(0,-1);continue}if(ie==="\r"||ie===`
1731
- `){let B=v.buffer;if(v.buffer="",v.onPassword){let{result:fe,nextPrompt:Le}=await v.onPassword(B,a);t.write(`\r
1727
+ `){let B=v.buffer;if(v.buffer="",v.onPassword){let{result:fe,nextPrompt:Ve}=await v.onPassword(B,a);t.write(`\r
1732
1728
  `),fe!==null?(v=null,fe.stdout&&t.write(fe.stdout.replace(/\n/g,`\r
1733
1729
  `)),fe.stderr&&t.write(fe.stderr.replace(/\n/g,`\r
1734
- `)),_()):(Le&&(v.prompt=Le),t.write(v.prompt));return}let ve=a.users.verifyPassword(v.username,B);await I(ve);return}ie>=" "&&(v.buffer+=ie)}return}let U=O.toString("utf8");for(let H=0;H<U.length;H+=1){let L=U[H];if(L===""){l="",c=0,d=null,m="",t.write(`bye\r
1730
+ `)),_()):(Ve&&(v.prompt=Ve),t.write(v.prompt));return}let ve=a.users.verifyPassword(v.username,B);await I(ve);return}ie>=" "&&(v.buffer+=ie)}return}let U=O.toString("utf8");for(let H=0;H<U.length;H+=1){let L=U[H];if(L===""){l="",c=0,d=null,m="",t.write(`bye\r
1735
1731
  `),ee("bye"),t.write(`logout\r
1736
1732
  `),t.exit(0),t.end();return}if(L===" "){q();continue}if(L==="\x1B"){let ie=U[H+1],B=U[H+2],ve=U[H+3];if(ie==="["&&B){if(B==="A"){H+=2,u.length>0&&(d===null?(m=l,d=u.length-1):d>0&&(d-=1),k(u[d]??""));continue}if(B==="B"){H+=2,d!==null&&(d<u.length-1?(d+=1,k(u[d]??"")):(d=null,k(m)));continue}if(B==="C"){H+=2,c<l.length&&(c+=1,t.write("\x1B[C"));continue}if(B==="D"){H+=2,c>0&&(c-=1,t.write("\x1B[D"));continue}if(B==="3"&&ve==="~"){H+=3,c<l.length&&(l=`${l.slice(0,c)}${l.slice(c+1)}`,_());continue}}}if(L===""){l="",c=0,d=null,m="",t.write(`^C\r
1737
1733
  `),_();continue}if(L==="\r"||L===`
1738
1734
  `){let ie=l.trim();if(l="",c=0,d=null,m="",t.write(`\r
1739
- `),ie.length>0){let B=await Promise.resolve(Z(ie,n,r,"shell",p,a,void 0,g));if(ee(ie),B.openEditor){await A(B.openEditor.targetPath,B.openEditor.initialContent,B.openEditor.tempPath);return}if(B.openHtop){await F();return}if(B.sudoChallenge){N(B.sudoChallenge);return}if(B.clearScreen&&t.write("\x1B[2J\x1B[H"),B.stdout&&t.write(`${xt(B.stdout)}\r
1740
- `),B.stderr&&t.write(`${xt(B.stderr)}\r
1735
+ `),ie.length>0){let B=await Promise.resolve(Z(ie,n,r,"shell",p,a,void 0,g));if(ee(ie),B.openEditor){await A(B.openEditor.targetPath,B.openEditor.initialContent,B.openEditor.tempPath);return}if(B.openHtop){await D();return}if(B.sudoChallenge){N(B.sudoChallenge);return}if(B.clearScreen&&t.write("\x1B[2J\x1B[H"),B.stdout&&t.write(`${wt(B.stdout)}\r
1736
+ `),B.stderr&&t.write(`${wt(B.stderr)}\r
1741
1737
  `),B.closeSession){t.write(`logout\r
1742
- `),t.exit(B.exitCode??0),t.end();return}B.nextCwd&&(p=B.nextCwd),B.switchUser&&(n=B.switchUser,p=B.nextCwd??J(n),a.users.updateSession(i,n,s),l="",c=0)}_();continue}if(L==="\x7F"||L==="\b"){c>0&&(l=`${l.slice(0,c-1)}${l.slice(c)}`,c-=1,_());continue}w(L)}}),t.on("close",()=>{S&&(S.process.kill("SIGTERM"),S=null)})}function oa(e,t){let n=`${J(t)}/.bash_history`;return e.exists(n)?e.readFile(n).split(`
1743
- `).map(i=>i.trim()).filter(i=>i.length>0):(e.writeFile(n,""),[])}function aa(e){return typeof e=="object"&&e!==null&&"vfsInstance"in e&&Si(e.vfsInstance)}function Si(e){if(typeof e!="object"||e===null)return!1;let t=e;return typeof t.restoreMirror=="function"&&typeof t.flushMirror=="function"&&typeof t.writeFile=="function"&&typeof t.readFile=="function"&&typeof t.mkdir=="function"&&typeof t.exists=="function"&&typeof t.stat=="function"&&typeof t.list=="function"&&typeof t.remove=="function"&&typeof t.copy=="function"&&typeof t.move=="function"&&typeof t.touch=="function"}var la={kernel:"1.0.0+itsrealfortune+1-amd64",os:"Fortune GNU/Linux x64",arch:"x86_64"},wt=ge("VirtualShell");function ca(){let e=y.env.SSH_MIMIC_AUTO_SUDO_NEW_USERS;return e?!["0","false","no","off"].includes(e.toLowerCase()):!0}var He=class extends ye{vfs;users;packageManager;hostname;properties;startTime;_idle=null;initialized;constructor(t,n,r){super(),wt.mark("constructor"),this.hostname=t,this.properties=n||la,this.startTime=Date.now(),Si(r)?this.vfs=r:aa(r)?this.vfs=r.vfsInstance:this.vfs=new gt(r??{}),this.users=new St(this.vfs,ca()),this.packageManager=new yt(this.vfs,this.users);let i=this.vfs,s=this.users,o=this.packageManager,a=this.properties,l=this.hostname,c=this.startTime;this.initialized=(async()=>{await i.restoreMirror(),await s.initialize(),ni(i,s,l,a,c),o.load(),this.emit("initialized")})()}async ensureInitialized(){wt.mark("ensureInitialized"),await this.initialized}addCommand(t,n,r){let i=t.trim().toLowerCase();if(i.length===0||/\s/.test(i))throw new Error("Command name must be non-empty and contain no spaces");Zt(Qt(i,n,r))}executeCommand(t,n,r){wt.mark("executeCommand"),this._idle?.ping();let i=Z(t,n,this.hostname,"shell",r,this);return this.emit("command",{command:t,user:n,cwd:r}),i}startInteractiveSession(t,n,r,i,s){wt.mark("startInteractiveSession"),this._idle?.ping(),this.emit("session:start",{user:n,sessionId:r,remoteAddress:i}),yi(this.properties,t,n,this.hostname,r,i,s,this),this.refreshProcSessions()}refreshProcFs(){zt(this.vfs,this.properties,this.hostname,this.startTime,this.users.listActiveSessions())}mount(t,n,r={}){this.vfs.mount(t,n,r)}unmount(t){this.vfs.unmount(t)}getMounts(){return this.vfs.getMounts()}refreshProcSessions(){zt(this.vfs,this.properties,this.hostname,this.startTime,this.users.listActiveSessions())}syncPasswd(){wn(this.vfs,this.users)}getVfs(){return this?.vfs??null}getUsers(){return this?.users??null}getHostname(){return this?.hostname}writeFileAsUser(t,n,r){wt.mark("writeFileAsUser"),this.users.assertWriteWithinQuota(t,n,r),this.vfs.writeFile(n,r)}enableIdleManagement(t){this._idle||(this._idle=new bt(this.vfs,t),this._idle.on("freeze",()=>this.emit("shell:freeze")),this._idle.on("thaw",()=>this.emit("shell:thaw")),this._idle.start())}async disableIdleManagement(){this._idle&&(await this._idle.stop(),this._idle=null)}get idleState(){return this._idle?.state??"active"}get idleMs(){return this._idle?.idleMs??0}pingIdle(){this._idle?.ping()}};var En=!!y.env.DEV_MODE,Fy=En?console.log.bind(console):()=>{},Dy=En?console.warn.bind(console):()=>{},Ry=En?console.error.bind(console):()=>{};var Ly=ge("SftpMimic");var Jy=ge("SshMimic"),pa=!!y.env.DEV_MODE,Zy=pa?console.log.bind(console):()=>{};var nt="my-vm",bi=500,xi=document.getElementById("terminal"),tt=document.getElementById("output"),le=document.getElementById("cmd");function Mn(){xi.scrollTop=xi.scrollHeight}le.focus();document.addEventListener("click",()=>{window.getSelection()?.toString()||le.focus()});var wi={30:"#000",31:"#c00",32:"#0c0",33:"#cc0",34:"#00c",35:"#c0c",36:"#0cc",37:"#ccc",90:"#555",91:"#f55",92:"#5f5",93:"#ff5",94:"#55f",95:"#f5f",96:"#5ff",97:"#fff"},vi={40:"#000",41:"#c00",42:"#0c0",43:"#cc0",44:"#00c",45:"#c0c",46:"#0cc",47:"#ccc"};function Ci(e){let t="",n=!1,r="",i="";for(let s of e.split(/(\x1b\[[0-9;]*m)/)){let o=s.match(/^\x1b\[([0-9;]*)m$/);if(o)for(let a of o[1].split(";").map(Number))a===0?(n=!1,r="",i=""):a===1?n=!0:wi[a]?r=wi[a]:vi[a]&&(i=vi[a]);else if(s){let a=[r?`color:${r}`:"",i?`background:${i}`:"",n?"font-weight:bold":""].filter(Boolean).join(";"),l=s.replace(/&/g,"&amp;").replace(/</g,"&lt;");t+=a?`<span style="${a}">${l}</span>`:l}}return t}function et(e){let t=document.createElement("span");t.innerHTML=Ci(e),Y?tt.insertBefore(t,Y):tt.appendChild(t),Mn()}var Y=null;function $n(){Y&&(Y.remove(),Y=null),le.value="",Y=document.createElement("span"),Y.className="input-line";let e=document.createElement("span"),t=Ae===J(we)?"~":Ae.split("/").at(-1)||"/";e.innerHTML=Ci(Kt(we,nt,t));let n=document.createElement("span");n.className="typed";let r=document.createElement("span");r.className="cursor",r.textContent="\xA0",Y.appendChild(e),Y.appendChild(n),Y.appendChild(r),tt.appendChild(Y),Mn()}le.addEventListener("input",()=>{Y&&(Y.querySelector(".typed").textContent=le.value,Mn())});await globalThis.__fsReady__;var Gt=new He(nt,void 0,{mode:"fs",snapshotPath:"/vfs-data",flushIntervalMs:1e4}),ce=Gt.vfs;await ce.restoreMirror();var fa=!ce.exists("/bin");fa&&(await Gt.ensureInitialized(),ce.exists("/root")||ce.mkdir("/root",448),ce.writeFile("/root/README.txt",`Welcome to ${nt}
1744
- `),await ce.flushMirror());window.addEventListener("beforeunload",()=>{ce.flushMirror()});var we="root",Ae=J(we),je=Ve(we,nt);je.vars.PWD=Ae;function ha(e){e.switchUser?(we=e.switchUser,Ae=e.nextCwd??J(we),je.vars.USER=we,je.vars.LOGNAME=we,je.vars.HOME=J(we),je.vars.PWD=Ae):e.nextCwd&&(Ae=e.nextCwd,je.vars.PWD=Ae)}function kn(){return`${J(we)}/.bash_history`}function ga(){try{return ce.exists(kn())?ce.readFile(kn()).split(`
1745
- `).map(e=>e.trim()).filter(e=>e.length>0):[]}catch{return[]}}function ya(){ce.writeFile(kn(),Se.length>0?`${Se.join(`
1738
+ `),t.exit(B.exitCode??0),t.end();return}B.nextCwd&&(p=B.nextCwd),B.switchUser&&(n=B.switchUser,p=B.nextCwd??J(n),a.users.updateSession(i,n,s),l="",c=0)}_();continue}if(L==="\x7F"||L==="\b"){c>0&&(l=`${l.slice(0,c-1)}${l.slice(c)}`,c-=1,_());continue}w(L)}}),t.on("close",()=>{S&&(S.process.kill("SIGTERM"),S=null)})}function ca(e,t){let n=`${J(t)}/.bash_history`;return e.exists(n)?e.readFile(n).split(`
1739
+ `).map(i=>i.trim()).filter(i=>i.length>0):(e.writeFile(n,""),[])}function ua(e){return typeof e=="object"&&e!==null&&"vfsInstance"in e&&xi(e.vfsInstance)}function xi(e){if(typeof e!="object"||e===null)return!1;let t=e;return typeof t.restoreMirror=="function"&&typeof t.flushMirror=="function"&&typeof t.writeFile=="function"&&typeof t.readFile=="function"&&typeof t.mkdir=="function"&&typeof t.exists=="function"&&typeof t.stat=="function"&&typeof t.list=="function"&&typeof t.remove=="function"&&typeof t.copy=="function"&&typeof t.move=="function"&&typeof t.touch=="function"}var da={kernel:"1.0.0+itsrealfortune+1-amd64",os:"Fortune GNU/Linux x64",arch:"x86_64"},vt=ge("VirtualShell");function ma(){let e=y.env.SSH_MIMIC_AUTO_SUDO_NEW_USERS;return e?!["0","false","no","off"].includes(e.toLowerCase()):!0}var je=class extends ye{vfs;users;packageManager;hostname;properties;startTime;_idle=null;initialized;constructor(t,n,r){super(),vt.mark("constructor"),this.hostname=t,this.properties=n||da,this.startTime=Date.now(),xi(r)?this.vfs=r:ua(r)?this.vfs=r.vfsInstance:this.vfs=new yt(r??{}),this.users=new bt(this.vfs,ma()),this.packageManager=new St(this.vfs,this.users);let i=this.vfs,s=this.users,o=this.packageManager,a=this.properties,l=this.hostname,c=this.startTime;this.initialized=(async()=>{await i.restoreMirror(),await s.initialize(),si(i,s,l,a,c),o.load(),this.emit("initialized")})()}async ensureInitialized(){vt.mark("ensureInitialized"),await this.initialized}addCommand(t,n,r){let i=t.trim().toLowerCase();if(i.length===0||/\s/.test(i))throw new Error("Command name must be non-empty and contain no spaces");Qt(en(i,n,r))}executeCommand(t,n,r){vt.mark("executeCommand"),this._idle?.ping();let i=Z(t,n,this.hostname,"shell",r,this);return this.emit("command",{command:t,user:n,cwd:r}),i}startInteractiveSession(t,n,r,i,s){vt.mark("startInteractiveSession"),this._idle?.ping(),this.emit("session:start",{user:n,sessionId:r,remoteAddress:i}),bi(this.properties,t,n,this.hostname,r,i,s,this),this.refreshProcSessions()}refreshProcFs(){jt(this.vfs,this.properties,this.hostname,this.startTime,this.users.listActiveSessions())}mount(t,n,r={}){this.vfs.mount(t,n,r)}unmount(t){this.vfs.unmount(t)}getMounts(){return this.vfs.getMounts()}refreshProcSessions(){jt(this.vfs,this.properties,this.hostname,this.startTime,this.users.listActiveSessions())}syncPasswd(){Cn(this.vfs,this.users)}getVfs(){return this?.vfs??null}getUsers(){return this?.users??null}getHostname(){return this?.hostname}writeFileAsUser(t,n,r){vt.mark("writeFileAsUser"),this.users.assertWriteWithinQuota(t,n,r),this.vfs.writeFile(n,r)}enableIdleManagement(t){this._idle||(this._idle=new xt(this.vfs,t),this._idle.on("freeze",()=>this.emit("shell:freeze")),this._idle.on("thaw",()=>this.emit("shell:thaw")),this._idle.start())}async disableIdleManagement(){this._idle&&(await this._idle.stop(),this._idle=null)}get idleState(){return this._idle?.state??"active"}get idleMs(){return this._idle?.idleMs??0}pingIdle(){this._idle?.ping()}};var kn=!!y.env.DEV_MODE,Ly=kn?console.log.bind(console):()=>{},Vy=kn?console.warn.bind(console):()=>{},Uy=kn?console.error.bind(console):()=>{};var By=ge("SftpMimic");var Qy=ge("SshMimic"),ga=!!y.env.DEV_MODE,eS=ga?console.log.bind(console):()=>{};var rt="my-vm",wi=500,vi=document.getElementById("terminal"),nt=document.getElementById("output"),le=document.getElementById("cmd");function Nn(){vi.scrollTop=vi.scrollHeight}le.focus();document.addEventListener("click",()=>{window.getSelection()?.toString()||le.focus()});var Ci={30:"#000",31:"#c00",32:"#0c0",33:"#cc0",34:"#00c",35:"#c0c",36:"#0cc",37:"#ccc",90:"#555",91:"#f55",92:"#5f5",93:"#ff5",94:"#55f",95:"#f5f",96:"#5ff",97:"#fff"},Pi={40:"#000",41:"#c00",42:"#0c0",43:"#cc0",44:"#00c",45:"#c0c",46:"#0cc",47:"#ccc"};function Ei(e){let t="",n=!1,r="",i="";for(let s of e.split(/(\x1b\[[0-9;]*m)/)){let o=s.match(/^\x1b\[([0-9;]*)m$/);if(o)for(let a of o[1].split(";").map(Number))a===0?(n=!1,r="",i=""):a===1?n=!0:Ci[a]?r=Ci[a]:Pi[a]&&(i=Pi[a]);else if(s){let a=[r?`color:${r}`:"",i?`background:${i}`:"",n?"font-weight:bold":""].filter(Boolean).join(";"),l=s.replace(/&/g,"&amp;").replace(/</g,"&lt;");t+=a?`<span style="${a}">${l}</span>`:l}}return t}function tt(e){let t=document.createElement("span");t.innerHTML=Ei(e),Y?nt.insertBefore(t,Y):nt.appendChild(t),Nn()}var Y=null;function Mn(){Y&&(Y.remove(),Y=null),le.value="",Y=document.createElement("span"),Y.className="input-line";let e=document.createElement("span"),t=Ae===J(we)?"~":Ae.split("/").at(-1)||"/";e.innerHTML=Ei(Yt(we,rt,t));let n=document.createElement("span");n.className="typed";let r=document.createElement("span");r.className="cursor",r.textContent="\xA0",Y.appendChild(e),Y.appendChild(n),Y.appendChild(r),nt.appendChild(Y),Nn()}le.addEventListener("input",()=>{Y&&(Y.querySelector(".typed").textContent=le.value,Nn())});await globalThis.__fsReady__;var Jt=new je(rt,void 0,{mode:"fs",snapshotPath:"/vfs-data",flushIntervalMs:1e4}),ce=Jt.vfs;await ce.restoreMirror();var ya=!ce.exists("/bin");ya&&(await Jt.ensureInitialized(),ce.exists("/root")||ce.mkdir("/root",448),ce.writeFile("/root/README.txt",`Welcome to ${rt}
1740
+ `),await ce.flushMirror());window.addEventListener("beforeunload",()=>{ce.flushMirror()});var we="root",Ae=J(we),We=Ue(we,rt);We.vars.PWD=Ae;function Sa(e){e.switchUser?(we=e.switchUser,Ae=e.nextCwd??J(we),We.vars.USER=we,We.vars.LOGNAME=we,We.vars.HOME=J(we),We.vars.PWD=Ae):e.nextCwd&&(Ae=e.nextCwd,We.vars.PWD=Ae)}function In(){return`${J(we)}/.bash_history`}function ba(){try{return ce.exists(In())?ce.readFile(In()).split(`
1741
+ `).map(e=>e.trim()).filter(e=>e.length>0):[]}catch{return[]}}function xa(){ce.writeFile(In(),Se.length>0?`${Se.join(`
1746
1742
  `)}
1747
- `:"")}var Se=ga(),Re=-1;function Sa(){try{return ce.exists("/root/.lastlog")?JSON.parse(ce.readFile("/root/.lastlog")):null}catch{return null}}function ba(){ce.writeFile("/root/.lastlog",JSON.stringify({at:new Date().toISOString(),from:"browser"}))}et(qt(nt,Gt.properties,Sa()));ba();await ce.flushMirror();$n();function xa(e){let t=e.lastIndexOf("/"),n=t>=0?e.slice(0,t+1):"",r=t>=0?e.slice(t+1):e,i=Wt(Ae,n||".");try{return ce.list(i).filter(s=>!s.startsWith(".")&&s.startsWith(r)).map(s=>{let o=`${i}/${s}`.replace(/\/+/g,"/"),a=ce.stat(o);return`${n}${s}${a.type==="directory"?"/":""}`}).sort()}catch{return[]}}var wa=Array.from(new Set(st())).sort();function va(e){let t=e.split(/\s+/).at(-1)??"",r=e.trimStart()===t?wa.filter(o=>o.startsWith(t)):[],i=xa(t);return[Array.from(new Set([...r,...i])).sort(),t]}le.addEventListener("keydown",async e=>{if(e.key==="Tab"){e.preventDefault();let n=le.value,[r,i]=va(n);if(r.length===0)return;if(r.length===1)le.value=n.slice(0,n.length-i.length)+r[0],Y&&(Y.querySelector(".typed").textContent=le.value);else{let s=Y;Y=null,s?.querySelector(".cursor")?.remove(),tt.appendChild(document.createTextNode(`
1748
- `)),et(`${r.join(" ")}
1749
- `),$n(),le.value=n,Y&&(Y.querySelector(".typed").textContent=le.value)}return}if(e.key==="ArrowUp"){e.preventDefault(),Re<Se.length-1&&(Re++,le.value=Se[Se.length-1-Re],Y&&(Y.querySelector(".typed").textContent=le.value));return}if(e.key==="ArrowDown"){e.preventDefault(),Re>0?(Re--,le.value=Se[Se.length-1-Re]):(Re=-1,le.value=""),Y&&(Y.querySelector(".typed").textContent=le.value);return}if(e.key!=="Enter")return;let t=le.value.trim();Re=-1,Y&&(Y.querySelector(".cursor")?.remove(),Y=null),tt.appendChild(document.createTextNode(`
1750
- `)),t&&(Se.push(t),Se.length>bi&&(Se=Se.slice(Se.length-bi)),ya());try{let n=await Z(t,we,nt,"shell",Ae,Gt,void 0,je);if(n.clearScreen&&(tt.innerHTML=""),n.stdout&&et(`${n.stdout.trim()}
1751
- `),n.stderr&&et(`${n.stderr.trim()}
1752
- `),ha(n),await ce.flushMirror(),n.closeSession){et(`
1743
+ `:"")}var Se=ba(),Le=-1;function wa(){try{return ce.exists("/root/.lastlog")?JSON.parse(ce.readFile("/root/.lastlog")):null}catch{return null}}function va(){ce.writeFile("/root/.lastlog",JSON.stringify({at:new Date().toISOString(),from:"browser"}))}tt(Gt(rt,Jt.properties,wa()));va();await ce.flushMirror();Mn();function Ca(e){let t=e.lastIndexOf("/"),n=t>=0?e.slice(0,t+1):"",r=t>=0?e.slice(t+1):e,i=Kt(Ae,n||".");try{return ce.list(i).filter(s=>!s.startsWith(".")&&s.startsWith(r)).map(s=>{let o=`${i}/${s}`.replace(/\/+/g,"/"),a=ce.stat(o);return`${n}${s}${a.type==="directory"?"/":""}`}).sort()}catch{return[]}}var Pa=Array.from(new Set(it())).sort();function Ea(e){let t=e.split(/\s+/).at(-1)??"",r=e.trimStart()===t?Pa.filter(o=>o.startsWith(t)):[],i=Ca(t);return[Array.from(new Set([...r,...i])).sort(),t]}le.addEventListener("keydown",async e=>{if(e.key==="Tab"){e.preventDefault();let n=le.value,[r,i]=Ea(n);if(r.length===0)return;if(r.length===1)le.value=n.slice(0,n.length-i.length)+r[0],Y&&(Y.querySelector(".typed").textContent=le.value);else{let s=Y;Y=null,s?.querySelector(".cursor")?.remove(),nt.appendChild(document.createTextNode(`
1744
+ `)),tt(`${r.join(" ")}
1745
+ `),Mn(),le.value=n,Y&&(Y.querySelector(".typed").textContent=le.value)}return}if(e.key==="ArrowUp"){e.preventDefault(),Le<Se.length-1&&(Le++,le.value=Se[Se.length-1-Le],Y&&(Y.querySelector(".typed").textContent=le.value));return}if(e.key==="ArrowDown"){e.preventDefault(),Le>0?(Le--,le.value=Se[Se.length-1-Le]):(Le=-1,le.value=""),Y&&(Y.querySelector(".typed").textContent=le.value);return}if(e.key!=="Enter")return;let t=le.value.trim();Le=-1,Y&&(Y.querySelector(".cursor")?.remove(),Y=null),nt.appendChild(document.createTextNode(`
1746
+ `)),t&&(Se.push(t),Se.length>wi&&(Se=Se.slice(Se.length-wi)),xa());try{let n=await Z(t,we,rt,"shell",Ae,Jt,void 0,We);if(n.clearScreen&&(nt.innerHTML=""),n.stdout&&tt(`${n.stdout.trim()}
1747
+ `),n.stderr&&tt(`${n.stderr.trim()}
1748
+ `),Sa(n),await ce.flushMirror(),n.closeSession){tt(`
1753
1749
  Session closed.
1754
- `);return}}catch(n){et(`${String(n)}
1755
- `)}$n()});
1750
+ `);return}}catch(n){tt(`${String(n)}
1751
+ `)}Mn()});