document-model 1.0.18 → 1.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist/browser/document/utils/base.d.ts +6 -2
  2. package/dist/browser/document-model.cjs +1 -1
  3. package/dist/browser/document-model.js +2 -2
  4. package/dist/browser/document.cjs +1 -1
  5. package/dist/browser/document.js +6 -6
  6. package/dist/browser/index.cjs +1 -1
  7. package/dist/browser/index.js +4 -4
  8. package/dist/browser/internal/{index-ec8cd58f.js → index-1ad32a2e.js} +1 -1
  9. package/dist/browser/internal/index-2551382e.js +34 -0
  10. package/dist/browser/internal/{index-10a12861.js → index-46b68530.js} +1 -1
  11. package/dist/browser/internal/index-869c5d0d.js +1 -0
  12. package/dist/browser/internal/object-1fdba77d.js +6 -0
  13. package/dist/browser/internal/{object-7e8eaff4.js → object-d50f7d2f.js} +744 -715
  14. package/dist/node/document/utils/base.d.ts +6 -2
  15. package/dist/node/document-model.cjs +1 -1
  16. package/dist/node/document-model.js +3 -3
  17. package/dist/node/document.cjs +1 -1
  18. package/dist/node/document.js +5 -5
  19. package/dist/node/index.cjs +1 -1
  20. package/dist/node/index.js +4 -4
  21. package/dist/node/internal/{index-284511b8.js → index-631ba7bf.js} +1 -1
  22. package/dist/node/internal/index-6477ee0a.js +1 -0
  23. package/dist/node/internal/{index-09364517.js → index-8d582c48.js} +2 -2
  24. package/dist/node/internal/index-f235f9be.js +34 -0
  25. package/dist/node/internal/object-08bd169a.js +1 -0
  26. package/dist/node/internal/{object-c32ea0a0.js → object-773231ca.js} +473 -444
  27. package/package.json +1 -1
  28. package/dist/browser/internal/index-2aee8ea9.js +0 -1
  29. package/dist/browser/internal/index-a1282d5c.js +0 -31
  30. package/dist/browser/internal/object-24df9d92.js +0 -6
  31. package/dist/node/internal/index-2d4783d9.js +0 -1
  32. package/dist/node/internal/index-5ef0c6b0.js +0 -31
  33. package/dist/node/internal/object-21f3d2ee.js +0 -1
@@ -1,5 +1,6 @@
1
1
  import { baseReducer } from '../reducer';
2
- import { Action, BaseAction, Document, ExtendedState, ImmutableStateReducer, Reducer, Immutable, OperationScope, State, CreateState, PartialState } from '../types';
2
+ import { Action, BaseAction, Document, ExtendedState, ImmutableStateReducer, Reducer, Immutable, OperationScope, State, CreateState, PartialState, DocumentOperations, DocumentHeader } from '../types';
3
+ import { SignalDispatch } from '../signal';
3
4
  export declare function isBaseAction(action: Action): action is BaseAction;
4
5
  /**
5
6
  * Helper function to be used by action creators.
@@ -52,6 +53,9 @@ export declare const createExtendedState: <S, L>(initialState?: Partial<Extended
52
53
  * @returns The new document state.
53
54
  */
54
55
  export declare const createDocument: <S, A extends Action, L = unknown>(initialState?: Partial<ExtendedState<PartialState<S>, PartialState<L>>> | undefined, createState?: ((state?: Partial<State<PartialState<S>, PartialState<L>>> | undefined) => State<S, L>) | undefined) => Document<S, A, L>;
55
- export declare const hashDocument: (document: Document, scope?: OperationScope) => string;
56
+ export declare const hashDocument: (document: Pick<Document, 'state'>, scope?: OperationScope) => string;
56
57
  export declare const hashKey: (date?: Date, randomLimit?: number) => string;
57
58
  export declare function readOnly<T>(value: T): Immutable<T>;
59
+ export declare function sortOperations<A extends Action>(operations: DocumentOperations<A>): import("../types").Operation<BaseAction | A>[];
60
+ export declare function replayOperations<T, A extends Action, L>(initialState: ExtendedState<T, L>, operations: DocumentOperations<A>, reducer: ImmutableStateReducer<T, A, L>, dispatch?: SignalDispatch, header?: DocumentHeader, documentReducer?: typeof baseReducer): Document<T, A, L>;
61
+ export declare function replayDocument<T, A extends Action, L>(initialState: ExtendedState<T, L>, operations: DocumentOperations<A>, reducer: Reducer<T, A, L>, dispatch?: SignalDispatch, header?: DocumentHeader): Document<T, A, L>;
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});require("./internal/object-24df9d92.js");require("json-stringify-deterministic");require("immer");require("jszip");const e=require("./internal/index-ec8cd58f.js");require("zod");exports.Document=e.Document;exports.DocumentModel=e.DocumentModel$1;exports.actions=e.actions;exports.documentModel=e.documentModel;exports.module=e.module;exports.reducer=e.reducer;exports.utils=e.utils;exports.z=e.zod;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});require("./internal/object-1fdba77d.js");require("json-stringify-deterministic");require("immer");require("jszip");const e=require("./internal/index-1ad32a2e.js");require("zod");exports.Document=e.Document;exports.DocumentModel=e.DocumentModel$1;exports.actions=e.actions;exports.documentModel=e.documentModel;exports.module=e.module;exports.reducer=e.reducer;exports.utils=e.utils;exports.z=e.zod;
@@ -1,8 +1,8 @@
1
- import "./internal/object-7e8eaff4.js";
1
+ import "./internal/object-d50f7d2f.js";
2
2
  import "json-stringify-deterministic";
3
3
  import "immer";
4
4
  import "jszip";
5
- import { b as i, a as u, c, d, m as p, r as l, u as n, z as D } from "./internal/index-10a12861.js";
5
+ import { b as i, a as u, c, d, m as p, r as l, u as n, z as D } from "./internal/index-46b68530.js";
6
6
  import "zod";
7
7
  export {
8
8
  i as Document,
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./internal/object-24df9d92.js"),r=require("./internal/index-2aee8ea9.js");require("json-stringify-deterministic");require("immer");require("jszip");require("zod");exports.BaseDocument=e.BaseDocument;exports.actions=e.BaseActions;exports.applyMixins=e.applyMixins;exports.baseReducer=e.baseReducer;exports.z=e.zod;exports.utils=r.index;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./internal/object-1fdba77d.js"),r=require("./internal/index-869c5d0d.js");require("json-stringify-deterministic");require("immer");require("zod");require("jszip");exports.BaseDocument=e.BaseDocument;exports.actions=e.BaseActions;exports.applyMixins=e.applyMixins;exports.baseReducer=e.baseReducer;exports.z=e.zod;exports.utils=r.index;
@@ -1,14 +1,14 @@
1
- import { B as t, h as e, g as m, p as c, z as n } from "./internal/object-7e8eaff4.js";
2
- import { i as x } from "./internal/index-a1282d5c.js";
1
+ import { B as p, h as e, g as m, u, z as c } from "./internal/object-d50f7d2f.js";
2
+ import { i as x } from "./internal/index-2551382e.js";
3
3
  import "json-stringify-deterministic";
4
4
  import "immer";
5
- import "jszip";
6
5
  import "zod";
6
+ import "jszip";
7
7
  export {
8
- t as BaseDocument,
8
+ p as BaseDocument,
9
9
  e as actions,
10
10
  m as applyMixins,
11
- c as baseReducer,
11
+ u as baseReducer,
12
12
  x as utils,
13
- n as z
13
+ c as z
14
14
  };
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("./internal/index-2aee8ea9.js"),o=require("./internal/index-ec8cd58f.js");require("./internal/object-24df9d92.js");require("json-stringify-deterministic");require("immer");require("jszip");require("zod");const u={"powerhouse/document":e.Document,"powerhouse/document-model":o.DocumentModel},t={Document:e.Document,DocumentModel:o.DocumentModel};exports.Document=e.Document;exports.DocumentModel=o.DocumentModel;exports.DocumentModels=u;exports.default=t;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("./internal/index-869c5d0d.js"),o=require("./internal/index-1ad32a2e.js");require("./internal/object-1fdba77d.js");require("json-stringify-deterministic");require("immer");require("zod");require("jszip");const u={"powerhouse/document":e.Document,"powerhouse/document-model":o.DocumentModel},t={Document:e.Document,DocumentModel:o.DocumentModel};exports.Document=e.Document;exports.DocumentModel=o.DocumentModel;exports.DocumentModels=u;exports.default=t;
@@ -1,10 +1,10 @@
1
- import { D as o } from "./internal/index-a1282d5c.js";
2
- import { D as t } from "./internal/index-10a12861.js";
3
- import "./internal/object-7e8eaff4.js";
1
+ import { D as o } from "./internal/index-2551382e.js";
2
+ import { D as t } from "./internal/index-46b68530.js";
3
+ import "./internal/object-d50f7d2f.js";
4
4
  import "json-stringify-deterministic";
5
5
  import "immer";
6
- import "jszip";
7
6
  import "zod";
