@univerjs-pro/collaboration-client 0.5.0-alpha.0 → 0.5.0-beta.0
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/lib/cjs/index.js +1 -1
- package/lib/cjs/locale/en-US.js +1 -1
- package/lib/cjs/locale/fa-IR.js +1 -1
- package/lib/cjs/locale/ru-RU.js +1 -1
- package/lib/cjs/locale/vi-VN.js +1 -1
- package/lib/cjs/locale/zh-CN.js +1 -1
- package/lib/cjs/locale/zh-TW.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/es/locale/en-US.js +1 -1
- package/lib/es/locale/fa-IR.js +1 -1
- package/lib/es/locale/ru-RU.js +1 -1
- package/lib/es/locale/vi-VN.js +1 -1
- package/lib/es/locale/zh-CN.js +1 -1
- package/lib/es/locale/zh-TW.js +1 -1
- package/lib/types/config/config.d.ts +49 -0
- package/lib/types/controllers/collab-cursor/__tests__/doc-collab-cursor.controller.spec.d.ts +23 -0
- package/lib/types/controllers/collab-cursor/__tests__/serialize-text-ranges.spec.d.ts +1 -0
- package/lib/types/controllers/collab-cursor/__tests__/sheet-collab-cursor.controller.spec.d.ts +1 -0
- package/lib/types/controllers/collab-cursor/collab-cursor.controller.d.ts +22 -0
- package/lib/types/controllers/collab-cursor/doc-collab-cursor-entity.d.ts +38 -0
- package/lib/types/controllers/collab-cursor/doc-collab-cursor-render.controller.d.ts +24 -0
- package/lib/types/controllers/collab-cursor/serialize-text-ranges.d.ts +3 -0
- package/lib/types/controllers/collab-cursor/sheet-collab-cursor-entity.d.ts +39 -0
- package/lib/types/controllers/collab-cursor/sheet-collab-cursor-render.controller.d.ts +21 -0
- package/lib/types/controllers/collab-status/collab-status.controller.d.ts +18 -0
- package/lib/types/controllers/collaboration/__tests__/collaboration.controller.spec.d.ts +4 -0
- package/lib/types/controllers/collaboration/__tests__/mock-text-selection-render-manager.service.d.ts +0 -0
- package/lib/types/controllers/collaboration/__tests__/mocks.d.ts +58 -0
- package/lib/types/controllers/collaboration/collaboration-entity.d.ts +91 -0
- package/lib/types/controllers/collaboration/collaboration-state.d.ts +303 -0
- package/lib/types/controllers/collaboration/collaboration.controller.d.ts +24 -0
- package/lib/types/controllers/collaboration/utils/changeset-utils.d.ts +18 -0
- package/lib/types/controllers/collaboration/utils/empty.d.ts +2 -0
- package/lib/types/controllers/config.schema.d.ts +33 -0
- package/lib/types/controllers/data-loader/__tests__/data-loader.controller.spec.d.ts +1 -0
- package/lib/types/controllers/data-loader/data-loader.controller.d.ts +22 -0
- package/lib/types/controllers/file-name/file-name.controller.d.ts +12 -0
- package/lib/types/controllers/telemetry.d.ts +11 -0
- package/lib/types/index.d.ts +35 -890
- package/lib/types/locale/en-US.d.ts +3 -0
- package/lib/types/locale/fa-IR.d.ts +3 -0
- package/lib/types/locale/ru-RU.d.ts +3 -0
- package/lib/types/locale/vi-VN.d.ts +3 -0
- package/lib/types/locale/zh-CN.d.ts +39 -0
- package/lib/types/locale/zh-TW.d.ts +3 -0
- package/lib/types/models/cursor.d.ts +30 -0
- package/lib/types/plugin.d.ts +18 -0
- package/lib/types/services/auth-server/auth-server.service.d.ts +10 -0
- package/lib/types/services/auth-server/authz-io-http.service.d.ts +30 -0
- package/lib/types/services/auth-server/domain-request.service.d.ts +6 -0
- package/lib/types/services/auth-server/util.d.ts +1 -0
- package/lib/types/services/collaboration-session/collaboration-session.d.ts +59 -0
- package/lib/types/services/collaboration-session/collaboration-session.service.d.ts +75 -0
- package/lib/types/services/color-assign/color-assign.service.d.ts +10 -0
- package/lib/types/services/comment/comment.service.d.ts +6 -0
- package/lib/types/services/image-remote/image-io.service.d.ts +34 -0
- package/lib/types/services/ime-cache-transform/doc-transform-ime-cache.service.d.ts +13 -0
- package/lib/types/services/local-cache/local-cache.service.d.ts +37 -0
- package/lib/types/services/member/member.service.d.ts +77 -0
- package/lib/types/services/permission/permission.service.d.ts +12 -0
- package/lib/types/services/range-selection/sheet-transform-selections.service.d.ts +13 -0
- package/lib/types/services/single-active-unit/single-active-unit.service.d.ts +39 -0
- package/lib/types/services/snapshot-server/snapshot-server.service.d.ts +21 -0
- package/lib/types/services/socket/collaboration-socket.service.d.ts +34 -0
- package/lib/types/services/socket/serialize.d.ts +3 -0
- package/lib/types/services/state-cache-transform/doc-transform-state-cache.service.d.ts +12 -0
- package/lib/types/services/sync-editing-collab-cursor/doc-sync-editing-collab-cursor.service.d.ts +13 -0
- package/lib/types/services/text-selection/doc-transform-selections.service.d.ts +8 -0
- package/lib/types/services/undoredo/collaborative-undoredo.service.d.ts +19 -0
- package/lib/types/services/url/url.service.d.ts +12 -0
- package/lib/types/services/url/web-url.service.d.ts +10 -0
- package/lib/types/views/components/CollabStatus.d.ts +10 -0
- package/lib/types/views/components/CollabStatus.stories.d.ts +8 -0
- package/lib/types/views/shapes/doc-collab-cursor.d.ts +27 -0
- package/lib/types/views/shapes/sheet-collab-cursor.shape.d.ts +27 -0
- package/lib/types/views/shapes/text-bubble.shape.d.ts +19 -0
- package/lib/umd/index.js +1 -1
- package/lib/umd/locale/en-US.js +1 -1
- package/lib/umd/locale/fa-IR.js +1 -1
- package/lib/umd/locale/ru-RU.js +1 -1
- package/lib/umd/locale/vi-VN.js +1 -1
- package/lib/umd/locale/zh-CN.js +1 -1
- package/lib/umd/locale/zh-TW.js +1 -1
- package/package.json +23 -24
package/lib/es/index.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
const _0x5bb7a4=_0x4081;(function(_0x24ad8d,_0xcf6b8){const _0xba6a5a=_0x4081,_0x4b30d0=_0x24ad8d();while(!![]){try{const _0x57ba32=-parseInt(_0xba6a5a(0x20e))/0x1*(-parseInt(_0xba6a5a(0x548))/0x2)+parseInt(_0xba6a5a(0x1c6))/0x3*(-parseInt(_0xba6a5a(0x207))/0x4)+parseInt(_0xba6a5a(0x190))/0x5*(-parseInt(_0xba6a5a(0x2d3))/0x6)+-parseInt(_0xba6a5a(0x483))/0x7+parseInt(_0xba6a5a(0x1db))/0x8+parseInt(_0xba6a5a(0x1fe))/0x9*(parseInt(_0xba6a5a(0x2d1))/0xa)+parseInt(_0xba6a5a(0x459))/0xb*(parseInt(_0xba6a5a(0x412))/0xc);if(_0x57ba32===_0xcf6b8)break;else _0x4b30d0['push'](_0x4b30d0['shift']());}catch(_0x1fc0c4){_0x4b30d0['push'](_0x4b30d0['shift']());}}}(_0x27da,0x99a97));var qi=Object['defineProperty'],Xi=(_0x192793,_0x3e93ca,_0x225043)=>_0x3e93ca in _0x192793?qi(_0x192793,_0x3e93ca,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x225043}):_0x192793[_0x3e93ca]=_0x225043,g=(_0x2e7815,_0x4ea96c,_0x124536)=>Xi(_0x2e7815,typeof _0x4ea96c!=_0x5bb7a4(0x477)?_0x4ea96c+'':_0x4ea96c,_0x124536);import{createIdentifier as _0x5ce9a5,Inject as _0x22a3e1,Disposable as _0x1caa36,DisposableCollection as _0x4e3306,toDisposable as _0x7884da,IConfigService as _0x2bb536,ILogService as _0x3efec9,UserManagerService as _0x28e0a3,UniverInstanceType as _0x10a997,IUniverInstanceService as _0x2e0534,LocaleService as _0x1fdc1b,Optional as _0x4f55bd,RxDisposable as _0x177a9e,Injector as _0x4c5160,Tools as _0x41d014,ILocalStorageService as _0x21f678,Rectangle as _0x49e4db,ICommandService as _0x1e58f0,DOC_RANGE_TYPE as _0x569c02,JSONX as _0x22592d,CommandType as _0x5bf26c,IPermissionService as _0x59e41b,IUndoRedoService as _0x131129,sequenceExecute as _0x9b12cf,debounce as _0x47386f,COLORS as _0x593100,ColorKit as _0x589dec,ThemeService as _0x58be32,fromEventSubject as _0x3a7a27,useDependency as _0xe664fe,connectInjector as _0x3048e7,Workbook as _0x31b79d,isInternalEditorID as _0x503b7a,LocalUndoRedoService as _0x26edca,IContextService as _0x6af9eb,DependentOn as _0x5008eb,Plugin as _0x1a3f69,touchDependencies as _0x3fa01f,IAuthzIoService as _0x2eb585,registerDependencies as _0x60d00f,mergeOverrideWithDependencies as _0x2c766a}from'@univerjs/core';import{Subject as _0x1b179a,merge as _0x4e4735,takeUntil as _0x52fa59,BehaviorSubject as _0x348a88,distinctUntilChanged as _0x2abb77,fromEvent as _0x565a18,ReplaySubject as _0x5c726e,take as _0x35f71d,map as _0x5809a7,shareReplay as _0x3f1879,of as _0x52cb6f,debounceTime as _0x12cfe4,filter as _0x3cb187,switchMap as _0x1e3e59,combineLatest as _0x4753e6,concatMap as _0x2d7fb7,mapTo as _0x287b5c}from'rxjs';import{map as _0x17141f,take as _0x4b07d5,filter as _0x5a0a20,delay as _0x1ce989,throttleTime as _0x3fef40,takeUntil as _0x216286,switchMap as _0x58ad60}from'rxjs/operators';import{MessageType as _0x3417d7,Tooltip as _0x4f930e}from'@univerjs/design';import{IBeforeCloseService as _0x3e0747,IMessageService as _0x38087f,INotificationService as _0x387815,useObservable as _0x3b686f,BuiltInUIPart as _0x5b1713,IUIPartsService as _0x2cb103}from'@univerjs/ui';import{HTTPService as _0x41156a,WebSocketService as _0x1275f8,MergeInterceptorFactory as _0xc40197,HTTPRequest as _0x3b9e80,UniverNetworkPlugin as _0x2fc5f3,ThresholdInterceptorFactory as _0x15339e}from'@univerjs/network';import{CollaborationEvent as _0x45d469,parseChangesetToProtocol as _0x2f96b4,ISnapshotServerService as _0x5bc59d,isTransformMutationFailure as _0x35b5b8,isTransformMutationsWithChangesetSuccess as _0x5f43ea,ITransformService as _0x2db4c4,RevisionService as _0x25150b,mapDocumentTypeToUniverType as _0x32a7fd,isTransformChangesetsSuccess as _0x3e05e4,CompressMutationService as _0x4b6791,parseProtocolChangeset as _0x34525f,SnapshotService as _0x2b1acd,textEncoder as _0x1a843b,b64DecodeUnicode as _0x286b30,isTransformMutationsWithChangesetFailure as _0x2a2494,UniverCollaborationPlugin as _0x1956e2}from'@univerjs-pro/collaboration';import{ITelemetryService as _0x1b6586}from'@univerjs/telemetry';import{DocIMEInputManagerService as _0x4a315f,DocStateChangeManagerService as _0x1b1fa1,NodePositionConvertToCursor as _0x1e2d34,NodePositionConvertToRectRange as _0x2b0059,TEXT_RANGE_LAYER_INDEX as _0x417fa9,SetDocZoomRatioOperation as _0x595dd4}from'@univerjs/docs-ui';import{SheetsSelectionsService as _0x11487d,SetSelectionsOperation as _0x544c74,InsertSheetMutation as _0x2dfe93,EmptyMutation as _0x224c7f,WorkbookEditablePermission as _0x272dbd,RefRangeService as _0x180f23,EffectRefRangId as _0x34bde3,handleIRemoveRow as _0x399794,handleIRemoveCol as _0x74bb6c,handleMoveRange as _0x20726c,handleInsertRow as _0x5120ad,handleInsertRangeMoveRight as _0x3995ec,handleInsertRangeMoveDown as _0x595791,handleInsertCol as _0x490fbf,handleDeleteRangeMoveUp as _0xc12035,handleDeleteRangeMoveLeft as _0xd913ed,runRefRangeMutations as _0x4ea810,SetWorksheetActivateCommand as _0x3d9171}from'@univerjs/sheets';import{IRenderManagerService as _0x31d8f9,Shape as _0x4b8d3f,Rect as _0x4214fc,getColor as _0x140980,RegularPolygon as _0x18606b,TRANSFORM_CHANGE_OBSERVABLE_TYPE as _0x2c9396,Vector2 as _0x3af8ad}from'@univerjs/engine-render';import{DocSelectionManagerService as _0x4ce6e6,RichTextEditingMutation as _0x185e84,SetTextSelectionsOperation as _0x10288c,DocSkeletonManagerService as _0x386ab1}from'@univerjs/docs';import{ImageSourceType as _0x40ad48,ImageUploadStatusType as _0x1d459e,IImageIoService as _0x23cc94}from'@univerjs/drawing';import{deserializeRangeWithSheet as _0x231961,serializeRangeWithSheet as _0x5cd454}from'@univerjs/engine-formula';import{SheetSkeletonManagerService as _0x328715,VIEWPORT_KEY as _0x4bafe5,getCoordByCell as _0x5a0e3d,getSheetObject as _0x1d2c70,SheetPermissionInitController as _0x496cb9}from'@univerjs/sheets-ui';import _0x3fd601,{forwardRef as _0x5ecf43,useRef as _0x37367c,createElement as _0x438628,useCallback as _0x1f3798}from'react';import{IRemoteInstanceService as _0xfc52d5}from'@univerjs/rpc';const cr=_0x5bb7a4(0x195),hr=_0x5bb7a4(0x4c5),lr=_0x5bb7a4(0x3c3),Xc=_0x5bb7a4(0x552),_r=0x7d0,ur=_0x5bb7a4(0x1dc),dr=_0x5bb7a4(0x361),fr='HEARTBEAT_INTERVAL',vr=0x7530,bi=_0x5bb7a4(0x337),Ti=0x4e20,mr=0x4e20,pr=_0x5bb7a4(0x55c),gr=0x3,Sr=_0x5bb7a4(0x451),Ir=0x3e8,Cr=_0x5bb7a4(0x255),Er='/universer-api/comb',br=_0x5bb7a4(0x372),Tr=_0x5bb7a4(0x43c);var Ri=(_0x43d28d=>(_0x43d28d[_0x43d28d[_0x5bb7a4(0x225)]=0x0]=_0x5bb7a4(0x225),_0x43d28d[_0x43d28d['OK']=0x1]='OK',_0x43d28d[_0x43d28d['INTERNAL_ERROR']=0x2]='INTERNAL_ERROR',_0x43d28d[_0x43d28d[_0x5bb7a4(0x403)]=0x3]=_0x5bb7a4(0x403),_0x43d28d[_0x43d28d[_0x5bb7a4(0x33b)]=0x4]=_0x5bb7a4(0x33b),_0x43d28d[_0x43d28d['UNAUTHENTICATED']=0x5]=_0x5bb7a4(0x2ce),_0x43d28d[_0x43d28d[_0x5bb7a4(0x3ab)]=0x6]='ALREADY_EXISTS',_0x43d28d[_0x43d28d['INVALID_ARGUMENT']=0x7]=_0x5bb7a4(0x365),_0x43d28d[_0x43d28d[_0x5bb7a4(0x554)]=0x8]=_0x5bb7a4(0x554),_0x43d28d[_0x43d28d[_0x5bb7a4(0x468)]=0x9]=_0x5bb7a4(0x468),_0x43d28d[_0x43d28d[_0x5bb7a4(0x3ae)]=0x1389]='CHANGESET_REVISION_CONFILICT',_0x43d28d[_0x43d28d[_0x5bb7a4(0x3a9)]=0x1771]=_0x5bb7a4(0x3a9),_0x43d28d[_0x43d28d['SNAPSHOT_HAS_BEEN_REMOVED']=0x1772]=_0x5bb7a4(0x1f0),_0x43d28d[_0x43d28d['ENSURE_SNAPSHOT_EXECUTION']=0x1773]='ENSURE_SNAPSHOT_EXECUTION',_0x43d28d[_0x43d28d[_0x5bb7a4(0x46a)]=0x1b59]=_0x5bb7a4(0x46a),_0x43d28d[_0x43d28d[_0x5bb7a4(0x564)]=0x1b5a]=_0x5bb7a4(0x564),_0x43d28d[_0x43d28d[_0x5bb7a4(0x4dc)]=0x1b5b]='APPLY_REVISION_CONFILICT',_0x43d28d[_0x43d28d['APPLY_PERMISSION_DENIED']=0x1b5c]=_0x5bb7a4(0x219),_0x43d28d[_0x43d28d[_0x5bb7a4(0x289)]=0x1b5d]=_0x5bb7a4(0x289),_0x43d28d[_0x43d28d[_0x5bb7a4(0x298)]=0x1f41]='CONNECTOR_DATA_TOO_LARGE',_0x43d28d[_0x43d28d['LICENSE_MAX_UNITS_EXCEEDED']=0x2329]=_0x5bb7a4(0x507),_0x43d28d[_0x43d28d[_0x5bb7a4(0x3ec)]=0x232a]=_0x5bb7a4(0x3ec),_0x43d28d[_0x43d28d[_0x5bb7a4(0x45e)]=0x232b]=_0x5bb7a4(0x45e),_0x43d28d[_0x43d28d[_0x5bb7a4(0x55f)]=0x232c]=_0x5bb7a4(0x55f),_0x43d28d[_0x43d28d[_0x5bb7a4(0x51b)]=0x232d]=_0x5bb7a4(0x51b),_0x43d28d[_0x43d28d[_0x5bb7a4(0x345)]=0x2711]=_0x5bb7a4(0x345),_0x43d28d[_0x43d28d[_0x5bb7a4(0x573)]=0x2712]=_0x5bb7a4(0x573),_0x43d28d[_0x43d28d[_0x5bb7a4(0x549)]=0x2713]=_0x5bb7a4(0x549),_0x43d28d[_0x43d28d['YUUMI_SUBSCRIPTION_NOT_FOUND']=0x2714]=_0x5bb7a4(0x4bf),_0x43d28d[_0x43d28d[_0x5bb7a4(0x31e)]=-0x1]=_0x5bb7a4(0x31e),_0x43d28d))(Ri||{}),ce=(_0xd0b78b=>(_0xd0b78b[_0xd0b78b[_0x5bb7a4(0x4ec)]=0x0]=_0x5bb7a4(0x4ec),_0xd0b78b[_0xd0b78b[_0x5bb7a4(0x172)]=0x1]=_0x5bb7a4(0x172),_0xd0b78b[_0xd0b78b['UNIVER_SHEET']=0x2]=_0x5bb7a4(0x55b),_0xd0b78b[_0xd0b78b[_0x5bb7a4(0x4b3)]=0x3]=_0x5bb7a4(0x4b3),_0xd0b78b[_0xd0b78b[_0x5bb7a4(0x4c7)]=0x4]='UNIVER_PROJECT',_0xd0b78b[_0xd0b78b['UNRECOGNIZED']=-0x1]=_0x5bb7a4(0x31e),_0xd0b78b))(ce||{}),W=(_0x1f2de3=>(_0x1f2de3[_0x1f2de3[_0x5bb7a4(0x204)]=0x0]=_0x5bb7a4(0x204),_0x1f2de3[_0x1f2de3[_0x5bb7a4(0x183)]=0x1]=_0x5bb7a4(0x183),_0x1f2de3[_0x1f2de3[_0x5bb7a4(0x542)]=0x2]=_0x5bb7a4(0x542),_0x1f2de3[_0x1f2de3[_0x5bb7a4(0x2a7)]=0x3]=_0x5bb7a4(0x2a7),_0x1f2de3[_0x1f2de3[_0x5bb7a4(0x200)]=0x4]=_0x5bb7a4(0x200),_0x1f2de3[_0x1f2de3[_0x5bb7a4(0x238)]=0x5]=_0x5bb7a4(0x238),_0x1f2de3[_0x1f2de3[_0x5bb7a4(0x297)]=0x6]=_0x5bb7a4(0x297),_0x1f2de3[_0x1f2de3[_0x5bb7a4(0x31e)]=-0x1]='UNRECOGNIZED',_0x1f2de3))(W||{}),Is=(_0x58dddf=>(_0x58dddf[_0x58dddf['UNKNOWN_CODE']=0x0]='UNKNOWN_CODE',_0x58dddf[_0x58dddf['OK']=0x1]='OK',_0x58dddf[_0x58dddf[_0x5bb7a4(0x526)]=0x2]='FAIL',_0x58dddf[_0x58dddf[_0x5bb7a4(0x31e)]=-0x1]='UNRECOGNIZED',_0x58dddf))(Is||{}),yi=(_0x137d45=>(_0x137d45[_0x137d45[_0x5bb7a4(0x2e9)]=0x0]=_0x5bb7a4(0x2e9),_0x137d45[_0x137d45[_0x5bb7a4(0x197)]=0x1]='HttpImport',_0x137d45[_0x137d45[_0x5bb7a4(0x502)]=0x2]=_0x5bb7a4(0x502),_0x137d45[_0x137d45['UnitEmbedded']=0x3]=_0x5bb7a4(0x48f),_0x137d45[_0x137d45[_0x5bb7a4(0x54b)]=0x4]=_0x5bb7a4(0x54b),_0x137d45[_0x137d45[_0x5bb7a4(0x31e)]=-0x1]=_0x5bb7a4(0x31e),_0x137d45))(yi||{});const ie=_0x5bb7a4(0x1f9),Rr={};function yr(_0x45b5c9){const _0x293a22=_0x5bb7a4;var _0x301a87,_0xc1dc28,_0x2d495b,_0x56dfea,_0x5eb7b5;const _0x1c293a=_0x45b5c9['data'],_0x54c316=JSON[_0x293a22(0x57c)](_0x1c293a);switch(_0x54c316[_0x293a22(0x4d5)]){case W[_0x293a22(0x238)]:case W[_0x293a22(0x183)]:{const _0x316f46=_0x54c316[_0x293a22(0x51e)];return{..._0x54c316,'data':_0x316f46,'cmd':_0x54c316[_0x293a22(0x4d5)]};}case W[_0x293a22(0x542)]:{const _0x8b589f=_0x54c316[_0x293a22(0x3f9)];return{..._0x54c316,'data':_0x8b589f,'cmd':_0x54c316[_0x293a22(0x4d5)]};}case W[_0x293a22(0x297)]:{const _0x282169=_0x54c316[_0x293a22(0x21a)];switch(_0x282169['eventID']){case _0x45d469[_0x293a22(0x4fb)]:return{..._0x54c316,'data':{..._0x282169,'data':(_0x301a87=_0x282169[_0x293a22(0x3ba)])==null?void 0x0:_0x301a87['cs']},'cmd':_0x54c316[_0x293a22(0x4d5)]};case _0x45d469[_0x293a22(0x4a7)]:return{..._0x54c316,'data':{..._0x282169,'data':(_0xc1dc28=_0x282169['csAckEvent'])==null?void 0x0:_0xc1dc28['cs']},'cmd':_0x54c316['cmd']};case _0x45d469[_0x293a22(0x4df)]:return{..._0x54c316,'data':{..._0x282169,'data':(_0x2d495b=_0x282169['newCsEvent'])==null?void 0x0:_0x2d495b['cs']},'cmd':_0x54c316[_0x293a22(0x4d5)]};case _0x45d469[_0x293a22(0x35b)]:return{..._0x54c316,'data':{..._0x282169,'data':(_0x56dfea=_0x282169[_0x293a22(0x469)])==null?void 0x0:_0x56dfea['cs']},'cmd':_0x54c316[_0x293a22(0x4d5)]};case _0x45d469[_0x293a22(0x259)]:return{..._0x54c316,'data':{..._0x282169,'data':(_0x5eb7b5=_0x282169[_0x293a22(0x3d5)])==null?void 0x0:_0x5eb7b5['cs']},'cmd':_0x54c316[_0x293a22(0x4d5)]};case _0x45d469['UPDATE_CURSOR']:return{..._0x54c316,'data':{..._0x282169,'data':_0x282169['updateCursorEvent']},'cmd':_0x54c316[_0x293a22(0x4d5)]};case _0x45d469[_0x293a22(0x2a5)]:return{..._0x54c316,'data':{..._0x282169,'data':_0x282169[_0x293a22(0x4b7)]},'cmd':_0x54c316['cmd']};case _0x45d469['USERS_LEAVE']:return{..._0x54c316,'data':{..._0x282169,'data':_0x282169[_0x293a22(0x4cd)]},'cmd':_0x54c316[_0x293a22(0x4d5)]};case _0x45d469[_0x293a22(0x31f)]:return{..._0x54c316,'data':{..._0x282169,'data':_0x282169[_0x293a22(0x29e)]},'cmd':_0x54c316[_0x293a22(0x4d5)]};case _0x45d469['LIVESHARE_FETCH_OPERATIONS']:case _0x45d469[_0x293a22(0x38c)]:return{..._0x54c316,'data':{..._0x282169,'data':_0x282169[_0x293a22(0x49b)]},'cmd':_0x54c316[_0x293a22(0x4d5)]};case _0x45d469['LIVESHARE_TERMINATE']:return{..._0x54c316,'data':{..._0x282169,'data':_0x282169['liveShareNewHost']},'cmd':_0x54c316['cmd']};case _0x45d469[_0x293a22(0x407)]:return{..._0x54c316,'data':_0x282169,'cmd':_0x54c316[_0x293a22(0x4d5)]};case _0x45d469[_0x293a22(0x34d)]:return{..._0x54c316,'data':{..._0x282169,'data':_0x282169[_0x293a22(0x36f)]},'cmd':_0x54c316[_0x293a22(0x4d5)]};case _0x45d469[_0x293a22(0x508)]:return{..._0x54c316,'data':{..._0x282169,'data':_0x282169['updatePermissionObjEvent']},'cmd':_0x54c316[_0x293a22(0x4d5)]};case _0x45d469[_0x293a22(0x413)]:return{..._0x54c316,'data':{..._0x282169,'data':_0x282169[_0x293a22(0x398)]},'cmd':_0x54c316[_0x293a22(0x4d5)]};default:return _0x54c316;}}default:return _0x54c316;}}function Or(_0x1b8bfc){const _0x16d4be=_0x5bb7a4;switch(_0x1b8bfc[_0x16d4be(0x4d5)]){case W['HEARTBEAT']:case W[_0x16d4be(0x183)]:return JSON[_0x16d4be(0x303)]({'cmd':_0x1b8bfc[_0x16d4be(0x4d5)],'routeKey':_0x1b8bfc[_0x16d4be(0x2ae)]});case W[_0x16d4be(0x200)]:{let _0xaa41cc;switch(_0x1b8bfc[_0x16d4be(0x2d5)]['eventID']){case _0x45d469[_0x16d4be(0x2cd)]:{_0xaa41cc={'eventID':_0x45d469[_0x16d4be(0x2cd)],'updateCursorEvent':_0x1b8bfc[_0x16d4be(0x2d5)][_0x16d4be(0x2d5)]};break;}case _0x45d469[_0x16d4be(0x489)]:{_0xaa41cc={'eventID':_0x45d469[_0x16d4be(0x489)],'leaveEvent':_0x1b8bfc[_0x16d4be(0x2d5)]['data']};break;}case _0x45d469[_0x16d4be(0x2a5)]:{_0xaa41cc={'eventID':_0x45d469['USERS_ENTER'],'joinEvent':_0x1b8bfc[_0x16d4be(0x2d5)]['data']};break;}case _0x45d469['LIVESHARE_NEW_HOST']:{_0xaa41cc={'eventID':_0x45d469[_0x16d4be(0x31f)],'liveShareNewHost':_0x1b8bfc[_0x16d4be(0x2d5)][_0x16d4be(0x2d5)]};break;}case _0x45d469[_0x16d4be(0x38c)]:{_0xaa41cc={'eventID':_0x45d469['LIVESHARE_OPERATION'],'liveShareOperation':_0x1b8bfc[_0x16d4be(0x2d5)][_0x16d4be(0x2d5)]};break;}case _0x45d469[_0x16d4be(0x41d)]:{_0xaa41cc={'eventID':_0x45d469['LIVESHARE_TERMINATE'],'liveShareTerminate':_0x1b8bfc[_0x16d4be(0x2d5)]['data']};break;}case _0x45d469[_0x16d4be(0x2ed)]:{_0xaa41cc={'eventID':_0x45d469[_0x16d4be(0x2ed)],'liveShareRequestHost':_0x1b8bfc[_0x16d4be(0x2d5)]['data']};break;}case _0x45d469[_0x16d4be(0x43b)]:{_0xaa41cc={'eventID':_0x45d469[_0x16d4be(0x43b)]};break;}default:_0xaa41cc={'eventID':_0x1b8bfc[_0x16d4be(0x2d5)][_0x16d4be(0x479)]};}return JSON[_0x16d4be(0x303)]({'cmd':_0x1b8bfc[_0x16d4be(0x4d5)],'routeKey':_0x1b8bfc[_0x16d4be(0x2ae)],'collaMsg':_0xaa41cc});}case W[_0x16d4be(0x542)]:return JSON['stringify']({'cmd':_0x1b8bfc[_0x16d4be(0x4d5)],'routeKey':_0x1b8bfc[_0x16d4be(0x2ae)],'joinReq':_0x1b8bfc[_0x16d4be(0x2d5)]});case W['LEAVE']:return JSON[_0x16d4be(0x303)]({'cmd':_0x1b8bfc['cmd'],'routeKey':_0x1b8bfc[_0x16d4be(0x2ae)],'leaveReq':_0x1b8bfc[_0x16d4be(0x2d5)]});default:throw new Error(_0x16d4be(0x1f7));}}var wr=Object['defineProperty'],Dr=Object['getOwnPropertyDescriptor'],Pr=(_0x2af9ec,_0x503585,_0x193e92,_0x583e94)=>{for(var _0x5c4c97=_0x583e94>0x1?void 0x0:_0x583e94?Dr(_0x503585,_0x193e92):_0x503585,_0x24b214=_0x2af9ec['length']-0x1,_0x131704;_0x24b214>=0x0;_0x24b214--)(_0x131704=_0x2af9ec[_0x24b214])&&(_0x5c4c97=(_0x583e94?_0x131704(_0x503585,_0x193e92,_0x5c4c97):_0x131704(_0x5c4c97))||_0x5c4c97);return _0x583e94&&_0x5c4c97&&wr(_0x503585,_0x193e92,_0x5c4c97),_0x5c4c97;},qe=(_0x18d833,_0x224e85)=>(_0x398617,_0x2a8f6b)=>_0x224e85(_0x398617,_0x2a8f6b,_0x18d833);const Oi=_0x5ce9a5(_0x5bb7a4(0x373));function Ur(_0x21a3ea,_0x5b1eda,_0x33f15d){return _0x21a3ea+'/'+_0x5b1eda+'/unit/'+_0x33f15d+'/new_changes';}let es=class extends _0x1caa36{constructor(_0x3f7db1,_0x11cd42,_0x5f0f47,_0x31a7c7,_0x45534a){const _0x165338=_0x5bb7a4;super(),this[_0x165338(0x582)]=_0x3f7db1,this[_0x165338(0x561)]=_0x11cd42,this[_0x165338(0x23e)]=_0x5f0f47,this[_0x165338(0x26e)]=_0x31a7c7,this['_snapshotServerService']=_0x45534a;}[_0x5bb7a4(0x343)](_0x3842d8){const _0x222f56=_0x5bb7a4,_0x2e5251=this[_0x222f56(0x561)][_0x222f56(0x343)](_0x3842d8);if(!_0x2e5251)throw new Error(_0x222f56(0x3c1));const _0x1ef4af=new _0x4e3306(),_0x5a5ea7=new _0x1b179a();_0x1ef4af[_0x222f56(0x570)](_0x2e5251[_0x222f56(0x339)][_0x222f56(0x519)](_0xc5f3d8=>_0x5a5ea7[_0x222f56(0x3ff)](_0xc5f3d8))),_0x1ef4af['add'](_0x7884da(()=>_0x5a5ea7[_0x222f56(0x313)]()));const _0x4b837d=new _0x1b179a();_0x1ef4af[_0x222f56(0x570)](_0x2e5251[_0x222f56(0x277)][_0x222f56(0x519)](_0x9e3923=>_0x4b837d[_0x222f56(0x3ff)](_0x9e3923))),_0x1ef4af[_0x222f56(0x570)](_0x7884da(()=>_0x4b837d[_0x222f56(0x313)]()));const _0xbe5845=new _0x1b179a();_0x1ef4af['add'](_0x2e5251[_0x222f56(0x35f)][_0x222f56(0x519)](_0x2c4738=>{const _0x5e9fcd=_0x222f56,_0x505236=yr(_0x2c4738);_0xbe5845[_0x5e9fcd(0x3ff)](_0x505236);})),_0x1ef4af[_0x222f56(0x570)](_0x7884da(()=>_0xbe5845['complete']()));let _0x5522e3;const _0xac8b45=()=>{const _0x49efe9=_0x222f56;_0x4b837d[_0x49efe9(0x3ff)](new Event(_0x49efe9(0x248))),_0x5a5ea7[_0x49efe9(0x3ff)](new CloseEvent(_0x49efe9(0x248))),_0x5522e3[_0x49efe9(0x27a)]();};return _0x5522e3={'memberID':'','close$':_0x5a5ea7[_0x222f56(0x1a6)](),'error$':_0x4b837d[_0x222f56(0x1a6)](),'open$':_0x2e5251[_0x222f56(0x3eb)],'message$':_0xbe5845['asObservable'](),'send':_0x5c30bb=>{const _0x4cb4a0=_0x222f56;if(_0x5c30bb[_0x4cb4a0(0x4d5)]===W['INGEST']){if(_0x5c30bb['data'][_0x4cb4a0(0x479)]===_0x45d469[_0x4cb4a0(0x1b5)]){this[_0x4cb4a0(0x34c)](_0x5522e3,_0x5c30bb[_0x4cb4a0(0x2d5)])[_0x4cb4a0(0x220)](_0x5eefa1=>{const _0x2e5234=_0x4cb4a0;this['_logService'][_0x2e5234(0x17b)](_0x5eefa1),_0xac8b45();});return;}if(_0x5c30bb['data'][_0x4cb4a0(0x479)]===_0x45d469['FETCH_MISSING']){const _0x5becb3=_0x5c30bb['data'];this[_0x4cb4a0(0x48c)](_0x5becb3)[_0x4cb4a0(0x40e)](_0x444026=>{_0xbe5845['next']({'cmd':W['RECV'],'code':Is['OK'],'routeKey':_0x5becb3['data']['unitID'],'routeType':'','data':{'eventID':_0x45d469['PSEUDO_FETCH_MISSING_RESULT'],'data':{'changesets':_0x444026}}});})[_0x4cb4a0(0x220)](_0x18526b=>{const _0x33ba8f=_0x4cb4a0;this['_logService'][_0x33ba8f(0x17b)](_0x18526b),_0xac8b45();});return;}}_0x2e5251[_0x4cb4a0(0x45a)](Or(_0x5c30bb));},'close':()=>{const _0x589395=_0x222f56;_0x2e5251[_0x589395(0x27a)](),_0x1ef4af[_0x589395(0x4d2)]();}},_0x5522e3;}async['_submitChangeset'](_0x3c4dec,_0xd0d49e){const _0x5c1faa=_0x5bb7a4;var _0x5e5b50,_0x33428b;const {unitType:_0x596e6b,unitID:_0x6f1d1c,changeset:_0x29e5a9}=_0xd0d49e[_0x5c1faa(0x2d5)],_0x5a30d4={'unitID':_0x6f1d1c,'memberID':_0x3c4dec[_0x5c1faa(0x2a3)],'type':_0x596e6b,'changeset':_0x2f96b4(_0x29e5a9)},_0x271cb0=this['_configService'][_0x5c1faa(0x447)](Cr),_0x6722dc=this[_0x5c1faa(0x23e)][_0x5c1faa(0x447)](ie),_0x398d6f=Ur((_0x33428b=(_0x5e5b50=_0x6722dc==null?void 0x0:_0x6722dc[_0x5c1faa(0x347)])!=null?_0x5e5b50:_0x271cb0)!=null?_0x33428b:Er,_0x596e6b,_0x6f1d1c);try{await this['_http'][_0x5c1faa(0x495)](_0x398d6f,{'body':_0x5a30d4});}catch(_0x37e2c9){throw this[_0x5c1faa(0x26e)]['error'](_0x5c1faa(0x424),_0x5c1faa(0x2f7)),_0x37e2c9;}}async[_0x5bb7a4(0x48c)](_0x9fd737){const _0x3585dd=_0x5bb7a4,{unitID:_0xe4f67c,from:_0x9ded1c,to:_0x4bfc52,unitType:_0x2b9766}=_0x9fd737[_0x3585dd(0x2d5)];return(await this[_0x3585dd(0x505)][_0x3585dd(0x2b8)]({'metadata':void 0x0},{'unitID':_0xe4f67c,'type':_0x2b9766,'from':_0x9ded1c,'to':_0x4bfc52}))['changesets'];}};es=Pr([qe(0x0,_0x22a3e1(_0x41156a)),qe(0x1,_0x22a3e1(_0x1275f8)),qe(0x2,_0x2bb536),qe(0x3,_0x3efec9),qe(0x4,_0x5bc59d)],es);const Nr=_0x5bb7a4(0x164);function Ar(_0x125ef8){const _0x5b8b4b=_0x5bb7a4;return JSON['stringify'](_0x125ef8)[_0x5b8b4b(0x282)];}class wi{constructor(){const _0x2d5d47=_0x5bb7a4;g(this,_0x2d5d47(0x379),new _0x1b179a()),g(this,_0x2d5d47(0x17d),this[_0x2d5d47(0x379)]['asObservable']());}['onCommentUpdate'](_0x40ddb6){const _0x9f38a=_0x5bb7a4;this[_0x9f38a(0x379)][_0x9f38a(0x3ff)](_0x40ddb6);}}var Mr=Object[_0x5bb7a4(0x42b)],xr=Object[_0x5bb7a4(0x4e4)],Lr=(_0x166916,_0x3f83b3,_0x5c8a40,_0x34f32d)=>{const _0x3fb2c7=_0x5bb7a4;for(var _0x4bdfb5=_0x34f32d>0x1?void 0x0:_0x34f32d?xr(_0x3f83b3,_0x5c8a40):_0x3f83b3,_0x2c04d0=_0x166916[_0x3fb2c7(0x282)]-0x1,_0x18f6f8;_0x2c04d0>=0x0;_0x2c04d0--)(_0x18f6f8=_0x166916[_0x2c04d0])&&(_0x4bdfb5=(_0x34f32d?_0x18f6f8(_0x3f83b3,_0x5c8a40,_0x4bdfb5):_0x18f6f8(_0x4bdfb5))||_0x4bdfb5);return _0x34f32d&&_0x4bdfb5&&Mr(_0x3f83b3,_0x5c8a40,_0x4bdfb5),_0x4bdfb5;},Hs=(_0x234824,_0x2c1906)=>(_0x9e5ff0,_0x5be919)=>_0x2c1906(_0x9e5ff0,_0x5be919,_0x234824);let Ne=class extends _0x1caa36{constructor(_0x4041c0,_0x1d3af4){const _0x1ddaa9=_0x5bb7a4;super(),g(this,_0x1ddaa9(0x1df),new Map()),(this[_0x1ddaa9(0x21d)]=_0x4041c0,this[_0x1ddaa9(0x556)]=_0x1d3af4,this[_0x1ddaa9(0x368)](_0x7884da(_0x4e4735(this[_0x1ddaa9(0x21d)]['getTypeOfUnitDisposed$'](_0x10a997[_0x1ddaa9(0x55b)])[_0x1ddaa9(0x3f1)](_0x17141f(_0x510a53=>_0x510a53[_0x1ddaa9(0x322)]())),this[_0x1ddaa9(0x21d)][_0x1ddaa9(0x39a)](_0x10a997[_0x1ddaa9(0x172)])['pipe'](_0x17141f(_0x23e96c=>_0x23e96c[_0x1ddaa9(0x322)]())),this[_0x1ddaa9(0x21d)][_0x1ddaa9(0x39a)](_0x10a997[_0x1ddaa9(0x4b3)])[_0x1ddaa9(0x3f1)](_0x17141f(_0x33d5a3=>_0x33d5a3[_0x1ddaa9(0x322)]())))[_0x1ddaa9(0x519)](_0x529546=>this[_0x1ddaa9(0x562)](_0x529546)))));}['setCurrentUser'](_0x54e57a){const _0x4ff021=_0x5bb7a4;this['_userManagerService'][_0x4ff021(0x4fc)](_0x54e57a);}['getCurrentUser'](){const _0x3d0d1c=_0x5bb7a4;return this['_userManagerService'][_0x3d0d1c(0x3b9)]();}[_0x5bb7a4(0x4b2)](_0x43a481,_0x51081b){const _0x282152=_0x5bb7a4;let _0x3963ac=this[_0x282152(0x1df)][_0x282152(0x4f7)](_0x43a481);_0x3963ac||(_0x3963ac=new $r(),this['_roomMembers']['set'](_0x43a481,_0x3963ac)),_0x3963ac[_0x282152(0x4b2)](_0x51081b);}[_0x5bb7a4(0x4e6)](_0x235ecd,_0x36149c){const _0x5b020d=_0x5bb7a4,_0x87bb2c=this['_roomMembers'][_0x5b020d(0x4f7)](_0x235ecd);_0x87bb2c&&_0x87bb2c[_0x5b020d(0x4e6)](_0x36149c);}[_0x5bb7a4(0x2dd)](_0x4578d5){const _0x4ea8f1=_0x5bb7a4;return this[_0x4ea8f1(0x1df)][_0x4ea8f1(0x4f7)](_0x4578d5);}[_0x5bb7a4(0x25d)](_0x2b11ec,_0x306cdc){const _0x589b74=_0x5bb7a4,_0x47c14e=this['_roomMembers'][_0x589b74(0x4f7)](_0x2b11ec);if(_0x47c14e)return _0x47c14e[_0x589b74(0x25d)](_0x306cdc);}['_removeRoom'](_0x3626f5){const _0x4b4934=_0x5bb7a4,_0x3f1463=this['_roomMembers'][_0x4b4934(0x4f7)](_0x3626f5);_0x3f1463&&(_0x3f1463[_0x4b4934(0x4d2)](),this[_0x4b4934(0x1df)][_0x4b4934(0x3d8)](_0x3626f5));}[_0x5bb7a4(0x4d2)](){const _0x32964=_0x5bb7a4;this['_roomMembers'][_0x32964(0x312)](_0xad9e2b=>_0xad9e2b[_0x32964(0x4d2)]()),this[_0x32964(0x1df)]['clear']();}};Ne=Lr([Hs(0x0,_0x2e0534),Hs(0x1,_0x22a3e1(_0x28e0a3))],Ne);class $r extends _0x1caa36{constructor(){const _0x153be1=_0x5bb7a4;super(...arguments),g(this,_0x153be1(0x3dc),new Map());}[_0x5bb7a4(0x4d2)](){const _0x563cef=_0x5bb7a4;this[_0x563cef(0x3dc)]['clear']();}['updateMember'](_0x450c04){const _0x2c63e6=_0x5bb7a4;this[_0x2c63e6(0x3dc)][_0x2c63e6(0x441)](_0x450c04['memberID'],_0x450c04);}[_0x5bb7a4(0x4e6)](_0x23d7b7){const _0x5f2e65=_0x5bb7a4;this[_0x5f2e65(0x3dc)][_0x5f2e65(0x3d8)](_0x23d7b7);}[_0x5bb7a4(0x25d)](_0x1f3cbb){const _0x52b494=_0x5bb7a4;return this[_0x52b494(0x3dc)][_0x52b494(0x4f7)](_0x1f3cbb);}[_0x5bb7a4(0x26c)](){const _0xef2a60=_0x5bb7a4;return Array['from'](this[_0xef2a60(0x3dc)]['values']());}}var Hr=Object[_0x5bb7a4(0x42b)],jr=Object[_0x5bb7a4(0x4e4)],Br=(_0x279aac,_0x22af43,_0x25ec3f,_0x5bc6c6)=>{const _0xab57fe=_0x5bb7a4;for(var _0x2e6c4a=_0x5bc6c6>0x1?void 0x0:_0x5bc6c6?jr(_0x22af43,_0x25ec3f):_0x22af43,_0x577116=_0x279aac[_0xab57fe(0x282)]-0x1,_0x58410e;_0x577116>=0x0;_0x577116--)(_0x58410e=_0x279aac[_0x577116])&&(_0x2e6c4a=(_0x5bc6c6?_0x58410e(_0x22af43,_0x25ec3f,_0x2e6c4a):_0x58410e(_0x2e6c4a))||_0x2e6c4a);return _0x5bc6c6&&_0x2e6c4a&&Hr(_0x22af43,_0x25ec3f,_0x2e6c4a),_0x2e6c4a;},Ee=(_0xe69baf,_0x174681)=>(_0x4626ce,_0x29deb5)=>_0x174681(_0x4626ce,_0x29deb5,_0xe69baf),ve=(_0x4c6797=>(_0x4c6797[_0x4c6797['IDLE']=0x0]=_0x5bb7a4(0x444),_0x4c6797[_0x4c6797[_0x5bb7a4(0x213)]=0x1]='JOINING',_0x4c6797[_0x4c6797[_0x5bb7a4(0x23a)]=0x2]=_0x5bb7a4(0x23a),_0x4c6797[_0x4c6797[_0x5bb7a4(0x3e1)]=0x3]=_0x5bb7a4(0x3e1),_0x4c6797))(ve||{});let ts=class extends _0x177a9e{constructor(_0x443a38,_0x59999f,_0x351334,_0xd6b63c,_0x124e88,_0x1825d1,_0x2b890b,_0x64aa01,_0x34d8f9,_0x3f7885){const _0x556193=_0x5bb7a4;super(),g(this,_0x556193(0x20f),new _0x348a88(0x0)),g(this,_0x556193(0x17e),this['_sessionStatus$']['asObservable']()),g(this,_0x556193(0x57d),new _0x1b179a()),g(this,'event$',this['_event$'][_0x556193(0x1a6)]()),g(this,_0x556193(0x323)),g(this,_0x556193(0x417)),g(this,_0x556193(0x301)),g(this,'_shouldReportTelemetry',!0x1),g(this,_0x556193(0x1b1),null),(this[_0x556193(0x2ba)]=_0x443a38,this['_logService']=_0x351334,this[_0x556193(0x414)]=_0xd6b63c,this[_0x556193(0x2a2)]=_0x124e88,this['_configService']=_0x1825d1,this[_0x556193(0x4ab)]=_0x2b890b,this[_0x556193(0x49f)]=_0x64aa01,this[_0x556193(0x54a)]=_0x34d8f9,this[_0x556193(0x18c)]=_0x3f7885,this[_0x556193(0x512)]=!!this[_0x556193(0x18c)],_0x59999f[_0x556193(0x3f1)](_0x52fa59(this[_0x556193(0x492)]))[_0x556193(0x519)](_0x10b0a1=>{const _0x11055d=_0x556193;var _0x7f969d;typeof _0x10b0a1>'u'||(this[_0x11055d(0x323)]=_0x10b0a1,_0x10b0a1?(this[_0x11055d(0x3b3)](_0x10b0a1),this[_0x11055d(0x417)]=_0x10b0a1[_0x11055d(0x35f)]['subscribe'](_0x460e62=>{const _0x43ccac=_0x11055d;_0x460e62['routeKey']===this[_0x43ccac(0x2ba)]&&this[_0x43ccac(0x497)](_0x460e62);})):(this[_0x11055d(0x3f0)](),this['_sessionStatus$'][_0x11055d(0x3ff)](0x2),(_0x7f969d=this['_socketMessageSubscription'])==null||_0x7f969d[_0x11055d(0x1e1)](),this[_0x11055d(0x417)]=null));}),this[_0x556193(0x368)](this[_0x556193(0x414)][_0x556193(0x1f2)](()=>{const _0x281e81=_0x556193;var _0x1e7cdc;(_0x1e7cdc=this[_0x281e81(0x323)])==null||_0x1e7cdc[_0x281e81(0x45a)]({'cmd':W[_0x281e81(0x2a7)],'data':{'roomID':this[_0x281e81(0x2ba)]}});})));}get[_0x5bb7a4(0x397)](){const _0x2cc569=_0x5bb7a4;return this['_sessionStatus$'][_0x2cc569(0x43d)]();}[_0x5bb7a4(0x494)](){var _0x18d281,_0x1f1544;return(_0x1f1544=(_0x18d281=this['_socket'])==null?void 0x0:_0x18d281['memberID'])!=null?_0x1f1544:null;}[_0x5bb7a4(0x4d2)](){const _0x3b4175=_0x5bb7a4;super[_0x3b4175(0x4d2)](),this['dispose$'][_0x3b4175(0x3ff)](),this['dispose$']['complete']();}[_0x5bb7a4(0x27a)](){const _0x171949=_0x5bb7a4;var _0x3473f1,_0x4278f4;this['_throwTelemetryCollaborationNewChangeset'](),(_0x3473f1=this['_socket'])==null||_0x3473f1[_0x171949(0x45a)]({'cmd':W[_0x171949(0x2a7)],'data':{'roomID':this[_0x171949(0x2ba)]}}),(_0x4278f4=this['_socket'])==null||_0x4278f4[_0x171949(0x27a)](),this['_event$'][_0x171949(0x313)](),this[_0x171949(0x20f)][_0x171949(0x313)](),this[_0x171949(0x4d2)]();}['_onCombEvent'](_0x1bd2ec){const _0x11557e=_0x5bb7a4;_0x1bd2ec[_0x11557e(0x4d5)]===W['JOIN']?this[_0x11557e(0x518)](_0x1bd2ec):_0x1bd2ec[_0x11557e(0x4d5)]===W[_0x11557e(0x297)]&&this['_onRecvEvent'](_0x1bd2ec);}[_0x5bb7a4(0x3b3)](_0x202c1a){const _0x2e8b46=_0x5bb7a4;this[_0x2e8b46(0x20f)][_0x2e8b46(0x3ff)](0x1),_0x202c1a[_0x2e8b46(0x45a)]({'cmd':W[_0x2e8b46(0x542)],'routeKey':this['_unitID'],'routeType':'','data':{'rooms':[{'roomID':this[_0x2e8b46(0x2ba)]}]}});}['_onJoinRoomEvent'](_0x5477f0){const _0x19fedf=_0x5bb7a4;var _0x3f50ed;if(_0x5477f0[_0x19fedf(0x4bd)]===Is[_0x19fedf(0x526)]){this[_0x19fedf(0x2a2)][_0x19fedf(0x18e)]({'type':_0x3417d7[_0x19fedf(0x2ad)],'content':this[_0x19fedf(0x4ab)]['t'](_0x19fedf(0x1cd))}),this[_0x19fedf(0x20f)][_0x19fedf(0x3ff)](0x2);return;}this['_sessionStatus$'][_0x19fedf(0x3ff)](0x3);const _0x21a3d2=(_0x3f50ed=_0x5477f0['data']['roomInfos'][this[_0x19fedf(0x2ba)]])==null?void 0x0:_0x3f50ed[_0x19fedf(0x2cc)];_0x21a3d2&&_0x21a3d2[_0x19fedf(0x312)](_0x5a95f1=>this[_0x19fedf(0x49f)][_0x19fedf(0x4b2)](this[_0x19fedf(0x2ba)],_0x5a95f1));}[_0x5bb7a4(0x2a1)](_0x459d77){const _0x5c07f2=_0x5bb7a4;try{const _0x34bcf0=_0x459d77[_0x5c07f2(0x2d5)];switch(_0x34bcf0[_0x5c07f2(0x479)]){case _0x45d469[_0x5c07f2(0x2a5)]:this[_0x5c07f2(0x33a)](_0x34bcf0),this[_0x5c07f2(0x57d)][_0x5c07f2(0x3ff)](_0x34bcf0);break;case _0x45d469['USERS_LEAVE']:this[_0x5c07f2(0x38d)](_0x34bcf0),this[_0x5c07f2(0x57d)][_0x5c07f2(0x3ff)](_0x34bcf0);break;case _0x45d469[_0x5c07f2(0x4a7)]:case _0x45d469[_0x5c07f2(0x259)]:this[_0x5c07f2(0x32e)](),this['_clearCollaborationTimeoutTimer'](),this[_0x5c07f2(0x57d)][_0x5c07f2(0x3ff)](_0x34bcf0);break;case _0x45d469[_0x5c07f2(0x407)]:this[_0x5c07f2(0x26e)][_0x5c07f2(0x17b)]('save\x20fail\x20reason\x20is\x20'+JSON[_0x5c07f2(0x303)](_0x34bcf0)),this['_event$']['next'](_0x34bcf0);break;case _0x45d469[_0x5c07f2(0x34d)]:this[_0x5c07f2(0x54a)][_0x5c07f2(0x461)](_0x34bcf0['data']),this['_event$']['next'](_0x34bcf0);break;default:this[_0x5c07f2(0x57d)][_0x5c07f2(0x3ff)](_0x34bcf0);}}catch(_0x5ba8f5){this[_0x5c07f2(0x26e)][_0x5c07f2(0x17b)](_0x5ba8f5,_0x459d77);}}[_0x5bb7a4(0x33a)](_0x186756){const _0x2c9692=_0x5bb7a4;this['_memberService'][_0x2c9692(0x4b2)](this[_0x2c9692(0x2ba)],_0x186756[_0x2c9692(0x2d5)]);}[_0x5bb7a4(0x38d)](_0x43ecf5){const _0x49962c=_0x5bb7a4;this[_0x49962c(0x49f)][_0x49962c(0x4e6)](this[_0x49962c(0x2ba)],_0x43ecf5['data'][_0x49962c(0x2a3)]);}async['send'](_0x1da07e,_0x3f4b6f){const _0x34586b=_0x5bb7a4;if(this['sessionStatus']!==0x3||!this['_socket'])throw new Error(_0x34586b(0x533));try{_0x1da07e[_0x34586b(0x479)]===_0x45d469[_0x34586b(0x1b5)]&&(this[_0x34586b(0x24e)](),this[_0x34586b(0x51c)](_0x1da07e)),this['_socket'][_0x34586b(0x45a)]({'cmd':W[_0x34586b(0x200)],'routeKey':_0x3f4b6f,'routeType':'','data':_0x1da07e});}catch(_0x53d4b5){this[_0x34586b(0x26e)][_0x34586b(0x17b)](_0x53d4b5);}}[_0x5bb7a4(0x24e)](){const _0xb2f595=_0x5bb7a4;var _0x4caac5;this['_collaborationTimeoutTimer']=window[_0xb2f595(0x273)](()=>{const _0x62e03=_0xb2f595;this[_0x62e03(0x301)]=null,this['_messageService'][_0x62e03(0x18e)]({'type':_0x3417d7['Error'],'content':this[_0x62e03(0x4ab)]['t'](_0x62e03(0x3e8))});},(_0x4caac5=this[_0xb2f595(0x23e)]['getConfig'](bi))!=null?_0x4caac5:Ti);}[_0x5bb7a4(0x42a)](){const _0x4cadcd=_0x5bb7a4;this[_0x4cadcd(0x301)]&&(clearTimeout(this[_0x4cadcd(0x301)]),this[_0x4cadcd(0x301)]=null);}[_0x5bb7a4(0x51c)](_0x488b6c){const _0x477b73=_0x5bb7a4;if(!this[_0x477b73(0x512)])return;const {data:_0x2eae5a}=_0x488b6c,{unitID:_0x253247,changeset:_0x4232be}=_0x2eae5a,{mutations:_0x18bc7b,type:_0x4e9058}=_0x4232be;this['_telemetryInfo']={'unitId':_0x253247,'type':_0x4e9058,'startTime':performance[_0x477b73(0x3d2)](),'stopTime':0x0,'duration':0x0,'size':Ar(_0x18bc7b)};}[_0x5bb7a4(0x32e)](){const _0x93b3c9=_0x5bb7a4;if(this[_0x93b3c9(0x512)]){if(!this[_0x93b3c9(0x1b1)]){this['_logService'][_0x93b3c9(0x17b)](_0x93b3c9(0x424),_0x93b3c9(0x377));return;}this[_0x93b3c9(0x1b1)][_0x93b3c9(0x25b)]=performance[_0x93b3c9(0x3d2)](),this['_telemetryInfo'][_0x93b3c9(0x286)]=this[_0x93b3c9(0x1b1)][_0x93b3c9(0x25b)]-this[_0x93b3c9(0x1b1)][_0x93b3c9(0x22c)],this['_telemetryService'][_0x93b3c9(0x22f)](Nr,this[_0x93b3c9(0x1b1)]),this[_0x93b3c9(0x1b1)]=null;}}[_0x5bb7a4(0x3f0)](){const _0x7998b5=_0x5bb7a4;this[_0x7998b5(0x1b1)]=null;}};ts=Br([Ee(0x2,_0x3efec9),Ee(0x3,_0x3e0747),Ee(0x4,_0x38087f),Ee(0x5,_0x2bb536),Ee(0x6,_0x22a3e1(_0x1fdc1b)),Ee(0x7,_0x22a3e1(Ne)),Ee(0x8,_0x22a3e1(wi)),Ee(0x9,_0x4f55bd(_0x1b6586))],ts);var kr=Object[_0x5bb7a4(0x42b)],Wr=Object['getOwnPropertyDescriptor'],Fr=(_0x49ca9f,_0x303c04,_0x17328e,_0x2bedb6)=>{const _0x56e0dd=_0x5bb7a4;for(var _0x24b59e=_0x2bedb6>0x1?void 0x0:_0x2bedb6?Wr(_0x303c04,_0x17328e):_0x303c04,_0x12d93e=_0x49ca9f[_0x56e0dd(0x282)]-0x1,_0x22e60c;_0x12d93e>=0x0;_0x12d93e--)(_0x22e60c=_0x49ca9f[_0x12d93e])&&(_0x24b59e=(_0x2bedb6?_0x22e60c(_0x303c04,_0x17328e,_0x24b59e):_0x22e60c(_0x24b59e))||_0x24b59e);return _0x2bedb6&&_0x24b59e&&kr(_0x303c04,_0x17328e,_0x24b59e),_0x24b59e;},je=(_0x8540b2,_0x3bd3c9)=>(_0x13305f,_0x5a6791)=>_0x3bd3c9(_0x13305f,_0x5a6791,_0x8540b2);let Ae=class extends _0x1caa36{constructor(_0x872892,_0x3f660e,_0x470a38,_0x1c35bb,_0x3fbfa8,_0x4392f7){const _0x52c720=_0x5bb7a4;super(),g(this,_0x52c720(0x27d),new _0x348a88(void 0x0)),g(this,_0x52c720(0x1ad),this[_0x52c720(0x27d)]['asObservable']()),g(this,_0x52c720(0x553),null),g(this,_0x52c720(0x446),new Map()),g(this,_0x52c720(0x281),new _0x348a88(ve[_0x52c720(0x444)])),g(this,_0x52c720(0x1ba),this[_0x52c720(0x281)][_0x52c720(0x1a6)]()),g(this,_0x52c720(0x33d),!0x1),g(this,'_retryConnectingTimer'),g(this,_0x52c720(0x24b),0x0),g(this,_0x52c720(0x1d3)),g(this,_0x52c720(0x239)),(this['_injector']=_0x872892,this[_0x52c720(0x4ab)]=_0x3f660e,this[_0x52c720(0x2a2)]=_0x470a38,this[_0x52c720(0x26e)]=_0x1c35bb,this['_configService']=_0x3fbfa8,this['_socketService']=_0x4392f7,this[_0x52c720(0x20a)]());}get[_0x5bb7a4(0x323)](){return this['_socket$']['getValue']();}[_0x5bb7a4(0x20a)](){const _0x4f2913=_0x5bb7a4;this['_listenToOfflineEvent'](),this[_0x4f2913(0x1af)]();}[_0x5bb7a4(0x4d2)](){const _0x575502=_0x5bb7a4;super['dispose'](),this[_0x575502(0x446)][_0x575502(0x312)](_0x5abe7d=>_0x5abe7d[_0x575502(0x4d2)]()),this['_sessions'][_0x575502(0x395)](),this[_0x575502(0x281)][_0x575502(0x313)]();}async['requireSession'](_0x271f7b){const _0x33c085=_0x5bb7a4;if(this[_0x33c085(0x446)][_0x33c085(0x2e6)](_0x271f7b))return this[_0x33c085(0x446)][_0x33c085(0x4f7)](_0x271f7b);this['_tryEnsureSocket']();const _0x45b18f=this[_0x33c085(0x338)]['createInstance'](ts,_0x271f7b,this[_0x33c085(0x27d)][_0x33c085(0x1a6)]());return this[_0x33c085(0x446)][_0x33c085(0x441)](_0x271f7b,_0x45b18f),_0x45b18f;}[_0x5bb7a4(0x165)](_0x5d3450){const _0x265746=_0x5bb7a4;var _0x811c8e;const _0x52c9b4=this[_0x265746(0x446)][_0x265746(0x4f7)](_0x5d3450);_0x52c9b4&&(this['_sessions']['delete'](_0x5d3450),_0x52c9b4[_0x265746(0x27a)]()),this[_0x265746(0x446)]['size']||(_0x811c8e=this['_socket'])==null||_0x811c8e[_0x265746(0x27a)]();}['reconnect'](){const _0x958ae6=_0x5bb7a4;this[_0x958ae6(0x24b)]=0x0,this[_0x958ae6(0x279)]!=null&&(clearTimeout(this[_0x958ae6(0x279)]),this[_0x958ae6(0x279)]=null),this[_0x958ae6(0x280)]();}[_0x5bb7a4(0x218)](){const _0x5a75f2=_0x5bb7a4;var _0x105158,_0x23d12f;const _0x210852=this[_0x5a75f2(0x23e)][_0x5a75f2(0x447)](ur),_0x48e8c6=this[_0x5a75f2(0x23e)][_0x5a75f2(0x447)](ie),_0x45a566=(_0x23d12f=(_0x105158=_0x48e8c6==null?void 0x0:_0x48e8c6[_0x5a75f2(0x56c)])!=null?_0x105158:_0x210852)!=null?_0x23d12f:dr,_0x5c0b89=this[_0x5a75f2(0x19e)][_0x5a75f2(0x343)](_0x45a566);return this[_0x5a75f2(0x553)]=_0x5c0b89,_0x5c0b89;}[_0x5bb7a4(0x1e2)](){const _0x320533=_0x5bb7a4;var _0x2c0234,_0x240689;try{const _0x46b346=(_0x240689=(_0x2c0234=this[_0x320533(0x323)])!=null?_0x2c0234:this['_candidateSocket'])!=null?_0x240689:this[_0x320533(0x218)]();if(_0x46b346){const _0x38af31=_0x46b346[_0x320533(0x45a)];_0x46b346[_0x320533(0x45a)]=_0x3b4638=>(this[_0x320533(0x20d)](),_0x38af31['apply'](_0x46b346,[_0x3b4638])),_0x46b346[_0x320533(0x35f)][_0x320533(0x519)](_0x284c32=>this[_0x320533(0x2f0)](_0x46b346,_0x284c32)),_0x46b346['error$']['pipe'](_0x4b07d5(0x1))['subscribe'](_0x22ea0b=>this[_0x320533(0x26e)][_0x320533(0x17b)](_0x320533(0x528),_0x22ea0b)),_0x46b346[_0x320533(0x3eb)][_0x320533(0x3f1)](_0x4b07d5(0x1))[_0x320533(0x519)](()=>{const _0x59db01=_0x320533;this[_0x59db01(0x3e0)](_0x46b346);}),_0x46b346[_0x320533(0x339)][_0x320533(0x3f1)](_0x4b07d5(0x1))['subscribe'](_0x48044a=>{const _0x1cbae5=_0x320533;this['_logService']['debug'](_0x1cbae5(0x358),_0x1cbae5(0x425),_0x48044a),this[_0x1cbae5(0x1ef)]();});}}catch(_0x1ff35a){this['_logService'][_0x320533(0x17b)](_0x1ff35a),this[_0x320533(0x1ef)]();}}[_0x5bb7a4(0x3e0)](_0x530472){const _0x54c0f5=_0x5bb7a4;this['_logService'][_0x54c0f5(0x23c)](_0x54c0f5(0x358),_0x54c0f5(0x3bd)),_0x530472['send']({'cmd':W[_0x54c0f5(0x183)]}),this[_0x54c0f5(0x20d)]();}['_listenToOfflineEvent'](){const _0x494d0c=_0x5bb7a4;window['addEventListener'](_0x494d0c(0x4ed),()=>this[_0x494d0c(0x4b6)]());}[_0x5bb7a4(0x4b6)](){const _0x259b59=_0x5bb7a4;this[_0x259b59(0x33d)]=!0x1,this['_candidateSocket']=null,this[_0x259b59(0x281)]['next'](ve['OFFLINE']),this['_socket$'][_0x259b59(0x3ff)](null),this[_0x259b59(0x344)](),this[_0x259b59(0x296)]();}[_0x5bb7a4(0x1ef)](){const _0x52d390=_0x5bb7a4;var _0x4478e8;this[_0x52d390(0x4b6)](),this['_retryCount']<((_0x4478e8=this[_0x52d390(0x23e)][_0x52d390(0x447)](pr))!=null?_0x4478e8:gr)?(this['_messageService'][_0x52d390(0x18e)]({'key':'collaboration-session-retry','type':_0x3417d7[_0x52d390(0x2ad)],'content':this[_0x52d390(0x4ab)]['t'](_0x52d390(0x4a8))}),this[_0x52d390(0x280)]()):this['_messageService'][_0x52d390(0x18e)]({'key':_0x52d390(0x482),'type':_0x3417d7[_0x52d390(0x3cb)],'content':this[_0x52d390(0x4ab)]['t'](_0x52d390(0x46e))});}['_listenToOnlineEvent'](){const _0x37d8dd=_0x5bb7a4,_0x215f85=()=>{const _0x2f840d=_0x4081;this[_0x2f840d(0x323)]||this[_0x2f840d(0x328)]();},_0x22f093=()=>{const _0x1dc8d9=_0x4081;this[_0x1dc8d9(0x323)]||document[_0x1dc8d9(0x47b)]===_0x1dc8d9(0x2a8)||this['reconnect']();};window[_0x37d8dd(0x2ab)]('online',_0x215f85),document[_0x37d8dd(0x2ab)](_0x37d8dd(0x1f1),_0x22f093);}['_tryReconnect'](){const _0x54ae29=_0x5bb7a4;var _0x1c523d;const _0x5485fe=this[_0x54ae29(0x24b)],_0x68232a=this['_configService'][_0x54ae29(0x447)](ie),_0x410898=_0x5485fe===0x0?0x0:((_0x1c523d=_0x68232a==null?void 0x0:_0x68232a[_0x54ae29(0x306)])!=null?_0x1c523d:mr)*0x2**_0x5485fe;this[_0x54ae29(0x279)]=window['setTimeout'](()=>{const _0x3edfe7=_0x54ae29;clearTimeout(this[_0x3edfe7(0x279)]),this[_0x3edfe7(0x279)]=null,this['_tryEnsureSocket']();},_0x410898),this[_0x54ae29(0x24b)]+=0x1;}[_0x5bb7a4(0x2f0)](_0x41cf33,_0x4539b1){const _0xcb3279=_0x5bb7a4,{cmd:_0xa1399a}=_0x4539b1;_0xa1399a===W[_0xcb3279(0x183)]&&!this['_socketReady']&&(_0x41cf33[_0xcb3279(0x2a3)]=_0x4539b1[_0xcb3279(0x2d5)][_0xcb3279(0x2a3)],this['_socket$'][_0xcb3279(0x3ff)](_0x41cf33),this[_0xcb3279(0x281)][_0xcb3279(0x3ff)](ve['ONLINE']),this[_0xcb3279(0x33d)]=!0x0,this[_0xcb3279(0x553)]=null),_0xa1399a===W['HEARTBEAT']&&this[_0xcb3279(0x344)](),this['_rescheduleHeartbeat']();}[_0x5bb7a4(0x20d)](){const _0x9ea9a5=_0x5bb7a4;var _0x565efe;this[_0x9ea9a5(0x296)](),this['_sendHeartbeatTimer']=window[_0x9ea9a5(0x273)](()=>this[_0x9ea9a5(0x2e0)](),(_0x565efe=this[_0x9ea9a5(0x23e)][_0x9ea9a5(0x447)](fr))!=null?_0x565efe:vr);}[_0x5bb7a4(0x2e0)](){const _0x3f47ab=_0x5bb7a4;this['_socket'][_0x3f47ab(0x45a)]({'cmd':W['HEARTBEAT']}),this[_0x3f47ab(0x1a9)]();}[_0x5bb7a4(0x1a9)](){const _0x3de223=_0x5bb7a4;var _0x52a84c;this[_0x3de223(0x239)]=window[_0x3de223(0x273)](()=>this[_0x3de223(0x1ef)](),(_0x52a84c=this[_0x3de223(0x23e)][_0x3de223(0x447)](bi))!=null?_0x52a84c:Ti);}[_0x5bb7a4(0x296)](){const _0x103a15=_0x5bb7a4;this[_0x103a15(0x1d3)]!=null&&(clearTimeout(this['_sendHeartbeatTimer']),this['_sendHeartbeatTimer']=null);}[_0x5bb7a4(0x344)](){const _0x57554c=_0x5bb7a4;this[_0x57554c(0x239)]!=null&&(clearTimeout(this[_0x57554c(0x239)]),this[_0x57554c(0x239)]=null);}};Ae=Fr([je(0x0,_0x22a3e1(_0x4c5160)),je(0x1,_0x22a3e1(_0x1fdc1b)),je(0x2,_0x38087f),je(0x3,_0x3efec9),je(0x4,_0x2bb536),je(0x5,Oi)],Ae);const Y=[];for(let i=0x0;i<0x100;++i)Y[_0x5bb7a4(0x433)]((i+0x100)[_0x5bb7a4(0x2e5)](0x10)[_0x5bb7a4(0x3e2)](0x1));function Vr(_0x165e12,_0x5805ca=0x0){const _0x189db9=_0x5bb7a4;return(Y[_0x165e12[_0x5805ca+0x0]]+Y[_0x165e12[_0x5805ca+0x1]]+Y[_0x165e12[_0x5805ca+0x2]]+Y[_0x165e12[_0x5805ca+0x3]]+'-'+Y[_0x165e12[_0x5805ca+0x4]]+Y[_0x165e12[_0x5805ca+0x5]]+'-'+Y[_0x165e12[_0x5805ca+0x6]]+Y[_0x165e12[_0x5805ca+0x7]]+'-'+Y[_0x165e12[_0x5805ca+0x8]]+Y[_0x165e12[_0x5805ca+0x9]]+'-'+Y[_0x165e12[_0x5805ca+0xa]]+Y[_0x165e12[_0x5805ca+0xb]]+Y[_0x165e12[_0x5805ca+0xc]]+Y[_0x165e12[_0x5805ca+0xd]]+Y[_0x165e12[_0x5805ca+0xe]]+Y[_0x165e12[_0x5805ca+0xf]])[_0x189db9(0x163)]();}let Nt;const Gr=new Uint8Array(0x10);function Yr(){const _0x52dc0b=_0x5bb7a4;if(!Nt){if(typeof crypto>'u'||!crypto[_0x52dc0b(0x342)])throw new Error(_0x52dc0b(0x39e));Nt=crypto[_0x52dc0b(0x342)]['bind'](crypto);}return Nt(Gr);}const Kr=typeof crypto<'u'&&crypto['randomUUID']&&crypto['randomUUID'][_0x5bb7a4(0x3ef)](crypto),js={'randomUUID':Kr};function zr(_0x3e344f,_0x2f2b14,_0x52a307){const _0x5e4eae=_0x5bb7a4;if(js[_0x5e4eae(0x335)]&&!_0x2f2b14&&!_0x3e344f)return js[_0x5e4eae(0x335)]();_0x3e344f=_0x3e344f||{};const _0x33e9d1=_0x3e344f[_0x5e4eae(0x453)]||(_0x3e344f[_0x5e4eae(0x2e1)]||Yr)();return _0x33e9d1[0x6]=_0x33e9d1[0x6]&0xf|0x40,_0x33e9d1[0x8]=_0x33e9d1[0x8]&0x3f|0x80,Vr(_0x33e9d1);}var qr=Object['defineProperty'],Xr=Object[_0x5bb7a4(0x4e4)],Jr=(_0x37e58d,_0x16ee5a,_0x2c5d8b,_0x3ea139)=>{const _0x34035e=_0x5bb7a4;for(var _0x4c1fd3=_0x3ea139>0x1?void 0x0:_0x3ea139?Xr(_0x16ee5a,_0x2c5d8b):_0x16ee5a,_0x99d74d=_0x37e58d[_0x34035e(0x282)]-0x1,_0x215e77;_0x99d74d>=0x0;_0x99d74d--)(_0x215e77=_0x37e58d[_0x99d74d])&&(_0x4c1fd3=(_0x3ea139?_0x215e77(_0x16ee5a,_0x2c5d8b,_0x4c1fd3):_0x215e77(_0x4c1fd3))||_0x4c1fd3);return _0x3ea139&&_0x4c1fd3&&qr(_0x16ee5a,_0x2c5d8b,_0x4c1fd3),_0x4c1fd3;},At=(_0x185651,_0xa4d28)=>(_0x3e906d,_0x5784f0)=>_0xa4d28(_0x3e906d,_0x5784f0,_0x185651);let ft=class{constructor(_0x5d79f2,_0x20e8aa,_0x477005){const _0x26cdf1=_0x5bb7a4;this[_0x26cdf1(0x338)]=_0x5d79f2,this[_0x26cdf1(0x1c5)]=_0x20e8aa,this[_0x26cdf1(0x262)]=_0x477005;}['transformIMECache'](_0x9d1624){const _0x20cc54=_0x5bb7a4;this['_transformUndoRedoStack'](_0x9d1624),this[_0x20cc54(0x1d9)](_0x9d1624);}['transformRemoteChangeset'](_0x23f3bf){const _0x3a6777=_0x5bb7a4,{unitID:_0x4bdd38}=_0x23f3bf,_0x380cc9=this[_0x3a6777(0x262)][_0x3a6777(0x177)](_0x4bdd38)[_0x3a6777(0x47c)](_0x4a315f),{redoCache:_0x2c2687}=_0x380cc9[_0x3a6777(0x222)]();if(_0x2c2687[_0x3a6777(0x282)]===0x0)return _0x23f3bf;let _0x1fbfe0=_0x41d014[_0x3a6777(0x1d2)](_0x23f3bf[_0x3a6777(0x47f)][0x0]);for(let _0x3a297a=0x0;_0x3a297a<_0x2c2687[_0x3a6777(0x282)];_0x3a297a++){const _0x1aec67={'id':_0x3a6777(0x557),'params':{..._0x2c2687[_0x3a297a]}},_0x4d467c=this[_0x3a6777(0x1c5)][_0x3a6777(0x4f0)](_0x1fbfe0,_0x1aec67,!0x1);if(_0x35b5b8(_0x4d467c))throw _0x4d467c[_0x3a6777(0x17b)];_0x1fbfe0=_0x4d467c[_0x3a6777(0x40a)];}return{..._0x41d014['deepClone'](_0x23f3bf),'mutations':[_0x1fbfe0]};}[_0x5bb7a4(0x1a4)](_0x396b6b){const _0x5e7f68=_0x5bb7a4,{unitID:_0x58840e}=_0x396b6b,_0x172e6a=this['_renderManagerService'][_0x5e7f68(0x177)](_0x58840e)['with'](_0x4a315f),{undoCache:_0x4d517b,redoCache:_0x1b1c91}=_0x172e6a[_0x5e7f68(0x222)]();if(_0x4d517b[_0x5e7f68(0x282)]===0x0||_0x1b1c91['length']===0x0)return;const _0xe93a36=[],_0x5efcee=[];let _0x458b92=_0x41d014[_0x5e7f68(0x1d2)](_0x396b6b['mutations'][0x0]),_0x1d9cd0=_0x41d014[_0x5e7f68(0x1d2)](_0x396b6b['mutations'][0x0]);for(let _0x8edd88=_0x4d517b['length']-0x1;_0x8edd88>=0x0;_0x8edd88--){const _0xfb9827={'id':_0x5e7f68(0x557),'params':{..._0x4d517b[_0x8edd88]}},_0x1ca1b2={'id':_0x5e7f68(0x557),'params':{..._0x1b1c91[_0x8edd88]}},_0x36c076=this[_0x5e7f68(0x1c5)][_0x5e7f68(0x4f0)](_0x458b92,_0xfb9827,!0x1),_0x5c1669=this[_0x5e7f68(0x1c5)][_0x5e7f68(0x4f0)](_0x1d9cd0,_0x1ca1b2,!0x1);if(_0x35b5b8(_0x36c076))throw _0x36c076['error'];if(_0x35b5b8(_0x5c1669))throw _0x5c1669[_0x5e7f68(0x17b)];_0xe93a36[_0x5e7f68(0x32b)](_0x36c076[_0x5e7f68(0x4d6)]['params']),_0x5efcee[_0x5e7f68(0x32b)](_0x5c1669[_0x5e7f68(0x4d6)]['params']),_0x458b92=_0x36c076[_0x5e7f68(0x40a)],_0x1d9cd0=_0x5c1669[_0x5e7f68(0x40a)];}_0x172e6a['setUndoRedoMutationParamsCache']({'undoCache':_0xe93a36,'redoCache':_0x5efcee});}[_0x5bb7a4(0x1d9)](_0x161188){const _0x5179b0=_0x5bb7a4,{unitID:_0x78b57b}=_0x161188,_0x24fba6=this['_renderManagerService']['getRenderById'](_0x78b57b)[_0x5179b0(0x47c)](_0x4a315f),_0x23fc7c=_0x24fba6[_0x5179b0(0x341)]();if(_0x23fc7c==null)return;const _0x54ba53=[{'id':_0x5179b0(0x557),'params':{'unitId':_0x161188[_0x5179b0(0x4c4)],'actions':null,'textRanges':[_0x23fc7c]}}],_0x553464=this[_0x5179b0(0x1c5)]['transformMutationsWithChangeset'](_0x161188,_0x54ba53);if(!_0x5f43ea(_0x553464))throw _0x553464['error'];const _0x3b9ad3=_0x553464[_0x5179b0(0x4d6)][0x0][_0x5179b0(0x3d9)]['textRanges'];Array[_0x5179b0(0x2f4)](_0x3b9ad3)&&_0x3b9ad3[_0x5179b0(0x282)]&&_0x24fba6[_0x5179b0(0x2b6)](_0x3b9ad3[0x0]);}};ft=Jr([At(0x0,_0x22a3e1(_0x4c5160)),At(0x1,_0x2db4c4),At(0x2,_0x31d8f9)],ft);var Zr=Object[_0x5bb7a4(0x42b)],Qr=Object[_0x5bb7a4(0x4e4)],eo=(_0x1415a8,_0x566779,_0x301e25,_0x26a44f)=>{const _0x2d4861=_0x5bb7a4;for(var _0x157122=_0x26a44f>0x1?void 0x0:_0x26a44f?Qr(_0x566779,_0x301e25):_0x566779,_0x5a585c=_0x1415a8[_0x2d4861(0x282)]-0x1,_0x37826c;_0x5a585c>=0x0;_0x5a585c--)(_0x37826c=_0x1415a8[_0x5a585c])&&(_0x157122=(_0x26a44f?_0x37826c(_0x566779,_0x301e25,_0x157122):_0x37826c(_0x157122))||_0x157122);return _0x26a44f&&_0x157122&&Zr(_0x566779,_0x301e25,_0x157122),_0x157122;},Xe=(_0x24928f,_0x47d195)=>(_0x30d281,_0x41dbc6)=>_0x47d195(_0x30d281,_0x41dbc6,_0x24928f);let q=class extends _0x1caa36{constructor(_0xdf690c,_0x84f84d,_0x37f2f1,_0x2067bc,_0x2e91ec){const _0x535338=_0x5bb7a4;super(),g(this,_0x535338(0x36a),new Map()),g(this,_0x535338(0x2f2),new Map()),g(this,_0x535338(0x318),!0x1),(this[_0x535338(0x23e)]=_0xdf690c,this[_0x535338(0x27f)]=_0x84f84d,this['_beforeCloseService']=_0x37f2f1,this['_localeService']=_0x2067bc,this['_revisionService']=_0x2e91ec,this['_setupBeforeClosingHandler']());}['disableLocalCache'](){this['_disabled']=!0x0;}[_0x5bb7a4(0x3ca)](){this['_disabled']=!0x1;}[_0x5bb7a4(0x4d2)](){const _0x4b4066=_0x5bb7a4;this[_0x4b4066(0x550)]()[_0x4b4066(0x40e)](()=>super[_0x4b4066(0x4d2)]());}async['loadOfflineData'](_0x341984){const _0x558e66=_0x5bb7a4;return this[_0x558e66(0x318)]?null:this[_0x558e66(0x27f)][_0x558e66(0x400)](Bs(_0x341984));}async[_0x5bb7a4(0x16a)](_0x1cd4e5,_0x1bb653){const _0x4bb3df=_0x5bb7a4;return!!this[_0x4bb3df(0x27f)]['setItem'](_0x1cd4e5,_0x1bb653);}[_0x5bb7a4(0x21f)](_0x4647fa,_0x44a4f7,_0x30e7b7,_0x10ef7f){const _0x594952=_0x5bb7a4,_0x2fac64=this[_0x594952(0x54c)][_0x594952(0x3f5)](_0x4647fa);this[_0x594952(0x36a)][_0x594952(0x441)](_0x4647fa,{'unitID':_0x4647fa,'type':_0x44a4f7,'awaitingChangeset':_0x30e7b7,'mutations':_0x10ef7f,'rev':_0x2fac64}),this[_0x594952(0x2f2)][_0x594952(0x2e6)](_0x4647fa)||this['_scheduleSaving'](_0x4647fa);}[_0x5bb7a4(0x576)](_0x144e0c){const _0x10d236=_0x5bb7a4,_0x492f2f=this[_0x10d236(0x2ef)]();_0x492f2f===0x0?this[_0x10d236(0x3a2)](_0x144e0c):this[_0x10d236(0x2f2)][_0x10d236(0x441)](_0x144e0c,setTimeout(()=>this[_0x10d236(0x3a2)](_0x144e0c),_0x492f2f));}[_0x5bb7a4(0x2ef)](){const _0x2a567d=_0x5bb7a4;var _0x57fb1d;return(_0x57fb1d=this[_0x2a567d(0x23e)][_0x2a567d(0x447)](Sr))!=null?_0x57fb1d:Ir;}[_0x5bb7a4(0x3a2)](_0xf9d184){const _0x1b9cae=_0x5bb7a4,_0x50d843=this[_0x1b9cae(0x2f2)][_0x1b9cae(0x4f7)](_0xf9d184);return _0x50d843!==void 0x0&&window['clearTimeout'](_0x50d843),this['_localStorageService'][_0x1b9cae(0x411)](Bs(_0xf9d184),this[_0x1b9cae(0x36a)][_0x1b9cae(0x4f7)](_0xf9d184))[_0x1b9cae(0x40e)](()=>this[_0x1b9cae(0x2f2)][_0x1b9cae(0x3d8)](_0xf9d184));}async[_0x5bb7a4(0x550)](){const _0x592891=_0x5bb7a4,_0x3c6052=[];this[_0x592891(0x2f2)]['forEach']((_0x30afc7,_0x4e4298)=>{const _0x13be5e=_0x592891;window['clearTimeout'](_0x30afc7),_0x3c6052[_0x13be5e(0x433)](this['_saveCache'](_0x4e4298)[_0x13be5e(0x40e)](()=>{const _0x23f3c1=_0x13be5e;this[_0x23f3c1(0x2f2)][_0x23f3c1(0x3d8)](_0x4e4298);}));}),await Promise[_0x592891(0x231)](_0x3c6052);}[_0x5bb7a4(0x4e2)](){const _0x3955c4=_0x5bb7a4;this[_0x3955c4(0x368)](this[_0x3955c4(0x414)]['registerBeforeClose'](()=>{const _0x1bf112=_0x3955c4;if(this['_saveTaskMap'][_0x1bf112(0x35a)])return this[_0x1bf112(0x4ab)]['t'](_0x1bf112(0x17c));}));}};q=eo([Xe(0x0,_0x2bb536),Xe(0x1,_0x21f678),Xe(0x2,_0x3e0747),Xe(0x3,_0x22a3e1(_0x1fdc1b)),Xe(0x4,_0x22a3e1(_0x25150b))],q);function Bs(_0x259c3d){const _0x3648b6=_0x5bb7a4;return _0x3648b6(0x1ce)+_0x259c3d;}var to=Object[_0x5bb7a4(0x42b)],so=Object[_0x5bb7a4(0x4e4)],io=(_0x4a9d00,_0x3f95b7,_0xc67a32,_0x7e6241)=>{const _0x255234=_0x5bb7a4;for(var _0x1ced74=_0x7e6241>0x1?void 0x0:_0x7e6241?so(_0x3f95b7,_0xc67a32):_0x3f95b7,_0x561c76=_0x4a9d00[_0x255234(0x282)]-0x1,_0x1021f2;_0x561c76>=0x0;_0x561c76--)(_0x1021f2=_0x4a9d00[_0x561c76])&&(_0x1ced74=(_0x7e6241?_0x1021f2(_0x3f95b7,_0xc67a32,_0x1ced74):_0x1021f2(_0x1ced74))||_0x1ced74);return _0x7e6241&&_0x1ced74&&to(_0x3f95b7,_0xc67a32,_0x1ced74),_0x1ced74;},Mt=(_0x335613,_0x1f12ef)=>(_0x30fbcb,_0x4161b0)=>_0x1f12ef(_0x30fbcb,_0x4161b0,_0x335613);function no(_0x4a6464){const _0x1c7fc1=_0x5bb7a4,{unitID:_0x536e85,mutations:_0x4864bb}=_0x4a6464;return{'unitId':_0x536e85,'subUnitId':_0x4864bb[0x0][_0x1c7fc1(0x3d9)][_0x1c7fc1(0x1c9)]};}let vt=class{constructor(_0x3177d2,_0x558287,_0x54aa83){const _0x45bcb7=_0x5bb7a4;this[_0x45bcb7(0x338)]=_0x3177d2,this['_transformService']=_0x558287,this['_instanceService']=_0x54aa83;}[_0x5bb7a4(0x1a5)](_0x4d254d){const _0x5df2dd=_0x5bb7a4;var _0x400cf8,_0x6fdd09,_0x32dc67,_0x2424db;const _0x3785e5=this['_injector'][_0x5df2dd(0x4f7)](_0x11487d),{unitId:_0x1b6ad7,subUnitId:_0x30f9a0}=no(_0x4d254d),_0x24c8f9=_0x3785e5[_0x5df2dd(0x3a3)](_0x1b6ad7)[_0x5df2dd(0x171)](),_0x205ddc=(_0x6fdd09=(_0x400cf8=this[_0x5df2dd(0x194)][_0x5df2dd(0x406)](_0x1b6ad7))==null?void 0x0:_0x400cf8[_0x5df2dd(0x475)]())==null?void 0x0:_0x6fdd09['getSheetId']();if(_0x24c8f9[_0x5df2dd(0x282)]===0x0||!_0x1b6ad7||!_0x30f9a0)return;const _0x5bb8c2=[{'id':_0x544c74['id'],'params':{'unitId':_0x1b6ad7,'subUnitId':_0x205ddc,'selections':_0x41d014[_0x5df2dd(0x1d2)](_0x24c8f9)}}],_0x3054f4=this[_0x5df2dd(0x1c5)][_0x5df2dd(0x428)](_0x4d254d,_0x5bb8c2);if(!_0x5f43ea(_0x3054f4))throw _0x3054f4[_0x5df2dd(0x17b)];const _0x46e6d0=(_0x2424db=(_0x32dc67=_0x3054f4[_0x5df2dd(0x4d6)][0x0])==null?void 0x0:_0x32dc67['params'])==null?void 0x0:_0x2424db[_0x5df2dd(0x45d)];if(Array[_0x5df2dd(0x2f4)](_0x46e6d0)&&_0x46e6d0['length']){if(_0x46e6d0[_0x5df2dd(0x282)]===_0x5bb8c2[0x0][_0x5df2dd(0x3d9)][_0x5df2dd(0x45d)]['length']&&_0x46e6d0[_0x5df2dd(0x371)]((_0x5b98e2,_0x5cad59)=>_0x49e4db[_0x5df2dd(0x485)](_0x5b98e2[_0x5df2dd(0x2da)],_0x5bb8c2[0x0][_0x5df2dd(0x3d9)][_0x5df2dd(0x45d)][_0x5cad59][_0x5df2dd(0x2da)])))return;this['_injector'][_0x5df2dd(0x4f7)](_0x1e58f0)['executeCommand'](_0x544c74['id'],{'unitId':_0x1b6ad7,'subUnitId':_0x205ddc,'selections':_0x46e6d0});}}};vt=io([Mt(0x0,_0x22a3e1(_0x4c5160)),Mt(0x1,_0x2db4c4),Mt(0x2,_0x2e0534)],vt);const Rt=_0x5ce9a5('univer-pro.collaboration-client.single-active-unit-service');var Di=(_0x2632d8=>(_0x2632d8[_0x2632d8[_0x5bb7a4(0x1ee)]=0x0]=_0x5bb7a4(0x1ee),_0x2632d8[_0x2632d8['OTHER_CLIENTS_EDITING']=0x1]=_0x5bb7a4(0x1c1),_0x2632d8))(Di||{});const ks=0x7530,Ws=_0x5bb7a4(0x22e);class ro extends _0x1caa36{constructor(){const _0x4ca5a5=_0x5bb7a4;super(),g(this,'_id',_0x41d014[_0x4ca5a5(0x4d1)]()),g(this,'_selfUnitIDs',new Set()),g(this,'_unitOnClients',new Map()),g(this,_0x4ca5a5(0x367),null),g(this,'_clearOtherTimers',new Map()),g(this,'_unitStatus',new Map()),this[_0x4ca5a5(0x515)]();}[_0x5bb7a4(0x4d2)](){const _0x1b9cfc=_0x5bb7a4;super[_0x1b9cfc(0x4d2)](),this['_clearOtherTimers']['forEach']((_0x5607ad,_0x415a54)=>this[_0x1b9cfc(0x276)](_0x415a54)),this[_0x1b9cfc(0x367)]&&window[_0x1b9cfc(0x537)](this[_0x1b9cfc(0x367)]);}['getUnitStatus$'](_0x2b3f2c){const _0x6fea81=_0x5bb7a4;return this['_ensureSubject'](_0x2b3f2c)[_0x6fea81(0x3f1)](_0x2abb77());}['editingUnit'](_0x8b6095){const _0x114b05=_0x5bb7a4;this[_0x114b05(0x257)][_0x114b05(0x35a)]===0x0&&this[_0x114b05(0x2f9)](),this[_0x114b05(0x257)]['add'](_0x8b6095),this[_0x114b05(0x1c7)]({'type':0x0,'memberID':this[_0x114b05(0x452)],'unitIDs':[_0x8b6095],'isForwarded':!0x1});}['disposeUnit'](_0x1989f9){const _0x24efdd=_0x5bb7a4;this[_0x24efdd(0x257)][_0x24efdd(0x3d8)](_0x1989f9),this[_0x24efdd(0x257)][_0x24efdd(0x35a)]===0x0&&this[_0x24efdd(0x367)]&&window[_0x24efdd(0x537)](this['_heartbeatTimer']);}['_init'](){const _0x4fb89a=_0x5bb7a4;this[_0x4fb89a(0x368)](_0x7884da(_0x565a18(window,_0x4fb89a(0x3a5))[_0x4fb89a(0x519)](_0x1b1e28=>{const _0x317661=_0x4fb89a;if(_0x1b1e28[_0x317661(0x275)]!==Ws||!_0x1b1e28['newValue'])return;const _0x2ba492=JSON[_0x317661(0x57c)](_0x1b1e28[_0x317661(0x182)]);this[_0x317661(0x3bb)](_0x2ba492);}))),window['addEventListener']('unload',()=>this['_send']({'type':0x1,'memberID':this[_0x4fb89a(0x452)],'unitIDs':Array['from'](this[_0x4fb89a(0x257)])}));}[_0x5bb7a4(0x3bb)](_0x411ea0){const _0x55d2a2=_0x5bb7a4;switch(_0x411ea0[_0x55d2a2(0x27e)]){case 0x0:this['_handleJoinEvent'](_0x411ea0);break;case 0x1:this[_0x55d2a2(0x1b4)](_0x411ea0);break;case 0x2:this[_0x55d2a2(0x383)](_0x411ea0);break;}}[_0x5bb7a4(0x340)](_0x1795ae){const _0x2da1a9=_0x5bb7a4,{unitIDs:_0x4626a6,memberID:_0x1bf1e7,isForwarded:_0x583ddf}=_0x1795ae;_0x4626a6['forEach'](_0x337ff9=>{const _0x273ba8=_0x4081;if(!_0x583ddf&&this[_0x273ba8(0x2f6)][_0x273ba8(0x2e6)](_0x337ff9)&&this['_ensureSubject'](_0x337ff9)['next'](0x1),!this[_0x273ba8(0x2f6)]['has'](_0x337ff9)||!this[_0x273ba8(0x2f6)][_0x273ba8(0x4f7)](_0x337ff9)['has'](_0x1bf1e7)){const _0x16f3ec=this[_0x273ba8(0x2f6)][_0x273ba8(0x4f7)](_0x337ff9)||new Set();_0x16f3ec[_0x273ba8(0x570)](_0x1bf1e7),this[_0x273ba8(0x2f6)][_0x273ba8(0x441)](_0x337ff9,_0x16f3ec),this[_0x273ba8(0x4b9)](_0x1bf1e7);}}),_0x583ddf||this[_0x2da1a9(0x1c7)]({'type':0x0,'memberID':this['_id'],'unitIDs':[...this[_0x2da1a9(0x257)]],'isForwarded':!0x0});}['_scheduleClearOtherTimer'](_0x3a9414){const _0x58548f=_0x5bb7a4;this[_0x58548f(0x276)](_0x3a9414);const _0x4f5c91=window[_0x58548f(0x273)](()=>{const _0x1e234a=_0x58548f;this[_0x1e234a(0x2f6)][_0x1e234a(0x312)](_0x3a29f3=>{const _0xfdfbee=_0x1e234a;_0x3a29f3[_0xfdfbee(0x3d8)](_0x3a9414);});},ks*0x2);this[_0x58548f(0x355)]['set'](_0x3a9414,_0x4f5c91);}['_removeClearOtherTimer'](_0x3663a4){const _0x5105be=_0x5bb7a4;if(this[_0x5105be(0x355)]['has'](_0x3663a4)){const _0xa85783=this[_0x5105be(0x355)][_0x5105be(0x4f7)](_0x3663a4);_0xa85783&&window['clearTimeout'](_0xa85783),this[_0x5105be(0x355)][_0x5105be(0x441)](_0x3663a4,null);}}['_handleLeaveEvent'](_0x514da3){const _0x40a656=_0x5bb7a4,{memberID:_0x33df26,unitIDs:_0x118a30}=_0x514da3;_0x118a30[_0x40a656(0x312)](_0xe713bd=>{const _0x4ff75c=_0x40a656;var _0x13cf83;const _0x43b8dc=this[_0x4ff75c(0x2f6)][_0x4ff75c(0x4f7)](_0xe713bd);_0x43b8dc&&(_0x43b8dc[_0x4ff75c(0x3d8)](_0x33df26),(_0x13cf83=this[_0x4ff75c(0x51d)](_0xe713bd))==null||_0x13cf83[_0x4ff75c(0x3ff)](_0x43b8dc[_0x4ff75c(0x35a)]===0x0?0x0:0x1));}),this[_0x40a656(0x276)](_0x33df26);}['_handleHeartbeatEvent'](_0x2b2a5b){const _0x442df8=_0x5bb7a4;this['_scheduleClearOtherTimer'](_0x2b2a5b[_0x442df8(0x2a3)]);}[_0x5bb7a4(0x1c7)](_0x5119e0){const _0x84a86c=_0x5bb7a4;localStorage[_0x84a86c(0x411)](Ws,JSON[_0x84a86c(0x303)](_0x5119e0));}[_0x5bb7a4(0x2f9)](){const _0x4d207e=_0x5bb7a4;this[_0x4d207e(0x367)]=window[_0x4d207e(0x215)](()=>{const _0x1deb54=_0x4d207e;this[_0x1deb54(0x1c7)]({'type':0x2,'memberID':this[_0x1deb54(0x452)]});},ks);}[_0x5bb7a4(0x51d)](_0x351e5d){const _0x5305e1=_0x5bb7a4;return this[_0x5305e1(0x427)][_0x5305e1(0x2e6)](_0x351e5d)||this['_unitStatus'][_0x5305e1(0x441)](_0x351e5d,new _0x348a88(0x0)),this['_unitStatus'][_0x5305e1(0x4f7)](_0x351e5d);}}var oo=Object[_0x5bb7a4(0x42b)],ao=Object['getOwnPropertyDescriptor'],co=(_0x113839,_0x283493,_0x275afd,_0x38ae04)=>{const _0x50e246=_0x5bb7a4;for(var _0x4d26c8=_0x38ae04>0x1?void 0x0:_0x38ae04?ao(_0x283493,_0x275afd):_0x283493,_0x32ba13=_0x113839[_0x50e246(0x282)]-0x1,_0x2c1fc2;_0x32ba13>=0x0;_0x32ba13--)(_0x2c1fc2=_0x113839[_0x32ba13])&&(_0x4d26c8=(_0x38ae04?_0x2c1fc2(_0x283493,_0x275afd,_0x4d26c8):_0x2c1fc2(_0x4d26c8))||_0x4d26c8);return _0x38ae04&&_0x4d26c8&&oo(_0x283493,_0x275afd,_0x4d26c8),_0x4d26c8;},xt=(_0x28c068,_0x114171)=>(_0x2280b8,_0x2b4842)=>_0x114171(_0x2280b8,_0x2b4842,_0x28c068);let mt=class{constructor(_0x15834c,_0x1e64de,_0x433256){const _0x3d186a=_0x5bb7a4;this[_0x3d186a(0x338)]=_0x15834c,this[_0x3d186a(0x1c5)]=_0x1e64de,this['_docStateChangeManagerService']=_0x433256;}[_0x5bb7a4(0x302)](_0x2e88ef){const _0x38a62b=_0x5bb7a4;this[_0x38a62b(0x37b)](_0x2e88ef);}['transformRemoteChangeset'](_0x51599d){const _0x17b33e=_0x5bb7a4,{unitID:_0x12f027}=_0x51599d,{collaboration:_0x25bd68}=this[_0x17b33e(0x4de)][_0x17b33e(0x31a)](_0x12f027);if(_0x25bd68[_0x17b33e(0x282)]===0x0)return _0x51599d;let _0x367bb1=_0x41d014[_0x17b33e(0x1d2)](_0x51599d[_0x17b33e(0x47f)][0x0]);for(let _0x5e723f=0x0;_0x5e723f<_0x25bd68[_0x17b33e(0x282)];_0x5e723f++){const _0x245a8b={'id':_0x17b33e(0x557),'params':{'unitId':_0x25bd68[_0x5e723f][_0x17b33e(0x55d)],..._0x25bd68[_0x5e723f][_0x17b33e(0x1bf)]}},_0x208c70=this['_transformService'][_0x17b33e(0x4f0)](_0x367bb1,_0x245a8b,!0x1);if(_0x35b5b8(_0x208c70))throw _0x208c70['error'];_0x367bb1=_0x208c70[_0x17b33e(0x40a)];}return{..._0x41d014[_0x17b33e(0x1d2)](_0x51599d),'mutations':[_0x367bb1]};}[_0x5bb7a4(0x37b)](_0x4479b8){const _0x4b8aa7=_0x5bb7a4,{unitID:_0x195b9c}=_0x4479b8,{history:_0xe91dbf,collaboration:_0x58cab9}=this['_docStateChangeManagerService'][_0x4b8aa7(0x31a)](_0x195b9c);if(_0xe91dbf[_0x4b8aa7(0x282)]===0x0&&_0x58cab9[_0x4b8aa7(0x282)]===0x0)return;const _0x88a30d=[],_0x483d0c=[];let _0x509bf1=_0x41d014[_0x4b8aa7(0x1d2)](_0x4479b8['mutations'][0x0]),_0x51a9d3=_0x41d014['deepClone'](_0x4479b8[_0x4b8aa7(0x47f)][0x0]);for(let _0x5b2141=_0xe91dbf[_0x4b8aa7(0x282)]-0x1;_0x5b2141>=0x0;_0x5b2141--){const _0x2be9f6={'id':_0x4b8aa7(0x557),'params':{'unitId':_0xe91dbf[_0x5b2141][_0x4b8aa7(0x55d)],..._0xe91dbf[_0x5b2141][_0x4b8aa7(0x4b1)]}},_0x2024e2={'id':_0x4b8aa7(0x557),'params':{'unitId':_0xe91dbf[_0x5b2141][_0x4b8aa7(0x55d)],..._0xe91dbf[_0x5b2141][_0x4b8aa7(0x1bf)]}},_0x3f3ffa=this[_0x4b8aa7(0x1c5)]['transformMutation'](_0x509bf1,_0x2be9f6,!0x1),_0x9769f1=this[_0x4b8aa7(0x1c5)][_0x4b8aa7(0x4f0)](_0x51a9d3,_0x2024e2,!0x1);if(_0x35b5b8(_0x3f3ffa))throw _0x3f3ffa[_0x4b8aa7(0x17b)];if(_0x35b5b8(_0x9769f1))throw _0x9769f1['error'];_0x88a30d[_0x4b8aa7(0x32b)]({..._0xe91dbf[_0x5b2141],'undoState':_0x3f3ffa[_0x4b8aa7(0x4d6)]['params'],'redoState':_0x9769f1[_0x4b8aa7(0x4d6)]['params']}),_0x509bf1=_0x3f3ffa['m1Prime'],_0x51a9d3=_0x9769f1[_0x4b8aa7(0x40a)];}_0x509bf1=_0x41d014[_0x4b8aa7(0x1d2)](_0x4479b8[_0x4b8aa7(0x47f)][0x0]),_0x51a9d3=_0x41d014[_0x4b8aa7(0x1d2)](_0x4479b8[_0x4b8aa7(0x47f)][0x0]);for(let _0x5194d1=_0x58cab9['length']-0x1;_0x5194d1>=0x0;_0x5194d1--){const _0x1f5684={'id':_0x4b8aa7(0x557),'params':{'unitId':_0x58cab9[_0x5194d1][_0x4b8aa7(0x55d)],..._0x58cab9[_0x5194d1]['undoState']}},_0xc275a7={'id':'doc.mutation.rich-text-editing','params':{'unitId':_0x58cab9[_0x5194d1][_0x4b8aa7(0x55d)],..._0x58cab9[_0x5194d1][_0x4b8aa7(0x1bf)]}},_0x1b97a3=this[_0x4b8aa7(0x1c5)][_0x4b8aa7(0x4f0)](_0x509bf1,_0x1f5684,!0x1),_0x236200=this[_0x4b8aa7(0x1c5)][_0x4b8aa7(0x4f0)](_0x51a9d3,_0xc275a7,!0x1);if(_0x35b5b8(_0x1b97a3))throw _0x1b97a3[_0x4b8aa7(0x17b)];if(_0x35b5b8(_0x236200))throw _0x236200['error'];_0x483d0c['unshift']({..._0x58cab9[_0x5194d1],'undoState':_0x1b97a3[_0x4b8aa7(0x4d6)][_0x4b8aa7(0x3d9)],'redoState':_0x236200[_0x4b8aa7(0x4d6)]['params']}),_0x509bf1=_0x1b97a3[_0x4b8aa7(0x40a)],_0x51a9d3=_0x236200[_0x4b8aa7(0x40a)];}this[_0x4b8aa7(0x4de)][_0x4b8aa7(0x32c)](_0x195b9c,{'history':_0x88a30d,'collaboration':_0x483d0c});}};mt=co([xt(0x0,_0x22a3e1(_0x4c5160)),xt(0x1,_0x2db4c4),xt(0x2,_0x22a3e1(_0x1b1fa1))],mt);function Pi(_0x50187b){const _0x514634=_0x5bb7a4;let _0x211ad6='';for(const _0x4e3710 of _0x50187b){const {startOffset:_0x2f6ed5,endOffset:_0x36e5d8,isActive:_0x24043b,rangeType:_0x215c58,segmentId:_0x48d285,segmentPage:_0x4e51fe}=_0x4e3710;_0x211ad6[_0x514634(0x282)]&&(_0x211ad6+=','),_0x211ad6+=_0x2f6ed5+':'+_0x36e5d8+':'+(_0x24043b?'1':'0')+':'+_0x215c58+':'+_0x48d285+':'+_0x4e51fe;}return _0x211ad6;}function ho(_0x568644){const _0x5e64b3=_0x5bb7a4,_0x564df5=_0x568644[_0x5e64b3(0x19d)](','),_0xe56c1d=[];for(const _0x11d6b9 of _0x564df5){const [_0x3eb31e,_0x62c7c4,_0x3187a,_0x2bd807,_0x22b1e1,_0x25dfeb]=_0x11d6b9[_0x5e64b3(0x19d)](':');_0xe56c1d[_0x5e64b3(0x433)]({'startOffset':Number(_0x3eb31e),'endOffset':Number(_0x62c7c4),'collapsed':_0x3eb31e===_0x62c7c4,'isActive':_0x3187a==='1','rangeType':_0x2bd807===_0x569c02[_0x5e64b3(0x211)]?_0x569c02['TEXT']:_0x569c02['RECT'],'segmentId':typeof _0x22b1e1==_0x5e64b3(0x40c)?String(_0x22b1e1):'','segmentPage':Number(_0x25dfeb!=null?_0x25dfeb:-0x1)});}return _0xe56c1d[_0x5e64b3(0x22b)](_0x117789=>_0x117789[_0x5e64b3(0x3d6)])||(_0xe56c1d[0x0][_0x5e64b3(0x3d6)]=!0x0),_0xe56c1d;}class Cs extends _0x177a9e{constructor(){const _0x2a1dff=_0x5bb7a4;super(...arguments),g(this,'_collabCursorState$',new _0x348a88(null)),g(this,_0x2a1dff(0x3e3),this[_0x2a1dff(0x480)][_0x2a1dff(0x1a6)]());}[_0x5bb7a4(0x4be)](_0x54428e){const _0x157282=_0x5bb7a4,{unitID:_0x16f811,memberID:_0x1946b7,textRanges:_0x4aa854}=_0x54428e,_0xf1c90a=Pi(_0x4aa854);if(_0xf1c90a==='')return;const _0xb9a56e={'unitID':_0x16f811,'memberID':_0x1946b7,'selection':_0xf1c90a};this[_0x157282(0x480)][_0x157282(0x3ff)](_0xb9a56e);}}var lo=Object[_0x5bb7a4(0x42b)],_o=Object['getOwnPropertyDescriptor'],uo=(_0x55459c,_0x75ba39,_0x2de080,_0x2fa0fe)=>{const _0x13a3a1=_0x5bb7a4;for(var _0x44f906=_0x2fa0fe>0x1?void 0x0:_0x2fa0fe?_o(_0x75ba39,_0x2de080):_0x75ba39,_0xbb16=_0x55459c[_0x13a3a1(0x282)]-0x1,_0x5eb527;_0xbb16>=0x0;_0xbb16--)(_0x5eb527=_0x55459c[_0xbb16])&&(_0x44f906=(_0x2fa0fe?_0x5eb527(_0x75ba39,_0x2de080,_0x44f906):_0x5eb527(_0x44f906))||_0x44f906);return _0x2fa0fe&&_0x44f906&&lo(_0x75ba39,_0x2de080,_0x44f906),_0x44f906;},Fs=(_0x17adf6,_0x369d93)=>(_0xc17ed5,_0x5a1493)=>_0x369d93(_0xc17ed5,_0x5a1493,_0x17adf6);let pt=class{constructor(_0x120943,_0x705f1a){const _0x54007c=_0x5bb7a4;this[_0x54007c(0x338)]=_0x120943,this[_0x54007c(0x1c5)]=_0x705f1a;}[_0x5bb7a4(0x1a5)](_0x284dc0){const _0x34e9ce=_0x5bb7a4;var _0x5c9fdd;const _0x2b1cbe=this[_0x34e9ce(0x338)][_0x34e9ce(0x4f7)](_0x4ce6e6),_0x5c49b4=(_0x5c9fdd=_0x2b1cbe[_0x34e9ce(0x1c3)]())!=null?_0x5c9fdd:[];if(_0x5c49b4[_0x34e9ce(0x282)]===0x0)return;const _0x2b573a=_0x284dc0[_0x34e9ce(0x4c4)],_0x187a0a=[{'id':'doc.mutation.rich-text-editing','params':{'unitId':_0x2b573a,'actions':null,'textRanges':_0x5c49b4}}],_0x7ea6f6=this['_transformService'][_0x34e9ce(0x428)](_0x284dc0,_0x187a0a);if(!_0x5f43ea(_0x7ea6f6))throw _0x7ea6f6[_0x34e9ce(0x17b)];const _0x1e81ce=_0x7ea6f6[_0x34e9ce(0x4d6)][0x0][_0x34e9ce(0x3d9)][_0x34e9ce(0x2a0)];Array[_0x34e9ce(0x2f4)](_0x1e81ce)&&_0x1e81ce[_0x34e9ce(0x282)]&&_0x2b1cbe[_0x34e9ce(0x2b5)](_0x1e81ce,{'unitId':_0x2b573a,'subUnitId':_0x2b573a},!0x1);}};pt=uo([Fs(0x0,_0x22a3e1(_0x4c5160)),Fs(0x1,_0x2db4c4)],pt);const fo=new Set([_0x2dfe93['id']]);function Vs(_0x1c67c8,_0x2c67d0,_0x46ada1,_0x43d1d8,_0x5bce87){const _0x148b45=_0x5bb7a4;var _0x234556,_0x13e3e0,_0x232e2c,_0x3ee699;const _0x66ae3d=[];for(const _0x430568 of _0x1c67c8)if(fo[_0x148b45(0x2e6)](_0x430568['id'])){if(_0x66ae3d[_0x148b45(0x282)]>0x0)break;_0x66ae3d[_0x148b45(0x433)](_0x430568);break;}else _0x66ae3d['push'](_0x430568);const _0x599c79=(_0x13e3e0=(_0x234556=_0x5bce87[_0x148b45(0x3b9)]())==null?void 0x0:_0x234556[_0x148b45(0x1e3)])!=null?_0x13e3e0:_0x148b45(0x329),_0x59d302=(_0x3ee699=(_0x232e2c=_0x5bce87['getCurrentUser']())==null?void 0x0:_0x232e2c[_0x148b45(0x2a3)])!=null?_0x3ee699:_0x148b45(0x329);return{'changeset':{'unitID':_0x2c67d0,'type':_0x32a7fd(_0x46ada1[_0x148b45(0x17f)](_0x2c67d0)),'baseRev':_0x43d1d8[_0x148b45(0x3f5)](_0x2c67d0),'revision':0x0,'userID':_0x599c79,'memberID':_0x59d302,'mutations':_0x66ae3d},'pendingMutations':_0x1c67c8[_0x148b45(0x3e2)](_0x66ae3d['length'])};}function vo(_0x300272,_0x4b0e30,_0x567380,_0x4f79bc,_0x3e5545){const _0x57d0b0=_0x5bb7a4;var _0x13740f,_0x3ec54a,_0x94178f,_0x3ef86e;const _0x5a9e7f=[_0x300272['reduce']((_0x34a7e0,_0x333702)=>{const _0x3854ed=_0x4081;var _0x34d3b8;const {id:_0x36fada}=_0x34a7e0,{id:_0x691a51,type:_0x35674a}=_0x333702,_0x7dfc7d=(_0x34d3b8=_0x34a7e0[_0x3854ed(0x3d9)])!=null?_0x34d3b8:{'actions':null},_0x325670=_0x333702[_0x3854ed(0x3d9)];if(_0x36fada&&_0x36fada!==_0x691a51)throw new Error(_0x3854ed(0x3a7)+_0x36fada+_0x3854ed(0x47d)+_0x691a51+'.');return{..._0x34a7e0,'id':_0x691a51,'type':_0x35674a,'params':{'unitId':_0x325670['unitId'],'textRanges':_0x325670[_0x3854ed(0x2a0)],'actions':_0x22592d[_0x3854ed(0x310)](_0x7dfc7d['actions'],_0x325670[_0x3854ed(0x37d)])}};},{})],_0x20093c=(_0x3ec54a=(_0x13740f=_0x3e5545['getCurrentUser']())==null?void 0x0:_0x13740f[_0x57d0b0(0x1e3)])!=null?_0x3ec54a:_0x57d0b0(0x329),_0x1a77f1=(_0x3ef86e=(_0x94178f=_0x3e5545[_0x57d0b0(0x3b9)]())==null?void 0x0:_0x94178f[_0x57d0b0(0x2a3)])!=null?_0x3ef86e:_0x57d0b0(0x329);return{'changeset':{'unitID':_0x4b0e30,'type':_0x32a7fd(_0x567380[_0x57d0b0(0x17f)](_0x4b0e30)),'baseRev':_0x4f79bc[_0x57d0b0(0x3f5)](_0x4b0e30),'revision':0x0,'userID':_0x20093c,'memberID':_0x1a77f1,'mutations':_0x5a9e7f},'pendingMutations':[]};}function Ui(_0x21d06c,_0xd49d08){const _0x3986cc=_0x5bb7a4,_0x72621f=new _0x5c726e(0x1);return setTimeout(()=>_0x72621f[_0x3986cc(0x3ff)](_0xd49d08),_0x21d06c),_0x72621f['asObservable']()['pipe'](_0x35f71d(0x1));}const mo={'id':_0x224c7f['id'],'type':_0x5bf26c[_0x5bb7a4(0x233)],'params':{}};var po=Object[_0x5bb7a4(0x42b)],go=Object[_0x5bb7a4(0x4e4)],Le=(_0x39e3d9,_0x3bab2d,_0x493e90,_0x380eef)=>{const _0x536c19=_0x5bb7a4;for(var _0x206a79=_0x380eef>0x1?void 0x0:_0x380eef?go(_0x3bab2d,_0x493e90):_0x3bab2d,_0x24da5c=_0x39e3d9[_0x536c19(0x282)]-0x1,_0xb7e8ac;_0x24da5c>=0x0;_0x24da5c--)(_0xb7e8ac=_0x39e3d9[_0x24da5c])&&(_0x206a79=(_0x380eef?_0xb7e8ac(_0x3bab2d,_0x493e90,_0x206a79):_0xb7e8ac(_0x206a79))||_0x206a79);return _0x380eef&&_0x206a79&&po(_0x3bab2d,_0x493e90,_0x206a79),_0x206a79;},A=(_0x59c37d,_0x3109bd)=>(_0x25270e,_0x1a00d4)=>_0x3109bd(_0x25270e,_0x1a00d4,_0x59c37d),J=(_0x30e597=>(_0x30e597[_0x5bb7a4(0x410)]='not_collab',_0x30e597[_0x5bb7a4(0x50e)]='synced',_0x30e597[_0x5bb7a4(0x4e8)]=_0x5bb7a4(0x28b),_0x30e597[_0x5bb7a4(0x2f3)]=_0x5bb7a4(0x31b),_0x30e597[_0x5bb7a4(0x256)]=_0x5bb7a4(0x2ca),_0x30e597[_0x5bb7a4(0x40b)]='fetch_missing',_0x30e597[_0x5bb7a4(0x287)]=_0x5bb7a4(0x438),_0x30e597[_0x5bb7a4(0x23a)]=_0x5bb7a4(0x4ed),_0x30e597))(J||{});const Ni=0xea60;class $e{constructor(_0xbedce3,_0x676562,_0x20e717,_0x42272f,_0x565360,_0x2719e8,_0x5063c9,_0x141868,_0x129906){const _0x477211=_0x5bb7a4;g(this,'_awaitingChangeset',null),g(this,'_pendingMutations',[]),(this[_0x477211(0x4c4)]=_0xbedce3,this[_0x477211(0x27e)]=_0x676562,this[_0x477211(0x29c)]=_0x565360,this[_0x477211(0x53f)]=_0x2719e8,this[_0x477211(0x4bc)]=_0x5063c9,this[_0x477211(0x54c)]=_0x141868,this[_0x477211(0x46d)]=_0x129906,this[_0x477211(0x364)]=_0x20e717,this['_pendingMutations']=_0x42272f);}['_checkMissing'](_0x4a96d0){const _0x4b5f85=_0x5bb7a4,_0xcde877=this['_revisionService'][_0x4b5f85(0x3f5)](this['unitID']);return _0x4a96d0['revision']>_0xcde877+0x1?(this['_handler'][_0x4b5f85(0x46b)]({'from':_0xcde877,'to':_0x4a96d0['revision']-0x1}),!0x0):!0x1;}[_0x5bb7a4(0x35e)](_0x567601){const _0x53cd8d=_0x5bb7a4;this[_0x53cd8d(0x4bc)]['transformUndoRedo'](this[_0x53cd8d(0x4c4)],_0x567601);}['_transformSelections'](_0x168b85){const _0x31c330=_0x5bb7a4;var _0x2c7084,_0x3a3b1f;(_0x3a3b1f=(_0x2c7084=this[_0x31c330(0x29c)])[_0x31c330(0x432)])==null||_0x3a3b1f[_0x31c330(0x1f6)](_0x2c7084,_0x168b85);}[_0x5bb7a4(0x16c)](_0x3c1eb9){const _0x35c4d7=_0x5bb7a4;var _0x3ea7df,_0x44a01f;return(_0x44a01f=(_0x3ea7df=this['_handler'])[_0x35c4d7(0x4a5)])==null?void 0x0:_0x44a01f[_0x35c4d7(0x1f6)](_0x3ea7df,_0x3c1eb9);}[_0x5bb7a4(0x242)](_0x2506ab){const _0x233fa4=_0x5bb7a4;var _0x22b4dc,_0x40cadb;return(_0x40cadb=(_0x22b4dc=this[_0x233fa4(0x29c)])[_0x233fa4(0x3e6)])==null?void 0x0:_0x40cadb[_0x233fa4(0x1f6)](_0x22b4dc,_0x2506ab);}[_0x5bb7a4(0x232)](_0x269576){const _0x259131=_0x5bb7a4;var _0x2a1c34,_0x286018,_0x1bfb99;return(_0x1bfb99=(_0x286018=(_0x2a1c34=this[_0x259131(0x29c)])[_0x259131(0x1bd)])==null?void 0x0:_0x286018['call'](_0x2a1c34,_0x269576))!=null?_0x1bfb99:_0x269576;}[_0x5bb7a4(0x22a)](_0xed76b6){const _0x3c6223=_0x5bb7a4;var _0x387da5,_0x4b3b8e,_0x150f51;return(_0x150f51=(_0x4b3b8e=(_0x387da5=this[_0x3c6223(0x29c)])[_0x3c6223(0x25f)])==null?void 0x0:_0x4b3b8e['call'](_0x387da5,_0xed76b6))!=null?_0x150f51:_0xed76b6;}[_0x5bb7a4(0x2f5)](_0x2ba6c2){const _0xa0769d=_0x5bb7a4;var _0x4391e0,_0x35edc9;if(this['type']===ce[_0xa0769d(0x172)]){const {unitID:_0x16675d,mutations:_0x2265c4,memberID:_0x30bd6d}=_0x2ba6c2,_0x2a6593=_0x2265c4[0x0][_0xa0769d(0x3d9)][_0xa0769d(0x2a0)];Array[_0xa0769d(0x2f4)](_0x2a6593)&&_0x2a6593[_0xa0769d(0x282)]>0x0&&((_0x35edc9=(_0x4391e0=this[_0xa0769d(0x29c)])[_0xa0769d(0x559)])==null||_0x35edc9[_0xa0769d(0x1f6)](_0x4391e0,{'unitID':_0x16675d,'memberID':_0x30bd6d,'textRanges':_0x2a6593}));}}['_updateLocalCache'](){const _0x48dd55=_0x5bb7a4;this[_0x48dd55(0x46d)][_0x48dd55(0x21f)](this[_0x48dd55(0x4c4)],this['type'],this[_0x48dd55(0x364)],this[_0x48dd55(0x309)]);}[_0x5bb7a4(0x1eb)](){const _0x44555a=_0x5bb7a4;return this[_0x44555a(0x54c)][_0x44555a(0x3f5)](this[_0x44555a(0x4c4)]);}[_0x5bb7a4(0x283)](){const _0x5c3abb=_0x5bb7a4;this[_0x5c3abb(0x54c)]['incrementRevOfUnit'](this[_0x5c3abb(0x4c4)]);}[_0x5bb7a4(0x541)](_0xb19fb7){const _0x540c90=_0x5bb7a4;var _0xb84850;let _0x5967df=this[_0x540c90(0x232)](_0xb19fb7);_0x5967df=this[_0x540c90(0x22a)](_0x5967df);const _0x256187=_0x9b12cf(_0x5967df[_0x540c90(0x47f)],this[_0x540c90(0x53f)],{'fromCollab':!0x0});if(!_0x256187[_0x540c90(0x1b0)])throw _0x256187[_0x540c90(0x17b)]instanceof Error?_0x256187[_0x540c90(0x17b)]:new Error((_0xb84850=_0x256187[_0x540c90(0x17b)])!=null?_0xb84850:'[CollaborationState]:\x20apply\x20error!');this[_0x540c90(0x16c)](_0x5967df),this[_0x540c90(0x242)](_0x5967df),this[_0x540c90(0x35e)](_0xb19fb7),this[_0x540c90(0x50d)](_0x5967df),this[_0x540c90(0x2f5)](_0x5967df),this[_0x540c90(0x283)]();}}let Fe=class extends $e{constructor(_0x4f9748,_0x5d67f8,_0x176d2c,_0x1bd1f0,_0x4a1f08,_0x49f08d,_0x33f884,_0x2aa533,_0x8f02fd,_0x52ab78){const _0x3b9efe=_0x5bb7a4;super(_0x4f9748,_0x5d67f8,null,[],_0x176d2c,_0x2aa533,_0x33f884,_0x1bd1f0,_0x4a1f08),g(this,'status',_0x3b9efe(0x4b0)),(this[_0x3b9efe(0x338)]=_0x49f08d,this[_0x3b9efe(0x26e)]=_0x8f02fd,this[_0x3b9efe(0x1c5)]=_0x52ab78);}[_0x5bb7a4(0x260)](_0x3e3518){const _0x2d3401=_0x5bb7a4,_0x807bd4=this[_0x2d3401(0x338)][_0x2d3401(0x30c)](pe,this[_0x2d3401(0x4c4)],this[_0x2d3401(0x27e)],[_0x3e3518],this['_handler']);return _0x807bd4[_0x2d3401(0x422)](),_0x807bd4[_0x2d3401(0x4f4)](),_0x807bd4;}[_0x5bb7a4(0x38e)](_0x4d15dc){const _0x8953c2=_0x5bb7a4;if(this[_0x8953c2(0x547)](_0x4d15dc))return this[_0x8953c2(0x338)]['createInstance'](he,this[_0x8953c2(0x4c4)],this[_0x8953c2(0x27e)],null,[],null,[_0x4d15dc],this['_handler']);try{const _0x523e02=this['_transformService'][_0x8953c2(0x428)](_0x4d15dc,[mo]);if(_0x5f43ea(_0x523e02)){const {c1Prime:_0x294cb0}=_0x523e02;return this[_0x8953c2(0x541)](_0x294cb0),this;}throw _0x523e02['error'];}catch(_0x419c10){return this[_0x8953c2(0x26e)][_0x8953c2(0x17b)](_0x419c10),this[_0x8953c2(0x2d2)](!0x1);}}[_0x5bb7a4(0x2d2)](_0x447e87){const _0x52cf8f=_0x5bb7a4;return this[_0x52cf8f(0x338)][_0x52cf8f(0x30c)](Re,this[_0x52cf8f(0x4c4)],this[_0x52cf8f(0x27e)],null,[],this[_0x52cf8f(0x29c)],_0x447e87);}[_0x5bb7a4(0x30e)](){throw new Error('[SyncedState]:\x20received\x20acknowledgement.');}[_0x5bb7a4(0x2eb)](){const _0x139052=_0x5bb7a4;throw new Error(_0x139052(0x3b1));}['onRemoteRetry'](){return this;}[_0x5bb7a4(0x30b)](){const _0x214e5b=_0x5bb7a4;return this[_0x214e5b(0x338)][_0x214e5b(0x30c)](ye,this[_0x214e5b(0x4c4)],this[_0x214e5b(0x27e)],null,[],this[_0x214e5b(0x29c)]);}[_0x5bb7a4(0x387)](){return this;}['resend'](){const _0x17a636=_0x5bb7a4;throw new Error(_0x17a636(0x3bf));}[_0x5bb7a4(0x560)](){const _0xce9466=_0x5bb7a4,_0x49d018=this[_0xce9466(0x54c)][_0xce9466(0x3f5)](this[_0xce9466(0x4c4)]);return this[_0xce9466(0x29c)][_0xce9466(0x46b)]({'from':_0x49d018,'to':0x0}),this[_0xce9466(0x338)]['createInstance'](he,this[_0xce9466(0x4c4)],this[_0xce9466(0x27e)],null,[],null,[],this['_handler']);}};Fe=Le([A(0x3,_0x22a3e1(_0x25150b)),A(0x4,_0x22a3e1(q)),A(0x5,_0x22a3e1(_0x4c5160)),A(0x6,_0x131129),A(0x7,_0x1e58f0),A(0x8,_0x3efec9),A(0x9,_0x2db4c4)],Fe);let pe=class extends $e{constructor(_0x3edbf4,_0x4c7db8,_0xa92ce8,_0xbfe2d9,_0x2a829f,_0x5be449,_0x1f75a3,_0xe82d45,_0x5d3c79,_0xaf7289,_0x2a3df2,_0x5238ed,_0xfd9cb1,_0x6ee37d){const _0x3d02de=_0x5bb7a4;super(_0x3edbf4,_0x4c7db8,null,_0xa92ce8,_0xbfe2d9,_0xaf7289,_0x6ee37d,_0x5be449,_0x1f75a3),g(this,_0x3d02de(0x1ff),_0x3d02de(0x28b)),g(this,_0x3d02de(0x39b),null),g(this,'_sendingTimer',null),(this[_0x3d02de(0x338)]=_0x2a829f,this[_0x3d02de(0x49f)]=_0xe82d45,this['_logService']=_0x5d3c79,this[_0x3d02de(0x23e)]=_0x2a3df2,this[_0x3d02de(0x1c5)]=_0x5238ed,this[_0x3d02de(0x21d)]=_0xfd9cb1);}[_0x5bb7a4(0x260)](_0x202ec8){const _0x373919=_0x5bb7a4;return this[_0x373919(0x309)][_0x373919(0x433)](_0x202ec8),this[_0x373919(0x4f4)](),this;}['onRemoteChangeset'](_0x51a5d2){const _0x259bc5=_0x5bb7a4;if(this[_0x259bc5(0x547)](_0x51a5d2))return this[_0x259bc5(0x3c2)](),this[_0x259bc5(0x338)][_0x259bc5(0x30c)](he,this[_0x259bc5(0x4c4)],this[_0x259bc5(0x27e)],null,this[_0x259bc5(0x309)],null,[_0x51a5d2],this[_0x259bc5(0x29c)]);try{const _0x49ad71=this['_transformService'][_0x259bc5(0x428)](_0x51a5d2,this[_0x259bc5(0x309)]);if(_0x5f43ea(_0x49ad71)){const {c1Prime:_0x5ac0dd,m2Prime:_0x32d2a4}=_0x49ad71;this[_0x259bc5(0x541)](_0x5ac0dd);const _0x27caa9=this[_0x259bc5(0x338)][_0x259bc5(0x30c)](pe,this['unitID'],this[_0x259bc5(0x27e)],_0x32d2a4,this[_0x259bc5(0x29c)]);return this[_0x259bc5(0x3c2)](),_0x27caa9[_0x259bc5(0x422)](this[_0x259bc5(0x39b)]?Math['max'](0x0,new Date()[_0x259bc5(0x2c2)]()-this['_scheduleTimestamp']):this['_getSendChangesetTimeout']()),_0x27caa9;}throw _0x49ad71['error'];}catch(_0x189a2c){return this[_0x259bc5(0x26e)][_0x259bc5(0x17b)](_0x189a2c),this[_0x259bc5(0x2d2)](!0x1);}}[_0x5bb7a4(0x30e)](){const _0x5d1f65=_0x5bb7a4;throw new Error(_0x5d1f65(0x47a));}[_0x5bb7a4(0x2eb)](){const _0x49f3f7=_0x5bb7a4;throw new Error(_0x49f3f7(0x584));}['onRemoteRetry'](){return this;}[_0x5bb7a4(0x30b)](){const _0x3cf014=_0x5bb7a4;return this[_0x3cf014(0x3c2)](),this[_0x3cf014(0x338)][_0x3cf014(0x30c)](ye,this[_0x3cf014(0x4c4)],this['type'],null,this[_0x3cf014(0x309)],this[_0x3cf014(0x29c)]);}[_0x5bb7a4(0x387)](){return this;}[_0x5bb7a4(0x422)](_0x36393a){const _0x27d283=_0x5bb7a4,_0x12df44=_0x36393a!=null?_0x36393a:this[_0x27d283(0x2be)]();this[_0x27d283(0x39b)]=new Date()[_0x27d283(0x2c2)](),this['_sendingTimer']=window[_0x27d283(0x273)](()=>{const _0x156f0a=_0x27d283;this[_0x156f0a(0x3c2)]();let _0x1af267=null;switch(this['type']){case ce[_0x156f0a(0x55b)]:{_0x1af267=Vs(this[_0x156f0a(0x309)],this[_0x156f0a(0x4c4)],this['_univerInstanceService'],this['_revisionService'],this[_0x156f0a(0x49f)]);break;}case ce['UNIVER_DOC']:{this['_pendingMutations'][_0x156f0a(0x371)](_0x12cb6c=>_0x12cb6c['id']===_0x185e84['id'])?_0x1af267=vo(this['_pendingMutations'],this[_0x156f0a(0x4c4)],this[_0x156f0a(0x21d)],this[_0x156f0a(0x54c)],this[_0x156f0a(0x49f)]):_0x1af267=Vs(this[_0x156f0a(0x309)],this[_0x156f0a(0x4c4)],this[_0x156f0a(0x21d)],this[_0x156f0a(0x54c)],this[_0x156f0a(0x49f)]);break;}default:throw new Error(_0x156f0a(0x17a)+this['type']+_0x156f0a(0x1a2));}const {changeset:_0x4d4613,pendingMutations:_0x5f52ba}=_0x1af267;this[_0x156f0a(0x29c)][_0x156f0a(0x2e8)](_0x4d4613);const _0x5cd02c=_0x5f52ba['length']?this[_0x156f0a(0x338)][_0x156f0a(0x30c)](ge,this['unitID'],this[_0x156f0a(0x27e)],_0x4d4613,_0x5f52ba,this[_0x156f0a(0x29c)],void 0x0):this['_injector'][_0x156f0a(0x30c)](Te,this['unitID'],this[_0x156f0a(0x27e)],_0x4d4613,this[_0x156f0a(0x29c)]);_0x5cd02c[_0x156f0a(0x4f4)](),this[_0x156f0a(0x29c)][_0x156f0a(0x4a0)](this,_0x5cd02c);},_0x12df44);}[_0x5bb7a4(0x2be)](){const _0x5cd9f6=_0x5bb7a4;var _0x53d744;const _0x5c6e95=this[_0x5cd9f6(0x23e)]['getConfig'](ie);return(_0x53d744=_0x5c6e95==null?void 0x0:_0x5c6e95[_0x5cd9f6(0x56a)])!=null?_0x53d744:_r;}['resend'](){const _0x443163=_0x5bb7a4;throw new Error(_0x443163(0x35d));}['_clearScheduledTask'](){const _0x599304=_0x5bb7a4;this['_sendingTimer']!=null&&(clearTimeout(this[_0x599304(0x3e7)]),this['_sendingTimer']=null);}[_0x5bb7a4(0x2d2)](_0x34971f){const _0x26c8c1=_0x5bb7a4;return this[_0x26c8c1(0x3c2)](),this[_0x26c8c1(0x338)]['createInstance'](Re,this['unitID'],this['type'],null,this['_pendingMutations'],this[_0x26c8c1(0x29c)],_0x34971f);}};pe=Le([A(0x4,_0x22a3e1(_0x4c5160)),A(0x5,_0x22a3e1(_0x25150b)),A(0x6,_0x22a3e1(q)),A(0x7,_0x22a3e1(Ne)),A(0x8,_0x3efec9),A(0x9,_0x1e58f0),A(0xa,_0x2bb536),A(0xb,_0x2db4c4),A(0xc,_0x2e0534),A(0xd,_0x131129)],pe);let Te=class extends $e{constructor(_0xd7a5d,_0x377c63,_0x24771b,_0x3770a5,_0x12f163,_0x2f880a,_0x2e10bf,_0x1d8b66,_0x47c7ed,_0xdbcfb4,_0x2d7a31){const _0x3e8a7e=_0x5bb7a4;super(_0xd7a5d,_0x377c63,_0x24771b,[],_0x3770a5,_0x1d8b66,_0x2d7a31,_0x2f880a,_0x2e10bf),g(this,_0x3e8a7e(0x1ff),_0x3e8a7e(0x31b)),g(this,_0x3e8a7e(0x54d),0x0),g(this,_0x3e8a7e(0x25e)),g(this,'_sender'),(this['_injector']=_0x12f163,this['_logService']=_0x47c7ed,this[_0x3e8a7e(0x1c5)]=_0xdbcfb4);}[_0x5bb7a4(0x260)](_0x69568c){const _0x5476c3=_0x5bb7a4;this[_0x5476c3(0x3c2)]();const _0x3300d8=this[_0x5476c3(0x338)][_0x5476c3(0x30c)](ge,this[_0x5476c3(0x4c4)],this[_0x5476c3(0x27e)],this[_0x5476c3(0x364)],[_0x69568c],this['_handler'],this[_0x5476c3(0x25e)]);return _0x3300d8[_0x5476c3(0x4f4)](),_0x3300d8;}[_0x5bb7a4(0x38e)](_0x1987ea){const _0x27c8b1=_0x5bb7a4;if(this[_0x27c8b1(0x547)](_0x1987ea))return this[_0x27c8b1(0x3c2)](),this['_injector']['createInstance'](he,this[_0x27c8b1(0x4c4)],this[_0x27c8b1(0x27e)],this[_0x27c8b1(0x364)],[],null,[_0x1987ea],this[_0x27c8b1(0x29c)]);try{const _0x160807=this['_transformService']['transformChangesets']([_0x1987ea],[this['_awaitingChangeset']],!0x1);if(_0x3e05e4(_0x160807)){const {c1Prime:_0xfa7f9b,c2Prime:_0x4bf791}=_0x160807;this[_0x27c8b1(0x541)](_0xfa7f9b[0x0]),_0x4bf791[0x0][_0x27c8b1(0x2b2)]=this[_0x27c8b1(0x1eb)](),this['_clearScheduledTask']();const _0x1670c5=this[_0x27c8b1(0x338)][_0x27c8b1(0x30c)](Te,this[_0x27c8b1(0x4c4)],this['type'],_0x4bf791[0x0],this[_0x27c8b1(0x29c)]);return _0x1670c5[_0x27c8b1(0x4f4)](),_0x1670c5;}return this[_0x27c8b1(0x2d2)](!0x1);}catch(_0x2d1112){return this[_0x27c8b1(0x26e)][_0x27c8b1(0x17b)](_0x2d1112),this['_onConflict'](!0x1);}}[_0x5bb7a4(0x30e)](_0x25cf1f){const _0x40a147=_0x5bb7a4;this['_clearScheduledTask']();const _0x26dcfa=this[_0x40a147(0x54c)][_0x40a147(0x3f5)](this[_0x40a147(0x4c4)]);if(_0x25cf1f[_0x40a147(0x571)]<_0x26dcfa-0x1)return this;if(this[_0x40a147(0x547)](_0x25cf1f))return this[_0x40a147(0x338)][_0x40a147(0x30c)](he,this[_0x40a147(0x4c4)],this[_0x40a147(0x27e)],null,[],this[_0x40a147(0x364)],[],this[_0x40a147(0x29c)]);this['_incrementRevisionNumber']();const _0x31ac54=this[_0x40a147(0x338)][_0x40a147(0x30c)](Fe,this[_0x40a147(0x4c4)],this[_0x40a147(0x27e)],this[_0x40a147(0x29c)]);return _0x31ac54[_0x40a147(0x4f4)](),_0x31ac54;}['onRemoteRej'](_0x321114){const _0x2598f4=_0x5bb7a4;return this[_0x2598f4(0x2d2)](!!(_0x321114!=null&&_0x321114['isPermissionRej']));}[_0x5bb7a4(0x49a)](_0x169954){const _0x4fd35c=_0x5bb7a4;return this[_0x4fd35c(0x54d)]>Ni?this[_0x4fd35c(0x30b)]():(this[_0x4fd35c(0x25e)]=Ui(this[_0x4fd35c(0x54d)],{'timeout':this[_0x4fd35c(0x54d)],'reqId':_0x169954[_0x4fd35c(0x3f6)]}),this[_0x4fd35c(0x292)]=this['_resendTimer'][_0x4fd35c(0x519)](({reqId:_0x558d7e,timeout:_0x5e5afe})=>{const _0x91b3c8=_0x4fd35c;this[_0x91b3c8(0x30a)](_0x558d7e,_0x5e5afe);}),this);}[_0x5bb7a4(0x30b)](){const _0x40d963=_0x5bb7a4;return this[_0x40d963(0x3c2)](),this[_0x40d963(0x338)][_0x40d963(0x30c)](ye,this[_0x40d963(0x4c4)],this[_0x40d963(0x27e)],this[_0x40d963(0x364)],[],this[_0x40d963(0x29c)]);}['toggleOnline'](){return this;}[_0x5bb7a4(0x581)](){const _0x3a0387=_0x5bb7a4;this[_0x3a0387(0x29c)][_0x3a0387(0x2e8)](this['_awaitingChangeset']);}[_0x5bb7a4(0x2d2)](_0x3a1da2){const _0x24aea3=_0x5bb7a4;return this['_clearScheduledTask'](),this[_0x24aea3(0x338)]['createInstance'](Re,this[_0x24aea3(0x4c4)],this[_0x24aea3(0x27e)],this[_0x24aea3(0x364)],[],this[_0x24aea3(0x29c)],_0x3a1da2);}['_resendWithTimeout'](_0x59ff6c,_0x53e340){const _0x3f71be=_0x5bb7a4;var _0x2b0e77;_0x59ff6c===((_0x2b0e77=this[_0x3f71be(0x364)])==null?void 0x0:_0x2b0e77[_0x3f71be(0x3f6)])&&(this[_0x3f71be(0x581)](),this[_0x3f71be(0x54d)]=_0x53e340===0x0?0x3e8:_0x53e340*0x2);}['_clearScheduledTask'](){const _0x592ff3=_0x5bb7a4;var _0x4590d8;(_0x4590d8=this[_0x592ff3(0x292)])==null||_0x4590d8[_0x592ff3(0x1e1)](),this[_0x592ff3(0x54d)]=0x0;}};Te=Le([A(0x4,_0x22a3e1(_0x4c5160)),A(0x5,_0x22a3e1(_0x25150b)),A(0x6,_0x22a3e1(q)),A(0x7,_0x1e58f0),A(0x8,_0x3efec9),A(0x9,_0x2db4c4),A(0xa,_0x131129)],Te);let ge=class extends $e{constructor(_0x1efed3,_0xa8f04c,_0x78e6dc,_0x57e36d,_0x140f71,_0x33fb05,_0x4a2951,_0x29b1bc,_0x1e6dc1,_0x54b23c,_0x403e00,_0x2b4835,_0x1b1bf0){const _0x2fdb6a=_0x5bb7a4;super(_0x1efed3,_0xa8f04c,_0x78e6dc,_0x57e36d,_0x140f71,_0x54b23c,_0x1b1bf0,_0x29b1bc,_0x1e6dc1),g(this,_0x2fdb6a(0x1ff),'awaiting_with_pending'),g(this,_0x2fdb6a(0x54d),0x0),g(this,_0x2fdb6a(0x25e)),g(this,'_sender'),(this[_0x2fdb6a(0x338)]=_0x4a2951,this[_0x2fdb6a(0x26e)]=_0x403e00,this['_transformService']=_0x2b4835,_0x33fb05&&(this['_resendTimer']=_0x33fb05,this[_0x2fdb6a(0x292)]=this[_0x2fdb6a(0x25e)][_0x2fdb6a(0x519)](({reqId:_0x3c6ab7,timeout:_0x4f5e11})=>{this['_resendWithTimeout'](_0x3c6ab7,_0x4f5e11);})));}[_0x5bb7a4(0x260)](_0x301768){const _0xfe3a8b=_0x5bb7a4;return this[_0xfe3a8b(0x309)][_0xfe3a8b(0x433)](_0x301768),this;}[_0x5bb7a4(0x38e)](_0x72562c){const _0x1e74a2=_0x5bb7a4;if(this['_checkMissing'](_0x72562c))return this[_0x1e74a2(0x3c2)](),this[_0x1e74a2(0x338)][_0x1e74a2(0x30c)](he,this[_0x1e74a2(0x4c4)],this[_0x1e74a2(0x27e)],this[_0x1e74a2(0x364)],this[_0x1e74a2(0x309)],null,[_0x72562c],this[_0x1e74a2(0x29c)]);try{const _0x1d67a3=this[_0x1e74a2(0x1c5)][_0x1e74a2(0x472)]([_0x72562c],[this[_0x1e74a2(0x364)]],!0x1);if(_0x3e05e4(_0x1d67a3)){const {c1Prime:_0x14b7c6,c2Prime:_0xad3774}=_0x1d67a3,_0x3d6f1d=this[_0x1e74a2(0x1c5)][_0x1e74a2(0x428)](_0x14b7c6[0x0],this[_0x1e74a2(0x309)]);if(_0x5f43ea(_0x3d6f1d)){const {c1Prime:_0x12b664,m2Prime:_0x447a0d}=_0x3d6f1d;return this['_executeRemoteChangeset'](_0x12b664),_0xad3774[0x0][_0x1e74a2(0x2b2)]=this[_0x1e74a2(0x1eb)](),this[_0x1e74a2(0x3c2)](),this[_0x1e74a2(0x338)][_0x1e74a2(0x30c)](ge,this[_0x1e74a2(0x4c4)],this[_0x1e74a2(0x27e)],_0xad3774[0x0],_0x447a0d,this[_0x1e74a2(0x29c)],void 0x0);}throw _0x3d6f1d[_0x1e74a2(0x17b)];}throw _0x1d67a3['error'];}catch(_0x566f4f){return this[_0x1e74a2(0x26e)][_0x1e74a2(0x17b)](_0x566f4f),this['_onConflict'](!0x1);}}[_0x5bb7a4(0x30e)](_0x1eca74){const _0x35ae03=_0x5bb7a4;if(this[_0x35ae03(0x3c2)](),this[_0x35ae03(0x547)](_0x1eca74))return this[_0x35ae03(0x338)][_0x35ae03(0x30c)](he,this[_0x35ae03(0x4c4)],this['type'],null,this[_0x35ae03(0x309)],this[_0x35ae03(0x364)],[],this[_0x35ae03(0x29c)]);this[_0x35ae03(0x283)]();const _0x5bfdb6=this[_0x35ae03(0x338)][_0x35ae03(0x30c)](pe,this[_0x35ae03(0x4c4)],this[_0x35ae03(0x27e)],this[_0x35ae03(0x309)],this['_handler']);return _0x5bfdb6['_schedule'](),_0x5bfdb6[_0x35ae03(0x4f4)](),_0x5bfdb6;}[_0x5bb7a4(0x2eb)](_0x36ea21){const _0x29fbae=_0x5bb7a4;return this[_0x29fbae(0x2d2)](!!(_0x36ea21!=null&&_0x36ea21[_0x29fbae(0x28d)]));}[_0x5bb7a4(0x49a)](_0x1b1f61){const _0x248e5e=_0x5bb7a4;return this['_resendTimeout']>Ni?this['toggleOffline']():(this['_resendTimer']=Ui(this[_0x248e5e(0x54d)],{'timeout':this[_0x248e5e(0x54d)],'reqId':_0x1b1f61[_0x248e5e(0x3f6)]}),this[_0x248e5e(0x292)]=this[_0x248e5e(0x25e)][_0x248e5e(0x519)](({reqId:_0x1f925a,timeout:_0x4cc888})=>{const _0x3e9fcd=_0x248e5e;this[_0x3e9fcd(0x30a)](_0x1f925a,_0x4cc888);}),this);}[_0x5bb7a4(0x30b)](){const _0x122bd1=_0x5bb7a4;return this[_0x122bd1(0x3c2)](),this[_0x122bd1(0x338)][_0x122bd1(0x30c)](ye,this[_0x122bd1(0x4c4)],this[_0x122bd1(0x27e)],this[_0x122bd1(0x364)],this[_0x122bd1(0x309)],this['_handler']);}[_0x5bb7a4(0x387)](){return this;}[_0x5bb7a4(0x581)](){const _0x3b7fcd=_0x5bb7a4;this[_0x3b7fcd(0x29c)][_0x3b7fcd(0x2e8)](this['_awaitingChangeset']);}[_0x5bb7a4(0x2d2)](_0x132ae9){const _0x50f015=_0x5bb7a4;return this['_clearScheduledTask'](),this[_0x50f015(0x338)][_0x50f015(0x30c)](Re,this['unitID'],this[_0x50f015(0x27e)],null,this[_0x50f015(0x309)],this[_0x50f015(0x29c)],_0x132ae9);}[_0x5bb7a4(0x30a)](_0x57b0a2,_0x3f0182){const _0x3350d6=_0x5bb7a4;var _0x9d4fff;_0x57b0a2===((_0x9d4fff=this['_awaitingChangeset'])==null?void 0x0:_0x9d4fff[_0x3350d6(0x3f6)])&&(this[_0x3350d6(0x581)](),this['_resendTimeout']=_0x3f0182===0x0?0x3e8:_0x3f0182*0x2);}[_0x5bb7a4(0x3c2)](){const _0x27d76d=_0x5bb7a4;var _0x650e85;(_0x650e85=this['_sender'])==null||_0x650e85[_0x27d76d(0x1e1)](),this[_0x27d76d(0x54d)]=0x0;}};ge=Le([A(0x6,_0x22a3e1(_0x4c5160)),A(0x7,_0x22a3e1(_0x25150b)),A(0x8,_0x22a3e1(q)),A(0x9,_0x1e58f0),A(0xa,_0x3efec9),A(0xb,_0x2db4c4),A(0xc,_0x131129)],ge);let Re=class extends $e{constructor(_0x8d974a,_0x22ab48,_0x3638ba,_0x5aece5,_0x5e3b90,_0x4bd0c7=!0x1,_0x518759,_0x466762,_0xf49c70,_0x1e5061,_0x467672,_0x5c8895,_0x3cdaa3){const _0x539ea5=_0x5bb7a4;super(_0x8d974a,_0x22ab48,_0x3638ba,_0x5aece5,_0x5e3b90,_0x466762,_0xf49c70,_0x467672,_0x1e5061),g(this,_0x539ea5(0x1ff),'conflict'),(this[_0x539ea5(0x1ec)]=_0x4bd0c7,this[_0x539ea5(0x167)]=_0x518759,this[_0x539ea5(0x4ab)]=_0x5c8895,this[_0x539ea5(0x4da)]=_0x3cdaa3,this[_0x539ea5(0x389)](),this[_0x539ea5(0x234)](),this[_0x539ea5(0x3af)]());}[_0x5bb7a4(0x260)](){return this;}['onRemoteChangeset'](){return this;}[_0x5bb7a4(0x30e)](){return this;}[_0x5bb7a4(0x2eb)](){return this;}['onRemoteRetry'](){return this;}[_0x5bb7a4(0x30b)](){return this;}[_0x5bb7a4(0x387)](){return this;}['resend'](){const _0x354ef0=_0x5bb7a4;throw new Error(_0x354ef0(0x212));}['_clearLocalCache'](){const _0x253b7a=_0x5bb7a4;this[_0x253b7a(0x46d)]['updateOfflineData'](this[_0x253b7a(0x4c4)],this[_0x253b7a(0x27e)],null,[]);}[_0x5bb7a4(0x389)](){const _0x1c1f4b=_0x5bb7a4;this[_0x1c1f4b(0x1ec)]?this[_0x1c1f4b(0x4da)]['show']({'title':this[_0x1c1f4b(0x4ab)]['t'](_0x1c1f4b(0x314)),'content':this['_localeService']['t'](_0x1c1f4b(0x456)),'type':'error','duration':0x0}):this[_0x1c1f4b(0x4da)][_0x1c1f4b(0x18e)]({'title':this[_0x1c1f4b(0x4ab)]['t'](_0x1c1f4b(0x393)),'content':this[_0x1c1f4b(0x4ab)]['t'](_0x1c1f4b(0x34e)),'type':_0x1c1f4b(0x17b),'duration':0x0});}[_0x5bb7a4(0x3af)](){const _0x2b215a=_0x5bb7a4;this['_permissionService'][_0x2b215a(0x3fc)](new _0x272dbd(this['unitID'])['id'],!0x1);}};Re=Le([A(0x6,_0x22a3e1(_0x59e41b)),A(0x7,_0x1e58f0),A(0x8,_0x131129),A(0x9,_0x22a3e1(q)),A(0xa,_0x22a3e1(_0x25150b)),A(0xb,_0x22a3e1(_0x1fdc1b)),A(0xc,_0x387815)],Re);let ye=class extends $e{constructor(_0x5e356e,_0xbc2114,_0x42e877,_0xb80c0,_0x5b4f23,_0x13cc31,_0x12fffc,_0x25bcff,_0x467798,_0x2cdc0b){const _0x3f1d94=_0x5bb7a4;super(_0x5e356e,_0xbc2114,_0x42e877,_0xb80c0,_0x5b4f23,_0x467798,_0x2cdc0b,_0x12fffc,_0x25bcff),g(this,'status',_0x3f1d94(0x4ed)),this['_injector']=_0x13cc31;}['appendMutation'](_0x31e539){const _0x5b284c=_0x5bb7a4;return this[_0x5b284c(0x309)]['push'](_0x31e539),this[_0x5b284c(0x4f4)](),this;}[_0x5bb7a4(0x38e)](_0xdec1b0){throw new Error('[OfflineState]:\x20received\x20changeset.');}['onRemoteAck'](){const _0x4a1ed2=_0x5bb7a4;throw new Error(_0x4a1ed2(0x4f9));}[_0x5bb7a4(0x2eb)](){const _0x1e4f56=_0x5bb7a4;throw new Error(_0x1e4f56(0x2fd));}[_0x5bb7a4(0x49a)](){return this;}[_0x5bb7a4(0x30b)](){return this;}[_0x5bb7a4(0x387)](){const _0x4104cd=_0x5bb7a4,{_injector:_0x418423,_pendingMutations:_0x47887d,_awaitingChangeset:_0xe9d61d,unitID:_0x302f6a,_handler:_0x4c5b9b,type:_0x5627b5}=this,_0x7c122e=Ai(_0x418423,_0x302f6a,_0x5627b5,_0xe9d61d,_0x47887d,_0x4c5b9b);return _0x7c122e instanceof pe?_0x7c122e[_0x4104cd(0x422)]():(_0x7c122e instanceof ge||_0x7c122e instanceof Te)&&_0x7c122e[_0x4104cd(0x581)](),_0x7c122e;}[_0x5bb7a4(0x581)](){throw new Error('[OfflineState]:\x20invalid\x20calling\x20to\x20`resend`.');}};ye=Le([A(0x5,_0x22a3e1(_0x4c5160)),A(0x6,_0x22a3e1(_0x25150b)),A(0x7,_0x22a3e1(q)),A(0x8,_0x1e58f0),A(0x9,_0x131129)],ye);let he=class extends $e{constructor(_0x36923c,_0x4f8976,_0x195090,_0x3c7a2b,_0xc069cd,_0x38a866,_0x3f1034,_0x4db5cd,_0x1d03dd,_0x52c7c1,_0xdbc544,_0x195b54,_0x7bcfa,_0x446d75){const _0x2100fd=_0x5bb7a4;super(_0x36923c,_0x4f8976,_0x195090,_0x3c7a2b,_0x3f1034,_0x195b54,_0x7bcfa,_0x1d03dd,_0x52c7c1),g(this,'status',_0x2100fd(0x4d8)),(this[_0x2100fd(0x566)]=_0xc069cd,this[_0x2100fd(0x291)]=_0x38a866,this[_0x2100fd(0x338)]=_0x4db5cd,this[_0x2100fd(0x26e)]=_0xdbc544,this['_transformService']=_0x446d75);}[_0x5bb7a4(0x4cf)](_0x5be906){const _0x12ebe6=_0x5bb7a4;try{const _0x30a8c0=[..._0x5be906,...this[_0x12ebe6(0x291)]],_0x2f1467=[this[_0x12ebe6(0x364)]||this['_acknowledgedAwaitingChangeset']]['filter'](_0x1ab752=>!!_0x1ab752);let _0x55b5d0,_0xc57d46;if(_0x2f1467[_0x12ebe6(0x282)]){const _0x5f5ddd=this[_0x12ebe6(0x1c5)][_0x12ebe6(0x472)](_0x30a8c0,_0x2f1467,!0x1);if(!_0x3e05e4(_0x5f5ddd))throw _0x5f5ddd[_0x12ebe6(0x17b)];_0x55b5d0=_0x5f5ddd['c1Prime'],_0xc57d46=_0x5f5ddd[_0x12ebe6(0x49d)];}else _0x55b5d0=_0x30a8c0,_0xc57d46=[];let _0x23d9e8=this['_pendingMutations'];_0x55b5d0[_0x12ebe6(0x312)](_0x5a1869=>{const _0x17e6a3=_0x12ebe6;let _0x146be5;if(_0x23d9e8[_0x17e6a3(0x282)]){const _0x220a1e=this[_0x17e6a3(0x1c5)][_0x17e6a3(0x428)](_0x5a1869,_0x23d9e8);if(!_0x5f43ea(_0x220a1e))throw _0x220a1e[_0x17e6a3(0x17b)];_0x146be5=_0x220a1e[_0x17e6a3(0x4a1)],_0x23d9e8=_0x220a1e[_0x17e6a3(0x4d6)];}else _0x146be5=_0x5a1869;this[_0x17e6a3(0x541)](_0x146be5);}),this['_acknowledgedAwaitingChangeset']&&this['_incrementRevisionNumber'](),this['_awaitingChangeset']&&_0xc57d46[_0x12ebe6(0x282)]&&(_0xc57d46[0x0][_0x12ebe6(0x2b2)]=this[_0x12ebe6(0x1eb)]());let _0x5b872f;if(this[_0x12ebe6(0x364)]&&_0x23d9e8[_0x12ebe6(0x282)]!==0x0)_0x5b872f=this['_injector']['createInstance'](ge,this[_0x12ebe6(0x4c4)],this[_0x12ebe6(0x27e)],_0xc57d46[0x0],_0x23d9e8,this[_0x12ebe6(0x29c)],void 0x0);else{if(this[_0x12ebe6(0x364)]&&_0x23d9e8['length']===0x0)_0xc57d46[0x0][_0x12ebe6(0x2b2)]=this[_0x12ebe6(0x1eb)](),_0x5b872f=this[_0x12ebe6(0x338)][_0x12ebe6(0x30c)](Te,this['unitID'],this['type'],_0xc57d46[0x0],this[_0x12ebe6(0x29c)]);else{if(_0x23d9e8[_0x12ebe6(0x282)]!==0x0){const _0x3ea7ba=this['_injector'][_0x12ebe6(0x30c)](pe,this[_0x12ebe6(0x4c4)],this['type'],_0x23d9e8,this[_0x12ebe6(0x29c)]);_0x3ea7ba['_schedule'](),_0x5b872f=_0x3ea7ba;}else _0x5b872f=this['_injector'][_0x12ebe6(0x30c)](Fe,this[_0x12ebe6(0x4c4)],this['type'],this[_0x12ebe6(0x29c)]);}}return _0x5b872f[_0x12ebe6(0x4f4)](),_0x5b872f;}catch(_0x41e514){return this[_0x12ebe6(0x26e)]['error'](_0x12ebe6(0x2c6),_0x12ebe6(0x1cf),_0x41e514),this[_0x12ebe6(0x338)][_0x12ebe6(0x30c)](Re,this['unitID'],this[_0x12ebe6(0x27e)],this[_0x12ebe6(0x364)],this['_pendingMutations'],this[_0x12ebe6(0x29c)],!0x1);}}[_0x5bb7a4(0x581)](){const _0x3fc346=_0x5bb7a4;throw new Error(_0x3fc346(0x1fd));}[_0x5bb7a4(0x260)](_0x5e8762){const _0x59791a=_0x5bb7a4;return this[_0x59791a(0x309)][_0x59791a(0x433)](_0x5e8762),this;}[_0x5bb7a4(0x38e)](_0x15eb19){const _0x5e6bd5=_0x5bb7a4;return this[_0x5e6bd5(0x291)][_0x5e6bd5(0x433)](_0x15eb19),this;}[_0x5bb7a4(0x30e)](_0xef15d2){const _0x2ce8a4=_0x5bb7a4;if(this[_0x2ce8a4(0x364)])return this[_0x2ce8a4(0x566)]=this[_0x2ce8a4(0x364)],this[_0x2ce8a4(0x364)]=null,this;throw new Error(_0x2ce8a4(0x191));}[_0x5bb7a4(0x2eb)](_0x11e2ff){const _0x5d14e0=_0x5bb7a4;return this['_onConflict'](!!(_0x11e2ff!=null&&_0x11e2ff[_0x5d14e0(0x28d)]));}['onRemoteRetry'](){return this;}[_0x5bb7a4(0x30b)](){const _0x15d5a6=_0x5bb7a4;return this[_0x15d5a6(0x338)][_0x15d5a6(0x30c)](ye,this[_0x15d5a6(0x4c4)],this[_0x15d5a6(0x27e)],this[_0x15d5a6(0x364)],this[_0x15d5a6(0x309)],this[_0x15d5a6(0x29c)]);}[_0x5bb7a4(0x387)](){return this;}[_0x5bb7a4(0x2d2)](_0x2675c1){const _0x583757=_0x5bb7a4;return this[_0x583757(0x338)][_0x583757(0x30c)](Re,this[_0x583757(0x4c4)],this[_0x583757(0x27e)],this[_0x583757(0x364)],this['_pendingMutations'],this[_0x583757(0x29c)],_0x2675c1);}};he=Le([A(0x7,_0x22a3e1(_0x4c5160)),A(0x8,_0x22a3e1(_0x25150b)),A(0x9,_0x22a3e1(q)),A(0xa,_0x3efec9),A(0xb,_0x1e58f0),A(0xc,_0x131129),A(0xd,_0x2db4c4)],he);function Ai(_0x81ed17,_0x3d6861,_0x10f9f5,_0x376e2e,_0x42bdb2,_0x58c084){const _0x50ce90=_0x5bb7a4;return _0x376e2e&&_0x42bdb2['length']?_0x81ed17[_0x50ce90(0x30c)](ge,_0x3d6861,_0x10f9f5,_0x376e2e,_0x42bdb2,_0x58c084,void 0x0):_0x376e2e?_0x81ed17[_0x50ce90(0x30c)](Te,_0x3d6861,_0x10f9f5,_0x376e2e,_0x58c084):_0x42bdb2[_0x50ce90(0x282)]?_0x81ed17[_0x50ce90(0x30c)](pe,_0x3d6861,_0x10f9f5,_0x42bdb2,_0x58c084):_0x81ed17[_0x50ce90(0x30c)](Fe,_0x3d6861,_0x10f9f5,_0x58c084);}var So=Object[_0x5bb7a4(0x42b)],Io=Object[_0x5bb7a4(0x4e4)],Es=(_0x4eb9a6,_0x1b1258,_0x4d71fd,_0x2de747)=>{const _0x1ae23a=_0x5bb7a4;for(var _0x39f262=_0x2de747>0x1?void 0x0:_0x2de747?Io(_0x1b1258,_0x4d71fd):_0x1b1258,_0x34c82e=_0x4eb9a6[_0x1ae23a(0x282)]-0x1,_0x231a0e;_0x34c82e>=0x0;_0x34c82e--)(_0x231a0e=_0x4eb9a6[_0x34c82e])&&(_0x39f262=(_0x2de747?_0x231a0e(_0x1b1258,_0x4d71fd,_0x39f262):_0x231a0e(_0x39f262))||_0x39f262);return _0x2de747&&_0x39f262&&So(_0x1b1258,_0x4d71fd,_0x39f262),_0x39f262;},H=(_0x177942,_0x402868)=>(_0x428581,_0x30817b)=>_0x402868(_0x428581,_0x30817b,_0x177942);let gt=class extends _0x177a9e{constructor(_0xff4696,_0x1133ae,_0x53d813,_0x4eba08,_0x247423,_0x26a6ca,_0x3f87da,_0x78ea06,_0x57d1b4,_0xdbdae9,_0x317c37,_0x4edc4,_0x3891a6){const _0x5b4ba2=_0x5bb7a4;super(),g(this,_0x5b4ba2(0x227),new _0x348a88(null)),g(this,_0x5b4ba2(0x40f),this['_state$']['asObservable']()),g(this,_0x5b4ba2(0x3fa)),g(this,_0x5b4ba2(0x4a4),!0x1),g(this,_0x5b4ba2(0x4e7),''),g(this,'_changesetReqId',0x0),g(this,_0x5b4ba2(0x1ba),this[_0x5b4ba2(0x40f)][_0x5b4ba2(0x3f1)](_0x5809a7(_0x314e26=>_0x314e26?_0x314e26[_0x5b4ba2(0x1ff)]:J['OFFLINE']),_0x3f1879(0x1))),g(this,_0x5b4ba2(0x4f8),!0x1),g(this,'_remoteChangesetQueue',[]),(this[_0x5b4ba2(0x4c4)]=_0xff4696,this['session']=_0x1133ae,this[_0x5b4ba2(0x3a6)]=_0x53d813,this['_injector']=_0x4eba08,this[_0x5b4ba2(0x46d)]=_0x247423,this[_0x5b4ba2(0x421)]=_0x26a6ca,this['_localeService']=_0x3f87da,this[_0x5b4ba2(0x54c)]=_0x78ea06,this[_0x5b4ba2(0x26e)]=_0x57d1b4,this[_0x5b4ba2(0x53f)]=_0xdbdae9,this['_messageService']=_0x317c37,this['_permissionService']=_0x4edc4,this[_0x5b4ba2(0x41a)]=_0x3891a6);}get[_0x5bb7a4(0x2fa)](){const _0x1ef88f=_0x5bb7a4;return this[_0x1ef88f(0x3fa)];}async[_0x5bb7a4(0x1d6)](){const _0x5c1ee0=_0x5bb7a4;if(this[_0x5c1ee0(0x2fa)])throw new Error(_0x5c1ee0(0x1d8));await this[_0x5c1ee0(0x515)]();}[_0x5bb7a4(0x569)](){return this['_collaborationPaused']=!0x0,_0x7884da(()=>{const _0x1dd9a2=_0x4081;this[_0x1dd9a2(0x4a4)]=!0x1,this[_0x1dd9a2(0x43a)]();});}[_0x5bb7a4(0x263)](_0x339089){const _0x19af28=_0x5bb7a4;this[_0x19af28(0x3fa)]=_0x339089,this['_state$']['next'](_0x339089);}async['_init'](){const _0x2a4409=_0x5bb7a4;var _0xfc5c22;this[_0x2a4409(0x263)](await this[_0x2a4409(0x294)]()),this[_0x2a4409(0x41a)]&&((_0xfc5c22=this[_0x2a4409(0x41a)])==null||_0xfc5c22[_0x2a4409(0x30d)](this[_0x2a4409(0x4c4)]),this[_0x2a4409(0x368)](this[_0x2a4409(0x41a)][_0x2a4409(0x23b)](this['unitID'])[_0x2a4409(0x519)](_0x4f0e6b=>{const _0x159848=_0x2a4409;this[_0x159848(0x26e)][_0x159848(0x23c)](_0x159848(0x501),'editing\x20status\x20changed\x20to',_0x4f0e6b),_0x4f0e6b===Di['OTHER_CLIENTS_EDITING']?(this['_messageService'][_0x159848(0x18e)]({'content':this[_0x159848(0x4ab)]['t'](_0x159848(0x416)),'type':_0x3417d7[_0x159848(0x2ad)]}),this[_0x159848(0x167)]['updatePermissionPoint'](new _0x272dbd(this[_0x159848(0x4c4)])['id'],!0x1),this[_0x159848(0x167)][_0x159848(0x3bc)](!0x1)):(this['_permissionService'][_0x159848(0x3fc)](new _0x272dbd(this[_0x159848(0x4c4)])['id'],!0x0),this[_0x159848(0x167)][_0x159848(0x3bc)](!0x0));})));let _0x3fe2b1=!0x1;return this[_0x2a4409(0x368)](this[_0x2a4409(0x457)][_0x2a4409(0x17e)][_0x2a4409(0x519)](_0x5f34ae=>{const _0x20eb1e=_0x2a4409;_0x5f34ae===ve[_0x20eb1e(0x3e1)]?this[_0x20eb1e(0x55e)](_0x3fe2b1):_0x5f34ae===ve['OFFLINE']&&(_0x3fe2b1=!0x0,this['_toggleOffline']());})),this[_0x2a4409(0x368)](this[_0x2a4409(0x457)][_0x2a4409(0x3e4)]['subscribe'](_0x2cad80=>{const _0x152af0=_0x2a4409;try{switch(_0x2cad80[_0x152af0(0x479)]){case _0x45d469[_0x152af0(0x4df)]:{this['_onRemoteChangeset'](_0x34525f(_0x2cad80['data']));break;}case _0x45d469[_0x152af0(0x4a7)]:{this['_onRemoteACK'](_0x2cad80['data']);break;}case _0x45d469['CHANGESET_REJ']:{this['_onRemoteRejected']();break;}case _0x45d469[_0x152af0(0x259)]:{this[_0x152af0(0x374)](_0x2cad80['data']);break;}case _0x45d469[_0x152af0(0x2c8)]:{this['_onFetchMissResult'](_0x2cad80['data'][_0x152af0(0x50c)][_0x152af0(0x2c9)](_0x3cfa75=>_0x34525f(_0x3cfa75)));break;}case _0x45d469[_0x152af0(0x4fb)]:this['_onRemoteRejected']({'isPermissionRej':!0x0});}}catch(_0x22d164){throw console[_0x152af0(0x17b)](_0x152af0(0x52c),_0x22d164),_0x22d164;}})),this[_0x2a4409(0x3fa)];}[_0x5bb7a4(0x402)](){const _0x37d657=_0x5bb7a4;this[_0x37d657(0x4f8)]=!0x1;}[_0x5bb7a4(0x216)](){const _0x44d8a2=_0x5bb7a4;if(this['_transitionLocked'])throw new Error(_0x44d8a2(0x43f));this[_0x44d8a2(0x4f8)]=!0x0;}[_0x5bb7a4(0x3fd)](_0x2fc6bb){const _0x6804d5=_0x5bb7a4;this['_lockTransition'](),this[_0x6804d5(0x263)](this[_0x6804d5(0x3fa)][_0x6804d5(0x260)](_0x2fc6bb)),this[_0x6804d5(0x402)]();}[_0x5bb7a4(0x506)](_0x3eeb1b){const _0x3f7bbd=_0x5bb7a4;if(!(_0x3eeb1b[_0x3f7bbd(0x571)]<=this[_0x3f7bbd(0x54c)][_0x3f7bbd(0x3f5)](this[_0x3f7bbd(0x4c4)]))){if(this['_collaborationPaused']){this['_remoteChangesetQueue'][_0x3f7bbd(0x433)](_0x3eeb1b);return;}this[_0x3f7bbd(0x1f5)](_0x3eeb1b);}}[_0x5bb7a4(0x43a)](){const _0x2fc1d1=_0x5bb7a4;this[_0x2fc1d1(0x42e)]['forEach'](_0x12987a=>this[_0x2fc1d1(0x1f5)](_0x12987a)),this[_0x2fc1d1(0x42e)]=[];}[_0x5bb7a4(0x1f5)](_0x1f594f){const _0x419737=_0x5bb7a4,_0x2ec486=this[_0x419737(0x421)][_0x419737(0x455)]['fetchThroughInterceptors'](this[_0x419737(0x421)][_0x419737(0x455)][_0x419737(0x330)]()['COMPRESS_MUTATION_APPLY'])(_0x1f594f['mutations'],null)||_0x1f594f['mutations'],_0xb3e089={..._0x1f594f,'mutations':_0x2ec486};this[_0x419737(0x216)](),this[_0x419737(0x263)](this[_0x419737(0x3fa)][_0x419737(0x38e)](_0xb3e089)),this['_unlockTransition']();}['_onRemoteACK'](_0x295fb8){const _0x25aaf7=_0x5bb7a4;this[_0x25aaf7(0x216)](),this[_0x25aaf7(0x263)](this['_state'][_0x25aaf7(0x30e)](_0x295fb8)),this[_0x25aaf7(0x402)]();}[_0x5bb7a4(0x3e9)](_0x3fa7d4){const _0x3c1875=_0x5bb7a4;this[_0x3c1875(0x216)](),this[_0x3c1875(0x263)](this['_state'][_0x3c1875(0x2eb)](_0x3fa7d4)),this['_unlockTransition']();}[_0x5bb7a4(0x374)](_0x23c2bc){const _0x397ca9=_0x5bb7a4;this[_0x397ca9(0x216)](),this[_0x397ca9(0x263)](this['_state']['onRemoteRetry'](_0x23c2bc)),this[_0x397ca9(0x402)]();}[_0x5bb7a4(0x37e)](_0x490256){const _0xb168e2=_0x5bb7a4;if(!(this[_0xb168e2(0x3fa)]instanceof he))throw new TypeError('[CollaborationEntity]:\x20cannot\x20apply\x20missing\x20results\x20on\x20other\x20states!');const _0x44992d=_0x490256[_0xb168e2(0x2c9)](_0x2fcd10=>{const _0x17fad2=_0xb168e2,_0x5b23a8=this[_0x17fad2(0x421)][_0x17fad2(0x455)]['fetchThroughInterceptors'](this[_0x17fad2(0x421)][_0x17fad2(0x455)][_0x17fad2(0x330)]()[_0x17fad2(0x4ac)])(_0x2fcd10[_0x17fad2(0x47f)],null)||_0x2fcd10[_0x17fad2(0x47f)];return{..._0x2fcd10,'mutations':_0x5b23a8};});this[_0xb168e2(0x216)](),this[_0xb168e2(0x263)](this[_0xb168e2(0x3fa)][_0xb168e2(0x4cf)](_0x44992d)),this[_0xb168e2(0x402)]();}['_toggleOffline'](){const _0xe1f5dc=_0x5bb7a4;this[_0xe1f5dc(0x216)](),this[_0xe1f5dc(0x263)](this['_state']['toggleOffline']()),this[_0xe1f5dc(0x402)]();}[_0x5bb7a4(0x55e)](_0x2de8d3=!0x1){const _0x16c7a3=_0x5bb7a4;this['_lockTransition'](),this[_0x16c7a3(0x263)](this['_state'][_0x16c7a3(0x387)]()),this[_0x16c7a3(0x402)]();const _0x1500ab=this[_0x16c7a3(0x3fa)];_0x2de8d3&&_0x1500ab instanceof Fe&&(this[_0x16c7a3(0x216)](),this[_0x16c7a3(0x263)](_0x1500ab[_0x16c7a3(0x560)]()),this['_unlockTransition']());}async[_0x5bb7a4(0x294)](){return new Promise(_0x3161ff=>{const _0x53703d=_0x4081;this['session'][_0x53703d(0x17e)]['pipe'](_0x35f71d(0x1))[_0x53703d(0x519)](async _0x360166=>{_0x3161ff(await this['_createInitialStateImpl'](_0x360166===ve['ONLINE']));});});}[_0x5bb7a4(0x4ef)](){const _0x44952b=_0x5bb7a4,_0x437e16=this[_0x44952b(0x4c4)];return{'onStateChange':(_0x249c57,_0x992ecd)=>{const _0x3bf766=_0x44952b;if(_0x249c57!==this['_state'])throw new Error('[CollaborationEntity]:\x20invalid\x20state\x20transition!\x20State\x20transferred\x20from\x20is\x20not\x20the\x20current\x20state.\x0aBefore:\x20'+_0x249c57['status']+_0x3bf766(0x2d8)+_0x992ecd[_0x3bf766(0x1ff)]+_0x3bf766(0x168)+this[_0x3bf766(0x3fa)][_0x3bf766(0x1ff)]);this[_0x3bf766(0x263)](_0x992ecd);},'onSendChangeset':_0x513d0e=>{const _0x192ff3=_0x44952b;_0x513d0e[_0x192ff3(0x3dd)]||(_0x513d0e[_0x192ff3(0x3dd)]=this[_0x192ff3(0x4e7)],_0x513d0e[_0x192ff3(0x3f6)]=++this[_0x192ff3(0x437)]);const _0x1c3336={'eventID':_0x45d469['SUBMIT_CHANGESET'],'data':{'unitID':_0x513d0e[_0x192ff3(0x4c4)],'unitType':this[_0x192ff3(0x3a6)],'changeset':_0x513d0e,'memberID':this[_0x192ff3(0x457)][_0x192ff3(0x494)]()}};this[_0x192ff3(0x457)][_0x192ff3(0x45a)](_0x1c3336,this[_0x192ff3(0x4c4)]);},'onMissingChangesets':({from:_0x156357,to:_0x1f2b25})=>{const _0x563da9=_0x44952b;this[_0x563da9(0x26e)][_0x563da9(0x23c)](_0x563da9(0x501),_0x563da9(0x3ea)+_0x156357+_0x563da9(0x223)+_0x1f2b25);const _0x930275={'eventID':_0x45d469[_0x563da9(0x3ce)],'data':{'unitID':_0x437e16,'unitType':this[_0x563da9(0x3a6)],'from':_0x156357,'to':_0x1f2b25}};this['session'][_0x563da9(0x45a)](_0x930275,this[_0x563da9(0x4c4)]);}};}async[_0x5bb7a4(0x351)](_0x20b170){const _0x3274b4=_0x5bb7a4;var _0x4e6d63,_0x25b9db;const _0x17d3dc=await this['_localCacheService']['loadOfflineData'](this[_0x3274b4(0x4c4)]),_0x2b7cf6=(_0x4e6d63=_0x17d3dc==null?void 0x0:_0x17d3dc[_0x3274b4(0x47f)])!=null?_0x4e6d63:[],_0x1f541f=(_0x25b9db=_0x17d3dc==null?void 0x0:_0x17d3dc[_0x3274b4(0x25a)])!=null?_0x25b9db:null,_0x5e3e6e=!!(_0x1f541f!=null&&_0x1f541f['sid'])&&!!(_0x1f541f!=null&&_0x1f541f['reqId']);this[_0x3274b4(0x4e7)]=_0x5e3e6e?_0x1f541f[_0x3274b4(0x3dd)]:zr(),this['_changesetReqId']=_0x5e3e6e?_0x1f541f['reqId']:0x0;const _0x124076=this['unitID'];try{this[_0x3274b4(0x1ac)](_0x1f541f,_0x2b7cf6);}catch(_0x476b65){this[_0x3274b4(0x26e)][_0x3274b4(0x17b)](_0x476b65);}const _0x3244b9=this['_createHandler']();if(_0x20b170){const _0x3ccf52=Ai(this[_0x3274b4(0x338)],_0x124076,this[_0x3274b4(0x3a6)],_0x1f541f,_0x2b7cf6,_0x3244b9);return _0x3ccf52 instanceof pe?_0x3ccf52[_0x3274b4(0x422)]():(_0x3ccf52 instanceof ge||_0x3ccf52 instanceof Te)&&_0x3ccf52[_0x3274b4(0x581)](),_0x3ccf52;}return this['_injector']['createInstance'](ye,_0x124076,this[_0x3274b4(0x3a6)],_0x1f541f,_0x2b7cf6,_0x3244b9);}[_0x5bb7a4(0x1ac)](_0x2a8d1e,_0x4c5f1b){const _0x2f84bc=_0x5bb7a4;var _0x5f118e,_0x2433ea;const _0x333718=this['_compressMutationService'][_0x2f84bc(0x455)][_0x2f84bc(0x4fa)](this['_compressMutationService'][_0x2f84bc(0x455)][_0x2f84bc(0x330)]()['COMPRESS_MUTATION_APPLY']);(_0x5f118e=_0x333718((_0x2a8d1e==null?void 0x0:_0x2a8d1e[_0x2f84bc(0x47f)])||[],null))==null||_0x5f118e['forEach'](_0x9dd3f9=>this[_0x2f84bc(0x53f)]['executeCommand'](_0x9dd3f9['id'],_0x9dd3f9[_0x2f84bc(0x3d9)])),(_0x2433ea=_0x333718(_0x4c5f1b||[],null))==null||_0x2433ea[_0x2f84bc(0x312)](_0x253b93=>this['_commandService']['executeCommand'](_0x253b93['id'],_0x253b93[_0x2f84bc(0x3d9)]));}};gt=Es([H(0x3,_0x22a3e1(_0x4c5160)),H(0x4,_0x22a3e1(q)),H(0x5,_0x22a3e1(_0x4b6791)),H(0x6,_0x22a3e1(_0x1fdc1b)),H(0x7,_0x22a3e1(_0x25150b)),H(0x8,_0x3efec9),H(0x9,_0x1e58f0),H(0xa,_0x38087f),H(0xb,_0x59e41b),H(0xc,_0x4f55bd(Rt))],gt);let ss=class extends gt{constructor(_0x3ca7e8,_0x41da10,_0x48c4bc,_0x1545ad,_0x54ca39,_0x133a9f,_0x2cea2b,_0x5f017f,_0x1d1cbe,_0x4e866e,_0x3076c6,_0x19cd28,_0x4489f2,_0x1aae28,_0x2c2a92,_0x1e3831,_0x5757f1,_0x5893ed){const _0x207e78=_0x5bb7a4;super(_0x3ca7e8,_0x48c4bc,_0x41da10,_0x1545ad,_0x54ca39,_0x133a9f,_0x2cea2b,_0x5f017f,_0x1aae28,_0x2c2a92,_0x1e3831,_0x5757f1,_0x5893ed),this[_0x207e78(0x4c4)]=_0x3ca7e8,this['type']=_0x41da10,this['_docStateChangeManagerService']=_0x1d1cbe,this[_0x207e78(0x360)]=_0x4e866e,this[_0x207e78(0x3d3)]=_0x3076c6,this[_0x207e78(0x36b)]=_0x19cd28,this[_0x207e78(0x491)]=_0x4489f2;}[_0x5bb7a4(0x4ef)](){const _0x496213=_0x5bb7a4,_0x4b906c=super[_0x496213(0x4ef)]();return _0x4b906c[_0x496213(0x4a5)]=_0x3af37e=>this[_0x496213(0x360)]['transformIMECache'](_0x3af37e),_0x4b906c['onTransformState']=_0x4ab242=>this[_0x496213(0x3d3)]['transformStateCache'](_0x4ab242),_0x4b906c[_0x496213(0x432)]=_0x9d45f9=>this[_0x496213(0x36b)]['transformSelections'](_0x9d45f9),_0x4b906c[_0x496213(0x559)]=_0x54fa55=>this[_0x496213(0x491)][_0x496213(0x4be)](_0x54fa55),_0x4b906c[_0x496213(0x1bd)]=_0x11465c=>this[_0x496213(0x360)][_0x496213(0x465)](_0x11465c),_0x4b906c[_0x496213(0x25f)]=_0x466ab7=>this[_0x496213(0x3d3)]['transformRemoteChangeset'](_0x466ab7),_0x4b906c;}async['_init'](){const _0x3c5a92=_0x5bb7a4,_0x121276=await super['_init']();return this[_0x3c5a92(0x4de)][_0x3c5a92(0x462)][_0x3c5a92(0x3f1)](_0x52fa59(this[_0x3c5a92(0x492)]))[_0x3c5a92(0x519)](_0x182eda=>{const _0xfefdac=_0x3c5a92;if(_0x182eda==null)return;const {unitId:_0x256e07,redoState:_0x102894,commandId:_0x2bff1d}=_0x182eda;if(_0x256e07!==this[_0xfefdac(0x4c4)])return;const _0x469098={'id':_0x2bff1d,'type':_0x5bf26c[_0xfefdac(0x233)],'params':{'unitId':_0x256e07,'actions':_0x102894[_0xfefdac(0x37d)],'textRanges':null}};this[_0xfefdac(0x3fd)](_0x469098);}),_0x121276;}};ss=Es([H(0x3,_0x22a3e1(_0x4c5160)),H(0x4,_0x22a3e1(q)),H(0x5,_0x22a3e1(_0x4b6791)),H(0x6,_0x22a3e1(_0x1fdc1b)),H(0x7,_0x22a3e1(_0x25150b)),H(0x8,_0x22a3e1(_0x1b1fa1)),H(0x9,_0x22a3e1(ft)),H(0xa,_0x22a3e1(mt)),H(0xb,_0x22a3e1(pt)),H(0xc,_0x22a3e1(Cs)),H(0xd,_0x3efec9),H(0xe,_0x1e58f0),H(0xf,_0x38087f),H(0x10,_0x59e41b),H(0x11,_0x4f55bd(Rt))],ss);let is=class extends gt{constructor(_0x16a136,_0x5806d9,_0x1667f7,_0x39083f,_0x11c235,_0x157703,_0x1d73f9,_0x2bb8fa,_0x3033fb,_0x57aae5,_0x26942d,_0x175078,_0x4a3092,_0x53c827){const _0x49f276=_0x5bb7a4;super(_0x16a136,_0x1667f7,_0x5806d9,_0x39083f,_0x11c235,_0x157703,_0x1d73f9,_0x2bb8fa,_0x57aae5,_0x26942d,_0x175078,_0x4a3092,_0x53c827),this['unitID']=_0x16a136,this[_0x49f276(0x27e)]=_0x5806d9,this[_0x49f276(0x1a0)]=_0x3033fb;}[_0x5bb7a4(0x4ef)](){const _0x5017b5=_0x5bb7a4,_0x583849=super[_0x5017b5(0x4ef)]();return _0x583849[_0x5017b5(0x432)]=_0x2217a1=>this[_0x5017b5(0x1a0)][_0x5017b5(0x1a5)](_0x2217a1),_0x583849;}async[_0x5bb7a4(0x515)](){const _0x234f88=_0x5bb7a4,_0x4084f6=await super[_0x234f88(0x515)]();return this[_0x234f88(0x368)](this[_0x234f88(0x53f)][_0x234f88(0x498)]((_0x4961f4,_0xe6d680)=>{const _0x67853b=_0x234f88;if(_0x4961f4[_0x67853b(0x27e)]!==_0x5bf26c[_0x67853b(0x233)]||_0xe6d680!=null&&_0xe6d680['fromCollab']||_0xe6d680!=null&&_0xe6d680[_0x67853b(0x33f)])return;const _0x5ef1af=_0x4961f4[_0x67853b(0x3d9)];if((_0x5ef1af==null?void 0x0:_0x5ef1af[_0x67853b(0x55d)])!==this[_0x67853b(0x4c4)])return;const _0x3de7e2=_0x4961f4,_0x299f08=this[_0x67853b(0x421)][_0x67853b(0x455)]['fetchThroughInterceptors'](this[_0x67853b(0x421)][_0x67853b(0x455)][_0x67853b(0x330)]()[_0x67853b(0x201)])([_0x3de7e2],null)||[_0x3de7e2];this['_onLocalMutation'](_0x299f08[0x0]);})),_0x4084f6;}};is=Es([H(0x3,_0x22a3e1(_0x4c5160)),H(0x4,_0x22a3e1(q)),H(0x5,_0x22a3e1(_0x4b6791)),H(0x6,_0x22a3e1(_0x1fdc1b)),H(0x7,_0x22a3e1(_0x25150b)),H(0x8,_0x22a3e1(vt)),H(0x9,_0x3efec9),H(0xa,_0x1e58f0),H(0xb,_0x38087f),H(0xc,_0x59e41b),H(0xd,_0x4f55bd(Rt))],is);var Co=Object[_0x5bb7a4(0x42b)],Eo=Object[_0x5bb7a4(0x4e4)],bo=(_0x1d82e9,_0x38bc05,_0x82a321,_0xafdaf9)=>{for(var _0x979d59=_0xafdaf9>0x1?void 0x0:_0xafdaf9?Eo(_0x38bc05,_0x82a321):_0x38bc05,_0x43c627=_0x1d82e9['length']-0x1,_0x38010b;_0x43c627>=0x0;_0x43c627--)(_0x38010b=_0x1d82e9[_0x43c627])&&(_0x979d59=(_0xafdaf9?_0x38010b(_0x38bc05,_0x82a321,_0x979d59):_0x38010b(_0x979d59))||_0x979d59);return _0xafdaf9&&_0x979d59&&Co(_0x38bc05,_0x82a321,_0x979d59),_0x979d59;},Lt=(_0x1aec3d,_0x55ce4c)=>(_0x5f088e,_0x436ada)=>_0x55ce4c(_0x5f088e,_0x436ada,_0x1aec3d);let it=class extends _0x177a9e{constructor(_0x349cca,_0x4637f4,_0x4a2e79){const _0x20a1d7=_0x5bb7a4;super(),g(this,_0x20a1d7(0x37a),new Map()),g(this,_0x20a1d7(0x3b4),new _0x1b179a()),(this[_0x20a1d7(0x338)]=_0x349cca,this[_0x20a1d7(0x575)]=_0x4637f4,this[_0x20a1d7(0x21d)]=_0x4a2e79,this[_0x20a1d7(0x515)]());}[_0x5bb7a4(0x4d2)](){const _0xedcab4=_0x5bb7a4;super[_0xedcab4(0x4d2)](),this[_0xedcab4(0x37a)]['forEach'](_0x37e41f=>_0x37e41f['dispose']()),this[_0xedcab4(0x37a)][_0xedcab4(0x395)]();}[_0x5bb7a4(0x2c5)](_0xae0cb8){const _0x13cfb5=_0x5bb7a4;var _0x3dd4b3;return(_0x3dd4b3=this[_0x13cfb5(0x37a)]['get'](_0xae0cb8))!=null?_0x3dd4b3:null;}[_0x5bb7a4(0x42f)](_0x1577f0){const _0x10bda5=_0x5bb7a4,_0x3bc605=this[_0x10bda5(0x2c5)](_0x1577f0);return _0x3bc605?_0x52cb6f(_0x3bc605):this['_entityInit$']['pipe'](_0x5a0a20(_0x7690ee=>_0x7690ee['unitID']===_0x1577f0));}[_0x5bb7a4(0x515)](){const _0x18b898=_0x5bb7a4;this['_univerInstanceService']['getTypeOfUnitAdded$'](_0x10a997[_0x18b898(0x55b)])['pipe'](_0x52fa59(this[_0x18b898(0x492)]),_0x1ce989(0x10))[_0x18b898(0x519)](async _0xaff156=>{const _0x156112=_0x18b898,_0x9e85d1=_0xaff156[_0x156112(0x322)](),_0x52e061=await this[_0x156112(0x567)](_0x9e85d1,ce[_0x156112(0x55b)]);this['_entities'][_0x156112(0x441)](_0x9e85d1,_0x52e061);}),this['_univerInstanceService']['getTypeOfUnitAdded$'](_0x10a997['UNIVER_DOC'])[_0x18b898(0x3f1)](_0x52fa59(this[_0x18b898(0x492)]),_0x1ce989(0x10))['pipe'](_0x5a0a20(_0x15fd4a=>!_0x15fd4a[_0x18b898(0x322)]()[_0x18b898(0x418)]('__')))[_0x18b898(0x519)](async _0x3cf8d1=>{const _0x54da12=_0x18b898,_0x5d3405=_0x3cf8d1[_0x54da12(0x322)](),_0xa133cb=await this['_startCollaboration'](_0x5d3405,ce[_0x54da12(0x172)]);this['_entities'][_0x54da12(0x441)](_0x5d3405,_0xa133cb);}),_0x4e4735(this[_0x18b898(0x21d)]['getTypeOfUnitDisposed$'](_0x10a997[_0x18b898(0x55b)]),this[_0x18b898(0x21d)][_0x18b898(0x39a)](_0x10a997[_0x18b898(0x172)]))[_0x18b898(0x3f1)](_0x52fa59(this[_0x18b898(0x492)]))[_0x18b898(0x519)](_0x3e6054=>{const _0x2bdedc=_0x18b898,_0x3019e4=_0x3e6054[_0x2bdedc(0x322)](),_0x3e53b6=this[_0x2bdedc(0x37a)]['get'](_0x3019e4);_0x3e53b6&&(_0x3e53b6[_0x2bdedc(0x4d2)](),this[_0x2bdedc(0x37a)][_0x2bdedc(0x3d8)](_0x3019e4));});}async[_0x5bb7a4(0x567)](_0x1b9919,_0x5dad69){const _0x32d7d8=_0x5bb7a4,_0x53c271=await this[_0x32d7d8(0x575)]['requireSession'](_0x1b9919),_0x359c04=this[_0x32d7d8(0x338)][_0x32d7d8(0x30c)](this[_0x32d7d8(0x2fe)](_0x5dad69),_0x1b9919,_0x5dad69,_0x53c271);return await _0x359c04['init'](),this[_0x32d7d8(0x3b4)][_0x32d7d8(0x3ff)](_0x359c04),_0x359c04;}[_0x5bb7a4(0x2fe)](_0x3451af){const _0x127d0c=_0x5bb7a4;switch(_0x3451af){case ce[_0x127d0c(0x172)]:return ss;case ce[_0x127d0c(0x55b)]:return is;default:throw new Error(_0x127d0c(0x19b)+_0x3451af);}}};it=bo([Lt(0x0,_0x22a3e1(_0x4c5160)),Lt(0x1,_0x22a3e1(Ae)),Lt(0x2,_0x2e0534)],it);const Gs=[_0x5bb7a4(0x3f4),_0x5bb7a4(0x4f2),'verdancy600',_0x5bb7a4(0x3c0),_0x5bb7a4(0x176),_0x5bb7a4(0x4bb)];class bs extends _0x1caa36{constructor(){const _0x578e57=_0x5bb7a4;super(...arguments),g(this,_0x578e57(0x2ee),new Map()),g(this,_0x578e57(0x56d),0x0);}[_0x5bb7a4(0x2cf)](_0x8da148){const _0x44271f=_0x5bb7a4;if(this[_0x44271f(0x2ee)][_0x44271f(0x2e6)](_0x8da148))return this[_0x44271f(0x2ee)]['get'](_0x8da148);const _0x5bbaed=Gs[this[_0x44271f(0x56d)]];return this['_colorIndex']=(this['_colorIndex']+0x1)%Gs[_0x44271f(0x282)],this[_0x44271f(0x2ee)][_0x44271f(0x441)](_0x8da148,_0x5bbaed),_0x5bbaed;}}var To=Object[_0x5bb7a4(0x42b)],Ro=Object[_0x5bb7a4(0x4e4)],yo=(_0x1e03c5,_0x5b38dc,_0x5075a7,_0x5c70ff)=>{const _0x387061=_0x5bb7a4;for(var _0x3c73fe=_0x5c70ff>0x1?void 0x0:_0x5c70ff?Ro(_0x5b38dc,_0x5075a7):_0x5b38dc,_0x125efd=_0x1e03c5[_0x387061(0x282)]-0x1,_0x27f605;_0x125efd>=0x0;_0x125efd--)(_0x27f605=_0x1e03c5[_0x125efd])&&(_0x3c73fe=(_0x5c70ff?_0x27f605(_0x5b38dc,_0x5075a7,_0x3c73fe):_0x27f605(_0x3c73fe))||_0x3c73fe);return _0x5c70ff&&_0x3c73fe&&To(_0x5b38dc,_0x5075a7,_0x3c73fe),_0x3c73fe;},Oe=(_0x5bd12c,_0x58aff3)=>(_0xe4761c,_0x2f81f1)=>_0x58aff3(_0xe4761c,_0x2f81f1,_0x5bd12c);const Oo=0x12c,wo=0x64;let ns=class extends _0x177a9e{constructor(_0x519625,_0x53814a,_0x2894b9,_0x5d336e,_0x497b88,_0x3da8ff,_0x4e8d6e,_0x14c337,_0x2caffb){const _0x350e99=_0x5bb7a4;super(),g(this,_0x350e99(0x2e3),!0x1),g(this,_0x350e99(0x515),!0x1),g(this,_0x350e99(0x299),new _0x348a88(new Map())),g(this,_0x350e99(0x52f),this[_0x350e99(0x299)][_0x350e99(0x1a6)]()),g(this,_0x350e99(0x208),new _0x348a88([])),g(this,_0x350e99(0x32f),this['_roomMembers$'][_0x350e99(0x3f1)](_0x12cfe4(Oo))),g(this,_0x350e99(0x2ff),_0x47386f(_0x21ff96=>{const _0x457ff5=_0x350e99,_0x4db5a8={'eventID':_0x45d469[_0x457ff5(0x2cd)],'data':{'unitID':this[_0x457ff5(0x4c4)],'memberID':this['_session']['getMemberID'](),'selection':Pi(_0x21ff96)}};this[_0x457ff5(0x42d)][_0x457ff5(0x45a)](_0x4db5a8,this[_0x457ff5(0x4c4)]);},wo)),(this[_0x350e99(0x4c4)]=_0x519625,this[_0x350e99(0x42d)]=_0x53814a,this[_0x350e99(0x338)]=_0x2894b9,this['_colorAssignService']=_0x5d336e,this['_memberService']=_0x497b88,this[_0x350e99(0x532)]=_0x3da8ff,this[_0x350e99(0x1c5)]=_0x4e8d6e,this[_0x350e99(0x21d)]=_0x14c337,this[_0x350e99(0x53f)]=_0x2caffb);}get[_0x5bb7a4(0x466)](){const _0x25896e=_0x5bb7a4;return this[_0x25896e(0x299)][_0x25896e(0x43d)]();}get[_0x5bb7a4(0x18b)](){const _0x1f52bb=_0x5bb7a4;return this[_0x1f52bb(0x208)][_0x1f52bb(0x43d)]();}[_0x5bb7a4(0x4d2)](){const _0x508ad6=_0x5bb7a4;super[_0x508ad6(0x4d2)](),this[_0x508ad6(0x299)][_0x508ad6(0x3ff)](new Map()),this[_0x508ad6(0x299)][_0x508ad6(0x313)](),this[_0x508ad6(0x208)]['next']([]),this['_roomMembers$'][_0x508ad6(0x313)]();}[_0x5bb7a4(0x1d6)](){const _0x5d96c4=_0x5bb7a4;this[_0x5d96c4(0x515)]||(this['_init']=!0x0,this[_0x5d96c4(0x42d)][_0x5d96c4(0x17e)]['pipe'](_0x52fa59(this['dispose$']))[_0x5d96c4(0x519)](_0x3c92ab=>{const _0x22fd49=_0x5d96c4;_0x3c92ab===ve[_0x22fd49(0x3e1)]?this[_0x22fd49(0x55e)]():this[_0x22fd49(0x534)]();}),this[_0x5d96c4(0x42d)]['event$']['pipe'](_0x52fa59(this[_0x5d96c4(0x492)]))[_0x5d96c4(0x519)](_0x5ac665=>{const _0x52a46d=_0x5d96c4,_0x1d23a8=_0x5ac665[_0x52a46d(0x479)];_0x1d23a8===_0x45d469[_0x52a46d(0x2cd)]&&this[_0x52a46d(0x170)](_0x5ac665),_0x1d23a8===_0x45d469[_0x52a46d(0x489)]&&this[_0x52a46d(0x272)](_0x5ac665);}),this[_0x5d96c4(0x368)](this[_0x5d96c4(0x53f)][_0x5d96c4(0x498)](_0x148ab9=>{const _0x3440ac=_0x5d96c4,_0x13e6a0=_0x148ab9[_0x3440ac(0x3d9)];_0x13e6a0!=null&&this['_online']&&_0x148ab9['id']===_0x10288c['id']&&_0x13e6a0[_0x3440ac(0x55d)]===this[_0x3440ac(0x4c4)]&&_0x13e6a0[_0x3440ac(0x4b5)]===!0x1&&_0x13e6a0[_0x3440ac(0x56e)][_0x3440ac(0x282)]>0x0&&this[_0x3440ac(0x2ff)](_0x13e6a0[_0x3440ac(0x56e)]);})),this[_0x5d96c4(0x532)]['collabCursorState$'][_0x5d96c4(0x3f1)](_0x52fa59(this[_0x5d96c4(0x492)]))['subscribe'](_0x1cd075=>{const _0x51d6d1=_0x5d96c4;if((_0x1cd075==null?void 0x0:_0x1cd075['unitID'])!==this[_0x51d6d1(0x4c4)])return;const _0x92d1b7={'eventID':_0x45d469[_0x51d6d1(0x2cd)],'data':_0x1cd075};this[_0x51d6d1(0x170)](_0x92d1b7);}),this[_0x5d96c4(0x368)](this[_0x5d96c4(0x53f)][_0x5d96c4(0x498)](_0x262267=>{const _0x14c85c=_0x5d96c4;if(_0x262267[_0x14c85c(0x3d9)]==null)return;const _0x4b1bef=_0x262267[_0x14c85c(0x3d9)];if(_0x262267['id']!==_0x185e84['id']||_0x4b1bef[_0x14c85c(0x55d)]!==this['unitID'])return;const _0x27df98={'id':'doc.mutation.rich-text-editing','params':_0x4b1bef},_0x3ff98b=this[_0x14c85c(0x466)];for(const [_0x396d77,_0x695cf1]of _0x3ff98b){const _0x18efa6={'id':_0x14c85c(0x557),'params':{'unitId':this[_0x14c85c(0x4c4)],'actions':null,'textRanges':_0x695cf1[_0x14c85c(0x56e)]}},_0x24e3f2=this[_0x14c85c(0x1c5)][_0x14c85c(0x4f0)](_0x27df98,_0x18efa6,!0x1);if(_0x35b5b8(_0x24e3f2))throw _0x24e3f2[_0x14c85c(0x17b)];_0x3ff98b[_0x14c85c(0x441)](_0x396d77,{..._0x695cf1,'ranges':_0x24e3f2[_0x14c85c(0x4d6)][_0x14c85c(0x3d9)][_0x14c85c(0x2a0)]});}queueMicrotask(()=>{const _0x4202ed=_0x14c85c;this[_0x4202ed(0x299)][_0x4202ed(0x3ff)](_0x3ff98b);});})));}['_onCursorUpdate'](_0x290ab2){const _0x43a34b=_0x5bb7a4;var _0x36ae1f,_0x1b5706;const {memberID:_0xca9b28,selection:_0x4bb6a8}=_0x290ab2[_0x43a34b(0x2d5)],_0x2cab56=ho(_0x4bb6a8),_0x4349b8=(_0x1b5706=(_0x36ae1f=this[_0x43a34b(0x49f)][_0x43a34b(0x25d)](this[_0x43a34b(0x4c4)],_0xca9b28))==null?void 0x0:_0x36ae1f[_0x43a34b(0x408)])!=null?_0x1b5706:'Unknown\x20user',_0xe9bf6e={'color':this[_0x43a34b(0x517)][_0x43a34b(0x2cf)](_0xca9b28),'name':_0x4349b8,'ranges':_0x2cab56},_0x245ece=this['cursorInfo'];_0x245ece[_0x43a34b(0x441)](_0xca9b28,_0xe9bf6e),this[_0x43a34b(0x299)][_0x43a34b(0x3ff)](_0x245ece);}['_onCursorDelete'](_0x5d9099){const _0x406697=_0x5bb7a4,{memberID:_0x5619ee}=_0x5d9099['data'],_0x1bb646=this[_0x406697(0x466)];_0x1bb646[_0x406697(0x3d8)](_0x5619ee),this[_0x406697(0x299)][_0x406697(0x3ff)](_0x1bb646);}[_0x5bb7a4(0x55e)](){const _0x257d77=_0x5bb7a4;var _0x30c90f;if(this[_0x257d77(0x2e3)]=!0x0,((_0x30c90f=this['_univerInstanceService'][_0x257d77(0x1dd)]())==null?void 0x0:_0x30c90f[_0x257d77(0x322)]())!==this[_0x257d77(0x4c4)])return;const _0x221339=this['_injector'][_0x257d77(0x4f7)](_0x4ce6e6)[_0x257d77(0x1c3)]();Array[_0x257d77(0x2f4)](_0x221339)&&_0x221339[_0x257d77(0x282)]>0x0&&this['_updateLocalCursor'](_0x221339);}[_0x5bb7a4(0x534)](){this['_online']=!0x1;}};ns=yo([Oe(0x2,_0x22a3e1(_0x4c5160)),Oe(0x3,_0x22a3e1(bs)),Oe(0x4,_0x22a3e1(Ne)),Oe(0x5,_0x22a3e1(Cs)),Oe(0x6,_0x2db4c4),Oe(0x7,_0x2e0534),Oe(0x8,_0x1e58f0)],ns);var Do=Object[_0x5bb7a4(0x42b)],Po=Object[_0x5bb7a4(0x4e4)],Uo=(_0xb957ce,_0x286a69,_0x36d0f5,_0x32b840)=>{const _0xb57c65=_0x5bb7a4;for(var _0x5c396c=_0x32b840>0x1?void 0x0:_0x32b840?Po(_0x286a69,_0x36d0f5):_0x286a69,_0x4c2d14=_0xb957ce[_0xb57c65(0x282)]-0x1,_0x27c021;_0x4c2d14>=0x0;_0x4c2d14--)(_0x27c021=_0xb957ce[_0x4c2d14])&&(_0x5c396c=(_0x32b840?_0x27c021(_0x286a69,_0x36d0f5,_0x5c396c):_0x27c021(_0x5c396c))||_0x5c396c);return _0x32b840&&_0x5c396c&&Do(_0x286a69,_0x36d0f5,_0x5c396c),_0x5c396c;},Be=(_0x44b6f1,_0x27ce8c)=>(_0x1493d6,_0x1f5274)=>_0x27ce8c(_0x1493d6,_0x1f5274,_0x44b6f1);const No=0x12c,Ao=0x64,Mo=()=>{let _0x442d41=[],_0x97be62=!0x1;return _0x1f35df=>{_0x442d41['push'](_0x1f35df),_0x97be62||(_0x97be62=!0x0,setTimeout(()=>{const _0x2f8f2a=_0x4081;_0x442d41[_0x2f8f2a(0x312)](_0x5dd382=>_0x5dd382()),_0x442d41=[],_0x97be62=!0x1;}));};};let rs=class extends _0x177a9e{constructor(_0x1c9140,_0x30f821,_0x19101a,_0x402c06,_0x4e7f1c,_0x83eccb,_0x35a41f,_0x45a503){const _0x70bef8=_0x5bb7a4;super(),g(this,_0x70bef8(0x2e3),!0x1),g(this,_0x70bef8(0x515),!0x1),g(this,'_cursorInfo$',new _0x348a88(new Map())),g(this,_0x70bef8(0x52f),this[_0x70bef8(0x299)]['asObservable']()),g(this,_0x70bef8(0x208),new _0x348a88([])),g(this,_0x70bef8(0x32f),this[_0x70bef8(0x208)][_0x70bef8(0x3f1)](_0x12cfe4(No))),g(this,_0x70bef8(0x2ff),_0x47386f((_0x4cb4df,_0x4782a8)=>{const _0x13fa09=_0x70bef8,_0x41cd4c={'eventID':_0x45d469['UPDATE_CURSOR'],'data':{'unitID':this[_0x13fa09(0x4c4)],'memberID':this[_0x13fa09(0x42d)]['getMemberID'](),'selection':_0x5cd454(_0x4cb4df,_0x4782a8[_0x13fa09(0x2da)])}};this['_session'][_0x13fa09(0x45a)](_0x41cd4c,this[_0x13fa09(0x4c4)]);},Ao)),(this['unitID']=_0x1c9140,this['_session']=_0x30f821,this[_0x70bef8(0x338)]=_0x19101a,this['_colorAssignService']=_0x402c06,this[_0x70bef8(0x49f)]=_0x4e7f1c,this['_univerInstanceService']=_0x83eccb,this['_commandService']=_0x35a41f,this[_0x70bef8(0x4db)]=_0x45a503);}get[_0x5bb7a4(0x466)](){const _0x3ab7be=_0x5bb7a4;return this['_cursorInfo$'][_0x3ab7be(0x43d)]();}get[_0x5bb7a4(0x18b)](){const _0x57a218=_0x5bb7a4;return this[_0x57a218(0x208)]['getValue']();}[_0x5bb7a4(0x4d2)](){const _0x4f1b96=_0x5bb7a4;super[_0x4f1b96(0x4d2)](),this[_0x4f1b96(0x299)][_0x4f1b96(0x3ff)](new Map()),this[_0x4f1b96(0x299)]['complete'](),this[_0x4f1b96(0x208)]['next']([]),this['_roomMembers$'][_0x4f1b96(0x313)]();}['init'](){const _0x13f09b=_0x5bb7a4;this['_init']||(this[_0x13f09b(0x515)]=!0x0,this[_0x13f09b(0x42d)]['sessionStatus$'][_0x13f09b(0x3f1)](_0x52fa59(this[_0x13f09b(0x492)]))['subscribe'](_0x35075b=>{const _0x1ba2db=_0x13f09b;_0x35075b===ve[_0x1ba2db(0x3e1)]?this[_0x1ba2db(0x55e)]():this[_0x1ba2db(0x534)]();}),this[_0x13f09b(0x42d)][_0x13f09b(0x3e4)]['pipe'](_0x52fa59(this[_0x13f09b(0x492)]))[_0x13f09b(0x519)](_0x5b261c=>{const _0x497afe=_0x13f09b,_0x3ba498=_0x5b261c['eventID'];_0x3ba498===_0x45d469[_0x497afe(0x2cd)]&&this[_0x497afe(0x170)](_0x5b261c),_0x3ba498===_0x45d469[_0x497afe(0x489)]&&this[_0x497afe(0x272)](_0x5b261c);}),this['_onRefRangeChange'](),this['disposeWithMe'](this[_0x13f09b(0x53f)]['onCommandExecuted'](_0x5e33d0=>{const _0xd39a2a=_0x13f09b;if(this[_0xd39a2a(0x2e3)]&&_0x5e33d0['id']===_0x544c74['id']&&_0x5e33d0[_0xd39a2a(0x3d9)][_0xd39a2a(0x55d)]===this['unitID']){const _0x39587a=_0x5e33d0[_0xd39a2a(0x3d9)];this[_0xd39a2a(0x2ff)](_0x39587a[_0xd39a2a(0x1c9)],_0x39587a['selections'][0x0]);}})));}[_0x5bb7a4(0x170)](_0x7f30f0){const _0x785518=_0x5bb7a4;var _0x4fb886,_0x26046;const {memberID:_0x4449c0,selection:_0x59f94f}=_0x7f30f0[_0x785518(0x2d5)],{sheetName:_0x424bb2,range:_0x2a23e8}=_0x231961(_0x59f94f),_0x4f9707={'name':(_0x26046=(_0x4fb886=this[_0x785518(0x49f)]['getMember'](this['unitID'],_0x4449c0))==null?void 0x0:_0x4fb886[_0x785518(0x408)])!=null?_0x26046:_0x785518(0x4fe),'range':this[_0x785518(0x46f)](_0x424bb2,_0x2a23e8),'sheetID':_0x424bb2,'color':this[_0x785518(0x517)][_0x785518(0x2cf)](_0x4449c0),'selection':_0x59f94f},_0x556828=this['cursorInfo'];_0x556828['set'](_0x4449c0,_0x4f9707),this[_0x785518(0x299)][_0x785518(0x3ff)](_0x556828);}[_0x5bb7a4(0x272)](_0x5c1b8c){const _0x143edc=_0x5bb7a4,{memberID:_0x142b96}=_0x5c1b8c['data'],_0x565f30=this[_0x143edc(0x466)];_0x565f30[_0x143edc(0x3d8)](_0x142b96),this[_0x143edc(0x299)][_0x143edc(0x3ff)](_0x565f30);}[_0x5bb7a4(0x46f)](_0x729cec,_0x492fe0){const _0x23c6dc=_0x5bb7a4;var _0xcf8860,_0x3dfe9c;const _0x380b9f=(_0x3dfe9c=(_0xcf8860=this[_0x23c6dc(0x21d)][_0x23c6dc(0x44c)](this['unitID']))==null?void 0x0:_0xcf8860['getSheetBySheetId'](_0x729cec))==null?void 0x0:_0x3dfe9c['getMergeData']();return(_0x380b9f==null?void 0x0:_0x380b9f['find'](_0x1a9712=>_0x49e4db[_0x23c6dc(0x2b3)](_0x1a9712,_0x492fe0)))||_0x492fe0;}[_0x5bb7a4(0x270)](){const _0x39c6bb=_0x5bb7a4,_0x103aab=new _0x4e3306(),_0x10ef5b=Mo(),_0x3cb06e=()=>{const _0xcfb336=_0x4081;_0x103aab['dispose']();const _0x2f8ceb=(_0x51e58b,_0x8dd2b6,_0x12fc89,_0x443f4d)=>{const _0x40b97c=_0x4081;let _0x3109f1=[];switch(_0x51e58b['id']){case _0x34bde3[_0x40b97c(0x53d)]:{_0x3109f1=_0xd913ed(_0x51e58b,_0x443f4d);break;}case _0x34bde3[_0x40b97c(0x1e5)]:{_0x3109f1=_0xc12035(_0x51e58b,_0x443f4d);break;}case _0x34bde3[_0x40b97c(0x230)]:{_0x3109f1=_0x490fbf(_0x51e58b,_0x443f4d);break;}case _0x34bde3[_0x40b97c(0x476)]:{_0x3109f1=_0x595791(_0x51e58b,_0x443f4d);break;}case _0x34bde3[_0x40b97c(0x311)]:{_0x3109f1=_0x3995ec(_0x51e58b,_0x443f4d);break;}case _0x34bde3[_0x40b97c(0x543)]:{_0x3109f1=_0x5120ad(_0x51e58b,_0x443f4d);break;}case _0x34bde3['MoveRangeCommandId']:{_0x3109f1=_0x20726c(_0x51e58b,_0x443f4d);break;}case _0x34bde3[_0x40b97c(0x445)]:{_0x3109f1=_0x74bb6c(_0x51e58b,_0x443f4d);break;}case _0x34bde3['RemoveRowCommandId']:{_0x3109f1=_0x399794(_0x51e58b,_0x443f4d);break;}}const _0x409f86=_0x4ea810(_0x3109f1,_0x443f4d),_0x3ca028=this[_0x40b97c(0x466)][_0x40b97c(0x4f7)](_0x8dd2b6);if(_0x3ca028&&_0x409f86){const _0x53474c={..._0x3ca028,'range':_0x409f86};this[_0x40b97c(0x466)][_0x40b97c(0x441)](_0x8dd2b6,_0x53474c),_0x10ef5b(()=>{const _0x1dd6e0=_0x40b97c,_0x4f1ae0=this['_refRangeService'][_0x1dd6e0(0x308)](_0x409f86,_0x519ebf=>(_0x4f1ae0[_0x1dd6e0(0x4d2)](),_0x2f8ceb(_0x519ebf,_0x8dd2b6,_0x12fc89,_0x409f86)));_0x103aab['add'](_0x4f1ae0);});}return{'redos':[],'undos':[]};};this[_0xcfb336(0x466)]['forEach']((_0x449fb5,_0x4b0f8c)=>{const _0x241f22=_0xcfb336,{range:_0x38e2c9,sheetID:_0x511393}=_0x449fb5,_0x7a8492=this[_0x241f22(0x4db)][_0x241f22(0x308)](_0x38e2c9,_0x37c86c=>(_0x7a8492[_0x241f22(0x4d2)](),_0x2f8ceb(_0x37c86c,_0x4b0f8c,_0x511393,_0x38e2c9)));_0x103aab[_0x241f22(0x570)](_0x7a8492);});};this[_0x39c6bb(0x368)](_0x7884da(this['_cursorInfo$']['subscribe'](()=>{_0x3cb06e();})));}[_0x5bb7a4(0x55e)](){const _0x1027f2=_0x5bb7a4;var _0x34939a,_0x5b23d5;if(this[_0x1027f2(0x2e3)]=!0x0,((_0x34939a=this[_0x1027f2(0x21d)][_0x1027f2(0x1dd)]())==null?void 0x0:_0x34939a['getUnitId']())!==this[_0x1027f2(0x4c4)])return;const _0x33530f=(_0x5b23d5=this['_injector']['get'](_0x11487d)[_0x1027f2(0x171)]())==null?void 0x0:_0x5b23d5[0x0],_0x1725db=this[_0x1027f2(0x21d)][_0x1027f2(0x583)](_0x10a997['UNIVER_SHEET'])['getActiveSheet']();_0x33530f&&_0x1725db&&this[_0x1027f2(0x2ff)](_0x1725db[_0x1027f2(0x192)](),_0x33530f);}[_0x5bb7a4(0x534)](){const _0x5e6986=_0x5bb7a4;this[_0x5e6986(0x2e3)]=!0x1;}};rs=Uo([Be(0x2,_0x22a3e1(_0x4c5160)),Be(0x3,_0x22a3e1(bs)),Be(0x4,_0x22a3e1(Ne)),Be(0x5,_0x2e0534),Be(0x6,_0x1e58f0),Be(0x7,_0x22a3e1(_0x180f23))],rs);var xo=Object[_0x5bb7a4(0x42b)],Lo=Object['getOwnPropertyDescriptor'],$o=(_0x3dfd0b,_0x438922,_0x1a56b7,_0x3691a5)=>{const _0xf01ec0=_0x5bb7a4;for(var _0x390958=_0x3691a5>0x1?void 0x0:_0x3691a5?Lo(_0x438922,_0x1a56b7):_0x438922,_0x3acb40=_0x3dfd0b[_0xf01ec0(0x282)]-0x1,_0x3d92af;_0x3acb40>=0x0;_0x3acb40--)(_0x3d92af=_0x3dfd0b[_0x3acb40])&&(_0x390958=(_0x3691a5?_0x3d92af(_0x438922,_0x1a56b7,_0x390958):_0x3d92af(_0x390958))||_0x390958);return _0x3691a5&&_0x390958&&xo(_0x438922,_0x1a56b7,_0x390958),_0x390958;},$t=(_0x3d6510,_0x379f8f)=>(_0x28b568,_0x3dbfb8)=>_0x379f8f(_0x28b568,_0x3dbfb8,_0x3d6510);let Ve=class extends _0x177a9e{constructor(_0x25ebef,_0x20ec97,_0x30d000){const _0x2db7f7=_0x5bb7a4;super(),g(this,_0x2db7f7(0x37a),new Map()),g(this,'_entityInit$',new _0x1b179a()),(this[_0x2db7f7(0x21d)]=_0x25ebef,this[_0x2db7f7(0x338)]=_0x20ec97,this[_0x2db7f7(0x575)]=_0x30d000,this[_0x2db7f7(0x515)]());}[_0x5bb7a4(0x4d2)](){const _0x15ad81=_0x5bb7a4;super['dispose'](),this[_0x15ad81(0x3b4)][_0x15ad81(0x313)](),this[_0x15ad81(0x37a)][_0x15ad81(0x312)](_0x389025=>_0x389025[_0x15ad81(0x4d2)]());}['getCollabCursors$'](_0x42924e){const _0x5cf9c4=_0x5bb7a4;return this['_entities'][_0x5cf9c4(0x2e6)](_0x42924e)?this['_entities']['get'](_0x42924e)['cursorInfo$']:this[_0x5cf9c4(0x3b4)][_0x5cf9c4(0x3f1)](_0x3cb187(_0x571329=>_0x571329['unitID']===_0x42924e),_0x1e3e59(_0x363fc7=>_0x363fc7[_0x5cf9c4(0x52f)]));}[_0x5bb7a4(0x515)](){const _0x34d04c=_0x5bb7a4;this[_0x34d04c(0x21d)][_0x34d04c(0x4aa)](_0x10a997['UNIVER_SHEET'])[_0x34d04c(0x3f1)](_0x52fa59(this[_0x34d04c(0x492)]))[_0x34d04c(0x519)](async _0x15947d=>{const _0x1bd17c=_0x34d04c,_0x48e654=_0x15947d['getUnitId'](),_0x16584a=await this[_0x1bd17c(0x4c3)](_0x48e654);this[_0x1bd17c(0x3b4)][_0x1bd17c(0x3ff)](_0x16584a),this[_0x1bd17c(0x37a)][_0x1bd17c(0x441)](_0x48e654,_0x16584a);}),this[_0x34d04c(0x21d)][_0x34d04c(0x4aa)](_0x10a997[_0x34d04c(0x172)])[_0x34d04c(0x3f1)](_0x52fa59(this['dispose$']))[_0x34d04c(0x3f1)](_0x3cb187(_0xca1fba=>!_0xca1fba[_0x34d04c(0x322)]()[_0x34d04c(0x418)]('__')))[_0x34d04c(0x519)](async _0x40b74c=>{const _0x39d475=_0x34d04c,_0x4668c7=_0x40b74c[_0x39d475(0x322)](),_0x52892d=await this[_0x39d475(0x474)](_0x4668c7);this[_0x39d475(0x3b4)][_0x39d475(0x3ff)](_0x52892d),this[_0x39d475(0x37a)]['set'](_0x4668c7,_0x52892d);}),_0x4e4735(this['_univerInstanceService'][_0x34d04c(0x39a)](_0x10a997[_0x34d04c(0x172)]),this['_univerInstanceService']['getTypeOfUnitDisposed$'](_0x10a997[_0x34d04c(0x55b)]))['pipe'](_0x52fa59(this[_0x34d04c(0x492)]))[_0x34d04c(0x519)](_0x4210f3=>{const _0x2f9c8d=_0x34d04c,_0x4f2f7e=_0x4210f3[_0x2f9c8d(0x322)](),_0x4a03a1=this['_entities'][_0x2f9c8d(0x4f7)](_0x4f2f7e);_0x4a03a1&&(_0x4a03a1[_0x2f9c8d(0x4d2)](),this[_0x2f9c8d(0x37a)][_0x2f9c8d(0x3d8)](_0x4f2f7e));});}async['_startSheetCollabCursor'](_0x23395f){const _0x1b5474=_0x5bb7a4,_0x23de9f=await this[_0x1b5474(0x575)]['requireSession'](_0x23395f),_0x1dd677=this[_0x1b5474(0x338)][_0x1b5474(0x30c)](rs,_0x23395f,_0x23de9f);return _0x1dd677['init'](),_0x1dd677;}async['_startDocCollabCursor'](_0x2afd6a){const _0x2920ba=_0x5bb7a4,_0x2fd856=await this[_0x2920ba(0x575)][_0x2920ba(0x2c7)](_0x2afd6a),_0x324109=this[_0x2920ba(0x338)][_0x2920ba(0x30c)](ns,_0x2afd6a,_0x2fd856);return _0x324109[_0x2920ba(0x1d6)](),_0x324109;}};Ve=$o([$t(0x0,_0x2e0534),$t(0x1,_0x22a3e1(_0x4c5160)),$t(0x2,_0x22a3e1(Ae))],Ve);const nt=0x14,Ys=0xc8,Ht=0x4,Ho=0x5;function jo(_0x3913c0,_0x5ba156){const _0x869cc5=_0x5bb7a4;let {radius:_0x1bcf54,width:_0x18f252,height:_0xf50ddb}=_0x5ba156;_0x1bcf54=_0x1bcf54!=null?_0x1bcf54:0x0,_0x18f252=_0x18f252!=null?_0x18f252:0x1e,_0xf50ddb=_0xf50ddb!=null?_0xf50ddb:0x1e;let _0x1ce913=0x0,_0x25036f=0x0,_0x499977=0x0;_0x1ce913=_0x25036f=_0x499977=Math[_0x869cc5(0x443)](_0x1bcf54,_0x18f252/0x2,_0xf50ddb/0x2),_0x3913c0[_0x869cc5(0x336)](),_0x3913c0[_0x869cc5(0x4d4)](_0x1ce913,0x0),_0x3913c0[_0x869cc5(0x463)](_0x18f252-_0x25036f,0x0),_0x3913c0[_0x869cc5(0x449)](_0x18f252-_0x25036f,_0x25036f,_0x25036f,Math['PI']*0x3/0x2,0x0,!0x1),_0x3913c0[_0x869cc5(0x463)](_0x18f252,_0xf50ddb-_0x499977),_0x3913c0['arc'](_0x18f252-_0x499977,_0xf50ddb-_0x499977,_0x499977,0x0,Math['PI']/0x2,!0x1),_0x3913c0[_0x869cc5(0x463)](0x0,_0xf50ddb),_0x3913c0[_0x869cc5(0x463)](0x0,_0x1ce913),_0x3913c0[_0x869cc5(0x449)](_0x1ce913,_0x1ce913,_0x1ce913,Math['PI'],Math['PI']*0x3/0x2,!0x1),_0x3913c0[_0x869cc5(0x3f2)](),_0x5ba156['fill']&&(_0x3913c0[_0x869cc5(0x33e)](),_0x3913c0[_0x869cc5(0x434)]=_0x5ba156[_0x869cc5(0x31c)],_0x5ba156[_0x869cc5(0x385)]===_0x869cc5(0x4ea)?_0x3913c0[_0x869cc5(0x31c)](_0x869cc5(0x4ea)):_0x3913c0[_0x869cc5(0x31c)](),_0x3913c0[_0x869cc5(0x574)]());}class yt extends _0x4b8d3f{constructor(_0x4a0347,_0x537e57){const _0xaeffb4=_0x5bb7a4;super(_0x4a0347,_0x537e57),g(this,_0xaeffb4(0x203)),g(this,_0xaeffb4(0x353)),(this['color']=_0x537e57==null?void 0x0:_0x537e57[_0xaeffb4(0x203)],this['text']=_0x537e57==null?void 0x0:_0x537e57[_0xaeffb4(0x353)]);}static[_0x5bb7a4(0x202)](_0xeeb684,_0x62adbf){const _0x95e8df=_0x5bb7a4,{text:_0x54a123,color:_0x476cda}=_0x62adbf;_0xeeb684[_0x95e8df(0x33e)](),_0xeeb684[_0x95e8df(0x3db)]='bold\x2013px\x20Source\x20Han\x20Sans\x20CN';const _0xf8a811=_0xeeb684[_0x95e8df(0x38a)](_0x54a123)['width'],_0x337eb6=Math[_0x95e8df(0x443)](_0xf8a811+0x2*Ht,Ys);jo(_0xeeb684,{'height':nt,'radius':0x4,'width':_0x337eb6,'fill':_0x476cda,'evented':!0x1}),_0xeeb684[_0x95e8df(0x434)]=_0x95e8df(0x250);const _0x24fe7c=Ht,_0x75454b=nt-Ho,_0x214369=Ys-0x2*Ht;if(_0xf8a811>_0x214369){let _0x4a1f1f='',_0x2c0145=0x0;for(const _0x2270dd of _0x54a123){const _0x116813=_0xeeb684[_0x95e8df(0x38a)](_0x2270dd)['width'];if(_0x2c0145+_0x116813<=_0x214369-_0xeeb684[_0x95e8df(0x38a)](_0x95e8df(0x254))['width'])_0x4a1f1f+=_0x2270dd,_0x2c0145+=_0x116813;else{_0x4a1f1f+=_0x95e8df(0x254);break;}}_0xeeb684[_0x95e8df(0x1de)](_0x4a1f1f,_0x24fe7c,_0x75454b);}else _0xeeb684['fillText'](_0x54a123,_0x24fe7c,_0x75454b);_0xeeb684[_0x95e8df(0x574)]();}[_0x5bb7a4(0x3c7)](_0x414f40){yt['drawWith'](_0x414f40,this);}}const jt=_0x5bb7a4(0x53c),Bo='collab-text-range-',ko=_0x5bb7a4(0x4fd),Je=0x6,Wo=1.5,Bt=0x4,Fo=1.5,Vo=_0x5bb7a4(0x2de);class Ks{constructor(_0x5d0310,_0x5f10ef,_0x3512b1,_0x265d12){const _0x167a7e=_0x5bb7a4;g(this,_0x167a7e(0x381),[]),g(this,_0x167a7e(0x4c6),null),g(this,_0x167a7e(0x473),null),g(this,_0x167a7e(0x51f),null),g(this,'_hideTimer',null),g(this,'_eventUnsubscribe',null),(this[_0x167a7e(0x2b9)]=_0x5d0310,this[_0x167a7e(0x4d0)]=_0x5f10ef,this['_docSkeleton']=_0x3512b1,this['_document']=_0x265d12,this[_0x167a7e(0x21b)]());}set[_0x5bb7a4(0x363)](_0x1d85b4){const _0x4dc5cf=_0x5bb7a4;_0x1d85b4?(this[_0x4dc5cf(0x51f)]&&this[_0x4dc5cf(0x51f)]['hide'](),this[_0x4dc5cf(0x473)]&&this['_textBubble'][_0x4dc5cf(0x18e)]()):(this[_0x4dc5cf(0x51f)]&&this[_0x4dc5cf(0x51f)][_0x4dc5cf(0x18e)](),this[_0x4dc5cf(0x473)]&&this[_0x4dc5cf(0x473)]['hide']());}[_0x5bb7a4(0x4d2)](){const _0x10a3a9=_0x5bb7a4;for(const _0x4e227c of this[_0x10a3a9(0x381)])_0x4e227c[_0x10a3a9(0x4d2)]();this[_0x10a3a9(0x473)]&&this[_0x10a3a9(0x473)]['dispose'](),this[_0x10a3a9(0x51f)]&&this[_0x10a3a9(0x51f)][_0x10a3a9(0x4d2)](),this['_anchor']&&this[_0x10a3a9(0x4c6)][_0x10a3a9(0x4d2)](),this[_0x10a3a9(0x530)]&&this[_0x10a3a9(0x530)]();}[_0x5bb7a4(0x21b)](){const _0x5ce196=_0x5bb7a4;var _0x3c3304;const {_docSkeleton:_0x38a756,_document:_0x5c57d0}=this,{color:_0x530b50,name:_0x1babbc,ranges:_0x2cfdf3}=this[_0x5ce196(0x2b9)],_0x4b5f87=_0x5c57d0[_0x5ce196(0x1a7)](),{docsLeft:_0x3aba6d,docsTop:_0x1494ca}=_0x4b5f87,_0x402c4c=new _0x1e2d34(_0x4b5f87,_0x38a756);for(const {startOffset:_0x2d93b5,endOffset:_0x1fa160,rangeType:_0x2bd11b,segmentId:_0x42ba0e,segmentPage:_0x43dc4a,collapsed:_0x39951b,isActive:_0x102b7f}of _0x2cfdf3){const _0x56f8f7=_0x38a756['findNodePositionByCharIndex'](_0x2d93b5,!0x0,_0x42ba0e,_0x43dc4a);let _0xcd1851=_0x38a756[_0x5ce196(0x199)](_0x1fa160,!0x0,_0x42ba0e,_0x43dc4a);if(_0xcd1851==null&&(_0xcd1851=_0x38a756[_0x5ce196(0x199)](_0x1fa160-0x1,!0x1,_0x42ba0e,_0x43dc4a)),_0x102b7f){const {contentBoxPointGroup:_0x146e60}=_0x402c4c['getRangePointData'](_0xcd1851,_0xcd1851);if(_0x146e60[_0x5ce196(0x282)]===0x0)continue;this[_0x5ce196(0x4b4)](_0x530b50,_0x146e60,_0x3aba6d,_0x1494ca,_0x1babbc),this[_0x5ce196(0x530)]=this[_0x5ce196(0x46c)]();}if(_0x56f8f7&&_0xcd1851){if(_0x2bd11b===_0x569c02[_0x5ce196(0x503)]){const _0x2e8197=new _0x2b0059(_0x4b5f87,_0x38a756),{pointGroup:_0x2bef27}=(_0x3c3304=_0x2e8197[_0x5ce196(0x486)](_0x56f8f7,_0xcd1851))!=null?_0x3c3304:{};if(_0x2bef27==null||_0x2bef27[_0x5ce196(0x282)]===0x0)continue;this[_0x5ce196(0x4d7)](_0x530b50,_0x2bef27,_0x3aba6d,_0x1494ca);}else{if(!_0x39951b){const {borderBoxPointGroup:_0x262f4b}=_0x402c4c['getRangePointData'](_0x56f8f7,_0xcd1851);if(_0x262f4b[_0x5ce196(0x282)]===0x0)continue;this['_drawTextRange'](_0x530b50,_0x262f4b,_0x3aba6d,_0x1494ca);}}}}}[_0x5bb7a4(0x4b4)](_0xb77195,_0x12a0e2,_0x2c4945,_0x5942c5,_0x5b3215){const _0x75c254=_0x5bb7a4,_0x362d6b=this[_0x75c254(0x514)](_0x12a0e2),{left:_0xd25268,top:_0x41018a,height:_0x48ea1b}=_0x362d6b,_0x8115ae=this['_getScale'](),_0x5bb250=Fo/_0x8115ae,_0x5bd119=new _0x4214fc(jt+_0x41d014[_0x75c254(0x4d1)](Je),{'left':_0xd25268+_0x2c4945-_0x5bb250,'top':_0x41018a+_0x5942c5,'height':_0x48ea1b,'width':Wo,'fill':_0xb77195||_0x140980(_0x593100[_0x75c254(0x1c2)],0x0),'strokeWidth':_0x5bb250,'stroke':Vo,'evented':!0x0});this[_0x75c254(0x4c6)]=_0x5bd119,this[_0x75c254(0x4d0)]['addObject'](_0x5bd119,_0x417fa9);const _0x445739=new _0x4214fc(jt+_0x41d014['generateRandomId'](Je),{'left':_0xd25268+_0x2c4945-_0x5bb250,'top':_0x41018a+_0x5942c5-Bt/0x2,'height':Bt,'width':Bt,'fill':_0xb77195||_0x140980(_0x593100[_0x75c254(0x1c2)],0x0),'strokeWidth':0x0,'stroke':_0xb77195||_0x140980(_0x593100['black'],0x0),'evented':!0x1});this['_anchorDot']=_0x445739,this['_scene'][_0x75c254(0x45b)](_0x445739,_0x417fa9);const _0x1ec620=new yt(jt+_0x41d014['generateRandomId'](Je),{'left':_0xd25268+_0x2c4945-_0x5bb250,'top':_0x41018a+_0x5942c5-nt,'text':_0x5b3215,'color':_0xb77195});this[_0x75c254(0x473)]=_0x1ec620,this[_0x75c254(0x4d0)][_0x75c254(0x45b)](_0x1ec620,_0x417fa9),this['_hover']=!0x1;}[_0x5bb7a4(0x46c)](){const _0x52149c=_0x5bb7a4,_0x15ad9f=this['_anchor'][_0x52149c(0x26a)][_0x52149c(0x3b2)](()=>{const _0x62338c=_0x52149c;this[_0x62338c(0x363)]=!0x0;}),_0x4e478b=this[_0x52149c(0x4c6)][_0x52149c(0x33c)][_0x52149c(0x3b2)](()=>{const _0x2b812b=_0x52149c;this[_0x2b812b(0x2f8)]&&clearTimeout(this[_0x2b812b(0x2f8)]),this[_0x2b812b(0x2f8)]=setTimeout(()=>{const _0x23d42d=_0x2b812b;this[_0x23d42d(0x363)]=!0x1;},0x7d0);});return()=>{const _0x2a8a60=_0x52149c;_0x15ad9f[_0x2a8a60(0x1e1)](),_0x4e478b[_0x2a8a60(0x1e1)]();};}[_0x5bb7a4(0x228)](_0x10526e,_0x410434,_0x208d52,_0xc9503b){const _0x542d38=_0x5bb7a4,_0x1892b8=new _0x589dec(_0x10526e)['setAlpha'](0.2)[_0x542d38(0x3cd)](),_0x32c9bf=new _0x18606b(Bo+_0x41d014[_0x542d38(0x4d1)](Je),{'pointsGroup':_0x410434,'fill':_0x1892b8||_0x140980(_0x593100[_0x542d38(0x1c2)],0.2),'left':_0x208d52,'top':_0xc9503b,'evented':!0x1,'debounceParentDirty':!0x1});this[_0x542d38(0x381)][_0x542d38(0x433)](_0x32c9bf),this[_0x542d38(0x4d0)][_0x542d38(0x45b)](_0x32c9bf,_0x417fa9);}[_0x5bb7a4(0x4d7)](_0x2256d4,_0x206c4e,_0x32457f,_0x5035a1){const _0x487485=_0x5bb7a4,_0x3dc950=new _0x589dec(_0x2256d4)[_0x487485(0x350)](0.2)[_0x487485(0x3cd)](),_0x3de543=new _0x18606b(ko+_0x41d014[_0x487485(0x4d1)](Je),{'pointsGroup':_0x206c4e,'fill':_0x3dc950||_0x140980(_0x593100[_0x487485(0x1c2)],0.2),'left':_0x32457f,'top':_0x5035a1,'evented':!0x1,'debounceParentDirty':!0x1});this[_0x487485(0x381)][_0x487485(0x433)](_0x3de543),this[_0x487485(0x4d0)][_0x487485(0x45b)](_0x3de543,_0x417fa9);}[_0x5bb7a4(0x514)](_0x37d692){const _0x361f39=_0x37d692[0x0],_0x343179=_0x361f39[0x0],_0x2cbee5=_0x361f39[0x2],{x:_0x3ae4ee,y:_0xa6928f}=_0x343179,{x:_0xfc65c4,y:_0x53e145}=_0x2cbee5;return{'left':_0x3ae4ee,'top':_0xa6928f,'width':_0xfc65c4-_0x3ae4ee,'height':_0x53e145-_0xa6928f};}[_0x5bb7a4(0x25c)](){const _0x3ad69c=_0x5bb7a4,{scaleX:_0x4e94ce,scaleY:_0x55bc90}=this['_scene'][_0x3ad69c(0x1c0)]();return Math[_0x3ad69c(0x173)](_0x4e94ce,_0x55bc90);}}var Go=Object['defineProperty'],Yo=Object[_0x5bb7a4(0x4e4)],Ko=(_0xf18326,_0x572cb6,_0x303802,_0x757047)=>{for(var _0x5a1c5f=_0x757047>0x1?void 0x0:_0x757047?Yo(_0x572cb6,_0x303802):_0x572cb6,_0x507f21=_0xf18326['length']-0x1,_0x5fef69;_0x507f21>=0x0;_0x507f21--)(_0x5fef69=_0xf18326[_0x507f21])&&(_0x5a1c5f=(_0x757047?_0x5fef69(_0x572cb6,_0x303802,_0x5a1c5f):_0x5fef69(_0x5a1c5f))||_0x5a1c5f);return _0x757047&&_0x5a1c5f&&Go(_0x572cb6,_0x303802,_0x5a1c5f),_0x5a1c5f;},ct=(_0x4d096b,_0x5c7fbe)=>(_0x5a4b0d,_0x56d7d0)=>_0x5c7fbe(_0x5a4b0d,_0x56d7d0,_0x4d096b);let os=class extends _0x177a9e{constructor(_0x503d59,_0x4f60e0,_0x1fdcd7,_0x210a56,_0x122f26){const _0x2dfb0f=_0x5bb7a4;super(),g(this,_0x2dfb0f(0x44a),[]),g(this,'_cursors',[]),(this[_0x2dfb0f(0x265)]=_0x503d59,this[_0x2dfb0f(0x4ee)]=_0x4f60e0,this[_0x2dfb0f(0x334)]=_0x1fdcd7,this[_0x2dfb0f(0x53f)]=_0x210a56,this[_0x2dfb0f(0x2b0)]=_0x122f26,this[_0x2dfb0f(0x515)]());}[_0x5bb7a4(0x515)](){const _0x281e9e=_0x5bb7a4,_0x14d274=this['_context']['unitId'],_0x4ce9ab=this[_0x281e9e(0x4ee)];this[_0x281e9e(0x368)](_0x4753e6([this['_collabCursorController']['getCollabCursors$'](_0x14d274),this[_0x281e9e(0x2b0)][_0x281e9e(0x356)]])[_0x281e9e(0x3f1)](_0x17141f(([_0x3350ca,_0x393eaa])=>({'skeleton':_0x4ce9ab['getSkeleton'](),'cursors':[..._0x3350ca[_0x281e9e(0x2d6)]()][_0x281e9e(0x401)](_0x2598b6=>({..._0x2598b6,'color':_0x393eaa[_0x2598b6[_0x281e9e(0x203)]]}))})))[_0x281e9e(0x519)](_0x410027=>{const _0x414021=_0x281e9e;if(this[_0x414021(0x2ec)](),_0x410027){const {skeleton:_0x403dfb,cursors:_0x5363e3}=_0x410027;this[_0x414021(0x52a)](_0x403dfb,_0x5363e3);}})),this[_0x281e9e(0x45c)](),this[_0x281e9e(0x354)]();}[_0x5bb7a4(0x52a)](_0x2294e2,_0x5c3f10){const _0x299820=_0x5bb7a4,{scene:_0x4c1995,mainComponent:_0x149da9}=this[_0x299820(0x265)],_0x550d15=_0x5c3f10[_0x299820(0x2c9)](_0x317935=>new Ks(_0x317935,_0x4c1995,_0x2294e2,_0x149da9));this[_0x299820(0x44a)]=_0x550d15,this['_cursors']=_0x5c3f10;}[_0x5bb7a4(0x488)](){const _0x213620=_0x5bb7a4;this[_0x213620(0x2ec)]();const {scene:_0x5a0d98,mainComponent:_0x5f3117}=this[_0x213620(0x265)],_0x978b86=this['_docSkeletonManagerService'][_0x213620(0x535)](),_0x7d98d9=this['_cursors']['map'](_0x1d9a98=>new Ks(_0x1d9a98,_0x5a0d98,_0x978b86,_0x5f3117));this[_0x213620(0x44a)]=_0x7d98d9;}['_removeCollabCursors'](){const _0x20e201=_0x5bb7a4;this[_0x20e201(0x44a)][_0x20e201(0x312)](_0xf68f90=>_0xf68f90[_0x20e201(0x4d2)]()),this[_0x20e201(0x44a)]=[];}[_0x5bb7a4(0x354)](){const _0x12bed0=_0x5bb7a4,_0x876d84=[_0x595dd4['id']];this[_0x12bed0(0x368)](this['_commandService'][_0x12bed0(0x498)](_0x3bc9dc=>{const _0xc2519a=_0x12bed0;_0x876d84[_0xc2519a(0x21c)](_0x3bc9dc['id'])&&_0x3bc9dc[_0xc2519a(0x3d9)][_0xc2519a(0x55d)]===this[_0xc2519a(0x265)][_0xc2519a(0x55d)]&&this[_0xc2519a(0x488)]();}));}[_0x5bb7a4(0x45c)](){const _0x32da2d=_0x5bb7a4;this[_0x32da2d(0x368)](_0x3a7a27(this[_0x32da2d(0x265)][_0x32da2d(0x48d)][_0x32da2d(0x3d7)])[_0x32da2d(0x3f1)](_0x5a0a20(_0x39d97f=>_0x39d97f['type']===_0x2c9396['resize']),_0x3fef40(0x10))[_0x32da2d(0x519)](()=>{const _0x3ab375=_0x32da2d;this[_0x3ab375(0x488)]();}));}};os=Ko([ct(0x1,_0x22a3e1(_0x386ab1)),ct(0x2,_0x22a3e1(Ve)),ct(0x3,_0x1e58f0),ct(0x4,_0x22a3e1(_0x58be32))],os);const zo=0x1,qo=1.5;class Xo extends _0x4b8d3f{constructor(_0xa6a5a3,_0x3f913b){const _0x1ad06b=_0x5bb7a4;super(_0xa6a5a3,_0x3f913b),g(this,_0x1ad06b(0x4e3)),g(this,'_hovered',!0x1),g(this,_0x1ad06b(0x2d4)),g(this,'_name',''),g(this,_0x1ad06b(0x278),'top'),g(this,_0x1ad06b(0x2ea)),(_0x3f913b&&this[_0x1ad06b(0x357)](_0x3f913b),this[_0x1ad06b(0x26a)][_0x1ad06b(0x3b2)](()=>this['setShapeProps']({'hovered':!0x0})),this['onPointerLeave$'][_0x1ad06b(0x3b2)](()=>this[_0x1ad06b(0x357)]({'hovered':!0x1})));}[_0x5bb7a4(0x357)](_0x356795){const _0x48bd70=_0x5bb7a4;var _0x7acc20,_0x1b4949,_0x5dfa44,_0x2e45d2,_0x576bfa,_0x5504f7;this[_0x48bd70(0x4e3)]=(_0x7acc20=_0x356795[_0x48bd70(0x203)])!=null?_0x7acc20:this['_color'],this[_0x48bd70(0x2d9)]=(_0x1b4949=_0x356795[_0x48bd70(0x3b7)])!=null?_0x1b4949:this['_hovered'],this['_range']=(_0x5dfa44=_0x356795[_0x48bd70(0x2da)])!=null?_0x5dfa44:this['_range'],this[_0x48bd70(0x527)]=(_0x2e45d2=_0x356795[_0x48bd70(0x408)])!=null?_0x2e45d2:this[_0x48bd70(0x527)],this[_0x48bd70(0x278)]=(_0x576bfa=_0x356795['labelPosition'])!=null?_0x576bfa:this[_0x48bd70(0x278)],this['_backgroundColor']=(_0x5504f7=_0x356795[_0x48bd70(0x244)])!=null?_0x5504f7:this[_0x48bd70(0x2ea)],this['transformByState']({'width':_0x356795[_0x48bd70(0x1ea)],'height':_0x356795[_0x48bd70(0x38f)]});}[_0x5bb7a4(0x32a)](_0x389391){const _0x4f7103=_0x5bb7a4,{row:_0x9f3475,column:_0x15d5cc}=_0x389391;if(_0x9f3475>=this['_range']['startRow']&&_0x9f3475<=this[_0x4f7103(0x2d4)]['endRow']&&_0x15d5cc>=this[_0x4f7103(0x2d4)][_0x4f7103(0x249)]&&_0x15d5cc<=this[_0x4f7103(0x2d4)][_0x4f7103(0x290)]){this[_0x4f7103(0x357)]({'hovered':!0x0});return;}this[_0x4f7103(0x357)]({'hovered':!0x1});}[_0x5bb7a4(0x3ed)](_0x49b6c1){return!0x1;}['_draw'](_0x3cc42a){const _0x588a1e=_0x5bb7a4;_0x4214fc[_0x588a1e(0x202)](_0x3cc42a,{'width':this['width'],'height':this[_0x588a1e(0x38f)],'strokeWidth':qo,'stroke':this['_color'],'evented':!0x1,'fill':this['_backgroundColor']}),this[_0x588a1e(0x2d9)]&&(_0x3cc42a['save'](),_0x3cc42a['transform'](0x1,0x0,0x0,0x1,this[_0x588a1e(0x1ea)],this['_labelPosition']===_0x588a1e(0x1aa)?0x0:-nt),yt[_0x588a1e(0x202)](_0x3cc42a,{'text':this[_0x588a1e(0x527)],'color':this[_0x588a1e(0x4e3)]}),_0x3cc42a['restore']());}}var Jo=Object['defineProperty'],Zo=Object[_0x5bb7a4(0x4e4)],Qo=(_0x1f9582,_0x1980f6,_0x5304f7,_0x31bfe5)=>{const _0x6fdabd=_0x5bb7a4;for(var _0x4e053f=_0x31bfe5>0x1?void 0x0:_0x31bfe5?Zo(_0x1980f6,_0x5304f7):_0x1980f6,_0x1a85ab=_0x1f9582[_0x6fdabd(0x282)]-0x1,_0x2da638;_0x1a85ab>=0x0;_0x1a85ab--)(_0x2da638=_0x1f9582[_0x1a85ab])&&(_0x4e053f=(_0x31bfe5?_0x2da638(_0x1980f6,_0x5304f7,_0x4e053f):_0x2da638(_0x4e053f))||_0x4e053f);return _0x31bfe5&&_0x4e053f&&Jo(_0x1980f6,_0x5304f7,_0x4e053f),_0x4e053f;},kt=(_0x27ddcd,_0x5ef171)=>(_0x4bd639,_0x2b76ee)=>_0x5ef171(_0x4bd639,_0x2b76ee,_0x27ddcd);const ea=0x1389;let as=class extends _0x177a9e{constructor(_0x2a7c4f,_0x1bf540,_0x5f0fad,_0x346ef4){const _0x428baa=_0x5bb7a4;super(),g(this,_0x428baa(0x1cc),new Set()),g(this,'_lastPointer',null),(this[_0x428baa(0x265)]=_0x2a7c4f,this[_0x428baa(0x1e9)]=_0x1bf540,this['_collabCursorController']=_0x5f0fad,this[_0x428baa(0x2b0)]=_0x346ef4,this[_0x428baa(0x515)]());}[_0x5bb7a4(0x515)](){const _0x2b0769=_0x5bb7a4;this[_0x2b0769(0x1e9)][_0x2b0769(0x436)]['pipe'](_0x216286(this[_0x2b0769(0x492)]),_0x58ad60(_0x1abddb=>{const _0x1afc96=_0x2b0769;if(_0x1abddb){const _0xff6a8f=_0x1abddb['sheetId'];return _0x4753e6(this['_collabCursorController'][_0x1afc96(0x198)](this[_0x1afc96(0x265)]['unitId']),this[_0x1afc96(0x2b0)][_0x1afc96(0x356)])[_0x1afc96(0x3f1)](_0x17141f(([_0x18fd07,_0x424239])=>{const _0x5d8696=_0x1afc96,_0x49b68d=new Map();return _0x18fd07[_0x5d8696(0x312)]((_0x90ead4,_0x5cea7b)=>{const _0x5336dc=_0x5d8696;if(_0x90ead4[_0x5336dc(0x326)]===_0xff6a8f){const _0x4ff1ee={..._0x90ead4};_0x4ff1ee[_0x5336dc(0x203)]=_0x424239[_0x90ead4[_0x5336dc(0x203)]],_0x49b68d[_0x5336dc(0x441)](_0x5cea7b,_0x4ff1ee);}}),{'skeleton':_0x1abddb,'cursors':_0x49b68d};}));}return _0x52cb6f({'skeleton':null,'cursors':new Map()});}))[_0x2b0769(0x519)](({skeleton:_0x463c8b,cursors:_0xc1fa53})=>{const _0x496807=_0x2b0769;this[_0x496807(0x2ec)](),_0x463c8b&&this[_0x496807(0x52a)](_0x463c8b,_0xc1fa53);}),this[_0x2b0769(0x1e9)][_0x2b0769(0x436)][_0x2b0769(0x519)](_0x1d71cc=>{const _0x2811b1=_0x2b0769;if(_0x1d71cc==null)return;const {skeleton:_0x41f81e}=_0x1d71cc,{scene:_0x10c8a6}=this[_0x2811b1(0x265)];_0x10c8a6[_0x2811b1(0x565)][_0x2811b1(0x3b2)](_0x47386f(_0x4f9e43=>{const _0x1cb191=_0x2811b1;var _0xc66290,_0x533132;const {offsetX:_0x299efb,offsetY:_0x15b925}=_0x4f9e43,{x:_0x3591d8,y:_0x4efcdf}=_0x10c8a6[_0x1cb191(0x31d)](_0x3af8ad[_0x1cb191(0x20b)]([_0x299efb,_0x15b925])),{scaleX:_0x89457d,scaleY:_0x4e107f}=_0x10c8a6[_0x1cb191(0x1c0)](),_0x36197b=_0x10c8a6[_0x1cb191(0x20c)](_0x4bafe5[_0x1cb191(0x4cb)]),_0x5b1455=_0x10c8a6[_0x1cb191(0x3df)](_0x3af8ad['FromArray']([_0x3591d8,_0x4efcdf]),_0x36197b),_0x2d000b=_0x41f81e[_0x1cb191(0x3cf)](_0x299efb,_0x15b925,_0x89457d,_0x4e107f,_0x5b1455);((_0xc66290=this[_0x1cb191(0x4d9)])==null?void 0x0:_0xc66290[_0x1cb191(0x396)])===_0x2d000b[_0x1cb191(0x396)]&&((_0x533132=this[_0x1cb191(0x4d9)])==null?void 0x0:_0x533132[_0x1cb191(0x53e)])===_0x2d000b[_0x1cb191(0x53e)]||this[_0x1cb191(0x1cc)]['forEach'](_0x2fff86=>{_0x2fff86['onMouseMove'](_0x2d000b);});},0x64));});}['_updateCollabCursors'](_0x1de0e6,_0x367334){const _0xdabc75=_0x5bb7a4;var _0x3dacef;const _0x283ea9=(_0x3dacef=this[_0xdabc75(0x1e9)]['getCurrent']())==null?void 0x0:_0x3dacef['skeleton'];if(!_0x283ea9)return;const _0x4377ea=this['_getSheetObject']();if(!_0x4377ea)return;this[_0xdabc75(0x1cc)]['forEach'](_0x340c38=>{const _0x2d7e0a=_0xdabc75;_0x340c38[_0x2d7e0a(0x44b)]();});const {scene:_0x3ae7ca}=_0x4377ea,_0x31cc2c=ta(Array[_0xdabc75(0x348)](_0x367334['values']()))[_0xdabc75(0x2c9)](_0x510c4a=>{const _0xad36a1=_0xdabc75,{color:_0x41b5ee,range:_0x449d1a,name:_0x58104b,selection:_0x2c382d,sheetID:_0x311a43}=_0x510c4a,{startColumn:_0x1c9e43,startRow:_0xa5f115,endColumn:_0x2eb382,endRow:_0x391a32}=_0x449d1a,_0x97121a=_0x5a0e3d(_0xa5f115,_0x1c9e43,_0x3ae7ca,_0x283ea9),_0x473595=_0x5a0e3d(_0x391a32,_0x2eb382,_0x3ae7ca,_0x283ea9),{columnHeaderHeightAndMarginTop:_0x4e1168}=_0x283ea9,{startX:_0x3a6319,startY:_0x19b4d7}=_0x97121a,{endX:_0xc67a61,endY:_0x1b2e27}=_0x473595,_0x2076ba=_0xc67a61-_0x3a6319,_0x450ede=_0x1b2e27-_0x19b4d7,_0xc95cd9={'labelPosition':_0x19b4d7-_0x4e1168>=nt?_0xad36a1(0x235):_0xad36a1(0x1aa),'sheetID':_0x311a43,'range':_0x449d1a,'color':_0x41b5ee,'name':_0x58104b,'selection':_0x2c382d,'left':_0x3a6319,'top':_0x19b4d7,'width':_0x2076ba,'height':_0x450ede,'evented':!0x1,'zIndex':ea};return new Xo(_0x58104b,_0xc95cd9);});_0x3ae7ca[_0xdabc75(0x1c8)](_0x31cc2c,zo),this[_0xdabc75(0x1cc)]=new Set(_0x31cc2c);}['_removeCollabCursors'](){const _0x8fe7c9=_0x5bb7a4;var _0x143fe2;(_0x143fe2=this[_0x8fe7c9(0x1cc)])==null||_0x143fe2[_0x8fe7c9(0x312)](_0x2d340b=>_0x2d340b[_0x8fe7c9(0x4d2)]());}[_0x5bb7a4(0x370)](){const _0x4ea631=_0x5bb7a4;return _0x1d2c70(this[_0x4ea631(0x265)][_0x4ea631(0x243)],this[_0x4ea631(0x265)]);}};as=Qo([kt(0x1,_0x22a3e1(_0x328715)),kt(0x2,_0x22a3e1(Ve)),kt(0x3,_0x22a3e1(_0x58be32))],as);function ta(_0x40e28a){const _0x5626f3=new Map();return _0x40e28a['forEach'](_0x589af5=>{const _0x573b8f=_0x4081;if(_0x5626f3['has'](_0x589af5[_0x573b8f(0x24a)])){const _0x1a96d1=_0x5626f3[_0x573b8f(0x4f7)](_0x589af5[_0x573b8f(0x24a)]);_0x1a96d1[_0x573b8f(0x408)]+=',\x20'+_0x589af5[_0x573b8f(0x408)];}else _0x5626f3[_0x573b8f(0x441)](_0x589af5['selection'],_0x589af5);}),Array['from'](_0x5626f3['values']());}var Z=typeof globalThis<'u'?globalThis:typeof window<'u'?window:typeof global<'u'?global:typeof self<'u'?self:{};function at(_0x2154fa){const _0x1e9693=_0x5bb7a4;return _0x2154fa&&_0x2154fa[_0x1e9693(0x206)]&&Object[_0x1e9693(0x423)]['hasOwnProperty']['call'](_0x2154fa,'default')?_0x2154fa[_0x1e9693(0x458)]:_0x2154fa;}var Mi={'exports':{}},Ot={},sa=_0x3fd601,ia=Symbol[_0x5bb7a4(0x2b1)](_0x5bb7a4(0x41e)),na=Symbol['for'](_0x5bb7a4(0x317)),ra=Object[_0x5bb7a4(0x423)][_0x5bb7a4(0x440)],oa=sa[_0x5bb7a4(0x3a0)]['ReactCurrentOwner'],aa={'key':!0x0,'ref':!0x0,'__self':!0x0,'__source':!0x0};function _0x4081(_0x914906,_0x47fb9a){const _0x27da31=_0x27da();return _0x4081=function(_0x408197,_0x1a5ddf){_0x408197=_0x408197-0x163;let _0x5cf0f7=_0x27da31[_0x408197];return _0x5cf0f7;},_0x4081(_0x914906,_0x47fb9a);}function xi(_0x2275c3,_0x24211e,_0xc86925){const _0x8de65b=_0x5bb7a4;var _0x3157a0,_0x572745={},_0x588a4f=null,_0x47ef96=null;_0xc86925!==void 0x0&&(_0x588a4f=''+_0xc86925),_0x24211e[_0x8de65b(0x275)]!==void 0x0&&(_0x588a4f=''+_0x24211e['key']),_0x24211e[_0x8de65b(0x3a8)]!==void 0x0&&(_0x47ef96=_0x24211e[_0x8de65b(0x3a8)]);for(_0x3157a0 in _0x24211e)ra[_0x8de65b(0x1f6)](_0x24211e,_0x3157a0)&&!aa[_0x8de65b(0x440)](_0x3157a0)&&(_0x572745[_0x3157a0]=_0x24211e[_0x3157a0]);if(_0x2275c3&&_0x2275c3[_0x8de65b(0x346)]){for(_0x3157a0 in(_0x24211e=_0x2275c3['defaultProps'],_0x24211e))_0x572745[_0x3157a0]===void 0x0&&(_0x572745[_0x3157a0]=_0x24211e[_0x3157a0]);}return{'$$typeof':ia,'type':_0x2275c3,'key':_0x588a4f,'ref':_0x47ef96,'props':_0x572745,'_owner':oa[_0x8de65b(0x51a)]};}Ot[_0x5bb7a4(0x1d7)]=na,Ot[_0x5bb7a4(0x2fc)]=xi,Ot[_0x5bb7a4(0x28f)]=xi,Mi[_0x5bb7a4(0x236)]=Ot;var we=Mi['exports'],ee=function(){const _0xb8d2e4=_0x5bb7a4;return ee=Object['assign']||function(_0x19c61c){const _0x333a9d=_0x4081;for(var _0x4aa01a,_0x12c265=0x1,_0x16c363=arguments[_0x333a9d(0x282)];_0x12c265<_0x16c363;_0x12c265++){_0x4aa01a=arguments[_0x12c265];for(var _0x2aac17 in _0x4aa01a)Object[_0x333a9d(0x423)][_0x333a9d(0x440)][_0x333a9d(0x1f6)](_0x4aa01a,_0x2aac17)&&(_0x19c61c[_0x2aac17]=_0x4aa01a[_0x2aac17]);}return _0x19c61c;},ee[_0xb8d2e4(0x568)](this,arguments);},ca=function(_0x16d1c1,_0x54c826){const _0x4b2a6f=_0x5bb7a4;var _0x223824={};for(var _0x31bf36 in _0x16d1c1)Object[_0x4b2a6f(0x423)][_0x4b2a6f(0x440)][_0x4b2a6f(0x1f6)](_0x16d1c1,_0x31bf36)&&_0x54c826[_0x4b2a6f(0x41f)](_0x31bf36)<0x0&&(_0x223824[_0x31bf36]=_0x16d1c1[_0x31bf36]);if(_0x16d1c1!=null&&typeof Object['getOwnPropertySymbols']==_0x4b2a6f(0x4b8)){for(var _0x1e5156=0x0,_0x31bf36=Object[_0x4b2a6f(0x404)](_0x16d1c1);_0x1e5156<_0x31bf36['length'];_0x1e5156++)_0x54c826['indexOf'](_0x31bf36[_0x1e5156])<0x0&&Object['prototype'][_0x4b2a6f(0x499)][_0x4b2a6f(0x1f6)](_0x16d1c1,_0x31bf36[_0x1e5156])&&(_0x223824[_0x31bf36[_0x1e5156]]=_0x16d1c1[_0x31bf36[_0x1e5156]]);}return _0x223824;},Ts=_0x5ecf43(function(_0x1ddc40,_0x43b0c2){const _0xad23e0=_0x5bb7a4;var _0x5d28c5=_0x1ddc40[_0xad23e0(0x37c)],_0x1ee06b=_0x1ddc40['id'],_0xe5ef59=_0x1ddc40[_0xad23e0(0x375)],_0xeddec2=_0x1ddc40[_0xad23e0(0x187)],_0x461f45=ca(_0x1ddc40,[_0xad23e0(0x37c),'id',_0xad23e0(0x375),_0xad23e0(0x187)]),_0x706c0e='univerjs-icon\x20univerjs-icon-'[_0xad23e0(0x196)](_0x1ee06b,'\x20')[_0xad23e0(0x196)](_0xe5ef59||'')['trim'](),_0x7e2bf1=_0x37367c('_'[_0xad23e0(0x196)](_a()));return Li(_0x5d28c5,''[_0xad23e0(0x196)](_0x1ee06b),{'defIds':_0x5d28c5[_0xad23e0(0x563)],'idSuffix':_0x7e2bf1[_0xad23e0(0x51a)]},ee({'ref':_0x43b0c2,'className':_0x706c0e},_0x461f45),_0xeddec2);});function Li(_0x2b54ed,_0x52661d,_0x17e91e,_0x525d15,_0x101f34){const _0x3a17ba=_0x5bb7a4;return _0x438628(_0x2b54ed[_0x3a17ba(0x266)],ee(ee({'key':_0x52661d},ha(_0x2b54ed,_0x17e91e,_0x101f34)),_0x525d15),(la(_0x2b54ed,_0x17e91e)[_0x3a17ba(0x4e1)]||[])[_0x3a17ba(0x2c9)](function(_0x59ac71,_0x212c34){const _0x454abf=_0x3a17ba;return Li(_0x59ac71,''[_0x454abf(0x196)](_0x52661d,'-')['concat'](_0x2b54ed['tag'],'-')[_0x454abf(0x196)](_0x212c34),_0x17e91e,void 0x0,_0x101f34);}));}function ha(_0x1aab5c,_0x483250,_0xd2ea14){const _0x1eda34=_0x5bb7a4;var _0x43c9d3=ee({},_0x1aab5c['attrs']);_0xd2ea14!=null&&_0xd2ea14[_0x1eda34(0x4e9)]&&_0x43c9d3[_0x1eda34(0x31c)]===_0x1eda34(0x4e9)&&(_0x43c9d3['fill']=_0xd2ea14[_0x1eda34(0x4e9)]);var _0x1e27c6=_0x483250[_0x1eda34(0x563)];return!_0x1e27c6||_0x1e27c6[_0x1eda34(0x282)]===0x0||(_0x1aab5c[_0x1eda34(0x266)]==='use'&&_0x43c9d3[_0x1eda34(0x4af)]&&(_0x43c9d3[_0x1eda34(0x4af)]=_0x43c9d3[_0x1eda34(0x4af)]+_0x483250[_0x1eda34(0x1b2)]),Object[_0x1eda34(0x420)](_0x43c9d3)['forEach'](function(_0x1f9a1d){const _0x4394d6=_0x1eda34;var _0xd76ecd=_0x1f9a1d[0x0],_0x19c8f4=_0x1f9a1d[0x1];typeof _0x19c8f4==_0x4394d6(0x40c)&&(_0x43c9d3[_0xd76ecd]=_0x19c8f4[_0x4394d6(0x464)](/url\(#(.*)\)/,_0x4394d6(0x41b)[_0x4394d6(0x196)](_0x483250[_0x4394d6(0x1b2)],')')));})),_0x43c9d3;}function la(_0x4fd75b,_0x1e111e){const _0x21bee2=_0x5bb7a4;var _0x192017,_0x4906ea=_0x1e111e[_0x21bee2(0x563)];return!_0x4906ea||_0x4906ea['length']===0x0?_0x4fd75b:_0x4fd75b[_0x21bee2(0x266)]==='defs'&&(!((_0x192017=_0x4fd75b[_0x21bee2(0x4e1)])===null||_0x192017===void 0x0)&&_0x192017[_0x21bee2(0x282)])?ee(ee({},_0x4fd75b),{'children':_0x4fd75b[_0x21bee2(0x4e1)][_0x21bee2(0x2c9)](function(_0x4ab114){const _0x598800=_0x21bee2;return typeof _0x4ab114['attrs']['id']==_0x598800(0x40c)&&_0x4906ea&&_0x4906ea[_0x598800(0x41f)](_0x4ab114[_0x598800(0x4ce)]['id'])>-0x1?ee(ee({},_0x4ab114),{'attrs':ee(ee({},_0x4ab114[_0x598800(0x4ce)]),{'id':_0x4ab114[_0x598800(0x4ce)]['id']+_0x1e111e[_0x598800(0x1b2)]})}):_0x4ab114;})}):_0x4fd75b;}function _a(){const _0xf87ae6=_0x5bb7a4;return Math[_0xf87ae6(0x453)]()[_0xf87ae6(0x2e5)](0x24)[_0xf87ae6(0x4c8)](0x2,0x8);}Ts['displayName']=_0x5bb7a4(0x166);var ua={'tag':'svg','attrs':{'fill':'none','viewBox':_0x5bb7a4(0x4e5),'width':'1em','height':_0x5bb7a4(0x467)},'children':[{'tag':'g','attrs':{'clipPath':_0x5bb7a4(0x22d)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x5bb7a4(0x56b),'strokeLinecap':'round','strokeLinejoin':'round','strokeWidth':1.2}}]},{'tag':'defs','attrs':{},'children':[{'tag':_0x5bb7a4(0x3de),'attrs':{'id':'off-line-single_clip0_910_343'},'children':[{'tag':'path','attrs':{'fill':_0x5bb7a4(0x2a4),'d':_0x5bb7a4(0x1e4)}}]}]}],'defIds':['off-line-single_clip0_910_343']},$i=_0x5ecf43(function(_0x38344f,_0x5af1c9){const _0xef1f58=_0x5bb7a4;return _0x438628(Ts,Object['assign']({},_0x38344f,{'id':_0xef1f58(0x478),'ref':_0x5af1c9,'icon':ua}));});$i[_0x5bb7a4(0x493)]=_0x5bb7a4(0x333);var da={'tag':'svg','attrs':{'fill':_0x5bb7a4(0x1e6),'viewBox':_0x5bb7a4(0x26b),'width':_0x5bb7a4(0x467),'height':_0x5bb7a4(0x467)},'children':[{'tag':'g','attrs':{'clipPath':_0x5bb7a4(0x3c5)},'children':[{'tag':_0x5bb7a4(0x327),'attrs':{'stroke':_0x5bb7a4(0x2e7),'d':_0x5bb7a4(0x388),'strokeLinecap':'round','strokeLinejoin':_0x5bb7a4(0x3fe),'strokeWidth':1.2}}]},{'tag':_0x5bb7a4(0x484),'attrs':{},'children':[{'tag':_0x5bb7a4(0x3de),'attrs':{'id':_0x5bb7a4(0x500)},'children':[{'tag':_0x5bb7a4(0x327),'attrs':{'fill':_0x5bb7a4(0x2a4),'d':_0x5bb7a4(0x1e4),'transform':_0x5bb7a4(0x35c)}}]}]}],'defIds':['on-line-single_clip0_910_349']},Hi=_0x5ecf43(function(_0x1bceb9,_0x26d5cb){const _0x16be8e=_0x5bb7a4;return _0x438628(Ts,Object[_0x16be8e(0x1a1)]({},_0x1bceb9,{'id':_0x16be8e(0x1ae),'ref':_0x26d5cb,'icon':da}));});Hi[_0x5bb7a4(0x493)]=_0x5bb7a4(0x1da);function ji(_0x208658){const _0x1a10a9=_0x5bb7a4;var _0x37935d,_0x4bc55f,_0x208756='';if(typeof _0x208658==_0x1a10a9(0x40c)||typeof _0x208658==_0x1a10a9(0x2fb))_0x208756+=_0x208658;else{if(typeof _0x208658==_0x1a10a9(0x4a3)){if(Array[_0x1a10a9(0x2f4)](_0x208658)){var _0x40580e=_0x208658[_0x1a10a9(0x282)];for(_0x37935d=0x0;_0x37935d<_0x40580e;_0x37935d++)_0x208658[_0x37935d]&&(_0x4bc55f=ji(_0x208658[_0x37935d]))&&(_0x208756&&(_0x208756+='\x20'),_0x208756+=_0x4bc55f);}else{for(_0x4bc55f in _0x208658)_0x208658[_0x4bc55f]&&(_0x208756&&(_0x208756+='\x20'),_0x208756+=_0x4bc55f);}}}return _0x208756;}function fa(){for(var _0x342903,_0x195980,_0x38a75f=0x0,_0x257654='',_0xbcf8bb=arguments['length'];_0x38a75f<_0xbcf8bb;_0x38a75f++)(_0x342903=arguments[_0x38a75f])&&(_0x195980=ji(_0x342903))&&(_0x257654&&(_0x257654+='\x20'),_0x257654+=_0x195980);return _0x257654;}const va=_0x5bb7a4(0x18f),ma=_0x5bb7a4(0x1d1),pa=_0x5bb7a4(0x56f),ga='univer-online',Sa=_0x5bb7a4(0x261),Ze={'onlineStatusIcon':va,'onlineStatusTitle':ma,'onlineStatus':pa,'online':ga,'offline':Sa};function Ia(_0x328188){const _0x34e287=_0x5bb7a4;switch(_0x328188){case J[_0x34e287(0x23a)]:return _0x34e287(0x32d);case J[_0x34e287(0x287)]:return'collabStatus.conflict';case J[_0x34e287(0x40b)]:return _0x34e287(0x41c);case J['NOT_COLLAB']:return _0x34e287(0x470);case J[_0x34e287(0x2f3)]:case J[_0x34e287(0x256)]:return _0x34e287(0x185);case J[_0x34e287(0x50e)]:case J['PENDING']:return _0x34e287(0x28c);}}function Ca(_0x324751){const _0x1f906d=_0x5bb7a4,{status$:_0x2fb4fd}=_0x324751,_0x35432d=_0x3b686f(_0x2fb4fd,J['NOT_COLLAB']),_0x33eac8=_0xe664fe(_0x1fdc1b),_0xb4f404=_0xe664fe(Ae),_0x55a547=_0x35432d!==J[_0x1f906d(0x23a)],_0x27ae9c=_0x33eac8['t'](Ia(_0x35432d)),_0x1aede2=fa(Ze[_0x1f906d(0x221)],{[Ze[_0x1f906d(0x26d)]]:_0x55a547,[Ze['offline']]:!_0x55a547}),_0x29971f=_0x55a547?we[_0x1f906d(0x2fc)](Hi,{}):we[_0x1f906d(0x2fc)]($i,{}),_0x2047d=_0x1f3798(()=>{_0x55a547||_0xb4f404['reconnect']();},[_0x55a547,_0xb4f404]);function _0x23919d(){const _0x7af87a=_0x1f906d;return we[_0x7af87a(0x28f)]('div',{'className':_0x1aede2,'onClick':_0x2047d,'children':[we[_0x7af87a(0x2fc)](_0x7af87a(0x28e),{'className':Ze[_0x7af87a(0x4c2)],'children':_0x29971f}),we['jsx'](_0x7af87a(0x28e),{'className':Ze[_0x7af87a(0x321)],'children':_0x27ae9c})]});}return _0x55a547?_0x23919d():we[_0x1f906d(0x2fc)](_0x4f930e,{'title':_0x33eac8['t'](_0x1f906d(0x1e8)),'children':_0x23919d()});}var Ea=Object[_0x5bb7a4(0x42b)],ba=Object[_0x5bb7a4(0x4e4)],Ta=(_0x245122,_0x1d38d9,_0x19deda,_0x2c19f6)=>{const _0x5d4d8a=_0x5bb7a4;for(var _0x361528=_0x2c19f6>0x1?void 0x0:_0x2c19f6?ba(_0x1d38d9,_0x19deda):_0x1d38d9,_0x46f6c9=_0x245122[_0x5d4d8a(0x282)]-0x1,_0x521453;_0x46f6c9>=0x0;_0x46f6c9--)(_0x521453=_0x245122[_0x46f6c9])&&(_0x361528=(_0x2c19f6?_0x521453(_0x1d38d9,_0x19deda,_0x361528):_0x521453(_0x361528))||_0x361528);return _0x2c19f6&&_0x361528&&Ea(_0x1d38d9,_0x19deda,_0x361528),_0x361528;},ht=(_0x51812c,_0x5a060f)=>(_0x365065,_0x52414b)=>_0x5a060f(_0x365065,_0x52414b,_0x51812c);let St=class extends _0x1caa36{constructor(_0x1a6489,_0xaba21b,_0x291629,_0x4dfdfd){const _0x294a65=_0x5bb7a4;super(),g(this,_0x294a65(0x281),new _0x348a88(J[_0x294a65(0x410)])),(this[_0x294a65(0x21d)]=_0x1a6489,this[_0x294a65(0x47e)]=_0xaba21b,this['_injector']=_0x291629,this[_0x294a65(0x471)]=_0x4dfdfd,this[_0x294a65(0x1cb)](),this['_initStatusListener']());}[_0x5bb7a4(0x4f3)](){const _0x2bbbd4=_0x5bb7a4;this[_0x2bbbd4(0x368)](this['_univerInstanceService']['focused$'][_0x2bbbd4(0x3f1)](_0x1e3e59(()=>{const _0xa6a18d=_0x2bbbd4,_0x51f6e0=this[_0xa6a18d(0x21d)][_0xa6a18d(0x1dd)]();return _0x51f6e0?this[_0xa6a18d(0x471)][_0xa6a18d(0x42f)](_0x51f6e0[_0xa6a18d(0x322)]()):_0x52cb6f(null);}),_0x1e3e59(_0x485493=>_0x485493?_0x485493['status$']:_0x52cb6f(J['NOT_COLLAB'])))[_0x2bbbd4(0x519)](_0x56d5c6=>{const _0x374e07=_0x2bbbd4;this[_0x374e07(0x281)][_0x374e07(0x3ff)](_0x56d5c6);}));}['_initStatusComponent'](){const _0x495557=_0x5bb7a4;this['disposeWithMe'](this[_0x495557(0x47e)]['registerComponent'](_0x5b1713[_0x495557(0x539)],()=>_0x3048e7(Ra({'status$':this[_0x495557(0x281)][_0x495557(0x1a6)]()}),this[_0x495557(0x338)])));}};St=Ta([ht(0x0,_0x2e0534),ht(0x1,_0x2cb103),ht(0x2,_0x22a3e1(_0x4c5160)),ht(0x3,_0x22a3e1(it))],St);function Ra(_0x15b711){const {status$:_0x26a141}=_0x15b711;return function(){return we['jsx'](Ca,{'status$':_0x26a141});};}const Bi=_0x5ce9a5('uni.network.url-service');var ya=Object[_0x5bb7a4(0x42b)],Oa=Object[_0x5bb7a4(0x4e4)],wa=(_0x41be83,_0x48acb7,_0x7c0ee7,_0x5bac1d)=>{const _0x3acb84=_0x5bb7a4;for(var _0x1c9aee=_0x5bac1d>0x1?void 0x0:_0x5bac1d?Oa(_0x48acb7,_0x7c0ee7):_0x48acb7,_0x3ab693=_0x41be83[_0x3acb84(0x282)]-0x1,_0x3b73fb;_0x3ab693>=0x0;_0x3ab693--)(_0x3b73fb=_0x41be83[_0x3ab693])&&(_0x1c9aee=(_0x5bac1d?_0x3b73fb(_0x48acb7,_0x7c0ee7,_0x1c9aee):_0x3b73fb(_0x1c9aee))||_0x1c9aee);return _0x5bac1d&&_0x1c9aee&&ya(_0x48acb7,_0x7c0ee7,_0x1c9aee),_0x1c9aee;},ke=(_0x3d4f4e,_0x54a35f)=>(_0x4448bc,_0x3141d6)=>_0x54a35f(_0x4448bc,_0x3141d6,_0x3d4f4e);let It=class extends _0x177a9e{constructor(_0x312bf0,_0xd155f6,_0x1c27cc,_0x2651c1,_0x38f438,_0x146be8){const _0x1d1980=_0x5bb7a4;super(),this[_0x1d1980(0x538)]=_0x312bf0,this[_0x1d1980(0x26e)]=_0xd155f6,this[_0x1d1980(0x53f)]=_0x1c27cc,this[_0x1d1980(0x46d)]=_0x2651c1,this[_0x1d1980(0x496)]=_0x38f438,_0x146be8?_0x146be8==null||_0x146be8['whenReady']()[_0x1d1980(0x40e)](()=>this[_0x1d1980(0x515)]()):(this[_0x1d1980(0x26e)][_0x1d1980(0x23c)](_0x1d1980(0x392),'No\x20remote\x20instance\x20service\x20injected.\x20May\x20not\x20syncing\x20edits\x20to\x20the\x20web\x20worker.'),this['_init']());}async[_0x5bb7a4(0x515)](){const _0x5e03f0=_0x5bb7a4,_0x97d4ce=this[_0x5e03f0(0x538)][_0x5e03f0(0x325)](_0x5e03f0(0x243)),_0x24a475=this['_urlService'][_0x5e03f0(0x325)](_0x5e03f0(0x27e));if(!_0x97d4ce||!_0x24a475){this['_logService']['debug'](_0x5e03f0(0x392),'No\x20unitID\x20or\x20type\x20in\x20URL.\x20Will\x20not\x20load\x20files\x20from\x20remote\x20address.');return;}switch(Number(_0x24a475)){case ce[_0x5e03f0(0x55b)]:{const _0xf7e357=await this['_loadSheet'](_0x97d4ce);this[_0x5e03f0(0x271)](_0xf7e357);break;}case ce[_0x5e03f0(0x172)]:{await this[_0x5e03f0(0x1f3)](_0x97d4ce);break;}default:{this[_0x5e03f0(0x26e)][_0x5e03f0(0x17b)](_0x5e03f0(0x392),'Unknown\x20type\x20in\x20URL.\x20Will\x20not\x20load\x20files\x20from\x20remote\x20address.');break;}}}async[_0x5bb7a4(0x271)](_0x3252fc){const _0x318ad6=_0x5bb7a4;await this['_updateSubUnitFromURLParams'](_0x3252fc),_0x3252fc['activeSheet$']['pipe'](_0x52fa59(this[_0x318ad6(0x492)]))[_0x318ad6(0x519)](_0x29751a=>{const _0x5c1819=_0x318ad6;_0x29751a&&this[_0x5c1819(0x545)](_0x29751a);}),this[_0x318ad6(0x538)]['urlChange$'][_0x318ad6(0x3f1)](_0x52fa59(this[_0x318ad6(0x492)]))[_0x318ad6(0x519)](()=>this[_0x318ad6(0x2e4)](_0x3252fc));}[_0x5bb7a4(0x545)](_0x14d637,_0x17864f=!0x1){const _0x45f904=_0x5bb7a4,_0x2e555e=this[_0x45f904(0x538)]['getParam'](_0x45f904(0x1a8));_0x14d637[_0x45f904(0x192)]()!==_0x2e555e&&this['_urlService'][_0x45f904(0x53b)](_0x45f904(0x1a8),_0x14d637[_0x45f904(0x192)](),_0x17864f);}async[_0x5bb7a4(0x2e4)](_0x12ef4b){const _0x19557a=_0x5bb7a4;var _0x5e649c;const _0x11552d=this[_0x19557a(0x538)][_0x19557a(0x325)](_0x19557a(0x1a8));if(!_0x11552d||!_0x12ef4b['getSheetBySheetId'](_0x11552d)){const _0x5314e0=_0x12ef4b[_0x19557a(0x2af)]()[0x0],_0x3693c4=_0x12ef4b[_0x19557a(0x29a)](_0x5314e0);if(!_0x3693c4)return;this[_0x19557a(0x545)](_0x3693c4,!0x0),await this['_commandService'][_0x19557a(0x175)](_0x3d9171['id'],{'unitId':_0x12ef4b[_0x19557a(0x322)](),'subUnitId':_0x5314e0});return;}((_0x5e649c=_0x12ef4b[_0x19557a(0x475)]())==null?void 0x0:_0x5e649c[_0x19557a(0x192)]())!==_0x11552d&&await this[_0x19557a(0x53f)][_0x19557a(0x175)](_0x3d9171['id'],{'unitId':_0x12ef4b[_0x19557a(0x322)](),'subUnitId':_0x11552d});}async['_loadSheet'](_0x30016c){const _0x818c30=_0x5bb7a4;let _0x3641ae=0x0;const _0x3d950f=await this[_0x818c30(0x46d)]['loadOfflineData'](_0x30016c);return _0x3d950f&&(_0x3d950f[_0x818c30(0x25a)]||_0x3d950f[_0x818c30(0x47f)][_0x818c30(0x282)]!==0x0)&&(_0x3641ae=_0x3d950f[_0x818c30(0x4eb)]),_0x3641ae===0x0&&this[_0x818c30(0x26e)]['debug']('[DataLoaderController]','fetching\x20the\x20latest\x20document\x20from\x20the\x20server.'),this[_0x818c30(0x496)]['loadSheet'](_0x30016c,_0x3641ae);}async[_0x5bb7a4(0x1f3)](_0x29e89a){const _0xe63997=_0x5bb7a4;let _0x260042=0x0;const _0x19d9b0=await this[_0xe63997(0x46d)][_0xe63997(0x426)](_0x29e89a);return _0x19d9b0&&(_0x19d9b0['awaitingChangeset']||_0x19d9b0[_0xe63997(0x47f)][_0xe63997(0x282)]!==0x0)&&(_0x260042=_0x19d9b0['rev']),_0x260042===0x0&&this[_0xe63997(0x26e)][_0xe63997(0x23c)](_0xe63997(0x392),_0xe63997(0x384)),this[_0xe63997(0x496)]['loadDoc'](_0x29e89a,_0x260042);}};It=wa([ke(0x0,Bi),ke(0x1,_0x3efec9),ke(0x2,_0x1e58f0),ke(0x3,_0x22a3e1(q)),ke(0x4,_0x22a3e1(_0x2b1acd)),ke(0x5,_0x4f55bd(_0xfc52d5))],It);var Da=Object[_0x5bb7a4(0x42b)],Pa=Object[_0x5bb7a4(0x4e4)],Ua=(_0x1add72,_0x3e9b5b,_0x1a46ff,_0x373fdc)=>{const _0x393be7=_0x5bb7a4;for(var _0xe3420=_0x373fdc>0x1?void 0x0:_0x373fdc?Pa(_0x3e9b5b,_0x1a46ff):_0x3e9b5b,_0xd2fe25=_0x1add72[_0x393be7(0x282)]-0x1,_0x5afad9;_0xd2fe25>=0x0;_0xd2fe25--)(_0x5afad9=_0x1add72[_0xd2fe25])&&(_0xe3420=(_0x373fdc?_0x5afad9(_0x3e9b5b,_0x1a46ff,_0xe3420):_0x5afad9(_0xe3420))||_0xe3420);return _0x373fdc&&_0xe3420&&Da(_0x3e9b5b,_0x1a46ff,_0xe3420),_0xe3420;},zs=(_0xf8d69a,_0x461190)=>(_0x40bdad,_0x231055)=>_0x461190(_0x40bdad,_0x231055,_0xf8d69a);const Na='DEFAULT_FILE_NAME',Aa=_0x5bb7a4(0x30f);let Ct=class extends _0x1caa36{constructor(_0x5a5fa5,_0x42acab){const _0x1f3eb0=_0x5bb7a4;super(),this[_0x1f3eb0(0x21d)]=_0x5a5fa5,this[_0x1f3eb0(0x23e)]=_0x42acab,this[_0x1f3eb0(0x515)]();}[_0x5bb7a4(0x515)](){const _0x3eb6a2=_0x5bb7a4;this[_0x3eb6a2(0x368)](this[_0x3eb6a2(0x21d)][_0x3eb6a2(0x274)][_0x3eb6a2(0x519)](()=>{const _0x44f0df=_0x3eb6a2;var _0x5f3cac;const _0x4ae9e7=this['_univerInstanceService'][_0x44f0df(0x1dd)]();let _0xca8668=(_0x5f3cac=this[_0x44f0df(0x23e)]['getConfig'](Na))!=null?_0x5f3cac:Aa;_0x4ae9e7 instanceof _0x31b79d&&(_0xca8668=_0x4ae9e7[_0x44f0df(0x408)]),document['title']=_0xca8668;}));}};Ct=Ua([zs(0x0,_0x2e0534),zs(0x1,_0x2bb536)],Ct);var Ma=Object[_0x5bb7a4(0x42b)],xa=Object[_0x5bb7a4(0x4e4)],La=(_0x426133,_0x28ad6f,_0x5a475c,_0x273172)=>{const _0x48d52c=_0x5bb7a4;for(var _0x22752e=_0x273172>0x1?void 0x0:_0x273172?xa(_0x28ad6f,_0x5a475c):_0x28ad6f,_0x3856d4=_0x426133[_0x48d52c(0x282)]-0x1,_0x47c441;_0x3856d4>=0x0;_0x3856d4--)(_0x47c441=_0x426133[_0x3856d4])&&(_0x22752e=(_0x273172?_0x47c441(_0x28ad6f,_0x5a475c,_0x22752e):_0x47c441(_0x22752e))||_0x22752e);return _0x273172&&_0x22752e&&Ma(_0x28ad6f,_0x5a475c,_0x22752e),_0x22752e;},Wt=(_0x5a37f1,_0x39c6b9)=>(_0x3aaa1b,_0x208050)=>_0x39c6b9(_0x3aaa1b,_0x208050,_0x5a37f1);let Et=class{constructor(_0x31f852,_0x5a1ca5,_0x1b2ff4){const _0x3aca2e=_0x5bb7a4;this[_0x3aca2e(0x23e)]=_0x31f852,this[_0x3aca2e(0x1be)]=_0x5a1ca5,this['localeService']=_0x1b2ff4,this['init']();}['init'](){const _0x15617e=_0x5bb7a4;this[_0x15617e(0x1be)][_0x15617e(0x4a6)]({'priority':0x1,'interceptor':(_0x239818,_0x475168)=>_0x475168(_0x239818)['pipe'](_0x2d7fb7(async _0x3f2204=>{const _0x5a5c6a=_0x15617e,_0x2675ee=_0x3f2204;if(_0x2675ee[_0x5a5c6a(0x1ff)]===0x191&&window[_0x5a5c6a(0x43e)](this[_0x5a5c6a(0x28a)]['t']('auth.needGotoLoginAlert'))){const _0x364b1c=window['encodeURIComponent'](window[_0x5a5c6a(0x521)][_0x5a5c6a(0x50b)]);window['location']['href']=this['_getLoginPath']()+_0x5a5c6a(0x2c1)+_0x364b1c;}return _0x2675ee;}))});}['_getLoginPath'](){const _0x268dd5=_0x5bb7a4;var _0x4e0cdd,_0x2a05bd;const _0x22188f=this[_0x268dd5(0x23e)][_0x268dd5(0x447)](br),_0xf46d8f=this[_0x268dd5(0x23e)]['getConfig'](ie);return(_0x2a05bd=(_0x4e0cdd=_0xf46d8f==null?void 0x0:_0xf46d8f['loginUrlKey'])!=null?_0x4e0cdd:_0x22188f)!=null?_0x2a05bd:Tr;}};Et=La([Wt(0x0,_0x2bb536),Wt(0x1,_0x22a3e1(_0x41156a)),Wt(0x2,_0x22a3e1(_0x1fdc1b))],Et);var $a=Object[_0x5bb7a4(0x42b)],Ha=Object[_0x5bb7a4(0x4e4)],ja=(_0x2111b7,_0x16440d,_0x2e75c9,_0x12aaa0)=>{const _0x55371d=_0x5bb7a4;for(var _0x15ba77=_0x12aaa0>0x1?void 0x0:_0x12aaa0?Ha(_0x16440d,_0x2e75c9):_0x16440d,_0x20e23d=_0x2111b7[_0x55371d(0x282)]-0x1,_0x283311;_0x20e23d>=0x0;_0x20e23d--)(_0x283311=_0x2111b7[_0x20e23d])&&(_0x15ba77=(_0x12aaa0?_0x283311(_0x16440d,_0x2e75c9,_0x15ba77):_0x283311(_0x15ba77))||_0x15ba77);return _0x12aaa0&&_0x15ba77&&$a(_0x16440d,_0x2e75c9,_0x15ba77),_0x15ba77;},qs=(_0xe54d84,_0x2fec05)=>(_0x81f98c,_0x13f49e)=>_0x2fec05(_0x81f98c,_0x13f49e,_0xe54d84);const Ba=_0x5bb7a4(0x305),ka=_0x5bb7a4(0x57a);let cs=class extends _0x1caa36{constructor(_0x337e3f,_0xeeed76){const _0x3e1c8d=_0x5bb7a4;super(),this[_0x3e1c8d(0x415)]=_0x337e3f,this[_0x3e1c8d(0x23e)]=_0xeeed76,this[_0x3e1c8d(0x184)]();}[_0x5bb7a4(0x184)](){const _0x3d21bb=_0x5bb7a4,_0x5455dc=this;this[_0x3d21bb(0x368)](this[_0x3d21bb(0x415)]['registerHTTPInterceptor']({'priority':0x3e7,'interceptor':_0xc40197({'isMatch'(_0x640954){const _0x798292=_0x3d21bb;var _0x4d5d2e;if(_0x640954[_0x798292(0x38b)]===_0x798292(0x2bf)&&((_0x4d5d2e=_0x640954[_0x798292(0x1bb)])!=null&&_0x4d5d2e[_0x798292(0x1ab)])){const {objectID:_0x18af39,objectType:_0x28d99d}=_0x640954[_0x798292(0x1bb)]['body']||{};if(!_0x18af39||_0x28d99d===void 0x0)return!0x1;const _0x4d61de=_0x5455dc[_0x798292(0x546)]()+'/'+_0x28d99d+_0x798292(0x29f)+_0x18af39+_0x798292(0x4ba);if(_0x640954[_0x798292(0x217)]===_0x4d61de)return!0x0;}return!0x1;},'getParamsFromRequest'(_0x36a6fa){const _0x150d85=_0x3d21bb;var _0x1fbbc1;return(_0x1fbbc1=_0x36a6fa[_0x150d85(0x1bb)])==null?void 0x0:_0x1fbbc1[_0x150d85(0x1ab)];},'mergeParamsToRequest'(_0xa9c753,_0x4de8f0){const _0x4f24ed=_0x3d21bb,_0x353d66=_0x5455dc[_0x4f24ed(0x546)]()+_0x4f24ed(0x39c),_0xa44dd4=_0xa9c753['reduce']((_0x1080f5,_0x448fb7)=>{const _0x52ea56=_0x4f24ed,{unitID:_0x4656b3,objectID:_0x19cb45,objectType:_0x2696e9,actions:_0x537407}=_0x448fb7;return _0x1080f5[_0x4656b3]||(_0x1080f5[_0x4656b3]={}),_0x1080f5[_0x4656b3][_0x19cb45]||(_0x1080f5[_0x4656b3][_0x19cb45]={'objectID':_0x19cb45,'objectType':_0x2696e9,'actions':[]}),_0x1080f5[_0x4656b3][_0x19cb45][_0x52ea56(0x37d)]['push'](..._0x537407),_0x1080f5;},{}),_0x21eb5f=[];for(const _0x4dad5f in _0xa44dd4)for(const _0x95cf28 in _0xa44dd4[_0x4dad5f]){const {actions:_0xdbfcda,objectType:_0xa3ff60}=_0xa44dd4[_0x4dad5f][_0x95cf28],_0x43eb54=[...new Set(_0xdbfcda)];_0x21eb5f[_0x4f24ed(0x433)]({'unitID':_0x4dad5f,'objectID':_0x95cf28,'objectType':_0xa3ff60,'actions':_0x43eb54});}return new _0x3b9e80(_0x4f24ed(0x2bf),_0x353d66,{'headers':_0x4de8f0[_0x4f24ed(0x210)],'withCredentials':_0x4de8f0[_0x4f24ed(0x2db)],'responseType':_0x4de8f0[_0x4f24ed(0x2a6)],'body':{'requests':_0x21eb5f}});}},{'distributeResult'(_0x58ff1d,_0x7ead0d){const _0xc2a64d=_0x3d21bb,{objectActions:_0x4b9114}=_0x58ff1d;return _0x7ead0d[_0xc2a64d(0x2c9)](_0x2ef88e=>{const _0xde6e8=_0xc2a64d,{unitID:_0x1143bf,objectID:_0x2346e5,actions:_0x3f6e45}=_0x2ef88e,_0x4bde05=_0x4b9114[_0xde6e8(0x1e7)](_0x486a50=>_0x486a50[_0xde6e8(0x4c4)]===_0x1143bf&&_0x486a50[_0xde6e8(0x52b)]===_0x2346e5),_0x59ce76=_0x3f6e45['map'](_0x17143a=>_0x4bde05==null?void 0x0:_0x4bde05[_0xde6e8(0x37d)][_0xde6e8(0x1e7)](_0x3b3b4a=>_0x3b3b4a['action']===_0x17143a))['filter'](_0x2aaa0b=>!!_0x2aaa0b);return{'config':_0x2ef88e,'result':{'actions':_0x59ce76,'error':_0x58ff1d['error']}};});}})}));}['_getAPIPrefixPath'](){const _0x3a9d26=_0x5bb7a4;var _0x21bb7b,_0x2ac0b5;const _0x457aae=this[_0x3a9d26(0x23e)]['getConfig'](Ba),_0x2c24e4=this['_configService'][_0x3a9d26(0x447)](ie);return(_0x2ac0b5=(_0x21bb7b=_0x2c24e4==null?void 0x0:_0x2c24e4[_0x3a9d26(0x366)])!=null?_0x21bb7b:_0x457aae)!=null?_0x2ac0b5:ka;}async['create'](_0x305cf6){const _0x57bcb3=_0x5bb7a4,_0xe8ef05=this[_0x57bcb3(0x546)]()+'/'+_0x305cf6[_0x57bcb3(0x320)]+'/object';return(await this[_0x57bcb3(0x415)][_0x57bcb3(0x495)](_0xe8ef05,{'body':_0x305cf6}))[_0x57bcb3(0x1ab)]['objectID']||'';}async['list'](_0x2d8a0a){const _0x8ff8f3=_0x5bb7a4,_0x31fe88=this['_getAPIPrefixPath']()+_0x8ff8f3(0x4c9);return(await this[_0x8ff8f3(0x415)]['post'](_0x31fe88,{'body':_0x2d8a0a}))[_0x8ff8f3(0x1ab)][_0x8ff8f3(0x448)];}async[_0x5bb7a4(0x3c9)](_0x444a4f){const _0x333a63=_0x5bb7a4,_0x3e3d77=this[_0x333a63(0x546)]()+'/'+_0x444a4f[_0x333a63(0x320)]+_0x333a63(0x29f)+_0x444a4f[_0x333a63(0x52b)];await this[_0x333a63(0x415)][_0x333a63(0x3f3)](_0x3e3d77,{'body':_0x444a4f});}async['allowed'](_0x1f6b9d){const _0x37a3a7=_0x5bb7a4,_0x16caf8=this[_0x37a3a7(0x546)]()+'/'+_0x1f6b9d[_0x37a3a7(0x320)]+'/object/'+_0x1f6b9d[_0x37a3a7(0x52b)]+_0x37a3a7(0x4ba);return(await this[_0x37a3a7(0x415)][_0x37a3a7(0x495)](_0x16caf8,{'body':_0x1f6b9d}))[_0x37a3a7(0x1ab)][_0x37a3a7(0x37d)];}async[_0x5bb7a4(0x4ca)](_0x32e4a1){const _0x46b205=_0x5bb7a4,_0x410a4c=this[_0x46b205(0x546)]()+_0x46b205(0x39c);return(await this[_0x46b205(0x415)][_0x46b205(0x495)](_0x410a4c,{'body':{'requests':_0x32e4a1}}))[_0x46b205(0x1ab)][_0x46b205(0x295)];}async[_0x5bb7a4(0x349)](_0xf6412f){const _0x1620a1=_0x5bb7a4,_0x4a21be=this[_0x1620a1(0x546)]()+'/'+_0xf6412f[_0x1620a1(0x320)]+_0x1620a1(0x246),_0x805b4e=await this[_0x1620a1(0x415)][_0x1620a1(0x495)](_0x4a21be,{'body':_0xf6412f});return{'roles':_0x805b4e['body'][_0x1620a1(0x24f)],'actions':_0x805b4e[_0x1620a1(0x1ab)]['actions']};}async['deleteCollaborator'](_0x287395){const _0x2ca896=_0x5bb7a4,_0x42bd94=this['_getAPIPrefixPath']()+_0x2ca896(0x205);await this['_HTTPService']['delete'](_0x42bd94,{'params':{'collaboratorID':_0x287395[_0x2ca896(0x4f1)],'objectID':_0x287395[_0x2ca896(0x52b)],'unitID':_0x287395[_0x2ca896(0x4c4)]}});}async[_0x5bb7a4(0x1d5)](_0x4d1e98){const _0x52027d=_0x5bb7a4,_0x19f9da=this['_getAPIPrefixPath']()+'/collaborator';await this[_0x52027d(0x415)][_0x52027d(0x419)](_0x19f9da,{'body':_0x4d1e98});}async['createCollaborator'](_0x13a6d4){const _0x178549=_0x5bb7a4,_0x154dde=this[_0x178549(0x546)]()+'/collaborator';await this['_HTTPService'][_0x178549(0x495)](_0x154dde,{'body':_0x13a6d4});}async['listCollaborators'](_0x398699){const _0x296dbf=_0x5bb7a4,_0x595da9=this['_getAPIPrefixPath']()+_0x296dbf(0x205);return(await this[_0x296dbf(0x415)][_0x296dbf(0x4f7)](_0x595da9,{'params':{'objectID':_0x398699[_0x296dbf(0x52b)],'unitID':_0x398699[_0x296dbf(0x4c4)]}}))[_0x296dbf(0x1ab)][_0x296dbf(0x251)];}async['putCollaborators'](_0x268da8){const _0x3e7fe9=_0x5bb7a4,_0xeca651=this[_0x3e7fe9(0x546)]()+_0x3e7fe9(0x205);await this[_0x3e7fe9(0x415)][_0x3e7fe9(0x3f3)](_0xeca651,{'body':_0x268da8});}};cs=ja([qs(0x0,_0x22a3e1(_0x41156a)),qs(0x1,_0x22a3e1(_0x2bb536))],cs);var ki={'exports':{}};function Wa(_0x3c7511){const _0x4dc6ca=_0x5bb7a4;throw new Error(_0x4dc6ca(0x1ca)+_0x3c7511+_0x4dc6ca(0x37f));}var Ft={'exports':{}},Xs;function ue(){return Xs||(Xs=0x1,function(_0x475529,_0x1dd709){(function(_0x529364,_0x2f6882){const _0x2a22dc=_0x4081;_0x475529[_0x2a22dc(0x236)]=_0x2f6882();}(Z,function(){var _0x42a0db=_0x42a0db||function(_0x553ddd,_0x3dde1c){const _0x3f3660=_0x4081;var _0x5bdb32;if(typeof window<'u'&&window['crypto']&&(_0x5bdb32=window[_0x3f3660(0x577)]),typeof self<'u'&&self[_0x3f3660(0x577)]&&(_0x5bdb32=self[_0x3f3660(0x577)]),typeof globalThis<'u'&&globalThis[_0x3f3660(0x577)]&&(_0x5bdb32=globalThis[_0x3f3660(0x577)]),!_0x5bdb32&&typeof window<'u'&&window[_0x3f3660(0x193)]&&(_0x5bdb32=window[_0x3f3660(0x193)]),!_0x5bdb32&&typeof Z<'u'&&Z['crypto']&&(_0x5bdb32=Z['crypto']),!_0x5bdb32&&typeof Wa==_0x3f3660(0x4b8))try{_0x5bdb32=require(_0x3f3660(0x577));}catch{}var _0x57d27c=function(){const _0x4aa3ee=_0x3f3660;if(_0x5bdb32){if(typeof _0x5bdb32[_0x4aa3ee(0x342)]==_0x4aa3ee(0x4b8))try{return _0x5bdb32[_0x4aa3ee(0x342)](new Uint32Array(0x1))[0x0];}catch{}if(typeof _0x5bdb32[_0x4aa3ee(0x2dc)]==_0x4aa3ee(0x4b8))try{return _0x5bdb32[_0x4aa3ee(0x2dc)](0x4)[_0x4aa3ee(0x511)]();}catch{}}throw new Error(_0x4aa3ee(0x55a));},_0x744bbb=Object[_0x3f3660(0x54f)]||(function(){function _0x273570(){}return function(_0x4ef8b4){const _0x3b5fd4=_0x4081;var _0x3a9735;return _0x273570[_0x3b5fd4(0x423)]=_0x4ef8b4,_0x3a9735=new _0x273570(),_0x273570['prototype']=null,_0x3a9735;};}()),_0x1ce432={},_0x3657fd=_0x1ce432[_0x3f3660(0x2f1)]={},_0x320273=_0x3657fd['Base']=(function(){return{'extend':function(_0x310a09){const _0x511be7=_0x4081;var _0x166e0d=_0x744bbb(this);return _0x310a09&&_0x166e0d['mixIn'](_0x310a09),(!_0x166e0d[_0x511be7(0x440)](_0x511be7(0x1d6))||this[_0x511be7(0x1d6)]===_0x166e0d[_0x511be7(0x1d6)])&&(_0x166e0d['init']=function(){_0x166e0d['$super']['init']['apply'](this,arguments);}),_0x166e0d['init'][_0x511be7(0x423)]=_0x166e0d,_0x166e0d[_0x511be7(0x4f6)]=this,_0x166e0d;},'create':function(){const _0x2ed2e9=_0x4081;var _0x23e75c=this[_0x2ed2e9(0x187)]();return _0x23e75c[_0x2ed2e9(0x1d6)][_0x2ed2e9(0x568)](_0x23e75c,arguments),_0x23e75c;},'init':function(){},'mixIn':function(_0x2ec74c){const _0x267f35=_0x4081;for(var _0x3fcc75 in _0x2ec74c)_0x2ec74c[_0x267f35(0x440)](_0x3fcc75)&&(this[_0x3fcc75]=_0x2ec74c[_0x3fcc75]);_0x2ec74c[_0x267f35(0x440)]('toString')&&(this[_0x267f35(0x2e5)]=_0x2ec74c[_0x267f35(0x2e5)]);},'clone':function(){const _0x5d1d4e=_0x4081;return this[_0x5d1d4e(0x1d6)][_0x5d1d4e(0x423)][_0x5d1d4e(0x187)](this);}};}()),_0x4e6877=_0x3657fd[_0x3f3660(0x1b3)]=_0x320273[_0x3f3660(0x187)]({'init':function(_0x5ce309,_0x4a96c9){const _0x5135ba=_0x3f3660;_0x5ce309=this[_0x5135ba(0x1fa)]=_0x5ce309||[],_0x4a96c9!=_0x3dde1c?this['sigBytes']=_0x4a96c9:this[_0x5135ba(0x3ad)]=_0x5ce309['length']*0x4;},'toString':function(_0x4d4d81){const _0x287310=_0x3f3660;return(_0x4d4d81||_0x330813)[_0x287310(0x303)](this);},'concat':function(_0x471f07){const _0x120df4=_0x3f3660;var _0x356d82=this[_0x120df4(0x1fa)],_0xe53259=_0x471f07[_0x120df4(0x1fa)],_0x3c1272=this['sigBytes'],_0x3d0f54=_0x471f07[_0x120df4(0x3ad)];if(this['clamp'](),_0x3c1272%0x4)for(var _0x184cff=0x0;_0x184cff<_0x3d0f54;_0x184cff++){var _0x688a5b=_0xe53259[_0x184cff>>>0x2]>>>0x18-_0x184cff%0x4*0x8&0xff;_0x356d82[_0x3c1272+_0x184cff>>>0x2]|=_0x688a5b<<0x18-(_0x3c1272+_0x184cff)%0x4*0x8;}else{for(var _0x473517=0x0;_0x473517<_0x3d0f54;_0x473517+=0x4)_0x356d82[_0x3c1272+_0x473517>>>0x2]=_0xe53259[_0x473517>>>0x2];}return this['sigBytes']+=_0x3d0f54,this;},'clamp':function(){const _0x204520=_0x3f3660;var _0x40211a=this[_0x204520(0x1fa)],_0x4d5e8d=this['sigBytes'];_0x40211a[_0x4d5e8d>>>0x2]&=0xffffffff<<0x20-_0x4d5e8d%0x4*0x8,_0x40211a[_0x204520(0x282)]=_0x553ddd[_0x204520(0x247)](_0x4d5e8d/0x4);},'clone':function(){const _0xcfd7a0=_0x3f3660;var _0x3c7123=_0x320273[_0xcfd7a0(0x431)][_0xcfd7a0(0x1f6)](this);return _0x3c7123['words']=this[_0xcfd7a0(0x1fa)]['slice'](0x0),_0x3c7123;},'random':function(_0x5cc9d1){const _0x1df3fa=_0x3f3660;for(var _0x1cca56=[],_0x23cb62=0x0;_0x23cb62<_0x5cc9d1;_0x23cb62+=0x4)_0x1cca56[_0x1df3fa(0x433)](_0x57d27c());return new _0x4e6877[(_0x1df3fa(0x1d6))](_0x1cca56,_0x5cc9d1);}}),_0x1e927c=_0x1ce432[_0x3f3660(0x522)]={},_0x330813=_0x1e927c[_0x3f3660(0x2ac)]={'stringify':function(_0xc040df){const _0x1cd01a=_0x3f3660;for(var _0x55998e=_0xc040df['words'],_0x5f411b=_0xc040df[_0x1cd01a(0x3ad)],_0x2a36d1=[],_0x245523=0x0;_0x245523<_0x5f411b;_0x245523++){var _0x43acc7=_0x55998e[_0x245523>>>0x2]>>>0x18-_0x245523%0x4*0x8&0xff;_0x2a36d1['push']((_0x43acc7>>>0x4)[_0x1cd01a(0x2e5)](0x10)),_0x2a36d1['push']((_0x43acc7&0xf)[_0x1cd01a(0x2e5)](0x10));}return _0x2a36d1[_0x1cd01a(0x258)]('');},'parse':function(_0x384969){const _0x15f8af=_0x3f3660;for(var _0x104c36=_0x384969[_0x15f8af(0x282)],_0x263113=[],_0x3d46c8=0x0;_0x3d46c8<_0x104c36;_0x3d46c8+=0x2)_0x263113[_0x3d46c8>>>0x3]|=parseInt(_0x384969['substr'](_0x3d46c8,0x2),0x10)<<0x18-_0x3d46c8%0x8*0x4;return new _0x4e6877[(_0x15f8af(0x1d6))](_0x263113,_0x104c36/0x2);}},_0x63663a=_0x1e927c[_0x3f3660(0x3c4)]={'stringify':function(_0x393ee3){const _0x154597=_0x3f3660;for(var _0x37797b=_0x393ee3[_0x154597(0x1fa)],_0x1cffa9=_0x393ee3[_0x154597(0x3ad)],_0xe9f584=[],_0x45807a=0x0;_0x45807a<_0x1cffa9;_0x45807a++){var _0x3e223b=_0x37797b[_0x45807a>>>0x2]>>>0x18-_0x45807a%0x4*0x8&0xff;_0xe9f584[_0x154597(0x433)](String[_0x154597(0x224)](_0x3e223b));}return _0xe9f584[_0x154597(0x258)]('');},'parse':function(_0x4f3bc6){const _0x4c7f63=_0x3f3660;for(var _0x33398a=_0x4f3bc6[_0x4c7f63(0x282)],_0x27ad43=[],_0x3bd8b8=0x0;_0x3bd8b8<_0x33398a;_0x3bd8b8++)_0x27ad43[_0x3bd8b8>>>0x2]|=(_0x4f3bc6[_0x4c7f63(0x4d3)](_0x3bd8b8)&0xff)<<0x18-_0x3bd8b8%0x4*0x8;return new _0x4e6877[(_0x4c7f63(0x1d6))](_0x27ad43,_0x33398a);}},_0x644e59=_0x1e927c['Utf8']={'stringify':function(_0x4c82a5){const _0x296e17=_0x3f3660;try{return decodeURIComponent(escape(_0x63663a[_0x296e17(0x303)](_0x4c82a5)));}catch{throw new Error(_0x296e17(0x3d0));}},'parse':function(_0x57158c){const _0x5d907f=_0x3f3660;return _0x63663a[_0x5d907f(0x57c)](unescape(encodeURIComponent(_0x57158c)));}},_0x4805f6=_0x3657fd[_0x3f3660(0x1b8)]=_0x320273['extend']({'reset':function(){const _0x120692=_0x3f3660;this['_data']=new _0x4e6877[(_0x120692(0x1d6))](),this['_nDataBytes']=0x0;},'_append':function(_0x5c4718){const _0x515456=_0x3f3660;typeof _0x5c4718==_0x515456(0x40c)&&(_0x5c4718=_0x644e59['parse'](_0x5c4718)),this['_data'][_0x515456(0x196)](_0x5c4718),this[_0x515456(0x3b8)]+=_0x5c4718[_0x515456(0x3ad)];},'_process':function(_0xa9cc5e){const _0x33af1b=_0x3f3660;var _0x2d2944,_0x4c488a=this[_0x33af1b(0x2a9)],_0x3f7730=_0x4c488a[_0x33af1b(0x1fa)],_0x3c1f29=_0x4c488a[_0x33af1b(0x3ad)],_0x10d0c4=this['blockSize'],_0x400adb=_0x10d0c4*0x4,_0x246ccb=_0x3c1f29/_0x400adb;_0xa9cc5e?_0x246ccb=_0x553ddd[_0x33af1b(0x247)](_0x246ccb):_0x246ccb=_0x553ddd[_0x33af1b(0x173)]((_0x246ccb|0x0)-this[_0x33af1b(0x1bc)],0x0);var _0x1f2413=_0x246ccb*_0x10d0c4,_0x189699=_0x553ddd[_0x33af1b(0x443)](_0x1f2413*0x4,_0x3c1f29);if(_0x1f2413){for(var _0x3980d2=0x0;_0x3980d2<_0x1f2413;_0x3980d2+=_0x10d0c4)this[_0x33af1b(0x54e)](_0x3f7730,_0x3980d2);_0x2d2944=_0x3f7730['splice'](0x0,_0x1f2413),_0x4c488a[_0x33af1b(0x3ad)]-=_0x189699;}return new _0x4e6877['init'](_0x2d2944,_0x189699);},'clone':function(){const _0x3ee1a6=_0x3f3660;var _0x5e7362=_0x320273[_0x3ee1a6(0x431)][_0x3ee1a6(0x1f6)](this);return _0x5e7362[_0x3ee1a6(0x2a9)]=this[_0x3ee1a6(0x2a9)][_0x3ee1a6(0x431)](),_0x5e7362;},'_minBufferSize':0x0});_0x3657fd['Hasher']=_0x4805f6['extend']({'cfg':_0x320273[_0x3f3660(0x187)](),'init':function(_0x378782){const _0x197361=_0x3f3660;this[_0x197361(0x181)]=this[_0x197361(0x181)][_0x197361(0x187)](_0x378782),this[_0x197361(0x2d7)]();},'reset':function(){const _0x228b50=_0x3f3660;_0x4805f6[_0x228b50(0x2d7)][_0x228b50(0x1f6)](this),this[_0x228b50(0x1c4)]();},'update':function(_0x5d5be8){const _0x377fb1=_0x3f3660;return this[_0x377fb1(0x362)](_0x5d5be8),this[_0x377fb1(0x16f)](),this;},'finalize':function(_0x4297c3){const _0xbe482c=_0x3f3660;_0x4297c3&&this['_append'](_0x4297c3);var _0x4886d8=this[_0xbe482c(0x555)]();return _0x4886d8;},'blockSize':0x10,'_createHelper':function(_0x4df4eb){return function(_0x1d9d21,_0x225419){const _0x195f3e=_0x4081;return new _0x4df4eb['init'](_0x225419)[_0x195f3e(0x2e2)](_0x1d9d21);};},'_createHmacHelper':function(_0x934465){return function(_0xf62b4f,_0x27967b){const _0x4b7fda=_0x4081;return new _0xc8f321[(_0x4b7fda(0x44e))][(_0x4b7fda(0x1d6))](_0x934465,_0x27967b)[_0x4b7fda(0x2e2)](_0xf62b4f);};}});var _0xc8f321=_0x1ce432[_0x3f3660(0x44d)]={};return _0x1ce432;}(Math);return _0x42a0db;}));}(Ft)),Ft['exports'];}var Vt={'exports':{}},Js;function Wi(){const _0x1e6bd5=_0x5bb7a4;return Js||(Js=0x1,function(_0x4ae74d,_0x324aad){(function(_0x478283,_0x232ec){const _0x43abd9=_0x4081;_0x4ae74d[_0x43abd9(0x236)]=_0x232ec(ue());}(Z,function(_0x1aed71){return(function(){const _0x2537cc=_0x4081;var _0x73af1f=_0x1aed71,_0x2449d0=_0x73af1f[_0x2537cc(0x2f1)],_0x573999=_0x2449d0[_0x2537cc(0x1b3)],_0x5aaa1f=_0x73af1f[_0x2537cc(0x522)];_0x5aaa1f['Base64']={'stringify':function(_0x31176c){const _0x5a217a=_0x2537cc;var _0x5b240b=_0x31176c[_0x5a217a(0x1fa)],_0x25fc4e=_0x31176c[_0x5a217a(0x3ad)],_0x32e068=this['_map'];_0x31176c[_0x5a217a(0x551)]();for(var _0x5e98f5=[],_0x5b88a7=0x0;_0x5b88a7<_0x25fc4e;_0x5b88a7+=0x3)for(var _0x4ee2cb=_0x5b240b[_0x5b88a7>>>0x2]>>>0x18-_0x5b88a7%0x4*0x8&0xff,_0x4b534e=_0x5b240b[_0x5b88a7+0x1>>>0x2]>>>0x18-(_0x5b88a7+0x1)%0x4*0x8&0xff,_0x122313=_0x5b240b[_0x5b88a7+0x2>>>0x2]>>>0x18-(_0x5b88a7+0x2)%0x4*0x8&0xff,_0x2858d0=_0x4ee2cb<<0x10|_0x4b534e<<0x8|_0x122313,_0x576349=0x0;_0x576349<0x4&&_0x5b88a7+_0x576349*0.75<_0x25fc4e;_0x576349++)_0x5e98f5[_0x5a217a(0x433)](_0x32e068['charAt'](_0x2858d0>>>0x6*(0x3-_0x576349)&0x3f));var _0x17fd68=_0x32e068['charAt'](0x40);if(_0x17fd68){for(;_0x5e98f5[_0x5a217a(0x282)]%0x4;)_0x5e98f5[_0x5a217a(0x433)](_0x17fd68);}return _0x5e98f5[_0x5a217a(0x258)]('');},'parse':function(_0x2ddb63){const _0x417b75=_0x2537cc;var _0x268dfe=_0x2ddb63[_0x417b75(0x282)],_0x133e93=this[_0x417b75(0x390)],_0xca00ef=this[_0x417b75(0x523)];if(!_0xca00ef){_0xca00ef=this[_0x417b75(0x523)]=[];for(var _0xf51d00=0x0;_0xf51d00<_0x133e93[_0x417b75(0x282)];_0xf51d00++)_0xca00ef[_0x133e93[_0x417b75(0x4d3)](_0xf51d00)]=_0xf51d00;}var _0x5effbb=_0x133e93[_0x417b75(0x504)](0x40);if(_0x5effbb){var _0x34f945=_0x2ddb63[_0x417b75(0x41f)](_0x5effbb);_0x34f945!==-0x1&&(_0x268dfe=_0x34f945);}return _0x307960(_0x2ddb63,_0x268dfe,_0xca00ef);},'_map':_0x2537cc(0x36d)};function _0x307960(_0x263ac5,_0x5341f4,_0xe3d65c){const _0x46b28b=_0x2537cc;for(var _0x4be8d7=[],_0x355cad=0x0,_0x5e5108=0x0;_0x5e5108<_0x5341f4;_0x5e5108++)if(_0x5e5108%0x4){var _0x5be495=_0xe3d65c[_0x263ac5[_0x46b28b(0x4d3)](_0x5e5108-0x1)]<<_0x5e5108%0x4*0x2,_0x56b987=_0xe3d65c[_0x263ac5[_0x46b28b(0x4d3)](_0x5e5108)]>>>0x6-_0x5e5108%0x4*0x2,_0x469f36=_0x5be495|_0x56b987;_0x4be8d7[_0x355cad>>>0x2]|=_0x469f36<<0x18-_0x355cad%0x4*0x8,_0x355cad++;}return _0x573999[_0x46b28b(0x54f)](_0x4be8d7,_0x355cad);}}()),_0x1aed71['enc']['Base64'];}));}(Vt)),Vt[_0x1e6bd5(0x236)];}var Gt={'exports':{}},Zs;function Fa(){const _0x1304f2=_0x5bb7a4;return Zs||(Zs=0x1,function(_0x154387,_0x4cd16a){(function(_0x2fec58,_0x40d5d3){_0x154387['exports']=_0x40d5d3(ue());}(Z,function(_0x435eac){const _0x4f102=_0x4081;return function(_0x1cd82b){const _0x460f07=_0x4081;var _0x2482fc=_0x435eac,_0x1db649=_0x2482fc[_0x460f07(0x2f1)],_0x50b064=_0x1db649[_0x460f07(0x1b3)],_0x271e0e=_0x1db649[_0x460f07(0x332)],_0x325cb2=_0x2482fc[_0x460f07(0x44d)],_0x1e0010=[];(function(){const _0x4507d7=_0x460f07;for(var _0x3eff33=0x0;_0x3eff33<0x40;_0x3eff33++)_0x1e0010[_0x3eff33]=_0x1cd82b[_0x4507d7(0x399)](_0x1cd82b[_0x4507d7(0x524)](_0x3eff33+0x1))*0x100000000|0x0;}());var _0x47b07f=_0x325cb2[_0x460f07(0x36c)]=_0x271e0e[_0x460f07(0x187)]({'_doReset':function(){const _0x1bb6a9=_0x460f07;this[_0x1bb6a9(0x53a)]=new _0x50b064[(_0x1bb6a9(0x1d6))]([0x67452301,0xefcdab89,0x98badcfe,0x10325476]);},'_doProcessBlock':function(_0x57b406,_0x4cd6ae){const _0x200976=_0x460f07;for(var _0x1b37bd=0x0;_0x1b37bd<0x10;_0x1b37bd++){var _0x5379d3=_0x4cd6ae+_0x1b37bd,_0x2c7a1d=_0x57b406[_0x5379d3];_0x57b406[_0x5379d3]=(_0x2c7a1d<<0x8|_0x2c7a1d>>>0x18)&0xff00ff|(_0x2c7a1d<<0x18|_0x2c7a1d>>>0x8)&0xff00ff00;}var _0x5321ca=this[_0x200976(0x53a)][_0x200976(0x1fa)],_0x4755f2=_0x57b406[_0x4cd6ae+0x0],_0x1a4fd3=_0x57b406[_0x4cd6ae+0x1],_0x408d3b=_0x57b406[_0x4cd6ae+0x2],_0x203499=_0x57b406[_0x4cd6ae+0x3],_0x3156fe=_0x57b406[_0x4cd6ae+0x4],_0x3f3fbd=_0x57b406[_0x4cd6ae+0x5],_0x3e56ea=_0x57b406[_0x4cd6ae+0x6],_0x3a2c2a=_0x57b406[_0x4cd6ae+0x7],_0x295878=_0x57b406[_0x4cd6ae+0x8],_0x4572b7=_0x57b406[_0x4cd6ae+0x9],_0x712aab=_0x57b406[_0x4cd6ae+0xa],_0x236529=_0x57b406[_0x4cd6ae+0xb],_0x277708=_0x57b406[_0x4cd6ae+0xc],_0x1a31a1=_0x57b406[_0x4cd6ae+0xd],_0x7c0474=_0x57b406[_0x4cd6ae+0xe],_0x24d0b8=_0x57b406[_0x4cd6ae+0xf],_0x656c41=_0x5321ca[0x0],_0x570d6d=_0x5321ca[0x1],_0x2e07a0=_0x5321ca[0x2],_0x233209=_0x5321ca[0x3];_0x656c41=_0x309cdc(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x4755f2,0x7,_0x1e0010[0x0]),_0x233209=_0x309cdc(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x1a4fd3,0xc,_0x1e0010[0x1]),_0x2e07a0=_0x309cdc(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x408d3b,0x11,_0x1e0010[0x2]),_0x570d6d=_0x309cdc(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x203499,0x16,_0x1e0010[0x3]),_0x656c41=_0x309cdc(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x3156fe,0x7,_0x1e0010[0x4]),_0x233209=_0x309cdc(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x3f3fbd,0xc,_0x1e0010[0x5]),_0x2e07a0=_0x309cdc(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x3e56ea,0x11,_0x1e0010[0x6]),_0x570d6d=_0x309cdc(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x3a2c2a,0x16,_0x1e0010[0x7]),_0x656c41=_0x309cdc(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x295878,0x7,_0x1e0010[0x8]),_0x233209=_0x309cdc(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x4572b7,0xc,_0x1e0010[0x9]),_0x2e07a0=_0x309cdc(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x712aab,0x11,_0x1e0010[0xa]),_0x570d6d=_0x309cdc(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x236529,0x16,_0x1e0010[0xb]),_0x656c41=_0x309cdc(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x277708,0x7,_0x1e0010[0xc]),_0x233209=_0x309cdc(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x1a31a1,0xc,_0x1e0010[0xd]),_0x2e07a0=_0x309cdc(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x7c0474,0x11,_0x1e0010[0xe]),_0x570d6d=_0x309cdc(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x24d0b8,0x16,_0x1e0010[0xf]),_0x656c41=_0x233504(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x1a4fd3,0x5,_0x1e0010[0x10]),_0x233209=_0x233504(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x3e56ea,0x9,_0x1e0010[0x11]),_0x2e07a0=_0x233504(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x236529,0xe,_0x1e0010[0x12]),_0x570d6d=_0x233504(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x4755f2,0x14,_0x1e0010[0x13]),_0x656c41=_0x233504(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x3f3fbd,0x5,_0x1e0010[0x14]),_0x233209=_0x233504(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x712aab,0x9,_0x1e0010[0x15]),_0x2e07a0=_0x233504(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x24d0b8,0xe,_0x1e0010[0x16]),_0x570d6d=_0x233504(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x3156fe,0x14,_0x1e0010[0x17]),_0x656c41=_0x233504(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x4572b7,0x5,_0x1e0010[0x18]),_0x233209=_0x233504(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x7c0474,0x9,_0x1e0010[0x19]),_0x2e07a0=_0x233504(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x203499,0xe,_0x1e0010[0x1a]),_0x570d6d=_0x233504(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x295878,0x14,_0x1e0010[0x1b]),_0x656c41=_0x233504(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x1a31a1,0x5,_0x1e0010[0x1c]),_0x233209=_0x233504(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x408d3b,0x9,_0x1e0010[0x1d]),_0x2e07a0=_0x233504(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x3a2c2a,0xe,_0x1e0010[0x1e]),_0x570d6d=_0x233504(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x277708,0x14,_0x1e0010[0x1f]),_0x656c41=_0x95bde1(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x3f3fbd,0x4,_0x1e0010[0x20]),_0x233209=_0x95bde1(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x295878,0xb,_0x1e0010[0x21]),_0x2e07a0=_0x95bde1(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x236529,0x10,_0x1e0010[0x22]),_0x570d6d=_0x95bde1(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x7c0474,0x17,_0x1e0010[0x23]),_0x656c41=_0x95bde1(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x1a4fd3,0x4,_0x1e0010[0x24]),_0x233209=_0x95bde1(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x3156fe,0xb,_0x1e0010[0x25]),_0x2e07a0=_0x95bde1(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x3a2c2a,0x10,_0x1e0010[0x26]),_0x570d6d=_0x95bde1(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x712aab,0x17,_0x1e0010[0x27]),_0x656c41=_0x95bde1(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x1a31a1,0x4,_0x1e0010[0x28]),_0x233209=_0x95bde1(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x4755f2,0xb,_0x1e0010[0x29]),_0x2e07a0=_0x95bde1(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x203499,0x10,_0x1e0010[0x2a]),_0x570d6d=_0x95bde1(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x3e56ea,0x17,_0x1e0010[0x2b]),_0x656c41=_0x95bde1(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x4572b7,0x4,_0x1e0010[0x2c]),_0x233209=_0x95bde1(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x277708,0xb,_0x1e0010[0x2d]),_0x2e07a0=_0x95bde1(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x24d0b8,0x10,_0x1e0010[0x2e]),_0x570d6d=_0x95bde1(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x408d3b,0x17,_0x1e0010[0x2f]),_0x656c41=_0x56fb36(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x4755f2,0x6,_0x1e0010[0x30]),_0x233209=_0x56fb36(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x3a2c2a,0xa,_0x1e0010[0x31]),_0x2e07a0=_0x56fb36(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x7c0474,0xf,_0x1e0010[0x32]),_0x570d6d=_0x56fb36(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x3f3fbd,0x15,_0x1e0010[0x33]),_0x656c41=_0x56fb36(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x277708,0x6,_0x1e0010[0x34]),_0x233209=_0x56fb36(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x203499,0xa,_0x1e0010[0x35]),_0x2e07a0=_0x56fb36(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x712aab,0xf,_0x1e0010[0x36]),_0x570d6d=_0x56fb36(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x1a4fd3,0x15,_0x1e0010[0x37]),_0x656c41=_0x56fb36(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x295878,0x6,_0x1e0010[0x38]),_0x233209=_0x56fb36(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x24d0b8,0xa,_0x1e0010[0x39]),_0x2e07a0=_0x56fb36(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x3e56ea,0xf,_0x1e0010[0x3a]),_0x570d6d=_0x56fb36(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x1a31a1,0x15,_0x1e0010[0x3b]),_0x656c41=_0x56fb36(_0x656c41,_0x570d6d,_0x2e07a0,_0x233209,_0x3156fe,0x6,_0x1e0010[0x3c]),_0x233209=_0x56fb36(_0x233209,_0x656c41,_0x570d6d,_0x2e07a0,_0x236529,0xa,_0x1e0010[0x3d]),_0x2e07a0=_0x56fb36(_0x2e07a0,_0x233209,_0x656c41,_0x570d6d,_0x408d3b,0xf,_0x1e0010[0x3e]),_0x570d6d=_0x56fb36(_0x570d6d,_0x2e07a0,_0x233209,_0x656c41,_0x4572b7,0x15,_0x1e0010[0x3f]),_0x5321ca[0x0]=_0x5321ca[0x0]+_0x656c41|0x0,_0x5321ca[0x1]=_0x5321ca[0x1]+_0x570d6d|0x0,_0x5321ca[0x2]=_0x5321ca[0x2]+_0x2e07a0|0x0,_0x5321ca[0x3]=_0x5321ca[0x3]+_0x233209|0x0;},'_doFinalize':function(){const _0x5b1b40=_0x460f07;var _0x5ea5fa=this[_0x5b1b40(0x2a9)],_0x195aae=_0x5ea5fa['words'],_0x202fd9=this[_0x5b1b40(0x3b8)]*0x8,_0x3499b1=_0x5ea5fa[_0x5b1b40(0x3ad)]*0x8;_0x195aae[_0x3499b1>>>0x5]|=0x80<<0x18-_0x3499b1%0x20;var _0x397acd=_0x1cd82b[_0x5b1b40(0x23d)](_0x202fd9/0x100000000),_0x44f647=_0x202fd9;_0x195aae[(_0x3499b1+0x40>>>0x9<<0x4)+0xf]=(_0x397acd<<0x8|_0x397acd>>>0x18)&0xff00ff|(_0x397acd<<0x18|_0x397acd>>>0x8)&0xff00ff00,_0x195aae[(_0x3499b1+0x40>>>0x9<<0x4)+0xe]=(_0x44f647<<0x8|_0x44f647>>>0x18)&0xff00ff|(_0x44f647<<0x18|_0x44f647>>>0x8)&0xff00ff00,_0x5ea5fa[_0x5b1b40(0x3ad)]=(_0x195aae[_0x5b1b40(0x282)]+0x1)*0x4,this[_0x5b1b40(0x16f)]();for(var _0x44cea8=this['_hash'],_0x653a70=_0x44cea8[_0x5b1b40(0x1fa)],_0xc07b7c=0x0;_0xc07b7c<0x4;_0xc07b7c++){var _0x3ab5a4=_0x653a70[_0xc07b7c];_0x653a70[_0xc07b7c]=(_0x3ab5a4<<0x8|_0x3ab5a4>>>0x18)&0xff00ff|(_0x3ab5a4<<0x18|_0x3ab5a4>>>0x8)&0xff00ff00;}return _0x44cea8;},'clone':function(){const _0x3294e0=_0x460f07;var _0x5ef8bd=_0x271e0e[_0x3294e0(0x431)][_0x3294e0(0x1f6)](this);return _0x5ef8bd[_0x3294e0(0x53a)]=this[_0x3294e0(0x53a)][_0x3294e0(0x431)](),_0x5ef8bd;}});function _0x309cdc(_0x33d2be,_0x18cd00,_0x7fddb5,_0x126dbc,_0x1f7106,_0x5f0dc7,_0xabb8f6){var _0x389a48=_0x33d2be+(_0x18cd00&_0x7fddb5|~_0x18cd00&_0x126dbc)+_0x1f7106+_0xabb8f6;return(_0x389a48<<_0x5f0dc7|_0x389a48>>>0x20-_0x5f0dc7)+_0x18cd00;}function _0x233504(_0x57b570,_0x4f99db,_0x4899a8,_0x6fd66c,_0x758dea,_0x44424c,_0x550c21){var _0x5d3dac=_0x57b570+(_0x4f99db&_0x6fd66c|_0x4899a8&~_0x6fd66c)+_0x758dea+_0x550c21;return(_0x5d3dac<<_0x44424c|_0x5d3dac>>>0x20-_0x44424c)+_0x4f99db;}function _0x95bde1(_0x2490c5,_0x4afa55,_0x253341,_0xa54636,_0x5b9907,_0x1636d2,_0x28b665){var _0x425369=_0x2490c5+(_0x4afa55^_0x253341^_0xa54636)+_0x5b9907+_0x28b665;return(_0x425369<<_0x1636d2|_0x425369>>>0x20-_0x1636d2)+_0x4afa55;}function _0x56fb36(_0x758b2e,_0x5ba7a8,_0x1ac8ec,_0x2fb69d,_0x40a75b,_0x250dc2,_0x17b1e4){var _0x4b2a2f=_0x758b2e+(_0x1ac8ec^(_0x5ba7a8|~_0x2fb69d))+_0x40a75b+_0x17b1e4;return(_0x4b2a2f<<_0x250dc2|_0x4b2a2f>>>0x20-_0x250dc2)+_0x5ba7a8;}_0x2482fc[_0x460f07(0x36c)]=_0x271e0e[_0x460f07(0x3ee)](_0x47b07f),_0x2482fc[_0x460f07(0x285)]=_0x271e0e[_0x460f07(0x1d4)](_0x47b07f);}(Math),_0x435eac[_0x4f102(0x36c)];}));}(Gt)),Gt[_0x1304f2(0x236)];}var Yt={'exports':{}},Kt={'exports':{}},Qs;function Va(){const _0x6db3bd=_0x5bb7a4;return Qs||(Qs=0x1,function(_0x852991,_0x1a54bc){(function(_0x2c4a02,_0x6cd65d){_0x852991['exports']=_0x6cd65d(ue());}(Z,function(_0x583dab){return(function(){const _0x53f76b=_0x4081;var _0x42c67f=_0x583dab,_0x47f734=_0x42c67f[_0x53f76b(0x2f1)],_0x22efd6=_0x47f734[_0x53f76b(0x1b3)],_0xdb4653=_0x47f734[_0x53f76b(0x332)],_0x46f210=_0x42c67f[_0x53f76b(0x44d)],_0x3819ee=[],_0x4c7df2=_0x46f210[_0x53f76b(0x3b6)]=_0xdb4653[_0x53f76b(0x187)]({'_doReset':function(){const _0x571169=_0x53f76b;this[_0x571169(0x53a)]=new _0x22efd6[(_0x571169(0x1d6))]([0x67452301,0xefcdab89,0x98badcfe,0x10325476,0xc3d2e1f0]);},'_doProcessBlock':function(_0x1c2222,_0x2315c6){const _0x4787d4=_0x53f76b;for(var _0x460f63=this[_0x4787d4(0x53a)]['words'],_0x5de972=_0x460f63[0x0],_0x259246=_0x460f63[0x1],_0x57f3d3=_0x460f63[0x2],_0xae7b73=_0x460f63[0x3],_0x131855=_0x460f63[0x4],_0x4dfc1a=0x0;_0x4dfc1a<0x50;_0x4dfc1a++){if(_0x4dfc1a<0x10)_0x3819ee[_0x4dfc1a]=_0x1c2222[_0x2315c6+_0x4dfc1a]|0x0;else{var _0x19e6f7=_0x3819ee[_0x4dfc1a-0x3]^_0x3819ee[_0x4dfc1a-0x8]^_0x3819ee[_0x4dfc1a-0xe]^_0x3819ee[_0x4dfc1a-0x10];_0x3819ee[_0x4dfc1a]=_0x19e6f7<<0x1|_0x19e6f7>>>0x1f;}var _0x1e0bfd=(_0x5de972<<0x5|_0x5de972>>>0x1b)+_0x131855+_0x3819ee[_0x4dfc1a];_0x4dfc1a<0x14?_0x1e0bfd+=(_0x259246&_0x57f3d3|~_0x259246&_0xae7b73)+0x5a827999:_0x4dfc1a<0x28?_0x1e0bfd+=(_0x259246^_0x57f3d3^_0xae7b73)+0x6ed9eba1:_0x4dfc1a<0x3c?_0x1e0bfd+=(_0x259246&_0x57f3d3|_0x259246&_0xae7b73|_0x57f3d3&_0xae7b73)-0x70e44324:_0x1e0bfd+=(_0x259246^_0x57f3d3^_0xae7b73)-0x359d3e2a,_0x131855=_0xae7b73,_0xae7b73=_0x57f3d3,_0x57f3d3=_0x259246<<0x1e|_0x259246>>>0x2,_0x259246=_0x5de972,_0x5de972=_0x1e0bfd;}_0x460f63[0x0]=_0x460f63[0x0]+_0x5de972|0x0,_0x460f63[0x1]=_0x460f63[0x1]+_0x259246|0x0,_0x460f63[0x2]=_0x460f63[0x2]+_0x57f3d3|0x0,_0x460f63[0x3]=_0x460f63[0x3]+_0xae7b73|0x0,_0x460f63[0x4]=_0x460f63[0x4]+_0x131855|0x0;},'_doFinalize':function(){const _0x24ac59=_0x53f76b;var _0x12c5bc=this[_0x24ac59(0x2a9)],_0x404c19=_0x12c5bc[_0x24ac59(0x1fa)],_0x1009ed=this['_nDataBytes']*0x8,_0x351e16=_0x12c5bc[_0x24ac59(0x3ad)]*0x8;return _0x404c19[_0x351e16>>>0x5]|=0x80<<0x18-_0x351e16%0x20,_0x404c19[(_0x351e16+0x40>>>0x9<<0x4)+0xe]=Math[_0x24ac59(0x23d)](_0x1009ed/0x100000000),_0x404c19[(_0x351e16+0x40>>>0x9<<0x4)+0xf]=_0x1009ed,_0x12c5bc[_0x24ac59(0x3ad)]=_0x404c19[_0x24ac59(0x282)]*0x4,this[_0x24ac59(0x16f)](),this[_0x24ac59(0x53a)];},'clone':function(){const _0x1963fc=_0x53f76b;var _0x2fb258=_0xdb4653['clone']['call'](this);return _0x2fb258[_0x1963fc(0x53a)]=this[_0x1963fc(0x53a)]['clone'](),_0x2fb258;}});_0x42c67f[_0x53f76b(0x3b6)]=_0xdb4653[_0x53f76b(0x3ee)](_0x4c7df2),_0x42c67f[_0x53f76b(0x531)]=_0xdb4653['_createHmacHelper'](_0x4c7df2);}()),_0x583dab['SHA1'];}));}(Kt)),Kt[_0x6db3bd(0x236)];}var zt={'exports':{}},ei;function Ga(){const _0xe0163e=_0x5bb7a4;return ei||(ei=0x1,function(_0x489453,_0x22f44e){(function(_0x2b8707,_0x446318){_0x489453['exports']=_0x446318(ue());}(Z,function(_0x25ea10){(function(){const _0x14d214=_0x4081;var _0x17c8a5=_0x25ea10,_0x5f4e9a=_0x17c8a5['lib'],_0x25ab74=_0x5f4e9a[_0x14d214(0x429)],_0x4554a3=_0x17c8a5[_0x14d214(0x522)],_0x361017=_0x4554a3[_0x14d214(0x331)],_0x5cd2e7=_0x17c8a5[_0x14d214(0x44d)];_0x5cd2e7['HMAC']=_0x25ab74[_0x14d214(0x187)]({'init':function(_0x213746,_0x3788a3){const _0x431feb=_0x14d214;_0x213746=this['_hasher']=new _0x213746[(_0x431feb(0x1d6))](),typeof _0x3788a3==_0x431feb(0x40c)&&(_0x3788a3=_0x361017[_0x431feb(0x57c)](_0x3788a3));var _0x39effd=_0x213746[_0x431feb(0x2c0)],_0x4c9226=_0x39effd*0x4;_0x3788a3['sigBytes']>_0x4c9226&&(_0x3788a3=_0x213746[_0x431feb(0x2e2)](_0x3788a3)),_0x3788a3[_0x431feb(0x551)]();for(var _0x3fdf05=this[_0x431feb(0x245)]=_0x3788a3[_0x431feb(0x431)](),_0xbf870d=this[_0x431feb(0x16d)]=_0x3788a3[_0x431feb(0x431)](),_0x12b72c=_0x3fdf05[_0x431feb(0x1fa)],_0x6ab7=_0xbf870d['words'],_0x13577d=0x0;_0x13577d<_0x39effd;_0x13577d++)_0x12b72c[_0x13577d]^=0x5c5c5c5c,_0x6ab7[_0x13577d]^=0x36363636;_0x3fdf05[_0x431feb(0x3ad)]=_0xbf870d['sigBytes']=_0x4c9226,this[_0x431feb(0x2d7)]();},'reset':function(){const _0xe9d616=_0x14d214;var _0x3daf79=this['_hasher'];_0x3daf79[_0xe9d616(0x2d7)](),_0x3daf79[_0xe9d616(0x3c9)](this[_0xe9d616(0x16d)]);},'update':function(_0x146ff3){const _0x277624=_0x14d214;return this['_hasher'][_0x277624(0x3c9)](_0x146ff3),this;},'finalize':function(_0x2b6cd3){const _0x25d959=_0x14d214;var _0x3497a8=this['_hasher'],_0x102c0=_0x3497a8['finalize'](_0x2b6cd3);_0x3497a8[_0x25d959(0x2d7)]();var _0x2cdb62=_0x3497a8[_0x25d959(0x2e2)](this['_oKey'][_0x25d959(0x431)]()[_0x25d959(0x196)](_0x102c0));return _0x2cdb62;}});}());}));}(zt)),zt[_0xe0163e(0x236)];}var ti;function Fi(){return ti||(ti=0x1,function(_0x31ee37,_0x3f2963){(function(_0xa06b0,_0x51f637,_0x1abac8){_0x31ee37['exports']=_0x51f637(ue(),Va(),Ga());}(Z,function(_0x48e2c1){return(function(){const _0x508f32=_0x4081;var _0x5c8d6b=_0x48e2c1,_0x21c4e0=_0x5c8d6b[_0x508f32(0x2f1)],_0x4e2bf4=_0x21c4e0[_0x508f32(0x429)],_0x4760e9=_0x21c4e0[_0x508f32(0x1b3)],_0x849efc=_0x5c8d6b[_0x508f32(0x44d)],_0x14b2ec=_0x849efc[_0x508f32(0x36c)],_0x4d7d11=_0x849efc['EvpKDF']=_0x4e2bf4['extend']({'cfg':_0x4e2bf4['extend']({'keySize':0x80/0x20,'hasher':_0x14b2ec,'iterations':0x1}),'init':function(_0x2d44bf){const _0x334f8b=_0x508f32;this['cfg']=this[_0x334f8b(0x181)][_0x334f8b(0x187)](_0x2d44bf);},'compute':function(_0x3a87d4,_0x5bac6e){const _0x11f0c0=_0x508f32;for(var _0x446f20,_0x599349=this[_0x11f0c0(0x181)],_0x199c95=_0x599349[_0x11f0c0(0x45f)][_0x11f0c0(0x54f)](),_0x2c7ffd=_0x4760e9[_0x11f0c0(0x54f)](),_0x54fb62=_0x2c7ffd['words'],_0x186150=_0x599349['keySize'],_0x3ab258=_0x599349[_0x11f0c0(0x1d0)];_0x54fb62[_0x11f0c0(0x282)]<_0x186150;){_0x446f20&&_0x199c95['update'](_0x446f20),_0x446f20=_0x199c95[_0x11f0c0(0x3c9)](_0x3a87d4)[_0x11f0c0(0x2e2)](_0x5bac6e),_0x199c95[_0x11f0c0(0x2d7)]();for(var _0x1bb496=0x1;_0x1bb496<_0x3ab258;_0x1bb496++)_0x446f20=_0x199c95[_0x11f0c0(0x2e2)](_0x446f20),_0x199c95['reset']();_0x2c7ffd[_0x11f0c0(0x196)](_0x446f20);}return _0x2c7ffd[_0x11f0c0(0x3ad)]=_0x186150*0x4,_0x2c7ffd;}});_0x5c8d6b['EvpKDF']=function(_0x1744f2,_0x109db0,_0x28d11f){const _0x219853=_0x508f32;return _0x4d7d11[_0x219853(0x54f)](_0x28d11f)['compute'](_0x1744f2,_0x109db0);};}()),_0x48e2c1['EvpKDF'];}));}(Yt)),Yt['exports'];}var qt={'exports':{}},si;function Vi(){return si||(si=0x1,function(_0x225d35,_0x1fab56){(function(_0xddb8a3,_0xebdf5b,_0xf76766){const _0x3ca7f9=_0x4081;_0x225d35[_0x3ca7f9(0x236)]=_0xebdf5b(ue(),Fi());}(Z,function(_0x42cb16){const _0x1dd064=_0x4081;_0x42cb16['lib'][_0x1dd064(0x442)]||function(_0x5b7b97){const _0x2f2bb6=_0x1dd064;var _0x55ef83=_0x42cb16,_0x44cca4=_0x55ef83['lib'],_0x431a67=_0x44cca4[_0x2f2bb6(0x429)],_0x26fdbd=_0x44cca4['WordArray'],_0x9c453e=_0x44cca4[_0x2f2bb6(0x1b8)],_0x3b80a3=_0x55ef83[_0x2f2bb6(0x522)];_0x3b80a3['Utf8'];var _0x1d703f=_0x3b80a3[_0x2f2bb6(0x1fc)],_0x46df86=_0x55ef83['algo'],_0x5f44b6=_0x46df86[_0x2f2bb6(0x34b)],_0x15c5f1=_0x44cca4[_0x2f2bb6(0x442)]=_0x9c453e[_0x2f2bb6(0x187)]({'cfg':_0x431a67[_0x2f2bb6(0x187)](),'createEncryptor':function(_0x5e3615,_0x51a2e2){const _0x3e20fb=_0x2f2bb6;return this[_0x3e20fb(0x54f)](this[_0x3e20fb(0x529)],_0x5e3615,_0x51a2e2);},'createDecryptor':function(_0x52f101,_0x33eed1){return this['create'](this['_DEC_XFORM_MODE'],_0x52f101,_0x33eed1);},'init':function(_0x39bea6,_0x401027,_0x4d1f92){const _0x1c13d8=_0x2f2bb6;this[_0x1c13d8(0x181)]=this['cfg'][_0x1c13d8(0x187)](_0x4d1f92),this['_xformMode']=_0x39bea6,this[_0x1c13d8(0x24d)]=_0x401027,this['reset']();},'reset':function(){const _0x123161=_0x2f2bb6;_0x9c453e[_0x123161(0x2d7)]['call'](this),this[_0x123161(0x1c4)]();},'process':function(_0x2cd3a1){const _0x4c8f6b=_0x2f2bb6;return this[_0x4c8f6b(0x362)](_0x2cd3a1),this[_0x4c8f6b(0x16f)]();},'finalize':function(_0x454914){const _0x574d26=_0x2f2bb6;_0x454914&&this[_0x574d26(0x362)](_0x454914);var _0x20a64f=this[_0x574d26(0x555)]();return _0x20a64f;},'keySize':0x80/0x20,'ivSize':0x80/0x20,'_ENC_XFORM_MODE':0x1,'_DEC_XFORM_MODE':0x2,'_createHelper':(function(){function _0x20b599(_0x26cee0){const _0x43cd19=_0x4081;return typeof _0x26cee0==_0x43cd19(0x40c)?_0x2735c5:_0x4543a7;}return function(_0x53b697){return{'encrypt':function(_0x36c94b,_0x458863,_0x102411){return _0x20b599(_0x458863)['encrypt'](_0x53b697,_0x36c94b,_0x458863,_0x102411);},'decrypt':function(_0x9f01ee,_0x5abc96,_0x263375){const _0x360809=_0x4081;return _0x20b599(_0x5abc96)[_0x360809(0x27b)](_0x53b697,_0x9f01ee,_0x5abc96,_0x263375);}};};}())});_0x44cca4[_0x2f2bb6(0x4c0)]=_0x15c5f1[_0x2f2bb6(0x187)]({'_doFinalize':function(){const _0x4b4045=_0x2f2bb6;var _0xd47c86=this[_0x4b4045(0x16f)](!0x0);return _0xd47c86;},'blockSize':0x1});var _0x151d9f=_0x55ef83['mode']={},_0x1d4696=_0x44cca4[_0x2f2bb6(0x178)]=_0x431a67[_0x2f2bb6(0x187)]({'createEncryptor':function(_0x1c3de8,_0x560a9d){const _0x5662be=_0x2f2bb6;return this[_0x5662be(0x52e)][_0x5662be(0x54f)](_0x1c3de8,_0x560a9d);},'createDecryptor':function(_0x54c9f9,_0x395209){const _0x3b5c57=_0x2f2bb6;return this[_0x3b5c57(0x21e)][_0x3b5c57(0x54f)](_0x54c9f9,_0x395209);},'init':function(_0x32d6a1,_0x5f1d73){const _0x4ca9a1=_0x2f2bb6;this[_0x4ca9a1(0x378)]=_0x32d6a1,this[_0x4ca9a1(0x544)]=_0x5f1d73;}}),_0x42dfa5=_0x151d9f[_0x2f2bb6(0x4e0)]=(function(){const _0x18ae57=_0x2f2bb6;var _0x2f684f=_0x1d4696[_0x18ae57(0x187)]();_0x2f684f[_0x18ae57(0x52e)]=_0x2f684f[_0x18ae57(0x187)]({'processBlock':function(_0x62ad3,_0x2f7d18){const _0xb9f9e8=_0x18ae57;var _0x611256=this[_0xb9f9e8(0x378)],_0x4eb647=_0x611256[_0xb9f9e8(0x2c0)];_0x264633[_0xb9f9e8(0x1f6)](this,_0x62ad3,_0x2f7d18,_0x4eb647),_0x611256[_0xb9f9e8(0x188)](_0x62ad3,_0x2f7d18),this['_prevBlock']=_0x62ad3[_0xb9f9e8(0x3e2)](_0x2f7d18,_0x2f7d18+_0x4eb647);}}),_0x2f684f['Decryptor']=_0x2f684f[_0x18ae57(0x187)]({'processBlock':function(_0x3ad08c,_0xf6610a){const _0x28bb48=_0x18ae57;var _0x2f10b8=this[_0x28bb48(0x378)],_0x2a90c4=_0x2f10b8[_0x28bb48(0x2c0)],_0x1aa2bc=_0x3ad08c[_0x28bb48(0x3e2)](_0xf6610a,_0xf6610a+_0x2a90c4);_0x2f10b8[_0x28bb48(0x460)](_0x3ad08c,_0xf6610a),_0x264633[_0x28bb48(0x1f6)](this,_0x3ad08c,_0xf6610a,_0x2a90c4),this[_0x28bb48(0x169)]=_0x1aa2bc;}});function _0x264633(_0x189367,_0x501d7e,_0x2c8c0c){const _0x407ba8=_0x18ae57;var _0x568f4,_0x19dc4a=this['_iv'];_0x19dc4a?(_0x568f4=_0x19dc4a,this[_0x407ba8(0x544)]=_0x5b7b97):_0x568f4=this[_0x407ba8(0x169)];for(var _0x511654=0x0;_0x511654<_0x2c8c0c;_0x511654++)_0x189367[_0x501d7e+_0x511654]^=_0x568f4[_0x511654];}return _0x2f684f;}()),_0x496ac2=_0x55ef83['pad']={},_0x25c0f3=_0x496ac2[_0x2f2bb6(0x1ed)]={'pad':function(_0x53a1e6,_0x46f8a0){const _0x19e944=_0x2f2bb6;for(var _0x5919f9=_0x46f8a0*0x4,_0x2742d5=_0x5919f9-_0x53a1e6[_0x19e944(0x3ad)]%_0x5919f9,_0x1837e6=_0x2742d5<<0x18|_0x2742d5<<0x10|_0x2742d5<<0x8|_0x2742d5,_0x54c90a=[],_0x3fb44b=0x0;_0x3fb44b<_0x2742d5;_0x3fb44b+=0x4)_0x54c90a[_0x19e944(0x433)](_0x1837e6);var _0x948b2=_0x26fdbd['create'](_0x54c90a,_0x2742d5);_0x53a1e6[_0x19e944(0x196)](_0x948b2);},'unpad':function(_0xd0d498){const _0x402793=_0x2f2bb6;var _0x526a16=_0xd0d498[_0x402793(0x1fa)][_0xd0d498[_0x402793(0x3ad)]-0x1>>>0x2]&0xff;_0xd0d498[_0x402793(0x3ad)]-=_0x526a16;}};_0x44cca4[_0x2f2bb6(0x516)]=_0x15c5f1[_0x2f2bb6(0x187)]({'cfg':_0x15c5f1[_0x2f2bb6(0x181)][_0x2f2bb6(0x187)]({'mode':_0x42dfa5,'padding':_0x25c0f3}),'reset':function(){const _0x5f1b46=_0x2f2bb6;var _0x52601d;_0x15c5f1['reset'][_0x5f1b46(0x1f6)](this);var _0x1e653e=this[_0x5f1b46(0x181)],_0x194541=_0x1e653e['iv'],_0x5336c7=_0x1e653e[_0x5f1b46(0x490)];this['_xformMode']==this[_0x5f1b46(0x529)]?_0x52601d=_0x5336c7[_0x5f1b46(0x34a)]:(_0x52601d=_0x5336c7['createDecryptor'],this['_minBufferSize']=0x1),this['_mode']&&this[_0x5f1b46(0x580)][_0x5f1b46(0x439)]==_0x52601d?this['_mode'][_0x5f1b46(0x1d6)](this,_0x194541&&_0x194541['words']):(this[_0x5f1b46(0x580)]=_0x52601d['call'](_0x5336c7,this,_0x194541&&_0x194541[_0x5f1b46(0x1fa)]),this['_mode'][_0x5f1b46(0x439)]=_0x52601d);},'_doProcessBlock':function(_0x28e229,_0x4d6495){const _0x594ff2=_0x2f2bb6;this[_0x594ff2(0x580)][_0x594ff2(0x50f)](_0x28e229,_0x4d6495);},'_doFinalize':function(){const _0x1eb9ed=_0x2f2bb6;var _0x37da27,_0x4bfa8b=this[_0x1eb9ed(0x181)][_0x1eb9ed(0x4cc)];return this[_0x1eb9ed(0x241)]==this[_0x1eb9ed(0x529)]?(_0x4bfa8b[_0x1eb9ed(0x57e)](this[_0x1eb9ed(0x2a9)],this[_0x1eb9ed(0x2c0)]),_0x37da27=this['_process'](!0x0)):(_0x37da27=this[_0x1eb9ed(0x16f)](!0x0),_0x4bfa8b['unpad'](_0x37da27)),_0x37da27;},'blockSize':0x80/0x20});var _0xd75394=_0x44cca4['CipherParams']=_0x431a67[_0x2f2bb6(0x187)]({'init':function(_0x29caf6){const _0x2156e9=_0x2f2bb6;this[_0x2156e9(0x3a4)](_0x29caf6);},'toString':function(_0x40123d){return(_0x40123d||this['formatter'])['stringify'](this);}}),_0x2283bf=_0x55ef83[_0x2f2bb6(0x27c)]={},_0x1f9474=_0x2283bf[_0x2f2bb6(0x3aa)]={'stringify':function(_0x5df56e){const _0x601f9c=_0x2f2bb6;var _0x4022b7,_0x39736a=_0x5df56e[_0x601f9c(0x2bc)],_0x4383ec=_0x5df56e['salt'];return _0x4383ec?_0x4022b7=_0x26fdbd['create']([0x53616c74,0x65645f5f])['concat'](_0x4383ec)[_0x601f9c(0x196)](_0x39736a):_0x4022b7=_0x39736a,_0x4022b7[_0x601f9c(0x2e5)](_0x1d703f);},'parse':function(_0x596176){const _0x4e2c5a=_0x2f2bb6;var _0x50120e,_0x230d37=_0x1d703f[_0x4e2c5a(0x57c)](_0x596176),_0x1932ef=_0x230d37[_0x4e2c5a(0x1fa)];return _0x1932ef[0x0]==0x53616c74&&_0x1932ef[0x1]==0x65645f5f&&(_0x50120e=_0x26fdbd[_0x4e2c5a(0x54f)](_0x1932ef[_0x4e2c5a(0x3e2)](0x2,0x4)),_0x1932ef[_0x4e2c5a(0x307)](0x0,0x4),_0x230d37[_0x4e2c5a(0x3ad)]-=0x10),_0xd75394[_0x4e2c5a(0x54f)]({'ciphertext':_0x230d37,'salt':_0x50120e});}},_0x4543a7=_0x44cca4[_0x2f2bb6(0x3a1)]=_0x431a67[_0x2f2bb6(0x187)]({'cfg':_0x431a67[_0x2f2bb6(0x187)]({'format':_0x1f9474}),'encrypt':function(_0xb5696a,_0x179787,_0x18f2a5,_0x2b5118){const _0x503023=_0x2f2bb6;_0x2b5118=this['cfg'][_0x503023(0x187)](_0x2b5118);var _0x38600b=_0xb5696a[_0x503023(0x34a)](_0x18f2a5,_0x2b5118),_0x53810c=_0x38600b[_0x503023(0x2e2)](_0x179787),_0x37e88f=_0x38600b[_0x503023(0x181)];return _0xd75394[_0x503023(0x54f)]({'ciphertext':_0x53810c,'key':_0x18f2a5,'iv':_0x37e88f['iv'],'algorithm':_0xb5696a,'mode':_0x37e88f[_0x503023(0x490)],'padding':_0x37e88f[_0x503023(0x4cc)],'blockSize':_0xb5696a['blockSize'],'formatter':_0x2b5118[_0x503023(0x27c)]});},'decrypt':function(_0x90976d,_0x169170,_0x43e81f,_0x18cb40){const _0x16df18=_0x2f2bb6;_0x18cb40=this[_0x16df18(0x181)][_0x16df18(0x187)](_0x18cb40),_0x169170=this[_0x16df18(0x4f5)](_0x169170,_0x18cb40['format']);var _0x13f654=_0x90976d[_0x16df18(0x430)](_0x43e81f,_0x18cb40)[_0x16df18(0x2e2)](_0x169170[_0x16df18(0x2bc)]);return _0x13f654;},'_parse':function(_0x353665,_0x51dc39){const _0x3d35a1=_0x2f2bb6;return typeof _0x353665==_0x3d35a1(0x40c)?_0x51dc39[_0x3d35a1(0x57c)](_0x353665,this):_0x353665;}}),_0x1868f3=_0x55ef83[_0x2f2bb6(0x1a3)]={},_0x390967=_0x1868f3['OpenSSL']={'execute':function(_0xbb6769,_0x5d4f35,_0x1e9d21,_0x4d8ea9,_0x36d8a4){const _0x1761b2=_0x2f2bb6;if(_0x4d8ea9||(_0x4d8ea9=_0x26fdbd[_0x1761b2(0x453)](0x40/0x8)),_0x36d8a4)var _0x385a09=_0x5f44b6['create']({'keySize':_0x5d4f35+_0x1e9d21,'hasher':_0x36d8a4})[_0x1761b2(0x3fb)](_0xbb6769,_0x4d8ea9);else var _0x385a09=_0x5f44b6[_0x1761b2(0x54f)]({'keySize':_0x5d4f35+_0x1e9d21})[_0x1761b2(0x3fb)](_0xbb6769,_0x4d8ea9);var _0x37c85c=_0x26fdbd[_0x1761b2(0x54f)](_0x385a09[_0x1761b2(0x1fa)][_0x1761b2(0x3e2)](_0x5d4f35),_0x1e9d21*0x4);return _0x385a09['sigBytes']=_0x5d4f35*0x4,_0xd75394['create']({'key':_0x385a09,'iv':_0x37c85c,'salt':_0x4d8ea9});}},_0x2735c5=_0x44cca4[_0x2f2bb6(0x4a9)]=_0x4543a7[_0x2f2bb6(0x187)]({'cfg':_0x4543a7[_0x2f2bb6(0x181)][_0x2f2bb6(0x187)]({'kdf':_0x390967}),'encrypt':function(_0x3fdfb5,_0x2e9fb5,_0x314b84,_0x2e718d){const _0x784017=_0x2f2bb6;_0x2e718d=this[_0x784017(0x181)][_0x784017(0x187)](_0x2e718d);var _0x5844dc=_0x2e718d[_0x784017(0x1a3)][_0x784017(0x1f4)](_0x314b84,_0x3fdfb5[_0x784017(0x4dd)],_0x3fdfb5[_0x784017(0x3da)],_0x2e718d['salt'],_0x2e718d[_0x784017(0x45f)]);_0x2e718d['iv']=_0x5844dc['iv'];var _0x22b585=_0x4543a7[_0x784017(0x26f)][_0x784017(0x1f6)](this,_0x3fdfb5,_0x2e9fb5,_0x5844dc[_0x784017(0x275)],_0x2e718d);return _0x22b585[_0x784017(0x3a4)](_0x5844dc),_0x22b585;},'decrypt':function(_0x497b42,_0x38643d,_0x952065,_0x53ccb6){const _0x5ac3da=_0x2f2bb6;_0x53ccb6=this[_0x5ac3da(0x181)]['extend'](_0x53ccb6),_0x38643d=this[_0x5ac3da(0x4f5)](_0x38643d,_0x53ccb6[_0x5ac3da(0x27c)]);var _0x4bac45=_0x53ccb6[_0x5ac3da(0x1a3)][_0x5ac3da(0x1f4)](_0x952065,_0x497b42[_0x5ac3da(0x4dd)],_0x497b42[_0x5ac3da(0x3da)],_0x38643d[_0x5ac3da(0x293)],_0x53ccb6[_0x5ac3da(0x45f)]);_0x53ccb6['iv']=_0x4bac45['iv'];var _0x2a680b=_0x4543a7[_0x5ac3da(0x27b)][_0x5ac3da(0x1f6)](this,_0x497b42,_0x38643d,_0x4bac45[_0x5ac3da(0x275)],_0x53ccb6);return _0x2a680b;}});}();}));}(qt)),qt['exports'];}(function(_0x3c6fe6,_0xe65eab){(function(_0x107372,_0x278fa7,_0x2a742d){const _0xda62d9=_0x4081;_0x3c6fe6[_0xda62d9(0x236)]=_0x278fa7(ue(),Wi(),Fa(),Fi(),Vi());}(Z,function(_0x5d40c2){const _0x59a048=_0x4081;return(function(){const _0x49c0cb=_0x4081;var _0x348ae9=_0x5d40c2,_0x1740f7=_0x348ae9[_0x49c0cb(0x2f1)],_0x1f88cb=_0x1740f7[_0x49c0cb(0x516)],_0x5d024e=_0x348ae9['algo'],_0x1cdb38=[],_0x34183d=[],_0x1c7153=[],_0x56a2fa=[],_0xf5150=[],_0x4f87a0=[],_0x43b877=[],_0x18e1f6=[],_0x5c6ace=[],_0x35991=[];(function(){for(var _0x1d58b7=[],_0x49e2a8=0x0;_0x49e2a8<0x100;_0x49e2a8++)_0x49e2a8<0x80?_0x1d58b7[_0x49e2a8]=_0x49e2a8<<0x1:_0x1d58b7[_0x49e2a8]=_0x49e2a8<<0x1^0x11b;for(var _0x4b15c5=0x0,_0x533ece=0x0,_0x49e2a8=0x0;_0x49e2a8<0x100;_0x49e2a8++){var _0x5184e0=_0x533ece^_0x533ece<<0x1^_0x533ece<<0x2^_0x533ece<<0x3^_0x533ece<<0x4;_0x5184e0=_0x5184e0>>>0x8^_0x5184e0&0xff^0x63,_0x1cdb38[_0x4b15c5]=_0x5184e0,_0x34183d[_0x5184e0]=_0x4b15c5;var _0x12226b=_0x1d58b7[_0x4b15c5],_0x14a85d=_0x1d58b7[_0x12226b],_0x976c54=_0x1d58b7[_0x14a85d],_0x23afb7=_0x1d58b7[_0x5184e0]*0x101^_0x5184e0*0x1010100;_0x1c7153[_0x4b15c5]=_0x23afb7<<0x18|_0x23afb7>>>0x8,_0x56a2fa[_0x4b15c5]=_0x23afb7<<0x10|_0x23afb7>>>0x10,_0xf5150[_0x4b15c5]=_0x23afb7<<0x8|_0x23afb7>>>0x18,_0x4f87a0[_0x4b15c5]=_0x23afb7;var _0x23afb7=_0x976c54*0x1010101^_0x14a85d*0x10001^_0x12226b*0x101^_0x4b15c5*0x1010100;_0x43b877[_0x5184e0]=_0x23afb7<<0x18|_0x23afb7>>>0x8,_0x18e1f6[_0x5184e0]=_0x23afb7<<0x10|_0x23afb7>>>0x10,_0x5c6ace[_0x5184e0]=_0x23afb7<<0x8|_0x23afb7>>>0x18,_0x35991[_0x5184e0]=_0x23afb7,_0x4b15c5?(_0x4b15c5=_0x12226b^_0x1d58b7[_0x1d58b7[_0x1d58b7[_0x976c54^_0x12226b]]],_0x533ece^=_0x1d58b7[_0x1d58b7[_0x533ece]]):_0x4b15c5=_0x533ece=0x1;}}());var _0x4424c4=[0x0,0x1,0x2,0x4,0x8,0x10,0x20,0x40,0x80,0x1b,0x36],_0x5aad3c=_0x5d024e[_0x49c0cb(0x2c4)]=_0x1f88cb['extend']({'_doReset':function(){const _0x2d806f=_0x49c0cb;var _0x5e7691;if(!(this[_0x2d806f(0x2b7)]&&this['_keyPriorReset']===this[_0x2d806f(0x24d)])){for(var _0x418715=this[_0x2d806f(0x380)]=this[_0x2d806f(0x24d)],_0x450d95=_0x418715[_0x2d806f(0x1fa)],_0xd8ca1e=_0x418715['sigBytes']/0x4,_0x183b03=this[_0x2d806f(0x2b7)]=_0xd8ca1e+0x6,_0x2a9e2d=(_0x183b03+0x1)*0x4,_0x292d44=this[_0x2d806f(0x3d1)]=[],_0x1ab74d=0x0;_0x1ab74d<_0x2a9e2d;_0x1ab74d++)_0x1ab74d<_0xd8ca1e?_0x292d44[_0x1ab74d]=_0x450d95[_0x1ab74d]:(_0x5e7691=_0x292d44[_0x1ab74d-0x1],_0x1ab74d%_0xd8ca1e?_0xd8ca1e>0x6&&_0x1ab74d%_0xd8ca1e==0x4&&(_0x5e7691=_0x1cdb38[_0x5e7691>>>0x18]<<0x18|_0x1cdb38[_0x5e7691>>>0x10&0xff]<<0x10|_0x1cdb38[_0x5e7691>>>0x8&0xff]<<0x8|_0x1cdb38[_0x5e7691&0xff]):(_0x5e7691=_0x5e7691<<0x8|_0x5e7691>>>0x18,_0x5e7691=_0x1cdb38[_0x5e7691>>>0x18]<<0x18|_0x1cdb38[_0x5e7691>>>0x10&0xff]<<0x10|_0x1cdb38[_0x5e7691>>>0x8&0xff]<<0x8|_0x1cdb38[_0x5e7691&0xff],_0x5e7691^=_0x4424c4[_0x1ab74d/_0xd8ca1e|0x0]<<0x18),_0x292d44[_0x1ab74d]=_0x292d44[_0x1ab74d-_0xd8ca1e]^_0x5e7691);for(var _0x1b0842=this['_invKeySchedule']=[],_0xee9b2c=0x0;_0xee9b2c<_0x2a9e2d;_0xee9b2c++){var _0x1ab74d=_0x2a9e2d-_0xee9b2c;if(_0xee9b2c%0x4)var _0x5e7691=_0x292d44[_0x1ab74d];else var _0x5e7691=_0x292d44[_0x1ab74d-0x4];_0xee9b2c<0x4||_0x1ab74d<=0x4?_0x1b0842[_0xee9b2c]=_0x5e7691:_0x1b0842[_0xee9b2c]=_0x43b877[_0x1cdb38[_0x5e7691>>>0x18]]^_0x18e1f6[_0x1cdb38[_0x5e7691>>>0x10&0xff]]^_0x5c6ace[_0x1cdb38[_0x5e7691>>>0x8&0xff]]^_0x35991[_0x1cdb38[_0x5e7691&0xff]];}}},'encryptBlock':function(_0xd06df1,_0x410d84){const _0x71e8f7=_0x49c0cb;this['_doCryptBlock'](_0xd06df1,_0x410d84,this[_0x71e8f7(0x3d1)],_0x1c7153,_0x56a2fa,_0xf5150,_0x4f87a0,_0x1cdb38);},'decryptBlock':function(_0x22eb82,_0xcacd52){const _0x4ce6d9=_0x49c0cb;var _0x2c4ecd=_0x22eb82[_0xcacd52+0x1];_0x22eb82[_0xcacd52+0x1]=_0x22eb82[_0xcacd52+0x3],_0x22eb82[_0xcacd52+0x3]=_0x2c4ecd,this[_0x4ce6d9(0x34f)](_0x22eb82,_0xcacd52,this[_0x4ce6d9(0x369)],_0x43b877,_0x18e1f6,_0x5c6ace,_0x35991,_0x34183d);var _0x2c4ecd=_0x22eb82[_0xcacd52+0x1];_0x22eb82[_0xcacd52+0x1]=_0x22eb82[_0xcacd52+0x3],_0x22eb82[_0xcacd52+0x3]=_0x2c4ecd;},'_doCryptBlock':function(_0x296970,_0x44a3c0,_0xf85c06,_0xa19b6,_0x3dec56,_0x29678d,_0x396775,_0x125520){const _0x2d8305=_0x49c0cb;for(var _0x25f32c=this[_0x2d8305(0x2b7)],_0x4d7b01=_0x296970[_0x44a3c0]^_0xf85c06[0x0],_0x2ab42e=_0x296970[_0x44a3c0+0x1]^_0xf85c06[0x1],_0x118026=_0x296970[_0x44a3c0+0x2]^_0xf85c06[0x2],_0x548b6a=_0x296970[_0x44a3c0+0x3]^_0xf85c06[0x3],_0x17514f=0x4,_0x2b3bf6=0x1;_0x2b3bf6<_0x25f32c;_0x2b3bf6++){var _0x220d9f=_0xa19b6[_0x4d7b01>>>0x18]^_0x3dec56[_0x2ab42e>>>0x10&0xff]^_0x29678d[_0x118026>>>0x8&0xff]^_0x396775[_0x548b6a&0xff]^_0xf85c06[_0x17514f++],_0x14794f=_0xa19b6[_0x2ab42e>>>0x18]^_0x3dec56[_0x118026>>>0x10&0xff]^_0x29678d[_0x548b6a>>>0x8&0xff]^_0x396775[_0x4d7b01&0xff]^_0xf85c06[_0x17514f++],_0x5e0db8=_0xa19b6[_0x118026>>>0x18]^_0x3dec56[_0x548b6a>>>0x10&0xff]^_0x29678d[_0x4d7b01>>>0x8&0xff]^_0x396775[_0x2ab42e&0xff]^_0xf85c06[_0x17514f++],_0x3fe4f5=_0xa19b6[_0x548b6a>>>0x18]^_0x3dec56[_0x4d7b01>>>0x10&0xff]^_0x29678d[_0x2ab42e>>>0x8&0xff]^_0x396775[_0x118026&0xff]^_0xf85c06[_0x17514f++];_0x4d7b01=_0x220d9f,_0x2ab42e=_0x14794f,_0x118026=_0x5e0db8,_0x548b6a=_0x3fe4f5;}var _0x220d9f=(_0x125520[_0x4d7b01>>>0x18]<<0x18|_0x125520[_0x2ab42e>>>0x10&0xff]<<0x10|_0x125520[_0x118026>>>0x8&0xff]<<0x8|_0x125520[_0x548b6a&0xff])^_0xf85c06[_0x17514f++],_0x14794f=(_0x125520[_0x2ab42e>>>0x18]<<0x18|_0x125520[_0x118026>>>0x10&0xff]<<0x10|_0x125520[_0x548b6a>>>0x8&0xff]<<0x8|_0x125520[_0x4d7b01&0xff])^_0xf85c06[_0x17514f++],_0x5e0db8=(_0x125520[_0x118026>>>0x18]<<0x18|_0x125520[_0x548b6a>>>0x10&0xff]<<0x10|_0x125520[_0x4d7b01>>>0x8&0xff]<<0x8|_0x125520[_0x2ab42e&0xff])^_0xf85c06[_0x17514f++],_0x3fe4f5=(_0x125520[_0x548b6a>>>0x18]<<0x18|_0x125520[_0x4d7b01>>>0x10&0xff]<<0x10|_0x125520[_0x2ab42e>>>0x8&0xff]<<0x8|_0x125520[_0x118026&0xff])^_0xf85c06[_0x17514f++];_0x296970[_0x44a3c0]=_0x220d9f,_0x296970[_0x44a3c0+0x1]=_0x14794f,_0x296970[_0x44a3c0+0x2]=_0x5e0db8,_0x296970[_0x44a3c0+0x3]=_0x3fe4f5;},'keySize':0x100/0x20});_0x348ae9[_0x49c0cb(0x2c4)]=_0x1f88cb[_0x49c0cb(0x3ee)](_0x5aad3c);}()),_0x5d40c2[_0x59a048(0x2c4)];}));}(ki));var Ya=ki[_0x5bb7a4(0x236)];const Ka=at(Ya);var za=Wi();const ii=at(za);var Gi={'exports':{}};(function(_0x44b7b9,_0x37df8a){(function(_0x55a35a,_0x1173dd){const _0x239f9a=_0x4081;_0x44b7b9[_0x239f9a(0x236)]=_0x1173dd(ue());}(Z,function(_0x57819e){return _0x57819e['enc']['Utf8'];}));}(Gi));var qa=Gi[_0x5bb7a4(0x236)];const Xa=at(qa);var Yi={'exports':{}};(function(_0x215e92,_0x1c5792){(function(_0x2d2c8d,_0x12fd4e){const _0x204f59=_0x4081;_0x215e92[_0x204f59(0x236)]=_0x12fd4e(ue());}(Z,function(_0x35f3b9){const _0x4785f0=_0x4081;return(function(){const _0x374518=_0x4081;if(typeof ArrayBuffer==_0x374518(0x4b8)){var _0x10b2f9=_0x35f3b9,_0x5bff3a=_0x10b2f9['lib'],_0x1d925c=_0x5bff3a[_0x374518(0x1b3)],_0x25cc5d=_0x1d925c[_0x374518(0x1d6)],_0x7d0f0a=_0x1d925c[_0x374518(0x1d6)]=function(_0x47e372){const _0x16af44=_0x374518;if(_0x47e372 instanceof ArrayBuffer&&(_0x47e372=new Uint8Array(_0x47e372)),(_0x47e372 instanceof Int8Array||typeof Uint8ClampedArray<'u'&&_0x47e372 instanceof Uint8ClampedArray||_0x47e372 instanceof Int16Array||_0x47e372 instanceof Uint16Array||_0x47e372 instanceof Int32Array||_0x47e372 instanceof Uint32Array||_0x47e372 instanceof Float32Array||_0x47e372 instanceof Float64Array)&&(_0x47e372=new Uint8Array(_0x47e372[_0x16af44(0x57b)],_0x47e372[_0x16af44(0x2bd)],_0x47e372[_0x16af44(0x4ff)])),_0x47e372 instanceof Uint8Array){for(var _0xa0fcf8=_0x47e372['byteLength'],_0x2c2afd=[],_0x31d4e6=0x0;_0x31d4e6<_0xa0fcf8;_0x31d4e6++)_0x2c2afd[_0x31d4e6>>>0x2]|=_0x47e372[_0x31d4e6]<<0x18-_0x31d4e6%0x4*0x8;_0x25cc5d[_0x16af44(0x1f6)](this,_0x2c2afd,_0xa0fcf8);}else _0x25cc5d[_0x16af44(0x568)](this,arguments);};_0x7d0f0a['prototype']=_0x1d925c;}}()),_0x35f3b9['lib'][_0x4785f0(0x1b3)];}));}(Yi));var Ja=Yi['exports'];const Za=at(Ja);var Ki={'exports':{}};(function(_0x218af6,_0x9d0c7d){(function(_0x5eedf1,_0x1cf7fd,_0x10ae64){const _0x485ec0=_0x4081;_0x218af6[_0x485ec0(0x236)]=_0x1cf7fd(ue(),Vi());}(Z,function(_0x574897){const _0x3c4e59=_0x4081;return _0x574897[_0x3c4e59(0x57e)][_0x3c4e59(0x540)]={'pad':function(){},'unpad':function(){}},_0x574897[_0x3c4e59(0x57e)][_0x3c4e59(0x540)];}));}(Ki));var Qa=Ki[_0x5bb7a4(0x236)];const ec=at(Qa);function tc(_0x56c7f3,_0x1766a6){const _0x452570=_0x5bb7a4,_0x441abd=_0x1766a6-_0x56c7f3[_0x452570(0x282)]%_0x1766a6,_0x55b041=String[_0x452570(0x224)](_0x441abd)[_0x452570(0x39f)](_0x441abd);return _0x56c7f3+_0x55b041;}function sc(_0x4e54d2,_0x4825e2){const _0x484f86=_0x5bb7a4,_0x2ab157=Za['random'](0x10),_0x92660a=tc(_0x4e54d2,0x10),_0x243094=Ka['encrypt'](Xa[_0x484f86(0x57c)](_0x92660a),ii['parse'](_0x4825e2),{'iv':_0x2ab157,'padding':ec});return _0x2ab157[_0x484f86(0x196)](_0x243094[_0x484f86(0x2bc)])['toString'](ii);}function ic(){const _0x36e961=_0x5bb7a4,_0x34b503=(typeof WorkerGlobalScope<'u'&&self instanceof WorkerGlobalScope?self:window)['__Key__'];if(_0x34b503){const _0x5db3ee={'time':Math[_0x36e961(0x23d)](Date[_0x36e961(0x3d2)]()/0x3e8),'domain':location[_0x36e961(0x186)]};return sc(JSON[_0x36e961(0x303)](_0x5db3ee),_0x34b503);}}var nc=Object[_0x5bb7a4(0x42b)],rc=Object[_0x5bb7a4(0x4e4)],oc=(_0x3a5ca1,_0x19b160,_0x2e0749,_0x5089c9)=>{const _0x3bfc22=_0x5bb7a4;for(var _0x3b88ee=_0x5089c9>0x1?void 0x0:_0x5089c9?rc(_0x19b160,_0x2e0749):_0x19b160,_0x288fbf=_0x3a5ca1[_0x3bfc22(0x282)]-0x1,_0x102361;_0x288fbf>=0x0;_0x288fbf--)(_0x102361=_0x3a5ca1[_0x288fbf])&&(_0x3b88ee=(_0x5089c9?_0x102361(_0x19b160,_0x2e0749,_0x3b88ee):_0x102361(_0x3b88ee))||_0x3b88ee);return _0x5089c9&&_0x3b88ee&&nc(_0x19b160,_0x2e0749,_0x3b88ee),_0x3b88ee;},ac=(_0x2f5fd6,_0x1c3eda)=>(_0x460f5c,_0x48ab30)=>_0x1c3eda(_0x460f5c,_0x48ab30,_0x2f5fd6);let bt=class{constructor(_0x3fad23){const _0x20a47a=_0x5bb7a4;this[_0x20a47a(0x1be)]=_0x3fad23,this[_0x20a47a(0x42c)]();}['_initRequestHeader'](){const _0x3e7be3=_0x5bb7a4;this['_httpService'][_0x3e7be3(0x4a6)]({'interceptor':(_0x393f84,_0x9532ce)=>{const _0x543f9b=_0x3e7be3,_0x199a1a=_0x393f84['headers'],_0x558402=ic();return _0x558402&&_0x199a1a[_0x543f9b(0x441)](_0x543f9b(0x189),_0x558402),_0x9532ce(_0x393f84);}});}};bt=oc([ac(0x0,_0x22a3e1(_0x41156a))],bt);var cc=Object[_0x5bb7a4(0x42b)],hc=Object[_0x5bb7a4(0x4e4)],lc=(_0x8a3ca4,_0x15b08e,_0x297682,_0x1d28de)=>{const _0x214d8a=_0x5bb7a4;for(var _0x323a33=_0x1d28de>0x1?void 0x0:_0x1d28de?hc(_0x15b08e,_0x297682):_0x15b08e,_0x3a129a=_0x8a3ca4[_0x214d8a(0x282)]-0x1,_0x421024;_0x3a129a>=0x0;_0x3a129a--)(_0x421024=_0x8a3ca4[_0x3a129a])&&(_0x323a33=(_0x1d28de?_0x421024(_0x15b08e,_0x297682,_0x323a33):_0x421024(_0x323a33))||_0x323a33);return _0x1d28de&&_0x323a33&&cc(_0x15b08e,_0x297682,_0x323a33),_0x323a33;},Xt=(_0x59524a,_0x378327)=>(_0x3ad4d4,_0x289978)=>_0x378327(_0x3ad4d4,_0x289978,_0x59524a);const _c=[_0x5bb7a4(0x510),_0x5bb7a4(0x300),_0x5bb7a4(0x3f7),_0x5bb7a4(0x316),_0x5bb7a4(0x454)],uc=0x5*0x400*0x400,dc=_0x5bb7a4(0x435),fc=_0x5bb7a4(0x2c3),vc=_0x5bb7a4(0x36e),mc=_0x5bb7a4(0x16b);let hs=class{constructor(_0x475602,_0x16abbe,_0x587f99){const _0x22d446=_0x5bb7a4;g(this,_0x22d446(0x3ac),0x0),g(this,_0x22d446(0x2bb),new _0x1b179a()),g(this,_0x22d446(0x1fb),this[_0x22d446(0x2bb)]),g(this,_0x22d446(0x1e0),new Map()),(this[_0x22d446(0x1be)]=_0x475602,this[_0x22d446(0x23e)]=_0x16abbe,this['_univerInstanceService']=_0x587f99);}[_0x5bb7a4(0x572)](_0x37dea6){const _0x2ef9df=_0x5bb7a4;this['_waitCount']=_0x37dea6,this[_0x2ef9df(0x2bb)][_0x2ef9df(0x3ff)](_0x37dea6);}[_0x5bb7a4(0x4c1)](_0x5227b7,_0x27d765){const _0xfd9165=_0x5bb7a4;if(_0x27d765===_0x40ad48[_0xfd9165(0x39d)]){const _0x5d74d5=new Image();return _0x5d74d5[_0xfd9165(0x3b5)]=_0x5227b7,_0x5d74d5;}return this['_imageSourceCache'][_0xfd9165(0x4f7)](_0x5227b7);}[_0x5bb7a4(0x284)](_0x19997c,_0x976905,_0x5b20c8){const _0x50eb18=_0x5bb7a4;_0x976905===_0x40ad48[_0x50eb18(0x39d)]||_0x5b20c8==null||this[_0x50eb18(0x1e0)][_0x50eb18(0x441)](_0x19997c,_0x5b20c8);}async['getImage'](_0x53cf9b){const _0x1c858c=_0x5bb7a4;try{const _0x3795af=this[_0x1c858c(0x578)](this[_0x1c858c(0x4a2)](),''+_0x53cf9b),_0x206edd=(await this['_httpService'][_0x1c858c(0x4f7)](_0x3795af))['body'];if(_0x206edd[_0x1c858c(0x17b)]&&_0x206edd[_0x1c858c(0x17b)][_0x1c858c(0x4bd)]===Ri['OK']){const _0x18b0aa=new URL(_0x206edd[_0x1c858c(0x217)],this[_0x1c858c(0x304)]())[_0x1c858c(0x2e5)]();return Promise['resolve'](_0x18b0aa);}return Promise[_0x1c858c(0x288)](_0x206edd[_0x1c858c(0x17b)]);}catch(_0x2c87e8){return Promise['reject'](_0x2c87e8);}}async[_0x5bb7a4(0x2aa)](_0xf51e61){const _0x6e61c8=_0x5bb7a4;let _0x450d75='';if(!_c['includes'](_0xf51e61[_0x6e61c8(0x27e)]))return this['_decreaseWaiting'](),Promise['reject'](new Error(_0x1d459e['ERROR_IMAGE_TYPE']));if(_0xf51e61[_0x6e61c8(0x35a)]>uc)return this[_0x6e61c8(0x487)](),Promise['reject'](new Error(_0x1d459e[_0x6e61c8(0x2b4)]));try{const _0x14c5b6=new FormData();_0x14c5b6[_0x6e61c8(0x391)]('file',_0xf51e61);const _0x3a790d=this[_0x6e61c8(0x21d)][_0x6e61c8(0x1dd)](),_0x284b7e=_0x3a790d==null?void 0x0:_0x3a790d[_0x6e61c8(0x322)]();if(!_0x284b7e)throw new Error(_0x6e61c8(0x252));const _0x14b4e9=this[_0x6e61c8(0x18d)]()+_0x6e61c8(0x253)+_0xf51e61[_0x6e61c8(0x35a)]['toString']()+_0x6e61c8(0x179)+yi[_0x6e61c8(0x48f)]+_0x6e61c8(0x209)+encodeURIComponent(_0x284b7e),_0x16339e=await(await fetch(_0x14b4e9,{'method':_0x6e61c8(0x2bf),'body':_0x14c5b6}))['json']();if(typeof _0x16339e[_0x6e61c8(0x352)]!=_0x6e61c8(0x40c))return this[_0x6e61c8(0x487)](),Promise['reject'](new Error(_0x1d459e[_0x6e61c8(0x3c6)]));_0x450d75=_0x16339e[_0x6e61c8(0x352)];}catch{return this[_0x6e61c8(0x487)](),Promise[_0x6e61c8(0x288)](new Error(_0x1d459e['ERROR_IMAGE']));}return new Promise((_0x25de52,_0x425521)=>{const _0x391fc8=_0x6e61c8,_0x365283=new FileReader();_0x365283[_0x391fc8(0x3c8)](_0xf51e61),_0x365283[_0x391fc8(0x264)]=_0x5ee3fb=>{const _0x128924=_0x391fc8;var _0x40ed4e;const _0x5079b9=(_0x40ed4e=_0x5ee3fb['target'])==null?void 0x0:_0x40ed4e[_0x128924(0x1b0)];if(_0x5079b9==null){this[_0x128924(0x487)](),_0x425521(new Error(_0x1d459e['ERROR_IMAGE']));return;}const _0x443ebe=_0x41d014[_0x128924(0x4d1)](0x6);_0x25de52({'imageId':_0x443ebe,'imageSourceType':_0x40ad48['UUID'],'source':_0x450d75,'base64Cache':_0x5079b9,'status':_0x1d459e[_0x128924(0x450)]}),this[_0x128924(0x487)]();};});}['_getUploadFileURL'](){const _0x26b021=_0x5bb7a4;var _0x2088c3,_0x3cdc04;const _0x147e5e=this['_configService'][_0x26b021(0x447)](dc),_0x1c0821=this[_0x26b021(0x23e)][_0x26b021(0x447)](ie);return(_0x3cdc04=(_0x2088c3=_0x1c0821==null?void 0x0:_0x1c0821['uploadFileServerUrl'])!=null?_0x2088c3:_0x147e5e)!=null?_0x3cdc04:fc;}['_getSignURL'](){const _0x329947=_0x5bb7a4;var _0x441826,_0x1d291f;const _0x18f882=this['_configService'][_0x329947(0x447)](vc),_0x914ec2=this[_0x329947(0x23e)][_0x329947(0x447)](ie);return(_0x1d291f=(_0x441826=_0x914ec2==null?void 0x0:_0x914ec2['signUrlServerUrl'])!=null?_0x441826:_0x18f882)!=null?_0x1d291f:mc;}['_getDownloadEndpointURL'](){const _0x3496b3=_0x5bb7a4;var _0x4672cd;const _0x145273=this[_0x3496b3(0x23e)][_0x3496b3(0x447)](ie);return(_0x4672cd=_0x145273==null?void 0x0:_0x145273[_0x3496b3(0x509)])!=null?_0x4672cd:location[_0x3496b3(0x525)];}[_0x5bb7a4(0x578)](_0x42129e,_0x337105){const _0x194a76=_0x5bb7a4;return _0x42129e['replace'](_0x194a76(0x44f),_0x337105);}[_0x5bb7a4(0x487)](){const _0x4b6188=_0x5bb7a4;this[_0x4b6188(0x3ac)]-=0x1,this[_0x4b6188(0x2bb)][_0x4b6188(0x3ff)](this[_0x4b6188(0x3ac)]);}};hs=lc([Xt(0x0,_0x22a3e1(_0x41156a)),Xt(0x1,_0x2bb536),Xt(0x2,_0x22a3e1(_0x2e0534))],hs);var pc=Object['defineProperty'],gc=Object['getOwnPropertyDescriptor'],Sc=(_0x386d11,_0xd35466,_0x241309,_0x1b15b3)=>{for(var _0x30c828=_0x1b15b3>0x1?void 0x0:_0x1b15b3?gc(_0xd35466,_0x241309):_0xd35466,_0x6eb0c9=_0x386d11['length']-0x1,_0x9043a6;_0x6eb0c9>=0x0;_0x6eb0c9--)(_0x9043a6=_0x386d11[_0x6eb0c9])&&(_0x30c828=(_0x1b15b3?_0x9043a6(_0xd35466,_0x241309,_0x30c828):_0x9043a6(_0x30c828))||_0x30c828);return _0x1b15b3&&_0x30c828&&pc(_0xd35466,_0x241309,_0x30c828),_0x30c828;},Qe=(_0x5f00ae,_0xf1392f)=>(_0x7947b3,_0x379677)=>_0xf1392f(_0x7947b3,_0x379677,_0x5f00ae);let Tt=class extends _0x177a9e{constructor(_0x5f16f0,_0x3a1f03,_0x76bdf1,_0x472bda,_0x5e8d6c){const _0xdda2d8=_0x5bb7a4;super(),this[_0xdda2d8(0x338)]=_0x5f16f0,this['_univerInstanceService']=_0x3a1f03,this['_permissionService']=_0x76bdf1,this[_0xdda2d8(0x29b)]=_0x472bda,this[_0xdda2d8(0x4ab)]=_0x5e8d6c,this[_0xdda2d8(0x2d0)](),this[_0xdda2d8(0x513)]();}[_0x5bb7a4(0x513)](){const _0x1e1e6a=_0x5bb7a4,_0x24f0fc=async _0x1e8fda=>{const _0x4c2a8a=_0x4081;(await this['_collaborationSessionService'][_0x4c2a8a(0x2c7)](_0x1e8fda))[_0x4c2a8a(0x3e4)][_0x4c2a8a(0x3f1)](_0x5a0a20(_0x54f8e0=>_0x54f8e0[_0x4c2a8a(0x479)]===_0x45d469[_0x4c2a8a(0x413)]),_0x216286(this[_0x4c2a8a(0x492)]))['subscribe'](_0x208c67=>{const _0x3d9651=_0x4c2a8a,_0x4ce0fb=_0x208c67,{reason:_0x27c71f}=_0x4ce0fb['data'];this['_injector'][_0x3d9651(0x4f7)](_0x38087f)[_0x3d9651(0x18e)]({'type':_0x3417d7[_0x3d9651(0x3cb)],'content':this[_0x3d9651(0x4ab)]['t'](_0x3d9651(0x3f8))+'('+_0x27c71f+')'}),this[_0x3d9651(0x167)][_0x3d9651(0x3fc)](new _0x272dbd(_0x1e8fda)['id'],!0x1),this[_0x3d9651(0x29b)][_0x3d9651(0x165)](_0x1e8fda);});};_0x4e4735(this[_0x1e1e6a(0x21d)][_0x1e1e6a(0x4aa)](_0x10a997['UNIVER_SHEET']),this[_0x1e1e6a(0x21d)][_0x1e1e6a(0x4aa)](_0x10a997[_0x1e1e6a(0x172)]))[_0x1e1e6a(0x3f1)](_0x17141f(_0x1feb9f=>_0x1feb9f['getUnitId']()),_0x5a0a20(_0x40404f=>!_0x503b7a(_0x40404f)),_0x216286(this[_0x1e1e6a(0x492)]))[_0x1e1e6a(0x519)](_0x4e4962=>{_0x24f0fc(_0x4e4962);});}[_0x5bb7a4(0x2d0)](){const _0x294c57=_0x5bb7a4,_0x704bc8=async _0xa01953=>{const _0x58e53e=_0x4081;(await this[_0x58e53e(0x29b)][_0x58e53e(0x2c7)](_0xa01953))['event$'][_0x58e53e(0x3f1)](_0x5a0a20(_0x1626c7=>_0x1626c7[_0x58e53e(0x479)]===_0x45d469['UPDATE_PERMISSION_OBJ']),_0x216286(this[_0x58e53e(0x492)]))['subscribe'](_0x1eafa5=>{const _0x546d1b=_0x58e53e,_0x8f561b=_0x1eafa5,{objectId:_0x2d5de4}=_0x8f561b[_0x546d1b(0x2d5)],_0x2053c2=this[_0x546d1b(0x338)][_0x546d1b(0x4f7)](_0x496cb9);_0x2d5de4===_0xa01953?_0x2053c2[_0x546d1b(0x2df)](_0xa01953):_0x2053c2[_0x546d1b(0x324)](_0xa01953,_0x2d5de4);});};_0x4e4735(this[_0x294c57(0x21d)][_0x294c57(0x4aa)](_0x10a997['UNIVER_SHEET']),this[_0x294c57(0x21d)][_0x294c57(0x4aa)](_0x10a997[_0x294c57(0x172)]))[_0x294c57(0x3f1)](_0x17141f(_0x3fe619=>_0x3fe619[_0x294c57(0x322)]()),_0x5a0a20(_0x599710=>!_0x503b7a(_0x599710)),_0x216286(this[_0x294c57(0x492)]))['subscribe'](_0x548f91=>{_0x704bc8(_0x548f91);});}};Tt=Sc([Qe(0x0,_0x22a3e1(_0x4c5160)),Qe(0x1,_0x2e0534),Qe(0x2,_0x59e41b),Qe(0x3,_0x22a3e1(Ae)),Qe(0x4,_0x22a3e1(_0x1fdc1b))],Tt);var Ic=Object['defineProperty'],Cc=Object[_0x5bb7a4(0x4e4)],Ec=(_0x4184dc,_0x177743,_0x1087e6,_0x4218e9)=>{const _0x2a0b17=_0x5bb7a4;for(var _0x4d9cf8=_0x4218e9>0x1?void 0x0:_0x4218e9?Cc(_0x177743,_0x1087e6):_0x177743,_0x4abbfa=_0x4184dc[_0x2a0b17(0x282)]-0x1,_0x33b4ef;_0x4abbfa>=0x0;_0x4abbfa--)(_0x33b4ef=_0x4184dc[_0x4abbfa])&&(_0x4d9cf8=(_0x4218e9?_0x33b4ef(_0x177743,_0x1087e6,_0x4d9cf8):_0x33b4ef(_0x4d9cf8))||_0x4d9cf8);return _0x4218e9&&_0x4d9cf8&&Ic(_0x177743,_0x1087e6,_0x4d9cf8),_0x4d9cf8;},ni=(_0x433cb9,_0x162526)=>(_0xbd3340,_0x3a6994)=>_0x162526(_0xbd3340,_0x3a6994,_0x433cb9);let ls=class{constructor(_0x2ca354,_0x3eee8f){const _0x130a7f=_0x5bb7a4;this[_0x130a7f(0x23e)]=_0x2ca354,this[_0x130a7f(0x1be)]=_0x3eee8f;}async[_0x5bb7a4(0x481)](_0x1ad7c6,_0x41f102){const _0x180cc6=_0x5bb7a4;var _0x176004;const {unitID:_0xe46b31,type:_0x567bc2,revision:_0x5cd4c0=0x0}=_0x41f102,_0x39452d=this['_getSnapshotAPIPrefix']()+'/'+_0x567bc2+'/unit/'+_0xe46b31+_0x180cc6(0x1f8)+_0x5cd4c0,_0x13d9c2=(await this[_0x180cc6(0x1be)][_0x180cc6(0x4f7)](_0x39452d))['body'],_0xdf2817=(_0x176004=_0x13d9c2[_0x180cc6(0x49c)])==null?void 0x0:_0x176004[_0x180cc6(0x2cb)];if(_0xdf2817){const _0x514ca5=_0xdf2817==null?void 0x0:_0xdf2817[_0x180cc6(0x405)],_0x130e09=_0x1a843b['encode'](_0x286b30(_0x514ca5));_0xdf2817[_0x180cc6(0x405)]=_0x130e09,Object[_0x180cc6(0x420)](_0xdf2817['sheets'])[_0x180cc6(0x312)](([,_0x340201])=>{const _0x3c8831=_0x180cc6,_0x865ecd=_0x340201[_0x3c8831(0x405)],_0x215f3b=_0x1a843b[_0x3c8831(0x226)](_0x286b30(_0x865ecd));_0x340201[_0x3c8831(0x405)]=_0x215f3b;});}return _0x13d9c2;}async[_0x5bb7a4(0x50a)](_0x53dd63,_0x25793d){const _0x1d866f=_0x5bb7a4,{unitID:_0x283a74,type:_0x4de57f,blockID:_0x4f5538}=_0x25793d,_0x23d2a8=this['_getAPIPrefix']()+'/'+_0x4de57f+_0x1d866f(0x19a)+_0x283a74+_0x1d866f(0x237)+_0x4f5538;return(await this[_0x1d866f(0x1be)][_0x1d866f(0x4f7)](_0x23d2a8))[_0x1d866f(0x1ab)];}async[_0x5bb7a4(0x382)](_0x140bd5,_0x42b9aa){const _0x15eb72=_0x5bb7a4,{unitID:_0x16dce6,type:_0xf22e84,blockID:_0x26afcd}=_0x42b9aa,_0x393c82=this[_0x15eb72(0x48e)]()+_0x15eb72(0x237)+_0xf22e84+_0x15eb72(0x19a)+_0x16dce6+_0x15eb72(0x237)+_0x26afcd;return(await this['_httpService'][_0x15eb72(0x4f7)](_0x393c82))[_0x15eb72(0x1ab)];}async[_0x5bb7a4(0x2b8)](_0x48880e,_0x1d3008){const _0x5b37e3=_0x5bb7a4,{unitID:_0x3db179,type:_0x1aaeb3,from:_0x3690af,to:_0x20603a}=_0x1d3008,_0x4e82aa=this[_0x5b37e3(0x48e)]()+'/'+_0x1aaeb3+_0x5b37e3(0x19a)+_0x3db179+_0x5b37e3(0x24c)+_0x3690af+'&to='+_0x20603a;return(await this[_0x5b37e3(0x1be)]['get'](_0x4e82aa))[_0x5b37e3(0x1ab)];}[_0x5bb7a4(0x3b0)](){const _0x22086d=_0x5bb7a4;var _0x1ed1d7;return(_0x1ed1d7=this[_0x22086d(0x23e)]['getConfig'](lr))!=null?_0x1ed1d7:this[_0x22086d(0x48e)]();}[_0x5bb7a4(0x48e)](){const _0x32e109=_0x5bb7a4;var _0x954e6,_0x3b8095;const _0x58f87d=this[_0x32e109(0x23e)]['getConfig'](cr),_0x338a3f=this['_configService'][_0x32e109(0x447)](ie);return(_0x3b8095=(_0x954e6=_0x338a3f==null?void 0x0:_0x338a3f[_0x32e109(0x174)])!=null?_0x954e6:_0x58f87d)!=null?_0x3b8095:hr;}async[_0x5bb7a4(0x536)](_0x3268b8,_0x2eeb63){const _0x1ec566=_0x5bb7a4,_0x44af61=_0x1ec566(0x268)+_0x2eeb63['type']+_0x1ec566(0x19a)+_0x2eeb63[_0x1ec566(0x4c4)]+_0x1ec566(0x19c);return(await this[_0x1ec566(0x1be)]['get'](_0x44af61,{'params':{'resourceId':JSON[_0x1ec566(0x303)](_0x2eeb63[_0x1ec566(0x52d)])}}))[_0x1ec566(0x1ab)];}['saveSnapshot'](){const _0x37cd7f=_0x5bb7a4;throw new Error(_0x37cd7f(0x23f));}[_0x5bb7a4(0x3e5)](){throw new Error('This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!');}[_0x5bb7a4(0x1b9)](){const _0x4ee8d3=_0x5bb7a4;throw new Error(_0x4ee8d3(0x23f));}[_0x5bb7a4(0x48b)](){const _0x558fa4=_0x5bb7a4;throw new Error(_0x558fa4(0x23f));}['getLatestCsReqIdBySid'](){throw new Error('This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!');}};ls=Ec([ni(0x0,_0x2bb536),ni(0x1,_0x22a3e1(_0x41156a))],ls);function _0x27da(){const _0x164b1c=['_changesetReqId','conflict','__creator','_exhaustRemoteChangesetQueue','LIVESHARE_FETCH_OPERATIONS','/universer-api/oidc/authpage','getValue','confirm','[CollaborationEntity]:\x20cannot\x20lock\x20transition\x20twice!\x20This\x20is\x20an\x20implementation\x20error,\x20meaning\x20you\x20transit\x20the\x20collaboration\x20state\x20again\x20in\x20the\x20process\x20of\x20a\x20previous\x20transition.\x20This\x20should\x20never\x20happen.','hasOwnProperty','set','Cipher','min','IDLE','RemoveColCommandId','_sessions','getConfig','objects','arc','_cursorShapes','makeDirty','getUniverSheetInstance','algo','HMAC','{fileID}','SUCCUSS','LOCAL_CACHE_INTERVAL','_id','random','image/bmp','interceptor','permission.content','session','default','1117897seqvgL','send','addObject','_initResize','selections','LICENSE_IMPORT_SIZE_EXCEEDED','hasher','decryptBlock','onCommentUpdate','docStateChange$','lineTo','replace','transformRemoteChangeset','cursorInfo','1em','COMPLETION_FINISHED','csRejEvent','APPLY_REJECT','onMissingChangesets','_handleHover','_localCacheService','session.connection-failed','_getMergeRange','collabStatus.notCollab','_collaborationController','transformChangesets','_textBubble','_startDocCollabCursor','getActiveSheet','InsertRangeMoveDownCommandId','symbol','off-line-single','eventID','[PendingState]:\x20received\x20acknowledgement.','visibilityState','with','\x20-\x20','_uiPartsService','mutations','_collabCursorState$','getUnitOnRev','collaboration-session-retry','3202997vyPSdz','defs','equals','getRangePointData','_decreaseWaiting','_refreshCollabCursors','USERS_LEAVE','[CollaborationUndoRedoService]','copyFileMeta','_fetchMissChangesets','engine','_getAPIPrefix','UnitEmbedded','mode','_docSyncEditingCollabCursorService','dispose$','displayName','getMemberID','post','_snapshotService','_onCombEvent','onCommandExecuted','propertyIsEnumerable','onRemoteRetry','liveShareOperation','snapshot','c2Prime','_clearUndo','_memberService','onStateChange','c1Prime','_getSignURL','object','_collaborationPaused','onTransformIME','registerHTTPInterceptor','CHANGESET_ACK','session.will-retry','PasswordBasedCipher','getTypeOfUnitAdded$','_localeService','COMPRESS_MUTATION_APPLY','_getUndoStack','_updateStatus','xlink:href','synced','undoState','updateMember','UNIVER_SLIDE','_drawAnchor','isEditing','_onOffline','joinEvent','function','_scheduleClearOtherTimer','/allowed','gold400','_undoRedoService','code','syncEditingCollabCursor','YUUMI_SUBSCRIPTION_NOT_FOUND','StreamCipher','getImageSourceCache','onlineStatusIcon','_startSheetCollabCursor','unitID','/universer-api/snapshot','_anchor','UNIVER_PROJECT','substring','/-/object/list','batchAllowed','VIEW_MAIN','padding','leaveEvent','attrs','onMissedChangesetFetched','_scene','generateRandomId','dispose','charCodeAt','moveTo','cmd','m2Prime','_drawRectRange','fetch_missing','_lastPointer','_notificationService','_refRangeService','APPLY_REVISION_CONFILICT','keySize','_docStateChangeManagerService','NEW_CHANGESETS','CBC','children','_setupBeforeClosingHandler','_color','getOwnPropertyDescriptor','0\x200\x2016\x2016','removeMember','_changesetSessionId','PENDING','colorChannel1','evenodd','rev','UNIVER_UNKNOWN','offline','_docSkeletonManagerService','_createHandler','transformMutation','collaboratorID','jiqing500','_initStatusListener','_updateLocalCache','_parse','$super','get','_transitionLocked','[OfflineState]:\x20received\x20acknowledgement.','fetchThroughInterceptors','PERMISSION_REJ','setCurrentUser','collab-rect-range-','Unknown\x20user','byteLength','on-line-single_clip0_910_349','[CollaborationEntity]','HttpExport','RECT','charAt','_snapshotServerService','_onRemoteChangeset','LICENSE_MAX_UNITS_EXCEEDED','UPDATE_PERMISSION_OBJ','downloadEndpointUrl','getSheetBlock','href','changesets','_transformSelections','SYNCED','processBlock','image/png','readInt32LE','_shouldReportTelemetry','_initCloseConn','_getAnchorBounding','_init','BlockCipher','_colorAssignService','_onJoinRoomEvent','subscribe','current','LICENSE_DISTRO_REJECTED','_startTelemetryCollaborationNewChangeset','_ensureSubject','infoRsp','_anchorDot','_initDependencies','location','enc','_reverseMap','sin','origin','FAIL','_name','[CollaborationSessionService]:\x20socket\x20error','_ENC_XFORM_MODE','_updateCollabCursors','objectID','Error\x20on\x20receiving\x20event','resourceIDs','Encryptor','cursorInfo$','_eventUnsubscribe','HmacSHA1','_syncEditingCollabCursorService','[CollaborationSession]:\x20should\x20not\x20send\x20message\x20when\x20the\x20session\x20is\x20offline!','_toggleOffline','getSkeleton','getResourcesRequest','clearInterval','_urlService','HEADER_MENU','_hash','setParam','collab-text-anchor-','DeleteRangeMoveLeftCommandId','row','_commandService','NoPadding','_executeRemoteChangeset','JOIN','InsertRowCommandId','_iv','_updateURLWithCurrentState','_getAPIPrefixPath','_checkMissing','8wKAvKt','YUUMI_RATE_OVER_LIMIT','_commentService','UnitSnapshot','_revisionService','_resendTimeout','_doProcessBlock','create','exhaustSavingTask','clamp','SEND_CHANGESET_TIMEOUT','_candidateSocket','TOO_MANY_REQUESTS','_doFinalize','_userManagerService','doc.mutation.rich-text-editing','onStarting','onSyncEditingCollabCursor','Native\x20crypto\x20module\x20could\x20not\x20be\x20used\x20to\x20get\x20secure\x20random\x20number.','UNIVER_SHEET','RETRY_CONNECTING_MAX_COUNT','unitId','_toggleOnline','LICENSE_EXPORT_SIZE_EXCEEDED','fetchMiss','_ws','_removeRoom','defIds','APPLY_NON_SEQUENTIAL_REVISION','onPointerMove$','_acknowledgedAwaitingChangeset','_startCollaboration','apply','pauseCollaboration','sendChangesetTimeout','M3.61971\x2011.6499C2.40304\x2011.6499\x200.699707\x2011.1024\x200.699707\x208.9124C0.699707\x206.3574\x203.25471\x205.8099\x203.98471\x205.8099C4.34971\x204.5324\x205.07971\x202.5249\x207.99971\x202.5249C10.5547\x202.5249\x2011.6497\x203.9849\x2012.0147\x205.2624C12.0147\x205.2624\x2015.2997\x205.6274\x2015.2997\x208.7299C15.2997\x2010.9199\x2013.8397\x2011.6499\x2012.3797\x2011.6499M9.82471\x209.82466L6.17471\x2013.4747M6.17471\x209.82466L9.82471\x2013.4747','collabWebSocketUrl','_colorIndex','ranges','univer-online-status','add','revision','setWaitCount','YUUMI_URL_COL_OUT_OF_RANGE','restore','_collabSessionService','_scheduleSaving','crypto','_replaceFileID','_config','/universer-api/authz','buffer','parse','_event$','pad','onReady','_mode','resend','_http','getCurrentUnitForType','[PendingState]:\x20received\x20rejection.','toLowerCase','collaboration_new_changeset','closeSession','UniverIcon','_permissionService','\x0aCurrent:\x20','_prevBlock','saveOfflineData','/universer-api/file/{fileID}/sign-url','_transformIMECache','_iKey','_undoStacks','_process','_onCursorUpdate','getCurrentSelections','UNIVER_DOC','max','snapshotServerUrl','executeCommand','blue400','getRenderById','BlockCipherMode','&source=','[PendingState]:\x20unhandled\x20univer\x20type:\x20','error','collaboration-client.offline-data-not-saved','commentUpdate$','sessionStatus$','getUnitType','_redoStacks','cfg','newValue','HELLO','_initMergeInterceptor','collabStatus.syncing','hostname','extend','encryptBlock','x-univer-host','socketService','roomMembers','_telemetryService','_getUploadFileURL','show','univer-online-status-icon','35YGkQbB','[FetchingMissState]:\x20not\x20expected\x20to\x20receive\x20ack\x20when\x20`this._awaitingChangeset`\x20is\x20null!','getSheetId','msCrypto','_instanceService','SNAPSHOT_SERVER_URL_KEY','concat','HttpImport','getCollabCursors$','findNodePositionByCharIndex','/unit/','[CollaborationController]:\x20invalid\x20univer\x20type:\x20','/resources','split','_socketService','searchParams','_sheetTransformSelectionsService','assign','\x20in\x20_schedule.','kdf','_transformUndoRedoStack','transformSelections','asObservable','getOffsetConfig','subunit','_waitForHeartbeatResponse','bottom','body','_replayCachedMutations','socket$','on-line-single','_listenToOnlineEvent','result','_telemetryInfo','idSuffix','WordArray','_handleLeaveEvent','SUBMIT_CHANGESET','override','_substituteUndoStack','BufferedBlockAlgorithm','saveChangeset','status$','requestParams','_minBufferSize','onTransformRemoteChangesetByIMECache','_httpService','redoState','getAncestorScale','OTHER_CLIENTS_EDITING','black','getDocRanges','_doReset','_transformService','7725xXbYgZ','_send','addObjects','subUnitId','Could\x20not\x20dynamically\x20require\x20\x22','_initStatusComponent','_cursors','session.room-full','unit-cache-','failed\x20to\x20apply\x20missed\x20changesets!','iterations','univer-online-status-title','deepClone','_sendHeartbeatTimer','_createHmacHelper','updateCollaborator','init','Fragment','[CollaborationEntity]:\x20initial\x20state\x20has\x20been\x20created\x20before.\x20You\x20should\x20not\x20call\x20\x22init\x22\x20twice.','_transformPreviousActiveRange','OnLineSingle','308536Irzfao','COLLAB_WEB_SOCKET_URL','getFocusedUnit','fillText','_roomMembers','_imageSourceCache','unsubscribe','_tryEnsureSocket','userID','M0\x200H16V16H0z','DeleteRangeMoveUpCommandId','none','find','collab-client.tooltip.reconnect','_sheetSkeletonManagerService','width','_getCurrentRevision','_isPermissionRej','Pkcs7','NO_OTHER_CLIENTS_EDITING','_onConnectionFailed','SNAPSHOT_HAS_BEEN_REMOVED','visibilitychange','registerOnClose','_loadDoc','execute','_applyRemoteChangeset','call','[serializeCombRequest]:\x20should\x20not\x20fall\x20into\x20default\x20branch!','/rev/','collaboration-client.config','words','change$','Base64','[FetchingMissState]:\x20invalid\x20calling\x20to\x20`resend`.','9tLtwhW','status','INGEST','COMPRESS_MUTATION_SEND','drawWith','color','UNKNOWN_CMD','/collaborator','__esModule','232RuIhjN','_roomMembers$','&assign=','_initEventListeners','FromArray','getViewport','_rescheduleHeartbeat','141041LBqNaQ','_sessionStatus$','headers','TEXT','[ConflictState]:\x20invalid\x20calling\x20to\x20`resend`.','JOINING','onRendered','setInterval','_lockTransition','url','_createSocket','APPLY_PERMISSION_DENIED','collaMsg','_render','includes','_univerInstanceService','Decryptor','updateOfflineData','catch','onlineStatus','getUndoRedoMutationParamsCache','\x20to\x20','fromCharCode','UNDEFINED','encode','_state$','_drawTextRange','_clearRedo','_transformRemoteChangesetByStateCache','some','startTime','url(#off-line-single_clip0_910_343)','ACTIVE_UNIT_EVENT_CHANNEL','capture','InsertColCommandId','all','_transformRemoteChangesetByIMECache','MUTATION','_clearLocalCache','top','exports','/block/','HEARTBEAT','_timeoutTimer','OFFLINE','getUnitStatus$','debug','floor','_configService','This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!','_substituteRedoStack','_xformMode','_transformStateCache','unit','backgroundColor','_oKey','/role','ceil','connection\x20error','startColumn','selection','_retryCount','/fetchmissing?from=','_key','_scheduleCollaborationTimeoutTimer','roles','#FFF','collaborators','unitId\x20is\x20not\x20found','?size=','...','COLLAB_SUBMIT_CHANGESET_URL','AWAITING_WITH_PENDING','_selfUnitIDs','join','CHANGESET_SHOULD_RETRY','awaitingChangeset','stopTime','_getScale','getMember','_resendTimer','onTransformRemoteChangesetByStateCache','appendMutation','univer-offline','_renderManagerService','_updateState','onload','_context','tag','_registerDependencies','/universer-api/snapshot/','_transformStack','onPointerEnter$','0\x200\x2017\x2016','getAllMembers','online','_logService','encrypt','_onRefRangeChange','_setupSubUnitSync','_onCursorDelete','setTimeout','focused$','key','_removeClearOtherTimer','error$','_labelPosition','_retryConnectingTimer','close','decrypt','format','_socket$','type','_localStorageService','_tryReconnect','_status$','length','_incrementRevisionNumber','addImageSourceCache','HmacMD5','duration','CONFLICT','reject','APPLY_DUPLICATED','localeService','pending','collabStatus.synced','isPermissionRej','div','jsxs','endColumn','_queuedRemoteChangesets','_sender','salt','_createInitialState','objectActions','_clearHeartbeatTimer','RECV','CONNECTOR_DATA_TOO_LARGE','_cursorInfo$','getSheetBySheetId','_collaborationSessionService','_handler','_getRedoStack','liveShareNewHost','/object/','textRanges','_onRecvEvent','_messageService','memberID','#fff','USERS_ENTER','responseType','LEAVE','hidden','_data','saveImage','addEventListener','Hex','Warning','routeKey','getUnhiddenWorksheets','_themeService','for','baseRev','contains','ERROR_EXCEED_SIZE','replaceDocRanges','setActiveRange','_nRounds','fetchMissingChangesets','_cursor','_unitID','_change$','ciphertext','byteOffset','_getSendChangesetTimeout','POST','blockSize','?url=','getTime','/universer-api/stream/file/upload','AES','getCollabEntity','[FetchMissState]','requireSession','PSEUDO_FETCH_MISSING_RESULT','map','awaiting_with_pending','workbook','members','UPDATE_CURSOR','UNAUTHENTICATED','assignAColorForMemberID','_initUnitPermissionChange','6098330bROpSk','_onConflict','415182dGHSDP','_range','data','values','reset','\x0aAfter:\x20','_hovered','range','withCredentials','randomBytes','getRoom','rgba(255,\x20255,\x20255,\x200.01)','initWorkbookPermissionChange','_sendHeartbeat','rng','finalize','_online','_updateSubUnitFromURLParams','toString','has','currentColor','onSendChangeset','Undefined','_backgroundColor','onRemoteRej','_removeCollabCursors','LIVESHARE_REQUEST_HOST','_assignedColors','_getSaveTimeout','_onMessage','lib','_saveTaskMap','AWAITING','isArray','_syncEditingCollabCursor','_unitOnClients','submit\x20changeset\x20error!','_hideTimer','_scheduleHeartbeat','state','number','jsx','[OfflineState]:\x20received\x20rejection.','_getCtorByUniverType','_updateLocalCursor','image/jpeg','_collaborationTimeoutTimer','transformStateCache','stringify','_getDownloadEndpointURL','AUTHZ_URL_KEY','retryConnectingInterval','splice','registerRefRange','_pendingMutations','_resendWithTimeout','toggleOffline','createInstance','editingUnit','onRemoteAck','Univer','compose','InsertRangeMoveRightCommandId','forEach','complete','permission.title','replaceState','image/gif','react.fragment','_disabled','enableAuthServer','getStateCache','awaiting','fill','getRelativeToViewportCoord','UNRECOGNIZED','LIVESHARE_NEW_HOST','objectType','onlineStatusTitle','getUnitId','_socket','refreshPermission','getParam','sheetID','path','reconnect','unknown','onMouseMove','unshift','setStateCache','collabStatus.offline','_stopTelemetryCollaborationNewChangeset','roomMembers$','getInterceptPoints','Utf8','Hasher','OffLineSingle','_collabCursorController','randomUUID','beginPath','HEARTBEAT_TIMEOUT','_injector','close$','_onUserJoin','NOT_FOUND','onPointerLeave$','_socketReady','save','onlyLocal','_handleJoinEvent','getActiveRange','getRandomValues','createSocket','_clearTimeoutTimer','YUUMI_UNABLE_LOAD_URL','defaultProps','collabSubmitChangesetUrl','from','listRoles','createEncryptor','EvpKDF','_submitChangeset','COMMENT_UPDATE','conflict.content','_doCryptBlock','setAlpha','_createInitialStateImpl','FileId','text','_initCommandExecutedListener','_clearOtherTimers','currentTheme$','setShapeProps','[CollaborationSessionService]','enableSingleActiveInstanceLock','size','CHANGESET_REJ','translate(.97)','[PendingState]:\x20invalid\x20calling\x20to\x20`resend`.','_transformUndoredo','message$','_docTransformIMECacheService','ws://127.0.0.1:8000/universer-api/comb/connect','_append','_hover','_awaitingChangeset','INVALID_ARGUMENT','authzUrl','_heartbeatTimer','disposeWithMe','_invKeySchedule','_cachedData','_docTransformSelectionsService','MD5','ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=','EXCHANGE_SIGN_URL_SERVER_URL_KEY','commentUpdateEvent','_getSheetObject','every','LOGIN_URL_KEY','univer-pro.collaboration-client-socket-service','_onRemoteRetry','className','registerRenderModule','telemetry\x20info\x20is\x20not\x20initialized','_cipher','_commentUpdate$','_entities','_transformHistoryAndStateStack','icon','actions','_onFetchMissResult','\x22.\x20Please\x20configure\x20the\x20dynamicRequireTargets\x20or/and\x20ignoreDynamicRequires\x20option\x20of\x20@rollup/plugin-commonjs\x20appropriately\x20for\x20this\x20require\x20call\x20to\x20work.','_keyPriorReset','_shapes','getDeserializedSheetBlock','_handleHeartbeatEvent','fetching\x20the\x20latest\x20document\x20from\x20the\x20server.','fillRule','setConfig','toggleOnline','M4.5865\x2011.6499C3.36983\x2011.6499\x201.6665\x2011.1024\x201.6665\x208.9124C1.6665\x206.3574\x204.2215\x205.8099\x204.9515\x205.8099C5.3165\x204.5324\x206.0465\x202.5249\x208.9665\x202.5249C11.5215\x202.5249\x2012.6165\x203.9849\x2012.9815\x205.2624C12.9815\x205.2624\x2016.2665\x205.6274\x2016.2665\x208.7299C16.2665\x2010.9199\x2014.8065\x2011.6499\x2013.3465\x2011.6499M6.7767\x2011.6497L8.9667\x2013.4747L11.8867\x209.82466','_showConflictNotification','measureText','method','LIVESHARE_OPERATION','_onUserLeave','onRemoteChangeset','height','_map','append','[DataLoaderController]','conflict.title','enableOfflineEditing','clear','column','sessionStatus','shouldCloseConn','abs','getTypeOfUnitDisposed$','_scheduleTimestamp','/-/object/-/batch_allowed','BASE64','crypto.getRandomValues()\x20not\x20supported.\x20See\x20https://github.com/uuidjs/uuid#getrandomvalues-not-supported','repeat','__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED','SerializableCipher','_saveCache','getWorkbookSelections','mixIn','storage','_type','Cannot\x20assemble\x20a\x20changeset\x20from\x20multiple\x20mutations\x20of\x20different\x20types:\x20','ref','SNAPSHOT_INVALID_SNAPSHOT','OpenSSL','ALREADY_EXISTS','_waitCount','sigBytes','CHANGESET_REVISION_CONFILICT','_disableEditing','_getSnapshotAPIPrefix','[SyncedState]:\x20received\x20rejection.','subscribeEvent','_joinRoom','_entityInit$','src','SHA1','hovered','_nDataBytes','getCurrentUser','permissionRejEvent','_handleEvent','setShowComponents','socket\x20open.','transformStack\x20failed!','[SyncedState]:\x20invalid\x20calling\x20to\x20`resend`.','red300','[CollaborationSocketService]:\x20failed\x20to\x20create\x20socket!','_clearScheduledTask','SNAPSHOT_URL_KEY','Latin1','url(#on-line-single_clip0_910_349)','ERROR_IMAGE','_draw','readAsDataURL','update','enableLocalCache','Error','history','toRgbString','FETCH_MISSING','getCellPositionByOffset','Malformed\x20UTF-8\x20data','_keySchedule','now','_docTransformStateCacheService','pushState','csShouldRetryEvent','isActive','onTransformChange$','delete','params','ivSize','font','_members','sid','clipPath','getVpScrollXYInfoByPosToVp','_onConnectionOpen','ONLINE','slice','collabCursorState$','event$','saveSheetBlock','onTransformState','_sendingTimer','session.collaboration-timeout','_onRemoteRejected','fetching\x20missing\x20changesets\x20from\x20','open$','LICENSE_MAX_MEMBERS_PER_UNIT_EXCEEDED','triggerDblclick','_createHelper','bind','_throwTelemetryCollaborationNewChangeset','pipe','closePath','put','purple300','getCurrentRevOfUnit','reqId','image/jpg','collaboration.closeRoom','joinRsp','_state','compute','updatePermissionPoint','_onLocalMutation','round','next','getItem','flatMap','_unlockTransition','PERMISSION_DENIED','getOwnPropertySymbols','originalMeta','getUnit','MSG_FOR_ERROR','name','disableLocalCache','m1Prime','FETCH_MISS','string','_registerRenderDependencies','then','state$','NOT_COLLAB','setItem','60xAUrRe','SHOULD_CLOSE_CONN','_beforeCloseService','_HTTPService','collaboration.single-unit.warning','_socketMessageSubscription','startsWith','patch','_singleActiveUnitService','url(#$1','collabStatus.fetchMiss','LIVESHARE_TERMINATE','react.element','indexOf','entries','_compressMutationService','_schedule','prototype','[CollaborationSession]','socket\x20close','loadOfflineData','_unitStatus','transformMutationsWithChangeset','Base','_clearCollaborationTimeoutTimer','defineProperty','_initRequestHeader','_session','_remoteChangesetQueue','getCollabEntity$','createDecryptor','clone','onTransformSelections','push','fillStyle','EXCHANGE_UPLOAD_FILE_SERVER_URL_KEY','currentSkeleton$'];_0x27da=function(){return _0x164b1c;};return _0x27da();}var bc=Object['defineProperty'],Tc=Object[_0x5bb7a4(0x4e4)],Rc=(_0x35f703,_0x498c92,_0x5d4a1e,_0x1fc3e8)=>{const _0x294557=_0x5bb7a4;for(var _0x5ce33a=_0x1fc3e8>0x1?void 0x0:_0x1fc3e8?Tc(_0x498c92,_0x5d4a1e):_0x498c92,_0x1fdff8=_0x35f703[_0x294557(0x282)]-0x1,_0x212648;_0x1fdff8>=0x0;_0x1fdff8--)(_0x212648=_0x35f703[_0x1fdff8])&&(_0x5ce33a=(_0x1fc3e8?_0x212648(_0x498c92,_0x5d4a1e,_0x5ce33a):_0x212648(_0x5ce33a))||_0x5ce33a);return _0x1fc3e8&&_0x5ce33a&&bc(_0x498c92,_0x5d4a1e,_0x5ce33a),_0x5ce33a;},et=(_0x4eeb34,_0x34c0ae)=>(_0x24bda2,_0xc320a2)=>_0x34c0ae(_0x24bda2,_0xc320a2,_0x4eeb34);let _s=class extends _0x26edca{constructor(_0x3d144d,_0x2b453b,_0x40e0a4,_0x121d72,_0x1ef676){const _0x4e9a4a=_0x5bb7a4;super(_0x3d144d,_0x2b453b,_0x40e0a4),this[_0x4e9a4a(0x1c5)]=_0x121d72,this[_0x4e9a4a(0x26e)]=_0x1ef676;}['transformUndoRedo'](_0x4679e5,_0x3d43f4){const _0x2fe294=_0x5bb7a4,_0x56ed23=this[_0x2fe294(0x4ad)](_0x4679e5);if(_0x56ed23)try{const _0x475a4a=this[_0x2fe294(0x269)](_0x56ed23,_0x3d43f4);this[_0x2fe294(0x1b7)](_0x4679e5,_0x475a4a);}catch(_0x4bc14d){this[_0x2fe294(0x26e)][_0x2fe294(0x17b)]('[CollaborationUndoRedoService]',_0x4bc14d),this['_clearUndo'](_0x4679e5);}const _0x26e55d=this[_0x2fe294(0x29d)](_0x4679e5);if(_0x26e55d)try{const _0x311bb4=this[_0x2fe294(0x269)](_0x26e55d,_0x3d43f4);this[_0x2fe294(0x240)](_0x4679e5,_0x311bb4);}catch(_0x3d0dfa){this[_0x2fe294(0x26e)]['error'](_0x3d0dfa),this[_0x2fe294(0x229)](_0x4679e5);}}[_0x5bb7a4(0x49e)](_0x379088){const _0x455075=_0x5bb7a4,_0x28bcac=this[_0x455075(0x4ad)](_0x379088);_0x28bcac&&(_0x28bcac['length']=0x0,this[_0x455075(0x4ae)]());}['_clearRedo'](_0x14b302){const _0x4e3ba7=_0x5bb7a4,_0x4e0102=this[_0x4e3ba7(0x29d)](_0x14b302);_0x4e0102&&(_0x4e0102[_0x4e3ba7(0x282)]=0x0,this['_updateStatus']());}['_substituteUndoStack'](_0x241f06,_0x2f0053){const _0x2abb5f=_0x5bb7a4;this[_0x2abb5f(0x16e)]['set'](_0x241f06,_0x2f0053),this[_0x2abb5f(0x4ae)]();}[_0x5bb7a4(0x240)](_0x3fd12f,_0x3e98ac){const _0x29af58=_0x5bb7a4;this[_0x29af58(0x180)][_0x29af58(0x441)](_0x3fd12f,_0x3e98ac),this[_0x29af58(0x4ae)]();}[_0x5bb7a4(0x269)](_0x2b71a5,_0x47dace){const _0x246f55=_0x5bb7a4,_0x1f6947=[];let _0x158986=_0x47dace,_0x3390ff=_0x47dace;for(let _0x1cf358=_0x2b71a5[_0x246f55(0x282)]-0x1;_0x1cf358>=0x0;_0x1cf358--){const {unitID:_0x51bdb3,undoMutations:_0x1fa29e,redoMutations:_0x1dd9d5}=_0x2b71a5[_0x1cf358],_0x1b6953=this['_transformService'][_0x246f55(0x428)](_0x158986,_0x1fa29e),_0x4b357c=this[_0x246f55(0x1c5)][_0x246f55(0x428)](_0x3390ff,_0x1dd9d5);if(_0x2a2494(_0x1b6953)||_0x2a2494(_0x4b357c)){this[_0x246f55(0x26e)][_0x246f55(0x17b)](_0x246f55(0x48a),_0x246f55(0x3be),_0x1b6953,_0x4b357c);break;}_0x158986=_0x1b6953['c1Prime'],_0x3390ff=_0x4b357c[_0x246f55(0x4a1)],_0x1f6947[_0x246f55(0x433)]({'unitID':_0x51bdb3,'undoMutations':_0x1b6953[_0x246f55(0x4d6)],'redoMutations':_0x4b357c[_0x246f55(0x4d6)]});}return _0x1f6947['reverse']();}};_s=Rc([et(0x0,_0x2e0534),et(0x1,_0x1e58f0),et(0x2,_0x6af9eb),et(0x3,_0x2db4c4),et(0x4,_0x3efec9)],_s);class yc extends _0x177a9e{constructor(){const _0x4176fd=_0x5bb7a4;super(),g(this,'urlChange$'),this['urlChange$']=_0x565a18(window,'popstate')[_0x4176fd(0x3f1)](_0x52fa59(this[_0x4176fd(0x492)]),_0x3f1879(0x1),_0x287b5c(void 0x0));}['setParam'](_0x59f095,_0x3a4473,_0x54170f=!0x1){const _0x115f06=_0x5bb7a4,_0x2890e1=new URL(window[_0x115f06(0x521)][_0x115f06(0x50b)]);_0x2890e1[_0x115f06(0x19f)]['set'](_0x59f095,_0x3a4473),_0x54170f?window[_0x115f06(0x3cc)][_0x115f06(0x315)]('','',_0x2890e1[_0x115f06(0x2e5)]()):window[_0x115f06(0x3cc)][_0x115f06(0x3d4)]('','',_0x2890e1[_0x115f06(0x2e5)]());}['removeParam'](_0x54dbb0,_0x2154d4=!0x1){const _0x10cbf8=_0x5bb7a4,_0x11bfda=new URL(window[_0x10cbf8(0x521)][_0x10cbf8(0x50b)]);_0x11bfda[_0x10cbf8(0x19f)][_0x10cbf8(0x3d8)](_0x54dbb0),_0x2154d4?window[_0x10cbf8(0x3cc)][_0x10cbf8(0x315)]('','',_0x11bfda['toString']()):window[_0x10cbf8(0x3cc)][_0x10cbf8(0x3d4)]('','',_0x11bfda[_0x10cbf8(0x2e5)]());}['getParam'](_0x3aba6c){const _0x5dd888=_0x5bb7a4;var _0x285717;return(_0x285717=new URL(window['location'][_0x5dd888(0x50b)])[_0x5dd888(0x19f)][_0x5dd888(0x4f7)](_0x3aba6c))!=null?_0x285717:void 0x0;}}var zi=Object[_0x5bb7a4(0x42b)],Oc=Object[_0x5bb7a4(0x4e4)],wc=(_0x4bdc06,_0x21979c,_0x4cb3a5)=>_0x21979c in _0x4bdc06?zi(_0x4bdc06,_0x21979c,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x4cb3a5}):_0x4bdc06[_0x21979c]=_0x4cb3a5,Dc=(_0x258765,_0x3cb8f0,_0x5c61ef,_0x7df504)=>{const _0x144bd7=_0x5bb7a4;for(var _0x5889bd=_0x7df504>0x1?void 0x0:_0x7df504?Oc(_0x3cb8f0,_0x5c61ef):_0x3cb8f0,_0x252a14=_0x258765[_0x144bd7(0x282)]-0x1,_0x5869be;_0x252a14>=0x0;_0x252a14--)(_0x5869be=_0x258765[_0x252a14])&&(_0x5889bd=(_0x7df504?_0x5869be(_0x3cb8f0,_0x5c61ef,_0x5889bd):_0x5869be(_0x5889bd))||_0x5889bd);return _0x7df504&&_0x5889bd&&zi(_0x3cb8f0,_0x5c61ef,_0x5889bd),_0x5889bd;},lt=(_0x1e8c8a,_0x1bd5ea)=>(_0x5ce7e7,_0x1001d8)=>_0x1bd5ea(_0x5ce7e7,_0x1001d8,_0x1e8c8a),Pc=(_0xb303a9,_0x99dd6,_0x3bfc20)=>wc(_0xb303a9,_0x99dd6+'',_0x3bfc20);const Uc='UNIVER_COLLABORATION_CLIENT_PLUGIN';let us=class extends _0x1a3f69{constructor(_0x8b1473=Rr,_0x4f19e5,_0x1ccf76,_0x1cb2b8,_0x517dfc){const _0x39322f=_0x5bb7a4;super(),this[_0x39322f(0x579)]=_0x8b1473,this[_0x39322f(0x26e)]=_0x4f19e5,this[_0x39322f(0x262)]=_0x1ccf76,this['_injector']=_0x1cb2b8,this[_0x39322f(0x23e)]=_0x517dfc;const {..._0x28a46b}=this['_config'];this[_0x39322f(0x23e)][_0x39322f(0x386)](ie,_0x28a46b);}[_0x5bb7a4(0x558)](){const _0x5c3d4d=_0x5bb7a4;this[_0x5c3d4d(0x267)](),this[_0x5c3d4d(0x520)]();}[_0x5bb7a4(0x57f)](){_0x3fa01f(this['_injector'],[[Ct]]);}[_0x5bb7a4(0x214)](){this['_registerRenderDependencies']();}[_0x5bb7a4(0x267)](){const _0x38f93c=_0x5bb7a4;var _0x41ed6b,_0x5b784f,_0x35fd16,_0x5e212f;this[_0x38f93c(0x338)][_0x38f93c(0x2e6)](_0x131129)&&this[_0x38f93c(0x26e)][_0x38f93c(0x17b)]('[UniverCollaborationClientPlugin]','you\x20should\x20override\x20\x22IUndoRedoService\x22\x20provided\x20in\x20\x22core\x22\x20package!');const _0x1fcd21=[[_0x131129,{'useClass':_s}],[Ae],[bs],[Bi,{'useClass':yc}],[Ne],[q],[_0x1275f8],[vt],[pt],[ft],[mt],[Cs],[Et],[bt],[wi],[Tt],[Oi,{'useClass':(_0x5b784f=(_0x41ed6b=this[_0x38f93c(0x579)])==null?void 0x0:_0x41ed6b[_0x38f93c(0x18a)])!=null?_0x5b784f:es}],[_0x5bc59d,{'useClass':ls}],[_0x2eb585,{'useClass':cs}],[_0x23cc94,{'useClass':hs}],[it],[It],[St],[Ct],[Ve]];(_0x35fd16=this[_0x38f93c(0x579)])!=null&&_0x35fd16[_0x38f93c(0x359)]&&_0x1fcd21[_0x38f93c(0x433)]([Rt,{'useClass':ro}]),_0x60d00f(this[_0x38f93c(0x338)],_0x2c766a(_0x1fcd21,(_0x5e212f=this[_0x38f93c(0x579)])==null?void 0x0:_0x5e212f[_0x38f93c(0x1b6)]));}[_0x5bb7a4(0x40d)](){const _0x538072=_0x5bb7a4;this[_0x538072(0x368)](this[_0x538072(0x262)][_0x538072(0x376)](_0x10a997['UNIVER_DOC'],[os])),this[_0x538072(0x368)](this[_0x538072(0x262)][_0x538072(0x376)](_0x10a997['UNIVER_SHEET'],[as]));}[_0x5bb7a4(0x520)](){const _0x43c46b=_0x5bb7a4;var _0x45ecf2,_0x2715ba;this['_injector']['get'](_0x41156a)['registerHTTPInterceptor']({'priority':0x14,'interceptor':_0x15339e({'maxParallel':0x6})}),(_0x45ecf2=this[_0x43c46b(0x579)])!=null&&_0x45ecf2[_0x43c46b(0x394)]||this[_0x43c46b(0x338)][_0x43c46b(0x4f7)](q)[_0x43c46b(0x409)](),(_0x2715ba=this[_0x43c46b(0x579)])!=null&&_0x2715ba[_0x43c46b(0x319)]&&_0x3fa01f(this[_0x43c46b(0x338)],[[Et]]),_0x3fa01f(this['_injector'],[[bt],[Ve],[It],[it],[St],[Tt]]);}};Pc(us,'pluginName',Uc),us=Dc([_0x5008eb(_0x1956e2,_0x2fc5f3),lt(0x1,_0x3efec9),lt(0x2,_0x31d8f9),lt(0x3,_0x22a3e1(_0x4c5160)),lt(0x4,_0x2bb536)],us);export{Ba as AUTHZ_URL_KEY,cs as AuthzIoHttpService,Cr as COLLAB_SUBMIT_CHANGESET_URL_KEY,ur as COLLAB_WEB_SOCKET_URL_KEY,it as CollaborationController,gt as CollaborationEntity,ts as CollaborationSession,Ae as CollaborationSessionService,es as CollaborationSocketService,J as CollaborationStatus,Ca as CollaborationStatusDisplay,wi as CommentService,It as DataLoaderController,St as DesktopCollaborationStatusDisplayController,ss as DocCollaborationEntity,fr as HEARTBEAT_INTERVAL_KEY,bi as HEARTBEAT_TIMEOUT_KEY,Oi as ICollaborationSocketService,Bi as IURLService,hs as ImageIoService,Sr as LOCAL_CACHE_INTERVAL_KEY,br as LOGIN_URL_KEY,q as LocalCacheService,Ne as MemberService,pr as RETRY_CONNECTING_MAX_COUNT_KEY,Xc as SEND_CHANGESET_TIMEOUT_KEY,cr as SNAPSHOT_SERVER_URL_KEY,lr as SNAPSHOT_URL_KEY,ve as SessionStatus,Xo as SheetCollabCursorShape,is as SheetCollaborationEntity,ls as SnapshotServerOverHTTPService,us as UniverCollaborationClientPlugin,yc as WebURLService,yr as deserializeToCombResponse,Or as serializeCombRequest};
|
1
|
+
const _0xc8d6e8=_0x284c;(function(_0x28a376,_0x45e543){const _0x3caaac=_0x284c,_0x43590f=_0x28a376();while(!![]){try{const _0x530b40=-parseInt(_0x3caaac(0x44a))/0x1+-parseInt(_0x3caaac(0x274))/0x2+-parseInt(_0x3caaac(0x29f))/0x3+-parseInt(_0x3caaac(0x4ad))/0x4*(-parseInt(_0x3caaac(0x176))/0x5)+-parseInt(_0x3caaac(0x148))/0x6*(-parseInt(_0x3caaac(0x4ef))/0x7)+-parseInt(_0x3caaac(0x18d))/0x8+parseInt(_0x3caaac(0x249))/0x9;if(_0x530b40===_0x45e543)break;else _0x43590f['push'](_0x43590f['shift']());}catch(_0x4e7d3a){_0x43590f['push'](_0x43590f['shift']());}}}(_0x1849,0xe2310));var qi=Object[_0xc8d6e8(0x17a)],Xi=(_0x1f95e0,_0x795255,_0xad323e)=>_0x795255 in _0x1f95e0?qi(_0x1f95e0,_0x795255,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0xad323e}):_0x1f95e0[_0x795255]=_0xad323e,g=(_0x5ef413,_0x10ab59,_0x5359b8)=>Xi(_0x5ef413,typeof _0x10ab59!=_0xc8d6e8(0x442)?_0x10ab59+'':_0x10ab59,_0x5359b8);import{createIdentifier as _0x84987f,Inject as _0x13f971,Disposable as _0x5e1db6,DisposableCollection as _0x4711ac,toDisposable as _0x4e58a4,IConfigService as _0x450caa,ILogService as _0x410e45,UserManagerService as _0x142df8,UniverInstanceType as _0x4f645a,IUniverInstanceService as _0x2ddd21,LocaleService as _0x8037c0,Optional as _0x28e273,RxDisposable as _0x2ea33c,Injector as _0x20e5db,Tools as _0x4ef2fc,ILocalStorageService as _0x50a513,Rectangle as _0x3cb9ac,ICommandService as _0x4171ed,DOC_RANGE_TYPE as _0x38f481,JSONX as _0x528764,CommandType as _0x3dc8ba,IPermissionService as _0x1306a2,IUndoRedoService as _0x2925fd,sequenceExecute as _0x3b32ef,debounce as _0x2384a7,COLORS as _0x1a4681,ColorKit as _0x5dfdce,ThemeService as _0x5dff17,fromEventSubject as _0x289720,useDependency as _0x503c33,connectInjector as _0x42168a,Workbook as _0x16e397,isInternalEditorID as _0xf31c8,LocalUndoRedoService as _0x44ea44,IContextService as _0x295091,DependentOn as _0x13bf02,Plugin as _0x1ec059,touchDependencies as _0x2d98b1,IAuthzIoService as _0xf062e,registerDependencies as _0x366bdc,mergeOverrideWithDependencies as _0x439703}from'@univerjs/core';import{Subject as _0x378360,merge as _0x88f83c,takeUntil as _0x6a5096,BehaviorSubject as _0xfe121,distinctUntilChanged as _0x5b41b7,fromEvent as _0x4ee00c,ReplaySubject as _0x20135c,take as _0x134dae,map as _0x4c310e,shareReplay as _0x207368,of as _0x2cb441,debounceTime as _0x2565cd,filter as _0x348f8e,switchMap as _0x4b2328,combineLatest as _0x59bbc7,concatMap as _0x1a2bac,mapTo as _0x35afd6}from'rxjs';import{map as _0x38f68a,take as _0xaf14a2,filter as _0x474f16,delay as _0x12cdd5,throttleTime as _0x1d2269,takeUntil as _0x4d3dd9,switchMap as _0xaef0b0}from'rxjs/operators';import{MessageType as _0x49b044,Tooltip as _0x39b687}from'@univerjs/design';import{HTTPService as _0x5874d1,WebSocketService as _0x338344,MergeInterceptorFactory as _0x1fbfc9,HTTPRequest as _0x3446c9,UniverNetworkPlugin as _0x2c8070,ThresholdInterceptorFactory as _0x5af1b4}from'@univerjs/network';import{IBeforeCloseService as _0x55cff2,IMessageService as _0x1902d3,INotificationService as _0x3f22a0,useObservable as _0x950f29,BuiltInUIPart as _0x40dba2,IUIPartsService as _0x153f86}from'@univerjs/ui';import{CollaborationEvent as _0x275148,parseChangesetToProtocol as _0x595400,ISnapshotServerService as _0x3701ce,isTransformMutationFailure as _0x240244,isTransformMutationsWithChangesetSuccess as _0x22d9be,ITransformService as _0x59efa9,RevisionService as _0x15b6ba,mapDocumentTypeToUniverType as _0x3787b4,isTransformChangesetsSuccess as _0x36cff1,CompressMutationService as _0x12821d,parseProtocolChangeset as _0x533cbf,SnapshotService as _0x3bf07d,textEncoder as _0x194d7a,b64DecodeUnicode as _0x5b63d7,isTransformMutationsWithChangesetFailure as _0x434de5,UniverCollaborationPlugin as _0x3b7cf5}from'@univerjs-pro/collaboration';import{ITelemetryService as _0x15d9ac}from'@univerjs/telemetry';import{DocIMEInputManagerService as _0x50fd0b,DocStateChangeManagerService as _0x1fa86f,NodePositionConvertToCursor as _0x4479bc,NodePositionConvertToRectRange as _0x3a67de,TEXT_RANGE_LAYER_INDEX as _0x58be2d,SetDocZoomRatioOperation as _0x15a860}from'@univerjs/docs-ui';import{SheetsSelectionsService as _0x1e03cb,SetSelectionsOperation as _0x2c4628,InsertSheetMutation as _0x550572,EmptyMutation as _0x8dc8a0,WorkbookEditablePermission as _0x945e06,RefRangeService as _0x50ac3c,EffectRefRangId as _0x4e05a8,handleIRemoveRow as _0xaa71cb,handleIRemoveCol as _0x35033c,handleMoveRange as _0x1eff74,handleInsertRow as _0x591de4,handleInsertRangeMoveRight as _0x3aa3e6,handleInsertRangeMoveDown as _0x380e01,handleInsertCol as _0x1d4077,handleDeleteRangeMoveUp as _0x3c7298,handleDeleteRangeMoveLeft as _0x13af4b,runRefRangeMutations as _0x3ee0a2,SetWorksheetActivateCommand as _0x1c87ab}from'@univerjs/sheets';import{IRenderManagerService as _0x272410,Shape as _0xc62d9e,Rect as _0x2c31ab,getColor as _0xdb3a53,RegularPolygon as _0x19a511,TRANSFORM_CHANGE_OBSERVABLE_TYPE as _0x5c7057,Vector2 as _0xc320db}from'@univerjs/engine-render';import{DocSelectionManagerService as _0x5930e4,RichTextEditingMutation as _0x942aea,SetTextSelectionsOperation as _0x9955df,DocSkeletonManagerService as _0xd704ef}from'@univerjs/docs';import{ImageSourceType as _0x47413a,ImageUploadStatusType as _0x12da05,IImageIoService as _0x362557}from'@univerjs/drawing';import{deserializeRangeWithSheet as _0x358f17,serializeRangeWithSheet as _0x503f9d}from'@univerjs/engine-formula';import{SheetSkeletonManagerService as _0x3d2098,VIEWPORT_KEY as _0x5d55d7,getCoordByCell as _0x573888,getSheetObject as _0x2d6008,SheetPermissionInitController as _0x3439c1}from'@univerjs/sheets-ui';import _0x2fe14b,{forwardRef as _0x1f1ada,useRef as _0x24302d,createElement as _0x41772d,useCallback as _0x5481cf}from'react';import{IRemoteInstanceService as _0x3ef686}from'@univerjs/rpc';const cr=_0xc8d6e8(0x4b7),hr=_0xc8d6e8(0x468),lr=_0xc8d6e8(0x2ce),Jc=_0xc8d6e8(0x3a4),_r=0x7d0,ur=_0xc8d6e8(0x407),dr=_0xc8d6e8(0x26e),fr='/universer-api/user/session-ticket',vr=_0xc8d6e8(0x22e),mr=0x7530,bi='HEARTBEAT_TIMEOUT',Ti=0x4e20,pr=0x4e20,gr=_0xc8d6e8(0x2e7),Sr=0x3,Ir='LOCAL_CACHE_INTERVAL',Cr=0x3e8,Er=_0xc8d6e8(0x390),br=_0xc8d6e8(0x438),Tr=_0xc8d6e8(0x304),Rr='/universer-api/oidc/authpage';var Ri=(_0x29b649=>(_0x29b649[_0x29b649[_0xc8d6e8(0x447)]=0x0]=_0xc8d6e8(0x447),_0x29b649[_0x29b649['OK']=0x1]='OK',_0x29b649[_0x29b649['INTERNAL_ERROR']=0x2]=_0xc8d6e8(0x3fa),_0x29b649[_0x29b649['PERMISSION_DENIED']=0x3]=_0xc8d6e8(0x37f),_0x29b649[_0x29b649['NOT_FOUND']=0x4]='NOT_FOUND',_0x29b649[_0x29b649[_0xc8d6e8(0x39b)]=0x5]='UNAUTHENTICATED',_0x29b649[_0x29b649[_0xc8d6e8(0x490)]=0x6]=_0xc8d6e8(0x490),_0x29b649[_0x29b649[_0xc8d6e8(0x154)]=0x7]='INVALID_ARGUMENT',_0x29b649[_0x29b649[_0xc8d6e8(0x42d)]=0x8]=_0xc8d6e8(0x42d),_0x29b649[_0x29b649[_0xc8d6e8(0x430)]=0x9]=_0xc8d6e8(0x430),_0x29b649[_0x29b649[_0xc8d6e8(0x158)]=0x1389]='CHANGESET_REVISION_CONFILICT',_0x29b649[_0x29b649[_0xc8d6e8(0x3ea)]=0x1771]=_0xc8d6e8(0x3ea),_0x29b649[_0x29b649[_0xc8d6e8(0x342)]=0x1772]=_0xc8d6e8(0x342),_0x29b649[_0x29b649[_0xc8d6e8(0x486)]=0x1773]=_0xc8d6e8(0x486),_0x29b649[_0x29b649[_0xc8d6e8(0x32b)]=0x1b59]=_0xc8d6e8(0x32b),_0x29b649[_0x29b649[_0xc8d6e8(0x1bf)]=0x1b5a]=_0xc8d6e8(0x1bf),_0x29b649[_0x29b649[_0xc8d6e8(0x420)]=0x1b5b]=_0xc8d6e8(0x420),_0x29b649[_0x29b649[_0xc8d6e8(0x4b0)]=0x1b5c]=_0xc8d6e8(0x4b0),_0x29b649[_0x29b649[_0xc8d6e8(0x448)]=0x1b5d]=_0xc8d6e8(0x448),_0x29b649[_0x29b649['CONNECTOR_DATA_TOO_LARGE']=0x1f41]=_0xc8d6e8(0x1cc),_0x29b649[_0x29b649[_0xc8d6e8(0x1f8)]=0x2329]=_0xc8d6e8(0x1f8),_0x29b649[_0x29b649[_0xc8d6e8(0x3fd)]=0x232a]=_0xc8d6e8(0x3fd),_0x29b649[_0x29b649[_0xc8d6e8(0x364)]=0x232b]=_0xc8d6e8(0x364),_0x29b649[_0x29b649[_0xc8d6e8(0x240)]=0x232c]=_0xc8d6e8(0x240),_0x29b649[_0x29b649[_0xc8d6e8(0x26d)]=0x232d]=_0xc8d6e8(0x26d),_0x29b649[_0x29b649[_0xc8d6e8(0x2a2)]=0x2711]=_0xc8d6e8(0x2a2),_0x29b649[_0x29b649[_0xc8d6e8(0x3bc)]=0x2712]=_0xc8d6e8(0x3bc),_0x29b649[_0x29b649[_0xc8d6e8(0x4f2)]=0x2713]=_0xc8d6e8(0x4f2),_0x29b649[_0x29b649[_0xc8d6e8(0x12d)]=0x2714]=_0xc8d6e8(0x12d),_0x29b649[_0x29b649['UNRECOGNIZED']=-0x1]=_0xc8d6e8(0x36f),_0x29b649))(Ri||{}),ce=(_0x43306b=>(_0x43306b[_0x43306b[_0xc8d6e8(0x33e)]=0x0]='UNIVER_UNKNOWN',_0x43306b[_0x43306b[_0xc8d6e8(0x3c7)]=0x1]=_0xc8d6e8(0x3c7),_0x43306b[_0x43306b[_0xc8d6e8(0x50a)]=0x2]=_0xc8d6e8(0x50a),_0x43306b[_0x43306b[_0xc8d6e8(0x4b6)]=0x3]='UNIVER_SLIDE',_0x43306b[_0x43306b[_0xc8d6e8(0x4ce)]=0x4]=_0xc8d6e8(0x4ce),_0x43306b[_0x43306b['UNRECOGNIZED']=-0x1]='UNRECOGNIZED',_0x43306b))(ce||{}),W=(_0x39ad7e=>(_0x39ad7e[_0x39ad7e['UNKNOWN_CMD']=0x0]=_0xc8d6e8(0x1f0),_0x39ad7e[_0x39ad7e[_0xc8d6e8(0x456)]=0x1]=_0xc8d6e8(0x456),_0x39ad7e[_0x39ad7e[_0xc8d6e8(0x475)]=0x2]=_0xc8d6e8(0x475),_0x39ad7e[_0x39ad7e[_0xc8d6e8(0x3bb)]=0x3]=_0xc8d6e8(0x3bb),_0x39ad7e[_0x39ad7e[_0xc8d6e8(0x38f)]=0x4]=_0xc8d6e8(0x38f),_0x39ad7e[_0x39ad7e['HEARTBEAT']=0x5]=_0xc8d6e8(0x1f4),_0x39ad7e[_0x39ad7e[_0xc8d6e8(0x4f5)]=0x6]=_0xc8d6e8(0x4f5),_0x39ad7e[_0x39ad7e[_0xc8d6e8(0x36f)]=-0x1]=_0xc8d6e8(0x36f),_0x39ad7e))(W||{}),Is=(_0x3dfede=>(_0x3dfede[_0x3dfede[_0xc8d6e8(0x41e)]=0x0]=_0xc8d6e8(0x41e),_0x3dfede[_0x3dfede['OK']=0x1]='OK',_0x3dfede[_0x3dfede[_0xc8d6e8(0x52c)]=0x2]=_0xc8d6e8(0x52c),_0x3dfede[_0x3dfede[_0xc8d6e8(0x209)]=0x3e9]=_0xc8d6e8(0x209),_0x3dfede[_0x3dfede[_0xc8d6e8(0x263)]=0x3ea]=_0xc8d6e8(0x263),_0x3dfede[_0x3dfede['UNRECOGNIZED']=-0x1]=_0xc8d6e8(0x36f),_0x3dfede))(Is||{}),Oi=(_0x15e2f8=>(_0x15e2f8[_0x15e2f8[_0xc8d6e8(0x3aa)]=0x0]=_0xc8d6e8(0x3aa),_0x15e2f8[_0x15e2f8[_0xc8d6e8(0x27e)]=0x1]=_0xc8d6e8(0x27e),_0x15e2f8[_0x15e2f8[_0xc8d6e8(0x473)]=0x2]=_0xc8d6e8(0x473),_0x15e2f8[_0x15e2f8[_0xc8d6e8(0x175)]=0x3]='UnitEmbedded',_0x15e2f8[_0x15e2f8['UnitSnapshot']=0x4]=_0xc8d6e8(0x1e9),_0x15e2f8[_0x15e2f8[_0xc8d6e8(0x36f)]=-0x1]=_0xc8d6e8(0x36f),_0x15e2f8))(Oi||{});const te=_0xc8d6e8(0x340),Or={};function yr(_0x3054c1){const _0x3b0510=_0xc8d6e8;var _0x3e1cca,_0x19517c,_0x3314a6,_0x1aaf76,_0x327f4d;const _0x155626=_0x3054c1[_0x3b0510(0x464)],_0x2c0945=JSON['parse'](_0x155626);switch(_0x2c0945['cmd']){case W[_0x3b0510(0x1f4)]:case W[_0x3b0510(0x456)]:{const _0x3d866d=_0x2c0945[_0x3b0510(0x3e7)];return{..._0x2c0945,'data':_0x3d866d,'cmd':_0x2c0945[_0x3b0510(0x2b2)]};}case W[_0x3b0510(0x475)]:{const _0x1c3c56=_0x2c0945[_0x3b0510(0x4d7)];return{..._0x2c0945,'data':_0x1c3c56,'cmd':_0x2c0945[_0x3b0510(0x2b2)]};}case W['RECV']:{const _0x14da82=_0x2c0945[_0x3b0510(0x38d)];switch(_0x14da82[_0x3b0510(0x411)]){case _0x275148['PERMISSION_REJ']:return{..._0x2c0945,'data':{..._0x14da82,'data':(_0x3e1cca=_0x14da82[_0x3b0510(0x313)])==null?void 0x0:_0x3e1cca['cs']},'cmd':_0x2c0945[_0x3b0510(0x2b2)]};case _0x275148['CHANGESET_ACK']:return{..._0x2c0945,'data':{..._0x14da82,'data':(_0x19517c=_0x14da82[_0x3b0510(0x4eb)])==null?void 0x0:_0x19517c['cs']},'cmd':_0x2c0945[_0x3b0510(0x2b2)]};case _0x275148['NEW_CHANGESETS']:return{..._0x2c0945,'data':{..._0x14da82,'data':(_0x3314a6=_0x14da82[_0x3b0510(0x3f4)])==null?void 0x0:_0x3314a6['cs']},'cmd':_0x2c0945[_0x3b0510(0x2b2)]};case _0x275148['CHANGESET_REJ']:return{..._0x2c0945,'data':{..._0x14da82,'data':(_0x1aaf76=_0x14da82[_0x3b0510(0x258)])==null?void 0x0:_0x1aaf76['cs']},'cmd':_0x2c0945['cmd']};case _0x275148[_0x3b0510(0x264)]:return{..._0x2c0945,'data':{..._0x14da82,'data':(_0x327f4d=_0x14da82[_0x3b0510(0x1e5)])==null?void 0x0:_0x327f4d['cs']},'cmd':_0x2c0945[_0x3b0510(0x2b2)]};case _0x275148[_0x3b0510(0x276)]:return{..._0x2c0945,'data':{..._0x14da82,'data':_0x14da82[_0x3b0510(0x4da)]},'cmd':_0x2c0945[_0x3b0510(0x2b2)]};case _0x275148[_0x3b0510(0x4d0)]:return{..._0x2c0945,'data':{..._0x14da82,'data':_0x14da82[_0x3b0510(0x2b8)]},'cmd':_0x2c0945[_0x3b0510(0x2b2)]};case _0x275148[_0x3b0510(0x2bb)]:return{..._0x2c0945,'data':{..._0x14da82,'data':_0x14da82[_0x3b0510(0x4a9)]},'cmd':_0x2c0945[_0x3b0510(0x2b2)]};case _0x275148[_0x3b0510(0x35a)]:return{..._0x2c0945,'data':{..._0x14da82,'data':_0x14da82[_0x3b0510(0x2c4)]},'cmd':_0x2c0945['cmd']};case _0x275148['LIVESHARE_FETCH_OPERATIONS']:case _0x275148[_0x3b0510(0x326)]:return{..._0x2c0945,'data':{..._0x14da82,'data':_0x14da82[_0x3b0510(0x23c)]},'cmd':_0x2c0945['cmd']};case _0x275148[_0x3b0510(0x1a7)]:return{..._0x2c0945,'data':{..._0x14da82,'data':_0x14da82[_0x3b0510(0x2c4)]},'cmd':_0x2c0945['cmd']};case _0x275148[_0x3b0510(0x525)]:return{..._0x2c0945,'data':_0x14da82,'cmd':_0x2c0945['cmd']};case _0x275148[_0x3b0510(0x143)]:return{..._0x2c0945,'data':{..._0x14da82,'data':_0x14da82[_0x3b0510(0x21d)]},'cmd':_0x2c0945[_0x3b0510(0x2b2)]};case _0x275148['UPDATE_PERMISSION_OBJ']:return{..._0x2c0945,'data':{..._0x14da82,'data':_0x14da82[_0x3b0510(0x1d0)]},'cmd':_0x2c0945[_0x3b0510(0x2b2)]};case _0x275148['SHOULD_CLOSE_CONN']:return{..._0x2c0945,'data':{..._0x14da82,'data':_0x14da82[_0x3b0510(0x142)]},'cmd':_0x2c0945[_0x3b0510(0x2b2)]};default:return _0x2c0945;}}default:return _0x2c0945;}}function wr(_0x21efd3){const _0x27722e=_0xc8d6e8;switch(_0x21efd3[_0x27722e(0x2b2)]){case W[_0x27722e(0x1f4)]:case W['HELLO']:return JSON[_0x27722e(0x306)]({'cmd':_0x21efd3[_0x27722e(0x2b2)],'routeKey':_0x21efd3['routeKey']});case W['INGEST']:{let _0x55fcaa;switch(_0x21efd3['data'][_0x27722e(0x411)]){case _0x275148['UPDATE_CURSOR']:{_0x55fcaa={'eventID':_0x275148[_0x27722e(0x276)],'updateCursorEvent':_0x21efd3[_0x27722e(0x464)][_0x27722e(0x464)]};break;}case _0x275148[_0x27722e(0x2bb)]:{_0x55fcaa={'eventID':_0x275148[_0x27722e(0x2bb)],'leaveEvent':_0x21efd3[_0x27722e(0x464)]['data']};break;}case _0x275148[_0x27722e(0x4d0)]:{_0x55fcaa={'eventID':_0x275148[_0x27722e(0x4d0)],'joinEvent':_0x21efd3[_0x27722e(0x464)][_0x27722e(0x464)]};break;}case _0x275148[_0x27722e(0x35a)]:{_0x55fcaa={'eventID':_0x275148[_0x27722e(0x35a)],'liveShareNewHost':_0x21efd3[_0x27722e(0x464)][_0x27722e(0x464)]};break;}case _0x275148[_0x27722e(0x326)]:{_0x55fcaa={'eventID':_0x275148[_0x27722e(0x326)],'liveShareOperation':_0x21efd3[_0x27722e(0x464)]['data']};break;}case _0x275148[_0x27722e(0x1a7)]:{_0x55fcaa={'eventID':_0x275148[_0x27722e(0x1a7)],'liveShareTerminate':_0x21efd3[_0x27722e(0x464)][_0x27722e(0x464)]};break;}case _0x275148[_0x27722e(0x436)]:{_0x55fcaa={'eventID':_0x275148[_0x27722e(0x436)],'liveShareRequestHost':_0x21efd3[_0x27722e(0x464)][_0x27722e(0x464)]};break;}case _0x275148[_0x27722e(0x250)]:{_0x55fcaa={'eventID':_0x275148[_0x27722e(0x250)]};break;}default:_0x55fcaa={'eventID':_0x21efd3[_0x27722e(0x464)][_0x27722e(0x411)]};}return JSON[_0x27722e(0x306)]({'cmd':_0x21efd3[_0x27722e(0x2b2)],'routeKey':_0x21efd3[_0x27722e(0x529)],'collaMsg':_0x55fcaa});}case W['JOIN']:return JSON['stringify']({'cmd':_0x21efd3[_0x27722e(0x2b2)],'routeKey':_0x21efd3[_0x27722e(0x529)],'joinReq':_0x21efd3[_0x27722e(0x464)]});case W[_0x27722e(0x3bb)]:return JSON[_0x27722e(0x306)]({'cmd':_0x21efd3[_0x27722e(0x2b2)],'routeKey':_0x21efd3[_0x27722e(0x529)],'leaveReq':_0x21efd3[_0x27722e(0x464)]});default:throw new Error(_0x27722e(0x169));}}var Dr=Object['defineProperty'],Pr=Object[_0xc8d6e8(0x4d8)],Ur=(_0x27a013,_0x29dae6,_0x312df4,_0x4a9154)=>{const _0x2e768b=_0xc8d6e8;for(var _0x56f2f7=_0x4a9154>0x1?void 0x0:_0x4a9154?Pr(_0x29dae6,_0x312df4):_0x29dae6,_0x44eb5d=_0x27a013[_0x2e768b(0x3d5)]-0x1,_0x24cfb2;_0x44eb5d>=0x0;_0x44eb5d--)(_0x24cfb2=_0x27a013[_0x44eb5d])&&(_0x56f2f7=(_0x4a9154?_0x24cfb2(_0x29dae6,_0x312df4,_0x56f2f7):_0x24cfb2(_0x56f2f7))||_0x56f2f7);return _0x4a9154&&_0x56f2f7&&Dr(_0x29dae6,_0x312df4,_0x56f2f7),_0x56f2f7;},qe=(_0x133371,_0xfee199)=>(_0x1d1f48,_0x1a184c)=>_0xfee199(_0x1d1f48,_0x1a184c,_0x133371);const yi=_0x84987f(_0xc8d6e8(0x167));function Nr(_0x56c744,_0x3b48bf,_0x447d8d){const _0xff0881=_0xc8d6e8;return _0x56c744+'/'+_0x3b48bf+_0xff0881(0x2eb)+_0x447d8d+_0xff0881(0x4ac);}let es=class extends _0x5e1db6{constructor(_0x206f48,_0x4bff3d,_0x3514fc,_0x1d36dd,_0x4530cb){const _0x57c07c=_0xc8d6e8;super(),this[_0x57c07c(0x192)]=_0x206f48,this['_ws']=_0x4bff3d,this[_0x57c07c(0x23d)]=_0x3514fc,this[_0x57c07c(0x355)]=_0x1d36dd,this[_0x57c07c(0x48f)]=_0x4530cb;}[_0xc8d6e8(0x265)](_0x45c639){const _0x4cefdb=_0xc8d6e8,_0x4d200c=this['_ws'][_0x4cefdb(0x265)](_0x45c639);if(!_0x4d200c)throw new Error(_0x4cefdb(0x1a3));const _0x5bef44=new _0x4711ac(),_0xc52177=new _0x378360();_0x5bef44[_0x4cefdb(0x31c)](_0x4d200c['close$'][_0x4cefdb(0x1ed)](_0x37bc03=>_0xc52177[_0x4cefdb(0x3f0)](_0x37bc03))),_0x5bef44[_0x4cefdb(0x31c)](_0x4e58a4(()=>_0xc52177[_0x4cefdb(0x20c)]()));const _0x32659=new _0x378360();_0x5bef44[_0x4cefdb(0x31c)](_0x4d200c[_0x4cefdb(0x3ec)][_0x4cefdb(0x1ed)](_0x2b064f=>_0x32659[_0x4cefdb(0x3f0)](_0x2b064f))),_0x5bef44[_0x4cefdb(0x31c)](_0x4e58a4(()=>_0x32659[_0x4cefdb(0x20c)]()));const _0x29cfa8=new _0x378360();_0x5bef44['add'](_0x4d200c['message$'][_0x4cefdb(0x1ed)](_0x39657a=>{const _0x1b4659=_0x4cefdb,_0x1dcf1a=yr(_0x39657a);_0x29cfa8[_0x1b4659(0x3f0)](_0x1dcf1a);})),_0x5bef44['add'](_0x4e58a4(()=>_0x29cfa8[_0x4cefdb(0x20c)]()));let _0x2c0ef5;const _0xb0f0e1=()=>{const _0xd839d9=_0x4cefdb;_0x32659[_0xd839d9(0x3f0)](new Event(_0xd839d9(0x174))),_0xc52177[_0xd839d9(0x3f0)](new CloseEvent(_0xd839d9(0x174))),_0x2c0ef5[_0xd839d9(0x2ba)]();};return _0x2c0ef5={'memberID':'','close$':_0xc52177[_0x4cefdb(0x4de)](),'error$':_0x32659[_0x4cefdb(0x4de)](),'open$':_0x4d200c[_0x4cefdb(0x1f7)],'message$':_0x29cfa8[_0x4cefdb(0x4de)](),'send':_0x4b6831=>{const _0x4cfa77=_0x4cefdb;if(_0x4b6831['cmd']===W[_0x4cfa77(0x38f)]){if(_0x4b6831[_0x4cfa77(0x464)][_0x4cfa77(0x411)]===_0x275148[_0x4cfa77(0x443)]){this[_0x4cfa77(0x4a6)](_0x2c0ef5,_0x4b6831[_0x4cfa77(0x464)])[_0x4cfa77(0x4fb)](_0x11f468=>{const _0x113785=_0x4cfa77;this[_0x113785(0x355)][_0x113785(0x398)](_0x11f468),_0xb0f0e1();});return;}if(_0x4b6831[_0x4cfa77(0x464)][_0x4cfa77(0x411)]===_0x275148['FETCH_MISSING']){const _0x5dc0a5=_0x4b6831['data'];this['_fetchMissChangesets'](_0x5dc0a5)['then'](_0x4fc442=>{const _0x1f8d1b=_0x4cfa77;_0x29cfa8[_0x1f8d1b(0x3f0)]({'cmd':W['RECV'],'code':Is['OK'],'routeKey':_0x5dc0a5[_0x1f8d1b(0x464)][_0x1f8d1b(0x17c)],'routeType':'','data':{'eventID':_0x275148['PSEUDO_FETCH_MISSING_RESULT'],'data':{'changesets':_0x4fc442}}});})['catch'](_0x17ed6a=>{const _0x2ebfa9=_0x4cfa77;this[_0x2ebfa9(0x355)][_0x2ebfa9(0x398)](_0x17ed6a),_0xb0f0e1();});return;}}_0x4d200c['send'](wr(_0x4b6831));},'close':()=>{const _0x45afab=_0x4cefdb;_0x4d200c[_0x45afab(0x2ba)](),_0x5bef44[_0x45afab(0x204)]();}},_0x2c0ef5;}async[_0xc8d6e8(0x4a6)](_0x32bd92,_0x25e468){const _0x321432=_0xc8d6e8;var _0x344bf0,_0x554f3c;const {unitType:_0x293072,unitID:_0x21a5ef,changeset:_0x29873f}=_0x25e468[_0x321432(0x464)],_0x300fc9={'unitID':_0x21a5ef,'memberID':_0x32bd92[_0x321432(0x3c4)],'type':_0x293072,'changeset':_0x595400(_0x29873f)},_0x301715=this[_0x321432(0x23d)][_0x321432(0x2ac)](Er),_0x12d149=this['_configService'][_0x321432(0x2ac)](te),_0x2e1129=Nr((_0x554f3c=(_0x344bf0=_0x12d149==null?void 0x0:_0x12d149[_0x321432(0x493)])!=null?_0x344bf0:_0x301715)!=null?_0x554f3c:br,_0x293072,_0x21a5ef);try{await this[_0x321432(0x192)][_0x321432(0x2cd)](_0x2e1129,{'body':_0x300fc9});}catch(_0xda71ab){throw this[_0x321432(0x355)][_0x321432(0x398)](_0x321432(0x181),_0x321432(0x4a3)),_0xda71ab;}}async['_fetchMissChangesets'](_0x5a29ab){const _0x21f5e1=_0xc8d6e8,{unitID:_0xddd9bb,from:_0x15d276,to:_0x5a884f,unitType:_0x375997}=_0x5a29ab['data'];return(await this[_0x21f5e1(0x48f)][_0x21f5e1(0x3c2)]({'metadata':void 0x0},{'unitID':_0xddd9bb,'type':_0x375997,'from':_0x15d276,'to':_0x5a884f}))[_0x21f5e1(0x2a1)];}};es=Ur([qe(0x0,_0x13f971(_0x5874d1)),qe(0x1,_0x13f971(_0x338344)),qe(0x2,_0x450caa),qe(0x3,_0x410e45),qe(0x4,_0x3701ce)],es);const Ar=_0xc8d6e8(0x484);function Mr(_0x483b6e){const _0x1c2982=_0xc8d6e8;return JSON['stringify'](_0x483b6e)[_0x1c2982(0x3d5)];}class wi{constructor(){const _0x2bf21d=_0xc8d6e8;g(this,_0x2bf21d(0x4dc),new _0x378360()),g(this,_0x2bf21d(0x3b8),this[_0x2bf21d(0x4dc)][_0x2bf21d(0x4de)]());}[_0xc8d6e8(0x440)](_0x27534b){const _0x58cdfc=_0xc8d6e8;this[_0x58cdfc(0x4dc)][_0x58cdfc(0x3f0)](_0x27534b);}}var xr=Object[_0xc8d6e8(0x17a)],Lr=Object['getOwnPropertyDescriptor'],$r=(_0x2c73da,_0x17da95,_0x2f0e38,_0x2e291e)=>{const _0x165cda=_0xc8d6e8;for(var _0x257d2d=_0x2e291e>0x1?void 0x0:_0x2e291e?Lr(_0x17da95,_0x2f0e38):_0x17da95,_0x2e83d9=_0x2c73da[_0x165cda(0x3d5)]-0x1,_0x416484;_0x2e83d9>=0x0;_0x2e83d9--)(_0x416484=_0x2c73da[_0x2e83d9])&&(_0x257d2d=(_0x2e291e?_0x416484(_0x17da95,_0x2f0e38,_0x257d2d):_0x416484(_0x257d2d))||_0x257d2d);return _0x2e291e&&_0x257d2d&&xr(_0x17da95,_0x2f0e38,_0x257d2d),_0x257d2d;},Hs=(_0x30645d,_0x2650a0)=>(_0x5d0e6d,_0x3fb7c5)=>_0x2650a0(_0x5d0e6d,_0x3fb7c5,_0x30645d);let Me=class extends _0x5e1db6{constructor(_0x298de2,_0x1229b0){const _0x571d8e=_0xc8d6e8;super(),g(this,_0x571d8e(0x3d4),new Map()),(this[_0x571d8e(0x2c7)]=_0x298de2,this[_0x571d8e(0x15e)]=_0x1229b0,this[_0x571d8e(0x43e)](_0x4e58a4(_0x88f83c(this[_0x571d8e(0x2c7)][_0x571d8e(0x497)](_0x4f645a[_0x571d8e(0x50a)])[_0x571d8e(0x236)](_0x38f68a(_0xa2a150=>_0xa2a150[_0x571d8e(0x4a7)]())),this[_0x571d8e(0x2c7)]['getTypeOfUnitDisposed$'](_0x4f645a['UNIVER_DOC'])['pipe'](_0x38f68a(_0x194bed=>_0x194bed[_0x571d8e(0x4a7)]())),this['_univerInstanceService'][_0x571d8e(0x497)](_0x4f645a[_0x571d8e(0x4b6)])[_0x571d8e(0x236)](_0x38f68a(_0x1e9bd4=>_0x1e9bd4['getUnitId']())))['subscribe'](_0x47045d=>this['_removeRoom'](_0x47045d)))));}[_0xc8d6e8(0x160)](_0xbd3ee5){const _0x16197e=_0xc8d6e8;this['_userManagerService'][_0x16197e(0x160)](_0xbd3ee5);}['getCurrentUser'](){const _0x356992=_0xc8d6e8;return this[_0x356992(0x15e)]['getCurrentUser']();}[_0xc8d6e8(0x288)](_0x552a1c,_0x3f66a7){const _0x3aeae6=_0xc8d6e8;let _0x185b2a=this[_0x3aeae6(0x3d4)][_0x3aeae6(0x2c2)](_0x552a1c);_0x185b2a||(_0x185b2a=new Hr(),this[_0x3aeae6(0x3d4)]['set'](_0x552a1c,_0x185b2a)),_0x185b2a['updateMember'](_0x3f66a7);}[_0xc8d6e8(0x122)](_0x23601c,_0x1bf68){const _0x310b02=_0xc8d6e8,_0x8969aa=this['_roomMembers'][_0x310b02(0x2c2)](_0x23601c);_0x8969aa&&_0x8969aa[_0x310b02(0x122)](_0x1bf68);}['getRoom'](_0x53c8a7){const _0x5294e0=_0xc8d6e8;return this['_roomMembers'][_0x5294e0(0x2c2)](_0x53c8a7);}['getMember'](_0x311728,_0x428426){const _0x381b94=_0xc8d6e8,_0x5cf7c7=this[_0x381b94(0x3d4)][_0x381b94(0x2c2)](_0x311728);if(_0x5cf7c7)return _0x5cf7c7['getMember'](_0x428426);}[_0xc8d6e8(0x4d3)](_0x2fadcf){const _0x31594b=_0xc8d6e8,_0x472a0d=this[_0x31594b(0x3d4)][_0x31594b(0x2c2)](_0x2fadcf);_0x472a0d&&(_0x472a0d['dispose'](),this[_0x31594b(0x3d4)][_0x31594b(0x2b0)](_0x2fadcf));}['dispose'](){const _0x460fef=_0xc8d6e8;this[_0x460fef(0x3d4)][_0x460fef(0x1da)](_0x1ff878=>_0x1ff878['dispose']()),this[_0x460fef(0x3d4)][_0x460fef(0x3ab)]();}};Me=$r([Hs(0x0,_0x2ddd21),Hs(0x1,_0x13f971(_0x142df8))],Me);class Hr extends _0x5e1db6{constructor(){const _0x24ffd9=_0xc8d6e8;super(...arguments),g(this,_0x24ffd9(0x27b),new Map());}[_0xc8d6e8(0x204)](){const _0x5c9d2d=_0xc8d6e8;this[_0x5c9d2d(0x27b)][_0x5c9d2d(0x3ab)]();}[_0xc8d6e8(0x288)](_0x1bf066){const _0x24a3c2=_0xc8d6e8;this[_0x24a3c2(0x27b)][_0x24a3c2(0x21c)](_0x1bf066[_0x24a3c2(0x3c4)],_0x1bf066);}[_0xc8d6e8(0x122)](_0xe598ea){const _0x5e3b10=_0xc8d6e8;this[_0x5e3b10(0x27b)][_0x5e3b10(0x2b0)](_0xe598ea);}[_0xc8d6e8(0x4c2)](_0x5636d1){const _0x232b9f=_0xc8d6e8;return this[_0x232b9f(0x27b)][_0x232b9f(0x2c2)](_0x5636d1);}[_0xc8d6e8(0x2f2)](){const _0x43c39b=_0xc8d6e8;return Array['from'](this[_0x43c39b(0x27b)]['values']());}}var jr=Object['defineProperty'],Br=Object['getOwnPropertyDescriptor'],kr=(_0x22963c,_0x284617,_0x4d1a69,_0x261034)=>{const _0x18022d=_0xc8d6e8;for(var _0x42612c=_0x261034>0x1?void 0x0:_0x261034?Br(_0x284617,_0x4d1a69):_0x284617,_0x554762=_0x22963c[_0x18022d(0x3d5)]-0x1,_0x30084b;_0x554762>=0x0;_0x554762--)(_0x30084b=_0x22963c[_0x554762])&&(_0x42612c=(_0x261034?_0x30084b(_0x284617,_0x4d1a69,_0x42612c):_0x30084b(_0x42612c))||_0x42612c);return _0x261034&&_0x42612c&&jr(_0x284617,_0x4d1a69,_0x42612c),_0x42612c;},Ee=(_0x278466,_0x263b8e)=>(_0x504106,_0x26d3c4)=>_0x263b8e(_0x504106,_0x26d3c4,_0x278466),ve=(_0x119354=>(_0x119354[_0x119354[_0xc8d6e8(0x3a2)]=0x0]='IDLE',_0x119354[_0x119354[_0xc8d6e8(0x49c)]=0x1]=_0xc8d6e8(0x49c),_0x119354[_0x119354[_0xc8d6e8(0x428)]=0x2]=_0xc8d6e8(0x428),_0x119354[_0x119354['ONLINE']=0x3]='ONLINE',_0x119354))(ve||{});let ts=class extends _0x2ea33c{constructor(_0x1b58e7,_0x3c4734,_0x5e3a8e,_0x2007b4,_0x5af8ed,_0xceacd1,_0x13b9a9,_0x34c684,_0xa95872,_0x35ac62){const _0x956a10=_0xc8d6e8;super(),g(this,_0x956a10(0x350),new _0xfe121(0x0)),g(this,'sessionStatus$',this[_0x956a10(0x350)][_0x956a10(0x4de)]()),g(this,_0x956a10(0x2d1),new _0x378360()),g(this,'event$',this[_0x956a10(0x2d1)][_0x956a10(0x4de)]()),g(this,_0x956a10(0x4ed)),g(this,_0x956a10(0x4f7)),g(this,_0x956a10(0x256)),g(this,_0x956a10(0x494),!0x1),g(this,_0x956a10(0x246),null),(this[_0x956a10(0x2ed)]=_0x1b58e7,this['_logService']=_0x5e3a8e,this['_beforeCloseService']=_0x2007b4,this[_0x956a10(0x3f7)]=_0x5af8ed,this['_configService']=_0xceacd1,this[_0x956a10(0x255)]=_0x13b9a9,this[_0x956a10(0x253)]=_0x34c684,this[_0x956a10(0x2df)]=_0xa95872,this[_0x956a10(0x14a)]=_0x35ac62,this['_shouldReportTelemetry']=!!this[_0x956a10(0x14a)],_0x3c4734[_0x956a10(0x236)](_0x6a5096(this['dispose$']))[_0x956a10(0x1ed)](_0x30c0be=>{const _0x576adb=_0x956a10;var _0x44314c;typeof _0x30c0be>'u'||(this[_0x576adb(0x4ed)]=_0x30c0be,_0x30c0be?(this[_0x576adb(0x327)](_0x30c0be),this[_0x576adb(0x4f7)]=_0x30c0be[_0x576adb(0x446)][_0x576adb(0x1ed)](_0x349f59=>{const _0x40942f=_0x576adb;_0x349f59[_0x40942f(0x529)]===this['_unitID']&&this[_0x40942f(0x125)](_0x349f59);})):(this[_0x576adb(0x2ea)](),this[_0x576adb(0x350)]['next'](0x2),(_0x44314c=this[_0x576adb(0x4f7)])==null||_0x44314c['unsubscribe'](),this[_0x576adb(0x4f7)]=null));}),this[_0x956a10(0x43e)](this['_beforeCloseService'][_0x956a10(0x285)](()=>{const _0x41d357=_0x956a10;var _0x3921eb;(_0x3921eb=this[_0x41d357(0x4ed)])==null||_0x3921eb[_0x41d357(0x3c1)]({'cmd':W[_0x41d357(0x3bb)],'data':{'roomID':this[_0x41d357(0x2ed)]}});})));}get['sessionStatus'](){const _0x190935=_0xc8d6e8;return this[_0x190935(0x350)][_0x190935(0x388)]();}[_0xc8d6e8(0x4b4)](){const _0x1f4220=_0xc8d6e8;var _0x34544f,_0x423414;return(_0x423414=(_0x34544f=this[_0x1f4220(0x4ed)])==null?void 0x0:_0x34544f['memberID'])!=null?_0x423414:null;}[_0xc8d6e8(0x204)](){const _0x38f21f=_0xc8d6e8;super[_0x38f21f(0x204)](),this[_0x38f21f(0x191)][_0x38f21f(0x3f0)](),this[_0x38f21f(0x191)][_0x38f21f(0x20c)]();}[_0xc8d6e8(0x2ba)](){const _0x930325=_0xc8d6e8;var _0x8c5ddc,_0x5a0479;this[_0x930325(0x2ea)](),(_0x8c5ddc=this[_0x930325(0x4ed)])==null||_0x8c5ddc['send']({'cmd':W[_0x930325(0x3bb)],'data':{'roomID':this[_0x930325(0x2ed)]}}),(_0x5a0479=this[_0x930325(0x4ed)])==null||_0x5a0479[_0x930325(0x2ba)](),this[_0x930325(0x2d1)][_0x930325(0x20c)](),this[_0x930325(0x350)][_0x930325(0x20c)](),this[_0x930325(0x204)]();}['_onCombEvent'](_0x230924){const _0x1444f4=_0xc8d6e8;_0x230924['cmd']===W[_0x1444f4(0x475)]?this[_0x1444f4(0x25b)](_0x230924):_0x230924[_0x1444f4(0x2b2)]===W[_0x1444f4(0x4f5)]&&this[_0x1444f4(0x3d3)](_0x230924);}[_0xc8d6e8(0x327)](_0x62dff5){const _0x4c5a68=_0xc8d6e8;this[_0x4c5a68(0x350)][_0x4c5a68(0x3f0)](0x1),_0x62dff5[_0x4c5a68(0x3c1)]({'cmd':W[_0x4c5a68(0x475)],'routeKey':this[_0x4c5a68(0x2ed)],'routeType':'','data':{'rooms':[{'roomID':this[_0x4c5a68(0x2ed)]}]}});}[_0xc8d6e8(0x25b)](_0x412e52){const _0x57d3d2=_0xc8d6e8;var _0x414f1c;if(_0x412e52[_0x57d3d2(0x53e)]===Is['FAIL']){this[_0x57d3d2(0x3f7)]['show']({'type':_0x49b044[_0x57d3d2(0x26c)],'content':this[_0x57d3d2(0x255)]['t'](_0x57d3d2(0x309))}),this['_sessionStatus$'][_0x57d3d2(0x3f0)](0x2);return;}this['_sessionStatus$']['next'](0x3);const _0x45f22d=(_0x414f1c=_0x412e52[_0x57d3d2(0x464)][_0x57d3d2(0x3bf)][this[_0x57d3d2(0x2ed)]])==null?void 0x0:_0x414f1c[_0x57d3d2(0x2e8)];_0x45f22d&&_0x45f22d[_0x57d3d2(0x1da)](_0x1f37f9=>this[_0x57d3d2(0x253)][_0x57d3d2(0x288)](this['_unitID'],_0x1f37f9));}['_onRecvEvent'](_0xa7527d){const _0x4093c9=_0xc8d6e8;try{const _0x581acc=_0xa7527d['data'];switch(_0x581acc[_0x4093c9(0x411)]){case _0x275148[_0x4093c9(0x4d0)]:this[_0x4093c9(0x39a)](_0x581acc),this[_0x4093c9(0x2d1)]['next'](_0x581acc);break;case _0x275148[_0x4093c9(0x2bb)]:this[_0x4093c9(0x230)](_0x581acc),this[_0x4093c9(0x2d1)][_0x4093c9(0x3f0)](_0x581acc);break;case _0x275148['CHANGESET_ACK']:case _0x275148['CHANGESET_SHOULD_RETRY']:this[_0x4093c9(0x243)](),this[_0x4093c9(0x3b1)](),this[_0x4093c9(0x2d1)]['next'](_0x581acc);break;case _0x275148[_0x4093c9(0x525)]:this[_0x4093c9(0x355)][_0x4093c9(0x398)]('save\x20fail\x20reason\x20is\x20'+JSON[_0x4093c9(0x306)](_0x581acc)),this[_0x4093c9(0x2d1)][_0x4093c9(0x3f0)](_0x581acc);break;case _0x275148[_0x4093c9(0x143)]:this[_0x4093c9(0x2df)][_0x4093c9(0x440)](_0x581acc[_0x4093c9(0x464)]),this[_0x4093c9(0x2d1)][_0x4093c9(0x3f0)](_0x581acc);break;default:this[_0x4093c9(0x2d1)][_0x4093c9(0x3f0)](_0x581acc);}}catch(_0x5d38b2){this[_0x4093c9(0x355)][_0x4093c9(0x398)](_0x5d38b2,_0xa7527d);}}['_onUserJoin'](_0x2dd0a8){const _0x44fb93=_0xc8d6e8;this[_0x44fb93(0x253)]['updateMember'](this[_0x44fb93(0x2ed)],_0x2dd0a8[_0x44fb93(0x464)]);}[_0xc8d6e8(0x230)](_0x2deff7){const _0x12d154=_0xc8d6e8;this['_memberService'][_0x12d154(0x122)](this[_0x12d154(0x2ed)],_0x2deff7[_0x12d154(0x464)][_0x12d154(0x3c4)]);}async[_0xc8d6e8(0x3c1)](_0x4330ba,_0x590861){const _0x3cb50c=_0xc8d6e8;if(this['sessionStatus']!==0x3||!this[_0x3cb50c(0x4ed)])throw new Error('[CollaborationSession]:\x20should\x20not\x20send\x20message\x20when\x20the\x20session\x20is\x20offline!');try{_0x4330ba[_0x3cb50c(0x411)]===_0x275148[_0x3cb50c(0x443)]&&(this['_scheduleCollaborationTimeoutTimer'](),this['_startTelemetryCollaborationNewChangeset'](_0x4330ba)),this['_socket']['send']({'cmd':W[_0x3cb50c(0x38f)],'routeKey':_0x590861,'routeType':'','data':_0x4330ba});}catch(_0x1eb0fd){this['_logService'][_0x3cb50c(0x398)](_0x1eb0fd);}}[_0xc8d6e8(0x47d)](){const _0x50397a=_0xc8d6e8;var _0x303aa6;this[_0x50397a(0x256)]=window[_0x50397a(0x232)](()=>{const _0x1baf77=_0x50397a;this[_0x1baf77(0x256)]=null,this[_0x1baf77(0x3f7)][_0x1baf77(0x339)]({'type':_0x49b044['Error'],'content':this['_localeService']['t'](_0x1baf77(0x4ec))});},(_0x303aa6=this[_0x50397a(0x23d)][_0x50397a(0x2ac)](bi))!=null?_0x303aa6:Ti);}['_clearCollaborationTimeoutTimer'](){const _0x2dacc9=_0xc8d6e8;this[_0x2dacc9(0x256)]&&(clearTimeout(this['_collaborationTimeoutTimer']),this['_collaborationTimeoutTimer']=null);}[_0xc8d6e8(0x349)](_0x4e7aa2){const _0x117339=_0xc8d6e8;if(!this[_0x117339(0x494)])return;const {data:_0x41f2bd}=_0x4e7aa2,{unitID:_0x5d325e,changeset:_0x3f00aa}=_0x41f2bd,{mutations:_0xa01402,type:_0xb47550}=_0x3f00aa;this['_telemetryInfo']={'unitId':_0x5d325e,'type':_0xb47550,'startTime':performance[_0x117339(0x21f)](),'stopTime':0x0,'duration':0x0,'size':Mr(_0xa01402)};}[_0xc8d6e8(0x243)](){const _0xce24ff=_0xc8d6e8;if(this[_0xce24ff(0x494)]){if(!this[_0xce24ff(0x246)]){this[_0xce24ff(0x355)][_0xce24ff(0x398)](_0xce24ff(0x181),_0xce24ff(0x4fa));return;}this[_0xce24ff(0x246)]['stopTime']=performance[_0xce24ff(0x21f)](),this[_0xce24ff(0x246)]['duration']=this[_0xce24ff(0x246)][_0xce24ff(0x330)]-this[_0xce24ff(0x246)]['startTime'],this[_0xce24ff(0x14a)][_0xce24ff(0x245)](Ar,this[_0xce24ff(0x246)]),this[_0xce24ff(0x246)]=null;}}[_0xc8d6e8(0x2ea)](){const _0x25bfa5=_0xc8d6e8;this[_0x25bfa5(0x246)]=null;}};ts=kr([Ee(0x2,_0x410e45),Ee(0x3,_0x55cff2),Ee(0x4,_0x1902d3),Ee(0x5,_0x450caa),Ee(0x6,_0x13f971(_0x8037c0)),Ee(0x7,_0x13f971(Me)),Ee(0x8,_0x13f971(wi)),Ee(0x9,_0x28e273(_0x15d9ac))],ts);var Wr=Object['defineProperty'],Fr=Object['getOwnPropertyDescriptor'],Vr=(_0x5ee402,_0x21972f,_0x248f00,_0xa1fbea)=>{const _0x288f44=_0xc8d6e8;for(var _0x7a00d=_0xa1fbea>0x1?void 0x0:_0xa1fbea?Fr(_0x21972f,_0x248f00):_0x21972f,_0x5070bd=_0x5ee402[_0x288f44(0x3d5)]-0x1,_0xc93396;_0x5070bd>=0x0;_0x5070bd--)(_0xc93396=_0x5ee402[_0x5070bd])&&(_0x7a00d=(_0xa1fbea?_0xc93396(_0x21972f,_0x248f00,_0x7a00d):_0xc93396(_0x7a00d))||_0x7a00d);return _0xa1fbea&&_0x7a00d&&Wr(_0x21972f,_0x248f00,_0x7a00d),_0x7a00d;},we=(_0x1b904d,_0x3bbcb6)=>(_0x2199af,_0x1d5fec)=>_0x3bbcb6(_0x2199af,_0x1d5fec,_0x1b904d);let xe=class extends _0x5e1db6{constructor(_0x450bf3,_0x14d2aa,_0x24b28c,_0x46d840,_0x4c0823,_0x3512cf,_0x50e23e){const _0x86bc7d=_0xc8d6e8;super(),g(this,'_socket$',new _0xfe121(void 0x0)),g(this,_0x86bc7d(0x3df),this[_0x86bc7d(0x391)][_0x86bc7d(0x4de)]()),g(this,_0x86bc7d(0x303),null),g(this,_0x86bc7d(0x369),new Map()),g(this,_0x86bc7d(0x126),new _0xfe121(ve[_0x86bc7d(0x3a2)])),g(this,_0x86bc7d(0x26f),this[_0x86bc7d(0x126)]['asObservable']()),g(this,_0x86bc7d(0x506),!0x1),g(this,_0x86bc7d(0x45c)),g(this,_0x86bc7d(0x1a4),0x0),g(this,_0x86bc7d(0x292)),g(this,'_timeoutTimer'),(this[_0x86bc7d(0x360)]=_0x450bf3,this[_0x86bc7d(0x255)]=_0x14d2aa,this[_0x86bc7d(0x3f7)]=_0x24b28c,this[_0x86bc7d(0x355)]=_0x46d840,this['_configService']=_0x4c0823,this['_socketService']=_0x3512cf,this['_httpService']=_0x50e23e,this[_0x86bc7d(0x1ac)]());}get[_0xc8d6e8(0x4ed)](){const _0x4dd275=_0xc8d6e8;return this[_0x4dd275(0x391)][_0x4dd275(0x388)]();}[_0xc8d6e8(0x1ac)](){const _0x424792=_0xc8d6e8;this[_0x424792(0x2fc)](),this[_0x424792(0x29e)]();}[_0xc8d6e8(0x204)](){const _0x513d87=_0xc8d6e8;super['dispose'](),this[_0x513d87(0x369)][_0x513d87(0x1da)](_0x28b218=>_0x28b218[_0x513d87(0x204)]()),this[_0x513d87(0x369)]['clear'](),this['_status$'][_0x513d87(0x20c)]();}async[_0xc8d6e8(0x392)](_0x34ce3d){const _0x5c1362=_0xc8d6e8;if(this['_sessions'][_0x5c1362(0x3eb)](_0x34ce3d))return this['_sessions'][_0x5c1362(0x2c2)](_0x34ce3d);this[_0x5c1362(0x48c)]();const _0x584d34=this[_0x5c1362(0x360)][_0x5c1362(0x15f)](ts,_0x34ce3d,this[_0x5c1362(0x391)][_0x5c1362(0x4de)]());return this[_0x5c1362(0x369)]['set'](_0x34ce3d,_0x584d34),_0x584d34;}[_0xc8d6e8(0x314)](_0x50e336){const _0xd65200=_0xc8d6e8;var _0x4b9515;const _0x48e42c=this['_sessions']['get'](_0x50e336);_0x48e42c&&(this[_0xd65200(0x369)][_0xd65200(0x2b0)](_0x50e336),_0x48e42c[_0xd65200(0x2ba)]()),this[_0xd65200(0x369)][_0xd65200(0x2b9)]||(_0x4b9515=this[_0xd65200(0x4ed)])==null||_0x4b9515[_0xd65200(0x2ba)]();}[_0xc8d6e8(0x1e6)](){const _0x44a4d6=_0xc8d6e8;this[_0x44a4d6(0x1a4)]=0x0,this['_retryConnectingTimer']!=null&&(clearTimeout(this[_0x44a4d6(0x45c)]),this['_retryConnectingTimer']=null),this[_0x44a4d6(0x291)]();}async[_0xc8d6e8(0x15d)](){const _0xe8419b=_0xc8d6e8;var _0x26812b,_0x4dd2b4,_0x34b113;const _0x41e6b1=this[_0xe8419b(0x23d)]['getConfig'](te),_0x3d4351=(_0x26812b=_0x41e6b1==null?void 0x0:_0x41e6b1[_0xe8419b(0x509)])!=null?_0x26812b:fr;return(_0x34b113=(_0x4dd2b4=(await this[_0xe8419b(0x127)][_0xe8419b(0x2c2)](_0x3d4351,{'headers':{'Content-Type':_0xe8419b(0x48a)}}))['body'])==null?void 0x0:_0x4dd2b4[_0xe8419b(0x528)])!=null?_0x34b113:'';}[_0xc8d6e8(0x234)](_0x18a373){const _0x22d7b3=_0xc8d6e8;var _0x234eac,_0x4f4a66;const _0x34baf6=this['_configService'][_0x22d7b3(0x2ac)](ur),_0x57f9c6=this[_0x22d7b3(0x23d)][_0x22d7b3(0x2ac)](te),_0x23bb53=(_0x4f4a66=(_0x234eac=_0x57f9c6==null?void 0x0:_0x57f9c6[_0x22d7b3(0x1cb)])!=null?_0x234eac:_0x34baf6)!=null?_0x4f4a66:dr,_0x44f9eb=new URL(_0x23bb53,window['location'][_0x22d7b3(0x3de)]);return _0x44f9eb['searchParams'][_0x22d7b3(0x21c)](_0x22d7b3(0x31f),_0x18a373),_0x44f9eb[_0x22d7b3(0x41c)]();}async[_0xc8d6e8(0x2bd)](){const _0x2d95be=_0xc8d6e8,_0x4ce67a=await this[_0x2d95be(0x15d)](),_0x47ca1c=this[_0x2d95be(0x234)](_0x4ce67a),_0xc4b013=this[_0x2d95be(0x1ef)][_0x2d95be(0x265)](_0x47ca1c);return this[_0x2d95be(0x303)]=_0xc4b013,_0xc4b013;}async['_tryEnsureSocket'](){const _0x5c161=_0xc8d6e8;var _0x4eac1e,_0x18a2e8;try{const _0x3322a1=(_0x18a2e8=(_0x4eac1e=this[_0x5c161(0x4ed)])!=null?_0x4eac1e:this[_0x5c161(0x303)])!=null?_0x18a2e8:await this[_0x5c161(0x2bd)]();if(_0x3322a1){const _0x39c461=_0x3322a1[_0x5c161(0x3c1)];_0x3322a1[_0x5c161(0x3c1)]=_0x477daf=>(this[_0x5c161(0x1a6)](),_0x39c461[_0x5c161(0x4ab)](_0x3322a1,[_0x477daf])),_0x3322a1[_0x5c161(0x446)][_0x5c161(0x1ed)](_0x1e4d11=>this[_0x5c161(0x47c)](_0x3322a1,_0x1e4d11)),_0x3322a1[_0x5c161(0x3ec)][_0x5c161(0x236)](_0xaf14a2(0x1))[_0x5c161(0x1ed)](_0x1b11e0=>this[_0x5c161(0x355)][_0x5c161(0x398)](_0x5c161(0x21b),_0x1b11e0)),_0x3322a1[_0x5c161(0x1f7)][_0x5c161(0x236)](_0xaf14a2(0x1))['subscribe'](()=>{const _0x3deada=_0x5c161;this[_0x3deada(0x215)](_0x3322a1);}),_0x3322a1[_0x5c161(0x455)]['pipe'](_0xaf14a2(0x1))['subscribe'](_0x448a0c=>{const _0xec6099=_0x5c161;this[_0xec6099(0x355)][_0xec6099(0x184)](_0xec6099(0x3c6),_0xec6099(0x1b9),_0x448a0c),this[_0xec6099(0x262)]();});}}catch(_0x1b3979){this['_logService'][_0x5c161(0x398)](_0x1b3979),this[_0x5c161(0x262)]();}}['_onConnectionOpen'](_0x16c2d5){const _0x5f5307=_0xc8d6e8;this['_logService'][_0x5f5307(0x184)](_0x5f5307(0x3c6),'socket\x20open.'),_0x16c2d5[_0x5f5307(0x3c1)]({'cmd':W[_0x5f5307(0x456)]}),this['_rescheduleHeartbeat']();}[_0xc8d6e8(0x2fc)](){const _0x162706=_0xc8d6e8;window[_0x162706(0x1af)](_0x162706(0x2f0),()=>this[_0x162706(0x51c)]());}[_0xc8d6e8(0x51c)](){const _0x10cfcd=_0xc8d6e8;this[_0x10cfcd(0x506)]=!0x1,this[_0x10cfcd(0x303)]=null,this[_0x10cfcd(0x126)]['next'](ve[_0x10cfcd(0x428)]),this[_0x10cfcd(0x391)]['next'](null),this[_0x10cfcd(0x42e)](),this[_0x10cfcd(0x512)]();}[_0xc8d6e8(0x262)](){const _0x3e99be=_0xc8d6e8;var _0x2cd382;this[_0x3e99be(0x51c)](),this['_retryCount']<((_0x2cd382=this['_configService'][_0x3e99be(0x2ac)](gr))!=null?_0x2cd382:Sr)?(this[_0x3e99be(0x3f7)][_0x3e99be(0x339)]({'key':_0x3e99be(0x284),'type':_0x49b044[_0x3e99be(0x26c)],'content':this[_0x3e99be(0x255)]['t'](_0x3e99be(0x406))}),this[_0x3e99be(0x291)]()):this['_messageService'][_0x3e99be(0x339)]({'key':_0x3e99be(0x284),'type':_0x49b044[_0x3e99be(0x394)],'content':this[_0x3e99be(0x255)]['t'](_0x3e99be(0x1ca))});}[_0xc8d6e8(0x29e)](){const _0x358438=_0xc8d6e8,_0x35e729=()=>{const _0x408c06=_0x284c;this[_0x408c06(0x4ed)]||this[_0x408c06(0x1e6)]();},_0x31fde2=()=>{const _0x4acf70=_0x284c;this[_0x4acf70(0x4ed)]||document[_0x4acf70(0x20f)]===_0x4acf70(0x36c)||this[_0x4acf70(0x1e6)]();};window[_0x358438(0x1af)](_0x358438(0x2a6),_0x35e729),document[_0x358438(0x1af)](_0x358438(0x200),_0x31fde2);}[_0xc8d6e8(0x291)](){const _0x3f81a6=_0xc8d6e8;var _0xeb2548;const _0x5b3e4e=this[_0x3f81a6(0x1a4)],_0x331b70=this[_0x3f81a6(0x23d)][_0x3f81a6(0x2ac)](te),_0x2c69b5=_0x5b3e4e===0x0?0x0:((_0xeb2548=_0x331b70==null?void 0x0:_0x331b70[_0x3f81a6(0x521)])!=null?_0xeb2548:pr)*0x2**_0x5b3e4e;this['_retryConnectingTimer']=window[_0x3f81a6(0x232)](()=>{const _0x154128=_0x3f81a6;clearTimeout(this['_retryConnectingTimer']),this[_0x154128(0x45c)]=null,this[_0x154128(0x48c)]();},_0x2c69b5),this[_0x3f81a6(0x1a4)]+=0x1;}[_0xc8d6e8(0x47c)](_0x27b7a7,_0x32b478){const _0x21ee86=_0xc8d6e8,{cmd:_0x26b247}=_0x32b478;_0x26b247===W[_0x21ee86(0x456)]&&!this['_socketReady']&&(_0x27b7a7['memberID']=_0x32b478[_0x21ee86(0x464)]['memberID'],this[_0x21ee86(0x391)][_0x21ee86(0x3f0)](_0x27b7a7),this[_0x21ee86(0x126)][_0x21ee86(0x3f0)](ve['ONLINE']),this['_socketReady']=!0x0,this['_candidateSocket']=null),_0x26b247===W[_0x21ee86(0x1f4)]&&this[_0x21ee86(0x42e)](),this['_rescheduleHeartbeat']();}[_0xc8d6e8(0x1a6)](){const _0x211cb5=_0xc8d6e8;var _0x4700a8;this['_clearHeartbeatTimer'](),this[_0x211cb5(0x292)]=window[_0x211cb5(0x232)](()=>this['_sendHeartbeat'](),(_0x4700a8=this[_0x211cb5(0x23d)][_0x211cb5(0x2ac)](vr))!=null?_0x4700a8:mr);}['_sendHeartbeat'](){const _0x57cb60=_0xc8d6e8;this[_0x57cb60(0x4ed)]['send']({'cmd':W[_0x57cb60(0x1f4)]}),this[_0x57cb60(0x466)]();}[_0xc8d6e8(0x466)](){const _0xd7cbe=_0xc8d6e8;var _0x4ba151;this[_0xd7cbe(0x1bd)]=window[_0xd7cbe(0x232)](()=>this[_0xd7cbe(0x262)](),(_0x4ba151=this[_0xd7cbe(0x23d)][_0xd7cbe(0x2ac)](bi))!=null?_0x4ba151:Ti);}[_0xc8d6e8(0x512)](){const _0x14da3e=_0xc8d6e8;this[_0x14da3e(0x292)]!=null&&(clearTimeout(this[_0x14da3e(0x292)]),this[_0x14da3e(0x292)]=null);}[_0xc8d6e8(0x42e)](){const _0x450172=_0xc8d6e8;this[_0x450172(0x1bd)]!=null&&(clearTimeout(this[_0x450172(0x1bd)]),this[_0x450172(0x1bd)]=null);}};xe=Vr([we(0x0,_0x13f971(_0x20e5db)),we(0x1,_0x13f971(_0x8037c0)),we(0x2,_0x1902d3),we(0x3,_0x410e45),we(0x4,_0x450caa),we(0x5,yi),we(0x6,_0x13f971(_0x5874d1))],xe);const Y=[];for(let i=0x0;i<0x100;++i)Y[_0xc8d6e8(0x183)]((i+0x100)[_0xc8d6e8(0x41c)](0x10)[_0xc8d6e8(0x357)](0x1));function Gr(_0x38ce18,_0x5931ee=0x0){const _0x1797c7=_0xc8d6e8;return(Y[_0x38ce18[_0x5931ee+0x0]]+Y[_0x38ce18[_0x5931ee+0x1]]+Y[_0x38ce18[_0x5931ee+0x2]]+Y[_0x38ce18[_0x5931ee+0x3]]+'-'+Y[_0x38ce18[_0x5931ee+0x4]]+Y[_0x38ce18[_0x5931ee+0x5]]+'-'+Y[_0x38ce18[_0x5931ee+0x6]]+Y[_0x38ce18[_0x5931ee+0x7]]+'-'+Y[_0x38ce18[_0x5931ee+0x8]]+Y[_0x38ce18[_0x5931ee+0x9]]+'-'+Y[_0x38ce18[_0x5931ee+0xa]]+Y[_0x38ce18[_0x5931ee+0xb]]+Y[_0x38ce18[_0x5931ee+0xc]]+Y[_0x38ce18[_0x5931ee+0xd]]+Y[_0x38ce18[_0x5931ee+0xe]]+Y[_0x38ce18[_0x5931ee+0xf]])[_0x1797c7(0x162)]();}let Nt;const Yr=new Uint8Array(0x10);function Kr(){const _0x878b60=_0xc8d6e8;if(!Nt){if(typeof crypto>'u'||!crypto[_0x878b60(0x435)])throw new Error(_0x878b60(0x463));Nt=crypto['getRandomValues'][_0x878b60(0x491)](crypto);}return Nt(Yr);}const zr=typeof crypto<'u'&&crypto[_0xc8d6e8(0x4a4)]&&crypto[_0xc8d6e8(0x4a4)][_0xc8d6e8(0x491)](crypto),js={'randomUUID':zr};function qr(_0x4feef8,_0x6a232c,_0x2afe44){const _0x3378b7=_0xc8d6e8;if(js[_0x3378b7(0x4a4)]&&!_0x6a232c&&!_0x4feef8)return js[_0x3378b7(0x4a4)]();_0x4feef8=_0x4feef8||{};const _0x38489c=_0x4feef8[_0x3378b7(0x51a)]||(_0x4feef8['rng']||Kr)();return _0x38489c[0x6]=_0x38489c[0x6]&0xf|0x40,_0x38489c[0x8]=_0x38489c[0x8]&0x3f|0x80,Gr(_0x38489c);}var Xr=Object[_0xc8d6e8(0x17a)],Jr=Object['getOwnPropertyDescriptor'],Zr=(_0x43581c,_0x236e95,_0x2e6800,_0x38228e)=>{const _0x2a4330=_0xc8d6e8;for(var _0x27eeb8=_0x38228e>0x1?void 0x0:_0x38228e?Jr(_0x236e95,_0x2e6800):_0x236e95,_0x1fd96e=_0x43581c[_0x2a4330(0x3d5)]-0x1,_0x3b4004;_0x1fd96e>=0x0;_0x1fd96e--)(_0x3b4004=_0x43581c[_0x1fd96e])&&(_0x27eeb8=(_0x38228e?_0x3b4004(_0x236e95,_0x2e6800,_0x27eeb8):_0x3b4004(_0x27eeb8))||_0x27eeb8);return _0x38228e&&_0x27eeb8&&Xr(_0x236e95,_0x2e6800,_0x27eeb8),_0x27eeb8;},At=(_0x1a51bd,_0xf711eb)=>(_0x2eaf35,_0x41b47f)=>_0xf711eb(_0x2eaf35,_0x41b47f,_0x1a51bd);let ft=class{constructor(_0x4e269c,_0x26adf5,_0x314f3e){const _0x3e61bd=_0xc8d6e8;this[_0x3e61bd(0x360)]=_0x4e269c,this[_0x3e61bd(0x196)]=_0x26adf5,this[_0x3e61bd(0x3ce)]=_0x314f3e;}[_0xc8d6e8(0x319)](_0x2dd337){const _0x57626f=_0xc8d6e8;this[_0x57626f(0x50b)](_0x2dd337),this[_0x57626f(0x1c4)](_0x2dd337);}[_0xc8d6e8(0x34b)](_0x332d79){const _0x33cdac=_0xc8d6e8,{unitID:_0x41c0d2}=_0x332d79,_0x418709=this['_renderManagerService'][_0x33cdac(0x352)](_0x41c0d2)[_0x33cdac(0x1d1)](_0x50fd0b),{redoCache:_0x3cd7b3}=_0x418709[_0x33cdac(0x244)]();if(_0x3cd7b3[_0x33cdac(0x3d5)]===0x0)return _0x332d79;let _0x343900=_0x4ef2fc[_0x33cdac(0x44c)](_0x332d79[_0x33cdac(0x133)][0x0]);for(let _0x30a51c=0x0;_0x30a51c<_0x3cd7b3[_0x33cdac(0x3d5)];_0x30a51c++){const _0x965f5a={'id':'doc.mutation.rich-text-editing','params':{..._0x3cd7b3[_0x30a51c]}},_0x21174d=this['_transformService']['transformMutation'](_0x343900,_0x965f5a,!0x1);if(_0x240244(_0x21174d))throw _0x21174d[_0x33cdac(0x398)];_0x343900=_0x21174d[_0x33cdac(0x4bf)];}return{..._0x4ef2fc['deepClone'](_0x332d79),'mutations':[_0x343900]};}[_0xc8d6e8(0x50b)](_0xcc6e2d){const _0x1ed592=_0xc8d6e8,{unitID:_0x4e5e1f}=_0xcc6e2d,_0x2949a5=this[_0x1ed592(0x3ce)][_0x1ed592(0x352)](_0x4e5e1f)[_0x1ed592(0x1d1)](_0x50fd0b),{undoCache:_0x51a8d0,redoCache:_0x327e65}=_0x2949a5[_0x1ed592(0x244)]();if(_0x51a8d0[_0x1ed592(0x3d5)]===0x0||_0x327e65[_0x1ed592(0x3d5)]===0x0)return;const _0x1efdf1=[],_0x3403d3=[];let _0x5d41f1=_0x4ef2fc[_0x1ed592(0x44c)](_0xcc6e2d[_0x1ed592(0x133)][0x0]),_0x568056=_0x4ef2fc['deepClone'](_0xcc6e2d[_0x1ed592(0x133)][0x0]);for(let _0x224cd7=_0x51a8d0['length']-0x1;_0x224cd7>=0x0;_0x224cd7--){const _0x28b9da={'id':'doc.mutation.rich-text-editing','params':{..._0x51a8d0[_0x224cd7]}},_0x48a043={'id':'doc.mutation.rich-text-editing','params':{..._0x327e65[_0x224cd7]}},_0x4278e7=this[_0x1ed592(0x196)][_0x1ed592(0x405)](_0x5d41f1,_0x28b9da,!0x1),_0x47cfc3=this[_0x1ed592(0x196)][_0x1ed592(0x405)](_0x568056,_0x48a043,!0x1);if(_0x240244(_0x4278e7))throw _0x4278e7[_0x1ed592(0x398)];if(_0x240244(_0x47cfc3))throw _0x47cfc3['error'];_0x1efdf1[_0x1ed592(0x1ab)](_0x4278e7[_0x1ed592(0x535)][_0x1ed592(0x477)]),_0x3403d3[_0x1ed592(0x1ab)](_0x47cfc3[_0x1ed592(0x535)]['params']),_0x5d41f1=_0x4278e7[_0x1ed592(0x4bf)],_0x568056=_0x47cfc3[_0x1ed592(0x4bf)];}_0x2949a5[_0x1ed592(0x516)]({'undoCache':_0x1efdf1,'redoCache':_0x3403d3});}[_0xc8d6e8(0x1c4)](_0x183300){const _0x500cac=_0xc8d6e8,{unitID:_0x5535de}=_0x183300,_0x3c8dc8=this[_0x500cac(0x3ce)][_0x500cac(0x352)](_0x5535de)[_0x500cac(0x1d1)](_0x50fd0b),_0x4e9fcc=_0x3c8dc8[_0x500cac(0x270)]();if(_0x4e9fcc==null)return;const _0x492140=[{'id':_0x500cac(0x156),'params':{'unitId':_0x183300[_0x500cac(0x17c)],'actions':null,'textRanges':[_0x4e9fcc]}}],_0xf04357=this['_transformService'][_0x500cac(0x370)](_0x183300,_0x492140);if(!_0x22d9be(_0xf04357))throw _0xf04357['error'];const _0x42fe5b=_0xf04357[_0x500cac(0x535)][0x0][_0x500cac(0x477)][_0x500cac(0x2b4)];Array[_0x500cac(0x254)](_0x42fe5b)&&_0x42fe5b[_0x500cac(0x3d5)]&&_0x3c8dc8[_0x500cac(0x24e)](_0x42fe5b[0x0]);}};ft=Zr([At(0x0,_0x13f971(_0x20e5db)),At(0x1,_0x59efa9),At(0x2,_0x272410)],ft);var Qr=Object[_0xc8d6e8(0x17a)],eo=Object[_0xc8d6e8(0x4d8)],to=(_0x3ed7df,_0x57cd7e,_0x8b0ddb,_0xb29b5e)=>{const _0xb3a97c=_0xc8d6e8;for(var _0x3839d2=_0xb29b5e>0x1?void 0x0:_0xb29b5e?eo(_0x57cd7e,_0x8b0ddb):_0x57cd7e,_0x4ba0ad=_0x3ed7df[_0xb3a97c(0x3d5)]-0x1,_0x58a712;_0x4ba0ad>=0x0;_0x4ba0ad--)(_0x58a712=_0x3ed7df[_0x4ba0ad])&&(_0x3839d2=(_0xb29b5e?_0x58a712(_0x57cd7e,_0x8b0ddb,_0x3839d2):_0x58a712(_0x3839d2))||_0x3839d2);return _0xb29b5e&&_0x3839d2&&Qr(_0x57cd7e,_0x8b0ddb,_0x3839d2),_0x3839d2;},Xe=(_0x58841c,_0x3859a2)=>(_0x1aae4c,_0x159abb)=>_0x3859a2(_0x1aae4c,_0x159abb,_0x58841c);let q=class extends _0x5e1db6{constructor(_0x97804d,_0x498ef6,_0x31d8bd,_0xb4a45,_0xfdee07){const _0x5dbd0e=_0xc8d6e8;super(),g(this,_0x5dbd0e(0x2b3),new Map()),g(this,_0x5dbd0e(0x203),new Map()),g(this,_0x5dbd0e(0x290),!0x1),(this[_0x5dbd0e(0x23d)]=_0x97804d,this['_localStorageService']=_0x498ef6,this[_0x5dbd0e(0x1c8)]=_0x31d8bd,this['_localeService']=_0xb4a45,this[_0x5dbd0e(0x2d3)]=_0xfdee07,this[_0x5dbd0e(0x453)]());}[_0xc8d6e8(0x43a)](){this['_disabled']=!0x0;}[_0xc8d6e8(0x19c)](){this['_disabled']=!0x1;}[_0xc8d6e8(0x204)](){const _0x59ce1e=_0xc8d6e8;this[_0x59ce1e(0x368)]()[_0x59ce1e(0x3e0)](()=>super[_0x59ce1e(0x204)]());}async[_0xc8d6e8(0x432)](_0x3bc939){const _0x53938c=_0xc8d6e8;return this[_0x53938c(0x290)]?null:this['_localStorageService'][_0x53938c(0x297)](Bs(_0x3bc939));}async[_0xc8d6e8(0x333)](_0x25e599,_0x3f68ed){const _0x140f0b=_0xc8d6e8;return!!this['_localStorageService'][_0x140f0b(0x498)](_0x25e599,_0x3f68ed);}[_0xc8d6e8(0x2f3)](_0x1003ab,_0x242421,_0x452ea8,_0x15f8bb){const _0x2d134c=_0xc8d6e8,_0x5772ab=this[_0x2d134c(0x2d3)][_0x2d134c(0x2f7)](_0x1003ab);this[_0x2d134c(0x2b3)][_0x2d134c(0x21c)](_0x1003ab,{'unitID':_0x1003ab,'type':_0x242421,'awaitingChangeset':_0x452ea8,'mutations':_0x15f8bb,'rev':_0x5772ab}),this['_saveTaskMap'][_0x2d134c(0x3eb)](_0x1003ab)||this[_0x2d134c(0x52f)](_0x1003ab);}[_0xc8d6e8(0x52f)](_0x454911){const _0xe66b71=_0xc8d6e8,_0x2c8f01=this['_getSaveTimeout']();_0x2c8f01===0x0?this[_0xe66b71(0x354)](_0x454911):this[_0xe66b71(0x203)][_0xe66b71(0x21c)](_0x454911,setTimeout(()=>this[_0xe66b71(0x354)](_0x454911),_0x2c8f01));}[_0xc8d6e8(0x540)](){const _0x1a2386=_0xc8d6e8;var _0x29ae1d;return(_0x29ae1d=this[_0x1a2386(0x23d)]['getConfig'](Ir))!=null?_0x29ae1d:Cr;}['_saveCache'](_0x44c1be){const _0x343169=_0xc8d6e8,_0x2baf1a=this[_0x343169(0x203)][_0x343169(0x2c2)](_0x44c1be);return _0x2baf1a!==void 0x0&&window['clearTimeout'](_0x2baf1a),this['_localStorageService'][_0x343169(0x498)](Bs(_0x44c1be),this[_0x343169(0x2b3)][_0x343169(0x2c2)](_0x44c1be))['then'](()=>this['_saveTaskMap'][_0x343169(0x2b0)](_0x44c1be));}async[_0xc8d6e8(0x368)](){const _0x352bfa=_0xc8d6e8,_0x10a89a=[];this['_saveTaskMap']['forEach']((_0x30181b,_0x4ca264)=>{const _0x227646=_0x284c;window[_0x227646(0x53c)](_0x30181b),_0x10a89a[_0x227646(0x183)](this[_0x227646(0x354)](_0x4ca264)[_0x227646(0x3e0)](()=>{const _0x1172a0=_0x227646;this[_0x1172a0(0x203)][_0x1172a0(0x2b0)](_0x4ca264);}));}),await Promise[_0x352bfa(0x14f)](_0x10a89a);}[_0xc8d6e8(0x453)](){const _0x385c49=_0xc8d6e8;this[_0x385c49(0x43e)](this[_0x385c49(0x1c8)]['registerBeforeClose'](()=>{const _0x3d5452=_0x385c49;if(this[_0x3d5452(0x203)][_0x3d5452(0x2b9)])return this[_0x3d5452(0x255)]['t']('collaboration-client.offline-data-not-saved');}));}};q=to([Xe(0x0,_0x450caa),Xe(0x1,_0x50a513),Xe(0x2,_0x55cff2),Xe(0x3,_0x13f971(_0x8037c0)),Xe(0x4,_0x13f971(_0x15b6ba))],q);function Bs(_0x2867ca){const _0x817884=_0xc8d6e8;return _0x817884(0x146)+_0x2867ca;}var so=Object[_0xc8d6e8(0x17a)],io=Object['getOwnPropertyDescriptor'],no=(_0x2322d0,_0x71848e,_0x266715,_0x23eabf)=>{const _0x26a10b=_0xc8d6e8;for(var _0x344170=_0x23eabf>0x1?void 0x0:_0x23eabf?io(_0x71848e,_0x266715):_0x71848e,_0x59a563=_0x2322d0[_0x26a10b(0x3d5)]-0x1,_0x7c0462;_0x59a563>=0x0;_0x59a563--)(_0x7c0462=_0x2322d0[_0x59a563])&&(_0x344170=(_0x23eabf?_0x7c0462(_0x71848e,_0x266715,_0x344170):_0x7c0462(_0x344170))||_0x344170);return _0x23eabf&&_0x344170&&so(_0x71848e,_0x266715,_0x344170),_0x344170;},Mt=(_0x53b2f2,_0x4c972b)=>(_0x20ee8b,_0x4ab461)=>_0x4c972b(_0x20ee8b,_0x4ab461,_0x53b2f2);function ro(_0x3e080b){const _0x448d01=_0xc8d6e8,{unitID:_0x33e4b7,mutations:_0x59ab22}=_0x3e080b;return{'unitId':_0x33e4b7,'subUnitId':_0x59ab22[0x0][_0x448d01(0x477)][_0x448d01(0x48b)]};}let vt=class{constructor(_0x502c5e,_0x50a028,_0x5a30af){const _0x4e3c07=_0xc8d6e8;this[_0x4e3c07(0x360)]=_0x502c5e,this['_transformService']=_0x50a028,this['_instanceService']=_0x5a30af;}[_0xc8d6e8(0x38c)](_0x51faad){const _0x2e8138=_0xc8d6e8;var _0x2bf06d,_0x3a7f74,_0x1fbe1b,_0x41a57d;const _0x25b224=this[_0x2e8138(0x360)][_0x2e8138(0x2c2)](_0x1e03cb),{unitId:_0xa62e56,subUnitId:_0x595d7f}=ro(_0x51faad),_0x54303d=_0x25b224[_0x2e8138(0x478)](_0xa62e56)[_0x2e8138(0x444)](),_0x53f614=(_0x3a7f74=(_0x2bf06d=this['_instanceService'][_0x2e8138(0x4fe)](_0xa62e56))==null?void 0x0:_0x2bf06d[_0x2e8138(0x404)]())==null?void 0x0:_0x3a7f74[_0x2e8138(0x3d7)]();if(_0x54303d['length']===0x0||!_0xa62e56||!_0x595d7f)return;const _0x2e8b0f=[{'id':_0x2c4628['id'],'params':{'unitId':_0xa62e56,'subUnitId':_0x53f614,'selections':_0x4ef2fc[_0x2e8138(0x44c)](_0x54303d)}}],_0x5f3724=this['_transformService'][_0x2e8138(0x370)](_0x51faad,_0x2e8b0f);if(!_0x22d9be(_0x5f3724))throw _0x5f3724[_0x2e8138(0x398)];const _0x4bfd41=(_0x41a57d=(_0x1fbe1b=_0x5f3724[_0x2e8138(0x535)][0x0])==null?void 0x0:_0x1fbe1b[_0x2e8138(0x477)])==null?void 0x0:_0x41a57d[_0x2e8138(0x3b2)];if(Array[_0x2e8138(0x254)](_0x4bfd41)&&_0x4bfd41[_0x2e8138(0x3d5)]){if(_0x4bfd41['length']===_0x2e8b0f[0x0][_0x2e8138(0x477)]['selections'][_0x2e8138(0x3d5)]&&_0x4bfd41[_0x2e8138(0x43d)]((_0x53687b,_0x2f8737)=>_0x3cb9ac[_0x2e8138(0x18b)](_0x53687b[_0x2e8138(0x4a8)],_0x2e8b0f[0x0][_0x2e8138(0x477)][_0x2e8138(0x3b2)][_0x2f8737]['range'])))return;this[_0x2e8138(0x360)][_0x2e8138(0x2c2)](_0x4171ed)['executeCommand'](_0x2c4628['id'],{'unitId':_0xa62e56,'subUnitId':_0x53f614,'selections':_0x4bfd41});}}};vt=no([Mt(0x0,_0x13f971(_0x20e5db)),Mt(0x1,_0x59efa9),Mt(0x2,_0x2ddd21)],vt);const Rt=_0x84987f(_0xc8d6e8(0x52d));var Di=(_0x2ff1e4=>(_0x2ff1e4[_0x2ff1e4[_0xc8d6e8(0x4e8)]=0x0]='NO_OTHER_CLIENTS_EDITING',_0x2ff1e4[_0x2ff1e4[_0xc8d6e8(0x4fc)]=0x1]='OTHER_CLIENTS_EDITING',_0x2ff1e4))(Di||{});const ks=0x7530,Ws=_0xc8d6e8(0x500);class oo extends _0x5e1db6{constructor(){const _0x4467c2=_0xc8d6e8;super(),g(this,_0x4467c2(0x437),_0x4ef2fc[_0x4467c2(0x347)]()),g(this,_0x4467c2(0x2e9),new Set()),g(this,_0x4467c2(0x277),new Map()),g(this,'_heartbeatTimer',null),g(this,'_clearOtherTimers',new Map()),g(this,'_unitStatus',new Map()),this[_0x4467c2(0x36a)]();}[_0xc8d6e8(0x204)](){const _0x308e3f=_0xc8d6e8;super[_0x308e3f(0x204)](),this['_clearOtherTimers'][_0x308e3f(0x1da)]((_0x1a3c7a,_0x2655e6)=>this[_0x308e3f(0x316)](_0x2655e6)),this[_0x308e3f(0x12f)]&&window['clearInterval'](this[_0x308e3f(0x12f)]);}[_0xc8d6e8(0x2ec)](_0x2311b2){const _0xd7256=_0xc8d6e8;return this[_0xd7256(0x21e)](_0x2311b2)[_0xd7256(0x236)](_0x5b41b7());}[_0xc8d6e8(0x3fc)](_0x4b22af){const _0x55f82b=_0xc8d6e8;this[_0x55f82b(0x2e9)][_0x55f82b(0x2b9)]===0x0&&this['_scheduleHeartbeat'](),this[_0x55f82b(0x2e9)][_0x55f82b(0x31c)](_0x4b22af),this[_0x55f82b(0x275)]({'type':0x0,'memberID':this[_0x55f82b(0x437)],'unitIDs':[_0x4b22af],'isForwarded':!0x1});}['disposeUnit'](_0xf52f7f){const _0x3109d0=_0xc8d6e8;this[_0x3109d0(0x2e9)]['delete'](_0xf52f7f),this[_0x3109d0(0x2e9)][_0x3109d0(0x2b9)]===0x0&&this[_0x3109d0(0x12f)]&&window[_0x3109d0(0x1eb)](this[_0x3109d0(0x12f)]);}[_0xc8d6e8(0x36a)](){const _0x89a533=_0xc8d6e8;this[_0x89a533(0x43e)](_0x4e58a4(_0x4ee00c(window,'storage')[_0x89a533(0x1ed)](_0x32df79=>{const _0x220107=_0x89a533;if(_0x32df79[_0x220107(0x1e3)]!==Ws||!_0x32df79[_0x220107(0x41f)])return;const _0x24307c=JSON[_0x220107(0x4d2)](_0x32df79['newValue']);this['_handleEvent'](_0x24307c);}))),window[_0x89a533(0x1af)](_0x89a533(0x282),()=>this['_send']({'type':0x1,'memberID':this['_id'],'unitIDs':Array[_0x89a533(0x381)](this[_0x89a533(0x2e9)])}));}['_handleEvent'](_0x98cd48){const _0x27edcf=_0xc8d6e8;switch(_0x98cd48['type']){case 0x0:this[_0x27edcf(0x41a)](_0x98cd48);break;case 0x1:this[_0x27edcf(0x222)](_0x98cd48);break;case 0x2:this[_0x27edcf(0x171)](_0x98cd48);break;}}[_0xc8d6e8(0x41a)](_0x20e758){const _0x5b3bc3=_0xc8d6e8,{unitIDs:_0x414f7f,memberID:_0x50db0b,isForwarded:_0x18c637}=_0x20e758;_0x414f7f[_0x5b3bc3(0x1da)](_0x37e360=>{const _0x1f9008=_0x5b3bc3;if(!_0x18c637&&this[_0x1f9008(0x277)][_0x1f9008(0x3eb)](_0x37e360)&&this[_0x1f9008(0x21e)](_0x37e360)['next'](0x1),!this['_unitOnClients'][_0x1f9008(0x3eb)](_0x37e360)||!this['_unitOnClients']['get'](_0x37e360)[_0x1f9008(0x3eb)](_0x50db0b)){const _0x1106cf=this[_0x1f9008(0x277)]['get'](_0x37e360)||new Set();_0x1106cf[_0x1f9008(0x31c)](_0x50db0b),this[_0x1f9008(0x277)][_0x1f9008(0x21c)](_0x37e360,_0x1106cf),this[_0x1f9008(0x197)](_0x50db0b);}}),_0x18c637||this['_send']({'type':0x0,'memberID':this[_0x5b3bc3(0x437)],'unitIDs':[...this[_0x5b3bc3(0x2e9)]],'isForwarded':!0x0});}[_0xc8d6e8(0x197)](_0x5abf2a){const _0x19415a=_0xc8d6e8;this[_0x19415a(0x316)](_0x5abf2a);const _0x1337cd=window[_0x19415a(0x232)](()=>{const _0x37ea25=_0x19415a;this[_0x37ea25(0x277)][_0x37ea25(0x1da)](_0x2eb637=>{const _0x1718b6=_0x37ea25;_0x2eb637[_0x1718b6(0x2b0)](_0x5abf2a);});},ks*0x2);this[_0x19415a(0x1f5)][_0x19415a(0x21c)](_0x5abf2a,_0x1337cd);}[_0xc8d6e8(0x316)](_0x18c3d2){const _0x5c0f04=_0xc8d6e8;if(this[_0x5c0f04(0x1f5)][_0x5c0f04(0x3eb)](_0x18c3d2)){const _0x1087d0=this[_0x5c0f04(0x1f5)][_0x5c0f04(0x2c2)](_0x18c3d2);_0x1087d0&&window[_0x5c0f04(0x53c)](_0x1087d0),this[_0x5c0f04(0x1f5)][_0x5c0f04(0x21c)](_0x18c3d2,null);}}['_handleLeaveEvent'](_0x204f5f){const _0x19c99f=_0xc8d6e8,{memberID:_0x2f072d,unitIDs:_0x45ed36}=_0x204f5f;_0x45ed36['forEach'](_0xafaa05=>{const _0x364cb7=_0x284c;var _0xbcda96;const _0x4dfd7a=this['_unitOnClients'][_0x364cb7(0x2c2)](_0xafaa05);_0x4dfd7a&&(_0x4dfd7a['delete'](_0x2f072d),(_0xbcda96=this[_0x364cb7(0x21e)](_0xafaa05))==null||_0xbcda96[_0x364cb7(0x3f0)](_0x4dfd7a[_0x364cb7(0x2b9)]===0x0?0x0:0x1));}),this[_0x19c99f(0x316)](_0x2f072d);}[_0xc8d6e8(0x171)](_0x1f3c7b){this['_scheduleClearOtherTimer'](_0x1f3c7b['memberID']);}[_0xc8d6e8(0x275)](_0x4acc1b){const _0x597058=_0xc8d6e8;localStorage[_0x597058(0x498)](Ws,JSON[_0x597058(0x306)](_0x4acc1b));}[_0xc8d6e8(0x351)](){const _0x417060=_0xc8d6e8;this[_0x417060(0x12f)]=window[_0x417060(0x1d6)](()=>{const _0x14541e=_0x417060;this[_0x14541e(0x275)]({'type':0x2,'memberID':this[_0x14541e(0x437)]});},ks);}[_0xc8d6e8(0x21e)](_0x1908f0){const _0x363e84=_0xc8d6e8;return this[_0x363e84(0x399)][_0x363e84(0x3eb)](_0x1908f0)||this[_0x363e84(0x399)][_0x363e84(0x21c)](_0x1908f0,new _0xfe121(0x0)),this[_0x363e84(0x399)][_0x363e84(0x2c2)](_0x1908f0);}}var ao=Object[_0xc8d6e8(0x17a)],co=Object[_0xc8d6e8(0x4d8)],ho=(_0x351b2f,_0x4b3e2a,_0x59ddec,_0x46ab7a)=>{const _0x19aec0=_0xc8d6e8;for(var _0x415327=_0x46ab7a>0x1?void 0x0:_0x46ab7a?co(_0x4b3e2a,_0x59ddec):_0x4b3e2a,_0x3444ff=_0x351b2f[_0x19aec0(0x3d5)]-0x1,_0x2781ed;_0x3444ff>=0x0;_0x3444ff--)(_0x2781ed=_0x351b2f[_0x3444ff])&&(_0x415327=(_0x46ab7a?_0x2781ed(_0x4b3e2a,_0x59ddec,_0x415327):_0x2781ed(_0x415327))||_0x415327);return _0x46ab7a&&_0x415327&&ao(_0x4b3e2a,_0x59ddec,_0x415327),_0x415327;},xt=(_0x296510,_0x8d0fe9)=>(_0x32e646,_0x5caef1)=>_0x8d0fe9(_0x32e646,_0x5caef1,_0x296510);let mt=class{constructor(_0x232670,_0x1c0d32,_0x5af3b5){const _0x433039=_0xc8d6e8;this[_0x433039(0x360)]=_0x232670,this[_0x433039(0x196)]=_0x1c0d32,this['_docStateChangeManagerService']=_0x5af3b5;}[_0xc8d6e8(0x27a)](_0x5bc7b7){const _0xfb4d77=_0xc8d6e8;this[_0xfb4d77(0x4e6)](_0x5bc7b7);}[_0xc8d6e8(0x34b)](_0x21da26){const _0x5857db=_0xc8d6e8,{unitID:_0x5d1c3a}=_0x21da26,{collaboration:_0x5df8d7}=this[_0x5857db(0x3e6)]['getStateCache'](_0x5d1c3a);if(_0x5df8d7[_0x5857db(0x3d5)]===0x0)return _0x21da26;let _0x8d6a47=_0x4ef2fc[_0x5857db(0x44c)](_0x21da26[_0x5857db(0x133)][0x0]);for(let _0x3a3b79=0x0;_0x3a3b79<_0x5df8d7['length'];_0x3a3b79++){const _0x3b06ce={'id':_0x5857db(0x156),'params':{'unitId':_0x5df8d7[_0x3a3b79][_0x5857db(0x367)],..._0x5df8d7[_0x3a3b79]['redoState']}},_0x5274c6=this[_0x5857db(0x196)]['transformMutation'](_0x8d6a47,_0x3b06ce,!0x1);if(_0x240244(_0x5274c6))throw _0x5274c6['error'];_0x8d6a47=_0x5274c6['m1Prime'];}return{..._0x4ef2fc[_0x5857db(0x44c)](_0x21da26),'mutations':[_0x8d6a47]};}[_0xc8d6e8(0x4e6)](_0x4669f8){const _0x4656e8=_0xc8d6e8,{unitID:_0x3f4815}=_0x4669f8,{history:_0x48a5b6,collaboration:_0x282bd1}=this[_0x4656e8(0x3e6)]['getStateCache'](_0x3f4815);if(_0x48a5b6['length']===0x0&&_0x282bd1[_0x4656e8(0x3d5)]===0x0)return;const _0x3b12b1=[],_0x2dd2f2=[];let _0x1eee36=_0x4ef2fc[_0x4656e8(0x44c)](_0x4669f8[_0x4656e8(0x133)][0x0]),_0x101275=_0x4ef2fc[_0x4656e8(0x44c)](_0x4669f8[_0x4656e8(0x133)][0x0]);for(let _0x2dc15f=_0x48a5b6[_0x4656e8(0x3d5)]-0x1;_0x2dc15f>=0x0;_0x2dc15f--){const _0x48ee4c={'id':_0x4656e8(0x156),'params':{'unitId':_0x48a5b6[_0x2dc15f]['unitId'],..._0x48a5b6[_0x2dc15f][_0x4656e8(0x3e8)]}},_0x56b9f1={'id':_0x4656e8(0x156),'params':{'unitId':_0x48a5b6[_0x2dc15f][_0x4656e8(0x367)],..._0x48a5b6[_0x2dc15f]['redoState']}},_0x307330=this['_transformService'][_0x4656e8(0x405)](_0x1eee36,_0x48ee4c,!0x1),_0x2da6b5=this[_0x4656e8(0x196)][_0x4656e8(0x405)](_0x101275,_0x56b9f1,!0x1);if(_0x240244(_0x307330))throw _0x307330['error'];if(_0x240244(_0x2da6b5))throw _0x2da6b5[_0x4656e8(0x398)];_0x3b12b1[_0x4656e8(0x1ab)]({..._0x48a5b6[_0x2dc15f],'undoState':_0x307330['m2Prime'][_0x4656e8(0x477)],'redoState':_0x2da6b5[_0x4656e8(0x535)][_0x4656e8(0x477)]}),_0x1eee36=_0x307330[_0x4656e8(0x4bf)],_0x101275=_0x2da6b5[_0x4656e8(0x4bf)];}_0x1eee36=_0x4ef2fc[_0x4656e8(0x44c)](_0x4669f8[_0x4656e8(0x133)][0x0]),_0x101275=_0x4ef2fc['deepClone'](_0x4669f8[_0x4656e8(0x133)][0x0]);for(let _0x13565a=_0x282bd1[_0x4656e8(0x3d5)]-0x1;_0x13565a>=0x0;_0x13565a--){const _0x4e2136={'id':'doc.mutation.rich-text-editing','params':{'unitId':_0x282bd1[_0x13565a][_0x4656e8(0x367)],..._0x282bd1[_0x13565a]['undoState']}},_0x5eaeff={'id':'doc.mutation.rich-text-editing','params':{'unitId':_0x282bd1[_0x13565a][_0x4656e8(0x367)],..._0x282bd1[_0x13565a][_0x4656e8(0x202)]}},_0x4bacce=this[_0x4656e8(0x196)]['transformMutation'](_0x1eee36,_0x4e2136,!0x1),_0xfa3732=this[_0x4656e8(0x196)][_0x4656e8(0x405)](_0x101275,_0x5eaeff,!0x1);if(_0x240244(_0x4bacce))throw _0x4bacce['error'];if(_0x240244(_0xfa3732))throw _0xfa3732[_0x4656e8(0x398)];_0x2dd2f2[_0x4656e8(0x1ab)]({..._0x282bd1[_0x13565a],'undoState':_0x4bacce['m2Prime'][_0x4656e8(0x477)],'redoState':_0xfa3732['m2Prime'][_0x4656e8(0x477)]}),_0x1eee36=_0x4bacce[_0x4656e8(0x4bf)],_0x101275=_0xfa3732[_0x4656e8(0x4bf)];}this[_0x4656e8(0x3e6)][_0x4656e8(0x4f4)](_0x3f4815,{'history':_0x3b12b1,'collaboration':_0x2dd2f2});}};mt=ho([xt(0x0,_0x13f971(_0x20e5db)),xt(0x1,_0x59efa9),xt(0x2,_0x13f971(_0x1fa86f))],mt);function Pi(_0x46d145){const _0x391c46=_0xc8d6e8;let _0x480250='';for(const _0x47d9ba of _0x46d145){const {startOffset:_0x2cd5a3,endOffset:_0x23e7a2,isActive:_0x49f223,rangeType:_0x464694,segmentId:_0x2b1c6c,segmentPage:_0x173e84}=_0x47d9ba;_0x480250[_0x391c46(0x3d5)]&&(_0x480250+=','),_0x480250+=_0x2cd5a3+':'+_0x23e7a2+':'+(_0x49f223?'1':'0')+':'+_0x464694+':'+_0x2b1c6c+':'+_0x173e84;}return _0x480250;}function lo(_0x2d843a){const _0x25ba4e=_0xc8d6e8,_0x42de5c=_0x2d843a[_0x25ba4e(0x3d8)](','),_0x57814f=[];for(const _0x39c212 of _0x42de5c){const [_0x2648e2,_0x2acd78,_0x2cdcdb,_0x3776f4,_0x488216,_0x463596]=_0x39c212['split'](':');_0x57814f[_0x25ba4e(0x183)]({'startOffset':Number(_0x2648e2),'endOffset':Number(_0x2acd78),'collapsed':_0x2648e2===_0x2acd78,'isActive':_0x2cdcdb==='1','rangeType':_0x3776f4===_0x38f481[_0x25ba4e(0x318)]?_0x38f481[_0x25ba4e(0x318)]:_0x38f481['RECT'],'segmentId':typeof _0x488216==_0x25ba4e(0x155)?String(_0x488216):'','segmentPage':Number(_0x463596!=null?_0x463596:-0x1)});}return _0x57814f['some'](_0x2b3850=>_0x2b3850[_0x25ba4e(0x25c)])||(_0x57814f[0x0][_0x25ba4e(0x25c)]=!0x0),_0x57814f;}class Cs extends _0x2ea33c{constructor(){const _0x27c75f=_0xc8d6e8;super(...arguments),g(this,_0x27c75f(0x144),new _0xfe121(null)),g(this,_0x27c75f(0x279),this[_0x27c75f(0x144)][_0x27c75f(0x4de)]());}[_0xc8d6e8(0x3ad)](_0x8fe82){const _0x4d9b8e=_0xc8d6e8,{unitID:_0x23a36f,memberID:_0x4f5f2c,textRanges:_0x27fa14}=_0x8fe82,_0xb2365c=Pi(_0x27fa14);if(_0xb2365c==='')return;const _0x360a3c={'unitID':_0x23a36f,'memberID':_0x4f5f2c,'selection':_0xb2365c};this[_0x4d9b8e(0x144)][_0x4d9b8e(0x3f0)](_0x360a3c);}}var _o=Object[_0xc8d6e8(0x17a)],uo=Object[_0xc8d6e8(0x4d8)],fo=(_0xd27ce1,_0x436f0e,_0x4bfc89,_0x5403da)=>{const _0x4a4e84=_0xc8d6e8;for(var _0x843800=_0x5403da>0x1?void 0x0:_0x5403da?uo(_0x436f0e,_0x4bfc89):_0x436f0e,_0x253825=_0xd27ce1[_0x4a4e84(0x3d5)]-0x1,_0x2bd401;_0x253825>=0x0;_0x253825--)(_0x2bd401=_0xd27ce1[_0x253825])&&(_0x843800=(_0x5403da?_0x2bd401(_0x436f0e,_0x4bfc89,_0x843800):_0x2bd401(_0x843800))||_0x843800);return _0x5403da&&_0x843800&&_o(_0x436f0e,_0x4bfc89,_0x843800),_0x843800;},Fs=(_0x1b9667,_0x2448e6)=>(_0x10cc71,_0x30c00e)=>_0x2448e6(_0x10cc71,_0x30c00e,_0x1b9667);let pt=class{constructor(_0x5151d3,_0x1e1682){const _0x10f39e=_0xc8d6e8;this['_injector']=_0x5151d3,this[_0x10f39e(0x196)]=_0x1e1682;}['transformSelections'](_0x446c3e){const _0x31f372=_0xc8d6e8;var _0x135079;const _0x2a0c52=this[_0x31f372(0x360)][_0x31f372(0x2c2)](_0x5930e4),_0x19e2a7=(_0x135079=_0x2a0c52[_0x31f372(0x199)]())!=null?_0x135079:[];if(_0x19e2a7[_0x31f372(0x3d5)]===0x0)return;const _0x1c8c06=_0x446c3e[_0x31f372(0x17c)],_0x87a769=[{'id':_0x31f372(0x156),'params':{'unitId':_0x1c8c06,'actions':null,'textRanges':_0x19e2a7}}],_0x1ee607=this['_transformService'][_0x31f372(0x370)](_0x446c3e,_0x87a769);if(!_0x22d9be(_0x1ee607))throw _0x1ee607['error'];const _0x12c3ae=_0x1ee607[_0x31f372(0x535)][0x0][_0x31f372(0x477)]['textRanges'];Array['isArray'](_0x12c3ae)&&_0x12c3ae['length']&&_0x2a0c52[_0x31f372(0x268)](_0x12c3ae,{'unitId':_0x1c8c06,'subUnitId':_0x1c8c06},!0x1);}};pt=fo([Fs(0x0,_0x13f971(_0x20e5db)),Fs(0x1,_0x59efa9)],pt);const vo=new Set([_0x550572['id']]);function Vs(_0x3ae5dc,_0x19b5dd,_0x1c9df8,_0x2ca01a,_0x23342b){const _0x48320f=_0xc8d6e8;var _0x4a1658,_0x28919c,_0x33e50d,_0x37a48b;const _0x3ca1a6=[];for(const _0xdb2613 of _0x3ae5dc)if(vo[_0x48320f(0x3eb)](_0xdb2613['id'])){if(_0x3ca1a6['length']>0x0)break;_0x3ca1a6[_0x48320f(0x183)](_0xdb2613);break;}else _0x3ca1a6[_0x48320f(0x183)](_0xdb2613);const _0x4f3185=(_0x28919c=(_0x4a1658=_0x23342b[_0x48320f(0x34e)]())==null?void 0x0:_0x4a1658['userID'])!=null?_0x28919c:_0x48320f(0x2d5),_0x1c1147=(_0x37a48b=(_0x33e50d=_0x23342b[_0x48320f(0x34e)]())==null?void 0x0:_0x33e50d[_0x48320f(0x3c4)])!=null?_0x37a48b:'unknown';return{'changeset':{'unitID':_0x19b5dd,'type':_0x3787b4(_0x1c9df8['getUnitType'](_0x19b5dd)),'baseRev':_0x2ca01a['getCurrentRevOfUnit'](_0x19b5dd),'revision':0x0,'userID':_0x4f3185,'memberID':_0x1c1147,'mutations':_0x3ca1a6},'pendingMutations':_0x3ae5dc[_0x48320f(0x357)](_0x3ca1a6['length'])};}function mo(_0x82e409,_0x1a301a,_0x2191ae,_0x5e2564,_0x55265b){const _0xa02889=_0xc8d6e8;var _0xd99aa,_0x29f75d,_0x21561a,_0x21dfa1;const _0x188779=[_0x82e409[_0xa02889(0x20d)]((_0x2cb82b,_0x4e3aa3)=>{const _0x44a1ef=_0xa02889;var _0x11bc4f;const {id:_0x49c673}=_0x2cb82b,{id:_0x21f0c1,type:_0x1b4383}=_0x4e3aa3,_0xfa6984=(_0x11bc4f=_0x2cb82b[_0x44a1ef(0x477)])!=null?_0x11bc4f:{'actions':null},_0x56a5d3=_0x4e3aa3[_0x44a1ef(0x477)];if(_0x49c673&&_0x49c673!==_0x21f0c1)throw new Error('Cannot\x20assemble\x20a\x20changeset\x20from\x20multiple\x20mutations\x20of\x20different\x20types:\x20'+_0x49c673+_0x44a1ef(0x182)+_0x21f0c1+'.');return{..._0x2cb82b,'id':_0x21f0c1,'type':_0x1b4383,'params':{'unitId':_0x56a5d3[_0x44a1ef(0x367)],'textRanges':_0x56a5d3['textRanges'],'actions':_0x528764['compose'](_0xfa6984['actions'],_0x56a5d3[_0x44a1ef(0x193)])}};},{})],_0x31caa7=(_0x29f75d=(_0xd99aa=_0x55265b[_0xa02889(0x34e)]())==null?void 0x0:_0xd99aa[_0xa02889(0x224)])!=null?_0x29f75d:'unknown',_0xe89211=(_0x21dfa1=(_0x21561a=_0x55265b[_0xa02889(0x34e)]())==null?void 0x0:_0x21561a[_0xa02889(0x3c4)])!=null?_0x21dfa1:'unknown';return{'changeset':{'unitID':_0x1a301a,'type':_0x3787b4(_0x2191ae[_0xa02889(0x426)](_0x1a301a)),'baseRev':_0x5e2564[_0xa02889(0x2f7)](_0x1a301a),'revision':0x0,'userID':_0x31caa7,'memberID':_0xe89211,'mutations':_0x188779},'pendingMutations':[]};}function Ui(_0xa617bc,_0x1ed2ae){const _0x50ecc7=_0xc8d6e8,_0x1f657a=new _0x20135c(0x1);return setTimeout(()=>_0x1f657a[_0x50ecc7(0x3f0)](_0x1ed2ae),_0xa617bc),_0x1f657a[_0x50ecc7(0x4de)]()[_0x50ecc7(0x236)](_0x134dae(0x1));}const po={'id':_0x8dc8a0['id'],'type':_0x3dc8ba['MUTATION'],'params':{}};var go=Object['defineProperty'],So=Object[_0xc8d6e8(0x4d8)],$e=(_0x2d8d18,_0x5c8a98,_0x1496bc,_0x574c25)=>{const _0x3ee480=_0xc8d6e8;for(var _0x47f9fc=_0x574c25>0x1?void 0x0:_0x574c25?So(_0x5c8a98,_0x1496bc):_0x5c8a98,_0x32eaa0=_0x2d8d18[_0x3ee480(0x3d5)]-0x1,_0x900e76;_0x32eaa0>=0x0;_0x32eaa0--)(_0x900e76=_0x2d8d18[_0x32eaa0])&&(_0x47f9fc=(_0x574c25?_0x900e76(_0x5c8a98,_0x1496bc,_0x47f9fc):_0x900e76(_0x47f9fc))||_0x47f9fc);return _0x574c25&&_0x47f9fc&&go(_0x5c8a98,_0x1496bc,_0x47f9fc),_0x47f9fc;},A=(_0x1b3d53,_0x548de6)=>(_0x394fd3,_0x4cf897)=>_0x548de6(_0x394fd3,_0x4cf897,_0x1b3d53),J=(_0x3e4647=>(_0x3e4647[_0xc8d6e8(0x37c)]=_0xc8d6e8(0x3ef),_0x3e4647[_0xc8d6e8(0x22f)]=_0xc8d6e8(0x3b5),_0x3e4647[_0xc8d6e8(0x1e0)]=_0xc8d6e8(0x32a),_0x3e4647[_0xc8d6e8(0x42c)]=_0xc8d6e8(0x3cc),_0x3e4647['AWAITING_WITH_PENDING']=_0xc8d6e8(0x13b),_0x3e4647[_0xc8d6e8(0x3e4)]=_0xc8d6e8(0x20b),_0x3e4647[_0xc8d6e8(0x317)]=_0xc8d6e8(0x2a7),_0x3e4647['OFFLINE']=_0xc8d6e8(0x2f0),_0x3e4647))(J||{});function _0x1849(){const _0x4c80c8=['_doReset','_iv','_snapshotServerService','ALREADY_EXISTS','bind','row','collabSubmitChangesetUrl','_shouldReportTelemetry','HmacSHA1','_updateLocalCursor','getTypeOfUnitDisposed$','setItem','HEADER_MENU','collabStatus.fetchMiss','sheetID','JOINING','getViewport','&to=','RECT','getAncestorScale','onSendChangeset','onMouseMove','submit\x20changeset\x20error!','randomUUID','AWAITING_WITH_PENDING','_submitChangeset','getUnitId','range','leaveEvent','type','apply','/new_changes','5230932mnfTzH','getOffsetConfig','_hideTimer','APPLY_PERMISSION_DENIED','none','onPointerLeave$','toggleOnline','getMemberID','_getAPIPrefixPath','UNIVER_SLIDE','SNAPSHOT_SERVER_URL_KEY','sin','saveImage','_textBubble','interceptor','SHOULD_CLOSE_CONN','file','authzUrl','m1Prime','black','_cursorInfo$','getMember','__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED','_transformStack','_state$','compute','_nRounds','subscribeEvent','setWaitCount','_colorAssignService','collabStatus.syncing','_lastPointer','collabStatus.notCollab','UNIVER_PROJECT','roomMembers$','USERS_ENTER','displayName','parse','_removeRoom','DEFAULT_FILE_NAME','_docSyncEditingCollabCursorService','_getSendChangesetTimeout','joinRsp','getOwnPropertyDescriptor','getSheetBySheetId','updateCursorEvent','ivSize','_commentUpdate$','_onRemoteRejected','asObservable','InsertRangeMoveRightCommandId','_commandService','patch','UniverIcon','[PendingState]:\x20received\x20rejection.','_data','[PendingState]:\x20received\x20acknowledgement.','_transformHistoryAndStateStack','_onRemoteChangeset','NO_OTHER_CLIENTS_EDITING','xlink:href','PSEUDO_FETCH_MISSING_RESULT','csAckEvent','session.collaboration-timeout','_socket','fillText','1111299oMnpVw','{fileID}','_notificationService','YUUMI_RATE_OVER_LIMIT','_permissionService','setStateCache','RECV','encode','_socketMessageSubscription','localeService','_state','telemetry\x20info\x20is\x20not\x20initialized','catch','OTHER_CLIENTS_EDITING','repeat','getUnit','_getDownloadEndpointURL','ACTIVE_UNIT_EVENT_CHANNEL','DeleteRangeMoveLeftCommandId','concat','SerializableCipher','off-line-single_clip0_910_343','_scheduleTimestamp','_socketReady','location','collab-client.tooltip.reconnect','wsSessionTicketUrl','UNIVER_SHEET','_transformUndoRedoStack','_replaceFileID','_online','jsx','M0\x200H16V16H0z','putCollaborators','_updateState','_clearHeartbeatTimer','UUID','_xformMode','loginUrlKey','setUndoRedoMutationParamsCache','_onLocalMutation','endRow','byteLength','random','_getSnapshotAPIPrefix','_onOffline','_removeCollabCursors','reverse','[SyncedState]:\x20received\x20acknowledgement.','M4.5865\x2011.6499C3.36983\x2011.6499\x201.6665\x2011.1024\x201.6665\x208.9124C1.6665\x206.3574\x204.2215\x205.8099\x204.9515\x205.8099C5.3165\x204.5324\x206.0465\x202.5249\x208.9665\x202.5249C11.5215\x202.5249\x2012.6165\x203.9849\x2012.9815\x205.2624C12.9815\x205.2624\x2016.2665\x205.6274\x2016.2665\x208.7299C16.2665\x2010.9199\x2014.8065\x2011.6499\x2013.3465\x2011.6499M6.7767\x2011.6497L8.9667\x2013.4747L11.8867\x209.82466','retryConnectingInterval','_keyPriorReset','listCollaborators','session','MSG_FOR_ERROR','objectID','_initMergeInterceptor','ticket','routeKey','mixIn','url(#on-line-single_clip0_910_349)','FAIL','univer-pro.collaboration-client.single-active-unit-service','_showConflictNotification','_scheduleSaving','finalize','AUTHZ_URL_KEY','url','workbook','rev','m2Prime','SHA1','substr','executeCommand','_changesetReqId','Could\x20not\x20dynamically\x20require\x20\x22','_colorIndex','clearTimeout','_redoStacks','code','c2Prime','_getSaveTimeout','removeMember','Base','_schedule','_onCombEvent','_status$','_httpService','onPointerEnter$','getCurrent','baseRev','ONLINE','searchParams','YUUMI_SUBSCRIPTION_NOT_FOUND','_collaborationController','_heartbeatTimer','_startDocCollabCursor','FromArray','assignAColorForMemberID','mutations','formatter','_drawAnchor','decryptBlock','_transformRemoteChangesetByIMECache','uploadFileServerUrl','triggerDblclick','pad','awaiting_with_pending','_color','whenReady','_substituteUndoStack','change$','_decreaseWaiting','_docTransformSelectionsService','shouldCloseConn','COMMENT_UPDATE','_collabCursorState$','COMPRESS_MUTATION_APPLY','unit-cache-','MoveRangeCommandId','36GmJwAl','ranges','_telemetryService','copyFileMeta','backgroundColor','closePath','_anchor','all','_urlService','_anchorDot','_getSheetObject','kdf','INVALID_ARGUMENT','string','doc.mutation.rich-text-editing','event$','CHANGESET_REVISION_CONFILICT','/object','_getCtorByUniverType','column','[OfflineState]:\x20received\x20rejection.','_getSessionTicket','_userManagerService','createInstance','setCurrentUser','_scene','toLowerCase','cursorInfo$','readInt32LE','getRangePointData','_map','univer-pro.collaboration-client-socket-service','uni.network.url-service','[serializeCombRequest]:\x20should\x20not\x20fall\x20into\x20default\x20branch!','createEncryptor','_singleActiveUnitService','_remoteChangesetQueue','hasOwnProperty','objectActions','_getAnchorBounding','registerRenderModule','_handleHeartbeatEvent','words','exports','connection\x20error','UnitEmbedded','5qSAmTZ','_compressMutationService','addObject','_createHandler','defineProperty','getCollabEntity','unitID','processBlock','onTransformState','__creator','collab-rect-range-','[CollaborationSession]','\x20-\x20','push','debug','Error\x20on\x20receiving\x20event','currentTheme$','floor','randomBytes','unit','replaceState','equals','bottom','5956752OoXGTG','image/bmp','Decryptor','_startCollaboration','dispose$','_http','actions','_type','hovered','_transformService','_scheduleClearOtherTimer','_getLoginPath','getDocRanges','onCommandExecuted','_backgroundColor','enableLocalCache','reset','getInterceptPoints','measureText','_render','revision','_roomMembers$','[CollaborationSocketService]:\x20failed\x20to\x20create\x20socket!','_retryCount','VIEW_MAIN','_rescheduleHeartbeat','LIVESHARE_TERMINATE','onRendered','#FFF','/block/','unshift','_initEventListeners','[OfflineState]:\x20received\x20acknowledgement.','_updateURLWithCurrentState','addEventListener','_drawRectRange','docStateChange$','_doFinalize','CHANGESET_ACK','number','drawWith','_change$','_handler','state','socket\x20close','c1Prime','Native\x20crypto\x20module\x20could\x20not\x20be\x20used\x20to\x20get\x20secure\x20random\x20number.','salt','_timeoutTimer','transformUndoRedo','APPLY_NON_SEQUENTIAL_REVISION','_process','Malformed\x20UTF-8\x20data','override','list','_transformPreviousActiveRange','transformChangesets','_transformStateCache','beginPath','_beforeCloseService','_sender','session.connection-failed','collabWebSocketUrl','CONNECTOR_DATA_TOO_LARGE','defs','_initRequestHeader','[CollaborationEntity]','updatePermissionObjEvent','with','registerRefRange','for','_initCloseConn','getCollabEntity$','setInterval','ReactCurrentOwner','_getMergeRange','activeSheet$','forEach','univer-online-status','$super','enc','addObjects','getTypeOfUnitAdded$','PENDING','_transformSelections','sendChangesetTimeout','key','children','csShouldRetryEvent','reconnect','state$','append','UnitSnapshot','pushState','clearInterval','_mode','subscribe','onlineStatusIcon','_socketService','UNKNOWN_CMD','_executeRemoteChangeset','_collabCursorController','_themeService','HEARTBEAT','_clearOtherTimers','_replayCachedMutations','open$','LICENSE_MAX_UNITS_EXCEEDED','withCredentials','Base64','...','unpad','clone','reqId','_docTransformIMECacheService','visibilitychange','saveChangeset','redoState','_saveTaskMap','dispose','isPermissionRej','_initUnitPermissionChange','_startSheetCollabCursor','verdancy600','JOIN_ROOM_FULL','_localCacheService','fetch_missing','complete','reduce','_nDataBytes','visibilityState','extend','_hover','getImageSourceCache','[PendingState]:\x20unhandled\x20univer\x20type:\x20','_updateLocalCache','_onConnectionOpen','_undoRedoService','_transformUndoredo','1em','image/png','name','[CollaborationSessionService]:\x20socket\x20error','set','commentUpdateEvent','_ensureSubject','now','saveSheetBlock','_parse','_handleLeaveEvent','appendMutation','userID','signUrlServerUrl','byteOffset','defaultProps','collaborators','_initStatusComponent','path','_registerRenderDependencies','univer-online-status-title','_createInitialState','HEARTBEAT_INTERVAL','SYNCED','_onUserLeave','registerHTTPInterceptor','setTimeout','_cursor','_createSocketURL','COMPRESS_MUTATION_SEND','pipe','sigBytes','onlyLocal','[CollaborationUndoRedoService]','/-/object/-/batch_allowed','editing\x20status\x20changed\x20to','liveShareOperation','_configService','updatePermissionPoint','requestParams','LICENSE_EXPORT_SIZE_EXCEEDED','_cursorShapes','_getAPIPrefix','_stopTelemetryCollaborationNewChangeset','getUndoRedoMutationParamsCache','capture','_telemetryInfo','rgba(255,\x20255,\x20255,\x200.01)','_syncEditingCollabCursorService','24231564vetwmX','_waitCount','responseType','createCollaborator','_config','setActiveRange','_getCurrentRevision','LIVESHARE_FETCH_OPERATIONS','NEW_CHANGESETS','defIds','_memberService','isArray','_localeService','_collaborationTimeoutTimer','crypto','csRejEvent','univer-offline','snapshot','_onJoinRoomEvent','isActive','_onCursorDelete','univer-online','POST','_HTTPService','InsertRangeMoveDownCommandId','_onConnectionFailed','JOIN_ROOM_NOT_ALLOWED','CHANGESET_SHOULD_RETRY','createSocket','_sheetTransformSelectionsService','_transformIMECache','replaceDocRanges','_name','BASE64','lineTo','Warning','LICENSE_DISTRO_REJECTED','ws://127.0.0.1:8000/universer-api/comb/connect','status$','getActiveRange','_unlockTransition','onMissedChangesetFetched','create','1809162RdbdgX','_send','UPDATE_CURSOR','_unitOnClients','_range','collabCursorState$','transformStateCache','_members','_disableEditing','color','HttpImport','join','sessionStatus$','_iKey','unload','_transformRemoteChangesetByStateCache','collaboration-session-retry','registerOnClose','DeleteRangeMoveUpCommandId','fetchMiss','updateMember','unitId\x20is\x20not\x20found','includes','pluginName','_onRemoteACK','_entityInit$','_doProcessBlock','originalMeta','_disabled','_tryReconnect','_sendHeartbeatTimer','init','react.element','_key','mode','getItem','collabStatus.synced','_checkMissing','MUTATION','charAt','_awaitingChangeset','_undoStacks','_listenToOnlineEvent','5039301LFxvLu','collab-text-range-','changesets','YUUMI_UNABLE_LOAD_URL','_labelPosition','ref','[OfflineState]:\x20invalid\x20calling\x20to\x20`resend`.','online','conflict','[CollaborationEntity]:\x20cannot\x20apply\x20missing\x20results\x20on\x20other\x20states!','_keySchedule','image/jpg','_refreshCollabCursors','getConfig','keySize','transformStack\x20failed!','batchAllowed','delete','__esModule','cmd','_cachedData','textRanges','roles','_onCursorUpdate','startRow','joinEvent','size','close','USERS_LEAVE','url(#off-line-single_clip0_910_343)','_createSocket','\x22.\x20Please\x20configure\x20the\x20dynamicRequireTargets\x20or/and\x20ignoreDynamicRequires\x20option\x20of\x20@rollup/plugin-commonjs\x20appropriately\x20for\x20this\x20require\x20call\x20to\x20work.','current','_hovered','getUnhiddenWorksheets','get','/role','liveShareNewHost','onRemoteRej','call','_univerInstanceService','attrs','_resendTimeout','padding','NoPadding','startsWith','post','SNAPSHOT_URL_KEY','_docTransformStateCacheService','onMissingChangesets','_event$','headers','_revisionService','update','unknown','[UniverCollaborationClientPlugin]','cfg','trim','max','univerjs-icon\x20univerjs-icon-','transformByState','Cipher','sid','currentSkeleton$','_commentService','ceil','_onRemoteRetry','unsubscribe','getCurrentUnitForType','clamp','jsxs','[PendingState]:\x20invalid\x20calling\x20to\x20`resend`.','RETRY_CONNECTING_MAX_COUNT','members','_selfUnitIDs','_throwTelemetryCollaborationNewChangeset','/unit/','getUnitStatus$','_unitID','getSheetBlock','setAlpha','offline','\x20to\x20','getAllMembers','updateOfflineData','_reverseMap','_initCommandExecutedListener','values','getCurrentRevOfUnit','arc','prototype','filter','onlineStatusTitle','_listenToOfflineEvent','moveTo','/resources','algo','blue400','popstate','_onFetchMissResult','_candidateSocket','LOGIN_URL_KEY','_initDependencies','stringify','getRelativeToViewportCoord','execute','session.room-full','getImage','put','_minBufferSize','fetching\x20missing\x20changesets\x20from\x20','_createHelper','href','_shapes','getParam','charCodeAt','permissionRejEvent','closeSession','InsertColCommandId','_removeClearOtherTimer','CONFLICT','TEXT','transformIMECache','image/gif','_cipher','add','OpenSSL','colorChannel1','sessionTicket','_getSignURL','tag','subunit','onReady','_getUploadFileURL','restore','LIVESHARE_OPERATION','_joinRoom','_updateStatus','fillStyle','pending','APPLY_REJECT','_append','?url=','urlChange$','_transitionLocked','stopTime','onSyncEditingCollabCursor','onTransformSelections','saveOfflineData','onlineStatus','refreshPermission','indexOf','_substituteRedoStack','saveSnapshot','show','target','addImageSourceCache','WordArray','HmacMD5','UNIVER_UNKNOWN','setParam','collaboration-client.config','_incrementRevisionNumber','SNAPSHOT_HAS_BEEN_REMOVED','iterations','_getUndoStack','_uiPartsService','setConfig','generateRandomId','Hasher','_startTelemetryCollaborationNewChangeset','_acknowledgedAwaitingChangeset','transformRemoteChangeset','top','[CollaborationEntity]:\x20cannot\x20lock\x20transition\x20twice!\x20This\x20is\x20an\x20implementation\x20error,\x20meaning\x20you\x20transit\x20the\x20collaboration\x20state\x20again\x20in\x20the\x20process\x20of\x20a\x20previous\x20transition.\x20This\x20should\x20never\x20happen.','getCurrentUser','_collaborationPaused','_sessionStatus$','_scheduleHeartbeat','getRenderById','replace','_saveCache','_logService','svg','slice','findNodePositionByCharIndex','objectType','LIVESHARE_NEW_HOST','save','entries','&assign=','_prevBlock','gold400','_injector','function','Pkcs7','default','LICENSE_IMPORT_SIZE_EXCEEDED','/allowed','body','unitId','exhaustSavingTask','_sessions','_init','Unknown\x20user','hidden','Latin1','onload','UNRECOGNIZED','transformMutationsWithChangeset','_refRangeService','/fetchmissing?from=','EXCHANGE_UPLOAD_FILE_SERVER_URL_KEY','ERROR_EXCEED_SIZE','getTime','fromCharCode','hasher','Utf8','_toggleOffline','fillRule','_context','NOT_COLLAB','history','FETCH_MISSING','PERMISSION_DENIED','/collaborator','from','_docSkeletonManagerService','BlockCipher','setShowComponents','getFocusedUnit','assign','_hasher','getValue','loadDoc','ciphertext','_invKeySchedule','transformSelections','collaMsg','skeleton','INGEST','COLLAB_SUBMIT_CHANGESET_URL','_socket$','requireSession','flatMap','Error','_getRedoStack','startColumn','permission.title','error','_unitStatus','_onUserJoin','UNAUTHENTICATED','[ConflictState]:\x20invalid\x20calling\x20to\x20`resend`.','objects','Hex','fetchThroughInterceptors','\x0aCurrent:\x20','deleteCollaborator','IDLE','contains','SEND_CHANGESET_TIMEOUT','_session','_lockTransition','_assignedColors','_hash','_doCryptBlock','Undefined','clear','on-line-single','syncEditingCollabCursor','_pendingMutations','_initStatusListener','_collabSessionService','_clearCollaborationTimeoutTimer','selections','encryptBlock','&source=','synced','_ENC_XFORM_MODE','onTransformRemoteChangesetByStateCache','commentUpdate$','failed\x20to\x20apply\x20missed\x20changesets!','_isPermissionRej','LEAVE','YUUMI_URL_COL_OUT_OF_RANGE','toggleOffline','onRemoteChangeset','roomInfos','react.fragment','send','fetchMissingChangesets','_clearUndo','memberID','_exhaustRemoteChangesetQueue','[CollaborationSessionService]','UNIVER_DOC','collaboration.closeRoom','_onRefRangeChange','format','you\x20should\x20override\x20\x22IUndoRedoService\x22\x20provided\x20in\x20\x22core\x22\x20package!','awaiting','_DEC_XFORM_MODE','_renderManagerService','msCrypto','[DataLoaderController]','createDecryptor','OnLineSingle','_onRecvEvent','_roomMembers','length','icon','getSheetId','split','_snapshotService','pauseCollaboration','_clearScheduledTask','getDeserializedSheetBlock','_entities','origin','socket$','then','height','_queuedRemoteChangesets','CHANGESET_REJ','FETCH_MISS','_updateSubUnitFromURLParams','_docStateChangeManagerService','infoRsp','undoState','url(#$1','SNAPSHOT_INVALID_SNAPSHOT','has','error$','_resendTimer','splice','not_collab','next','find','idSuffix','blockSize','newCsEvent','clipPath','_changesetSessionId','_messageService','getVpScrollXYInfoByPosToVp','round','INTERNAL_ERROR','_oKey','editingUnit','LICENSE_MAX_MEMBERS_PER_UNIT_EXCEEDED','currentColor','collaboratorID','json','action','MD5','reject','getActiveSheet','transformMutation','session.will-retry','COLLAB_WEB_SOCKET_URL','_resendWithTimeout','onTransformChange$','/rev/','Unknown\x20type\x20in\x20URL.\x20Will\x20not\x20load\x20files\x20from\x20remote\x20address.','registerComponent','lib','src','method','roomMembers','eventID','incrementRevOfUnit','width','/universer-api/stream/file/upload','_sendingTimer','isEditing','_cursors','_clearRedo','onRemoteAck','_handleJoinEvent','onTransformIME','toString','_imageSourceCache','UNKNOWN_CODE','newValue','APPLY_REVISION_CONFILICT','_syncEditingCollabCursor','removeParam','_initResize','_applyRemoteChangeset','This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!','getUnitType','onPointerMove$','OFFLINE','toRgbString','getSkeleton','_sheetSkeletonManagerService','AWAITING','TOO_MANY_REQUESTS','_clearTimeoutTimer','_loadDoc','COMPLETION_FINISHED','map','loadOfflineData','_setupSubUnitSync','buffer','getRandomValues','LIVESHARE_REQUEST_HOST','_id','/universer-api/comb','getCollabCursors$','disableLocalCache','\x20in\x20_schedule.','resolve','every','disposeWithMe','_drawTextRange','onCommentUpdate','div','symbol','SUBMIT_CHANGESET','getCurrentSelections','FileId','message$','UNDEFINED','APPLY_DUPLICATED','encrypt','697249utHCHK','[FetchingMissState]:\x20not\x20expected\x20to\x20receive\x20ack\x20when\x20`this._awaitingChangeset`\x20is\x20null!','deepClone','[CollaborationState]:\x20apply\x20error!','getOwnPropertySymbols','_toggleOnline','fill','setShapeProps','_updateCollabCursors','_setupBeforeClosingHandler','_registerDependencies','close$','HELLO','className','_createHmacHelper','conflict.title','_onConflict','cursorInfo','_retryConnectingTimer','[CollaborationEntity]:\x20invalid\x20state\x20transition!\x20State\x20transferred\x20from\x20is\x20not\x20the\x20current\x20state.\x0aBefore:\x20','_eventUnsubscribe','resend','evenodd','CipherParams','decrypt','crypto.getRandomValues()\x20not\x20supported.\x20See\x20https://github.com/uuidjs/uuid#getrandomvalues-not-supported','data','BufferedBlockAlgorithm','_waitForHeartbeatResponse','/universer-api/authz','/universer-api/snapshot','onRemoteRetry','transform','SUCCUSS','selection','EvpKDF','fetching\x20the\x20latest\x20document\x20from\x20the\x20server.','AES','enableSingleActiveInstanceLock','font','translate(.97)','HttpExport','focused$','JOIN','_createInitialStateImpl','params','getWorkbookSelections','/object/','enableOfflineEditing','ERROR_IMAGE','_onMessage','_scheduleCollaborationTimeoutTimer','text','status','Encryptor','/universer-api/snapshot/','readAsDataURL','conflict.content','collaboration_new_changeset','_collaborationSessionService','ENSURE_SNAPSHOT_EXECUTION','UNIVER_COLLABORATION_CLIENT_PLUGIN','_loadSheet','permission.content','application/json','subUnitId','_tryEnsureSocket'];_0x1849=function(){return _0x4c80c8;};return _0x1849();}const Ni=0xea60;class He{constructor(_0x997d1a,_0x3d96c9,_0xbc5740,_0x4f8f36,_0x12e239,_0x1d3a78,_0x1d4f71,_0x11a964,_0x214156){const _0x557eb8=_0xc8d6e8;g(this,'_awaitingChangeset',null),g(this,_0x557eb8(0x3ae),[]),(this[_0x557eb8(0x17c)]=_0x997d1a,this[_0x557eb8(0x4aa)]=_0x3d96c9,this[_0x557eb8(0x1b7)]=_0x12e239,this['_commandService']=_0x1d3a78,this[_0x557eb8(0x216)]=_0x1d4f71,this[_0x557eb8(0x2d3)]=_0x11a964,this[_0x557eb8(0x20a)]=_0x214156,this[_0x557eb8(0x29c)]=_0xbc5740,this[_0x557eb8(0x3ae)]=_0x4f8f36);}[_0xc8d6e8(0x299)](_0x1c560a){const _0x3c009b=_0xc8d6e8,_0x4be563=this[_0x3c009b(0x2d3)][_0x3c009b(0x2f7)](this[_0x3c009b(0x17c)]);return _0x1c560a[_0x3c009b(0x1a1)]>_0x4be563+0x1?(this[_0x3c009b(0x1b7)]['onMissingChangesets']({'from':_0x4be563,'to':_0x1c560a[_0x3c009b(0x1a1)]-0x1}),!0x0):!0x1;}[_0xc8d6e8(0x217)](_0x5e5521){const _0x17ebec=_0xc8d6e8;this[_0x17ebec(0x216)][_0x17ebec(0x1be)](this[_0x17ebec(0x17c)],_0x5e5521);}[_0xc8d6e8(0x1e1)](_0x54270b){const _0x5d2f99=_0xc8d6e8;var _0x3e4ab3,_0xc397b8;(_0xc397b8=(_0x3e4ab3=this[_0x5d2f99(0x1b7)])[_0x5d2f99(0x332)])==null||_0xc397b8[_0x5d2f99(0x2c6)](_0x3e4ab3,_0x54270b);}[_0xc8d6e8(0x267)](_0x948118){const _0x4d42c6=_0xc8d6e8;var _0x2c5a7c,_0x1994ca;return(_0x1994ca=(_0x2c5a7c=this[_0x4d42c6(0x1b7)])[_0x4d42c6(0x41b)])==null?void 0x0:_0x1994ca['call'](_0x2c5a7c,_0x948118);}['_transformStateCache'](_0x1e63a1){const _0x26f69b=_0xc8d6e8;var _0x1e4dfd,_0xdd1b5b;return(_0xdd1b5b=(_0x1e4dfd=this[_0x26f69b(0x1b7)])[_0x26f69b(0x17e)])==null?void 0x0:_0xdd1b5b[_0x26f69b(0x2c6)](_0x1e4dfd,_0x1e63a1);}[_0xc8d6e8(0x137)](_0x307441){const _0x27add7=_0xc8d6e8;var _0x4bddad,_0x116938,_0x213e95;return(_0x213e95=(_0x116938=(_0x4bddad=this[_0x27add7(0x1b7)])['onTransformRemoteChangesetByIMECache'])==null?void 0x0:_0x116938[_0x27add7(0x2c6)](_0x4bddad,_0x307441))!=null?_0x213e95:_0x307441;}[_0xc8d6e8(0x283)](_0xc49598){const _0x49392e=_0xc8d6e8;var _0x2f2242,_0x44a990,_0x4f256e;return(_0x4f256e=(_0x44a990=(_0x2f2242=this[_0x49392e(0x1b7)])[_0x49392e(0x3b7)])==null?void 0x0:_0x44a990[_0x49392e(0x2c6)](_0x2f2242,_0xc49598))!=null?_0x4f256e:_0xc49598;}[_0xc8d6e8(0x421)](_0x31e1f5){const _0x24f178=_0xc8d6e8;var _0x520c6e,_0x5d73c4;if(this[_0x24f178(0x4aa)]===ce[_0x24f178(0x3c7)]){const {unitID:_0x2588e6,mutations:_0x192e7a,memberID:_0x4d27ed}=_0x31e1f5,_0x2e801b=_0x192e7a[0x0][_0x24f178(0x477)][_0x24f178(0x2b4)];Array['isArray'](_0x2e801b)&&_0x2e801b[_0x24f178(0x3d5)]>0x0&&((_0x5d73c4=(_0x520c6e=this[_0x24f178(0x1b7)])[_0x24f178(0x331)])==null||_0x5d73c4[_0x24f178(0x2c6)](_0x520c6e,{'unitID':_0x2588e6,'memberID':_0x4d27ed,'textRanges':_0x2e801b}));}}['_updateLocalCache'](){const _0x4b869d=_0xc8d6e8;this['_localCacheService']['updateOfflineData'](this[_0x4b869d(0x17c)],this['type'],this[_0x4b869d(0x29c)],this[_0x4b869d(0x3ae)]);}[_0xc8d6e8(0x24f)](){const _0x42bf03=_0xc8d6e8;return this[_0x42bf03(0x2d3)]['getCurrentRevOfUnit'](this[_0x42bf03(0x17c)]);}['_incrementRevisionNumber'](){const _0x486ddb=_0xc8d6e8;this[_0x486ddb(0x2d3)][_0x486ddb(0x412)](this['unitID']);}[_0xc8d6e8(0x1f1)](_0x204812){const _0x3012b8=_0xc8d6e8;var _0x125ba7;let _0xae7f44=this['_transformRemoteChangesetByIMECache'](_0x204812);_0xae7f44=this[_0x3012b8(0x283)](_0xae7f44);const _0x25b4e1=_0x3b32ef(_0xae7f44[_0x3012b8(0x133)],this[_0x3012b8(0x4e0)],{'fromCollab':!0x0});if(!_0x25b4e1['result'])throw _0x25b4e1['error']instanceof Error?_0x25b4e1[_0x3012b8(0x398)]:new Error((_0x125ba7=_0x25b4e1[_0x3012b8(0x398)])!=null?_0x125ba7:_0x3012b8(0x44d));this[_0x3012b8(0x267)](_0xae7f44),this[_0x3012b8(0x1c6)](_0xae7f44),this[_0x3012b8(0x217)](_0x204812),this[_0x3012b8(0x1e1)](_0xae7f44),this[_0x3012b8(0x421)](_0xae7f44),this['_incrementRevisionNumber']();}}let Fe=class extends He{constructor(_0x1c7f9c,_0x58fa73,_0x569155,_0x413e2a,_0x151072,_0x331681,_0x418503,_0x38ed77,_0x268445,_0x51b36f){const _0x36b96a=_0xc8d6e8;super(_0x1c7f9c,_0x58fa73,null,[],_0x569155,_0x38ed77,_0x418503,_0x413e2a,_0x151072),g(this,_0x36b96a(0x47f),'synced'),(this[_0x36b96a(0x360)]=_0x331681,this[_0x36b96a(0x355)]=_0x268445,this[_0x36b96a(0x196)]=_0x51b36f);}['appendMutation'](_0x561976){const _0x4e4dd7=_0xc8d6e8,_0x499c5d=this['_injector'][_0x4e4dd7(0x15f)](pe,this[_0x4e4dd7(0x17c)],this[_0x4e4dd7(0x4aa)],[_0x561976],this[_0x4e4dd7(0x1b7)]);return _0x499c5d[_0x4e4dd7(0x124)](),_0x499c5d[_0x4e4dd7(0x214)](),_0x499c5d;}[_0xc8d6e8(0x3be)](_0x2c54fa){const _0x21221e=_0xc8d6e8;if(this['_checkMissing'](_0x2c54fa))return this[_0x21221e(0x360)][_0x21221e(0x15f)](he,this[_0x21221e(0x17c)],this['type'],null,[],null,[_0x2c54fa],this[_0x21221e(0x1b7)]);try{const _0x1fe359=this['_transformService'][_0x21221e(0x370)](_0x2c54fa,[po]);if(_0x22d9be(_0x1fe359)){const {c1Prime:_0xab2f1a}=_0x1fe359;return this['_executeRemoteChangeset'](_0xab2f1a),this;}throw _0x1fe359['error'];}catch(_0x1c6960){return this['_logService'][_0x21221e(0x398)](_0x1c6960),this[_0x21221e(0x45a)](!0x1);}}[_0xc8d6e8(0x45a)](_0x231623){const _0xe0fb3d=_0xc8d6e8;return this[_0xe0fb3d(0x360)][_0xe0fb3d(0x15f)](Re,this['unitID'],this[_0xe0fb3d(0x4aa)],null,[],this['_handler'],_0x231623);}[_0xc8d6e8(0x419)](){const _0xe363f2=_0xc8d6e8;throw new Error(_0xe363f2(0x51f));}[_0xc8d6e8(0x2c5)](){throw new Error('[SyncedState]:\x20received\x20rejection.');}[_0xc8d6e8(0x469)](){return this;}[_0xc8d6e8(0x3bd)](){const _0x3cb869=_0xc8d6e8;return this[_0x3cb869(0x360)][_0x3cb869(0x15f)](Oe,this['unitID'],this['type'],null,[],this[_0x3cb869(0x1b7)]);}[_0xc8d6e8(0x4b3)](){return this;}[_0xc8d6e8(0x45f)](){throw new Error('[SyncedState]:\x20invalid\x20calling\x20to\x20`resend`.');}[_0xc8d6e8(0x287)](){const _0x23d571=_0xc8d6e8,_0x44b089=this[_0x23d571(0x2d3)][_0x23d571(0x2f7)](this['unitID']);return this[_0x23d571(0x1b7)][_0x23d571(0x2d0)]({'from':_0x44b089,'to':0x0}),this[_0x23d571(0x360)]['createInstance'](he,this[_0x23d571(0x17c)],this['type'],null,[],null,[],this[_0x23d571(0x1b7)]);}};Fe=$e([A(0x3,_0x13f971(_0x15b6ba)),A(0x4,_0x13f971(q)),A(0x5,_0x13f971(_0x20e5db)),A(0x6,_0x2925fd),A(0x7,_0x4171ed),A(0x8,_0x410e45),A(0x9,_0x59efa9)],Fe);let pe=class extends He{constructor(_0xc1a5ac,_0x1fe991,_0xb1337,_0x4753b9,_0x4ebc39,_0x5cebf3,_0x4d4a31,_0x710fac,_0x2e3cb0,_0x345d61,_0x523a6b,_0x168fda,_0x2aa3c4,_0x5d1743){const _0xf3d9a7=_0xc8d6e8;super(_0xc1a5ac,_0x1fe991,null,_0xb1337,_0x4753b9,_0x345d61,_0x5d1743,_0x5cebf3,_0x4d4a31),g(this,_0xf3d9a7(0x47f),_0xf3d9a7(0x32a)),g(this,_0xf3d9a7(0x505),null),g(this,'_sendingTimer',null),(this[_0xf3d9a7(0x360)]=_0x4ebc39,this[_0xf3d9a7(0x253)]=_0x710fac,this[_0xf3d9a7(0x355)]=_0x2e3cb0,this['_configService']=_0x523a6b,this[_0xf3d9a7(0x196)]=_0x168fda,this[_0xf3d9a7(0x2c7)]=_0x2aa3c4);}[_0xc8d6e8(0x223)](_0x5ea849){const _0xd61b6=_0xc8d6e8;return this['_pendingMutations'][_0xd61b6(0x183)](_0x5ea849),this[_0xd61b6(0x214)](),this;}[_0xc8d6e8(0x3be)](_0x4c21cf){const _0x3170c2=_0xc8d6e8;if(this['_checkMissing'](_0x4c21cf))return this['_clearScheduledTask'](),this[_0x3170c2(0x360)][_0x3170c2(0x15f)](he,this[_0x3170c2(0x17c)],this['type'],null,this[_0x3170c2(0x3ae)],null,[_0x4c21cf],this[_0x3170c2(0x1b7)]);try{const _0x3e1d0b=this['_transformService'][_0x3170c2(0x370)](_0x4c21cf,this[_0x3170c2(0x3ae)]);if(_0x22d9be(_0x3e1d0b)){const {c1Prime:_0x1b5ee6,m2Prime:_0x31443d}=_0x3e1d0b;this[_0x3170c2(0x1f1)](_0x1b5ee6);const _0x20f302=this[_0x3170c2(0x360)][_0x3170c2(0x15f)](pe,this[_0x3170c2(0x17c)],this[_0x3170c2(0x4aa)],_0x31443d,this['_handler']);return this[_0x3170c2(0x3db)](),_0x20f302[_0x3170c2(0x124)](this['_scheduleTimestamp']?Math['max'](0x0,new Date()[_0x3170c2(0x375)]()-this['_scheduleTimestamp']):this['_getSendChangesetTimeout']()),_0x20f302;}throw _0x3e1d0b[_0x3170c2(0x398)];}catch(_0x369734){return this['_logService'][_0x3170c2(0x398)](_0x369734),this[_0x3170c2(0x45a)](!0x1);}}['onRemoteAck'](){const _0x5657c7=_0xc8d6e8;throw new Error(_0x5657c7(0x4e5));}[_0xc8d6e8(0x2c5)](){const _0x542252=_0xc8d6e8;throw new Error(_0x542252(0x4e3));}['onRemoteRetry'](){return this;}[_0xc8d6e8(0x3bd)](){const _0x27ae0b=_0xc8d6e8;return this['_clearScheduledTask'](),this[_0x27ae0b(0x360)][_0x27ae0b(0x15f)](Oe,this['unitID'],this[_0x27ae0b(0x4aa)],null,this[_0x27ae0b(0x3ae)],this[_0x27ae0b(0x1b7)]);}[_0xc8d6e8(0x4b3)](){return this;}[_0xc8d6e8(0x124)](_0x44bbe3){const _0x286a9d=_0xc8d6e8,_0x45bfb9=_0x44bbe3!=null?_0x44bbe3:this[_0x286a9d(0x4d6)]();this[_0x286a9d(0x505)]=new Date()[_0x286a9d(0x375)](),this[_0x286a9d(0x415)]=window[_0x286a9d(0x232)](()=>{const _0x326637=_0x286a9d;this[_0x326637(0x3db)]();let _0x43c7bf=null;switch(this[_0x326637(0x4aa)]){case ce[_0x326637(0x50a)]:{_0x43c7bf=Vs(this[_0x326637(0x3ae)],this[_0x326637(0x17c)],this[_0x326637(0x2c7)],this[_0x326637(0x2d3)],this[_0x326637(0x253)]);break;}case ce[_0x326637(0x3c7)]:{this[_0x326637(0x3ae)][_0x326637(0x43d)](_0x27e276=>_0x27e276['id']===_0x942aea['id'])?_0x43c7bf=mo(this['_pendingMutations'],this[_0x326637(0x17c)],this[_0x326637(0x2c7)],this['_revisionService'],this[_0x326637(0x253)]):_0x43c7bf=Vs(this['_pendingMutations'],this[_0x326637(0x17c)],this[_0x326637(0x2c7)],this[_0x326637(0x2d3)],this['_memberService']);break;}default:throw new Error(_0x326637(0x213)+this['type']+_0x326637(0x43b));}const {changeset:_0x2a5c35,pendingMutations:_0x19d221}=_0x43c7bf;this[_0x326637(0x1b7)][_0x326637(0x4a1)](_0x2a5c35);const _0x28f607=_0x19d221[_0x326637(0x3d5)]?this[_0x326637(0x360)]['createInstance'](ge,this[_0x326637(0x17c)],this[_0x326637(0x4aa)],_0x2a5c35,_0x19d221,this[_0x326637(0x1b7)],void 0x0):this[_0x326637(0x360)][_0x326637(0x15f)](Te,this[_0x326637(0x17c)],this['type'],_0x2a5c35,this[_0x326637(0x1b7)]);_0x28f607[_0x326637(0x214)](),this[_0x326637(0x1b7)]['onStateChange'](this,_0x28f607);},_0x45bfb9);}[_0xc8d6e8(0x4d6)](){const _0x28ae3d=_0xc8d6e8;var _0x3bbedd;const _0x27cb15=this[_0x28ae3d(0x23d)][_0x28ae3d(0x2ac)](te);return(_0x3bbedd=_0x27cb15==null?void 0x0:_0x27cb15[_0x28ae3d(0x1e2)])!=null?_0x3bbedd:_r;}[_0xc8d6e8(0x45f)](){const _0xf3d2d0=_0xc8d6e8;throw new Error(_0xf3d2d0(0x2e6));}[_0xc8d6e8(0x3db)](){const _0x891e9=_0xc8d6e8;this[_0x891e9(0x415)]!=null&&(clearTimeout(this[_0x891e9(0x415)]),this['_sendingTimer']=null);}[_0xc8d6e8(0x45a)](_0x462ea2){const _0x8ca6bc=_0xc8d6e8;return this[_0x8ca6bc(0x3db)](),this[_0x8ca6bc(0x360)][_0x8ca6bc(0x15f)](Re,this[_0x8ca6bc(0x17c)],this[_0x8ca6bc(0x4aa)],null,this[_0x8ca6bc(0x3ae)],this['_handler'],_0x462ea2);}};pe=$e([A(0x4,_0x13f971(_0x20e5db)),A(0x5,_0x13f971(_0x15b6ba)),A(0x6,_0x13f971(q)),A(0x7,_0x13f971(Me)),A(0x8,_0x410e45),A(0x9,_0x4171ed),A(0xa,_0x450caa),A(0xb,_0x59efa9),A(0xc,_0x2ddd21),A(0xd,_0x2925fd)],pe);let Te=class extends He{constructor(_0x191289,_0xf7c0e8,_0x2a14b0,_0x3cf983,_0x5e1b86,_0x1381fa,_0x450a6a,_0x1aad16,_0x4e9781,_0x4015a7,_0x56e850){const _0x2a50cd=_0xc8d6e8;super(_0x191289,_0xf7c0e8,_0x2a14b0,[],_0x3cf983,_0x1aad16,_0x56e850,_0x1381fa,_0x450a6a),g(this,_0x2a50cd(0x47f),'awaiting'),g(this,_0x2a50cd(0x2c9),0x0),g(this,'_resendTimer'),g(this,_0x2a50cd(0x1c9)),(this[_0x2a50cd(0x360)]=_0x5e1b86,this['_logService']=_0x4e9781,this['_transformService']=_0x4015a7);}[_0xc8d6e8(0x223)](_0xf310d7){const _0x19d370=_0xc8d6e8;this[_0x19d370(0x3db)]();const _0x38bca8=this[_0x19d370(0x360)][_0x19d370(0x15f)](ge,this[_0x19d370(0x17c)],this[_0x19d370(0x4aa)],this['_awaitingChangeset'],[_0xf310d7],this['_handler'],this['_resendTimer']);return _0x38bca8['_updateLocalCache'](),_0x38bca8;}[_0xc8d6e8(0x3be)](_0x211571){const _0x2b403a=_0xc8d6e8;if(this[_0x2b403a(0x299)](_0x211571))return this['_clearScheduledTask'](),this[_0x2b403a(0x360)][_0x2b403a(0x15f)](he,this[_0x2b403a(0x17c)],this['type'],this[_0x2b403a(0x29c)],[],null,[_0x211571],this[_0x2b403a(0x1b7)]);try{const _0x26a1c3=this['_transformService']['transformChangesets']([_0x211571],[this[_0x2b403a(0x29c)]],!0x1);if(_0x36cff1(_0x26a1c3)){const {c1Prime:_0x1ffb4a,c2Prime:_0x35f135}=_0x26a1c3;this['_executeRemoteChangeset'](_0x1ffb4a[0x0]),_0x35f135[0x0][_0x2b403a(0x12a)]=this[_0x2b403a(0x24f)](),this[_0x2b403a(0x3db)]();const _0x5db867=this[_0x2b403a(0x360)][_0x2b403a(0x15f)](Te,this['unitID'],this[_0x2b403a(0x4aa)],_0x35f135[0x0],this[_0x2b403a(0x1b7)]);return _0x5db867['_updateLocalCache'](),_0x5db867;}return this[_0x2b403a(0x45a)](!0x1);}catch(_0x4a8185){return this[_0x2b403a(0x355)][_0x2b403a(0x398)](_0x4a8185),this[_0x2b403a(0x45a)](!0x1);}}[_0xc8d6e8(0x419)](_0x568afd){const _0x3b74d6=_0xc8d6e8;this[_0x3b74d6(0x3db)]();const _0x16ebbd=this[_0x3b74d6(0x2d3)][_0x3b74d6(0x2f7)](this[_0x3b74d6(0x17c)]);if(_0x568afd[_0x3b74d6(0x1a1)]<_0x16ebbd-0x1)return this;if(this[_0x3b74d6(0x299)](_0x568afd))return this['_injector'][_0x3b74d6(0x15f)](he,this[_0x3b74d6(0x17c)],this[_0x3b74d6(0x4aa)],null,[],this['_awaitingChangeset'],[],this['_handler']);this[_0x3b74d6(0x341)]();const _0x1bef5e=this['_injector'][_0x3b74d6(0x15f)](Fe,this[_0x3b74d6(0x17c)],this[_0x3b74d6(0x4aa)],this[_0x3b74d6(0x1b7)]);return _0x1bef5e[_0x3b74d6(0x214)](),_0x1bef5e;}[_0xc8d6e8(0x2c5)](_0x9a373b){const _0x44dc12=_0xc8d6e8;return this[_0x44dc12(0x45a)](!!(_0x9a373b!=null&&_0x9a373b['isPermissionRej']));}[_0xc8d6e8(0x469)](_0x1ac0a1){const _0x3f3ae5=_0xc8d6e8;return this[_0x3f3ae5(0x2c9)]>Ni?this['toggleOffline']():(this['_resendTimer']=Ui(this[_0x3f3ae5(0x2c9)],{'timeout':this[_0x3f3ae5(0x2c9)],'reqId':_0x1ac0a1['reqId']}),this[_0x3f3ae5(0x1c9)]=this[_0x3f3ae5(0x3ed)][_0x3f3ae5(0x1ed)](({reqId:_0x5b461a,timeout:_0x5311c0})=>{const _0x23db0c=_0x3f3ae5;this[_0x23db0c(0x408)](_0x5b461a,_0x5311c0);}),this);}[_0xc8d6e8(0x3bd)](){const _0x1828eb=_0xc8d6e8;return this[_0x1828eb(0x3db)](),this['_injector'][_0x1828eb(0x15f)](Oe,this[_0x1828eb(0x17c)],this[_0x1828eb(0x4aa)],this[_0x1828eb(0x29c)],[],this[_0x1828eb(0x1b7)]);}[_0xc8d6e8(0x4b3)](){return this;}[_0xc8d6e8(0x45f)](){const _0x1c3864=_0xc8d6e8;this[_0x1c3864(0x1b7)][_0x1c3864(0x4a1)](this[_0x1c3864(0x29c)]);}['_onConflict'](_0x25f823){const _0xd4450c=_0xc8d6e8;return this['_clearScheduledTask'](),this[_0xd4450c(0x360)][_0xd4450c(0x15f)](Re,this[_0xd4450c(0x17c)],this[_0xd4450c(0x4aa)],this[_0xd4450c(0x29c)],[],this['_handler'],_0x25f823);}[_0xc8d6e8(0x408)](_0x280328,_0x2044c5){const _0x8ad305=_0xc8d6e8;var _0x2ba5da;_0x280328===((_0x2ba5da=this[_0x8ad305(0x29c)])==null?void 0x0:_0x2ba5da[_0x8ad305(0x1fe)])&&(this[_0x8ad305(0x45f)](),this['_resendTimeout']=_0x2044c5===0x0?0x3e8:_0x2044c5*0x2);}[_0xc8d6e8(0x3db)](){const _0x26c0b3=_0xc8d6e8;var _0x1f8997;(_0x1f8997=this[_0x26c0b3(0x1c9)])==null||_0x1f8997['unsubscribe'](),this['_resendTimeout']=0x0;}};Te=$e([A(0x4,_0x13f971(_0x20e5db)),A(0x5,_0x13f971(_0x15b6ba)),A(0x6,_0x13f971(q)),A(0x7,_0x4171ed),A(0x8,_0x410e45),A(0x9,_0x59efa9),A(0xa,_0x2925fd)],Te);let ge=class extends He{constructor(_0x5b6f22,_0x5099e8,_0x2e4f52,_0x5e83aa,_0x4d3a30,_0x411188,_0x7e46fa,_0x235e95,_0x179d34,_0xac969c,_0x3b5bc7,_0x39deb6,_0x72c822){const _0x9957ba=_0xc8d6e8;super(_0x5b6f22,_0x5099e8,_0x2e4f52,_0x5e83aa,_0x4d3a30,_0xac969c,_0x72c822,_0x235e95,_0x179d34),g(this,_0x9957ba(0x47f),'awaiting_with_pending'),g(this,'_resendTimeout',0x0),g(this,_0x9957ba(0x3ed)),g(this,_0x9957ba(0x1c9)),(this[_0x9957ba(0x360)]=_0x7e46fa,this[_0x9957ba(0x355)]=_0x3b5bc7,this[_0x9957ba(0x196)]=_0x39deb6,_0x411188&&(this[_0x9957ba(0x3ed)]=_0x411188,this[_0x9957ba(0x1c9)]=this[_0x9957ba(0x3ed)][_0x9957ba(0x1ed)](({reqId:_0x29fcbf,timeout:_0x2cc03a})=>{this['_resendWithTimeout'](_0x29fcbf,_0x2cc03a);})));}['appendMutation'](_0x388c27){return this['_pendingMutations']['push'](_0x388c27),this;}[_0xc8d6e8(0x3be)](_0x43ea84){const _0x2a6f90=_0xc8d6e8;if(this[_0x2a6f90(0x299)](_0x43ea84))return this[_0x2a6f90(0x3db)](),this[_0x2a6f90(0x360)][_0x2a6f90(0x15f)](he,this['unitID'],this[_0x2a6f90(0x4aa)],this[_0x2a6f90(0x29c)],this['_pendingMutations'],null,[_0x43ea84],this[_0x2a6f90(0x1b7)]);try{const _0x5afabc=this['_transformService'][_0x2a6f90(0x1c5)]([_0x43ea84],[this[_0x2a6f90(0x29c)]],!0x1);if(_0x36cff1(_0x5afabc)){const {c1Prime:_0x3322f4,c2Prime:_0x53e007}=_0x5afabc,_0xb84bc0=this[_0x2a6f90(0x196)][_0x2a6f90(0x370)](_0x3322f4[0x0],this[_0x2a6f90(0x3ae)]);if(_0x22d9be(_0xb84bc0)){const {c1Prime:_0x54a18b,m2Prime:_0x3e89c3}=_0xb84bc0;return this[_0x2a6f90(0x1f1)](_0x54a18b),_0x53e007[0x0]['baseRev']=this[_0x2a6f90(0x24f)](),this[_0x2a6f90(0x3db)](),this[_0x2a6f90(0x360)][_0x2a6f90(0x15f)](ge,this[_0x2a6f90(0x17c)],this[_0x2a6f90(0x4aa)],_0x53e007[0x0],_0x3e89c3,this[_0x2a6f90(0x1b7)],void 0x0);}throw _0xb84bc0[_0x2a6f90(0x398)];}throw _0x5afabc[_0x2a6f90(0x398)];}catch(_0x21cd9e){return this[_0x2a6f90(0x355)][_0x2a6f90(0x398)](_0x21cd9e),this[_0x2a6f90(0x45a)](!0x1);}}['onRemoteAck'](_0x272213){const _0x10046b=_0xc8d6e8;if(this[_0x10046b(0x3db)](),this[_0x10046b(0x299)](_0x272213))return this[_0x10046b(0x360)][_0x10046b(0x15f)](he,this[_0x10046b(0x17c)],this[_0x10046b(0x4aa)],null,this[_0x10046b(0x3ae)],this[_0x10046b(0x29c)],[],this[_0x10046b(0x1b7)]);this['_incrementRevisionNumber']();const _0x1029cd=this['_injector'][_0x10046b(0x15f)](pe,this['unitID'],this[_0x10046b(0x4aa)],this['_pendingMutations'],this[_0x10046b(0x1b7)]);return _0x1029cd[_0x10046b(0x124)](),_0x1029cd['_updateLocalCache'](),_0x1029cd;}[_0xc8d6e8(0x2c5)](_0x14687e){const _0x40f930=_0xc8d6e8;return this[_0x40f930(0x45a)](!!(_0x14687e!=null&&_0x14687e['isPermissionRej']));}[_0xc8d6e8(0x469)](_0x27f62c){const _0x531274=_0xc8d6e8;return this[_0x531274(0x2c9)]>Ni?this['toggleOffline']():(this['_resendTimer']=Ui(this['_resendTimeout'],{'timeout':this[_0x531274(0x2c9)],'reqId':_0x27f62c[_0x531274(0x1fe)]}),this['_sender']=this[_0x531274(0x3ed)][_0x531274(0x1ed)](({reqId:_0x408222,timeout:_0x293c33})=>{this['_resendWithTimeout'](_0x408222,_0x293c33);}),this);}['toggleOffline'](){const _0x153dbe=_0xc8d6e8;return this['_clearScheduledTask'](),this[_0x153dbe(0x360)]['createInstance'](Oe,this[_0x153dbe(0x17c)],this[_0x153dbe(0x4aa)],this[_0x153dbe(0x29c)],this[_0x153dbe(0x3ae)],this[_0x153dbe(0x1b7)]);}[_0xc8d6e8(0x4b3)](){return this;}[_0xc8d6e8(0x45f)](){const _0x501511=_0xc8d6e8;this[_0x501511(0x1b7)][_0x501511(0x4a1)](this[_0x501511(0x29c)]);}['_onConflict'](_0x51b3d5){const _0x1f9bd3=_0xc8d6e8;return this[_0x1f9bd3(0x3db)](),this[_0x1f9bd3(0x360)][_0x1f9bd3(0x15f)](Re,this[_0x1f9bd3(0x17c)],this['type'],null,this[_0x1f9bd3(0x3ae)],this[_0x1f9bd3(0x1b7)],_0x51b3d5);}[_0xc8d6e8(0x408)](_0x20d12a,_0x5b82b8){const _0x30f2b2=_0xc8d6e8;var _0x579808;_0x20d12a===((_0x579808=this[_0x30f2b2(0x29c)])==null?void 0x0:_0x579808[_0x30f2b2(0x1fe)])&&(this[_0x30f2b2(0x45f)](),this[_0x30f2b2(0x2c9)]=_0x5b82b8===0x0?0x3e8:_0x5b82b8*0x2);}[_0xc8d6e8(0x3db)](){const _0x5d3484=_0xc8d6e8;var _0x104e41;(_0x104e41=this[_0x5d3484(0x1c9)])==null||_0x104e41['unsubscribe'](),this['_resendTimeout']=0x0;}};ge=$e([A(0x6,_0x13f971(_0x20e5db)),A(0x7,_0x13f971(_0x15b6ba)),A(0x8,_0x13f971(q)),A(0x9,_0x4171ed),A(0xa,_0x410e45),A(0xb,_0x59efa9),A(0xc,_0x2925fd)],ge);let Re=class extends He{constructor(_0x3f737e,_0x254712,_0x3d28b9,_0x5a8c23,_0x2f2452,_0x53a816=!0x1,_0x3567f1,_0x4e540c,_0x393735,_0x47e132,_0x340ed8,_0x8e3d7e,_0x3f3667){const _0x463e32=_0xc8d6e8;super(_0x3f737e,_0x254712,_0x3d28b9,_0x5a8c23,_0x2f2452,_0x4e540c,_0x393735,_0x340ed8,_0x47e132),g(this,'status',_0x463e32(0x2a7)),(this['_isPermissionRej']=_0x53a816,this['_permissionService']=_0x3567f1,this[_0x463e32(0x255)]=_0x8e3d7e,this[_0x463e32(0x4f1)]=_0x3f3667,this[_0x463e32(0x52e)](),this['_clearLocalCache'](),this[_0x463e32(0x27c)]());}['appendMutation'](){return this;}[_0xc8d6e8(0x3be)](){return this;}['onRemoteAck'](){return this;}[_0xc8d6e8(0x2c5)](){return this;}[_0xc8d6e8(0x469)](){return this;}[_0xc8d6e8(0x3bd)](){return this;}[_0xc8d6e8(0x4b3)](){return this;}['resend'](){const _0x2606d2=_0xc8d6e8;throw new Error(_0x2606d2(0x39c));}['_clearLocalCache'](){const _0x49f199=_0xc8d6e8;this['_localCacheService']['updateOfflineData'](this[_0x49f199(0x17c)],this[_0x49f199(0x4aa)],null,[]);}[_0xc8d6e8(0x52e)](){const _0x45918d=_0xc8d6e8;this[_0x45918d(0x3ba)]?this[_0x45918d(0x4f1)][_0x45918d(0x339)]({'title':this['_localeService']['t'](_0x45918d(0x397)),'content':this[_0x45918d(0x255)]['t'](_0x45918d(0x489)),'type':_0x45918d(0x398),'duration':0x0}):this[_0x45918d(0x4f1)][_0x45918d(0x339)]({'title':this[_0x45918d(0x255)]['t'](_0x45918d(0x459)),'content':this['_localeService']['t'](_0x45918d(0x483)),'type':_0x45918d(0x398),'duration':0x0});}['_disableEditing'](){const _0x114ba4=_0xc8d6e8;this[_0x114ba4(0x4f3)][_0x114ba4(0x23e)](new _0x945e06(this[_0x114ba4(0x17c)])['id'],!0x1);}};Re=$e([A(0x6,_0x13f971(_0x1306a2)),A(0x7,_0x4171ed),A(0x8,_0x2925fd),A(0x9,_0x13f971(q)),A(0xa,_0x13f971(_0x15b6ba)),A(0xb,_0x13f971(_0x8037c0)),A(0xc,_0x3f22a0)],Re);let Oe=class extends He{constructor(_0x484133,_0x12d5b2,_0x14633e,_0x110116,_0x591585,_0x4fa2cf,_0x1560a2,_0x5abf32,_0x3cdcc3,_0x51e1de){const _0x1f0733=_0xc8d6e8;super(_0x484133,_0x12d5b2,_0x14633e,_0x110116,_0x591585,_0x3cdcc3,_0x51e1de,_0x1560a2,_0x5abf32),g(this,_0x1f0733(0x47f),_0x1f0733(0x2f0)),this['_injector']=_0x4fa2cf;}[_0xc8d6e8(0x223)](_0x4cebb8){const _0x1da794=_0xc8d6e8;return this[_0x1da794(0x3ae)][_0x1da794(0x183)](_0x4cebb8),this['_updateLocalCache'](),this;}[_0xc8d6e8(0x3be)](_0x1c5af6){throw new Error('[OfflineState]:\x20received\x20changeset.');}['onRemoteAck'](){const _0x33bbbc=_0xc8d6e8;throw new Error(_0x33bbbc(0x1ad));}['onRemoteRej'](){const _0x1cc202=_0xc8d6e8;throw new Error(_0x1cc202(0x15c));}[_0xc8d6e8(0x469)](){return this;}[_0xc8d6e8(0x3bd)](){return this;}['toggleOnline'](){const _0x1f2e50=_0xc8d6e8,{_injector:_0x27baa8,_pendingMutations:_0x47e669,_awaitingChangeset:_0x995b1f,unitID:_0x52efdf,_handler:_0x177892,type:_0x356072}=this,_0x25df0=Ai(_0x27baa8,_0x52efdf,_0x356072,_0x995b1f,_0x47e669,_0x177892);return _0x25df0 instanceof pe?_0x25df0[_0x1f2e50(0x124)]():(_0x25df0 instanceof ge||_0x25df0 instanceof Te)&&_0x25df0['resend'](),_0x25df0;}[_0xc8d6e8(0x45f)](){const _0x4e857b=_0xc8d6e8;throw new Error(_0x4e857b(0x2a5));}};Oe=$e([A(0x5,_0x13f971(_0x20e5db)),A(0x6,_0x13f971(_0x15b6ba)),A(0x7,_0x13f971(q)),A(0x8,_0x4171ed),A(0x9,_0x2925fd)],Oe);let he=class extends He{constructor(_0x586a68,_0x1d7a4b,_0x3eabb4,_0x110c46,_0x1c1037,_0x4417f6,_0x420594,_0x1e2b11,_0x1ab3ee,_0xf1a7c1,_0x88c90a,_0x1cd985,_0x3b0ec0,_0x785f75){const _0x2490cb=_0xc8d6e8;super(_0x586a68,_0x1d7a4b,_0x3eabb4,_0x110c46,_0x420594,_0x1cd985,_0x3b0ec0,_0x1ab3ee,_0xf1a7c1),g(this,_0x2490cb(0x47f),_0x2490cb(0x20b)),(this[_0x2490cb(0x34a)]=_0x1c1037,this[_0x2490cb(0x3e2)]=_0x4417f6,this[_0x2490cb(0x360)]=_0x1e2b11,this['_logService']=_0x88c90a,this[_0x2490cb(0x196)]=_0x785f75);}[_0xc8d6e8(0x272)](_0xc9dc96){const _0x4cd235=_0xc8d6e8;try{const _0x312371=[..._0xc9dc96,...this[_0x4cd235(0x3e2)]],_0x116195=[this[_0x4cd235(0x29c)]||this[_0x4cd235(0x34a)]][_0x4cd235(0x2fa)](_0x20ba13=>!!_0x20ba13);let _0x5639a7,_0x3ef668;if(_0x116195[_0x4cd235(0x3d5)]){const _0x71e78c=this[_0x4cd235(0x196)][_0x4cd235(0x1c5)](_0x312371,_0x116195,!0x1);if(!_0x36cff1(_0x71e78c))throw _0x71e78c[_0x4cd235(0x398)];_0x5639a7=_0x71e78c[_0x4cd235(0x1ba)],_0x3ef668=_0x71e78c[_0x4cd235(0x53f)];}else _0x5639a7=_0x312371,_0x3ef668=[];let _0x1b3aa5=this[_0x4cd235(0x3ae)];_0x5639a7[_0x4cd235(0x1da)](_0x1c1afa=>{const _0x19fab0=_0x4cd235;let _0x28d5cb;if(_0x1b3aa5[_0x19fab0(0x3d5)]){const _0x15ecc8=this['_transformService'][_0x19fab0(0x370)](_0x1c1afa,_0x1b3aa5);if(!_0x22d9be(_0x15ecc8))throw _0x15ecc8[_0x19fab0(0x398)];_0x28d5cb=_0x15ecc8[_0x19fab0(0x1ba)],_0x1b3aa5=_0x15ecc8[_0x19fab0(0x535)];}else _0x28d5cb=_0x1c1afa;this[_0x19fab0(0x1f1)](_0x28d5cb);}),this[_0x4cd235(0x34a)]&&this['_incrementRevisionNumber'](),this[_0x4cd235(0x29c)]&&_0x3ef668['length']&&(_0x3ef668[0x0]['baseRev']=this[_0x4cd235(0x24f)]());let _0x2e4554;if(this[_0x4cd235(0x29c)]&&_0x1b3aa5[_0x4cd235(0x3d5)]!==0x0)_0x2e4554=this[_0x4cd235(0x360)][_0x4cd235(0x15f)](ge,this[_0x4cd235(0x17c)],this[_0x4cd235(0x4aa)],_0x3ef668[0x0],_0x1b3aa5,this['_handler'],void 0x0);else{if(this[_0x4cd235(0x29c)]&&_0x1b3aa5[_0x4cd235(0x3d5)]===0x0)_0x3ef668[0x0][_0x4cd235(0x12a)]=this[_0x4cd235(0x24f)](),_0x2e4554=this[_0x4cd235(0x360)]['createInstance'](Te,this[_0x4cd235(0x17c)],this['type'],_0x3ef668[0x0],this[_0x4cd235(0x1b7)]);else{if(_0x1b3aa5['length']!==0x0){const _0x4171ca=this[_0x4cd235(0x360)][_0x4cd235(0x15f)](pe,this[_0x4cd235(0x17c)],this['type'],_0x1b3aa5,this[_0x4cd235(0x1b7)]);_0x4171ca[_0x4cd235(0x124)](),_0x2e4554=_0x4171ca;}else _0x2e4554=this['_injector'][_0x4cd235(0x15f)](Fe,this[_0x4cd235(0x17c)],this[_0x4cd235(0x4aa)],this['_handler']);}}return _0x2e4554['_updateLocalCache'](),_0x2e4554;}catch(_0x246470){return this[_0x4cd235(0x355)][_0x4cd235(0x398)]('[FetchMissState]',_0x4cd235(0x3b9),_0x246470),this[_0x4cd235(0x360)][_0x4cd235(0x15f)](Re,this[_0x4cd235(0x17c)],this[_0x4cd235(0x4aa)],this[_0x4cd235(0x29c)],this[_0x4cd235(0x3ae)],this[_0x4cd235(0x1b7)],!0x1);}}[_0xc8d6e8(0x45f)](){throw new Error('[FetchingMissState]:\x20invalid\x20calling\x20to\x20`resend`.');}['appendMutation'](_0x354d1e){const _0x4f70c1=_0xc8d6e8;return this[_0x4f70c1(0x3ae)][_0x4f70c1(0x183)](_0x354d1e),this;}[_0xc8d6e8(0x3be)](_0x42213a){const _0x1391d1=_0xc8d6e8;return this[_0x1391d1(0x3e2)][_0x1391d1(0x183)](_0x42213a),this;}[_0xc8d6e8(0x419)](_0x595a9d){const _0x55a3f1=_0xc8d6e8;if(this['_awaitingChangeset'])return this['_acknowledgedAwaitingChangeset']=this[_0x55a3f1(0x29c)],this[_0x55a3f1(0x29c)]=null,this;throw new Error(_0x55a3f1(0x44b));}['onRemoteRej'](_0x4653d6){const _0x225e06=_0xc8d6e8;return this['_onConflict'](!!(_0x4653d6!=null&&_0x4653d6[_0x225e06(0x205)]));}[_0xc8d6e8(0x469)](){return this;}[_0xc8d6e8(0x3bd)](){const _0x2723d0=_0xc8d6e8;return this[_0x2723d0(0x360)][_0x2723d0(0x15f)](Oe,this[_0x2723d0(0x17c)],this[_0x2723d0(0x4aa)],this[_0x2723d0(0x29c)],this[_0x2723d0(0x3ae)],this[_0x2723d0(0x1b7)]);}['toggleOnline'](){return this;}[_0xc8d6e8(0x45a)](_0x1cd706){const _0x12adb0=_0xc8d6e8;return this[_0x12adb0(0x360)][_0x12adb0(0x15f)](Re,this[_0x12adb0(0x17c)],this[_0x12adb0(0x4aa)],this[_0x12adb0(0x29c)],this[_0x12adb0(0x3ae)],this[_0x12adb0(0x1b7)],_0x1cd706);}};he=$e([A(0x7,_0x13f971(_0x20e5db)),A(0x8,_0x13f971(_0x15b6ba)),A(0x9,_0x13f971(q)),A(0xa,_0x410e45),A(0xb,_0x4171ed),A(0xc,_0x2925fd),A(0xd,_0x59efa9)],he);function Ai(_0x23006f,_0x5977cd,_0x3583b7,_0x55772e,_0x3802ea,_0x543cf2){const _0x2ceafa=_0xc8d6e8;return _0x55772e&&_0x3802ea[_0x2ceafa(0x3d5)]?_0x23006f[_0x2ceafa(0x15f)](ge,_0x5977cd,_0x3583b7,_0x55772e,_0x3802ea,_0x543cf2,void 0x0):_0x55772e?_0x23006f[_0x2ceafa(0x15f)](Te,_0x5977cd,_0x3583b7,_0x55772e,_0x543cf2):_0x3802ea[_0x2ceafa(0x3d5)]?_0x23006f[_0x2ceafa(0x15f)](pe,_0x5977cd,_0x3583b7,_0x3802ea,_0x543cf2):_0x23006f[_0x2ceafa(0x15f)](Fe,_0x5977cd,_0x3583b7,_0x543cf2);}var Io=Object[_0xc8d6e8(0x17a)],Co=Object[_0xc8d6e8(0x4d8)],Es=(_0xee0dce,_0x587b76,_0x3c9f3f,_0x2f0bb3)=>{const _0x2ed4d5=_0xc8d6e8;for(var _0x3ca4ca=_0x2f0bb3>0x1?void 0x0:_0x2f0bb3?Co(_0x587b76,_0x3c9f3f):_0x587b76,_0x19f3cf=_0xee0dce[_0x2ed4d5(0x3d5)]-0x1,_0x3abe26;_0x19f3cf>=0x0;_0x19f3cf--)(_0x3abe26=_0xee0dce[_0x19f3cf])&&(_0x3ca4ca=(_0x2f0bb3?_0x3abe26(_0x587b76,_0x3c9f3f,_0x3ca4ca):_0x3abe26(_0x3ca4ca))||_0x3ca4ca);return _0x2f0bb3&&_0x3ca4ca&&Io(_0x587b76,_0x3c9f3f,_0x3ca4ca),_0x3ca4ca;},H=(_0x2cb055,_0xb5d3e3)=>(_0x534ac1,_0x3fcd5a)=>_0xb5d3e3(_0x534ac1,_0x3fcd5a,_0x2cb055);let gt=class extends _0x2ea33c{constructor(_0x3494b0,_0x23f34e,_0x467785,_0x42ed02,_0x1f856a,_0x314a8c,_0x2835c8,_0x2cd477,_0x1362bf,_0x1614d5,_0x52115e,_0x4af06f,_0x3f6f05){const _0x3fedb0=_0xc8d6e8;super(),g(this,_0x3fedb0(0x4c5),new _0xfe121(null)),g(this,_0x3fedb0(0x1e7),this[_0x3fedb0(0x4c5)]['asObservable']()),g(this,_0x3fedb0(0x4f9)),g(this,_0x3fedb0(0x34f),!0x1),g(this,_0x3fedb0(0x3f6),''),g(this,'_changesetReqId',0x0),g(this,'status$',this['state$']['pipe'](_0x4c310e(_0x1f559d=>_0x1f559d?_0x1f559d['status']:J[_0x3fedb0(0x428)]),_0x207368(0x1))),g(this,_0x3fedb0(0x32f),!0x1),g(this,_0x3fedb0(0x16c),[]),(this[_0x3fedb0(0x17c)]=_0x3494b0,this[_0x3fedb0(0x524)]=_0x23f34e,this['_type']=_0x467785,this[_0x3fedb0(0x360)]=_0x42ed02,this[_0x3fedb0(0x20a)]=_0x1f856a,this[_0x3fedb0(0x177)]=_0x314a8c,this[_0x3fedb0(0x255)]=_0x2835c8,this[_0x3fedb0(0x2d3)]=_0x2cd477,this[_0x3fedb0(0x355)]=_0x1362bf,this['_commandService']=_0x1614d5,this[_0x3fedb0(0x3f7)]=_0x52115e,this[_0x3fedb0(0x4f3)]=_0x4af06f,this[_0x3fedb0(0x16b)]=_0x3f6f05);}get[_0xc8d6e8(0x1b8)](){const _0x27188f=_0xc8d6e8;return this[_0x27188f(0x4f9)];}async[_0xc8d6e8(0x293)](){const _0x5262ea=_0xc8d6e8;if(this[_0x5262ea(0x1b8)])throw new Error('[CollaborationEntity]:\x20initial\x20state\x20has\x20been\x20created\x20before.\x20You\x20should\x20not\x20call\x20\x22init\x22\x20twice.');await this[_0x5262ea(0x36a)]();}[_0xc8d6e8(0x3da)](){const _0x514744=_0xc8d6e8;return this[_0x514744(0x34f)]=!0x0,_0x4e58a4(()=>{const _0x517288=_0x514744;this[_0x517288(0x34f)]=!0x1,this[_0x517288(0x3c5)]();});}['_updateState'](_0x5a41dc){const _0x3509e1=_0xc8d6e8;this[_0x3509e1(0x4f9)]=_0x5a41dc,this['_state$'][_0x3509e1(0x3f0)](_0x5a41dc);}async[_0xc8d6e8(0x36a)](){const _0x6fe97e=_0xc8d6e8;var _0x5007de;this[_0x6fe97e(0x511)](await this['_createInitialState']()),this[_0x6fe97e(0x16b)]&&((_0x5007de=this[_0x6fe97e(0x16b)])==null||_0x5007de['editingUnit'](this[_0x6fe97e(0x17c)]),this[_0x6fe97e(0x43e)](this[_0x6fe97e(0x16b)]['getUnitStatus$'](this['unitID'])['subscribe'](_0x125d55=>{const _0xdd36a4=_0x6fe97e;this[_0xdd36a4(0x355)]['debug']('[CollaborationEntity]',_0xdd36a4(0x23b),_0x125d55),_0x125d55===Di[_0xdd36a4(0x4fc)]?(this[_0xdd36a4(0x3f7)][_0xdd36a4(0x339)]({'content':this['_localeService']['t']('collaboration.single-unit.warning'),'type':_0x49b044[_0xdd36a4(0x26c)]}),this[_0xdd36a4(0x4f3)]['updatePermissionPoint'](new _0x945e06(this[_0xdd36a4(0x17c)])['id'],!0x1),this[_0xdd36a4(0x4f3)][_0xdd36a4(0x384)](!0x1)):(this['_permissionService']['updatePermissionPoint'](new _0x945e06(this['unitID'])['id'],!0x0),this[_0xdd36a4(0x4f3)]['setShowComponents'](!0x0));})));let _0x35012c=!0x1;return this[_0x6fe97e(0x43e)](this[_0x6fe97e(0x524)][_0x6fe97e(0x280)]['subscribe'](_0x451c62=>{const _0x39cda7=_0x6fe97e;_0x451c62===ve[_0x39cda7(0x12b)]?this[_0x39cda7(0x44f)](_0x35012c):_0x451c62===ve[_0x39cda7(0x428)]&&(_0x35012c=!0x0,this[_0x39cda7(0x379)]());})),this[_0x6fe97e(0x43e)](this['session']['event$']['subscribe'](_0x188de0=>{const _0x45c1ed=_0x6fe97e;try{switch(_0x188de0[_0x45c1ed(0x411)]){case _0x275148[_0x45c1ed(0x251)]:{this['_onRemoteChangeset'](_0x533cbf(_0x188de0[_0x45c1ed(0x464)]));break;}case _0x275148[_0x45c1ed(0x1b3)]:{this[_0x45c1ed(0x28c)](_0x188de0[_0x45c1ed(0x464)]);break;}case _0x275148[_0x45c1ed(0x3e3)]:{this[_0x45c1ed(0x4dd)]();break;}case _0x275148[_0x45c1ed(0x264)]:{this['_onRemoteRetry'](_0x188de0[_0x45c1ed(0x464)]);break;}case _0x275148[_0x45c1ed(0x4ea)]:{this[_0x45c1ed(0x302)](_0x188de0[_0x45c1ed(0x464)][_0x45c1ed(0x2a1)][_0x45c1ed(0x431)](_0x5cc7e3=>_0x533cbf(_0x5cc7e3)));break;}case _0x275148['PERMISSION_REJ']:this[_0x45c1ed(0x4dd)]({'isPermissionRej':!0x0});}}catch(_0x23d8ba){throw console['error'](_0x45c1ed(0x185),_0x23d8ba),_0x23d8ba;}})),this[_0x6fe97e(0x4f9)];}[_0xc8d6e8(0x271)](){this['_transitionLocked']=!0x1;}[_0xc8d6e8(0x3a6)](){const _0x52c926=_0xc8d6e8;if(this[_0x52c926(0x32f)])throw new Error(_0x52c926(0x34d));this[_0x52c926(0x32f)]=!0x0;}['_onLocalMutation'](_0x1b02fe){const _0x3e7bf5=_0xc8d6e8;this[_0x3e7bf5(0x3a6)](),this[_0x3e7bf5(0x511)](this[_0x3e7bf5(0x4f9)][_0x3e7bf5(0x223)](_0x1b02fe)),this[_0x3e7bf5(0x271)]();}[_0xc8d6e8(0x4e7)](_0x94ae2c){const _0x543995=_0xc8d6e8;if(!(_0x94ae2c[_0x543995(0x1a1)]<=this[_0x543995(0x2d3)]['getCurrentRevOfUnit'](this['unitID']))){if(this[_0x543995(0x34f)]){this['_remoteChangesetQueue'][_0x543995(0x183)](_0x94ae2c);return;}this['_applyRemoteChangeset'](_0x94ae2c);}}[_0xc8d6e8(0x3c5)](){const _0x55e4ad=_0xc8d6e8;this['_remoteChangesetQueue'][_0x55e4ad(0x1da)](_0x4e1b62=>this[_0x55e4ad(0x424)](_0x4e1b62)),this[_0x55e4ad(0x16c)]=[];}[_0xc8d6e8(0x424)](_0x1bea40){const _0x4ee32f=_0xc8d6e8,_0x41c564=this[_0x4ee32f(0x177)]['interceptor']['fetchThroughInterceptors'](this[_0x4ee32f(0x177)][_0x4ee32f(0x4bb)][_0x4ee32f(0x19e)]()[_0x4ee32f(0x145)])(_0x1bea40[_0x4ee32f(0x133)],null)||_0x1bea40[_0x4ee32f(0x133)],_0x309900={..._0x1bea40,'mutations':_0x41c564};this[_0x4ee32f(0x3a6)](),this['_updateState'](this[_0x4ee32f(0x4f9)][_0x4ee32f(0x3be)](_0x309900)),this[_0x4ee32f(0x271)]();}[_0xc8d6e8(0x28c)](_0x241270){const _0x549810=_0xc8d6e8;this[_0x549810(0x3a6)](),this[_0x549810(0x511)](this['_state'][_0x549810(0x419)](_0x241270)),this[_0x549810(0x271)]();}[_0xc8d6e8(0x4dd)](_0x5bea08){const _0x879403=_0xc8d6e8;this[_0x879403(0x3a6)](),this[_0x879403(0x511)](this[_0x879403(0x4f9)][_0x879403(0x2c5)](_0x5bea08)),this[_0x879403(0x271)]();}[_0xc8d6e8(0x2e1)](_0x37f5dc){const _0xe42923=_0xc8d6e8;this[_0xe42923(0x3a6)](),this[_0xe42923(0x511)](this['_state'][_0xe42923(0x469)](_0x37f5dc)),this[_0xe42923(0x271)]();}['_onFetchMissResult'](_0x6204c9){const _0x5d3090=_0xc8d6e8;if(!(this[_0x5d3090(0x4f9)]instanceof he))throw new TypeError(_0x5d3090(0x2a8));const _0x3ada9a=_0x6204c9[_0x5d3090(0x431)](_0x50a40f=>{const _0x2fa360=_0x5d3090,_0x59b47d=this[_0x2fa360(0x177)]['interceptor'][_0x2fa360(0x39f)](this[_0x2fa360(0x177)]['interceptor']['getInterceptPoints']()[_0x2fa360(0x145)])(_0x50a40f[_0x2fa360(0x133)],null)||_0x50a40f[_0x2fa360(0x133)];return{..._0x50a40f,'mutations':_0x59b47d};});this[_0x5d3090(0x3a6)](),this['_updateState'](this[_0x5d3090(0x4f9)]['onMissedChangesetFetched'](_0x3ada9a)),this[_0x5d3090(0x271)]();}[_0xc8d6e8(0x379)](){const _0x1fe1a9=_0xc8d6e8;this[_0x1fe1a9(0x3a6)](),this[_0x1fe1a9(0x511)](this[_0x1fe1a9(0x4f9)][_0x1fe1a9(0x3bd)]()),this[_0x1fe1a9(0x271)]();}[_0xc8d6e8(0x44f)](_0x3faa9c=!0x1){const _0x147ea9=_0xc8d6e8;this[_0x147ea9(0x3a6)](),this[_0x147ea9(0x511)](this['_state']['toggleOnline']()),this[_0x147ea9(0x271)]();const _0x276ffd=this[_0x147ea9(0x4f9)];_0x3faa9c&&_0x276ffd instanceof Fe&&(this[_0x147ea9(0x3a6)](),this[_0x147ea9(0x511)](_0x276ffd['fetchMiss']()),this[_0x147ea9(0x271)]());}async[_0xc8d6e8(0x22d)](){return new Promise(_0x128f04=>{const _0x337698=_0x284c;this['session'][_0x337698(0x280)][_0x337698(0x236)](_0x134dae(0x1))[_0x337698(0x1ed)](async _0x21ef16=>{const _0x215a93=_0x337698;_0x128f04(await this[_0x215a93(0x476)](_0x21ef16===ve['ONLINE']));});});}['_createHandler'](){const _0x4875b9=_0xc8d6e8,_0x56159a=this[_0x4875b9(0x17c)];return{'onStateChange':(_0x144a22,_0x225219)=>{const _0x4567ae=_0x4875b9;if(_0x144a22!==this[_0x4567ae(0x4f9)])throw new Error(_0x4567ae(0x45d)+_0x144a22['status']+'\x0aAfter:\x20'+_0x225219['status']+_0x4567ae(0x3a0)+this[_0x4567ae(0x4f9)][_0x4567ae(0x47f)]);this[_0x4567ae(0x511)](_0x225219);},'onSendChangeset':_0x52e92a=>{const _0x3fb6fa=_0x4875b9;_0x52e92a[_0x3fb6fa(0x2dd)]||(_0x52e92a[_0x3fb6fa(0x2dd)]=this['_changesetSessionId'],_0x52e92a['reqId']=++this['_changesetReqId']);const _0x2b63e9={'eventID':_0x275148[_0x3fb6fa(0x443)],'data':{'unitID':_0x52e92a[_0x3fb6fa(0x17c)],'unitType':this[_0x3fb6fa(0x194)],'changeset':_0x52e92a,'memberID':this[_0x3fb6fa(0x524)][_0x3fb6fa(0x4b4)]()}};this['session'][_0x3fb6fa(0x3c1)](_0x2b63e9,this[_0x3fb6fa(0x17c)]);},'onMissingChangesets':({from:_0x444004,to:_0x2c0f18})=>{const _0xecf35e=_0x4875b9;this['_logService']['debug'](_0xecf35e(0x1cf),_0xecf35e(0x30d)+_0x444004+_0xecf35e(0x2f1)+_0x2c0f18);const _0x5d5a5b={'eventID':_0x275148[_0xecf35e(0x37e)],'data':{'unitID':_0x56159a,'unitType':this[_0xecf35e(0x194)],'from':_0x444004,'to':_0x2c0f18}};this[_0xecf35e(0x524)][_0xecf35e(0x3c1)](_0x5d5a5b,this['unitID']);}};}async['_createInitialStateImpl'](_0x4e6fc9){const _0x4d7454=_0xc8d6e8;var _0x512592,_0x4d6a52;const _0x6201fd=await this['_localCacheService'][_0x4d7454(0x432)](this[_0x4d7454(0x17c)]),_0x2c390f=(_0x512592=_0x6201fd==null?void 0x0:_0x6201fd[_0x4d7454(0x133)])!=null?_0x512592:[],_0x4ac7b4=(_0x4d6a52=_0x6201fd==null?void 0x0:_0x6201fd['awaitingChangeset'])!=null?_0x4d6a52:null,_0x501eae=!!(_0x4ac7b4!=null&&_0x4ac7b4['sid'])&&!!(_0x4ac7b4!=null&&_0x4ac7b4['reqId']);this['_changesetSessionId']=_0x501eae?_0x4ac7b4[_0x4d7454(0x2dd)]:qr(),this[_0x4d7454(0x539)]=_0x501eae?_0x4ac7b4[_0x4d7454(0x1fe)]:0x0;const _0x34bc21=this[_0x4d7454(0x17c)];try{this[_0x4d7454(0x1f6)](_0x4ac7b4,_0x2c390f);}catch(_0x2299e7){this[_0x4d7454(0x355)][_0x4d7454(0x398)](_0x2299e7);}const _0x4f6fa2=this[_0x4d7454(0x179)]();if(_0x4e6fc9){const _0x4d64d2=Ai(this[_0x4d7454(0x360)],_0x34bc21,this[_0x4d7454(0x194)],_0x4ac7b4,_0x2c390f,_0x4f6fa2);return _0x4d64d2 instanceof pe?_0x4d64d2[_0x4d7454(0x124)]():(_0x4d64d2 instanceof ge||_0x4d64d2 instanceof Te)&&_0x4d64d2['resend'](),_0x4d64d2;}return this[_0x4d7454(0x360)]['createInstance'](Oe,_0x34bc21,this[_0x4d7454(0x194)],_0x4ac7b4,_0x2c390f,_0x4f6fa2);}[_0xc8d6e8(0x1f6)](_0x290624,_0x307eca){const _0x29d123=_0xc8d6e8;var _0x58147c,_0x5efb68;const _0x9f3c82=this[_0x29d123(0x177)][_0x29d123(0x4bb)][_0x29d123(0x39f)](this['_compressMutationService'][_0x29d123(0x4bb)][_0x29d123(0x19e)]()[_0x29d123(0x145)]);(_0x58147c=_0x9f3c82((_0x290624==null?void 0x0:_0x290624['mutations'])||[],null))==null||_0x58147c[_0x29d123(0x1da)](_0xa88b2a=>this[_0x29d123(0x4e0)]['executeCommand'](_0xa88b2a['id'],_0xa88b2a[_0x29d123(0x477)])),(_0x5efb68=_0x9f3c82(_0x307eca||[],null))==null||_0x5efb68[_0x29d123(0x1da)](_0x125d12=>this[_0x29d123(0x4e0)][_0x29d123(0x538)](_0x125d12['id'],_0x125d12['params']));}};gt=Es([H(0x3,_0x13f971(_0x20e5db)),H(0x4,_0x13f971(q)),H(0x5,_0x13f971(_0x12821d)),H(0x6,_0x13f971(_0x8037c0)),H(0x7,_0x13f971(_0x15b6ba)),H(0x8,_0x410e45),H(0x9,_0x4171ed),H(0xa,_0x1902d3),H(0xb,_0x1306a2),H(0xc,_0x28e273(Rt))],gt);let ss=class extends gt{constructor(_0x5e0b16,_0x4d011c,_0x41fb84,_0x259efc,_0x2089da,_0x2cfeca,_0x1a6651,_0x2277d5,_0x5cb9d2,_0x1eeab9,_0x39314c,_0x43e862,_0x27fc3a,_0x2bd865,_0x1aec5f,_0x375db1,_0x55fca3,_0xe404c){const _0x5b3411=_0xc8d6e8;super(_0x5e0b16,_0x41fb84,_0x4d011c,_0x259efc,_0x2089da,_0x2cfeca,_0x1a6651,_0x2277d5,_0x2bd865,_0x1aec5f,_0x375db1,_0x55fca3,_0xe404c),this[_0x5b3411(0x17c)]=_0x5e0b16,this['type']=_0x4d011c,this[_0x5b3411(0x3e6)]=_0x5cb9d2,this[_0x5b3411(0x1ff)]=_0x1eeab9,this['_docTransformStateCacheService']=_0x39314c,this[_0x5b3411(0x141)]=_0x43e862,this[_0x5b3411(0x4d5)]=_0x27fc3a;}[_0xc8d6e8(0x179)](){const _0x260b42=_0xc8d6e8,_0x1a8c9d=super['_createHandler']();return _0x1a8c9d['onTransformIME']=_0x39e9bd=>this['_docTransformIMECacheService'][_0x260b42(0x319)](_0x39e9bd),_0x1a8c9d[_0x260b42(0x17e)]=_0x46cbb5=>this[_0x260b42(0x2cf)][_0x260b42(0x27a)](_0x46cbb5),_0x1a8c9d[_0x260b42(0x332)]=_0x5694df=>this[_0x260b42(0x141)][_0x260b42(0x38c)](_0x5694df),_0x1a8c9d[_0x260b42(0x331)]=_0x55c84d=>this['_docSyncEditingCollabCursorService'][_0x260b42(0x3ad)](_0x55c84d),_0x1a8c9d['onTransformRemoteChangesetByIMECache']=_0x3ee50a=>this[_0x260b42(0x1ff)][_0x260b42(0x34b)](_0x3ee50a),_0x1a8c9d[_0x260b42(0x3b7)]=_0x4b1ca1=>this['_docTransformStateCacheService'][_0x260b42(0x34b)](_0x4b1ca1),_0x1a8c9d;}async[_0xc8d6e8(0x36a)](){const _0x36792b=_0xc8d6e8,_0x458a1e=await super['_init']();return this[_0x36792b(0x3e6)][_0x36792b(0x1b1)][_0x36792b(0x236)](_0x6a5096(this[_0x36792b(0x191)]))[_0x36792b(0x1ed)](_0x7bf2e=>{const _0x6ea38a=_0x36792b;if(_0x7bf2e==null)return;const {unitId:_0x32c322,redoState:_0x35d85f,commandId:_0x420c84}=_0x7bf2e;if(_0x32c322!==this[_0x6ea38a(0x17c)])return;const _0xdd8e4e={'id':_0x420c84,'type':_0x3dc8ba[_0x6ea38a(0x29a)],'params':{'unitId':_0x32c322,'actions':_0x35d85f[_0x6ea38a(0x193)],'textRanges':null}};this[_0x6ea38a(0x517)](_0xdd8e4e);}),_0x458a1e;}};ss=Es([H(0x3,_0x13f971(_0x20e5db)),H(0x4,_0x13f971(q)),H(0x5,_0x13f971(_0x12821d)),H(0x6,_0x13f971(_0x8037c0)),H(0x7,_0x13f971(_0x15b6ba)),H(0x8,_0x13f971(_0x1fa86f)),H(0x9,_0x13f971(ft)),H(0xa,_0x13f971(mt)),H(0xb,_0x13f971(pt)),H(0xc,_0x13f971(Cs)),H(0xd,_0x410e45),H(0xe,_0x4171ed),H(0xf,_0x1902d3),H(0x10,_0x1306a2),H(0x11,_0x28e273(Rt))],ss);let is=class extends gt{constructor(_0x4cebc5,_0x2d1afc,_0x13e922,_0x27da99,_0x2e2da8,_0x4a76dd,_0x5803f3,_0xf74da1,_0x421131,_0x4f92a6,_0xceb9a9,_0x4d0c07,_0x398242,_0x4d6c52){const _0x211bcb=_0xc8d6e8;super(_0x4cebc5,_0x13e922,_0x2d1afc,_0x27da99,_0x2e2da8,_0x4a76dd,_0x5803f3,_0xf74da1,_0x4f92a6,_0xceb9a9,_0x4d0c07,_0x398242,_0x4d6c52),this[_0x211bcb(0x17c)]=_0x4cebc5,this[_0x211bcb(0x4aa)]=_0x2d1afc,this[_0x211bcb(0x266)]=_0x421131;}[_0xc8d6e8(0x179)](){const _0x29ec9a=_0xc8d6e8,_0x2e5f42=super[_0x29ec9a(0x179)]();return _0x2e5f42['onTransformSelections']=_0x5de42f=>this['_sheetTransformSelectionsService']['transformSelections'](_0x5de42f),_0x2e5f42;}async[_0xc8d6e8(0x36a)](){const _0x546576=_0xc8d6e8,_0x14165b=await super[_0x546576(0x36a)]();return this[_0x546576(0x43e)](this[_0x546576(0x4e0)][_0x546576(0x19a)]((_0x1cdd00,_0x5b73c6)=>{const _0x4c002f=_0x546576;if(_0x1cdd00[_0x4c002f(0x4aa)]!==_0x3dc8ba['MUTATION']||_0x5b73c6!=null&&_0x5b73c6['fromCollab']||_0x5b73c6!=null&&_0x5b73c6[_0x4c002f(0x238)])return;const _0x3df30f=_0x1cdd00[_0x4c002f(0x477)];if((_0x3df30f==null?void 0x0:_0x3df30f['unitId'])!==this[_0x4c002f(0x17c)])return;const _0x2aee06=_0x1cdd00,_0x12ee42=this[_0x4c002f(0x177)][_0x4c002f(0x4bb)][_0x4c002f(0x39f)](this['_compressMutationService'][_0x4c002f(0x4bb)]['getInterceptPoints']()[_0x4c002f(0x235)])([_0x2aee06],null)||[_0x2aee06];this[_0x4c002f(0x517)](_0x12ee42[0x0]);})),_0x14165b;}};is=Es([H(0x3,_0x13f971(_0x20e5db)),H(0x4,_0x13f971(q)),H(0x5,_0x13f971(_0x12821d)),H(0x6,_0x13f971(_0x8037c0)),H(0x7,_0x13f971(_0x15b6ba)),H(0x8,_0x13f971(vt)),H(0x9,_0x410e45),H(0xa,_0x4171ed),H(0xb,_0x1902d3),H(0xc,_0x1306a2),H(0xd,_0x28e273(Rt))],is);var Eo=Object[_0xc8d6e8(0x17a)],bo=Object['getOwnPropertyDescriptor'],To=(_0x9ef01,_0x5c4ccb,_0x302ff3,_0x12c803)=>{const _0x39915d=_0xc8d6e8;for(var _0x516bd9=_0x12c803>0x1?void 0x0:_0x12c803?bo(_0x5c4ccb,_0x302ff3):_0x5c4ccb,_0x366b46=_0x9ef01[_0x39915d(0x3d5)]-0x1,_0x35b46a;_0x366b46>=0x0;_0x366b46--)(_0x35b46a=_0x9ef01[_0x366b46])&&(_0x516bd9=(_0x12c803?_0x35b46a(_0x5c4ccb,_0x302ff3,_0x516bd9):_0x35b46a(_0x516bd9))||_0x516bd9);return _0x12c803&&_0x516bd9&&Eo(_0x5c4ccb,_0x302ff3,_0x516bd9),_0x516bd9;},Lt=(_0x249282,_0x2f8729)=>(_0x44e655,_0x42c5bb)=>_0x2f8729(_0x44e655,_0x42c5bb,_0x249282);let it=class extends _0x2ea33c{constructor(_0x45eb30,_0x529383,_0x4bd3e9){const _0x5bebe3=_0xc8d6e8;super(),g(this,_0x5bebe3(0x3dd),new Map()),g(this,_0x5bebe3(0x28d),new _0x378360()),(this[_0x5bebe3(0x360)]=_0x45eb30,this['_collabSessionService']=_0x529383,this[_0x5bebe3(0x2c7)]=_0x4bd3e9,this[_0x5bebe3(0x36a)]());}[_0xc8d6e8(0x204)](){const _0x198042=_0xc8d6e8;super[_0x198042(0x204)](),this[_0x198042(0x3dd)][_0x198042(0x1da)](_0x517b4a=>_0x517b4a[_0x198042(0x204)]()),this[_0x198042(0x3dd)][_0x198042(0x3ab)]();}[_0xc8d6e8(0x17b)](_0x31f2c9){const _0x151bf5=_0xc8d6e8;var _0x5b8290;return(_0x5b8290=this['_entities'][_0x151bf5(0x2c2)](_0x31f2c9))!=null?_0x5b8290:null;}[_0xc8d6e8(0x1d5)](_0x25de0d){const _0x39984e=_0xc8d6e8,_0x2af047=this[_0x39984e(0x17b)](_0x25de0d);return _0x2af047?_0x2cb441(_0x2af047):this[_0x39984e(0x28d)][_0x39984e(0x236)](_0x474f16(_0x4ca907=>_0x4ca907[_0x39984e(0x17c)]===_0x25de0d));}[_0xc8d6e8(0x36a)](){const _0x4dc372=_0xc8d6e8;this[_0x4dc372(0x2c7)][_0x4dc372(0x1df)](_0x4f645a[_0x4dc372(0x50a)])['pipe'](_0x6a5096(this[_0x4dc372(0x191)]),_0x12cdd5(0x10))[_0x4dc372(0x1ed)](async _0x53b6d2=>{const _0x26c81c=_0x4dc372,_0x8301a=_0x53b6d2[_0x26c81c(0x4a7)](),_0xa6ecbc=await this[_0x26c81c(0x190)](_0x8301a,ce[_0x26c81c(0x50a)]);this[_0x26c81c(0x3dd)]['set'](_0x8301a,_0xa6ecbc);}),this[_0x4dc372(0x2c7)][_0x4dc372(0x1df)](_0x4f645a[_0x4dc372(0x3c7)])['pipe'](_0x6a5096(this[_0x4dc372(0x191)]),_0x12cdd5(0x10))[_0x4dc372(0x236)](_0x474f16(_0x13eaaa=>!_0x13eaaa[_0x4dc372(0x4a7)]()[_0x4dc372(0x2cc)]('__')))[_0x4dc372(0x1ed)](async _0x26716c=>{const _0xf1e2c0=_0x4dc372,_0x33a921=_0x26716c[_0xf1e2c0(0x4a7)](),_0x4c7444=await this[_0xf1e2c0(0x190)](_0x33a921,ce['UNIVER_DOC']);this['_entities']['set'](_0x33a921,_0x4c7444);}),_0x88f83c(this['_univerInstanceService']['getTypeOfUnitDisposed$'](_0x4f645a[_0x4dc372(0x50a)]),this[_0x4dc372(0x2c7)][_0x4dc372(0x497)](_0x4f645a[_0x4dc372(0x3c7)]))[_0x4dc372(0x236)](_0x6a5096(this['dispose$']))[_0x4dc372(0x1ed)](_0x35c714=>{const _0x27227b=_0x4dc372,_0x347236=_0x35c714['getUnitId'](),_0xe1b1e8=this['_entities']['get'](_0x347236);_0xe1b1e8&&(_0xe1b1e8[_0x27227b(0x204)](),this['_entities'][_0x27227b(0x2b0)](_0x347236));});}async[_0xc8d6e8(0x190)](_0x192fbf,_0xa90efa){const _0x8aadb1=_0xc8d6e8,_0x2e4f4=await this[_0x8aadb1(0x3b0)]['requireSession'](_0x192fbf),_0x402309=this['_injector'][_0x8aadb1(0x15f)](this[_0x8aadb1(0x15a)](_0xa90efa),_0x192fbf,_0xa90efa,_0x2e4f4);return await _0x402309[_0x8aadb1(0x293)](),this['_entityInit$'][_0x8aadb1(0x3f0)](_0x402309),_0x402309;}[_0xc8d6e8(0x15a)](_0x5d3320){const _0x153758=_0xc8d6e8;switch(_0x5d3320){case ce[_0x153758(0x3c7)]:return ss;case ce[_0x153758(0x50a)]:return is;default:throw new Error('[CollaborationController]:\x20invalid\x20univer\x20type:\x20'+_0x5d3320);}}};it=To([Lt(0x0,_0x13f971(_0x20e5db)),Lt(0x1,_0x13f971(xe)),Lt(0x2,_0x2ddd21)],it);const Gs=['purple300','jiqing500',_0xc8d6e8(0x208),'red300',_0xc8d6e8(0x300),_0xc8d6e8(0x35f)];class bs extends _0x5e1db6{constructor(){const _0x22f321=_0xc8d6e8;super(...arguments),g(this,_0x22f321(0x3a7),new Map()),g(this,_0x22f321(0x53b),0x0);}['assignAColorForMemberID'](_0x130c0d){const _0x526184=_0xc8d6e8;if(this[_0x526184(0x3a7)][_0x526184(0x3eb)](_0x130c0d))return this[_0x526184(0x3a7)][_0x526184(0x2c2)](_0x130c0d);const _0x2e1ed6=Gs[this[_0x526184(0x53b)]];return this['_colorIndex']=(this['_colorIndex']+0x1)%Gs[_0x526184(0x3d5)],this[_0x526184(0x3a7)][_0x526184(0x21c)](_0x130c0d,_0x2e1ed6),_0x2e1ed6;}}var Ro=Object[_0xc8d6e8(0x17a)],Oo=Object[_0xc8d6e8(0x4d8)],yo=(_0x2c0951,_0x418d2c,_0x33a3bd,_0x18fa3d)=>{for(var _0x2711ed=_0x18fa3d>0x1?void 0x0:_0x18fa3d?Oo(_0x418d2c,_0x33a3bd):_0x418d2c,_0x41685d=_0x2c0951['length']-0x1,_0xed96be;_0x41685d>=0x0;_0x41685d--)(_0xed96be=_0x2c0951[_0x41685d])&&(_0x2711ed=(_0x18fa3d?_0xed96be(_0x418d2c,_0x33a3bd,_0x2711ed):_0xed96be(_0x2711ed))||_0x2711ed);return _0x18fa3d&&_0x2711ed&&Ro(_0x418d2c,_0x33a3bd,_0x2711ed),_0x2711ed;},De=(_0xe38cde,_0x5d5272)=>(_0x3e70ca,_0x48cf76)=>_0x5d5272(_0x3e70ca,_0x48cf76,_0xe38cde);const wo=0x12c,Do=0x64;let ns=class extends _0x2ea33c{constructor(_0xf01f9a,_0xdfa7ba,_0xd68ed8,_0x54c6c7,_0x364f2b,_0x1e15b2,_0x4af840,_0x4a2c41,_0x179aac){const _0x29fa5d=_0xc8d6e8;super(),g(this,_0x29fa5d(0x50d),!0x1),g(this,_0x29fa5d(0x36a),!0x1),g(this,_0x29fa5d(0x4c1),new _0xfe121(new Map())),g(this,_0x29fa5d(0x163),this[_0x29fa5d(0x4c1)][_0x29fa5d(0x4de)]()),g(this,_0x29fa5d(0x1a2),new _0xfe121([])),g(this,'roomMembers$',this['_roomMembers$'][_0x29fa5d(0x236)](_0x2565cd(wo))),g(this,_0x29fa5d(0x496),_0x2384a7(_0x86ba18=>{const _0x42e649=_0x29fa5d,_0x338e13={'eventID':_0x275148[_0x42e649(0x276)],'data':{'unitID':this[_0x42e649(0x17c)],'memberID':this[_0x42e649(0x3a5)]['getMemberID'](),'selection':Pi(_0x86ba18)}};this[_0x42e649(0x3a5)][_0x42e649(0x3c1)](_0x338e13,this[_0x42e649(0x17c)]);},Do)),(this[_0x29fa5d(0x17c)]=_0xf01f9a,this[_0x29fa5d(0x3a5)]=_0xdfa7ba,this[_0x29fa5d(0x360)]=_0xd68ed8,this[_0x29fa5d(0x4ca)]=_0x54c6c7,this[_0x29fa5d(0x253)]=_0x364f2b,this[_0x29fa5d(0x248)]=_0x1e15b2,this[_0x29fa5d(0x196)]=_0x4af840,this[_0x29fa5d(0x2c7)]=_0x4a2c41,this[_0x29fa5d(0x4e0)]=_0x179aac);}get[_0xc8d6e8(0x45b)](){const _0x52cdef=_0xc8d6e8;return this[_0x52cdef(0x4c1)][_0x52cdef(0x388)]();}get[_0xc8d6e8(0x410)](){return this['_roomMembers$']['getValue']();}[_0xc8d6e8(0x204)](){const _0x52aece=_0xc8d6e8;super[_0x52aece(0x204)](),this[_0x52aece(0x4c1)][_0x52aece(0x3f0)](new Map()),this[_0x52aece(0x4c1)][_0x52aece(0x20c)](),this[_0x52aece(0x1a2)]['next']([]),this[_0x52aece(0x1a2)][_0x52aece(0x20c)]();}[_0xc8d6e8(0x293)](){const _0x43f9fa=_0xc8d6e8;this['_init']||(this['_init']=!0x0,this[_0x43f9fa(0x3a5)]['sessionStatus$'][_0x43f9fa(0x236)](_0x6a5096(this['dispose$']))['subscribe'](_0x5af479=>{const _0x48f9c4=_0x43f9fa;_0x5af479===ve['ONLINE']?this[_0x48f9c4(0x44f)]():this[_0x48f9c4(0x379)]();}),this[_0x43f9fa(0x3a5)][_0x43f9fa(0x157)][_0x43f9fa(0x236)](_0x6a5096(this[_0x43f9fa(0x191)]))[_0x43f9fa(0x1ed)](_0x4b141d=>{const _0x30cc7d=_0x43f9fa,_0x52afb5=_0x4b141d[_0x30cc7d(0x411)];_0x52afb5===_0x275148[_0x30cc7d(0x276)]&&this[_0x30cc7d(0x2b6)](_0x4b141d),_0x52afb5===_0x275148['USERS_LEAVE']&&this[_0x30cc7d(0x25d)](_0x4b141d);}),this['disposeWithMe'](this[_0x43f9fa(0x4e0)][_0x43f9fa(0x19a)](_0x19ec3f=>{const _0x54a8da=_0x43f9fa,_0x1419c3=_0x19ec3f[_0x54a8da(0x477)];_0x1419c3!=null&&this[_0x54a8da(0x50d)]&&_0x19ec3f['id']===_0x9955df['id']&&_0x1419c3['unitId']===this['unitID']&&_0x1419c3[_0x54a8da(0x416)]===!0x1&&_0x1419c3[_0x54a8da(0x149)]['length']>0x0&&this['_updateLocalCursor'](_0x1419c3['ranges']);})),this[_0x43f9fa(0x248)][_0x43f9fa(0x279)]['pipe'](_0x6a5096(this[_0x43f9fa(0x191)]))[_0x43f9fa(0x1ed)](_0x32422c=>{const _0x7ec0a9=_0x43f9fa;if((_0x32422c==null?void 0x0:_0x32422c[_0x7ec0a9(0x17c)])!==this['unitID'])return;const _0x306731={'eventID':_0x275148['UPDATE_CURSOR'],'data':_0x32422c};this['_onCursorUpdate'](_0x306731);}),this[_0x43f9fa(0x43e)](this[_0x43f9fa(0x4e0)][_0x43f9fa(0x19a)](_0x11f10f=>{const _0x10a6bc=_0x43f9fa;if(_0x11f10f[_0x10a6bc(0x477)]==null)return;const _0x436819=_0x11f10f[_0x10a6bc(0x477)];if(_0x11f10f['id']!==_0x942aea['id']||_0x436819[_0x10a6bc(0x367)]!==this[_0x10a6bc(0x17c)])return;const _0x249cfb={'id':_0x10a6bc(0x156),'params':_0x436819},_0x9afbd2=this[_0x10a6bc(0x45b)];for(const [_0x1fb4b0,_0x3ba7f6]of _0x9afbd2){const _0x5dcfcb={'id':_0x10a6bc(0x156),'params':{'unitId':this[_0x10a6bc(0x17c)],'actions':null,'textRanges':_0x3ba7f6['ranges']}},_0xc79161=this[_0x10a6bc(0x196)][_0x10a6bc(0x405)](_0x249cfb,_0x5dcfcb,!0x1);if(_0x240244(_0xc79161))throw _0xc79161['error'];_0x9afbd2['set'](_0x1fb4b0,{..._0x3ba7f6,'ranges':_0xc79161[_0x10a6bc(0x535)]['params'][_0x10a6bc(0x2b4)]});}queueMicrotask(()=>{const _0x2902c9=_0x10a6bc;this[_0x2902c9(0x4c1)]['next'](_0x9afbd2);});})));}['_onCursorUpdate'](_0x33f661){const _0x168060=_0xc8d6e8;var _0x546890,_0x254171;const {memberID:_0x5c9d3a,selection:_0x2ed053}=_0x33f661[_0x168060(0x464)],_0x41dd81=lo(_0x2ed053),_0x4b4534=(_0x254171=(_0x546890=this['_memberService'][_0x168060(0x4c2)](this[_0x168060(0x17c)],_0x5c9d3a))==null?void 0x0:_0x546890[_0x168060(0x21a)])!=null?_0x254171:_0x168060(0x36b),_0x56617f={'color':this[_0x168060(0x4ca)][_0x168060(0x132)](_0x5c9d3a),'name':_0x4b4534,'ranges':_0x41dd81},_0xfbfda9=this[_0x168060(0x45b)];_0xfbfda9['set'](_0x5c9d3a,_0x56617f),this[_0x168060(0x4c1)][_0x168060(0x3f0)](_0xfbfda9);}[_0xc8d6e8(0x25d)](_0x25b6bf){const _0x1814ee=_0xc8d6e8,{memberID:_0x35025f}=_0x25b6bf['data'],_0x3bd299=this[_0x1814ee(0x45b)];_0x3bd299[_0x1814ee(0x2b0)](_0x35025f),this[_0x1814ee(0x4c1)]['next'](_0x3bd299);}[_0xc8d6e8(0x44f)](){const _0x29f0e4=_0xc8d6e8;var _0x170a7f;if(this['_online']=!0x0,((_0x170a7f=this[_0x29f0e4(0x2c7)][_0x29f0e4(0x385)]())==null?void 0x0:_0x170a7f[_0x29f0e4(0x4a7)]())!==this['unitID'])return;const _0x2c179c=this[_0x29f0e4(0x360)][_0x29f0e4(0x2c2)](_0x5930e4)[_0x29f0e4(0x199)]();Array['isArray'](_0x2c179c)&&_0x2c179c['length']>0x0&&this[_0x29f0e4(0x496)](_0x2c179c);}[_0xc8d6e8(0x379)](){this['_online']=!0x1;}};ns=yo([De(0x2,_0x13f971(_0x20e5db)),De(0x3,_0x13f971(bs)),De(0x4,_0x13f971(Me)),De(0x5,_0x13f971(Cs)),De(0x6,_0x59efa9),De(0x7,_0x2ddd21),De(0x8,_0x4171ed)],ns);var Po=Object[_0xc8d6e8(0x17a)],Uo=Object[_0xc8d6e8(0x4d8)],No=(_0x1782fb,_0x5dcb4d,_0x41799b,_0x46d888)=>{const _0x4626c0=_0xc8d6e8;for(var _0x57c72a=_0x46d888>0x1?void 0x0:_0x46d888?Uo(_0x5dcb4d,_0x41799b):_0x5dcb4d,_0x1c7804=_0x1782fb[_0x4626c0(0x3d5)]-0x1,_0x48f1e3;_0x1c7804>=0x0;_0x1c7804--)(_0x48f1e3=_0x1782fb[_0x1c7804])&&(_0x57c72a=(_0x46d888?_0x48f1e3(_0x5dcb4d,_0x41799b,_0x57c72a):_0x48f1e3(_0x57c72a))||_0x57c72a);return _0x46d888&&_0x57c72a&&Po(_0x5dcb4d,_0x41799b,_0x57c72a),_0x57c72a;},Be=(_0x4f339d,_0xfa3ba7)=>(_0x4fc4fa,_0x57a40d)=>_0xfa3ba7(_0x4fc4fa,_0x57a40d,_0x4f339d);const Ao=0x12c,Mo=0x64,xo=()=>{let _0x2f3de5=[],_0x5d78cf=!0x1;return _0x12aa57=>{const _0x1f1fd3=_0x284c;_0x2f3de5[_0x1f1fd3(0x183)](_0x12aa57),_0x5d78cf||(_0x5d78cf=!0x0,setTimeout(()=>{_0x2f3de5['forEach'](_0x16efcc=>_0x16efcc()),_0x2f3de5=[],_0x5d78cf=!0x1;}));};};let rs=class extends _0x2ea33c{constructor(_0x44c119,_0x35c2e5,_0x20193,_0x2692fa,_0x1dbb7f,_0x6594d4,_0x2c3e0a,_0xef12e3){const _0x29234b=_0xc8d6e8;super(),g(this,_0x29234b(0x50d),!0x1),g(this,'_init',!0x1),g(this,_0x29234b(0x4c1),new _0xfe121(new Map())),g(this,_0x29234b(0x163),this[_0x29234b(0x4c1)][_0x29234b(0x4de)]()),g(this,'_roomMembers$',new _0xfe121([])),g(this,_0x29234b(0x4cf),this[_0x29234b(0x1a2)][_0x29234b(0x236)](_0x2565cd(Ao))),g(this,_0x29234b(0x496),_0x2384a7((_0x3fcbb5,_0x306991)=>{const _0x25fa8c=_0x29234b,_0x138149={'eventID':_0x275148[_0x25fa8c(0x276)],'data':{'unitID':this[_0x25fa8c(0x17c)],'memberID':this['_session'][_0x25fa8c(0x4b4)](),'selection':_0x503f9d(_0x3fcbb5,_0x306991[_0x25fa8c(0x4a8)])}};this[_0x25fa8c(0x3a5)]['send'](_0x138149,this[_0x25fa8c(0x17c)]);},Mo)),(this[_0x29234b(0x17c)]=_0x44c119,this[_0x29234b(0x3a5)]=_0x35c2e5,this['_injector']=_0x20193,this['_colorAssignService']=_0x2692fa,this[_0x29234b(0x253)]=_0x1dbb7f,this[_0x29234b(0x2c7)]=_0x6594d4,this[_0x29234b(0x4e0)]=_0x2c3e0a,this[_0x29234b(0x371)]=_0xef12e3);}get['cursorInfo'](){const _0x376e7c=_0xc8d6e8;return this['_cursorInfo$'][_0x376e7c(0x388)]();}get[_0xc8d6e8(0x410)](){const _0x1fee79=_0xc8d6e8;return this['_roomMembers$'][_0x1fee79(0x388)]();}['dispose'](){const _0xed9c5b=_0xc8d6e8;super[_0xed9c5b(0x204)](),this[_0xed9c5b(0x4c1)]['next'](new Map()),this[_0xed9c5b(0x4c1)][_0xed9c5b(0x20c)](),this[_0xed9c5b(0x1a2)]['next']([]),this[_0xed9c5b(0x1a2)]['complete']();}[_0xc8d6e8(0x293)](){const _0x55112b=_0xc8d6e8;this[_0x55112b(0x36a)]||(this['_init']=!0x0,this[_0x55112b(0x3a5)][_0x55112b(0x280)][_0x55112b(0x236)](_0x6a5096(this[_0x55112b(0x191)]))[_0x55112b(0x1ed)](_0x2d31ef=>{const _0xceab80=_0x55112b;_0x2d31ef===ve['ONLINE']?this[_0xceab80(0x44f)]():this[_0xceab80(0x379)]();}),this[_0x55112b(0x3a5)]['event$'][_0x55112b(0x236)](_0x6a5096(this[_0x55112b(0x191)]))[_0x55112b(0x1ed)](_0x26af99=>{const _0x602fca=_0x55112b,_0x11439d=_0x26af99[_0x602fca(0x411)];_0x11439d===_0x275148[_0x602fca(0x276)]&&this[_0x602fca(0x2b6)](_0x26af99),_0x11439d===_0x275148[_0x602fca(0x2bb)]&&this[_0x602fca(0x25d)](_0x26af99);}),this[_0x55112b(0x3c9)](),this[_0x55112b(0x43e)](this[_0x55112b(0x4e0)]['onCommandExecuted'](_0x3d027c=>{const _0x518c63=_0x55112b;if(this['_online']&&_0x3d027c['id']===_0x2c4628['id']&&_0x3d027c[_0x518c63(0x477)][_0x518c63(0x367)]===this[_0x518c63(0x17c)]){const _0x49054a=_0x3d027c[_0x518c63(0x477)];this['_updateLocalCursor'](_0x49054a[_0x518c63(0x48b)],_0x49054a['selections'][0x0]);}})));}['_onCursorUpdate'](_0x375d16){const _0xb7f05d=_0xc8d6e8;var _0x24610f,_0x4ef361;const {memberID:_0x118115,selection:_0x8799eb}=_0x375d16[_0xb7f05d(0x464)],{sheetName:_0x173aa8,range:_0xf08d0f}=_0x358f17(_0x8799eb),_0xb17385={'name':(_0x4ef361=(_0x24610f=this['_memberService']['getMember'](this[_0xb7f05d(0x17c)],_0x118115))==null?void 0x0:_0x24610f[_0xb7f05d(0x21a)])!=null?_0x4ef361:_0xb7f05d(0x36b),'range':this[_0xb7f05d(0x1d8)](_0x173aa8,_0xf08d0f),'sheetID':_0x173aa8,'color':this[_0xb7f05d(0x4ca)][_0xb7f05d(0x132)](_0x118115),'selection':_0x8799eb},_0x4d3997=this[_0xb7f05d(0x45b)];_0x4d3997[_0xb7f05d(0x21c)](_0x118115,_0xb17385),this['_cursorInfo$'][_0xb7f05d(0x3f0)](_0x4d3997);}[_0xc8d6e8(0x25d)](_0x1eb66c){const _0x54e864=_0xc8d6e8,{memberID:_0x5489d5}=_0x1eb66c[_0x54e864(0x464)],_0x27ba36=this[_0x54e864(0x45b)];_0x27ba36['delete'](_0x5489d5),this[_0x54e864(0x4c1)][_0x54e864(0x3f0)](_0x27ba36);}[_0xc8d6e8(0x1d8)](_0x2a6f9b,_0x79219d){const _0x18499b=_0xc8d6e8;var _0xb38211,_0x443687;const _0xae4c03=(_0x443687=(_0xb38211=this[_0x18499b(0x2c7)]['getUniverSheetInstance'](this[_0x18499b(0x17c)]))==null?void 0x0:_0xb38211[_0x18499b(0x4d9)](_0x2a6f9b))==null?void 0x0:_0x443687['getMergeData']();return(_0xae4c03==null?void 0x0:_0xae4c03[_0x18499b(0x3f1)](_0x1d6760=>_0x3cb9ac[_0x18499b(0x3a3)](_0x1d6760,_0x79219d)))||_0x79219d;}[_0xc8d6e8(0x3c9)](){const _0x56639e=_0xc8d6e8,_0x4af134=new _0x4711ac(),_0x11e13d=xo(),_0x1ed778=()=>{const _0xfefb19=_0x284c;_0x4af134[_0xfefb19(0x204)]();const _0x1d2a68=(_0x368459,_0x4e9ebc,_0xf5fd35,_0x3e099)=>{const _0x51ef41=_0xfefb19;let _0x438553=[];switch(_0x368459['id']){case _0x4e05a8[_0x51ef41(0x501)]:{_0x438553=_0x13af4b(_0x368459,_0x3e099);break;}case _0x4e05a8[_0x51ef41(0x286)]:{_0x438553=_0x3c7298(_0x368459,_0x3e099);break;}case _0x4e05a8[_0x51ef41(0x315)]:{_0x438553=_0x1d4077(_0x368459,_0x3e099);break;}case _0x4e05a8[_0x51ef41(0x261)]:{_0x438553=_0x380e01(_0x368459,_0x3e099);break;}case _0x4e05a8[_0x51ef41(0x4df)]:{_0x438553=_0x3aa3e6(_0x368459,_0x3e099);break;}case _0x4e05a8['InsertRowCommandId']:{_0x438553=_0x591de4(_0x368459,_0x3e099);break;}case _0x4e05a8[_0x51ef41(0x147)]:{_0x438553=_0x1eff74(_0x368459,_0x3e099);break;}case _0x4e05a8['RemoveColCommandId']:{_0x438553=_0x35033c(_0x368459,_0x3e099);break;}case _0x4e05a8['RemoveRowCommandId']:{_0x438553=_0xaa71cb(_0x368459,_0x3e099);break;}}const _0x18e934=_0x3ee0a2(_0x438553,_0x3e099),_0x3b51c7=this[_0x51ef41(0x45b)][_0x51ef41(0x2c2)](_0x4e9ebc);if(_0x3b51c7&&_0x18e934){const _0x11b98b={..._0x3b51c7,'range':_0x18e934};this[_0x51ef41(0x45b)][_0x51ef41(0x21c)](_0x4e9ebc,_0x11b98b),_0x11e13d(()=>{const _0xa7d977=_0x51ef41,_0x588204=this[_0xa7d977(0x371)][_0xa7d977(0x1d2)](_0x18e934,_0x2aa32e=>(_0x588204[_0xa7d977(0x204)](),_0x1d2a68(_0x2aa32e,_0x4e9ebc,_0xf5fd35,_0x18e934)));_0x4af134[_0xa7d977(0x31c)](_0x588204);});}return{'redos':[],'undos':[]};};this[_0xfefb19(0x45b)][_0xfefb19(0x1da)]((_0x4c44ae,_0x102519)=>{const _0x24a73d=_0xfefb19,{range:_0x28d135,sheetID:_0x4679b8}=_0x4c44ae,_0x4091f6=this[_0x24a73d(0x371)][_0x24a73d(0x1d2)](_0x28d135,_0x1f695a=>(_0x4091f6[_0x24a73d(0x204)](),_0x1d2a68(_0x1f695a,_0x102519,_0x4679b8,_0x28d135)));_0x4af134['add'](_0x4091f6);});};this['disposeWithMe'](_0x4e58a4(this[_0x56639e(0x4c1)][_0x56639e(0x1ed)](()=>{_0x1ed778();})));}[_0xc8d6e8(0x44f)](){const _0x10e9f7=_0xc8d6e8;var _0x4547ad,_0x2b0549;if(this[_0x10e9f7(0x50d)]=!0x0,((_0x4547ad=this['_univerInstanceService']['getFocusedUnit']())==null?void 0x0:_0x4547ad[_0x10e9f7(0x4a7)]())!==this[_0x10e9f7(0x17c)])return;const _0x27e6c4=(_0x2b0549=this[_0x10e9f7(0x360)][_0x10e9f7(0x2c2)](_0x1e03cb)['getCurrentSelections']())==null?void 0x0:_0x2b0549[0x0],_0x163804=this['_univerInstanceService'][_0x10e9f7(0x2e3)](_0x4f645a[_0x10e9f7(0x50a)])[_0x10e9f7(0x404)]();_0x27e6c4&&_0x163804&&this['_updateLocalCursor'](_0x163804['getSheetId'](),_0x27e6c4);}[_0xc8d6e8(0x379)](){const _0x3d7a54=_0xc8d6e8;this[_0x3d7a54(0x50d)]=!0x1;}};rs=No([Be(0x2,_0x13f971(_0x20e5db)),Be(0x3,_0x13f971(bs)),Be(0x4,_0x13f971(Me)),Be(0x5,_0x2ddd21),Be(0x6,_0x4171ed),Be(0x7,_0x13f971(_0x50ac3c))],rs);var Lo=Object[_0xc8d6e8(0x17a)],$o=Object['getOwnPropertyDescriptor'],Ho=(_0x3c19f2,_0x57ede9,_0x2ccae3,_0x53e45b)=>{const _0x3d6e89=_0xc8d6e8;for(var _0x33693a=_0x53e45b>0x1?void 0x0:_0x53e45b?$o(_0x57ede9,_0x2ccae3):_0x57ede9,_0xd0486a=_0x3c19f2[_0x3d6e89(0x3d5)]-0x1,_0x16a6d0;_0xd0486a>=0x0;_0xd0486a--)(_0x16a6d0=_0x3c19f2[_0xd0486a])&&(_0x33693a=(_0x53e45b?_0x16a6d0(_0x57ede9,_0x2ccae3,_0x33693a):_0x16a6d0(_0x33693a))||_0x33693a);return _0x53e45b&&_0x33693a&&Lo(_0x57ede9,_0x2ccae3,_0x33693a),_0x33693a;},$t=(_0x3ca31d,_0x4e26be)=>(_0x4c888e,_0x21cb66)=>_0x4e26be(_0x4c888e,_0x21cb66,_0x3ca31d);let Ve=class extends _0x2ea33c{constructor(_0x2fac72,_0x42335d,_0x4b2b98){const _0x435bea=_0xc8d6e8;super(),g(this,'_entities',new Map()),g(this,'_entityInit$',new _0x378360()),(this['_univerInstanceService']=_0x2fac72,this[_0x435bea(0x360)]=_0x42335d,this['_collabSessionService']=_0x4b2b98,this[_0x435bea(0x36a)]());}[_0xc8d6e8(0x204)](){const _0x1fbb6f=_0xc8d6e8;super['dispose'](),this['_entityInit$'][_0x1fbb6f(0x20c)](),this[_0x1fbb6f(0x3dd)]['forEach'](_0xa33fb9=>_0xa33fb9[_0x1fbb6f(0x204)]());}[_0xc8d6e8(0x439)](_0x19ed32){const _0x2d074c=_0xc8d6e8;return this[_0x2d074c(0x3dd)]['has'](_0x19ed32)?this[_0x2d074c(0x3dd)][_0x2d074c(0x2c2)](_0x19ed32)[_0x2d074c(0x163)]:this[_0x2d074c(0x28d)][_0x2d074c(0x236)](_0x348f8e(_0x118c83=>_0x118c83['unitID']===_0x19ed32),_0x4b2328(_0x265a81=>_0x265a81[_0x2d074c(0x163)]));}['_init'](){const _0x55e60a=_0xc8d6e8;this[_0x55e60a(0x2c7)]['getTypeOfUnitAdded$'](_0x4f645a[_0x55e60a(0x50a)])[_0x55e60a(0x236)](_0x6a5096(this[_0x55e60a(0x191)]))['subscribe'](async _0x555ffa=>{const _0x43d7be=_0x55e60a,_0x50e732=_0x555ffa[_0x43d7be(0x4a7)](),_0x30082d=await this['_startSheetCollabCursor'](_0x50e732);this[_0x43d7be(0x28d)]['next'](_0x30082d),this['_entities'][_0x43d7be(0x21c)](_0x50e732,_0x30082d);}),this[_0x55e60a(0x2c7)]['getTypeOfUnitAdded$'](_0x4f645a[_0x55e60a(0x3c7)])[_0x55e60a(0x236)](_0x6a5096(this[_0x55e60a(0x191)]))[_0x55e60a(0x236)](_0x348f8e(_0x2773f2=>!_0x2773f2[_0x55e60a(0x4a7)]()['startsWith']('__')))[_0x55e60a(0x1ed)](async _0x50f44c=>{const _0x1abd32=_0x55e60a,_0x40dd91=_0x50f44c['getUnitId'](),_0xb4c522=await this[_0x1abd32(0x130)](_0x40dd91);this[_0x1abd32(0x28d)][_0x1abd32(0x3f0)](_0xb4c522),this[_0x1abd32(0x3dd)]['set'](_0x40dd91,_0xb4c522);}),_0x88f83c(this['_univerInstanceService'][_0x55e60a(0x497)](_0x4f645a['UNIVER_DOC']),this[_0x55e60a(0x2c7)][_0x55e60a(0x497)](_0x4f645a['UNIVER_SHEET']))['pipe'](_0x6a5096(this[_0x55e60a(0x191)]))[_0x55e60a(0x1ed)](_0x4880a4=>{const _0x232600=_0x55e60a,_0x249551=_0x4880a4[_0x232600(0x4a7)](),_0x4c93a9=this[_0x232600(0x3dd)]['get'](_0x249551);_0x4c93a9&&(_0x4c93a9[_0x232600(0x204)](),this[_0x232600(0x3dd)][_0x232600(0x2b0)](_0x249551));});}async[_0xc8d6e8(0x207)](_0x5d1a2f){const _0x412df0=_0xc8d6e8,_0x27fef0=await this[_0x412df0(0x3b0)][_0x412df0(0x392)](_0x5d1a2f),_0x2701c7=this[_0x412df0(0x360)][_0x412df0(0x15f)](rs,_0x5d1a2f,_0x27fef0);return _0x2701c7['init'](),_0x2701c7;}async[_0xc8d6e8(0x130)](_0x2bc6a2){const _0x2381b5=_0xc8d6e8,_0x3fcf40=await this[_0x2381b5(0x3b0)]['requireSession'](_0x2bc6a2),_0x475399=this[_0x2381b5(0x360)][_0x2381b5(0x15f)](ns,_0x2bc6a2,_0x3fcf40);return _0x475399['init'](),_0x475399;}};Ve=Ho([$t(0x0,_0x2ddd21),$t(0x1,_0x13f971(_0x20e5db)),$t(0x2,_0x13f971(xe))],Ve);const nt=0x14,Ys=0xc8,Ht=0x4,jo=0x5;function Bo(_0x3d535e,_0x324727){const _0x59e895=_0xc8d6e8;let {radius:_0x316734,width:_0x210351,height:_0x556244}=_0x324727;_0x316734=_0x316734!=null?_0x316734:0x0,_0x210351=_0x210351!=null?_0x210351:0x1e,_0x556244=_0x556244!=null?_0x556244:0x1e;let _0x5b9c48=0x0,_0x46e690=0x0,_0x140f11=0x0;_0x5b9c48=_0x46e690=_0x140f11=Math['min'](_0x316734,_0x210351/0x2,_0x556244/0x2),_0x3d535e[_0x59e895(0x1c7)](),_0x3d535e[_0x59e895(0x2fd)](_0x5b9c48,0x0),_0x3d535e['lineTo'](_0x210351-_0x46e690,0x0),_0x3d535e[_0x59e895(0x2f8)](_0x210351-_0x46e690,_0x46e690,_0x46e690,Math['PI']*0x3/0x2,0x0,!0x1),_0x3d535e[_0x59e895(0x26b)](_0x210351,_0x556244-_0x140f11),_0x3d535e[_0x59e895(0x2f8)](_0x210351-_0x140f11,_0x556244-_0x140f11,_0x140f11,0x0,Math['PI']/0x2,!0x1),_0x3d535e['lineTo'](0x0,_0x556244),_0x3d535e['lineTo'](0x0,_0x5b9c48),_0x3d535e[_0x59e895(0x2f8)](_0x5b9c48,_0x5b9c48,_0x5b9c48,Math['PI'],Math['PI']*0x3/0x2,!0x1),_0x3d535e[_0x59e895(0x14d)](),_0x324727['fill']&&(_0x3d535e[_0x59e895(0x35b)](),_0x3d535e[_0x59e895(0x329)]=_0x324727['fill'],_0x324727[_0x59e895(0x37a)]===_0x59e895(0x460)?_0x3d535e[_0x59e895(0x450)](_0x59e895(0x460)):_0x3d535e[_0x59e895(0x450)](),_0x3d535e[_0x59e895(0x325)]());}class Ot extends _0xc62d9e{constructor(_0xb348f7,_0x389fd1){const _0x214260=_0xc8d6e8;super(_0xb348f7,_0x389fd1),g(this,_0x214260(0x27d)),g(this,'text'),(this[_0x214260(0x27d)]=_0x389fd1==null?void 0x0:_0x389fd1[_0x214260(0x27d)],this[_0x214260(0x47e)]=_0x389fd1==null?void 0x0:_0x389fd1[_0x214260(0x47e)]);}static[_0xc8d6e8(0x1b5)](_0x123330,_0x504dda){const _0x14d3ce=_0xc8d6e8,{text:_0x2d8b56,color:_0x4b98db}=_0x504dda;_0x123330[_0x14d3ce(0x35b)](),_0x123330[_0x14d3ce(0x471)]='bold\x2013px\x20Source\x20Han\x20Sans\x20CN';const _0x47128f=_0x123330[_0x14d3ce(0x19f)](_0x2d8b56)['width'],_0x20613f=Math['min'](_0x47128f+0x2*Ht,Ys);Bo(_0x123330,{'height':nt,'radius':0x4,'width':_0x20613f,'fill':_0x4b98db,'evented':!0x1}),_0x123330[_0x14d3ce(0x329)]=_0x14d3ce(0x1a9);const _0x1b856e=Ht,_0x4ce1f4=nt-jo,_0x56214c=Ys-0x2*Ht;if(_0x47128f>_0x56214c){let _0x25b42e='',_0x30f59f=0x0;for(const _0x156e05 of _0x2d8b56){const _0x2ce479=_0x123330[_0x14d3ce(0x19f)](_0x156e05)[_0x14d3ce(0x413)];if(_0x30f59f+_0x2ce479<=_0x56214c-_0x123330[_0x14d3ce(0x19f)]('...')['width'])_0x25b42e+=_0x156e05,_0x30f59f+=_0x2ce479;else{_0x25b42e+=_0x14d3ce(0x1fb);break;}}_0x123330[_0x14d3ce(0x4ee)](_0x25b42e,_0x1b856e,_0x4ce1f4);}else _0x123330[_0x14d3ce(0x4ee)](_0x2d8b56,_0x1b856e,_0x4ce1f4);_0x123330['restore']();}['_draw'](_0x22e5ef){const _0x192dd5=_0xc8d6e8;Ot[_0x192dd5(0x1b5)](_0x22e5ef,this);}}const jt='collab-text-anchor-',ko=_0xc8d6e8(0x2a0),Wo=_0xc8d6e8(0x180),Je=0x6,Fo=1.5,Bt=0x4,Vo=1.5,Go=_0xc8d6e8(0x247);class Ks{constructor(_0x2719e1,_0x261213,_0x3f213b,_0xb6c880){const _0x58b725=_0xc8d6e8;g(this,_0x58b725(0x310),[]),g(this,_0x58b725(0x14e),null),g(this,'_textBubble',null),g(this,_0x58b725(0x151),null),g(this,'_hideTimer',null),g(this,_0x58b725(0x45e),null),(this[_0x58b725(0x233)]=_0x2719e1,this[_0x58b725(0x161)]=_0x261213,this['_docSkeleton']=_0x3f213b,this['_document']=_0xb6c880,this[_0x58b725(0x1a0)]());}set['_hover'](_0xb3a73f){const _0x12297f=_0xc8d6e8;_0xb3a73f?(this[_0x12297f(0x151)]&&this[_0x12297f(0x151)]['hide'](),this[_0x12297f(0x4ba)]&&this['_textBubble'][_0x12297f(0x339)]()):(this['_anchorDot']&&this['_anchorDot'][_0x12297f(0x339)](),this[_0x12297f(0x4ba)]&&this[_0x12297f(0x4ba)]['hide']());}[_0xc8d6e8(0x204)](){const _0x4e2db8=_0xc8d6e8;for(const _0x5e0dcb of this[_0x4e2db8(0x310)])_0x5e0dcb[_0x4e2db8(0x204)]();this[_0x4e2db8(0x4ba)]&&this[_0x4e2db8(0x4ba)][_0x4e2db8(0x204)](),this[_0x4e2db8(0x151)]&&this[_0x4e2db8(0x151)][_0x4e2db8(0x204)](),this[_0x4e2db8(0x14e)]&&this['_anchor'][_0x4e2db8(0x204)](),this['_eventUnsubscribe']&&this[_0x4e2db8(0x45e)]();}[_0xc8d6e8(0x1a0)](){const _0x4bd687=_0xc8d6e8;var _0x3ab987;const {_docSkeleton:_0x328a0d,_document:_0x3df63a}=this,{color:_0x54da43,name:_0x3524d5,ranges:_0x314947}=this['_cursor'],_0x2c698e=_0x3df63a[_0x4bd687(0x4ae)](),{docsLeft:_0x2769b6,docsTop:_0x3203e6}=_0x2c698e,_0x6b76db=new _0x4479bc(_0x2c698e,_0x328a0d);for(const {startOffset:_0x538f67,endOffset:_0x580f6f,rangeType:_0x26ec62,segmentId:_0x484148,segmentPage:_0x2cece4,collapsed:_0x86dc6e,isActive:_0x2d07bc}of _0x314947){const _0x4c8f04=_0x328a0d[_0x4bd687(0x358)](_0x538f67,!0x0,_0x484148,_0x2cece4);let _0x592f71=_0x328a0d[_0x4bd687(0x358)](_0x580f6f,!0x0,_0x484148,_0x2cece4);if(_0x592f71==null&&(_0x592f71=_0x328a0d[_0x4bd687(0x358)](_0x580f6f-0x1,!0x1,_0x484148,_0x2cece4)),_0x2d07bc){const {contentBoxPointGroup:_0x43644d}=_0x6b76db[_0x4bd687(0x165)](_0x592f71,_0x592f71);if(_0x43644d[_0x4bd687(0x3d5)]===0x0)continue;this[_0x4bd687(0x135)](_0x54da43,_0x43644d,_0x2769b6,_0x3203e6,_0x3524d5),this[_0x4bd687(0x45e)]=this['_handleHover']();}if(_0x4c8f04&&_0x592f71){if(_0x26ec62===_0x38f481[_0x4bd687(0x49f)]){const _0x262b63=new _0x3a67de(_0x2c698e,_0x328a0d),{pointGroup:_0x4a55b4}=(_0x3ab987=_0x262b63[_0x4bd687(0x165)](_0x4c8f04,_0x592f71))!=null?_0x3ab987:{};if(_0x4a55b4==null||_0x4a55b4[_0x4bd687(0x3d5)]===0x0)continue;this[_0x4bd687(0x1b0)](_0x54da43,_0x4a55b4,_0x2769b6,_0x3203e6);}else{if(!_0x86dc6e){const {borderBoxPointGroup:_0x4be5ea}=_0x6b76db['getRangePointData'](_0x4c8f04,_0x592f71);if(_0x4be5ea[_0x4bd687(0x3d5)]===0x0)continue;this[_0x4bd687(0x43f)](_0x54da43,_0x4be5ea,_0x2769b6,_0x3203e6);}}}}}[_0xc8d6e8(0x135)](_0x10aeb6,_0x2ca7a5,_0x36302a,_0x1f196a,_0x52b30d){const _0x3cd8ec=_0xc8d6e8,_0x38994d=this[_0x3cd8ec(0x16f)](_0x2ca7a5),{left:_0x284823,top:_0x2c1bb7,height:_0x3c49e7}=_0x38994d,_0x146f6a=this['_getScale'](),_0x3a9671=Vo/_0x146f6a,_0x1abb9f=new _0x2c31ab(jt+_0x4ef2fc[_0x3cd8ec(0x347)](Je),{'left':_0x284823+_0x36302a-_0x3a9671,'top':_0x2c1bb7+_0x1f196a,'height':_0x3c49e7,'width':Fo,'fill':_0x10aeb6||_0xdb3a53(_0x1a4681[_0x3cd8ec(0x4c0)],0x0),'strokeWidth':_0x3a9671,'stroke':Go,'evented':!0x0});this[_0x3cd8ec(0x14e)]=_0x1abb9f,this['_scene']['addObject'](_0x1abb9f,_0x58be2d);const _0x54a7c1=new _0x2c31ab(jt+_0x4ef2fc['generateRandomId'](Je),{'left':_0x284823+_0x36302a-_0x3a9671,'top':_0x2c1bb7+_0x1f196a-Bt/0x2,'height':Bt,'width':Bt,'fill':_0x10aeb6||_0xdb3a53(_0x1a4681[_0x3cd8ec(0x4c0)],0x0),'strokeWidth':0x0,'stroke':_0x10aeb6||_0xdb3a53(_0x1a4681[_0x3cd8ec(0x4c0)],0x0),'evented':!0x1});this[_0x3cd8ec(0x151)]=_0x54a7c1,this[_0x3cd8ec(0x161)][_0x3cd8ec(0x178)](_0x54a7c1,_0x58be2d);const _0x2b2bc2=new Ot(jt+_0x4ef2fc[_0x3cd8ec(0x347)](Je),{'left':_0x284823+_0x36302a-_0x3a9671,'top':_0x2c1bb7+_0x1f196a-nt,'text':_0x52b30d,'color':_0x10aeb6});this[_0x3cd8ec(0x4ba)]=_0x2b2bc2,this[_0x3cd8ec(0x161)][_0x3cd8ec(0x178)](_0x2b2bc2,_0x58be2d),this['_hover']=!0x1;}['_handleHover'](){const _0x3617b5=_0xc8d6e8,_0x4a1106=this[_0x3617b5(0x14e)]['onPointerEnter$'][_0x3617b5(0x4c8)](()=>{const _0x439bab=_0x3617b5;this[_0x439bab(0x211)]=!0x0;}),_0x3bbcde=this[_0x3617b5(0x14e)][_0x3617b5(0x4b2)][_0x3617b5(0x4c8)](()=>{const _0x544f5b=_0x3617b5;this[_0x544f5b(0x4af)]&&clearTimeout(this[_0x544f5b(0x4af)]),this[_0x544f5b(0x4af)]=setTimeout(()=>{const _0x328837=_0x544f5b;this[_0x328837(0x211)]=!0x1;},0x7d0);});return()=>{const _0x4a0701=_0x3617b5;_0x4a1106[_0x4a0701(0x2e2)](),_0x3bbcde['unsubscribe']();};}['_drawTextRange'](_0x1f5889,_0x31df3f,_0x357222,_0x1041de){const _0x49b7af=_0xc8d6e8,_0x373973=new _0x5dfdce(_0x1f5889)[_0x49b7af(0x2ef)](0.2)[_0x49b7af(0x429)](),_0xda7a72=new _0x19a511(ko+_0x4ef2fc[_0x49b7af(0x347)](Je),{'pointsGroup':_0x31df3f,'fill':_0x373973||_0xdb3a53(_0x1a4681[_0x49b7af(0x4c0)],0.2),'left':_0x357222,'top':_0x1041de,'evented':!0x1,'debounceParentDirty':!0x1});this[_0x49b7af(0x310)][_0x49b7af(0x183)](_0xda7a72),this[_0x49b7af(0x161)][_0x49b7af(0x178)](_0xda7a72,_0x58be2d);}[_0xc8d6e8(0x1b0)](_0x48feb7,_0x5ec9e1,_0x2bed6e,_0x524d1c){const _0x5a5c77=_0xc8d6e8,_0x118078=new _0x5dfdce(_0x48feb7)[_0x5a5c77(0x2ef)](0.2)['toRgbString'](),_0x362a2f=new _0x19a511(Wo+_0x4ef2fc['generateRandomId'](Je),{'pointsGroup':_0x5ec9e1,'fill':_0x118078||_0xdb3a53(_0x1a4681[_0x5a5c77(0x4c0)],0.2),'left':_0x2bed6e,'top':_0x524d1c,'evented':!0x1,'debounceParentDirty':!0x1});this[_0x5a5c77(0x310)]['push'](_0x362a2f),this[_0x5a5c77(0x161)]['addObject'](_0x362a2f,_0x58be2d);}[_0xc8d6e8(0x16f)](_0x3fe7fe){const _0x16fdaa=_0x3fe7fe[0x0],_0x2af486=_0x16fdaa[0x0],_0x7a0d41=_0x16fdaa[0x2],{x:_0x20dda7,y:_0x146bc7}=_0x2af486,{x:_0x4927a6,y:_0x287ebc}=_0x7a0d41;return{'left':_0x20dda7,'top':_0x146bc7,'width':_0x4927a6-_0x20dda7,'height':_0x287ebc-_0x146bc7};}['_getScale'](){const _0x1f5977=_0xc8d6e8,{scaleX:_0x257914,scaleY:_0x5d0798}=this[_0x1f5977(0x161)][_0x1f5977(0x4a0)]();return Math['max'](_0x257914,_0x5d0798);}}var Yo=Object['defineProperty'],Ko=Object[_0xc8d6e8(0x4d8)],zo=(_0x3eb476,_0x30f284,_0x27ba42,_0x5844e6)=>{const _0x57cb06=_0xc8d6e8;for(var _0x222d29=_0x5844e6>0x1?void 0x0:_0x5844e6?Ko(_0x30f284,_0x27ba42):_0x30f284,_0x739f96=_0x3eb476[_0x57cb06(0x3d5)]-0x1,_0x10ceb2;_0x739f96>=0x0;_0x739f96--)(_0x10ceb2=_0x3eb476[_0x739f96])&&(_0x222d29=(_0x5844e6?_0x10ceb2(_0x30f284,_0x27ba42,_0x222d29):_0x10ceb2(_0x222d29))||_0x222d29);return _0x5844e6&&_0x222d29&&Yo(_0x30f284,_0x27ba42,_0x222d29),_0x222d29;},ct=(_0x2bab56,_0x93820b)=>(_0x2c5bdd,_0x667929)=>_0x93820b(_0x2c5bdd,_0x667929,_0x2bab56);let os=class extends _0x2ea33c{constructor(_0x477d5e,_0x1487c3,_0xd309c0,_0x570545,_0x584e0b){const _0x1a8980=_0xc8d6e8;super(),g(this,_0x1a8980(0x241),[]),g(this,'_cursors',[]),(this['_context']=_0x477d5e,this[_0x1a8980(0x382)]=_0x1487c3,this[_0x1a8980(0x1f2)]=_0xd309c0,this[_0x1a8980(0x4e0)]=_0x570545,this[_0x1a8980(0x1f3)]=_0x584e0b,this['_init']());}[_0xc8d6e8(0x36a)](){const _0x28c79a=_0xc8d6e8,_0x36aa2f=this['_context']['unitId'],_0x251d35=this['_docSkeletonManagerService'];this[_0x28c79a(0x43e)](_0x59bbc7([this[_0x28c79a(0x1f2)][_0x28c79a(0x439)](_0x36aa2f),this['_themeService'][_0x28c79a(0x186)]])[_0x28c79a(0x236)](_0x38f68a(([_0x4713f0,_0x35a158])=>({'skeleton':_0x251d35[_0x28c79a(0x42a)](),'cursors':[..._0x4713f0[_0x28c79a(0x2f6)]()][_0x28c79a(0x393)](_0x3a285b=>({..._0x3a285b,'color':_0x35a158[_0x3a285b[_0x28c79a(0x27d)]]}))})))[_0x28c79a(0x1ed)](_0x43d037=>{const _0x4a0f5d=_0x28c79a;if(this['_removeCollabCursors'](),_0x43d037){const {skeleton:_0x12652b,cursors:_0x1b64d4}=_0x43d037;this[_0x4a0f5d(0x452)](_0x12652b,_0x1b64d4);}})),this[_0x28c79a(0x423)](),this[_0x28c79a(0x2f5)]();}[_0xc8d6e8(0x452)](_0x5661cb,_0x59a48d){const _0x16b603=_0xc8d6e8,{scene:_0x361df5,mainComponent:_0x590567}=this[_0x16b603(0x37b)],_0x18e04c=_0x59a48d[_0x16b603(0x431)](_0x5c1691=>new Ks(_0x5c1691,_0x361df5,_0x5661cb,_0x590567));this[_0x16b603(0x241)]=_0x18e04c,this[_0x16b603(0x417)]=_0x59a48d;}[_0xc8d6e8(0x2ab)](){const _0x18d9fd=_0xc8d6e8;this[_0x18d9fd(0x51d)]();const {scene:_0x4a6bd3,mainComponent:_0x57aad6}=this[_0x18d9fd(0x37b)],_0x3671c8=this[_0x18d9fd(0x382)][_0x18d9fd(0x42a)](),_0x55dd72=this[_0x18d9fd(0x417)][_0x18d9fd(0x431)](_0x551a2a=>new Ks(_0x551a2a,_0x4a6bd3,_0x3671c8,_0x57aad6));this['_cursorShapes']=_0x55dd72;}[_0xc8d6e8(0x51d)](){const _0xab387e=_0xc8d6e8;this[_0xab387e(0x241)][_0xab387e(0x1da)](_0x244762=>_0x244762[_0xab387e(0x204)]()),this[_0xab387e(0x241)]=[];}[_0xc8d6e8(0x2f5)](){const _0x3df52c=_0xc8d6e8,_0x578c85=[_0x15a860['id']];this['disposeWithMe'](this['_commandService'][_0x3df52c(0x19a)](_0x58a161=>{const _0xb894b6=_0x3df52c;_0x578c85['includes'](_0x58a161['id'])&&_0x58a161[_0xb894b6(0x477)]['unitId']===this[_0xb894b6(0x37b)]['unitId']&&this['_refreshCollabCursors']();}));}['_initResize'](){const _0x1f5d89=_0xc8d6e8;this[_0x1f5d89(0x43e)](_0x289720(this[_0x1f5d89(0x37b)]['engine'][_0x1f5d89(0x409)])['pipe'](_0x474f16(_0x377973=>_0x377973[_0x1f5d89(0x4aa)]===_0x5c7057['resize']),_0x1d2269(0x10))[_0x1f5d89(0x1ed)](()=>{const _0x2bbe57=_0x1f5d89;this[_0x2bbe57(0x2ab)]();}));}};function _0x284c(_0x4c23fa,_0x19b0c5){const _0x1849f7=_0x1849();return _0x284c=function(_0x284c51,_0x324b5d){_0x284c51=_0x284c51-0x122;let _0x488da9=_0x1849f7[_0x284c51];return _0x488da9;},_0x284c(_0x4c23fa,_0x19b0c5);}os=zo([ct(0x1,_0x13f971(_0xd704ef)),ct(0x2,_0x13f971(Ve)),ct(0x3,_0x4171ed),ct(0x4,_0x13f971(_0x5dff17))],os);const qo=0x1,Xo=1.5;class Jo extends _0xc62d9e{constructor(_0x2da4c8,_0x4edd02){const _0x209df8=_0xc8d6e8;super(_0x2da4c8,_0x4edd02),g(this,_0x209df8(0x13c)),g(this,'_hovered',!0x1),g(this,'_range'),g(this,_0x209df8(0x269),''),g(this,_0x209df8(0x2a3),_0x209df8(0x34c)),g(this,'_backgroundColor'),(_0x4edd02&&this['setShapeProps'](_0x4edd02),this[_0x209df8(0x128)]['subscribeEvent'](()=>this[_0x209df8(0x451)]({'hovered':!0x0})),this['onPointerLeave$'][_0x209df8(0x4c8)](()=>this[_0x209df8(0x451)]({'hovered':!0x1})));}['setShapeProps'](_0x54f9e8){const _0x16d318=_0xc8d6e8;var _0x21d840,_0x5eca27,_0x80ccbe,_0x2878e8,_0xd27b78,_0x34b88f;this['_color']=(_0x21d840=_0x54f9e8[_0x16d318(0x27d)])!=null?_0x21d840:this[_0x16d318(0x13c)],this[_0x16d318(0x2c0)]=(_0x5eca27=_0x54f9e8[_0x16d318(0x195)])!=null?_0x5eca27:this['_hovered'],this[_0x16d318(0x278)]=(_0x80ccbe=_0x54f9e8['range'])!=null?_0x80ccbe:this[_0x16d318(0x278)],this[_0x16d318(0x269)]=(_0x2878e8=_0x54f9e8[_0x16d318(0x21a)])!=null?_0x2878e8:this['_name'],this[_0x16d318(0x2a3)]=(_0xd27b78=_0x54f9e8['labelPosition'])!=null?_0xd27b78:this['_labelPosition'],this[_0x16d318(0x19b)]=(_0x34b88f=_0x54f9e8[_0x16d318(0x14c)])!=null?_0x34b88f:this[_0x16d318(0x19b)],this[_0x16d318(0x2db)]({'width':_0x54f9e8[_0x16d318(0x413)],'height':_0x54f9e8[_0x16d318(0x3e1)]});}[_0xc8d6e8(0x4a2)](_0x343fa9){const _0x1e7039=_0xc8d6e8,{row:_0x1b5ff5,column:_0x374192}=_0x343fa9;if(_0x1b5ff5>=this[_0x1e7039(0x278)][_0x1e7039(0x2b7)]&&_0x1b5ff5<=this[_0x1e7039(0x278)][_0x1e7039(0x518)]&&_0x374192>=this[_0x1e7039(0x278)][_0x1e7039(0x396)]&&_0x374192<=this[_0x1e7039(0x278)]['endColumn']){this['setShapeProps']({'hovered':!0x0});return;}this['setShapeProps']({'hovered':!0x1});}[_0xc8d6e8(0x139)](_0x410384){return!0x1;}['_draw'](_0x4c89c9){const _0x47ee17=_0xc8d6e8;_0x2c31ab[_0x47ee17(0x1b5)](_0x4c89c9,{'width':this['width'],'height':this['height'],'strokeWidth':Xo,'stroke':this[_0x47ee17(0x13c)],'evented':!0x1,'fill':this['_backgroundColor']}),this[_0x47ee17(0x2c0)]&&(_0x4c89c9[_0x47ee17(0x35b)](),_0x4c89c9[_0x47ee17(0x46a)](0x1,0x0,0x0,0x1,this['width'],this['_labelPosition']===_0x47ee17(0x18c)?0x0:-nt),Ot[_0x47ee17(0x1b5)](_0x4c89c9,{'text':this[_0x47ee17(0x269)],'color':this['_color']}),_0x4c89c9['restore']());}}var Zo=Object[_0xc8d6e8(0x17a)],Qo=Object[_0xc8d6e8(0x4d8)],ea=(_0x185374,_0x250972,_0x4c837c,_0x2d3a96)=>{const _0x5a5995=_0xc8d6e8;for(var _0x323ff2=_0x2d3a96>0x1?void 0x0:_0x2d3a96?Qo(_0x250972,_0x4c837c):_0x250972,_0x8cdff6=_0x185374[_0x5a5995(0x3d5)]-0x1,_0x126eb3;_0x8cdff6>=0x0;_0x8cdff6--)(_0x126eb3=_0x185374[_0x8cdff6])&&(_0x323ff2=(_0x2d3a96?_0x126eb3(_0x250972,_0x4c837c,_0x323ff2):_0x126eb3(_0x323ff2))||_0x323ff2);return _0x2d3a96&&_0x323ff2&&Zo(_0x250972,_0x4c837c,_0x323ff2),_0x323ff2;},kt=(_0x47edef,_0x39cb9c)=>(_0x4fa8c5,_0x405f34)=>_0x39cb9c(_0x4fa8c5,_0x405f34,_0x47edef);const ta=0x1389;let as=class extends _0x2ea33c{constructor(_0x13f0e0,_0x50ef78,_0x24f98f,_0x5c5050){const _0x26fa2d=_0xc8d6e8;super(),g(this,_0x26fa2d(0x417),new Set()),g(this,_0x26fa2d(0x4cc),null),(this['_context']=_0x13f0e0,this[_0x26fa2d(0x42b)]=_0x50ef78,this[_0x26fa2d(0x1f2)]=_0x24f98f,this[_0x26fa2d(0x1f3)]=_0x5c5050,this[_0x26fa2d(0x36a)]());}['_init'](){const _0x1ae25d=_0xc8d6e8;this[_0x1ae25d(0x42b)]['currentSkeleton$']['pipe'](_0x4d3dd9(this[_0x1ae25d(0x191)]),_0xaef0b0(_0x98ac5=>{const _0x36ac73=_0x1ae25d;if(_0x98ac5){const _0x6ace2f=_0x98ac5['sheetId'];return _0x59bbc7(this[_0x36ac73(0x1f2)]['getCollabCursors$'](this[_0x36ac73(0x37b)][_0x36ac73(0x367)]),this[_0x36ac73(0x1f3)][_0x36ac73(0x186)])['pipe'](_0x38f68a(([_0x358d5d,_0x52bb51])=>{const _0x369682=_0x36ac73,_0x2a314f=new Map();return _0x358d5d[_0x369682(0x1da)]((_0x343737,_0x113ee3)=>{const _0x123704=_0x369682;if(_0x343737[_0x123704(0x49b)]===_0x6ace2f){const _0x3515fc={..._0x343737};_0x3515fc[_0x123704(0x27d)]=_0x52bb51[_0x343737[_0x123704(0x27d)]],_0x2a314f['set'](_0x113ee3,_0x3515fc);}}),{'skeleton':_0x98ac5,'cursors':_0x2a314f};}));}return _0x2cb441({'skeleton':null,'cursors':new Map()});}))['subscribe'](({skeleton:_0x568818,cursors:_0x1bf11f})=>{const _0x38af48=_0x1ae25d;this['_removeCollabCursors'](),_0x568818&&this[_0x38af48(0x452)](_0x568818,_0x1bf11f);}),this[_0x1ae25d(0x42b)][_0x1ae25d(0x2de)]['subscribe'](_0x38f66f=>{const _0x2b70ba=_0x1ae25d;if(_0x38f66f==null)return;const {skeleton:_0x5af36c}=_0x38f66f,{scene:_0x18564a}=this['_context'];_0x18564a[_0x2b70ba(0x427)][_0x2b70ba(0x4c8)](_0x2384a7(_0x445b26=>{const _0xe614b9=_0x2b70ba;var _0xf3ba78,_0x25b1dc;const {offsetX:_0x4ab2c8,offsetY:_0x329366}=_0x445b26,{x:_0xfb2af,y:_0x5e3a33}=_0x18564a[_0xe614b9(0x307)](_0xc320db[_0xe614b9(0x131)]([_0x4ab2c8,_0x329366])),{scaleX:_0x46a081,scaleY:_0x2561c4}=_0x18564a[_0xe614b9(0x4a0)](),_0xd7cfce=_0x18564a[_0xe614b9(0x49d)](_0x5d55d7[_0xe614b9(0x1a5)]),_0x2b0225=_0x18564a[_0xe614b9(0x3f8)](_0xc320db[_0xe614b9(0x131)]([_0xfb2af,_0x5e3a33]),_0xd7cfce),_0x7bffdb=_0x5af36c['getCellPositionByOffset'](_0x4ab2c8,_0x329366,_0x46a081,_0x2561c4,_0x2b0225);((_0xf3ba78=this[_0xe614b9(0x4cc)])==null?void 0x0:_0xf3ba78[_0xe614b9(0x15b)])===_0x7bffdb[_0xe614b9(0x15b)]&&((_0x25b1dc=this['_lastPointer'])==null?void 0x0:_0x25b1dc['row'])===_0x7bffdb[_0xe614b9(0x492)]||this[_0xe614b9(0x417)][_0xe614b9(0x1da)](_0x15c75e=>{_0x15c75e['onMouseMove'](_0x7bffdb);});},0x64));});}[_0xc8d6e8(0x452)](_0x26baf4,_0xb6800){const _0x49903c=_0xc8d6e8;var _0x525b66;const _0x253e50=(_0x525b66=this[_0x49903c(0x42b)][_0x49903c(0x129)]())==null?void 0x0:_0x525b66[_0x49903c(0x38e)];if(!_0x253e50)return;const _0x317152=this[_0x49903c(0x152)]();if(!_0x317152)return;this['_cursors'][_0x49903c(0x1da)](_0x5777ab=>{_0x5777ab['makeDirty']();});const {scene:_0x15b10c}=_0x317152,_0x32e4e0=sa(Array['from'](_0xb6800[_0x49903c(0x2f6)]()))[_0x49903c(0x431)](_0x1bfddd=>{const _0x18ca67=_0x49903c,{color:_0x12cd3b,range:_0x56caa8,name:_0x332907,selection:_0x44aa88,sheetID:_0x2361d2}=_0x1bfddd,{startColumn:_0x390e8f,startRow:_0x3e3c81,endColumn:_0x5791b5,endRow:_0x441c9a}=_0x56caa8,_0x3ec4e0=_0x573888(_0x3e3c81,_0x390e8f,_0x15b10c,_0x253e50),_0x64c903=_0x573888(_0x441c9a,_0x5791b5,_0x15b10c,_0x253e50),{columnHeaderHeightAndMarginTop:_0xef077f}=_0x253e50,{startX:_0x2bbe90,startY:_0x35b7d2}=_0x3ec4e0,{endX:_0x3bbea0,endY:_0x23c57e}=_0x64c903,_0x30d9c9=_0x3bbea0-_0x2bbe90,_0x898b9b=_0x23c57e-_0x35b7d2,_0x23618e={'labelPosition':_0x35b7d2-_0xef077f>=nt?_0x18ca67(0x34c):_0x18ca67(0x18c),'sheetID':_0x2361d2,'range':_0x56caa8,'color':_0x12cd3b,'name':_0x332907,'selection':_0x44aa88,'left':_0x2bbe90,'top':_0x35b7d2,'width':_0x30d9c9,'height':_0x898b9b,'evented':!0x1,'zIndex':ta};return new Jo(_0x332907,_0x23618e);});_0x15b10c[_0x49903c(0x1de)](_0x32e4e0,qo),this[_0x49903c(0x417)]=new Set(_0x32e4e0);}['_removeCollabCursors'](){const _0x5adc59=_0xc8d6e8;var _0xefb620;(_0xefb620=this[_0x5adc59(0x417)])==null||_0xefb620['forEach'](_0x2fa8a6=>_0x2fa8a6[_0x5adc59(0x204)]());}[_0xc8d6e8(0x152)](){const _0x334598=_0xc8d6e8;return _0x2d6008(this[_0x334598(0x37b)][_0x334598(0x189)],this[_0x334598(0x37b)]);}};as=ea([kt(0x1,_0x13f971(_0x3d2098)),kt(0x2,_0x13f971(Ve)),kt(0x3,_0x13f971(_0x5dff17))],as);function sa(_0x5f25ea){const _0x33ae29=_0xc8d6e8,_0x1ff497=new Map();return _0x5f25ea[_0x33ae29(0x1da)](_0x4720dc=>{const _0x2f5b7f=_0x33ae29;if(_0x1ff497['has'](_0x4720dc[_0x2f5b7f(0x46c)])){const _0x252bd6=_0x1ff497[_0x2f5b7f(0x2c2)](_0x4720dc[_0x2f5b7f(0x46c)]);_0x252bd6[_0x2f5b7f(0x21a)]+=',\x20'+_0x4720dc[_0x2f5b7f(0x21a)];}else _0x1ff497[_0x2f5b7f(0x21c)](_0x4720dc[_0x2f5b7f(0x46c)],_0x4720dc);}),Array[_0x33ae29(0x381)](_0x1ff497['values']());}var Z=typeof globalThis<'u'?globalThis:typeof window<'u'?window:typeof global<'u'?global:typeof self<'u'?self:{};function at(_0x1b6e23){const _0x43903b=_0xc8d6e8;return _0x1b6e23&&_0x1b6e23[_0x43903b(0x2b1)]&&Object[_0x43903b(0x2f9)][_0x43903b(0x16d)]['call'](_0x1b6e23,_0x43903b(0x363))?_0x1b6e23[_0x43903b(0x363)]:_0x1b6e23;}var Mi={'exports':{}},yt={},ia=_0x2fe14b,na=Symbol[_0xc8d6e8(0x1d3)](_0xc8d6e8(0x294)),ra=Symbol[_0xc8d6e8(0x1d3)](_0xc8d6e8(0x3c0)),oa=Object[_0xc8d6e8(0x2f9)]['hasOwnProperty'],aa=ia[_0xc8d6e8(0x4c3)][_0xc8d6e8(0x1d7)],ca={'key':!0x0,'ref':!0x0,'__self':!0x0,'__source':!0x0};function xi(_0x352bca,_0xa57dd3,_0x26d2aa){const _0x16a11a=_0xc8d6e8;var _0x67f011,_0x344b64={},_0x1a3d76=null,_0x36c0da=null;_0x26d2aa!==void 0x0&&(_0x1a3d76=''+_0x26d2aa),_0xa57dd3[_0x16a11a(0x1e3)]!==void 0x0&&(_0x1a3d76=''+_0xa57dd3[_0x16a11a(0x1e3)]),_0xa57dd3[_0x16a11a(0x2a4)]!==void 0x0&&(_0x36c0da=_0xa57dd3['ref']);for(_0x67f011 in _0xa57dd3)oa[_0x16a11a(0x2c6)](_0xa57dd3,_0x67f011)&&!ca[_0x16a11a(0x16d)](_0x67f011)&&(_0x344b64[_0x67f011]=_0xa57dd3[_0x67f011]);if(_0x352bca&&_0x352bca[_0x16a11a(0x227)]){for(_0x67f011 in(_0xa57dd3=_0x352bca[_0x16a11a(0x227)],_0xa57dd3))_0x344b64[_0x67f011]===void 0x0&&(_0x344b64[_0x67f011]=_0xa57dd3[_0x67f011]);}return{'$$typeof':na,'type':_0x352bca,'key':_0x1a3d76,'ref':_0x36c0da,'props':_0x344b64,'_owner':aa[_0x16a11a(0x2bf)]};}yt['Fragment']=ra,yt[_0xc8d6e8(0x50e)]=xi,yt[_0xc8d6e8(0x2e5)]=xi,Mi[_0xc8d6e8(0x173)]=yt;var Pe=Mi['exports'],ee=function(){const _0x37c2c9=_0xc8d6e8;return ee=Object[_0x37c2c9(0x386)]||function(_0x546d7b){const _0x23cd14=_0x37c2c9;for(var _0x2a0f40,_0x3fd121=0x1,_0x20eacf=arguments[_0x23cd14(0x3d5)];_0x3fd121<_0x20eacf;_0x3fd121++){_0x2a0f40=arguments[_0x3fd121];for(var _0x1ddaa6 in _0x2a0f40)Object[_0x23cd14(0x2f9)][_0x23cd14(0x16d)][_0x23cd14(0x2c6)](_0x2a0f40,_0x1ddaa6)&&(_0x546d7b[_0x1ddaa6]=_0x2a0f40[_0x1ddaa6]);}return _0x546d7b;},ee['apply'](this,arguments);},ha=function(_0x1a020d,_0xb18061){const _0xf3ea1a=_0xc8d6e8;var _0xc4c26d={};for(var _0x13b199 in _0x1a020d)Object['prototype'][_0xf3ea1a(0x16d)][_0xf3ea1a(0x2c6)](_0x1a020d,_0x13b199)&&_0xb18061[_0xf3ea1a(0x336)](_0x13b199)<0x0&&(_0xc4c26d[_0x13b199]=_0x1a020d[_0x13b199]);if(_0x1a020d!=null&&typeof Object[_0xf3ea1a(0x44e)]==_0xf3ea1a(0x361)){for(var _0x54cf3a=0x0,_0x13b199=Object[_0xf3ea1a(0x44e)](_0x1a020d);_0x54cf3a<_0x13b199[_0xf3ea1a(0x3d5)];_0x54cf3a++)_0xb18061['indexOf'](_0x13b199[_0x54cf3a])<0x0&&Object[_0xf3ea1a(0x2f9)]['propertyIsEnumerable'][_0xf3ea1a(0x2c6)](_0x1a020d,_0x13b199[_0x54cf3a])&&(_0xc4c26d[_0x13b199[_0x54cf3a]]=_0x1a020d[_0x13b199[_0x54cf3a]]);}return _0xc4c26d;},Ts=_0x1f1ada(function(_0x3ae041,_0x25622e){const _0x418294=_0xc8d6e8;var _0x41193d=_0x3ae041[_0x418294(0x3d6)],_0x490ccd=_0x3ae041['id'],_0x47b489=_0x3ae041['className'],_0x32501f=_0x3ae041['extend'],_0xaa0df0=ha(_0x3ae041,[_0x418294(0x3d6),'id',_0x418294(0x457),_0x418294(0x210)]),_0x1cb2db=_0x418294(0x2da)['concat'](_0x490ccd,'\x20')['concat'](_0x47b489||'')[_0x418294(0x2d8)](),_0x20edbe=_0x24302d('_'[_0x418294(0x502)](ua()));return Li(_0x41193d,''[_0x418294(0x502)](_0x490ccd),{'defIds':_0x41193d[_0x418294(0x252)],'idSuffix':_0x20edbe[_0x418294(0x2bf)]},ee({'ref':_0x25622e,'className':_0x1cb2db},_0xaa0df0),_0x32501f);});function Li(_0x3e4444,_0x55526a,_0x405f13,_0x36f085,_0x439529){const _0x2938fa=_0xc8d6e8;return _0x41772d(_0x3e4444[_0x2938fa(0x321)],ee(ee({'key':_0x55526a},la(_0x3e4444,_0x405f13,_0x439529)),_0x36f085),(_a(_0x3e4444,_0x405f13)[_0x2938fa(0x1e4)]||[])[_0x2938fa(0x431)](function(_0x2f28a4,_0x246883){const _0x569235=_0x2938fa;return Li(_0x2f28a4,''['concat'](_0x55526a,'-')[_0x569235(0x502)](_0x3e4444['tag'],'-')[_0x569235(0x502)](_0x246883),_0x405f13,void 0x0,_0x439529);}));}function la(_0x39cec3,_0x3a65b1,_0x1860d3){const _0xf15f19=_0xc8d6e8;var _0x43fa37=ee({},_0x39cec3[_0xf15f19(0x2c8)]);_0x1860d3!=null&&_0x1860d3[_0xf15f19(0x31e)]&&_0x43fa37[_0xf15f19(0x450)]==='colorChannel1'&&(_0x43fa37[_0xf15f19(0x450)]=_0x1860d3['colorChannel1']);var _0x44b2c=_0x3a65b1[_0xf15f19(0x252)];return!_0x44b2c||_0x44b2c[_0xf15f19(0x3d5)]===0x0||(_0x39cec3['tag']==='use'&&_0x43fa37[_0xf15f19(0x4e9)]&&(_0x43fa37[_0xf15f19(0x4e9)]=_0x43fa37[_0xf15f19(0x4e9)]+_0x3a65b1[_0xf15f19(0x3f2)]),Object[_0xf15f19(0x35c)](_0x43fa37)[_0xf15f19(0x1da)](function(_0x568906){const _0x573fd6=_0xf15f19;var _0x162029=_0x568906[0x0],_0x4dbae9=_0x568906[0x1];typeof _0x4dbae9=='string'&&(_0x43fa37[_0x162029]=_0x4dbae9[_0x573fd6(0x353)](/url\(#(.*)\)/,_0x573fd6(0x3e9)[_0x573fd6(0x502)](_0x3a65b1[_0x573fd6(0x3f2)],')')));})),_0x43fa37;}function _a(_0x582d28,_0x2c9d62){const _0x10033e=_0xc8d6e8;var _0x41c332,_0x158400=_0x2c9d62[_0x10033e(0x252)];return!_0x158400||_0x158400[_0x10033e(0x3d5)]===0x0?_0x582d28:_0x582d28['tag']===_0x10033e(0x1cd)&&(!((_0x41c332=_0x582d28['children'])===null||_0x41c332===void 0x0)&&_0x41c332['length'])?ee(ee({},_0x582d28),{'children':_0x582d28[_0x10033e(0x1e4)][_0x10033e(0x431)](function(_0x25c3e5){const _0x3168ae=_0x10033e;return typeof _0x25c3e5[_0x3168ae(0x2c8)]['id']=='string'&&_0x158400&&_0x158400[_0x3168ae(0x336)](_0x25c3e5[_0x3168ae(0x2c8)]['id'])>-0x1?ee(ee({},_0x25c3e5),{'attrs':ee(ee({},_0x25c3e5[_0x3168ae(0x2c8)]),{'id':_0x25c3e5['attrs']['id']+_0x2c9d62['idSuffix']})}):_0x25c3e5;})}):_0x582d28;}function ua(){const _0x450094=_0xc8d6e8;return Math[_0x450094(0x51a)]()['toString'](0x24)['substring'](0x2,0x8);}Ts[_0xc8d6e8(0x4d1)]=_0xc8d6e8(0x4e2);var da={'tag':'svg','attrs':{'fill':_0xc8d6e8(0x4b1),'viewBox':'0\x200\x2016\x2016','width':_0xc8d6e8(0x218),'height':'1em'},'children':[{'tag':'g','attrs':{'clipPath':_0xc8d6e8(0x2bc)},'children':[{'tag':_0xc8d6e8(0x22a),'attrs':{'stroke':_0xc8d6e8(0x3fe),'d':'M3.61971\x2011.6499C2.40304\x2011.6499\x200.699707\x2011.1024\x200.699707\x208.9124C0.699707\x206.3574\x203.25471\x205.8099\x203.98471\x205.8099C4.34971\x204.5324\x205.07971\x202.5249\x207.99971\x202.5249C10.5547\x202.5249\x2011.6497\x203.9849\x2012.0147\x205.2624C12.0147\x205.2624\x2015.2997\x205.6274\x2015.2997\x208.7299C15.2997\x2010.9199\x2013.8397\x2011.6499\x2012.3797\x2011.6499M9.82471\x209.82466L6.17471\x2013.4747M6.17471\x209.82466L9.82471\x2013.4747','strokeLinecap':'round','strokeLinejoin':_0xc8d6e8(0x3f9),'strokeWidth':1.2}}]},{'tag':'defs','attrs':{},'children':[{'tag':_0xc8d6e8(0x3f5),'attrs':{'id':_0xc8d6e8(0x504)},'children':[{'tag':'path','attrs':{'fill':'#fff','d':'M0\x200H16V16H0z'}}]}]}],'defIds':['off-line-single_clip0_910_343']},$i=_0x1f1ada(function(_0x8aa466,_0x45685f){const _0x14af24=_0xc8d6e8;return _0x41772d(Ts,Object[_0x14af24(0x386)]({},_0x8aa466,{'id':'off-line-single','ref':_0x45685f,'icon':da}));});$i[_0xc8d6e8(0x4d1)]='OffLineSingle';var fa={'tag':_0xc8d6e8(0x356),'attrs':{'fill':_0xc8d6e8(0x4b1),'viewBox':'0\x200\x2017\x2016','width':_0xc8d6e8(0x218),'height':_0xc8d6e8(0x218)},'children':[{'tag':'g','attrs':{'clipPath':_0xc8d6e8(0x52b)},'children':[{'tag':_0xc8d6e8(0x22a),'attrs':{'stroke':_0xc8d6e8(0x3fe),'d':_0xc8d6e8(0x520),'strokeLinecap':_0xc8d6e8(0x3f9),'strokeLinejoin':_0xc8d6e8(0x3f9),'strokeWidth':1.2}}]},{'tag':_0xc8d6e8(0x1cd),'attrs':{},'children':[{'tag':_0xc8d6e8(0x3f5),'attrs':{'id':'on-line-single_clip0_910_349'},'children':[{'tag':_0xc8d6e8(0x22a),'attrs':{'fill':'#fff','d':_0xc8d6e8(0x50f),'transform':_0xc8d6e8(0x472)}}]}]}],'defIds':['on-line-single_clip0_910_349']},Hi=_0x1f1ada(function(_0x92d0f,_0x9cc8cc){const _0x4176cf=_0xc8d6e8;return _0x41772d(Ts,Object[_0x4176cf(0x386)]({},_0x92d0f,{'id':_0x4176cf(0x3ac),'ref':_0x9cc8cc,'icon':fa}));});Hi[_0xc8d6e8(0x4d1)]=_0xc8d6e8(0x3d2);function ji(_0x276607){const _0x8b558f=_0xc8d6e8;var _0x3d4fc1,_0x30384c,_0x196d63='';if(typeof _0x276607==_0x8b558f(0x155)||typeof _0x276607==_0x8b558f(0x1b4))_0x196d63+=_0x276607;else{if(typeof _0x276607=='object'){if(Array['isArray'](_0x276607)){var _0xc1fb0d=_0x276607[_0x8b558f(0x3d5)];for(_0x3d4fc1=0x0;_0x3d4fc1<_0xc1fb0d;_0x3d4fc1++)_0x276607[_0x3d4fc1]&&(_0x30384c=ji(_0x276607[_0x3d4fc1]))&&(_0x196d63&&(_0x196d63+='\x20'),_0x196d63+=_0x30384c);}else{for(_0x30384c in _0x276607)_0x276607[_0x30384c]&&(_0x196d63&&(_0x196d63+='\x20'),_0x196d63+=_0x30384c);}}}return _0x196d63;}function va(){for(var _0x23bdd3,_0x2592f4,_0x2f3662=0x0,_0x37f79e='',_0xa9d3a1=arguments['length'];_0x2f3662<_0xa9d3a1;_0x2f3662++)(_0x23bdd3=arguments[_0x2f3662])&&(_0x2592f4=ji(_0x23bdd3))&&(_0x37f79e&&(_0x37f79e+='\x20'),_0x37f79e+=_0x2592f4);return _0x37f79e;}const ma='univer-online-status-icon',pa=_0xc8d6e8(0x22c),ga=_0xc8d6e8(0x1db),Sa=_0xc8d6e8(0x25e),Ia=_0xc8d6e8(0x259),Ze={'onlineStatusIcon':ma,'onlineStatusTitle':pa,'onlineStatus':ga,'online':Sa,'offline':Ia};function Ca(_0x55379f){const _0x13d991=_0xc8d6e8;switch(_0x55379f){case J[_0x13d991(0x428)]:return'collabStatus.offline';case J['CONFLICT']:return'collabStatus.conflict';case J[_0x13d991(0x3e4)]:return _0x13d991(0x49a);case J[_0x13d991(0x37c)]:return _0x13d991(0x4cd);case J['AWAITING']:case J[_0x13d991(0x4a5)]:return _0x13d991(0x4cb);case J[_0x13d991(0x22f)]:case J[_0x13d991(0x1e0)]:return _0x13d991(0x298);}}function Ea(_0x293c63){const _0x55ecd4=_0xc8d6e8,{status$:_0x6c4bc0}=_0x293c63,_0x3a2fa0=_0x950f29(_0x6c4bc0,J[_0x55ecd4(0x37c)]),_0x8b3c03=_0x503c33(_0x8037c0),_0x1fc448=_0x503c33(xe),_0x23f74f=_0x3a2fa0!==J[_0x55ecd4(0x428)],_0x55e3d3=_0x8b3c03['t'](Ca(_0x3a2fa0)),_0x45aca1=va(Ze[_0x55ecd4(0x334)],{[Ze[_0x55ecd4(0x2a6)]]:_0x23f74f,[Ze[_0x55ecd4(0x2f0)]]:!_0x23f74f}),_0x35ffff=_0x23f74f?Pe[_0x55ecd4(0x50e)](Hi,{}):Pe[_0x55ecd4(0x50e)]($i,{}),_0x26037d=_0x5481cf(()=>{_0x23f74f||_0x1fc448['reconnect']();},[_0x23f74f,_0x1fc448]);function _0x223236(){const _0x573576=_0x55ecd4;return Pe[_0x573576(0x2e5)]('div',{'className':_0x45aca1,'onClick':_0x26037d,'children':[Pe[_0x573576(0x50e)](_0x573576(0x441),{'className':Ze[_0x573576(0x1ee)],'children':_0x35ffff}),Pe[_0x573576(0x50e)](_0x573576(0x441),{'className':Ze[_0x573576(0x2fb)],'children':_0x55e3d3})]});}return _0x23f74f?_0x223236():Pe[_0x55ecd4(0x50e)](_0x39b687,{'title':_0x8b3c03['t'](_0x55ecd4(0x508)),'children':_0x223236()});}var ba=Object[_0xc8d6e8(0x17a)],Ta=Object['getOwnPropertyDescriptor'],Ra=(_0x4f1920,_0x5ca091,_0x247766,_0x4dbe30)=>{for(var _0x377ddb=_0x4dbe30>0x1?void 0x0:_0x4dbe30?Ta(_0x5ca091,_0x247766):_0x5ca091,_0x10181a=_0x4f1920['length']-0x1,_0x28adea;_0x10181a>=0x0;_0x10181a--)(_0x28adea=_0x4f1920[_0x10181a])&&(_0x377ddb=(_0x4dbe30?_0x28adea(_0x5ca091,_0x247766,_0x377ddb):_0x28adea(_0x377ddb))||_0x377ddb);return _0x4dbe30&&_0x377ddb&&ba(_0x5ca091,_0x247766,_0x377ddb),_0x377ddb;},ht=(_0x40ecac,_0x26018a)=>(_0x4d2f93,_0x21f7d2)=>_0x26018a(_0x4d2f93,_0x21f7d2,_0x40ecac);let St=class extends _0x5e1db6{constructor(_0x3768f4,_0x4c88d6,_0x48c57a,_0x2deabf){const _0x5e7648=_0xc8d6e8;super(),g(this,_0x5e7648(0x126),new _0xfe121(J['NOT_COLLAB'])),(this[_0x5e7648(0x2c7)]=_0x3768f4,this[_0x5e7648(0x345)]=_0x4c88d6,this[_0x5e7648(0x360)]=_0x48c57a,this[_0x5e7648(0x12e)]=_0x2deabf,this[_0x5e7648(0x229)](),this[_0x5e7648(0x3af)]());}[_0xc8d6e8(0x3af)](){const _0x9f7eab=_0xc8d6e8;this[_0x9f7eab(0x43e)](this[_0x9f7eab(0x2c7)][_0x9f7eab(0x474)][_0x9f7eab(0x236)](_0x4b2328(()=>{const _0x5d9f29=_0x9f7eab,_0x541824=this[_0x5d9f29(0x2c7)][_0x5d9f29(0x385)]();return _0x541824?this[_0x5d9f29(0x12e)]['getCollabEntity$'](_0x541824[_0x5d9f29(0x4a7)]()):_0x2cb441(null);}),_0x4b2328(_0x46f04d=>_0x46f04d?_0x46f04d[_0x9f7eab(0x26f)]:_0x2cb441(J['NOT_COLLAB'])))[_0x9f7eab(0x1ed)](_0x19a4f8=>{const _0x4bcdb9=_0x9f7eab;this[_0x4bcdb9(0x126)][_0x4bcdb9(0x3f0)](_0x19a4f8);}));}[_0xc8d6e8(0x229)](){const _0x2c7c63=_0xc8d6e8;this[_0x2c7c63(0x43e)](this[_0x2c7c63(0x345)][_0x2c7c63(0x40c)](_0x40dba2[_0x2c7c63(0x499)],()=>_0x42168a(Oa({'status$':this[_0x2c7c63(0x126)][_0x2c7c63(0x4de)]()}),this['_injector'])));}};St=Ra([ht(0x0,_0x2ddd21),ht(0x1,_0x153f86),ht(0x2,_0x13f971(_0x20e5db)),ht(0x3,_0x13f971(it))],St);function Oa(_0x242539){const {status$:_0x31b674}=_0x242539;return function(){const _0x8edae1=_0x284c;return Pe[_0x8edae1(0x50e)](Ea,{'status$':_0x31b674});};}const Bi=_0x84987f(_0xc8d6e8(0x168));var ya=Object[_0xc8d6e8(0x17a)],wa=Object[_0xc8d6e8(0x4d8)],Da=(_0x397671,_0xd2e15a,_0x3d190f,_0x2750ca)=>{const _0xc3c197=_0xc8d6e8;for(var _0x1bdd62=_0x2750ca>0x1?void 0x0:_0x2750ca?wa(_0xd2e15a,_0x3d190f):_0xd2e15a,_0x4f8889=_0x397671[_0xc3c197(0x3d5)]-0x1,_0xd676f9;_0x4f8889>=0x0;_0x4f8889--)(_0xd676f9=_0x397671[_0x4f8889])&&(_0x1bdd62=(_0x2750ca?_0xd676f9(_0xd2e15a,_0x3d190f,_0x1bdd62):_0xd676f9(_0x1bdd62))||_0x1bdd62);return _0x2750ca&&_0x1bdd62&&ya(_0xd2e15a,_0x3d190f,_0x1bdd62),_0x1bdd62;},ke=(_0x2df400,_0x308afa)=>(_0x2b0bbb,_0x1f0356)=>_0x308afa(_0x2b0bbb,_0x1f0356,_0x2df400);let It=class extends _0x2ea33c{constructor(_0x1d7585,_0x3d2841,_0x4881de,_0x1b75bd,_0x39510e,_0x23bb72){const _0x4bca7e=_0xc8d6e8;super(),this['_urlService']=_0x1d7585,this['_logService']=_0x3d2841,this['_commandService']=_0x4881de,this[_0x4bca7e(0x20a)]=_0x1b75bd,this[_0x4bca7e(0x3d9)]=_0x39510e,_0x23bb72?_0x23bb72==null||_0x23bb72[_0x4bca7e(0x13d)]()[_0x4bca7e(0x3e0)](()=>this[_0x4bca7e(0x36a)]()):(this[_0x4bca7e(0x355)][_0x4bca7e(0x184)](_0x4bca7e(0x3d0),'No\x20remote\x20instance\x20service\x20injected.\x20May\x20not\x20syncing\x20edits\x20to\x20the\x20web\x20worker.'),this[_0x4bca7e(0x36a)]());}async[_0xc8d6e8(0x36a)](){const _0x18725a=_0xc8d6e8,_0x1b045c=this[_0x18725a(0x150)][_0x18725a(0x311)](_0x18725a(0x189)),_0x2f7111=this[_0x18725a(0x150)][_0x18725a(0x311)](_0x18725a(0x4aa));if(!_0x1b045c||!_0x2f7111){this[_0x18725a(0x355)]['debug']('[DataLoaderController]','No\x20unitID\x20or\x20type\x20in\x20URL.\x20Will\x20not\x20load\x20files\x20from\x20remote\x20address.');return;}switch(Number(_0x2f7111)){case ce[_0x18725a(0x50a)]:{const _0x48cec9=await this[_0x18725a(0x488)](_0x1b045c);this[_0x18725a(0x433)](_0x48cec9);break;}case ce[_0x18725a(0x3c7)]:{await this[_0x18725a(0x42f)](_0x1b045c);break;}default:{this['_logService'][_0x18725a(0x398)]('[DataLoaderController]',_0x18725a(0x40b));break;}}}async[_0xc8d6e8(0x433)](_0x4ea918){const _0x54689a=_0xc8d6e8;await this[_0x54689a(0x3e5)](_0x4ea918),_0x4ea918[_0x54689a(0x1d9)]['pipe'](_0x6a5096(this[_0x54689a(0x191)]))[_0x54689a(0x1ed)](_0x43d1d8=>{const _0x1af983=_0x54689a;_0x43d1d8&&this[_0x1af983(0x1ae)](_0x43d1d8);}),this[_0x54689a(0x150)]['urlChange$'][_0x54689a(0x236)](_0x6a5096(this[_0x54689a(0x191)]))['subscribe'](()=>this['_updateSubUnitFromURLParams'](_0x4ea918));}['_updateURLWithCurrentState'](_0x30955b,_0x3c6f35=!0x1){const _0x1e5a2e=_0xc8d6e8,_0x293502=this[_0x1e5a2e(0x150)][_0x1e5a2e(0x311)](_0x1e5a2e(0x322));_0x30955b[_0x1e5a2e(0x3d7)]()!==_0x293502&&this[_0x1e5a2e(0x150)][_0x1e5a2e(0x33f)](_0x1e5a2e(0x322),_0x30955b['getSheetId'](),_0x3c6f35);}async[_0xc8d6e8(0x3e5)](_0x4e7614){const _0x7f2909=_0xc8d6e8;var _0x425b58;const _0x5bb5d8=this[_0x7f2909(0x150)]['getParam'](_0x7f2909(0x322));if(!_0x5bb5d8||!_0x4e7614[_0x7f2909(0x4d9)](_0x5bb5d8)){const _0x5bf9c9=_0x4e7614[_0x7f2909(0x2c1)]()[0x0],_0x321a7b=_0x4e7614[_0x7f2909(0x4d9)](_0x5bf9c9);if(!_0x321a7b)return;this[_0x7f2909(0x1ae)](_0x321a7b,!0x0),await this[_0x7f2909(0x4e0)][_0x7f2909(0x538)](_0x1c87ab['id'],{'unitId':_0x4e7614['getUnitId'](),'subUnitId':_0x5bf9c9});return;}((_0x425b58=_0x4e7614[_0x7f2909(0x404)]())==null?void 0x0:_0x425b58[_0x7f2909(0x3d7)]())!==_0x5bb5d8&&await this[_0x7f2909(0x4e0)]['executeCommand'](_0x1c87ab['id'],{'unitId':_0x4e7614['getUnitId'](),'subUnitId':_0x5bb5d8});}async[_0xc8d6e8(0x488)](_0x14fe83){const _0x15dc24=_0xc8d6e8;let _0x3ef35d=0x0;const _0x95db08=await this['_localCacheService']['loadOfflineData'](_0x14fe83);return _0x95db08&&(_0x95db08['awaitingChangeset']||_0x95db08[_0x15dc24(0x133)][_0x15dc24(0x3d5)]!==0x0)&&(_0x3ef35d=_0x95db08[_0x15dc24(0x534)]),_0x3ef35d===0x0&&this[_0x15dc24(0x355)][_0x15dc24(0x184)](_0x15dc24(0x3d0),_0x15dc24(0x46e)),this[_0x15dc24(0x3d9)]['loadSheet'](_0x14fe83,_0x3ef35d);}async['_loadDoc'](_0x3dc81b){const _0x1cdcfe=_0xc8d6e8;let _0x5912d6=0x0;const _0x2529d4=await this[_0x1cdcfe(0x20a)][_0x1cdcfe(0x432)](_0x3dc81b);return _0x2529d4&&(_0x2529d4['awaitingChangeset']||_0x2529d4[_0x1cdcfe(0x133)][_0x1cdcfe(0x3d5)]!==0x0)&&(_0x5912d6=_0x2529d4['rev']),_0x5912d6===0x0&&this[_0x1cdcfe(0x355)][_0x1cdcfe(0x184)](_0x1cdcfe(0x3d0),_0x1cdcfe(0x46e)),this[_0x1cdcfe(0x3d9)][_0x1cdcfe(0x389)](_0x3dc81b,_0x5912d6);}};It=Da([ke(0x0,Bi),ke(0x1,_0x410e45),ke(0x2,_0x4171ed),ke(0x3,_0x13f971(q)),ke(0x4,_0x13f971(_0x3bf07d)),ke(0x5,_0x28e273(_0x3ef686))],It);var Pa=Object['defineProperty'],Ua=Object[_0xc8d6e8(0x4d8)],Na=(_0xfdad38,_0xdea41e,_0x3a6770,_0x2ce41f)=>{for(var _0x31b5e1=_0x2ce41f>0x1?void 0x0:_0x2ce41f?Ua(_0xdea41e,_0x3a6770):_0xdea41e,_0x5604a4=_0xfdad38['length']-0x1,_0x315b3a;_0x5604a4>=0x0;_0x5604a4--)(_0x315b3a=_0xfdad38[_0x5604a4])&&(_0x31b5e1=(_0x2ce41f?_0x315b3a(_0xdea41e,_0x3a6770,_0x31b5e1):_0x315b3a(_0x31b5e1))||_0x31b5e1);return _0x2ce41f&&_0x31b5e1&&Pa(_0xdea41e,_0x3a6770,_0x31b5e1),_0x31b5e1;},zs=(_0x43bb7f,_0x1a8032)=>(_0x47ee59,_0x341ab5)=>_0x1a8032(_0x47ee59,_0x341ab5,_0x43bb7f);const Aa=_0xc8d6e8(0x4d4),Ma='Univer';let Ct=class extends _0x5e1db6{constructor(_0x12d9b4,_0x1708b1){const _0x7c8f57=_0xc8d6e8;super(),this[_0x7c8f57(0x2c7)]=_0x12d9b4,this[_0x7c8f57(0x23d)]=_0x1708b1,this[_0x7c8f57(0x36a)]();}['_init'](){const _0xc84e99=_0xc8d6e8;this[_0xc84e99(0x43e)](this[_0xc84e99(0x2c7)][_0xc84e99(0x474)][_0xc84e99(0x1ed)](()=>{const _0x5c4ed7=_0xc84e99;var _0x26fe14;const _0x3118b0=this[_0x5c4ed7(0x2c7)]['getFocusedUnit']();let _0x292a9e=(_0x26fe14=this[_0x5c4ed7(0x23d)][_0x5c4ed7(0x2ac)](Aa))!=null?_0x26fe14:Ma;_0x3118b0 instanceof _0x16e397&&(_0x292a9e=_0x3118b0[_0x5c4ed7(0x21a)]),document['title']=_0x292a9e;}));}};Ct=Na([zs(0x0,_0x2ddd21),zs(0x1,_0x450caa)],Ct);var xa=Object[_0xc8d6e8(0x17a)],La=Object[_0xc8d6e8(0x4d8)],$a=(_0x33f8e2,_0x37fe75,_0x4d2e84,_0x5b2f3b)=>{const _0x2ab730=_0xc8d6e8;for(var _0x111f54=_0x5b2f3b>0x1?void 0x0:_0x5b2f3b?La(_0x37fe75,_0x4d2e84):_0x37fe75,_0x31de9a=_0x33f8e2[_0x2ab730(0x3d5)]-0x1,_0xffd5cc;_0x31de9a>=0x0;_0x31de9a--)(_0xffd5cc=_0x33f8e2[_0x31de9a])&&(_0x111f54=(_0x5b2f3b?_0xffd5cc(_0x37fe75,_0x4d2e84,_0x111f54):_0xffd5cc(_0x111f54))||_0x111f54);return _0x5b2f3b&&_0x111f54&&xa(_0x37fe75,_0x4d2e84,_0x111f54),_0x111f54;},Wt=(_0x4e0b05,_0x3b0200)=>(_0x59e6d3,_0x4a5ee5)=>_0x3b0200(_0x59e6d3,_0x4a5ee5,_0x4e0b05);let Et=class{constructor(_0x50f634,_0x555aaf,_0x5b8d6c){const _0x3cef03=_0xc8d6e8;this[_0x3cef03(0x23d)]=_0x50f634,this[_0x3cef03(0x127)]=_0x555aaf,this[_0x3cef03(0x4f8)]=_0x5b8d6c,this[_0x3cef03(0x293)]();}['init'](){const _0x243891=_0xc8d6e8;this[_0x243891(0x127)]['registerHTTPInterceptor']({'priority':0x1,'interceptor':(_0x1e7147,_0x4032dc)=>_0x4032dc(_0x1e7147)['pipe'](_0x1a2bac(async _0x58da66=>{const _0x5ed138=_0x243891,_0x378626=_0x58da66;if(_0x378626[_0x5ed138(0x47f)]===0x191&&window['confirm'](this['localeService']['t']('auth.needGotoLoginAlert'))){const _0x35c5a6=window['encodeURIComponent'](window[_0x5ed138(0x507)][_0x5ed138(0x30f)]);window[_0x5ed138(0x507)][_0x5ed138(0x30f)]=this[_0x5ed138(0x198)]()+_0x5ed138(0x32d)+_0x35c5a6;}return _0x378626;}))});}['_getLoginPath'](){const _0x44368c=_0xc8d6e8;var _0x1099c7,_0x56ccff;const _0x2c7ccd=this[_0x44368c(0x23d)][_0x44368c(0x2ac)](Tr),_0x292e95=this[_0x44368c(0x23d)][_0x44368c(0x2ac)](te);return(_0x56ccff=(_0x1099c7=_0x292e95==null?void 0x0:_0x292e95[_0x44368c(0x515)])!=null?_0x1099c7:_0x2c7ccd)!=null?_0x56ccff:Rr;}};Et=$a([Wt(0x0,_0x450caa),Wt(0x1,_0x13f971(_0x5874d1)),Wt(0x2,_0x13f971(_0x8037c0))],Et);var Ha=Object[_0xc8d6e8(0x17a)],ja=Object[_0xc8d6e8(0x4d8)],Ba=(_0x2626f0,_0x4bfd25,_0x14c054,_0x28649f)=>{const _0xdd8a41=_0xc8d6e8;for(var _0x285a16=_0x28649f>0x1?void 0x0:_0x28649f?ja(_0x4bfd25,_0x14c054):_0x4bfd25,_0x4bd797=_0x2626f0[_0xdd8a41(0x3d5)]-0x1,_0x2204ff;_0x4bd797>=0x0;_0x4bd797--)(_0x2204ff=_0x2626f0[_0x4bd797])&&(_0x285a16=(_0x28649f?_0x2204ff(_0x4bfd25,_0x14c054,_0x285a16):_0x2204ff(_0x285a16))||_0x285a16);return _0x28649f&&_0x285a16&&Ha(_0x4bfd25,_0x14c054,_0x285a16),_0x285a16;},qs=(_0xcb52e6,_0x360cdc)=>(_0x5e8b52,_0x133230)=>_0x360cdc(_0x5e8b52,_0x133230,_0xcb52e6);const ka=_0xc8d6e8(0x531),Wa=_0xc8d6e8(0x467);let cs=class extends _0x5e1db6{constructor(_0x5de749,_0x1b8d61){const _0x2bf332=_0xc8d6e8;super(),this[_0x2bf332(0x260)]=_0x5de749,this['_configService']=_0x1b8d61,this[_0x2bf332(0x527)]();}[_0xc8d6e8(0x527)](){const _0x54f52a=_0xc8d6e8,_0x268f85=this;this[_0x54f52a(0x43e)](this[_0x54f52a(0x260)][_0x54f52a(0x231)]({'priority':0x3e7,'interceptor':_0x1fbfc9({'isMatch'(_0x2cf99e){const _0x22608d=_0x54f52a;var _0x1e5ae2;if(_0x2cf99e[_0x22608d(0x40f)]===_0x22608d(0x25f)&&((_0x1e5ae2=_0x2cf99e[_0x22608d(0x23f)])!=null&&_0x1e5ae2[_0x22608d(0x366)])){const {objectID:_0x52ac3a,objectType:_0x4432a3}=_0x2cf99e['requestParams'][_0x22608d(0x366)]||{};if(!_0x52ac3a||_0x4432a3===void 0x0)return!0x1;const _0x3b755a=_0x268f85['_getAPIPrefixPath']()+'/'+_0x4432a3+_0x22608d(0x479)+_0x52ac3a+'/allowed';if(_0x2cf99e[_0x22608d(0x532)]===_0x3b755a)return!0x0;}return!0x1;},'getParamsFromRequest'(_0x2f641c){const _0x431c32=_0x54f52a;var _0x59abfc;return(_0x59abfc=_0x2f641c[_0x431c32(0x23f)])==null?void 0x0:_0x59abfc[_0x431c32(0x366)];},'mergeParamsToRequest'(_0x3b64f5,_0xdcbb12){const _0x57c6d4=_0x54f52a,_0x10dd0f=_0x268f85[_0x57c6d4(0x4b5)]()+_0x57c6d4(0x23a),_0x4572a0=_0x3b64f5[_0x57c6d4(0x20d)]((_0x3bd463,_0x120f55)=>{const _0x40c116=_0x57c6d4,{unitID:_0x333fa1,objectID:_0x41e6de,objectType:_0x40142f,actions:_0x230c16}=_0x120f55;return _0x3bd463[_0x333fa1]||(_0x3bd463[_0x333fa1]={}),_0x3bd463[_0x333fa1][_0x41e6de]||(_0x3bd463[_0x333fa1][_0x41e6de]={'objectID':_0x41e6de,'objectType':_0x40142f,'actions':[]}),_0x3bd463[_0x333fa1][_0x41e6de][_0x40c116(0x193)][_0x40c116(0x183)](..._0x230c16),_0x3bd463;},{}),_0x4feabe=[];for(const _0x5a6f08 in _0x4572a0)for(const _0xbe425d in _0x4572a0[_0x5a6f08]){const {actions:_0x52e207,objectType:_0x2ee1b3}=_0x4572a0[_0x5a6f08][_0xbe425d],_0x1747b5=[...new Set(_0x52e207)];_0x4feabe[_0x57c6d4(0x183)]({'unitID':_0x5a6f08,'objectID':_0xbe425d,'objectType':_0x2ee1b3,'actions':_0x1747b5});}return new _0x3446c9(_0x57c6d4(0x25f),_0x10dd0f,{'headers':_0xdcbb12[_0x57c6d4(0x2d2)],'withCredentials':_0xdcbb12[_0x57c6d4(0x1f9)],'responseType':_0xdcbb12[_0x57c6d4(0x24b)],'body':{'requests':_0x4feabe}});}},{'distributeResult'(_0x9accde,_0x451dc8){const _0x535de8=_0x54f52a,{objectActions:_0x5eb896}=_0x9accde;return _0x451dc8[_0x535de8(0x431)](_0x55f39c=>{const _0x58b286=_0x535de8,{unitID:_0x558304,objectID:_0x21e734,actions:_0x1ce8cb}=_0x55f39c,_0x6f21cd=_0x5eb896[_0x58b286(0x3f1)](_0x2f4b55=>_0x2f4b55['unitID']===_0x558304&&_0x2f4b55[_0x58b286(0x526)]===_0x21e734),_0x58c222=_0x1ce8cb['map'](_0x1dc210=>_0x6f21cd==null?void 0x0:_0x6f21cd[_0x58b286(0x193)][_0x58b286(0x3f1)](_0xd49717=>_0xd49717[_0x58b286(0x401)]===_0x1dc210))[_0x58b286(0x2fa)](_0x2bf7c2=>!!_0x2bf7c2);return{'config':_0x55f39c,'result':{'actions':_0x58c222,'error':_0x9accde['error']}};});}})}));}[_0xc8d6e8(0x4b5)](){const _0x5a91a7=_0xc8d6e8;var _0x39f995,_0x166660;const _0x1087d8=this[_0x5a91a7(0x23d)][_0x5a91a7(0x2ac)](ka),_0x539ea4=this[_0x5a91a7(0x23d)][_0x5a91a7(0x2ac)](te);return(_0x166660=(_0x39f995=_0x539ea4==null?void 0x0:_0x539ea4[_0x5a91a7(0x4be)])!=null?_0x39f995:_0x1087d8)!=null?_0x166660:Wa;}async[_0xc8d6e8(0x273)](_0xd0533){const _0xafa97f=_0xc8d6e8,_0x3c9e35=this[_0xafa97f(0x4b5)]()+'/'+_0xd0533[_0xafa97f(0x359)]+_0xafa97f(0x159);return(await this[_0xafa97f(0x260)][_0xafa97f(0x2cd)](_0x3c9e35,{'body':_0xd0533}))[_0xafa97f(0x366)]['objectID']||'';}async[_0xc8d6e8(0x1c3)](_0xbf2d5f){const _0x124f60=_0xc8d6e8,_0x69ee29=this[_0x124f60(0x4b5)]()+'/-/object/list';return(await this['_HTTPService']['post'](_0x69ee29,{'body':_0xbf2d5f}))[_0x124f60(0x366)][_0x124f60(0x39d)];}async[_0xc8d6e8(0x2d4)](_0x256d14){const _0x1051de=_0xc8d6e8,_0x12c461=this[_0x1051de(0x4b5)]()+'/'+_0x256d14[_0x1051de(0x359)]+'/object/'+_0x256d14[_0x1051de(0x526)];await this[_0x1051de(0x260)][_0x1051de(0x30b)](_0x12c461,{'body':_0x256d14});}async['allowed'](_0x3848c3){const _0x18c97b=_0xc8d6e8,_0x3ec1f3=this['_getAPIPrefixPath']()+'/'+_0x3848c3[_0x18c97b(0x359)]+_0x18c97b(0x479)+_0x3848c3[_0x18c97b(0x526)]+_0x18c97b(0x365);return(await this[_0x18c97b(0x260)][_0x18c97b(0x2cd)](_0x3ec1f3,{'body':_0x3848c3}))[_0x18c97b(0x366)][_0x18c97b(0x193)];}async[_0xc8d6e8(0x2af)](_0x314a82){const _0x4c279b=_0xc8d6e8,_0x4928cf=this[_0x4c279b(0x4b5)]()+_0x4c279b(0x23a);return(await this['_HTTPService'][_0x4c279b(0x2cd)](_0x4928cf,{'body':{'requests':_0x314a82}}))['body'][_0x4c279b(0x16e)];}async['listRoles'](_0x1f93ad){const _0x15cae7=_0xc8d6e8,_0x3c80c=this[_0x15cae7(0x4b5)]()+'/'+_0x1f93ad[_0x15cae7(0x359)]+_0x15cae7(0x2c3),_0x4631c7=await this[_0x15cae7(0x260)][_0x15cae7(0x2cd)](_0x3c80c,{'body':_0x1f93ad});return{'roles':_0x4631c7[_0x15cae7(0x366)][_0x15cae7(0x2b5)],'actions':_0x4631c7[_0x15cae7(0x366)][_0x15cae7(0x193)]};}async[_0xc8d6e8(0x3a1)](_0x183c89){const _0x3d0901=_0xc8d6e8,_0x51eac3=this[_0x3d0901(0x4b5)]()+_0x3d0901(0x380);await this[_0x3d0901(0x260)][_0x3d0901(0x2b0)](_0x51eac3,{'params':{'collaboratorID':_0x183c89[_0x3d0901(0x3ff)],'objectID':_0x183c89[_0x3d0901(0x526)],'unitID':_0x183c89[_0x3d0901(0x17c)]}});}async['updateCollaborator'](_0x36b128){const _0x29f2ec=_0xc8d6e8,_0x53d5a0=this[_0x29f2ec(0x4b5)]()+_0x29f2ec(0x380);await this[_0x29f2ec(0x260)][_0x29f2ec(0x4e1)](_0x53d5a0,{'body':_0x36b128});}async[_0xc8d6e8(0x24c)](_0x382139){const _0x42c701=_0xc8d6e8,_0x43fef2=this[_0x42c701(0x4b5)]()+_0x42c701(0x380);await this[_0x42c701(0x260)][_0x42c701(0x2cd)](_0x43fef2,{'body':_0x382139});}async[_0xc8d6e8(0x523)](_0x2d4fb1){const _0x2fc04c=_0xc8d6e8,_0x157806=this[_0x2fc04c(0x4b5)]()+'/collaborator';return(await this[_0x2fc04c(0x260)][_0x2fc04c(0x2c2)](_0x157806,{'params':{'objectID':_0x2d4fb1[_0x2fc04c(0x526)],'unitID':_0x2d4fb1[_0x2fc04c(0x17c)]}}))[_0x2fc04c(0x366)][_0x2fc04c(0x228)];}async[_0xc8d6e8(0x510)](_0x5e0a81){const _0x277ee8=_0xc8d6e8,_0x196c50=this[_0x277ee8(0x4b5)]()+'/collaborator';await this['_HTTPService'][_0x277ee8(0x30b)](_0x196c50,{'body':_0x5e0a81});}};cs=Ba([qs(0x0,_0x13f971(_0x5874d1)),qs(0x1,_0x13f971(_0x450caa))],cs);var ki={'exports':{}};function Fa(_0x4441bc){const _0x123d1c=_0xc8d6e8;throw new Error(_0x123d1c(0x53a)+_0x4441bc+_0x123d1c(0x2be));}var Ft={'exports':{}},Xs;function ue(){const _0x5c71e3=_0xc8d6e8;return Xs||(Xs=0x1,function(_0x2f3c3d,_0x3ade9a){(function(_0xdaee3,_0x299d49){const _0x2307fd=_0x284c;_0x2f3c3d[_0x2307fd(0x173)]=_0x299d49();}(Z,function(){var _0x371a20=_0x371a20||function(_0x49a1aa,_0x4f3ffb){const _0x3bc6c3=_0x284c;var _0x3451a5;if(typeof window<'u'&&window[_0x3bc6c3(0x257)]&&(_0x3451a5=window[_0x3bc6c3(0x257)]),typeof self<'u'&&self[_0x3bc6c3(0x257)]&&(_0x3451a5=self['crypto']),typeof globalThis<'u'&&globalThis[_0x3bc6c3(0x257)]&&(_0x3451a5=globalThis[_0x3bc6c3(0x257)]),!_0x3451a5&&typeof window<'u'&&window[_0x3bc6c3(0x3cf)]&&(_0x3451a5=window[_0x3bc6c3(0x3cf)]),!_0x3451a5&&typeof Z<'u'&&Z[_0x3bc6c3(0x257)]&&(_0x3451a5=Z['crypto']),!_0x3451a5&&typeof Fa=='function')try{_0x3451a5=require('crypto');}catch{}var _0x38cb21=function(){const _0x23cf81=_0x3bc6c3;if(_0x3451a5){if(typeof _0x3451a5[_0x23cf81(0x435)]==_0x23cf81(0x361))try{return _0x3451a5['getRandomValues'](new Uint32Array(0x1))[0x0];}catch{}if(typeof _0x3451a5[_0x23cf81(0x188)]==_0x23cf81(0x361))try{return _0x3451a5[_0x23cf81(0x188)](0x4)[_0x23cf81(0x164)]();}catch{}}throw new Error(_0x23cf81(0x1bb));},_0x3589e5=Object['create']||(function(){function _0x5e954e(){}return function(_0x223864){const _0x396432=_0x284c;var _0x20d652;return _0x5e954e['prototype']=_0x223864,_0x20d652=new _0x5e954e(),_0x5e954e[_0x396432(0x2f9)]=null,_0x20d652;};}()),_0x250eec={},_0x1d86db=_0x250eec[_0x3bc6c3(0x40d)]={},_0x49ae03=_0x1d86db[_0x3bc6c3(0x123)]=(function(){return{'extend':function(_0x536f0c){const _0x488a7d=_0x284c;var _0xbb5955=_0x3589e5(this);return _0x536f0c&&_0xbb5955[_0x488a7d(0x52a)](_0x536f0c),(!_0xbb5955['hasOwnProperty']('init')||this[_0x488a7d(0x293)]===_0xbb5955[_0x488a7d(0x293)])&&(_0xbb5955[_0x488a7d(0x293)]=function(){const _0x131c0a=_0x488a7d;_0xbb5955[_0x131c0a(0x1dc)][_0x131c0a(0x293)][_0x131c0a(0x4ab)](this,arguments);}),_0xbb5955[_0x488a7d(0x293)][_0x488a7d(0x2f9)]=_0xbb5955,_0xbb5955[_0x488a7d(0x1dc)]=this,_0xbb5955;},'create':function(){const _0x158243=_0x284c;var _0x588ce2=this[_0x158243(0x210)]();return _0x588ce2[_0x158243(0x293)]['apply'](_0x588ce2,arguments),_0x588ce2;},'init':function(){},'mixIn':function(_0x53610d){const _0x4005ee=_0x284c;for(var _0x203d43 in _0x53610d)_0x53610d[_0x4005ee(0x16d)](_0x203d43)&&(this[_0x203d43]=_0x53610d[_0x203d43]);_0x53610d[_0x4005ee(0x16d)](_0x4005ee(0x41c))&&(this[_0x4005ee(0x41c)]=_0x53610d[_0x4005ee(0x41c)]);},'clone':function(){const _0x2e8d8e=_0x284c;return this[_0x2e8d8e(0x293)][_0x2e8d8e(0x2f9)][_0x2e8d8e(0x210)](this);}};}()),_0xd90a5e=_0x1d86db[_0x3bc6c3(0x33c)]=_0x49ae03[_0x3bc6c3(0x210)]({'init':function(_0x34e012,_0x105acb){const _0x1adeb4=_0x3bc6c3;_0x34e012=this[_0x1adeb4(0x172)]=_0x34e012||[],_0x105acb!=_0x4f3ffb?this[_0x1adeb4(0x237)]=_0x105acb:this[_0x1adeb4(0x237)]=_0x34e012[_0x1adeb4(0x3d5)]*0x4;},'toString':function(_0x4babcb){const _0x5c5028=_0x3bc6c3;return(_0x4babcb||_0x5d7337)[_0x5c5028(0x306)](this);},'concat':function(_0x1da201){const _0x486e98=_0x3bc6c3;var _0x2f2efd=this[_0x486e98(0x172)],_0x4d6419=_0x1da201[_0x486e98(0x172)],_0x550b3f=this['sigBytes'],_0x1c9756=_0x1da201['sigBytes'];if(this[_0x486e98(0x2e4)](),_0x550b3f%0x4)for(var _0x3aed15=0x0;_0x3aed15<_0x1c9756;_0x3aed15++){var _0x29aaed=_0x4d6419[_0x3aed15>>>0x2]>>>0x18-_0x3aed15%0x4*0x8&0xff;_0x2f2efd[_0x550b3f+_0x3aed15>>>0x2]|=_0x29aaed<<0x18-(_0x550b3f+_0x3aed15)%0x4*0x8;}else{for(var _0x27434c=0x0;_0x27434c<_0x1c9756;_0x27434c+=0x4)_0x2f2efd[_0x550b3f+_0x27434c>>>0x2]=_0x4d6419[_0x27434c>>>0x2];}return this[_0x486e98(0x237)]+=_0x1c9756,this;},'clamp':function(){const _0x3792e2=_0x3bc6c3;var _0x89e8cc=this[_0x3792e2(0x172)],_0xade8f9=this[_0x3792e2(0x237)];_0x89e8cc[_0xade8f9>>>0x2]&=0xffffffff<<0x20-_0xade8f9%0x4*0x8,_0x89e8cc['length']=_0x49a1aa[_0x3792e2(0x2e0)](_0xade8f9/0x4);},'clone':function(){const _0x3928fb=_0x3bc6c3;var _0x1c7f76=_0x49ae03[_0x3928fb(0x1fd)]['call'](this);return _0x1c7f76[_0x3928fb(0x172)]=this[_0x3928fb(0x172)][_0x3928fb(0x357)](0x0),_0x1c7f76;},'random':function(_0x1d1818){const _0x5955fc=_0x3bc6c3;for(var _0x2eab74=[],_0x5c5c64=0x0;_0x5c5c64<_0x1d1818;_0x5c5c64+=0x4)_0x2eab74[_0x5955fc(0x183)](_0x38cb21());return new _0xd90a5e['init'](_0x2eab74,_0x1d1818);}}),_0xe0c9af=_0x250eec[_0x3bc6c3(0x1dd)]={},_0x5d7337=_0xe0c9af[_0x3bc6c3(0x39e)]={'stringify':function(_0x1ebae4){const _0x117df2=_0x3bc6c3;for(var _0x320009=_0x1ebae4[_0x117df2(0x172)],_0x1401ac=_0x1ebae4[_0x117df2(0x237)],_0x1d4ee8=[],_0x4be2c1=0x0;_0x4be2c1<_0x1401ac;_0x4be2c1++){var _0x4c2fc5=_0x320009[_0x4be2c1>>>0x2]>>>0x18-_0x4be2c1%0x4*0x8&0xff;_0x1d4ee8[_0x117df2(0x183)]((_0x4c2fc5>>>0x4)[_0x117df2(0x41c)](0x10)),_0x1d4ee8[_0x117df2(0x183)]((_0x4c2fc5&0xf)[_0x117df2(0x41c)](0x10));}return _0x1d4ee8[_0x117df2(0x27f)]('');},'parse':function(_0x13db37){const _0x1e727a=_0x3bc6c3;for(var _0x582bfb=_0x13db37['length'],_0x15edfe=[],_0x1b8f2b=0x0;_0x1b8f2b<_0x582bfb;_0x1b8f2b+=0x2)_0x15edfe[_0x1b8f2b>>>0x3]|=parseInt(_0x13db37[_0x1e727a(0x537)](_0x1b8f2b,0x2),0x10)<<0x18-_0x1b8f2b%0x8*0x4;return new _0xd90a5e[(_0x1e727a(0x293))](_0x15edfe,_0x582bfb/0x2);}},_0x2ca4c4=_0xe0c9af[_0x3bc6c3(0x36d)]={'stringify':function(_0x142656){const _0x540c30=_0x3bc6c3;for(var _0x5f4d4e=_0x142656['words'],_0x100153=_0x142656[_0x540c30(0x237)],_0x2b9c6e=[],_0x2bf03b=0x0;_0x2bf03b<_0x100153;_0x2bf03b++){var _0x192238=_0x5f4d4e[_0x2bf03b>>>0x2]>>>0x18-_0x2bf03b%0x4*0x8&0xff;_0x2b9c6e['push'](String['fromCharCode'](_0x192238));}return _0x2b9c6e['join']('');},'parse':function(_0x275f79){const _0x3b8a87=_0x3bc6c3;for(var _0x500d67=_0x275f79['length'],_0x4f990a=[],_0x144d09=0x0;_0x144d09<_0x500d67;_0x144d09++)_0x4f990a[_0x144d09>>>0x2]|=(_0x275f79['charCodeAt'](_0x144d09)&0xff)<<0x18-_0x144d09%0x4*0x8;return new _0xd90a5e[(_0x3b8a87(0x293))](_0x4f990a,_0x500d67);}},_0x27a79a=_0xe0c9af[_0x3bc6c3(0x378)]={'stringify':function(_0x25b1c5){const _0x36c9ff=_0x3bc6c3;try{return decodeURIComponent(escape(_0x2ca4c4['stringify'](_0x25b1c5)));}catch{throw new Error(_0x36c9ff(0x1c1));}},'parse':function(_0x547756){return _0x2ca4c4['parse'](unescape(encodeURIComponent(_0x547756)));}},_0x1655b1=_0x1d86db[_0x3bc6c3(0x465)]=_0x49ae03[_0x3bc6c3(0x210)]({'reset':function(){const _0x175f9a=_0x3bc6c3;this[_0x175f9a(0x4e4)]=new _0xd90a5e[(_0x175f9a(0x293))](),this[_0x175f9a(0x20e)]=0x0;},'_append':function(_0x58383a){const _0x352c83=_0x3bc6c3;typeof _0x58383a=='string'&&(_0x58383a=_0x27a79a[_0x352c83(0x4d2)](_0x58383a)),this[_0x352c83(0x4e4)][_0x352c83(0x502)](_0x58383a),this[_0x352c83(0x20e)]+=_0x58383a[_0x352c83(0x237)];},'_process':function(_0x28e233){const _0x4d54e7=_0x3bc6c3;var _0x3135ab,_0x2ef306=this[_0x4d54e7(0x4e4)],_0x17aa38=_0x2ef306[_0x4d54e7(0x172)],_0x1e5035=_0x2ef306[_0x4d54e7(0x237)],_0x1cca48=this[_0x4d54e7(0x3f3)],_0x4ff2fd=_0x1cca48*0x4,_0xb6a752=_0x1e5035/_0x4ff2fd;_0x28e233?_0xb6a752=_0x49a1aa[_0x4d54e7(0x2e0)](_0xb6a752):_0xb6a752=_0x49a1aa[_0x4d54e7(0x2d9)]((_0xb6a752|0x0)-this[_0x4d54e7(0x30c)],0x0);var _0x3f9f0a=_0xb6a752*_0x1cca48,_0x3517f3=_0x49a1aa['min'](_0x3f9f0a*0x4,_0x1e5035);if(_0x3f9f0a){for(var _0x49e1f1=0x0;_0x49e1f1<_0x3f9f0a;_0x49e1f1+=_0x1cca48)this[_0x4d54e7(0x28e)](_0x17aa38,_0x49e1f1);_0x3135ab=_0x17aa38[_0x4d54e7(0x3ee)](0x0,_0x3f9f0a),_0x2ef306[_0x4d54e7(0x237)]-=_0x3517f3;}return new _0xd90a5e[(_0x4d54e7(0x293))](_0x3135ab,_0x3517f3);},'clone':function(){const _0x5e3a1b=_0x3bc6c3;var _0x88929f=_0x49ae03['clone'][_0x5e3a1b(0x2c6)](this);return _0x88929f[_0x5e3a1b(0x4e4)]=this[_0x5e3a1b(0x4e4)][_0x5e3a1b(0x1fd)](),_0x88929f;},'_minBufferSize':0x0});_0x1d86db[_0x3bc6c3(0x348)]=_0x1655b1['extend']({'cfg':_0x49ae03[_0x3bc6c3(0x210)](),'init':function(_0x48ff3c){const _0x21420d=_0x3bc6c3;this['cfg']=this['cfg'][_0x21420d(0x210)](_0x48ff3c),this['reset']();},'reset':function(){const _0x4462e6=_0x3bc6c3;_0x1655b1[_0x4462e6(0x19d)]['call'](this),this[_0x4462e6(0x48d)]();},'update':function(_0x40a7ab){const _0x3b363a=_0x3bc6c3;return this[_0x3b363a(0x32c)](_0x40a7ab),this[_0x3b363a(0x1c0)](),this;},'finalize':function(_0x127ef7){const _0x2c10f6=_0x3bc6c3;_0x127ef7&&this[_0x2c10f6(0x32c)](_0x127ef7);var _0x2e7bd1=this[_0x2c10f6(0x1b2)]();return _0x2e7bd1;},'blockSize':0x10,'_createHelper':function(_0x58ede6){return function(_0xd58c5,_0x5bb3c8){const _0x47f01e=_0x284c;return new _0x58ede6['init'](_0x5bb3c8)[_0x47f01e(0x530)](_0xd58c5);};},'_createHmacHelper':function(_0x1da4f7){return function(_0x1f76dc,_0x4a3a3d){const _0xd0f868=_0x284c;return new _0x1a54d2['HMAC']['init'](_0x1da4f7,_0x4a3a3d)[_0xd0f868(0x530)](_0x1f76dc);};}});var _0x1a54d2=_0x250eec[_0x3bc6c3(0x2ff)]={};return _0x250eec;}(Math);return _0x371a20;}));}(Ft)),Ft[_0x5c71e3(0x173)];}var Vt={'exports':{}},Js;function Wi(){return Js||(Js=0x1,function(_0x401f7d,_0x333028){(function(_0x3e1031,_0x442361){_0x401f7d['exports']=_0x442361(ue());}(Z,function(_0x456946){const _0x19f46c=_0x284c;return(function(){const _0xe6c1cb=_0x284c;var _0x2a5374=_0x456946,_0x344d0e=_0x2a5374[_0xe6c1cb(0x40d)],_0x1dd613=_0x344d0e[_0xe6c1cb(0x33c)],_0x2479e3=_0x2a5374[_0xe6c1cb(0x1dd)];_0x2479e3[_0xe6c1cb(0x1fa)]={'stringify':function(_0x1d67ba){const _0x186ca0=_0xe6c1cb;var _0x4f1263=_0x1d67ba[_0x186ca0(0x172)],_0x2d7fb4=_0x1d67ba[_0x186ca0(0x237)],_0x24ba9b=this['_map'];_0x1d67ba[_0x186ca0(0x2e4)]();for(var _0x29d40e=[],_0x45823f=0x0;_0x45823f<_0x2d7fb4;_0x45823f+=0x3)for(var _0xe405df=_0x4f1263[_0x45823f>>>0x2]>>>0x18-_0x45823f%0x4*0x8&0xff,_0x49c146=_0x4f1263[_0x45823f+0x1>>>0x2]>>>0x18-(_0x45823f+0x1)%0x4*0x8&0xff,_0x44256a=_0x4f1263[_0x45823f+0x2>>>0x2]>>>0x18-(_0x45823f+0x2)%0x4*0x8&0xff,_0x369ea1=_0xe405df<<0x10|_0x49c146<<0x8|_0x44256a,_0x3f1ee7=0x0;_0x3f1ee7<0x4&&_0x45823f+_0x3f1ee7*0.75<_0x2d7fb4;_0x3f1ee7++)_0x29d40e[_0x186ca0(0x183)](_0x24ba9b['charAt'](_0x369ea1>>>0x6*(0x3-_0x3f1ee7)&0x3f));var _0x461394=_0x24ba9b[_0x186ca0(0x29b)](0x40);if(_0x461394){for(;_0x29d40e['length']%0x4;)_0x29d40e[_0x186ca0(0x183)](_0x461394);}return _0x29d40e[_0x186ca0(0x27f)]('');},'parse':function(_0x17d078){const _0x2b23d8=_0xe6c1cb;var _0x569c2f=_0x17d078[_0x2b23d8(0x3d5)],_0x4fc2ce=this[_0x2b23d8(0x166)],_0x2535b=this['_reverseMap'];if(!_0x2535b){_0x2535b=this[_0x2b23d8(0x2f4)]=[];for(var _0x1b3593=0x0;_0x1b3593<_0x4fc2ce[_0x2b23d8(0x3d5)];_0x1b3593++)_0x2535b[_0x4fc2ce[_0x2b23d8(0x312)](_0x1b3593)]=_0x1b3593;}var _0x2ecdf3=_0x4fc2ce['charAt'](0x40);if(_0x2ecdf3){var _0x27a2e6=_0x17d078[_0x2b23d8(0x336)](_0x2ecdf3);_0x27a2e6!==-0x1&&(_0x569c2f=_0x27a2e6);}return _0x329728(_0x17d078,_0x569c2f,_0x2535b);},'_map':'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='};function _0x329728(_0x5dc5dd,_0x302e76,_0x20d2db){const _0x4390ee=_0xe6c1cb;for(var _0x8c55be=[],_0x106e13=0x0,_0x51cb6b=0x0;_0x51cb6b<_0x302e76;_0x51cb6b++)if(_0x51cb6b%0x4){var _0x37abfb=_0x20d2db[_0x5dc5dd[_0x4390ee(0x312)](_0x51cb6b-0x1)]<<_0x51cb6b%0x4*0x2,_0xb91fb0=_0x20d2db[_0x5dc5dd[_0x4390ee(0x312)](_0x51cb6b)]>>>0x6-_0x51cb6b%0x4*0x2,_0x2e9eee=_0x37abfb|_0xb91fb0;_0x8c55be[_0x106e13>>>0x2]|=_0x2e9eee<<0x18-_0x106e13%0x4*0x8,_0x106e13++;}return _0x1dd613[_0x4390ee(0x273)](_0x8c55be,_0x106e13);}}()),_0x456946[_0x19f46c(0x1dd)][_0x19f46c(0x1fa)];}));}(Vt)),Vt['exports'];}var Gt={'exports':{}},Zs;function Va(){const _0x159261=_0xc8d6e8;return Zs||(Zs=0x1,function(_0x55701a,_0x107912){(function(_0x32a2ef,_0x21d026){const _0x2e17f3=_0x284c;_0x55701a[_0x2e17f3(0x173)]=_0x21d026(ue());}(Z,function(_0x9ada8d){const _0x2ffe97=_0x284c;return function(_0x493d90){const _0x473ab8=_0x284c;var _0x39c84b=_0x9ada8d,_0x8385ad=_0x39c84b['lib'],_0x4bcd65=_0x8385ad[_0x473ab8(0x33c)],_0x492642=_0x8385ad[_0x473ab8(0x348)],_0xb9d3f1=_0x39c84b[_0x473ab8(0x2ff)],_0x138b8=[];(function(){const _0x4f589d=_0x473ab8;for(var _0x2cf0a7=0x0;_0x2cf0a7<0x40;_0x2cf0a7++)_0x138b8[_0x2cf0a7]=_0x493d90['abs'](_0x493d90[_0x4f589d(0x4b8)](_0x2cf0a7+0x1))*0x100000000|0x0;}());var _0xd9b3a=_0xb9d3f1[_0x473ab8(0x402)]=_0x492642[_0x473ab8(0x210)]({'_doReset':function(){const _0x1ac439=_0x473ab8;this['_hash']=new _0x4bcd65[(_0x1ac439(0x293))]([0x67452301,0xefcdab89,0x98badcfe,0x10325476]);},'_doProcessBlock':function(_0x38a69a,_0x4dd8ae){const _0x3a66db=_0x473ab8;for(var _0x5205a8=0x0;_0x5205a8<0x10;_0x5205a8++){var _0x14dc34=_0x4dd8ae+_0x5205a8,_0x14acf3=_0x38a69a[_0x14dc34];_0x38a69a[_0x14dc34]=(_0x14acf3<<0x8|_0x14acf3>>>0x18)&0xff00ff|(_0x14acf3<<0x18|_0x14acf3>>>0x8)&0xff00ff00;}var _0x5453cf=this[_0x3a66db(0x3a8)]['words'],_0x48bc49=_0x38a69a[_0x4dd8ae+0x0],_0x112583=_0x38a69a[_0x4dd8ae+0x1],_0xf38e71=_0x38a69a[_0x4dd8ae+0x2],_0x4e8a32=_0x38a69a[_0x4dd8ae+0x3],_0x338612=_0x38a69a[_0x4dd8ae+0x4],_0x61e504=_0x38a69a[_0x4dd8ae+0x5],_0x2171b1=_0x38a69a[_0x4dd8ae+0x6],_0x461b35=_0x38a69a[_0x4dd8ae+0x7],_0x3ecf1d=_0x38a69a[_0x4dd8ae+0x8],_0x2143e3=_0x38a69a[_0x4dd8ae+0x9],_0x208af6=_0x38a69a[_0x4dd8ae+0xa],_0x39c1ce=_0x38a69a[_0x4dd8ae+0xb],_0x48d19f=_0x38a69a[_0x4dd8ae+0xc],_0x18a11c=_0x38a69a[_0x4dd8ae+0xd],_0x140512=_0x38a69a[_0x4dd8ae+0xe],_0x32c8c2=_0x38a69a[_0x4dd8ae+0xf],_0x340a44=_0x5453cf[0x0],_0x488b43=_0x5453cf[0x1],_0x27b228=_0x5453cf[0x2],_0x49f3d2=_0x5453cf[0x3];_0x340a44=_0x517f9f(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x48bc49,0x7,_0x138b8[0x0]),_0x49f3d2=_0x517f9f(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x112583,0xc,_0x138b8[0x1]),_0x27b228=_0x517f9f(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0xf38e71,0x11,_0x138b8[0x2]),_0x488b43=_0x517f9f(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x4e8a32,0x16,_0x138b8[0x3]),_0x340a44=_0x517f9f(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x338612,0x7,_0x138b8[0x4]),_0x49f3d2=_0x517f9f(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x61e504,0xc,_0x138b8[0x5]),_0x27b228=_0x517f9f(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0x2171b1,0x11,_0x138b8[0x6]),_0x488b43=_0x517f9f(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x461b35,0x16,_0x138b8[0x7]),_0x340a44=_0x517f9f(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x3ecf1d,0x7,_0x138b8[0x8]),_0x49f3d2=_0x517f9f(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x2143e3,0xc,_0x138b8[0x9]),_0x27b228=_0x517f9f(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0x208af6,0x11,_0x138b8[0xa]),_0x488b43=_0x517f9f(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x39c1ce,0x16,_0x138b8[0xb]),_0x340a44=_0x517f9f(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x48d19f,0x7,_0x138b8[0xc]),_0x49f3d2=_0x517f9f(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x18a11c,0xc,_0x138b8[0xd]),_0x27b228=_0x517f9f(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0x140512,0x11,_0x138b8[0xe]),_0x488b43=_0x517f9f(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x32c8c2,0x16,_0x138b8[0xf]),_0x340a44=_0x18996a(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x112583,0x5,_0x138b8[0x10]),_0x49f3d2=_0x18996a(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x2171b1,0x9,_0x138b8[0x11]),_0x27b228=_0x18996a(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0x39c1ce,0xe,_0x138b8[0x12]),_0x488b43=_0x18996a(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x48bc49,0x14,_0x138b8[0x13]),_0x340a44=_0x18996a(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x61e504,0x5,_0x138b8[0x14]),_0x49f3d2=_0x18996a(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x208af6,0x9,_0x138b8[0x15]),_0x27b228=_0x18996a(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0x32c8c2,0xe,_0x138b8[0x16]),_0x488b43=_0x18996a(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x338612,0x14,_0x138b8[0x17]),_0x340a44=_0x18996a(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x2143e3,0x5,_0x138b8[0x18]),_0x49f3d2=_0x18996a(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x140512,0x9,_0x138b8[0x19]),_0x27b228=_0x18996a(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0x4e8a32,0xe,_0x138b8[0x1a]),_0x488b43=_0x18996a(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x3ecf1d,0x14,_0x138b8[0x1b]),_0x340a44=_0x18996a(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x18a11c,0x5,_0x138b8[0x1c]),_0x49f3d2=_0x18996a(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0xf38e71,0x9,_0x138b8[0x1d]),_0x27b228=_0x18996a(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0x461b35,0xe,_0x138b8[0x1e]),_0x488b43=_0x18996a(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x48d19f,0x14,_0x138b8[0x1f]),_0x340a44=_0x1ce8fb(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x61e504,0x4,_0x138b8[0x20]),_0x49f3d2=_0x1ce8fb(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x3ecf1d,0xb,_0x138b8[0x21]),_0x27b228=_0x1ce8fb(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0x39c1ce,0x10,_0x138b8[0x22]),_0x488b43=_0x1ce8fb(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x140512,0x17,_0x138b8[0x23]),_0x340a44=_0x1ce8fb(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x112583,0x4,_0x138b8[0x24]),_0x49f3d2=_0x1ce8fb(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x338612,0xb,_0x138b8[0x25]),_0x27b228=_0x1ce8fb(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0x461b35,0x10,_0x138b8[0x26]),_0x488b43=_0x1ce8fb(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x208af6,0x17,_0x138b8[0x27]),_0x340a44=_0x1ce8fb(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x18a11c,0x4,_0x138b8[0x28]),_0x49f3d2=_0x1ce8fb(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x48bc49,0xb,_0x138b8[0x29]),_0x27b228=_0x1ce8fb(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0x4e8a32,0x10,_0x138b8[0x2a]),_0x488b43=_0x1ce8fb(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x2171b1,0x17,_0x138b8[0x2b]),_0x340a44=_0x1ce8fb(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x2143e3,0x4,_0x138b8[0x2c]),_0x49f3d2=_0x1ce8fb(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x48d19f,0xb,_0x138b8[0x2d]),_0x27b228=_0x1ce8fb(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0x32c8c2,0x10,_0x138b8[0x2e]),_0x488b43=_0x1ce8fb(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0xf38e71,0x17,_0x138b8[0x2f]),_0x340a44=_0x28d1a3(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x48bc49,0x6,_0x138b8[0x30]),_0x49f3d2=_0x28d1a3(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x461b35,0xa,_0x138b8[0x31]),_0x27b228=_0x28d1a3(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0x140512,0xf,_0x138b8[0x32]),_0x488b43=_0x28d1a3(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x61e504,0x15,_0x138b8[0x33]),_0x340a44=_0x28d1a3(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x48d19f,0x6,_0x138b8[0x34]),_0x49f3d2=_0x28d1a3(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x4e8a32,0xa,_0x138b8[0x35]),_0x27b228=_0x28d1a3(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0x208af6,0xf,_0x138b8[0x36]),_0x488b43=_0x28d1a3(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x112583,0x15,_0x138b8[0x37]),_0x340a44=_0x28d1a3(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x3ecf1d,0x6,_0x138b8[0x38]),_0x49f3d2=_0x28d1a3(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x32c8c2,0xa,_0x138b8[0x39]),_0x27b228=_0x28d1a3(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0x2171b1,0xf,_0x138b8[0x3a]),_0x488b43=_0x28d1a3(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x18a11c,0x15,_0x138b8[0x3b]),_0x340a44=_0x28d1a3(_0x340a44,_0x488b43,_0x27b228,_0x49f3d2,_0x338612,0x6,_0x138b8[0x3c]),_0x49f3d2=_0x28d1a3(_0x49f3d2,_0x340a44,_0x488b43,_0x27b228,_0x39c1ce,0xa,_0x138b8[0x3d]),_0x27b228=_0x28d1a3(_0x27b228,_0x49f3d2,_0x340a44,_0x488b43,_0xf38e71,0xf,_0x138b8[0x3e]),_0x488b43=_0x28d1a3(_0x488b43,_0x27b228,_0x49f3d2,_0x340a44,_0x2143e3,0x15,_0x138b8[0x3f]),_0x5453cf[0x0]=_0x5453cf[0x0]+_0x340a44|0x0,_0x5453cf[0x1]=_0x5453cf[0x1]+_0x488b43|0x0,_0x5453cf[0x2]=_0x5453cf[0x2]+_0x27b228|0x0,_0x5453cf[0x3]=_0x5453cf[0x3]+_0x49f3d2|0x0;},'_doFinalize':function(){const _0x31a943=_0x473ab8;var _0x56bb20=this[_0x31a943(0x4e4)],_0xacbc9c=_0x56bb20[_0x31a943(0x172)],_0x509f55=this[_0x31a943(0x20e)]*0x8,_0x51ca98=_0x56bb20[_0x31a943(0x237)]*0x8;_0xacbc9c[_0x51ca98>>>0x5]|=0x80<<0x18-_0x51ca98%0x20;var _0x434850=_0x493d90[_0x31a943(0x187)](_0x509f55/0x100000000),_0xaaca66=_0x509f55;_0xacbc9c[(_0x51ca98+0x40>>>0x9<<0x4)+0xf]=(_0x434850<<0x8|_0x434850>>>0x18)&0xff00ff|(_0x434850<<0x18|_0x434850>>>0x8)&0xff00ff00,_0xacbc9c[(_0x51ca98+0x40>>>0x9<<0x4)+0xe]=(_0xaaca66<<0x8|_0xaaca66>>>0x18)&0xff00ff|(_0xaaca66<<0x18|_0xaaca66>>>0x8)&0xff00ff00,_0x56bb20['sigBytes']=(_0xacbc9c['length']+0x1)*0x4,this['_process']();for(var _0x474590=this[_0x31a943(0x3a8)],_0x3a28a7=_0x474590[_0x31a943(0x172)],_0x38eed0=0x0;_0x38eed0<0x4;_0x38eed0++){var _0x37d11b=_0x3a28a7[_0x38eed0];_0x3a28a7[_0x38eed0]=(_0x37d11b<<0x8|_0x37d11b>>>0x18)&0xff00ff|(_0x37d11b<<0x18|_0x37d11b>>>0x8)&0xff00ff00;}return _0x474590;},'clone':function(){const _0x5552ca=_0x473ab8;var _0x1f4b16=_0x492642[_0x5552ca(0x1fd)][_0x5552ca(0x2c6)](this);return _0x1f4b16['_hash']=this[_0x5552ca(0x3a8)]['clone'](),_0x1f4b16;}});function _0x517f9f(_0x4dc2f6,_0x173b84,_0x14994c,_0x536bee,_0x29d30,_0x326f53,_0x2c6961){var _0x2d5a84=_0x4dc2f6+(_0x173b84&_0x14994c|~_0x173b84&_0x536bee)+_0x29d30+_0x2c6961;return(_0x2d5a84<<_0x326f53|_0x2d5a84>>>0x20-_0x326f53)+_0x173b84;}function _0x18996a(_0x28a1bd,_0x51a444,_0x2fe206,_0x491102,_0x193dc7,_0x47dc18,_0x13467d){var _0x376493=_0x28a1bd+(_0x51a444&_0x491102|_0x2fe206&~_0x491102)+_0x193dc7+_0x13467d;return(_0x376493<<_0x47dc18|_0x376493>>>0x20-_0x47dc18)+_0x51a444;}function _0x1ce8fb(_0x4477e4,_0x433a2b,_0x370069,_0x278e6a,_0x75b443,_0x1efb1c,_0x4fb6e3){var _0x4fc4e2=_0x4477e4+(_0x433a2b^_0x370069^_0x278e6a)+_0x75b443+_0x4fb6e3;return(_0x4fc4e2<<_0x1efb1c|_0x4fc4e2>>>0x20-_0x1efb1c)+_0x433a2b;}function _0x28d1a3(_0x4a82f7,_0x1c7138,_0x5ab0b6,_0x500f26,_0x1cb74f,_0x59f849,_0x311e56){var _0x51b710=_0x4a82f7+(_0x5ab0b6^(_0x1c7138|~_0x500f26))+_0x1cb74f+_0x311e56;return(_0x51b710<<_0x59f849|_0x51b710>>>0x20-_0x59f849)+_0x1c7138;}_0x39c84b[_0x473ab8(0x402)]=_0x492642['_createHelper'](_0xd9b3a),_0x39c84b[_0x473ab8(0x33d)]=_0x492642['_createHmacHelper'](_0xd9b3a);}(Math),_0x9ada8d[_0x2ffe97(0x402)];}));}(Gt)),Gt[_0x159261(0x173)];}var Yt={'exports':{}},Kt={'exports':{}},Qs;function Ga(){const _0x1f697a=_0xc8d6e8;return Qs||(Qs=0x1,function(_0x398f20,_0x1b82be){(function(_0x409894,_0x26829b){const _0x364877=_0x284c;_0x398f20[_0x364877(0x173)]=_0x26829b(ue());}(Z,function(_0x2765c6){const _0x40221b=_0x284c;return(function(){const _0x175440=_0x284c;var _0x350b73=_0x2765c6,_0x565622=_0x350b73[_0x175440(0x40d)],_0x215a31=_0x565622[_0x175440(0x33c)],_0x40b13f=_0x565622[_0x175440(0x348)],_0xca64ce=_0x350b73[_0x175440(0x2ff)],_0x4ab24a=[],_0x56f70e=_0xca64ce[_0x175440(0x536)]=_0x40b13f[_0x175440(0x210)]({'_doReset':function(){const _0x48c4e1=_0x175440;this[_0x48c4e1(0x3a8)]=new _0x215a31[(_0x48c4e1(0x293))]([0x67452301,0xefcdab89,0x98badcfe,0x10325476,0xc3d2e1f0]);},'_doProcessBlock':function(_0x353a0b,_0x4f7b29){const _0xe5623d=_0x175440;for(var _0x469cb6=this['_hash'][_0xe5623d(0x172)],_0x55531b=_0x469cb6[0x0],_0x1d9e9c=_0x469cb6[0x1],_0x2f77b8=_0x469cb6[0x2],_0x438d21=_0x469cb6[0x3],_0x3da7d9=_0x469cb6[0x4],_0x967647=0x0;_0x967647<0x50;_0x967647++){if(_0x967647<0x10)_0x4ab24a[_0x967647]=_0x353a0b[_0x4f7b29+_0x967647]|0x0;else{var _0x55e34e=_0x4ab24a[_0x967647-0x3]^_0x4ab24a[_0x967647-0x8]^_0x4ab24a[_0x967647-0xe]^_0x4ab24a[_0x967647-0x10];_0x4ab24a[_0x967647]=_0x55e34e<<0x1|_0x55e34e>>>0x1f;}var _0x190ae4=(_0x55531b<<0x5|_0x55531b>>>0x1b)+_0x3da7d9+_0x4ab24a[_0x967647];_0x967647<0x14?_0x190ae4+=(_0x1d9e9c&_0x2f77b8|~_0x1d9e9c&_0x438d21)+0x5a827999:_0x967647<0x28?_0x190ae4+=(_0x1d9e9c^_0x2f77b8^_0x438d21)+0x6ed9eba1:_0x967647<0x3c?_0x190ae4+=(_0x1d9e9c&_0x2f77b8|_0x1d9e9c&_0x438d21|_0x2f77b8&_0x438d21)-0x70e44324:_0x190ae4+=(_0x1d9e9c^_0x2f77b8^_0x438d21)-0x359d3e2a,_0x3da7d9=_0x438d21,_0x438d21=_0x2f77b8,_0x2f77b8=_0x1d9e9c<<0x1e|_0x1d9e9c>>>0x2,_0x1d9e9c=_0x55531b,_0x55531b=_0x190ae4;}_0x469cb6[0x0]=_0x469cb6[0x0]+_0x55531b|0x0,_0x469cb6[0x1]=_0x469cb6[0x1]+_0x1d9e9c|0x0,_0x469cb6[0x2]=_0x469cb6[0x2]+_0x2f77b8|0x0,_0x469cb6[0x3]=_0x469cb6[0x3]+_0x438d21|0x0,_0x469cb6[0x4]=_0x469cb6[0x4]+_0x3da7d9|0x0;},'_doFinalize':function(){const _0xac046a=_0x175440;var _0x2df6f3=this[_0xac046a(0x4e4)],_0x277b87=_0x2df6f3[_0xac046a(0x172)],_0x538743=this['_nDataBytes']*0x8,_0x1a903b=_0x2df6f3['sigBytes']*0x8;return _0x277b87[_0x1a903b>>>0x5]|=0x80<<0x18-_0x1a903b%0x20,_0x277b87[(_0x1a903b+0x40>>>0x9<<0x4)+0xe]=Math[_0xac046a(0x187)](_0x538743/0x100000000),_0x277b87[(_0x1a903b+0x40>>>0x9<<0x4)+0xf]=_0x538743,_0x2df6f3[_0xac046a(0x237)]=_0x277b87['length']*0x4,this[_0xac046a(0x1c0)](),this[_0xac046a(0x3a8)];},'clone':function(){const _0x3eb7c9=_0x175440;var _0x396bc1=_0x40b13f['clone']['call'](this);return _0x396bc1[_0x3eb7c9(0x3a8)]=this[_0x3eb7c9(0x3a8)][_0x3eb7c9(0x1fd)](),_0x396bc1;}});_0x350b73[_0x175440(0x536)]=_0x40b13f[_0x175440(0x30e)](_0x56f70e),_0x350b73[_0x175440(0x495)]=_0x40b13f[_0x175440(0x458)](_0x56f70e);}()),_0x2765c6[_0x40221b(0x536)];}));}(Kt)),Kt[_0x1f697a(0x173)];}var zt={'exports':{}},ei;function Ya(){const _0x3cec09=_0xc8d6e8;return ei||(ei=0x1,function(_0x884961,_0x3a54ff){(function(_0x2bb6d6,_0x42d4a9){const _0x3970e9=_0x284c;_0x884961[_0x3970e9(0x173)]=_0x42d4a9(ue());}(Z,function(_0x23ea88){(function(){const _0x4edd94=_0x284c;var _0x27c200=_0x23ea88,_0x17db21=_0x27c200[_0x4edd94(0x40d)],_0x1057bf=_0x17db21[_0x4edd94(0x123)],_0x44fdd1=_0x27c200['enc'],_0x328bcd=_0x44fdd1[_0x4edd94(0x378)],_0x1d16bb=_0x27c200[_0x4edd94(0x2ff)];_0x1d16bb['HMAC']=_0x1057bf[_0x4edd94(0x210)]({'init':function(_0x4128b3,_0x3a5996){const _0x1f13fb=_0x4edd94;_0x4128b3=this[_0x1f13fb(0x387)]=new _0x4128b3['init'](),typeof _0x3a5996=='string'&&(_0x3a5996=_0x328bcd[_0x1f13fb(0x4d2)](_0x3a5996));var _0x2165d1=_0x4128b3[_0x1f13fb(0x3f3)],_0x54c3af=_0x2165d1*0x4;_0x3a5996[_0x1f13fb(0x237)]>_0x54c3af&&(_0x3a5996=_0x4128b3[_0x1f13fb(0x530)](_0x3a5996)),_0x3a5996[_0x1f13fb(0x2e4)]();for(var _0x32d930=this[_0x1f13fb(0x3fb)]=_0x3a5996[_0x1f13fb(0x1fd)](),_0x31bc8b=this[_0x1f13fb(0x281)]=_0x3a5996[_0x1f13fb(0x1fd)](),_0x44975f=_0x32d930[_0x1f13fb(0x172)],_0x4ecb6d=_0x31bc8b[_0x1f13fb(0x172)],_0x181fc6=0x0;_0x181fc6<_0x2165d1;_0x181fc6++)_0x44975f[_0x181fc6]^=0x5c5c5c5c,_0x4ecb6d[_0x181fc6]^=0x36363636;_0x32d930[_0x1f13fb(0x237)]=_0x31bc8b[_0x1f13fb(0x237)]=_0x54c3af,this[_0x1f13fb(0x19d)]();},'reset':function(){const _0x360b2c=_0x4edd94;var _0x1de426=this[_0x360b2c(0x387)];_0x1de426[_0x360b2c(0x19d)](),_0x1de426[_0x360b2c(0x2d4)](this[_0x360b2c(0x281)]);},'update':function(_0x751ca){const _0x4e3e83=_0x4edd94;return this[_0x4e3e83(0x387)][_0x4e3e83(0x2d4)](_0x751ca),this;},'finalize':function(_0x4866e7){const _0x147bb8=_0x4edd94;var _0x444e28=this[_0x147bb8(0x387)],_0xc6d8a0=_0x444e28[_0x147bb8(0x530)](_0x4866e7);_0x444e28[_0x147bb8(0x19d)]();var _0x339495=_0x444e28[_0x147bb8(0x530)](this[_0x147bb8(0x3fb)]['clone']()[_0x147bb8(0x502)](_0xc6d8a0));return _0x339495;}});}());}));}(zt)),zt[_0x3cec09(0x173)];}var ti;function Fi(){const _0x142a03=_0xc8d6e8;return ti||(ti=0x1,function(_0x583b18,_0x53d776){(function(_0xe20cc1,_0x4e6c2b,_0xe56bff){const _0x2da874=_0x284c;_0x583b18[_0x2da874(0x173)]=_0x4e6c2b(ue(),Ga(),Ya());}(Z,function(_0xfc18d2){const _0x162800=_0x284c;return(function(){const _0xb8326=_0x284c;var _0x5056bc=_0xfc18d2,_0xb9926f=_0x5056bc[_0xb8326(0x40d)],_0x4e4539=_0xb9926f[_0xb8326(0x123)],_0x4aea28=_0xb9926f[_0xb8326(0x33c)],_0x8104e2=_0x5056bc[_0xb8326(0x2ff)],_0x4f2f48=_0x8104e2[_0xb8326(0x402)],_0x9b2908=_0x8104e2[_0xb8326(0x46d)]=_0x4e4539[_0xb8326(0x210)]({'cfg':_0x4e4539['extend']({'keySize':0x80/0x20,'hasher':_0x4f2f48,'iterations':0x1}),'init':function(_0x2c0829){const _0x36511f=_0xb8326;this[_0x36511f(0x2d7)]=this[_0x36511f(0x2d7)]['extend'](_0x2c0829);},'compute':function(_0x101298,_0x3fc540){const _0x520ec6=_0xb8326;for(var _0x21081a,_0x29d10a=this[_0x520ec6(0x2d7)],_0x3ad575=_0x29d10a[_0x520ec6(0x377)][_0x520ec6(0x273)](),_0x2f51a7=_0x4aea28[_0x520ec6(0x273)](),_0x3975b5=_0x2f51a7['words'],_0x5e5b93=_0x29d10a['keySize'],_0x4ab86e=_0x29d10a[_0x520ec6(0x343)];_0x3975b5[_0x520ec6(0x3d5)]<_0x5e5b93;){_0x21081a&&_0x3ad575[_0x520ec6(0x2d4)](_0x21081a),_0x21081a=_0x3ad575[_0x520ec6(0x2d4)](_0x101298)['finalize'](_0x3fc540),_0x3ad575['reset']();for(var _0x293217=0x1;_0x293217<_0x4ab86e;_0x293217++)_0x21081a=_0x3ad575[_0x520ec6(0x530)](_0x21081a),_0x3ad575[_0x520ec6(0x19d)]();_0x2f51a7[_0x520ec6(0x502)](_0x21081a);}return _0x2f51a7['sigBytes']=_0x5e5b93*0x4,_0x2f51a7;}});_0x5056bc[_0xb8326(0x46d)]=function(_0x25c804,_0x366407,_0x2f522e){const _0x31b42f=_0xb8326;return _0x9b2908[_0x31b42f(0x273)](_0x2f522e)[_0x31b42f(0x4c6)](_0x25c804,_0x366407);};}()),_0xfc18d2[_0x162800(0x46d)];}));}(Yt)),Yt[_0x142a03(0x173)];}var qt={'exports':{}},si;function Vi(){return si||(si=0x1,function(_0x5a1262,_0x49cd88){(function(_0x1cd21a,_0x55332c,_0x29674b){const _0x1e6617=_0x284c;_0x5a1262[_0x1e6617(0x173)]=_0x55332c(ue(),Fi());}(Z,function(_0x1818db){_0x1818db['lib']['Cipher']||function(_0x2b741e){const _0x468830=_0x284c;var _0x375d79=_0x1818db,_0x5d7ac3=_0x375d79[_0x468830(0x40d)],_0x334b3a=_0x5d7ac3[_0x468830(0x123)],_0x423662=_0x5d7ac3['WordArray'],_0x2f8711=_0x5d7ac3[_0x468830(0x465)],_0x40db21=_0x375d79[_0x468830(0x1dd)];_0x40db21[_0x468830(0x378)];var _0x42a088=_0x40db21[_0x468830(0x1fa)],_0x227df0=_0x375d79[_0x468830(0x2ff)],_0x209347=_0x227df0[_0x468830(0x46d)],_0x90e00a=_0x5d7ac3[_0x468830(0x2dc)]=_0x2f8711[_0x468830(0x210)]({'cfg':_0x334b3a['extend'](),'createEncryptor':function(_0x525ee2,_0x1c554c){const _0x258f3a=_0x468830;return this[_0x258f3a(0x273)](this[_0x258f3a(0x3b6)],_0x525ee2,_0x1c554c);},'createDecryptor':function(_0x2eeeb1,_0x589fac){const _0x44e585=_0x468830;return this[_0x44e585(0x273)](this[_0x44e585(0x3cd)],_0x2eeeb1,_0x589fac);},'init':function(_0x4646ff,_0x2c4896,_0x5f39e9){const _0x330d16=_0x468830;this[_0x330d16(0x2d7)]=this[_0x330d16(0x2d7)][_0x330d16(0x210)](_0x5f39e9),this[_0x330d16(0x514)]=_0x4646ff,this['_key']=_0x2c4896,this[_0x330d16(0x19d)]();},'reset':function(){const _0x4e8be6=_0x468830;_0x2f8711['reset'][_0x4e8be6(0x2c6)](this),this['_doReset']();},'process':function(_0x1e5245){const _0x26f22a=_0x468830;return this[_0x26f22a(0x32c)](_0x1e5245),this[_0x26f22a(0x1c0)]();},'finalize':function(_0x3b0aa1){const _0x2bc6f6=_0x468830;_0x3b0aa1&&this[_0x2bc6f6(0x32c)](_0x3b0aa1);var _0x2ddc6c=this['_doFinalize']();return _0x2ddc6c;},'keySize':0x80/0x20,'ivSize':0x80/0x20,'_ENC_XFORM_MODE':0x1,'_DEC_XFORM_MODE':0x2,'_createHelper':(function(){function _0x147074(_0x5a6aa5){const _0x37c077=_0x284c;return typeof _0x5a6aa5==_0x37c077(0x155)?_0x217f01:_0x1e1d9a;}return function(_0xa2ae0a){return{'encrypt':function(_0x1fc9b2,_0x2c461a,_0x1a9b55){const _0x4f454e=_0x284c;return _0x147074(_0x2c461a)[_0x4f454e(0x449)](_0xa2ae0a,_0x1fc9b2,_0x2c461a,_0x1a9b55);},'decrypt':function(_0xa515b3,_0x3cc007,_0x1649bc){const _0x327ee6=_0x284c;return _0x147074(_0x3cc007)[_0x327ee6(0x462)](_0xa2ae0a,_0xa515b3,_0x3cc007,_0x1649bc);}};};}())});_0x5d7ac3['StreamCipher']=_0x90e00a[_0x468830(0x210)]({'_doFinalize':function(){const _0x4d97ce=_0x468830;var _0x118758=this[_0x4d97ce(0x1c0)](!0x0);return _0x118758;},'blockSize':0x1});var _0x3ad049=_0x375d79[_0x468830(0x296)]={},_0x546b49=_0x5d7ac3['BlockCipherMode']=_0x334b3a[_0x468830(0x210)]({'createEncryptor':function(_0x232b95,_0x2dd51f){const _0x22feee=_0x468830;return this[_0x22feee(0x480)][_0x22feee(0x273)](_0x232b95,_0x2dd51f);},'createDecryptor':function(_0x37eb37,_0x13b89a){const _0x197a7b=_0x468830;return this[_0x197a7b(0x18f)][_0x197a7b(0x273)](_0x37eb37,_0x13b89a);},'init':function(_0x2b57ca,_0x43bc8d){const _0x199958=_0x468830;this[_0x199958(0x31b)]=_0x2b57ca,this['_iv']=_0x43bc8d;}}),_0x18a0a9=_0x3ad049['CBC']=(function(){const _0x36becc=_0x468830;var _0x6640a8=_0x546b49[_0x36becc(0x210)]();_0x6640a8[_0x36becc(0x480)]=_0x6640a8[_0x36becc(0x210)]({'processBlock':function(_0x4773a6,_0x567aa7){const _0x4bb544=_0x36becc;var _0x347bdb=this['_cipher'],_0x271ea3=_0x347bdb[_0x4bb544(0x3f3)];_0x5c5bd6[_0x4bb544(0x2c6)](this,_0x4773a6,_0x567aa7,_0x271ea3),_0x347bdb[_0x4bb544(0x3b3)](_0x4773a6,_0x567aa7),this[_0x4bb544(0x35e)]=_0x4773a6[_0x4bb544(0x357)](_0x567aa7,_0x567aa7+_0x271ea3);}}),_0x6640a8[_0x36becc(0x18f)]=_0x6640a8[_0x36becc(0x210)]({'processBlock':function(_0x2d81f5,_0x2dadd5){const _0x53a835=_0x36becc;var _0xd09357=this[_0x53a835(0x31b)],_0x432ea4=_0xd09357[_0x53a835(0x3f3)],_0x1d593e=_0x2d81f5[_0x53a835(0x357)](_0x2dadd5,_0x2dadd5+_0x432ea4);_0xd09357[_0x53a835(0x136)](_0x2d81f5,_0x2dadd5),_0x5c5bd6[_0x53a835(0x2c6)](this,_0x2d81f5,_0x2dadd5,_0x432ea4),this[_0x53a835(0x35e)]=_0x1d593e;}});function _0x5c5bd6(_0xeded06,_0xf0437e,_0x4f420f){const _0x29acdb=_0x36becc;var _0x2dafac,_0xb50130=this[_0x29acdb(0x48e)];_0xb50130?(_0x2dafac=_0xb50130,this[_0x29acdb(0x48e)]=_0x2b741e):_0x2dafac=this[_0x29acdb(0x35e)];for(var _0x1e8192=0x0;_0x1e8192<_0x4f420f;_0x1e8192++)_0xeded06[_0xf0437e+_0x1e8192]^=_0x2dafac[_0x1e8192];}return _0x6640a8;}()),_0x35fe15=_0x375d79[_0x468830(0x13a)]={},_0x53275d=_0x35fe15[_0x468830(0x362)]={'pad':function(_0x2ce87b,_0x23e7d4){const _0x2ac4f5=_0x468830;for(var _0x39b72b=_0x23e7d4*0x4,_0x2c322d=_0x39b72b-_0x2ce87b['sigBytes']%_0x39b72b,_0x30ac44=_0x2c322d<<0x18|_0x2c322d<<0x10|_0x2c322d<<0x8|_0x2c322d,_0x5e9e37=[],_0x48650c=0x0;_0x48650c<_0x2c322d;_0x48650c+=0x4)_0x5e9e37['push'](_0x30ac44);var _0x346555=_0x423662[_0x2ac4f5(0x273)](_0x5e9e37,_0x2c322d);_0x2ce87b['concat'](_0x346555);},'unpad':function(_0x2d3153){const _0x1e11a3=_0x468830;var _0x2d69d3=_0x2d3153['words'][_0x2d3153[_0x1e11a3(0x237)]-0x1>>>0x2]&0xff;_0x2d3153[_0x1e11a3(0x237)]-=_0x2d69d3;}};_0x5d7ac3[_0x468830(0x383)]=_0x90e00a[_0x468830(0x210)]({'cfg':_0x90e00a[_0x468830(0x2d7)][_0x468830(0x210)]({'mode':_0x18a0a9,'padding':_0x53275d}),'reset':function(){const _0x1f4466=_0x468830;var _0x5af53f;_0x90e00a[_0x1f4466(0x19d)][_0x1f4466(0x2c6)](this);var _0x1a2df5=this[_0x1f4466(0x2d7)],_0xb1ffb8=_0x1a2df5['iv'],_0x1381de=_0x1a2df5[_0x1f4466(0x296)];this['_xformMode']==this[_0x1f4466(0x3b6)]?_0x5af53f=_0x1381de['createEncryptor']:(_0x5af53f=_0x1381de[_0x1f4466(0x3d1)],this[_0x1f4466(0x30c)]=0x1),this[_0x1f4466(0x1ec)]&&this[_0x1f4466(0x1ec)][_0x1f4466(0x17f)]==_0x5af53f?this[_0x1f4466(0x1ec)][_0x1f4466(0x293)](this,_0xb1ffb8&&_0xb1ffb8[_0x1f4466(0x172)]):(this[_0x1f4466(0x1ec)]=_0x5af53f[_0x1f4466(0x2c6)](_0x1381de,this,_0xb1ffb8&&_0xb1ffb8['words']),this[_0x1f4466(0x1ec)][_0x1f4466(0x17f)]=_0x5af53f);},'_doProcessBlock':function(_0x5bec8b,_0x2afc68){const _0x16e5d8=_0x468830;this[_0x16e5d8(0x1ec)][_0x16e5d8(0x17d)](_0x5bec8b,_0x2afc68);},'_doFinalize':function(){const _0xab5e09=_0x468830;var _0x140a11,_0x5c9074=this[_0xab5e09(0x2d7)][_0xab5e09(0x2ca)];return this['_xformMode']==this[_0xab5e09(0x3b6)]?(_0x5c9074[_0xab5e09(0x13a)](this[_0xab5e09(0x4e4)],this[_0xab5e09(0x3f3)]),_0x140a11=this['_process'](!0x0)):(_0x140a11=this[_0xab5e09(0x1c0)](!0x0),_0x5c9074[_0xab5e09(0x1fc)](_0x140a11)),_0x140a11;},'blockSize':0x80/0x20});var _0x291502=_0x5d7ac3[_0x468830(0x461)]=_0x334b3a[_0x468830(0x210)]({'init':function(_0x5b57a9){const _0x13ab7f=_0x468830;this[_0x13ab7f(0x52a)](_0x5b57a9);},'toString':function(_0x3754e7){const _0x49f714=_0x468830;return(_0x3754e7||this[_0x49f714(0x134)])[_0x49f714(0x306)](this);}}),_0x265540=_0x375d79[_0x468830(0x3ca)]={},_0x434d2a=_0x265540[_0x468830(0x31d)]={'stringify':function(_0x26e182){const _0x575fb9=_0x468830;var _0x3b098,_0x195e69=_0x26e182['ciphertext'],_0x198f80=_0x26e182[_0x575fb9(0x1bc)];return _0x198f80?_0x3b098=_0x423662[_0x575fb9(0x273)]([0x53616c74,0x65645f5f])[_0x575fb9(0x502)](_0x198f80)[_0x575fb9(0x502)](_0x195e69):_0x3b098=_0x195e69,_0x3b098['toString'](_0x42a088);},'parse':function(_0x11f20f){const _0x345772=_0x468830;var _0x26860d,_0x5789ea=_0x42a088[_0x345772(0x4d2)](_0x11f20f),_0x532b95=_0x5789ea['words'];return _0x532b95[0x0]==0x53616c74&&_0x532b95[0x1]==0x65645f5f&&(_0x26860d=_0x423662['create'](_0x532b95['slice'](0x2,0x4)),_0x532b95[_0x345772(0x3ee)](0x0,0x4),_0x5789ea[_0x345772(0x237)]-=0x10),_0x291502[_0x345772(0x273)]({'ciphertext':_0x5789ea,'salt':_0x26860d});}},_0x1e1d9a=_0x5d7ac3[_0x468830(0x503)]=_0x334b3a[_0x468830(0x210)]({'cfg':_0x334b3a['extend']({'format':_0x434d2a}),'encrypt':function(_0x55d883,_0x2c45fd,_0x4ff4e0,_0x3e14d8){const _0x41fda0=_0x468830;_0x3e14d8=this[_0x41fda0(0x2d7)]['extend'](_0x3e14d8);var _0x20f679=_0x55d883[_0x41fda0(0x16a)](_0x4ff4e0,_0x3e14d8),_0x565979=_0x20f679['finalize'](_0x2c45fd),_0x3ad0bb=_0x20f679['cfg'];return _0x291502[_0x41fda0(0x273)]({'ciphertext':_0x565979,'key':_0x4ff4e0,'iv':_0x3ad0bb['iv'],'algorithm':_0x55d883,'mode':_0x3ad0bb[_0x41fda0(0x296)],'padding':_0x3ad0bb[_0x41fda0(0x2ca)],'blockSize':_0x55d883[_0x41fda0(0x3f3)],'formatter':_0x3e14d8[_0x41fda0(0x3ca)]});},'decrypt':function(_0x36b23a,_0x57b431,_0x26ad07,_0x4b1576){const _0x529c36=_0x468830;_0x4b1576=this['cfg'][_0x529c36(0x210)](_0x4b1576),_0x57b431=this[_0x529c36(0x221)](_0x57b431,_0x4b1576[_0x529c36(0x3ca)]);var _0x357481=_0x36b23a[_0x529c36(0x3d1)](_0x26ad07,_0x4b1576)[_0x529c36(0x530)](_0x57b431['ciphertext']);return _0x357481;},'_parse':function(_0x48de47,_0x109da8){const _0x23cf8b=_0x468830;return typeof _0x48de47==_0x23cf8b(0x155)?_0x109da8[_0x23cf8b(0x4d2)](_0x48de47,this):_0x48de47;}}),_0x4f49c1=_0x375d79['kdf']={},_0x1cb7de=_0x4f49c1['OpenSSL']={'execute':function(_0x5b3562,_0x25d243,_0x4e847c,_0x34cff6,_0x20e14a){const _0x49b4ef=_0x468830;if(_0x34cff6||(_0x34cff6=_0x423662[_0x49b4ef(0x51a)](0x40/0x8)),_0x20e14a)var _0x26c77b=_0x209347['create']({'keySize':_0x25d243+_0x4e847c,'hasher':_0x20e14a})[_0x49b4ef(0x4c6)](_0x5b3562,_0x34cff6);else var _0x26c77b=_0x209347[_0x49b4ef(0x273)]({'keySize':_0x25d243+_0x4e847c})[_0x49b4ef(0x4c6)](_0x5b3562,_0x34cff6);var _0x3f0b2c=_0x423662[_0x49b4ef(0x273)](_0x26c77b['words'][_0x49b4ef(0x357)](_0x25d243),_0x4e847c*0x4);return _0x26c77b[_0x49b4ef(0x237)]=_0x25d243*0x4,_0x291502[_0x49b4ef(0x273)]({'key':_0x26c77b,'iv':_0x3f0b2c,'salt':_0x34cff6});}},_0x217f01=_0x5d7ac3['PasswordBasedCipher']=_0x1e1d9a[_0x468830(0x210)]({'cfg':_0x1e1d9a[_0x468830(0x2d7)][_0x468830(0x210)]({'kdf':_0x1cb7de}),'encrypt':function(_0x37af70,_0x84d030,_0xfd6619,_0x4a0adf){const _0x2f68cc=_0x468830;_0x4a0adf=this['cfg'][_0x2f68cc(0x210)](_0x4a0adf);var _0x390743=_0x4a0adf[_0x2f68cc(0x153)]['execute'](_0xfd6619,_0x37af70[_0x2f68cc(0x2ad)],_0x37af70[_0x2f68cc(0x4db)],_0x4a0adf[_0x2f68cc(0x1bc)],_0x4a0adf[_0x2f68cc(0x377)]);_0x4a0adf['iv']=_0x390743['iv'];var _0x4a052a=_0x1e1d9a[_0x2f68cc(0x449)][_0x2f68cc(0x2c6)](this,_0x37af70,_0x84d030,_0x390743[_0x2f68cc(0x1e3)],_0x4a0adf);return _0x4a052a[_0x2f68cc(0x52a)](_0x390743),_0x4a052a;},'decrypt':function(_0x18d064,_0x347af1,_0x148366,_0x31ba47){const _0x1d66ae=_0x468830;_0x31ba47=this[_0x1d66ae(0x2d7)][_0x1d66ae(0x210)](_0x31ba47),_0x347af1=this['_parse'](_0x347af1,_0x31ba47[_0x1d66ae(0x3ca)]);var _0x2b9989=_0x31ba47[_0x1d66ae(0x153)][_0x1d66ae(0x308)](_0x148366,_0x18d064[_0x1d66ae(0x2ad)],_0x18d064[_0x1d66ae(0x4db)],_0x347af1['salt'],_0x31ba47[_0x1d66ae(0x377)]);_0x31ba47['iv']=_0x2b9989['iv'];var _0x39ce3b=_0x1e1d9a[_0x1d66ae(0x462)][_0x1d66ae(0x2c6)](this,_0x18d064,_0x347af1,_0x2b9989[_0x1d66ae(0x1e3)],_0x31ba47);return _0x39ce3b;}});}();}));}(qt)),qt['exports'];}(function(_0x799be6,_0x509bcc){(function(_0x3b296f,_0x14dd83,_0x9bce99){const _0x45585c=_0x284c;_0x799be6[_0x45585c(0x173)]=_0x14dd83(ue(),Wi(),Va(),Fi(),Vi());}(Z,function(_0x51f368){const _0x1fab6b=_0x284c;return(function(){const _0x4c4fe0=_0x284c;var _0x129787=_0x51f368,_0x3e2bc0=_0x129787['lib'],_0x1e802f=_0x3e2bc0[_0x4c4fe0(0x383)],_0x290420=_0x129787['algo'],_0x474c16=[],_0x28e539=[],_0x2ef000=[],_0x325789=[],_0x4d5fa8=[],_0x53942f=[],_0x70e12=[],_0x274771=[],_0x2a1531=[],_0x1a2ade=[];(function(){for(var _0x538e4c=[],_0x39586c=0x0;_0x39586c<0x100;_0x39586c++)_0x39586c<0x80?_0x538e4c[_0x39586c]=_0x39586c<<0x1:_0x538e4c[_0x39586c]=_0x39586c<<0x1^0x11b;for(var _0x316add=0x0,_0x59ae80=0x0,_0x39586c=0x0;_0x39586c<0x100;_0x39586c++){var _0x4cb7f7=_0x59ae80^_0x59ae80<<0x1^_0x59ae80<<0x2^_0x59ae80<<0x3^_0x59ae80<<0x4;_0x4cb7f7=_0x4cb7f7>>>0x8^_0x4cb7f7&0xff^0x63,_0x474c16[_0x316add]=_0x4cb7f7,_0x28e539[_0x4cb7f7]=_0x316add;var _0x22187d=_0x538e4c[_0x316add],_0x17e31a=_0x538e4c[_0x22187d],_0x55d95a=_0x538e4c[_0x17e31a],_0x499671=_0x538e4c[_0x4cb7f7]*0x101^_0x4cb7f7*0x1010100;_0x2ef000[_0x316add]=_0x499671<<0x18|_0x499671>>>0x8,_0x325789[_0x316add]=_0x499671<<0x10|_0x499671>>>0x10,_0x4d5fa8[_0x316add]=_0x499671<<0x8|_0x499671>>>0x18,_0x53942f[_0x316add]=_0x499671;var _0x499671=_0x55d95a*0x1010101^_0x17e31a*0x10001^_0x22187d*0x101^_0x316add*0x1010100;_0x70e12[_0x4cb7f7]=_0x499671<<0x18|_0x499671>>>0x8,_0x274771[_0x4cb7f7]=_0x499671<<0x10|_0x499671>>>0x10,_0x2a1531[_0x4cb7f7]=_0x499671<<0x8|_0x499671>>>0x18,_0x1a2ade[_0x4cb7f7]=_0x499671,_0x316add?(_0x316add=_0x22187d^_0x538e4c[_0x538e4c[_0x538e4c[_0x55d95a^_0x22187d]]],_0x59ae80^=_0x538e4c[_0x538e4c[_0x59ae80]]):_0x316add=_0x59ae80=0x1;}}());var _0x586a57=[0x0,0x1,0x2,0x4,0x8,0x10,0x20,0x40,0x80,0x1b,0x36],_0x38b369=_0x290420[_0x4c4fe0(0x46f)]=_0x1e802f[_0x4c4fe0(0x210)]({'_doReset':function(){const _0x1a9cbf=_0x4c4fe0;var _0x489178;if(!(this[_0x1a9cbf(0x4c7)]&&this[_0x1a9cbf(0x522)]===this[_0x1a9cbf(0x295)])){for(var _0x241c5d=this['_keyPriorReset']=this[_0x1a9cbf(0x295)],_0x129b85=_0x241c5d[_0x1a9cbf(0x172)],_0x3c8d8d=_0x241c5d[_0x1a9cbf(0x237)]/0x4,_0x100251=this['_nRounds']=_0x3c8d8d+0x6,_0xcb9d19=(_0x100251+0x1)*0x4,_0x28324a=this[_0x1a9cbf(0x2a9)]=[],_0x2e5c50=0x0;_0x2e5c50<_0xcb9d19;_0x2e5c50++)_0x2e5c50<_0x3c8d8d?_0x28324a[_0x2e5c50]=_0x129b85[_0x2e5c50]:(_0x489178=_0x28324a[_0x2e5c50-0x1],_0x2e5c50%_0x3c8d8d?_0x3c8d8d>0x6&&_0x2e5c50%_0x3c8d8d==0x4&&(_0x489178=_0x474c16[_0x489178>>>0x18]<<0x18|_0x474c16[_0x489178>>>0x10&0xff]<<0x10|_0x474c16[_0x489178>>>0x8&0xff]<<0x8|_0x474c16[_0x489178&0xff]):(_0x489178=_0x489178<<0x8|_0x489178>>>0x18,_0x489178=_0x474c16[_0x489178>>>0x18]<<0x18|_0x474c16[_0x489178>>>0x10&0xff]<<0x10|_0x474c16[_0x489178>>>0x8&0xff]<<0x8|_0x474c16[_0x489178&0xff],_0x489178^=_0x586a57[_0x2e5c50/_0x3c8d8d|0x0]<<0x18),_0x28324a[_0x2e5c50]=_0x28324a[_0x2e5c50-_0x3c8d8d]^_0x489178);for(var _0x207c7b=this['_invKeySchedule']=[],_0x4b66c1=0x0;_0x4b66c1<_0xcb9d19;_0x4b66c1++){var _0x2e5c50=_0xcb9d19-_0x4b66c1;if(_0x4b66c1%0x4)var _0x489178=_0x28324a[_0x2e5c50];else var _0x489178=_0x28324a[_0x2e5c50-0x4];_0x4b66c1<0x4||_0x2e5c50<=0x4?_0x207c7b[_0x4b66c1]=_0x489178:_0x207c7b[_0x4b66c1]=_0x70e12[_0x474c16[_0x489178>>>0x18]]^_0x274771[_0x474c16[_0x489178>>>0x10&0xff]]^_0x2a1531[_0x474c16[_0x489178>>>0x8&0xff]]^_0x1a2ade[_0x474c16[_0x489178&0xff]];}}},'encryptBlock':function(_0xfa5334,_0x5258dd){const _0x33c047=_0x4c4fe0;this[_0x33c047(0x3a9)](_0xfa5334,_0x5258dd,this['_keySchedule'],_0x2ef000,_0x325789,_0x4d5fa8,_0x53942f,_0x474c16);},'decryptBlock':function(_0x27fda0,_0x4f0fa2){const _0x264a7b=_0x4c4fe0;var _0x548db2=_0x27fda0[_0x4f0fa2+0x1];_0x27fda0[_0x4f0fa2+0x1]=_0x27fda0[_0x4f0fa2+0x3],_0x27fda0[_0x4f0fa2+0x3]=_0x548db2,this['_doCryptBlock'](_0x27fda0,_0x4f0fa2,this[_0x264a7b(0x38b)],_0x70e12,_0x274771,_0x2a1531,_0x1a2ade,_0x28e539);var _0x548db2=_0x27fda0[_0x4f0fa2+0x1];_0x27fda0[_0x4f0fa2+0x1]=_0x27fda0[_0x4f0fa2+0x3],_0x27fda0[_0x4f0fa2+0x3]=_0x548db2;},'_doCryptBlock':function(_0x5756bf,_0x902b3f,_0x16ed47,_0x3ee82b,_0x20dc9b,_0x291396,_0x47eabb,_0x57e178){for(var _0x337fb8=this['_nRounds'],_0x21b3ed=_0x5756bf[_0x902b3f]^_0x16ed47[0x0],_0x443049=_0x5756bf[_0x902b3f+0x1]^_0x16ed47[0x1],_0x2a06c9=_0x5756bf[_0x902b3f+0x2]^_0x16ed47[0x2],_0x57affc=_0x5756bf[_0x902b3f+0x3]^_0x16ed47[0x3],_0x59e596=0x4,_0x1e35c0=0x1;_0x1e35c0<_0x337fb8;_0x1e35c0++){var _0xfde55c=_0x3ee82b[_0x21b3ed>>>0x18]^_0x20dc9b[_0x443049>>>0x10&0xff]^_0x291396[_0x2a06c9>>>0x8&0xff]^_0x47eabb[_0x57affc&0xff]^_0x16ed47[_0x59e596++],_0x3a0752=_0x3ee82b[_0x443049>>>0x18]^_0x20dc9b[_0x2a06c9>>>0x10&0xff]^_0x291396[_0x57affc>>>0x8&0xff]^_0x47eabb[_0x21b3ed&0xff]^_0x16ed47[_0x59e596++],_0x38307a=_0x3ee82b[_0x2a06c9>>>0x18]^_0x20dc9b[_0x57affc>>>0x10&0xff]^_0x291396[_0x21b3ed>>>0x8&0xff]^_0x47eabb[_0x443049&0xff]^_0x16ed47[_0x59e596++],_0x40fe89=_0x3ee82b[_0x57affc>>>0x18]^_0x20dc9b[_0x21b3ed>>>0x10&0xff]^_0x291396[_0x443049>>>0x8&0xff]^_0x47eabb[_0x2a06c9&0xff]^_0x16ed47[_0x59e596++];_0x21b3ed=_0xfde55c,_0x443049=_0x3a0752,_0x2a06c9=_0x38307a,_0x57affc=_0x40fe89;}var _0xfde55c=(_0x57e178[_0x21b3ed>>>0x18]<<0x18|_0x57e178[_0x443049>>>0x10&0xff]<<0x10|_0x57e178[_0x2a06c9>>>0x8&0xff]<<0x8|_0x57e178[_0x57affc&0xff])^_0x16ed47[_0x59e596++],_0x3a0752=(_0x57e178[_0x443049>>>0x18]<<0x18|_0x57e178[_0x2a06c9>>>0x10&0xff]<<0x10|_0x57e178[_0x57affc>>>0x8&0xff]<<0x8|_0x57e178[_0x21b3ed&0xff])^_0x16ed47[_0x59e596++],_0x38307a=(_0x57e178[_0x2a06c9>>>0x18]<<0x18|_0x57e178[_0x57affc>>>0x10&0xff]<<0x10|_0x57e178[_0x21b3ed>>>0x8&0xff]<<0x8|_0x57e178[_0x443049&0xff])^_0x16ed47[_0x59e596++],_0x40fe89=(_0x57e178[_0x57affc>>>0x18]<<0x18|_0x57e178[_0x21b3ed>>>0x10&0xff]<<0x10|_0x57e178[_0x443049>>>0x8&0xff]<<0x8|_0x57e178[_0x2a06c9&0xff])^_0x16ed47[_0x59e596++];_0x5756bf[_0x902b3f]=_0xfde55c,_0x5756bf[_0x902b3f+0x1]=_0x3a0752,_0x5756bf[_0x902b3f+0x2]=_0x38307a,_0x5756bf[_0x902b3f+0x3]=_0x40fe89;},'keySize':0x100/0x20});_0x129787[_0x4c4fe0(0x46f)]=_0x1e802f[_0x4c4fe0(0x30e)](_0x38b369);}()),_0x51f368[_0x1fab6b(0x46f)];}));}(ki));var Ka=ki[_0xc8d6e8(0x173)];const za=at(Ka);var qa=Wi();const ii=at(qa);var Gi={'exports':{}};(function(_0x237d45,_0x8c5ed){(function(_0xd0f7d1,_0x280d18){const _0x34a478=_0x284c;_0x237d45[_0x34a478(0x173)]=_0x280d18(ue());}(Z,function(_0x927a50){const _0x50be1d=_0x284c;return _0x927a50[_0x50be1d(0x1dd)][_0x50be1d(0x378)];}));}(Gi));var Xa=Gi['exports'];const Ja=at(Xa);var Yi={'exports':{}};(function(_0x5c805c,_0x5e796b){(function(_0x26d492,_0x36a000){const _0x17a4e6=_0x284c;_0x5c805c[_0x17a4e6(0x173)]=_0x36a000(ue());}(Z,function(_0x5f0788){const _0x291f79=_0x284c;return(function(){const _0x3ab91e=_0x284c;if(typeof ArrayBuffer==_0x3ab91e(0x361)){var _0x2b1a55=_0x5f0788,_0x154192=_0x2b1a55[_0x3ab91e(0x40d)],_0x21f998=_0x154192[_0x3ab91e(0x33c)],_0x3e94c0=_0x21f998[_0x3ab91e(0x293)],_0x390359=_0x21f998[_0x3ab91e(0x293)]=function(_0x5979af){const _0x6e2b10=_0x3ab91e;if(_0x5979af instanceof ArrayBuffer&&(_0x5979af=new Uint8Array(_0x5979af)),(_0x5979af instanceof Int8Array||typeof Uint8ClampedArray<'u'&&_0x5979af instanceof Uint8ClampedArray||_0x5979af instanceof Int16Array||_0x5979af instanceof Uint16Array||_0x5979af instanceof Int32Array||_0x5979af instanceof Uint32Array||_0x5979af instanceof Float32Array||_0x5979af instanceof Float64Array)&&(_0x5979af=new Uint8Array(_0x5979af[_0x6e2b10(0x434)],_0x5979af[_0x6e2b10(0x226)],_0x5979af[_0x6e2b10(0x519)])),_0x5979af instanceof Uint8Array){for(var _0x9cb056=_0x5979af[_0x6e2b10(0x519)],_0x489585=[],_0x8f0ecc=0x0;_0x8f0ecc<_0x9cb056;_0x8f0ecc++)_0x489585[_0x8f0ecc>>>0x2]|=_0x5979af[_0x8f0ecc]<<0x18-_0x8f0ecc%0x4*0x8;_0x3e94c0[_0x6e2b10(0x2c6)](this,_0x489585,_0x9cb056);}else _0x3e94c0['apply'](this,arguments);};_0x390359[_0x3ab91e(0x2f9)]=_0x21f998;}}()),_0x5f0788[_0x291f79(0x40d)][_0x291f79(0x33c)];}));}(Yi));var Za=Yi[_0xc8d6e8(0x173)];const Qa=at(Za);var Ki={'exports':{}};(function(_0x379be0,_0x4538bb){(function(_0x4bcccd,_0x4fe202,_0x2c8427){const _0x39133e=_0x284c;_0x379be0[_0x39133e(0x173)]=_0x4fe202(ue(),Vi());}(Z,function(_0xe279e9){const _0x29a050=_0x284c;return _0xe279e9[_0x29a050(0x13a)][_0x29a050(0x2cb)]={'pad':function(){},'unpad':function(){}},_0xe279e9[_0x29a050(0x13a)]['NoPadding'];}));}(Ki));var ec=Ki['exports'];const tc=at(ec);function sc(_0x39310f,_0x32d115){const _0x267dec=_0xc8d6e8,_0x129a6d=_0x32d115-_0x39310f[_0x267dec(0x3d5)]%_0x32d115,_0x4fb704=String[_0x267dec(0x376)](_0x129a6d)[_0x267dec(0x4fd)](_0x129a6d);return _0x39310f+_0x4fb704;}function ic(_0x5c73a8,_0xae9c67){const _0x25e3bf=_0xc8d6e8,_0x2ab456=Qa[_0x25e3bf(0x51a)](0x10),_0x4e51ce=sc(_0x5c73a8,0x10),_0x4190ab=za[_0x25e3bf(0x449)](Ja['parse'](_0x4e51ce),ii[_0x25e3bf(0x4d2)](_0xae9c67),{'iv':_0x2ab456,'padding':tc});return _0x2ab456[_0x25e3bf(0x502)](_0x4190ab[_0x25e3bf(0x38a)])[_0x25e3bf(0x41c)](ii);}function nc(){const _0x160d6a=_0xc8d6e8,_0x39cb3f=(typeof WorkerGlobalScope<'u'&&self instanceof WorkerGlobalScope?self:window)['__Key__'];if(_0x39cb3f){const _0x1c16f0={'time':Math[_0x160d6a(0x187)](Date[_0x160d6a(0x21f)]()/0x3e8),'domain':location['hostname']};return ic(JSON[_0x160d6a(0x306)](_0x1c16f0),_0x39cb3f);}}var rc=Object[_0xc8d6e8(0x17a)],oc=Object['getOwnPropertyDescriptor'],ac=(_0x4e29dd,_0x51aa50,_0xde1651,_0x5a06e4)=>{const _0xee51e=_0xc8d6e8;for(var _0x3980b3=_0x5a06e4>0x1?void 0x0:_0x5a06e4?oc(_0x51aa50,_0xde1651):_0x51aa50,_0x130d5b=_0x4e29dd[_0xee51e(0x3d5)]-0x1,_0xbf656c;_0x130d5b>=0x0;_0x130d5b--)(_0xbf656c=_0x4e29dd[_0x130d5b])&&(_0x3980b3=(_0x5a06e4?_0xbf656c(_0x51aa50,_0xde1651,_0x3980b3):_0xbf656c(_0x3980b3))||_0x3980b3);return _0x5a06e4&&_0x3980b3&&rc(_0x51aa50,_0xde1651,_0x3980b3),_0x3980b3;},cc=(_0x2f7cc1,_0x56ddfa)=>(_0x58fbf1,_0x1eb23a)=>_0x56ddfa(_0x58fbf1,_0x1eb23a,_0x2f7cc1);let bt=class{constructor(_0x4a060f){const _0x50e22e=_0xc8d6e8;this['_httpService']=_0x4a060f,this[_0x50e22e(0x1ce)]();}['_initRequestHeader'](){const _0x1aeba0=_0xc8d6e8;this[_0x1aeba0(0x127)][_0x1aeba0(0x231)]({'interceptor':(_0x576cb4,_0x54de6b)=>{const _0x4c3359=_0x1aeba0,_0x42b441=_0x576cb4[_0x4c3359(0x2d2)],_0x2ea67d=nc();return _0x2ea67d&&_0x42b441['set']('x-univer-host',_0x2ea67d),_0x54de6b(_0x576cb4);}});}};bt=ac([cc(0x0,_0x13f971(_0x5874d1))],bt);var hc=Object['defineProperty'],lc=Object['getOwnPropertyDescriptor'],_c=(_0x2e2d8c,_0x482699,_0x2bfa40,_0x5c483f)=>{const _0xe38f87=_0xc8d6e8;for(var _0xe77c27=_0x5c483f>0x1?void 0x0:_0x5c483f?lc(_0x482699,_0x2bfa40):_0x482699,_0x2ed8b4=_0x2e2d8c[_0xe38f87(0x3d5)]-0x1,_0x1f3df3;_0x2ed8b4>=0x0;_0x2ed8b4--)(_0x1f3df3=_0x2e2d8c[_0x2ed8b4])&&(_0xe77c27=(_0x5c483f?_0x1f3df3(_0x482699,_0x2bfa40,_0xe77c27):_0x1f3df3(_0xe77c27))||_0xe77c27);return _0x5c483f&&_0xe77c27&&hc(_0x482699,_0x2bfa40,_0xe77c27),_0xe77c27;},Xt=(_0x3968b5,_0x509d9e)=>(_0x186e89,_0x2ab36c)=>_0x509d9e(_0x186e89,_0x2ab36c,_0x3968b5);const uc=[_0xc8d6e8(0x219),'image/jpeg',_0xc8d6e8(0x2aa),_0xc8d6e8(0x31a),_0xc8d6e8(0x18e)],dc=0x5*0x400*0x400,fc=_0xc8d6e8(0x373),vc=_0xc8d6e8(0x414),mc='EXCHANGE_SIGN_URL_SERVER_URL_KEY',pc='/universer-api/file/{fileID}/sign-url';let hs=class{constructor(_0xa7e8aa,_0x37d028,_0x9a71a4){const _0x311777=_0xc8d6e8;g(this,_0x311777(0x24a),0x0),g(this,_0x311777(0x1b6),new _0x378360()),g(this,_0x311777(0x13f),this[_0x311777(0x1b6)]),g(this,'_imageSourceCache',new Map()),(this['_httpService']=_0xa7e8aa,this['_configService']=_0x37d028,this['_univerInstanceService']=_0x9a71a4);}[_0xc8d6e8(0x4c9)](_0x4470ed){const _0x175411=_0xc8d6e8;this['_waitCount']=_0x4470ed,this['_change$'][_0x175411(0x3f0)](_0x4470ed);}[_0xc8d6e8(0x212)](_0x230790,_0x131ccd){const _0x10a93e=_0xc8d6e8;if(_0x131ccd===_0x47413a[_0x10a93e(0x26a)]){const _0x1811d8=new Image();return _0x1811d8[_0x10a93e(0x40e)]=_0x230790,_0x1811d8;}return this[_0x10a93e(0x41d)][_0x10a93e(0x2c2)](_0x230790);}[_0xc8d6e8(0x33b)](_0x491a62,_0x370141,_0x21b121){const _0x5e5718=_0xc8d6e8;_0x370141===_0x47413a['BASE64']||_0x21b121==null||this[_0x5e5718(0x41d)][_0x5e5718(0x21c)](_0x491a62,_0x21b121);}async[_0xc8d6e8(0x30a)](_0x2275e1){const _0x364080=_0xc8d6e8;try{const _0x129465=this[_0x364080(0x50c)](this[_0x364080(0x320)](),''+_0x2275e1),_0x13fc44=(await this[_0x364080(0x127)][_0x364080(0x2c2)](_0x129465))[_0x364080(0x366)];if(_0x13fc44[_0x364080(0x398)]&&_0x13fc44[_0x364080(0x398)][_0x364080(0x53e)]===Ri['OK']){const _0x48462e=new URL(_0x13fc44[_0x364080(0x532)],this['_getDownloadEndpointURL']())[_0x364080(0x41c)]();return Promise[_0x364080(0x43c)](_0x48462e);}return Promise[_0x364080(0x403)](_0x13fc44[_0x364080(0x398)]);}catch(_0x51e4cb){return Promise[_0x364080(0x403)](_0x51e4cb);}}async[_0xc8d6e8(0x4b9)](_0x31fd20){const _0x266e0c=_0xc8d6e8;let _0x32daa4='';if(!uc[_0x266e0c(0x28a)](_0x31fd20['type']))return this['_decreaseWaiting'](),Promise[_0x266e0c(0x403)](new Error(_0x12da05['ERROR_IMAGE_TYPE']));if(_0x31fd20['size']>dc)return this[_0x266e0c(0x140)](),Promise['reject'](new Error(_0x12da05[_0x266e0c(0x374)]));try{const _0x3d3f39=new FormData();_0x3d3f39[_0x266e0c(0x1e8)](_0x266e0c(0x4bd),_0x31fd20);const _0xac9ed0=this[_0x266e0c(0x2c7)][_0x266e0c(0x385)](),_0x41d268=_0xac9ed0==null?void 0x0:_0xac9ed0[_0x266e0c(0x4a7)]();if(!_0x41d268)throw new Error(_0x266e0c(0x289));const _0x347a0=this[_0x266e0c(0x324)]()+'?size='+_0x31fd20['size']['toString']()+_0x266e0c(0x3b4)+Oi[_0x266e0c(0x175)]+_0x266e0c(0x35d)+encodeURIComponent(_0x41d268),_0x4b2e80=await(await fetch(_0x347a0,{'method':_0x266e0c(0x25f),'body':_0x3d3f39}))[_0x266e0c(0x400)]();if(typeof _0x4b2e80['FileId']!=_0x266e0c(0x155))return this[_0x266e0c(0x140)](),Promise[_0x266e0c(0x403)](new Error(_0x12da05[_0x266e0c(0x47b)]));_0x32daa4=_0x4b2e80[_0x266e0c(0x445)];}catch{return this['_decreaseWaiting'](),Promise[_0x266e0c(0x403)](new Error(_0x12da05[_0x266e0c(0x47b)]));}return new Promise((_0x20776f,_0x18c40)=>{const _0x54b261=_0x266e0c,_0x28fbb7=new FileReader();_0x28fbb7[_0x54b261(0x482)](_0x31fd20),_0x28fbb7[_0x54b261(0x36e)]=_0x151b1a=>{const _0x49e066=_0x54b261;var _0xf00b9f;const _0x1c5daf=(_0xf00b9f=_0x151b1a[_0x49e066(0x33a)])==null?void 0x0:_0xf00b9f['result'];if(_0x1c5daf==null){this[_0x49e066(0x140)](),_0x18c40(new Error(_0x12da05[_0x49e066(0x47b)]));return;}const _0x1f2001=_0x4ef2fc[_0x49e066(0x347)](0x6);_0x20776f({'imageId':_0x1f2001,'imageSourceType':_0x47413a[_0x49e066(0x513)],'source':_0x32daa4,'base64Cache':_0x1c5daf,'status':_0x12da05[_0x49e066(0x46b)]}),this[_0x49e066(0x140)]();};});}[_0xc8d6e8(0x324)](){const _0x3399d0=_0xc8d6e8;var _0x48aa04,_0x4ca3f3;const _0x58a1ca=this[_0x3399d0(0x23d)][_0x3399d0(0x2ac)](fc),_0x58f883=this[_0x3399d0(0x23d)]['getConfig'](te);return(_0x4ca3f3=(_0x48aa04=_0x58f883==null?void 0x0:_0x58f883[_0x3399d0(0x138)])!=null?_0x48aa04:_0x58a1ca)!=null?_0x4ca3f3:vc;}[_0xc8d6e8(0x320)](){const _0x14f1c3=_0xc8d6e8;var _0x8fa2bc,_0x19e23a;const _0x33ce0e=this[_0x14f1c3(0x23d)][_0x14f1c3(0x2ac)](mc),_0x1b5b5d=this[_0x14f1c3(0x23d)][_0x14f1c3(0x2ac)](te);return(_0x19e23a=(_0x8fa2bc=_0x1b5b5d==null?void 0x0:_0x1b5b5d[_0x14f1c3(0x225)])!=null?_0x8fa2bc:_0x33ce0e)!=null?_0x19e23a:pc;}[_0xc8d6e8(0x4ff)](){const _0x4af873=_0xc8d6e8;var _0x1b999b;const _0x18704d=this['_configService'][_0x4af873(0x2ac)](te);return(_0x1b999b=_0x18704d==null?void 0x0:_0x18704d['downloadEndpointUrl'])!=null?_0x1b999b:location['origin'];}[_0xc8d6e8(0x50c)](_0x4821e7,_0x4ea695){const _0xa25ca6=_0xc8d6e8;return _0x4821e7['replace'](_0xa25ca6(0x4f0),_0x4ea695);}[_0xc8d6e8(0x140)](){const _0x2c4462=_0xc8d6e8;this[_0x2c4462(0x24a)]-=0x1,this[_0x2c4462(0x1b6)][_0x2c4462(0x3f0)](this[_0x2c4462(0x24a)]);}};hs=_c([Xt(0x0,_0x13f971(_0x5874d1)),Xt(0x1,_0x450caa),Xt(0x2,_0x13f971(_0x2ddd21))],hs);var gc=Object[_0xc8d6e8(0x17a)],Sc=Object['getOwnPropertyDescriptor'],Ic=(_0x39e254,_0x2ef3ac,_0x442a7f,_0x252ebe)=>{const _0x18bce1=_0xc8d6e8;for(var _0x346f70=_0x252ebe>0x1?void 0x0:_0x252ebe?Sc(_0x2ef3ac,_0x442a7f):_0x2ef3ac,_0x16381f=_0x39e254[_0x18bce1(0x3d5)]-0x1,_0x4fcce1;_0x16381f>=0x0;_0x16381f--)(_0x4fcce1=_0x39e254[_0x16381f])&&(_0x346f70=(_0x252ebe?_0x4fcce1(_0x2ef3ac,_0x442a7f,_0x346f70):_0x4fcce1(_0x346f70))||_0x346f70);return _0x252ebe&&_0x346f70&&gc(_0x2ef3ac,_0x442a7f,_0x346f70),_0x346f70;},Qe=(_0x30c644,_0x23209d)=>(_0x53d32b,_0x2a2954)=>_0x23209d(_0x53d32b,_0x2a2954,_0x30c644);let Tt=class extends _0x2ea33c{constructor(_0x37e337,_0x4c1263,_0x1714a4,_0x146eae,_0x3ce10c){const _0x124b50=_0xc8d6e8;super(),this[_0x124b50(0x360)]=_0x37e337,this[_0x124b50(0x2c7)]=_0x4c1263,this[_0x124b50(0x4f3)]=_0x1714a4,this[_0x124b50(0x485)]=_0x146eae,this[_0x124b50(0x255)]=_0x3ce10c,this[_0x124b50(0x206)](),this['_initCloseConn']();}[_0xc8d6e8(0x1d4)](){const _0x5ed6f1=_0xc8d6e8,_0x4336e4=async _0xe3d30b=>{const _0x3fb0d8=_0x284c;(await this[_0x3fb0d8(0x485)][_0x3fb0d8(0x392)](_0xe3d30b))[_0x3fb0d8(0x157)][_0x3fb0d8(0x236)](_0x474f16(_0x5422bf=>_0x5422bf[_0x3fb0d8(0x411)]===_0x275148[_0x3fb0d8(0x4bc)]),_0x4d3dd9(this['dispose$']))[_0x3fb0d8(0x1ed)](_0x426226=>{const _0xd8a68f=_0x3fb0d8,_0x1c8cb7=_0x426226,{reason:_0x284404}=_0x1c8cb7['data'];this[_0xd8a68f(0x360)]['get'](_0x1902d3)[_0xd8a68f(0x339)]({'type':_0x49b044[_0xd8a68f(0x394)],'content':this[_0xd8a68f(0x255)]['t'](_0xd8a68f(0x3c8))+'('+_0x284404+')'}),this[_0xd8a68f(0x4f3)][_0xd8a68f(0x23e)](new _0x945e06(_0xe3d30b)['id'],!0x1),this[_0xd8a68f(0x485)][_0xd8a68f(0x314)](_0xe3d30b);});};_0x88f83c(this['_univerInstanceService'][_0x5ed6f1(0x1df)](_0x4f645a[_0x5ed6f1(0x50a)]),this[_0x5ed6f1(0x2c7)]['getTypeOfUnitAdded$'](_0x4f645a[_0x5ed6f1(0x3c7)]))[_0x5ed6f1(0x236)](_0x38f68a(_0x23fa2f=>_0x23fa2f[_0x5ed6f1(0x4a7)]()),_0x474f16(_0x54a878=>!_0xf31c8(_0x54a878)),_0x4d3dd9(this[_0x5ed6f1(0x191)]))[_0x5ed6f1(0x1ed)](_0x10b689=>{_0x4336e4(_0x10b689);});}[_0xc8d6e8(0x206)](){const _0x1941b5=_0xc8d6e8,_0x8c5321=async _0x3e4f5c=>{const _0x10e418=_0x284c;(await this[_0x10e418(0x485)][_0x10e418(0x392)](_0x3e4f5c))[_0x10e418(0x157)][_0x10e418(0x236)](_0x474f16(_0x373378=>_0x373378['eventID']===_0x275148['UPDATE_PERMISSION_OBJ']),_0x4d3dd9(this['dispose$']))[_0x10e418(0x1ed)](_0x1742b5=>{const _0x287a92=_0x10e418,_0x3e704=_0x1742b5,{objectId:_0x19f41e}=_0x3e704[_0x287a92(0x464)],_0x4f0abc=this[_0x287a92(0x360)][_0x287a92(0x2c2)](_0x3439c1);_0x19f41e===_0x3e4f5c?_0x4f0abc['initWorkbookPermissionChange'](_0x3e4f5c):_0x4f0abc[_0x287a92(0x335)](_0x3e4f5c,_0x19f41e);});};_0x88f83c(this[_0x1941b5(0x2c7)][_0x1941b5(0x1df)](_0x4f645a['UNIVER_SHEET']),this['_univerInstanceService']['getTypeOfUnitAdded$'](_0x4f645a[_0x1941b5(0x3c7)]))['pipe'](_0x38f68a(_0x24b720=>_0x24b720[_0x1941b5(0x4a7)]()),_0x474f16(_0x5ae72b=>!_0xf31c8(_0x5ae72b)),_0x4d3dd9(this[_0x1941b5(0x191)]))[_0x1941b5(0x1ed)](_0x486e54=>{_0x8c5321(_0x486e54);});}};Tt=Ic([Qe(0x0,_0x13f971(_0x20e5db)),Qe(0x1,_0x2ddd21),Qe(0x2,_0x1306a2),Qe(0x3,_0x13f971(xe)),Qe(0x4,_0x13f971(_0x8037c0))],Tt);var Cc=Object[_0xc8d6e8(0x17a)],Ec=Object[_0xc8d6e8(0x4d8)],bc=(_0x16f3f,_0x11bfdc,_0x26b559,_0x1605af)=>{for(var _0x1a46ae=_0x1605af>0x1?void 0x0:_0x1605af?Ec(_0x11bfdc,_0x26b559):_0x11bfdc,_0xa316af=_0x16f3f['length']-0x1,_0x17922a;_0xa316af>=0x0;_0xa316af--)(_0x17922a=_0x16f3f[_0xa316af])&&(_0x1a46ae=(_0x1605af?_0x17922a(_0x11bfdc,_0x26b559,_0x1a46ae):_0x17922a(_0x1a46ae))||_0x1a46ae);return _0x1605af&&_0x1a46ae&&Cc(_0x11bfdc,_0x26b559,_0x1a46ae),_0x1a46ae;},ni=(_0x5d665a,_0x5bfd57)=>(_0x245b7d,_0x25b0b7)=>_0x5bfd57(_0x245b7d,_0x25b0b7,_0x5d665a);let ls=class{constructor(_0xa330f3,_0x5c3ae5){const _0x6ff5f9=_0xc8d6e8;this[_0x6ff5f9(0x23d)]=_0xa330f3,this['_httpService']=_0x5c3ae5;}async['getUnitOnRev'](_0x546ea1,_0x599821){const _0x45c8d1=_0xc8d6e8;var _0x538e99;const {unitID:_0x1a0ca5,type:_0x147a85,revision:_0x2210cf=0x0}=_0x599821,_0x496a5d=this['_getSnapshotAPIPrefix']()+'/'+_0x147a85+_0x45c8d1(0x2eb)+_0x1a0ca5+_0x45c8d1(0x40a)+_0x2210cf,_0x10b5af=(await this['_httpService'][_0x45c8d1(0x2c2)](_0x496a5d))[_0x45c8d1(0x366)],_0xd84390=(_0x538e99=_0x10b5af[_0x45c8d1(0x25a)])==null?void 0x0:_0x538e99[_0x45c8d1(0x533)];if(_0xd84390){const _0x53475a=_0xd84390==null?void 0x0:_0xd84390[_0x45c8d1(0x28f)],_0x1196c6=_0x194d7a['encode'](_0x5b63d7(_0x53475a));_0xd84390['originalMeta']=_0x1196c6,Object[_0x45c8d1(0x35c)](_0xd84390['sheets'])['forEach'](([,_0x5440e8])=>{const _0x35694a=_0x45c8d1,_0x55da50=_0x5440e8[_0x35694a(0x28f)],_0x4a1eb0=_0x194d7a[_0x35694a(0x4f6)](_0x5b63d7(_0x55da50));_0x5440e8[_0x35694a(0x28f)]=_0x4a1eb0;});}return _0x10b5af;}async[_0xc8d6e8(0x2ee)](_0x3f73c7,_0x3430a0){const _0x520328=_0xc8d6e8,{unitID:_0x11b134,type:_0x59be85,blockID:_0x577fac}=_0x3430a0,_0x16080e=this['_getAPIPrefix']()+'/'+_0x59be85+_0x520328(0x2eb)+_0x11b134+_0x520328(0x1aa)+_0x577fac;return(await this['_httpService'][_0x520328(0x2c2)](_0x16080e))['body'];}async[_0xc8d6e8(0x3dc)](_0x3e0bea,_0x6f50bc){const _0x20c1d6=_0xc8d6e8,{unitID:_0x416f62,type:_0x571af9,blockID:_0x477fb2}=_0x6f50bc,_0x3b520e=this['_getAPIPrefix']()+_0x20c1d6(0x1aa)+_0x571af9+'/unit/'+_0x416f62+_0x20c1d6(0x1aa)+_0x477fb2;return(await this[_0x20c1d6(0x127)]['get'](_0x3b520e))[_0x20c1d6(0x366)];}async[_0xc8d6e8(0x3c2)](_0x3812ba,_0x24a179){const _0x4164f7=_0xc8d6e8,{unitID:_0x239cd8,type:_0x141b99,from:_0x5aabe7,to:_0x3d2a74}=_0x24a179,_0x4303c3=this['_getAPIPrefix']()+'/'+_0x141b99+_0x4164f7(0x2eb)+_0x239cd8+_0x4164f7(0x372)+_0x5aabe7+_0x4164f7(0x49e)+_0x3d2a74;return(await this['_httpService']['get'](_0x4303c3))[_0x4164f7(0x366)];}[_0xc8d6e8(0x51b)](){const _0xdb26a1=_0xc8d6e8;var _0x2f3d89;return(_0x2f3d89=this[_0xdb26a1(0x23d)][_0xdb26a1(0x2ac)](lr))!=null?_0x2f3d89:this['_getAPIPrefix']();}[_0xc8d6e8(0x242)](){const _0x3a4f4d=_0xc8d6e8;var _0x636df5,_0x58dde6;const _0x25bf98=this[_0x3a4f4d(0x23d)][_0x3a4f4d(0x2ac)](cr),_0x52a644=this['_configService'][_0x3a4f4d(0x2ac)](te);return(_0x58dde6=(_0x636df5=_0x52a644==null?void 0x0:_0x52a644['snapshotServerUrl'])!=null?_0x636df5:_0x25bf98)!=null?_0x58dde6:hr;}async['getResourcesRequest'](_0x430142,_0xc3fbe1){const _0x56580f=_0xc8d6e8,_0x2431cf=_0x56580f(0x481)+_0xc3fbe1[_0x56580f(0x4aa)]+'/unit/'+_0xc3fbe1[_0x56580f(0x17c)]+_0x56580f(0x2fe);return(await this[_0x56580f(0x127)][_0x56580f(0x2c2)](_0x2431cf,{'params':{'resourceId':JSON[_0x56580f(0x306)](_0xc3fbe1['resourceIDs'])}}))[_0x56580f(0x366)];}[_0xc8d6e8(0x338)](){throw new Error('This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!');}[_0xc8d6e8(0x220)](){throw new Error('This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!');}[_0xc8d6e8(0x201)](){const _0x3e3b11=_0xc8d6e8;throw new Error(_0x3e3b11(0x425));}[_0xc8d6e8(0x14b)](){const _0x342789=_0xc8d6e8;throw new Error(_0x342789(0x425));}['getLatestCsReqIdBySid'](){const _0x542c8c=_0xc8d6e8;throw new Error(_0x542c8c(0x425));}};ls=bc([ni(0x0,_0x450caa),ni(0x1,_0x13f971(_0x5874d1))],ls);var Tc=Object[_0xc8d6e8(0x17a)],Rc=Object[_0xc8d6e8(0x4d8)],Oc=(_0x224345,_0x44c5ae,_0x56f34,_0x12acc5)=>{for(var _0x2e9a22=_0x12acc5>0x1?void 0x0:_0x12acc5?Rc(_0x44c5ae,_0x56f34):_0x44c5ae,_0x3a04d4=_0x224345['length']-0x1,_0x10402e;_0x3a04d4>=0x0;_0x3a04d4--)(_0x10402e=_0x224345[_0x3a04d4])&&(_0x2e9a22=(_0x12acc5?_0x10402e(_0x44c5ae,_0x56f34,_0x2e9a22):_0x10402e(_0x2e9a22))||_0x2e9a22);return _0x12acc5&&_0x2e9a22&&Tc(_0x44c5ae,_0x56f34,_0x2e9a22),_0x2e9a22;},et=(_0xcf02f,_0x4f48ee)=>(_0x38bf6c,_0x5c4a9a)=>_0x4f48ee(_0x38bf6c,_0x5c4a9a,_0xcf02f);let _s=class extends _0x44ea44{constructor(_0x52474b,_0x297eba,_0x252656,_0x712d51,_0x1309e6){const _0x46e314=_0xc8d6e8;super(_0x52474b,_0x297eba,_0x252656),this[_0x46e314(0x196)]=_0x712d51,this[_0x46e314(0x355)]=_0x1309e6;}[_0xc8d6e8(0x1be)](_0x1d035f,_0x22f455){const _0x354191=_0xc8d6e8,_0x565e9f=this[_0x354191(0x344)](_0x1d035f);if(_0x565e9f)try{const _0x2bb878=this['_transformStack'](_0x565e9f,_0x22f455);this[_0x354191(0x13e)](_0x1d035f,_0x2bb878);}catch(_0x109843){this[_0x354191(0x355)][_0x354191(0x398)](_0x354191(0x239),_0x109843),this[_0x354191(0x3c3)](_0x1d035f);}const _0x1cceee=this[_0x354191(0x395)](_0x1d035f);if(_0x1cceee)try{const _0xc4968d=this[_0x354191(0x4c4)](_0x1cceee,_0x22f455);this[_0x354191(0x337)](_0x1d035f,_0xc4968d);}catch(_0x4173d8){this[_0x354191(0x355)][_0x354191(0x398)](_0x4173d8),this[_0x354191(0x418)](_0x1d035f);}}['_clearUndo'](_0x2a9338){const _0x19cc57=_0xc8d6e8,_0xa76e36=this['_getUndoStack'](_0x2a9338);_0xa76e36&&(_0xa76e36[_0x19cc57(0x3d5)]=0x0,this['_updateStatus']());}[_0xc8d6e8(0x418)](_0x3ce857){const _0x5680df=_0xc8d6e8,_0x3f4df1=this[_0x5680df(0x395)](_0x3ce857);_0x3f4df1&&(_0x3f4df1[_0x5680df(0x3d5)]=0x0,this[_0x5680df(0x328)]());}[_0xc8d6e8(0x13e)](_0x4e074c,_0x101f8d){const _0x1c9ea2=_0xc8d6e8;this[_0x1c9ea2(0x29d)]['set'](_0x4e074c,_0x101f8d),this['_updateStatus']();}['_substituteRedoStack'](_0x211d71,_0x530b0c){const _0x5ab2b8=_0xc8d6e8;this[_0x5ab2b8(0x53d)]['set'](_0x211d71,_0x530b0c),this['_updateStatus']();}[_0xc8d6e8(0x4c4)](_0x392298,_0xfc46fe){const _0x1acbc5=_0xc8d6e8,_0x58cf24=[];let _0x3bad68=_0xfc46fe,_0x5f3c20=_0xfc46fe;for(let _0x695930=_0x392298[_0x1acbc5(0x3d5)]-0x1;_0x695930>=0x0;_0x695930--){const {unitID:_0x2c432a,undoMutations:_0x4ad54d,redoMutations:_0x279a86}=_0x392298[_0x695930],_0x914a06=this[_0x1acbc5(0x196)]['transformMutationsWithChangeset'](_0x3bad68,_0x4ad54d),_0x361e24=this[_0x1acbc5(0x196)]['transformMutationsWithChangeset'](_0x5f3c20,_0x279a86);if(_0x434de5(_0x914a06)||_0x434de5(_0x361e24)){this[_0x1acbc5(0x355)][_0x1acbc5(0x398)]('[CollaborationUndoRedoService]',_0x1acbc5(0x2ae),_0x914a06,_0x361e24);break;}_0x3bad68=_0x914a06[_0x1acbc5(0x1ba)],_0x5f3c20=_0x361e24[_0x1acbc5(0x1ba)],_0x58cf24[_0x1acbc5(0x183)]({'unitID':_0x2c432a,'undoMutations':_0x914a06['m2Prime'],'redoMutations':_0x361e24[_0x1acbc5(0x535)]});}return _0x58cf24[_0x1acbc5(0x51e)]();}};_s=Oc([et(0x0,_0x2ddd21),et(0x1,_0x4171ed),et(0x2,_0x295091),et(0x3,_0x59efa9),et(0x4,_0x410e45)],_s);class yc extends _0x2ea33c{constructor(){const _0x3a9646=_0xc8d6e8;super(),g(this,_0x3a9646(0x32e)),this[_0x3a9646(0x32e)]=_0x4ee00c(window,_0x3a9646(0x301))[_0x3a9646(0x236)](_0x6a5096(this['dispose$']),_0x207368(0x1),_0x35afd6(void 0x0));}[_0xc8d6e8(0x33f)](_0x3f2983,_0x9ca9cc,_0x38b6f9=!0x1){const _0x13ce18=_0xc8d6e8,_0x4d9a34=new URL(window[_0x13ce18(0x507)]['href']);_0x4d9a34['searchParams'][_0x13ce18(0x21c)](_0x3f2983,_0x9ca9cc),_0x38b6f9?window[_0x13ce18(0x37d)][_0x13ce18(0x18a)]('','',_0x4d9a34[_0x13ce18(0x41c)]()):window['history'][_0x13ce18(0x1ea)]('','',_0x4d9a34['toString']());}[_0xc8d6e8(0x422)](_0xcff43a,_0x472edd=!0x1){const _0x207223=_0xc8d6e8,_0xf9a5ba=new URL(window[_0x207223(0x507)][_0x207223(0x30f)]);_0xf9a5ba[_0x207223(0x12c)][_0x207223(0x2b0)](_0xcff43a),_0x472edd?window[_0x207223(0x37d)][_0x207223(0x18a)]('','',_0xf9a5ba[_0x207223(0x41c)]()):window[_0x207223(0x37d)][_0x207223(0x1ea)]('','',_0xf9a5ba[_0x207223(0x41c)]());}[_0xc8d6e8(0x311)](_0x5d32bc){const _0x5644dd=_0xc8d6e8;var _0x5fa6c5;return(_0x5fa6c5=new URL(window[_0x5644dd(0x507)]['href'])[_0x5644dd(0x12c)]['get'](_0x5d32bc))!=null?_0x5fa6c5:void 0x0;}}var zi=Object['defineProperty'],wc=Object['getOwnPropertyDescriptor'],Dc=(_0x105733,_0x1c892d,_0xfac924)=>_0x1c892d in _0x105733?zi(_0x105733,_0x1c892d,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0xfac924}):_0x105733[_0x1c892d]=_0xfac924,Pc=(_0x4caeda,_0x2a8318,_0x433ea8,_0x487391)=>{const _0x4cd4f6=_0xc8d6e8;for(var _0x3c7920=_0x487391>0x1?void 0x0:_0x487391?wc(_0x2a8318,_0x433ea8):_0x2a8318,_0x160b11=_0x4caeda[_0x4cd4f6(0x3d5)]-0x1,_0x88323b;_0x160b11>=0x0;_0x160b11--)(_0x88323b=_0x4caeda[_0x160b11])&&(_0x3c7920=(_0x487391?_0x88323b(_0x2a8318,_0x433ea8,_0x3c7920):_0x88323b(_0x3c7920))||_0x3c7920);return _0x487391&&_0x3c7920&&zi(_0x2a8318,_0x433ea8,_0x3c7920),_0x3c7920;},lt=(_0x5485b3,_0x24b818)=>(_0x294f53,_0x172732)=>_0x24b818(_0x294f53,_0x172732,_0x5485b3),Uc=(_0xbeaee6,_0x3d53fd,_0x1add88)=>Dc(_0xbeaee6,_0x3d53fd+'',_0x1add88);const Nc=_0xc8d6e8(0x487);let us=class extends _0x1ec059{constructor(_0x5e1aff=Or,_0x1c2d04,_0x47bcd6,_0x58368f,_0x53b738){const _0x2cb5cf=_0xc8d6e8;super(),this['_config']=_0x5e1aff,this[_0x2cb5cf(0x355)]=_0x1c2d04,this[_0x2cb5cf(0x3ce)]=_0x47bcd6,this[_0x2cb5cf(0x360)]=_0x58368f,this['_configService']=_0x53b738;const {..._0x4831f3}=this[_0x2cb5cf(0x24d)];this[_0x2cb5cf(0x23d)][_0x2cb5cf(0x346)](te,_0x4831f3);}['onStarting'](){const _0x46de80=_0xc8d6e8;this[_0x46de80(0x454)](),this[_0x46de80(0x305)]();}[_0xc8d6e8(0x323)](){const _0x3a836d=_0xc8d6e8;_0x2d98b1(this[_0x3a836d(0x360)],[[Ct]]);}[_0xc8d6e8(0x1a8)](){const _0x1ff4ac=_0xc8d6e8;this[_0x1ff4ac(0x22b)]();}[_0xc8d6e8(0x454)](){const _0x8c6820=_0xc8d6e8;var _0x49b188,_0x887d4e,_0x3077be,_0x3064ca;this[_0x8c6820(0x360)][_0x8c6820(0x3eb)](_0x2925fd)&&this[_0x8c6820(0x355)]['error'](_0x8c6820(0x2d6),_0x8c6820(0x3cb));const _0xf4cd96=[[_0x2925fd,{'useClass':_s}],[xe],[bs],[Bi,{'useClass':yc}],[Me],[q],[_0x338344],[vt],[pt],[ft],[mt],[Cs],[Et],[bt],[wi],[Tt],[yi,{'useClass':(_0x887d4e=(_0x49b188=this[_0x8c6820(0x24d)])==null?void 0x0:_0x49b188['socketService'])!=null?_0x887d4e:es}],[_0x3701ce,{'useClass':ls}],[_0xf062e,{'useClass':cs}],[_0x362557,{'useClass':hs}],[it],[It],[St],[Ct],[Ve]];(_0x3077be=this[_0x8c6820(0x24d)])!=null&&_0x3077be[_0x8c6820(0x470)]&&_0xf4cd96[_0x8c6820(0x183)]([Rt,{'useClass':oo}]),_0x366bdc(this[_0x8c6820(0x360)],_0x439703(_0xf4cd96,(_0x3064ca=this[_0x8c6820(0x24d)])==null?void 0x0:_0x3064ca[_0x8c6820(0x1c2)]));}['_registerRenderDependencies'](){const _0x4260d3=_0xc8d6e8;this[_0x4260d3(0x43e)](this[_0x4260d3(0x3ce)][_0x4260d3(0x170)](_0x4f645a[_0x4260d3(0x3c7)],[os])),this[_0x4260d3(0x43e)](this['_renderManagerService'][_0x4260d3(0x170)](_0x4f645a['UNIVER_SHEET'],[as]));}[_0xc8d6e8(0x305)](){const _0x49f3fb=_0xc8d6e8;var _0x3fa9fe,_0x4b444c;this[_0x49f3fb(0x360)][_0x49f3fb(0x2c2)](_0x5874d1)[_0x49f3fb(0x231)]({'priority':0x14,'interceptor':_0x5af1b4({'maxParallel':0x6})}),(_0x3fa9fe=this[_0x49f3fb(0x24d)])!=null&&_0x3fa9fe[_0x49f3fb(0x47a)]||this[_0x49f3fb(0x360)][_0x49f3fb(0x2c2)](q)['disableLocalCache'](),(_0x4b444c=this[_0x49f3fb(0x24d)])!=null&&_0x4b444c['enableAuthServer']&&_0x2d98b1(this[_0x49f3fb(0x360)],[[Et]]),_0x2d98b1(this['_injector'],[[bt],[Ve],[It],[it],[St],[Tt]]);}};Uc(us,_0xc8d6e8(0x28b),Nc),us=Pc([_0x13bf02(_0x3b7cf5,_0x2c8070),lt(0x1,_0x410e45),lt(0x2,_0x272410),lt(0x3,_0x13f971(_0x20e5db)),lt(0x4,_0x450caa)],us);export{ka as AUTHZ_URL_KEY,cs as AuthzIoHttpService,Er as COLLAB_SUBMIT_CHANGESET_URL_KEY,ur as COLLAB_WEB_SOCKET_URL_KEY,it as CollaborationController,gt as CollaborationEntity,ts as CollaborationSession,xe as CollaborationSessionService,es as CollaborationSocketService,J as CollaborationStatus,Ea as CollaborationStatusDisplay,wi as CommentService,It as DataLoaderController,St as DesktopCollaborationStatusDisplayController,ss as DocCollaborationEntity,vr as HEARTBEAT_INTERVAL_KEY,bi as HEARTBEAT_TIMEOUT_KEY,yi as ICollaborationSocketService,Bi as IURLService,hs as ImageIoService,Ir as LOCAL_CACHE_INTERVAL_KEY,Tr as LOGIN_URL_KEY,q as LocalCacheService,Me as MemberService,gr as RETRY_CONNECTING_MAX_COUNT_KEY,Jc as SEND_CHANGESET_TIMEOUT_KEY,cr as SNAPSHOT_SERVER_URL_KEY,lr as SNAPSHOT_URL_KEY,ve as SessionStatus,Jo as SheetCollabCursorShape,is as SheetCollaborationEntity,ls as SnapshotServerOverHTTPService,us as UniverCollaborationClientPlugin,yc as WebURLService,yr as deserializeToCombResponse,wr as serializeCombRequest};
|