7
+ import "jszip";
8
8
  const u = {
9
9
  "powerhouse/document": o,
10
10
  "powerhouse/document-model": t
@@ -1,4 +1,4 @@
1
- "use strict";var ut=Object.defineProperty;var mt=(t,e,o)=>e in t?ut(t,e,{enumerable:!0,configurable:!0,writable:!0,value:o}):t[e]=o;var ue=(t,e,o)=>(mt(t,typeof e!="symbol"?e+"":e,o),o);const s=require("./object-24df9d92.js");require("json-stringify-deterministic");require("immer");require("jszip");const r=require("zod"),Et=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"})),f={id:"powerhouse/document-model",name:"DocumentModel",extension:"phdm",description:"The Powerhouse Document Model describes the state and operations of a document type.",author:{name:"Powerhouse",website:"https://www.powerhouse.inc/"},specifications:[{version:1,changeLog:[],modules:[{name:"header",operations:[{name:"SetModelName",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetModelId",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetModelExtension",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetModelDescription",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetAuthorName",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetAuthorWebsite",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"}],id:"",description:""},{name:"versioning",operations:[{name:"AddChangeLogItem",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"UpdateChangeLogItem",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"DeleteChangeLogItem",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"ReorderChangeLogItems",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"ReleaseNewVersion",schema:null,id:"",description:"",template:"",reducer:"",examples:[],errors:[],scope:"global"}],id:"",description:""},{name:"module",operations:[{name:"AddModule",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetModuleName",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetModuleDescription",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"DeleteModule",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"ReorderModules",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"}],id:"",description:""},{name:"operation-error",operations:[{name:"AddOperationError",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationErrorCode",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationErrorName",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationErrorDescription",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationErrorTemplate",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"DeleteOperationError",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"ReorderOperationErrors",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"}],id:"",description:""},{name:"operation-example",operations:[{name:"AddOperationExample",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"UpdateOperationExample",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"DeleteOperationExample",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"ReorderOperationExamples",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"}],id:"",description:""},{name:"operation",operations:[{name:"AddOperation",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationName",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationSchema",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationDescription",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationTemplate",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationReducer",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"MoveOperation",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"DeleteOperation",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"ReorderModuleOperations",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"}],id:"",description:""},{name:"state",operations:[{name:"SetStateSchema",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetInitialState",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"AddStateExample",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"UpdateStateExample",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"DeleteStateExample",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"ReorderStateExamples",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"}],id:"",description:""}],state:{global:{schema:"",initialValue:`{
1
+ "use strict";var ut=Object.defineProperty;var mt=(t,e,o)=>e in t?ut(t,e,{enumerable:!0,configurable:!0,writable:!0,value:o}):t[e]=o;var ue=(t,e,o)=>(mt(t,typeof e!="symbol"?e+"":e,o),o);const s=require("./object-1fdba77d.js");require("json-stringify-deterministic");require("immer");require("jszip");const r=require("zod"),Et=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"})),f={id:"powerhouse/document-model",name:"DocumentModel",extension:"phdm",description:"The Powerhouse Document Model describes the state and operations of a document type.",author:{name:"Powerhouse",website:"https://www.powerhouse.inc/"},specifications:[{version:1,changeLog:[],modules:[{name:"header",operations:[{name:"SetModelName",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetModelId",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetModelExtension",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetModelDescription",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetAuthorName",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetAuthorWebsite",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"}],id:"",description:""},{name:"versioning",operations:[{name:"AddChangeLogItem",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"UpdateChangeLogItem",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"DeleteChangeLogItem",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"ReorderChangeLogItems",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"ReleaseNewVersion",schema:null,id:"",description:"",template:"",reducer:"",examples:[],errors:[],scope:"global"}],id:"",description:""},{name:"module",operations:[{name:"AddModule",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetModuleName",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetModuleDescription",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"DeleteModule",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"ReorderModules",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"}],id:"",description:""},{name:"operation-error",operations:[{name:"AddOperationError",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationErrorCode",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationErrorName",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationErrorDescription",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationErrorTemplate",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"DeleteOperationError",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"ReorderOperationErrors",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"}],id:"",description:""},{name:"operation-example",operations:[{name:"AddOperationExample",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"UpdateOperationExample",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"DeleteOperationExample",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"ReorderOperationExamples",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"}],id:"",description:""},{name:"operation",operations:[{name:"AddOperation",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationName",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationSchema",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationDescription",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationTemplate",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetOperationReducer",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"MoveOperation",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"DeleteOperation",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"ReorderModuleOperations",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"}],id:"",description:""},{name:"state",operations:[{name:"SetStateSchema",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"SetInitialState",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"AddStateExample",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"UpdateStateExample",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"DeleteStateExample",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"},{name:"ReorderStateExamples",id:"",description:"",schema:"",template:"",reducer:"",examples:[],errors:[],scope:"global"}],id:"",description:""}],state:{global:{schema:"",initialValue:`{
2
2
  "id": "",
3
3
  "name": "",
4
4
  "extension": "",
@@ -0,0 +1,34 @@
1
+ import { f as e, b as a, a as s, c as t, j as o, k as r, m as n, n as l, o as c, i, l as u, e as d, r as p, p as m, q as y, s as b, d as _, t as g, B as F, h as O, g as f, u as D, z as h } from "./object-d50f7d2f.js";
2
+ const j = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3
+ __proto__: null,
4
+ createAction: e,
5
+ createDocument: a,
6
+ createExtendedState: s,
7
+ createReducer: t,
8
+ createZip: o,
9
+ getLocalFile: r,
10
+ getRemoteFile: n,
11
+ hashDocument: l,
12
+ hashKey: c,
13
+ isBaseAction: i,
14
+ loadFromFile: u,
15
+ loadFromInput: d,
16
+ readOnly: p,
17
+ replayDocument: m,
18
+ replayOperations: y,
19
+ saveToFile: b,
20
+ saveToFileHandle: _,
21
+ sortOperations: g
22
+ }, Symbol.toStringTag, { value: "Module" })), S = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
23
+ __proto__: null,
24
+ BaseDocument: F,
25
+ actions: O,
26
+ applyMixins: f,
27
+ baseReducer: D,
28
+ utils: j,
29
+ z: h
30
+ }, Symbol.toStringTag, { value: "Module" }));
31
+ export {
32
+ S as D,
33
+ j as i
34
+ };
@@ -1,7 +1,7 @@
1
1
  var dt = Object.defineProperty;
2
2
  var ut = (t, e, o) => e in t ? dt(t, e, { enumerable: !0, configurable: !0, writable: !0, value: o }) : t[e] = o;
3
3
  var le = (t, e, o) => (ut(t, typeof e != "symbol" ? e + "" : e, o), o);
4
- import { c as mt, i as Et, a as ht, b as Ot, s as gt, d as St, l as bt, e as ft, f as s, B as l, g as _t, h as It } from "./object-7e8eaff4.js";
4
+ import { c as mt, i as Et, a as ht, b as Ot, s as gt, d as St, l as bt, e as ft, f as s, B as l, g as _t, h as It } from "./object-d50f7d2f.js";
5
5
  import "json-stringify-deterministic";
6
6
  import "immer";
7
7
  import "jszip";
@@ -0,0 +1 @@
1
+ "use strict";const e=require("./object-1fdba77d.js"),t=Object.freeze(Object.defineProperty({__proto__:null,createAction:e.createAction,createDocument:e.createDocument,createExtendedState:e.createExtendedState,createReducer:e.createReducer,createZip:e.createZip,getLocalFile:e.getLocalFile,getRemoteFile:e.getRemoteFile,hashDocument:e.hashDocument,hashKey:e.hashKey,isBaseAction:e.isBaseAction,loadFromFile:e.loadFromFile,loadFromInput:e.loadFromInput,readOnly:e.readOnly,replayDocument:e.replayDocument,replayOperations:e.replayOperations,saveToFile:e.saveToFile,saveToFileHandle:e.saveToFileHandle,sortOperations:e.sortOperations},Symbol.toStringTag,{value:"Module"})),o=Object.freeze(Object.defineProperty({__proto__:null,BaseDocument:e.BaseDocument,actions:e.BaseActions,applyMixins:e.applyMixins,baseReducer:e.baseReducer,utils:t,z:e.zod},Symbol.toStringTag,{value:"Module"}));exports.Document=o;exports.index=t;
@@ -0,0 +1,6 @@
1
+ "use strict";var Br=Object.defineProperty;var jr=(i,a,p)=>a in i?Br(i,a,{enumerable:!0,configurable:!0,writable:!0,value:p}):i[a]=p;var H=(i,a,p)=>(jr(i,typeof a!="symbol"?a+"":a,p),p);const Ir=require("json-stringify-deterministic"),R=require("immer"),g=require("zod"),jt=require("jszip"),It=i=>i!=null,Ur=g.z.any().refine(i=>It(i)),Ut=g.z.enum(["LOAD_STATE"]),Tt=g.z.enum(["PRUNE"]),zt=g.z.enum(["REDO"]),kt=g.z.enum(["SET_NAME"]),Dt=g.z.enum(["UNDO"]);function Tr(){return g.z.object({__typename:g.z.literal("Action").optional(),type:g.z.string()})}function Ot(){return g.z.union([Nt(),Rt(),Ct(),Lt(),qt()])}function zr(){return g.z.object({__typename:g.z.literal("DocumentFile").optional(),data:g.z.string(),extension:g.z.string().nullable(),fileName:g.z.string().nullable(),mimeType:g.z.string()})}function Nt(){return g.z.object({input:g.z.lazy(()=>at()),type:Ut,scope:g.z.literal("global")})}function at(){return g.z.object({operations:g.z.number(),state:g.z.lazy(()=>Mt())})}function Mt(){return g.z.object({data:g.z.unknown().nullish(),name:g.z.string()})}function kr(){return g.z.object({__typename:g.z.literal("Operation").optional(),hash:g.z.string(),index:g.z.number(),timestamp:g.z.string().datetime(),type:g.z.string()})}function Rt(){return g.z.object({input:g.z.lazy(()=>ot()),type:Tt,scope:g.z.literal("global")})}function ot(){return g.z.object({end:g.z.number().nullish(),start:g.z.number().nullish()})}const pt=g.z.number;function Ct(){return g.z.object({input:pt(),type:zt,scope:g.z.literal("global")})}const st=g.z.string;function Lt(){return g.z.object({input:st(),type:kt,scope:g.z.literal("global")})}function Dr(){return g.z.object({__typename:g.z.literal("SetNameOperation").optional(),hash:g.z.string(),index:g.z.number(),input:g.z.string(),timestamp:g.z.string().datetime(),type:g.z.string()})}const lt=g.z.number;function qt(){return g.z.object({input:lt(),type:Dt,scope:g.z.literal("global")})}const Or=Object.freeze(Object.defineProperty({__proto__:null,ActionSchema:Tr,BaseActionSchema:Ot,DocumentFileSchema:zr,LoadStateActionInputSchema:at,LoadStateActionSchema:Nt,LoadStateActionStateInputSchema:Mt,Load_StateSchema:Ut,OperationSchema:kr,PruneActionInputSchema:ot,PruneActionSchema:Rt,PruneSchema:Tt,RedoActionInputSchema:pt,RedoActionSchema:Ct,RedoSchema:zt,SetNameActionInputSchema:st,SetNameActionSchema:Lt,SetNameOperationSchema:Dr,Set_NameSchema:kt,UndoActionInputSchema:lt,UndoActionSchema:qt,UndoSchema:Dt,definedNonNullAnySchema:Ur,isDefinedNonNullAny:It},Symbol.toStringTag,{value:"Module"}));function Nr(i,a){return{...i,name:a}}function Mr(i,a,p){const l=Math.min(a,i.revision),c=i.operations.global.slice(0,i.revision-l);return{...C(i.initialState,{global:c,local:i.operations.local},p),operations:i.operations,revision:i.revision-l}}function Rr(i,a,p){const l=i.operations.global.length-i.revision;if(!l)throw new Error("There is no UNDO operation to REDO");const c=a<l?a:l,h=i.operations.global.slice(0,i.revision+c);return{...C(i.initialState,{global:h,local:i.operations.local},p),operations:i.operations,revision:i.revision+c}}function Cr(i,a,p,l){a=a||0,p=p||i.operations.global.length;const c=i.operations.global.slice(a,p),h=i.operations.global.slice(0,a),u=i.operations.global.slice(p),o=C(i.initialState,{global:h.concat(c),local:i.operations.local},l),{name:x,state:d}=o,w=h.length,b=h.length?h[h.length-1].timestamp:u.length?u[0].timestamp:new Date().toISOString();return C(i.initialState,{global:[...h,{...gt({name:x,state:d},c.length),timestamp:b,index:w,hash:mt({state:d},"global")},...u.map((j,_)=>({...j,index:w+_+1}))],local:i.operations.local},l)}function Lr(i,a){return{...i,name:a.name,state:a.state??{global:{},local:{}}}}const $t="SET_NAME",L="UNDO",q="REDO",$="PRUNE",Jt="LOAD_STATE";function Pt(i){return i&&i.__esModule&&Object.prototype.hasOwnProperty.call(i,"default")?i.default:i}function Z(){this._types=Object.create(null),this._extensions=Object.create(null);for(let i=0;i<arguments.length;i++)this.define(arguments[i]);this.define=this.define.bind(this),this.getType=this.getType.bind(this),this.getExtension=this.getExtension.bind(this)}Z.prototype.define=function(i,a){for(let p in i){let l=i[p].map(function(c){return c.toLowerCase()});p=p.toLowerCase();for(let c=0;c<l.length;c++){const h=l[c];if(h[0]!=="*"){if(!a&&h in this._types)throw new Error('Attempt to change mapping for "'+h+'" extension from "'+this._types[h]+'" to "'+p+'". Pass `force=true` to allow this, otherwise remove "'+h+'" from the list of extensions for "'+p+'".');this._types[h]=p}}if(a||!this._extensions[p]){const c=l[0];this._extensions[p]=c[0]!=="*"?c:c.substr(1)}}};Z.prototype.getType=function(i){i=String(i);let a=i.replace(/^.*[/\\]/,"").toLowerCase(),p=a.replace(/^.*\./,"").toLowerCase(),l=a.length<i.length;return(p.length<a.length-1||!l)&&this._types[p]||null};Z.prototype.getExtension=function(i){return i=/^\s*([^;\s]*)/.test(i)&&RegExp.$1,i&&this._extensions[i.toLowerCase()]||null};var qr=Z,$r={"application/andrew-inset":["ez"],"application/applixware":["aw"],"application/atom+xml":["atom"],"application/atomcat+xml":["atomcat"],"application/atomdeleted+xml":["atomdeleted"],"application/atomsvc+xml":["atomsvc"],"application/atsc-dwd+xml":["dwd"],"application/atsc-held+xml":["held"],"application/atsc-rsat+xml":["rsat"],"application/bdoc":["bdoc"],"application/calendar+xml":["xcs"],"application/ccxml+xml":["ccxml"],"application/cdfx+xml":["cdfx"],"application/cdmi-capability":["cdmia"],"application/cdmi-container":["cdmic"],"application/cdmi-domain":["cdmid"],"application/cdmi-object":["cdmio"],"application/cdmi-queue":["cdmiq"],"application/cu-seeme":["cu"],"application/dash+xml":["mpd"],"application/davmount+xml":["davmount"],"application/docbook+xml":["dbk"],"application/dssc+der":["dssc"],"application/dssc+xml":["xdssc"],"application/ecmascript":["es","ecma"],"application/emma+xml":["emma"],"application/emotionml+xml":["emotionml"],"application/epub+zip":["epub"],"application/exi":["exi"],"application/express":["exp"],"application/fdt+xml":["fdt"],"application/font-tdpfr":["pfr"],"application/geo+json":["geojson"],"application/gml+xml":["gml"],"application/gpx+xml":["gpx"],"application/gxf":["gxf"],"application/gzip":["gz"],"application/hjson":["hjson"],"application/hyperstudio":["stk"],"application/inkml+xml":["ink","inkml"],"application/ipfix":["ipfix"],"application/its+xml":["its"],"application/java-archive":["jar","war","ear"],"application/java-serialized-object":["ser"],"application/java-vm":["class"],"application/javascript":["js","mjs"],"application/json":["json","map"],"application/json5":["json5"],"application/jsonml+json":["jsonml"],"application/ld+json":["jsonld"],"application/lgr+xml":["lgr"],"application/lost+xml":["lostxml"],"application/mac-binhex40":["hqx"],"application/mac-compactpro":["cpt"],"application/mads+xml":["mads"],"application/manifest+json":["webmanifest"],"application/marc":["mrc"],"application/marcxml+xml":["mrcx"],"application/mathematica":["ma","nb","mb"],"application/mathml+xml":["mathml"],"application/mbox":["mbox"],"application/mediaservercontrol+xml":["mscml"],"application/metalink+xml":["metalink"],"application/metalink4+xml":["meta4"],"application/mets+xml":["mets"],"application/mmt-aei+xml":["maei"],"application/mmt-usd+xml":["musd"],"application/mods+xml":["mods"],"application/mp21":["m21","mp21"],"application/mp4":["mp4s","m4p"],"application/msword":["doc","dot"],"application/mxf":["mxf"],"application/n-quads":["nq"],"application/n-triples":["nt"],"application/node":["cjs"],"application/octet-stream":["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"],"application/oda":["oda"],"application/oebps-package+xml":["opf"],"application/ogg":["ogx"],"application/omdoc+xml":["omdoc"],"application/onenote":["onetoc","onetoc2","onetmp","onepkg"],"application/oxps":["oxps"],"application/p2p-overlay+xml":["relo"],"application/patch-ops-error+xml":["xer"],"application/pdf":["pdf"],"application/pgp-encrypted":["pgp"],"application/pgp-signature":["asc","sig"],"application/pics-rules":["prf"],"application/pkcs10":["p10"],"application/pkcs7-mime":["p7m","p7c"],"application/pkcs7-signature":["p7s"],"application/pkcs8":["p8"],"application/pkix-attr-cert":["ac"],"application/pkix-cert":["cer"],"application/pkix-crl":["crl"],"application/pkix-pkipath":["pkipath"],"application/pkixcmp":["pki"],"application/pls+xml":["pls"],"application/postscript":["ai","eps","ps"],"application/provenance+xml":["provx"],"application/pskc+xml":["pskcxml"],"application/raml+yaml":["raml"],"application/rdf+xml":["rdf","owl"],"application/reginfo+xml":["rif"],"application/relax-ng-compact-syntax":["rnc"],"application/resource-lists+xml":["rl"],"application/resource-lists-diff+xml":["rld"],"application/rls-services+xml":["rs"],"application/route-apd+xml":["rapd"],"application/route-s-tsid+xml":["sls"],"application/route-usd+xml":["rusd"],"application/rpki-ghostbusters":["gbr"],"application/rpki-manifest":["mft"],"application/rpki-roa":["roa"],"application/rsd+xml":["rsd"],"application/rss+xml":["rss"],"application/rtf":["rtf"],"application/sbml+xml":["sbml"],"application/scvp-cv-request":["scq"],"application/scvp-cv-response":["scs"],"application/scvp-vp-request":["spq"],"application/scvp-vp-response":["spp"],"application/sdp":["sdp"],"application/senml+xml":["senmlx"],"application/sensml+xml":["sensmlx"],"application/set-payment-initiation":["setpay"],"application/set-registration-initiation":["setreg"],"application/shf+xml":["shf"],"application/sieve":["siv","sieve"],"application/smil+xml":["smi","smil"],"application/sparql-query":["rq"],"application/sparql-results+xml":["srx"],"application/srgs":["gram"],"application/srgs+xml":["grxml"],"application/sru+xml":["sru"],"application/ssdl+xml":["ssdl"],"application/ssml+xml":["ssml"],"application/swid+xml":["swidtag"],"application/tei+xml":["tei","teicorpus"],"application/thraud+xml":["tfi"],"application/timestamped-data":["tsd"],"application/toml":["toml"],"application/trig":["trig"],"application/ttml+xml":["ttml"],"application/ubjson":["ubj"],"application/urc-ressheet+xml":["rsheet"],"application/urc-targetdesc+xml":["td"],"application/voicexml+xml":["vxml"],"application/wasm":["wasm"],"application/widget":["wgt"],"application/winhlp":["hlp"],"application/wsdl+xml":["wsdl"],"application/wspolicy+xml":["wspolicy"],"application/xaml+xml":["xaml"],"application/xcap-att+xml":["xav"],"application/xcap-caps+xml":["xca"],"application/xcap-diff+xml":["xdf"],"application/xcap-el+xml":["xel"],"application/xcap-ns+xml":["xns"],"application/xenc+xml":["xenc"],"application/xhtml+xml":["xhtml","xht"],"application/xliff+xml":["xlf"],"application/xml":["xml","xsl","xsd","rng"],"application/xml-dtd":["dtd"],"application/xop+xml":["xop"],"application/xproc+xml":["xpl"],"application/xslt+xml":["*xsl","xslt"],"application/xspf+xml":["xspf"],"application/xv+xml":["mxml","xhvml","xvml","xvm"],"application/yang":["yang"],"application/yin+xml":["yin"],"application/zip":["zip"],"audio/3gpp":["*3gpp"],"audio/adpcm":["adp"],"audio/amr":["amr"],"audio/basic":["au","snd"],"audio/midi":["mid","midi","kar","rmi"],"audio/mobile-xmf":["mxmf"],"audio/mp3":["*mp3"],"audio/mp4":["m4a","mp4a"],"audio/mpeg":["mpga","mp2","mp2a","mp3","m2a","m3a"],"audio/ogg":["oga","ogg","spx","opus"],"audio/s3m":["s3m"],"audio/silk":["sil"],"audio/wav":["wav"],"audio/wave":["*wav"],"audio/webm":["weba"],"audio/xm":["xm"],"font/collection":["ttc"],"font/otf":["otf"],"font/ttf":["ttf"],"font/woff":["woff"],"font/woff2":["woff2"],"image/aces":["exr"],"image/apng":["apng"],"image/avif":["avif"],"image/bmp":["bmp"],"image/cgm":["cgm"],"image/dicom-rle":["drle"],"image/emf":["emf"],"image/fits":["fits"],"image/g3fax":["g3"],"image/gif":["gif"],"image/heic":["heic"],"image/heic-sequence":["heics"],"image/heif":["heif"],"image/heif-sequence":["heifs"],"image/hej2k":["hej2"],"image/hsj2":["hsj2"],"image/ief":["ief"],"image/jls":["jls"],"image/jp2":["jp2","jpg2"],"image/jpeg":["jpeg","jpg","jpe"],"image/jph":["jph"],"image/jphc":["jhc"],"image/jpm":["jpm"],"image/jpx":["jpx","jpf"],"image/jxr":["jxr"],"image/jxra":["jxra"],"image/jxrs":["jxrs"],"image/jxs":["jxs"],"image/jxsc":["jxsc"],"image/jxsi":["jxsi"],"image/jxss":["jxss"],"image/ktx":["ktx"],"image/ktx2":["ktx2"],"image/png":["png"],"image/sgi":["sgi"],"image/svg+xml":["svg","svgz"],"image/t38":["t38"],"image/tiff":["tif","tiff"],"image/tiff-fx":["tfx"],"image/webp":["webp"],"image/wmf":["wmf"],"message/disposition-notification":["disposition-notification"],"message/global":["u8msg"],"message/global-delivery-status":["u8dsn"],"message/global-disposition-notification":["u8mdn"],"message/global-headers":["u8hdr"],"message/rfc822":["eml","mime"],"model/3mf":["3mf"],"model/gltf+json":["gltf"],"model/gltf-binary":["glb"],"model/iges":["igs","iges"],"model/mesh":["msh","mesh","silo"],"model/mtl":["mtl"],"model/obj":["obj"],"model/step+xml":["stpx"],"model/step+zip":["stpz"],"model/step-xml+zip":["stpxz"],"model/stl":["stl"],"model/vrml":["wrl","vrml"],"model/x3d+binary":["*x3db","x3dbz"],"model/x3d+fastinfoset":["x3db"],"model/x3d+vrml":["*x3dv","x3dvz"],"model/x3d+xml":["x3d","x3dz"],"model/x3d-vrml":["x3dv"],"text/cache-manifest":["appcache","manifest"],"text/calendar":["ics","ifb"],"text/coffeescript":["coffee","litcoffee"],"text/css":["css"],"text/csv":["csv"],"text/html":["html","htm","shtml"],"text/jade":["jade"],"text/jsx":["jsx"],"text/less":["less"],"text/markdown":["markdown","md"],"text/mathml":["mml"],"text/mdx":["mdx"],"text/n3":["n3"],"text/plain":["txt","text","conf","def","list","log","in","ini"],"text/richtext":["rtx"],"text/rtf":["*rtf"],"text/sgml":["sgml","sgm"],"text/shex":["shex"],"text/slim":["slim","slm"],"text/spdx":["spdx"],"text/stylus":["stylus","styl"],"text/tab-separated-values":["tsv"],"text/troff":["t","tr","roff","man","me","ms"],"text/turtle":["ttl"],"text/uri-list":["uri","uris","urls"],"text/vcard":["vcard"],"text/vtt":["vtt"],"text/xml":["*xml"],"text/yaml":["yaml","yml"],"video/3gpp":["3gp","3gpp"],"video/3gpp2":["3g2"],"video/h261":["h261"],"video/h263":["h263"],"video/h264":["h264"],"video/iso.segment":["m4s"],"video/jpeg":["jpgv"],"video/jpm":["*jpm","jpgm"],"video/mj2":["mj2","mjp2"],"video/mp2t":["ts"],"video/mp4":["mp4","mp4v","mpg4"],"video/mpeg":["mpeg","mpg","mpe","m1v","m2v"],"video/ogg":["ogv"],"video/quicktime":["qt","mov"],"video/webm":["webm"]};let Jr=qr;var Pr=new Jr($r);const Wr=Pt(Pr);var rt={exports:{}};typeof Object.create=="function"?rt.exports=function(a,p){p&&(a.super_=p,a.prototype=Object.create(p.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}))}:rt.exports=function(a,p){if(p){a.super_=p;var l=function(){};l.prototype=p.prototype,a.prototype=new l,a.prototype.constructor=a}};var Hr=rt.exports,et={exports:{}},Wt={},K={};K.byteLength=Yr;K.toByteArray=Gr;K.fromByteArray=te;var T=[],I=[],Zr=typeof Uint8Array<"u"?Uint8Array:Array,tt="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(var D=0,Kr=tt.length;D<Kr;++D)T[D]=tt[D],I[tt.charCodeAt(D)]=D;I["-".charCodeAt(0)]=62;I["_".charCodeAt(0)]=63;function Ht(i){var a=i.length;if(a%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var p=i.indexOf("=");p===-1&&(p=a);var l=p===a?0:4-p%4;return[p,l]}function Yr(i){var a=Ht(i),p=a[0],l=a[1];return(p+l)*3/4-l}function Xr(i,a,p){return(a+p)*3/4-p}function Gr(i){var a,p=Ht(i),l=p[0],c=p[1],h=new Zr(Xr(i,l,c)),u=0,o=c>0?l-4:l,x;for(x=0;x<o;x+=4)a=I[i.charCodeAt(x)]<<18|I[i.charCodeAt(x+1)]<<12|I[i.charCodeAt(x+2)]<<6|I[i.charCodeAt(x+3)],h[u++]=a>>16&255,h[u++]=a>>8&255,h[u++]=a&255;return c===2&&(a=I[i.charCodeAt(x)]<<2|I[i.charCodeAt(x+1)]>>4,h[u++]=a&255),c===1&&(a=I[i.charCodeAt(x)]<<10|I[i.charCodeAt(x+1)]<<4|I[i.charCodeAt(x+2)]>>2,h[u++]=a>>8&255,h[u++]=a&255),h}function Vr(i){return T[i>>18&63]+T[i>>12&63]+T[i>>6&63]+T[i&63]}function Qr(i,a,p){for(var l,c=[],h=a;h<p;h+=3)l=(i[h]<<16&16711680)+(i[h+1]<<8&65280)+(i[h+2]&255),c.push(Vr(l));return c.join("")}function te(i){for(var a,p=i.length,l=p%3,c=[],h=16383,u=0,o=p-l;u<o;u+=h)c.push(Qr(i,u,u+h>o?o:u+h));return l===1?(a=i[p-1],c.push(T[a>>2]+T[a<<4&63]+"==")):l===2&&(a=(i[p-2]<<8)+i[p-1],c.push(T[a>>10]+T[a>>4&63]+T[a<<2&63]+"=")),c.join("")}var ct={};/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */ct.read=function(i,a,p,l,c){var h,u,o=c*8-l-1,x=(1<<o)-1,d=x>>1,w=-7,b=p?c-1:0,j=p?-1:1,_=i[a+b];for(b+=j,h=_&(1<<-w)-1,_>>=-w,w+=o;w>0;h=h*256+i[a+b],b+=j,w-=8);for(u=h&(1<<-w)-1,h>>=-w,w+=l;w>0;u=u*256+i[a+b],b+=j,w-=8);if(h===0)h=1-d;else{if(h===x)return u?NaN:(_?-1:1)*(1/0);u=u+Math.pow(2,l),h=h-d}return(_?-1:1)*u*Math.pow(2,h-l)};ct.write=function(i,a,p,l,c,h){var u,o,x,d=h*8-c-1,w=(1<<d)-1,b=w>>1,j=c===23?Math.pow(2,-24)-Math.pow(2,-77):0,_=l?0:h-1,z=l?1:-1,N=a<0||a===0&&1/a<0?1:0;for(a=Math.abs(a),isNaN(a)||a===1/0?(o=isNaN(a)?1:0,u=w):(u=Math.floor(Math.log(a)/Math.LN2),a*(x=Math.pow(2,-u))<1&&(u--,x*=2),u+b>=1?a+=j/x:a+=j*Math.pow(2,1-b),a*x>=2&&(u++,x/=2),u+b>=w?(o=0,u=w):u+b>=1?(o=(a*x-1)*Math.pow(2,c),u=u+b):(o=a*Math.pow(2,b-1)*Math.pow(2,c),u=0));c>=8;i[p+_]=o&255,_+=z,o/=256,c-=8);for(u=u<<c|o,d+=c;d>0;i[p+_]=u&255,_+=z,u/=256,d-=8);i[p+_-z]|=N*128};/*!
2
+ * The buffer module from node.js, for the browser.
3
+ *
4
+ * @author Feross Aboukhadijeh <https://feross.org>
5
+ * @license MIT
6
+ */(function(i){var a=K,p=ct,l=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;i.Buffer=o,i.SlowBuffer=lr,i.INSPECT_MAX_BYTES=50;var c=2147483647;i.kMaxLength=c,o.TYPED_ARRAY_SUPPORT=h(),!o.TYPED_ARRAY_SUPPORT&&typeof console<"u"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function h(){try{var e=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(e,t),e.foo()===42}catch{return!1}}Object.defineProperty(o.prototype,"parent",{enumerable:!0,get:function(){if(o.isBuffer(this))return this.buffer}}),Object.defineProperty(o.prototype,"offset",{enumerable:!0,get:function(){if(o.isBuffer(this))return this.byteOffset}});function u(e){if(e>c)throw new RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,o.prototype),t}function o(e,t,r){if(typeof e=="number"){if(typeof t=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return b(e)}return x(e,t,r)}o.poolSize=8192;function x(e,t,r){if(typeof e=="string")return j(e,t);if(ArrayBuffer.isView(e))return z(e);if(e==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e);if(U(e,ArrayBuffer)||e&&U(e.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(U(e,SharedArrayBuffer)||e&&U(e.buffer,SharedArrayBuffer)))return N(e,t,r);if(typeof e=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');var n=e.valueOf&&e.valueOf();if(n!=null&&n!==e)return o.from(n,t,r);var s=sr(e);if(s)return s;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof e[Symbol.toPrimitive]=="function")return o.from(e[Symbol.toPrimitive]("string"),t,r);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e)}o.from=function(e,t,r){return x(e,t,r)},Object.setPrototypeOf(o.prototype,Uint8Array.prototype),Object.setPrototypeOf(o,Uint8Array);function d(e){if(typeof e!="number")throw new TypeError('"size" argument must be of type number');if(e<0)throw new RangeError('The value "'+e+'" is invalid for option "size"')}function w(e,t,r){return d(e),e<=0?u(e):t!==void 0?typeof r=="string"?u(e).fill(t,r):u(e).fill(t):u(e)}o.alloc=function(e,t,r){return w(e,t,r)};function b(e){return d(e),u(e<0?0:G(e)|0)}o.allocUnsafe=function(e){return b(e)},o.allocUnsafeSlow=function(e){return b(e)};function j(e,t){if((typeof t!="string"||t==="")&&(t="utf8"),!o.isEncoding(t))throw new TypeError("Unknown encoding: "+t);var r=dt(e,t)|0,n=u(r),s=n.write(e,t);return s!==r&&(n=n.slice(0,s)),n}function _(e){for(var t=e.length<0?0:G(e.length)|0,r=u(t),n=0;n<t;n+=1)r[n]=e[n]&255;return r}function z(e){if(U(e,Uint8Array)){var t=new Uint8Array(e);return N(t.buffer,t.byteOffset,t.byteLength)}return _(e)}function N(e,t,r){if(t<0||e.byteLength<t)throw new RangeError('"offset" is outside of buffer bounds');if(e.byteLength<t+(r||0))throw new RangeError('"length" is outside of buffer bounds');var n;return t===void 0&&r===void 0?n=new Uint8Array(e):r===void 0?n=new Uint8Array(e,t):n=new Uint8Array(e,t,r),Object.setPrototypeOf(n,o.prototype),n}function sr(e){if(o.isBuffer(e)){var t=G(e.length)|0,r=u(t);return r.length===0||e.copy(r,0,0,t),r}if(e.length!==void 0)return typeof e.length!="number"||Q(e.length)?u(0):_(e);if(e.type==="Buffer"&&Array.isArray(e.data))return _(e.data)}function G(e){if(e>=c)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+c.toString(16)+" bytes");return e|0}function lr(e){return+e!=e&&(e=0),o.alloc(+e)}o.isBuffer=function(t){return t!=null&&t._isBuffer===!0&&t!==o.prototype},o.compare=function(t,r){if(U(t,Uint8Array)&&(t=o.from(t,t.offset,t.byteLength)),U(r,Uint8Array)&&(r=o.from(r,r.offset,r.byteLength)),!o.isBuffer(t)||!o.isBuffer(r))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(t===r)return 0;for(var n=t.length,s=r.length,f=0,m=Math.min(n,s);f<m;++f)if(t[f]!==r[f]){n=t[f],s=r[f];break}return n<s?-1:s<n?1:0},o.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},o.concat=function(t,r){if(!Array.isArray(t))throw new TypeError('"list" argument must be an Array of Buffers');if(t.length===0)return o.alloc(0);var n;if(r===void 0)for(r=0,n=0;n<t.length;++n)r+=t[n].length;var s=o.allocUnsafe(r),f=0;for(n=0;n<t.length;++n){var m=t[n];if(U(m,Uint8Array))f+m.length>s.length?o.from(m).copy(s,f):Uint8Array.prototype.set.call(s,m,f);else if(o.isBuffer(m))m.copy(s,f);else throw new TypeError('"list" argument must be an Array of Buffers');f+=m.length}return s};function dt(e,t){if(o.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||U(e,ArrayBuffer))return e.byteLength;if(typeof e!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof e);var r=e.length,n=arguments.length>2&&arguments[2]===!0;if(!n&&r===0)return 0;for(var s=!1;;)switch(t){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return V(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return r*2;case"hex":return r>>>1;case"base64":return At(e).length;default:if(s)return n?-1:V(e).length;t=(""+t).toLowerCase(),s=!0}}o.byteLength=dt;function cr(e,t,r){var n=!1;if((t===void 0||t<0)&&(t=0),t>this.length||((r===void 0||r>this.length)&&(r=this.length),r<=0)||(r>>>=0,t>>>=0,r<=t))return"";for(e||(e="utf8");;)switch(e){case"hex":return vr(this,t,r);case"utf8":case"utf-8":return vt(this,t,r);case"ascii":return yr(this,t,r);case"latin1":case"binary":return wr(this,t,r);case"base64":return gr(this,t,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return br(this,t,r);default:if(n)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),n=!0}}o.prototype._isBuffer=!0;function k(e,t,r){var n=e[t];e[t]=e[r],e[r]=n}o.prototype.swap16=function(){var t=this.length;if(t%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var r=0;r<t;r+=2)k(this,r,r+1);return this},o.prototype.swap32=function(){var t=this.length;if(t%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var r=0;r<t;r+=4)k(this,r,r+3),k(this,r+1,r+2);return this},o.prototype.swap64=function(){var t=this.length;if(t%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var r=0;r<t;r+=8)k(this,r,r+7),k(this,r+1,r+6),k(this,r+2,r+5),k(this,r+3,r+4);return this},o.prototype.toString=function(){var t=this.length;return t===0?"":arguments.length===0?vt(this,0,t):cr.apply(this,arguments)},o.prototype.toLocaleString=o.prototype.toString,o.prototype.equals=function(t){if(!o.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t?!0:o.compare(this,t)===0},o.prototype.inspect=function(){var t="",r=i.INSPECT_MAX_BYTES;return t=this.toString("hex",0,r).replace(/(.{2})/g,"$1 ").trim(),this.length>r&&(t+=" ... "),"<Buffer "+t+">"},l&&(o.prototype[l]=o.prototype.inspect),o.prototype.compare=function(t,r,n,s,f){if(U(t,Uint8Array)&&(t=o.from(t,t.offset,t.byteLength)),!o.isBuffer(t))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(r===void 0&&(r=0),n===void 0&&(n=t?t.length:0),s===void 0&&(s=0),f===void 0&&(f=this.length),r<0||n>t.length||s<0||f>this.length)throw new RangeError("out of range index");if(s>=f&&r>=n)return 0;if(s>=f)return-1;if(r>=n)return 1;if(r>>>=0,n>>>=0,s>>>=0,f>>>=0,this===t)return 0;for(var m=f-s,y=n-r,v=Math.min(m,y),E=this.slice(s,f),S=t.slice(r,n),F=0;F<v;++F)if(E[F]!==S[F]){m=E[F],y=S[F];break}return m<y?-1:y<m?1:0};function yt(e,t,r,n,s){if(e.length===0)return-1;if(typeof r=="string"?(n=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),r=+r,Q(r)&&(r=s?0:e.length-1),r<0&&(r=e.length+r),r>=e.length){if(s)return-1;r=e.length-1}else if(r<0)if(s)r=0;else return-1;if(typeof t=="string"&&(t=o.from(t,n)),o.isBuffer(t))return t.length===0?-1:wt(e,t,r,n,s);if(typeof t=="number")return t=t&255,typeof Uint8Array.prototype.indexOf=="function"?s?Uint8Array.prototype.indexOf.call(e,t,r):Uint8Array.prototype.lastIndexOf.call(e,t,r):wt(e,[t],r,n,s);throw new TypeError("val must be string, number or Buffer")}function wt(e,t,r,n,s){var f=1,m=e.length,y=t.length;if(n!==void 0&&(n=String(n).toLowerCase(),n==="ucs2"||n==="ucs-2"||n==="utf16le"||n==="utf-16le")){if(e.length<2||t.length<2)return-1;f=2,m/=2,y/=2,r/=2}function v(St,Bt){return f===1?St[Bt]:St.readUInt16BE(Bt*f)}var E;if(s){var S=-1;for(E=r;E<m;E++)if(v(e,E)===v(t,S===-1?0:E-S)){if(S===-1&&(S=E),E-S+1===y)return S*f}else S!==-1&&(E-=E-S),S=-1}else for(r+y>m&&(r=m-y),E=r;E>=0;E--){for(var F=!0,W=0;W<y;W++)if(v(e,E+W)!==v(t,W)){F=!1;break}if(F)return E}return-1}o.prototype.includes=function(t,r,n){return this.indexOf(t,r,n)!==-1},o.prototype.indexOf=function(t,r,n){return yt(this,t,r,n,!0)},o.prototype.lastIndexOf=function(t,r,n){return yt(this,t,r,n,!1)};function ur(e,t,r,n){r=Number(r)||0;var s=e.length-r;n?(n=Number(n),n>s&&(n=s)):n=s;var f=t.length;n>f/2&&(n=f/2);for(var m=0;m<n;++m){var y=parseInt(t.substr(m*2,2),16);if(Q(y))return m;e[r+m]=y}return m}function fr(e,t,r,n){return P(V(t,e.length-r),e,r,n)}function hr(e,t,r,n){return P(_r(t),e,r,n)}function mr(e,t,r,n){return P(At(t),e,r,n)}function xr(e,t,r,n){return P(Ar(t,e.length-r),e,r,n)}o.prototype.write=function(t,r,n,s){if(r===void 0)s="utf8",n=this.length,r=0;else if(n===void 0&&typeof r=="string")s=r,n=this.length,r=0;else if(isFinite(r))r=r>>>0,isFinite(n)?(n=n>>>0,s===void 0&&(s="utf8")):(s=n,n=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var f=this.length-r;if((n===void 0||n>f)&&(n=f),t.length>0&&(n<0||r<0)||r>this.length)throw new RangeError("Attempt to write outside buffer bounds");s||(s="utf8");for(var m=!1;;)switch(s){case"hex":return ur(this,t,r,n);case"utf8":case"utf-8":return fr(this,t,r,n);case"ascii":case"latin1":case"binary":return hr(this,t,r,n);case"base64":return mr(this,t,r,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return xr(this,t,r,n);default:if(m)throw new TypeError("Unknown encoding: "+s);s=(""+s).toLowerCase(),m=!0}},o.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function gr(e,t,r){return t===0&&r===e.length?a.fromByteArray(e):a.fromByteArray(e.slice(t,r))}function vt(e,t,r){r=Math.min(e.length,r);for(var n=[],s=t;s<r;){var f=e[s],m=null,y=f>239?4:f>223?3:f>191?2:1;if(s+y<=r){var v,E,S,F;switch(y){case 1:f<128&&(m=f);break;case 2:v=e[s+1],(v&192)===128&&(F=(f&31)<<6|v&63,F>127&&(m=F));break;case 3:v=e[s+1],E=e[s+2],(v&192)===128&&(E&192)===128&&(F=(f&15)<<12|(v&63)<<6|E&63,F>2047&&(F<55296||F>57343)&&(m=F));break;case 4:v=e[s+1],E=e[s+2],S=e[s+3],(v&192)===128&&(E&192)===128&&(S&192)===128&&(F=(f&15)<<18|(v&63)<<12|(E&63)<<6|S&63,F>65535&&F<1114112&&(m=F))}}m===null?(m=65533,y=1):m>65535&&(m-=65536,n.push(m>>>10&1023|55296),m=56320|m&1023),n.push(m),s+=y}return dr(n)}var bt=4096;function dr(e){var t=e.length;if(t<=bt)return String.fromCharCode.apply(String,e);for(var r="",n=0;n<t;)r+=String.fromCharCode.apply(String,e.slice(n,n+=bt));return r}function yr(e,t,r){var n="";r=Math.min(e.length,r);for(var s=t;s<r;++s)n+=String.fromCharCode(e[s]&127);return n}function wr(e,t,r){var n="";r=Math.min(e.length,r);for(var s=t;s<r;++s)n+=String.fromCharCode(e[s]);return n}function vr(e,t,r){var n=e.length;(!t||t<0)&&(t=0),(!r||r<0||r>n)&&(r=n);for(var s="",f=t;f<r;++f)s+=Sr[e[f]];return s}function br(e,t,r){for(var n=e.slice(t,r),s="",f=0;f<n.length-1;f+=2)s+=String.fromCharCode(n[f]+n[f+1]*256);return s}o.prototype.slice=function(t,r){var n=this.length;t=~~t,r=r===void 0?n:~~r,t<0?(t+=n,t<0&&(t=0)):t>n&&(t=n),r<0?(r+=n,r<0&&(r=0)):r>n&&(r=n),r<t&&(r=t);var s=this.subarray(t,r);return Object.setPrototypeOf(s,o.prototype),s};function A(e,t,r){if(e%1!==0||e<0)throw new RangeError("offset is not uint");if(e+t>r)throw new RangeError("Trying to access beyond buffer length")}o.prototype.readUintLE=o.prototype.readUIntLE=function(t,r,n){t=t>>>0,r=r>>>0,n||A(t,r,this.length);for(var s=this[t],f=1,m=0;++m<r&&(f*=256);)s+=this[t+m]*f;return s},o.prototype.readUintBE=o.prototype.readUIntBE=function(t,r,n){t=t>>>0,r=r>>>0,n||A(t,r,this.length);for(var s=this[t+--r],f=1;r>0&&(f*=256);)s+=this[t+--r]*f;return s},o.prototype.readUint8=o.prototype.readUInt8=function(t,r){return t=t>>>0,r||A(t,1,this.length),this[t]},o.prototype.readUint16LE=o.prototype.readUInt16LE=function(t,r){return t=t>>>0,r||A(t,2,this.length),this[t]|this[t+1]<<8},o.prototype.readUint16BE=o.prototype.readUInt16BE=function(t,r){return t=t>>>0,r||A(t,2,this.length),this[t]<<8|this[t+1]},o.prototype.readUint32LE=o.prototype.readUInt32LE=function(t,r){return t=t>>>0,r||A(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+this[t+3]*16777216},o.prototype.readUint32BE=o.prototype.readUInt32BE=function(t,r){return t=t>>>0,r||A(t,4,this.length),this[t]*16777216+(this[t+1]<<16|this[t+2]<<8|this[t+3])},o.prototype.readIntLE=function(t,r,n){t=t>>>0,r=r>>>0,n||A(t,r,this.length);for(var s=this[t],f=1,m=0;++m<r&&(f*=256);)s+=this[t+m]*f;return f*=128,s>=f&&(s-=Math.pow(2,8*r)),s},o.prototype.readIntBE=function(t,r,n){t=t>>>0,r=r>>>0,n||A(t,r,this.length);for(var s=r,f=1,m=this[t+--s];s>0&&(f*=256);)m+=this[t+--s]*f;return f*=128,m>=f&&(m-=Math.pow(2,8*r)),m},o.prototype.readInt8=function(t,r){return t=t>>>0,r||A(t,1,this.length),this[t]&128?(255-this[t]+1)*-1:this[t]},o.prototype.readInt16LE=function(t,r){t=t>>>0,r||A(t,2,this.length);var n=this[t]|this[t+1]<<8;return n&32768?n|4294901760:n},o.prototype.readInt16BE=function(t,r){t=t>>>0,r||A(t,2,this.length);var n=this[t+1]|this[t]<<8;return n&32768?n|4294901760:n},o.prototype.readInt32LE=function(t,r){return t=t>>>0,r||A(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},o.prototype.readInt32BE=function(t,r){return t=t>>>0,r||A(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},o.prototype.readFloatLE=function(t,r){return t=t>>>0,r||A(t,4,this.length),p.read(this,t,!0,23,4)},o.prototype.readFloatBE=function(t,r){return t=t>>>0,r||A(t,4,this.length),p.read(this,t,!1,23,4)},o.prototype.readDoubleLE=function(t,r){return t=t>>>0,r||A(t,8,this.length),p.read(this,t,!0,52,8)},o.prototype.readDoubleBE=function(t,r){return t=t>>>0,r||A(t,8,this.length),p.read(this,t,!1,52,8)};function B(e,t,r,n,s,f){if(!o.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>s||t<f)throw new RangeError('"value" argument is out of bounds');if(r+n>e.length)throw new RangeError("Index out of range")}o.prototype.writeUintLE=o.prototype.writeUIntLE=function(t,r,n,s){if(t=+t,r=r>>>0,n=n>>>0,!s){var f=Math.pow(2,8*n)-1;B(this,t,r,n,f,0)}var m=1,y=0;for(this[r]=t&255;++y<n&&(m*=256);)this[r+y]=t/m&255;return r+n},o.prototype.writeUintBE=o.prototype.writeUIntBE=function(t,r,n,s){if(t=+t,r=r>>>0,n=n>>>0,!s){var f=Math.pow(2,8*n)-1;B(this,t,r,n,f,0)}var m=n-1,y=1;for(this[r+m]=t&255;--m>=0&&(y*=256);)this[r+m]=t/y&255;return r+n},o.prototype.writeUint8=o.prototype.writeUInt8=function(t,r,n){return t=+t,r=r>>>0,n||B(this,t,r,1,255,0),this[r]=t&255,r+1},o.prototype.writeUint16LE=o.prototype.writeUInt16LE=function(t,r,n){return t=+t,r=r>>>0,n||B(this,t,r,2,65535,0),this[r]=t&255,this[r+1]=t>>>8,r+2},o.prototype.writeUint16BE=o.prototype.writeUInt16BE=function(t,r,n){return t=+t,r=r>>>0,n||B(this,t,r,2,65535,0),this[r]=t>>>8,this[r+1]=t&255,r+2},o.prototype.writeUint32LE=o.prototype.writeUInt32LE=function(t,r,n){return t=+t,r=r>>>0,n||B(this,t,r,4,4294967295,0),this[r+3]=t>>>24,this[r+2]=t>>>16,this[r+1]=t>>>8,this[r]=t&255,r+4},o.prototype.writeUint32BE=o.prototype.writeUInt32BE=function(t,r,n){return t=+t,r=r>>>0,n||B(this,t,r,4,4294967295,0),this[r]=t>>>24,this[r+1]=t>>>16,this[r+2]=t>>>8,this[r+3]=t&255,r+4},o.prototype.writeIntLE=function(t,r,n,s){if(t=+t,r=r>>>0,!s){var f=Math.pow(2,8*n-1);B(this,t,r,n,f-1,-f)}var m=0,y=1,v=0;for(this[r]=t&255;++m<n&&(y*=256);)t<0&&v===0&&this[r+m-1]!==0&&(v=1),this[r+m]=(t/y>>0)-v&255;return r+n},o.prototype.writeIntBE=function(t,r,n,s){if(t=+t,r=r>>>0,!s){var f=Math.pow(2,8*n-1);B(this,t,r,n,f-1,-f)}var m=n-1,y=1,v=0;for(this[r+m]=t&255;--m>=0&&(y*=256);)t<0&&v===0&&this[r+m+1]!==0&&(v=1),this[r+m]=(t/y>>0)-v&255;return r+n},o.prototype.writeInt8=function(t,r,n){return t=+t,r=r>>>0,n||B(this,t,r,1,127,-128),t<0&&(t=255+t+1),this[r]=t&255,r+1},o.prototype.writeInt16LE=function(t,r,n){return t=+t,r=r>>>0,n||B(this,t,r,2,32767,-32768),this[r]=t&255,this[r+1]=t>>>8,r+2},o.prototype.writeInt16BE=function(t,r,n){return t=+t,r=r>>>0,n||B(this,t,r,2,32767,-32768),this[r]=t>>>8,this[r+1]=t&255,r+2},o.prototype.writeInt32LE=function(t,r,n){return t=+t,r=r>>>0,n||B(this,t,r,4,2147483647,-2147483648),this[r]=t&255,this[r+1]=t>>>8,this[r+2]=t>>>16,this[r+3]=t>>>24,r+4},o.prototype.writeInt32BE=function(t,r,n){return t=+t,r=r>>>0,n||B(this,t,r,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[r]=t>>>24,this[r+1]=t>>>16,this[r+2]=t>>>8,this[r+3]=t&255,r+4};function Et(e,t,r,n,s,f){if(r+n>e.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function Ft(e,t,r,n,s){return t=+t,r=r>>>0,s||Et(e,t,r,4),p.write(e,t,r,n,23,4),r+4}o.prototype.writeFloatLE=function(t,r,n){return Ft(this,t,r,!0,n)},o.prototype.writeFloatBE=function(t,r,n){return Ft(this,t,r,!1,n)};function _t(e,t,r,n,s){return t=+t,r=r>>>0,s||Et(e,t,r,8),p.write(e,t,r,n,52,8),r+8}o.prototype.writeDoubleLE=function(t,r,n){return _t(this,t,r,!0,n)},o.prototype.writeDoubleBE=function(t,r,n){return _t(this,t,r,!1,n)},o.prototype.copy=function(t,r,n,s){if(!o.isBuffer(t))throw new TypeError("argument should be a Buffer");if(n||(n=0),!s&&s!==0&&(s=this.length),r>=t.length&&(r=t.length),r||(r=0),s>0&&s<n&&(s=n),s===n||t.length===0||this.length===0)return 0;if(r<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("Index out of range");if(s<0)throw new RangeError("sourceEnd out of bounds");s>this.length&&(s=this.length),t.length-r<s-n&&(s=t.length-r+n);var f=s-n;return this===t&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(r,n,s):Uint8Array.prototype.set.call(t,this.subarray(n,s),r),f},o.prototype.fill=function(t,r,n,s){if(typeof t=="string"){if(typeof r=="string"?(s=r,r=0,n=this.length):typeof n=="string"&&(s=n,n=this.length),s!==void 0&&typeof s!="string")throw new TypeError("encoding must be a string");if(typeof s=="string"&&!o.isEncoding(s))throw new TypeError("Unknown encoding: "+s);if(t.length===1){var f=t.charCodeAt(0);(s==="utf8"&&f<128||s==="latin1")&&(t=f)}}else typeof t=="number"?t=t&255:typeof t=="boolean"&&(t=Number(t));if(r<0||this.length<r||this.length<n)throw new RangeError("Out of range index");if(n<=r)return this;r=r>>>0,n=n===void 0?this.length:n>>>0,t||(t=0);var m;if(typeof t=="number")for(m=r;m<n;++m)this[m]=t;else{var y=o.isBuffer(t)?t:o.from(t,s),v=y.length;if(v===0)throw new TypeError('The value "'+t+'" is invalid for argument "value"');for(m=0;m<n-r;++m)this[m+r]=y[m%v]}return this};var Er=/[^+/0-9A-Za-z-_]/g;function Fr(e){if(e=e.split("=")[0],e=e.trim().replace(Er,""),e.length<2)return"";for(;e.length%4!==0;)e=e+"=";return e}function V(e,t){t=t||1/0;for(var r,n=e.length,s=null,f=[],m=0;m<n;++m){if(r=e.charCodeAt(m),r>55295&&r<57344){if(!s){if(r>56319){(t-=3)>-1&&f.push(239,191,189);continue}else if(m+1===n){(t-=3)>-1&&f.push(239,191,189);continue}s=r;continue}if(r<56320){(t-=3)>-1&&f.push(239,191,189),s=r;continue}r=(s-55296<<10|r-56320)+65536}else s&&(t-=3)>-1&&f.push(239,191,189);if(s=null,r<128){if((t-=1)<0)break;f.push(r)}else if(r<2048){if((t-=2)<0)break;f.push(r>>6|192,r&63|128)}else if(r<65536){if((t-=3)<0)break;f.push(r>>12|224,r>>6&63|128,r&63|128)}else if(r<1114112){if((t-=4)<0)break;f.push(r>>18|240,r>>12&63|128,r>>6&63|128,r&63|128)}else throw new Error("Invalid code point")}return f}function _r(e){for(var t=[],r=0;r<e.length;++r)t.push(e.charCodeAt(r)&255);return t}function Ar(e,t){for(var r,n,s,f=[],m=0;m<e.length&&!((t-=2)<0);++m)r=e.charCodeAt(m),n=r>>8,s=r%256,f.push(s),f.push(n);return f}function At(e){return a.toByteArray(Fr(e))}function P(e,t,r,n){for(var s=0;s<n&&!(s+r>=t.length||s>=e.length);++s)t[s+r]=e[s];return s}function U(e,t){return e instanceof t||e!=null&&e.constructor!=null&&e.constructor.name!=null&&e.constructor.name===t.name}function Q(e){return e!==e}var Sr=function(){for(var e="0123456789abcdef",t=new Array(256),r=0;r<16;++r)for(var n=r*16,s=0;s<16;++s)t[n+s]=e[r]+e[s];return t}()})(Wt);/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */(function(i,a){var p=Wt,l=p.Buffer;function c(u,o){for(var x in u)o[x]=u[x]}l.from&&l.alloc&&l.allocUnsafe&&l.allocUnsafeSlow?i.exports=p:(c(p,a),a.Buffer=h);function h(u,o,x){return l(u,o,x)}h.prototype=Object.create(l.prototype),c(l,h),h.from=function(u,o,x){if(typeof u=="number")throw new TypeError("Argument must not be a number");return l(u,o,x)},h.alloc=function(u,o,x){if(typeof u!="number")throw new TypeError("Argument must be a number");var d=l(u);return o!==void 0?typeof x=="string"?d.fill(o,x):d.fill(o):d.fill(0),d},h.allocUnsafe=function(u){if(typeof u!="number")throw new TypeError("Argument must be a number");return l(u)},h.allocUnsafeSlow=function(u){if(typeof u!="number")throw new TypeError("Argument must be a number");return p.SlowBuffer(u)}})(et,et.exports);var Zt=et.exports,Kt=Zt.Buffer;function Y(i,a){this._block=Kt.alloc(i),this._finalSize=a,this._blockSize=i,this._len=0}Y.prototype.update=function(i,a){typeof i=="string"&&(a=a||"utf8",i=Kt.from(i,a));for(var p=this._block,l=this._blockSize,c=i.length,h=this._len,u=0;u<c;){for(var o=h%l,x=Math.min(c-u,l-o),d=0;d<x;d++)p[o+d]=i[u+d];h+=x,u+=x,h%l===0&&this._update(p)}return this._len+=c,this};Y.prototype.digest=function(i){var a=this._len%this._blockSize;this._block[a]=128,this._block.fill(0,a+1),a>=this._finalSize&&(this._update(this._block),this._block.fill(0));var p=this._len*8;if(p<=4294967295)this._block.writeUInt32BE(p,this._blockSize-4);else{var l=(p&4294967295)>>>0,c=(p-l)/4294967296;this._block.writeUInt32BE(c,this._blockSize-8),this._block.writeUInt32BE(l,this._blockSize-4)}this._update(this._block);var h=this._hash();return i?h.toString(i):h};Y.prototype._update=function(){throw new Error("_update must be implemented by subclass")};var re=Y,ee=Hr,Yt=re,ie=Zt.Buffer,ne=[1518500249,1859775393,-1894007588,-899497514],ae=new Array(80);function J(){this.init(),this._w=ae,Yt.call(this,64,56)}ee(J,Yt);J.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this};function oe(i){return i<<1|i>>>31}function pe(i){return i<<5|i>>>27}function se(i){return i<<30|i>>>2}function le(i,a,p,l){return i===0?a&p|~a&l:i===2?a&p|a&l|p&l:a^p^l}J.prototype._update=function(i){for(var a=this._w,p=this._a|0,l=this._b|0,c=this._c|0,h=this._d|0,u=this._e|0,o=0;o<16;++o)a[o]=i.readInt32BE(o*4);for(;o<80;++o)a[o]=oe(a[o-3]^a[o-8]^a[o-14]^a[o-16]);for(var x=0;x<80;++x){var d=~~(x/20),w=pe(p)+le(d,l,c,h)+u+a[x]+ne[d]|0;u=h,h=c,c=se(l),l=p,p=w}this._a=p+this._a|0,this._b=l+this._b|0,this._c=c+this._c|0,this._d=h+this._d|0,this._e=u+this._e|0};J.prototype._hash=function(){var i=ie.allocUnsafe(20);return i.writeInt32BE(this._a|0,0),i.writeInt32BE(this._b|0,4),i.writeInt32BE(this._c|0,8),i.writeInt32BE(this._d|0,12),i.writeInt32BE(this._e|0,16),i};var ce=J;const ue=Pt(ce),ut=new Error("File system not available.");function fe(i,a,p){throw ut}function Xt(i){throw ut}function he(i){throw ut}const me=async i=>Xt();function xe(i){let a="";for(let p=0;p<i.length;p+=2)a+=String.fromCharCode(parseInt(i.substr(p,2),16));return btoa(a)}const X=(i,a="sha1")=>{if(a!=="sha1")throw new Error("Only sha1 algorithm is available.");const p=new ue;return xe(p.update(i).digest("hex"))},ft=async i=>{const a=new jt,{name:p,revision:l,documentType:c,created:h,lastModified:u}=i,o={name:p,revision:l,documentType:c,created:h,lastModified:u};return a.file("header.json",JSON.stringify(o,null,2)),a.file("state.json",JSON.stringify(i.initialState||{},null,2)),a.file("operations.json",JSON.stringify(i.operations,null,2)),Object.keys(i.attachments).forEach(d=>{const{data:w,...b}=i.attachments[d];a.file(d,w,{base64:!0,createFolders:!0,comment:JSON.stringify(b)})}),a},Gt=async(i,a,p,l)=>{await(await ft(i)).generateAsync({type:"uint8array",streamFiles:!0});const h=l??i.name,u=`.${p}.zip`;return fe(a,h.endsWith(u)?h:`${h}${u}`)},ge=async(i,a)=>{const l=await(await ft(i)).generateAsync({type:"blob"}),c=await a.createWritable();await c.write(l),await c.close()},it=async(i,a)=>{const p=Xt();return Vt(p,a)},Vt=async(i,a)=>{const p=new jt;return await p.loadAsync(i),de(p,a)};async function de(i,a){const p=i.file("state.json");if(!p)throw new Error("Initial state not found");const l=await p.async("string"),c=JSON.parse(l),h=i.file("header.json");let u;h&&(u=JSON.parse(await h.async("string")));const o=i.file("operations.json");if(!o)throw new Error("Operations history not found");const x=JSON.parse(await o.async("string"));let d=xt(c,x,a,void 0,u);return u&&(d={...d,...u}),d}function Qt(i){const a=i.replace(/^.*\./,"")||void 0,p=i.replace(/^.*[/\\]/,"")||void 0;return{extension:a,fileName:p}}async function ye(i){const{buffer:a,mimeType:p="application/octet-stream"}=await he(),l=Qt(i),c=a.toString("base64");return{data:c,hash:X(c),mimeType:p,...l}}async function we(i){const a=await me(),p=Wr.getType(i)||"application/octet-stream",l=Qt(i),c=a.toString("base64");return{data:c,hash:X(c),mimeType:p,...l}}function ve(i,a){return[L,q,$].includes(a.type)?i.revision:i.revision+1}function be(i,a){return{...i,revision:ve(i,a),lastModified:new Date().toISOString()}}function Ee(i,a){if([L,q,$].includes(a.type))return i;const p=i.operations.global.slice(0,i.revision),l=a.scope||"global",c=l==="global"?p:i.operations[l];return c.push({...a,index:c.length,timestamp:new Date().toISOString(),hash:"",scope:l}),{...i,operations:{...i.operations,[l]:c}}}function Fe(i,a){let p=Ee(i,a);return(!a.scope||a.scope==="global")&&(p=be(p,a)),p}function _e(i,a,p){switch(Ot().parse(a),a.type){case $t:return Nr(i,a.input);case L:return Mr(i,a.input,p);case q:return Rr(i,a.input,p);case $:return Cr(i,a.input.start,a.input.end,p);case Jt:return Lr(i,a.input.state);default:return i}}function ht(i,a,p,l){let c=i;return nt(a)&&(c=_e(c,a,p)),c=Fe(c,a),c=R.produce(c,h=>{const u=p(h.state,a,l);if(u)return R.castDraft({...c,state:u})}),R.produce(c,h=>{if([L,q,$].includes(a.type))return h;const u=a.scope||"global";h.operations[u][h.operations[u].length-1].hash=mt(h,u),!nt(a)&&a.attachments&&a.attachments.forEach(o=>{const{hash:x,...d}=o;h.attachments[x]={...d}})})}function nt(i){return[$t,L,q,$,Jt].includes(i.type)}function O(i,a,p,l,c="global"){if(!i)throw new Error("Empty action type");if(typeof i!="string")throw new Error(`Invalid action type: ${i}`);const h={type:i,input:a,scope:c};p&&(h.attachments=p);try{l==null||l().parse(h.input)}catch(u){throw new Error(`Invalid action input: ${u}`)}return h}function tr(i,a=ht){return(p,l,c)=>a(p,l,i,c)}const rr=(i,a)=>({name:"",documentType:"",revision:0,created:new Date().toISOString(),lastModified:new Date().toISOString(),attachments:{},...i,state:(a==null?void 0:a(i==null?void 0:i.state))??(i==null?void 0:i.state)??{global:{},local:{}}}),er=(i,a)=>{const p=rr(i,a);return{...p,initialState:p,operations:{global:[],local:[]}}},mt=(i,a="global")=>X(Ir(i.state[a])),Ae=(i,a=1e3)=>{const p=Math.random()*a;return X(`${(i??new Date).toISOString()}${p}`)};function M(i){return R.castImmutable(R.freeze(i,!0))}function ir(i){return Object.values(i).flatMap(a=>a).sort((a,p)=>new Date(a.timestamp).getTime()-new Date(p.timestamp).getTime())}function C(i,a,p,l,c,h=ht){const u=tr(p,h);return xt(i,a,u,l,c)}function xt(i,a,p,l,c){const h=er(i),u={...a,global:a.global.slice(0,c==null?void 0:c.revision)},o=ir(u).reduce((d,w)=>p(d,w,l),h),x=Object.keys(o.operations).reduce((d,w)=>{const b=w,j=b==="global"&&c&&c.revision<a.global.length?a.global.slice(c==null?void 0:c.revision):[];return{...d,[b]:[...o.operations[b].map((_,z)=>({..._,timestamp:a[b][z].timestamp})),...j]}},{global:[],local:[]});return{...o,operations:x}}const nr=i=>O("SET_NAME",i,void 0,st),ar=(i=1)=>O("UNDO",i,void 0,lt),or=(i=1)=>O("REDO",i,void 0,pt),pr=(i,a)=>O("PRUNE",{start:i,end:a},void 0,ot),gt=(i,a)=>O("LOAD_STATE",{state:i,operations:a},void 0,at),Se=Object.freeze(Object.defineProperty({__proto__:null,loadState:gt,prune:pr,redo:or,setName:nr,undo:ar},Symbol.toStringTag,{value:"Module"}));class Be{constructor(a,p,l){H(this,"_document");H(this,"_reducer");H(this,"_signalDispatch");this._reducer=a,this._document=p,this._signalDispatch=l}dispatch(a){return this._document=this._reducer(this._document,a,this._signalDispatch),this}saveToFile(a,p,l){return Gt(this._document,a,p,l)}async loadFromFile(a){this._document=await it(a,this._reducer)}static async stateFromFile(a,p){return await it(a,p)}get state(){return M(this._document.state)}get operations(){return M(this._document.operations)}get name(){return this._document.name}get documentType(){return this._document.documentType}get created(){return this._document.created}get lastModified(){return this._document.lastModified}get revision(){return this._document.revision}get initialState(){return M(this._document.initialState)}toDocument(){return M(this._document)}getAttachment(a){return this._document.attachments[a]}setName(a){return this.dispatch(nr(a)),this}undo(a){return this.dispatch(ar(a)),this}redo(a){return this.dispatch(or(a)),this}prune(a,p){return this.dispatch(pr(a,p)),this}loadState(a,p){return this.dispatch(gt(a,p)),this}}function je(i,a){a.forEach(p=>{Object.getOwnPropertyNames(p.prototype).forEach(l=>{Object.defineProperty(i.prototype,l,Object.getOwnPropertyDescriptor(p.prototype,l)||Object.create(null))})})}exports.BaseActions=Se;exports.BaseDocument=Be;exports.applyMixins=je;exports.baseReducer=ht;exports.createAction=O;exports.createDocument=er;exports.createExtendedState=rr;exports.createReducer=tr;exports.createZip=ft;exports.getLocalFile=we;exports.getRemoteFile=ye;exports.hashDocument=mt;exports.hashKey=Ae;exports.isBaseAction=nt;exports.loadFromFile=it;exports.loadFromInput=Vt;exports.readOnly=M;exports.replayDocument=xt;exports.replayOperations=C;exports.saveToFile=Gt;exports.saveToFileHandle=ge;exports.sortOperations=ir;exports.zod=Or;